From 228081c7ed3b8f2f1f992bd7cf91d17e2027ea6e Mon Sep 17 00:00:00 2001 From: Gilad Gray Date: Mon, 5 Feb 2018 13:38:35 -0800 Subject: [PATCH 1/3] icons.json name=>displayName, className=>iconName --- packages/docs-app/src/components/docsIcon.tsx | 24 +- packages/docs-app/src/components/icons.tsx | 5 +- packages/icons/resources/icons/icons.json | 1732 ++++++++--------- .../node-build-scripts/generate-icons-source | 31 +- 4 files changed, 895 insertions(+), 897 deletions(-) diff --git a/packages/docs-app/src/components/docsIcon.tsx b/packages/docs-app/src/components/docsIcon.tsx index 4421aa82f9..eddd1e8621 100644 --- a/packages/docs-app/src/components/docsIcon.tsx +++ b/packages/docs-app/src/components/docsIcon.tsx @@ -11,10 +11,10 @@ import { ContextMenuTarget, Icon, IconName, Menu, MenuItem } from "@blueprintjs/ import { ClickToCopy } from "./clickToCopy"; export interface IDocsIconProps { + displayName: string; group: string; - name: string; + iconName: IconName; tags: string; - className: IconName; } const GITHUB_PATH = "https://github.com/palantir/blueprint/blob/develop/resources/icons"; @@ -22,13 +22,13 @@ const GITHUB_PATH = "https://github.com/palantir/blueprint/blob/develop/resource @ContextMenuTarget export class DocsIcon extends React.PureComponent { public render() { - const { className, name, tags } = this.props; + const { iconName, displayName, tags } = this.props; return ( - - + + -
{name}
-
{className}
+
{displayName}
+
{iconName}
@@ -36,18 +36,18 @@ export class DocsIcon extends React.PureComponent { } public renderContextMenu() { - const { className } = this.props; + const { iconName } = this.props; return ( @@ -55,7 +55,7 @@ export class DocsIcon extends React.PureComponent { ); } - private handleClick16 = () => window.open(`${GITHUB_PATH}/16px/${this.props.className}.svg`); + private handleClick16 = () => window.open(`${GITHUB_PATH}/16px/${this.props.iconName}.svg`); - private handleClick20 = () => window.open(`${GITHUB_PATH}/20px/${this.props.className}.svg`); + private handleClick20 = () => window.open(`${GITHUB_PATH}/20px/${this.props.iconName}.svg`); } diff --git a/packages/docs-app/src/components/icons.tsx b/packages/docs-app/src/components/icons.tsx index 5f84dbfdc3..5cef5311c2 100644 --- a/packages/docs-app/src/components/icons.tsx +++ b/packages/docs-app/src/components/icons.tsx @@ -48,9 +48,6 @@ export class Icons extends React.PureComponent { groups[icon.group].push(icon); return groups; }, {}); - for (const group of Object.keys(this.iconGroups)) { - this.iconGroups[group].sort((a, b) => a.name.localeCompare(b.name)); - } } public render() { @@ -108,7 +105,7 @@ export class Icons extends React.PureComponent { } function isIconFiltered(query: string, icon: IIcon) { - return smartSearch(query, icon.name, icon.className, icon.tags, icon.group); + return smartSearch(query, icon.displayName, icon.iconName, icon.tags, icon.group); } function renderIcon(icon: IIcon, index: number) { diff --git a/packages/icons/resources/icons/icons.json b/packages/icons/resources/icons/icons.json index bade7984ab..ecb67843c0 100644 --- a/packages/icons/resources/icons/icons.json +++ b/packages/icons/resources/icons/icons.json @@ -1,3031 +1,3031 @@ [ { - "name": "Blank", - "className": "pt-icon-blank", + "displayName": "Blank", + "iconName": "blank", "tags": "empty, placeholder", "group": "miscellaneous", "content": "\\e900" }, { - "name": "Style", - "className": "pt-icon-style", + "displayName": "Style", + "iconName": "style", "tags": "visual style, editor", "group": "editor", "content": "\\e601" }, { - "name": "Align: left", - "className": "pt-icon-align-left", + "displayName": "Align: left", + "iconName": "align-left", "tags": "text flow, alignment, justification, range, flush left", "group": "editor", "content": "\\e602" }, { - "name": "Align: center", - "className": "pt-icon-align-center", + "displayName": "Align: center", + "iconName": "align-center", "tags": "text flow, alignment, justification, range, centered", "group": "editor", "content": "\\e603" }, { - "name": "Align: right", - "className": "pt-icon-align-right", + "displayName": "Align: right", + "iconName": "align-right", "tags": "text flow, alignment, justification, range, flush right", "group": "editor", "content": "\\e604" }, { - "name": "Align: justify", - "className": "pt-icon-align-justify", + "displayName": "Align: justify", + "iconName": "align-justify", "tags": "text flow, alignment, justification, range, justified", "group": "editor", "content": "\\e605" }, { - "name": "Bold", - "className": "pt-icon-bold", + "displayName": "Bold", + "iconName": "bold", "tags": "typography, text, font style, weight, bold", "group": "editor", "content": "\\e606" }, { - "name": "Italic", - "className": "pt-icon-italic", + "displayName": "Italic", + "iconName": "italic", "tags": "typography, text, font style, italic, cursive", "group": "editor", "content": "\\e607" }, { - "name": "Underline", - "className": "pt-icon-underline", + "displayName": "Underline", + "iconName": "underline", "tags": "typography, text, font style, underline, underscore", "group": "editor", "content": "\\2381" }, { - "name": "Search around", - "className": "pt-icon-search-around", + "displayName": "Search around", + "iconName": "search-around", "tags": "search, exploration, information, area, graph", "group": "action", "content": "\\e608" }, { - "name": "Remove from graph", - "className": "pt-icon-graph-remove", + "displayName": "Remove from graph", + "iconName": "graph-remove", "tags": "circle, remove, delete, clear, graph", "group": "action", "content": "\\e609" }, { - "name": "Group objects", - "className": "pt-icon-group-objects", + "displayName": "Group objects", + "iconName": "group-objects", "tags": "group, alignment, organization, arrangement, classification, objects", "group": "action", "content": "\\e60a" }, { - "name": "Merge into links", - "className": "pt-icon-merge-links", + "displayName": "Merge into links", + "iconName": "merge-links", "tags": "merge, combine, consolidate, jointment, links", "group": "action", "content": "\\e60b" }, { - "name": "Layout", - "className": "pt-icon-layout", + "displayName": "Layout", + "iconName": "layout", "tags": "layout, presentation, arrangement, graph", "group": "data", "content": "\\e60c" }, { - "name": "Layout: auto", - "className": "pt-icon-layout-auto", + "displayName": "Layout: auto", + "iconName": "layout-auto", "tags": "layout, presentation, arrangement, auto, graph, grid", "group": "data", "content": "\\e60d" }, { - "name": "Layout: circle", - "className": "pt-icon-layout-circle", + "displayName": "Layout: circle", + "iconName": "layout-circle", "tags": "layout, presentation, arrangement, circle, graph, grid", "group": "data", "content": "\\e60e" }, { - "name": "Layout: hierarchy", - "className": "pt-icon-layout-hierarchy", + "displayName": "Layout: hierarchy", + "iconName": "layout-hierarchy", "tags": "layout, presentation, arrangement, hierarchy, order, graph, grid", "group": "data", "content": "\\e60f" }, { - "name": "Layout: grid", - "className": "pt-icon-layout-grid", + "displayName": "Layout: grid", + "iconName": "layout-grid", "tags": "layout, presentation, arrangement, grid, graph, grid", "group": "data", "content": "\\e610" }, { - "name": "Layout: group by", - "className": "pt-icon-layout-group-by", + "displayName": "Layout: group by", + "iconName": "layout-group-by", "tags": "layout, presentation, arrangement, group by, graph, grid", "group": "data", "content": "\\e611" }, { - "name": "Layout: skew grid", - "className": "pt-icon-layout-skew-grid", + "displayName": "Layout: skew grid", + "iconName": "layout-skew-grid", "tags": "layout, presentation, arrangement, skew, graph, grid", "group": "data", "content": "\\e612" }, { - "name": "Geosearch", - "className": "pt-icon-geosearch", + "displayName": "Geosearch", + "iconName": "geosearch", "tags": "search, exploration, topography, geography, location, area, magnifying glass, globe", "group": "action", "content": "\\e613" }, { - "name": "Heatmap", - "className": "pt-icon-heatmap", + "displayName": "Heatmap", + "iconName": "heatmap", "tags": "hierarchy, matrix, heat map", "group": "data", "content": "\\e614" }, { - "name": "Drive time", - "className": "pt-icon-drive-time", + "displayName": "Drive time", + "iconName": "drive-time", "tags": "car, automobile, vehicle, van, drive, ride, distance, navigation, directions", "group": "interface", "content": "\\e615" }, { - "name": "Select", - "className": "pt-icon-select", + "displayName": "Select", + "iconName": "select", "tags": "selection, arrow, cursor, area, range", "group": "action", "content": "\\e616" }, { - "name": "Predictive analysis", - "className": "pt-icon-predictive-analysis", + "displayName": "Predictive analysis", + "iconName": "predictive-analysis", "tags": "analysis, investigation, search, study, test, brain", "group": "action", "content": "\\e617" }, { - "name": "Layers", - "className": "pt-icon-layers", + "displayName": "Layers", + "iconName": "layers", "tags": "layers, levels, stack, cards", "group": "interface", "content": "\\e618" }, { - "name": "Locate", - "className": "pt-icon-locate", + "displayName": "Locate", + "iconName": "locate", "tags": "target, location, destination, mark, map, area", "group": "action", "content": "\\e619" }, { - "name": "Bookmark", - "className": "pt-icon-bookmark", + "displayName": "Bookmark", + "iconName": "bookmark", "tags": "bookmark, marker, holder, section, identifier, favorites", "group": "action", "content": "\\e61a" }, { - "name": "Citation", - "className": "pt-icon-citation", + "displayName": "Citation", + "iconName": "citation", "tags": "quotation, citation, marks, excerpt", "group": "editor", "content": "\\e61b" }, { - "name": "Tag", - "className": "pt-icon-tag", + "displayName": "Tag", + "iconName": "tag", "tags": "tag, label, badge, identification", "group": "action", "content": "\\e61c" }, { - "name": "Clipboard", - "className": "pt-icon-clipboard", + "displayName": "Clipboard", + "iconName": "clipboard", "tags": "clipboard, notepad, notebook, copy, paste, transfer, storage", "group": "action", "content": "\\e61d" }, { - "name": "Selection", - "className": "pt-icon-selection", + "displayName": "Selection", + "iconName": "selection", "tags": "selection, collection, circle, ring", "group": "action", "content": "\\29bf" }, { - "name": "Events", - "className": "pt-icon-timeline-events", + "displayName": "Events", + "iconName": "timeline-events", "tags": "calendar, timeframe, agenda, diary, day, week, month", "group": "interface", "content": "\\e61e" }, { - "name": "Line chart", - "className": "pt-icon-timeline-line-chart", + "displayName": "Line chart", + "iconName": "timeline-line-chart", "tags": "graph, line, chart", "group": "data", "content": "\\e61f" }, { - "name": "Bar chart", - "className": "pt-icon-timeline-bar-chart", + "displayName": "Bar chart", + "iconName": "timeline-bar-chart", "tags": "graph, bar, chart", "group": "data", "content": "\\e620" }, { - "name": "Applications", - "className": "pt-icon-applications", + "displayName": "Applications", + "iconName": "applications", "tags": "application, browser, windows, platforms", "group": "interface", "content": "\\e621" }, { - "name": "Projects", - "className": "pt-icon-projects", + "displayName": "Projects", + "iconName": "projects", "tags": "drawer, sections", "group": "interface", "content": "\\e622" }, { - "name": "Changes", - "className": "pt-icon-changes", + "displayName": "Changes", + "iconName": "changes", "tags": "arrows, direction, switch", "group": "action", "content": "\\e623" }, { - "name": "Notifications", - "className": "pt-icon-notifications", + "displayName": "Notifications", + "iconName": "notifications", "tags": "notifications, bell, alarm, notice, warning", "group": "interface", "content": "\\e624" }, { - "name": "Lock", - "className": "pt-icon-lock", + "displayName": "Lock", + "iconName": "lock", "tags": "lock, engage, connect, join, close", "group": "action", "content": "\\e625" }, { - "name": "Unlock", - "className": "pt-icon-unlock", + "displayName": "Unlock", + "iconName": "unlock", "tags": "unlock, disengage, disconnect, separate, open", "group": "action", "content": "\\e626" }, { - "name": "User", - "className": "pt-icon-user", + "displayName": "User", + "iconName": "user", "tags": "person, human, male, female, character, customer, individual", "group": "interface", "content": "\\e627" }, { - "name": "Search template", - "className": "pt-icon-search-template", + "displayName": "Search template", + "iconName": "search-template", "tags": "search, text, magnifying glass", "group": "action", "content": "\\e628" }, { - "name": "Inbox", - "className": "pt-icon-inbox", + "displayName": "Inbox", + "iconName": "inbox", "tags": "folder, mail, file, message", "group": "file", "content": "\\e629" }, { - "name": "More", - "className": "pt-icon-more", + "displayName": "More", + "iconName": "more", "tags": "dots, three, extra, new, options", "group": "interface", "content": "\\e62a" }, { - "name": "Help", - "className": "pt-icon-help", + "displayName": "Help", + "iconName": "help", "tags": "question mark, aid, advice, circle", "group": "action", "content": "\\003F" }, { - "name": "Calendar", - "className": "pt-icon-calendar", + "displayName": "Calendar", + "iconName": "calendar", "tags": "calendar, timeframe, agenda, diary, day, week, month", "group": "interface", "content": "\\e62b" }, { - "name": "Media", - "className": "pt-icon-media", + "displayName": "Media", + "iconName": "media", "tags": "audio, video, media, picture, image, drawing, illustration", "group": "media", "content": "\\e62c" }, { - "name": "Link", - "className": "pt-icon-link", + "displayName": "Link", + "iconName": "link", "tags": "link, connection, network", "group": "interface", "content": "\\e62d" }, { - "name": "Share", - "className": "pt-icon-share", + "displayName": "Share", + "iconName": "share", "tags": "share, square, arrow", "group": "action", "content": "\\e62e" }, { - "name": "Download", - "className": "pt-icon-download", + "displayName": "Download", + "iconName": "download", "tags": "circle, arrow, down, downloading", "group": "action", "content": "\\e62f" }, { - "name": "Document", - "className": "pt-icon-document", + "displayName": "Document", + "iconName": "document", "tags": "document, paper, page, file", "group": "file", "content": "\\e630" }, { - "name": "Properties", - "className": "pt-icon-properties", + "displayName": "Properties", + "iconName": "properties", "tags": "lines, dots, three, list", "group": "interface", "content": "\\e631" }, { - "name": "Import", - "className": "pt-icon-import", + "displayName": "Import", + "iconName": "import", "tags": "arrow, down, importing,", "group": "action", "content": "\\e632" }, { - "name": "Export", - "className": "pt-icon-export", + "displayName": "Export", + "iconName": "export", "tags": "arrow, up, exporting", "group": "action", "content": "\\e633" }, { - "name": "Minimize", - "className": "pt-icon-minimize", + "displayName": "Minimize", + "iconName": "minimize", "tags": "arrows, decrease, smaller", "group": "action", "content": "\\e634" }, { - "name": "Maximize", - "className": "pt-icon-maximize", + "displayName": "Maximize", + "iconName": "maximize", "tags": "arrows, increase, bigger", "group": "action", "content": "\\e635" }, { - "name": "Tick", - "className": "pt-icon-tick", + "displayName": "Tick", + "iconName": "tick", "tags": "mark, sign, ok, approved, success", "group": "action", "content": "\\2713" }, { - "name": "Cross", - "className": "pt-icon-cross", + "displayName": "Cross", + "iconName": "cross", "tags": "cross mark, fail, delete, no, close, remove", "group": "action", "content": "\\2717" }, { - "name": "Plus", - "className": "pt-icon-plus", + "displayName": "Plus", + "iconName": "plus", "tags": "sign, add, maximize, zoom in", "group": "action", "content": "\\002b" }, { - "name": "Minus", - "className": "pt-icon-minus", + "displayName": "Minus", + "iconName": "minus", "tags": "sign, remove, minimize, zoom out", "group": "action", "content": "\\2212" }, { - "name": "Arrow: left", - "className": "pt-icon-arrow-left", + "displayName": "Arrow: left", + "iconName": "arrow-left", "tags": "arrow, direction, left", "group": "interface", "content": "\\2190" }, { - "name": "Arrow: right", - "className": "pt-icon-arrow-right", + "displayName": "Arrow: right", + "iconName": "arrow-right", "tags": "arrow, direction, right", "group": "interface", "content": "\\2192" }, { - "name": "Exchange", - "className": "pt-icon-exchange", + "displayName": "Exchange", + "iconName": "exchange", "tags": "arrows, direction, exchange, network, swap, transfer, transaction", "group": "action", "content": "\\e636" }, { - "name": "Comparison", - "className": "pt-icon-comparison", + "displayName": "Comparison", + "iconName": "comparison", "tags": "comparison, analogy, layout, contrast", "group": "action", "content": "\\e637" }, { - "name": "List", - "className": "pt-icon-list", + "displayName": "List", + "iconName": "list", "tags": "agenda, four lines, table", "group": "table", "content": "\\2630" }, { - "name": "Filter", - "className": "pt-icon-filter", + "displayName": "Filter", + "iconName": "filter", "tags": "filtering, funnel, tube, pipe", "group": "action", "content": "\\e638" }, { - "name": "Confirm", - "className": "pt-icon-confirm", + "displayName": "Confirm", + "iconName": "confirm", "tags": "circle, tick, confirmation, acceptance, approval, authorization", "group": "action", "content": "\\e639" }, { - "name": "Fork", - "className": "pt-icon-fork", + "displayName": "Fork", + "iconName": "fork", "tags": "divide, split, break, arrows, direction", "group": "action", "content": "\\e63a" }, { - "name": "Trash", - "className": "pt-icon-trash", + "displayName": "Trash", + "iconName": "trash", "tags": "bin, rubbish, junk, remove, delete", "group": "action", "content": "\\e63b" }, { - "name": "Person", - "className": "pt-icon-person", + "displayName": "Person", + "iconName": "person", "tags": "person, human, male, female, character, customer, individual", "group": "interface", "content": "\\e63c" }, { - "name": "People", - "className": "pt-icon-people", + "displayName": "People", + "iconName": "people", "tags": "people, humans, males, females, characters, customers, individuals", "group": "interface", "content": "\\e63d" }, { - "name": "Add", - "className": "pt-icon-add", + "displayName": "Add", + "iconName": "add", "tags": "circle, plus, symbol, join", "group": "action", "content": "\\e63e" }, { - "name": "Remove", - "className": "pt-icon-remove", + "displayName": "Remove", + "iconName": "remove", "tags": "circle, minus, symbol, remove", "group": "action", "content": "\\e63f" }, { - "name": "Geolocation", - "className": "pt-icon-geolocation", + "displayName": "Geolocation", + "iconName": "geolocation", "tags": "geography, location, position, map, direction", "group": "interface", "content": "\\e640" }, { - "name": "Zoom in", - "className": "pt-icon-zoom-in", + "displayName": "Zoom in", + "iconName": "zoom-in", "tags": "search, magnifying glass, plus", "group": "action", "content": "\\e641" }, { - "name": "Zoom out", - "className": "pt-icon-zoom-out", + "displayName": "Zoom out", + "iconName": "zoom-out", "tags": "search, magnifying glass, minus", "group": "action", "content": "\\e642" }, { - "name": "Refresh", - "className": "pt-icon-refresh", + "displayName": "Refresh", + "iconName": "refresh", "tags": "circle, arrows, rotation", "group": "action", "content": "\\e643" }, { - "name": "Delete", - "className": "pt-icon-delete", + "displayName": "Delete", + "iconName": "delete", "tags": "circle, remove, cross", "group": "action", "content": "\\e644" }, { - "name": "Cog", - "className": "pt-icon-cog", + "displayName": "Cog", + "iconName": "cog", "tags": "settings, circle,", "group": "interface", "content": "\\e645" }, { - "name": "Flag", - "className": "pt-icon-flag", + "displayName": "Flag", + "iconName": "flag", "tags": "map, position, country, nationality", "group": "interface", "content": "\\2691" }, { - "name": "Pin", - "className": "pt-icon-pin", + "displayName": "Pin", + "iconName": "pin", "tags": "map, position, safety pin, attach", "group": "action", "content": "\\e646" }, { - "name": "Warning", - "className": "pt-icon-warning-sign", + "displayName": "Warning sign", + "iconName": "warning-sign", "tags": "notification, warning, triangle, exclamation mark, sign", "group": "interface", "content": "\\e647" }, { - "name": "Error", - "className": "pt-icon-error", + "displayName": "Error", + "iconName": "error", "tags": "notification, failure, circle, exclamation mark, sign", "group": "interface", "content": "\\e648" }, { - "name": "Info", - "className": "pt-icon-info-sign", + "displayName": "Info sign", + "iconName": "info-sign", "tags": "notification, information, circle, message, sign", "group": "interface", "content": "\\2139" }, { - "name": "Credit card", - "className": "pt-icon-credit-card", + "displayName": "Credit card", + "iconName": "credit-card", "tags": "payment, bank, transaction", "group": "action", "content": "\\e649" }, { - "name": "Edit", - "className": "pt-icon-edit", + "displayName": "Edit", + "iconName": "edit", "tags": "annotate, pen, modify", "group": "action", "content": "\\270E" }, { - "name": "History", - "className": "pt-icon-history", + "displayName": "History", + "iconName": "history", "tags": "past, reverse, circle, arrow", "group": "action", "content": "\\e64a" }, { - "name": "Search", - "className": "pt-icon-search", + "displayName": "Search", + "iconName": "search", "tags": "inspection, exploration, magnifying glass", "group": "action", "content": "\\e64b" }, { - "name": "Logout", - "className": "pt-icon-log-out", + "displayName": "Logout", + "iconName": "log-out", "tags": "arrow, leave", "group": "action", "content": "\\e64c" }, { - "name": "Star: filled", - "className": "pt-icon-star", + "displayName": "Star", + "iconName": "star", "tags": "shape, pin, mark, pro", "group": "interface", "content": "\\2605" }, { - "name": "Star: empty", - "className": "pt-icon-star-empty", + "displayName": "Star: empty", + "iconName": "star-empty", "tags": "shape, unpin, mark", "group": "interface", "content": "\\2606" }, { - "name": "Sort: alphabetical", - "className": "pt-icon-sort-alphabetical", + "displayName": "Sort: alphabetical", + "iconName": "sort-alphabetical", "tags": "ascending, array, arrange", "group": "action", "content": "\\e64d" }, { - "name": "Sort: numerical", - "className": "pt-icon-sort-numerical", + "displayName": "Sort: numerical", + "iconName": "sort-numerical", "tags": "ascending, array, arrange", "group": "action", "content": "\\e64e" }, { - "name": "Sort", - "className": "pt-icon-sort", + "displayName": "Sort", + "iconName": "sort", "tags": "ascending, array, arrange", "group": "action", "content": "\\e64f" }, { - "name": "Folder: opened", - "className": "pt-icon-folder-open", + "displayName": "Folder: opened", + "iconName": "folder-open", "tags": "file, portfolio, case", "group": "file", "content": "\\e651" }, { - "name": "Folder: closed", - "className": "pt-icon-folder-close", + "displayName": "Folder: closed", + "iconName": "folder-close", "tags": "file, portfolio, case", "group": "file", "content": "\\e652" }, { - "name": "Folder: shared", - "className": "pt-icon-folder-shared", + "displayName": "Folder: shared", + "iconName": "folder-shared", "tags": "file, portfolio, case", "group": "file", "content": "\\e653" }, { - "name": "Caret: up", - "className": "pt-icon-caret-up", + "displayName": "Caret: up", + "iconName": "caret-up", "tags": "direction, order, up", "group": "interface", "content": "\\2303" }, { - "name": "Caret: right", - "className": "pt-icon-caret-right", + "displayName": "Caret: right", + "iconName": "caret-right", "tags": "direction, order, right", "group": "interface", "content": "\\232A" }, { - "name": "Caret: down", - "className": "pt-icon-caret-down", + "displayName": "Caret: down", + "iconName": "caret-down", "tags": "direction, order, down", "group": "interface", "content": "\\2304" }, { - "name": "Caret: left", - "className": "pt-icon-caret-left", + "displayName": "Caret: left", + "iconName": "caret-left", "tags": "direction, order, left", "group": "interface", "content": "\\2329" }, { - "name": "Menu: opened", - "className": "pt-icon-menu-open", + "displayName": "Menu: opened", + "iconName": "menu-open", "tags": "show, navigation", "group": "interface", "content": "\\e654" }, { - "name": "Menu: closed", - "className": "pt-icon-menu-closed", + "displayName": "Menu: closed", + "iconName": "menu-closed", "tags": "hide, navigation", "group": "interface", "content": "\\e655" }, { - "name": "Feed", - "className": "pt-icon-feed", + "displayName": "Feed", + "iconName": "feed", "tags": "rss, feed", "group": "interface", "content": "\\e656" }, { - "name": "Two columns", - "className": "pt-icon-two-columns", + "displayName": "Two columns", + "iconName": "two-columns", "tags": "layout, columns, switch, change, two", "group": "action", "content": "\\e657" }, { - "name": "One column", - "className": "pt-icon-one-column", + "displayName": "One column", + "iconName": "one-column", "tags": "layout, columns, switch, change, one", "group": "action", "content": "\\e658" }, { - "name": "Dot", - "className": "pt-icon-dot", + "displayName": "Dot", + "iconName": "dot", "tags": "point, circle, small", "group": "miscellaneous", "content": "\\2022" }, { - "name": "Property", - "className": "pt-icon-property", + "displayName": "Property", + "iconName": "property", "tags": "list, order", "group": "interface", "content": "\\e65a" }, { - "name": "Time", - "className": "pt-icon-time", + "displayName": "Time", + "iconName": "time", "tags": "clock, day, hours, minutes, seconds", "group": "interface", "content": "\\23F2" }, { - "name": "Disable", - "className": "pt-icon-disable", + "displayName": "Disable", + "iconName": "disable", "tags": "off, circle, remove", "group": "action", "content": "\\e600" }, { - "name": "Unpin", - "className": "pt-icon-unpin", + "displayName": "Unpin", + "iconName": "unpin", "tags": "map, position, safety pin, detach", "group": "action", "content": "\\e650" }, { - "name": "Flows", - "className": "pt-icon-flows", + "displayName": "Flows", + "iconName": "flows", "tags": "arrows, direction, links", "group": "data", "content": "\\e659" }, { - "name": "New text box", - "className": "pt-icon-new-text-box", + "displayName": "New text box", + "iconName": "new-text-box", "tags": "text box, edit, new, create", "group": "action", "content": "\\e65b" }, { - "name": "New link", - "className": "pt-icon-new-link", + "displayName": "New link", + "iconName": "new-link", "tags": "create, add, plus, links", "group": "action", "content": "\\e65c" }, { - "name": "New object", - "className": "pt-icon-new-object", + "displayName": "New object", + "iconName": "new-object", "tags": "create, add, plus, objects, circle", "group": "action", "content": "\\e65d" }, { - "name": "Path search", - "className": "pt-icon-path-search", + "displayName": "Path search", + "iconName": "path-search", "tags": "map, magnifying glass, position, location", "group": "action", "content": "\\e65e" }, { - "name": "Automatic updates", - "className": "pt-icon-automatic-updates", + "displayName": "Automatic updates", + "iconName": "automatic-updates", "tags": "circle, arrows, tick, amends, updates", "group": "action", "content": "\\e65f" }, { - "name": "Page layout", - "className": "pt-icon-page-layout", + "displayName": "Page layout", + "iconName": "page-layout", "tags": "browser, table, design, columns", "group": "table", "content": "\\e660" }, { - "name": "Code", - "className": "pt-icon-code", + "displayName": "Code", + "iconName": "code", "tags": "code, markup, language, tag", "group": "action", "content": "\\e661" }, { - "name": "Map", - "className": "pt-icon-map", + "displayName": "Map", + "iconName": "map", "tags": "map, location, position, geography, world", "group": "interface", "content": "\\e662" }, { - "name": "Search text", - "className": "pt-icon-search-text", + "displayName": "Search text", + "iconName": "search-text", "tags": "magnifying glass, exploration", "group": "action", "content": "\\e663" }, { - "name": "Envelope", - "className": "pt-icon-envelope", + "displayName": "Envelope", + "iconName": "envelope", "tags": "post, mail, send, email", "group": "interface", "content": "\\2709" }, { - "name": "Paperclip", - "className": "pt-icon-paperclip", + "displayName": "Paperclip", + "iconName": "paperclip", "tags": "attachments, add", "group": "action", "content": "\\e664" }, { - "name": "Label", - "className": "pt-icon-label", + "displayName": "Label", + "iconName": "label", "tags": "text, tag, ticket", "group": "interface", "content": "\\e665" }, { - "name": "Globe", - "className": "pt-icon-globe", + "displayName": "Globe", + "iconName": "globe", "tags": "planet, earth, map, location, geography, world", "group": "miscellaneous", "content": "\\e666" }, { - "name": "Home", - "className": "pt-icon-home", + "displayName": "Home", + "iconName": "home", "tags": "house, building, destination", "group": "miscellaneous", "content": "\\2302" }, { - "name": "Table", - "className": "pt-icon-th", + "displayName": "Table", + "iconName": "th", "tags": "index, rows, columns, agenda, list, spreadsheet", "group": "table", "content": "\\e667" }, { - "name": "Table: list", - "className": "pt-icon-th-list", + "displayName": "Table: list", + "iconName": "th-list", "tags": "index, rows, list, order, series", "group": "table", "content": "\\e668" }, { - "name": "Table: derived", - "className": "pt-icon-th-derived", + "displayName": "Table: derived", + "iconName": "th-derived", "tags": "get, obtain, take, acquire, index, rows, columns, list", "group": "table", "content": "\\e669" }, { - "name": "Radial", - "className": "pt-icon-circle", + "displayName": "Radial", + "iconName": "circle", "tags": "circle, empty, area, radius, selection", "group": "action", "content": "\\e66a" }, { - "name": "Draw", - "className": "pt-icon-draw", + "displayName": "Draw", + "iconName": "draw", "tags": "selection, area, highlight, sketch", "group": "action", "content": "\\e66b" }, { - "name": "Insert", - "className": "pt-icon-insert", + "displayName": "Insert", + "iconName": "insert", "tags": "square, plus, add, embed, include, inject", "group": "action", "content": "\\e66c" }, { - "name": "Helper management", - "className": "pt-icon-helper-management", + "displayName": "Helper management", + "iconName": "helper-management", "tags": "square, widget", "group": "interface", "content": "\\e66d" }, { - "name": "Send to", - "className": "pt-icon-send-to", + "displayName": "Send to", + "iconName": "send-to", "tags": "circle, export, arrow", "group": "action", "content": "\\e66e" }, { - "name": "Eye", - "className": "pt-icon-eye-open", + "displayName": "Eye", + "iconName": "eye-open", "tags": "show, visible, clear, view, vision", "group": "interface", "content": "\\e66f" }, { - "name": "Folder: shared open", - "className": "pt-icon-folder-shared-open", + "displayName": "Folder: shared open", + "iconName": "folder-shared-open", "tags": "file, portfolio, case", "group": "file", "content": "\\e670" }, { - "name": "Social media", - "className": "pt-icon-social-media", + "displayName": "Social media", + "iconName": "social-media", "tags": "circle, rotate, share", "group": "action", "content": "\\e671" }, { - "name": "Arrow: up", - "className": "pt-icon-arrow-up", + "displayName": "Arrow: up", + "iconName": "arrow-up", "tags": "direction, north", "group": "interface", "content": "\\2191 " }, { - "name": "Arrow: down", - "className": "pt-icon-arrow-down", + "displayName": "Arrow: down", + "iconName": "arrow-down", "tags": "direction, south", "group": "interface", "content": "\\2193 " }, { - "name": "Arrows: horizontal", - "className": "pt-icon-arrows-horizontal", + "displayName": "Arrows: horizontal", + "iconName": "arrows-horizontal", "tags": "direction, level", "group": "interface", "content": "\\2194 " }, { - "name": "Arrows: vertical", - "className": "pt-icon-arrows-vertical", + "displayName": "Arrows: vertical", + "iconName": "arrows-vertical", "tags": "direction, level", "group": "interface", "content": "\\2195 " }, { - "name": "Resolve", - "className": "pt-icon-resolve", + "displayName": "Resolve", + "iconName": "resolve", "tags": "circles, divide, split", "group": "action", "content": "\\e672" }, { - "name": "Graph", - "className": "pt-icon-graph", + "displayName": "Graph", + "iconName": "graph", "tags": "graph, diagram", "group": "data", "content": "\\e673" }, { - "name": "Briefcase", - "className": "pt-icon-briefcase", + "displayName": "Briefcase", + "iconName": "briefcase", "tags": "suitcase, business, case, baggage,", "group": "miscellaneous", "content": "\\e674" }, { - "name": "Dollar", - "className": "pt-icon-dollar", + "displayName": "Dollar", + "iconName": "dollar", "tags": "currency, money", "group": "miscellaneous", "content": "\\0024" }, { - "name": "Ninja", - "className": "pt-icon-ninja", + "displayName": "Ninja", + "iconName": "ninja", "tags": "star, fighter, symbol", "group": "miscellaneous", "content": "\\e675" }, { - "name": "Delta", - "className": "pt-icon-delta", + "displayName": "Delta", + "iconName": "delta", "tags": "alt j, symbol", "group": "miscellaneous", "content": "\\0394" }, { - "name": "Barcode", - "className": "pt-icon-barcode", + "displayName": "Barcode", + "iconName": "barcode", "tags": "product, scan,", "group": "miscellaneous", "content": "\\e676" }, { - "name": "Torch", - "className": "pt-icon-torch", + "displayName": "Torch", + "iconName": "torch", "tags": "light, flashlight, tool", "group": "miscellaneous", "content": "\\e677" }, { - "name": "Widget", - "className": "pt-icon-widget", + "displayName": "Widget", + "iconName": "widget", "tags": "square, corners", "group": "interface", "content": "\\e678" }, { - "name": "Unresolve", - "className": "pt-icon-unresolve", + "displayName": "Unresolve", + "iconName": "unresolve", "tags": "split, divide, disconnect, separate", "group": "action", "content": "\\e679" }, { - "name": "Offline", - "className": "pt-icon-offline", + "displayName": "Offline", + "iconName": "offline", "tags": "circle, lightning, disconnected, down", "group": "interface", "content": "\\e67a" }, { - "name": "Zoom to fit", - "className": "pt-icon-zoom-to-fit", + "displayName": "Zoom to fit", + "iconName": "zoom-to-fit", "tags": "fit, scale, resize, adjust", "group": "action", "content": "\\e67b" }, { - "name": "Add to artifact", - "className": "pt-icon-add-to-artifact", + "displayName": "Add to artifact", + "iconName": "add-to-artifact", "tags": "list, plus", "group": "action", "content": "\\e67c" }, { - "name": "Map marker", - "className": "pt-icon-map-marker", + "displayName": "Map marker", + "iconName": "map-marker", "tags": "pin, map, location, position, geography, world", "group": "interface", "content": "\\e67d" }, { - "name": "Chart", - "className": "pt-icon-chart", + "displayName": "Chart", + "iconName": "chart", "tags": "arrow, increase, up, line, bar, graph", "group": "data", "content": "\\e67e" }, { - "name": "Control", - "className": "pt-icon-control", + "displayName": "Control", + "iconName": "control", "tags": "squares, layout", "group": "interface", "content": "\\e67f" }, { - "name": "Multi select", - "className": "pt-icon-multi-select", + "displayName": "Multi select", + "iconName": "multi-select", "tags": "layers, selection", "group": "interface", "content": "\\e680" }, { - "name": "Direction: left", - "className": "pt-icon-direction-left", + "displayName": "Direction: left", + "iconName": "direction-left", "tags": "pointer, west", "group": "interface", "content": "\\e681" }, { - "name": "Direction: right", - "className": "pt-icon-direction-right", + "displayName": "Direction: right", + "iconName": "direction-right", "tags": "pointer, east", "group": "interface", "content": "\\e682" }, { - "name": "Database", - "className": "pt-icon-database", + "displayName": "Database", + "iconName": "database", "tags": "stack, storage", "group": "data", "content": "\\e683" }, { - "name": "Pie chart", - "className": "pt-icon-pie-chart", + "displayName": "Pie chart", + "iconName": "pie-chart", "tags": "circle, part, section", "group": "data", "content": "\\e684" }, { - "name": "Full circle", - "className": "pt-icon-full-circle", + "displayName": "Full circle", + "iconName": "full-circle", "tags": "dot, point", "group": "miscellaneous", "content": "\\e685" }, { - "name": "Square", - "className": "pt-icon-square", + "displayName": "Square", + "iconName": "square", "tags": "empty, outline", "group": "miscellaneous", "content": "\\e686" }, { - "name": "Print", - "className": "pt-icon-print", + "displayName": "Print", + "iconName": "print", "tags": "printer, paper", "group": "action", "content": "\\2399" }, { - "name": "Presentation", - "className": "pt-icon-presentation", + "displayName": "Presentation", + "iconName": "presentation", "tags": "display, presentation", "group": "interface", "content": "\\e687" }, { - "name": "Ungroup objects", - "className": "pt-icon-ungroup-objects", + "displayName": "Ungroup objects", + "iconName": "ungroup-objects", "tags": "split, divide, disconnect, separate", "group": "action", "content": "\\e688" }, { - "name": "Chat", - "className": "pt-icon-chat", + "displayName": "Chat", + "iconName": "chat", "tags": "speech, conversation, communication, talk", "group": "action", "content": "\\e689" }, { - "name": "Comment", - "className": "pt-icon-comment", + "displayName": "Comment", + "iconName": "comment", "tags": "statement, discussion, opinion, view", "group": "action", "content": "\\e68a" }, { - "name": "Circle arrow: right", - "className": "pt-icon-circle-arrow-right", + "displayName": "Circle arrow: right", + "iconName": "circle-arrow-right", "tags": "direction, east", "group": "interface", "content": "\\e68b" }, { - "name": "Circle arrow: left", - "className": "pt-icon-circle-arrow-left", + "displayName": "Circle arrow: left", + "iconName": "circle-arrow-left", "tags": "direction, west", "group": "interface", "content": "\\e68c" }, { - "name": "Circle arrow: up", - "className": "pt-icon-circle-arrow-up", + "displayName": "Circle arrow: up", + "iconName": "circle-arrow-up", "tags": "direction, north", "group": "interface", "content": "\\e68d" }, { - "name": "Circle arrow: down", - "className": "pt-icon-circle-arrow-down", + "displayName": "Circle arrow: down", + "iconName": "circle-arrow-down", "tags": "direction, south", "group": "interface", "content": "\\e68e" }, { - "name": "Upload", - "className": "pt-icon-upload", + "displayName": "Upload", + "iconName": "upload", "tags": "arrow, circle, up, transfer", "group": "action", "content": "\\e68f" }, { - "name": "Asterisk", - "className": "pt-icon-asterisk", + "displayName": "Asterisk", + "iconName": "asterisk", "tags": "note, symbol, starred, marked", "group": "miscellaneous", "content": "\\002a" }, { - "name": "Cloud", - "className": "pt-icon-cloud", + "displayName": "Cloud", + "iconName": "cloud", "tags": "file, storage, weather", "group": "file", "content": "\\2601" }, { - "name": "Cloud: download", - "className": "pt-icon-cloud-download", + "displayName": "Cloud: download", + "iconName": "cloud-download", "tags": "file, storage, transfer", "group": "file", "content": "\\e690" }, { - "name": "Cloud: upload", - "className": "pt-icon-cloud-upload", + "displayName": "Cloud: upload", + "iconName": "cloud-upload", "tags": "file, storage, transfer", "group": "file", "content": "\\e691" }, { - "name": "Repeat", - "className": "pt-icon-repeat", + "displayName": "Repeat", + "iconName": "repeat", "tags": "circle, arrow", "group": "action", "content": "\\e692" }, { - "name": "Move", - "className": "pt-icon-move", + "displayName": "Move", + "iconName": "move", "tags": "arrows, directions, position, location", "group": "action", "content": "\\e693" }, { - "name": "Chevron: left", - "className": "pt-icon-chevron-left", + "displayName": "Chevron: left", + "iconName": "chevron-left", "tags": "arrow, direction", "group": "interface", "content": "\\e694" }, { - "name": "Chevron: right", - "className": "pt-icon-chevron-right", + "displayName": "Chevron: right", + "iconName": "chevron-right", "tags": "arrow, direction", "group": "interface", "content": "\\e695" }, { - "name": "Chevron: up", - "className": "pt-icon-chevron-up", + "displayName": "Chevron: up", + "iconName": "chevron-up", "tags": "arrow, direction", "group": "interface", "content": "\\e696" }, { - "name": "Chevron: down", - "className": "pt-icon-chevron-down", + "displayName": "Chevron: down", + "iconName": "chevron-down", "tags": "arrow, direction", "group": "interface", "content": "\\e697" }, { - "name": "Random", - "className": "pt-icon-random", + "displayName": "Random", + "iconName": "random", "tags": "arrows, aim", "group": "interface", "content": "\\e698" }, { - "name": "Fullscreen", - "className": "pt-icon-fullscreen", + "displayName": "Fullscreen", + "iconName": "fullscreen", "tags": "size, arrows, increase, proportion, width, height", "group": "media", "content": "\\e699" }, { - "name": "Login", - "className": "pt-icon-log-in", + "displayName": "Login", + "iconName": "log-in", "tags": "arrow, sign in", "group": "action", "content": "\\e69a" }, { - "name": "Heart", - "className": "pt-icon-heart", + "displayName": "Heart", + "iconName": "heart", "tags": "love, like, organ, human, feelings", "group": "miscellaneous", "content": "\\2665" }, { - "name": "Office", - "className": "pt-icon-office", + "displayName": "Office", + "iconName": "office", "tags": "building, business, location, street", "group": "miscellaneous", "content": "\\e69b" }, { - "name": "Duplicate", - "className": "pt-icon-duplicate", + "displayName": "Duplicate", + "iconName": "duplicate", "tags": "copy, square, two", "group": "action", "content": "\\e69c" }, { - "name": "Ban circle", - "className": "pt-icon-ban-circle", + "displayName": "Ban circle", + "iconName": "ban-circle", "tags": "circle, refusal", "group": "action", "content": "\\e69d" }, { - "name": "Camera", - "className": "pt-icon-camera", + "displayName": "Camera", + "iconName": "camera", "tags": "photograph, picture, video", "group": "media", "content": "\\e69e" }, { - "name": "Mobile video", - "className": "pt-icon-mobile-video", + "displayName": "Mobile video", + "iconName": "mobile-video", "tags": "film, broadcast, television", "group": "media", "content": "\\e69f" }, { - "name": "Video", - "className": "pt-icon-video", + "displayName": "Video", + "iconName": "video", "tags": "film, broadcast, television", "group": "media", "content": "\\e6a0" }, { - "name": "Film", - "className": "pt-icon-film", + "displayName": "Film", + "iconName": "film", "tags": "movie, cinema, theatre", "group": "media", "content": "\\e6a1" }, { - "name": "Settings", - "className": "pt-icon-settings", + "displayName": "Settings", + "iconName": "settings", "tags": "controls, knobs", "group": "media", "content": "\\e6a2" }, { - "name": "Volume: off", - "className": "pt-icon-volume-off", + "displayName": "Volume: off", + "iconName": "volume-off", "tags": "audio, video, speaker, music, sound, low", "group": "media", "content": "\\e6a3" }, { - "name": "Volume: down", - "className": "pt-icon-volume-down", + "displayName": "Volume: down", + "iconName": "volume-down", "tags": "audio, video, speaker, music, sound", "group": "media", "content": "\\e6a4" }, { - "name": "Volume: up", - "className": "pt-icon-volume-up", + "displayName": "Volume: up", + "iconName": "volume-up", "tags": "audio, video, speaker, music, sound, high", "group": "media", "content": "\\e6a5" }, { - "name": "Music", - "className": "pt-icon-music", + "displayName": "Music", + "iconName": "music", "tags": "audio, video, note, sound", "group": "media", "content": "\\e6a6" }, { - "name": "Step backward", - "className": "pt-icon-step-backward", + "displayName": "Step backward", + "iconName": "step-backward", "tags": "player, media, controls, digital, analogue, film, audio, video", "group": "media", "content": "\\e6a7" }, { - "name": "Fast backward", - "className": "pt-icon-fast-backward", + "displayName": "Fast backward", + "iconName": "fast-backward", "tags": "player, media, controls, digital, analogue, film, audio, video", "group": "media", "content": "\\e6a8" }, { - "name": "Pause", - "className": "pt-icon-pause", + "displayName": "Pause", + "iconName": "pause", "tags": "player, media, controls, digital, analogue, film, audio, video", "group": "media", "content": "\\e6a9" }, { - "name": "Stop", - "className": "pt-icon-stop", + "displayName": "Stop", + "iconName": "stop", "tags": "player, media, controls, digital, analogue, film, audio, video", "group": "media", "content": "\\e6aa" }, { - "name": "Play", - "className": "pt-icon-play", + "displayName": "Play", + "iconName": "play", "tags": "player, media, controls, digital, analogue, film, audio, video", "group": "media", "content": "\\e6ab" }, { - "name": "Fast forward", - "className": "pt-icon-fast-forward", + "displayName": "Fast forward", + "iconName": "fast-forward", "tags": "player, media, controls, digital, analogue, film, audio, video", "group": "media", "content": "\\e6ac" }, { - "name": "Step forward", - "className": "pt-icon-step-forward", + "displayName": "Step forward", + "iconName": "step-forward", "tags": "player, media, controls, digital, analogue, film, audio, video", "group": "media", "content": "\\e6ad" }, { - "name": "Eject", - "className": "pt-icon-eject", + "displayName": "Eject", + "iconName": "eject", "tags": "player, media, controls, digital, analogue, film, audio, video", "group": "media", "content": "\\23cf" }, { - "name": "Record", - "className": "pt-icon-record", + "displayName": "Record", + "iconName": "record", "tags": "player, media, controls, digital, analogue, film, audio, video", "group": "media", "content": "\\e6ae" }, { - "name": "Desktop", - "className": "pt-icon-desktop", + "displayName": "Desktop", + "iconName": "desktop", "tags": "screen, monitor, display", "group": "media", "content": "\\e6af" }, { - "name": "Phone", - "className": "pt-icon-phone", + "displayName": "Phone", + "iconName": "phone", "tags": "telephone, call, ring", "group": "media", "content": "\\260e" }, { - "name": "Lightbulb", - "className": "pt-icon-lightbulb", + "displayName": "Lightbulb", + "iconName": "lightbulb", "tags": "idea, glow, lamp", "group": "miscellaneous", "content": "\\e6b0" }, { - "name": "Glass", - "className": "pt-icon-glass", + "displayName": "Glass", + "iconName": "glass", "tags": "glassware, drink", "group": "miscellaneous", "content": "\\e6b1" }, { - "name": "Tint", - "className": "pt-icon-tint", + "displayName": "Tint", + "iconName": "tint", "tags": "drop, color, coloration, hue", "group": "media", "content": "\\e6b2" }, { - "name": "Flash", - "className": "pt-icon-flash", + "displayName": "Flash", + "iconName": "flash", "tags": "light, contrast, photograph, picture", "group": "media", "content": "\\e6b3" }, { - "name": "Font", - "className": "pt-icon-font", + "displayName": "Font", + "iconName": "font", "tags": "scale, typography, size", "group": "editor", "content": "\\e6b4" }, { - "name": "Header", - "className": "pt-icon-header", + "displayName": "Header", + "iconName": "header", "tags": "typography, section, layout", "group": "editor", "content": "\\e6b5" }, { - "name": "Saved", - "className": "pt-icon-saved", + "displayName": "Saved", + "iconName": "saved", "tags": "document, check mark, tick", "group": "file", "content": "\\e6b6" }, { - "name": "Floppy disk", - "className": "pt-icon-floppy-disk", + "displayName": "Floppy disk", + "iconName": "floppy-disk", "tags": "save", "group": "interface", "content": "\\e6b7" }, { - "name": "Book", - "className": "pt-icon-book", + "displayName": "Book", + "iconName": "book", "tags": "pages, album, brochure, manual", "group": "miscellaneous", "content": "\\e6b8" }, { - "name": "Hand: right", - "className": "pt-icon-hand-right", + "displayName": "Hand: right", + "iconName": "hand-right", "tags": "gesture, direction", "group": "interface", "content": "\\e6b9" }, { - "name": "Hand: up", - "className": "pt-icon-hand-up", + "displayName": "Hand: up", + "iconName": "hand-up", "tags": "gesture, direction", "group": "interface", "content": "\\e6ba" }, { - "name": "Hand: down", - "className": "pt-icon-hand-down", + "displayName": "Hand: down", + "iconName": "hand-down", "tags": "gesture, direction", "group": "interface", "content": "\\e6bb" }, { - "name": "Hand: left", - "className": "pt-icon-hand-left", + "displayName": "Hand: left", + "iconName": "hand-left", "tags": "gesture, direction", "group": "interface", "content": "\\e6bc" }, { - "name": "Thumbs: up", - "className": "pt-icon-thumbs-up", + "displayName": "Thumbs: up", + "iconName": "thumbs-up", "tags": "hand, like, ok", "group": "interface", "content": "\\e6bd" }, { - "name": "Thumbs: down", - "className": "pt-icon-thumbs-down", + "displayName": "Thumbs: down", + "iconName": "thumbs-down", "tags": "hand, dislike, bad", "group": "interface", "content": "\\e6be" }, { - "name": "Box", - "className": "pt-icon-box", + "displayName": "Box", + "iconName": "box", "tags": "folder, carton, pack", "group": "file", "content": "\\e6bf" }, { - "name": "Compressed", - "className": "pt-icon-compressed", + "displayName": "Compressed", + "iconName": "compressed", "tags": "folder, carton, pack, shrink, wrap, shorten", "group": "file", "content": "\\e6c0" }, { - "name": "Shopping cart", - "className": "pt-icon-shopping-cart", + "displayName": "Shopping cart", + "iconName": "shopping-cart", "tags": "trolley, mall, online, store, business", "group": "miscellaneous", "content": "\\e6c1" }, { - "name": "Shop", - "className": "pt-icon-shop", + "displayName": "Shop", + "iconName": "shop", "tags": "store, business, shopping", "group": "miscellaneous", "content": "\\e6c2" }, { - "name": "Layout: linear", - "className": "pt-icon-layout-linear", + "displayName": "Layout: linear", + "iconName": "layout-linear", "tags": "dots, connection, line", "group": "data", "content": "\\e6c3" }, { - "name": "Undo", - "className": "pt-icon-undo", + "displayName": "Undo", + "iconName": "undo", "tags": "back, cancel, reverse, revoke,", "group": "action", "content": "\\238c" }, { - "name": "Redo", - "className": "pt-icon-redo", + "displayName": "Redo", + "iconName": "redo", "tags": "forward, push", "group": "action", "content": "\\e6c4" }, { - "name": "Code block", - "className": "pt-icon-code-block", + "displayName": "Code block", + "iconName": "code-block", "tags": "code, markup, language, tag", "group": "file", "content": "\\e6c5" }, { - "name": "Double caret: vertical", - "className": "pt-icon-double-caret-vertical", + "displayName": "Double caret: vertical", + "iconName": "double-caret-vertical", "tags": "sort, arrow, list", "group": "interface", "content": "\\e6c6" }, { - "name": "Double caret: horizontal", - "className": "pt-icon-double-caret-horizontal", + "displayName": "Double caret: horizontal", + "iconName": "double-caret-horizontal", "tags": "sort, arrow, list", "group": "interface", "content": "\\e6c7" }, { - "name": "Sort: alphabetical descending", - "className": "pt-icon-sort-alphabetical-desc", + "displayName": "Sort: alphabetical descending", + "iconName": "sort-alphabetical-desc", "tags": "order, list, array, arrange", "group": "action", "content": "\\e6c8" }, { - "name": "Sort: numerical descending", - "className": "pt-icon-sort-numerical-desc", + "displayName": "Sort: numerical descending", + "iconName": "sort-numerical-desc", "tags": "order, list, array, arrange", "group": "action", "content": "\\e6c9" }, { - "name": "Take action", - "className": "pt-icon-take-action", + "displayName": "Take action", + "iconName": "take-action", "tags": "case, court, deal, gavel", "group": "action", "content": "\\e6ca" }, { - "name": "Contrast", - "className": "pt-icon-contrast", + "displayName": "Contrast", + "iconName": "contrast", "tags": "color, brightness", "group": "media", "content": "\\e6cb" }, { - "name": "Eye: off", - "className": "pt-icon-eye-off", + "displayName": "Eye: off", + "iconName": "eye-off", "tags": "visibility, hide", "group": "interface", "content": "\\e6cc" }, { - "name": "Area chart", - "className": "pt-icon-timeline-area-chart", + "displayName": "Area chart", + "iconName": "timeline-area-chart", "tags": "graph, line, diagram", "group": "data", "content": "\\e6cd" }, { - "name": "Doughnut chart", - "className": "pt-icon-doughnut-chart", + "displayName": "Doughnut chart", + "iconName": "doughnut-chart", "tags": "circle, section, part, graph", "group": "data", "content": "\\e6ce" }, { - "name": "Layer", - "className": "pt-icon-layer", + "displayName": "Layer", + "iconName": "layer", "tags": "zone, level", "group": "interface", "content": "\\e6cf" }, { - "name": "Grid", - "className": "pt-icon-grid", + "displayName": "Grid", + "iconName": "grid", "tags": "layout, arrangement", "group": "data", "content": "\\e6d0" }, { - "name": "Polygon filter", - "className": "pt-icon-polygon-filter", + "displayName": "Polygon filter", + "iconName": "polygon-filter", "tags": "shape, form", "group": "data", "content": "\\e6d1" }, { - "name": "Add to folder", - "className": "pt-icon-add-to-folder", + "displayName": "Add to folder", + "iconName": "add-to-folder", "tags": "file, portfolio, case, import", "group": "file", "content": "\\e6d2" }, { - "name": "Layout: balloon", - "className": "pt-icon-layout-balloon", + "displayName": "Layout: balloon", + "iconName": "layout-balloon", "tags": "layout, presentation, arrangement, graph", "group": "data", "content": "\\e6d3" }, { - "name": "Layout: sorted clusters", - "className": "pt-icon-layout-sorted-clusters", + "displayName": "Layout: sorted clusters", + "iconName": "layout-sorted-clusters", "tags": "layout, presentation, arrangement, graph", "group": "data", "content": "\\e6d4" }, { - "name": "Sort: ascending", - "className": "pt-icon-sort-asc", + "displayName": "Sort: ascending", + "iconName": "sort-asc", "tags": "order, list, array, arrange", "group": "action", "content": "\\e6d5" }, { - "name": "Sort: descending", - "className": "pt-icon-sort-desc", + "displayName": "Sort: descending", + "iconName": "sort-desc", "tags": "order, list, array, arrange", "group": "action", "content": "\\e6d6" }, { - "name": "Small cross", - "className": "pt-icon-small-cross", + "displayName": "Small cross", + "iconName": "small-cross", "tags": "cross mark, fail, delete, no, close, remove", "group": "action", "content": "\\e6d7" }, { - "name": "Small tick", - "className": "pt-icon-small-tick", + "displayName": "Small tick", + "iconName": "small-tick", "tags": "mark, sign, ok, approved, success", "group": "action", "content": "\\e6d8" }, { - "name": "Power", - "className": "pt-icon-power", + "displayName": "Power", + "iconName": "power", "tags": "button, on, off", "group": "media", "content": "\\e6d9" }, { - "name": "Column layout", - "className": "pt-icon-column-layout", + "displayName": "Column layout", + "iconName": "column-layout", "tags": "layout, arrangement", "group": "table", "content": "\\e6da" }, { - "name": "Arrow: top left", - "className": "pt-icon-arrow-top-left", + "displayName": "Arrow: top left", + "iconName": "arrow-top-left", "tags": "direction, north west", "group": "interface", "content": "\\2196" }, { - "name": "Arrow: top right", - "className": "pt-icon-arrow-top-right", + "displayName": "Arrow: top right", + "iconName": "arrow-top-right", "tags": "direction, north east", "group": "interface", "content": "\\2197" }, { - "name": "Arrow: bottom right", - "className": "pt-icon-arrow-bottom-right", + "displayName": "Arrow: bottom right", + "iconName": "arrow-bottom-right", "tags": "direction, south east", "group": "interface", "content": "\\2198" }, { - "name": "Arrow: bottom left", - "className": "pt-icon-arrow-bottom-left", + "displayName": "Arrow: bottom left", + "iconName": "arrow-bottom-left", "tags": "direction, south west", "group": "interface", "content": "\\2199" }, { - "name": "Mugshot", - "className": "pt-icon-mugshot", + "displayName": "Mugshot", + "iconName": "mugshot", "tags": "person, photograph, picture,", "group": "interface", "content": "\\e6db" }, { - "name": "Headset", - "className": "pt-icon-headset", + "displayName": "Headset", + "iconName": "headset", "tags": "headphones, call, communication", "group": "media", "content": "\\e6dc" }, { - "name": "Text highlight", - "className": "pt-icon-text-highlight", + "displayName": "Text highlight", + "iconName": "text-highlight", "tags": "selector, content", "group": "editor", "content": "\\e6dd" }, { - "name": "Hand", - "className": "pt-icon-hand", + "displayName": "Hand", + "iconName": "hand", "tags": "gesture, fingers", "group": "interface", "content": "\\e6de" }, { - "name": "Chevron: backward", - "className": "pt-icon-chevron-backward", + "displayName": "Chevron: backward", + "iconName": "chevron-backward", "tags": "skip, direction", "group": "interface", "content": "\\e6df" }, { - "name": "Chevron: forward", - "className": "pt-icon-chevron-forward", + "displayName": "Chevron: forward", + "iconName": "chevron-forward", "tags": "skip, direction", "group": "interface", "content": "\\e6e0" }, { - "name": "Rotate: document", - "className": "pt-icon-rotate-document", + "displayName": "Rotate: document", + "iconName": "rotate-document", "tags": "turn, anti clockwise", "group": "editor", "content": "\\e6e1" }, { - "name": "Rotate: page", - "className": "pt-icon-rotate-page", + "displayName": "Rotate: page", + "iconName": "rotate-page", "tags": "turn, anti clockwise", "group": "editor", "content": "\\e6e2" }, { - "name": "Badge", - "className": "pt-icon-badge", + "displayName": "Badge", + "iconName": "badge", "tags": "emblem, symbol, identification, insignia, marker", "group": "miscellaneous", "content": "\\e6e3" }, { - "name": "Grid view", - "className": "pt-icon-grid-view", + "displayName": "Grid view", + "iconName": "grid-view", "tags": "layout, arrangement", "group": "editor", "content": "\\e6e4" }, { - "name": "Function", - "className": "pt-icon-function", + "displayName": "Function", + "iconName": "function", "tags": "math, calculation", "group": "table", "content": "\\e6e5" }, { - "name": "Waterfall chart", - "className": "pt-icon-waterfall-chart", + "displayName": "Waterfall chart", + "iconName": "waterfall-chart", "tags": "graph, diagram", "group": "data", "content": "\\e6e6" }, { - "name": "Stacked chart", - "className": "pt-icon-stacked-chart", + "displayName": "Stacked chart", + "iconName": "stacked-chart", "tags": "bar chart", "group": "data", "content": "\\e6e7" }, { - "name": "Pulse", - "className": "pt-icon-pulse", + "displayName": "Pulse", + "iconName": "pulse", "tags": "medical, life, heartbeat, hospital", "group": "miscellaneous", "content": "\\e6e8" }, { - "name": "New person", - "className": "pt-icon-new-person", + "displayName": "New person", + "iconName": "new-person", "tags": "person, human, male, female, character, customer, individual, add", "group": "interface", "content": "\\e6e9" }, { - "name": "Exclude row", - "className": "pt-icon-exclude-row", + "displayName": "Exclude row", + "iconName": "exclude-row", "tags": "delete, remove, table", "group": "table", "content": "\\e6ea" }, { - "name": "Pivot table", - "className": "pt-icon-pivot-table", + "displayName": "Pivot table", + "iconName": "pivot-table", "tags": "rotate, axis", "group": "table", "content": "\\e6eb" }, { - "name": "Segmented control", - "className": "pt-icon-segmented-control", + "displayName": "Segmented control", + "iconName": "segmented-control", "tags": "button, switch, option", "group": "interface", "content": "\\e6ec" }, { - "name": "Highlight", - "className": "pt-icon-highlight", + "displayName": "Highlight", + "iconName": "highlight", "tags": "select, text", "group": "action", "content": "\\e6ed" }, { - "name": "Filter: list", - "className": "pt-icon-filter-list", + "displayName": "Filter: list", + "iconName": "filter-list", "tags": "filtering, funnel, tube, pipe", "group": "action", "content": "\\e6ee" }, { - "name": "Cut", - "className": "pt-icon-cut", + "displayName": "Cut", + "iconName": "cut", "tags": "scissors", "group": "action", "content": "\\e6ef" }, { - "name": "Annotation", - "className": "pt-icon-annotation", + "displayName": "Annotation", + "iconName": "annotation", "tags": "note, comment, edit,", "group": "editor", "content": "\\e6f0" }, { - "name": "Pivot", - "className": "pt-icon-pivot", + "displayName": "Pivot", + "iconName": "pivot", "tags": "rotate, axis", "group": "action", "content": "\\e6f1" }, { - "name": "Ring", - "className": "pt-icon-ring", + "displayName": "Ring", + "iconName": "ring", "tags": "empty, circle, selection", "group": "miscellaneous", "content": "\\e6f2" }, { - "name": "Heat grid", - "className": "pt-icon-heat-grid", + "displayName": "Heat grid", + "iconName": "heat-grid", "tags": "chart", "group": "data", "content": "\\e6f3" }, { - "name": "Gantt chart", - "className": "pt-icon-gantt-chart", + "displayName": "Gantt chart", + "iconName": "gantt-chart", "tags": "bar chart, schedule, project", "group": "data", "content": "\\e6f4" }, { - "name": "Variable", - "className": "pt-icon-variable", + "displayName": "Variable", + "iconName": "variable", "tags": "math, calculation", "group": "table", "content": "\\e6f5" }, { - "name": "Manual", - "className": "pt-icon-manual", + "displayName": "Manual", + "iconName": "manual", "tags": "guide, instruction", "group": "interface", "content": "\\e6f6" }, { - "name": "Add row: top", - "className": "pt-icon-add-row-top", + "displayName": "Add row: top", + "iconName": "add-row-top", "tags": "table, attach, join", "group": "table", "content": "\\e6f7" }, { - "name": "Add row: bottom", - "className": "pt-icon-add-row-bottom", + "displayName": "Add row: bottom", + "iconName": "add-row-bottom", "tags": "table, attach, join", "group": "table", "content": "\\e6f8" }, { - "name": "Add column: left", - "className": "pt-icon-add-column-left", + "displayName": "Add column: left", + "iconName": "add-column-left", "tags": "table, attach, join", "group": "table", "content": "\\e6f9" }, { - "name": "Add column: right", - "className": "pt-icon-add-column-right", + "displayName": "Add column: right", + "iconName": "add-column-right", "tags": "table, attach, join", "group": "table", "content": "\\e6fa" }, { - "name": "Remove row: top", - "className": "pt-icon-remove-row-top", + "displayName": "Remove row: top", + "iconName": "remove-row-top", "tags": "table, detach, delete", "group": "table", "content": "\\e6fb" }, { - "name": "Remove row: bottom", - "className": "pt-icon-remove-row-bottom", + "displayName": "Remove row: bottom", + "iconName": "remove-row-bottom", "tags": "table, detach, delete", "group": "table", "content": "\\e6fc" }, { - "name": "Remove column: left", - "className": "pt-icon-remove-column-left", + "displayName": "Remove column: left", + "iconName": "remove-column-left", "tags": "table, detach, delete", "group": "table", "content": "\\e6fd" }, { - "name": "Remove column: right", - "className": "pt-icon-remove-column-right", + "displayName": "Remove column: right", + "iconName": "remove-column-right", "tags": "table, detach, delete", "group": "table", "content": "\\e6fe" }, { - "name": "Double chevron: left", - "className": "pt-icon-double-chevron-left", + "displayName": "Double chevron: left", + "iconName": "double-chevron-left", "tags": "arrows, multiple, direction", "group": "interface", "content": "\\e6ff" }, { - "name": "Double chevron: right", - "className": "pt-icon-double-chevron-right", + "displayName": "Double chevron: right", + "iconName": "double-chevron-right", "tags": "arrows, multiple, direction", "group": "interface", "content": "\\e701" }, { - "name": "Double chevron: up", - "className": "pt-icon-double-chevron-up", + "displayName": "Double chevron: up", + "iconName": "double-chevron-up", "tags": "arrows, multiple, direction", "group": "interface", "content": "\\e702" }, { - "name": "Double chevron: down", - "className": "pt-icon-double-chevron-down", + "displayName": "Double chevron: down", + "iconName": "double-chevron-down", "tags": "arrows, multiple, direction", "group": "interface", "content": "\\e703" }, { - "name": "Key: control", - "className": "pt-icon-key-control", + "displayName": "Key: control", + "iconName": "key-control", "tags": "interface, shortcuts, buttons", "group": "media", "content": "\\e704" }, { - "name": "Key: command", - "className": "pt-icon-key-command", + "displayName": "Key: command", + "iconName": "key-command", "tags": "interface, shortcuts, buttons", "group": "media", "content": "\\e705" }, { - "name": "Key: shift", - "className": "pt-icon-key-shift", + "displayName": "Key: shift", + "iconName": "key-shift", "tags": "interface, shortcuts, buttons", "group": "media", "content": "\\e706" }, { - "name": "Key: backspace", - "className": "pt-icon-key-backspace", + "displayName": "Key: backspace", + "iconName": "key-backspace", "tags": "interface, shortcuts, buttons", "group": "media", "content": "\\e707" }, { - "name": "Key: delete", - "className": "pt-icon-key-delete", + "displayName": "Key: delete", + "iconName": "key-delete", "tags": "interface, shortcuts, buttons", "group": "media", "content": "\\e708" }, { - "name": "Key: escape", - "className": "pt-icon-key-escape", + "displayName": "Key: escape", + "iconName": "key-escape", "tags": "interface, shortcuts, buttons", "group": "media", "content": "\\e709" }, { - "name": "Key: enter", - "className": "pt-icon-key-enter", + "displayName": "Key: enter", + "iconName": "key-enter", "tags": "interface, shortcuts, buttons", "group": "media", "content": "\\e70a" }, { - "name": "Calculator", - "className": "pt-icon-calculator", + "displayName": "Calculator", + "iconName": "calculator", "tags": "math, device, value, numbers, total", "group": "miscellaneous", "content": "\\e70b" }, { - "name": "Horizontal bar chart", - "className": "pt-icon-horizontal-bar-chart", + "displayName": "Horizontal bar chart", + "iconName": "horizontal-bar-chart", "tags": "graph, diagram", "group": "data", "content": "\\e70c" }, { - "name": "Small plus", - "className": "pt-icon-small-plus", + "displayName": "Small plus", + "iconName": "small-plus", "tags": "sign, add, maximize, zoom in", "group": "action", "content": "\\e70d" }, { - "name": "Small minus", - "className": "pt-icon-small-minus", + "displayName": "Small minus", + "iconName": "small-minus", "tags": "sign, remove, minimize, zoom out", "group": "action", "content": "\\e70e" }, { - "name": "Step chart", - "className": "pt-icon-step-chart", + "displayName": "Step chart", + "iconName": "step-chart", "tags": "graph, diagram", "group": "data", "content": "\\e70f" }, { - "name": "Euro", - "className": "pt-icon-euro", + "displayName": "Euro", + "iconName": "euro", "tags": "currency, money", "group": "miscellaneous", "content": "\\20ac" }, { - "name": "Drag handle: vertical", - "className": "pt-icon-drag-handle-vertical", + "displayName": "Drag handle: vertical", + "iconName": "drag-handle-vertical", "tags": "move, pull", "group": "action", "content": "\\e715" }, { - "name": "Drag handle: horizontal", - "className": "pt-icon-drag-handle-horizontal", + "displayName": "Drag handle: horizontal", + "iconName": "drag-handle-horizontal", "tags": "move, pull", "group": "action", "content": "\\e716" }, { - "name": "Mobile phone", - "className": "pt-icon-mobile-phone", + "displayName": "Mobile phone", + "iconName": "mobile-phone", "tags": "cellular, device, call", "group": "media", "content": "\\e717" }, { - "name": "Sim card", - "className": "pt-icon-sim-card", + "displayName": "Sim card", + "iconName": "sim-card", "tags": "phone, cellular", "group": "media", "content": "\\e718" }, { - "name": "Trending: up", - "className": "pt-icon-trending-up", + "displayName": "Trending: up", + "iconName": "trending-up", "tags": "growth, incline, progress", "group": "data", "content": "\\e719" }, { - "name": "Trending: down", - "className": "pt-icon-trending-down", + "displayName": "Trending: down", + "iconName": "trending-down", "tags": "decrease, decline, loss", "group": "data", "content": "\\e71a" }, { - "name": "Curved range chart", - "className": "pt-icon-curved-range-chart", + "displayName": "Curved range chart", + "iconName": "curved-range-chart", "tags": "graph, diagram", "group": "data", "content": "\\e71b" }, { - "name": "Vertical bar chart: descending", - "className": "pt-icon-vertical-bar-chart-desc", + "displayName": "Vertical bar chart: descending", + "iconName": "vertical-bar-chart-desc", "tags": "graph, bar, histogram", "group": "data", "content": "\\e71c" }, { - "name": "Horizontal bar chart: descending", - "className": "pt-icon-horizontal-bar-chart-desc", + "displayName": "Horizontal bar chart: descending", + "iconName": "horizontal-bar-chart-desc", "tags": "graph, bar, histogram", "group": "data", "content": "\\e71d" }, { - "name": "Document: open", - "className": "pt-icon-document-open", + "displayName": "Document: open", + "iconName": "document-open", "tags": "paper, access", "group": "file", "content": "\\e71e" }, { - "name": "Document: share", - "className": "pt-icon-document-share", + "displayName": "Document: share", + "iconName": "document-share", "tags": "paper, send", "group": "file", "content": "\\e71f" }, { - "name": "Distribution: horizontal", - "className": "pt-icon-horizontal-distribution", + "displayName": "Distribution: horizontal", + "iconName": "horizontal-distribution", "tags": "alignment, layout, position", "group": "editor", "content": "\\e720" }, { - "name": "Distribution: vertical", - "className": "pt-icon-vertical-distribution", + "displayName": "Distribution: vertical", + "iconName": "vertical-distribution", "tags": "alignment, layout, position", "group": "editor", "content": "\\e721" }, { - "name": "Alignment: left", - "className": "pt-icon-alignment-left", + "displayName": "Alignment: left", + "iconName": "alignment-left", "tags": "layout, position", "group": "editor", "content": "\\e722" }, { - "name": "Alignment: vertical center", - "className": "pt-icon-alignment-vertical-center", + "displayName": "Alignment: vertical center", + "iconName": "alignment-vertical-center", "tags": "layout, position", "group": "editor", "content": "\\e723" }, { - "name": "Alignment: right", - "className": "pt-icon-alignment-right", + "displayName": "Alignment: right", + "iconName": "alignment-right", "tags": "layout, position", "group": "editor", "content": "\\e724" }, { - "name": "Alignment: top", - "className": "pt-icon-alignment-top", + "displayName": "Alignment: top", + "iconName": "alignment-top", "tags": "layout, position", "group": "editor", "content": "\\e725" }, { - "name": "Alignment: horizontal center", - "className": "pt-icon-alignment-horizontal-center", + "displayName": "Alignment: horizontal center", + "iconName": "alignment-horizontal-center", "tags": "layout, position", "group": "editor", "content": "\\e726" }, { - "name": "Alignment: bottom", - "className": "pt-icon-alignment-bottom", + "displayName": "Alignment: bottom", + "iconName": "alignment-bottom", "tags": "layout, position", "group": "editor", "content": "\\e727" }, { - "name": "Git: pull", - "className": "pt-icon-git-pull", + "displayName": "Git: pull", + "iconName": "git-pull", "tags": "github, repository, code, command", "group": "action", "content": "\\e728" }, { - "name": "Git: merge", - "className": "pt-icon-git-merge", + "displayName": "Git: merge", + "iconName": "git-merge", "tags": "github, repository, code, command", "group": "action", "content": "\\e729" }, { - "name": "Git: branch", - "className": "pt-icon-git-branch", + "displayName": "Git: branch", + "iconName": "git-branch", "tags": "github, repository, code, command", "group": "action", "content": "\\e72a" }, { - "name": "Git: commit", - "className": "pt-icon-git-commit", + "displayName": "Git: commit", + "iconName": "git-commit", "tags": "github, repository, code, command", "group": "action", "content": "\\e72b" }, { - "name": "Git: push", - "className": "pt-icon-git-push", + "displayName": "Git: push", + "iconName": "git-push", "tags": "github, repository, code, command", "group": "action", "content": "\\e72c" }, { - "name": "Build", - "className": "pt-icon-build", + "displayName": "Build", + "iconName": "build", "tags": "hammer, tool", "group": "action", "content": "\\e72d" }, { - "name": "Symbol: circle", - "className": "pt-icon-symbol-circle", + "displayName": "Symbol: circle", + "iconName": "symbol-circle", "tags": "shape, figure", "group": "interface", "content": "\\e72e" }, { - "name": "Symbol: square", - "className": "pt-icon-symbol-square", + "displayName": "Symbol: square", + "iconName": "symbol-square", "tags": "shape, figure", "group": "interface", "content": "\\e72f" }, { - "name": "Symbol: diamond", - "className": "pt-icon-symbol-diamond", + "displayName": "Symbol: diamond", + "iconName": "symbol-diamond", "tags": "shape, figure", "group": "interface", "content": "\\e730" }, { - "name": "Symbol: cross", - "className": "pt-icon-symbol-cross", + "displayName": "Symbol: cross", + "iconName": "symbol-cross", "tags": "shape, figure", "group": "interface", "content": "\\e731" }, { - "name": "Symbol: triangle up", - "className": "pt-icon-symbol-triangle-up", + "displayName": "Symbol: triangle up", + "iconName": "symbol-triangle-up", "tags": "shape, figure", "group": "interface", "content": "\\e732" }, { - "name": "Symbol: triangle down", - "className": "pt-icon-symbol-triangle-down", + "displayName": "Symbol: triangle down", + "iconName": "symbol-triangle-down", "tags": "shape, figure", "group": "interface", "content": "\\e733" }, { - "name": "Wrench", - "className": "pt-icon-wrench", + "displayName": "Wrench", + "iconName": "wrench", "tags": "tool, repair", "group": "miscellaneous", "content": "\\e734" }, { - "name": "Application", - "className": "pt-icon-application", + "displayName": "Application", + "iconName": "application", "tags": "application, browser, windows, platform", "group": "interface", "content": "\\e735" }, { - "name": "Send to graph", - "className": "pt-icon-send-to-graph", + "displayName": "Send to graph", + "iconName": "send-to-graph", "tags": "transfer, move", "group": "action", "content": "\\e736" }, { - "name": "Send to map", - "className": "pt-icon-send-to-map", + "displayName": "Send to map", + "iconName": "send-to-map", "tags": "transfer, move", "group": "action", "content": "\\e737" }, { - "name": "Join table", - "className": "pt-icon-join-table", + "displayName": "Join table", + "iconName": "join-table", "tags": "combine, attach, connect, link, unite", "group": "table", "content": "\\e738" }, { - "name": "Derive column", - "className": "pt-icon-derive-column", + "displayName": "Derive column", + "iconName": "derive-column", "tags": "table, obtain, get, take, develop", "group": "action", "content": "\\e739" }, { - "name": "Rotate image: left", - "className": "pt-icon-image-rotate-left", + "displayName": "Rotate image: left", + "iconName": "image-rotate-left", "tags": "picture, turn, alternate", "group": "media", "content": "\\e73a" }, { - "name": "Rotate image: right", - "className": "pt-icon-image-rotate-right", + "displayName": "Rotate image: right", + "iconName": "image-rotate-right", "tags": "picture, turn, alternate", "group": "media", "content": "\\e73b" }, { - "name": "Known vehicle", - "className": "pt-icon-known-vehicle", + "displayName": "Known vehicle", + "iconName": "known-vehicle", "tags": "car, automobile, vehicle, van, drive, ride, distance, navigation, directions", "group": "interface", "content": "\\e73c" }, { - "name": "Unknown vehicle", - "className": "pt-icon-unknown-vehicle", + "displayName": "Unknown vehicle", + "iconName": "unknown-vehicle", "tags": "car, automobile, vehicle, van, drive, ride, distance, navigation, directions", "group": "interface", "content": "\\e73d" }, { - "name": "Scatter plot", - "className": "pt-icon-scatter-plot", + "displayName": "Scatter plot", + "iconName": "scatter-plot", "tags": "graph, diagram", "group": "data", "content": "\\e73e" }, { - "name": "Oil field", - "className": "pt-icon-oil-field", + "displayName": "Oil field", + "iconName": "oil-field", "tags": "fuel, petroleum, gas, well, drilling, pump", "group": "interface", "content": "\\e73f" }, { - "name": "Rig", - "className": "pt-icon-rig", + "displayName": "Rig", + "iconName": "rig", "tags": "fuel, petroleum, gas, well, drilling", "group": "interface", "content": "\\e740" }, { - "name": "New map", - "className": "pt-icon-map-create", + "displayName": "New map", + "iconName": "map-create", "tags": "map, location, position, geography, world", "group": "interface", "content": "\\e741" }, { - "name": "Key: option", - "className": "pt-icon-key-option", + "displayName": "Key: option", + "iconName": "key-option", "tags": "interface, shortcuts, buttons", "group": "media", "content": "\\e742" }, { - "name": "List: detail view", - "className": "pt-icon-list-detail-view", + "displayName": "List: detail view", + "iconName": "list-detail-view", "tags": "agenda, four lines, table", "group": "table", "content": "\\e743" }, { - "name": "Swap: vertical", - "className": "pt-icon-swap-vertical", + "displayName": "Swap: vertical", + "iconName": "swap-vertical", "tags": "direction, position, opposite, inverse", "group": "interface", "content": "\\e744" }, { - "name": "Swap: horizontal", - "className": "pt-icon-swap-horizontal", + "displayName": "Swap: horizontal", + "iconName": "swap-horizontal", "tags": "direction, position, opposite, inverse", "group": "interface", "content": "\\e745" }, { - "name": "Numbered list", - "className": "pt-icon-numbered-list", + "displayName": "Numbered list", + "iconName": "numbered-list", "tags": "order, list, array, arrange", "group": "action", "content": "\\e746" }, { - "name": "New grid item", - "className": "pt-icon-new-grid-item", + "displayName": "New grid item", + "iconName": "new-grid-item", "tags": "layout, arrangement, add", "group": "editor", "content": "\\e747" }, { - "name": "Git: repo", - "className": "pt-icon-git-repo", + "displayName": "Git: repo", + "iconName": "git-repo", "tags": "github, repository, code, command", "group": "action", "content": "\\e748" }, { - "name": "Git: new branch", - "className": "pt-icon-git-new-branch", + "displayName": "Git: new branch", + "iconName": "git-new-branch", "tags": "github, repository, code, command", "group": "action", "content": "\\e749" }, { - "name": "Manually entered data", - "className": "pt-icon-manually-entered-data", + "displayName": "Manually entered data", + "iconName": "manually-entered-data", "tags": "input, human", "group": "editor", "content": "\\e74a" }, { - "name": "Airplane", - "className": "pt-icon-airplane", + "displayName": "Airplane", + "iconName": "airplane", "tags": "flight, jet, travel, trip, transport, take-off", "group": "interface", "content": "\\e74b" }, { - "name": "Merge columns", - "className": "pt-icon-merge-columns", + "displayName": "Merge columns", + "iconName": "merge-columns", "tags": "layout, change, two, combine, unite", "group": "table", "content": "\\e74f" }, { - "name": "Split columns", - "className": "pt-icon-split-columns", + "displayName": "Split columns", + "iconName": "split-columns", "tags": "layout, change, two, break, divide", "group": "table", "content": "\\e750" }, { - "name": "Dashboard", - "className": "pt-icon-dashboard", + "displayName": "Dashboard", + "iconName": "dashboard", "tags": "panel, control, gauge, instrument, meter", "group": "interface", "content": "\\e751" }, { - "name": "Publish function", - "className": "pt-icon-publish-function", + "displayName": "Publish function", + "iconName": "publish-function", "tags": "math, calculation, share", "group": "table", "content": "\\e752" }, { - "name": "Path", - "className": "pt-icon-path", + "displayName": "Path", + "iconName": "path", "tags": "hierarchy, trail, steps", "group": "interface", "content": "\\e753" }, { - "name": "Moon", - "className": "pt-icon-moon", + "displayName": "Moon", + "iconName": "moon", "tags": "night, sky, dark", "group": "miscellaneous", "content": "\\e754" }, { - "name": "Remove column", - "className": "pt-icon-remove-column", + "displayName": "Remove column", + "iconName": "remove-column", "tags": "table, detach, delete", "group": "table", "content": "\\e755" }, { - "name": "Numerical", - "className": "pt-icon-numerical", + "displayName": "Numerical", + "iconName": "numerical", "tags": "numbers, order, sort, arrange, array", "group": "action", "content": "\\e756" }, { - "name": "Key: tab", - "className": "pt-icon-key-tab", + "displayName": "Key: tab", + "iconName": "key-tab", "tags": "interface, shortcuts, buttons", "group": "media", "content": "\\e757" }, { - "name": "Regression chart", - "className": "pt-icon-regression-chart", + "displayName": "Regression chart", + "iconName": "regression-chart", "tags": "graph, line, chart", "group": "data", "content": "\\e758" }, { - "name": "Translate", - "className": "pt-icon-translate", + "displayName": "Translate", + "iconName": "translate", "tags": "language, convert", "group": "action", "content": "\\e759" }, { - "name": "Eye: on", - "className": "pt-icon-eye-on", + "displayName": "Eye: on", + "iconName": "eye-on", "tags": "visibility, show", "group": "interface", "content": "\\e75a" }, { - "name": "Vertical bar chart: ascending", - "className": "pt-icon-vertical-bar-chart-asc", + "displayName": "Vertical bar chart: ascending", + "iconName": "vertical-bar-chart-asc", "tags": "graph, bar, histogram", "group": "data", "content": "\\e75b" }, { - "name": "Horizontal bar chart: ascending", - "className": "pt-icon-horizontal-bar-chart-asc", + "displayName": "Horizontal bar chart: ascending", + "iconName": "horizontal-bar-chart-asc", "tags": "graph, bar, histogram", "group": "data", "content": "\\e75c" }, { - "name": "Grouped bar chart", - "className": "pt-icon-grouped-bar-chart", + "displayName": "Grouped bar chart", + "iconName": "grouped-bar-chart", "tags": "graph, bar, chart", "group": "data", "content": "\\e75d" }, { - "name": "Full stacked chart", - "className": "pt-icon-full-stacked-chart", + "displayName": "Full stacked chart", + "iconName": "full-stacked-chart", "tags": "graph, bar, chart", "group": "data", "content": "\\e75e" }, { - "name": "Endorsed", - "className": "pt-icon-endorsed", + "displayName": "Endorsed", + "iconName": "endorsed", "tags": "tick, mark, sign, ok, approved, success", "group": "action", "content": "\\e75f" }, { - "name": "Follower", - "className": "pt-icon-follower", + "displayName": "Follower", + "iconName": "follower", "tags": "person, human, male, female, character, customer, individual, social", "group": "interface", "content": "\\e760" }, { - "name": "Following", - "className": "pt-icon-following", + "displayName": "Following", + "iconName": "following", "tags": "person, human, male, female, character, customer, individual, social", "group": "interface", "content": "\\e761" }, { - "name": "Menu", - "className": "pt-icon-menu", + "displayName": "Menu", + "iconName": "menu", "tags": "navigation, lines, list", "group": "interface", "content": "\\e762" }, { - "name": "Collapse all", - "className": "pt-icon-collapse-all", + "displayName": "Collapse all", + "iconName": "collapse-all", "tags": "arrows, chevron, reduce", "group": "interface", "content": "\\e763" }, { - "name": "Expand all", - "className": "pt-icon-expand-all", + "displayName": "Expand all", + "iconName": "expand-all", "tags": "arrows, chevron, enlarge", "group": "interface", "content": "\\e764" }, { - "name": "Intersection", - "className": "pt-icon-intersection", + "displayName": "Intersection", + "iconName": "intersection", "tags": "circles, combine, cross", "group": "action", "content": "\\e765" }, { - "name": "Blocked person", - "className": "pt-icon-blocked-person", + "displayName": "Blocked person", + "iconName": "blocked-person", "tags": "person, human, male, female, character, customer, individual, social, banned, prohibited", "group": "interface", "content": "\\e768" }, { - "name": "Slash", - "className": "pt-icon-slash", + "displayName": "Slash", + "iconName": "slash", "tags": "divide, separate", "group": "action", "content": "\\e769" }, { - "name": "Percentage", - "className": "pt-icon-percentage", + "displayName": "Percentage", + "iconName": "percentage", "tags": "modulo, modulus", "group": "action", "content": "\\e76a" }, { - "name": "Satellite", - "className": "pt-icon-satellite", + "displayName": "Satellite", + "iconName": "satellite", "tags": "communication, space", "group": "miscellaneous", "content": "\\e76b" }, { - "name": "Paragraph", - "className": "pt-icon-paragraph", + "displayName": "Paragraph", + "iconName": "paragraph", "tags": "text, chapter, division, part", "group": "editor", "content": "\\e76c" }, { - "name": "Bank account", - "className": "pt-icon-bank-account", + "displayName": "Bank account", + "iconName": "bank-account", "tags": "money, finance, funds", "group": "miscellaneous", "content": "\\e76f" }, { - "name": "Cell tower", - "className": "pt-icon-cell-tower", + "displayName": "Cell tower", + "iconName": "cell-tower", "tags": "signal, communication, radio, mast", "group": "miscellaneous", "content": "\\e770" }, { - "name": "ID number", - "className": "pt-icon-id-number", + "displayName": "ID number", + "iconName": "id-number", "tags": "identification, person, document", "group": "miscellaneous", "content": "\\e771" }, { - "name": "IP address", - "className": "pt-icon-ip-address", + "displayName": "IP address", + "iconName": "ip-address", "tags": "internet, protocol, number, id, network", "group": "miscellaneous", "content": "\\e772" }, { - "name": "Eraser", - "className": "pt-icon-eraser", + "displayName": "Eraser", + "iconName": "eraser", "tags": "delete, remove", "group": "editor", "content": "\\e773" }, { - "name": "Issue", - "className": "pt-icon-issue", + "displayName": "Issue", + "iconName": "issue", "tags": "circle, notification, failure, circle, exclamation mark, sign, problem", "group": "interface", "content": "\\e774" }, { - "name": "Issue: new", - "className": "pt-icon-issue-new", + "displayName": "Issue: new", + "iconName": "issue-new", "tags": "circle, notification, failure, circle, exclamation mark, sign, problem", "group": "interface", "content": "\\e775" }, { - "name": "Issue: closed", - "className": "pt-icon-issue-closed", + "displayName": "Issue: closed", + "iconName": "issue-closed", "tags": "circle, notification, failure, circle, exclamation mark, sign, problem", "group": "interface", "content": "\\e776" }, { - "name": "Panel: stats", - "className": "pt-icon-panel-stats", + "displayName": "Panel: stats", + "iconName": "panel-stats", "tags": "sidebar, layout, list", "group": "table", "content": "\\e777" }, { - "name": "Panel: table", - "className": "pt-icon-panel-table", + "displayName": "Panel: table", + "iconName": "panel-table", "tags": "sidebar, layout, spreadsheet", "group": "table", "content": "\\e778" }, { - "name": "Tick circle", - "className": "pt-icon-tick-circle", + "displayName": "Tick circle", + "iconName": "tick-circle", "tags": "mark, sign, ok, approved, success", "group": "action", "content": "\\e779" }, { - "name": "Prescription", - "className": "pt-icon-prescription", + "displayName": "Prescription", + "iconName": "prescription", "tags": "instruction, direction, medicine, drug, medication, mixture", "group": "miscellaneous", "content": "\\e78a" }, { - "name": "Prescription: new", - "className": "pt-icon-new-prescription", + "displayName": "Prescription: new", + "iconName": "new-prescription", "tags": "instruction, direction, medicine, drug, medication, mixture", "group": "miscellaneous", "content": "\\e78b" }, { - "name": "Filter: keep", - "className": "pt-icon-filter-keep", + "displayName": "Filter: keep", + "iconName": "filter-keep", "tags": "filtering, funnel, tube, pipe, retain, stay", "group": "action", "content": "\\e78c" }, { - "name": "Filter: remove", - "className": "pt-icon-filter-remove", + "displayName": "Filter: remove", + "iconName": "filter-remove", "tags": "filtering, funnel, tube, pipe, delete, detach, discard, dismiss", "group": "action", "content": "\\e78d" }, { - "name": "Key", - "className": "pt-icon-key", + "displayName": "Key", + "iconName": "key", "tags": "lock, unlock, open, security, password, access", "group": "interface", "content": "\\e78e" }, { - "name": "Feed: subscribed", - "className": "pt-icon-feed-subscribed", + "displayName": "Feed: subscribed", + "iconName": "feed-subscribed", "tags": "rss, feed, tick, check", "group": "interface", "content": "\\e78f" }, { - "name": "Widget: button", - "className": "pt-icon-widget-button", + "displayName": "Widget: button", + "iconName": "widget-button", "tags": "element, click, press", "group": "interface", "content": "\\e790" }, { - "name": "Widget: header", - "className": "pt-icon-widget-header", + "displayName": "Widget: header", + "iconName": "widget-header", "tags": "element, layout, top", "group": "interface", "content": "\\e791" }, { - "name": "Widget: footer", - "className": "pt-icon-widget-footer", + "displayName": "Widget: footer", + "iconName": "widget-footer", "tags": "element, layout, bottom", "group": "interface", "content": "\\e792" }, { - "name": "Header: one", - "className": "pt-icon-header-one", + "displayName": "Header: one", + "iconName": "header-one", "tags": "paragraph styling, formatting", "group": "editor", "content": "\\e793" }, { - "name": "Header: two", - "className": "pt-icon-header-two", + "displayName": "Header: two", + "iconName": "header-two", "tags": "paragraph styling, formatting", "group": "editor", "content": "\\e794" }, { - "name": "Form", - "className": "pt-icon-form", + "displayName": "Form", + "iconName": "form", "tags": "response, fill", "group": "data", "content": "\\e795" }, { - "name": "Series: add", - "className": "pt-icon-series-add", + "displayName": "Series: add", + "iconName": "series-add", "tags": "timeseries, plot, line, data, chart, new, create", "group": "data", "content": "\\e796" }, { - "name": "Series: search", - "className": "pt-icon-series-search", + "displayName": "Series: search", + "iconName": "series-search", "tags": "timeseries, plot, line, data, chart, find, filter", "group": "data", "content": "\\e797" }, { - "name": "Series: filtered", - "className": "pt-icon-series-filtered", + "displayName": "Series: filtered", + "iconName": "series-filtered", "tags": "timeseries, plot, line, data, chart, reduce, reduced, search", "group": "data", "content": "\\e798" }, { - "name": "Series: derived", - "className": "pt-icon-series-derived", + "displayName": "Series: derived", + "iconName": "series-derived", "tags": "timeseries, plot, line, data, chart, transform, transformed, compute, computed, modify, modified, alter, altered, adjust, adjusted", "group": "data", "content": "\\e799" }, { - "name": "Series: configuration", - "className": "pt-icon-series-configuration", + "displayName": "Series: configuration", + "iconName": "series-configuration", "tags": " timeseries, plot, line, data, chart, edit, modify, customize, adjust, alter, transform", "group": "data", "content": "\\e79a" }, { - "name": "Console", - "className": "pt-icon-console", + "displayName": "Console", + "iconName": "console", "tags": "terminal, coding", "group": "interface", "content": "\\e79b" }, { - "name": "Compass", - "className": "pt-icon-compass", + "displayName": "Compass", + "iconName": "compass", "tags": "map, direction", "group": "interface", "content": "\\e79c" }, { - "name": "Walk", - "className": "pt-icon-walk", + "displayName": "Walk", + "iconName": "walk", "tags": "transportation, run, move", "group": "interface", "content": "\\e79d" }, { - "name": "Taxi", - "className": "pt-icon-taxi", + "displayName": "Taxi", + "iconName": "taxi", "tags": "transportation, car, move", "group": "interface", "content": "\\e79e" }, { - "name": "Train", - "className": "pt-icon-train", + "displayName": "Train", + "iconName": "train", "tags": "transportation, public, move", "group": "interface", "content": "\\e79f" }, { - "name": "Heart: broken", - "className": "pt-icon-heart-broken", + "displayName": "Heart: broken", + "iconName": "heart-broken", "tags": "love, like, organ, human, feelings, split, torn, failed, health", "group": "miscellaneous", "content": "\\e7a2" }, { - "name": "Join: inner", - "className": "pt-icon-inner-join", + "displayName": "Join: inner", + "iconName": "inner-join", "tags": "circles, combine, connect, add, part, slice", "group": "action", "content": "\\e7a3" }, { - "name": "Join: left", - "className": "pt-icon-left-join", + "displayName": "Join: left", + "iconName": "left-join", "tags": "circles, combine, connect, add, part, slice", "group": "action", "content": "\\e7a4" }, { - "name": "Join: right", - "className": "pt-icon-right-join", + "displayName": "Join: right", + "iconName": "right-join", "tags": "circles, combine, connect, add, part, slice", "group": "action", "content": "\\e7a5" diff --git a/packages/node-build-scripts/generate-icons-source b/packages/node-build-scripts/generate-icons-source index ed6835f09d..d793db8dcc 100755 --- a/packages/node-build-scripts/generate-icons-source +++ b/packages/node-build-scripts/generate-icons-source @@ -14,8 +14,8 @@ const svgo = new SVGO({ plugins: [{ convertShapeToPath: { convertArcs: true } }] /** * @typedef {Object} IconMetadata - * @property {string} name - icon name for display - * @property {string} className - CSS class name + * @property {string} displayName - "Icon name" for display + * @property {string} iconName - `icon-name` for IconName and CSS class * @property {string} tags - comma separated list of tags describing this icon * @property {string} group - group to which this icon belongs * @property {string} content - unicode character for icon glyph in font @@ -23,7 +23,7 @@ const svgo = new SVGO({ plugins: [{ convertShapeToPath: { convertArcs: true } }] /** @type {IconMetadata[]} */ const ICONS_METADATA = require(path.resolve(process.cwd(), "./resources/icons/icons.json")).sort((a, b) => - a.className.localeCompare(b.className), + a.iconName.localeCompare(b.iconName), ); const GENERATED_SRC_DIR = path.resolve(process.cwd(), "./src/generated"); @@ -36,21 +36,21 @@ writeLinesToFile( "_icon-map.scss", '@import "icon-variables";', "$icons: (", - ...ICONS_METADATA.map(icon => ` "${toShortName(icon)}": $${icon.className},`), + ...ICONS_METADATA.map(icon => ` "${icon.iconName}": $${toLongName(icon)},`), ");", ); // simple variable definitions -writeLinesToFile("_icon-variables.scss", ...ICONS_METADATA.map(icon => `$${icon.className}: "${icon.content}";`)); +writeLinesToFile("_icon-variables.scss", ...ICONS_METADATA.map(icon => `$${toLongName(icon)}: "${icon.content}";`)); // map ENUM_NAME to pt-icon-class-name -writeLinesToFile("iconClasses.ts", ...exportIconConsts(icon => icon.className)); +writeLinesToFile("iconClasses.ts", ...exportIconConsts(toLongName)); // map ENUM_NAME to unicode character writeLinesToFile("iconContents.ts", ...exportIconConsts(icon => icon.content.replace("\\", "\\u"))); // map ENUM_NAME to icon-name -writeLinesToFile("iconNames.ts", ...exportIconConsts(toShortName)); +writeLinesToFile("iconNames.ts", ...exportIconConsts(icon => icon.iconName)); (async () => { // SVG path strings. IIFE to unwrap async. @@ -79,9 +79,12 @@ async function writeLinesToFile(filename, ...lines) { fs.writeFileSync(outputPath, contents); } -/** Removes `pt-icon-` prefix from icon className. */ -function toShortName(icon) { - return icon.className.replace("pt-icon-", ""); +/** + * Removes `pt-icon-` prefix from icon className. + * @param {IconMetadata} icon + */ +function toLongName(icon) { + return `pt-icon-${icon.iconName}`; } /** @@ -90,9 +93,7 @@ function toShortName(icon) { * @param {IconMetadata} icon */ function toEnumName(icon) { - return toShortName(icon) - .replace(/-/g, "_") - .toUpperCase(); + return icon.iconName.replace(/-/g, "_").toUpperCase(); } /** @@ -111,13 +112,13 @@ function exportIconConsts(valueGetter) { async function buildPathsObject(objectName, size) { return Promise.all( ICONS_METADATA.map(async icon => { - const filepath = path.resolve(__dirname, `../../resources/icons/${size}px/${icon.className}.svg`); + const filepath = path.resolve(__dirname, `../../resources/icons/${size}px/${toLongName(icon)}.svg`); const svg = fs.readFileSync(filepath, "utf-8"); const pathStrings = await svgo .optimize(svg, { path: filepath }) .then(({ data }) => data.match(/ d="[^"]+"/g) || []) .then(paths => paths.map(s => s.slice(3))); - return ` "${icon.className.replace("pt-icon-", "")}": [${pathStrings.join(",\n")}],`; + return ` "${icon.iconName}": [${pathStrings.join(",\n")}],`; }), ); } From b7807dc85efe3e7c29cca242622aba31972191b9 Mon Sep 17 00:00:00 2001 From: Gilad Gray Date: Mon, 5 Feb 2018 17:17:01 -0800 Subject: [PATCH 2/3] drop pt-icon- from SVG filenames also chmod -x all these files (why were they executable in the first place??) --- packages/node-build-scripts/generate-icons-source | 2 +- .../16px/{pt-icon-add-column-left.svg => add-column-left.svg} | 0 .../16px/{pt-icon-add-column-right.svg => add-column-right.svg} | 0 .../16px/{pt-icon-add-row-bottom.svg => add-row-bottom.svg} | 0 .../icons/16px/{pt-icon-add-row-top.svg => add-row-top.svg} | 0 .../16px/{pt-icon-add-to-artifact.svg => add-to-artifact.svg} | 0 .../icons/16px/{pt-icon-add-to-folder.svg => add-to-folder.svg} | 0 resources/icons/16px/{pt-icon-add.svg => add.svg} | 0 resources/icons/16px/{pt-icon-airplane.svg => airplane.svg} | 0 .../icons/16px/{pt-icon-align-center.svg => align-center.svg} | 0 .../icons/16px/{pt-icon-align-justify.svg => align-justify.svg} | 0 resources/icons/16px/{pt-icon-align-left.svg => align-left.svg} | 0 .../icons/16px/{pt-icon-align-right.svg => align-right.svg} | 0 .../16px/{pt-icon-alignment-bottom.svg => alignment-bottom.svg} | 0 ...nt-horizontal-center.svg => alignment-horizontal-center.svg} | 0 .../16px/{pt-icon-alignment-left.svg => alignment-left.svg} | 0 .../16px/{pt-icon-alignment-right.svg => alignment-right.svg} | 0 .../icons/16px/{pt-icon-alignment-top.svg => alignment-top.svg} | 0 ...gnment-vertical-center.svg => alignment-vertical-center.svg} | 0 resources/icons/16px/{pt-icon-annotation.svg => annotation.svg} | 0 .../icons/16px/{pt-icon-application.svg => application.svg} | 0 .../icons/16px/{pt-icon-applications.svg => applications.svg} | 0 .../{pt-icon-arrow-bottom-left.svg => arrow-bottom-left.svg} | 0 .../{pt-icon-arrow-bottom-right.svg => arrow-bottom-right.svg} | 0 resources/icons/16px/{pt-icon-arrow-down.svg => arrow-down.svg} | 0 resources/icons/16px/{pt-icon-arrow-left.svg => arrow-left.svg} | 0 .../icons/16px/{pt-icon-arrow-right.svg => arrow-right.svg} | 0 .../16px/{pt-icon-arrow-top-left.svg => arrow-top-left.svg} | 0 .../16px/{pt-icon-arrow-top-right.svg => arrow-top-right.svg} | 0 resources/icons/16px/{pt-icon-arrow-up.svg => arrow-up.svg} | 0 .../{pt-icon-arrows-horizontal.svg => arrows-horizontal.svg} | 0 .../16px/{pt-icon-arrows-vertical.svg => arrows-vertical.svg} | 0 resources/icons/16px/{pt-icon-asterisk.svg => asterisk.svg} | 0 .../{pt-icon-automatic-updates.svg => automatic-updates.svg} | 0 resources/icons/16px/{pt-icon-badge.svg => badge.svg} | 0 resources/icons/16px/{pt-icon-ban-circle.svg => ban-circle.svg} | 0 .../icons/16px/{pt-icon-bank-account.svg => bank-account.svg} | 0 resources/icons/16px/{pt-icon-barcode.svg => barcode.svg} | 0 resources/icons/16px/{pt-icon-blank.svg => blank.svg} | 0 .../16px/{pt-icon-blocked-person.svg => blocked-person.svg} | 0 resources/icons/16px/{pt-icon-bold.svg => bold.svg} | 0 resources/icons/16px/{pt-icon-book.svg => book.svg} | 0 resources/icons/16px/{pt-icon-bookmark.svg => bookmark.svg} | 0 resources/icons/16px/{pt-icon-box.svg => box.svg} | 0 resources/icons/16px/{pt-icon-briefcase.svg => briefcase.svg} | 0 resources/icons/16px/{pt-icon-build.svg => build.svg} | 0 resources/icons/16px/{pt-icon-calculator.svg => calculator.svg} | 0 resources/icons/16px/{pt-icon-calendar.svg => calendar.svg} | 0 resources/icons/16px/{pt-icon-camera.svg => camera.svg} | 0 resources/icons/16px/{pt-icon-caret-down.svg => caret-down.svg} | 0 resources/icons/16px/{pt-icon-caret-left.svg => caret-left.svg} | 0 .../icons/16px/{pt-icon-caret-right.svg => caret-right.svg} | 0 resources/icons/16px/{pt-icon-caret-up.svg => caret-up.svg} | 0 resources/icons/16px/{pt-icon-cell-tower.svg => cell-tower.svg} | 0 resources/icons/16px/{pt-icon-changes.svg => changes.svg} | 0 resources/icons/16px/{pt-icon-chart.svg => chart.svg} | 0 resources/icons/16px/{pt-icon-chat.svg => chat.svg} | 0 .../16px/{pt-icon-chevron-backward.svg => chevron-backward.svg} | 0 .../icons/16px/{pt-icon-chevron-down.svg => chevron-down.svg} | 0 .../16px/{pt-icon-chevron-forward.svg => chevron-forward.svg} | 0 .../icons/16px/{pt-icon-chevron-left.svg => chevron-left.svg} | 0 .../icons/16px/{pt-icon-chevron-right.svg => chevron-right.svg} | 0 resources/icons/16px/{pt-icon-chevron-up.svg => chevron-up.svg} | 0 .../{pt-icon-circle-arrow-down.svg => circle-arrow-down.svg} | 0 .../{pt-icon-circle-arrow-left.svg => circle-arrow-left.svg} | 0 .../{pt-icon-circle-arrow-right.svg => circle-arrow-right.svg} | 0 .../16px/{pt-icon-circle-arrow-up.svg => circle-arrow-up.svg} | 0 resources/icons/16px/{pt-icon-circle.svg => circle.svg} | 0 resources/icons/16px/{pt-icon-citation.svg => citation.svg} | 0 resources/icons/16px/{pt-icon-clipboard.svg => clipboard.svg} | 0 .../16px/{pt-icon-cloud-download.svg => cloud-download.svg} | 0 .../icons/16px/{pt-icon-cloud-upload.svg => cloud-upload.svg} | 0 resources/icons/16px/{pt-icon-cloud.svg => cloud.svg} | 0 resources/icons/16px/{pt-icon-code-block.svg => code-block.svg} | 0 resources/icons/16px/{pt-icon-code.svg => code.svg} | 0 resources/icons/16px/{pt-icon-cog.svg => cog.svg} | 0 .../icons/16px/{pt-icon-collapse-all.svg => collapse-all.svg} | 0 .../icons/16px/{pt-icon-column-layout.svg => column-layout.svg} | 0 resources/icons/16px/{pt-icon-comment.svg => comment.svg} | 0 resources/icons/16px/{pt-icon-comparison.svg => comparison.svg} | 0 resources/icons/16px/{pt-icon-compass.svg => compass.svg} | 0 resources/icons/16px/{pt-icon-compressed.svg => compressed.svg} | 0 resources/icons/16px/{pt-icon-confirm.svg => confirm.svg} | 0 resources/icons/16px/{pt-icon-console.svg => console.svg} | 0 resources/icons/16px/{pt-icon-contrast.svg => contrast.svg} | 0 resources/icons/16px/{pt-icon-control.svg => control.svg} | 0 .../icons/16px/{pt-icon-credit-card.svg => credit-card.svg} | 0 resources/icons/16px/{pt-icon-cross.svg => cross.svg} | 0 .../{pt-icon-curved-range-chart.svg => curved-range-chart.svg} | 0 resources/icons/16px/{pt-icon-cut.svg => cut.svg} | 0 resources/icons/16px/{pt-icon-dashboard.svg => dashboard.svg} | 0 resources/icons/16px/{pt-icon-database.svg => database.svg} | 0 resources/icons/16px/{pt-icon-delete.svg => delete.svg} | 0 resources/icons/16px/{pt-icon-delta.svg => delta.svg} | 0 .../icons/16px/{pt-icon-derive-column.svg => derive-column.svg} | 0 resources/icons/16px/{pt-icon-desktop.svg => desktop.svg} | 0 .../16px/{pt-icon-direction-left.svg => direction-left.svg} | 0 .../16px/{pt-icon-direction-right.svg => direction-right.svg} | 0 resources/icons/16px/{pt-icon-disable.svg => disable.svg} | 0 .../icons/16px/{pt-icon-document-open.svg => document-open.svg} | 0 .../16px/{pt-icon-document-share.svg => document-share.svg} | 0 resources/icons/16px/{pt-icon-document.svg => document.svg} | 0 resources/icons/16px/{pt-icon-dollar.svg => dollar.svg} | 0 resources/icons/16px/{pt-icon-dot.svg => dot.svg} | 0 ...-double-caret-horizontal.svg => double-caret-horizontal.svg} | 0 ...icon-double-caret-vertical.svg => double-caret-vertical.svg} | 0 ...{pt-icon-double-chevron-down.svg => double-chevron-down.svg} | 0 ...{pt-icon-double-chevron-left.svg => double-chevron-left.svg} | 0 ...t-icon-double-chevron-right.svg => double-chevron-right.svg} | 0 .../{pt-icon-double-chevron-up.svg => double-chevron-up.svg} | 0 .../16px/{pt-icon-doughnut-chart.svg => doughnut-chart.svg} | 0 resources/icons/16px/{pt-icon-download.svg => download.svg} | 0 ...on-drag-handle-horizontal.svg => drag-handle-horizontal.svg} | 0 ...t-icon-drag-handle-vertical.svg => drag-handle-vertical.svg} | 0 resources/icons/16px/{pt-icon-draw.svg => draw.svg} | 0 resources/icons/16px/{pt-icon-drive-time.svg => drive-time.svg} | 0 resources/icons/16px/{pt-icon-duplicate.svg => duplicate.svg} | 0 resources/icons/16px/{pt-icon-edit.svg => edit.svg} | 0 resources/icons/16px/{pt-icon-eject.svg => eject.svg} | 0 resources/icons/16px/{pt-icon-endorsed.svg => endorsed.svg} | 0 resources/icons/16px/{pt-icon-envelope.svg => envelope.svg} | 0 resources/icons/16px/{pt-icon-eraser.svg => eraser.svg} | 0 resources/icons/16px/{pt-icon-error.svg => error.svg} | 0 resources/icons/16px/{pt-icon-euro.svg => euro.svg} | 0 resources/icons/16px/{pt-icon-exchange.svg => exchange.svg} | 0 .../icons/16px/{pt-icon-exclude-row.svg => exclude-row.svg} | 0 resources/icons/16px/{pt-icon-expand-all.svg => expand-all.svg} | 0 resources/icons/16px/{pt-icon-export.svg => export.svg} | 0 resources/icons/16px/{pt-icon-eye-off.svg => eye-off.svg} | 0 resources/icons/16px/{pt-icon-eye-on.svg => eye-on.svg} | 0 resources/icons/16px/{pt-icon-eye-open.svg => eye-open.svg} | 0 .../icons/16px/{pt-icon-fast-backward.svg => fast-backward.svg} | 0 .../icons/16px/{pt-icon-fast-forward.svg => fast-forward.svg} | 0 .../16px/{pt-icon-feed-subscribed.svg => feed-subscribed.svg} | 0 resources/icons/16px/{pt-icon-feed.svg => feed.svg} | 0 resources/icons/16px/{pt-icon-film.svg => film.svg} | 0 .../icons/16px/{pt-icon-filter-keep.svg => filter-keep.svg} | 0 .../icons/16px/{pt-icon-filter-list.svg => filter-list.svg} | 0 .../icons/16px/{pt-icon-filter-remove.svg => filter-remove.svg} | 0 resources/icons/16px/{pt-icon-filter.svg => filter.svg} | 0 resources/icons/16px/{pt-icon-flag.svg => flag.svg} | 0 resources/icons/16px/{pt-icon-flash.svg => flash.svg} | 0 .../icons/16px/{pt-icon-floppy-disk.svg => floppy-disk.svg} | 0 resources/icons/16px/{pt-icon-flows.svg => flows.svg} | 0 .../icons/16px/{pt-icon-folder-close.svg => folder-close.svg} | 0 .../icons/16px/{pt-icon-folder-open.svg => folder-open.svg} | 0 .../{pt-icon-folder-shared-open.svg => folder-shared-open.svg} | 0 .../icons/16px/{pt-icon-folder-shared.svg => folder-shared.svg} | 0 resources/icons/16px/{pt-icon-follower.svg => follower.svg} | 0 resources/icons/16px/{pt-icon-following.svg => following.svg} | 0 resources/icons/16px/{pt-icon-font.svg => font.svg} | 0 resources/icons/16px/{pt-icon-fork.svg => fork.svg} | 0 resources/icons/16px/{pt-icon-form.svg => form.svg} | 0 .../icons/16px/{pt-icon-full-circle.svg => full-circle.svg} | 0 .../{pt-icon-full-stacked-chart.svg => full-stacked-chart.svg} | 0 resources/icons/16px/{pt-icon-fullscreen.svg => fullscreen.svg} | 0 resources/icons/16px/{pt-icon-function.svg => function.svg} | 0 .../icons/16px/{pt-icon-gantt-chart.svg => gantt-chart.svg} | 0 .../icons/16px/{pt-icon-geolocation.svg => geolocation.svg} | 0 resources/icons/16px/{pt-icon-geosearch.svg => geosearch.svg} | 0 resources/icons/16px/{pt-icon-git-branch.svg => git-branch.svg} | 0 resources/icons/16px/{pt-icon-git-commit.svg => git-commit.svg} | 0 resources/icons/16px/{pt-icon-git-merge.svg => git-merge.svg} | 0 .../16px/{pt-icon-git-new-branch.svg => git-new-branch.svg} | 0 resources/icons/16px/{pt-icon-git-pull.svg => git-pull.svg} | 0 resources/icons/16px/{pt-icon-git-push.svg => git-push.svg} | 0 resources/icons/16px/{pt-icon-git-repo.svg => git-repo.svg} | 0 resources/icons/16px/{pt-icon-glass.svg => glass.svg} | 0 resources/icons/16px/{pt-icon-globe.svg => globe.svg} | 0 .../icons/16px/{pt-icon-graph-remove.svg => graph-remove.svg} | 0 resources/icons/16px/{pt-icon-graph.svg => graph.svg} | 0 resources/icons/16px/{pt-icon-grid-view.svg => grid-view.svg} | 0 resources/icons/16px/{pt-icon-grid.svg => grid.svg} | 0 .../icons/16px/{pt-icon-group-objects.svg => group-objects.svg} | 0 .../{pt-icon-grouped-bar-chart.svg => grouped-bar-chart.svg} | 0 resources/icons/16px/{pt-icon-hand-down.svg => hand-down.svg} | 0 resources/icons/16px/{pt-icon-hand-left.svg => hand-left.svg} | 0 resources/icons/16px/{pt-icon-hand-right.svg => hand-right.svg} | 0 resources/icons/16px/{pt-icon-hand-up.svg => hand-up.svg} | 0 resources/icons/16px/{pt-icon-hand.svg => hand.svg} | 0 resources/icons/16px/{pt-icon-header-one.svg => header-one.svg} | 0 resources/icons/16px/{pt-icon-header-two.svg => header-two.svg} | 0 resources/icons/16px/{pt-icon-header.svg => header.svg} | 0 resources/icons/16px/{pt-icon-headset.svg => headset.svg} | 0 .../icons/16px/{pt-icon-heart-broken.svg => heart-broken.svg} | 0 resources/icons/16px/{pt-icon-heart.svg => heart.svg} | 0 resources/icons/16px/{pt-icon-heat-grid.svg => heat-grid.svg} | 0 resources/icons/16px/{pt-icon-heatmap.svg => heatmap.svg} | 0 resources/icons/16px/{pt-icon-help.svg => help.svg} | 0 .../{pt-icon-helper-management.svg => helper-management.svg} | 0 resources/icons/16px/{pt-icon-highlight.svg => highlight.svg} | 0 resources/icons/16px/{pt-icon-history.svg => history.svg} | 0 resources/icons/16px/{pt-icon-home.svg => home.svg} | 0 ...orizontal-bar-chart-asc.svg => horizontal-bar-chart-asc.svg} | 0 ...izontal-bar-chart-desc.svg => horizontal-bar-chart-desc.svg} | 0 ...t-icon-horizontal-bar-chart.svg => horizontal-bar-chart.svg} | 0 ...-horizontal-distribution.svg => horizontal-distribution.svg} | 0 resources/icons/16px/{pt-icon-id-number.svg => id-number.svg} | 0 .../{pt-icon-image-rotate-left.svg => image-rotate-left.svg} | 0 .../{pt-icon-image-rotate-right.svg => image-rotate-right.svg} | 0 resources/icons/16px/{pt-icon-import.svg => import.svg} | 0 resources/icons/16px/{pt-icon-inbox.svg => inbox.svg} | 0 resources/icons/16px/{pt-icon-info-sign.svg => info-sign.svg} | 0 resources/icons/16px/{pt-icon-inner-join.svg => inner-join.svg} | 0 resources/icons/16px/{pt-icon-insert.svg => insert.svg} | 0 .../icons/16px/{pt-icon-intersection.svg => intersection.svg} | 0 resources/icons/16px/{pt-icon-ip-address.svg => ip-address.svg} | 0 .../icons/16px/{pt-icon-issue-closed.svg => issue-closed.svg} | 0 resources/icons/16px/{pt-icon-issue-new.svg => issue-new.svg} | 0 resources/icons/16px/{pt-icon-issue.svg => issue.svg} | 0 resources/icons/16px/{pt-icon-italic.svg => italic.svg} | 0 resources/icons/16px/{pt-icon-join-table.svg => join-table.svg} | 0 .../icons/16px/{pt-icon-key-backspace.svg => key-backspace.svg} | 0 .../icons/16px/{pt-icon-key-command.svg => key-command.svg} | 0 .../icons/16px/{pt-icon-key-control.svg => key-control.svg} | 0 resources/icons/16px/{pt-icon-key-delete.svg => key-delete.svg} | 0 resources/icons/16px/{pt-icon-key-enter.svg => key-enter.svg} | 0 resources/icons/16px/{pt-icon-key-escape.svg => key-escape.svg} | 0 resources/icons/16px/{pt-icon-key-option.svg => key-option.svg} | 0 resources/icons/16px/{pt-icon-key-shift.svg => key-shift.svg} | 0 resources/icons/16px/{pt-icon-key-tab.svg => key-tab.svg} | 0 resources/icons/16px/{pt-icon-key.svg => key.svg} | 0 .../icons/16px/{pt-icon-known-vehicle.svg => known-vehicle.svg} | 0 resources/icons/16px/{pt-icon-label.svg => label.svg} | 0 resources/icons/16px/{pt-icon-layer.svg => layer.svg} | 0 resources/icons/16px/{pt-icon-layers.svg => layers.svg} | 0 .../icons/16px/{pt-icon-layout-auto.svg => layout-auto.svg} | 0 .../16px/{pt-icon-layout-balloon.svg => layout-balloon.svg} | 0 .../icons/16px/{pt-icon-layout-circle.svg => layout-circle.svg} | 0 .../icons/16px/{pt-icon-layout-grid.svg => layout-grid.svg} | 0 .../16px/{pt-icon-layout-group-by.svg => layout-group-by.svg} | 0 .../16px/{pt-icon-layout-hierarchy.svg => layout-hierarchy.svg} | 0 .../icons/16px/{pt-icon-layout-linear.svg => layout-linear.svg} | 0 .../16px/{pt-icon-layout-skew-grid.svg => layout-skew-grid.svg} | 0 ...on-layout-sorted-clusters.svg => layout-sorted-clusters.svg} | 0 resources/icons/16px/{pt-icon-layout.svg => layout.svg} | 0 resources/icons/16px/{pt-icon-left-join.svg => left-join.svg} | 0 resources/icons/16px/{pt-icon-lightbulb.svg => lightbulb.svg} | 0 resources/icons/16px/{pt-icon-link.svg => link.svg} | 0 .../16px/{pt-icon-list-detail-view.svg => list-detail-view.svg} | 0 resources/icons/16px/{pt-icon-list.svg => list.svg} | 0 resources/icons/16px/{pt-icon-locate.svg => locate.svg} | 0 resources/icons/16px/{pt-icon-lock.svg => lock.svg} | 0 resources/icons/16px/{pt-icon-log-in.svg => log-in.svg} | 0 resources/icons/16px/{pt-icon-log-out.svg => log-out.svg} | 0 resources/icons/16px/{pt-icon-manual.svg => manual.svg} | 0 ...icon-manually-entered-data.svg => manually-entered-data.svg} | 0 resources/icons/16px/{pt-icon-map-create.svg => map-create.svg} | 0 resources/icons/16px/{pt-icon-map-marker.svg => map-marker.svg} | 0 resources/icons/16px/{pt-icon-map.svg => map.svg} | 0 resources/icons/16px/{pt-icon-maximize.svg => maximize.svg} | 0 resources/icons/16px/{pt-icon-media.svg => media.svg} | 0 .../icons/16px/{pt-icon-menu-closed.svg => menu-closed.svg} | 0 resources/icons/16px/{pt-icon-menu-open.svg => menu-open.svg} | 0 resources/icons/16px/{pt-icon-menu.svg => menu.svg} | 0 .../icons/16px/{pt-icon-merge-columns.svg => merge-columns.svg} | 0 .../icons/16px/{pt-icon-merge-links.svg => merge-links.svg} | 0 resources/icons/16px/{pt-icon-minimize.svg => minimize.svg} | 0 resources/icons/16px/{pt-icon-minus.svg => minus.svg} | 0 .../icons/16px/{pt-icon-mobile-phone.svg => mobile-phone.svg} | 0 .../icons/16px/{pt-icon-mobile-video.svg => mobile-video.svg} | 0 resources/icons/16px/{pt-icon-moon.svg => moon.svg} | 0 resources/icons/16px/{pt-icon-more.svg => more.svg} | 0 resources/icons/16px/{pt-icon-move.svg => move.svg} | 0 resources/icons/16px/{pt-icon-mugshot.svg => mugshot.svg} | 0 .../icons/16px/{pt-icon-multi-select.svg => multi-select.svg} | 0 resources/icons/16px/{pt-icon-music.svg => music.svg} | 0 .../icons/16px/{pt-icon-new-grid-item.svg => new-grid-item.svg} | 0 resources/icons/16px/{pt-icon-new-link.svg => new-link.svg} | 0 resources/icons/16px/{pt-icon-new-object.svg => new-object.svg} | 0 resources/icons/16px/{pt-icon-new-person.svg => new-person.svg} | 0 .../16px/{pt-icon-new-prescription.svg => new-prescription.svg} | 0 .../icons/16px/{pt-icon-new-text-box.svg => new-text-box.svg} | 0 resources/icons/16px/{pt-icon-ninja.svg => ninja.svg} | 0 .../icons/16px/{pt-icon-notifications.svg => notifications.svg} | 0 .../icons/16px/{pt-icon-numbered-list.svg => numbered-list.svg} | 0 resources/icons/16px/{pt-icon-numerical.svg => numerical.svg} | 0 resources/icons/16px/{pt-icon-office.svg => office.svg} | 0 resources/icons/16px/{pt-icon-offline.svg => offline.svg} | 0 resources/icons/16px/{pt-icon-oil-field.svg => oil-field.svg} | 0 resources/icons/16px/{pt-icon-one-column.svg => one-column.svg} | 0 .../icons/16px/{pt-icon-page-layout.svg => page-layout.svg} | 0 .../icons/16px/{pt-icon-panel-stats.svg => panel-stats.svg} | 0 .../icons/16px/{pt-icon-panel-table.svg => panel-table.svg} | 0 resources/icons/16px/{pt-icon-paperclip.svg => paperclip.svg} | 0 resources/icons/16px/{pt-icon-paragraph.svg => paragraph.svg} | 0 .../icons/16px/{pt-icon-path-search.svg => path-search.svg} | 0 resources/icons/16px/{pt-icon-path.svg => path.svg} | 0 resources/icons/16px/{pt-icon-pause.svg => pause.svg} | 0 resources/icons/16px/{pt-icon-people.svg => people.svg} | 0 resources/icons/16px/{pt-icon-percentage.svg => percentage.svg} | 0 resources/icons/16px/{pt-icon-person.svg => person.svg} | 0 resources/icons/16px/{pt-icon-phone.svg => phone.svg} | 0 resources/icons/16px/{pt-icon-pie-chart.svg => pie-chart.svg} | 0 resources/icons/16px/{pt-icon-pin.svg => pin.svg} | 0 .../icons/16px/{pt-icon-pivot-table.svg => pivot-table.svg} | 0 resources/icons/16px/{pt-icon-pivot.svg => pivot.svg} | 0 resources/icons/16px/{pt-icon-play.svg => play.svg} | 0 resources/icons/16px/{pt-icon-plus.svg => plus.svg} | 0 .../16px/{pt-icon-polygon-filter.svg => polygon-filter.svg} | 0 resources/icons/16px/{pt-icon-power.svg => power.svg} | 0 ...{pt-icon-predictive-analysis.svg => predictive-analysis.svg} | 0 .../icons/16px/{pt-icon-prescription.svg => prescription.svg} | 0 .../icons/16px/{pt-icon-presentation.svg => presentation.svg} | 0 resources/icons/16px/{pt-icon-print.svg => print.svg} | 0 resources/icons/16px/{pt-icon-projects.svg => projects.svg} | 0 resources/icons/16px/{pt-icon-properties.svg => properties.svg} | 0 resources/icons/16px/{pt-icon-property.svg => property.svg} | 0 .../16px/{pt-icon-publish-function.svg => publish-function.svg} | 0 resources/icons/16px/{pt-icon-pulse.svg => pulse.svg} | 0 resources/icons/16px/{pt-icon-random.svg => random.svg} | 0 resources/icons/16px/{pt-icon-record.svg => record.svg} | 0 resources/icons/16px/{pt-icon-redo.svg => redo.svg} | 0 resources/icons/16px/{pt-icon-refresh.svg => refresh.svg} | 0 .../16px/{pt-icon-regression-chart.svg => regression-chart.svg} | 0 .../{pt-icon-remove-column-left.svg => remove-column-left.svg} | 0 ...{pt-icon-remove-column-right.svg => remove-column-right.svg} | 0 .../icons/16px/{pt-icon-remove-column.svg => remove-column.svg} | 0 .../{pt-icon-remove-row-bottom.svg => remove-row-bottom.svg} | 0 .../16px/{pt-icon-remove-row-top.svg => remove-row-top.svg} | 0 resources/icons/16px/{pt-icon-remove.svg => remove.svg} | 0 resources/icons/16px/{pt-icon-repeat.svg => repeat.svg} | 0 resources/icons/16px/{pt-icon-resolve.svg => resolve.svg} | 0 resources/icons/16px/{pt-icon-rig.svg => rig.svg} | 0 resources/icons/16px/{pt-icon-right-join.svg => right-join.svg} | 0 resources/icons/16px/{pt-icon-ring.svg => ring.svg} | 0 .../16px/{pt-icon-rotate-document.svg => rotate-document.svg} | 0 .../icons/16px/{pt-icon-rotate-page.svg => rotate-page.svg} | 0 resources/icons/16px/{pt-icon-satellite.svg => satellite.svg} | 0 resources/icons/16px/{pt-icon-saved.svg => saved.svg} | 0 .../icons/16px/{pt-icon-scatter-plot.svg => scatter-plot.svg} | 0 .../icons/16px/{pt-icon-search-around.svg => search-around.svg} | 0 .../16px/{pt-icon-search-template.svg => search-template.svg} | 0 .../icons/16px/{pt-icon-search-text.svg => search-text.svg} | 0 resources/icons/16px/{pt-icon-search.svg => search.svg} | 0 .../{pt-icon-segmented-control.svg => segmented-control.svg} | 0 resources/icons/16px/{pt-icon-select.svg => select.svg} | 0 resources/icons/16px/{pt-icon-selection.svg => selection.svg} | 0 .../icons/16px/{pt-icon-send-to-graph.svg => send-to-graph.svg} | 0 .../icons/16px/{pt-icon-send-to-map.svg => send-to-map.svg} | 0 resources/icons/16px/{pt-icon-send-to.svg => send-to.svg} | 0 resources/icons/16px/{pt-icon-series-add.svg => series-add.svg} | 0 ...t-icon-series-configuration.svg => series-configuration.svg} | 0 .../16px/{pt-icon-series-derived.svg => series-derived.svg} | 0 .../16px/{pt-icon-series-filtered.svg => series-filtered.svg} | 0 .../icons/16px/{pt-icon-series-search.svg => series-search.svg} | 0 resources/icons/16px/{pt-icon-settings.svg => settings.svg} | 0 resources/icons/16px/{pt-icon-share.svg => share.svg} | 0 resources/icons/16px/{pt-icon-shop.svg => shop.svg} | 0 .../icons/16px/{pt-icon-shopping-cart.svg => shopping-cart.svg} | 0 resources/icons/16px/{pt-icon-sim-card.svg => sim-card.svg} | 0 resources/icons/16px/{pt-icon-slash.svg => slash.svg} | 0 .../icons/16px/{pt-icon-small-cross.svg => small-cross.svg} | 0 .../icons/16px/{pt-icon-small-minus.svg => small-minus.svg} | 0 resources/icons/16px/{pt-icon-small-plus.svg => small-plus.svg} | 0 resources/icons/16px/{pt-icon-small-tick.svg => small-tick.svg} | 0 .../icons/16px/{pt-icon-social-media.svg => social-media.svg} | 0 ...on-sort-alphabetical-desc.svg => sort-alphabetical-desc.svg} | 0 .../{pt-icon-sort-alphabetical.svg => sort-alphabetical.svg} | 0 resources/icons/16px/{pt-icon-sort-asc.svg => sort-asc.svg} | 0 resources/icons/16px/{pt-icon-sort-desc.svg => sort-desc.svg} | 0 ...{pt-icon-sort-numerical-desc.svg => sort-numerical-desc.svg} | 0 .../16px/{pt-icon-sort-numerical.svg => sort-numerical.svg} | 0 resources/icons/16px/{pt-icon-sort.svg => sort.svg} | 0 .../icons/16px/{pt-icon-split-columns.svg => split-columns.svg} | 0 resources/icons/16px/{pt-icon-square.svg => square.svg} | 0 .../icons/16px/{pt-icon-stacked-chart.svg => stacked-chart.svg} | 0 resources/icons/16px/{pt-icon-star-empty.svg => star-empty.svg} | 0 resources/icons/16px/{pt-icon-star.svg => star.svg} | 0 .../icons/16px/{pt-icon-step-backward.svg => step-backward.svg} | 0 resources/icons/16px/{pt-icon-step-chart.svg => step-chart.svg} | 0 .../icons/16px/{pt-icon-step-forward.svg => step-forward.svg} | 0 resources/icons/16px/{pt-icon-stop.svg => stop.svg} | 0 resources/icons/16px/{pt-icon-style.svg => style.svg} | 0 .../16px/{pt-icon-swap-horizontal.svg => swap-horizontal.svg} | 0 .../icons/16px/{pt-icon-swap-vertical.svg => swap-vertical.svg} | 0 .../icons/16px/{pt-icon-symbol-circle.svg => symbol-circle.svg} | 0 .../icons/16px/{pt-icon-symbol-cross.svg => symbol-cross.svg} | 0 .../16px/{pt-icon-symbol-diamond.svg => symbol-diamond.svg} | 0 .../icons/16px/{pt-icon-symbol-square.svg => symbol-square.svg} | 0 ...t-icon-symbol-triangle-down.svg => symbol-triangle-down.svg} | 0 .../{pt-icon-symbol-triangle-up.svg => symbol-triangle-up.svg} | 0 resources/icons/16px/{pt-icon-tag.svg => tag.svg} | 0 .../icons/16px/{pt-icon-take-action.svg => take-action.svg} | 0 resources/icons/16px/{pt-icon-taxi.svg => taxi.svg} | 0 .../16px/{pt-icon-text-highlight.svg => text-highlight.svg} | 0 resources/icons/16px/{pt-icon-th-derived.svg => th-derived.svg} | 0 resources/icons/16px/{pt-icon-th-list.svg => th-list.svg} | 0 resources/icons/16px/{pt-icon-th.svg => th.svg} | 0 .../icons/16px/{pt-icon-thumbs-down.svg => thumbs-down.svg} | 0 resources/icons/16px/{pt-icon-thumbs-up.svg => thumbs-up.svg} | 0 .../icons/16px/{pt-icon-tick-circle.svg => tick-circle.svg} | 0 resources/icons/16px/{pt-icon-tick.svg => tick.svg} | 0 resources/icons/16px/{pt-icon-time.svg => time.svg} | 0 ...{pt-icon-timeline-area-chart.svg => timeline-area-chart.svg} | 0 .../{pt-icon-timeline-bar-chart.svg => timeline-bar-chart.svg} | 0 .../16px/{pt-icon-timeline-events.svg => timeline-events.svg} | 0 ...{pt-icon-timeline-line-chart.svg => timeline-line-chart.svg} | 0 resources/icons/16px/{pt-icon-tint.svg => tint.svg} | 0 resources/icons/16px/{pt-icon-torch.svg => torch.svg} | 0 resources/icons/16px/{pt-icon-train.svg => train.svg} | 0 resources/icons/16px/{pt-icon-translate.svg => translate.svg} | 0 resources/icons/16px/{pt-icon-trash.svg => trash.svg} | 0 .../icons/16px/{pt-icon-trending-down.svg => trending-down.svg} | 0 .../icons/16px/{pt-icon-trending-up.svg => trending-up.svg} | 0 .../icons/16px/{pt-icon-two-columns.svg => two-columns.svg} | 0 resources/icons/16px/{pt-icon-underline.svg => underline.svg} | 0 resources/icons/16px/{pt-icon-undo.svg => undo.svg} | 0 .../16px/{pt-icon-ungroup-objects.svg => ungroup-objects.svg} | 0 .../16px/{pt-icon-unknown-vehicle.svg => unknown-vehicle.svg} | 0 resources/icons/16px/{pt-icon-unlock.svg => unlock.svg} | 0 resources/icons/16px/{pt-icon-unpin.svg => unpin.svg} | 0 resources/icons/16px/{pt-icon-unresolve.svg => unresolve.svg} | 0 resources/icons/16px/{pt-icon-upload.svg => upload.svg} | 0 resources/icons/16px/{pt-icon-user.svg => user.svg} | 0 resources/icons/16px/{pt-icon-variable.svg => variable.svg} | 0 ...on-vertical-bar-chart-asc.svg => vertical-bar-chart-asc.svg} | 0 ...-vertical-bar-chart-desc.svg => vertical-bar-chart-desc.svg} | 0 ...icon-vertical-distribution.svg => vertical-distribution.svg} | 0 resources/icons/16px/{pt-icon-video.svg => video.svg} | 0 .../icons/16px/{pt-icon-volume-down.svg => volume-down.svg} | 0 resources/icons/16px/{pt-icon-volume-off.svg => volume-off.svg} | 0 resources/icons/16px/{pt-icon-volume-up.svg => volume-up.svg} | 0 resources/icons/16px/{pt-icon-walk.svg => walk.svg} | 0 .../icons/16px/{pt-icon-warning-sign.svg => warning-sign.svg} | 0 .../16px/{pt-icon-waterfall-chart.svg => waterfall-chart.svg} | 0 .../icons/16px/{pt-icon-widget-button.svg => widget-button.svg} | 0 .../icons/16px/{pt-icon-widget-footer.svg => widget-footer.svg} | 0 .../icons/16px/{pt-icon-widget-header.svg => widget-header.svg} | 0 resources/icons/16px/{pt-icon-widget.svg => widget.svg} | 0 resources/icons/16px/{pt-icon-wrench.svg => wrench.svg} | 0 resources/icons/16px/{pt-icon-zoom-in.svg => zoom-in.svg} | 0 resources/icons/16px/{pt-icon-zoom-out.svg => zoom-out.svg} | 0 .../icons/16px/{pt-icon-zoom-to-fit.svg => zoom-to-fit.svg} | 0 .../20px/{pt-icon-add-column-left.svg => add-column-left.svg} | 0 .../20px/{pt-icon-add-column-right.svg => add-column-right.svg} | 0 .../20px/{pt-icon-add-row-bottom.svg => add-row-bottom.svg} | 0 .../icons/20px/{pt-icon-add-row-top.svg => add-row-top.svg} | 0 .../20px/{pt-icon-add-to-artifact.svg => add-to-artifact.svg} | 0 .../icons/20px/{pt-icon-add-to-folder.svg => add-to-folder.svg} | 0 resources/icons/20px/{pt-icon-add.svg => add.svg} | 0 resources/icons/20px/{pt-icon-airplane.svg => airplane.svg} | 0 .../icons/20px/{pt-icon-align-center.svg => align-center.svg} | 0 .../icons/20px/{pt-icon-align-justify.svg => align-justify.svg} | 0 resources/icons/20px/{pt-icon-align-left.svg => align-left.svg} | 0 .../icons/20px/{pt-icon-align-right.svg => align-right.svg} | 0 .../20px/{pt-icon-alignment-bottom.svg => alignment-bottom.svg} | 0 ...nt-horizontal-center.svg => alignment-horizontal-center.svg} | 0 .../20px/{pt-icon-alignment-left.svg => alignment-left.svg} | 0 .../20px/{pt-icon-alignment-right.svg => alignment-right.svg} | 0 .../icons/20px/{pt-icon-alignment-top.svg => alignment-top.svg} | 0 ...gnment-vertical-center.svg => alignment-vertical-center.svg} | 0 resources/icons/20px/{pt-icon-annotation.svg => annotation.svg} | 0 .../icons/20px/{pt-icon-application.svg => application.svg} | 0 .../icons/20px/{pt-icon-applications.svg => applications.svg} | 0 .../{pt-icon-arrow-bottom-left.svg => arrow-bottom-left.svg} | 0 .../{pt-icon-arrow-bottom-right.svg => arrow-bottom-right.svg} | 0 resources/icons/20px/{pt-icon-arrow-down.svg => arrow-down.svg} | 0 resources/icons/20px/{pt-icon-arrow-left.svg => arrow-left.svg} | 0 .../icons/20px/{pt-icon-arrow-right.svg => arrow-right.svg} | 0 .../20px/{pt-icon-arrow-top-left.svg => arrow-top-left.svg} | 0 .../20px/{pt-icon-arrow-top-right.svg => arrow-top-right.svg} | 0 resources/icons/20px/{pt-icon-arrow-up.svg => arrow-up.svg} | 0 .../{pt-icon-arrows-horizontal.svg => arrows-horizontal.svg} | 0 .../20px/{pt-icon-arrows-vertical.svg => arrows-vertical.svg} | 0 resources/icons/20px/{pt-icon-asterisk.svg => asterisk.svg} | 0 .../{pt-icon-automatic-updates.svg => automatic-updates.svg} | 0 resources/icons/20px/{pt-icon-badge.svg => badge.svg} | 0 resources/icons/20px/{pt-icon-ban-circle.svg => ban-circle.svg} | 0 .../icons/20px/{pt-icon-bank-account.svg => bank-account.svg} | 0 resources/icons/20px/{pt-icon-barcode.svg => barcode.svg} | 0 resources/icons/20px/{pt-icon-blank.svg => blank.svg} | 0 .../20px/{pt-icon-blocked-person.svg => blocked-person.svg} | 0 resources/icons/20px/{pt-icon-bold.svg => bold.svg} | 0 resources/icons/20px/{pt-icon-book.svg => book.svg} | 0 resources/icons/20px/{pt-icon-bookmark.svg => bookmark.svg} | 0 resources/icons/20px/{pt-icon-box.svg => box.svg} | 0 resources/icons/20px/{pt-icon-briefcase.svg => briefcase.svg} | 0 resources/icons/20px/{pt-icon-build.svg => build.svg} | 0 resources/icons/20px/{pt-icon-calculator.svg => calculator.svg} | 0 resources/icons/20px/{pt-icon-calendar.svg => calendar.svg} | 0 resources/icons/20px/{pt-icon-camera.svg => camera.svg} | 0 resources/icons/20px/{pt-icon-caret-down.svg => caret-down.svg} | 0 resources/icons/20px/{pt-icon-caret-left.svg => caret-left.svg} | 0 .../icons/20px/{pt-icon-caret-right.svg => caret-right.svg} | 0 resources/icons/20px/{pt-icon-caret-up.svg => caret-up.svg} | 0 resources/icons/20px/{pt-icon-cell-tower.svg => cell-tower.svg} | 0 resources/icons/20px/{pt-icon-changes.svg => changes.svg} | 0 resources/icons/20px/{pt-icon-chart.svg => chart.svg} | 0 resources/icons/20px/{pt-icon-chat.svg => chat.svg} | 0 .../20px/{pt-icon-chevron-backward.svg => chevron-backward.svg} | 0 .../icons/20px/{pt-icon-chevron-down.svg => chevron-down.svg} | 0 .../20px/{pt-icon-chevron-forward.svg => chevron-forward.svg} | 0 .../icons/20px/{pt-icon-chevron-left.svg => chevron-left.svg} | 0 .../icons/20px/{pt-icon-chevron-right.svg => chevron-right.svg} | 0 resources/icons/20px/{pt-icon-chevron-up.svg => chevron-up.svg} | 0 .../{pt-icon-circle-arrow-down.svg => circle-arrow-down.svg} | 0 .../{pt-icon-circle-arrow-left.svg => circle-arrow-left.svg} | 0 .../{pt-icon-circle-arrow-right.svg => circle-arrow-right.svg} | 0 .../20px/{pt-icon-circle-arrow-up.svg => circle-arrow-up.svg} | 0 resources/icons/20px/{pt-icon-circle.svg => circle.svg} | 0 resources/icons/20px/{pt-icon-citation.svg => citation.svg} | 0 resources/icons/20px/{pt-icon-clipboard.svg => clipboard.svg} | 0 .../20px/{pt-icon-cloud-download.svg => cloud-download.svg} | 0 .../icons/20px/{pt-icon-cloud-upload.svg => cloud-upload.svg} | 0 resources/icons/20px/{pt-icon-cloud.svg => cloud.svg} | 0 resources/icons/20px/{pt-icon-code-block.svg => code-block.svg} | 0 resources/icons/20px/{pt-icon-code.svg => code.svg} | 0 resources/icons/20px/{pt-icon-cog.svg => cog.svg} | 0 .../icons/20px/{pt-icon-collapse-all.svg => collapse-all.svg} | 0 .../icons/20px/{pt-icon-column-layout.svg => column-layout.svg} | 0 resources/icons/20px/{pt-icon-comment.svg => comment.svg} | 0 resources/icons/20px/{pt-icon-comparison.svg => comparison.svg} | 0 resources/icons/20px/{pt-icon-compass.svg => compass.svg} | 0 resources/icons/20px/{pt-icon-compressed.svg => compressed.svg} | 0 resources/icons/20px/{pt-icon-confirm.svg => confirm.svg} | 0 resources/icons/20px/{pt-icon-console.svg => console.svg} | 0 resources/icons/20px/{pt-icon-contrast.svg => contrast.svg} | 0 resources/icons/20px/{pt-icon-control.svg => control.svg} | 0 .../icons/20px/{pt-icon-credit-card.svg => credit-card.svg} | 0 resources/icons/20px/{pt-icon-cross.svg => cross.svg} | 0 .../{pt-icon-curved-range-chart.svg => curved-range-chart.svg} | 0 resources/icons/20px/{pt-icon-cut.svg => cut.svg} | 0 resources/icons/20px/{pt-icon-dashboard.svg => dashboard.svg} | 0 resources/icons/20px/{pt-icon-database.svg => database.svg} | 0 resources/icons/20px/{pt-icon-delete.svg => delete.svg} | 0 resources/icons/20px/{pt-icon-delta.svg => delta.svg} | 0 .../icons/20px/{pt-icon-derive-column.svg => derive-column.svg} | 0 resources/icons/20px/{pt-icon-desktop.svg => desktop.svg} | 0 .../20px/{pt-icon-direction-left.svg => direction-left.svg} | 0 .../20px/{pt-icon-direction-right.svg => direction-right.svg} | 0 resources/icons/20px/{pt-icon-disable.svg => disable.svg} | 0 .../icons/20px/{pt-icon-document-open.svg => document-open.svg} | 0 .../20px/{pt-icon-document-share.svg => document-share.svg} | 0 resources/icons/20px/{pt-icon-document.svg => document.svg} | 0 resources/icons/20px/{pt-icon-dollar.svg => dollar.svg} | 0 resources/icons/20px/{pt-icon-dot.svg => dot.svg} | 0 ...-double-caret-horizontal.svg => double-caret-horizontal.svg} | 0 ...icon-double-caret-vertical.svg => double-caret-vertical.svg} | 0 ...{pt-icon-double-chevron-down.svg => double-chevron-down.svg} | 0 ...{pt-icon-double-chevron-left.svg => double-chevron-left.svg} | 0 ...t-icon-double-chevron-right.svg => double-chevron-right.svg} | 0 .../{pt-icon-double-chevron-up.svg => double-chevron-up.svg} | 0 .../20px/{pt-icon-doughnut-chart.svg => doughnut-chart.svg} | 0 resources/icons/20px/{pt-icon-download.svg => download.svg} | 0 ...on-drag-handle-horizontal.svg => drag-handle-horizontal.svg} | 0 ...t-icon-drag-handle-vertical.svg => drag-handle-vertical.svg} | 0 resources/icons/20px/{pt-icon-draw.svg => draw.svg} | 0 resources/icons/20px/{pt-icon-drive-time.svg => drive-time.svg} | 0 resources/icons/20px/{pt-icon-duplicate.svg => duplicate.svg} | 0 resources/icons/20px/{pt-icon-edit.svg => edit.svg} | 0 resources/icons/20px/{pt-icon-eject.svg => eject.svg} | 0 resources/icons/20px/{pt-icon-endorsed.svg => endorsed.svg} | 0 resources/icons/20px/{pt-icon-envelope.svg => envelope.svg} | 0 resources/icons/20px/{pt-icon-eraser.svg => eraser.svg} | 0 resources/icons/20px/{pt-icon-error.svg => error.svg} | 0 resources/icons/20px/{pt-icon-euro.svg => euro.svg} | 0 resources/icons/20px/{pt-icon-exchange.svg => exchange.svg} | 0 .../icons/20px/{pt-icon-exclude-row.svg => exclude-row.svg} | 0 resources/icons/20px/{pt-icon-expand-all.svg => expand-all.svg} | 0 resources/icons/20px/{pt-icon-export.svg => export.svg} | 0 resources/icons/20px/{pt-icon-eye-off.svg => eye-off.svg} | 0 resources/icons/20px/{pt-icon-eye-on.svg => eye-on.svg} | 0 resources/icons/20px/{pt-icon-eye-open.svg => eye-open.svg} | 0 .../icons/20px/{pt-icon-fast-backward.svg => fast-backward.svg} | 0 .../icons/20px/{pt-icon-fast-forward.svg => fast-forward.svg} | 0 .../20px/{pt-icon-feed-subscribed.svg => feed-subscribed.svg} | 0 resources/icons/20px/{pt-icon-feed.svg => feed.svg} | 0 resources/icons/20px/{pt-icon-film.svg => film.svg} | 0 .../icons/20px/{pt-icon-filter-keep.svg => filter-keep.svg} | 0 .../icons/20px/{pt-icon-filter-list.svg => filter-list.svg} | 0 .../icons/20px/{pt-icon-filter-remove.svg => filter-remove.svg} | 0 resources/icons/20px/{pt-icon-filter.svg => filter.svg} | 0 resources/icons/20px/{pt-icon-flag.svg => flag.svg} | 0 resources/icons/20px/{pt-icon-flash.svg => flash.svg} | 0 .../icons/20px/{pt-icon-floppy-disk.svg => floppy-disk.svg} | 0 resources/icons/20px/{pt-icon-flows.svg => flows.svg} | 0 .../icons/20px/{pt-icon-folder-close.svg => folder-close.svg} | 0 .../icons/20px/{pt-icon-folder-open.svg => folder-open.svg} | 0 .../{pt-icon-folder-shared-open.svg => folder-shared-open.svg} | 0 .../icons/20px/{pt-icon-folder-shared.svg => folder-shared.svg} | 0 resources/icons/20px/{pt-icon-follower.svg => follower.svg} | 0 resources/icons/20px/{pt-icon-following.svg => following.svg} | 0 resources/icons/20px/{pt-icon-font.svg => font.svg} | 0 resources/icons/20px/{pt-icon-fork.svg => fork.svg} | 0 resources/icons/20px/{pt-icon-form.svg => form.svg} | 0 .../icons/20px/{pt-icon-full-circle.svg => full-circle.svg} | 0 .../{pt-icon-full-stacked-chart.svg => full-stacked-chart.svg} | 0 resources/icons/20px/{pt-icon-fullscreen.svg => fullscreen.svg} | 0 resources/icons/20px/{pt-icon-function.svg => function.svg} | 0 .../icons/20px/{pt-icon-gantt-chart.svg => gantt-chart.svg} | 0 .../icons/20px/{pt-icon-geolocation.svg => geolocation.svg} | 0 resources/icons/20px/{pt-icon-geosearch.svg => geosearch.svg} | 0 resources/icons/20px/{pt-icon-git-branch.svg => git-branch.svg} | 0 resources/icons/20px/{pt-icon-git-commit.svg => git-commit.svg} | 0 resources/icons/20px/{pt-icon-git-merge.svg => git-merge.svg} | 0 .../20px/{pt-icon-git-new-branch.svg => git-new-branch.svg} | 0 resources/icons/20px/{pt-icon-git-pull.svg => git-pull.svg} | 0 resources/icons/20px/{pt-icon-git-push.svg => git-push.svg} | 0 resources/icons/20px/{pt-icon-git-repo.svg => git-repo.svg} | 0 resources/icons/20px/{pt-icon-glass.svg => glass.svg} | 0 resources/icons/20px/{pt-icon-globe.svg => globe.svg} | 0 .../icons/20px/{pt-icon-graph-remove.svg => graph-remove.svg} | 0 resources/icons/20px/{pt-icon-graph.svg => graph.svg} | 0 resources/icons/20px/{pt-icon-grid-view.svg => grid-view.svg} | 0 resources/icons/20px/{pt-icon-grid.svg => grid.svg} | 0 .../icons/20px/{pt-icon-group-objects.svg => group-objects.svg} | 0 .../{pt-icon-grouped-bar-chart.svg => grouped-bar-chart.svg} | 0 resources/icons/20px/{pt-icon-hand-down.svg => hand-down.svg} | 0 resources/icons/20px/{pt-icon-hand-left.svg => hand-left.svg} | 0 resources/icons/20px/{pt-icon-hand-right.svg => hand-right.svg} | 0 resources/icons/20px/{pt-icon-hand-up.svg => hand-up.svg} | 0 resources/icons/20px/{pt-icon-hand.svg => hand.svg} | 0 resources/icons/20px/{pt-icon-header-one.svg => header-one.svg} | 0 resources/icons/20px/{pt-icon-header-two.svg => header-two.svg} | 0 resources/icons/20px/{pt-icon-header.svg => header.svg} | 0 resources/icons/20px/{pt-icon-headset.svg => headset.svg} | 0 .../icons/20px/{pt-icon-heart-broken.svg => heart-broken.svg} | 0 resources/icons/20px/{pt-icon-heart.svg => heart.svg} | 0 resources/icons/20px/{pt-icon-heat-grid.svg => heat-grid.svg} | 0 resources/icons/20px/{pt-icon-heatmap.svg => heatmap.svg} | 0 resources/icons/20px/{pt-icon-help.svg => help.svg} | 0 .../{pt-icon-helper-management.svg => helper-management.svg} | 0 resources/icons/20px/{pt-icon-highlight.svg => highlight.svg} | 0 resources/icons/20px/{pt-icon-history.svg => history.svg} | 0 resources/icons/20px/{pt-icon-home.svg => home.svg} | 0 ...orizontal-bar-chart-asc.svg => horizontal-bar-chart-asc.svg} | 0 ...izontal-bar-chart-desc.svg => horizontal-bar-chart-desc.svg} | 0 ...t-icon-horizontal-bar-chart.svg => horizontal-bar-chart.svg} | 0 ...-horizontal-distribution.svg => horizontal-distribution.svg} | 0 resources/icons/20px/{pt-icon-id-number.svg => id-number.svg} | 0 .../{pt-icon-image-rotate-left.svg => image-rotate-left.svg} | 0 .../{pt-icon-image-rotate-right.svg => image-rotate-right.svg} | 0 resources/icons/20px/{pt-icon-import.svg => import.svg} | 0 resources/icons/20px/{pt-icon-inbox.svg => inbox.svg} | 0 resources/icons/20px/{pt-icon-info-sign.svg => info-sign.svg} | 0 resources/icons/20px/{pt-icon-inner-join.svg => inner-join.svg} | 0 resources/icons/20px/{pt-icon-insert.svg => insert.svg} | 0 .../icons/20px/{pt-icon-intersection.svg => intersection.svg} | 0 resources/icons/20px/{pt-icon-ip-address.svg => ip-address.svg} | 0 .../icons/20px/{pt-icon-issue-closed.svg => issue-closed.svg} | 0 resources/icons/20px/{pt-icon-issue-new.svg => issue-new.svg} | 0 resources/icons/20px/{pt-icon-issue.svg => issue.svg} | 0 resources/icons/20px/{pt-icon-italic.svg => italic.svg} | 0 resources/icons/20px/{pt-icon-join-table.svg => join-table.svg} | 0 .../icons/20px/{pt-icon-key-backspace.svg => key-backspace.svg} | 0 .../icons/20px/{pt-icon-key-command.svg => key-command.svg} | 0 .../icons/20px/{pt-icon-key-control.svg => key-control.svg} | 0 resources/icons/20px/{pt-icon-key-delete.svg => key-delete.svg} | 0 resources/icons/20px/{pt-icon-key-enter.svg => key-enter.svg} | 0 resources/icons/20px/{pt-icon-key-escape.svg => key-escape.svg} | 0 resources/icons/20px/{pt-icon-key-option.svg => key-option.svg} | 0 resources/icons/20px/{pt-icon-key-shift.svg => key-shift.svg} | 0 resources/icons/20px/{pt-icon-key-tab.svg => key-tab.svg} | 0 resources/icons/20px/{pt-icon-key.svg => key.svg} | 0 .../icons/20px/{pt-icon-known-vehicle.svg => known-vehicle.svg} | 0 resources/icons/20px/{pt-icon-label.svg => label.svg} | 0 resources/icons/20px/{pt-icon-layer.svg => layer.svg} | 0 resources/icons/20px/{pt-icon-layers.svg => layers.svg} | 0 .../icons/20px/{pt-icon-layout-auto.svg => layout-auto.svg} | 0 .../20px/{pt-icon-layout-balloon.svg => layout-balloon.svg} | 0 .../icons/20px/{pt-icon-layout-circle.svg => layout-circle.svg} | 0 .../icons/20px/{pt-icon-layout-grid.svg => layout-grid.svg} | 0 .../20px/{pt-icon-layout-group-by.svg => layout-group-by.svg} | 0 .../20px/{pt-icon-layout-hierarchy.svg => layout-hierarchy.svg} | 0 .../icons/20px/{pt-icon-layout-linear.svg => layout-linear.svg} | 0 .../20px/{pt-icon-layout-skew-grid.svg => layout-skew-grid.svg} | 0 ...on-layout-sorted-clusters.svg => layout-sorted-clusters.svg} | 0 resources/icons/20px/{pt-icon-layout.svg => layout.svg} | 0 resources/icons/20px/{pt-icon-left-join.svg => left-join.svg} | 0 resources/icons/20px/{pt-icon-lightbulb.svg => lightbulb.svg} | 0 resources/icons/20px/{pt-icon-link.svg => link.svg} | 0 .../20px/{pt-icon-list-detail-view.svg => list-detail-view.svg} | 0 resources/icons/20px/{pt-icon-list.svg => list.svg} | 0 resources/icons/20px/{pt-icon-locate.svg => locate.svg} | 0 resources/icons/20px/{pt-icon-lock.svg => lock.svg} | 0 resources/icons/20px/{pt-icon-log-in.svg => log-in.svg} | 0 resources/icons/20px/{pt-icon-log-out.svg => log-out.svg} | 0 resources/icons/20px/{pt-icon-manual.svg => manual.svg} | 0 ...icon-manually-entered-data.svg => manually-entered-data.svg} | 0 resources/icons/20px/{pt-icon-map-create.svg => map-create.svg} | 0 resources/icons/20px/{pt-icon-map-marker.svg => map-marker.svg} | 0 resources/icons/20px/{pt-icon-map.svg => map.svg} | 0 resources/icons/20px/{pt-icon-maximize.svg => maximize.svg} | 0 resources/icons/20px/{pt-icon-media.svg => media.svg} | 0 .../icons/20px/{pt-icon-menu-closed.svg => menu-closed.svg} | 0 resources/icons/20px/{pt-icon-menu-open.svg => menu-open.svg} | 0 resources/icons/20px/{pt-icon-menu.svg => menu.svg} | 0 .../icons/20px/{pt-icon-merge-columns.svg => merge-columns.svg} | 0 .../icons/20px/{pt-icon-merge-links.svg => merge-links.svg} | 0 resources/icons/20px/{pt-icon-minimize.svg => minimize.svg} | 0 resources/icons/20px/{pt-icon-minus.svg => minus.svg} | 0 .../icons/20px/{pt-icon-mobile-phone.svg => mobile-phone.svg} | 0 .../icons/20px/{pt-icon-mobile-video.svg => mobile-video.svg} | 0 resources/icons/20px/{pt-icon-moon.svg => moon.svg} | 0 resources/icons/20px/{pt-icon-more.svg => more.svg} | 0 resources/icons/20px/{pt-icon-move.svg => move.svg} | 0 resources/icons/20px/{pt-icon-mugshot.svg => mugshot.svg} | 0 .../icons/20px/{pt-icon-multi-select.svg => multi-select.svg} | 0 resources/icons/20px/{pt-icon-music.svg => music.svg} | 0 .../icons/20px/{pt-icon-new-grid-item.svg => new-grid-item.svg} | 0 resources/icons/20px/{pt-icon-new-link.svg => new-link.svg} | 0 resources/icons/20px/{pt-icon-new-object.svg => new-object.svg} | 0 resources/icons/20px/{pt-icon-new-person.svg => new-person.svg} | 0 .../20px/{pt-icon-new-prescription.svg => new-prescription.svg} | 0 .../icons/20px/{pt-icon-new-text-box.svg => new-text-box.svg} | 0 resources/icons/20px/{pt-icon-ninja.svg => ninja.svg} | 0 .../icons/20px/{pt-icon-notifications.svg => notifications.svg} | 0 .../icons/20px/{pt-icon-numbered-list.svg => numbered-list.svg} | 0 resources/icons/20px/{pt-icon-numerical.svg => numerical.svg} | 0 resources/icons/20px/{pt-icon-office.svg => office.svg} | 0 resources/icons/20px/{pt-icon-offline.svg => offline.svg} | 0 resources/icons/20px/{pt-icon-oil-field.svg => oil-field.svg} | 0 resources/icons/20px/{pt-icon-one-column.svg => one-column.svg} | 0 .../icons/20px/{pt-icon-page-layout.svg => page-layout.svg} | 0 .../icons/20px/{pt-icon-panel-stats.svg => panel-stats.svg} | 0 .../icons/20px/{pt-icon-panel-table.svg => panel-table.svg} | 0 resources/icons/20px/{pt-icon-paperclip.svg => paperclip.svg} | 0 resources/icons/20px/{pt-icon-paragraph.svg => paragraph.svg} | 0 .../icons/20px/{pt-icon-path-search.svg => path-search.svg} | 0 resources/icons/20px/{pt-icon-path.svg => path.svg} | 0 resources/icons/20px/{pt-icon-pause.svg => pause.svg} | 0 resources/icons/20px/{pt-icon-people.svg => people.svg} | 0 resources/icons/20px/{pt-icon-percentage.svg => percentage.svg} | 0 resources/icons/20px/{pt-icon-person.svg => person.svg} | 0 resources/icons/20px/{pt-icon-phone.svg => phone.svg} | 0 resources/icons/20px/{pt-icon-pie-chart.svg => pie-chart.svg} | 0 resources/icons/20px/{pt-icon-pin.svg => pin.svg} | 0 .../icons/20px/{pt-icon-pivot-table.svg => pivot-table.svg} | 0 resources/icons/20px/{pt-icon-pivot.svg => pivot.svg} | 0 resources/icons/20px/{pt-icon-play.svg => play.svg} | 0 resources/icons/20px/{pt-icon-plus.svg => plus.svg} | 0 .../20px/{pt-icon-polygon-filter.svg => polygon-filter.svg} | 0 resources/icons/20px/{pt-icon-power.svg => power.svg} | 0 ...{pt-icon-predictive-analysis.svg => predictive-analysis.svg} | 0 .../icons/20px/{pt-icon-prescription.svg => prescription.svg} | 0 .../icons/20px/{pt-icon-presentation.svg => presentation.svg} | 0 resources/icons/20px/{pt-icon-print.svg => print.svg} | 0 resources/icons/20px/{pt-icon-projects.svg => projects.svg} | 0 resources/icons/20px/{pt-icon-properties.svg => properties.svg} | 0 resources/icons/20px/{pt-icon-property.svg => property.svg} | 0 .../20px/{pt-icon-publish-function.svg => publish-function.svg} | 0 resources/icons/20px/{pt-icon-pulse.svg => pulse.svg} | 0 resources/icons/20px/{pt-icon-random.svg => random.svg} | 0 resources/icons/20px/{pt-icon-record.svg => record.svg} | 0 resources/icons/20px/{pt-icon-redo.svg => redo.svg} | 0 resources/icons/20px/{pt-icon-refresh.svg => refresh.svg} | 0 .../20px/{pt-icon-regression-chart.svg => regression-chart.svg} | 0 .../{pt-icon-remove-column-left.svg => remove-column-left.svg} | 0 ...{pt-icon-remove-column-right.svg => remove-column-right.svg} | 0 .../icons/20px/{pt-icon-remove-column.svg => remove-column.svg} | 0 .../{pt-icon-remove-row-bottom.svg => remove-row-bottom.svg} | 0 .../20px/{pt-icon-remove-row-top.svg => remove-row-top.svg} | 0 resources/icons/20px/{pt-icon-remove.svg => remove.svg} | 0 resources/icons/20px/{pt-icon-repeat.svg => repeat.svg} | 0 resources/icons/20px/{pt-icon-resolve.svg => resolve.svg} | 0 resources/icons/20px/{pt-icon-rig.svg => rig.svg} | 0 resources/icons/20px/{pt-icon-right-join.svg => right-join.svg} | 0 resources/icons/20px/{pt-icon-ring.svg => ring.svg} | 0 .../20px/{pt-icon-rotate-document.svg => rotate-document.svg} | 0 .../icons/20px/{pt-icon-rotate-page.svg => rotate-page.svg} | 0 resources/icons/20px/{pt-icon-satellite.svg => satellite.svg} | 0 resources/icons/20px/{pt-icon-saved.svg => saved.svg} | 0 .../icons/20px/{pt-icon-scatter-plot.svg => scatter-plot.svg} | 0 .../icons/20px/{pt-icon-search-around.svg => search-around.svg} | 0 .../20px/{pt-icon-search-template.svg => search-template.svg} | 0 .../icons/20px/{pt-icon-search-text.svg => search-text.svg} | 0 resources/icons/20px/{pt-icon-search.svg => search.svg} | 0 .../{pt-icon-segmented-control.svg => segmented-control.svg} | 0 resources/icons/20px/{pt-icon-select.svg => select.svg} | 0 resources/icons/20px/{pt-icon-selection.svg => selection.svg} | 0 .../icons/20px/{pt-icon-send-to-graph.svg => send-to-graph.svg} | 0 .../icons/20px/{pt-icon-send-to-map.svg => send-to-map.svg} | 0 resources/icons/20px/{pt-icon-send-to.svg => send-to.svg} | 0 resources/icons/20px/{pt-icon-series-add.svg => series-add.svg} | 0 ...t-icon-series-configuration.svg => series-configuration.svg} | 0 .../20px/{pt-icon-series-derived.svg => series-derived.svg} | 0 .../20px/{pt-icon-series-filtered.svg => series-filtered.svg} | 0 .../icons/20px/{pt-icon-series-search.svg => series-search.svg} | 0 resources/icons/20px/{pt-icon-settings.svg => settings.svg} | 0 resources/icons/20px/{pt-icon-share.svg => share.svg} | 0 resources/icons/20px/{pt-icon-shop.svg => shop.svg} | 0 .../icons/20px/{pt-icon-shopping-cart.svg => shopping-cart.svg} | 0 resources/icons/20px/{pt-icon-sim-card.svg => sim-card.svg} | 0 resources/icons/20px/{pt-icon-slash.svg => slash.svg} | 0 .../icons/20px/{pt-icon-small-cross.svg => small-cross.svg} | 0 .../icons/20px/{pt-icon-small-minus.svg => small-minus.svg} | 0 resources/icons/20px/{pt-icon-small-plus.svg => small-plus.svg} | 0 resources/icons/20px/{pt-icon-small-tick.svg => small-tick.svg} | 0 .../icons/20px/{pt-icon-social-media.svg => social-media.svg} | 0 ...on-sort-alphabetical-desc.svg => sort-alphabetical-desc.svg} | 0 .../{pt-icon-sort-alphabetical.svg => sort-alphabetical.svg} | 0 resources/icons/20px/{pt-icon-sort-asc.svg => sort-asc.svg} | 0 resources/icons/20px/{pt-icon-sort-desc.svg => sort-desc.svg} | 0 ...{pt-icon-sort-numerical-desc.svg => sort-numerical-desc.svg} | 0 .../20px/{pt-icon-sort-numerical.svg => sort-numerical.svg} | 0 resources/icons/20px/{pt-icon-sort.svg => sort.svg} | 0 .../icons/20px/{pt-icon-split-columns.svg => split-columns.svg} | 0 resources/icons/20px/{pt-icon-square.svg => square.svg} | 0 .../icons/20px/{pt-icon-stacked-chart.svg => stacked-chart.svg} | 0 resources/icons/20px/{pt-icon-star-empty.svg => star-empty.svg} | 0 resources/icons/20px/{pt-icon-star.svg => star.svg} | 0 .../icons/20px/{pt-icon-step-backward.svg => step-backward.svg} | 0 resources/icons/20px/{pt-icon-step-chart.svg => step-chart.svg} | 0 .../icons/20px/{pt-icon-step-forward.svg => step-forward.svg} | 0 resources/icons/20px/{pt-icon-stop.svg => stop.svg} | 0 resources/icons/20px/{pt-icon-style.svg => style.svg} | 0 .../20px/{pt-icon-swap-horizontal.svg => swap-horizontal.svg} | 0 .../icons/20px/{pt-icon-swap-vertical.svg => swap-vertical.svg} | 0 .../icons/20px/{pt-icon-symbol-circle.svg => symbol-circle.svg} | 0 .../icons/20px/{pt-icon-symbol-cross.svg => symbol-cross.svg} | 0 .../20px/{pt-icon-symbol-diamond.svg => symbol-diamond.svg} | 0 .../icons/20px/{pt-icon-symbol-square.svg => symbol-square.svg} | 0 ...t-icon-symbol-triangle-down.svg => symbol-triangle-down.svg} | 0 .../{pt-icon-symbol-triangle-up.svg => symbol-triangle-up.svg} | 0 resources/icons/20px/{pt-icon-tag.svg => tag.svg} | 0 .../icons/20px/{pt-icon-take-action.svg => take-action.svg} | 0 resources/icons/20px/{pt-icon-taxi.svg => taxi.svg} | 0 .../20px/{pt-icon-text-highlight.svg => text-highlight.svg} | 0 resources/icons/20px/{pt-icon-th-derived.svg => th-derived.svg} | 0 resources/icons/20px/{pt-icon-th-list.svg => th-list.svg} | 0 resources/icons/20px/{pt-icon-th.svg => th.svg} | 0 .../icons/20px/{pt-icon-thumbs-down.svg => thumbs-down.svg} | 0 resources/icons/20px/{pt-icon-thumbs-up.svg => thumbs-up.svg} | 0 .../icons/20px/{pt-icon-tick-circle.svg => tick-circle.svg} | 0 resources/icons/20px/{pt-icon-tick.svg => tick.svg} | 0 resources/icons/20px/{pt-icon-time.svg => time.svg} | 0 ...{pt-icon-timeline-area-chart.svg => timeline-area-chart.svg} | 0 .../{pt-icon-timeline-bar-chart.svg => timeline-bar-chart.svg} | 0 .../20px/{pt-icon-timeline-events.svg => timeline-events.svg} | 0 ...{pt-icon-timeline-line-chart.svg => timeline-line-chart.svg} | 0 resources/icons/20px/{pt-icon-tint.svg => tint.svg} | 0 resources/icons/20px/{pt-icon-torch.svg => torch.svg} | 0 resources/icons/20px/{pt-icon-train.svg => train.svg} | 0 resources/icons/20px/{pt-icon-translate.svg => translate.svg} | 0 resources/icons/20px/{pt-icon-trash.svg => trash.svg} | 0 .../icons/20px/{pt-icon-trending-down.svg => trending-down.svg} | 0 .../icons/20px/{pt-icon-trending-up.svg => trending-up.svg} | 0 .../icons/20px/{pt-icon-two-columns.svg => two-columns.svg} | 0 resources/icons/20px/{pt-icon-underline.svg => underline.svg} | 0 resources/icons/20px/{pt-icon-undo.svg => undo.svg} | 0 .../20px/{pt-icon-ungroup-objects.svg => ungroup-objects.svg} | 0 .../20px/{pt-icon-unknown-vehicle.svg => unknown-vehicle.svg} | 0 resources/icons/20px/{pt-icon-unlock.svg => unlock.svg} | 0 resources/icons/20px/{pt-icon-unpin.svg => unpin.svg} | 0 resources/icons/20px/{pt-icon-unresolve.svg => unresolve.svg} | 0 resources/icons/20px/{pt-icon-upload.svg => upload.svg} | 0 resources/icons/20px/{pt-icon-user.svg => user.svg} | 0 resources/icons/20px/{pt-icon-variable.svg => variable.svg} | 0 ...on-vertical-bar-chart-asc.svg => vertical-bar-chart-asc.svg} | 0 ...-vertical-bar-chart-desc.svg => vertical-bar-chart-desc.svg} | 0 ...icon-vertical-distribution.svg => vertical-distribution.svg} | 0 resources/icons/20px/{pt-icon-video.svg => video.svg} | 0 .../icons/20px/{pt-icon-volume-down.svg => volume-down.svg} | 0 resources/icons/20px/{pt-icon-volume-off.svg => volume-off.svg} | 0 resources/icons/20px/{pt-icon-volume-up.svg => volume-up.svg} | 0 resources/icons/20px/{pt-icon-walk.svg => walk.svg} | 0 .../icons/20px/{pt-icon-warning-sign.svg => warning-sign.svg} | 0 .../20px/{pt-icon-waterfall-chart.svg => waterfall-chart.svg} | 0 .../icons/20px/{pt-icon-widget-button.svg => widget-button.svg} | 0 .../icons/20px/{pt-icon-widget-footer.svg => widget-footer.svg} | 0 .../icons/20px/{pt-icon-widget-header.svg => widget-header.svg} | 0 resources/icons/20px/{pt-icon-widget.svg => widget.svg} | 0 resources/icons/20px/{pt-icon-wrench.svg => wrench.svg} | 0 resources/icons/20px/{pt-icon-zoom-in.svg => zoom-in.svg} | 0 resources/icons/20px/{pt-icon-zoom-out.svg => zoom-out.svg} | 0 .../icons/20px/{pt-icon-zoom-to-fit.svg => zoom-to-fit.svg} | 0 867 files changed, 1 insertion(+), 1 deletion(-) rename resources/icons/16px/{pt-icon-add-column-left.svg => add-column-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-add-column-right.svg => add-column-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-add-row-bottom.svg => add-row-bottom.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-add-row-top.svg => add-row-top.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-add-to-artifact.svg => add-to-artifact.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-add-to-folder.svg => add-to-folder.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-add.svg => add.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-airplane.svg => airplane.svg} (100%) rename resources/icons/16px/{pt-icon-align-center.svg => align-center.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-align-justify.svg => align-justify.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-align-left.svg => align-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-align-right.svg => align-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-alignment-bottom.svg => alignment-bottom.svg} (100%) rename resources/icons/16px/{pt-icon-alignment-horizontal-center.svg => alignment-horizontal-center.svg} (100%) rename resources/icons/16px/{pt-icon-alignment-left.svg => alignment-left.svg} (100%) rename resources/icons/16px/{pt-icon-alignment-right.svg => alignment-right.svg} (100%) rename resources/icons/16px/{pt-icon-alignment-top.svg => alignment-top.svg} (100%) rename resources/icons/16px/{pt-icon-alignment-vertical-center.svg => alignment-vertical-center.svg} (100%) rename resources/icons/16px/{pt-icon-annotation.svg => annotation.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-application.svg => application.svg} (100%) rename resources/icons/16px/{pt-icon-applications.svg => applications.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-arrow-bottom-left.svg => arrow-bottom-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-arrow-bottom-right.svg => arrow-bottom-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-arrow-down.svg => arrow-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-arrow-left.svg => arrow-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-arrow-right.svg => arrow-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-arrow-top-left.svg => arrow-top-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-arrow-top-right.svg => arrow-top-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-arrow-up.svg => arrow-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-arrows-horizontal.svg => arrows-horizontal.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-arrows-vertical.svg => arrows-vertical.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-asterisk.svg => asterisk.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-automatic-updates.svg => automatic-updates.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-badge.svg => badge.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-ban-circle.svg => ban-circle.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-bank-account.svg => bank-account.svg} (100%) rename resources/icons/16px/{pt-icon-barcode.svg => barcode.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-blank.svg => blank.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-blocked-person.svg => blocked-person.svg} (100%) rename resources/icons/16px/{pt-icon-bold.svg => bold.svg} (100%) rename resources/icons/16px/{pt-icon-book.svg => book.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-bookmark.svg => bookmark.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-box.svg => box.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-briefcase.svg => briefcase.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-build.svg => build.svg} (100%) rename resources/icons/16px/{pt-icon-calculator.svg => calculator.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-calendar.svg => calendar.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-camera.svg => camera.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-caret-down.svg => caret-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-caret-left.svg => caret-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-caret-right.svg => caret-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-caret-up.svg => caret-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-cell-tower.svg => cell-tower.svg} (100%) rename resources/icons/16px/{pt-icon-changes.svg => changes.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-chart.svg => chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-chat.svg => chat.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-chevron-backward.svg => chevron-backward.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-chevron-down.svg => chevron-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-chevron-forward.svg => chevron-forward.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-chevron-left.svg => chevron-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-chevron-right.svg => chevron-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-chevron-up.svg => chevron-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-circle-arrow-down.svg => circle-arrow-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-circle-arrow-left.svg => circle-arrow-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-circle-arrow-right.svg => circle-arrow-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-circle-arrow-up.svg => circle-arrow-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-circle.svg => circle.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-citation.svg => citation.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-clipboard.svg => clipboard.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-cloud-download.svg => cloud-download.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-cloud-upload.svg => cloud-upload.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-cloud.svg => cloud.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-code-block.svg => code-block.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-code.svg => code.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-cog.svg => cog.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-collapse-all.svg => collapse-all.svg} (100%) rename resources/icons/16px/{pt-icon-column-layout.svg => column-layout.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-comment.svg => comment.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-comparison.svg => comparison.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-compass.svg => compass.svg} (100%) rename resources/icons/16px/{pt-icon-compressed.svg => compressed.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-confirm.svg => confirm.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-console.svg => console.svg} (100%) rename resources/icons/16px/{pt-icon-contrast.svg => contrast.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-control.svg => control.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-credit-card.svg => credit-card.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-cross.svg => cross.svg} (100%) rename resources/icons/16px/{pt-icon-curved-range-chart.svg => curved-range-chart.svg} (100%) rename resources/icons/16px/{pt-icon-cut.svg => cut.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-dashboard.svg => dashboard.svg} (100%) rename resources/icons/16px/{pt-icon-database.svg => database.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-delete.svg => delete.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-delta.svg => delta.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-derive-column.svg => derive-column.svg} (100%) rename resources/icons/16px/{pt-icon-desktop.svg => desktop.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-direction-left.svg => direction-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-direction-right.svg => direction-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-disable.svg => disable.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-document-open.svg => document-open.svg} (100%) rename resources/icons/16px/{pt-icon-document-share.svg => document-share.svg} (100%) rename resources/icons/16px/{pt-icon-document.svg => document.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-dollar.svg => dollar.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-dot.svg => dot.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-double-caret-horizontal.svg => double-caret-horizontal.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-double-caret-vertical.svg => double-caret-vertical.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-double-chevron-down.svg => double-chevron-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-double-chevron-left.svg => double-chevron-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-double-chevron-right.svg => double-chevron-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-double-chevron-up.svg => double-chevron-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-doughnut-chart.svg => doughnut-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-download.svg => download.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-drag-handle-horizontal.svg => drag-handle-horizontal.svg} (100%) rename resources/icons/16px/{pt-icon-drag-handle-vertical.svg => drag-handle-vertical.svg} (100%) rename resources/icons/16px/{pt-icon-draw.svg => draw.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-drive-time.svg => drive-time.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-duplicate.svg => duplicate.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-edit.svg => edit.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-eject.svg => eject.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-endorsed.svg => endorsed.svg} (100%) rename resources/icons/16px/{pt-icon-envelope.svg => envelope.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-eraser.svg => eraser.svg} (100%) rename resources/icons/16px/{pt-icon-error.svg => error.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-euro.svg => euro.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-exchange.svg => exchange.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-exclude-row.svg => exclude-row.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-expand-all.svg => expand-all.svg} (100%) rename resources/icons/16px/{pt-icon-export.svg => export.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-eye-off.svg => eye-off.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-eye-on.svg => eye-on.svg} (100%) rename resources/icons/16px/{pt-icon-eye-open.svg => eye-open.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-fast-backward.svg => fast-backward.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-fast-forward.svg => fast-forward.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-feed-subscribed.svg => feed-subscribed.svg} (100%) rename resources/icons/16px/{pt-icon-feed.svg => feed.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-film.svg => film.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-filter-keep.svg => filter-keep.svg} (100%) rename resources/icons/16px/{pt-icon-filter-list.svg => filter-list.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-filter-remove.svg => filter-remove.svg} (100%) rename resources/icons/16px/{pt-icon-filter.svg => filter.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-flag.svg => flag.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-flash.svg => flash.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-floppy-disk.svg => floppy-disk.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-flows.svg => flows.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-folder-close.svg => folder-close.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-folder-open.svg => folder-open.svg} (100%) rename resources/icons/16px/{pt-icon-folder-shared-open.svg => folder-shared-open.svg} (100%) rename resources/icons/16px/{pt-icon-folder-shared.svg => folder-shared.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-follower.svg => follower.svg} (100%) rename resources/icons/16px/{pt-icon-following.svg => following.svg} (100%) rename resources/icons/16px/{pt-icon-font.svg => font.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-fork.svg => fork.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-form.svg => form.svg} (100%) rename resources/icons/16px/{pt-icon-full-circle.svg => full-circle.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-full-stacked-chart.svg => full-stacked-chart.svg} (100%) rename resources/icons/16px/{pt-icon-fullscreen.svg => fullscreen.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-function.svg => function.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-gantt-chart.svg => gantt-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-geolocation.svg => geolocation.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-geosearch.svg => geosearch.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-git-branch.svg => git-branch.svg} (100%) rename resources/icons/16px/{pt-icon-git-commit.svg => git-commit.svg} (100%) rename resources/icons/16px/{pt-icon-git-merge.svg => git-merge.svg} (100%) rename resources/icons/16px/{pt-icon-git-new-branch.svg => git-new-branch.svg} (100%) rename resources/icons/16px/{pt-icon-git-pull.svg => git-pull.svg} (100%) rename resources/icons/16px/{pt-icon-git-push.svg => git-push.svg} (100%) rename resources/icons/16px/{pt-icon-git-repo.svg => git-repo.svg} (100%) rename resources/icons/16px/{pt-icon-glass.svg => glass.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-globe.svg => globe.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-graph-remove.svg => graph-remove.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-graph.svg => graph.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-grid-view.svg => grid-view.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-grid.svg => grid.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-group-objects.svg => group-objects.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-grouped-bar-chart.svg => grouped-bar-chart.svg} (100%) rename resources/icons/16px/{pt-icon-hand-down.svg => hand-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-hand-left.svg => hand-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-hand-right.svg => hand-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-hand-up.svg => hand-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-hand.svg => hand.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-header-one.svg => header-one.svg} (100%) rename resources/icons/16px/{pt-icon-header-two.svg => header-two.svg} (100%) rename resources/icons/16px/{pt-icon-header.svg => header.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-headset.svg => headset.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-heart-broken.svg => heart-broken.svg} (100%) rename resources/icons/16px/{pt-icon-heart.svg => heart.svg} (100%) rename resources/icons/16px/{pt-icon-heat-grid.svg => heat-grid.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-heatmap.svg => heatmap.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-help.svg => help.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-helper-management.svg => helper-management.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-highlight.svg => highlight.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-history.svg => history.svg} (100%) rename resources/icons/16px/{pt-icon-home.svg => home.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-horizontal-bar-chart-asc.svg => horizontal-bar-chart-asc.svg} (100%) rename resources/icons/16px/{pt-icon-horizontal-bar-chart-desc.svg => horizontal-bar-chart-desc.svg} (100%) rename resources/icons/16px/{pt-icon-horizontal-bar-chart.svg => horizontal-bar-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-horizontal-distribution.svg => horizontal-distribution.svg} (100%) rename resources/icons/16px/{pt-icon-id-number.svg => id-number.svg} (100%) rename resources/icons/16px/{pt-icon-image-rotate-left.svg => image-rotate-left.svg} (100%) rename resources/icons/16px/{pt-icon-image-rotate-right.svg => image-rotate-right.svg} (100%) rename resources/icons/16px/{pt-icon-import.svg => import.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-inbox.svg => inbox.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-info-sign.svg => info-sign.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-inner-join.svg => inner-join.svg} (100%) rename resources/icons/16px/{pt-icon-insert.svg => insert.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-intersection.svg => intersection.svg} (100%) rename resources/icons/16px/{pt-icon-ip-address.svg => ip-address.svg} (100%) rename resources/icons/16px/{pt-icon-issue-closed.svg => issue-closed.svg} (100%) rename resources/icons/16px/{pt-icon-issue-new.svg => issue-new.svg} (100%) rename resources/icons/16px/{pt-icon-issue.svg => issue.svg} (100%) rename resources/icons/16px/{pt-icon-italic.svg => italic.svg} (100%) rename resources/icons/16px/{pt-icon-join-table.svg => join-table.svg} (100%) rename resources/icons/16px/{pt-icon-key-backspace.svg => key-backspace.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-key-command.svg => key-command.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-key-control.svg => key-control.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-key-delete.svg => key-delete.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-key-enter.svg => key-enter.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-key-escape.svg => key-escape.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-key-option.svg => key-option.svg} (100%) rename resources/icons/16px/{pt-icon-key-shift.svg => key-shift.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-key-tab.svg => key-tab.svg} (100%) rename resources/icons/16px/{pt-icon-key.svg => key.svg} (100%) rename resources/icons/16px/{pt-icon-known-vehicle.svg => known-vehicle.svg} (100%) rename resources/icons/16px/{pt-icon-label.svg => label.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-layer.svg => layer.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-layers.svg => layers.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-layout-auto.svg => layout-auto.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-layout-balloon.svg => layout-balloon.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-layout-circle.svg => layout-circle.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-layout-grid.svg => layout-grid.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-layout-group-by.svg => layout-group-by.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-layout-hierarchy.svg => layout-hierarchy.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-layout-linear.svg => layout-linear.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-layout-skew-grid.svg => layout-skew-grid.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-layout-sorted-clusters.svg => layout-sorted-clusters.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-layout.svg => layout.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-left-join.svg => left-join.svg} (100%) rename resources/icons/16px/{pt-icon-lightbulb.svg => lightbulb.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-link.svg => link.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-list-detail-view.svg => list-detail-view.svg} (100%) rename resources/icons/16px/{pt-icon-list.svg => list.svg} (100%) rename resources/icons/16px/{pt-icon-locate.svg => locate.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-lock.svg => lock.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-log-in.svg => log-in.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-log-out.svg => log-out.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-manual.svg => manual.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-manually-entered-data.svg => manually-entered-data.svg} (100%) rename resources/icons/16px/{pt-icon-map-create.svg => map-create.svg} (100%) rename resources/icons/16px/{pt-icon-map-marker.svg => map-marker.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-map.svg => map.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-maximize.svg => maximize.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-media.svg => media.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-menu-closed.svg => menu-closed.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-menu-open.svg => menu-open.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-menu.svg => menu.svg} (100%) rename resources/icons/16px/{pt-icon-merge-columns.svg => merge-columns.svg} (100%) rename resources/icons/16px/{pt-icon-merge-links.svg => merge-links.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-minimize.svg => minimize.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-minus.svg => minus.svg} (100%) rename resources/icons/16px/{pt-icon-mobile-phone.svg => mobile-phone.svg} (100%) rename resources/icons/16px/{pt-icon-mobile-video.svg => mobile-video.svg} (100%) rename resources/icons/16px/{pt-icon-moon.svg => moon.svg} (100%) rename resources/icons/16px/{pt-icon-more.svg => more.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-move.svg => move.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-mugshot.svg => mugshot.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-multi-select.svg => multi-select.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-music.svg => music.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-new-grid-item.svg => new-grid-item.svg} (100%) rename resources/icons/16px/{pt-icon-new-link.svg => new-link.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-new-object.svg => new-object.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-new-person.svg => new-person.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-new-prescription.svg => new-prescription.svg} (100%) rename resources/icons/16px/{pt-icon-new-text-box.svg => new-text-box.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-ninja.svg => ninja.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-notifications.svg => notifications.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-numbered-list.svg => numbered-list.svg} (100%) rename resources/icons/16px/{pt-icon-numerical.svg => numerical.svg} (100%) rename resources/icons/16px/{pt-icon-office.svg => office.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-offline.svg => offline.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-oil-field.svg => oil-field.svg} (100%) rename resources/icons/16px/{pt-icon-one-column.svg => one-column.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-page-layout.svg => page-layout.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-panel-stats.svg => panel-stats.svg} (100%) rename resources/icons/16px/{pt-icon-panel-table.svg => panel-table.svg} (100%) rename resources/icons/16px/{pt-icon-paperclip.svg => paperclip.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-paragraph.svg => paragraph.svg} (100%) rename resources/icons/16px/{pt-icon-path-search.svg => path-search.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-path.svg => path.svg} (100%) rename resources/icons/16px/{pt-icon-pause.svg => pause.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-people.svg => people.svg} (100%) rename resources/icons/16px/{pt-icon-percentage.svg => percentage.svg} (100%) rename resources/icons/16px/{pt-icon-person.svg => person.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-phone.svg => phone.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-pie-chart.svg => pie-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-pin.svg => pin.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-pivot-table.svg => pivot-table.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-pivot.svg => pivot.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-play.svg => play.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-plus.svg => plus.svg} (100%) rename resources/icons/16px/{pt-icon-polygon-filter.svg => polygon-filter.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-power.svg => power.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-predictive-analysis.svg => predictive-analysis.svg} (100%) rename resources/icons/16px/{pt-icon-prescription.svg => prescription.svg} (100%) rename resources/icons/16px/{pt-icon-presentation.svg => presentation.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-print.svg => print.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-projects.svg => projects.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-properties.svg => properties.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-property.svg => property.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-publish-function.svg => publish-function.svg} (100%) rename resources/icons/16px/{pt-icon-pulse.svg => pulse.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-random.svg => random.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-record.svg => record.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-redo.svg => redo.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-refresh.svg => refresh.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-regression-chart.svg => regression-chart.svg} (100%) rename resources/icons/16px/{pt-icon-remove-column-left.svg => remove-column-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-remove-column-right.svg => remove-column-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-remove-column.svg => remove-column.svg} (100%) rename resources/icons/16px/{pt-icon-remove-row-bottom.svg => remove-row-bottom.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-remove-row-top.svg => remove-row-top.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-remove.svg => remove.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-repeat.svg => repeat.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-resolve.svg => resolve.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-rig.svg => rig.svg} (100%) rename resources/icons/16px/{pt-icon-right-join.svg => right-join.svg} (100%) rename resources/icons/16px/{pt-icon-ring.svg => ring.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-rotate-document.svg => rotate-document.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-rotate-page.svg => rotate-page.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-satellite.svg => satellite.svg} (100%) rename resources/icons/16px/{pt-icon-saved.svg => saved.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-scatter-plot.svg => scatter-plot.svg} (100%) rename resources/icons/16px/{pt-icon-search-around.svg => search-around.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-search-template.svg => search-template.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-search-text.svg => search-text.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-search.svg => search.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-segmented-control.svg => segmented-control.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-select.svg => select.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-selection.svg => selection.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-send-to-graph.svg => send-to-graph.svg} (100%) rename resources/icons/16px/{pt-icon-send-to-map.svg => send-to-map.svg} (100%) rename resources/icons/16px/{pt-icon-send-to.svg => send-to.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-series-add.svg => series-add.svg} (100%) rename resources/icons/16px/{pt-icon-series-configuration.svg => series-configuration.svg} (100%) rename resources/icons/16px/{pt-icon-series-derived.svg => series-derived.svg} (100%) rename resources/icons/16px/{pt-icon-series-filtered.svg => series-filtered.svg} (100%) rename resources/icons/16px/{pt-icon-series-search.svg => series-search.svg} (100%) rename resources/icons/16px/{pt-icon-settings.svg => settings.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-share.svg => share.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-shop.svg => shop.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-shopping-cart.svg => shopping-cart.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-sim-card.svg => sim-card.svg} (100%) rename resources/icons/16px/{pt-icon-slash.svg => slash.svg} (100%) rename resources/icons/16px/{pt-icon-small-cross.svg => small-cross.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-small-minus.svg => small-minus.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-small-plus.svg => small-plus.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-small-tick.svg => small-tick.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-social-media.svg => social-media.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-sort-alphabetical-desc.svg => sort-alphabetical-desc.svg} (100%) rename resources/icons/16px/{pt-icon-sort-alphabetical.svg => sort-alphabetical.svg} (100%) rename resources/icons/16px/{pt-icon-sort-asc.svg => sort-asc.svg} (100%) rename resources/icons/16px/{pt-icon-sort-desc.svg => sort-desc.svg} (100%) rename resources/icons/16px/{pt-icon-sort-numerical-desc.svg => sort-numerical-desc.svg} (100%) rename resources/icons/16px/{pt-icon-sort-numerical.svg => sort-numerical.svg} (100%) rename resources/icons/16px/{pt-icon-sort.svg => sort.svg} (100%) rename resources/icons/16px/{pt-icon-split-columns.svg => split-columns.svg} (100%) rename resources/icons/16px/{pt-icon-square.svg => square.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-stacked-chart.svg => stacked-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-star-empty.svg => star-empty.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-star.svg => star.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-step-backward.svg => step-backward.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-step-chart.svg => step-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-step-forward.svg => step-forward.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-stop.svg => stop.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-style.svg => style.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-swap-horizontal.svg => swap-horizontal.svg} (100%) rename resources/icons/16px/{pt-icon-swap-vertical.svg => swap-vertical.svg} (100%) rename resources/icons/16px/{pt-icon-symbol-circle.svg => symbol-circle.svg} (100%) rename resources/icons/16px/{pt-icon-symbol-cross.svg => symbol-cross.svg} (100%) rename resources/icons/16px/{pt-icon-symbol-diamond.svg => symbol-diamond.svg} (100%) rename resources/icons/16px/{pt-icon-symbol-square.svg => symbol-square.svg} (100%) rename resources/icons/16px/{pt-icon-symbol-triangle-down.svg => symbol-triangle-down.svg} (100%) rename resources/icons/16px/{pt-icon-symbol-triangle-up.svg => symbol-triangle-up.svg} (100%) rename resources/icons/16px/{pt-icon-tag.svg => tag.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-take-action.svg => take-action.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-taxi.svg => taxi.svg} (100%) rename resources/icons/16px/{pt-icon-text-highlight.svg => text-highlight.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-th-derived.svg => th-derived.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-th-list.svg => th-list.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-th.svg => th.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-thumbs-down.svg => thumbs-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-thumbs-up.svg => thumbs-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-tick-circle.svg => tick-circle.svg} (100%) rename resources/icons/16px/{pt-icon-tick.svg => tick.svg} (100%) rename resources/icons/16px/{pt-icon-time.svg => time.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-timeline-area-chart.svg => timeline-area-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-timeline-bar-chart.svg => timeline-bar-chart.svg} (100%) rename resources/icons/16px/{pt-icon-timeline-events.svg => timeline-events.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-timeline-line-chart.svg => timeline-line-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-tint.svg => tint.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-torch.svg => torch.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-train.svg => train.svg} (100%) rename resources/icons/16px/{pt-icon-translate.svg => translate.svg} (100%) rename resources/icons/16px/{pt-icon-trash.svg => trash.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-trending-down.svg => trending-down.svg} (100%) rename resources/icons/16px/{pt-icon-trending-up.svg => trending-up.svg} (100%) rename resources/icons/16px/{pt-icon-two-columns.svg => two-columns.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-underline.svg => underline.svg} (100%) rename resources/icons/16px/{pt-icon-undo.svg => undo.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-ungroup-objects.svg => ungroup-objects.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-unknown-vehicle.svg => unknown-vehicle.svg} (100%) rename resources/icons/16px/{pt-icon-unlock.svg => unlock.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-unpin.svg => unpin.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-unresolve.svg => unresolve.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-upload.svg => upload.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-user.svg => user.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-variable.svg => variable.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-vertical-bar-chart-asc.svg => vertical-bar-chart-asc.svg} (100%) rename resources/icons/16px/{pt-icon-vertical-bar-chart-desc.svg => vertical-bar-chart-desc.svg} (100%) rename resources/icons/16px/{pt-icon-vertical-distribution.svg => vertical-distribution.svg} (100%) rename resources/icons/16px/{pt-icon-video.svg => video.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-volume-down.svg => volume-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-volume-off.svg => volume-off.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-volume-up.svg => volume-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-walk.svg => walk.svg} (100%) rename resources/icons/16px/{pt-icon-warning-sign.svg => warning-sign.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-waterfall-chart.svg => waterfall-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-widget-button.svg => widget-button.svg} (100%) rename resources/icons/16px/{pt-icon-widget-footer.svg => widget-footer.svg} (100%) rename resources/icons/16px/{pt-icon-widget-header.svg => widget-header.svg} (100%) rename resources/icons/16px/{pt-icon-widget.svg => widget.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-wrench.svg => wrench.svg} (100%) rename resources/icons/16px/{pt-icon-zoom-in.svg => zoom-in.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-zoom-out.svg => zoom-out.svg} (100%) mode change 100755 => 100644 rename resources/icons/16px/{pt-icon-zoom-to-fit.svg => zoom-to-fit.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-add-column-left.svg => add-column-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-add-column-right.svg => add-column-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-add-row-bottom.svg => add-row-bottom.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-add-row-top.svg => add-row-top.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-add-to-artifact.svg => add-to-artifact.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-add-to-folder.svg => add-to-folder.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-add.svg => add.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-airplane.svg => airplane.svg} (100%) rename resources/icons/20px/{pt-icon-align-center.svg => align-center.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-align-justify.svg => align-justify.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-align-left.svg => align-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-align-right.svg => align-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-alignment-bottom.svg => alignment-bottom.svg} (100%) rename resources/icons/20px/{pt-icon-alignment-horizontal-center.svg => alignment-horizontal-center.svg} (100%) rename resources/icons/20px/{pt-icon-alignment-left.svg => alignment-left.svg} (100%) rename resources/icons/20px/{pt-icon-alignment-right.svg => alignment-right.svg} (100%) rename resources/icons/20px/{pt-icon-alignment-top.svg => alignment-top.svg} (100%) rename resources/icons/20px/{pt-icon-alignment-vertical-center.svg => alignment-vertical-center.svg} (100%) rename resources/icons/20px/{pt-icon-annotation.svg => annotation.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-application.svg => application.svg} (100%) rename resources/icons/20px/{pt-icon-applications.svg => applications.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-arrow-bottom-left.svg => arrow-bottom-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-arrow-bottom-right.svg => arrow-bottom-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-arrow-down.svg => arrow-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-arrow-left.svg => arrow-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-arrow-right.svg => arrow-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-arrow-top-left.svg => arrow-top-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-arrow-top-right.svg => arrow-top-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-arrow-up.svg => arrow-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-arrows-horizontal.svg => arrows-horizontal.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-arrows-vertical.svg => arrows-vertical.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-asterisk.svg => asterisk.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-automatic-updates.svg => automatic-updates.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-badge.svg => badge.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-ban-circle.svg => ban-circle.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-bank-account.svg => bank-account.svg} (100%) rename resources/icons/20px/{pt-icon-barcode.svg => barcode.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-blank.svg => blank.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-blocked-person.svg => blocked-person.svg} (100%) rename resources/icons/20px/{pt-icon-bold.svg => bold.svg} (100%) rename resources/icons/20px/{pt-icon-book.svg => book.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-bookmark.svg => bookmark.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-box.svg => box.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-briefcase.svg => briefcase.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-build.svg => build.svg} (100%) rename resources/icons/20px/{pt-icon-calculator.svg => calculator.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-calendar.svg => calendar.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-camera.svg => camera.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-caret-down.svg => caret-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-caret-left.svg => caret-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-caret-right.svg => caret-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-caret-up.svg => caret-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-cell-tower.svg => cell-tower.svg} (100%) rename resources/icons/20px/{pt-icon-changes.svg => changes.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-chart.svg => chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-chat.svg => chat.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-chevron-backward.svg => chevron-backward.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-chevron-down.svg => chevron-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-chevron-forward.svg => chevron-forward.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-chevron-left.svg => chevron-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-chevron-right.svg => chevron-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-chevron-up.svg => chevron-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-circle-arrow-down.svg => circle-arrow-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-circle-arrow-left.svg => circle-arrow-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-circle-arrow-right.svg => circle-arrow-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-circle-arrow-up.svg => circle-arrow-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-circle.svg => circle.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-citation.svg => citation.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-clipboard.svg => clipboard.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-cloud-download.svg => cloud-download.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-cloud-upload.svg => cloud-upload.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-cloud.svg => cloud.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-code-block.svg => code-block.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-code.svg => code.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-cog.svg => cog.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-collapse-all.svg => collapse-all.svg} (100%) rename resources/icons/20px/{pt-icon-column-layout.svg => column-layout.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-comment.svg => comment.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-comparison.svg => comparison.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-compass.svg => compass.svg} (100%) rename resources/icons/20px/{pt-icon-compressed.svg => compressed.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-confirm.svg => confirm.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-console.svg => console.svg} (100%) rename resources/icons/20px/{pt-icon-contrast.svg => contrast.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-control.svg => control.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-credit-card.svg => credit-card.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-cross.svg => cross.svg} (100%) rename resources/icons/20px/{pt-icon-curved-range-chart.svg => curved-range-chart.svg} (100%) rename resources/icons/20px/{pt-icon-cut.svg => cut.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-dashboard.svg => dashboard.svg} (100%) rename resources/icons/20px/{pt-icon-database.svg => database.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-delete.svg => delete.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-delta.svg => delta.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-derive-column.svg => derive-column.svg} (100%) rename resources/icons/20px/{pt-icon-desktop.svg => desktop.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-direction-left.svg => direction-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-direction-right.svg => direction-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-disable.svg => disable.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-document-open.svg => document-open.svg} (100%) rename resources/icons/20px/{pt-icon-document-share.svg => document-share.svg} (100%) rename resources/icons/20px/{pt-icon-document.svg => document.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-dollar.svg => dollar.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-dot.svg => dot.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-double-caret-horizontal.svg => double-caret-horizontal.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-double-caret-vertical.svg => double-caret-vertical.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-double-chevron-down.svg => double-chevron-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-double-chevron-left.svg => double-chevron-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-double-chevron-right.svg => double-chevron-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-double-chevron-up.svg => double-chevron-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-doughnut-chart.svg => doughnut-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-download.svg => download.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-drag-handle-horizontal.svg => drag-handle-horizontal.svg} (100%) rename resources/icons/20px/{pt-icon-drag-handle-vertical.svg => drag-handle-vertical.svg} (100%) rename resources/icons/20px/{pt-icon-draw.svg => draw.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-drive-time.svg => drive-time.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-duplicate.svg => duplicate.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-edit.svg => edit.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-eject.svg => eject.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-endorsed.svg => endorsed.svg} (100%) rename resources/icons/20px/{pt-icon-envelope.svg => envelope.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-eraser.svg => eraser.svg} (100%) rename resources/icons/20px/{pt-icon-error.svg => error.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-euro.svg => euro.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-exchange.svg => exchange.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-exclude-row.svg => exclude-row.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-expand-all.svg => expand-all.svg} (100%) rename resources/icons/20px/{pt-icon-export.svg => export.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-eye-off.svg => eye-off.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-eye-on.svg => eye-on.svg} (100%) rename resources/icons/20px/{pt-icon-eye-open.svg => eye-open.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-fast-backward.svg => fast-backward.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-fast-forward.svg => fast-forward.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-feed-subscribed.svg => feed-subscribed.svg} (100%) rename resources/icons/20px/{pt-icon-feed.svg => feed.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-film.svg => film.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-filter-keep.svg => filter-keep.svg} (100%) rename resources/icons/20px/{pt-icon-filter-list.svg => filter-list.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-filter-remove.svg => filter-remove.svg} (100%) rename resources/icons/20px/{pt-icon-filter.svg => filter.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-flag.svg => flag.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-flash.svg => flash.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-floppy-disk.svg => floppy-disk.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-flows.svg => flows.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-folder-close.svg => folder-close.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-folder-open.svg => folder-open.svg} (100%) rename resources/icons/20px/{pt-icon-folder-shared-open.svg => folder-shared-open.svg} (100%) rename resources/icons/20px/{pt-icon-folder-shared.svg => folder-shared.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-follower.svg => follower.svg} (100%) rename resources/icons/20px/{pt-icon-following.svg => following.svg} (100%) rename resources/icons/20px/{pt-icon-font.svg => font.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-fork.svg => fork.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-form.svg => form.svg} (100%) rename resources/icons/20px/{pt-icon-full-circle.svg => full-circle.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-full-stacked-chart.svg => full-stacked-chart.svg} (100%) rename resources/icons/20px/{pt-icon-fullscreen.svg => fullscreen.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-function.svg => function.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-gantt-chart.svg => gantt-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-geolocation.svg => geolocation.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-geosearch.svg => geosearch.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-git-branch.svg => git-branch.svg} (100%) rename resources/icons/20px/{pt-icon-git-commit.svg => git-commit.svg} (100%) rename resources/icons/20px/{pt-icon-git-merge.svg => git-merge.svg} (100%) rename resources/icons/20px/{pt-icon-git-new-branch.svg => git-new-branch.svg} (100%) rename resources/icons/20px/{pt-icon-git-pull.svg => git-pull.svg} (100%) rename resources/icons/20px/{pt-icon-git-push.svg => git-push.svg} (100%) rename resources/icons/20px/{pt-icon-git-repo.svg => git-repo.svg} (100%) rename resources/icons/20px/{pt-icon-glass.svg => glass.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-globe.svg => globe.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-graph-remove.svg => graph-remove.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-graph.svg => graph.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-grid-view.svg => grid-view.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-grid.svg => grid.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-group-objects.svg => group-objects.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-grouped-bar-chart.svg => grouped-bar-chart.svg} (100%) rename resources/icons/20px/{pt-icon-hand-down.svg => hand-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-hand-left.svg => hand-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-hand-right.svg => hand-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-hand-up.svg => hand-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-hand.svg => hand.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-header-one.svg => header-one.svg} (100%) rename resources/icons/20px/{pt-icon-header-two.svg => header-two.svg} (100%) rename resources/icons/20px/{pt-icon-header.svg => header.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-headset.svg => headset.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-heart-broken.svg => heart-broken.svg} (100%) rename resources/icons/20px/{pt-icon-heart.svg => heart.svg} (100%) rename resources/icons/20px/{pt-icon-heat-grid.svg => heat-grid.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-heatmap.svg => heatmap.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-help.svg => help.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-helper-management.svg => helper-management.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-highlight.svg => highlight.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-history.svg => history.svg} (100%) rename resources/icons/20px/{pt-icon-home.svg => home.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-horizontal-bar-chart-asc.svg => horizontal-bar-chart-asc.svg} (100%) rename resources/icons/20px/{pt-icon-horizontal-bar-chart-desc.svg => horizontal-bar-chart-desc.svg} (100%) rename resources/icons/20px/{pt-icon-horizontal-bar-chart.svg => horizontal-bar-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-horizontal-distribution.svg => horizontal-distribution.svg} (100%) rename resources/icons/20px/{pt-icon-id-number.svg => id-number.svg} (100%) rename resources/icons/20px/{pt-icon-image-rotate-left.svg => image-rotate-left.svg} (100%) rename resources/icons/20px/{pt-icon-image-rotate-right.svg => image-rotate-right.svg} (100%) rename resources/icons/20px/{pt-icon-import.svg => import.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-inbox.svg => inbox.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-info-sign.svg => info-sign.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-inner-join.svg => inner-join.svg} (100%) rename resources/icons/20px/{pt-icon-insert.svg => insert.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-intersection.svg => intersection.svg} (100%) rename resources/icons/20px/{pt-icon-ip-address.svg => ip-address.svg} (100%) rename resources/icons/20px/{pt-icon-issue-closed.svg => issue-closed.svg} (100%) rename resources/icons/20px/{pt-icon-issue-new.svg => issue-new.svg} (100%) rename resources/icons/20px/{pt-icon-issue.svg => issue.svg} (100%) rename resources/icons/20px/{pt-icon-italic.svg => italic.svg} (100%) rename resources/icons/20px/{pt-icon-join-table.svg => join-table.svg} (100%) rename resources/icons/20px/{pt-icon-key-backspace.svg => key-backspace.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-key-command.svg => key-command.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-key-control.svg => key-control.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-key-delete.svg => key-delete.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-key-enter.svg => key-enter.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-key-escape.svg => key-escape.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-key-option.svg => key-option.svg} (100%) rename resources/icons/20px/{pt-icon-key-shift.svg => key-shift.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-key-tab.svg => key-tab.svg} (100%) rename resources/icons/20px/{pt-icon-key.svg => key.svg} (100%) rename resources/icons/20px/{pt-icon-known-vehicle.svg => known-vehicle.svg} (100%) rename resources/icons/20px/{pt-icon-label.svg => label.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-layer.svg => layer.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-layers.svg => layers.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-layout-auto.svg => layout-auto.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-layout-balloon.svg => layout-balloon.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-layout-circle.svg => layout-circle.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-layout-grid.svg => layout-grid.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-layout-group-by.svg => layout-group-by.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-layout-hierarchy.svg => layout-hierarchy.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-layout-linear.svg => layout-linear.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-layout-skew-grid.svg => layout-skew-grid.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-layout-sorted-clusters.svg => layout-sorted-clusters.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-layout.svg => layout.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-left-join.svg => left-join.svg} (100%) rename resources/icons/20px/{pt-icon-lightbulb.svg => lightbulb.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-link.svg => link.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-list-detail-view.svg => list-detail-view.svg} (100%) rename resources/icons/20px/{pt-icon-list.svg => list.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-locate.svg => locate.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-lock.svg => lock.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-log-in.svg => log-in.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-log-out.svg => log-out.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-manual.svg => manual.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-manually-entered-data.svg => manually-entered-data.svg} (100%) rename resources/icons/20px/{pt-icon-map-create.svg => map-create.svg} (100%) rename resources/icons/20px/{pt-icon-map-marker.svg => map-marker.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-map.svg => map.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-maximize.svg => maximize.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-media.svg => media.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-menu-closed.svg => menu-closed.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-menu-open.svg => menu-open.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-menu.svg => menu.svg} (100%) rename resources/icons/20px/{pt-icon-merge-columns.svg => merge-columns.svg} (100%) rename resources/icons/20px/{pt-icon-merge-links.svg => merge-links.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-minimize.svg => minimize.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-minus.svg => minus.svg} (100%) rename resources/icons/20px/{pt-icon-mobile-phone.svg => mobile-phone.svg} (100%) rename resources/icons/20px/{pt-icon-mobile-video.svg => mobile-video.svg} (100%) rename resources/icons/20px/{pt-icon-moon.svg => moon.svg} (100%) rename resources/icons/20px/{pt-icon-more.svg => more.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-move.svg => move.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-mugshot.svg => mugshot.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-multi-select.svg => multi-select.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-music.svg => music.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-new-grid-item.svg => new-grid-item.svg} (100%) rename resources/icons/20px/{pt-icon-new-link.svg => new-link.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-new-object.svg => new-object.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-new-person.svg => new-person.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-new-prescription.svg => new-prescription.svg} (100%) rename resources/icons/20px/{pt-icon-new-text-box.svg => new-text-box.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-ninja.svg => ninja.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-notifications.svg => notifications.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-numbered-list.svg => numbered-list.svg} (100%) rename resources/icons/20px/{pt-icon-numerical.svg => numerical.svg} (100%) rename resources/icons/20px/{pt-icon-office.svg => office.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-offline.svg => offline.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-oil-field.svg => oil-field.svg} (100%) rename resources/icons/20px/{pt-icon-one-column.svg => one-column.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-page-layout.svg => page-layout.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-panel-stats.svg => panel-stats.svg} (100%) rename resources/icons/20px/{pt-icon-panel-table.svg => panel-table.svg} (100%) rename resources/icons/20px/{pt-icon-paperclip.svg => paperclip.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-paragraph.svg => paragraph.svg} (100%) rename resources/icons/20px/{pt-icon-path-search.svg => path-search.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-path.svg => path.svg} (100%) rename resources/icons/20px/{pt-icon-pause.svg => pause.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-people.svg => people.svg} (100%) rename resources/icons/20px/{pt-icon-percentage.svg => percentage.svg} (100%) rename resources/icons/20px/{pt-icon-person.svg => person.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-phone.svg => phone.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-pie-chart.svg => pie-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-pin.svg => pin.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-pivot-table.svg => pivot-table.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-pivot.svg => pivot.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-play.svg => play.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-plus.svg => plus.svg} (100%) rename resources/icons/20px/{pt-icon-polygon-filter.svg => polygon-filter.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-power.svg => power.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-predictive-analysis.svg => predictive-analysis.svg} (100%) rename resources/icons/20px/{pt-icon-prescription.svg => prescription.svg} (100%) rename resources/icons/20px/{pt-icon-presentation.svg => presentation.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-print.svg => print.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-projects.svg => projects.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-properties.svg => properties.svg} (100%) rename resources/icons/20px/{pt-icon-property.svg => property.svg} (100%) rename resources/icons/20px/{pt-icon-publish-function.svg => publish-function.svg} (100%) rename resources/icons/20px/{pt-icon-pulse.svg => pulse.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-random.svg => random.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-record.svg => record.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-redo.svg => redo.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-refresh.svg => refresh.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-regression-chart.svg => regression-chart.svg} (100%) rename resources/icons/20px/{pt-icon-remove-column-left.svg => remove-column-left.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-remove-column-right.svg => remove-column-right.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-remove-column.svg => remove-column.svg} (100%) rename resources/icons/20px/{pt-icon-remove-row-bottom.svg => remove-row-bottom.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-remove-row-top.svg => remove-row-top.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-remove.svg => remove.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-repeat.svg => repeat.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-resolve.svg => resolve.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-rig.svg => rig.svg} (100%) rename resources/icons/20px/{pt-icon-right-join.svg => right-join.svg} (100%) rename resources/icons/20px/{pt-icon-ring.svg => ring.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-rotate-document.svg => rotate-document.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-rotate-page.svg => rotate-page.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-satellite.svg => satellite.svg} (100%) rename resources/icons/20px/{pt-icon-saved.svg => saved.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-scatter-plot.svg => scatter-plot.svg} (100%) rename resources/icons/20px/{pt-icon-search-around.svg => search-around.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-search-template.svg => search-template.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-search-text.svg => search-text.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-search.svg => search.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-segmented-control.svg => segmented-control.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-select.svg => select.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-selection.svg => selection.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-send-to-graph.svg => send-to-graph.svg} (100%) rename resources/icons/20px/{pt-icon-send-to-map.svg => send-to-map.svg} (100%) rename resources/icons/20px/{pt-icon-send-to.svg => send-to.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-series-add.svg => series-add.svg} (100%) rename resources/icons/20px/{pt-icon-series-configuration.svg => series-configuration.svg} (100%) rename resources/icons/20px/{pt-icon-series-derived.svg => series-derived.svg} (100%) rename resources/icons/20px/{pt-icon-series-filtered.svg => series-filtered.svg} (100%) rename resources/icons/20px/{pt-icon-series-search.svg => series-search.svg} (100%) rename resources/icons/20px/{pt-icon-settings.svg => settings.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-share.svg => share.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-shop.svg => shop.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-shopping-cart.svg => shopping-cart.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-sim-card.svg => sim-card.svg} (100%) rename resources/icons/20px/{pt-icon-slash.svg => slash.svg} (100%) rename resources/icons/20px/{pt-icon-small-cross.svg => small-cross.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-small-minus.svg => small-minus.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-small-plus.svg => small-plus.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-small-tick.svg => small-tick.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-social-media.svg => social-media.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-sort-alphabetical-desc.svg => sort-alphabetical-desc.svg} (100%) rename resources/icons/20px/{pt-icon-sort-alphabetical.svg => sort-alphabetical.svg} (100%) rename resources/icons/20px/{pt-icon-sort-asc.svg => sort-asc.svg} (100%) rename resources/icons/20px/{pt-icon-sort-desc.svg => sort-desc.svg} (100%) rename resources/icons/20px/{pt-icon-sort-numerical-desc.svg => sort-numerical-desc.svg} (100%) rename resources/icons/20px/{pt-icon-sort-numerical.svg => sort-numerical.svg} (100%) rename resources/icons/20px/{pt-icon-sort.svg => sort.svg} (100%) rename resources/icons/20px/{pt-icon-split-columns.svg => split-columns.svg} (100%) rename resources/icons/20px/{pt-icon-square.svg => square.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-stacked-chart.svg => stacked-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-star-empty.svg => star-empty.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-star.svg => star.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-step-backward.svg => step-backward.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-step-chart.svg => step-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-step-forward.svg => step-forward.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-stop.svg => stop.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-style.svg => style.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-swap-horizontal.svg => swap-horizontal.svg} (100%) rename resources/icons/20px/{pt-icon-swap-vertical.svg => swap-vertical.svg} (100%) rename resources/icons/20px/{pt-icon-symbol-circle.svg => symbol-circle.svg} (100%) rename resources/icons/20px/{pt-icon-symbol-cross.svg => symbol-cross.svg} (100%) rename resources/icons/20px/{pt-icon-symbol-diamond.svg => symbol-diamond.svg} (100%) rename resources/icons/20px/{pt-icon-symbol-square.svg => symbol-square.svg} (100%) rename resources/icons/20px/{pt-icon-symbol-triangle-down.svg => symbol-triangle-down.svg} (100%) rename resources/icons/20px/{pt-icon-symbol-triangle-up.svg => symbol-triangle-up.svg} (100%) rename resources/icons/20px/{pt-icon-tag.svg => tag.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-take-action.svg => take-action.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-taxi.svg => taxi.svg} (100%) rename resources/icons/20px/{pt-icon-text-highlight.svg => text-highlight.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-th-derived.svg => th-derived.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-th-list.svg => th-list.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-th.svg => th.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-thumbs-down.svg => thumbs-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-thumbs-up.svg => thumbs-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-tick-circle.svg => tick-circle.svg} (100%) rename resources/icons/20px/{pt-icon-tick.svg => tick.svg} (100%) rename resources/icons/20px/{pt-icon-time.svg => time.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-timeline-area-chart.svg => timeline-area-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-timeline-bar-chart.svg => timeline-bar-chart.svg} (100%) rename resources/icons/20px/{pt-icon-timeline-events.svg => timeline-events.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-timeline-line-chart.svg => timeline-line-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-tint.svg => tint.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-torch.svg => torch.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-train.svg => train.svg} (100%) rename resources/icons/20px/{pt-icon-translate.svg => translate.svg} (100%) rename resources/icons/20px/{pt-icon-trash.svg => trash.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-trending-down.svg => trending-down.svg} (100%) rename resources/icons/20px/{pt-icon-trending-up.svg => trending-up.svg} (100%) rename resources/icons/20px/{pt-icon-two-columns.svg => two-columns.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-underline.svg => underline.svg} (100%) rename resources/icons/20px/{pt-icon-undo.svg => undo.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-ungroup-objects.svg => ungroup-objects.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-unknown-vehicle.svg => unknown-vehicle.svg} (100%) rename resources/icons/20px/{pt-icon-unlock.svg => unlock.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-unpin.svg => unpin.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-unresolve.svg => unresolve.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-upload.svg => upload.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-user.svg => user.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-variable.svg => variable.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-vertical-bar-chart-asc.svg => vertical-bar-chart-asc.svg} (100%) rename resources/icons/20px/{pt-icon-vertical-bar-chart-desc.svg => vertical-bar-chart-desc.svg} (100%) rename resources/icons/20px/{pt-icon-vertical-distribution.svg => vertical-distribution.svg} (100%) rename resources/icons/20px/{pt-icon-video.svg => video.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-volume-down.svg => volume-down.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-volume-off.svg => volume-off.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-volume-up.svg => volume-up.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-walk.svg => walk.svg} (100%) rename resources/icons/20px/{pt-icon-warning-sign.svg => warning-sign.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-waterfall-chart.svg => waterfall-chart.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-widget-button.svg => widget-button.svg} (100%) rename resources/icons/20px/{pt-icon-widget-footer.svg => widget-footer.svg} (100%) rename resources/icons/20px/{pt-icon-widget-header.svg => widget-header.svg} (100%) rename resources/icons/20px/{pt-icon-widget.svg => widget.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-wrench.svg => wrench.svg} (100%) rename resources/icons/20px/{pt-icon-zoom-in.svg => zoom-in.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-zoom-out.svg => zoom-out.svg} (100%) mode change 100755 => 100644 rename resources/icons/20px/{pt-icon-zoom-to-fit.svg => zoom-to-fit.svg} (100%) mode change 100755 => 100644 diff --git a/packages/node-build-scripts/generate-icons-source b/packages/node-build-scripts/generate-icons-source index d793db8dcc..58ab2516a5 100755 --- a/packages/node-build-scripts/generate-icons-source +++ b/packages/node-build-scripts/generate-icons-source @@ -112,7 +112,7 @@ function exportIconConsts(valueGetter) { async function buildPathsObject(objectName, size) { return Promise.all( ICONS_METADATA.map(async icon => { - const filepath = path.resolve(__dirname, `../../resources/icons/${size}px/${toLongName(icon)}.svg`); + const filepath = path.resolve(__dirname, `../../resources/icons/${size}px/${icon.iconName}.svg`); const svg = fs.readFileSync(filepath, "utf-8"); const pathStrings = await svgo .optimize(svg, { path: filepath }) diff --git a/resources/icons/16px/pt-icon-add-column-left.svg b/resources/icons/16px/add-column-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-add-column-left.svg rename to resources/icons/16px/add-column-left.svg diff --git a/resources/icons/16px/pt-icon-add-column-right.svg b/resources/icons/16px/add-column-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-add-column-right.svg rename to resources/icons/16px/add-column-right.svg diff --git a/resources/icons/16px/pt-icon-add-row-bottom.svg b/resources/icons/16px/add-row-bottom.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-add-row-bottom.svg rename to resources/icons/16px/add-row-bottom.svg diff --git a/resources/icons/16px/pt-icon-add-row-top.svg b/resources/icons/16px/add-row-top.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-add-row-top.svg rename to resources/icons/16px/add-row-top.svg diff --git a/resources/icons/16px/pt-icon-add-to-artifact.svg b/resources/icons/16px/add-to-artifact.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-add-to-artifact.svg rename to resources/icons/16px/add-to-artifact.svg diff --git a/resources/icons/16px/pt-icon-add-to-folder.svg b/resources/icons/16px/add-to-folder.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-add-to-folder.svg rename to resources/icons/16px/add-to-folder.svg diff --git a/resources/icons/16px/pt-icon-add.svg b/resources/icons/16px/add.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-add.svg rename to resources/icons/16px/add.svg diff --git a/resources/icons/16px/pt-icon-airplane.svg b/resources/icons/16px/airplane.svg similarity index 100% rename from resources/icons/16px/pt-icon-airplane.svg rename to resources/icons/16px/airplane.svg diff --git a/resources/icons/16px/pt-icon-align-center.svg b/resources/icons/16px/align-center.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-align-center.svg rename to resources/icons/16px/align-center.svg diff --git a/resources/icons/16px/pt-icon-align-justify.svg b/resources/icons/16px/align-justify.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-align-justify.svg rename to resources/icons/16px/align-justify.svg diff --git a/resources/icons/16px/pt-icon-align-left.svg b/resources/icons/16px/align-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-align-left.svg rename to resources/icons/16px/align-left.svg diff --git a/resources/icons/16px/pt-icon-align-right.svg b/resources/icons/16px/align-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-align-right.svg rename to resources/icons/16px/align-right.svg diff --git a/resources/icons/16px/pt-icon-alignment-bottom.svg b/resources/icons/16px/alignment-bottom.svg similarity index 100% rename from resources/icons/16px/pt-icon-alignment-bottom.svg rename to resources/icons/16px/alignment-bottom.svg diff --git a/resources/icons/16px/pt-icon-alignment-horizontal-center.svg b/resources/icons/16px/alignment-horizontal-center.svg similarity index 100% rename from resources/icons/16px/pt-icon-alignment-horizontal-center.svg rename to resources/icons/16px/alignment-horizontal-center.svg diff --git a/resources/icons/16px/pt-icon-alignment-left.svg b/resources/icons/16px/alignment-left.svg similarity index 100% rename from resources/icons/16px/pt-icon-alignment-left.svg rename to resources/icons/16px/alignment-left.svg diff --git a/resources/icons/16px/pt-icon-alignment-right.svg b/resources/icons/16px/alignment-right.svg similarity index 100% rename from resources/icons/16px/pt-icon-alignment-right.svg rename to resources/icons/16px/alignment-right.svg diff --git a/resources/icons/16px/pt-icon-alignment-top.svg b/resources/icons/16px/alignment-top.svg similarity index 100% rename from resources/icons/16px/pt-icon-alignment-top.svg rename to resources/icons/16px/alignment-top.svg diff --git a/resources/icons/16px/pt-icon-alignment-vertical-center.svg b/resources/icons/16px/alignment-vertical-center.svg similarity index 100% rename from resources/icons/16px/pt-icon-alignment-vertical-center.svg rename to resources/icons/16px/alignment-vertical-center.svg diff --git a/resources/icons/16px/pt-icon-annotation.svg b/resources/icons/16px/annotation.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-annotation.svg rename to resources/icons/16px/annotation.svg diff --git a/resources/icons/16px/pt-icon-application.svg b/resources/icons/16px/application.svg similarity index 100% rename from resources/icons/16px/pt-icon-application.svg rename to resources/icons/16px/application.svg diff --git a/resources/icons/16px/pt-icon-applications.svg b/resources/icons/16px/applications.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-applications.svg rename to resources/icons/16px/applications.svg diff --git a/resources/icons/16px/pt-icon-arrow-bottom-left.svg b/resources/icons/16px/arrow-bottom-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-arrow-bottom-left.svg rename to resources/icons/16px/arrow-bottom-left.svg diff --git a/resources/icons/16px/pt-icon-arrow-bottom-right.svg b/resources/icons/16px/arrow-bottom-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-arrow-bottom-right.svg rename to resources/icons/16px/arrow-bottom-right.svg diff --git a/resources/icons/16px/pt-icon-arrow-down.svg b/resources/icons/16px/arrow-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-arrow-down.svg rename to resources/icons/16px/arrow-down.svg diff --git a/resources/icons/16px/pt-icon-arrow-left.svg b/resources/icons/16px/arrow-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-arrow-left.svg rename to resources/icons/16px/arrow-left.svg diff --git a/resources/icons/16px/pt-icon-arrow-right.svg b/resources/icons/16px/arrow-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-arrow-right.svg rename to resources/icons/16px/arrow-right.svg diff --git a/resources/icons/16px/pt-icon-arrow-top-left.svg b/resources/icons/16px/arrow-top-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-arrow-top-left.svg rename to resources/icons/16px/arrow-top-left.svg diff --git a/resources/icons/16px/pt-icon-arrow-top-right.svg b/resources/icons/16px/arrow-top-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-arrow-top-right.svg rename to resources/icons/16px/arrow-top-right.svg diff --git a/resources/icons/16px/pt-icon-arrow-up.svg b/resources/icons/16px/arrow-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-arrow-up.svg rename to resources/icons/16px/arrow-up.svg diff --git a/resources/icons/16px/pt-icon-arrows-horizontal.svg b/resources/icons/16px/arrows-horizontal.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-arrows-horizontal.svg rename to resources/icons/16px/arrows-horizontal.svg diff --git a/resources/icons/16px/pt-icon-arrows-vertical.svg b/resources/icons/16px/arrows-vertical.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-arrows-vertical.svg rename to resources/icons/16px/arrows-vertical.svg diff --git a/resources/icons/16px/pt-icon-asterisk.svg b/resources/icons/16px/asterisk.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-asterisk.svg rename to resources/icons/16px/asterisk.svg diff --git a/resources/icons/16px/pt-icon-automatic-updates.svg b/resources/icons/16px/automatic-updates.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-automatic-updates.svg rename to resources/icons/16px/automatic-updates.svg diff --git a/resources/icons/16px/pt-icon-badge.svg b/resources/icons/16px/badge.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-badge.svg rename to resources/icons/16px/badge.svg diff --git a/resources/icons/16px/pt-icon-ban-circle.svg b/resources/icons/16px/ban-circle.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-ban-circle.svg rename to resources/icons/16px/ban-circle.svg diff --git a/resources/icons/16px/pt-icon-bank-account.svg b/resources/icons/16px/bank-account.svg similarity index 100% rename from resources/icons/16px/pt-icon-bank-account.svg rename to resources/icons/16px/bank-account.svg diff --git a/resources/icons/16px/pt-icon-barcode.svg b/resources/icons/16px/barcode.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-barcode.svg rename to resources/icons/16px/barcode.svg diff --git a/resources/icons/16px/pt-icon-blank.svg b/resources/icons/16px/blank.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-blank.svg rename to resources/icons/16px/blank.svg diff --git a/resources/icons/16px/pt-icon-blocked-person.svg b/resources/icons/16px/blocked-person.svg similarity index 100% rename from resources/icons/16px/pt-icon-blocked-person.svg rename to resources/icons/16px/blocked-person.svg diff --git a/resources/icons/16px/pt-icon-bold.svg b/resources/icons/16px/bold.svg similarity index 100% rename from resources/icons/16px/pt-icon-bold.svg rename to resources/icons/16px/bold.svg diff --git a/resources/icons/16px/pt-icon-book.svg b/resources/icons/16px/book.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-book.svg rename to resources/icons/16px/book.svg diff --git a/resources/icons/16px/pt-icon-bookmark.svg b/resources/icons/16px/bookmark.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-bookmark.svg rename to resources/icons/16px/bookmark.svg diff --git a/resources/icons/16px/pt-icon-box.svg b/resources/icons/16px/box.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-box.svg rename to resources/icons/16px/box.svg diff --git a/resources/icons/16px/pt-icon-briefcase.svg b/resources/icons/16px/briefcase.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-briefcase.svg rename to resources/icons/16px/briefcase.svg diff --git a/resources/icons/16px/pt-icon-build.svg b/resources/icons/16px/build.svg similarity index 100% rename from resources/icons/16px/pt-icon-build.svg rename to resources/icons/16px/build.svg diff --git a/resources/icons/16px/pt-icon-calculator.svg b/resources/icons/16px/calculator.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-calculator.svg rename to resources/icons/16px/calculator.svg diff --git a/resources/icons/16px/pt-icon-calendar.svg b/resources/icons/16px/calendar.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-calendar.svg rename to resources/icons/16px/calendar.svg diff --git a/resources/icons/16px/pt-icon-camera.svg b/resources/icons/16px/camera.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-camera.svg rename to resources/icons/16px/camera.svg diff --git a/resources/icons/16px/pt-icon-caret-down.svg b/resources/icons/16px/caret-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-caret-down.svg rename to resources/icons/16px/caret-down.svg diff --git a/resources/icons/16px/pt-icon-caret-left.svg b/resources/icons/16px/caret-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-caret-left.svg rename to resources/icons/16px/caret-left.svg diff --git a/resources/icons/16px/pt-icon-caret-right.svg b/resources/icons/16px/caret-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-caret-right.svg rename to resources/icons/16px/caret-right.svg diff --git a/resources/icons/16px/pt-icon-caret-up.svg b/resources/icons/16px/caret-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-caret-up.svg rename to resources/icons/16px/caret-up.svg diff --git a/resources/icons/16px/pt-icon-cell-tower.svg b/resources/icons/16px/cell-tower.svg similarity index 100% rename from resources/icons/16px/pt-icon-cell-tower.svg rename to resources/icons/16px/cell-tower.svg diff --git a/resources/icons/16px/pt-icon-changes.svg b/resources/icons/16px/changes.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-changes.svg rename to resources/icons/16px/changes.svg diff --git a/resources/icons/16px/pt-icon-chart.svg b/resources/icons/16px/chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-chart.svg rename to resources/icons/16px/chart.svg diff --git a/resources/icons/16px/pt-icon-chat.svg b/resources/icons/16px/chat.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-chat.svg rename to resources/icons/16px/chat.svg diff --git a/resources/icons/16px/pt-icon-chevron-backward.svg b/resources/icons/16px/chevron-backward.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-chevron-backward.svg rename to resources/icons/16px/chevron-backward.svg diff --git a/resources/icons/16px/pt-icon-chevron-down.svg b/resources/icons/16px/chevron-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-chevron-down.svg rename to resources/icons/16px/chevron-down.svg diff --git a/resources/icons/16px/pt-icon-chevron-forward.svg b/resources/icons/16px/chevron-forward.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-chevron-forward.svg rename to resources/icons/16px/chevron-forward.svg diff --git a/resources/icons/16px/pt-icon-chevron-left.svg b/resources/icons/16px/chevron-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-chevron-left.svg rename to resources/icons/16px/chevron-left.svg diff --git a/resources/icons/16px/pt-icon-chevron-right.svg b/resources/icons/16px/chevron-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-chevron-right.svg rename to resources/icons/16px/chevron-right.svg diff --git a/resources/icons/16px/pt-icon-chevron-up.svg b/resources/icons/16px/chevron-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-chevron-up.svg rename to resources/icons/16px/chevron-up.svg diff --git a/resources/icons/16px/pt-icon-circle-arrow-down.svg b/resources/icons/16px/circle-arrow-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-circle-arrow-down.svg rename to resources/icons/16px/circle-arrow-down.svg diff --git a/resources/icons/16px/pt-icon-circle-arrow-left.svg b/resources/icons/16px/circle-arrow-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-circle-arrow-left.svg rename to resources/icons/16px/circle-arrow-left.svg diff --git a/resources/icons/16px/pt-icon-circle-arrow-right.svg b/resources/icons/16px/circle-arrow-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-circle-arrow-right.svg rename to resources/icons/16px/circle-arrow-right.svg diff --git a/resources/icons/16px/pt-icon-circle-arrow-up.svg b/resources/icons/16px/circle-arrow-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-circle-arrow-up.svg rename to resources/icons/16px/circle-arrow-up.svg diff --git a/resources/icons/16px/pt-icon-circle.svg b/resources/icons/16px/circle.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-circle.svg rename to resources/icons/16px/circle.svg diff --git a/resources/icons/16px/pt-icon-citation.svg b/resources/icons/16px/citation.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-citation.svg rename to resources/icons/16px/citation.svg diff --git a/resources/icons/16px/pt-icon-clipboard.svg b/resources/icons/16px/clipboard.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-clipboard.svg rename to resources/icons/16px/clipboard.svg diff --git a/resources/icons/16px/pt-icon-cloud-download.svg b/resources/icons/16px/cloud-download.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-cloud-download.svg rename to resources/icons/16px/cloud-download.svg diff --git a/resources/icons/16px/pt-icon-cloud-upload.svg b/resources/icons/16px/cloud-upload.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-cloud-upload.svg rename to resources/icons/16px/cloud-upload.svg diff --git a/resources/icons/16px/pt-icon-cloud.svg b/resources/icons/16px/cloud.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-cloud.svg rename to resources/icons/16px/cloud.svg diff --git a/resources/icons/16px/pt-icon-code-block.svg b/resources/icons/16px/code-block.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-code-block.svg rename to resources/icons/16px/code-block.svg diff --git a/resources/icons/16px/pt-icon-code.svg b/resources/icons/16px/code.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-code.svg rename to resources/icons/16px/code.svg diff --git a/resources/icons/16px/pt-icon-cog.svg b/resources/icons/16px/cog.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-cog.svg rename to resources/icons/16px/cog.svg diff --git a/resources/icons/16px/pt-icon-collapse-all.svg b/resources/icons/16px/collapse-all.svg similarity index 100% rename from resources/icons/16px/pt-icon-collapse-all.svg rename to resources/icons/16px/collapse-all.svg diff --git a/resources/icons/16px/pt-icon-column-layout.svg b/resources/icons/16px/column-layout.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-column-layout.svg rename to resources/icons/16px/column-layout.svg diff --git a/resources/icons/16px/pt-icon-comment.svg b/resources/icons/16px/comment.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-comment.svg rename to resources/icons/16px/comment.svg diff --git a/resources/icons/16px/pt-icon-comparison.svg b/resources/icons/16px/comparison.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-comparison.svg rename to resources/icons/16px/comparison.svg diff --git a/resources/icons/16px/pt-icon-compass.svg b/resources/icons/16px/compass.svg similarity index 100% rename from resources/icons/16px/pt-icon-compass.svg rename to resources/icons/16px/compass.svg diff --git a/resources/icons/16px/pt-icon-compressed.svg b/resources/icons/16px/compressed.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-compressed.svg rename to resources/icons/16px/compressed.svg diff --git a/resources/icons/16px/pt-icon-confirm.svg b/resources/icons/16px/confirm.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-confirm.svg rename to resources/icons/16px/confirm.svg diff --git a/resources/icons/16px/pt-icon-console.svg b/resources/icons/16px/console.svg similarity index 100% rename from resources/icons/16px/pt-icon-console.svg rename to resources/icons/16px/console.svg diff --git a/resources/icons/16px/pt-icon-contrast.svg b/resources/icons/16px/contrast.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-contrast.svg rename to resources/icons/16px/contrast.svg diff --git a/resources/icons/16px/pt-icon-control.svg b/resources/icons/16px/control.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-control.svg rename to resources/icons/16px/control.svg diff --git a/resources/icons/16px/pt-icon-credit-card.svg b/resources/icons/16px/credit-card.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-credit-card.svg rename to resources/icons/16px/credit-card.svg diff --git a/resources/icons/16px/pt-icon-cross.svg b/resources/icons/16px/cross.svg similarity index 100% rename from resources/icons/16px/pt-icon-cross.svg rename to resources/icons/16px/cross.svg diff --git a/resources/icons/16px/pt-icon-curved-range-chart.svg b/resources/icons/16px/curved-range-chart.svg similarity index 100% rename from resources/icons/16px/pt-icon-curved-range-chart.svg rename to resources/icons/16px/curved-range-chart.svg diff --git a/resources/icons/16px/pt-icon-cut.svg b/resources/icons/16px/cut.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-cut.svg rename to resources/icons/16px/cut.svg diff --git a/resources/icons/16px/pt-icon-dashboard.svg b/resources/icons/16px/dashboard.svg similarity index 100% rename from resources/icons/16px/pt-icon-dashboard.svg rename to resources/icons/16px/dashboard.svg diff --git a/resources/icons/16px/pt-icon-database.svg b/resources/icons/16px/database.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-database.svg rename to resources/icons/16px/database.svg diff --git a/resources/icons/16px/pt-icon-delete.svg b/resources/icons/16px/delete.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-delete.svg rename to resources/icons/16px/delete.svg diff --git a/resources/icons/16px/pt-icon-delta.svg b/resources/icons/16px/delta.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-delta.svg rename to resources/icons/16px/delta.svg diff --git a/resources/icons/16px/pt-icon-derive-column.svg b/resources/icons/16px/derive-column.svg similarity index 100% rename from resources/icons/16px/pt-icon-derive-column.svg rename to resources/icons/16px/derive-column.svg diff --git a/resources/icons/16px/pt-icon-desktop.svg b/resources/icons/16px/desktop.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-desktop.svg rename to resources/icons/16px/desktop.svg diff --git a/resources/icons/16px/pt-icon-direction-left.svg b/resources/icons/16px/direction-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-direction-left.svg rename to resources/icons/16px/direction-left.svg diff --git a/resources/icons/16px/pt-icon-direction-right.svg b/resources/icons/16px/direction-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-direction-right.svg rename to resources/icons/16px/direction-right.svg diff --git a/resources/icons/16px/pt-icon-disable.svg b/resources/icons/16px/disable.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-disable.svg rename to resources/icons/16px/disable.svg diff --git a/resources/icons/16px/pt-icon-document-open.svg b/resources/icons/16px/document-open.svg similarity index 100% rename from resources/icons/16px/pt-icon-document-open.svg rename to resources/icons/16px/document-open.svg diff --git a/resources/icons/16px/pt-icon-document-share.svg b/resources/icons/16px/document-share.svg similarity index 100% rename from resources/icons/16px/pt-icon-document-share.svg rename to resources/icons/16px/document-share.svg diff --git a/resources/icons/16px/pt-icon-document.svg b/resources/icons/16px/document.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-document.svg rename to resources/icons/16px/document.svg diff --git a/resources/icons/16px/pt-icon-dollar.svg b/resources/icons/16px/dollar.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-dollar.svg rename to resources/icons/16px/dollar.svg diff --git a/resources/icons/16px/pt-icon-dot.svg b/resources/icons/16px/dot.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-dot.svg rename to resources/icons/16px/dot.svg diff --git a/resources/icons/16px/pt-icon-double-caret-horizontal.svg b/resources/icons/16px/double-caret-horizontal.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-double-caret-horizontal.svg rename to resources/icons/16px/double-caret-horizontal.svg diff --git a/resources/icons/16px/pt-icon-double-caret-vertical.svg b/resources/icons/16px/double-caret-vertical.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-double-caret-vertical.svg rename to resources/icons/16px/double-caret-vertical.svg diff --git a/resources/icons/16px/pt-icon-double-chevron-down.svg b/resources/icons/16px/double-chevron-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-double-chevron-down.svg rename to resources/icons/16px/double-chevron-down.svg diff --git a/resources/icons/16px/pt-icon-double-chevron-left.svg b/resources/icons/16px/double-chevron-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-double-chevron-left.svg rename to resources/icons/16px/double-chevron-left.svg diff --git a/resources/icons/16px/pt-icon-double-chevron-right.svg b/resources/icons/16px/double-chevron-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-double-chevron-right.svg rename to resources/icons/16px/double-chevron-right.svg diff --git a/resources/icons/16px/pt-icon-double-chevron-up.svg b/resources/icons/16px/double-chevron-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-double-chevron-up.svg rename to resources/icons/16px/double-chevron-up.svg diff --git a/resources/icons/16px/pt-icon-doughnut-chart.svg b/resources/icons/16px/doughnut-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-doughnut-chart.svg rename to resources/icons/16px/doughnut-chart.svg diff --git a/resources/icons/16px/pt-icon-download.svg b/resources/icons/16px/download.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-download.svg rename to resources/icons/16px/download.svg diff --git a/resources/icons/16px/pt-icon-drag-handle-horizontal.svg b/resources/icons/16px/drag-handle-horizontal.svg similarity index 100% rename from resources/icons/16px/pt-icon-drag-handle-horizontal.svg rename to resources/icons/16px/drag-handle-horizontal.svg diff --git a/resources/icons/16px/pt-icon-drag-handle-vertical.svg b/resources/icons/16px/drag-handle-vertical.svg similarity index 100% rename from resources/icons/16px/pt-icon-drag-handle-vertical.svg rename to resources/icons/16px/drag-handle-vertical.svg diff --git a/resources/icons/16px/pt-icon-draw.svg b/resources/icons/16px/draw.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-draw.svg rename to resources/icons/16px/draw.svg diff --git a/resources/icons/16px/pt-icon-drive-time.svg b/resources/icons/16px/drive-time.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-drive-time.svg rename to resources/icons/16px/drive-time.svg diff --git a/resources/icons/16px/pt-icon-duplicate.svg b/resources/icons/16px/duplicate.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-duplicate.svg rename to resources/icons/16px/duplicate.svg diff --git a/resources/icons/16px/pt-icon-edit.svg b/resources/icons/16px/edit.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-edit.svg rename to resources/icons/16px/edit.svg diff --git a/resources/icons/16px/pt-icon-eject.svg b/resources/icons/16px/eject.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-eject.svg rename to resources/icons/16px/eject.svg diff --git a/resources/icons/16px/pt-icon-endorsed.svg b/resources/icons/16px/endorsed.svg similarity index 100% rename from resources/icons/16px/pt-icon-endorsed.svg rename to resources/icons/16px/endorsed.svg diff --git a/resources/icons/16px/pt-icon-envelope.svg b/resources/icons/16px/envelope.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-envelope.svg rename to resources/icons/16px/envelope.svg diff --git a/resources/icons/16px/pt-icon-eraser.svg b/resources/icons/16px/eraser.svg similarity index 100% rename from resources/icons/16px/pt-icon-eraser.svg rename to resources/icons/16px/eraser.svg diff --git a/resources/icons/16px/pt-icon-error.svg b/resources/icons/16px/error.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-error.svg rename to resources/icons/16px/error.svg diff --git a/resources/icons/16px/pt-icon-euro.svg b/resources/icons/16px/euro.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-euro.svg rename to resources/icons/16px/euro.svg diff --git a/resources/icons/16px/pt-icon-exchange.svg b/resources/icons/16px/exchange.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-exchange.svg rename to resources/icons/16px/exchange.svg diff --git a/resources/icons/16px/pt-icon-exclude-row.svg b/resources/icons/16px/exclude-row.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-exclude-row.svg rename to resources/icons/16px/exclude-row.svg diff --git a/resources/icons/16px/pt-icon-expand-all.svg b/resources/icons/16px/expand-all.svg similarity index 100% rename from resources/icons/16px/pt-icon-expand-all.svg rename to resources/icons/16px/expand-all.svg diff --git a/resources/icons/16px/pt-icon-export.svg b/resources/icons/16px/export.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-export.svg rename to resources/icons/16px/export.svg diff --git a/resources/icons/16px/pt-icon-eye-off.svg b/resources/icons/16px/eye-off.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-eye-off.svg rename to resources/icons/16px/eye-off.svg diff --git a/resources/icons/16px/pt-icon-eye-on.svg b/resources/icons/16px/eye-on.svg similarity index 100% rename from resources/icons/16px/pt-icon-eye-on.svg rename to resources/icons/16px/eye-on.svg diff --git a/resources/icons/16px/pt-icon-eye-open.svg b/resources/icons/16px/eye-open.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-eye-open.svg rename to resources/icons/16px/eye-open.svg diff --git a/resources/icons/16px/pt-icon-fast-backward.svg b/resources/icons/16px/fast-backward.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-fast-backward.svg rename to resources/icons/16px/fast-backward.svg diff --git a/resources/icons/16px/pt-icon-fast-forward.svg b/resources/icons/16px/fast-forward.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-fast-forward.svg rename to resources/icons/16px/fast-forward.svg diff --git a/resources/icons/16px/pt-icon-feed-subscribed.svg b/resources/icons/16px/feed-subscribed.svg similarity index 100% rename from resources/icons/16px/pt-icon-feed-subscribed.svg rename to resources/icons/16px/feed-subscribed.svg diff --git a/resources/icons/16px/pt-icon-feed.svg b/resources/icons/16px/feed.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-feed.svg rename to resources/icons/16px/feed.svg diff --git a/resources/icons/16px/pt-icon-film.svg b/resources/icons/16px/film.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-film.svg rename to resources/icons/16px/film.svg diff --git a/resources/icons/16px/pt-icon-filter-keep.svg b/resources/icons/16px/filter-keep.svg similarity index 100% rename from resources/icons/16px/pt-icon-filter-keep.svg rename to resources/icons/16px/filter-keep.svg diff --git a/resources/icons/16px/pt-icon-filter-list.svg b/resources/icons/16px/filter-list.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-filter-list.svg rename to resources/icons/16px/filter-list.svg diff --git a/resources/icons/16px/pt-icon-filter-remove.svg b/resources/icons/16px/filter-remove.svg similarity index 100% rename from resources/icons/16px/pt-icon-filter-remove.svg rename to resources/icons/16px/filter-remove.svg diff --git a/resources/icons/16px/pt-icon-filter.svg b/resources/icons/16px/filter.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-filter.svg rename to resources/icons/16px/filter.svg diff --git a/resources/icons/16px/pt-icon-flag.svg b/resources/icons/16px/flag.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-flag.svg rename to resources/icons/16px/flag.svg diff --git a/resources/icons/16px/pt-icon-flash.svg b/resources/icons/16px/flash.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-flash.svg rename to resources/icons/16px/flash.svg diff --git a/resources/icons/16px/pt-icon-floppy-disk.svg b/resources/icons/16px/floppy-disk.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-floppy-disk.svg rename to resources/icons/16px/floppy-disk.svg diff --git a/resources/icons/16px/pt-icon-flows.svg b/resources/icons/16px/flows.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-flows.svg rename to resources/icons/16px/flows.svg diff --git a/resources/icons/16px/pt-icon-folder-close.svg b/resources/icons/16px/folder-close.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-folder-close.svg rename to resources/icons/16px/folder-close.svg diff --git a/resources/icons/16px/pt-icon-folder-open.svg b/resources/icons/16px/folder-open.svg similarity index 100% rename from resources/icons/16px/pt-icon-folder-open.svg rename to resources/icons/16px/folder-open.svg diff --git a/resources/icons/16px/pt-icon-folder-shared-open.svg b/resources/icons/16px/folder-shared-open.svg similarity index 100% rename from resources/icons/16px/pt-icon-folder-shared-open.svg rename to resources/icons/16px/folder-shared-open.svg diff --git a/resources/icons/16px/pt-icon-folder-shared.svg b/resources/icons/16px/folder-shared.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-folder-shared.svg rename to resources/icons/16px/folder-shared.svg diff --git a/resources/icons/16px/pt-icon-follower.svg b/resources/icons/16px/follower.svg similarity index 100% rename from resources/icons/16px/pt-icon-follower.svg rename to resources/icons/16px/follower.svg diff --git a/resources/icons/16px/pt-icon-following.svg b/resources/icons/16px/following.svg similarity index 100% rename from resources/icons/16px/pt-icon-following.svg rename to resources/icons/16px/following.svg diff --git a/resources/icons/16px/pt-icon-font.svg b/resources/icons/16px/font.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-font.svg rename to resources/icons/16px/font.svg diff --git a/resources/icons/16px/pt-icon-fork.svg b/resources/icons/16px/fork.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-fork.svg rename to resources/icons/16px/fork.svg diff --git a/resources/icons/16px/pt-icon-form.svg b/resources/icons/16px/form.svg similarity index 100% rename from resources/icons/16px/pt-icon-form.svg rename to resources/icons/16px/form.svg diff --git a/resources/icons/16px/pt-icon-full-circle.svg b/resources/icons/16px/full-circle.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-full-circle.svg rename to resources/icons/16px/full-circle.svg diff --git a/resources/icons/16px/pt-icon-full-stacked-chart.svg b/resources/icons/16px/full-stacked-chart.svg similarity index 100% rename from resources/icons/16px/pt-icon-full-stacked-chart.svg rename to resources/icons/16px/full-stacked-chart.svg diff --git a/resources/icons/16px/pt-icon-fullscreen.svg b/resources/icons/16px/fullscreen.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-fullscreen.svg rename to resources/icons/16px/fullscreen.svg diff --git a/resources/icons/16px/pt-icon-function.svg b/resources/icons/16px/function.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-function.svg rename to resources/icons/16px/function.svg diff --git a/resources/icons/16px/pt-icon-gantt-chart.svg b/resources/icons/16px/gantt-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-gantt-chart.svg rename to resources/icons/16px/gantt-chart.svg diff --git a/resources/icons/16px/pt-icon-geolocation.svg b/resources/icons/16px/geolocation.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-geolocation.svg rename to resources/icons/16px/geolocation.svg diff --git a/resources/icons/16px/pt-icon-geosearch.svg b/resources/icons/16px/geosearch.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-geosearch.svg rename to resources/icons/16px/geosearch.svg diff --git a/resources/icons/16px/pt-icon-git-branch.svg b/resources/icons/16px/git-branch.svg similarity index 100% rename from resources/icons/16px/pt-icon-git-branch.svg rename to resources/icons/16px/git-branch.svg diff --git a/resources/icons/16px/pt-icon-git-commit.svg b/resources/icons/16px/git-commit.svg similarity index 100% rename from resources/icons/16px/pt-icon-git-commit.svg rename to resources/icons/16px/git-commit.svg diff --git a/resources/icons/16px/pt-icon-git-merge.svg b/resources/icons/16px/git-merge.svg similarity index 100% rename from resources/icons/16px/pt-icon-git-merge.svg rename to resources/icons/16px/git-merge.svg diff --git a/resources/icons/16px/pt-icon-git-new-branch.svg b/resources/icons/16px/git-new-branch.svg similarity index 100% rename from resources/icons/16px/pt-icon-git-new-branch.svg rename to resources/icons/16px/git-new-branch.svg diff --git a/resources/icons/16px/pt-icon-git-pull.svg b/resources/icons/16px/git-pull.svg similarity index 100% rename from resources/icons/16px/pt-icon-git-pull.svg rename to resources/icons/16px/git-pull.svg diff --git a/resources/icons/16px/pt-icon-git-push.svg b/resources/icons/16px/git-push.svg similarity index 100% rename from resources/icons/16px/pt-icon-git-push.svg rename to resources/icons/16px/git-push.svg diff --git a/resources/icons/16px/pt-icon-git-repo.svg b/resources/icons/16px/git-repo.svg similarity index 100% rename from resources/icons/16px/pt-icon-git-repo.svg rename to resources/icons/16px/git-repo.svg diff --git a/resources/icons/16px/pt-icon-glass.svg b/resources/icons/16px/glass.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-glass.svg rename to resources/icons/16px/glass.svg diff --git a/resources/icons/16px/pt-icon-globe.svg b/resources/icons/16px/globe.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-globe.svg rename to resources/icons/16px/globe.svg diff --git a/resources/icons/16px/pt-icon-graph-remove.svg b/resources/icons/16px/graph-remove.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-graph-remove.svg rename to resources/icons/16px/graph-remove.svg diff --git a/resources/icons/16px/pt-icon-graph.svg b/resources/icons/16px/graph.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-graph.svg rename to resources/icons/16px/graph.svg diff --git a/resources/icons/16px/pt-icon-grid-view.svg b/resources/icons/16px/grid-view.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-grid-view.svg rename to resources/icons/16px/grid-view.svg diff --git a/resources/icons/16px/pt-icon-grid.svg b/resources/icons/16px/grid.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-grid.svg rename to resources/icons/16px/grid.svg diff --git a/resources/icons/16px/pt-icon-group-objects.svg b/resources/icons/16px/group-objects.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-group-objects.svg rename to resources/icons/16px/group-objects.svg diff --git a/resources/icons/16px/pt-icon-grouped-bar-chart.svg b/resources/icons/16px/grouped-bar-chart.svg similarity index 100% rename from resources/icons/16px/pt-icon-grouped-bar-chart.svg rename to resources/icons/16px/grouped-bar-chart.svg diff --git a/resources/icons/16px/pt-icon-hand-down.svg b/resources/icons/16px/hand-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-hand-down.svg rename to resources/icons/16px/hand-down.svg diff --git a/resources/icons/16px/pt-icon-hand-left.svg b/resources/icons/16px/hand-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-hand-left.svg rename to resources/icons/16px/hand-left.svg diff --git a/resources/icons/16px/pt-icon-hand-right.svg b/resources/icons/16px/hand-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-hand-right.svg rename to resources/icons/16px/hand-right.svg diff --git a/resources/icons/16px/pt-icon-hand-up.svg b/resources/icons/16px/hand-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-hand-up.svg rename to resources/icons/16px/hand-up.svg diff --git a/resources/icons/16px/pt-icon-hand.svg b/resources/icons/16px/hand.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-hand.svg rename to resources/icons/16px/hand.svg diff --git a/resources/icons/16px/pt-icon-header-one.svg b/resources/icons/16px/header-one.svg similarity index 100% rename from resources/icons/16px/pt-icon-header-one.svg rename to resources/icons/16px/header-one.svg diff --git a/resources/icons/16px/pt-icon-header-two.svg b/resources/icons/16px/header-two.svg similarity index 100% rename from resources/icons/16px/pt-icon-header-two.svg rename to resources/icons/16px/header-two.svg diff --git a/resources/icons/16px/pt-icon-header.svg b/resources/icons/16px/header.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-header.svg rename to resources/icons/16px/header.svg diff --git a/resources/icons/16px/pt-icon-headset.svg b/resources/icons/16px/headset.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-headset.svg rename to resources/icons/16px/headset.svg diff --git a/resources/icons/16px/pt-icon-heart-broken.svg b/resources/icons/16px/heart-broken.svg similarity index 100% rename from resources/icons/16px/pt-icon-heart-broken.svg rename to resources/icons/16px/heart-broken.svg diff --git a/resources/icons/16px/pt-icon-heart.svg b/resources/icons/16px/heart.svg similarity index 100% rename from resources/icons/16px/pt-icon-heart.svg rename to resources/icons/16px/heart.svg diff --git a/resources/icons/16px/pt-icon-heat-grid.svg b/resources/icons/16px/heat-grid.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-heat-grid.svg rename to resources/icons/16px/heat-grid.svg diff --git a/resources/icons/16px/pt-icon-heatmap.svg b/resources/icons/16px/heatmap.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-heatmap.svg rename to resources/icons/16px/heatmap.svg diff --git a/resources/icons/16px/pt-icon-help.svg b/resources/icons/16px/help.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-help.svg rename to resources/icons/16px/help.svg diff --git a/resources/icons/16px/pt-icon-helper-management.svg b/resources/icons/16px/helper-management.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-helper-management.svg rename to resources/icons/16px/helper-management.svg diff --git a/resources/icons/16px/pt-icon-highlight.svg b/resources/icons/16px/highlight.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-highlight.svg rename to resources/icons/16px/highlight.svg diff --git a/resources/icons/16px/pt-icon-history.svg b/resources/icons/16px/history.svg similarity index 100% rename from resources/icons/16px/pt-icon-history.svg rename to resources/icons/16px/history.svg diff --git a/resources/icons/16px/pt-icon-home.svg b/resources/icons/16px/home.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-home.svg rename to resources/icons/16px/home.svg diff --git a/resources/icons/16px/pt-icon-horizontal-bar-chart-asc.svg b/resources/icons/16px/horizontal-bar-chart-asc.svg similarity index 100% rename from resources/icons/16px/pt-icon-horizontal-bar-chart-asc.svg rename to resources/icons/16px/horizontal-bar-chart-asc.svg diff --git a/resources/icons/16px/pt-icon-horizontal-bar-chart-desc.svg b/resources/icons/16px/horizontal-bar-chart-desc.svg similarity index 100% rename from resources/icons/16px/pt-icon-horizontal-bar-chart-desc.svg rename to resources/icons/16px/horizontal-bar-chart-desc.svg diff --git a/resources/icons/16px/pt-icon-horizontal-bar-chart.svg b/resources/icons/16px/horizontal-bar-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-horizontal-bar-chart.svg rename to resources/icons/16px/horizontal-bar-chart.svg diff --git a/resources/icons/16px/pt-icon-horizontal-distribution.svg b/resources/icons/16px/horizontal-distribution.svg similarity index 100% rename from resources/icons/16px/pt-icon-horizontal-distribution.svg rename to resources/icons/16px/horizontal-distribution.svg diff --git a/resources/icons/16px/pt-icon-id-number.svg b/resources/icons/16px/id-number.svg similarity index 100% rename from resources/icons/16px/pt-icon-id-number.svg rename to resources/icons/16px/id-number.svg diff --git a/resources/icons/16px/pt-icon-image-rotate-left.svg b/resources/icons/16px/image-rotate-left.svg similarity index 100% rename from resources/icons/16px/pt-icon-image-rotate-left.svg rename to resources/icons/16px/image-rotate-left.svg diff --git a/resources/icons/16px/pt-icon-image-rotate-right.svg b/resources/icons/16px/image-rotate-right.svg similarity index 100% rename from resources/icons/16px/pt-icon-image-rotate-right.svg rename to resources/icons/16px/image-rotate-right.svg diff --git a/resources/icons/16px/pt-icon-import.svg b/resources/icons/16px/import.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-import.svg rename to resources/icons/16px/import.svg diff --git a/resources/icons/16px/pt-icon-inbox.svg b/resources/icons/16px/inbox.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-inbox.svg rename to resources/icons/16px/inbox.svg diff --git a/resources/icons/16px/pt-icon-info-sign.svg b/resources/icons/16px/info-sign.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-info-sign.svg rename to resources/icons/16px/info-sign.svg diff --git a/resources/icons/16px/pt-icon-inner-join.svg b/resources/icons/16px/inner-join.svg similarity index 100% rename from resources/icons/16px/pt-icon-inner-join.svg rename to resources/icons/16px/inner-join.svg diff --git a/resources/icons/16px/pt-icon-insert.svg b/resources/icons/16px/insert.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-insert.svg rename to resources/icons/16px/insert.svg diff --git a/resources/icons/16px/pt-icon-intersection.svg b/resources/icons/16px/intersection.svg similarity index 100% rename from resources/icons/16px/pt-icon-intersection.svg rename to resources/icons/16px/intersection.svg diff --git a/resources/icons/16px/pt-icon-ip-address.svg b/resources/icons/16px/ip-address.svg similarity index 100% rename from resources/icons/16px/pt-icon-ip-address.svg rename to resources/icons/16px/ip-address.svg diff --git a/resources/icons/16px/pt-icon-issue-closed.svg b/resources/icons/16px/issue-closed.svg similarity index 100% rename from resources/icons/16px/pt-icon-issue-closed.svg rename to resources/icons/16px/issue-closed.svg diff --git a/resources/icons/16px/pt-icon-issue-new.svg b/resources/icons/16px/issue-new.svg similarity index 100% rename from resources/icons/16px/pt-icon-issue-new.svg rename to resources/icons/16px/issue-new.svg diff --git a/resources/icons/16px/pt-icon-issue.svg b/resources/icons/16px/issue.svg similarity index 100% rename from resources/icons/16px/pt-icon-issue.svg rename to resources/icons/16px/issue.svg diff --git a/resources/icons/16px/pt-icon-italic.svg b/resources/icons/16px/italic.svg similarity index 100% rename from resources/icons/16px/pt-icon-italic.svg rename to resources/icons/16px/italic.svg diff --git a/resources/icons/16px/pt-icon-join-table.svg b/resources/icons/16px/join-table.svg similarity index 100% rename from resources/icons/16px/pt-icon-join-table.svg rename to resources/icons/16px/join-table.svg diff --git a/resources/icons/16px/pt-icon-key-backspace.svg b/resources/icons/16px/key-backspace.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-key-backspace.svg rename to resources/icons/16px/key-backspace.svg diff --git a/resources/icons/16px/pt-icon-key-command.svg b/resources/icons/16px/key-command.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-key-command.svg rename to resources/icons/16px/key-command.svg diff --git a/resources/icons/16px/pt-icon-key-control.svg b/resources/icons/16px/key-control.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-key-control.svg rename to resources/icons/16px/key-control.svg diff --git a/resources/icons/16px/pt-icon-key-delete.svg b/resources/icons/16px/key-delete.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-key-delete.svg rename to resources/icons/16px/key-delete.svg diff --git a/resources/icons/16px/pt-icon-key-enter.svg b/resources/icons/16px/key-enter.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-key-enter.svg rename to resources/icons/16px/key-enter.svg diff --git a/resources/icons/16px/pt-icon-key-escape.svg b/resources/icons/16px/key-escape.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-key-escape.svg rename to resources/icons/16px/key-escape.svg diff --git a/resources/icons/16px/pt-icon-key-option.svg b/resources/icons/16px/key-option.svg similarity index 100% rename from resources/icons/16px/pt-icon-key-option.svg rename to resources/icons/16px/key-option.svg diff --git a/resources/icons/16px/pt-icon-key-shift.svg b/resources/icons/16px/key-shift.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-key-shift.svg rename to resources/icons/16px/key-shift.svg diff --git a/resources/icons/16px/pt-icon-key-tab.svg b/resources/icons/16px/key-tab.svg similarity index 100% rename from resources/icons/16px/pt-icon-key-tab.svg rename to resources/icons/16px/key-tab.svg diff --git a/resources/icons/16px/pt-icon-key.svg b/resources/icons/16px/key.svg similarity index 100% rename from resources/icons/16px/pt-icon-key.svg rename to resources/icons/16px/key.svg diff --git a/resources/icons/16px/pt-icon-known-vehicle.svg b/resources/icons/16px/known-vehicle.svg similarity index 100% rename from resources/icons/16px/pt-icon-known-vehicle.svg rename to resources/icons/16px/known-vehicle.svg diff --git a/resources/icons/16px/pt-icon-label.svg b/resources/icons/16px/label.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-label.svg rename to resources/icons/16px/label.svg diff --git a/resources/icons/16px/pt-icon-layer.svg b/resources/icons/16px/layer.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-layer.svg rename to resources/icons/16px/layer.svg diff --git a/resources/icons/16px/pt-icon-layers.svg b/resources/icons/16px/layers.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-layers.svg rename to resources/icons/16px/layers.svg diff --git a/resources/icons/16px/pt-icon-layout-auto.svg b/resources/icons/16px/layout-auto.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-layout-auto.svg rename to resources/icons/16px/layout-auto.svg diff --git a/resources/icons/16px/pt-icon-layout-balloon.svg b/resources/icons/16px/layout-balloon.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-layout-balloon.svg rename to resources/icons/16px/layout-balloon.svg diff --git a/resources/icons/16px/pt-icon-layout-circle.svg b/resources/icons/16px/layout-circle.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-layout-circle.svg rename to resources/icons/16px/layout-circle.svg diff --git a/resources/icons/16px/pt-icon-layout-grid.svg b/resources/icons/16px/layout-grid.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-layout-grid.svg rename to resources/icons/16px/layout-grid.svg diff --git a/resources/icons/16px/pt-icon-layout-group-by.svg b/resources/icons/16px/layout-group-by.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-layout-group-by.svg rename to resources/icons/16px/layout-group-by.svg diff --git a/resources/icons/16px/pt-icon-layout-hierarchy.svg b/resources/icons/16px/layout-hierarchy.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-layout-hierarchy.svg rename to resources/icons/16px/layout-hierarchy.svg diff --git a/resources/icons/16px/pt-icon-layout-linear.svg b/resources/icons/16px/layout-linear.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-layout-linear.svg rename to resources/icons/16px/layout-linear.svg diff --git a/resources/icons/16px/pt-icon-layout-skew-grid.svg b/resources/icons/16px/layout-skew-grid.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-layout-skew-grid.svg rename to resources/icons/16px/layout-skew-grid.svg diff --git a/resources/icons/16px/pt-icon-layout-sorted-clusters.svg b/resources/icons/16px/layout-sorted-clusters.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-layout-sorted-clusters.svg rename to resources/icons/16px/layout-sorted-clusters.svg diff --git a/resources/icons/16px/pt-icon-layout.svg b/resources/icons/16px/layout.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-layout.svg rename to resources/icons/16px/layout.svg diff --git a/resources/icons/16px/pt-icon-left-join.svg b/resources/icons/16px/left-join.svg similarity index 100% rename from resources/icons/16px/pt-icon-left-join.svg rename to resources/icons/16px/left-join.svg diff --git a/resources/icons/16px/pt-icon-lightbulb.svg b/resources/icons/16px/lightbulb.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-lightbulb.svg rename to resources/icons/16px/lightbulb.svg diff --git a/resources/icons/16px/pt-icon-link.svg b/resources/icons/16px/link.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-link.svg rename to resources/icons/16px/link.svg diff --git a/resources/icons/16px/pt-icon-list-detail-view.svg b/resources/icons/16px/list-detail-view.svg similarity index 100% rename from resources/icons/16px/pt-icon-list-detail-view.svg rename to resources/icons/16px/list-detail-view.svg diff --git a/resources/icons/16px/pt-icon-list.svg b/resources/icons/16px/list.svg similarity index 100% rename from resources/icons/16px/pt-icon-list.svg rename to resources/icons/16px/list.svg diff --git a/resources/icons/16px/pt-icon-locate.svg b/resources/icons/16px/locate.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-locate.svg rename to resources/icons/16px/locate.svg diff --git a/resources/icons/16px/pt-icon-lock.svg b/resources/icons/16px/lock.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-lock.svg rename to resources/icons/16px/lock.svg diff --git a/resources/icons/16px/pt-icon-log-in.svg b/resources/icons/16px/log-in.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-log-in.svg rename to resources/icons/16px/log-in.svg diff --git a/resources/icons/16px/pt-icon-log-out.svg b/resources/icons/16px/log-out.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-log-out.svg rename to resources/icons/16px/log-out.svg diff --git a/resources/icons/16px/pt-icon-manual.svg b/resources/icons/16px/manual.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-manual.svg rename to resources/icons/16px/manual.svg diff --git a/resources/icons/16px/pt-icon-manually-entered-data.svg b/resources/icons/16px/manually-entered-data.svg similarity index 100% rename from resources/icons/16px/pt-icon-manually-entered-data.svg rename to resources/icons/16px/manually-entered-data.svg diff --git a/resources/icons/16px/pt-icon-map-create.svg b/resources/icons/16px/map-create.svg similarity index 100% rename from resources/icons/16px/pt-icon-map-create.svg rename to resources/icons/16px/map-create.svg diff --git a/resources/icons/16px/pt-icon-map-marker.svg b/resources/icons/16px/map-marker.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-map-marker.svg rename to resources/icons/16px/map-marker.svg diff --git a/resources/icons/16px/pt-icon-map.svg b/resources/icons/16px/map.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-map.svg rename to resources/icons/16px/map.svg diff --git a/resources/icons/16px/pt-icon-maximize.svg b/resources/icons/16px/maximize.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-maximize.svg rename to resources/icons/16px/maximize.svg diff --git a/resources/icons/16px/pt-icon-media.svg b/resources/icons/16px/media.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-media.svg rename to resources/icons/16px/media.svg diff --git a/resources/icons/16px/pt-icon-menu-closed.svg b/resources/icons/16px/menu-closed.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-menu-closed.svg rename to resources/icons/16px/menu-closed.svg diff --git a/resources/icons/16px/pt-icon-menu-open.svg b/resources/icons/16px/menu-open.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-menu-open.svg rename to resources/icons/16px/menu-open.svg diff --git a/resources/icons/16px/pt-icon-menu.svg b/resources/icons/16px/menu.svg similarity index 100% rename from resources/icons/16px/pt-icon-menu.svg rename to resources/icons/16px/menu.svg diff --git a/resources/icons/16px/pt-icon-merge-columns.svg b/resources/icons/16px/merge-columns.svg similarity index 100% rename from resources/icons/16px/pt-icon-merge-columns.svg rename to resources/icons/16px/merge-columns.svg diff --git a/resources/icons/16px/pt-icon-merge-links.svg b/resources/icons/16px/merge-links.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-merge-links.svg rename to resources/icons/16px/merge-links.svg diff --git a/resources/icons/16px/pt-icon-minimize.svg b/resources/icons/16px/minimize.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-minimize.svg rename to resources/icons/16px/minimize.svg diff --git a/resources/icons/16px/pt-icon-minus.svg b/resources/icons/16px/minus.svg similarity index 100% rename from resources/icons/16px/pt-icon-minus.svg rename to resources/icons/16px/minus.svg diff --git a/resources/icons/16px/pt-icon-mobile-phone.svg b/resources/icons/16px/mobile-phone.svg similarity index 100% rename from resources/icons/16px/pt-icon-mobile-phone.svg rename to resources/icons/16px/mobile-phone.svg diff --git a/resources/icons/16px/pt-icon-mobile-video.svg b/resources/icons/16px/mobile-video.svg similarity index 100% rename from resources/icons/16px/pt-icon-mobile-video.svg rename to resources/icons/16px/mobile-video.svg diff --git a/resources/icons/16px/pt-icon-moon.svg b/resources/icons/16px/moon.svg similarity index 100% rename from resources/icons/16px/pt-icon-moon.svg rename to resources/icons/16px/moon.svg diff --git a/resources/icons/16px/pt-icon-more.svg b/resources/icons/16px/more.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-more.svg rename to resources/icons/16px/more.svg diff --git a/resources/icons/16px/pt-icon-move.svg b/resources/icons/16px/move.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-move.svg rename to resources/icons/16px/move.svg diff --git a/resources/icons/16px/pt-icon-mugshot.svg b/resources/icons/16px/mugshot.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-mugshot.svg rename to resources/icons/16px/mugshot.svg diff --git a/resources/icons/16px/pt-icon-multi-select.svg b/resources/icons/16px/multi-select.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-multi-select.svg rename to resources/icons/16px/multi-select.svg diff --git a/resources/icons/16px/pt-icon-music.svg b/resources/icons/16px/music.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-music.svg rename to resources/icons/16px/music.svg diff --git a/resources/icons/16px/pt-icon-new-grid-item.svg b/resources/icons/16px/new-grid-item.svg similarity index 100% rename from resources/icons/16px/pt-icon-new-grid-item.svg rename to resources/icons/16px/new-grid-item.svg diff --git a/resources/icons/16px/pt-icon-new-link.svg b/resources/icons/16px/new-link.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-new-link.svg rename to resources/icons/16px/new-link.svg diff --git a/resources/icons/16px/pt-icon-new-object.svg b/resources/icons/16px/new-object.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-new-object.svg rename to resources/icons/16px/new-object.svg diff --git a/resources/icons/16px/pt-icon-new-person.svg b/resources/icons/16px/new-person.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-new-person.svg rename to resources/icons/16px/new-person.svg diff --git a/resources/icons/16px/pt-icon-new-prescription.svg b/resources/icons/16px/new-prescription.svg similarity index 100% rename from resources/icons/16px/pt-icon-new-prescription.svg rename to resources/icons/16px/new-prescription.svg diff --git a/resources/icons/16px/pt-icon-new-text-box.svg b/resources/icons/16px/new-text-box.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-new-text-box.svg rename to resources/icons/16px/new-text-box.svg diff --git a/resources/icons/16px/pt-icon-ninja.svg b/resources/icons/16px/ninja.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-ninja.svg rename to resources/icons/16px/ninja.svg diff --git a/resources/icons/16px/pt-icon-notifications.svg b/resources/icons/16px/notifications.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-notifications.svg rename to resources/icons/16px/notifications.svg diff --git a/resources/icons/16px/pt-icon-numbered-list.svg b/resources/icons/16px/numbered-list.svg similarity index 100% rename from resources/icons/16px/pt-icon-numbered-list.svg rename to resources/icons/16px/numbered-list.svg diff --git a/resources/icons/16px/pt-icon-numerical.svg b/resources/icons/16px/numerical.svg similarity index 100% rename from resources/icons/16px/pt-icon-numerical.svg rename to resources/icons/16px/numerical.svg diff --git a/resources/icons/16px/pt-icon-office.svg b/resources/icons/16px/office.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-office.svg rename to resources/icons/16px/office.svg diff --git a/resources/icons/16px/pt-icon-offline.svg b/resources/icons/16px/offline.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-offline.svg rename to resources/icons/16px/offline.svg diff --git a/resources/icons/16px/pt-icon-oil-field.svg b/resources/icons/16px/oil-field.svg similarity index 100% rename from resources/icons/16px/pt-icon-oil-field.svg rename to resources/icons/16px/oil-field.svg diff --git a/resources/icons/16px/pt-icon-one-column.svg b/resources/icons/16px/one-column.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-one-column.svg rename to resources/icons/16px/one-column.svg diff --git a/resources/icons/16px/pt-icon-page-layout.svg b/resources/icons/16px/page-layout.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-page-layout.svg rename to resources/icons/16px/page-layout.svg diff --git a/resources/icons/16px/pt-icon-panel-stats.svg b/resources/icons/16px/panel-stats.svg similarity index 100% rename from resources/icons/16px/pt-icon-panel-stats.svg rename to resources/icons/16px/panel-stats.svg diff --git a/resources/icons/16px/pt-icon-panel-table.svg b/resources/icons/16px/panel-table.svg similarity index 100% rename from resources/icons/16px/pt-icon-panel-table.svg rename to resources/icons/16px/panel-table.svg diff --git a/resources/icons/16px/pt-icon-paperclip.svg b/resources/icons/16px/paperclip.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-paperclip.svg rename to resources/icons/16px/paperclip.svg diff --git a/resources/icons/16px/pt-icon-paragraph.svg b/resources/icons/16px/paragraph.svg similarity index 100% rename from resources/icons/16px/pt-icon-paragraph.svg rename to resources/icons/16px/paragraph.svg diff --git a/resources/icons/16px/pt-icon-path-search.svg b/resources/icons/16px/path-search.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-path-search.svg rename to resources/icons/16px/path-search.svg diff --git a/resources/icons/16px/pt-icon-path.svg b/resources/icons/16px/path.svg similarity index 100% rename from resources/icons/16px/pt-icon-path.svg rename to resources/icons/16px/path.svg diff --git a/resources/icons/16px/pt-icon-pause.svg b/resources/icons/16px/pause.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-pause.svg rename to resources/icons/16px/pause.svg diff --git a/resources/icons/16px/pt-icon-people.svg b/resources/icons/16px/people.svg similarity index 100% rename from resources/icons/16px/pt-icon-people.svg rename to resources/icons/16px/people.svg diff --git a/resources/icons/16px/pt-icon-percentage.svg b/resources/icons/16px/percentage.svg similarity index 100% rename from resources/icons/16px/pt-icon-percentage.svg rename to resources/icons/16px/percentage.svg diff --git a/resources/icons/16px/pt-icon-person.svg b/resources/icons/16px/person.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-person.svg rename to resources/icons/16px/person.svg diff --git a/resources/icons/16px/pt-icon-phone.svg b/resources/icons/16px/phone.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-phone.svg rename to resources/icons/16px/phone.svg diff --git a/resources/icons/16px/pt-icon-pie-chart.svg b/resources/icons/16px/pie-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-pie-chart.svg rename to resources/icons/16px/pie-chart.svg diff --git a/resources/icons/16px/pt-icon-pin.svg b/resources/icons/16px/pin.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-pin.svg rename to resources/icons/16px/pin.svg diff --git a/resources/icons/16px/pt-icon-pivot-table.svg b/resources/icons/16px/pivot-table.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-pivot-table.svg rename to resources/icons/16px/pivot-table.svg diff --git a/resources/icons/16px/pt-icon-pivot.svg b/resources/icons/16px/pivot.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-pivot.svg rename to resources/icons/16px/pivot.svg diff --git a/resources/icons/16px/pt-icon-play.svg b/resources/icons/16px/play.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-play.svg rename to resources/icons/16px/play.svg diff --git a/resources/icons/16px/pt-icon-plus.svg b/resources/icons/16px/plus.svg similarity index 100% rename from resources/icons/16px/pt-icon-plus.svg rename to resources/icons/16px/plus.svg diff --git a/resources/icons/16px/pt-icon-polygon-filter.svg b/resources/icons/16px/polygon-filter.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-polygon-filter.svg rename to resources/icons/16px/polygon-filter.svg diff --git a/resources/icons/16px/pt-icon-power.svg b/resources/icons/16px/power.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-power.svg rename to resources/icons/16px/power.svg diff --git a/resources/icons/16px/pt-icon-predictive-analysis.svg b/resources/icons/16px/predictive-analysis.svg similarity index 100% rename from resources/icons/16px/pt-icon-predictive-analysis.svg rename to resources/icons/16px/predictive-analysis.svg diff --git a/resources/icons/16px/pt-icon-prescription.svg b/resources/icons/16px/prescription.svg similarity index 100% rename from resources/icons/16px/pt-icon-prescription.svg rename to resources/icons/16px/prescription.svg diff --git a/resources/icons/16px/pt-icon-presentation.svg b/resources/icons/16px/presentation.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-presentation.svg rename to resources/icons/16px/presentation.svg diff --git a/resources/icons/16px/pt-icon-print.svg b/resources/icons/16px/print.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-print.svg rename to resources/icons/16px/print.svg diff --git a/resources/icons/16px/pt-icon-projects.svg b/resources/icons/16px/projects.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-projects.svg rename to resources/icons/16px/projects.svg diff --git a/resources/icons/16px/pt-icon-properties.svg b/resources/icons/16px/properties.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-properties.svg rename to resources/icons/16px/properties.svg diff --git a/resources/icons/16px/pt-icon-property.svg b/resources/icons/16px/property.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-property.svg rename to resources/icons/16px/property.svg diff --git a/resources/icons/16px/pt-icon-publish-function.svg b/resources/icons/16px/publish-function.svg similarity index 100% rename from resources/icons/16px/pt-icon-publish-function.svg rename to resources/icons/16px/publish-function.svg diff --git a/resources/icons/16px/pt-icon-pulse.svg b/resources/icons/16px/pulse.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-pulse.svg rename to resources/icons/16px/pulse.svg diff --git a/resources/icons/16px/pt-icon-random.svg b/resources/icons/16px/random.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-random.svg rename to resources/icons/16px/random.svg diff --git a/resources/icons/16px/pt-icon-record.svg b/resources/icons/16px/record.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-record.svg rename to resources/icons/16px/record.svg diff --git a/resources/icons/16px/pt-icon-redo.svg b/resources/icons/16px/redo.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-redo.svg rename to resources/icons/16px/redo.svg diff --git a/resources/icons/16px/pt-icon-refresh.svg b/resources/icons/16px/refresh.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-refresh.svg rename to resources/icons/16px/refresh.svg diff --git a/resources/icons/16px/pt-icon-regression-chart.svg b/resources/icons/16px/regression-chart.svg similarity index 100% rename from resources/icons/16px/pt-icon-regression-chart.svg rename to resources/icons/16px/regression-chart.svg diff --git a/resources/icons/16px/pt-icon-remove-column-left.svg b/resources/icons/16px/remove-column-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-remove-column-left.svg rename to resources/icons/16px/remove-column-left.svg diff --git a/resources/icons/16px/pt-icon-remove-column-right.svg b/resources/icons/16px/remove-column-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-remove-column-right.svg rename to resources/icons/16px/remove-column-right.svg diff --git a/resources/icons/16px/pt-icon-remove-column.svg b/resources/icons/16px/remove-column.svg similarity index 100% rename from resources/icons/16px/pt-icon-remove-column.svg rename to resources/icons/16px/remove-column.svg diff --git a/resources/icons/16px/pt-icon-remove-row-bottom.svg b/resources/icons/16px/remove-row-bottom.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-remove-row-bottom.svg rename to resources/icons/16px/remove-row-bottom.svg diff --git a/resources/icons/16px/pt-icon-remove-row-top.svg b/resources/icons/16px/remove-row-top.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-remove-row-top.svg rename to resources/icons/16px/remove-row-top.svg diff --git a/resources/icons/16px/pt-icon-remove.svg b/resources/icons/16px/remove.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-remove.svg rename to resources/icons/16px/remove.svg diff --git a/resources/icons/16px/pt-icon-repeat.svg b/resources/icons/16px/repeat.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-repeat.svg rename to resources/icons/16px/repeat.svg diff --git a/resources/icons/16px/pt-icon-resolve.svg b/resources/icons/16px/resolve.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-resolve.svg rename to resources/icons/16px/resolve.svg diff --git a/resources/icons/16px/pt-icon-rig.svg b/resources/icons/16px/rig.svg similarity index 100% rename from resources/icons/16px/pt-icon-rig.svg rename to resources/icons/16px/rig.svg diff --git a/resources/icons/16px/pt-icon-right-join.svg b/resources/icons/16px/right-join.svg similarity index 100% rename from resources/icons/16px/pt-icon-right-join.svg rename to resources/icons/16px/right-join.svg diff --git a/resources/icons/16px/pt-icon-ring.svg b/resources/icons/16px/ring.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-ring.svg rename to resources/icons/16px/ring.svg diff --git a/resources/icons/16px/pt-icon-rotate-document.svg b/resources/icons/16px/rotate-document.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-rotate-document.svg rename to resources/icons/16px/rotate-document.svg diff --git a/resources/icons/16px/pt-icon-rotate-page.svg b/resources/icons/16px/rotate-page.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-rotate-page.svg rename to resources/icons/16px/rotate-page.svg diff --git a/resources/icons/16px/pt-icon-satellite.svg b/resources/icons/16px/satellite.svg similarity index 100% rename from resources/icons/16px/pt-icon-satellite.svg rename to resources/icons/16px/satellite.svg diff --git a/resources/icons/16px/pt-icon-saved.svg b/resources/icons/16px/saved.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-saved.svg rename to resources/icons/16px/saved.svg diff --git a/resources/icons/16px/pt-icon-scatter-plot.svg b/resources/icons/16px/scatter-plot.svg similarity index 100% rename from resources/icons/16px/pt-icon-scatter-plot.svg rename to resources/icons/16px/scatter-plot.svg diff --git a/resources/icons/16px/pt-icon-search-around.svg b/resources/icons/16px/search-around.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-search-around.svg rename to resources/icons/16px/search-around.svg diff --git a/resources/icons/16px/pt-icon-search-template.svg b/resources/icons/16px/search-template.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-search-template.svg rename to resources/icons/16px/search-template.svg diff --git a/resources/icons/16px/pt-icon-search-text.svg b/resources/icons/16px/search-text.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-search-text.svg rename to resources/icons/16px/search-text.svg diff --git a/resources/icons/16px/pt-icon-search.svg b/resources/icons/16px/search.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-search.svg rename to resources/icons/16px/search.svg diff --git a/resources/icons/16px/pt-icon-segmented-control.svg b/resources/icons/16px/segmented-control.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-segmented-control.svg rename to resources/icons/16px/segmented-control.svg diff --git a/resources/icons/16px/pt-icon-select.svg b/resources/icons/16px/select.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-select.svg rename to resources/icons/16px/select.svg diff --git a/resources/icons/16px/pt-icon-selection.svg b/resources/icons/16px/selection.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-selection.svg rename to resources/icons/16px/selection.svg diff --git a/resources/icons/16px/pt-icon-send-to-graph.svg b/resources/icons/16px/send-to-graph.svg similarity index 100% rename from resources/icons/16px/pt-icon-send-to-graph.svg rename to resources/icons/16px/send-to-graph.svg diff --git a/resources/icons/16px/pt-icon-send-to-map.svg b/resources/icons/16px/send-to-map.svg similarity index 100% rename from resources/icons/16px/pt-icon-send-to-map.svg rename to resources/icons/16px/send-to-map.svg diff --git a/resources/icons/16px/pt-icon-send-to.svg b/resources/icons/16px/send-to.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-send-to.svg rename to resources/icons/16px/send-to.svg diff --git a/resources/icons/16px/pt-icon-series-add.svg b/resources/icons/16px/series-add.svg similarity index 100% rename from resources/icons/16px/pt-icon-series-add.svg rename to resources/icons/16px/series-add.svg diff --git a/resources/icons/16px/pt-icon-series-configuration.svg b/resources/icons/16px/series-configuration.svg similarity index 100% rename from resources/icons/16px/pt-icon-series-configuration.svg rename to resources/icons/16px/series-configuration.svg diff --git a/resources/icons/16px/pt-icon-series-derived.svg b/resources/icons/16px/series-derived.svg similarity index 100% rename from resources/icons/16px/pt-icon-series-derived.svg rename to resources/icons/16px/series-derived.svg diff --git a/resources/icons/16px/pt-icon-series-filtered.svg b/resources/icons/16px/series-filtered.svg similarity index 100% rename from resources/icons/16px/pt-icon-series-filtered.svg rename to resources/icons/16px/series-filtered.svg diff --git a/resources/icons/16px/pt-icon-series-search.svg b/resources/icons/16px/series-search.svg similarity index 100% rename from resources/icons/16px/pt-icon-series-search.svg rename to resources/icons/16px/series-search.svg diff --git a/resources/icons/16px/pt-icon-settings.svg b/resources/icons/16px/settings.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-settings.svg rename to resources/icons/16px/settings.svg diff --git a/resources/icons/16px/pt-icon-share.svg b/resources/icons/16px/share.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-share.svg rename to resources/icons/16px/share.svg diff --git a/resources/icons/16px/pt-icon-shop.svg b/resources/icons/16px/shop.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-shop.svg rename to resources/icons/16px/shop.svg diff --git a/resources/icons/16px/pt-icon-shopping-cart.svg b/resources/icons/16px/shopping-cart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-shopping-cart.svg rename to resources/icons/16px/shopping-cart.svg diff --git a/resources/icons/16px/pt-icon-sim-card.svg b/resources/icons/16px/sim-card.svg similarity index 100% rename from resources/icons/16px/pt-icon-sim-card.svg rename to resources/icons/16px/sim-card.svg diff --git a/resources/icons/16px/pt-icon-slash.svg b/resources/icons/16px/slash.svg similarity index 100% rename from resources/icons/16px/pt-icon-slash.svg rename to resources/icons/16px/slash.svg diff --git a/resources/icons/16px/pt-icon-small-cross.svg b/resources/icons/16px/small-cross.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-small-cross.svg rename to resources/icons/16px/small-cross.svg diff --git a/resources/icons/16px/pt-icon-small-minus.svg b/resources/icons/16px/small-minus.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-small-minus.svg rename to resources/icons/16px/small-minus.svg diff --git a/resources/icons/16px/pt-icon-small-plus.svg b/resources/icons/16px/small-plus.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-small-plus.svg rename to resources/icons/16px/small-plus.svg diff --git a/resources/icons/16px/pt-icon-small-tick.svg b/resources/icons/16px/small-tick.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-small-tick.svg rename to resources/icons/16px/small-tick.svg diff --git a/resources/icons/16px/pt-icon-social-media.svg b/resources/icons/16px/social-media.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-social-media.svg rename to resources/icons/16px/social-media.svg diff --git a/resources/icons/16px/pt-icon-sort-alphabetical-desc.svg b/resources/icons/16px/sort-alphabetical-desc.svg similarity index 100% rename from resources/icons/16px/pt-icon-sort-alphabetical-desc.svg rename to resources/icons/16px/sort-alphabetical-desc.svg diff --git a/resources/icons/16px/pt-icon-sort-alphabetical.svg b/resources/icons/16px/sort-alphabetical.svg similarity index 100% rename from resources/icons/16px/pt-icon-sort-alphabetical.svg rename to resources/icons/16px/sort-alphabetical.svg diff --git a/resources/icons/16px/pt-icon-sort-asc.svg b/resources/icons/16px/sort-asc.svg similarity index 100% rename from resources/icons/16px/pt-icon-sort-asc.svg rename to resources/icons/16px/sort-asc.svg diff --git a/resources/icons/16px/pt-icon-sort-desc.svg b/resources/icons/16px/sort-desc.svg similarity index 100% rename from resources/icons/16px/pt-icon-sort-desc.svg rename to resources/icons/16px/sort-desc.svg diff --git a/resources/icons/16px/pt-icon-sort-numerical-desc.svg b/resources/icons/16px/sort-numerical-desc.svg similarity index 100% rename from resources/icons/16px/pt-icon-sort-numerical-desc.svg rename to resources/icons/16px/sort-numerical-desc.svg diff --git a/resources/icons/16px/pt-icon-sort-numerical.svg b/resources/icons/16px/sort-numerical.svg similarity index 100% rename from resources/icons/16px/pt-icon-sort-numerical.svg rename to resources/icons/16px/sort-numerical.svg diff --git a/resources/icons/16px/pt-icon-sort.svg b/resources/icons/16px/sort.svg similarity index 100% rename from resources/icons/16px/pt-icon-sort.svg rename to resources/icons/16px/sort.svg diff --git a/resources/icons/16px/pt-icon-split-columns.svg b/resources/icons/16px/split-columns.svg similarity index 100% rename from resources/icons/16px/pt-icon-split-columns.svg rename to resources/icons/16px/split-columns.svg diff --git a/resources/icons/16px/pt-icon-square.svg b/resources/icons/16px/square.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-square.svg rename to resources/icons/16px/square.svg diff --git a/resources/icons/16px/pt-icon-stacked-chart.svg b/resources/icons/16px/stacked-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-stacked-chart.svg rename to resources/icons/16px/stacked-chart.svg diff --git a/resources/icons/16px/pt-icon-star-empty.svg b/resources/icons/16px/star-empty.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-star-empty.svg rename to resources/icons/16px/star-empty.svg diff --git a/resources/icons/16px/pt-icon-star.svg b/resources/icons/16px/star.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-star.svg rename to resources/icons/16px/star.svg diff --git a/resources/icons/16px/pt-icon-step-backward.svg b/resources/icons/16px/step-backward.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-step-backward.svg rename to resources/icons/16px/step-backward.svg diff --git a/resources/icons/16px/pt-icon-step-chart.svg b/resources/icons/16px/step-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-step-chart.svg rename to resources/icons/16px/step-chart.svg diff --git a/resources/icons/16px/pt-icon-step-forward.svg b/resources/icons/16px/step-forward.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-step-forward.svg rename to resources/icons/16px/step-forward.svg diff --git a/resources/icons/16px/pt-icon-stop.svg b/resources/icons/16px/stop.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-stop.svg rename to resources/icons/16px/stop.svg diff --git a/resources/icons/16px/pt-icon-style.svg b/resources/icons/16px/style.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-style.svg rename to resources/icons/16px/style.svg diff --git a/resources/icons/16px/pt-icon-swap-horizontal.svg b/resources/icons/16px/swap-horizontal.svg similarity index 100% rename from resources/icons/16px/pt-icon-swap-horizontal.svg rename to resources/icons/16px/swap-horizontal.svg diff --git a/resources/icons/16px/pt-icon-swap-vertical.svg b/resources/icons/16px/swap-vertical.svg similarity index 100% rename from resources/icons/16px/pt-icon-swap-vertical.svg rename to resources/icons/16px/swap-vertical.svg diff --git a/resources/icons/16px/pt-icon-symbol-circle.svg b/resources/icons/16px/symbol-circle.svg similarity index 100% rename from resources/icons/16px/pt-icon-symbol-circle.svg rename to resources/icons/16px/symbol-circle.svg diff --git a/resources/icons/16px/pt-icon-symbol-cross.svg b/resources/icons/16px/symbol-cross.svg similarity index 100% rename from resources/icons/16px/pt-icon-symbol-cross.svg rename to resources/icons/16px/symbol-cross.svg diff --git a/resources/icons/16px/pt-icon-symbol-diamond.svg b/resources/icons/16px/symbol-diamond.svg similarity index 100% rename from resources/icons/16px/pt-icon-symbol-diamond.svg rename to resources/icons/16px/symbol-diamond.svg diff --git a/resources/icons/16px/pt-icon-symbol-square.svg b/resources/icons/16px/symbol-square.svg similarity index 100% rename from resources/icons/16px/pt-icon-symbol-square.svg rename to resources/icons/16px/symbol-square.svg diff --git a/resources/icons/16px/pt-icon-symbol-triangle-down.svg b/resources/icons/16px/symbol-triangle-down.svg similarity index 100% rename from resources/icons/16px/pt-icon-symbol-triangle-down.svg rename to resources/icons/16px/symbol-triangle-down.svg diff --git a/resources/icons/16px/pt-icon-symbol-triangle-up.svg b/resources/icons/16px/symbol-triangle-up.svg similarity index 100% rename from resources/icons/16px/pt-icon-symbol-triangle-up.svg rename to resources/icons/16px/symbol-triangle-up.svg diff --git a/resources/icons/16px/pt-icon-tag.svg b/resources/icons/16px/tag.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-tag.svg rename to resources/icons/16px/tag.svg diff --git a/resources/icons/16px/pt-icon-take-action.svg b/resources/icons/16px/take-action.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-take-action.svg rename to resources/icons/16px/take-action.svg diff --git a/resources/icons/16px/pt-icon-taxi.svg b/resources/icons/16px/taxi.svg similarity index 100% rename from resources/icons/16px/pt-icon-taxi.svg rename to resources/icons/16px/taxi.svg diff --git a/resources/icons/16px/pt-icon-text-highlight.svg b/resources/icons/16px/text-highlight.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-text-highlight.svg rename to resources/icons/16px/text-highlight.svg diff --git a/resources/icons/16px/pt-icon-th-derived.svg b/resources/icons/16px/th-derived.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-th-derived.svg rename to resources/icons/16px/th-derived.svg diff --git a/resources/icons/16px/pt-icon-th-list.svg b/resources/icons/16px/th-list.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-th-list.svg rename to resources/icons/16px/th-list.svg diff --git a/resources/icons/16px/pt-icon-th.svg b/resources/icons/16px/th.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-th.svg rename to resources/icons/16px/th.svg diff --git a/resources/icons/16px/pt-icon-thumbs-down.svg b/resources/icons/16px/thumbs-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-thumbs-down.svg rename to resources/icons/16px/thumbs-down.svg diff --git a/resources/icons/16px/pt-icon-thumbs-up.svg b/resources/icons/16px/thumbs-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-thumbs-up.svg rename to resources/icons/16px/thumbs-up.svg diff --git a/resources/icons/16px/pt-icon-tick-circle.svg b/resources/icons/16px/tick-circle.svg similarity index 100% rename from resources/icons/16px/pt-icon-tick-circle.svg rename to resources/icons/16px/tick-circle.svg diff --git a/resources/icons/16px/pt-icon-tick.svg b/resources/icons/16px/tick.svg similarity index 100% rename from resources/icons/16px/pt-icon-tick.svg rename to resources/icons/16px/tick.svg diff --git a/resources/icons/16px/pt-icon-time.svg b/resources/icons/16px/time.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-time.svg rename to resources/icons/16px/time.svg diff --git a/resources/icons/16px/pt-icon-timeline-area-chart.svg b/resources/icons/16px/timeline-area-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-timeline-area-chart.svg rename to resources/icons/16px/timeline-area-chart.svg diff --git a/resources/icons/16px/pt-icon-timeline-bar-chart.svg b/resources/icons/16px/timeline-bar-chart.svg similarity index 100% rename from resources/icons/16px/pt-icon-timeline-bar-chart.svg rename to resources/icons/16px/timeline-bar-chart.svg diff --git a/resources/icons/16px/pt-icon-timeline-events.svg b/resources/icons/16px/timeline-events.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-timeline-events.svg rename to resources/icons/16px/timeline-events.svg diff --git a/resources/icons/16px/pt-icon-timeline-line-chart.svg b/resources/icons/16px/timeline-line-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-timeline-line-chart.svg rename to resources/icons/16px/timeline-line-chart.svg diff --git a/resources/icons/16px/pt-icon-tint.svg b/resources/icons/16px/tint.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-tint.svg rename to resources/icons/16px/tint.svg diff --git a/resources/icons/16px/pt-icon-torch.svg b/resources/icons/16px/torch.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-torch.svg rename to resources/icons/16px/torch.svg diff --git a/resources/icons/16px/pt-icon-train.svg b/resources/icons/16px/train.svg similarity index 100% rename from resources/icons/16px/pt-icon-train.svg rename to resources/icons/16px/train.svg diff --git a/resources/icons/16px/pt-icon-translate.svg b/resources/icons/16px/translate.svg similarity index 100% rename from resources/icons/16px/pt-icon-translate.svg rename to resources/icons/16px/translate.svg diff --git a/resources/icons/16px/pt-icon-trash.svg b/resources/icons/16px/trash.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-trash.svg rename to resources/icons/16px/trash.svg diff --git a/resources/icons/16px/pt-icon-trending-down.svg b/resources/icons/16px/trending-down.svg similarity index 100% rename from resources/icons/16px/pt-icon-trending-down.svg rename to resources/icons/16px/trending-down.svg diff --git a/resources/icons/16px/pt-icon-trending-up.svg b/resources/icons/16px/trending-up.svg similarity index 100% rename from resources/icons/16px/pt-icon-trending-up.svg rename to resources/icons/16px/trending-up.svg diff --git a/resources/icons/16px/pt-icon-two-columns.svg b/resources/icons/16px/two-columns.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-two-columns.svg rename to resources/icons/16px/two-columns.svg diff --git a/resources/icons/16px/pt-icon-underline.svg b/resources/icons/16px/underline.svg similarity index 100% rename from resources/icons/16px/pt-icon-underline.svg rename to resources/icons/16px/underline.svg diff --git a/resources/icons/16px/pt-icon-undo.svg b/resources/icons/16px/undo.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-undo.svg rename to resources/icons/16px/undo.svg diff --git a/resources/icons/16px/pt-icon-ungroup-objects.svg b/resources/icons/16px/ungroup-objects.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-ungroup-objects.svg rename to resources/icons/16px/ungroup-objects.svg diff --git a/resources/icons/16px/pt-icon-unknown-vehicle.svg b/resources/icons/16px/unknown-vehicle.svg similarity index 100% rename from resources/icons/16px/pt-icon-unknown-vehicle.svg rename to resources/icons/16px/unknown-vehicle.svg diff --git a/resources/icons/16px/pt-icon-unlock.svg b/resources/icons/16px/unlock.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-unlock.svg rename to resources/icons/16px/unlock.svg diff --git a/resources/icons/16px/pt-icon-unpin.svg b/resources/icons/16px/unpin.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-unpin.svg rename to resources/icons/16px/unpin.svg diff --git a/resources/icons/16px/pt-icon-unresolve.svg b/resources/icons/16px/unresolve.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-unresolve.svg rename to resources/icons/16px/unresolve.svg diff --git a/resources/icons/16px/pt-icon-upload.svg b/resources/icons/16px/upload.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-upload.svg rename to resources/icons/16px/upload.svg diff --git a/resources/icons/16px/pt-icon-user.svg b/resources/icons/16px/user.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-user.svg rename to resources/icons/16px/user.svg diff --git a/resources/icons/16px/pt-icon-variable.svg b/resources/icons/16px/variable.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-variable.svg rename to resources/icons/16px/variable.svg diff --git a/resources/icons/16px/pt-icon-vertical-bar-chart-asc.svg b/resources/icons/16px/vertical-bar-chart-asc.svg similarity index 100% rename from resources/icons/16px/pt-icon-vertical-bar-chart-asc.svg rename to resources/icons/16px/vertical-bar-chart-asc.svg diff --git a/resources/icons/16px/pt-icon-vertical-bar-chart-desc.svg b/resources/icons/16px/vertical-bar-chart-desc.svg similarity index 100% rename from resources/icons/16px/pt-icon-vertical-bar-chart-desc.svg rename to resources/icons/16px/vertical-bar-chart-desc.svg diff --git a/resources/icons/16px/pt-icon-vertical-distribution.svg b/resources/icons/16px/vertical-distribution.svg similarity index 100% rename from resources/icons/16px/pt-icon-vertical-distribution.svg rename to resources/icons/16px/vertical-distribution.svg diff --git a/resources/icons/16px/pt-icon-video.svg b/resources/icons/16px/video.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-video.svg rename to resources/icons/16px/video.svg diff --git a/resources/icons/16px/pt-icon-volume-down.svg b/resources/icons/16px/volume-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-volume-down.svg rename to resources/icons/16px/volume-down.svg diff --git a/resources/icons/16px/pt-icon-volume-off.svg b/resources/icons/16px/volume-off.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-volume-off.svg rename to resources/icons/16px/volume-off.svg diff --git a/resources/icons/16px/pt-icon-volume-up.svg b/resources/icons/16px/volume-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-volume-up.svg rename to resources/icons/16px/volume-up.svg diff --git a/resources/icons/16px/pt-icon-walk.svg b/resources/icons/16px/walk.svg similarity index 100% rename from resources/icons/16px/pt-icon-walk.svg rename to resources/icons/16px/walk.svg diff --git a/resources/icons/16px/pt-icon-warning-sign.svg b/resources/icons/16px/warning-sign.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-warning-sign.svg rename to resources/icons/16px/warning-sign.svg diff --git a/resources/icons/16px/pt-icon-waterfall-chart.svg b/resources/icons/16px/waterfall-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-waterfall-chart.svg rename to resources/icons/16px/waterfall-chart.svg diff --git a/resources/icons/16px/pt-icon-widget-button.svg b/resources/icons/16px/widget-button.svg similarity index 100% rename from resources/icons/16px/pt-icon-widget-button.svg rename to resources/icons/16px/widget-button.svg diff --git a/resources/icons/16px/pt-icon-widget-footer.svg b/resources/icons/16px/widget-footer.svg similarity index 100% rename from resources/icons/16px/pt-icon-widget-footer.svg rename to resources/icons/16px/widget-footer.svg diff --git a/resources/icons/16px/pt-icon-widget-header.svg b/resources/icons/16px/widget-header.svg similarity index 100% rename from resources/icons/16px/pt-icon-widget-header.svg rename to resources/icons/16px/widget-header.svg diff --git a/resources/icons/16px/pt-icon-widget.svg b/resources/icons/16px/widget.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-widget.svg rename to resources/icons/16px/widget.svg diff --git a/resources/icons/16px/pt-icon-wrench.svg b/resources/icons/16px/wrench.svg similarity index 100% rename from resources/icons/16px/pt-icon-wrench.svg rename to resources/icons/16px/wrench.svg diff --git a/resources/icons/16px/pt-icon-zoom-in.svg b/resources/icons/16px/zoom-in.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-zoom-in.svg rename to resources/icons/16px/zoom-in.svg diff --git a/resources/icons/16px/pt-icon-zoom-out.svg b/resources/icons/16px/zoom-out.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-zoom-out.svg rename to resources/icons/16px/zoom-out.svg diff --git a/resources/icons/16px/pt-icon-zoom-to-fit.svg b/resources/icons/16px/zoom-to-fit.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/16px/pt-icon-zoom-to-fit.svg rename to resources/icons/16px/zoom-to-fit.svg diff --git a/resources/icons/20px/pt-icon-add-column-left.svg b/resources/icons/20px/add-column-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-add-column-left.svg rename to resources/icons/20px/add-column-left.svg diff --git a/resources/icons/20px/pt-icon-add-column-right.svg b/resources/icons/20px/add-column-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-add-column-right.svg rename to resources/icons/20px/add-column-right.svg diff --git a/resources/icons/20px/pt-icon-add-row-bottom.svg b/resources/icons/20px/add-row-bottom.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-add-row-bottom.svg rename to resources/icons/20px/add-row-bottom.svg diff --git a/resources/icons/20px/pt-icon-add-row-top.svg b/resources/icons/20px/add-row-top.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-add-row-top.svg rename to resources/icons/20px/add-row-top.svg diff --git a/resources/icons/20px/pt-icon-add-to-artifact.svg b/resources/icons/20px/add-to-artifact.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-add-to-artifact.svg rename to resources/icons/20px/add-to-artifact.svg diff --git a/resources/icons/20px/pt-icon-add-to-folder.svg b/resources/icons/20px/add-to-folder.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-add-to-folder.svg rename to resources/icons/20px/add-to-folder.svg diff --git a/resources/icons/20px/pt-icon-add.svg b/resources/icons/20px/add.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-add.svg rename to resources/icons/20px/add.svg diff --git a/resources/icons/20px/pt-icon-airplane.svg b/resources/icons/20px/airplane.svg similarity index 100% rename from resources/icons/20px/pt-icon-airplane.svg rename to resources/icons/20px/airplane.svg diff --git a/resources/icons/20px/pt-icon-align-center.svg b/resources/icons/20px/align-center.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-align-center.svg rename to resources/icons/20px/align-center.svg diff --git a/resources/icons/20px/pt-icon-align-justify.svg b/resources/icons/20px/align-justify.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-align-justify.svg rename to resources/icons/20px/align-justify.svg diff --git a/resources/icons/20px/pt-icon-align-left.svg b/resources/icons/20px/align-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-align-left.svg rename to resources/icons/20px/align-left.svg diff --git a/resources/icons/20px/pt-icon-align-right.svg b/resources/icons/20px/align-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-align-right.svg rename to resources/icons/20px/align-right.svg diff --git a/resources/icons/20px/pt-icon-alignment-bottom.svg b/resources/icons/20px/alignment-bottom.svg similarity index 100% rename from resources/icons/20px/pt-icon-alignment-bottom.svg rename to resources/icons/20px/alignment-bottom.svg diff --git a/resources/icons/20px/pt-icon-alignment-horizontal-center.svg b/resources/icons/20px/alignment-horizontal-center.svg similarity index 100% rename from resources/icons/20px/pt-icon-alignment-horizontal-center.svg rename to resources/icons/20px/alignment-horizontal-center.svg diff --git a/resources/icons/20px/pt-icon-alignment-left.svg b/resources/icons/20px/alignment-left.svg similarity index 100% rename from resources/icons/20px/pt-icon-alignment-left.svg rename to resources/icons/20px/alignment-left.svg diff --git a/resources/icons/20px/pt-icon-alignment-right.svg b/resources/icons/20px/alignment-right.svg similarity index 100% rename from resources/icons/20px/pt-icon-alignment-right.svg rename to resources/icons/20px/alignment-right.svg diff --git a/resources/icons/20px/pt-icon-alignment-top.svg b/resources/icons/20px/alignment-top.svg similarity index 100% rename from resources/icons/20px/pt-icon-alignment-top.svg rename to resources/icons/20px/alignment-top.svg diff --git a/resources/icons/20px/pt-icon-alignment-vertical-center.svg b/resources/icons/20px/alignment-vertical-center.svg similarity index 100% rename from resources/icons/20px/pt-icon-alignment-vertical-center.svg rename to resources/icons/20px/alignment-vertical-center.svg diff --git a/resources/icons/20px/pt-icon-annotation.svg b/resources/icons/20px/annotation.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-annotation.svg rename to resources/icons/20px/annotation.svg diff --git a/resources/icons/20px/pt-icon-application.svg b/resources/icons/20px/application.svg similarity index 100% rename from resources/icons/20px/pt-icon-application.svg rename to resources/icons/20px/application.svg diff --git a/resources/icons/20px/pt-icon-applications.svg b/resources/icons/20px/applications.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-applications.svg rename to resources/icons/20px/applications.svg diff --git a/resources/icons/20px/pt-icon-arrow-bottom-left.svg b/resources/icons/20px/arrow-bottom-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-arrow-bottom-left.svg rename to resources/icons/20px/arrow-bottom-left.svg diff --git a/resources/icons/20px/pt-icon-arrow-bottom-right.svg b/resources/icons/20px/arrow-bottom-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-arrow-bottom-right.svg rename to resources/icons/20px/arrow-bottom-right.svg diff --git a/resources/icons/20px/pt-icon-arrow-down.svg b/resources/icons/20px/arrow-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-arrow-down.svg rename to resources/icons/20px/arrow-down.svg diff --git a/resources/icons/20px/pt-icon-arrow-left.svg b/resources/icons/20px/arrow-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-arrow-left.svg rename to resources/icons/20px/arrow-left.svg diff --git a/resources/icons/20px/pt-icon-arrow-right.svg b/resources/icons/20px/arrow-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-arrow-right.svg rename to resources/icons/20px/arrow-right.svg diff --git a/resources/icons/20px/pt-icon-arrow-top-left.svg b/resources/icons/20px/arrow-top-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-arrow-top-left.svg rename to resources/icons/20px/arrow-top-left.svg diff --git a/resources/icons/20px/pt-icon-arrow-top-right.svg b/resources/icons/20px/arrow-top-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-arrow-top-right.svg rename to resources/icons/20px/arrow-top-right.svg diff --git a/resources/icons/20px/pt-icon-arrow-up.svg b/resources/icons/20px/arrow-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-arrow-up.svg rename to resources/icons/20px/arrow-up.svg diff --git a/resources/icons/20px/pt-icon-arrows-horizontal.svg b/resources/icons/20px/arrows-horizontal.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-arrows-horizontal.svg rename to resources/icons/20px/arrows-horizontal.svg diff --git a/resources/icons/20px/pt-icon-arrows-vertical.svg b/resources/icons/20px/arrows-vertical.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-arrows-vertical.svg rename to resources/icons/20px/arrows-vertical.svg diff --git a/resources/icons/20px/pt-icon-asterisk.svg b/resources/icons/20px/asterisk.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-asterisk.svg rename to resources/icons/20px/asterisk.svg diff --git a/resources/icons/20px/pt-icon-automatic-updates.svg b/resources/icons/20px/automatic-updates.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-automatic-updates.svg rename to resources/icons/20px/automatic-updates.svg diff --git a/resources/icons/20px/pt-icon-badge.svg b/resources/icons/20px/badge.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-badge.svg rename to resources/icons/20px/badge.svg diff --git a/resources/icons/20px/pt-icon-ban-circle.svg b/resources/icons/20px/ban-circle.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-ban-circle.svg rename to resources/icons/20px/ban-circle.svg diff --git a/resources/icons/20px/pt-icon-bank-account.svg b/resources/icons/20px/bank-account.svg similarity index 100% rename from resources/icons/20px/pt-icon-bank-account.svg rename to resources/icons/20px/bank-account.svg diff --git a/resources/icons/20px/pt-icon-barcode.svg b/resources/icons/20px/barcode.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-barcode.svg rename to resources/icons/20px/barcode.svg diff --git a/resources/icons/20px/pt-icon-blank.svg b/resources/icons/20px/blank.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-blank.svg rename to resources/icons/20px/blank.svg diff --git a/resources/icons/20px/pt-icon-blocked-person.svg b/resources/icons/20px/blocked-person.svg similarity index 100% rename from resources/icons/20px/pt-icon-blocked-person.svg rename to resources/icons/20px/blocked-person.svg diff --git a/resources/icons/20px/pt-icon-bold.svg b/resources/icons/20px/bold.svg similarity index 100% rename from resources/icons/20px/pt-icon-bold.svg rename to resources/icons/20px/bold.svg diff --git a/resources/icons/20px/pt-icon-book.svg b/resources/icons/20px/book.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-book.svg rename to resources/icons/20px/book.svg diff --git a/resources/icons/20px/pt-icon-bookmark.svg b/resources/icons/20px/bookmark.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-bookmark.svg rename to resources/icons/20px/bookmark.svg diff --git a/resources/icons/20px/pt-icon-box.svg b/resources/icons/20px/box.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-box.svg rename to resources/icons/20px/box.svg diff --git a/resources/icons/20px/pt-icon-briefcase.svg b/resources/icons/20px/briefcase.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-briefcase.svg rename to resources/icons/20px/briefcase.svg diff --git a/resources/icons/20px/pt-icon-build.svg b/resources/icons/20px/build.svg similarity index 100% rename from resources/icons/20px/pt-icon-build.svg rename to resources/icons/20px/build.svg diff --git a/resources/icons/20px/pt-icon-calculator.svg b/resources/icons/20px/calculator.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-calculator.svg rename to resources/icons/20px/calculator.svg diff --git a/resources/icons/20px/pt-icon-calendar.svg b/resources/icons/20px/calendar.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-calendar.svg rename to resources/icons/20px/calendar.svg diff --git a/resources/icons/20px/pt-icon-camera.svg b/resources/icons/20px/camera.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-camera.svg rename to resources/icons/20px/camera.svg diff --git a/resources/icons/20px/pt-icon-caret-down.svg b/resources/icons/20px/caret-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-caret-down.svg rename to resources/icons/20px/caret-down.svg diff --git a/resources/icons/20px/pt-icon-caret-left.svg b/resources/icons/20px/caret-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-caret-left.svg rename to resources/icons/20px/caret-left.svg diff --git a/resources/icons/20px/pt-icon-caret-right.svg b/resources/icons/20px/caret-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-caret-right.svg rename to resources/icons/20px/caret-right.svg diff --git a/resources/icons/20px/pt-icon-caret-up.svg b/resources/icons/20px/caret-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-caret-up.svg rename to resources/icons/20px/caret-up.svg diff --git a/resources/icons/20px/pt-icon-cell-tower.svg b/resources/icons/20px/cell-tower.svg similarity index 100% rename from resources/icons/20px/pt-icon-cell-tower.svg rename to resources/icons/20px/cell-tower.svg diff --git a/resources/icons/20px/pt-icon-changes.svg b/resources/icons/20px/changes.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-changes.svg rename to resources/icons/20px/changes.svg diff --git a/resources/icons/20px/pt-icon-chart.svg b/resources/icons/20px/chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-chart.svg rename to resources/icons/20px/chart.svg diff --git a/resources/icons/20px/pt-icon-chat.svg b/resources/icons/20px/chat.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-chat.svg rename to resources/icons/20px/chat.svg diff --git a/resources/icons/20px/pt-icon-chevron-backward.svg b/resources/icons/20px/chevron-backward.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-chevron-backward.svg rename to resources/icons/20px/chevron-backward.svg diff --git a/resources/icons/20px/pt-icon-chevron-down.svg b/resources/icons/20px/chevron-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-chevron-down.svg rename to resources/icons/20px/chevron-down.svg diff --git a/resources/icons/20px/pt-icon-chevron-forward.svg b/resources/icons/20px/chevron-forward.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-chevron-forward.svg rename to resources/icons/20px/chevron-forward.svg diff --git a/resources/icons/20px/pt-icon-chevron-left.svg b/resources/icons/20px/chevron-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-chevron-left.svg rename to resources/icons/20px/chevron-left.svg diff --git a/resources/icons/20px/pt-icon-chevron-right.svg b/resources/icons/20px/chevron-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-chevron-right.svg rename to resources/icons/20px/chevron-right.svg diff --git a/resources/icons/20px/pt-icon-chevron-up.svg b/resources/icons/20px/chevron-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-chevron-up.svg rename to resources/icons/20px/chevron-up.svg diff --git a/resources/icons/20px/pt-icon-circle-arrow-down.svg b/resources/icons/20px/circle-arrow-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-circle-arrow-down.svg rename to resources/icons/20px/circle-arrow-down.svg diff --git a/resources/icons/20px/pt-icon-circle-arrow-left.svg b/resources/icons/20px/circle-arrow-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-circle-arrow-left.svg rename to resources/icons/20px/circle-arrow-left.svg diff --git a/resources/icons/20px/pt-icon-circle-arrow-right.svg b/resources/icons/20px/circle-arrow-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-circle-arrow-right.svg rename to resources/icons/20px/circle-arrow-right.svg diff --git a/resources/icons/20px/pt-icon-circle-arrow-up.svg b/resources/icons/20px/circle-arrow-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-circle-arrow-up.svg rename to resources/icons/20px/circle-arrow-up.svg diff --git a/resources/icons/20px/pt-icon-circle.svg b/resources/icons/20px/circle.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-circle.svg rename to resources/icons/20px/circle.svg diff --git a/resources/icons/20px/pt-icon-citation.svg b/resources/icons/20px/citation.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-citation.svg rename to resources/icons/20px/citation.svg diff --git a/resources/icons/20px/pt-icon-clipboard.svg b/resources/icons/20px/clipboard.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-clipboard.svg rename to resources/icons/20px/clipboard.svg diff --git a/resources/icons/20px/pt-icon-cloud-download.svg b/resources/icons/20px/cloud-download.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-cloud-download.svg rename to resources/icons/20px/cloud-download.svg diff --git a/resources/icons/20px/pt-icon-cloud-upload.svg b/resources/icons/20px/cloud-upload.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-cloud-upload.svg rename to resources/icons/20px/cloud-upload.svg diff --git a/resources/icons/20px/pt-icon-cloud.svg b/resources/icons/20px/cloud.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-cloud.svg rename to resources/icons/20px/cloud.svg diff --git a/resources/icons/20px/pt-icon-code-block.svg b/resources/icons/20px/code-block.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-code-block.svg rename to resources/icons/20px/code-block.svg diff --git a/resources/icons/20px/pt-icon-code.svg b/resources/icons/20px/code.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-code.svg rename to resources/icons/20px/code.svg diff --git a/resources/icons/20px/pt-icon-cog.svg b/resources/icons/20px/cog.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-cog.svg rename to resources/icons/20px/cog.svg diff --git a/resources/icons/20px/pt-icon-collapse-all.svg b/resources/icons/20px/collapse-all.svg similarity index 100% rename from resources/icons/20px/pt-icon-collapse-all.svg rename to resources/icons/20px/collapse-all.svg diff --git a/resources/icons/20px/pt-icon-column-layout.svg b/resources/icons/20px/column-layout.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-column-layout.svg rename to resources/icons/20px/column-layout.svg diff --git a/resources/icons/20px/pt-icon-comment.svg b/resources/icons/20px/comment.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-comment.svg rename to resources/icons/20px/comment.svg diff --git a/resources/icons/20px/pt-icon-comparison.svg b/resources/icons/20px/comparison.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-comparison.svg rename to resources/icons/20px/comparison.svg diff --git a/resources/icons/20px/pt-icon-compass.svg b/resources/icons/20px/compass.svg similarity index 100% rename from resources/icons/20px/pt-icon-compass.svg rename to resources/icons/20px/compass.svg diff --git a/resources/icons/20px/pt-icon-compressed.svg b/resources/icons/20px/compressed.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-compressed.svg rename to resources/icons/20px/compressed.svg diff --git a/resources/icons/20px/pt-icon-confirm.svg b/resources/icons/20px/confirm.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-confirm.svg rename to resources/icons/20px/confirm.svg diff --git a/resources/icons/20px/pt-icon-console.svg b/resources/icons/20px/console.svg similarity index 100% rename from resources/icons/20px/pt-icon-console.svg rename to resources/icons/20px/console.svg diff --git a/resources/icons/20px/pt-icon-contrast.svg b/resources/icons/20px/contrast.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-contrast.svg rename to resources/icons/20px/contrast.svg diff --git a/resources/icons/20px/pt-icon-control.svg b/resources/icons/20px/control.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-control.svg rename to resources/icons/20px/control.svg diff --git a/resources/icons/20px/pt-icon-credit-card.svg b/resources/icons/20px/credit-card.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-credit-card.svg rename to resources/icons/20px/credit-card.svg diff --git a/resources/icons/20px/pt-icon-cross.svg b/resources/icons/20px/cross.svg similarity index 100% rename from resources/icons/20px/pt-icon-cross.svg rename to resources/icons/20px/cross.svg diff --git a/resources/icons/20px/pt-icon-curved-range-chart.svg b/resources/icons/20px/curved-range-chart.svg similarity index 100% rename from resources/icons/20px/pt-icon-curved-range-chart.svg rename to resources/icons/20px/curved-range-chart.svg diff --git a/resources/icons/20px/pt-icon-cut.svg b/resources/icons/20px/cut.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-cut.svg rename to resources/icons/20px/cut.svg diff --git a/resources/icons/20px/pt-icon-dashboard.svg b/resources/icons/20px/dashboard.svg similarity index 100% rename from resources/icons/20px/pt-icon-dashboard.svg rename to resources/icons/20px/dashboard.svg diff --git a/resources/icons/20px/pt-icon-database.svg b/resources/icons/20px/database.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-database.svg rename to resources/icons/20px/database.svg diff --git a/resources/icons/20px/pt-icon-delete.svg b/resources/icons/20px/delete.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-delete.svg rename to resources/icons/20px/delete.svg diff --git a/resources/icons/20px/pt-icon-delta.svg b/resources/icons/20px/delta.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-delta.svg rename to resources/icons/20px/delta.svg diff --git a/resources/icons/20px/pt-icon-derive-column.svg b/resources/icons/20px/derive-column.svg similarity index 100% rename from resources/icons/20px/pt-icon-derive-column.svg rename to resources/icons/20px/derive-column.svg diff --git a/resources/icons/20px/pt-icon-desktop.svg b/resources/icons/20px/desktop.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-desktop.svg rename to resources/icons/20px/desktop.svg diff --git a/resources/icons/20px/pt-icon-direction-left.svg b/resources/icons/20px/direction-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-direction-left.svg rename to resources/icons/20px/direction-left.svg diff --git a/resources/icons/20px/pt-icon-direction-right.svg b/resources/icons/20px/direction-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-direction-right.svg rename to resources/icons/20px/direction-right.svg diff --git a/resources/icons/20px/pt-icon-disable.svg b/resources/icons/20px/disable.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-disable.svg rename to resources/icons/20px/disable.svg diff --git a/resources/icons/20px/pt-icon-document-open.svg b/resources/icons/20px/document-open.svg similarity index 100% rename from resources/icons/20px/pt-icon-document-open.svg rename to resources/icons/20px/document-open.svg diff --git a/resources/icons/20px/pt-icon-document-share.svg b/resources/icons/20px/document-share.svg similarity index 100% rename from resources/icons/20px/pt-icon-document-share.svg rename to resources/icons/20px/document-share.svg diff --git a/resources/icons/20px/pt-icon-document.svg b/resources/icons/20px/document.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-document.svg rename to resources/icons/20px/document.svg diff --git a/resources/icons/20px/pt-icon-dollar.svg b/resources/icons/20px/dollar.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-dollar.svg rename to resources/icons/20px/dollar.svg diff --git a/resources/icons/20px/pt-icon-dot.svg b/resources/icons/20px/dot.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-dot.svg rename to resources/icons/20px/dot.svg diff --git a/resources/icons/20px/pt-icon-double-caret-horizontal.svg b/resources/icons/20px/double-caret-horizontal.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-double-caret-horizontal.svg rename to resources/icons/20px/double-caret-horizontal.svg diff --git a/resources/icons/20px/pt-icon-double-caret-vertical.svg b/resources/icons/20px/double-caret-vertical.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-double-caret-vertical.svg rename to resources/icons/20px/double-caret-vertical.svg diff --git a/resources/icons/20px/pt-icon-double-chevron-down.svg b/resources/icons/20px/double-chevron-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-double-chevron-down.svg rename to resources/icons/20px/double-chevron-down.svg diff --git a/resources/icons/20px/pt-icon-double-chevron-left.svg b/resources/icons/20px/double-chevron-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-double-chevron-left.svg rename to resources/icons/20px/double-chevron-left.svg diff --git a/resources/icons/20px/pt-icon-double-chevron-right.svg b/resources/icons/20px/double-chevron-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-double-chevron-right.svg rename to resources/icons/20px/double-chevron-right.svg diff --git a/resources/icons/20px/pt-icon-double-chevron-up.svg b/resources/icons/20px/double-chevron-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-double-chevron-up.svg rename to resources/icons/20px/double-chevron-up.svg diff --git a/resources/icons/20px/pt-icon-doughnut-chart.svg b/resources/icons/20px/doughnut-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-doughnut-chart.svg rename to resources/icons/20px/doughnut-chart.svg diff --git a/resources/icons/20px/pt-icon-download.svg b/resources/icons/20px/download.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-download.svg rename to resources/icons/20px/download.svg diff --git a/resources/icons/20px/pt-icon-drag-handle-horizontal.svg b/resources/icons/20px/drag-handle-horizontal.svg similarity index 100% rename from resources/icons/20px/pt-icon-drag-handle-horizontal.svg rename to resources/icons/20px/drag-handle-horizontal.svg diff --git a/resources/icons/20px/pt-icon-drag-handle-vertical.svg b/resources/icons/20px/drag-handle-vertical.svg similarity index 100% rename from resources/icons/20px/pt-icon-drag-handle-vertical.svg rename to resources/icons/20px/drag-handle-vertical.svg diff --git a/resources/icons/20px/pt-icon-draw.svg b/resources/icons/20px/draw.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-draw.svg rename to resources/icons/20px/draw.svg diff --git a/resources/icons/20px/pt-icon-drive-time.svg b/resources/icons/20px/drive-time.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-drive-time.svg rename to resources/icons/20px/drive-time.svg diff --git a/resources/icons/20px/pt-icon-duplicate.svg b/resources/icons/20px/duplicate.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-duplicate.svg rename to resources/icons/20px/duplicate.svg diff --git a/resources/icons/20px/pt-icon-edit.svg b/resources/icons/20px/edit.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-edit.svg rename to resources/icons/20px/edit.svg diff --git a/resources/icons/20px/pt-icon-eject.svg b/resources/icons/20px/eject.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-eject.svg rename to resources/icons/20px/eject.svg diff --git a/resources/icons/20px/pt-icon-endorsed.svg b/resources/icons/20px/endorsed.svg similarity index 100% rename from resources/icons/20px/pt-icon-endorsed.svg rename to resources/icons/20px/endorsed.svg diff --git a/resources/icons/20px/pt-icon-envelope.svg b/resources/icons/20px/envelope.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-envelope.svg rename to resources/icons/20px/envelope.svg diff --git a/resources/icons/20px/pt-icon-eraser.svg b/resources/icons/20px/eraser.svg similarity index 100% rename from resources/icons/20px/pt-icon-eraser.svg rename to resources/icons/20px/eraser.svg diff --git a/resources/icons/20px/pt-icon-error.svg b/resources/icons/20px/error.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-error.svg rename to resources/icons/20px/error.svg diff --git a/resources/icons/20px/pt-icon-euro.svg b/resources/icons/20px/euro.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-euro.svg rename to resources/icons/20px/euro.svg diff --git a/resources/icons/20px/pt-icon-exchange.svg b/resources/icons/20px/exchange.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-exchange.svg rename to resources/icons/20px/exchange.svg diff --git a/resources/icons/20px/pt-icon-exclude-row.svg b/resources/icons/20px/exclude-row.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-exclude-row.svg rename to resources/icons/20px/exclude-row.svg diff --git a/resources/icons/20px/pt-icon-expand-all.svg b/resources/icons/20px/expand-all.svg similarity index 100% rename from resources/icons/20px/pt-icon-expand-all.svg rename to resources/icons/20px/expand-all.svg diff --git a/resources/icons/20px/pt-icon-export.svg b/resources/icons/20px/export.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-export.svg rename to resources/icons/20px/export.svg diff --git a/resources/icons/20px/pt-icon-eye-off.svg b/resources/icons/20px/eye-off.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-eye-off.svg rename to resources/icons/20px/eye-off.svg diff --git a/resources/icons/20px/pt-icon-eye-on.svg b/resources/icons/20px/eye-on.svg similarity index 100% rename from resources/icons/20px/pt-icon-eye-on.svg rename to resources/icons/20px/eye-on.svg diff --git a/resources/icons/20px/pt-icon-eye-open.svg b/resources/icons/20px/eye-open.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-eye-open.svg rename to resources/icons/20px/eye-open.svg diff --git a/resources/icons/20px/pt-icon-fast-backward.svg b/resources/icons/20px/fast-backward.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-fast-backward.svg rename to resources/icons/20px/fast-backward.svg diff --git a/resources/icons/20px/pt-icon-fast-forward.svg b/resources/icons/20px/fast-forward.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-fast-forward.svg rename to resources/icons/20px/fast-forward.svg diff --git a/resources/icons/20px/pt-icon-feed-subscribed.svg b/resources/icons/20px/feed-subscribed.svg similarity index 100% rename from resources/icons/20px/pt-icon-feed-subscribed.svg rename to resources/icons/20px/feed-subscribed.svg diff --git a/resources/icons/20px/pt-icon-feed.svg b/resources/icons/20px/feed.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-feed.svg rename to resources/icons/20px/feed.svg diff --git a/resources/icons/20px/pt-icon-film.svg b/resources/icons/20px/film.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-film.svg rename to resources/icons/20px/film.svg diff --git a/resources/icons/20px/pt-icon-filter-keep.svg b/resources/icons/20px/filter-keep.svg similarity index 100% rename from resources/icons/20px/pt-icon-filter-keep.svg rename to resources/icons/20px/filter-keep.svg diff --git a/resources/icons/20px/pt-icon-filter-list.svg b/resources/icons/20px/filter-list.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-filter-list.svg rename to resources/icons/20px/filter-list.svg diff --git a/resources/icons/20px/pt-icon-filter-remove.svg b/resources/icons/20px/filter-remove.svg similarity index 100% rename from resources/icons/20px/pt-icon-filter-remove.svg rename to resources/icons/20px/filter-remove.svg diff --git a/resources/icons/20px/pt-icon-filter.svg b/resources/icons/20px/filter.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-filter.svg rename to resources/icons/20px/filter.svg diff --git a/resources/icons/20px/pt-icon-flag.svg b/resources/icons/20px/flag.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-flag.svg rename to resources/icons/20px/flag.svg diff --git a/resources/icons/20px/pt-icon-flash.svg b/resources/icons/20px/flash.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-flash.svg rename to resources/icons/20px/flash.svg diff --git a/resources/icons/20px/pt-icon-floppy-disk.svg b/resources/icons/20px/floppy-disk.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-floppy-disk.svg rename to resources/icons/20px/floppy-disk.svg diff --git a/resources/icons/20px/pt-icon-flows.svg b/resources/icons/20px/flows.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-flows.svg rename to resources/icons/20px/flows.svg diff --git a/resources/icons/20px/pt-icon-folder-close.svg b/resources/icons/20px/folder-close.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-folder-close.svg rename to resources/icons/20px/folder-close.svg diff --git a/resources/icons/20px/pt-icon-folder-open.svg b/resources/icons/20px/folder-open.svg similarity index 100% rename from resources/icons/20px/pt-icon-folder-open.svg rename to resources/icons/20px/folder-open.svg diff --git a/resources/icons/20px/pt-icon-folder-shared-open.svg b/resources/icons/20px/folder-shared-open.svg similarity index 100% rename from resources/icons/20px/pt-icon-folder-shared-open.svg rename to resources/icons/20px/folder-shared-open.svg diff --git a/resources/icons/20px/pt-icon-folder-shared.svg b/resources/icons/20px/folder-shared.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-folder-shared.svg rename to resources/icons/20px/folder-shared.svg diff --git a/resources/icons/20px/pt-icon-follower.svg b/resources/icons/20px/follower.svg similarity index 100% rename from resources/icons/20px/pt-icon-follower.svg rename to resources/icons/20px/follower.svg diff --git a/resources/icons/20px/pt-icon-following.svg b/resources/icons/20px/following.svg similarity index 100% rename from resources/icons/20px/pt-icon-following.svg rename to resources/icons/20px/following.svg diff --git a/resources/icons/20px/pt-icon-font.svg b/resources/icons/20px/font.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-font.svg rename to resources/icons/20px/font.svg diff --git a/resources/icons/20px/pt-icon-fork.svg b/resources/icons/20px/fork.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-fork.svg rename to resources/icons/20px/fork.svg diff --git a/resources/icons/20px/pt-icon-form.svg b/resources/icons/20px/form.svg similarity index 100% rename from resources/icons/20px/pt-icon-form.svg rename to resources/icons/20px/form.svg diff --git a/resources/icons/20px/pt-icon-full-circle.svg b/resources/icons/20px/full-circle.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-full-circle.svg rename to resources/icons/20px/full-circle.svg diff --git a/resources/icons/20px/pt-icon-full-stacked-chart.svg b/resources/icons/20px/full-stacked-chart.svg similarity index 100% rename from resources/icons/20px/pt-icon-full-stacked-chart.svg rename to resources/icons/20px/full-stacked-chart.svg diff --git a/resources/icons/20px/pt-icon-fullscreen.svg b/resources/icons/20px/fullscreen.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-fullscreen.svg rename to resources/icons/20px/fullscreen.svg diff --git a/resources/icons/20px/pt-icon-function.svg b/resources/icons/20px/function.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-function.svg rename to resources/icons/20px/function.svg diff --git a/resources/icons/20px/pt-icon-gantt-chart.svg b/resources/icons/20px/gantt-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-gantt-chart.svg rename to resources/icons/20px/gantt-chart.svg diff --git a/resources/icons/20px/pt-icon-geolocation.svg b/resources/icons/20px/geolocation.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-geolocation.svg rename to resources/icons/20px/geolocation.svg diff --git a/resources/icons/20px/pt-icon-geosearch.svg b/resources/icons/20px/geosearch.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-geosearch.svg rename to resources/icons/20px/geosearch.svg diff --git a/resources/icons/20px/pt-icon-git-branch.svg b/resources/icons/20px/git-branch.svg similarity index 100% rename from resources/icons/20px/pt-icon-git-branch.svg rename to resources/icons/20px/git-branch.svg diff --git a/resources/icons/20px/pt-icon-git-commit.svg b/resources/icons/20px/git-commit.svg similarity index 100% rename from resources/icons/20px/pt-icon-git-commit.svg rename to resources/icons/20px/git-commit.svg diff --git a/resources/icons/20px/pt-icon-git-merge.svg b/resources/icons/20px/git-merge.svg similarity index 100% rename from resources/icons/20px/pt-icon-git-merge.svg rename to resources/icons/20px/git-merge.svg diff --git a/resources/icons/20px/pt-icon-git-new-branch.svg b/resources/icons/20px/git-new-branch.svg similarity index 100% rename from resources/icons/20px/pt-icon-git-new-branch.svg rename to resources/icons/20px/git-new-branch.svg diff --git a/resources/icons/20px/pt-icon-git-pull.svg b/resources/icons/20px/git-pull.svg similarity index 100% rename from resources/icons/20px/pt-icon-git-pull.svg rename to resources/icons/20px/git-pull.svg diff --git a/resources/icons/20px/pt-icon-git-push.svg b/resources/icons/20px/git-push.svg similarity index 100% rename from resources/icons/20px/pt-icon-git-push.svg rename to resources/icons/20px/git-push.svg diff --git a/resources/icons/20px/pt-icon-git-repo.svg b/resources/icons/20px/git-repo.svg similarity index 100% rename from resources/icons/20px/pt-icon-git-repo.svg rename to resources/icons/20px/git-repo.svg diff --git a/resources/icons/20px/pt-icon-glass.svg b/resources/icons/20px/glass.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-glass.svg rename to resources/icons/20px/glass.svg diff --git a/resources/icons/20px/pt-icon-globe.svg b/resources/icons/20px/globe.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-globe.svg rename to resources/icons/20px/globe.svg diff --git a/resources/icons/20px/pt-icon-graph-remove.svg b/resources/icons/20px/graph-remove.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-graph-remove.svg rename to resources/icons/20px/graph-remove.svg diff --git a/resources/icons/20px/pt-icon-graph.svg b/resources/icons/20px/graph.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-graph.svg rename to resources/icons/20px/graph.svg diff --git a/resources/icons/20px/pt-icon-grid-view.svg b/resources/icons/20px/grid-view.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-grid-view.svg rename to resources/icons/20px/grid-view.svg diff --git a/resources/icons/20px/pt-icon-grid.svg b/resources/icons/20px/grid.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-grid.svg rename to resources/icons/20px/grid.svg diff --git a/resources/icons/20px/pt-icon-group-objects.svg b/resources/icons/20px/group-objects.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-group-objects.svg rename to resources/icons/20px/group-objects.svg diff --git a/resources/icons/20px/pt-icon-grouped-bar-chart.svg b/resources/icons/20px/grouped-bar-chart.svg similarity index 100% rename from resources/icons/20px/pt-icon-grouped-bar-chart.svg rename to resources/icons/20px/grouped-bar-chart.svg diff --git a/resources/icons/20px/pt-icon-hand-down.svg b/resources/icons/20px/hand-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-hand-down.svg rename to resources/icons/20px/hand-down.svg diff --git a/resources/icons/20px/pt-icon-hand-left.svg b/resources/icons/20px/hand-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-hand-left.svg rename to resources/icons/20px/hand-left.svg diff --git a/resources/icons/20px/pt-icon-hand-right.svg b/resources/icons/20px/hand-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-hand-right.svg rename to resources/icons/20px/hand-right.svg diff --git a/resources/icons/20px/pt-icon-hand-up.svg b/resources/icons/20px/hand-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-hand-up.svg rename to resources/icons/20px/hand-up.svg diff --git a/resources/icons/20px/pt-icon-hand.svg b/resources/icons/20px/hand.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-hand.svg rename to resources/icons/20px/hand.svg diff --git a/resources/icons/20px/pt-icon-header-one.svg b/resources/icons/20px/header-one.svg similarity index 100% rename from resources/icons/20px/pt-icon-header-one.svg rename to resources/icons/20px/header-one.svg diff --git a/resources/icons/20px/pt-icon-header-two.svg b/resources/icons/20px/header-two.svg similarity index 100% rename from resources/icons/20px/pt-icon-header-two.svg rename to resources/icons/20px/header-two.svg diff --git a/resources/icons/20px/pt-icon-header.svg b/resources/icons/20px/header.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-header.svg rename to resources/icons/20px/header.svg diff --git a/resources/icons/20px/pt-icon-headset.svg b/resources/icons/20px/headset.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-headset.svg rename to resources/icons/20px/headset.svg diff --git a/resources/icons/20px/pt-icon-heart-broken.svg b/resources/icons/20px/heart-broken.svg similarity index 100% rename from resources/icons/20px/pt-icon-heart-broken.svg rename to resources/icons/20px/heart-broken.svg diff --git a/resources/icons/20px/pt-icon-heart.svg b/resources/icons/20px/heart.svg similarity index 100% rename from resources/icons/20px/pt-icon-heart.svg rename to resources/icons/20px/heart.svg diff --git a/resources/icons/20px/pt-icon-heat-grid.svg b/resources/icons/20px/heat-grid.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-heat-grid.svg rename to resources/icons/20px/heat-grid.svg diff --git a/resources/icons/20px/pt-icon-heatmap.svg b/resources/icons/20px/heatmap.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-heatmap.svg rename to resources/icons/20px/heatmap.svg diff --git a/resources/icons/20px/pt-icon-help.svg b/resources/icons/20px/help.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-help.svg rename to resources/icons/20px/help.svg diff --git a/resources/icons/20px/pt-icon-helper-management.svg b/resources/icons/20px/helper-management.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-helper-management.svg rename to resources/icons/20px/helper-management.svg diff --git a/resources/icons/20px/pt-icon-highlight.svg b/resources/icons/20px/highlight.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-highlight.svg rename to resources/icons/20px/highlight.svg diff --git a/resources/icons/20px/pt-icon-history.svg b/resources/icons/20px/history.svg similarity index 100% rename from resources/icons/20px/pt-icon-history.svg rename to resources/icons/20px/history.svg diff --git a/resources/icons/20px/pt-icon-home.svg b/resources/icons/20px/home.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-home.svg rename to resources/icons/20px/home.svg diff --git a/resources/icons/20px/pt-icon-horizontal-bar-chart-asc.svg b/resources/icons/20px/horizontal-bar-chart-asc.svg similarity index 100% rename from resources/icons/20px/pt-icon-horizontal-bar-chart-asc.svg rename to resources/icons/20px/horizontal-bar-chart-asc.svg diff --git a/resources/icons/20px/pt-icon-horizontal-bar-chart-desc.svg b/resources/icons/20px/horizontal-bar-chart-desc.svg similarity index 100% rename from resources/icons/20px/pt-icon-horizontal-bar-chart-desc.svg rename to resources/icons/20px/horizontal-bar-chart-desc.svg diff --git a/resources/icons/20px/pt-icon-horizontal-bar-chart.svg b/resources/icons/20px/horizontal-bar-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-horizontal-bar-chart.svg rename to resources/icons/20px/horizontal-bar-chart.svg diff --git a/resources/icons/20px/pt-icon-horizontal-distribution.svg b/resources/icons/20px/horizontal-distribution.svg similarity index 100% rename from resources/icons/20px/pt-icon-horizontal-distribution.svg rename to resources/icons/20px/horizontal-distribution.svg diff --git a/resources/icons/20px/pt-icon-id-number.svg b/resources/icons/20px/id-number.svg similarity index 100% rename from resources/icons/20px/pt-icon-id-number.svg rename to resources/icons/20px/id-number.svg diff --git a/resources/icons/20px/pt-icon-image-rotate-left.svg b/resources/icons/20px/image-rotate-left.svg similarity index 100% rename from resources/icons/20px/pt-icon-image-rotate-left.svg rename to resources/icons/20px/image-rotate-left.svg diff --git a/resources/icons/20px/pt-icon-image-rotate-right.svg b/resources/icons/20px/image-rotate-right.svg similarity index 100% rename from resources/icons/20px/pt-icon-image-rotate-right.svg rename to resources/icons/20px/image-rotate-right.svg diff --git a/resources/icons/20px/pt-icon-import.svg b/resources/icons/20px/import.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-import.svg rename to resources/icons/20px/import.svg diff --git a/resources/icons/20px/pt-icon-inbox.svg b/resources/icons/20px/inbox.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-inbox.svg rename to resources/icons/20px/inbox.svg diff --git a/resources/icons/20px/pt-icon-info-sign.svg b/resources/icons/20px/info-sign.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-info-sign.svg rename to resources/icons/20px/info-sign.svg diff --git a/resources/icons/20px/pt-icon-inner-join.svg b/resources/icons/20px/inner-join.svg similarity index 100% rename from resources/icons/20px/pt-icon-inner-join.svg rename to resources/icons/20px/inner-join.svg diff --git a/resources/icons/20px/pt-icon-insert.svg b/resources/icons/20px/insert.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-insert.svg rename to resources/icons/20px/insert.svg diff --git a/resources/icons/20px/pt-icon-intersection.svg b/resources/icons/20px/intersection.svg similarity index 100% rename from resources/icons/20px/pt-icon-intersection.svg rename to resources/icons/20px/intersection.svg diff --git a/resources/icons/20px/pt-icon-ip-address.svg b/resources/icons/20px/ip-address.svg similarity index 100% rename from resources/icons/20px/pt-icon-ip-address.svg rename to resources/icons/20px/ip-address.svg diff --git a/resources/icons/20px/pt-icon-issue-closed.svg b/resources/icons/20px/issue-closed.svg similarity index 100% rename from resources/icons/20px/pt-icon-issue-closed.svg rename to resources/icons/20px/issue-closed.svg diff --git a/resources/icons/20px/pt-icon-issue-new.svg b/resources/icons/20px/issue-new.svg similarity index 100% rename from resources/icons/20px/pt-icon-issue-new.svg rename to resources/icons/20px/issue-new.svg diff --git a/resources/icons/20px/pt-icon-issue.svg b/resources/icons/20px/issue.svg similarity index 100% rename from resources/icons/20px/pt-icon-issue.svg rename to resources/icons/20px/issue.svg diff --git a/resources/icons/20px/pt-icon-italic.svg b/resources/icons/20px/italic.svg similarity index 100% rename from resources/icons/20px/pt-icon-italic.svg rename to resources/icons/20px/italic.svg diff --git a/resources/icons/20px/pt-icon-join-table.svg b/resources/icons/20px/join-table.svg similarity index 100% rename from resources/icons/20px/pt-icon-join-table.svg rename to resources/icons/20px/join-table.svg diff --git a/resources/icons/20px/pt-icon-key-backspace.svg b/resources/icons/20px/key-backspace.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-key-backspace.svg rename to resources/icons/20px/key-backspace.svg diff --git a/resources/icons/20px/pt-icon-key-command.svg b/resources/icons/20px/key-command.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-key-command.svg rename to resources/icons/20px/key-command.svg diff --git a/resources/icons/20px/pt-icon-key-control.svg b/resources/icons/20px/key-control.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-key-control.svg rename to resources/icons/20px/key-control.svg diff --git a/resources/icons/20px/pt-icon-key-delete.svg b/resources/icons/20px/key-delete.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-key-delete.svg rename to resources/icons/20px/key-delete.svg diff --git a/resources/icons/20px/pt-icon-key-enter.svg b/resources/icons/20px/key-enter.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-key-enter.svg rename to resources/icons/20px/key-enter.svg diff --git a/resources/icons/20px/pt-icon-key-escape.svg b/resources/icons/20px/key-escape.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-key-escape.svg rename to resources/icons/20px/key-escape.svg diff --git a/resources/icons/20px/pt-icon-key-option.svg b/resources/icons/20px/key-option.svg similarity index 100% rename from resources/icons/20px/pt-icon-key-option.svg rename to resources/icons/20px/key-option.svg diff --git a/resources/icons/20px/pt-icon-key-shift.svg b/resources/icons/20px/key-shift.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-key-shift.svg rename to resources/icons/20px/key-shift.svg diff --git a/resources/icons/20px/pt-icon-key-tab.svg b/resources/icons/20px/key-tab.svg similarity index 100% rename from resources/icons/20px/pt-icon-key-tab.svg rename to resources/icons/20px/key-tab.svg diff --git a/resources/icons/20px/pt-icon-key.svg b/resources/icons/20px/key.svg similarity index 100% rename from resources/icons/20px/pt-icon-key.svg rename to resources/icons/20px/key.svg diff --git a/resources/icons/20px/pt-icon-known-vehicle.svg b/resources/icons/20px/known-vehicle.svg similarity index 100% rename from resources/icons/20px/pt-icon-known-vehicle.svg rename to resources/icons/20px/known-vehicle.svg diff --git a/resources/icons/20px/pt-icon-label.svg b/resources/icons/20px/label.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-label.svg rename to resources/icons/20px/label.svg diff --git a/resources/icons/20px/pt-icon-layer.svg b/resources/icons/20px/layer.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-layer.svg rename to resources/icons/20px/layer.svg diff --git a/resources/icons/20px/pt-icon-layers.svg b/resources/icons/20px/layers.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-layers.svg rename to resources/icons/20px/layers.svg diff --git a/resources/icons/20px/pt-icon-layout-auto.svg b/resources/icons/20px/layout-auto.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-layout-auto.svg rename to resources/icons/20px/layout-auto.svg diff --git a/resources/icons/20px/pt-icon-layout-balloon.svg b/resources/icons/20px/layout-balloon.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-layout-balloon.svg rename to resources/icons/20px/layout-balloon.svg diff --git a/resources/icons/20px/pt-icon-layout-circle.svg b/resources/icons/20px/layout-circle.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-layout-circle.svg rename to resources/icons/20px/layout-circle.svg diff --git a/resources/icons/20px/pt-icon-layout-grid.svg b/resources/icons/20px/layout-grid.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-layout-grid.svg rename to resources/icons/20px/layout-grid.svg diff --git a/resources/icons/20px/pt-icon-layout-group-by.svg b/resources/icons/20px/layout-group-by.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-layout-group-by.svg rename to resources/icons/20px/layout-group-by.svg diff --git a/resources/icons/20px/pt-icon-layout-hierarchy.svg b/resources/icons/20px/layout-hierarchy.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-layout-hierarchy.svg rename to resources/icons/20px/layout-hierarchy.svg diff --git a/resources/icons/20px/pt-icon-layout-linear.svg b/resources/icons/20px/layout-linear.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-layout-linear.svg rename to resources/icons/20px/layout-linear.svg diff --git a/resources/icons/20px/pt-icon-layout-skew-grid.svg b/resources/icons/20px/layout-skew-grid.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-layout-skew-grid.svg rename to resources/icons/20px/layout-skew-grid.svg diff --git a/resources/icons/20px/pt-icon-layout-sorted-clusters.svg b/resources/icons/20px/layout-sorted-clusters.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-layout-sorted-clusters.svg rename to resources/icons/20px/layout-sorted-clusters.svg diff --git a/resources/icons/20px/pt-icon-layout.svg b/resources/icons/20px/layout.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-layout.svg rename to resources/icons/20px/layout.svg diff --git a/resources/icons/20px/pt-icon-left-join.svg b/resources/icons/20px/left-join.svg similarity index 100% rename from resources/icons/20px/pt-icon-left-join.svg rename to resources/icons/20px/left-join.svg diff --git a/resources/icons/20px/pt-icon-lightbulb.svg b/resources/icons/20px/lightbulb.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-lightbulb.svg rename to resources/icons/20px/lightbulb.svg diff --git a/resources/icons/20px/pt-icon-link.svg b/resources/icons/20px/link.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-link.svg rename to resources/icons/20px/link.svg diff --git a/resources/icons/20px/pt-icon-list-detail-view.svg b/resources/icons/20px/list-detail-view.svg similarity index 100% rename from resources/icons/20px/pt-icon-list-detail-view.svg rename to resources/icons/20px/list-detail-view.svg diff --git a/resources/icons/20px/pt-icon-list.svg b/resources/icons/20px/list.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-list.svg rename to resources/icons/20px/list.svg diff --git a/resources/icons/20px/pt-icon-locate.svg b/resources/icons/20px/locate.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-locate.svg rename to resources/icons/20px/locate.svg diff --git a/resources/icons/20px/pt-icon-lock.svg b/resources/icons/20px/lock.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-lock.svg rename to resources/icons/20px/lock.svg diff --git a/resources/icons/20px/pt-icon-log-in.svg b/resources/icons/20px/log-in.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-log-in.svg rename to resources/icons/20px/log-in.svg diff --git a/resources/icons/20px/pt-icon-log-out.svg b/resources/icons/20px/log-out.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-log-out.svg rename to resources/icons/20px/log-out.svg diff --git a/resources/icons/20px/pt-icon-manual.svg b/resources/icons/20px/manual.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-manual.svg rename to resources/icons/20px/manual.svg diff --git a/resources/icons/20px/pt-icon-manually-entered-data.svg b/resources/icons/20px/manually-entered-data.svg similarity index 100% rename from resources/icons/20px/pt-icon-manually-entered-data.svg rename to resources/icons/20px/manually-entered-data.svg diff --git a/resources/icons/20px/pt-icon-map-create.svg b/resources/icons/20px/map-create.svg similarity index 100% rename from resources/icons/20px/pt-icon-map-create.svg rename to resources/icons/20px/map-create.svg diff --git a/resources/icons/20px/pt-icon-map-marker.svg b/resources/icons/20px/map-marker.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-map-marker.svg rename to resources/icons/20px/map-marker.svg diff --git a/resources/icons/20px/pt-icon-map.svg b/resources/icons/20px/map.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-map.svg rename to resources/icons/20px/map.svg diff --git a/resources/icons/20px/pt-icon-maximize.svg b/resources/icons/20px/maximize.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-maximize.svg rename to resources/icons/20px/maximize.svg diff --git a/resources/icons/20px/pt-icon-media.svg b/resources/icons/20px/media.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-media.svg rename to resources/icons/20px/media.svg diff --git a/resources/icons/20px/pt-icon-menu-closed.svg b/resources/icons/20px/menu-closed.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-menu-closed.svg rename to resources/icons/20px/menu-closed.svg diff --git a/resources/icons/20px/pt-icon-menu-open.svg b/resources/icons/20px/menu-open.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-menu-open.svg rename to resources/icons/20px/menu-open.svg diff --git a/resources/icons/20px/pt-icon-menu.svg b/resources/icons/20px/menu.svg similarity index 100% rename from resources/icons/20px/pt-icon-menu.svg rename to resources/icons/20px/menu.svg diff --git a/resources/icons/20px/pt-icon-merge-columns.svg b/resources/icons/20px/merge-columns.svg similarity index 100% rename from resources/icons/20px/pt-icon-merge-columns.svg rename to resources/icons/20px/merge-columns.svg diff --git a/resources/icons/20px/pt-icon-merge-links.svg b/resources/icons/20px/merge-links.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-merge-links.svg rename to resources/icons/20px/merge-links.svg diff --git a/resources/icons/20px/pt-icon-minimize.svg b/resources/icons/20px/minimize.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-minimize.svg rename to resources/icons/20px/minimize.svg diff --git a/resources/icons/20px/pt-icon-minus.svg b/resources/icons/20px/minus.svg similarity index 100% rename from resources/icons/20px/pt-icon-minus.svg rename to resources/icons/20px/minus.svg diff --git a/resources/icons/20px/pt-icon-mobile-phone.svg b/resources/icons/20px/mobile-phone.svg similarity index 100% rename from resources/icons/20px/pt-icon-mobile-phone.svg rename to resources/icons/20px/mobile-phone.svg diff --git a/resources/icons/20px/pt-icon-mobile-video.svg b/resources/icons/20px/mobile-video.svg similarity index 100% rename from resources/icons/20px/pt-icon-mobile-video.svg rename to resources/icons/20px/mobile-video.svg diff --git a/resources/icons/20px/pt-icon-moon.svg b/resources/icons/20px/moon.svg similarity index 100% rename from resources/icons/20px/pt-icon-moon.svg rename to resources/icons/20px/moon.svg diff --git a/resources/icons/20px/pt-icon-more.svg b/resources/icons/20px/more.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-more.svg rename to resources/icons/20px/more.svg diff --git a/resources/icons/20px/pt-icon-move.svg b/resources/icons/20px/move.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-move.svg rename to resources/icons/20px/move.svg diff --git a/resources/icons/20px/pt-icon-mugshot.svg b/resources/icons/20px/mugshot.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-mugshot.svg rename to resources/icons/20px/mugshot.svg diff --git a/resources/icons/20px/pt-icon-multi-select.svg b/resources/icons/20px/multi-select.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-multi-select.svg rename to resources/icons/20px/multi-select.svg diff --git a/resources/icons/20px/pt-icon-music.svg b/resources/icons/20px/music.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-music.svg rename to resources/icons/20px/music.svg diff --git a/resources/icons/20px/pt-icon-new-grid-item.svg b/resources/icons/20px/new-grid-item.svg similarity index 100% rename from resources/icons/20px/pt-icon-new-grid-item.svg rename to resources/icons/20px/new-grid-item.svg diff --git a/resources/icons/20px/pt-icon-new-link.svg b/resources/icons/20px/new-link.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-new-link.svg rename to resources/icons/20px/new-link.svg diff --git a/resources/icons/20px/pt-icon-new-object.svg b/resources/icons/20px/new-object.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-new-object.svg rename to resources/icons/20px/new-object.svg diff --git a/resources/icons/20px/pt-icon-new-person.svg b/resources/icons/20px/new-person.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-new-person.svg rename to resources/icons/20px/new-person.svg diff --git a/resources/icons/20px/pt-icon-new-prescription.svg b/resources/icons/20px/new-prescription.svg similarity index 100% rename from resources/icons/20px/pt-icon-new-prescription.svg rename to resources/icons/20px/new-prescription.svg diff --git a/resources/icons/20px/pt-icon-new-text-box.svg b/resources/icons/20px/new-text-box.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-new-text-box.svg rename to resources/icons/20px/new-text-box.svg diff --git a/resources/icons/20px/pt-icon-ninja.svg b/resources/icons/20px/ninja.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-ninja.svg rename to resources/icons/20px/ninja.svg diff --git a/resources/icons/20px/pt-icon-notifications.svg b/resources/icons/20px/notifications.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-notifications.svg rename to resources/icons/20px/notifications.svg diff --git a/resources/icons/20px/pt-icon-numbered-list.svg b/resources/icons/20px/numbered-list.svg similarity index 100% rename from resources/icons/20px/pt-icon-numbered-list.svg rename to resources/icons/20px/numbered-list.svg diff --git a/resources/icons/20px/pt-icon-numerical.svg b/resources/icons/20px/numerical.svg similarity index 100% rename from resources/icons/20px/pt-icon-numerical.svg rename to resources/icons/20px/numerical.svg diff --git a/resources/icons/20px/pt-icon-office.svg b/resources/icons/20px/office.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-office.svg rename to resources/icons/20px/office.svg diff --git a/resources/icons/20px/pt-icon-offline.svg b/resources/icons/20px/offline.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-offline.svg rename to resources/icons/20px/offline.svg diff --git a/resources/icons/20px/pt-icon-oil-field.svg b/resources/icons/20px/oil-field.svg similarity index 100% rename from resources/icons/20px/pt-icon-oil-field.svg rename to resources/icons/20px/oil-field.svg diff --git a/resources/icons/20px/pt-icon-one-column.svg b/resources/icons/20px/one-column.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-one-column.svg rename to resources/icons/20px/one-column.svg diff --git a/resources/icons/20px/pt-icon-page-layout.svg b/resources/icons/20px/page-layout.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-page-layout.svg rename to resources/icons/20px/page-layout.svg diff --git a/resources/icons/20px/pt-icon-panel-stats.svg b/resources/icons/20px/panel-stats.svg similarity index 100% rename from resources/icons/20px/pt-icon-panel-stats.svg rename to resources/icons/20px/panel-stats.svg diff --git a/resources/icons/20px/pt-icon-panel-table.svg b/resources/icons/20px/panel-table.svg similarity index 100% rename from resources/icons/20px/pt-icon-panel-table.svg rename to resources/icons/20px/panel-table.svg diff --git a/resources/icons/20px/pt-icon-paperclip.svg b/resources/icons/20px/paperclip.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-paperclip.svg rename to resources/icons/20px/paperclip.svg diff --git a/resources/icons/20px/pt-icon-paragraph.svg b/resources/icons/20px/paragraph.svg similarity index 100% rename from resources/icons/20px/pt-icon-paragraph.svg rename to resources/icons/20px/paragraph.svg diff --git a/resources/icons/20px/pt-icon-path-search.svg b/resources/icons/20px/path-search.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-path-search.svg rename to resources/icons/20px/path-search.svg diff --git a/resources/icons/20px/pt-icon-path.svg b/resources/icons/20px/path.svg similarity index 100% rename from resources/icons/20px/pt-icon-path.svg rename to resources/icons/20px/path.svg diff --git a/resources/icons/20px/pt-icon-pause.svg b/resources/icons/20px/pause.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-pause.svg rename to resources/icons/20px/pause.svg diff --git a/resources/icons/20px/pt-icon-people.svg b/resources/icons/20px/people.svg similarity index 100% rename from resources/icons/20px/pt-icon-people.svg rename to resources/icons/20px/people.svg diff --git a/resources/icons/20px/pt-icon-percentage.svg b/resources/icons/20px/percentage.svg similarity index 100% rename from resources/icons/20px/pt-icon-percentage.svg rename to resources/icons/20px/percentage.svg diff --git a/resources/icons/20px/pt-icon-person.svg b/resources/icons/20px/person.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-person.svg rename to resources/icons/20px/person.svg diff --git a/resources/icons/20px/pt-icon-phone.svg b/resources/icons/20px/phone.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-phone.svg rename to resources/icons/20px/phone.svg diff --git a/resources/icons/20px/pt-icon-pie-chart.svg b/resources/icons/20px/pie-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-pie-chart.svg rename to resources/icons/20px/pie-chart.svg diff --git a/resources/icons/20px/pt-icon-pin.svg b/resources/icons/20px/pin.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-pin.svg rename to resources/icons/20px/pin.svg diff --git a/resources/icons/20px/pt-icon-pivot-table.svg b/resources/icons/20px/pivot-table.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-pivot-table.svg rename to resources/icons/20px/pivot-table.svg diff --git a/resources/icons/20px/pt-icon-pivot.svg b/resources/icons/20px/pivot.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-pivot.svg rename to resources/icons/20px/pivot.svg diff --git a/resources/icons/20px/pt-icon-play.svg b/resources/icons/20px/play.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-play.svg rename to resources/icons/20px/play.svg diff --git a/resources/icons/20px/pt-icon-plus.svg b/resources/icons/20px/plus.svg similarity index 100% rename from resources/icons/20px/pt-icon-plus.svg rename to resources/icons/20px/plus.svg diff --git a/resources/icons/20px/pt-icon-polygon-filter.svg b/resources/icons/20px/polygon-filter.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-polygon-filter.svg rename to resources/icons/20px/polygon-filter.svg diff --git a/resources/icons/20px/pt-icon-power.svg b/resources/icons/20px/power.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-power.svg rename to resources/icons/20px/power.svg diff --git a/resources/icons/20px/pt-icon-predictive-analysis.svg b/resources/icons/20px/predictive-analysis.svg similarity index 100% rename from resources/icons/20px/pt-icon-predictive-analysis.svg rename to resources/icons/20px/predictive-analysis.svg diff --git a/resources/icons/20px/pt-icon-prescription.svg b/resources/icons/20px/prescription.svg similarity index 100% rename from resources/icons/20px/pt-icon-prescription.svg rename to resources/icons/20px/prescription.svg diff --git a/resources/icons/20px/pt-icon-presentation.svg b/resources/icons/20px/presentation.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-presentation.svg rename to resources/icons/20px/presentation.svg diff --git a/resources/icons/20px/pt-icon-print.svg b/resources/icons/20px/print.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-print.svg rename to resources/icons/20px/print.svg diff --git a/resources/icons/20px/pt-icon-projects.svg b/resources/icons/20px/projects.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-projects.svg rename to resources/icons/20px/projects.svg diff --git a/resources/icons/20px/pt-icon-properties.svg b/resources/icons/20px/properties.svg similarity index 100% rename from resources/icons/20px/pt-icon-properties.svg rename to resources/icons/20px/properties.svg diff --git a/resources/icons/20px/pt-icon-property.svg b/resources/icons/20px/property.svg similarity index 100% rename from resources/icons/20px/pt-icon-property.svg rename to resources/icons/20px/property.svg diff --git a/resources/icons/20px/pt-icon-publish-function.svg b/resources/icons/20px/publish-function.svg similarity index 100% rename from resources/icons/20px/pt-icon-publish-function.svg rename to resources/icons/20px/publish-function.svg diff --git a/resources/icons/20px/pt-icon-pulse.svg b/resources/icons/20px/pulse.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-pulse.svg rename to resources/icons/20px/pulse.svg diff --git a/resources/icons/20px/pt-icon-random.svg b/resources/icons/20px/random.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-random.svg rename to resources/icons/20px/random.svg diff --git a/resources/icons/20px/pt-icon-record.svg b/resources/icons/20px/record.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-record.svg rename to resources/icons/20px/record.svg diff --git a/resources/icons/20px/pt-icon-redo.svg b/resources/icons/20px/redo.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-redo.svg rename to resources/icons/20px/redo.svg diff --git a/resources/icons/20px/pt-icon-refresh.svg b/resources/icons/20px/refresh.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-refresh.svg rename to resources/icons/20px/refresh.svg diff --git a/resources/icons/20px/pt-icon-regression-chart.svg b/resources/icons/20px/regression-chart.svg similarity index 100% rename from resources/icons/20px/pt-icon-regression-chart.svg rename to resources/icons/20px/regression-chart.svg diff --git a/resources/icons/20px/pt-icon-remove-column-left.svg b/resources/icons/20px/remove-column-left.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-remove-column-left.svg rename to resources/icons/20px/remove-column-left.svg diff --git a/resources/icons/20px/pt-icon-remove-column-right.svg b/resources/icons/20px/remove-column-right.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-remove-column-right.svg rename to resources/icons/20px/remove-column-right.svg diff --git a/resources/icons/20px/pt-icon-remove-column.svg b/resources/icons/20px/remove-column.svg similarity index 100% rename from resources/icons/20px/pt-icon-remove-column.svg rename to resources/icons/20px/remove-column.svg diff --git a/resources/icons/20px/pt-icon-remove-row-bottom.svg b/resources/icons/20px/remove-row-bottom.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-remove-row-bottom.svg rename to resources/icons/20px/remove-row-bottom.svg diff --git a/resources/icons/20px/pt-icon-remove-row-top.svg b/resources/icons/20px/remove-row-top.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-remove-row-top.svg rename to resources/icons/20px/remove-row-top.svg diff --git a/resources/icons/20px/pt-icon-remove.svg b/resources/icons/20px/remove.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-remove.svg rename to resources/icons/20px/remove.svg diff --git a/resources/icons/20px/pt-icon-repeat.svg b/resources/icons/20px/repeat.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-repeat.svg rename to resources/icons/20px/repeat.svg diff --git a/resources/icons/20px/pt-icon-resolve.svg b/resources/icons/20px/resolve.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-resolve.svg rename to resources/icons/20px/resolve.svg diff --git a/resources/icons/20px/pt-icon-rig.svg b/resources/icons/20px/rig.svg similarity index 100% rename from resources/icons/20px/pt-icon-rig.svg rename to resources/icons/20px/rig.svg diff --git a/resources/icons/20px/pt-icon-right-join.svg b/resources/icons/20px/right-join.svg similarity index 100% rename from resources/icons/20px/pt-icon-right-join.svg rename to resources/icons/20px/right-join.svg diff --git a/resources/icons/20px/pt-icon-ring.svg b/resources/icons/20px/ring.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-ring.svg rename to resources/icons/20px/ring.svg diff --git a/resources/icons/20px/pt-icon-rotate-document.svg b/resources/icons/20px/rotate-document.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-rotate-document.svg rename to resources/icons/20px/rotate-document.svg diff --git a/resources/icons/20px/pt-icon-rotate-page.svg b/resources/icons/20px/rotate-page.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-rotate-page.svg rename to resources/icons/20px/rotate-page.svg diff --git a/resources/icons/20px/pt-icon-satellite.svg b/resources/icons/20px/satellite.svg similarity index 100% rename from resources/icons/20px/pt-icon-satellite.svg rename to resources/icons/20px/satellite.svg diff --git a/resources/icons/20px/pt-icon-saved.svg b/resources/icons/20px/saved.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-saved.svg rename to resources/icons/20px/saved.svg diff --git a/resources/icons/20px/pt-icon-scatter-plot.svg b/resources/icons/20px/scatter-plot.svg similarity index 100% rename from resources/icons/20px/pt-icon-scatter-plot.svg rename to resources/icons/20px/scatter-plot.svg diff --git a/resources/icons/20px/pt-icon-search-around.svg b/resources/icons/20px/search-around.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-search-around.svg rename to resources/icons/20px/search-around.svg diff --git a/resources/icons/20px/pt-icon-search-template.svg b/resources/icons/20px/search-template.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-search-template.svg rename to resources/icons/20px/search-template.svg diff --git a/resources/icons/20px/pt-icon-search-text.svg b/resources/icons/20px/search-text.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-search-text.svg rename to resources/icons/20px/search-text.svg diff --git a/resources/icons/20px/pt-icon-search.svg b/resources/icons/20px/search.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-search.svg rename to resources/icons/20px/search.svg diff --git a/resources/icons/20px/pt-icon-segmented-control.svg b/resources/icons/20px/segmented-control.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-segmented-control.svg rename to resources/icons/20px/segmented-control.svg diff --git a/resources/icons/20px/pt-icon-select.svg b/resources/icons/20px/select.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-select.svg rename to resources/icons/20px/select.svg diff --git a/resources/icons/20px/pt-icon-selection.svg b/resources/icons/20px/selection.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-selection.svg rename to resources/icons/20px/selection.svg diff --git a/resources/icons/20px/pt-icon-send-to-graph.svg b/resources/icons/20px/send-to-graph.svg similarity index 100% rename from resources/icons/20px/pt-icon-send-to-graph.svg rename to resources/icons/20px/send-to-graph.svg diff --git a/resources/icons/20px/pt-icon-send-to-map.svg b/resources/icons/20px/send-to-map.svg similarity index 100% rename from resources/icons/20px/pt-icon-send-to-map.svg rename to resources/icons/20px/send-to-map.svg diff --git a/resources/icons/20px/pt-icon-send-to.svg b/resources/icons/20px/send-to.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-send-to.svg rename to resources/icons/20px/send-to.svg diff --git a/resources/icons/20px/pt-icon-series-add.svg b/resources/icons/20px/series-add.svg similarity index 100% rename from resources/icons/20px/pt-icon-series-add.svg rename to resources/icons/20px/series-add.svg diff --git a/resources/icons/20px/pt-icon-series-configuration.svg b/resources/icons/20px/series-configuration.svg similarity index 100% rename from resources/icons/20px/pt-icon-series-configuration.svg rename to resources/icons/20px/series-configuration.svg diff --git a/resources/icons/20px/pt-icon-series-derived.svg b/resources/icons/20px/series-derived.svg similarity index 100% rename from resources/icons/20px/pt-icon-series-derived.svg rename to resources/icons/20px/series-derived.svg diff --git a/resources/icons/20px/pt-icon-series-filtered.svg b/resources/icons/20px/series-filtered.svg similarity index 100% rename from resources/icons/20px/pt-icon-series-filtered.svg rename to resources/icons/20px/series-filtered.svg diff --git a/resources/icons/20px/pt-icon-series-search.svg b/resources/icons/20px/series-search.svg similarity index 100% rename from resources/icons/20px/pt-icon-series-search.svg rename to resources/icons/20px/series-search.svg diff --git a/resources/icons/20px/pt-icon-settings.svg b/resources/icons/20px/settings.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-settings.svg rename to resources/icons/20px/settings.svg diff --git a/resources/icons/20px/pt-icon-share.svg b/resources/icons/20px/share.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-share.svg rename to resources/icons/20px/share.svg diff --git a/resources/icons/20px/pt-icon-shop.svg b/resources/icons/20px/shop.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-shop.svg rename to resources/icons/20px/shop.svg diff --git a/resources/icons/20px/pt-icon-shopping-cart.svg b/resources/icons/20px/shopping-cart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-shopping-cart.svg rename to resources/icons/20px/shopping-cart.svg diff --git a/resources/icons/20px/pt-icon-sim-card.svg b/resources/icons/20px/sim-card.svg similarity index 100% rename from resources/icons/20px/pt-icon-sim-card.svg rename to resources/icons/20px/sim-card.svg diff --git a/resources/icons/20px/pt-icon-slash.svg b/resources/icons/20px/slash.svg similarity index 100% rename from resources/icons/20px/pt-icon-slash.svg rename to resources/icons/20px/slash.svg diff --git a/resources/icons/20px/pt-icon-small-cross.svg b/resources/icons/20px/small-cross.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-small-cross.svg rename to resources/icons/20px/small-cross.svg diff --git a/resources/icons/20px/pt-icon-small-minus.svg b/resources/icons/20px/small-minus.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-small-minus.svg rename to resources/icons/20px/small-minus.svg diff --git a/resources/icons/20px/pt-icon-small-plus.svg b/resources/icons/20px/small-plus.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-small-plus.svg rename to resources/icons/20px/small-plus.svg diff --git a/resources/icons/20px/pt-icon-small-tick.svg b/resources/icons/20px/small-tick.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-small-tick.svg rename to resources/icons/20px/small-tick.svg diff --git a/resources/icons/20px/pt-icon-social-media.svg b/resources/icons/20px/social-media.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-social-media.svg rename to resources/icons/20px/social-media.svg diff --git a/resources/icons/20px/pt-icon-sort-alphabetical-desc.svg b/resources/icons/20px/sort-alphabetical-desc.svg similarity index 100% rename from resources/icons/20px/pt-icon-sort-alphabetical-desc.svg rename to resources/icons/20px/sort-alphabetical-desc.svg diff --git a/resources/icons/20px/pt-icon-sort-alphabetical.svg b/resources/icons/20px/sort-alphabetical.svg similarity index 100% rename from resources/icons/20px/pt-icon-sort-alphabetical.svg rename to resources/icons/20px/sort-alphabetical.svg diff --git a/resources/icons/20px/pt-icon-sort-asc.svg b/resources/icons/20px/sort-asc.svg similarity index 100% rename from resources/icons/20px/pt-icon-sort-asc.svg rename to resources/icons/20px/sort-asc.svg diff --git a/resources/icons/20px/pt-icon-sort-desc.svg b/resources/icons/20px/sort-desc.svg similarity index 100% rename from resources/icons/20px/pt-icon-sort-desc.svg rename to resources/icons/20px/sort-desc.svg diff --git a/resources/icons/20px/pt-icon-sort-numerical-desc.svg b/resources/icons/20px/sort-numerical-desc.svg similarity index 100% rename from resources/icons/20px/pt-icon-sort-numerical-desc.svg rename to resources/icons/20px/sort-numerical-desc.svg diff --git a/resources/icons/20px/pt-icon-sort-numerical.svg b/resources/icons/20px/sort-numerical.svg similarity index 100% rename from resources/icons/20px/pt-icon-sort-numerical.svg rename to resources/icons/20px/sort-numerical.svg diff --git a/resources/icons/20px/pt-icon-sort.svg b/resources/icons/20px/sort.svg similarity index 100% rename from resources/icons/20px/pt-icon-sort.svg rename to resources/icons/20px/sort.svg diff --git a/resources/icons/20px/pt-icon-split-columns.svg b/resources/icons/20px/split-columns.svg similarity index 100% rename from resources/icons/20px/pt-icon-split-columns.svg rename to resources/icons/20px/split-columns.svg diff --git a/resources/icons/20px/pt-icon-square.svg b/resources/icons/20px/square.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-square.svg rename to resources/icons/20px/square.svg diff --git a/resources/icons/20px/pt-icon-stacked-chart.svg b/resources/icons/20px/stacked-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-stacked-chart.svg rename to resources/icons/20px/stacked-chart.svg diff --git a/resources/icons/20px/pt-icon-star-empty.svg b/resources/icons/20px/star-empty.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-star-empty.svg rename to resources/icons/20px/star-empty.svg diff --git a/resources/icons/20px/pt-icon-star.svg b/resources/icons/20px/star.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-star.svg rename to resources/icons/20px/star.svg diff --git a/resources/icons/20px/pt-icon-step-backward.svg b/resources/icons/20px/step-backward.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-step-backward.svg rename to resources/icons/20px/step-backward.svg diff --git a/resources/icons/20px/pt-icon-step-chart.svg b/resources/icons/20px/step-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-step-chart.svg rename to resources/icons/20px/step-chart.svg diff --git a/resources/icons/20px/pt-icon-step-forward.svg b/resources/icons/20px/step-forward.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-step-forward.svg rename to resources/icons/20px/step-forward.svg diff --git a/resources/icons/20px/pt-icon-stop.svg b/resources/icons/20px/stop.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-stop.svg rename to resources/icons/20px/stop.svg diff --git a/resources/icons/20px/pt-icon-style.svg b/resources/icons/20px/style.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-style.svg rename to resources/icons/20px/style.svg diff --git a/resources/icons/20px/pt-icon-swap-horizontal.svg b/resources/icons/20px/swap-horizontal.svg similarity index 100% rename from resources/icons/20px/pt-icon-swap-horizontal.svg rename to resources/icons/20px/swap-horizontal.svg diff --git a/resources/icons/20px/pt-icon-swap-vertical.svg b/resources/icons/20px/swap-vertical.svg similarity index 100% rename from resources/icons/20px/pt-icon-swap-vertical.svg rename to resources/icons/20px/swap-vertical.svg diff --git a/resources/icons/20px/pt-icon-symbol-circle.svg b/resources/icons/20px/symbol-circle.svg similarity index 100% rename from resources/icons/20px/pt-icon-symbol-circle.svg rename to resources/icons/20px/symbol-circle.svg diff --git a/resources/icons/20px/pt-icon-symbol-cross.svg b/resources/icons/20px/symbol-cross.svg similarity index 100% rename from resources/icons/20px/pt-icon-symbol-cross.svg rename to resources/icons/20px/symbol-cross.svg diff --git a/resources/icons/20px/pt-icon-symbol-diamond.svg b/resources/icons/20px/symbol-diamond.svg similarity index 100% rename from resources/icons/20px/pt-icon-symbol-diamond.svg rename to resources/icons/20px/symbol-diamond.svg diff --git a/resources/icons/20px/pt-icon-symbol-square.svg b/resources/icons/20px/symbol-square.svg similarity index 100% rename from resources/icons/20px/pt-icon-symbol-square.svg rename to resources/icons/20px/symbol-square.svg diff --git a/resources/icons/20px/pt-icon-symbol-triangle-down.svg b/resources/icons/20px/symbol-triangle-down.svg similarity index 100% rename from resources/icons/20px/pt-icon-symbol-triangle-down.svg rename to resources/icons/20px/symbol-triangle-down.svg diff --git a/resources/icons/20px/pt-icon-symbol-triangle-up.svg b/resources/icons/20px/symbol-triangle-up.svg similarity index 100% rename from resources/icons/20px/pt-icon-symbol-triangle-up.svg rename to resources/icons/20px/symbol-triangle-up.svg diff --git a/resources/icons/20px/pt-icon-tag.svg b/resources/icons/20px/tag.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-tag.svg rename to resources/icons/20px/tag.svg diff --git a/resources/icons/20px/pt-icon-take-action.svg b/resources/icons/20px/take-action.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-take-action.svg rename to resources/icons/20px/take-action.svg diff --git a/resources/icons/20px/pt-icon-taxi.svg b/resources/icons/20px/taxi.svg similarity index 100% rename from resources/icons/20px/pt-icon-taxi.svg rename to resources/icons/20px/taxi.svg diff --git a/resources/icons/20px/pt-icon-text-highlight.svg b/resources/icons/20px/text-highlight.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-text-highlight.svg rename to resources/icons/20px/text-highlight.svg diff --git a/resources/icons/20px/pt-icon-th-derived.svg b/resources/icons/20px/th-derived.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-th-derived.svg rename to resources/icons/20px/th-derived.svg diff --git a/resources/icons/20px/pt-icon-th-list.svg b/resources/icons/20px/th-list.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-th-list.svg rename to resources/icons/20px/th-list.svg diff --git a/resources/icons/20px/pt-icon-th.svg b/resources/icons/20px/th.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-th.svg rename to resources/icons/20px/th.svg diff --git a/resources/icons/20px/pt-icon-thumbs-down.svg b/resources/icons/20px/thumbs-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-thumbs-down.svg rename to resources/icons/20px/thumbs-down.svg diff --git a/resources/icons/20px/pt-icon-thumbs-up.svg b/resources/icons/20px/thumbs-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-thumbs-up.svg rename to resources/icons/20px/thumbs-up.svg diff --git a/resources/icons/20px/pt-icon-tick-circle.svg b/resources/icons/20px/tick-circle.svg similarity index 100% rename from resources/icons/20px/pt-icon-tick-circle.svg rename to resources/icons/20px/tick-circle.svg diff --git a/resources/icons/20px/pt-icon-tick.svg b/resources/icons/20px/tick.svg similarity index 100% rename from resources/icons/20px/pt-icon-tick.svg rename to resources/icons/20px/tick.svg diff --git a/resources/icons/20px/pt-icon-time.svg b/resources/icons/20px/time.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-time.svg rename to resources/icons/20px/time.svg diff --git a/resources/icons/20px/pt-icon-timeline-area-chart.svg b/resources/icons/20px/timeline-area-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-timeline-area-chart.svg rename to resources/icons/20px/timeline-area-chart.svg diff --git a/resources/icons/20px/pt-icon-timeline-bar-chart.svg b/resources/icons/20px/timeline-bar-chart.svg similarity index 100% rename from resources/icons/20px/pt-icon-timeline-bar-chart.svg rename to resources/icons/20px/timeline-bar-chart.svg diff --git a/resources/icons/20px/pt-icon-timeline-events.svg b/resources/icons/20px/timeline-events.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-timeline-events.svg rename to resources/icons/20px/timeline-events.svg diff --git a/resources/icons/20px/pt-icon-timeline-line-chart.svg b/resources/icons/20px/timeline-line-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-timeline-line-chart.svg rename to resources/icons/20px/timeline-line-chart.svg diff --git a/resources/icons/20px/pt-icon-tint.svg b/resources/icons/20px/tint.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-tint.svg rename to resources/icons/20px/tint.svg diff --git a/resources/icons/20px/pt-icon-torch.svg b/resources/icons/20px/torch.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-torch.svg rename to resources/icons/20px/torch.svg diff --git a/resources/icons/20px/pt-icon-train.svg b/resources/icons/20px/train.svg similarity index 100% rename from resources/icons/20px/pt-icon-train.svg rename to resources/icons/20px/train.svg diff --git a/resources/icons/20px/pt-icon-translate.svg b/resources/icons/20px/translate.svg similarity index 100% rename from resources/icons/20px/pt-icon-translate.svg rename to resources/icons/20px/translate.svg diff --git a/resources/icons/20px/pt-icon-trash.svg b/resources/icons/20px/trash.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-trash.svg rename to resources/icons/20px/trash.svg diff --git a/resources/icons/20px/pt-icon-trending-down.svg b/resources/icons/20px/trending-down.svg similarity index 100% rename from resources/icons/20px/pt-icon-trending-down.svg rename to resources/icons/20px/trending-down.svg diff --git a/resources/icons/20px/pt-icon-trending-up.svg b/resources/icons/20px/trending-up.svg similarity index 100% rename from resources/icons/20px/pt-icon-trending-up.svg rename to resources/icons/20px/trending-up.svg diff --git a/resources/icons/20px/pt-icon-two-columns.svg b/resources/icons/20px/two-columns.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-two-columns.svg rename to resources/icons/20px/two-columns.svg diff --git a/resources/icons/20px/pt-icon-underline.svg b/resources/icons/20px/underline.svg similarity index 100% rename from resources/icons/20px/pt-icon-underline.svg rename to resources/icons/20px/underline.svg diff --git a/resources/icons/20px/pt-icon-undo.svg b/resources/icons/20px/undo.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-undo.svg rename to resources/icons/20px/undo.svg diff --git a/resources/icons/20px/pt-icon-ungroup-objects.svg b/resources/icons/20px/ungroup-objects.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-ungroup-objects.svg rename to resources/icons/20px/ungroup-objects.svg diff --git a/resources/icons/20px/pt-icon-unknown-vehicle.svg b/resources/icons/20px/unknown-vehicle.svg similarity index 100% rename from resources/icons/20px/pt-icon-unknown-vehicle.svg rename to resources/icons/20px/unknown-vehicle.svg diff --git a/resources/icons/20px/pt-icon-unlock.svg b/resources/icons/20px/unlock.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-unlock.svg rename to resources/icons/20px/unlock.svg diff --git a/resources/icons/20px/pt-icon-unpin.svg b/resources/icons/20px/unpin.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-unpin.svg rename to resources/icons/20px/unpin.svg diff --git a/resources/icons/20px/pt-icon-unresolve.svg b/resources/icons/20px/unresolve.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-unresolve.svg rename to resources/icons/20px/unresolve.svg diff --git a/resources/icons/20px/pt-icon-upload.svg b/resources/icons/20px/upload.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-upload.svg rename to resources/icons/20px/upload.svg diff --git a/resources/icons/20px/pt-icon-user.svg b/resources/icons/20px/user.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-user.svg rename to resources/icons/20px/user.svg diff --git a/resources/icons/20px/pt-icon-variable.svg b/resources/icons/20px/variable.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-variable.svg rename to resources/icons/20px/variable.svg diff --git a/resources/icons/20px/pt-icon-vertical-bar-chart-asc.svg b/resources/icons/20px/vertical-bar-chart-asc.svg similarity index 100% rename from resources/icons/20px/pt-icon-vertical-bar-chart-asc.svg rename to resources/icons/20px/vertical-bar-chart-asc.svg diff --git a/resources/icons/20px/pt-icon-vertical-bar-chart-desc.svg b/resources/icons/20px/vertical-bar-chart-desc.svg similarity index 100% rename from resources/icons/20px/pt-icon-vertical-bar-chart-desc.svg rename to resources/icons/20px/vertical-bar-chart-desc.svg diff --git a/resources/icons/20px/pt-icon-vertical-distribution.svg b/resources/icons/20px/vertical-distribution.svg similarity index 100% rename from resources/icons/20px/pt-icon-vertical-distribution.svg rename to resources/icons/20px/vertical-distribution.svg diff --git a/resources/icons/20px/pt-icon-video.svg b/resources/icons/20px/video.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-video.svg rename to resources/icons/20px/video.svg diff --git a/resources/icons/20px/pt-icon-volume-down.svg b/resources/icons/20px/volume-down.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-volume-down.svg rename to resources/icons/20px/volume-down.svg diff --git a/resources/icons/20px/pt-icon-volume-off.svg b/resources/icons/20px/volume-off.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-volume-off.svg rename to resources/icons/20px/volume-off.svg diff --git a/resources/icons/20px/pt-icon-volume-up.svg b/resources/icons/20px/volume-up.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-volume-up.svg rename to resources/icons/20px/volume-up.svg diff --git a/resources/icons/20px/pt-icon-walk.svg b/resources/icons/20px/walk.svg similarity index 100% rename from resources/icons/20px/pt-icon-walk.svg rename to resources/icons/20px/walk.svg diff --git a/resources/icons/20px/pt-icon-warning-sign.svg b/resources/icons/20px/warning-sign.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-warning-sign.svg rename to resources/icons/20px/warning-sign.svg diff --git a/resources/icons/20px/pt-icon-waterfall-chart.svg b/resources/icons/20px/waterfall-chart.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-waterfall-chart.svg rename to resources/icons/20px/waterfall-chart.svg diff --git a/resources/icons/20px/pt-icon-widget-button.svg b/resources/icons/20px/widget-button.svg similarity index 100% rename from resources/icons/20px/pt-icon-widget-button.svg rename to resources/icons/20px/widget-button.svg diff --git a/resources/icons/20px/pt-icon-widget-footer.svg b/resources/icons/20px/widget-footer.svg similarity index 100% rename from resources/icons/20px/pt-icon-widget-footer.svg rename to resources/icons/20px/widget-footer.svg diff --git a/resources/icons/20px/pt-icon-widget-header.svg b/resources/icons/20px/widget-header.svg similarity index 100% rename from resources/icons/20px/pt-icon-widget-header.svg rename to resources/icons/20px/widget-header.svg diff --git a/resources/icons/20px/pt-icon-widget.svg b/resources/icons/20px/widget.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-widget.svg rename to resources/icons/20px/widget.svg diff --git a/resources/icons/20px/pt-icon-wrench.svg b/resources/icons/20px/wrench.svg similarity index 100% rename from resources/icons/20px/pt-icon-wrench.svg rename to resources/icons/20px/wrench.svg diff --git a/resources/icons/20px/pt-icon-zoom-in.svg b/resources/icons/20px/zoom-in.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-zoom-in.svg rename to resources/icons/20px/zoom-in.svg diff --git a/resources/icons/20px/pt-icon-zoom-out.svg b/resources/icons/20px/zoom-out.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-zoom-out.svg rename to resources/icons/20px/zoom-out.svg diff --git a/resources/icons/20px/pt-icon-zoom-to-fit.svg b/resources/icons/20px/zoom-to-fit.svg old mode 100755 new mode 100644 similarity index 100% rename from resources/icons/20px/pt-icon-zoom-to-fit.svg rename to resources/icons/20px/zoom-to-fit.svg From bb91fbcb2b17f04c700caa96c78b82fdc1ba1315 Mon Sep 17 00:00:00 2001 From: Gilad Gray Date: Mon, 5 Feb 2018 17:19:01 -0800 Subject: [PATCH 3/3] docs --- packages/node-build-scripts/generate-icons-source | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/node-build-scripts/generate-icons-source b/packages/node-build-scripts/generate-icons-source index 58ab2516a5..0ed2d9406d 100755 --- a/packages/node-build-scripts/generate-icons-source +++ b/packages/node-build-scripts/generate-icons-source @@ -80,7 +80,7 @@ async function writeLinesToFile(filename, ...lines) { } /** - * Removes `pt-icon-` prefix from icon className. + * Adds `pt-icon-` prefix to iconName. * @param {IconMetadata} icon */ function toLongName(icon) { @@ -88,8 +88,8 @@ function toLongName(icon) { } /** - * Converts icon className to uppercase constant name. - * Example: `"pt-icon-time"` ⇒ `"TIME"` + * Converts iconName to uppercase constant name. + * Example: `"align-left"` ⇒ `"ALIGN_LEFT"` * @param {IconMetadata} icon */ function toEnumName(icon) { @@ -97,6 +97,7 @@ function toEnumName(icon) { } /** + * Exports a named constant for each icon. Name is `ICON_NAME`. Value is result of `valueGetter`. * @param {(icon: IconMetadata) => string} valueGetter */ function exportIconConsts(valueGetter) {