@stoplight/ui-kit 3.0.0-beta.9 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.circleci/config.yml +46 -0
- package/.eslintignore +8 -0
- package/.eslintrc.js +3 -0
- package/.github/CODEOWNERS +7 -0
- package/.gitignore +34 -0
- package/.nvmrc +1 -0
- package/.prettierrc.js +3 -0
- package/.storybook/addons.js +1 -0
- package/.storybook/config.js +3 -0
- package/.storybook/preview-head.html +3 -0
- package/.storybook/webpack.config.js +23 -0
- package/.yarnrc +1 -0
- package/README.md +25 -0
- package/__mocks__/react.js +9 -0
- package/__mocks__/styleMock.js +1 -0
- package/coverage/clover.xml +376 -0
- package/coverage/coverage-final.json +16 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +79 -0
- package/coverage/lcov-report/index.html +200 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +170 -0
- package/coverage/lcov-report/src/CodeEditor/utils/highlightCode.ts.html +250 -0
- package/coverage/lcov-report/src/CodeEditor/utils/index.html +110 -0
- package/coverage/lcov-report/src/CodeViewer/utils/astToReact.ts.html +154 -0
- package/coverage/lcov-report/src/CodeViewer/utils/index.html +140 -0
- package/coverage/lcov-report/src/CodeViewer/utils/lineNumberify.ts.html +436 -0
- package/coverage/lcov-report/src/CodeViewer/utils/parseCode.ts.html +283 -0
- package/coverage/lcov-report/src/Dropdown/Dropdown.tsx.html +319 -0
- package/coverage/lcov-report/src/Dropdown/index.html +110 -0
- package/coverage/lcov-report/src/SimpleTabs/Tab.tsx.html +148 -0
- package/coverage/lcov-report/src/SimpleTabs/TabList.tsx.html +139 -0
- package/coverage/lcov-report/src/SimpleTabs/TabPanel.tsx.html +163 -0
- package/coverage/lcov-report/src/SimpleTabs/index.html +140 -0
- package/coverage/lcov-report/src/__fixtures__/table-of-contents/index.html +110 -0
- package/coverage/lcov-report/src/__fixtures__/table-of-contents/studio.ts.html +259 -0
- package/coverage/lcov-report/src/_hooks/index.html +125 -0
- package/coverage/lcov-report/src/_hooks/useIsMobile.ts.html +169 -0
- package/coverage/lcov-report/src/_hooks/useValidateSchema.ts.html +169 -0
- package/coverage/lcov-report/src/classes.ts.html +142 -0
- package/coverage/lcov-report/src/colors.ts.html +322 -0
- package/coverage/lcov-report/src/globals.d.ts.html +82 -0
- package/coverage/lcov-report/src/index.html +155 -0
- package/coverage/lcov-report/src/withErrorBoundary.tsx.html +262 -0
- package/coverage/lcov.info +601 -0
- package/dist/AutoSizer/index.js +7 -0
- package/dist/AutoSizer/index.js.map +1 -0
- package/dist/CodeEditor/index.d.ts +14 -0
- package/dist/CodeEditor/index.js +23 -0
- package/dist/CodeEditor/index.js.map +1 -0
- package/dist/CodeEditor/utils/highlightCode.js +55 -0
- package/dist/CodeEditor/utils/highlightCode.js.map +1 -0
- package/dist/CodeViewer/components/BlockCodeViewer/BlockCodeViewer.d.ts +8 -0
- package/dist/CodeViewer/components/BlockCodeViewer/BlockCodeViewer.js +51 -0
- package/dist/CodeViewer/components/BlockCodeViewer/BlockCodeViewer.js.map +1 -0
- package/dist/CodeViewer/components/BlockCodeViewer/ObservableSet.d.ts +5 -0
- package/dist/CodeViewer/components/BlockCodeViewer/ObservableSet.js +24 -0
- package/dist/CodeViewer/components/BlockCodeViewer/ObservableSet.js.map +1 -0
- package/dist/CodeViewer/components/BlockCodeViewer/SingleCodeBlock.d.ts +12 -0
- package/dist/CodeViewer/components/BlockCodeViewer/SingleCodeBlock.js +59 -0
- package/dist/CodeViewer/components/BlockCodeViewer/SingleCodeBlock.js.map +1 -0
- package/dist/CodeViewer/components/BlockCodeViewer/consts.d.ts +1 -0
- package/dist/CodeViewer/components/BlockCodeViewer/consts.js +4 -0
- package/dist/CodeViewer/components/BlockCodeViewer/consts.js.map +1 -0
- package/dist/CodeViewer/components/BlockCodeViewer/hooks/useSlicedBlocks.d.ts +7 -0
- package/dist/CodeViewer/components/BlockCodeViewer/hooks/useSlicedBlocks.js +29 -0
- package/dist/CodeViewer/components/BlockCodeViewer/hooks/useSlicedBlocks.js.map +1 -0
- package/dist/CodeViewer/components/BlockCodeViewer/index.d.ts +2 -0
- package/dist/CodeViewer/components/BlockCodeViewer/index.js +5 -0
- package/dist/CodeViewer/components/BlockCodeViewer/index.js.map +1 -0
- package/dist/CodeViewer/components/InlineCodeViewer.d.ts +5 -0
- package/dist/CodeViewer/components/InlineCodeViewer.js +11 -0
- package/dist/CodeViewer/components/InlineCodeViewer.js.map +1 -0
- package/dist/CodeViewer/index.d.ts +9 -0
- package/dist/CodeViewer/index.js +19 -0
- package/dist/CodeViewer/index.js.map +1 -0
- package/dist/CodeViewer/utils/astToReact.d.ts +3 -0
- package/dist/CodeViewer/utils/astToReact.js +16 -0
- package/dist/CodeViewer/utils/astToReact.js.map +1 -0
- package/dist/CodeViewer/utils/lineNumberify.d.ts +2 -0
- package/dist/CodeViewer/utils/lineNumberify.js +94 -0
- package/dist/CodeViewer/utils/lineNumberify.js.map +1 -0
- package/dist/CodeViewer/utils/parseCode.d.ts +2 -0
- package/dist/CodeViewer/utils/parseCode.js +58 -0
- package/dist/CodeViewer/utils/parseCode.js.map +1 -0
- package/dist/Dropdown/Dropdown.js +28 -0
- package/dist/Dropdown/Dropdown.js.map +1 -0
- package/dist/FAIcon/index.js +37 -0
- package/dist/FAIcon/index.js.map +1 -0
- package/dist/FormButton/index.js +13 -0
- package/dist/FormButton/index.js.map +1 -0
- package/dist/FormError/index.js +23 -0
- package/dist/FormError/index.js.map +1 -0
- package/dist/FormInput/index.js +44 -0
- package/dist/FormInput/index.js.map +1 -0
- package/dist/LICENSE +190 -0
- package/dist/README.md +168 -0
- package/dist/ScrollContainer/index.js +91 -0
- package/dist/ScrollContainer/index.js.map +1 -0
- package/dist/ScrollList/index.js +42 -0
- package/dist/ScrollList/index.js.map +1 -0
- package/dist/SecretInput/index.js +22 -0
- package/dist/SecretInput/index.js.map +1 -0
- package/dist/SimpleTabs/Tab.js +14 -0
- package/dist/SimpleTabs/Tab.js.map +1 -0
- package/dist/SimpleTabs/TabList.js +14 -0
- package/dist/SimpleTabs/TabList.js.map +1 -0
- package/dist/SimpleTabs/TabPanel.js +14 -0
- package/dist/SimpleTabs/TabPanel.js.map +1 -0
- package/dist/TableOfContents/index.d.ts +70 -0
- package/dist/TableOfContents/index.js +194 -0
- package/dist/TableOfContents/index.js.map +1 -0
- package/dist/ThemeContainer/index.js +12 -0
- package/dist/ThemeContainer/index.js.map +1 -0
- package/dist/_hooks/useIsMobile.js +24 -0
- package/dist/_hooks/useIsMobile.js.map +1 -0
- package/dist/_hooks/useValidateSchema.js +27 -0
- package/dist/_hooks/useValidateSchema.js.map +1 -0
- package/dist/classes.d.ts +224 -0
- package/dist/classes.js +6 -0
- package/dist/classes.js.map +1 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +19 -0
- package/dist/index.js.map +1 -0
- package/dist/package.json +46 -0
- package/dist/styles/_blueprint.scss +16 -0
- package/dist/styles/_components.scss +9 -0
- package/dist/styles/blueprint/_variables.scss +124 -0
- package/dist/styles/blueprint/select/blueprint-select.scss +8 -0
- package/dist/styles/blueprint/select/components/_index.scss +6 -0
- package/dist/styles/blueprint/select/components/omnibar/_omnibar.scss +63 -0
- package/dist/styles/blueprint/select/components/select/_multi-select.scss +17 -0
- package/dist/styles/blueprint/select/components/select/_select.scss +31 -0
- package/dist/styles/blueprint/src/_reset.scss +43 -0
- package/dist/styles/blueprint/src/_typography.scss +459 -0
- package/dist/styles/blueprint/src/accessibility/_focus-states.scss +17 -0
- package/dist/styles/blueprint/src/blueprint-hi-contrast.scss +22 -0
- package/dist/styles/blueprint/src/blueprint.scss +16 -0
- package/dist/styles/blueprint/src/common/_color-aliases.scss +43 -0
- package/dist/styles/blueprint/src/common/_colors.scss +116 -0
- package/dist/styles/blueprint/src/common/_flex.scss +49 -0
- package/dist/styles/blueprint/src/common/_mixins.scss +128 -0
- package/dist/styles/blueprint/src/common/_react-transition.scss +117 -0
- package/dist/styles/blueprint/src/common/_variables.scss +131 -0
- package/dist/styles/blueprint/src/components/_index.scss +38 -0
- package/dist/styles/blueprint/src/components/alert/_alert.scss +33 -0
- package/dist/styles/blueprint/src/components/breadcrumbs/_breadcrumbs.scss +142 -0
- package/dist/styles/blueprint/src/components/button/_button-group.scss +240 -0
- package/dist/styles/blueprint/src/components/button/_button.scss +206 -0
- package/dist/styles/blueprint/src/components/button/_common.scss +507 -0
- package/dist/styles/blueprint/src/components/callout/_callout.scss +99 -0
- package/dist/styles/blueprint/src/components/card/_card.scss +91 -0
- package/dist/styles/blueprint/src/components/collapse/_collapse.scss +20 -0
- package/dist/styles/blueprint/src/components/context-menu/_context-menu.scss +10 -0
- package/dist/styles/blueprint/src/components/dialog/_dialog.scss +146 -0
- package/dist/styles/blueprint/src/components/divider/_divider.scss +19 -0
- package/dist/styles/blueprint/src/components/drawer/_drawer.scss +232 -0
- package/dist/styles/blueprint/src/components/editable-text/_editable-text.scss +156 -0
- package/dist/styles/blueprint/src/components/forms/_common.scss +239 -0
- package/dist/styles/blueprint/src/components/forms/_control-group.scss +276 -0
- package/dist/styles/blueprint/src/components/forms/_controls.scss +526 -0
- package/dist/styles/blueprint/src/components/forms/_file-input.scss +155 -0
- package/dist/styles/blueprint/src/components/forms/_form-group.scss +111 -0
- package/dist/styles/blueprint/src/components/forms/_index.scss +20 -0
- package/dist/styles/blueprint/src/components/forms/_input-group.scss +247 -0
- package/dist/styles/blueprint/src/components/forms/_input.scss +115 -0
- package/dist/styles/blueprint/src/components/forms/_label.scss +114 -0
- package/dist/styles/blueprint/src/components/forms/_numeric-input.scss +40 -0
- package/dist/styles/blueprint/src/components/hotkeys/_hotkeys.scss +50 -0
- package/dist/styles/blueprint/src/components/html-select/_common.scss +52 -0
- package/dist/styles/blueprint/src/components/html-select/_html-select.scss +104 -0
- package/dist/styles/blueprint/src/components/html-table/_html-table.scss +208 -0
- package/dist/styles/blueprint/src/components/icon/_icon.scss +79 -0
- package/dist/styles/blueprint/src/components/menu/_common.scss +172 -0
- package/dist/styles/blueprint/src/components/menu/_menu.scss +197 -0
- package/dist/styles/blueprint/src/components/menu/_submenu.scss +41 -0
- package/dist/styles/blueprint/src/components/navbar/_navbar.scss +117 -0
- package/dist/styles/blueprint/src/components/non-ideal-state/_non-ideal-state.scss +43 -0
- package/dist/styles/blueprint/src/components/overflow-list/_overflow-list.scss +13 -0
- package/dist/styles/blueprint/src/components/overlay/_overlay.scss +94 -0
- package/dist/styles/blueprint/src/components/panel-stack/_panel-stack.scss +103 -0
- package/dist/styles/blueprint/src/components/popover/_common.scss +171 -0
- package/dist/styles/blueprint/src/components/popover/_popover.scss +127 -0
- package/dist/styles/blueprint/src/components/portal/_portal.scss +15 -0
- package/dist/styles/blueprint/src/components/progress-bar/_common.scss +9 -0
- package/dist/styles/blueprint/src/components/progress-bar/_progress-bar.scss +98 -0
- package/dist/styles/blueprint/src/components/skeleton/_common.scss +8 -0
- package/dist/styles/blueprint/src/components/skeleton/_skeleton.scss +64 -0
- package/dist/styles/blueprint/src/components/slider/_common.scss +48 -0
- package/dist/styles/blueprint/src/components/slider/_slider.scss +216 -0
- package/dist/styles/blueprint/src/components/spinner/_spinner.scss +65 -0
- package/dist/styles/blueprint/src/components/tabs/_tabs.scss +199 -0
- package/dist/styles/blueprint/src/components/tag/_common.scss +202 -0
- package/dist/styles/blueprint/src/components/tag/_tag.scss +75 -0
- package/dist/styles/blueprint/src/components/tag-input/_tag-input.scss +165 -0
- package/dist/styles/blueprint/src/components/toast/_toast.scss +203 -0
- package/dist/styles/blueprint/src/components/tooltip/_common.scss +11 -0
- package/dist/styles/blueprint/src/components/tooltip/_tooltip.scss +61 -0
- package/dist/styles/blueprint/src/components/tree/_tree.scss +194 -0
- package/dist/styles/components/Code/_base.scss +252 -0
- package/dist/styles/components/TableOfContents/_base.scss +50 -0
- package/dist/styles/tailwind/_base.scss +56165 -0
- package/dist/styles/tailwind/tailwind.config.js +412 -0
- package/jest.config.js +10 -0
- package/package.json +150 -14
- package/scripts/build-tailwind/postcss.config.js +9 -0
- package/scripts/build-tailwind/tailwind.css +10 -0
- package/setupTests.ts +18 -0
- package/src/AutoSizer/index.tsx +8 -0
- package/src/CodeEditor/__tests__/Editor.spec.tsx +30 -0
- package/src/CodeEditor/index.tsx +69 -0
- package/src/CodeEditor/utils/highlightCode.ts +59 -0
- package/src/CodeViewer/__tests__/Viewer.spec.tsx +83 -0
- package/src/CodeViewer/components/BlockCodeViewer/BlockCodeViewer.tsx +84 -0
- package/src/CodeViewer/components/BlockCodeViewer/ObservableSet.ts +19 -0
- package/src/CodeViewer/components/BlockCodeViewer/SingleCodeBlock.tsx +91 -0
- package/src/CodeViewer/components/BlockCodeViewer/consts.ts +1 -0
- package/src/CodeViewer/components/BlockCodeViewer/hooks/useSlicedBlocks.ts +37 -0
- package/src/CodeViewer/components/BlockCodeViewer/index.tsx +2 -0
- package/src/CodeViewer/components/InlineCodeViewer.tsx +16 -0
- package/src/CodeViewer/index.tsx +39 -0
- package/src/CodeViewer/utils/__tests__/__snapshots__/astToReact.spec.ts.snap +118 -0
- package/src/CodeViewer/utils/__tests__/__snapshots__/lineNumberify.spec.ts.snap +254 -0
- package/src/CodeViewer/utils/__tests__/astToReact.spec.ts +13 -0
- package/src/CodeViewer/utils/__tests__/fixtures/clike.json +170 -0
- package/src/CodeViewer/utils/__tests__/fixtures/javascript.json +122 -0
- package/src/CodeViewer/utils/__tests__/fixtures/multiple-lines.json +54 -0
- package/src/CodeViewer/utils/__tests__/fixtures/one-liner.json +66 -0
- package/src/CodeViewer/utils/__tests__/lineNumberify.spec.ts +15 -0
- package/src/CodeViewer/utils/__tests__/parseCode.spec.ts +87 -0
- package/src/CodeViewer/utils/astToReact.ts +25 -0
- package/src/CodeViewer/utils/lineNumberify.ts +120 -0
- package/src/CodeViewer/utils/parseCode.ts +58 -0
- package/src/Dropdown/Dropdown.tsx +80 -0
- package/src/FAIcon/index.tsx +54 -0
- package/src/FormButton/index.tsx +31 -0
- package/src/FormError/index.tsx +45 -0
- package/src/FormInput/index.tsx +135 -0
- package/src/Icons/index.ts +2 -0
- package/src/ScrollContainer/__tests__/ScrollContainer.spec.tsx +87 -0
- package/src/ScrollContainer/index.tsx +163 -0
- package/src/ScrollList/index.tsx +132 -0
- package/src/SecretInput/index.tsx +38 -0
- package/src/Select/index.ts +1 -0
- package/src/SimpleTabs/Tab.tsx +24 -0
- package/src/SimpleTabs/TabList.tsx +20 -0
- package/src/SimpleTabs/TabPanel.tsx +29 -0
- package/src/SimpleTabs/index.tsx +6 -0
- package/src/TableOfContents/index.tsx +414 -0
- package/src/ThemeContainer/index.tsx +24 -0
- package/src/__fixtures__/CodeViewer/ember.json +1 -0
- package/src/__fixtures__/table-of-contents/studio.ts +161 -0
- package/src/__fixtures__/table-of-contents/tree.ts +56 -0
- package/src/__stories__/AutoSizer/index.tsx +19 -0
- package/src/__stories__/Checkbox/index.tsx +13 -0
- package/src/__stories__/Code/CodeEditor.tsx +49 -0
- package/src/__stories__/Code/CodeViewer.tsx +52 -0
- package/src/__stories__/Code/index.ts +2 -0
- package/src/__stories__/Docs/Classes.tsx +168 -0
- package/src/__stories__/Docs/Namespaces.tsx +55 -0
- package/src/__stories__/Docs/Theme.tsx +32 -0
- package/src/__stories__/Docs/_theme-namespace.scss +20 -0
- package/src/__stories__/Docs/_theme-overwrite.scss +9 -0
- package/src/__stories__/Docs/index.tsx +10 -0
- package/src/__stories__/Dropdown/index.tsx +28 -0
- package/src/__stories__/FormButton/index.tsx +55 -0
- package/src/__stories__/FormInput/index.tsx +43 -0
- package/src/__stories__/ScrollContainer/index.tsx +114 -0
- package/src/__stories__/ScrollList/index.tsx +72 -0
- package/src/__stories__/SecretInput/index.tsx +41 -0
- package/src/__stories__/SimpleTabs/index.tsx +57 -0
- package/src/__stories__/TableOfContents/index.tsx +151 -0
- package/src/__stories__/Toaster/index.tsx +46 -0
- package/src/__stories__/index.ts +13 -0
- package/src/_hooks/useIsMobile.ts +26 -0
- package/src/_hooks/useValidateSchema.ts +34 -0
- package/src/classes.ts +21 -0
- package/src/colors.ts +81 -0
- package/src/index.ts +46 -0
- package/src/styles/_blueprint.scss +16 -0
- package/src/styles/_components.scss +9 -0
- package/src/styles/_monaco.scss +13 -0
- package/src/styles/_tailwind.scss +1 -0
- package/src/styles/_ui-kit.scss +117 -0
- package/src/styles/blueprint/_color-aliases.scss +43 -0
- package/src/styles/blueprint/_colors.scss +115 -0
- package/src/styles/blueprint/_variables.scss +124 -0
- package/src/styles/blueprint/select/blueprint-select.scss +8 -0
- package/src/styles/blueprint/select/components/_index.scss +6 -0
- package/src/styles/blueprint/select/components/omnibar/_omnibar.scss +63 -0
- package/src/styles/blueprint/select/components/select/_multi-select.scss +17 -0
- package/src/styles/blueprint/select/components/select/_select.scss +31 -0
- package/src/styles/blueprint/src/_reset.scss +43 -0
- package/src/styles/blueprint/src/_typography.scss +459 -0
- package/src/styles/blueprint/src/accessibility/_focus-states.scss +17 -0
- package/src/styles/blueprint/src/blueprint-hi-contrast.scss +22 -0
- package/src/styles/blueprint/src/blueprint.scss +16 -0
- package/src/styles/blueprint/src/common/_color-aliases.scss +43 -0
- package/src/styles/blueprint/src/common/_colors.scss +116 -0
- package/src/styles/blueprint/src/common/_flex.scss +49 -0
- package/src/styles/blueprint/src/common/_mixins.scss +128 -0
- package/src/styles/blueprint/src/common/_react-transition.scss +117 -0
- package/src/styles/blueprint/src/common/_variables.scss +131 -0
- package/src/styles/blueprint/src/components/_index.scss +38 -0
- package/src/styles/blueprint/src/components/alert/_alert.scss +33 -0
- package/src/styles/blueprint/src/components/breadcrumbs/_breadcrumbs.scss +142 -0
- package/src/styles/blueprint/src/components/button/_button-group.scss +240 -0
- package/src/styles/blueprint/src/components/button/_button.scss +206 -0
- package/src/styles/blueprint/src/components/button/_common.scss +507 -0
- package/src/styles/blueprint/src/components/callout/_callout.scss +99 -0
- package/src/styles/blueprint/src/components/card/_card.scss +91 -0
- package/src/styles/blueprint/src/components/collapse/_collapse.scss +20 -0
- package/src/styles/blueprint/src/components/context-menu/_context-menu.scss +10 -0
- package/src/styles/blueprint/src/components/dialog/_dialog.scss +146 -0
- package/src/styles/blueprint/src/components/divider/_divider.scss +19 -0
- package/src/styles/blueprint/src/components/drawer/_drawer.scss +232 -0
- package/src/styles/blueprint/src/components/editable-text/_editable-text.scss +156 -0
- package/src/styles/blueprint/src/components/forms/_common.scss +239 -0
- package/src/styles/blueprint/src/components/forms/_control-group.scss +276 -0
- package/src/styles/blueprint/src/components/forms/_controls.scss +526 -0
- package/src/styles/blueprint/src/components/forms/_file-input.scss +155 -0
- package/src/styles/blueprint/src/components/forms/_form-group.scss +111 -0
- package/src/styles/blueprint/src/components/forms/_index.scss +20 -0
- package/src/styles/blueprint/src/components/forms/_input-group.scss +247 -0
- package/src/styles/blueprint/src/components/forms/_input.scss +115 -0
- package/src/styles/blueprint/src/components/forms/_label.scss +114 -0
- package/src/styles/blueprint/src/components/forms/_numeric-input.scss +40 -0
- package/src/styles/blueprint/src/components/hotkeys/_hotkeys.scss +50 -0
- package/src/styles/blueprint/src/components/html-select/_common.scss +52 -0
- package/src/styles/blueprint/src/components/html-select/_html-select.scss +104 -0
- package/src/styles/blueprint/src/components/html-table/_html-table.scss +208 -0
- package/src/styles/blueprint/src/components/icon/_icon.scss +79 -0
- package/src/styles/blueprint/src/components/menu/_common.scss +172 -0
- package/src/styles/blueprint/src/components/menu/_menu.scss +197 -0
- package/src/styles/blueprint/src/components/menu/_submenu.scss +41 -0
- package/src/styles/blueprint/src/components/navbar/_navbar.scss +117 -0
- package/src/styles/blueprint/src/components/non-ideal-state/_non-ideal-state.scss +43 -0
- package/src/styles/blueprint/src/components/overflow-list/_overflow-list.scss +13 -0
- package/src/styles/blueprint/src/components/overlay/_overlay.scss +94 -0
- package/src/styles/blueprint/src/components/panel-stack/_panel-stack.scss +103 -0
- package/src/styles/blueprint/src/components/popover/_common.scss +171 -0
- package/src/styles/blueprint/src/components/popover/_popover.scss +127 -0
- package/src/styles/blueprint/src/components/portal/_portal.scss +15 -0
- package/src/styles/blueprint/src/components/progress-bar/_common.scss +9 -0
- package/src/styles/blueprint/src/components/progress-bar/_progress-bar.scss +98 -0
- package/src/styles/blueprint/src/components/skeleton/_common.scss +8 -0
- package/src/styles/blueprint/src/components/skeleton/_skeleton.scss +64 -0
- package/src/styles/blueprint/src/components/slider/_common.scss +48 -0
- package/src/styles/blueprint/src/components/slider/_slider.scss +216 -0
- package/src/styles/blueprint/src/components/spinner/_spinner.scss +65 -0
- package/src/styles/blueprint/src/components/tabs/_tabs.scss +199 -0
- package/src/styles/blueprint/src/components/tag/_common.scss +202 -0
- package/src/styles/blueprint/src/components/tag/_tag.scss +75 -0
- package/src/styles/blueprint/src/components/tag-input/_tag-input.scss +165 -0
- package/src/styles/blueprint/src/components/toast/_toast.scss +203 -0
- package/src/styles/blueprint/src/components/tooltip/_common.scss +11 -0
- package/src/styles/blueprint/src/components/tooltip/_tooltip.scss +61 -0
- package/src/styles/blueprint/src/components/tree/_tree.scss +194 -0
- package/src/styles/common/_css-variables.scss +41 -0
- package/src/styles/common/_theme.scss +143 -0
- package/src/styles/common/_utils.scss +58 -0
- package/src/styles/common/_variables.scss +117 -0
- package/src/styles/components/Code/_base.scss +252 -0
- package/src/styles/components/Code/_theme-dark.scss +35 -0
- package/src/styles/components/Code/_theme-light.scss +35 -0
- package/src/styles/components/Dialog/_base.scss +9 -0
- package/src/styles/components/Dropdown/_base.scss +12 -0
- package/src/styles/components/FormGroup/_base.scss +5 -0
- package/src/styles/components/ScrollContainer/_base.scss +13 -0
- package/src/styles/components/SimpleTabs/_base.scss +115 -0
- package/src/styles/components/TableOfContents/_base.scss +50 -0
- package/src/styles/components/_base.scss +7 -0
- package/src/styles/fonts/icons-16.eot +0 -0
- package/src/styles/fonts/icons-16.ttf +0 -0
- package/src/styles/fonts/icons-16.woff +0 -0
- package/src/styles/fonts/icons-20.eot +0 -0
- package/src/styles/fonts/icons-20.ttf +0 -0
- package/src/styles/fonts/icons-20.woff +0 -0
- package/src/styles/fonts/icons.json +3236 -0
- package/src/styles/icons/16px/add-column-left.svg +12 -0
- package/src/styles/icons/16px/add-column-right.svg +12 -0
- package/src/styles/icons/16px/add-row-bottom.svg +12 -0
- package/src/styles/icons/16px/add-row-top.svg +12 -0
- package/src/styles/icons/16px/add-to-artifact.svg +15 -0
- package/src/styles/icons/16px/add-to-folder.svg +10 -0
- package/src/styles/icons/16px/add.svg +13 -0
- package/src/styles/icons/16px/airplane.svg +11 -0
- package/src/styles/icons/16px/align-center.svg +15 -0
- package/src/styles/icons/16px/align-justify.svg +15 -0
- package/src/styles/icons/16px/align-left.svg +15 -0
- package/src/styles/icons/16px/align-right.svg +15 -0
- package/src/styles/icons/16px/alignment-bottom.svg +12 -0
- package/src/styles/icons/16px/alignment-horizontal-center.svg +12 -0
- package/src/styles/icons/16px/alignment-left.svg +12 -0
- package/src/styles/icons/16px/alignment-right.svg +12 -0
- package/src/styles/icons/16px/alignment-top.svg +12 -0
- package/src/styles/icons/16px/alignment-vertical-center.svg +12 -0
- package/src/styles/icons/16px/annotation.svg +12 -0
- package/src/styles/icons/16px/application.svg +13 -0
- package/src/styles/icons/16px/applications.svg +15 -0
- package/src/styles/icons/16px/arrow-bottom-left.svg +12 -0
- package/src/styles/icons/16px/arrow-bottom-right.svg +12 -0
- package/src/styles/icons/16px/arrow-down.svg +16 -0
- package/src/styles/icons/16px/arrow-left.svg +13 -0
- package/src/styles/icons/16px/arrow-right.svg +13 -0
- package/src/styles/icons/16px/arrow-top-left.svg +12 -0
- package/src/styles/icons/16px/arrow-top-right.svg +12 -0
- package/src/styles/icons/16px/arrow-up.svg +16 -0
- package/src/styles/icons/16px/arrows-horizontal.svg +17 -0
- package/src/styles/icons/16px/arrows-vertical.svg +17 -0
- package/src/styles/icons/16px/asterisk.svg +14 -0
- package/src/styles/icons/16px/automatic-updates.svg +17 -0
- package/src/styles/icons/16px/badge.svg +13 -0
- package/src/styles/icons/16px/ban-circle.svg +11 -0
- package/src/styles/icons/16px/bank-account.svg +19 -0
- package/src/styles/icons/16px/barcode.svg +12 -0
- package/src/styles/icons/16px/blank.svg +5 -0
- package/src/styles/icons/16px/blocked-person.svg +19 -0
- package/src/styles/icons/16px/bold.svg +12 -0
- package/src/styles/icons/16px/book.svg +11 -0
- package/src/styles/icons/16px/bookmark.svg +13 -0
- package/src/styles/icons/16px/box.svg +13 -0
- package/src/styles/icons/16px/briefcase.svg +13 -0
- package/src/styles/icons/16px/build.svg +13 -0
- package/src/styles/icons/16px/calculator.svg +12 -0
- package/src/styles/icons/16px/calendar.svg +10 -0
- package/src/styles/icons/16px/camera.svg +13 -0
- package/src/styles/icons/16px/caret-down.svg +13 -0
- package/src/styles/icons/16px/caret-left.svg +12 -0
- package/src/styles/icons/16px/caret-right.svg +12 -0
- package/src/styles/icons/16px/caret-up.svg +13 -0
- package/src/styles/icons/16px/cell-tower.svg +19 -0
- package/src/styles/icons/16px/changes.svg +16 -0
- package/src/styles/icons/16px/chart.svg +16 -0
- package/src/styles/icons/16px/chat.svg +12 -0
- package/src/styles/icons/16px/chevron-backward.svg +12 -0
- package/src/styles/icons/16px/chevron-down.svg +12 -0
- package/src/styles/icons/16px/chevron-forward.svg +12 -0
- package/src/styles/icons/16px/chevron-left.svg +12 -0
- package/src/styles/icons/16px/chevron-right.svg +12 -0
- package/src/styles/icons/16px/chevron-up.svg +12 -0
- package/src/styles/icons/16px/circle-arrow-down.svg +13 -0
- package/src/styles/icons/16px/circle-arrow-left.svg +13 -0
- package/src/styles/icons/16px/circle-arrow-right.svg +13 -0
- package/src/styles/icons/16px/circle-arrow-up.svg +13 -0
- package/src/styles/icons/16px/circle.svg +15 -0
- package/src/styles/icons/16px/citation.svg +15 -0
- package/src/styles/icons/16px/clean.svg +10 -0
- package/src/styles/icons/16px/clipboard.svg +13 -0
- package/src/styles/icons/16px/cloud-download.svg +15 -0
- package/src/styles/icons/16px/cloud-upload.svg +15 -0
- package/src/styles/icons/16px/cloud.svg +11 -0
- package/src/styles/icons/16px/code-block.svg +15 -0
- package/src/styles/icons/16px/code.svg +16 -0
- package/src/styles/icons/16px/cog.svg +19 -0
- package/src/styles/icons/16px/collapse-all.svg +14 -0
- package/src/styles/icons/16px/column-layout.svg +11 -0
- package/src/styles/icons/16px/comment.svg +13 -0
- package/src/styles/icons/16px/comparison.svg +16 -0
- package/src/styles/icons/16px/compass.svg +9 -0
- package/src/styles/icons/16px/compressed.svg +14 -0
- package/src/styles/icons/16px/confirm.svg +15 -0
- package/src/styles/icons/16px/console.svg +9 -0
- package/src/styles/icons/16px/contrast.svg +17 -0
- package/src/styles/icons/16px/control.svg +12 -0
- package/src/styles/icons/16px/credit-card.svg +14 -0
- package/src/styles/icons/16px/cross.svg +13 -0
- package/src/styles/icons/16px/crown.svg +12 -0
- package/src/styles/icons/16px/cube-add.svg +9 -0
- package/src/styles/icons/16px/cube-remove.svg +9 -0
- package/src/styles/icons/16px/cube.svg +9 -0
- package/src/styles/icons/16px/curved-range-chart.svg +12 -0
- package/src/styles/icons/16px/cut.svg +14 -0
- package/src/styles/icons/16px/dashboard.svg +14 -0
- package/src/styles/icons/16px/database.svg +13 -0
- package/src/styles/icons/16px/delete.svg +16 -0
- package/src/styles/icons/16px/delta.svg +11 -0
- package/src/styles/icons/16px/derive-column.svg +28 -0
- package/src/styles/icons/16px/desktop.svg +12 -0
- package/src/styles/icons/16px/diagram-tree.svg +10 -0
- package/src/styles/icons/16px/direction-left.svg +11 -0
- package/src/styles/icons/16px/direction-right.svg +11 -0
- package/src/styles/icons/16px/disable.svg +13 -0
- package/src/styles/icons/16px/document-open.svg +12 -0
- package/src/styles/icons/16px/document-share.svg +13 -0
- package/src/styles/icons/16px/document.svg +12 -0
- package/src/styles/icons/16px/dollar.svg +24 -0
- package/src/styles/icons/16px/dot.svg +11 -0
- package/src/styles/icons/16px/double-caret-horizontal.svg +13 -0
- package/src/styles/icons/16px/double-caret-vertical.svg +12 -0
- package/src/styles/icons/16px/double-chevron-down.svg +14 -0
- package/src/styles/icons/16px/double-chevron-left.svg +14 -0
- package/src/styles/icons/16px/double-chevron-right.svg +14 -0
- package/src/styles/icons/16px/double-chevron-up.svg +14 -0
- package/src/styles/icons/16px/doughnut-chart.svg +11 -0
- package/src/styles/icons/16px/download.svg +14 -0
- package/src/styles/icons/16px/drag-handle-horizontal.svg +15 -0
- package/src/styles/icons/16px/drag-handle-vertical.svg +15 -0
- package/src/styles/icons/16px/draw.svg +18 -0
- package/src/styles/icons/16px/drive-time.svg +16 -0
- package/src/styles/icons/16px/duplicate.svg +12 -0
- package/src/styles/icons/16px/edit.svg +13 -0
- package/src/styles/icons/16px/eject.svg +12 -0
- package/src/styles/icons/16px/endorsed.svg +17 -0
- package/src/styles/icons/16px/envelope.svg +13 -0
- package/src/styles/icons/16px/eraser.svg +12 -0
- package/src/styles/icons/16px/error.svg +12 -0
- package/src/styles/icons/16px/euro.svg +19 -0
- package/src/styles/icons/16px/exchange.svg +18 -0
- package/src/styles/icons/16px/exclude-row.svg +14 -0
- package/src/styles/icons/16px/expand-all.svg +14 -0
- package/src/styles/icons/16px/export.svg +14 -0
- package/src/styles/icons/16px/eye-off.svg +20 -0
- package/src/styles/icons/16px/eye-on.svg +20 -0
- package/src/styles/icons/16px/eye-open.svg +12 -0
- package/src/styles/icons/16px/fast-backward.svg +13 -0
- package/src/styles/icons/16px/fast-forward.svg +13 -0
- package/src/styles/icons/16px/feed-subscribed.svg +17 -0
- package/src/styles/icons/16px/feed.svg +15 -0
- package/src/styles/icons/16px/film.svg +12 -0
- package/src/styles/icons/16px/filter-keep.svg +14 -0
- package/src/styles/icons/16px/filter-list.svg +14 -0
- package/src/styles/icons/16px/filter-remove.svg +15 -0
- package/src/styles/icons/16px/filter.svg +13 -0
- package/src/styles/icons/16px/flag.svg +13 -0
- package/src/styles/icons/16px/flame.svg +10 -0
- package/src/styles/icons/16px/flash.svg +20 -0
- package/src/styles/icons/16px/floppy-disk.svg +12 -0
- package/src/styles/icons/16px/flow-branch.svg +12 -0
- package/src/styles/icons/16px/flow-end.svg +12 -0
- package/src/styles/icons/16px/flow-linear.svg +12 -0
- package/src/styles/icons/16px/flow-review-branch.svg +12 -0
- package/src/styles/icons/16px/flow-review.svg +12 -0
- package/src/styles/icons/16px/flows.svg +13 -0
- package/src/styles/icons/16px/folder-close.svg +12 -0
- package/src/styles/icons/16px/folder-new.svg +10 -0
- package/src/styles/icons/16px/folder-open.svg +12 -0
- package/src/styles/icons/16px/folder-shared-open.svg +15 -0
- package/src/styles/icons/16px/folder-shared.svg +15 -0
- package/src/styles/icons/16px/follower.svg +20 -0
- package/src/styles/icons/16px/following.svg +20 -0
- package/src/styles/icons/16px/font.svg +13 -0
- package/src/styles/icons/16px/fork.svg +15 -0
- package/src/styles/icons/16px/form.svg +18 -0
- package/src/styles/icons/16px/full-circle.svg +7 -0
- package/src/styles/icons/16px/full-stacked-chart.svg +14 -0
- package/src/styles/icons/16px/fullscreen.svg +17 -0
- package/src/styles/icons/16px/function.svg +27 -0
- package/src/styles/icons/16px/gantt-chart.svg +13 -0
- package/src/styles/icons/16px/geolocation.svg +11 -0
- package/src/styles/icons/16px/geosearch.svg +28 -0
- package/src/styles/icons/16px/git-branch.svg +15 -0
- package/src/styles/icons/16px/git-commit.svg +12 -0
- package/src/styles/icons/16px/git-merge.svg +14 -0
- package/src/styles/icons/16px/git-new-branch.svg +15 -0
- package/src/styles/icons/16px/git-pull.svg +16 -0
- package/src/styles/icons/16px/git-push.svg +13 -0
- package/src/styles/icons/16px/git-repo.svg +12 -0
- package/src/styles/icons/16px/glass.svg +11 -0
- package/src/styles/icons/16px/globe-network.svg +12 -0
- package/src/styles/icons/16px/globe.svg +38 -0
- package/src/styles/icons/16px/graph-remove.svg +17 -0
- package/src/styles/icons/16px/graph.svg +15 -0
- package/src/styles/icons/16px/grid-view.svg +11 -0
- package/src/styles/icons/16px/grid.svg +14 -0
- package/src/styles/icons/16px/group-objects.svg +13 -0
- package/src/styles/icons/16px/grouped-bar-chart.svg +13 -0
- package/src/styles/icons/16px/hand-down.svg +13 -0
- package/src/styles/icons/16px/hand-left.svg +13 -0
- package/src/styles/icons/16px/hand-right.svg +13 -0
- package/src/styles/icons/16px/hand-up.svg +13 -0
- package/src/styles/icons/16px/hand.svg +14 -0
- package/src/styles/icons/16px/header-one.svg +11 -0
- package/src/styles/icons/16px/header-two.svg +19 -0
- package/src/styles/icons/16px/header.svg +11 -0
- package/src/styles/icons/16px/headset.svg +13 -0
- package/src/styles/icons/16px/heart-broken.svg +16 -0
- package/src/styles/icons/16px/heart.svg +15 -0
- package/src/styles/icons/16px/heat-grid.svg +12 -0
- package/src/styles/icons/16px/heatmap.svg +15 -0
- package/src/styles/icons/16px/help.svg +16 -0
- package/src/styles/icons/16px/helper-management.svg +16 -0
- package/src/styles/icons/16px/highlight.svg +12 -0
- package/src/styles/icons/16px/history.svg +15 -0
- package/src/styles/icons/16px/home.svg +14 -0
- package/src/styles/icons/16px/horizontal-bar-chart-asc.svg +12 -0
- package/src/styles/icons/16px/horizontal-bar-chart-desc.svg +13 -0
- package/src/styles/icons/16px/horizontal-bar-chart.svg +13 -0
- package/src/styles/icons/16px/horizontal-distribution.svg +12 -0
- package/src/styles/icons/16px/id-number.svg +21 -0
- package/src/styles/icons/16px/image-rotate-left.svg +15 -0
- package/src/styles/icons/16px/image-rotate-right.svg +14 -0
- package/src/styles/icons/16px/import.svg +14 -0
- package/src/styles/icons/16px/inbox-filtered.svg +11 -0
- package/src/styles/icons/16px/inbox-geo.svg +11 -0
- package/src/styles/icons/16px/inbox-search.svg +11 -0
- package/src/styles/icons/16px/inbox-update.svg +11 -0
- package/src/styles/icons/16px/inbox.svg +13 -0
- package/src/styles/icons/16px/info-sign.svg +12 -0
- package/src/styles/icons/16px/inner-join.svg +14 -0
- package/src/styles/icons/16px/insert.svg +16 -0
- package/src/styles/icons/16px/intersection.svg +14 -0
- package/src/styles/icons/16px/ip-address.svg +13 -0
- package/src/styles/icons/16px/issue-closed.svg +12 -0
- package/src/styles/icons/16px/issue-new.svg +12 -0
- package/src/styles/icons/16px/issue.svg +12 -0
- package/src/styles/icons/16px/italic.svg +13 -0
- package/src/styles/icons/16px/join-table.svg +12 -0
- package/src/styles/icons/16px/key-backspace.svg +15 -0
- package/src/styles/icons/16px/key-command.svg +14 -0
- package/src/styles/icons/16px/key-control.svg +12 -0
- package/src/styles/icons/16px/key-delete.svg +15 -0
- package/src/styles/icons/16px/key-enter.svg +12 -0
- package/src/styles/icons/16px/key-escape.svg +13 -0
- package/src/styles/icons/16px/key-option.svg +12 -0
- package/src/styles/icons/16px/key-shift.svg +12 -0
- package/src/styles/icons/16px/key-tab.svg +15 -0
- package/src/styles/icons/16px/key.svg +15 -0
- package/src/styles/icons/16px/known-vehicle.svg +28 -0
- package/src/styles/icons/16px/label.svg +12 -0
- package/src/styles/icons/16px/layer.svg +13 -0
- package/src/styles/icons/16px/layers.svg +18 -0
- package/src/styles/icons/16px/layout-auto.svg +16 -0
- package/src/styles/icons/16px/layout-balloon.svg +16 -0
- package/src/styles/icons/16px/layout-circle.svg +22 -0
- package/src/styles/icons/16px/layout-grid.svg +16 -0
- package/src/styles/icons/16px/layout-group-by.svg +15 -0
- package/src/styles/icons/16px/layout-hierarchy.svg +17 -0
- package/src/styles/icons/16px/layout-linear.svg +12 -0
- package/src/styles/icons/16px/layout-skew-grid.svg +15 -0
- package/src/styles/icons/16px/layout-sorted-clusters.svg +13 -0
- package/src/styles/icons/16px/layout.svg +18 -0
- package/src/styles/icons/16px/left-join.svg +13 -0
- package/src/styles/icons/16px/lifesaver.svg +9 -0
- package/src/styles/icons/16px/lightbulb.svg +13 -0
- package/src/styles/icons/16px/link.svg +19 -0
- package/src/styles/icons/16px/list-columns.svg +12 -0
- package/src/styles/icons/16px/list-detail-view.svg +13 -0
- package/src/styles/icons/16px/list.svg +13 -0
- package/src/styles/icons/16px/locate.svg +16 -0
- package/src/styles/icons/16px/lock.svg +8 -0
- package/src/styles/icons/16px/log-in.svg +13 -0
- package/src/styles/icons/16px/log-out.svg +13 -0
- package/src/styles/icons/16px/manual.svg +17 -0
- package/src/styles/icons/16px/manually-entered-data.svg +14 -0
- package/src/styles/icons/16px/map-create.svg +17 -0
- package/src/styles/icons/16px/map-marker.svg +13 -0
- package/src/styles/icons/16px/map.svg +17 -0
- package/src/styles/icons/16px/maximize.svg +15 -0
- package/src/styles/icons/16px/media.svg +13 -0
- package/src/styles/icons/16px/menu-closed.svg +15 -0
- package/src/styles/icons/16px/menu-open.svg +14 -0
- package/src/styles/icons/16px/menu.svg +12 -0
- package/src/styles/icons/16px/merge-columns.svg +17 -0
- package/src/styles/icons/16px/merge-links.svg +15 -0
- package/src/styles/icons/16px/minimize.svg +15 -0
- package/src/styles/icons/16px/minus.svg +11 -0
- package/src/styles/icons/16px/mobile-phone.svg +11 -0
- package/src/styles/icons/16px/mobile-video.svg +12 -0
- package/src/styles/icons/16px/moon.svg +9 -0
- package/src/styles/icons/16px/more.svg +11 -0
- package/src/styles/icons/16px/mountain.svg +10 -0
- package/src/styles/icons/16px/move.svg +17 -0
- package/src/styles/icons/16px/mugshot.svg +18 -0
- package/src/styles/icons/16px/multi-select.svg +13 -0
- package/src/styles/icons/16px/music.svg +12 -0
- package/src/styles/icons/16px/new-grid-item.svg +16 -0
- package/src/styles/icons/16px/new-link.svg +13 -0
- package/src/styles/icons/16px/new-object.svg +17 -0
- package/src/styles/icons/16px/new-person.svg +18 -0
- package/src/styles/icons/16px/new-prescription.svg +19 -0
- package/src/styles/icons/16px/new-text-box.svg +15 -0
- package/src/styles/icons/16px/ninja.svg +13 -0
- package/src/styles/icons/16px/notifications-updated.svg +10 -0
- package/src/styles/icons/16px/notifications.svg +12 -0
- package/src/styles/icons/16px/numbered-list.svg +21 -0
- package/src/styles/icons/16px/numerical.svg +29 -0
- package/src/styles/icons/16px/office.svg +12 -0
- package/src/styles/icons/16px/offline.svg +12 -0
- package/src/styles/icons/16px/oil-field.svg +14 -0
- package/src/styles/icons/16px/one-column.svg +13 -0
- package/src/styles/icons/16px/outdated.svg +10 -0
- package/src/styles/icons/16px/page-layout.svg +12 -0
- package/src/styles/icons/16px/panel-stats.svg +15 -0
- package/src/styles/icons/16px/panel-table.svg +9 -0
- package/src/styles/icons/16px/paperclip.svg +16 -0
- package/src/styles/icons/16px/paragraph.svg +9 -0
- package/src/styles/icons/16px/path-search.svg +20 -0
- package/src/styles/icons/16px/path.svg +12 -0
- package/src/styles/icons/16px/pause.svg +11 -0
- package/src/styles/icons/16px/people.svg +25 -0
- package/src/styles/icons/16px/percentage.svg +14 -0
- package/src/styles/icons/16px/person.svg +19 -0
- package/src/styles/icons/16px/phone.svg +15 -0
- package/src/styles/icons/16px/pie-chart.svg +10 -0
- package/src/styles/icons/16px/pin.svg +12 -0
- package/src/styles/icons/16px/pivot-table.svg +16 -0
- package/src/styles/icons/16px/pivot.svg +14 -0
- package/src/styles/icons/16px/play.svg +12 -0
- package/src/styles/icons/16px/plus.svg +11 -0
- package/src/styles/icons/16px/polygon-filter.svg +15 -0
- package/src/styles/icons/16px/power.svg +12 -0
- package/src/styles/icons/16px/predictive-analysis.svg +33 -0
- package/src/styles/icons/16px/prescription.svg +15 -0
- package/src/styles/icons/16px/presentation.svg +14 -0
- package/src/styles/icons/16px/print.svg +13 -0
- package/src/styles/icons/16px/projects.svg +13 -0
- package/src/styles/icons/16px/properties.svg +15 -0
- package/src/styles/icons/16px/property.svg +15 -0
- package/src/styles/icons/16px/publish-function.svg +30 -0
- package/src/styles/icons/16px/pulse.svg +13 -0
- package/src/styles/icons/16px/random.svg +17 -0
- package/src/styles/icons/16px/record.svg +10 -0
- package/src/styles/icons/16px/redo.svg +13 -0
- package/src/styles/icons/16px/refresh.svg +15 -0
- package/src/styles/icons/16px/regression-chart.svg +13 -0
- package/src/styles/icons/16px/remove-column-left.svg +12 -0
- package/src/styles/icons/16px/remove-column-right.svg +12 -0
- package/src/styles/icons/16px/remove-column.svg +14 -0
- package/src/styles/icons/16px/remove-row-bottom.svg +12 -0
- package/src/styles/icons/16px/remove-row-top.svg +12 -0
- package/src/styles/icons/16px/remove.svg +13 -0
- package/src/styles/icons/16px/repeat.svg +13 -0
- package/src/styles/icons/16px/resolve.svg +17 -0
- package/src/styles/icons/16px/rig.svg +14 -0
- package/src/styles/icons/16px/right-join.svg +13 -0
- package/src/styles/icons/16px/ring.svg +11 -0
- package/src/styles/icons/16px/rotate-document.svg +14 -0
- package/src/styles/icons/16px/rotate-page.svg +13 -0
- package/src/styles/icons/16px/satellite.svg +17 -0
- package/src/styles/icons/16px/saved.svg +13 -0
- package/src/styles/icons/16px/scatter-plot.svg +13 -0
- package/src/styles/icons/16px/search-around.svg +20 -0
- package/src/styles/icons/16px/search-template.svg +16 -0
- package/src/styles/icons/16px/search-text.svg +14 -0
- package/src/styles/icons/16px/search.svg +13 -0
- package/src/styles/icons/16px/segmented-control.svg +10 -0
- package/src/styles/icons/16px/select.svg +15 -0
- package/src/styles/icons/16px/selection.svg +12 -0
- package/src/styles/icons/16px/send-to-graph.svg +16 -0
- package/src/styles/icons/16px/send-to-map.svg +16 -0
- package/src/styles/icons/16px/send-to.svg +18 -0
- package/src/styles/icons/16px/series-add.svg +9 -0
- package/src/styles/icons/16px/series-configuration.svg +17 -0
- package/src/styles/icons/16px/series-derived.svg +10 -0
- package/src/styles/icons/16px/series-filtered.svg +10 -0
- package/src/styles/icons/16px/series-search.svg +15 -0
- package/src/styles/icons/16px/settings.svg +14 -0
- package/src/styles/icons/16px/share.svg +14 -0
- package/src/styles/icons/16px/shield.svg +10 -0
- package/src/styles/icons/16px/shop.svg +13 -0
- package/src/styles/icons/16px/shopping-cart.svg +13 -0
- package/src/styles/icons/16px/sim-card.svg +12 -0
- package/src/styles/icons/16px/slash.svg +11 -0
- package/src/styles/icons/16px/small-cross.svg +13 -0
- package/src/styles/icons/16px/small-minus.svg +11 -0
- package/src/styles/icons/16px/small-plus.svg +11 -0
- package/src/styles/icons/16px/small-tick.svg +12 -0
- package/src/styles/icons/16px/snowflake.svg +12 -0
- package/src/styles/icons/16px/social-media.svg +19 -0
- package/src/styles/icons/16px/sort-alphabetical-desc.svg +14 -0
- package/src/styles/icons/16px/sort-alphabetical.svg +14 -0
- package/src/styles/icons/16px/sort-asc.svg +15 -0
- package/src/styles/icons/16px/sort-desc.svg +15 -0
- package/src/styles/icons/16px/sort-numerical-desc.svg +26 -0
- package/src/styles/icons/16px/sort-numerical.svg +25 -0
- package/src/styles/icons/16px/sort.svg +15 -0
- package/src/styles/icons/16px/split-columns.svg +17 -0
- package/src/styles/icons/16px/square.svg +12 -0
- package/src/styles/icons/16px/stacked-chart.svg +13 -0
- package/src/styles/icons/16px/star-empty.svg +8 -0
- package/src/styles/icons/16px/star.svg +8 -0
- package/src/styles/icons/16px/step-backward.svg +12 -0
- package/src/styles/icons/16px/step-chart.svg +12 -0
- package/src/styles/icons/16px/step-forward.svg +12 -0
- package/src/styles/icons/16px/stop.svg +11 -0
- package/src/styles/icons/16px/strikethrough.svg +21 -0
- package/src/styles/icons/16px/style.svg +13 -0
- package/src/styles/icons/16px/swap-horizontal.svg +16 -0
- package/src/styles/icons/16px/swap-vertical.svg +16 -0
- package/src/styles/icons/16px/symbol-circle.svg +10 -0
- package/src/styles/icons/16px/symbol-cross.svg +11 -0
- package/src/styles/icons/16px/symbol-diamond.svg +12 -0
- package/src/styles/icons/16px/symbol-square.svg +11 -0
- package/src/styles/icons/16px/symbol-triangle-down.svg +11 -0
- package/src/styles/icons/16px/symbol-triangle-up.svg +12 -0
- package/src/styles/icons/16px/tag.svg +10 -0
- package/src/styles/icons/16px/take-action.svg +15 -0
- package/src/styles/icons/16px/taxi.svg +12 -0
- package/src/styles/icons/16px/text-highlight.svg +13 -0
- package/src/styles/icons/16px/th-derived.svg +17 -0
- package/src/styles/icons/16px/th-filtered.svg +10 -0
- package/src/styles/icons/16px/th-list.svg +15 -0
- package/src/styles/icons/16px/th.svg +16 -0
- package/src/styles/icons/16px/thumbs-down.svg +17 -0
- package/src/styles/icons/16px/thumbs-up.svg +17 -0
- package/src/styles/icons/16px/tick-circle.svg +10 -0
- package/src/styles/icons/16px/tick.svg +12 -0
- package/src/styles/icons/16px/time.svg +13 -0
- package/src/styles/icons/16px/timeline-area-chart.svg +12 -0
- package/src/styles/icons/16px/timeline-bar-chart.svg +13 -0
- package/src/styles/icons/16px/timeline-events.svg +18 -0
- package/src/styles/icons/16px/timeline-line-chart.svg +14 -0
- package/src/styles/icons/16px/tint.svg +11 -0
- package/src/styles/icons/16px/torch.svg +13 -0
- package/src/styles/icons/16px/train.svg +7 -0
- package/src/styles/icons/16px/translate.svg +16 -0
- package/src/styles/icons/16px/trash.svg +15 -0
- package/src/styles/icons/16px/tree.svg +12 -0
- package/src/styles/icons/16px/trending-down.svg +13 -0
- package/src/styles/icons/16px/trending-up.svg +13 -0
- package/src/styles/icons/16px/two-columns.svg +14 -0
- package/src/styles/icons/16px/underline.svg +12 -0
- package/src/styles/icons/16px/undo.svg +13 -0
- package/src/styles/icons/16px/ungroup-objects.svg +12 -0
- package/src/styles/icons/16px/unknown-vehicle.svg +34 -0
- package/src/styles/icons/16px/unlock.svg +13 -0
- package/src/styles/icons/16px/unpin.svg +13 -0
- package/src/styles/icons/16px/unresolve.svg +18 -0
- package/src/styles/icons/16px/updated.svg +10 -0
- package/src/styles/icons/16px/upload.svg +12 -0
- package/src/styles/icons/16px/user.svg +28 -0
- package/src/styles/icons/16px/variable.svg +24 -0
- package/src/styles/icons/16px/vertical-bar-chart-asc.svg +12 -0
- package/src/styles/icons/16px/vertical-bar-chart-desc.svg +12 -0
- package/src/styles/icons/16px/vertical-distribution.svg +12 -0
- package/src/styles/icons/16px/video.svg +11 -0
- package/src/styles/icons/16px/volume-down.svg +12 -0
- package/src/styles/icons/16px/volume-off.svg +11 -0
- package/src/styles/icons/16px/volume-up.svg +14 -0
- package/src/styles/icons/16px/walk.svg +10 -0
- package/src/styles/icons/16px/warning-sign.svg +13 -0
- package/src/styles/icons/16px/waterfall-chart.svg +13 -0
- package/src/styles/icons/16px/widget-button.svg +12 -0
- package/src/styles/icons/16px/widget-footer.svg +7 -0
- package/src/styles/icons/16px/widget-header.svg +7 -0
- package/src/styles/icons/16px/widget.svg +14 -0
- package/src/styles/icons/16px/wrench.svg +12 -0
- package/src/styles/icons/16px/zoom-in.svg +15 -0
- package/src/styles/icons/16px/zoom-out.svg +14 -0
- package/src/styles/icons/16px/zoom-to-fit.svg +21 -0
- package/src/styles/icons/20px/add-column-left.svg +12 -0
- package/src/styles/icons/20px/add-column-right.svg +12 -0
- package/src/styles/icons/20px/add-row-bottom.svg +12 -0
- package/src/styles/icons/20px/add-row-top.svg +12 -0
- package/src/styles/icons/20px/add-to-artifact.svg +15 -0
- package/src/styles/icons/20px/add-to-folder.svg +10 -0
- package/src/styles/icons/20px/add.svg +14 -0
- package/src/styles/icons/20px/airplane.svg +11 -0
- package/src/styles/icons/20px/align-center.svg +15 -0
- package/src/styles/icons/20px/align-justify.svg +15 -0
- package/src/styles/icons/20px/align-left.svg +15 -0
- package/src/styles/icons/20px/align-right.svg +15 -0
- package/src/styles/icons/20px/alignment-bottom.svg +12 -0
- package/src/styles/icons/20px/alignment-horizontal-center.svg +12 -0
- package/src/styles/icons/20px/alignment-left.svg +12 -0
- package/src/styles/icons/20px/alignment-right.svg +12 -0
- package/src/styles/icons/20px/alignment-top.svg +12 -0
- package/src/styles/icons/20px/alignment-vertical-center.svg +12 -0
- package/src/styles/icons/20px/annotation.svg +12 -0
- package/src/styles/icons/20px/application.svg +13 -0
- package/src/styles/icons/20px/applications.svg +15 -0
- package/src/styles/icons/20px/arrow-bottom-left.svg +12 -0
- package/src/styles/icons/20px/arrow-bottom-right.svg +12 -0
- package/src/styles/icons/20px/arrow-down.svg +16 -0
- package/src/styles/icons/20px/arrow-left.svg +13 -0
- package/src/styles/icons/20px/arrow-right.svg +13 -0
- package/src/styles/icons/20px/arrow-top-left.svg +12 -0
- package/src/styles/icons/20px/arrow-top-right.svg +12 -0
- package/src/styles/icons/20px/arrow-up.svg +16 -0
- package/src/styles/icons/20px/arrows-horizontal.svg +17 -0
- package/src/styles/icons/20px/arrows-vertical.svg +17 -0
- package/src/styles/icons/20px/asterisk.svg +14 -0
- package/src/styles/icons/20px/automatic-updates.svg +17 -0
- package/src/styles/icons/20px/badge.svg +13 -0
- package/src/styles/icons/20px/ban-circle.svg +11 -0
- package/src/styles/icons/20px/bank-account.svg +17 -0
- package/src/styles/icons/20px/barcode.svg +13 -0
- package/src/styles/icons/20px/blank.svg +5 -0
- package/src/styles/icons/20px/blocked-person.svg +19 -0
- package/src/styles/icons/20px/bold.svg +12 -0
- package/src/styles/icons/20px/book.svg +11 -0
- package/src/styles/icons/20px/bookmark.svg +11 -0
- package/src/styles/icons/20px/box.svg +13 -0
- package/src/styles/icons/20px/briefcase.svg +13 -0
- package/src/styles/icons/20px/build.svg +13 -0
- package/src/styles/icons/20px/calculator.svg +12 -0
- package/src/styles/icons/20px/calendar.svg +10 -0
- package/src/styles/icons/20px/camera.svg +13 -0
- package/src/styles/icons/20px/caret-down.svg +12 -0
- package/src/styles/icons/20px/caret-left.svg +13 -0
- package/src/styles/icons/20px/caret-right.svg +13 -0
- package/src/styles/icons/20px/caret-up.svg +13 -0
- package/src/styles/icons/20px/cell-tower.svg +19 -0
- package/src/styles/icons/20px/changes.svg +16 -0
- package/src/styles/icons/20px/chart.svg +16 -0
- package/src/styles/icons/20px/chat.svg +13 -0
- package/src/styles/icons/20px/chevron-backward.svg +12 -0
- package/src/styles/icons/20px/chevron-down.svg +12 -0
- package/src/styles/icons/20px/chevron-forward.svg +12 -0
- package/src/styles/icons/20px/chevron-left.svg +12 -0
- package/src/styles/icons/20px/chevron-right.svg +12 -0
- package/src/styles/icons/20px/chevron-up.svg +12 -0
- package/src/styles/icons/20px/circle-arrow-down.svg +13 -0
- package/src/styles/icons/20px/circle-arrow-left.svg +13 -0
- package/src/styles/icons/20px/circle-arrow-right.svg +14 -0
- package/src/styles/icons/20px/circle-arrow-up.svg +13 -0
- package/src/styles/icons/20px/circle.svg +15 -0
- package/src/styles/icons/20px/citation.svg +12 -0
- package/src/styles/icons/20px/clean.svg +10 -0
- package/src/styles/icons/20px/clipboard.svg +10 -0
- package/src/styles/icons/20px/cloud-download.svg +15 -0
- package/src/styles/icons/20px/cloud-upload.svg +15 -0
- package/src/styles/icons/20px/cloud.svg +11 -0
- package/src/styles/icons/20px/code-block.svg +15 -0
- package/src/styles/icons/20px/code.svg +16 -0
- package/src/styles/icons/20px/cog.svg +18 -0
- package/src/styles/icons/20px/collapse-all.svg +14 -0
- package/src/styles/icons/20px/column-layout.svg +11 -0
- package/src/styles/icons/20px/comment.svg +13 -0
- package/src/styles/icons/20px/comparison.svg +17 -0
- package/src/styles/icons/20px/compass.svg +9 -0
- package/src/styles/icons/20px/compressed.svg +14 -0
- package/src/styles/icons/20px/confirm.svg +15 -0
- package/src/styles/icons/20px/console.svg +10 -0
- package/src/styles/icons/20px/contrast.svg +17 -0
- package/src/styles/icons/20px/control.svg +12 -0
- package/src/styles/icons/20px/credit-card.svg +14 -0
- package/src/styles/icons/20px/cross.svg +13 -0
- package/src/styles/icons/20px/crown.svg +12 -0
- package/src/styles/icons/20px/cube-add.svg +9 -0
- package/src/styles/icons/20px/cube-remove.svg +9 -0
- package/src/styles/icons/20px/cube.svg +9 -0
- package/src/styles/icons/20px/curved-range-chart.svg +13 -0
- package/src/styles/icons/20px/cut.svg +14 -0
- package/src/styles/icons/20px/dashboard.svg +15 -0
- package/src/styles/icons/20px/database.svg +14 -0
- package/src/styles/icons/20px/delete.svg +15 -0
- package/src/styles/icons/20px/delta.svg +11 -0
- package/src/styles/icons/20px/derive-column.svg +29 -0
- package/src/styles/icons/20px/desktop.svg +12 -0
- package/src/styles/icons/20px/diagram-tree.svg +10 -0
- package/src/styles/icons/20px/direction-left.svg +11 -0
- package/src/styles/icons/20px/direction-right.svg +11 -0
- package/src/styles/icons/20px/disable.svg +13 -0
- package/src/styles/icons/20px/document-open.svg +12 -0
- package/src/styles/icons/20px/document-share.svg +14 -0
- package/src/styles/icons/20px/document.svg +12 -0
- package/src/styles/icons/20px/dollar.svg +23 -0
- package/src/styles/icons/20px/dot.svg +11 -0
- package/src/styles/icons/20px/double-caret-horizontal.svg +13 -0
- package/src/styles/icons/20px/double-caret-vertical.svg +13 -0
- package/src/styles/icons/20px/double-chevron-down.svg +14 -0
- package/src/styles/icons/20px/double-chevron-left.svg +14 -0
- package/src/styles/icons/20px/double-chevron-right.svg +14 -0
- package/src/styles/icons/20px/double-chevron-up.svg +14 -0
- package/src/styles/icons/20px/doughnut-chart.svg +11 -0
- package/src/styles/icons/20px/download.svg +14 -0
- package/src/styles/icons/20px/drag-handle-horizontal.svg +15 -0
- package/src/styles/icons/20px/drag-handle-vertical.svg +15 -0
- package/src/styles/icons/20px/draw.svg +18 -0
- package/src/styles/icons/20px/drive-time.svg +18 -0
- package/src/styles/icons/20px/duplicate.svg +12 -0
- package/src/styles/icons/20px/edit.svg +13 -0
- package/src/styles/icons/20px/eject.svg +12 -0
- package/src/styles/icons/20px/endorsed.svg +17 -0
- package/src/styles/icons/20px/envelope.svg +13 -0
- package/src/styles/icons/20px/eraser.svg +12 -0
- package/src/styles/icons/20px/error.svg +12 -0
- package/src/styles/icons/20px/euro.svg +19 -0
- package/src/styles/icons/20px/exchange.svg +17 -0
- package/src/styles/icons/20px/exclude-row.svg +15 -0
- package/src/styles/icons/20px/expand-all.svg +14 -0
- package/src/styles/icons/20px/export.svg +14 -0
- package/src/styles/icons/20px/eye-off.svg +21 -0
- package/src/styles/icons/20px/eye-on.svg +20 -0
- package/src/styles/icons/20px/eye-open.svg +12 -0
- package/src/styles/icons/20px/fast-backward.svg +13 -0
- package/src/styles/icons/20px/fast-forward.svg +13 -0
- package/src/styles/icons/20px/feed-subscribed.svg +17 -0
- package/src/styles/icons/20px/feed.svg +15 -0
- package/src/styles/icons/20px/film.svg +12 -0
- package/src/styles/icons/20px/filter-keep.svg +13 -0
- package/src/styles/icons/20px/filter-list.svg +14 -0
- package/src/styles/icons/20px/filter-remove.svg +15 -0
- package/src/styles/icons/20px/filter.svg +13 -0
- package/src/styles/icons/20px/flag.svg +13 -0
- package/src/styles/icons/20px/flame.svg +10 -0
- package/src/styles/icons/20px/flash.svg +20 -0
- package/src/styles/icons/20px/floppy-disk.svg +12 -0
- package/src/styles/icons/20px/flow-branch.svg +12 -0
- package/src/styles/icons/20px/flow-end.svg +12 -0
- package/src/styles/icons/20px/flow-linear.svg +12 -0
- package/src/styles/icons/20px/flow-review-branch.svg +12 -0
- package/src/styles/icons/20px/flow-review.svg +12 -0
- package/src/styles/icons/20px/flows.svg +13 -0
- package/src/styles/icons/20px/folder-close.svg +12 -0
- package/src/styles/icons/20px/folder-new.svg +10 -0
- package/src/styles/icons/20px/folder-open.svg +13 -0
- package/src/styles/icons/20px/folder-shared-open.svg +15 -0
- package/src/styles/icons/20px/folder-shared.svg +15 -0
- package/src/styles/icons/20px/follower.svg +20 -0
- package/src/styles/icons/20px/following.svg +20 -0
- package/src/styles/icons/20px/font.svg +13 -0
- package/src/styles/icons/20px/fork.svg +16 -0
- package/src/styles/icons/20px/form.svg +18 -0
- package/src/styles/icons/20px/full-circle.svg +7 -0
- package/src/styles/icons/20px/full-stacked-chart.svg +14 -0
- package/src/styles/icons/20px/fullscreen.svg +16 -0
- package/src/styles/icons/20px/function.svg +27 -0
- package/src/styles/icons/20px/gantt-chart.svg +13 -0
- package/src/styles/icons/20px/geolocation.svg +11 -0
- package/src/styles/icons/20px/geosearch.svg +28 -0
- package/src/styles/icons/20px/git-branch.svg +15 -0
- package/src/styles/icons/20px/git-commit.svg +12 -0
- package/src/styles/icons/20px/git-merge.svg +14 -0
- package/src/styles/icons/20px/git-new-branch.svg +15 -0
- package/src/styles/icons/20px/git-pull.svg +17 -0
- package/src/styles/icons/20px/git-push.svg +14 -0
- package/src/styles/icons/20px/git-repo.svg +12 -0
- package/src/styles/icons/20px/glass.svg +11 -0
- package/src/styles/icons/20px/globe-network.svg +12 -0
- package/src/styles/icons/20px/globe.svg +36 -0
- package/src/styles/icons/20px/graph-remove.svg +17 -0
- package/src/styles/icons/20px/graph.svg +16 -0
- package/src/styles/icons/20px/grid-view.svg +11 -0
- package/src/styles/icons/20px/grid.svg +14 -0
- package/src/styles/icons/20px/group-objects.svg +13 -0
- package/src/styles/icons/20px/grouped-bar-chart.svg +14 -0
- package/src/styles/icons/20px/hand-down.svg +14 -0
- package/src/styles/icons/20px/hand-left.svg +14 -0
- package/src/styles/icons/20px/hand-right.svg +14 -0
- package/src/styles/icons/20px/hand-up.svg +14 -0
- package/src/styles/icons/20px/hand.svg +20 -0
- package/src/styles/icons/20px/header-one.svg +12 -0
- package/src/styles/icons/20px/header-two.svg +19 -0
- package/src/styles/icons/20px/header.svg +11 -0
- package/src/styles/icons/20px/headset.svg +13 -0
- package/src/styles/icons/20px/heart-broken.svg +16 -0
- package/src/styles/icons/20px/heart.svg +16 -0
- package/src/styles/icons/20px/heat-grid.svg +12 -0
- package/src/styles/icons/20px/heatmap.svg +12 -0
- package/src/styles/icons/20px/help.svg +12 -0
- package/src/styles/icons/20px/helper-management.svg +16 -0
- package/src/styles/icons/20px/highlight.svg +13 -0
- package/src/styles/icons/20px/history.svg +14 -0
- package/src/styles/icons/20px/home.svg +14 -0
- package/src/styles/icons/20px/horizontal-bar-chart-asc.svg +13 -0
- package/src/styles/icons/20px/horizontal-bar-chart-desc.svg +13 -0
- package/src/styles/icons/20px/horizontal-bar-chart.svg +13 -0
- package/src/styles/icons/20px/horizontal-distribution.svg +12 -0
- package/src/styles/icons/20px/id-number.svg +23 -0
- package/src/styles/icons/20px/image-rotate-left.svg +14 -0
- package/src/styles/icons/20px/image-rotate-right.svg +14 -0
- package/src/styles/icons/20px/import.svg +14 -0
- package/src/styles/icons/20px/inbox-filtered.svg +11 -0
- package/src/styles/icons/20px/inbox-geo.svg +11 -0
- package/src/styles/icons/20px/inbox-search.svg +11 -0
- package/src/styles/icons/20px/inbox-update.svg +11 -0
- package/src/styles/icons/20px/inbox.svg +13 -0
- package/src/styles/icons/20px/info-sign.svg +12 -0
- package/src/styles/icons/20px/inner-join.svg +14 -0
- package/src/styles/icons/20px/insert.svg +16 -0
- package/src/styles/icons/20px/intersection.svg +14 -0
- package/src/styles/icons/20px/ip-address.svg +13 -0
- package/src/styles/icons/20px/issue-closed.svg +12 -0
- package/src/styles/icons/20px/issue-new.svg +12 -0
- package/src/styles/icons/20px/issue.svg +12 -0
- package/src/styles/icons/20px/italic.svg +13 -0
- package/src/styles/icons/20px/join-table.svg +12 -0
- package/src/styles/icons/20px/key-backspace.svg +15 -0
- package/src/styles/icons/20px/key-command.svg +15 -0
- package/src/styles/icons/20px/key-control.svg +12 -0
- package/src/styles/icons/20px/key-delete.svg +15 -0
- package/src/styles/icons/20px/key-enter.svg +13 -0
- package/src/styles/icons/20px/key-escape.svg +13 -0
- package/src/styles/icons/20px/key-option.svg +12 -0
- package/src/styles/icons/20px/key-shift.svg +12 -0
- package/src/styles/icons/20px/key-tab.svg +15 -0
- package/src/styles/icons/20px/key.svg +13 -0
- package/src/styles/icons/20px/known-vehicle.svg +25 -0
- package/src/styles/icons/20px/label.svg +12 -0
- package/src/styles/icons/20px/layer.svg +11 -0
- package/src/styles/icons/20px/layers.svg +14 -0
- package/src/styles/icons/20px/layout-auto.svg +17 -0
- package/src/styles/icons/20px/layout-balloon.svg +16 -0
- package/src/styles/icons/20px/layout-circle.svg +21 -0
- package/src/styles/icons/20px/layout-grid.svg +53 -0
- package/src/styles/icons/20px/layout-group-by.svg +48 -0
- package/src/styles/icons/20px/layout-hierarchy.svg +17 -0
- package/src/styles/icons/20px/layout-linear.svg +12 -0
- package/src/styles/icons/20px/layout-skew-grid.svg +48 -0
- package/src/styles/icons/20px/layout-sorted-clusters.svg +13 -0
- package/src/styles/icons/20px/layout.svg +18 -0
- package/src/styles/icons/20px/left-join.svg +13 -0
- package/src/styles/icons/20px/lifesaver.svg +9 -0
- package/src/styles/icons/20px/lightbulb.svg +13 -0
- package/src/styles/icons/20px/link.svg +18 -0
- package/src/styles/icons/20px/list-columns.svg +12 -0
- package/src/styles/icons/20px/list-detail-view.svg +14 -0
- package/src/styles/icons/20px/list.svg +24 -0
- package/src/styles/icons/20px/locate.svg +16 -0
- package/src/styles/icons/20px/lock.svg +8 -0
- package/src/styles/icons/20px/log-in.svg +13 -0
- package/src/styles/icons/20px/log-out.svg +13 -0
- package/src/styles/icons/20px/manual.svg +20 -0
- package/src/styles/icons/20px/manually-entered-data.svg +15 -0
- package/src/styles/icons/20px/map-create.svg +16 -0
- package/src/styles/icons/20px/map-marker.svg +12 -0
- package/src/styles/icons/20px/map.svg +15 -0
- package/src/styles/icons/20px/maximize.svg +14 -0
- package/src/styles/icons/20px/media.svg +12 -0
- package/src/styles/icons/20px/menu-closed.svg +15 -0
- package/src/styles/icons/20px/menu-open.svg +15 -0
- package/src/styles/icons/20px/menu.svg +12 -0
- package/src/styles/icons/20px/merge-columns.svg +17 -0
- package/src/styles/icons/20px/merge-links.svg +13 -0
- package/src/styles/icons/20px/minimize.svg +14 -0
- package/src/styles/icons/20px/minus.svg +11 -0
- package/src/styles/icons/20px/mobile-phone.svg +11 -0
- package/src/styles/icons/20px/mobile-video.svg +12 -0
- package/src/styles/icons/20px/moon.svg +9 -0
- package/src/styles/icons/20px/more.svg +11 -0
- package/src/styles/icons/20px/mountain.svg +10 -0
- package/src/styles/icons/20px/move.svg +18 -0
- package/src/styles/icons/20px/mugshot.svg +19 -0
- package/src/styles/icons/20px/multi-select.svg +13 -0
- package/src/styles/icons/20px/music.svg +12 -0
- package/src/styles/icons/20px/new-grid-item.svg +16 -0
- package/src/styles/icons/20px/new-link.svg +13 -0
- package/src/styles/icons/20px/new-object.svg +17 -0
- package/src/styles/icons/20px/new-person.svg +19 -0
- package/src/styles/icons/20px/new-prescription.svg +16 -0
- package/src/styles/icons/20px/new-text-box.svg +16 -0
- package/src/styles/icons/20px/ninja.svg +13 -0
- package/src/styles/icons/20px/notifications-updated.svg +10 -0
- package/src/styles/icons/20px/notifications.svg +13 -0
- package/src/styles/icons/20px/numbered-list.svg +21 -0
- package/src/styles/icons/20px/numerical.svg +29 -0
- package/src/styles/icons/20px/office.svg +12 -0
- package/src/styles/icons/20px/offline.svg +12 -0
- package/src/styles/icons/20px/oil-field.svg +14 -0
- package/src/styles/icons/20px/one-column.svg +13 -0
- package/src/styles/icons/20px/outdated.svg +10 -0
- package/src/styles/icons/20px/page-layout.svg +12 -0
- package/src/styles/icons/20px/panel-stats.svg +12 -0
- package/src/styles/icons/20px/panel-table.svg +9 -0
- package/src/styles/icons/20px/paperclip.svg +16 -0
- package/src/styles/icons/20px/paragraph.svg +9 -0
- package/src/styles/icons/20px/path-search.svg +24 -0
- package/src/styles/icons/20px/path.svg +12 -0
- package/src/styles/icons/20px/pause.svg +11 -0
- package/src/styles/icons/20px/people.svg +26 -0
- package/src/styles/icons/20px/percentage.svg +14 -0
- package/src/styles/icons/20px/person.svg +18 -0
- package/src/styles/icons/20px/phone.svg +15 -0
- package/src/styles/icons/20px/pie-chart.svg +10 -0
- package/src/styles/icons/20px/pin.svg +13 -0
- package/src/styles/icons/20px/pivot-table.svg +16 -0
- package/src/styles/icons/20px/pivot.svg +14 -0
- package/src/styles/icons/20px/play.svg +12 -0
- package/src/styles/icons/20px/plus.svg +11 -0
- package/src/styles/icons/20px/polygon-filter.svg +15 -0
- package/src/styles/icons/20px/power.svg +12 -0
- package/src/styles/icons/20px/predictive-analysis.svg +33 -0
- package/src/styles/icons/20px/prescription.svg +14 -0
- package/src/styles/icons/20px/presentation.svg +14 -0
- package/src/styles/icons/20px/print.svg +13 -0
- package/src/styles/icons/20px/projects.svg +13 -0
- package/src/styles/icons/20px/properties.svg +14 -0
- package/src/styles/icons/20px/property.svg +14 -0
- package/src/styles/icons/20px/publish-function.svg +30 -0
- package/src/styles/icons/20px/pulse.svg +13 -0
- package/src/styles/icons/20px/random.svg +17 -0
- package/src/styles/icons/20px/record.svg +10 -0
- package/src/styles/icons/20px/redo.svg +13 -0
- package/src/styles/icons/20px/refresh.svg +15 -0
- package/src/styles/icons/20px/regression-chart.svg +13 -0
- package/src/styles/icons/20px/remove-column-left.svg +12 -0
- package/src/styles/icons/20px/remove-column-right.svg +12 -0
- package/src/styles/icons/20px/remove-column.svg +14 -0
- package/src/styles/icons/20px/remove-row-bottom.svg +12 -0
- package/src/styles/icons/20px/remove-row-top.svg +11 -0
- package/src/styles/icons/20px/remove.svg +13 -0
- package/src/styles/icons/20px/repeat.svg +12 -0
- package/src/styles/icons/20px/resolve.svg +17 -0
- package/src/styles/icons/20px/rig.svg +14 -0
- package/src/styles/icons/20px/right-join.svg +13 -0
- package/src/styles/icons/20px/ring.svg +11 -0
- package/src/styles/icons/20px/rotate-document.svg +14 -0
- package/src/styles/icons/20px/rotate-page.svg +14 -0
- package/src/styles/icons/20px/satellite.svg +15 -0
- package/src/styles/icons/20px/saved.svg +13 -0
- package/src/styles/icons/20px/scatter-plot.svg +13 -0
- package/src/styles/icons/20px/search-around.svg +30 -0
- package/src/styles/icons/20px/search-template.svg +16 -0
- package/src/styles/icons/20px/search-text.svg +16 -0
- package/src/styles/icons/20px/search.svg +13 -0
- package/src/styles/icons/20px/segmented-control.svg +10 -0
- package/src/styles/icons/20px/select.svg +14 -0
- package/src/styles/icons/20px/selection.svg +11 -0
- package/src/styles/icons/20px/send-to-graph.svg +17 -0
- package/src/styles/icons/20px/send-to-map.svg +15 -0
- package/src/styles/icons/20px/send-to.svg +18 -0
- package/src/styles/icons/20px/series-add.svg +9 -0
- package/src/styles/icons/20px/series-configuration.svg +17 -0
- package/src/styles/icons/20px/series-derived.svg +11 -0
- package/src/styles/icons/20px/series-filtered.svg +11 -0
- package/src/styles/icons/20px/series-search.svg +14 -0
- package/src/styles/icons/20px/settings.svg +14 -0
- package/src/styles/icons/20px/share.svg +13 -0
- package/src/styles/icons/20px/shield.svg +10 -0
- package/src/styles/icons/20px/shop.svg +14 -0
- package/src/styles/icons/20px/shopping-cart.svg +13 -0
- package/src/styles/icons/20px/sim-card.svg +12 -0
- package/src/styles/icons/20px/slash.svg +11 -0
- package/src/styles/icons/20px/small-cross.svg +13 -0
- package/src/styles/icons/20px/small-minus.svg +11 -0
- package/src/styles/icons/20px/small-plus.svg +11 -0
- package/src/styles/icons/20px/small-tick.svg +12 -0
- package/src/styles/icons/20px/snowflake.svg +12 -0
- package/src/styles/icons/20px/social-media.svg +12 -0
- package/src/styles/icons/20px/sort-alphabetical-desc.svg +14 -0
- package/src/styles/icons/20px/sort-alphabetical.svg +14 -0
- package/src/styles/icons/20px/sort-asc.svg +15 -0
- package/src/styles/icons/20px/sort-desc.svg +15 -0
- package/src/styles/icons/20px/sort-numerical-desc.svg +25 -0
- package/src/styles/icons/20px/sort-numerical.svg +26 -0
- package/src/styles/icons/20px/sort.svg +15 -0
- package/src/styles/icons/20px/split-columns.svg +16 -0
- package/src/styles/icons/20px/square.svg +12 -0
- package/src/styles/icons/20px/stacked-chart.svg +13 -0
- package/src/styles/icons/20px/star-empty.svg +8 -0
- package/src/styles/icons/20px/star.svg +8 -0
- package/src/styles/icons/20px/step-backward.svg +12 -0
- package/src/styles/icons/20px/step-chart.svg +12 -0
- package/src/styles/icons/20px/step-forward.svg +12 -0
- package/src/styles/icons/20px/stop.svg +11 -0
- package/src/styles/icons/20px/strikethrough.svg +22 -0
- package/src/styles/icons/20px/style.svg +13 -0
- package/src/styles/icons/20px/swap-horizontal.svg +16 -0
- package/src/styles/icons/20px/swap-vertical.svg +16 -0
- package/src/styles/icons/20px/symbol-circle.svg +10 -0
- package/src/styles/icons/20px/symbol-cross.svg +11 -0
- package/src/styles/icons/20px/symbol-diamond.svg +13 -0
- package/src/styles/icons/20px/symbol-square.svg +11 -0
- package/src/styles/icons/20px/symbol-triangle-down.svg +11 -0
- package/src/styles/icons/20px/symbol-triangle-up.svg +12 -0
- package/src/styles/icons/20px/tag.svg +10 -0
- package/src/styles/icons/20px/take-action.svg +15 -0
- package/src/styles/icons/20px/taxi.svg +12 -0
- package/src/styles/icons/20px/text-highlight.svg +14 -0
- package/src/styles/icons/20px/th-derived.svg +18 -0
- package/src/styles/icons/20px/th-filtered.svg +10 -0
- package/src/styles/icons/20px/th-list.svg +15 -0
- package/src/styles/icons/20px/th.svg +16 -0
- package/src/styles/icons/20px/thumbs-down.svg +17 -0
- package/src/styles/icons/20px/thumbs-up.svg +17 -0
- package/src/styles/icons/20px/tick-circle.svg +10 -0
- package/src/styles/icons/20px/tick.svg +12 -0
- package/src/styles/icons/20px/time.svg +13 -0
- package/src/styles/icons/20px/timeline-area-chart.svg +12 -0
- package/src/styles/icons/20px/timeline-bar-chart.svg +13 -0
- package/src/styles/icons/20px/timeline-events.svg +18 -0
- package/src/styles/icons/20px/timeline-line-chart.svg +14 -0
- package/src/styles/icons/20px/tint.svg +11 -0
- package/src/styles/icons/20px/torch.svg +13 -0
- package/src/styles/icons/20px/train.svg +9 -0
- package/src/styles/icons/20px/translate.svg +17 -0
- package/src/styles/icons/20px/trash.svg +15 -0
- package/src/styles/icons/20px/tree.svg +12 -0
- package/src/styles/icons/20px/trending-down.svg +13 -0
- package/src/styles/icons/20px/trending-up.svg +13 -0
- package/src/styles/icons/20px/two-columns.svg +14 -0
- package/src/styles/icons/20px/underline.svg +12 -0
- package/src/styles/icons/20px/undo.svg +13 -0
- package/src/styles/icons/20px/ungroup-objects.svg +12 -0
- package/src/styles/icons/20px/unknown-vehicle.svg +33 -0
- package/src/styles/icons/20px/unlock.svg +12 -0
- package/src/styles/icons/20px/unpin.svg +13 -0
- package/src/styles/icons/20px/unresolve.svg +20 -0
- package/src/styles/icons/20px/updated.svg +10 -0
- package/src/styles/icons/20px/upload.svg +13 -0
- package/src/styles/icons/20px/user.svg +28 -0
- package/src/styles/icons/20px/variable.svg +24 -0
- package/src/styles/icons/20px/vertical-bar-chart-asc.svg +13 -0
- package/src/styles/icons/20px/vertical-bar-chart-desc.svg +13 -0
- package/src/styles/icons/20px/vertical-distribution.svg +12 -0
- package/src/styles/icons/20px/video.svg +11 -0
- package/src/styles/icons/20px/volume-down.svg +12 -0
- package/src/styles/icons/20px/volume-off.svg +11 -0
- package/src/styles/icons/20px/volume-up.svg +14 -0
- package/src/styles/icons/20px/walk.svg +11 -0
- package/src/styles/icons/20px/warning-sign.svg +13 -0
- package/src/styles/icons/20px/waterfall-chart.svg +14 -0
- package/src/styles/icons/20px/widget-button.svg +13 -0
- package/src/styles/icons/20px/widget-footer.svg +7 -0
- package/src/styles/icons/20px/widget-header.svg +7 -0
- package/src/styles/icons/20px/widget.svg +14 -0
- package/src/styles/icons/20px/wrench.svg +12 -0
- package/src/styles/icons/20px/zoom-in.svg +15 -0
- package/src/styles/icons/20px/zoom-out.svg +14 -0
- package/src/styles/icons/20px/zoom-to-fit.svg +21 -0
- package/src/styles/tailwind/_base.scss +56165 -0
- package/src/styles/tailwind/tailwind.config.js +412 -0
- package/src/types.ts +3 -0
- package/tsconfig.build.json +15 -0
- package/tsconfig.json +10 -0
- package/yarn.lock +16891 -0
- package/AutoSizer/index.js +0 -6
- package/AutoSizer/index.js.map +0 -1
- package/CodeEditor/index.d.ts +0 -12
- package/CodeEditor/index.js +0 -21
- package/CodeEditor/index.js.map +0 -1
- package/CodeEditor/utils/highlightCode.js +0 -54
- package/CodeEditor/utils/highlightCode.js.map +0 -1
- package/CodeViewer/index.d.ts +0 -10
- package/CodeViewer/index.js +0 -28
- package/CodeViewer/index.js.map +0 -1
- package/CodeViewer/types.d.ts +0 -9
- package/CodeViewer/types.js.map +0 -1
- package/Dropdown/Dropdown.js +0 -28
- package/Dropdown/Dropdown.js.map +0 -1
- package/FAIcon/index.js +0 -36
- package/FAIcon/index.js.map +0 -1
- package/FormButton/index.js +0 -13
- package/FormButton/index.js.map +0 -1
- package/FormError/index.js +0 -22
- package/FormError/index.js.map +0 -1
- package/FormInput/index.js +0 -44
- package/FormInput/index.js.map +0 -1
- package/ScrollContainer/index.js +0 -91
- package/ScrollContainer/index.js.map +0 -1
- package/ScrollList/index.js +0 -42
- package/ScrollList/index.js.map +0 -1
- package/SecretInput/index.js +0 -22
- package/SecretInput/index.js.map +0 -1
- package/SimpleTabs/Tab.js +0 -14
- package/SimpleTabs/Tab.js.map +0 -1
- package/SimpleTabs/TabList.js +0 -14
- package/SimpleTabs/TabList.js.map +0 -1
- package/SimpleTabs/TabPanel.js +0 -14
- package/SimpleTabs/TabPanel.js.map +0 -1
- package/TableOfContents/index.d.ts +0 -19
- package/TableOfContents/index.js +0 -85
- package/TableOfContents/index.js.map +0 -1
- package/TableOfContents/types.d.ts +0 -14
- package/TableOfContents/types.js +0 -3
- package/TableOfContents/types.js.map +0 -1
- package/ThemeContainer/index.js +0 -11
- package/ThemeContainer/index.js.map +0 -1
- package/_hooks/useIsMobile.js +0 -23
- package/_hooks/useIsMobile.js.map +0 -1
- package/_hooks/useValidateSchema.js +0 -26
- package/_hooks/useValidateSchema.js.map +0 -1
- package/classes.d.ts +0 -222
- package/classes.js +0 -6
- package/classes.js.map +0 -1
- package/index.d.ts +0 -13
- package/index.js +0 -18
- package/index.js.map +0 -1
- package/styles/_blueprint.scss +0 -16
- package/styles/_components.scss +0 -6
- package/styles/blueprint/_variables.scss +0 -122
- package/styles/components/Code/_base.scss +0 -174
- package/styles/components/TableOfContents/_base.scss +0 -43
- package/styles/tailwind/_base.scss +0 -55405
- package/styles/tailwind/tailwind.config.js +0 -411
- package/types.js +0 -3
- package/withErrorBoundary.d.ts +0 -104
- package/withErrorBoundary.js +0 -51
- package/withErrorBoundary.js.map +0 -1
- /package/{AutoSizer → dist/AutoSizer}/index.d.ts +0 -0
- /package/{CodeEditor → dist/CodeEditor}/utils/highlightCode.d.ts +0 -0
- /package/{Dropdown → dist/Dropdown}/Dropdown.d.ts +0 -0
- /package/{FAIcon → dist/FAIcon}/index.d.ts +0 -0
- /package/{FormButton → dist/FormButton}/index.d.ts +0 -0
- /package/{FormError → dist/FormError}/index.d.ts +0 -0
- /package/{FormInput → dist/FormInput}/index.d.ts +0 -0
- /package/{Icons → dist/Icons}/index.d.ts +0 -0
- /package/{Icons → dist/Icons}/index.js +0 -0
- /package/{Icons → dist/Icons}/index.js.map +0 -0
- /package/{ScrollContainer → dist/ScrollContainer}/index.d.ts +0 -0
- /package/{ScrollList → dist/ScrollList}/index.d.ts +0 -0
- /package/{SecretInput → dist/SecretInput}/index.d.ts +0 -0
- /package/{Select → dist/Select}/index.d.ts +0 -0
- /package/{Select → dist/Select}/index.js +0 -0
- /package/{Select → dist/Select}/index.js.map +0 -0
- /package/{SimpleTabs → dist/SimpleTabs}/Tab.d.ts +0 -0
- /package/{SimpleTabs → dist/SimpleTabs}/TabList.d.ts +0 -0
- /package/{SimpleTabs → dist/SimpleTabs}/TabPanel.d.ts +0 -0
- /package/{SimpleTabs → dist/SimpleTabs}/index.d.ts +0 -0
- /package/{SimpleTabs → dist/SimpleTabs}/index.js +0 -0
- /package/{SimpleTabs → dist/SimpleTabs}/index.js.map +0 -0
- /package/{ThemeContainer → dist/ThemeContainer}/index.d.ts +0 -0
- /package/{_hooks → dist/_hooks}/useIsMobile.d.ts +0 -0
- /package/{_hooks → dist/_hooks}/useValidateSchema.d.ts +0 -0
- /package/{colors.d.ts → dist/colors.d.ts} +0 -0
- /package/{colors.js → dist/colors.js} +0 -0
- /package/{colors.js.map → dist/colors.js.map} +0 -0
- /package/{styles → dist/styles}/_monaco.scss +0 -0
- /package/{styles → dist/styles}/_tailwind.scss +0 -0
- /package/{styles → dist/styles}/_ui-kit.scss +0 -0
- /package/{styles → dist/styles}/blueprint/_color-aliases.scss +0 -0
- /package/{styles → dist/styles}/blueprint/_colors.scss +0 -0
- /package/{styles → dist/styles}/common/_css-variables.scss +0 -0
- /package/{styles → dist/styles}/common/_theme.scss +0 -0
- /package/{styles → dist/styles}/common/_utils.scss +0 -0
- /package/{styles → dist/styles}/common/_variables.scss +0 -0
- /package/{styles → dist/styles}/components/Code/_theme-dark.scss +0 -0
- /package/{styles → dist/styles}/components/Code/_theme-light.scss +0 -0
- /package/{styles → dist/styles}/components/Dialog/_base.scss +0 -0
- /package/{styles → dist/styles}/components/Dropdown/_base.scss +0 -0
- /package/{styles → dist/styles}/components/FormGroup/_base.scss +0 -0
- /package/{styles → dist/styles}/components/ScrollContainer/_base.scss +0 -0
- /package/{styles → dist/styles}/components/SimpleTabs/_base.scss +0 -0
- /package/{styles → dist/styles}/components/_base.scss +0 -0
- /package/{styles → dist/styles}/fonts/icons-16.eot +0 -0
- /package/{styles → dist/styles}/fonts/icons-16.ttf +0 -0
- /package/{styles → dist/styles}/fonts/icons-16.woff +0 -0
- /package/{styles → dist/styles}/fonts/icons-20.eot +0 -0
- /package/{styles → dist/styles}/fonts/icons-20.ttf +0 -0
- /package/{styles → dist/styles}/fonts/icons-20.woff +0 -0
- /package/{styles → dist/styles}/fonts/icons.json +0 -0
- /package/{styles → dist/styles}/icons/16px/add-column-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/add-column-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/add-row-bottom.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/add-row-top.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/add-to-artifact.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/add-to-folder.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/add.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/airplane.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/align-center.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/align-justify.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/align-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/align-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/alignment-bottom.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/alignment-horizontal-center.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/alignment-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/alignment-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/alignment-top.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/alignment-vertical-center.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/annotation.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/application.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/applications.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/arrow-bottom-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/arrow-bottom-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/arrow-down.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/arrow-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/arrow-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/arrow-top-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/arrow-top-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/arrow-up.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/arrows-horizontal.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/arrows-vertical.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/asterisk.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/automatic-updates.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/badge.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/ban-circle.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/bank-account.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/barcode.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/blank.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/blocked-person.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/bold.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/book.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/bookmark.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/box.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/briefcase.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/build.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/calculator.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/calendar.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/camera.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/caret-down.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/caret-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/caret-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/caret-up.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/cell-tower.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/changes.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/chat.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/chevron-backward.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/chevron-down.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/chevron-forward.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/chevron-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/chevron-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/chevron-up.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/circle-arrow-down.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/circle-arrow-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/circle-arrow-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/circle-arrow-up.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/circle.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/citation.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/clean.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/clipboard.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/cloud-download.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/cloud-upload.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/cloud.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/code-block.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/code.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/cog.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/collapse-all.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/column-layout.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/comment.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/comparison.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/compass.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/compressed.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/confirm.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/console.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/contrast.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/control.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/credit-card.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/cross.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/crown.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/cube-add.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/cube-remove.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/cube.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/curved-range-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/cut.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/dashboard.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/database.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/delete.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/delta.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/derive-column.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/desktop.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/diagram-tree.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/direction-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/direction-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/disable.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/document-open.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/document-share.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/document.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/dollar.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/dot.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/double-caret-horizontal.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/double-caret-vertical.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/double-chevron-down.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/double-chevron-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/double-chevron-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/double-chevron-up.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/doughnut-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/download.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/drag-handle-horizontal.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/drag-handle-vertical.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/draw.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/drive-time.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/duplicate.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/edit.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/eject.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/endorsed.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/envelope.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/eraser.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/error.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/euro.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/exchange.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/exclude-row.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/expand-all.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/export.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/eye-off.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/eye-on.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/eye-open.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/fast-backward.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/fast-forward.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/feed-subscribed.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/feed.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/film.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/filter-keep.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/filter-list.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/filter-remove.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/filter.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/flag.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/flame.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/flash.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/floppy-disk.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/flow-branch.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/flow-end.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/flow-linear.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/flow-review-branch.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/flow-review.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/flows.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/folder-close.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/folder-new.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/folder-open.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/folder-shared-open.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/folder-shared.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/follower.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/following.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/font.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/fork.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/form.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/full-circle.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/full-stacked-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/fullscreen.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/function.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/gantt-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/geolocation.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/geosearch.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/git-branch.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/git-commit.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/git-merge.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/git-new-branch.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/git-pull.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/git-push.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/git-repo.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/glass.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/globe-network.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/globe.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/graph-remove.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/graph.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/grid-view.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/grid.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/group-objects.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/grouped-bar-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/hand-down.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/hand-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/hand-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/hand-up.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/hand.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/header-one.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/header-two.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/header.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/headset.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/heart-broken.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/heart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/heat-grid.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/heatmap.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/help.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/helper-management.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/highlight.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/history.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/home.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/horizontal-bar-chart-asc.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/horizontal-bar-chart-desc.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/horizontal-bar-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/horizontal-distribution.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/id-number.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/image-rotate-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/image-rotate-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/import.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/inbox-filtered.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/inbox-geo.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/inbox-search.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/inbox-update.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/inbox.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/info-sign.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/inner-join.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/insert.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/intersection.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/ip-address.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/issue-closed.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/issue-new.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/issue.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/italic.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/join-table.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/key-backspace.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/key-command.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/key-control.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/key-delete.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/key-enter.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/key-escape.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/key-option.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/key-shift.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/key-tab.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/key.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/known-vehicle.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/label.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/layer.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/layers.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/layout-auto.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/layout-balloon.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/layout-circle.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/layout-grid.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/layout-group-by.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/layout-hierarchy.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/layout-linear.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/layout-skew-grid.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/layout-sorted-clusters.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/layout.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/left-join.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/lifesaver.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/lightbulb.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/link.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/list-columns.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/list-detail-view.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/list.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/locate.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/lock.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/log-in.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/log-out.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/manual.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/manually-entered-data.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/map-create.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/map-marker.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/map.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/maximize.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/media.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/menu-closed.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/menu-open.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/menu.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/merge-columns.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/merge-links.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/minimize.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/minus.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/mobile-phone.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/mobile-video.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/moon.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/more.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/mountain.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/move.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/mugshot.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/multi-select.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/music.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/new-grid-item.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/new-link.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/new-object.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/new-person.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/new-prescription.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/new-text-box.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/ninja.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/notifications-updated.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/notifications.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/numbered-list.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/numerical.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/office.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/offline.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/oil-field.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/one-column.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/outdated.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/page-layout.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/panel-stats.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/panel-table.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/paperclip.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/paragraph.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/path-search.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/path.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/pause.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/people.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/percentage.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/person.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/phone.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/pie-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/pin.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/pivot-table.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/pivot.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/play.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/plus.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/polygon-filter.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/power.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/predictive-analysis.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/prescription.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/presentation.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/print.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/projects.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/properties.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/property.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/publish-function.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/pulse.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/random.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/record.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/redo.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/refresh.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/regression-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/remove-column-left.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/remove-column-right.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/remove-column.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/remove-row-bottom.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/remove-row-top.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/remove.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/repeat.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/resolve.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/rig.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/right-join.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/ring.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/rotate-document.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/rotate-page.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/satellite.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/saved.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/scatter-plot.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/search-around.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/search-template.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/search-text.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/search.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/segmented-control.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/select.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/selection.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/send-to-graph.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/send-to-map.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/send-to.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/series-add.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/series-configuration.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/series-derived.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/series-filtered.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/series-search.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/settings.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/share.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/shield.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/shop.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/shopping-cart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/sim-card.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/slash.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/small-cross.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/small-minus.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/small-plus.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/small-tick.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/snowflake.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/social-media.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/sort-alphabetical-desc.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/sort-alphabetical.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/sort-asc.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/sort-desc.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/sort-numerical-desc.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/sort-numerical.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/sort.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/split-columns.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/square.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/stacked-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/star-empty.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/star.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/step-backward.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/step-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/step-forward.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/stop.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/strikethrough.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/style.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/swap-horizontal.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/swap-vertical.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/symbol-circle.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/symbol-cross.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/symbol-diamond.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/symbol-square.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/symbol-triangle-down.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/symbol-triangle-up.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/tag.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/take-action.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/taxi.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/text-highlight.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/th-derived.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/th-filtered.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/th-list.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/th.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/thumbs-down.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/thumbs-up.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/tick-circle.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/tick.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/time.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/timeline-area-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/timeline-bar-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/timeline-events.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/timeline-line-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/tint.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/torch.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/train.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/translate.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/trash.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/tree.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/trending-down.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/trending-up.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/two-columns.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/underline.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/undo.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/ungroup-objects.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/unknown-vehicle.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/unlock.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/unpin.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/unresolve.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/updated.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/upload.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/user.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/variable.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/vertical-bar-chart-asc.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/vertical-bar-chart-desc.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/vertical-distribution.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/video.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/volume-down.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/volume-off.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/volume-up.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/walk.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/warning-sign.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/waterfall-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/widget-button.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/widget-footer.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/widget-header.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/widget.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/wrench.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/zoom-in.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/zoom-out.svg +0 -0
- /package/{styles → dist/styles}/icons/16px/zoom-to-fit.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/add-column-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/add-column-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/add-row-bottom.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/add-row-top.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/add-to-artifact.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/add-to-folder.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/add.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/airplane.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/align-center.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/align-justify.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/align-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/align-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/alignment-bottom.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/alignment-horizontal-center.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/alignment-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/alignment-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/alignment-top.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/alignment-vertical-center.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/annotation.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/application.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/applications.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/arrow-bottom-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/arrow-bottom-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/arrow-down.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/arrow-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/arrow-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/arrow-top-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/arrow-top-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/arrow-up.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/arrows-horizontal.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/arrows-vertical.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/asterisk.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/automatic-updates.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/badge.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/ban-circle.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/bank-account.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/barcode.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/blank.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/blocked-person.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/bold.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/book.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/bookmark.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/box.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/briefcase.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/build.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/calculator.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/calendar.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/camera.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/caret-down.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/caret-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/caret-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/caret-up.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/cell-tower.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/changes.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/chat.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/chevron-backward.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/chevron-down.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/chevron-forward.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/chevron-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/chevron-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/chevron-up.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/circle-arrow-down.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/circle-arrow-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/circle-arrow-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/circle-arrow-up.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/circle.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/citation.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/clean.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/clipboard.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/cloud-download.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/cloud-upload.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/cloud.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/code-block.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/code.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/cog.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/collapse-all.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/column-layout.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/comment.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/comparison.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/compass.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/compressed.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/confirm.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/console.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/contrast.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/control.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/credit-card.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/cross.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/crown.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/cube-add.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/cube-remove.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/cube.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/curved-range-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/cut.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/dashboard.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/database.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/delete.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/delta.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/derive-column.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/desktop.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/diagram-tree.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/direction-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/direction-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/disable.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/document-open.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/document-share.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/document.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/dollar.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/dot.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/double-caret-horizontal.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/double-caret-vertical.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/double-chevron-down.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/double-chevron-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/double-chevron-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/double-chevron-up.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/doughnut-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/download.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/drag-handle-horizontal.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/drag-handle-vertical.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/draw.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/drive-time.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/duplicate.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/edit.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/eject.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/endorsed.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/envelope.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/eraser.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/error.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/euro.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/exchange.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/exclude-row.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/expand-all.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/export.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/eye-off.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/eye-on.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/eye-open.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/fast-backward.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/fast-forward.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/feed-subscribed.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/feed.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/film.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/filter-keep.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/filter-list.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/filter-remove.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/filter.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/flag.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/flame.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/flash.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/floppy-disk.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/flow-branch.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/flow-end.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/flow-linear.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/flow-review-branch.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/flow-review.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/flows.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/folder-close.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/folder-new.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/folder-open.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/folder-shared-open.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/folder-shared.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/follower.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/following.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/font.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/fork.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/form.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/full-circle.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/full-stacked-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/fullscreen.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/function.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/gantt-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/geolocation.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/geosearch.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/git-branch.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/git-commit.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/git-merge.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/git-new-branch.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/git-pull.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/git-push.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/git-repo.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/glass.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/globe-network.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/globe.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/graph-remove.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/graph.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/grid-view.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/grid.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/group-objects.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/grouped-bar-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/hand-down.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/hand-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/hand-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/hand-up.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/hand.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/header-one.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/header-two.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/header.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/headset.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/heart-broken.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/heart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/heat-grid.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/heatmap.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/help.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/helper-management.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/highlight.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/history.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/home.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/horizontal-bar-chart-asc.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/horizontal-bar-chart-desc.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/horizontal-bar-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/horizontal-distribution.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/id-number.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/image-rotate-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/image-rotate-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/import.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/inbox-filtered.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/inbox-geo.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/inbox-search.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/inbox-update.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/inbox.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/info-sign.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/inner-join.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/insert.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/intersection.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/ip-address.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/issue-closed.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/issue-new.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/issue.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/italic.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/join-table.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/key-backspace.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/key-command.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/key-control.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/key-delete.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/key-enter.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/key-escape.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/key-option.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/key-shift.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/key-tab.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/key.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/known-vehicle.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/label.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/layer.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/layers.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/layout-auto.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/layout-balloon.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/layout-circle.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/layout-grid.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/layout-group-by.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/layout-hierarchy.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/layout-linear.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/layout-skew-grid.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/layout-sorted-clusters.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/layout.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/left-join.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/lifesaver.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/lightbulb.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/link.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/list-columns.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/list-detail-view.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/list.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/locate.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/lock.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/log-in.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/log-out.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/manual.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/manually-entered-data.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/map-create.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/map-marker.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/map.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/maximize.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/media.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/menu-closed.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/menu-open.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/menu.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/merge-columns.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/merge-links.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/minimize.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/minus.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/mobile-phone.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/mobile-video.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/moon.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/more.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/mountain.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/move.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/mugshot.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/multi-select.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/music.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/new-grid-item.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/new-link.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/new-object.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/new-person.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/new-prescription.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/new-text-box.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/ninja.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/notifications-updated.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/notifications.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/numbered-list.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/numerical.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/office.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/offline.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/oil-field.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/one-column.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/outdated.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/page-layout.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/panel-stats.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/panel-table.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/paperclip.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/paragraph.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/path-search.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/path.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/pause.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/people.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/percentage.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/person.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/phone.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/pie-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/pin.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/pivot-table.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/pivot.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/play.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/plus.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/polygon-filter.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/power.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/predictive-analysis.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/prescription.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/presentation.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/print.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/projects.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/properties.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/property.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/publish-function.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/pulse.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/random.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/record.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/redo.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/refresh.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/regression-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/remove-column-left.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/remove-column-right.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/remove-column.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/remove-row-bottom.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/remove-row-top.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/remove.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/repeat.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/resolve.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/rig.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/right-join.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/ring.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/rotate-document.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/rotate-page.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/satellite.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/saved.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/scatter-plot.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/search-around.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/search-template.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/search-text.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/search.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/segmented-control.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/select.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/selection.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/send-to-graph.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/send-to-map.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/send-to.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/series-add.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/series-configuration.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/series-derived.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/series-filtered.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/series-search.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/settings.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/share.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/shield.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/shop.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/shopping-cart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/sim-card.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/slash.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/small-cross.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/small-minus.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/small-plus.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/small-tick.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/snowflake.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/social-media.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/sort-alphabetical-desc.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/sort-alphabetical.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/sort-asc.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/sort-desc.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/sort-numerical-desc.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/sort-numerical.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/sort.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/split-columns.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/square.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/stacked-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/star-empty.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/star.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/step-backward.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/step-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/step-forward.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/stop.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/strikethrough.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/style.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/swap-horizontal.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/swap-vertical.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/symbol-circle.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/symbol-cross.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/symbol-diamond.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/symbol-square.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/symbol-triangle-down.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/symbol-triangle-up.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/tag.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/take-action.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/taxi.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/text-highlight.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/th-derived.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/th-filtered.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/th-list.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/th.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/thumbs-down.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/thumbs-up.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/tick-circle.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/tick.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/time.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/timeline-area-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/timeline-bar-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/timeline-events.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/timeline-line-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/tint.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/torch.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/train.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/translate.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/trash.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/tree.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/trending-down.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/trending-up.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/two-columns.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/underline.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/undo.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/ungroup-objects.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/unknown-vehicle.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/unlock.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/unpin.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/unresolve.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/updated.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/upload.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/user.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/variable.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/vertical-bar-chart-asc.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/vertical-bar-chart-desc.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/vertical-distribution.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/video.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/volume-down.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/volume-off.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/volume-up.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/walk.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/warning-sign.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/waterfall-chart.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/widget-button.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/widget-footer.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/widget-header.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/widget.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/wrench.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/zoom-in.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/zoom-out.svg +0 -0
- /package/{styles → dist/styles}/icons/20px/zoom-to-fit.svg +0 -0
- /package/{types.d.ts → dist/types.d.ts} +0 -0
- /package/{CodeViewer → dist}/types.js +0 -0
- /package/{types.js.map → dist/types.js.map} +0 -0
|
@@ -0,0 +1,3236 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"displayName": "Blank",
|
|
4
|
+
"iconName": "blank",
|
|
5
|
+
"tags": "empty, placeholder",
|
|
6
|
+
"group": "miscellaneous",
|
|
7
|
+
"content": "\\e900"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"displayName": "Style",
|
|
11
|
+
"iconName": "style",
|
|
12
|
+
"tags": "visual style, editor",
|
|
13
|
+
"group": "editor",
|
|
14
|
+
"content": "\\e601"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"displayName": "Align: left",
|
|
18
|
+
"iconName": "align-left",
|
|
19
|
+
"tags": "text flow, alignment, justification, range, flush left",
|
|
20
|
+
"group": "editor",
|
|
21
|
+
"content": "\\e602"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"displayName": "Align: center",
|
|
25
|
+
"iconName": "align-center",
|
|
26
|
+
"tags": "text flow, alignment, justification, range, centered",
|
|
27
|
+
"group": "editor",
|
|
28
|
+
"content": "\\e603"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"displayName": "Align: right",
|
|
32
|
+
"iconName": "align-right",
|
|
33
|
+
"tags": "text flow, alignment, justification, range, flush right",
|
|
34
|
+
"group": "editor",
|
|
35
|
+
"content": "\\e604"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"displayName": "Align: justify",
|
|
39
|
+
"iconName": "align-justify",
|
|
40
|
+
"tags": "text flow, alignment, justification, range, justified",
|
|
41
|
+
"group": "editor",
|
|
42
|
+
"content": "\\e605"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"displayName": "Bold",
|
|
46
|
+
"iconName": "bold",
|
|
47
|
+
"tags": "typography, text, font style, weight, bold",
|
|
48
|
+
"group": "editor",
|
|
49
|
+
"content": "\\e606"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"displayName": "Italic",
|
|
53
|
+
"iconName": "italic",
|
|
54
|
+
"tags": "typography, text, font style, italic, cursive",
|
|
55
|
+
"group": "editor",
|
|
56
|
+
"content": "\\e607"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"displayName": "Underline",
|
|
60
|
+
"iconName": "underline",
|
|
61
|
+
"tags": "typography, text, font style, underline, underscore",
|
|
62
|
+
"group": "editor",
|
|
63
|
+
"content": "\\2381"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"displayName": "Search around",
|
|
67
|
+
"iconName": "search-around",
|
|
68
|
+
"tags": "search, exploration, information, area, graph",
|
|
69
|
+
"group": "action",
|
|
70
|
+
"content": "\\e608"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"displayName": "Remove from graph",
|
|
74
|
+
"iconName": "graph-remove",
|
|
75
|
+
"tags": "circle, remove, delete, clear, graph",
|
|
76
|
+
"group": "action",
|
|
77
|
+
"content": "\\e609"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"displayName": "Group objects",
|
|
81
|
+
"iconName": "group-objects",
|
|
82
|
+
"tags": "group, alignment, organization, arrangement, classification, objects",
|
|
83
|
+
"group": "action",
|
|
84
|
+
"content": "\\e60a"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"displayName": "Merge into links",
|
|
88
|
+
"iconName": "merge-links",
|
|
89
|
+
"tags": "merge, combine, consolidate, jointment, links",
|
|
90
|
+
"group": "action",
|
|
91
|
+
"content": "\\e60b"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"displayName": "Layout",
|
|
95
|
+
"iconName": "layout",
|
|
96
|
+
"tags": "layout, presentation, arrangement, graph",
|
|
97
|
+
"group": "data",
|
|
98
|
+
"content": "\\e60c"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"displayName": "Layout: auto",
|
|
102
|
+
"iconName": "layout-auto",
|
|
103
|
+
"tags": "layout, presentation, arrangement, auto, graph, grid",
|
|
104
|
+
"group": "data",
|
|
105
|
+
"content": "\\e60d"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"displayName": "Layout: circle",
|
|
109
|
+
"iconName": "layout-circle",
|
|
110
|
+
"tags": "layout, presentation, arrangement, circle, graph, grid",
|
|
111
|
+
"group": "data",
|
|
112
|
+
"content": "\\e60e"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"displayName": "Layout: hierarchy",
|
|
116
|
+
"iconName": "layout-hierarchy",
|
|
117
|
+
"tags": "layout, presentation, arrangement, hierarchy, order, graph, grid",
|
|
118
|
+
"group": "data",
|
|
119
|
+
"content": "\\e60f"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"displayName": "Layout: grid",
|
|
123
|
+
"iconName": "layout-grid",
|
|
124
|
+
"tags": "layout, presentation, arrangement, grid, graph, grid",
|
|
125
|
+
"group": "data",
|
|
126
|
+
"content": "\\e610"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"displayName": "Layout: group by",
|
|
130
|
+
"iconName": "layout-group-by",
|
|
131
|
+
"tags": "layout, presentation, arrangement, group by, graph, grid",
|
|
132
|
+
"group": "data",
|
|
133
|
+
"content": "\\e611"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"displayName": "Layout: skew grid",
|
|
137
|
+
"iconName": "layout-skew-grid",
|
|
138
|
+
"tags": "layout, presentation, arrangement, skew, graph, grid",
|
|
139
|
+
"group": "data",
|
|
140
|
+
"content": "\\e612"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"displayName": "Geosearch",
|
|
144
|
+
"iconName": "geosearch",
|
|
145
|
+
"tags": "search, exploration, topography, geography, location, area, magnifying glass, globe",
|
|
146
|
+
"group": "action",
|
|
147
|
+
"content": "\\e613"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"displayName": "Heatmap",
|
|
151
|
+
"iconName": "heatmap",
|
|
152
|
+
"tags": "hierarchy, matrix, heat map",
|
|
153
|
+
"group": "data",
|
|
154
|
+
"content": "\\e614"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"displayName": "Drive time",
|
|
158
|
+
"iconName": "drive-time",
|
|
159
|
+
"tags": "car, automobile, vehicle, van, drive, ride, distance, navigation, directions",
|
|
160
|
+
"group": "interface",
|
|
161
|
+
"content": "\\e615"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"displayName": "Select",
|
|
165
|
+
"iconName": "select",
|
|
166
|
+
"tags": "selection, arrow, cursor, area, range",
|
|
167
|
+
"group": "action",
|
|
168
|
+
"content": "\\e616"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"displayName": "Predictive analysis",
|
|
172
|
+
"iconName": "predictive-analysis",
|
|
173
|
+
"tags": "analysis, investigation, search, study, test, brain",
|
|
174
|
+
"group": "action",
|
|
175
|
+
"content": "\\e617"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"displayName": "Layers",
|
|
179
|
+
"iconName": "layers",
|
|
180
|
+
"tags": "layers, levels, stack, cards",
|
|
181
|
+
"group": "interface",
|
|
182
|
+
"content": "\\e618"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"displayName": "Locate",
|
|
186
|
+
"iconName": "locate",
|
|
187
|
+
"tags": "target, location, destination, mark, map, area",
|
|
188
|
+
"group": "action",
|
|
189
|
+
"content": "\\e619"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"displayName": "Bookmark",
|
|
193
|
+
"iconName": "bookmark",
|
|
194
|
+
"tags": "bookmark, marker, holder, section, identifier, favorites",
|
|
195
|
+
"group": "action",
|
|
196
|
+
"content": "\\e61a"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"displayName": "Citation",
|
|
200
|
+
"iconName": "citation",
|
|
201
|
+
"tags": "quotation, citation, marks, excerpt",
|
|
202
|
+
"group": "editor",
|
|
203
|
+
"content": "\\e61b"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"displayName": "Tag",
|
|
207
|
+
"iconName": "tag",
|
|
208
|
+
"tags": "tag, label, badge, identification",
|
|
209
|
+
"group": "action",
|
|
210
|
+
"content": "\\e61c"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"displayName": "Clipboard",
|
|
214
|
+
"iconName": "clipboard",
|
|
215
|
+
"tags": "clipboard, notepad, notebook, copy, paste, transfer, storage",
|
|
216
|
+
"group": "action",
|
|
217
|
+
"content": "\\e61d"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"displayName": "Selection",
|
|
221
|
+
"iconName": "selection",
|
|
222
|
+
"tags": "selection, collection, circle, ring",
|
|
223
|
+
"group": "action",
|
|
224
|
+
"content": "\\29bf"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"displayName": "Events",
|
|
228
|
+
"iconName": "timeline-events",
|
|
229
|
+
"tags": "calendar, timeframe, agenda, diary, day, week, month",
|
|
230
|
+
"group": "interface",
|
|
231
|
+
"content": "\\e61e"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"displayName": "Line chart",
|
|
235
|
+
"iconName": "timeline-line-chart",
|
|
236
|
+
"tags": "graph, line, chart",
|
|
237
|
+
"group": "data",
|
|
238
|
+
"content": "\\e61f"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"displayName": "Bar chart",
|
|
242
|
+
"iconName": "timeline-bar-chart",
|
|
243
|
+
"tags": "graph, bar, chart",
|
|
244
|
+
"group": "data",
|
|
245
|
+
"content": "\\e620"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"displayName": "Applications",
|
|
249
|
+
"iconName": "applications",
|
|
250
|
+
"tags": "application, browser, windows, platforms",
|
|
251
|
+
"group": "interface",
|
|
252
|
+
"content": "\\e621"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"displayName": "Projects",
|
|
256
|
+
"iconName": "projects",
|
|
257
|
+
"tags": "drawer, sections",
|
|
258
|
+
"group": "interface",
|
|
259
|
+
"content": "\\e622"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"displayName": "Changes",
|
|
263
|
+
"iconName": "changes",
|
|
264
|
+
"tags": "arrows, direction, switch",
|
|
265
|
+
"group": "action",
|
|
266
|
+
"content": "\\e623"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"displayName": "Notifications",
|
|
270
|
+
"iconName": "notifications",
|
|
271
|
+
"tags": "notifications, bell, alarm, notice, warning",
|
|
272
|
+
"group": "interface",
|
|
273
|
+
"content": "\\e624"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"displayName": "Lock",
|
|
277
|
+
"iconName": "lock",
|
|
278
|
+
"tags": "lock, engage, connect, join, close",
|
|
279
|
+
"group": "action",
|
|
280
|
+
"content": "\\e625"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"displayName": "Unlock",
|
|
284
|
+
"iconName": "unlock",
|
|
285
|
+
"tags": "unlock, disengage, disconnect, separate, open",
|
|
286
|
+
"group": "action",
|
|
287
|
+
"content": "\\e626"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"displayName": "User",
|
|
291
|
+
"iconName": "user",
|
|
292
|
+
"tags": "person, human, male, female, character, customer, individual",
|
|
293
|
+
"group": "interface",
|
|
294
|
+
"content": "\\e627"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"displayName": "Search template",
|
|
298
|
+
"iconName": "search-template",
|
|
299
|
+
"tags": "search, text, magnifying glass",
|
|
300
|
+
"group": "action",
|
|
301
|
+
"content": "\\e628"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"displayName": "Inbox",
|
|
305
|
+
"iconName": "inbox",
|
|
306
|
+
"tags": "folder, mail, file, message",
|
|
307
|
+
"group": "file",
|
|
308
|
+
"content": "\\e629"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"displayName": "More",
|
|
312
|
+
"iconName": "more",
|
|
313
|
+
"tags": "dots, three, extra, new, options",
|
|
314
|
+
"group": "interface",
|
|
315
|
+
"content": "\\e62a"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"displayName": "Help",
|
|
319
|
+
"iconName": "help",
|
|
320
|
+
"tags": "question mark, aid, advice, circle",
|
|
321
|
+
"group": "action",
|
|
322
|
+
"content": "\\003F"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"displayName": "Calendar",
|
|
326
|
+
"iconName": "calendar",
|
|
327
|
+
"tags": "calendar, timeframe, agenda, diary, day, week, month",
|
|
328
|
+
"group": "interface",
|
|
329
|
+
"content": "\\e62b"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"displayName": "Media",
|
|
333
|
+
"iconName": "media",
|
|
334
|
+
"tags": "audio, video, media, picture, image, drawing, illustration",
|
|
335
|
+
"group": "media",
|
|
336
|
+
"content": "\\e62c"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"displayName": "Link",
|
|
340
|
+
"iconName": "link",
|
|
341
|
+
"tags": "link, connection, network",
|
|
342
|
+
"group": "interface",
|
|
343
|
+
"content": "\\e62d"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"displayName": "Share",
|
|
347
|
+
"iconName": "share",
|
|
348
|
+
"tags": "share, square, arrow",
|
|
349
|
+
"group": "action",
|
|
350
|
+
"content": "\\e62e"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"displayName": "Download",
|
|
354
|
+
"iconName": "download",
|
|
355
|
+
"tags": "circle, arrow, down, downloading",
|
|
356
|
+
"group": "action",
|
|
357
|
+
"content": "\\e62f"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"displayName": "Document",
|
|
361
|
+
"iconName": "document",
|
|
362
|
+
"tags": "document, paper, page, file",
|
|
363
|
+
"group": "file",
|
|
364
|
+
"content": "\\e630"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"displayName": "Properties",
|
|
368
|
+
"iconName": "properties",
|
|
369
|
+
"tags": "lines, dots, three, list",
|
|
370
|
+
"group": "interface",
|
|
371
|
+
"content": "\\e631"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"displayName": "Import",
|
|
375
|
+
"iconName": "import",
|
|
376
|
+
"tags": "arrow, down, importing,",
|
|
377
|
+
"group": "action",
|
|
378
|
+
"content": "\\e632"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"displayName": "Export",
|
|
382
|
+
"iconName": "export",
|
|
383
|
+
"tags": "arrow, up, exporting",
|
|
384
|
+
"group": "action",
|
|
385
|
+
"content": "\\e633"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"displayName": "Minimize",
|
|
389
|
+
"iconName": "minimize",
|
|
390
|
+
"tags": "arrows, decrease, smaller",
|
|
391
|
+
"group": "action",
|
|
392
|
+
"content": "\\e634"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"displayName": "Maximize",
|
|
396
|
+
"iconName": "maximize",
|
|
397
|
+
"tags": "arrows, increase, bigger",
|
|
398
|
+
"group": "action",
|
|
399
|
+
"content": "\\e635"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"displayName": "Tick",
|
|
403
|
+
"iconName": "tick",
|
|
404
|
+
"tags": "mark, sign, ok, approved, success",
|
|
405
|
+
"group": "action",
|
|
406
|
+
"content": "\\2713"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"displayName": "Cross",
|
|
410
|
+
"iconName": "cross",
|
|
411
|
+
"tags": "cross mark, fail, delete, no, close, remove",
|
|
412
|
+
"group": "action",
|
|
413
|
+
"content": "\\2717"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"displayName": "Plus",
|
|
417
|
+
"iconName": "plus",
|
|
418
|
+
"tags": "sign, add, maximize, zoom in",
|
|
419
|
+
"group": "action",
|
|
420
|
+
"content": "\\002b"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"displayName": "Minus",
|
|
424
|
+
"iconName": "minus",
|
|
425
|
+
"tags": "sign, remove, minimize, zoom out",
|
|
426
|
+
"group": "action",
|
|
427
|
+
"content": "\\2212"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"displayName": "Arrow: left",
|
|
431
|
+
"iconName": "arrow-left",
|
|
432
|
+
"tags": "arrow, direction, left",
|
|
433
|
+
"group": "interface",
|
|
434
|
+
"content": "\\2190"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"displayName": "Arrow: right",
|
|
438
|
+
"iconName": "arrow-right",
|
|
439
|
+
"tags": "arrow, direction, right",
|
|
440
|
+
"group": "interface",
|
|
441
|
+
"content": "\\2192"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"displayName": "Exchange",
|
|
445
|
+
"iconName": "exchange",
|
|
446
|
+
"tags": "arrows, direction, exchange, network, swap, transfer, transaction",
|
|
447
|
+
"group": "action",
|
|
448
|
+
"content": "\\e636"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"displayName": "Comparison",
|
|
452
|
+
"iconName": "comparison",
|
|
453
|
+
"tags": "comparison, analogy, layout, contrast",
|
|
454
|
+
"group": "action",
|
|
455
|
+
"content": "\\e637"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"displayName": "List",
|
|
459
|
+
"iconName": "list",
|
|
460
|
+
"tags": "agenda, four lines, table",
|
|
461
|
+
"group": "table",
|
|
462
|
+
"content": "\\2630"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"displayName": "Filter",
|
|
466
|
+
"iconName": "filter",
|
|
467
|
+
"tags": "filtering, funnel, tube, pipe",
|
|
468
|
+
"group": "action",
|
|
469
|
+
"content": "\\e638"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"displayName": "Confirm",
|
|
473
|
+
"iconName": "confirm",
|
|
474
|
+
"tags": "circle, tick, confirmation, acceptance, approval, authorization",
|
|
475
|
+
"group": "action",
|
|
476
|
+
"content": "\\e639"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"displayName": "Fork",
|
|
480
|
+
"iconName": "fork",
|
|
481
|
+
"tags": "divide, split, break, arrows, direction",
|
|
482
|
+
"group": "action",
|
|
483
|
+
"content": "\\e63a"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"displayName": "Trash",
|
|
487
|
+
"iconName": "trash",
|
|
488
|
+
"tags": "bin, rubbish, junk, remove, delete",
|
|
489
|
+
"group": "action",
|
|
490
|
+
"content": "\\e63b"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"displayName": "Person",
|
|
494
|
+
"iconName": "person",
|
|
495
|
+
"tags": "person, human, male, female, character, customer, individual",
|
|
496
|
+
"group": "interface",
|
|
497
|
+
"content": "\\e63c"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"displayName": "People",
|
|
501
|
+
"iconName": "people",
|
|
502
|
+
"tags": "people, humans, males, females, characters, customers, individuals",
|
|
503
|
+
"group": "interface",
|
|
504
|
+
"content": "\\e63d"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"displayName": "Add",
|
|
508
|
+
"iconName": "add",
|
|
509
|
+
"tags": "circle, plus, symbol, join",
|
|
510
|
+
"group": "action",
|
|
511
|
+
"content": "\\e63e"
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"displayName": "Remove",
|
|
515
|
+
"iconName": "remove",
|
|
516
|
+
"tags": "circle, minus, symbol, remove",
|
|
517
|
+
"group": "action",
|
|
518
|
+
"content": "\\e63f"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"displayName": "Geolocation",
|
|
522
|
+
"iconName": "geolocation",
|
|
523
|
+
"tags": "geography, location, position, map, direction",
|
|
524
|
+
"group": "interface",
|
|
525
|
+
"content": "\\e640"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"displayName": "Zoom in",
|
|
529
|
+
"iconName": "zoom-in",
|
|
530
|
+
"tags": "search, magnifying glass, plus",
|
|
531
|
+
"group": "action",
|
|
532
|
+
"content": "\\e641"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"displayName": "Zoom out",
|
|
536
|
+
"iconName": "zoom-out",
|
|
537
|
+
"tags": "search, magnifying glass, minus",
|
|
538
|
+
"group": "action",
|
|
539
|
+
"content": "\\e642"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"displayName": "Refresh",
|
|
543
|
+
"iconName": "refresh",
|
|
544
|
+
"tags": "circle, arrows, rotation",
|
|
545
|
+
"group": "action",
|
|
546
|
+
"content": "\\e643"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"displayName": "Delete",
|
|
550
|
+
"iconName": "delete",
|
|
551
|
+
"tags": "circle, remove, cross",
|
|
552
|
+
"group": "action",
|
|
553
|
+
"content": "\\e644"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"displayName": "Cog",
|
|
557
|
+
"iconName": "cog",
|
|
558
|
+
"tags": "settings, circle,",
|
|
559
|
+
"group": "interface",
|
|
560
|
+
"content": "\\e645"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"displayName": "Flag",
|
|
564
|
+
"iconName": "flag",
|
|
565
|
+
"tags": "map, position, country, nationality",
|
|
566
|
+
"group": "interface",
|
|
567
|
+
"content": "\\2691"
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"displayName": "Pin",
|
|
571
|
+
"iconName": "pin",
|
|
572
|
+
"tags": "map, position, safety pin, attach",
|
|
573
|
+
"group": "action",
|
|
574
|
+
"content": "\\e646"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"displayName": "Warning sign",
|
|
578
|
+
"iconName": "warning-sign",
|
|
579
|
+
"tags": "notification, warning, triangle, exclamation mark, sign",
|
|
580
|
+
"group": "interface",
|
|
581
|
+
"content": "\\e647"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"displayName": "Error",
|
|
585
|
+
"iconName": "error",
|
|
586
|
+
"tags": "notification, failure, circle, exclamation mark, sign",
|
|
587
|
+
"group": "interface",
|
|
588
|
+
"content": "\\e648"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"displayName": "Info sign",
|
|
592
|
+
"iconName": "info-sign",
|
|
593
|
+
"tags": "notification, information, circle, message, sign",
|
|
594
|
+
"group": "interface",
|
|
595
|
+
"content": "\\2139"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"displayName": "Credit card",
|
|
599
|
+
"iconName": "credit-card",
|
|
600
|
+
"tags": "payment, bank, transaction",
|
|
601
|
+
"group": "action",
|
|
602
|
+
"content": "\\e649"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"displayName": "Edit",
|
|
606
|
+
"iconName": "edit",
|
|
607
|
+
"tags": "annotate, pen, modify",
|
|
608
|
+
"group": "action",
|
|
609
|
+
"content": "\\270E"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"displayName": "History",
|
|
613
|
+
"iconName": "history",
|
|
614
|
+
"tags": "past, reverse, circle, arrow",
|
|
615
|
+
"group": "action",
|
|
616
|
+
"content": "\\e64a"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"displayName": "Search",
|
|
620
|
+
"iconName": "search",
|
|
621
|
+
"tags": "inspection, exploration, magnifying glass",
|
|
622
|
+
"group": "action",
|
|
623
|
+
"content": "\\e64b"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"displayName": "Logout",
|
|
627
|
+
"iconName": "log-out",
|
|
628
|
+
"tags": "arrow, leave",
|
|
629
|
+
"group": "action",
|
|
630
|
+
"content": "\\e64c"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"displayName": "Star",
|
|
634
|
+
"iconName": "star",
|
|
635
|
+
"tags": "shape, pin, mark, pro",
|
|
636
|
+
"group": "interface",
|
|
637
|
+
"content": "\\2605"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"displayName": "Star: empty",
|
|
641
|
+
"iconName": "star-empty",
|
|
642
|
+
"tags": "shape, unpin, mark",
|
|
643
|
+
"group": "interface",
|
|
644
|
+
"content": "\\2606"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"displayName": "Sort: alphabetical",
|
|
648
|
+
"iconName": "sort-alphabetical",
|
|
649
|
+
"tags": "ascending, array, arrange",
|
|
650
|
+
"group": "action",
|
|
651
|
+
"content": "\\e64d"
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"displayName": "Sort: numerical",
|
|
655
|
+
"iconName": "sort-numerical",
|
|
656
|
+
"tags": "ascending, array, arrange",
|
|
657
|
+
"group": "action",
|
|
658
|
+
"content": "\\e64e"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"displayName": "Sort",
|
|
662
|
+
"iconName": "sort",
|
|
663
|
+
"tags": "ascending, array, arrange",
|
|
664
|
+
"group": "action",
|
|
665
|
+
"content": "\\e64f"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"displayName": "Folder: opened",
|
|
669
|
+
"iconName": "folder-open",
|
|
670
|
+
"tags": "file, portfolio, case",
|
|
671
|
+
"group": "file",
|
|
672
|
+
"content": "\\e651"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"displayName": "Folder: closed",
|
|
676
|
+
"iconName": "folder-close",
|
|
677
|
+
"tags": "file, portfolio, case",
|
|
678
|
+
"group": "file",
|
|
679
|
+
"content": "\\e652"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"displayName": "Folder: shared",
|
|
683
|
+
"iconName": "folder-shared",
|
|
684
|
+
"tags": "file, portfolio, case",
|
|
685
|
+
"group": "file",
|
|
686
|
+
"content": "\\e653"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"displayName": "Caret: up",
|
|
690
|
+
"iconName": "caret-up",
|
|
691
|
+
"tags": "direction, order, up",
|
|
692
|
+
"group": "interface",
|
|
693
|
+
"content": "\\2303"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"displayName": "Caret: right",
|
|
697
|
+
"iconName": "caret-right",
|
|
698
|
+
"tags": "direction, order, right",
|
|
699
|
+
"group": "interface",
|
|
700
|
+
"content": "\\232A"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"displayName": "Caret: down",
|
|
704
|
+
"iconName": "caret-down",
|
|
705
|
+
"tags": "direction, order, down",
|
|
706
|
+
"group": "interface",
|
|
707
|
+
"content": "\\2304"
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"displayName": "Caret: left",
|
|
711
|
+
"iconName": "caret-left",
|
|
712
|
+
"tags": "direction, order, left",
|
|
713
|
+
"group": "interface",
|
|
714
|
+
"content": "\\2329"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"displayName": "Menu: opened",
|
|
718
|
+
"iconName": "menu-open",
|
|
719
|
+
"tags": "show, navigation",
|
|
720
|
+
"group": "interface",
|
|
721
|
+
"content": "\\e654"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"displayName": "Menu: closed",
|
|
725
|
+
"iconName": "menu-closed",
|
|
726
|
+
"tags": "hide, navigation",
|
|
727
|
+
"group": "interface",
|
|
728
|
+
"content": "\\e655"
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"displayName": "Feed",
|
|
732
|
+
"iconName": "feed",
|
|
733
|
+
"tags": "rss, feed",
|
|
734
|
+
"group": "interface",
|
|
735
|
+
"content": "\\e656"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"displayName": "Two columns",
|
|
739
|
+
"iconName": "two-columns",
|
|
740
|
+
"tags": "layout, columns, switch, change, two",
|
|
741
|
+
"group": "action",
|
|
742
|
+
"content": "\\e657"
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"displayName": "One column",
|
|
746
|
+
"iconName": "one-column",
|
|
747
|
+
"tags": "layout, columns, switch, change, one",
|
|
748
|
+
"group": "action",
|
|
749
|
+
"content": "\\e658"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"displayName": "Dot",
|
|
753
|
+
"iconName": "dot",
|
|
754
|
+
"tags": "point, circle, small",
|
|
755
|
+
"group": "miscellaneous",
|
|
756
|
+
"content": "\\2022"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"displayName": "Property",
|
|
760
|
+
"iconName": "property",
|
|
761
|
+
"tags": "list, order",
|
|
762
|
+
"group": "interface",
|
|
763
|
+
"content": "\\e65a"
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"displayName": "Time",
|
|
767
|
+
"iconName": "time",
|
|
768
|
+
"tags": "clock, day, hours, minutes, seconds",
|
|
769
|
+
"group": "interface",
|
|
770
|
+
"content": "\\23F2"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"displayName": "Disable",
|
|
774
|
+
"iconName": "disable",
|
|
775
|
+
"tags": "off, circle, remove",
|
|
776
|
+
"group": "action",
|
|
777
|
+
"content": "\\e600"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"displayName": "Unpin",
|
|
781
|
+
"iconName": "unpin",
|
|
782
|
+
"tags": "map, position, safety pin, detach",
|
|
783
|
+
"group": "action",
|
|
784
|
+
"content": "\\e650"
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
"displayName": "Flows",
|
|
788
|
+
"iconName": "flows",
|
|
789
|
+
"tags": "arrows, direction, links",
|
|
790
|
+
"group": "data",
|
|
791
|
+
"content": "\\e659"
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
"displayName": "New text box",
|
|
795
|
+
"iconName": "new-text-box",
|
|
796
|
+
"tags": "text box, edit, new, create",
|
|
797
|
+
"group": "action",
|
|
798
|
+
"content": "\\e65b"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"displayName": "New link",
|
|
802
|
+
"iconName": "new-link",
|
|
803
|
+
"tags": "create, add, plus, links",
|
|
804
|
+
"group": "action",
|
|
805
|
+
"content": "\\e65c"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"displayName": "New object",
|
|
809
|
+
"iconName": "new-object",
|
|
810
|
+
"tags": "create, add, plus, objects, circle",
|
|
811
|
+
"group": "action",
|
|
812
|
+
"content": "\\e65d"
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"displayName": "Path search",
|
|
816
|
+
"iconName": "path-search",
|
|
817
|
+
"tags": "map, magnifying glass, position, location",
|
|
818
|
+
"group": "action",
|
|
819
|
+
"content": "\\e65e"
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"displayName": "Automatic updates",
|
|
823
|
+
"iconName": "automatic-updates",
|
|
824
|
+
"tags": "circle, arrows, tick, amends, updates",
|
|
825
|
+
"group": "action",
|
|
826
|
+
"content": "\\e65f"
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"displayName": "Page layout",
|
|
830
|
+
"iconName": "page-layout",
|
|
831
|
+
"tags": "browser, table, design, columns",
|
|
832
|
+
"group": "table",
|
|
833
|
+
"content": "\\e660"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"displayName": "Code",
|
|
837
|
+
"iconName": "code",
|
|
838
|
+
"tags": "code, markup, language, tag",
|
|
839
|
+
"group": "action",
|
|
840
|
+
"content": "\\e661"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"displayName": "Map",
|
|
844
|
+
"iconName": "map",
|
|
845
|
+
"tags": "map, location, position, geography, world",
|
|
846
|
+
"group": "interface",
|
|
847
|
+
"content": "\\e662"
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"displayName": "Search text",
|
|
851
|
+
"iconName": "search-text",
|
|
852
|
+
"tags": "magnifying glass, exploration",
|
|
853
|
+
"group": "action",
|
|
854
|
+
"content": "\\e663"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"displayName": "Envelope",
|
|
858
|
+
"iconName": "envelope",
|
|
859
|
+
"tags": "post, mail, send, email",
|
|
860
|
+
"group": "interface",
|
|
861
|
+
"content": "\\2709"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"displayName": "Paperclip",
|
|
865
|
+
"iconName": "paperclip",
|
|
866
|
+
"tags": "attachments, add",
|
|
867
|
+
"group": "action",
|
|
868
|
+
"content": "\\e664"
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"displayName": "Label",
|
|
872
|
+
"iconName": "label",
|
|
873
|
+
"tags": "text, tag, ticket",
|
|
874
|
+
"group": "interface",
|
|
875
|
+
"content": "\\e665"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"displayName": "Globe",
|
|
879
|
+
"iconName": "globe",
|
|
880
|
+
"tags": "planet, earth, map, location, geography, world",
|
|
881
|
+
"group": "miscellaneous",
|
|
882
|
+
"content": "\\e666"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"displayName": "Home",
|
|
886
|
+
"iconName": "home",
|
|
887
|
+
"tags": "house, building, destination",
|
|
888
|
+
"group": "miscellaneous",
|
|
889
|
+
"content": "\\2302"
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
"displayName": "Table",
|
|
893
|
+
"iconName": "th",
|
|
894
|
+
"tags": "index, rows, columns, agenda, list, spreadsheet",
|
|
895
|
+
"group": "table",
|
|
896
|
+
"content": "\\e667"
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"displayName": "Table: list",
|
|
900
|
+
"iconName": "th-list",
|
|
901
|
+
"tags": "index, rows, list, order, series",
|
|
902
|
+
"group": "table",
|
|
903
|
+
"content": "\\e668"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"displayName": "Table: derived",
|
|
907
|
+
"iconName": "th-derived",
|
|
908
|
+
"tags": "get, obtain, take, acquire, index, rows, columns, list",
|
|
909
|
+
"group": "table",
|
|
910
|
+
"content": "\\e669"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"displayName": "Circle",
|
|
914
|
+
"iconName": "circle",
|
|
915
|
+
"tags": "radial, empty, area, radius, selection",
|
|
916
|
+
"group": "action",
|
|
917
|
+
"content": "\\e66a"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"displayName": "Draw",
|
|
921
|
+
"iconName": "draw",
|
|
922
|
+
"tags": "selection, area, highlight, sketch",
|
|
923
|
+
"group": "action",
|
|
924
|
+
"content": "\\e66b"
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
"displayName": "Insert",
|
|
928
|
+
"iconName": "insert",
|
|
929
|
+
"tags": "square, plus, add, embed, include, inject",
|
|
930
|
+
"group": "action",
|
|
931
|
+
"content": "\\e66c"
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"displayName": "Helper management",
|
|
935
|
+
"iconName": "helper-management",
|
|
936
|
+
"tags": "square, widget",
|
|
937
|
+
"group": "interface",
|
|
938
|
+
"content": "\\e66d"
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"displayName": "Send to",
|
|
942
|
+
"iconName": "send-to",
|
|
943
|
+
"tags": "circle, export, arrow",
|
|
944
|
+
"group": "action",
|
|
945
|
+
"content": "\\e66e"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"displayName": "Eye",
|
|
949
|
+
"iconName": "eye-open",
|
|
950
|
+
"tags": "show, visible, clear, view, vision",
|
|
951
|
+
"group": "interface",
|
|
952
|
+
"content": "\\e66f"
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"displayName": "Folder: shared open",
|
|
956
|
+
"iconName": "folder-shared-open",
|
|
957
|
+
"tags": "file, portfolio, case",
|
|
958
|
+
"group": "file",
|
|
959
|
+
"content": "\\e670"
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"displayName": "Social media",
|
|
963
|
+
"iconName": "social-media",
|
|
964
|
+
"tags": "circle, rotate, share",
|
|
965
|
+
"group": "action",
|
|
966
|
+
"content": "\\e671"
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"displayName": "Arrow: up",
|
|
970
|
+
"iconName": "arrow-up",
|
|
971
|
+
"tags": "direction, north",
|
|
972
|
+
"group": "interface",
|
|
973
|
+
"content": "\\2191 "
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"displayName": "Arrow: down",
|
|
977
|
+
"iconName": "arrow-down",
|
|
978
|
+
"tags": "direction, south",
|
|
979
|
+
"group": "interface",
|
|
980
|
+
"content": "\\2193 "
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"displayName": "Arrows: horizontal",
|
|
984
|
+
"iconName": "arrows-horizontal",
|
|
985
|
+
"tags": "direction, level",
|
|
986
|
+
"group": "interface",
|
|
987
|
+
"content": "\\2194 "
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
"displayName": "Arrows: vertical",
|
|
991
|
+
"iconName": "arrows-vertical",
|
|
992
|
+
"tags": "direction, level",
|
|
993
|
+
"group": "interface",
|
|
994
|
+
"content": "\\2195 "
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"displayName": "Resolve",
|
|
998
|
+
"iconName": "resolve",
|
|
999
|
+
"tags": "circles, divide, split",
|
|
1000
|
+
"group": "action",
|
|
1001
|
+
"content": "\\e672"
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"displayName": "Graph",
|
|
1005
|
+
"iconName": "graph",
|
|
1006
|
+
"tags": "graph, diagram",
|
|
1007
|
+
"group": "data",
|
|
1008
|
+
"content": "\\e673"
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"displayName": "Briefcase",
|
|
1012
|
+
"iconName": "briefcase",
|
|
1013
|
+
"tags": "suitcase, business, case, baggage,",
|
|
1014
|
+
"group": "miscellaneous",
|
|
1015
|
+
"content": "\\e674"
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"displayName": "Dollar",
|
|
1019
|
+
"iconName": "dollar",
|
|
1020
|
+
"tags": "currency, money",
|
|
1021
|
+
"group": "miscellaneous",
|
|
1022
|
+
"content": "\\0024"
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"displayName": "Ninja",
|
|
1026
|
+
"iconName": "ninja",
|
|
1027
|
+
"tags": "star, fighter, symbol",
|
|
1028
|
+
"group": "miscellaneous",
|
|
1029
|
+
"content": "\\e675"
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"displayName": "Delta",
|
|
1033
|
+
"iconName": "delta",
|
|
1034
|
+
"tags": "alt j, symbol",
|
|
1035
|
+
"group": "miscellaneous",
|
|
1036
|
+
"content": "\\0394"
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
"displayName": "Barcode",
|
|
1040
|
+
"iconName": "barcode",
|
|
1041
|
+
"tags": "product, scan,",
|
|
1042
|
+
"group": "miscellaneous",
|
|
1043
|
+
"content": "\\e676"
|
|
1044
|
+
},
|
|
1045
|
+
{
|
|
1046
|
+
"displayName": "Torch",
|
|
1047
|
+
"iconName": "torch",
|
|
1048
|
+
"tags": "light, flashlight, tool",
|
|
1049
|
+
"group": "miscellaneous",
|
|
1050
|
+
"content": "\\e677"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"displayName": "Widget",
|
|
1054
|
+
"iconName": "widget",
|
|
1055
|
+
"tags": "square, corners",
|
|
1056
|
+
"group": "interface",
|
|
1057
|
+
"content": "\\e678"
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"displayName": "Unresolve",
|
|
1061
|
+
"iconName": "unresolve",
|
|
1062
|
+
"tags": "split, divide, disconnect, separate",
|
|
1063
|
+
"group": "action",
|
|
1064
|
+
"content": "\\e679"
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"displayName": "Offline",
|
|
1068
|
+
"iconName": "offline",
|
|
1069
|
+
"tags": "circle, lightning, disconnected, down",
|
|
1070
|
+
"group": "interface",
|
|
1071
|
+
"content": "\\e67a"
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"displayName": "Zoom to fit",
|
|
1075
|
+
"iconName": "zoom-to-fit",
|
|
1076
|
+
"tags": "fit, scale, resize, adjust",
|
|
1077
|
+
"group": "action",
|
|
1078
|
+
"content": "\\e67b"
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"displayName": "Add to artifact",
|
|
1082
|
+
"iconName": "add-to-artifact",
|
|
1083
|
+
"tags": "list, plus",
|
|
1084
|
+
"group": "action",
|
|
1085
|
+
"content": "\\e67c"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"displayName": "Map marker",
|
|
1089
|
+
"iconName": "map-marker",
|
|
1090
|
+
"tags": "pin, map, location, position, geography, world",
|
|
1091
|
+
"group": "interface",
|
|
1092
|
+
"content": "\\e67d"
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
"displayName": "Chart",
|
|
1096
|
+
"iconName": "chart",
|
|
1097
|
+
"tags": "arrow, increase, up, line, bar, graph",
|
|
1098
|
+
"group": "data",
|
|
1099
|
+
"content": "\\e67e"
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"displayName": "Control",
|
|
1103
|
+
"iconName": "control",
|
|
1104
|
+
"tags": "squares, layout",
|
|
1105
|
+
"group": "interface",
|
|
1106
|
+
"content": "\\e67f"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"displayName": "Multi select",
|
|
1110
|
+
"iconName": "multi-select",
|
|
1111
|
+
"tags": "layers, selection",
|
|
1112
|
+
"group": "interface",
|
|
1113
|
+
"content": "\\e680"
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"displayName": "Direction: left",
|
|
1117
|
+
"iconName": "direction-left",
|
|
1118
|
+
"tags": "pointer, west",
|
|
1119
|
+
"group": "interface",
|
|
1120
|
+
"content": "\\e681"
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"displayName": "Direction: right",
|
|
1124
|
+
"iconName": "direction-right",
|
|
1125
|
+
"tags": "pointer, east",
|
|
1126
|
+
"group": "interface",
|
|
1127
|
+
"content": "\\e682"
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"displayName": "Database",
|
|
1131
|
+
"iconName": "database",
|
|
1132
|
+
"tags": "stack, storage",
|
|
1133
|
+
"group": "data",
|
|
1134
|
+
"content": "\\e683"
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
"displayName": "Pie chart",
|
|
1138
|
+
"iconName": "pie-chart",
|
|
1139
|
+
"tags": "circle, part, section",
|
|
1140
|
+
"group": "data",
|
|
1141
|
+
"content": "\\e684"
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
"displayName": "Full circle",
|
|
1145
|
+
"iconName": "full-circle",
|
|
1146
|
+
"tags": "dot, point",
|
|
1147
|
+
"group": "miscellaneous",
|
|
1148
|
+
"content": "\\e685"
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"displayName": "Square",
|
|
1152
|
+
"iconName": "square",
|
|
1153
|
+
"tags": "empty, outline",
|
|
1154
|
+
"group": "miscellaneous",
|
|
1155
|
+
"content": "\\e686"
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"displayName": "Print",
|
|
1159
|
+
"iconName": "print",
|
|
1160
|
+
"tags": "printer, paper",
|
|
1161
|
+
"group": "action",
|
|
1162
|
+
"content": "\\2399"
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"displayName": "Presentation",
|
|
1166
|
+
"iconName": "presentation",
|
|
1167
|
+
"tags": "display, presentation",
|
|
1168
|
+
"group": "interface",
|
|
1169
|
+
"content": "\\e687"
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
"displayName": "Ungroup objects",
|
|
1173
|
+
"iconName": "ungroup-objects",
|
|
1174
|
+
"tags": "split, divide, disconnect, separate",
|
|
1175
|
+
"group": "action",
|
|
1176
|
+
"content": "\\e688"
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
"displayName": "Chat",
|
|
1180
|
+
"iconName": "chat",
|
|
1181
|
+
"tags": "speech, conversation, communication, talk",
|
|
1182
|
+
"group": "action",
|
|
1183
|
+
"content": "\\e689"
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"displayName": "Comment",
|
|
1187
|
+
"iconName": "comment",
|
|
1188
|
+
"tags": "statement, discussion, opinion, view",
|
|
1189
|
+
"group": "action",
|
|
1190
|
+
"content": "\\e68a"
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"displayName": "Circle arrow: right",
|
|
1194
|
+
"iconName": "circle-arrow-right",
|
|
1195
|
+
"tags": "direction, east",
|
|
1196
|
+
"group": "interface",
|
|
1197
|
+
"content": "\\e68b"
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
"displayName": "Circle arrow: left",
|
|
1201
|
+
"iconName": "circle-arrow-left",
|
|
1202
|
+
"tags": "direction, west",
|
|
1203
|
+
"group": "interface",
|
|
1204
|
+
"content": "\\e68c"
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"displayName": "Circle arrow: up",
|
|
1208
|
+
"iconName": "circle-arrow-up",
|
|
1209
|
+
"tags": "direction, north",
|
|
1210
|
+
"group": "interface",
|
|
1211
|
+
"content": "\\e68d"
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
"displayName": "Circle arrow: down",
|
|
1215
|
+
"iconName": "circle-arrow-down",
|
|
1216
|
+
"tags": "direction, south",
|
|
1217
|
+
"group": "interface",
|
|
1218
|
+
"content": "\\e68e"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"displayName": "Upload",
|
|
1222
|
+
"iconName": "upload",
|
|
1223
|
+
"tags": "arrow, circle, up, transfer",
|
|
1224
|
+
"group": "action",
|
|
1225
|
+
"content": "\\e68f"
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"displayName": "Asterisk",
|
|
1229
|
+
"iconName": "asterisk",
|
|
1230
|
+
"tags": "note, symbol, starred, marked",
|
|
1231
|
+
"group": "miscellaneous",
|
|
1232
|
+
"content": "\\002a"
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"displayName": "Cloud",
|
|
1236
|
+
"iconName": "cloud",
|
|
1237
|
+
"tags": "file, storage, weather",
|
|
1238
|
+
"group": "file",
|
|
1239
|
+
"content": "\\2601"
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
"displayName": "Cloud: download",
|
|
1243
|
+
"iconName": "cloud-download",
|
|
1244
|
+
"tags": "file, storage, transfer",
|
|
1245
|
+
"group": "file",
|
|
1246
|
+
"content": "\\e690"
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
"displayName": "Cloud: upload",
|
|
1250
|
+
"iconName": "cloud-upload",
|
|
1251
|
+
"tags": "file, storage, transfer",
|
|
1252
|
+
"group": "file",
|
|
1253
|
+
"content": "\\e691"
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"displayName": "Repeat",
|
|
1257
|
+
"iconName": "repeat",
|
|
1258
|
+
"tags": "circle, arrow",
|
|
1259
|
+
"group": "action",
|
|
1260
|
+
"content": "\\e692"
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"displayName": "Move",
|
|
1264
|
+
"iconName": "move",
|
|
1265
|
+
"tags": "arrows, directions, position, location",
|
|
1266
|
+
"group": "action",
|
|
1267
|
+
"content": "\\e693"
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
"displayName": "Chevron: left",
|
|
1271
|
+
"iconName": "chevron-left",
|
|
1272
|
+
"tags": "arrow, direction",
|
|
1273
|
+
"group": "interface",
|
|
1274
|
+
"content": "\\e694"
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
"displayName": "Chevron: right",
|
|
1278
|
+
"iconName": "chevron-right",
|
|
1279
|
+
"tags": "arrow, direction",
|
|
1280
|
+
"group": "interface",
|
|
1281
|
+
"content": "\\e695"
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"displayName": "Chevron: up",
|
|
1285
|
+
"iconName": "chevron-up",
|
|
1286
|
+
"tags": "arrow, direction",
|
|
1287
|
+
"group": "interface",
|
|
1288
|
+
"content": "\\e696"
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"displayName": "Chevron: down",
|
|
1292
|
+
"iconName": "chevron-down",
|
|
1293
|
+
"tags": "arrow, direction",
|
|
1294
|
+
"group": "interface",
|
|
1295
|
+
"content": "\\e697"
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"displayName": "Random",
|
|
1299
|
+
"iconName": "random",
|
|
1300
|
+
"tags": "arrows, aim",
|
|
1301
|
+
"group": "interface",
|
|
1302
|
+
"content": "\\e698"
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
"displayName": "Fullscreen",
|
|
1306
|
+
"iconName": "fullscreen",
|
|
1307
|
+
"tags": "size, arrows, increase, proportion, width, height",
|
|
1308
|
+
"group": "media",
|
|
1309
|
+
"content": "\\e699"
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"displayName": "Login",
|
|
1313
|
+
"iconName": "log-in",
|
|
1314
|
+
"tags": "arrow, sign in",
|
|
1315
|
+
"group": "action",
|
|
1316
|
+
"content": "\\e69a"
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
"displayName": "Heart",
|
|
1320
|
+
"iconName": "heart",
|
|
1321
|
+
"tags": "love, like, organ, human, feelings",
|
|
1322
|
+
"group": "miscellaneous",
|
|
1323
|
+
"content": "\\2665"
|
|
1324
|
+
},
|
|
1325
|
+
{
|
|
1326
|
+
"displayName": "Office",
|
|
1327
|
+
"iconName": "office",
|
|
1328
|
+
"tags": "building, business, location, street",
|
|
1329
|
+
"group": "miscellaneous",
|
|
1330
|
+
"content": "\\e69b"
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"displayName": "Duplicate",
|
|
1334
|
+
"iconName": "duplicate",
|
|
1335
|
+
"tags": "copy, square, two",
|
|
1336
|
+
"group": "action",
|
|
1337
|
+
"content": "\\e69c"
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
"displayName": "Ban circle",
|
|
1341
|
+
"iconName": "ban-circle",
|
|
1342
|
+
"tags": "circle, refusal",
|
|
1343
|
+
"group": "action",
|
|
1344
|
+
"content": "\\e69d"
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
"displayName": "Camera",
|
|
1348
|
+
"iconName": "camera",
|
|
1349
|
+
"tags": "photograph, picture, video",
|
|
1350
|
+
"group": "media",
|
|
1351
|
+
"content": "\\e69e"
|
|
1352
|
+
},
|
|
1353
|
+
{
|
|
1354
|
+
"displayName": "Mobile video",
|
|
1355
|
+
"iconName": "mobile-video",
|
|
1356
|
+
"tags": "film, broadcast, television",
|
|
1357
|
+
"group": "media",
|
|
1358
|
+
"content": "\\e69f"
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"displayName": "Video",
|
|
1362
|
+
"iconName": "video",
|
|
1363
|
+
"tags": "film, broadcast, television",
|
|
1364
|
+
"group": "media",
|
|
1365
|
+
"content": "\\e6a0"
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
"displayName": "Film",
|
|
1369
|
+
"iconName": "film",
|
|
1370
|
+
"tags": "movie, cinema, theatre",
|
|
1371
|
+
"group": "media",
|
|
1372
|
+
"content": "\\e6a1"
|
|
1373
|
+
},
|
|
1374
|
+
{
|
|
1375
|
+
"displayName": "Settings",
|
|
1376
|
+
"iconName": "settings",
|
|
1377
|
+
"tags": "controls, knobs",
|
|
1378
|
+
"group": "media",
|
|
1379
|
+
"content": "\\e6a2"
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
"displayName": "Volume: off",
|
|
1383
|
+
"iconName": "volume-off",
|
|
1384
|
+
"tags": "audio, video, speaker, music, sound, low",
|
|
1385
|
+
"group": "media",
|
|
1386
|
+
"content": "\\e6a3"
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
"displayName": "Volume: down",
|
|
1390
|
+
"iconName": "volume-down",
|
|
1391
|
+
"tags": "audio, video, speaker, music, sound",
|
|
1392
|
+
"group": "media",
|
|
1393
|
+
"content": "\\e6a4"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"displayName": "Volume: up",
|
|
1397
|
+
"iconName": "volume-up",
|
|
1398
|
+
"tags": "audio, video, speaker, music, sound, high",
|
|
1399
|
+
"group": "media",
|
|
1400
|
+
"content": "\\e6a5"
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"displayName": "Music",
|
|
1404
|
+
"iconName": "music",
|
|
1405
|
+
"tags": "audio, video, note, sound",
|
|
1406
|
+
"group": "media",
|
|
1407
|
+
"content": "\\e6a6"
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
"displayName": "Step backward",
|
|
1411
|
+
"iconName": "step-backward",
|
|
1412
|
+
"tags": "player, media, controls, digital, analogue, film, audio, video",
|
|
1413
|
+
"group": "media",
|
|
1414
|
+
"content": "\\e6a7"
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
"displayName": "Fast backward",
|
|
1418
|
+
"iconName": "fast-backward",
|
|
1419
|
+
"tags": "player, media, controls, digital, analogue, film, audio, video",
|
|
1420
|
+
"group": "media",
|
|
1421
|
+
"content": "\\e6a8"
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
"displayName": "Pause",
|
|
1425
|
+
"iconName": "pause",
|
|
1426
|
+
"tags": "player, media, controls, digital, analogue, film, audio, video",
|
|
1427
|
+
"group": "media",
|
|
1428
|
+
"content": "\\e6a9"
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"displayName": "Stop",
|
|
1432
|
+
"iconName": "stop",
|
|
1433
|
+
"tags": "player, media, controls, digital, analogue, film, audio, video",
|
|
1434
|
+
"group": "media",
|
|
1435
|
+
"content": "\\e6aa"
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"displayName": "Play",
|
|
1439
|
+
"iconName": "play",
|
|
1440
|
+
"tags": "player, media, controls, digital, analogue, film, audio, video",
|
|
1441
|
+
"group": "media",
|
|
1442
|
+
"content": "\\e6ab"
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"displayName": "Fast forward",
|
|
1446
|
+
"iconName": "fast-forward",
|
|
1447
|
+
"tags": "player, media, controls, digital, analogue, film, audio, video",
|
|
1448
|
+
"group": "media",
|
|
1449
|
+
"content": "\\e6ac"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"displayName": "Step forward",
|
|
1453
|
+
"iconName": "step-forward",
|
|
1454
|
+
"tags": "player, media, controls, digital, analogue, film, audio, video",
|
|
1455
|
+
"group": "media",
|
|
1456
|
+
"content": "\\e6ad"
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
"displayName": "Eject",
|
|
1460
|
+
"iconName": "eject",
|
|
1461
|
+
"tags": "player, media, controls, digital, analogue, film, audio, video",
|
|
1462
|
+
"group": "media",
|
|
1463
|
+
"content": "\\23cf"
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"displayName": "Record",
|
|
1467
|
+
"iconName": "record",
|
|
1468
|
+
"tags": "player, media, controls, digital, analogue, film, audio, video",
|
|
1469
|
+
"group": "media",
|
|
1470
|
+
"content": "\\e6ae"
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
"displayName": "Desktop",
|
|
1474
|
+
"iconName": "desktop",
|
|
1475
|
+
"tags": "screen, monitor, display",
|
|
1476
|
+
"group": "media",
|
|
1477
|
+
"content": "\\e6af"
|
|
1478
|
+
},
|
|
1479
|
+
{
|
|
1480
|
+
"displayName": "Phone",
|
|
1481
|
+
"iconName": "phone",
|
|
1482
|
+
"tags": "telephone, call, ring",
|
|
1483
|
+
"group": "media",
|
|
1484
|
+
"content": "\\260e"
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
"displayName": "Lightbulb",
|
|
1488
|
+
"iconName": "lightbulb",
|
|
1489
|
+
"tags": "idea, glow, lamp",
|
|
1490
|
+
"group": "miscellaneous",
|
|
1491
|
+
"content": "\\e6b0"
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
"displayName": "Glass",
|
|
1495
|
+
"iconName": "glass",
|
|
1496
|
+
"tags": "glassware, drink",
|
|
1497
|
+
"group": "miscellaneous",
|
|
1498
|
+
"content": "\\e6b1"
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"displayName": "Tint",
|
|
1502
|
+
"iconName": "tint",
|
|
1503
|
+
"tags": "drop, color, coloration, hue",
|
|
1504
|
+
"group": "media",
|
|
1505
|
+
"content": "\\e6b2"
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
"displayName": "Flash",
|
|
1509
|
+
"iconName": "flash",
|
|
1510
|
+
"tags": "light, contrast, photograph, picture",
|
|
1511
|
+
"group": "media",
|
|
1512
|
+
"content": "\\e6b3"
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"displayName": "Font",
|
|
1516
|
+
"iconName": "font",
|
|
1517
|
+
"tags": "scale, typography, size",
|
|
1518
|
+
"group": "editor",
|
|
1519
|
+
"content": "\\e6b4"
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"displayName": "Header",
|
|
1523
|
+
"iconName": "header",
|
|
1524
|
+
"tags": "typography, section, layout",
|
|
1525
|
+
"group": "editor",
|
|
1526
|
+
"content": "\\e6b5"
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
"displayName": "Saved",
|
|
1530
|
+
"iconName": "saved",
|
|
1531
|
+
"tags": "document, check mark, tick",
|
|
1532
|
+
"group": "file",
|
|
1533
|
+
"content": "\\e6b6"
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
"displayName": "Floppy disk",
|
|
1537
|
+
"iconName": "floppy-disk",
|
|
1538
|
+
"tags": "save",
|
|
1539
|
+
"group": "interface",
|
|
1540
|
+
"content": "\\e6b7"
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
"displayName": "Book",
|
|
1544
|
+
"iconName": "book",
|
|
1545
|
+
"tags": "pages, album, brochure, manual",
|
|
1546
|
+
"group": "miscellaneous",
|
|
1547
|
+
"content": "\\e6b8"
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"displayName": "Hand: right",
|
|
1551
|
+
"iconName": "hand-right",
|
|
1552
|
+
"tags": "gesture, direction",
|
|
1553
|
+
"group": "interface",
|
|
1554
|
+
"content": "\\e6b9"
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"displayName": "Hand: up",
|
|
1558
|
+
"iconName": "hand-up",
|
|
1559
|
+
"tags": "gesture, direction",
|
|
1560
|
+
"group": "interface",
|
|
1561
|
+
"content": "\\e6ba"
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"displayName": "Hand: down",
|
|
1565
|
+
"iconName": "hand-down",
|
|
1566
|
+
"tags": "gesture, direction",
|
|
1567
|
+
"group": "interface",
|
|
1568
|
+
"content": "\\e6bb"
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
"displayName": "Hand: left",
|
|
1572
|
+
"iconName": "hand-left",
|
|
1573
|
+
"tags": "gesture, direction",
|
|
1574
|
+
"group": "interface",
|
|
1575
|
+
"content": "\\e6bc"
|
|
1576
|
+
},
|
|
1577
|
+
{
|
|
1578
|
+
"displayName": "Thumbs: up",
|
|
1579
|
+
"iconName": "thumbs-up",
|
|
1580
|
+
"tags": "hand, like, ok",
|
|
1581
|
+
"group": "interface",
|
|
1582
|
+
"content": "\\e6bd"
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"displayName": "Thumbs: down",
|
|
1586
|
+
"iconName": "thumbs-down",
|
|
1587
|
+
"tags": "hand, dislike, bad",
|
|
1588
|
+
"group": "interface",
|
|
1589
|
+
"content": "\\e6be"
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
"displayName": "Box",
|
|
1593
|
+
"iconName": "box",
|
|
1594
|
+
"tags": "folder, carton, pack",
|
|
1595
|
+
"group": "file",
|
|
1596
|
+
"content": "\\e6bf"
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
"displayName": "Compressed",
|
|
1600
|
+
"iconName": "compressed",
|
|
1601
|
+
"tags": "folder, carton, pack, shrink, wrap, shorten",
|
|
1602
|
+
"group": "file",
|
|
1603
|
+
"content": "\\e6c0"
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
"displayName": "Shopping cart",
|
|
1607
|
+
"iconName": "shopping-cart",
|
|
1608
|
+
"tags": "trolley, mall, online, store, business",
|
|
1609
|
+
"group": "miscellaneous",
|
|
1610
|
+
"content": "\\e6c1"
|
|
1611
|
+
},
|
|
1612
|
+
{
|
|
1613
|
+
"displayName": "Shop",
|
|
1614
|
+
"iconName": "shop",
|
|
1615
|
+
"tags": "store, business, shopping",
|
|
1616
|
+
"group": "miscellaneous",
|
|
1617
|
+
"content": "\\e6c2"
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
"displayName": "Layout: linear",
|
|
1621
|
+
"iconName": "layout-linear",
|
|
1622
|
+
"tags": "dots, connection, line",
|
|
1623
|
+
"group": "data",
|
|
1624
|
+
"content": "\\e6c3"
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
"displayName": "Undo",
|
|
1628
|
+
"iconName": "undo",
|
|
1629
|
+
"tags": "back, cancel, reverse, revoke,",
|
|
1630
|
+
"group": "action",
|
|
1631
|
+
"content": "\\238c"
|
|
1632
|
+
},
|
|
1633
|
+
{
|
|
1634
|
+
"displayName": "Redo",
|
|
1635
|
+
"iconName": "redo",
|
|
1636
|
+
"tags": "forward, push",
|
|
1637
|
+
"group": "action",
|
|
1638
|
+
"content": "\\e6c4"
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
"displayName": "Code block",
|
|
1642
|
+
"iconName": "code-block",
|
|
1643
|
+
"tags": "code, markup, language, tag",
|
|
1644
|
+
"group": "file",
|
|
1645
|
+
"content": "\\e6c5"
|
|
1646
|
+
},
|
|
1647
|
+
{
|
|
1648
|
+
"displayName": "Double caret: vertical",
|
|
1649
|
+
"iconName": "double-caret-vertical",
|
|
1650
|
+
"tags": "sort, arrow, list",
|
|
1651
|
+
"group": "interface",
|
|
1652
|
+
"content": "\\e6c6"
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
"displayName": "Double caret: horizontal",
|
|
1656
|
+
"iconName": "double-caret-horizontal",
|
|
1657
|
+
"tags": "sort, arrow, list",
|
|
1658
|
+
"group": "interface",
|
|
1659
|
+
"content": "\\e6c7"
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
"displayName": "Sort: alphabetical descending",
|
|
1663
|
+
"iconName": "sort-alphabetical-desc",
|
|
1664
|
+
"tags": "order, list, array, arrange",
|
|
1665
|
+
"group": "action",
|
|
1666
|
+
"content": "\\e6c8"
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
"displayName": "Sort: numerical descending",
|
|
1670
|
+
"iconName": "sort-numerical-desc",
|
|
1671
|
+
"tags": "order, list, array, arrange",
|
|
1672
|
+
"group": "action",
|
|
1673
|
+
"content": "\\e6c9"
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"displayName": "Take action",
|
|
1677
|
+
"iconName": "take-action",
|
|
1678
|
+
"tags": "case, court, deal, gavel",
|
|
1679
|
+
"group": "action",
|
|
1680
|
+
"content": "\\e6ca"
|
|
1681
|
+
},
|
|
1682
|
+
{
|
|
1683
|
+
"displayName": "Contrast",
|
|
1684
|
+
"iconName": "contrast",
|
|
1685
|
+
"tags": "color, brightness",
|
|
1686
|
+
"group": "media",
|
|
1687
|
+
"content": "\\e6cb"
|
|
1688
|
+
},
|
|
1689
|
+
{
|
|
1690
|
+
"displayName": "Eye: off",
|
|
1691
|
+
"iconName": "eye-off",
|
|
1692
|
+
"tags": "visibility, hide",
|
|
1693
|
+
"group": "interface",
|
|
1694
|
+
"content": "\\e6cc"
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
"displayName": "Area chart",
|
|
1698
|
+
"iconName": "timeline-area-chart",
|
|
1699
|
+
"tags": "graph, line, diagram",
|
|
1700
|
+
"group": "data",
|
|
1701
|
+
"content": "\\e6cd"
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
"displayName": "Doughnut chart",
|
|
1705
|
+
"iconName": "doughnut-chart",
|
|
1706
|
+
"tags": "circle, section, part, graph",
|
|
1707
|
+
"group": "data",
|
|
1708
|
+
"content": "\\e6ce"
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
"displayName": "Layer",
|
|
1712
|
+
"iconName": "layer",
|
|
1713
|
+
"tags": "zone, level",
|
|
1714
|
+
"group": "interface",
|
|
1715
|
+
"content": "\\e6cf"
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"displayName": "Grid",
|
|
1719
|
+
"iconName": "grid",
|
|
1720
|
+
"tags": "layout, arrangement",
|
|
1721
|
+
"group": "data",
|
|
1722
|
+
"content": "\\e6d0"
|
|
1723
|
+
},
|
|
1724
|
+
{
|
|
1725
|
+
"displayName": "Polygon filter",
|
|
1726
|
+
"iconName": "polygon-filter",
|
|
1727
|
+
"tags": "shape, form",
|
|
1728
|
+
"group": "data",
|
|
1729
|
+
"content": "\\e6d1"
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
"displayName": "Add to folder",
|
|
1733
|
+
"iconName": "add-to-folder",
|
|
1734
|
+
"tags": "file, portfolio, case, import",
|
|
1735
|
+
"group": "file",
|
|
1736
|
+
"content": "\\e6d2"
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"displayName": "Layout: balloon",
|
|
1740
|
+
"iconName": "layout-balloon",
|
|
1741
|
+
"tags": "layout, presentation, arrangement, graph",
|
|
1742
|
+
"group": "data",
|
|
1743
|
+
"content": "\\e6d3"
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
"displayName": "Layout: sorted clusters",
|
|
1747
|
+
"iconName": "layout-sorted-clusters",
|
|
1748
|
+
"tags": "layout, presentation, arrangement, graph",
|
|
1749
|
+
"group": "data",
|
|
1750
|
+
"content": "\\e6d4"
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
"displayName": "Sort: ascending",
|
|
1754
|
+
"iconName": "sort-asc",
|
|
1755
|
+
"tags": "order, list, array, arrange",
|
|
1756
|
+
"group": "action",
|
|
1757
|
+
"content": "\\e6d5"
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
"displayName": "Sort: descending",
|
|
1761
|
+
"iconName": "sort-desc",
|
|
1762
|
+
"tags": "order, list, array, arrange",
|
|
1763
|
+
"group": "action",
|
|
1764
|
+
"content": "\\e6d6"
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
"displayName": "Small cross",
|
|
1768
|
+
"iconName": "small-cross",
|
|
1769
|
+
"tags": "cross mark, fail, delete, no, close, remove",
|
|
1770
|
+
"group": "action",
|
|
1771
|
+
"content": "\\e6d7"
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
"displayName": "Small tick",
|
|
1775
|
+
"iconName": "small-tick",
|
|
1776
|
+
"tags": "mark, sign, ok, approved, success",
|
|
1777
|
+
"group": "action",
|
|
1778
|
+
"content": "\\e6d8"
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
"displayName": "Power",
|
|
1782
|
+
"iconName": "power",
|
|
1783
|
+
"tags": "button, on, off",
|
|
1784
|
+
"group": "media",
|
|
1785
|
+
"content": "\\e6d9"
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"displayName": "Column layout",
|
|
1789
|
+
"iconName": "column-layout",
|
|
1790
|
+
"tags": "layout, arrangement",
|
|
1791
|
+
"group": "table",
|
|
1792
|
+
"content": "\\e6da"
|
|
1793
|
+
},
|
|
1794
|
+
{
|
|
1795
|
+
"displayName": "Arrow: top left",
|
|
1796
|
+
"iconName": "arrow-top-left",
|
|
1797
|
+
"tags": "direction, north west",
|
|
1798
|
+
"group": "interface",
|
|
1799
|
+
"content": "\\2196"
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
"displayName": "Arrow: top right",
|
|
1803
|
+
"iconName": "arrow-top-right",
|
|
1804
|
+
"tags": "direction, north east",
|
|
1805
|
+
"group": "interface",
|
|
1806
|
+
"content": "\\2197"
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
"displayName": "Arrow: bottom right",
|
|
1810
|
+
"iconName": "arrow-bottom-right",
|
|
1811
|
+
"tags": "direction, south east",
|
|
1812
|
+
"group": "interface",
|
|
1813
|
+
"content": "\\2198"
|
|
1814
|
+
},
|
|
1815
|
+
{
|
|
1816
|
+
"displayName": "Arrow: bottom left",
|
|
1817
|
+
"iconName": "arrow-bottom-left",
|
|
1818
|
+
"tags": "direction, south west",
|
|
1819
|
+
"group": "interface",
|
|
1820
|
+
"content": "\\2199"
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"displayName": "Mugshot",
|
|
1824
|
+
"iconName": "mugshot",
|
|
1825
|
+
"tags": "person, photograph, picture,",
|
|
1826
|
+
"group": "interface",
|
|
1827
|
+
"content": "\\e6db"
|
|
1828
|
+
},
|
|
1829
|
+
{
|
|
1830
|
+
"displayName": "Headset",
|
|
1831
|
+
"iconName": "headset",
|
|
1832
|
+
"tags": "headphones, call, communication",
|
|
1833
|
+
"group": "media",
|
|
1834
|
+
"content": "\\e6dc"
|
|
1835
|
+
},
|
|
1836
|
+
{
|
|
1837
|
+
"displayName": "Text highlight",
|
|
1838
|
+
"iconName": "text-highlight",
|
|
1839
|
+
"tags": "selector, content",
|
|
1840
|
+
"group": "editor",
|
|
1841
|
+
"content": "\\e6dd"
|
|
1842
|
+
},
|
|
1843
|
+
{
|
|
1844
|
+
"displayName": "Hand",
|
|
1845
|
+
"iconName": "hand",
|
|
1846
|
+
"tags": "gesture, fingers",
|
|
1847
|
+
"group": "interface",
|
|
1848
|
+
"content": "\\e6de"
|
|
1849
|
+
},
|
|
1850
|
+
{
|
|
1851
|
+
"displayName": "Chevron: backward",
|
|
1852
|
+
"iconName": "chevron-backward",
|
|
1853
|
+
"tags": "skip, direction",
|
|
1854
|
+
"group": "interface",
|
|
1855
|
+
"content": "\\e6df"
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
"displayName": "Chevron: forward",
|
|
1859
|
+
"iconName": "chevron-forward",
|
|
1860
|
+
"tags": "skip, direction",
|
|
1861
|
+
"group": "interface",
|
|
1862
|
+
"content": "\\e6e0"
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"displayName": "Rotate: document",
|
|
1866
|
+
"iconName": "rotate-document",
|
|
1867
|
+
"tags": "turn, anti clockwise",
|
|
1868
|
+
"group": "editor",
|
|
1869
|
+
"content": "\\e6e1"
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
"displayName": "Rotate: page",
|
|
1873
|
+
"iconName": "rotate-page",
|
|
1874
|
+
"tags": "turn, anti clockwise",
|
|
1875
|
+
"group": "editor",
|
|
1876
|
+
"content": "\\e6e2"
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
"displayName": "Badge",
|
|
1880
|
+
"iconName": "badge",
|
|
1881
|
+
"tags": "emblem, symbol, identification, insignia, marker",
|
|
1882
|
+
"group": "miscellaneous",
|
|
1883
|
+
"content": "\\e6e3"
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
"displayName": "Grid view",
|
|
1887
|
+
"iconName": "grid-view",
|
|
1888
|
+
"tags": "layout, arrangement",
|
|
1889
|
+
"group": "editor",
|
|
1890
|
+
"content": "\\e6e4"
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
"displayName": "Function",
|
|
1894
|
+
"iconName": "function",
|
|
1895
|
+
"tags": "math, calculation",
|
|
1896
|
+
"group": "table",
|
|
1897
|
+
"content": "\\e6e5"
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
"displayName": "Waterfall chart",
|
|
1901
|
+
"iconName": "waterfall-chart",
|
|
1902
|
+
"tags": "graph, diagram",
|
|
1903
|
+
"group": "data",
|
|
1904
|
+
"content": "\\e6e6"
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
"displayName": "Stacked chart",
|
|
1908
|
+
"iconName": "stacked-chart",
|
|
1909
|
+
"tags": "bar chart",
|
|
1910
|
+
"group": "data",
|
|
1911
|
+
"content": "\\e6e7"
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
"displayName": "Pulse",
|
|
1915
|
+
"iconName": "pulse",
|
|
1916
|
+
"tags": "medical, life, heartbeat, hospital",
|
|
1917
|
+
"group": "miscellaneous",
|
|
1918
|
+
"content": "\\e6e8"
|
|
1919
|
+
},
|
|
1920
|
+
{
|
|
1921
|
+
"displayName": "New person",
|
|
1922
|
+
"iconName": "new-person",
|
|
1923
|
+
"tags": "person, human, male, female, character, customer, individual, add",
|
|
1924
|
+
"group": "interface",
|
|
1925
|
+
"content": "\\e6e9"
|
|
1926
|
+
},
|
|
1927
|
+
{
|
|
1928
|
+
"displayName": "Exclude row",
|
|
1929
|
+
"iconName": "exclude-row",
|
|
1930
|
+
"tags": "delete, remove, table",
|
|
1931
|
+
"group": "table",
|
|
1932
|
+
"content": "\\e6ea"
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
"displayName": "Pivot table",
|
|
1936
|
+
"iconName": "pivot-table",
|
|
1937
|
+
"tags": "rotate, axis",
|
|
1938
|
+
"group": "table",
|
|
1939
|
+
"content": "\\e6eb"
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
"displayName": "Segmented control",
|
|
1943
|
+
"iconName": "segmented-control",
|
|
1944
|
+
"tags": "button, switch, option",
|
|
1945
|
+
"group": "interface",
|
|
1946
|
+
"content": "\\e6ec"
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
"displayName": "Highlight",
|
|
1950
|
+
"iconName": "highlight",
|
|
1951
|
+
"tags": "select, text",
|
|
1952
|
+
"group": "action",
|
|
1953
|
+
"content": "\\e6ed"
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
"displayName": "Filter: list",
|
|
1957
|
+
"iconName": "filter-list",
|
|
1958
|
+
"tags": "filtering, funnel, tube, pipe",
|
|
1959
|
+
"group": "action",
|
|
1960
|
+
"content": "\\e6ee"
|
|
1961
|
+
},
|
|
1962
|
+
{
|
|
1963
|
+
"displayName": "Cut",
|
|
1964
|
+
"iconName": "cut",
|
|
1965
|
+
"tags": "scissors",
|
|
1966
|
+
"group": "action",
|
|
1967
|
+
"content": "\\e6ef"
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
"displayName": "Annotation",
|
|
1971
|
+
"iconName": "annotation",
|
|
1972
|
+
"tags": "note, comment, edit,",
|
|
1973
|
+
"group": "editor",
|
|
1974
|
+
"content": "\\e6f0"
|
|
1975
|
+
},
|
|
1976
|
+
{
|
|
1977
|
+
"displayName": "Pivot",
|
|
1978
|
+
"iconName": "pivot",
|
|
1979
|
+
"tags": "rotate, axis",
|
|
1980
|
+
"group": "action",
|
|
1981
|
+
"content": "\\e6f1"
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
"displayName": "Ring",
|
|
1985
|
+
"iconName": "ring",
|
|
1986
|
+
"tags": "empty, circle, selection",
|
|
1987
|
+
"group": "miscellaneous",
|
|
1988
|
+
"content": "\\e6f2"
|
|
1989
|
+
},
|
|
1990
|
+
{
|
|
1991
|
+
"displayName": "Heat grid",
|
|
1992
|
+
"iconName": "heat-grid",
|
|
1993
|
+
"tags": "chart",
|
|
1994
|
+
"group": "data",
|
|
1995
|
+
"content": "\\e6f3"
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
"displayName": "Gantt chart",
|
|
1999
|
+
"iconName": "gantt-chart",
|
|
2000
|
+
"tags": "bar chart, schedule, project",
|
|
2001
|
+
"group": "data",
|
|
2002
|
+
"content": "\\e6f4"
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"displayName": "Variable",
|
|
2006
|
+
"iconName": "variable",
|
|
2007
|
+
"tags": "math, calculation",
|
|
2008
|
+
"group": "table",
|
|
2009
|
+
"content": "\\e6f5"
|
|
2010
|
+
},
|
|
2011
|
+
{
|
|
2012
|
+
"displayName": "Manual",
|
|
2013
|
+
"iconName": "manual",
|
|
2014
|
+
"tags": "guide, instruction",
|
|
2015
|
+
"group": "interface",
|
|
2016
|
+
"content": "\\e6f6"
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
"displayName": "Add row: top",
|
|
2020
|
+
"iconName": "add-row-top",
|
|
2021
|
+
"tags": "table, attach, join",
|
|
2022
|
+
"group": "table",
|
|
2023
|
+
"content": "\\e6f7"
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
"displayName": "Add row: bottom",
|
|
2027
|
+
"iconName": "add-row-bottom",
|
|
2028
|
+
"tags": "table, attach, join",
|
|
2029
|
+
"group": "table",
|
|
2030
|
+
"content": "\\e6f8"
|
|
2031
|
+
},
|
|
2032
|
+
{
|
|
2033
|
+
"displayName": "Add column: left",
|
|
2034
|
+
"iconName": "add-column-left",
|
|
2035
|
+
"tags": "table, attach, join",
|
|
2036
|
+
"group": "table",
|
|
2037
|
+
"content": "\\e6f9"
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
"displayName": "Add column: right",
|
|
2041
|
+
"iconName": "add-column-right",
|
|
2042
|
+
"tags": "table, attach, join",
|
|
2043
|
+
"group": "table",
|
|
2044
|
+
"content": "\\e6fa"
|
|
2045
|
+
},
|
|
2046
|
+
{
|
|
2047
|
+
"displayName": "Remove row: top",
|
|
2048
|
+
"iconName": "remove-row-top",
|
|
2049
|
+
"tags": "table, detach, delete",
|
|
2050
|
+
"group": "table",
|
|
2051
|
+
"content": "\\e6fb"
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
"displayName": "Remove row: bottom",
|
|
2055
|
+
"iconName": "remove-row-bottom",
|
|
2056
|
+
"tags": "table, detach, delete",
|
|
2057
|
+
"group": "table",
|
|
2058
|
+
"content": "\\e6fc"
|
|
2059
|
+
},
|
|
2060
|
+
{
|
|
2061
|
+
"displayName": "Remove column: left",
|
|
2062
|
+
"iconName": "remove-column-left",
|
|
2063
|
+
"tags": "table, detach, delete",
|
|
2064
|
+
"group": "table",
|
|
2065
|
+
"content": "\\e6fd"
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
"displayName": "Remove column: right",
|
|
2069
|
+
"iconName": "remove-column-right",
|
|
2070
|
+
"tags": "table, detach, delete",
|
|
2071
|
+
"group": "table",
|
|
2072
|
+
"content": "\\e6fe"
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
"displayName": "Double chevron: left",
|
|
2076
|
+
"iconName": "double-chevron-left",
|
|
2077
|
+
"tags": "arrows, multiple, direction",
|
|
2078
|
+
"group": "interface",
|
|
2079
|
+
"content": "\\e6ff"
|
|
2080
|
+
},
|
|
2081
|
+
{
|
|
2082
|
+
"displayName": "Double chevron: right",
|
|
2083
|
+
"iconName": "double-chevron-right",
|
|
2084
|
+
"tags": "arrows, multiple, direction",
|
|
2085
|
+
"group": "interface",
|
|
2086
|
+
"content": "\\e701"
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
"displayName": "Double chevron: up",
|
|
2090
|
+
"iconName": "double-chevron-up",
|
|
2091
|
+
"tags": "arrows, multiple, direction",
|
|
2092
|
+
"group": "interface",
|
|
2093
|
+
"content": "\\e702"
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
"displayName": "Double chevron: down",
|
|
2097
|
+
"iconName": "double-chevron-down",
|
|
2098
|
+
"tags": "arrows, multiple, direction",
|
|
2099
|
+
"group": "interface",
|
|
2100
|
+
"content": "\\e703"
|
|
2101
|
+
},
|
|
2102
|
+
{
|
|
2103
|
+
"displayName": "Key: control",
|
|
2104
|
+
"iconName": "key-control",
|
|
2105
|
+
"tags": "interface, shortcuts, buttons",
|
|
2106
|
+
"group": "media",
|
|
2107
|
+
"content": "\\e704"
|
|
2108
|
+
},
|
|
2109
|
+
{
|
|
2110
|
+
"displayName": "Key: command",
|
|
2111
|
+
"iconName": "key-command",
|
|
2112
|
+
"tags": "interface, shortcuts, buttons",
|
|
2113
|
+
"group": "media",
|
|
2114
|
+
"content": "\\e705"
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
"displayName": "Key: shift",
|
|
2118
|
+
"iconName": "key-shift",
|
|
2119
|
+
"tags": "interface, shortcuts, buttons",
|
|
2120
|
+
"group": "media",
|
|
2121
|
+
"content": "\\e706"
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
"displayName": "Key: backspace",
|
|
2125
|
+
"iconName": "key-backspace",
|
|
2126
|
+
"tags": "interface, shortcuts, buttons",
|
|
2127
|
+
"group": "media",
|
|
2128
|
+
"content": "\\e707"
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"displayName": "Key: delete",
|
|
2132
|
+
"iconName": "key-delete",
|
|
2133
|
+
"tags": "interface, shortcuts, buttons",
|
|
2134
|
+
"group": "media",
|
|
2135
|
+
"content": "\\e708"
|
|
2136
|
+
},
|
|
2137
|
+
{
|
|
2138
|
+
"displayName": "Key: escape",
|
|
2139
|
+
"iconName": "key-escape",
|
|
2140
|
+
"tags": "interface, shortcuts, buttons",
|
|
2141
|
+
"group": "media",
|
|
2142
|
+
"content": "\\e709"
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
"displayName": "Key: enter",
|
|
2146
|
+
"iconName": "key-enter",
|
|
2147
|
+
"tags": "interface, shortcuts, buttons",
|
|
2148
|
+
"group": "media",
|
|
2149
|
+
"content": "\\e70a"
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
"displayName": "Calculator",
|
|
2153
|
+
"iconName": "calculator",
|
|
2154
|
+
"tags": "math, device, value, numbers, total",
|
|
2155
|
+
"group": "miscellaneous",
|
|
2156
|
+
"content": "\\e70b"
|
|
2157
|
+
},
|
|
2158
|
+
{
|
|
2159
|
+
"displayName": "Horizontal bar chart",
|
|
2160
|
+
"iconName": "horizontal-bar-chart",
|
|
2161
|
+
"tags": "graph, diagram",
|
|
2162
|
+
"group": "data",
|
|
2163
|
+
"content": "\\e70c"
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
"displayName": "Small plus",
|
|
2167
|
+
"iconName": "small-plus",
|
|
2168
|
+
"tags": "sign, add, maximize, zoom in",
|
|
2169
|
+
"group": "action",
|
|
2170
|
+
"content": "\\e70d"
|
|
2171
|
+
},
|
|
2172
|
+
{
|
|
2173
|
+
"displayName": "Small minus",
|
|
2174
|
+
"iconName": "small-minus",
|
|
2175
|
+
"tags": "sign, remove, minimize, zoom out",
|
|
2176
|
+
"group": "action",
|
|
2177
|
+
"content": "\\e70e"
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
"displayName": "Step chart",
|
|
2181
|
+
"iconName": "step-chart",
|
|
2182
|
+
"tags": "graph, diagram",
|
|
2183
|
+
"group": "data",
|
|
2184
|
+
"content": "\\e70f"
|
|
2185
|
+
},
|
|
2186
|
+
{
|
|
2187
|
+
"displayName": "Euro",
|
|
2188
|
+
"iconName": "euro",
|
|
2189
|
+
"tags": "currency, money",
|
|
2190
|
+
"group": "miscellaneous",
|
|
2191
|
+
"content": "\\20ac"
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
"displayName": "Drag handle: vertical",
|
|
2195
|
+
"iconName": "drag-handle-vertical",
|
|
2196
|
+
"tags": "move, pull",
|
|
2197
|
+
"group": "action",
|
|
2198
|
+
"content": "\\e715"
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
"displayName": "Drag handle: horizontal",
|
|
2202
|
+
"iconName": "drag-handle-horizontal",
|
|
2203
|
+
"tags": "move, pull",
|
|
2204
|
+
"group": "action",
|
|
2205
|
+
"content": "\\e716"
|
|
2206
|
+
},
|
|
2207
|
+
{
|
|
2208
|
+
"displayName": "Mobile phone",
|
|
2209
|
+
"iconName": "mobile-phone",
|
|
2210
|
+
"tags": "cellular, device, call",
|
|
2211
|
+
"group": "media",
|
|
2212
|
+
"content": "\\e717"
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
"displayName": "Sim card",
|
|
2216
|
+
"iconName": "sim-card",
|
|
2217
|
+
"tags": "phone, cellular",
|
|
2218
|
+
"group": "media",
|
|
2219
|
+
"content": "\\e718"
|
|
2220
|
+
},
|
|
2221
|
+
{
|
|
2222
|
+
"displayName": "Trending: up",
|
|
2223
|
+
"iconName": "trending-up",
|
|
2224
|
+
"tags": "growth, incline, progress",
|
|
2225
|
+
"group": "data",
|
|
2226
|
+
"content": "\\e719"
|
|
2227
|
+
},
|
|
2228
|
+
{
|
|
2229
|
+
"displayName": "Trending: down",
|
|
2230
|
+
"iconName": "trending-down",
|
|
2231
|
+
"tags": "decrease, decline, loss",
|
|
2232
|
+
"group": "data",
|
|
2233
|
+
"content": "\\e71a"
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
"displayName": "Curved range chart",
|
|
2237
|
+
"iconName": "curved-range-chart",
|
|
2238
|
+
"tags": "graph, diagram",
|
|
2239
|
+
"group": "data",
|
|
2240
|
+
"content": "\\e71b"
|
|
2241
|
+
},
|
|
2242
|
+
{
|
|
2243
|
+
"displayName": "Vertical bar chart: descending",
|
|
2244
|
+
"iconName": "vertical-bar-chart-desc",
|
|
2245
|
+
"tags": "graph, bar, histogram",
|
|
2246
|
+
"group": "data",
|
|
2247
|
+
"content": "\\e71c"
|
|
2248
|
+
},
|
|
2249
|
+
{
|
|
2250
|
+
"displayName": "Horizontal bar chart: descending",
|
|
2251
|
+
"iconName": "horizontal-bar-chart-desc",
|
|
2252
|
+
"tags": "graph, bar, histogram",
|
|
2253
|
+
"group": "data",
|
|
2254
|
+
"content": "\\e71d"
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
"displayName": "Document: open",
|
|
2258
|
+
"iconName": "document-open",
|
|
2259
|
+
"tags": "paper, access",
|
|
2260
|
+
"group": "file",
|
|
2261
|
+
"content": "\\e71e"
|
|
2262
|
+
},
|
|
2263
|
+
{
|
|
2264
|
+
"displayName": "Document: share",
|
|
2265
|
+
"iconName": "document-share",
|
|
2266
|
+
"tags": "paper, send",
|
|
2267
|
+
"group": "file",
|
|
2268
|
+
"content": "\\e71f"
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
"displayName": "Distribution: horizontal",
|
|
2272
|
+
"iconName": "horizontal-distribution",
|
|
2273
|
+
"tags": "alignment, layout, position",
|
|
2274
|
+
"group": "editor",
|
|
2275
|
+
"content": "\\e720"
|
|
2276
|
+
},
|
|
2277
|
+
{
|
|
2278
|
+
"displayName": "Distribution: vertical",
|
|
2279
|
+
"iconName": "vertical-distribution",
|
|
2280
|
+
"tags": "alignment, layout, position",
|
|
2281
|
+
"group": "editor",
|
|
2282
|
+
"content": "\\e721"
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
"displayName": "Alignment: left",
|
|
2286
|
+
"iconName": "alignment-left",
|
|
2287
|
+
"tags": "layout, position",
|
|
2288
|
+
"group": "editor",
|
|
2289
|
+
"content": "\\e722"
|
|
2290
|
+
},
|
|
2291
|
+
{
|
|
2292
|
+
"displayName": "Alignment: vertical center",
|
|
2293
|
+
"iconName": "alignment-vertical-center",
|
|
2294
|
+
"tags": "layout, position",
|
|
2295
|
+
"group": "editor",
|
|
2296
|
+
"content": "\\e723"
|
|
2297
|
+
},
|
|
2298
|
+
{
|
|
2299
|
+
"displayName": "Alignment: right",
|
|
2300
|
+
"iconName": "alignment-right",
|
|
2301
|
+
"tags": "layout, position",
|
|
2302
|
+
"group": "editor",
|
|
2303
|
+
"content": "\\e724"
|
|
2304
|
+
},
|
|
2305
|
+
{
|
|
2306
|
+
"displayName": "Alignment: top",
|
|
2307
|
+
"iconName": "alignment-top",
|
|
2308
|
+
"tags": "layout, position",
|
|
2309
|
+
"group": "editor",
|
|
2310
|
+
"content": "\\e725"
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
"displayName": "Alignment: horizontal center",
|
|
2314
|
+
"iconName": "alignment-horizontal-center",
|
|
2315
|
+
"tags": "layout, position",
|
|
2316
|
+
"group": "editor",
|
|
2317
|
+
"content": "\\e726"
|
|
2318
|
+
},
|
|
2319
|
+
{
|
|
2320
|
+
"displayName": "Alignment: bottom",
|
|
2321
|
+
"iconName": "alignment-bottom",
|
|
2322
|
+
"tags": "layout, position",
|
|
2323
|
+
"group": "editor",
|
|
2324
|
+
"content": "\\e727"
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
"displayName": "Git: pull",
|
|
2328
|
+
"iconName": "git-pull",
|
|
2329
|
+
"tags": "github, repository, code, command",
|
|
2330
|
+
"group": "action",
|
|
2331
|
+
"content": "\\e728"
|
|
2332
|
+
},
|
|
2333
|
+
{
|
|
2334
|
+
"displayName": "Git: merge",
|
|
2335
|
+
"iconName": "git-merge",
|
|
2336
|
+
"tags": "github, repository, code, command",
|
|
2337
|
+
"group": "action",
|
|
2338
|
+
"content": "\\e729"
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
"displayName": "Git: branch",
|
|
2342
|
+
"iconName": "git-branch",
|
|
2343
|
+
"tags": "github, repository, code, command",
|
|
2344
|
+
"group": "action",
|
|
2345
|
+
"content": "\\e72a"
|
|
2346
|
+
},
|
|
2347
|
+
{
|
|
2348
|
+
"displayName": "Git: commit",
|
|
2349
|
+
"iconName": "git-commit",
|
|
2350
|
+
"tags": "github, repository, code, command",
|
|
2351
|
+
"group": "action",
|
|
2352
|
+
"content": "\\e72b"
|
|
2353
|
+
},
|
|
2354
|
+
{
|
|
2355
|
+
"displayName": "Git: push",
|
|
2356
|
+
"iconName": "git-push",
|
|
2357
|
+
"tags": "github, repository, code, command",
|
|
2358
|
+
"group": "action",
|
|
2359
|
+
"content": "\\e72c"
|
|
2360
|
+
},
|
|
2361
|
+
{
|
|
2362
|
+
"displayName": "Build",
|
|
2363
|
+
"iconName": "build",
|
|
2364
|
+
"tags": "hammer, tool",
|
|
2365
|
+
"group": "action",
|
|
2366
|
+
"content": "\\e72d"
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
"displayName": "Symbol: circle",
|
|
2370
|
+
"iconName": "symbol-circle",
|
|
2371
|
+
"tags": "shape, figure",
|
|
2372
|
+
"group": "interface",
|
|
2373
|
+
"content": "\\e72e"
|
|
2374
|
+
},
|
|
2375
|
+
{
|
|
2376
|
+
"displayName": "Symbol: square",
|
|
2377
|
+
"iconName": "symbol-square",
|
|
2378
|
+
"tags": "shape, figure",
|
|
2379
|
+
"group": "interface",
|
|
2380
|
+
"content": "\\e72f"
|
|
2381
|
+
},
|
|
2382
|
+
{
|
|
2383
|
+
"displayName": "Symbol: diamond",
|
|
2384
|
+
"iconName": "symbol-diamond",
|
|
2385
|
+
"tags": "shape, figure",
|
|
2386
|
+
"group": "interface",
|
|
2387
|
+
"content": "\\e730"
|
|
2388
|
+
},
|
|
2389
|
+
{
|
|
2390
|
+
"displayName": "Symbol: cross",
|
|
2391
|
+
"iconName": "symbol-cross",
|
|
2392
|
+
"tags": "shape, figure",
|
|
2393
|
+
"group": "interface",
|
|
2394
|
+
"content": "\\e731"
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
"displayName": "Symbol: triangle up",
|
|
2398
|
+
"iconName": "symbol-triangle-up",
|
|
2399
|
+
"tags": "shape, figure",
|
|
2400
|
+
"group": "interface",
|
|
2401
|
+
"content": "\\e732"
|
|
2402
|
+
},
|
|
2403
|
+
{
|
|
2404
|
+
"displayName": "Symbol: triangle down",
|
|
2405
|
+
"iconName": "symbol-triangle-down",
|
|
2406
|
+
"tags": "shape, figure",
|
|
2407
|
+
"group": "interface",
|
|
2408
|
+
"content": "\\e733"
|
|
2409
|
+
},
|
|
2410
|
+
{
|
|
2411
|
+
"displayName": "Wrench",
|
|
2412
|
+
"iconName": "wrench",
|
|
2413
|
+
"tags": "tool, repair",
|
|
2414
|
+
"group": "miscellaneous",
|
|
2415
|
+
"content": "\\e734"
|
|
2416
|
+
},
|
|
2417
|
+
{
|
|
2418
|
+
"displayName": "Application",
|
|
2419
|
+
"iconName": "application",
|
|
2420
|
+
"tags": "application, browser, windows, platform",
|
|
2421
|
+
"group": "interface",
|
|
2422
|
+
"content": "\\e735"
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
"displayName": "Send to graph",
|
|
2426
|
+
"iconName": "send-to-graph",
|
|
2427
|
+
"tags": "transfer, move",
|
|
2428
|
+
"group": "action",
|
|
2429
|
+
"content": "\\e736"
|
|
2430
|
+
},
|
|
2431
|
+
{
|
|
2432
|
+
"displayName": "Send to map",
|
|
2433
|
+
"iconName": "send-to-map",
|
|
2434
|
+
"tags": "transfer, move",
|
|
2435
|
+
"group": "action",
|
|
2436
|
+
"content": "\\e737"
|
|
2437
|
+
},
|
|
2438
|
+
{
|
|
2439
|
+
"displayName": "Join table",
|
|
2440
|
+
"iconName": "join-table",
|
|
2441
|
+
"tags": "combine, attach, connect, link, unite",
|
|
2442
|
+
"group": "table",
|
|
2443
|
+
"content": "\\e738"
|
|
2444
|
+
},
|
|
2445
|
+
{
|
|
2446
|
+
"displayName": "Derive column",
|
|
2447
|
+
"iconName": "derive-column",
|
|
2448
|
+
"tags": "table, obtain, get, take, develop",
|
|
2449
|
+
"group": "action",
|
|
2450
|
+
"content": "\\e739"
|
|
2451
|
+
},
|
|
2452
|
+
{
|
|
2453
|
+
"displayName": "Rotate image: left",
|
|
2454
|
+
"iconName": "image-rotate-left",
|
|
2455
|
+
"tags": "picture, turn, alternate",
|
|
2456
|
+
"group": "media",
|
|
2457
|
+
"content": "\\e73a"
|
|
2458
|
+
},
|
|
2459
|
+
{
|
|
2460
|
+
"displayName": "Rotate image: right",
|
|
2461
|
+
"iconName": "image-rotate-right",
|
|
2462
|
+
"tags": "picture, turn, alternate",
|
|
2463
|
+
"group": "media",
|
|
2464
|
+
"content": "\\e73b"
|
|
2465
|
+
},
|
|
2466
|
+
{
|
|
2467
|
+
"displayName": "Known vehicle",
|
|
2468
|
+
"iconName": "known-vehicle",
|
|
2469
|
+
"tags": "car, automobile, vehicle, van, drive, ride, distance, navigation, directions",
|
|
2470
|
+
"group": "interface",
|
|
2471
|
+
"content": "\\e73c"
|
|
2472
|
+
},
|
|
2473
|
+
{
|
|
2474
|
+
"displayName": "Unknown vehicle",
|
|
2475
|
+
"iconName": "unknown-vehicle",
|
|
2476
|
+
"tags": "car, automobile, vehicle, van, drive, ride, distance, navigation, directions",
|
|
2477
|
+
"group": "interface",
|
|
2478
|
+
"content": "\\e73d"
|
|
2479
|
+
},
|
|
2480
|
+
{
|
|
2481
|
+
"displayName": "Scatter plot",
|
|
2482
|
+
"iconName": "scatter-plot",
|
|
2483
|
+
"tags": "graph, diagram",
|
|
2484
|
+
"group": "data",
|
|
2485
|
+
"content": "\\e73e"
|
|
2486
|
+
},
|
|
2487
|
+
{
|
|
2488
|
+
"displayName": "Oil field",
|
|
2489
|
+
"iconName": "oil-field",
|
|
2490
|
+
"tags": "fuel, petroleum, gas, well, drilling, pump",
|
|
2491
|
+
"group": "interface",
|
|
2492
|
+
"content": "\\e73f"
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
"displayName": "Rig",
|
|
2496
|
+
"iconName": "rig",
|
|
2497
|
+
"tags": "fuel, petroleum, gas, well, drilling",
|
|
2498
|
+
"group": "interface",
|
|
2499
|
+
"content": "\\e740"
|
|
2500
|
+
},
|
|
2501
|
+
{
|
|
2502
|
+
"displayName": "New map",
|
|
2503
|
+
"iconName": "map-create",
|
|
2504
|
+
"tags": "map, location, position, geography, world",
|
|
2505
|
+
"group": "interface",
|
|
2506
|
+
"content": "\\e741"
|
|
2507
|
+
},
|
|
2508
|
+
{
|
|
2509
|
+
"displayName": "Key: option",
|
|
2510
|
+
"iconName": "key-option",
|
|
2511
|
+
"tags": "interface, shortcuts, buttons",
|
|
2512
|
+
"group": "media",
|
|
2513
|
+
"content": "\\e742"
|
|
2514
|
+
},
|
|
2515
|
+
{
|
|
2516
|
+
"displayName": "List: detail view",
|
|
2517
|
+
"iconName": "list-detail-view",
|
|
2518
|
+
"tags": "agenda, four lines, table",
|
|
2519
|
+
"group": "table",
|
|
2520
|
+
"content": "\\e743"
|
|
2521
|
+
},
|
|
2522
|
+
{
|
|
2523
|
+
"displayName": "Swap: vertical",
|
|
2524
|
+
"iconName": "swap-vertical",
|
|
2525
|
+
"tags": "direction, position, opposite, inverse",
|
|
2526
|
+
"group": "interface",
|
|
2527
|
+
"content": "\\e744"
|
|
2528
|
+
},
|
|
2529
|
+
{
|
|
2530
|
+
"displayName": "Swap: horizontal",
|
|
2531
|
+
"iconName": "swap-horizontal",
|
|
2532
|
+
"tags": "direction, position, opposite, inverse",
|
|
2533
|
+
"group": "interface",
|
|
2534
|
+
"content": "\\e745"
|
|
2535
|
+
},
|
|
2536
|
+
{
|
|
2537
|
+
"displayName": "Numbered list",
|
|
2538
|
+
"iconName": "numbered-list",
|
|
2539
|
+
"tags": "order, list, array, arrange",
|
|
2540
|
+
"group": "action",
|
|
2541
|
+
"content": "\\e746"
|
|
2542
|
+
},
|
|
2543
|
+
{
|
|
2544
|
+
"displayName": "New grid item",
|
|
2545
|
+
"iconName": "new-grid-item",
|
|
2546
|
+
"tags": "layout, arrangement, add",
|
|
2547
|
+
"group": "editor",
|
|
2548
|
+
"content": "\\e747"
|
|
2549
|
+
},
|
|
2550
|
+
{
|
|
2551
|
+
"displayName": "Git: repo",
|
|
2552
|
+
"iconName": "git-repo",
|
|
2553
|
+
"tags": "github, repository, code, command",
|
|
2554
|
+
"group": "action",
|
|
2555
|
+
"content": "\\e748"
|
|
2556
|
+
},
|
|
2557
|
+
{
|
|
2558
|
+
"displayName": "Git: new branch",
|
|
2559
|
+
"iconName": "git-new-branch",
|
|
2560
|
+
"tags": "github, repository, code, command",
|
|
2561
|
+
"group": "action",
|
|
2562
|
+
"content": "\\e749"
|
|
2563
|
+
},
|
|
2564
|
+
{
|
|
2565
|
+
"displayName": "Manually entered data",
|
|
2566
|
+
"iconName": "manually-entered-data",
|
|
2567
|
+
"tags": "input, human",
|
|
2568
|
+
"group": "editor",
|
|
2569
|
+
"content": "\\e74a"
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
"displayName": "Airplane",
|
|
2573
|
+
"iconName": "airplane",
|
|
2574
|
+
"tags": "flight, jet, travel, trip, transport, take-off",
|
|
2575
|
+
"group": "interface",
|
|
2576
|
+
"content": "\\e74b"
|
|
2577
|
+
},
|
|
2578
|
+
{
|
|
2579
|
+
"displayName": "Merge columns",
|
|
2580
|
+
"iconName": "merge-columns",
|
|
2581
|
+
"tags": "layout, change, two, combine, unite",
|
|
2582
|
+
"group": "table",
|
|
2583
|
+
"content": "\\e74f"
|
|
2584
|
+
},
|
|
2585
|
+
{
|
|
2586
|
+
"displayName": "Split columns",
|
|
2587
|
+
"iconName": "split-columns",
|
|
2588
|
+
"tags": "layout, change, two, break, divide",
|
|
2589
|
+
"group": "table",
|
|
2590
|
+
"content": "\\e750"
|
|
2591
|
+
},
|
|
2592
|
+
{
|
|
2593
|
+
"displayName": "Dashboard",
|
|
2594
|
+
"iconName": "dashboard",
|
|
2595
|
+
"tags": "panel, control, gauge, instrument, meter",
|
|
2596
|
+
"group": "interface",
|
|
2597
|
+
"content": "\\e751"
|
|
2598
|
+
},
|
|
2599
|
+
{
|
|
2600
|
+
"displayName": "Publish function",
|
|
2601
|
+
"iconName": "publish-function",
|
|
2602
|
+
"tags": "math, calculation, share",
|
|
2603
|
+
"group": "table",
|
|
2604
|
+
"content": "\\e752"
|
|
2605
|
+
},
|
|
2606
|
+
{
|
|
2607
|
+
"displayName": "Path",
|
|
2608
|
+
"iconName": "path",
|
|
2609
|
+
"tags": "hierarchy, trail, steps",
|
|
2610
|
+
"group": "interface",
|
|
2611
|
+
"content": "\\e753"
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
"displayName": "Moon",
|
|
2615
|
+
"iconName": "moon",
|
|
2616
|
+
"tags": "night, sky, dark",
|
|
2617
|
+
"group": "miscellaneous",
|
|
2618
|
+
"content": "\\e754"
|
|
2619
|
+
},
|
|
2620
|
+
{
|
|
2621
|
+
"displayName": "Remove column",
|
|
2622
|
+
"iconName": "remove-column",
|
|
2623
|
+
"tags": "table, detach, delete",
|
|
2624
|
+
"group": "table",
|
|
2625
|
+
"content": "\\e755"
|
|
2626
|
+
},
|
|
2627
|
+
{
|
|
2628
|
+
"displayName": "Numerical",
|
|
2629
|
+
"iconName": "numerical",
|
|
2630
|
+
"tags": "numbers, order, sort, arrange, array",
|
|
2631
|
+
"group": "action",
|
|
2632
|
+
"content": "\\e756"
|
|
2633
|
+
},
|
|
2634
|
+
{
|
|
2635
|
+
"displayName": "Key: tab",
|
|
2636
|
+
"iconName": "key-tab",
|
|
2637
|
+
"tags": "interface, shortcuts, buttons",
|
|
2638
|
+
"group": "media",
|
|
2639
|
+
"content": "\\e757"
|
|
2640
|
+
},
|
|
2641
|
+
{
|
|
2642
|
+
"displayName": "Regression chart",
|
|
2643
|
+
"iconName": "regression-chart",
|
|
2644
|
+
"tags": "graph, line, chart",
|
|
2645
|
+
"group": "data",
|
|
2646
|
+
"content": "\\e758"
|
|
2647
|
+
},
|
|
2648
|
+
{
|
|
2649
|
+
"displayName": "Translate",
|
|
2650
|
+
"iconName": "translate",
|
|
2651
|
+
"tags": "language, convert",
|
|
2652
|
+
"group": "action",
|
|
2653
|
+
"content": "\\e759"
|
|
2654
|
+
},
|
|
2655
|
+
{
|
|
2656
|
+
"displayName": "Eye: on",
|
|
2657
|
+
"iconName": "eye-on",
|
|
2658
|
+
"tags": "visibility, show",
|
|
2659
|
+
"group": "interface",
|
|
2660
|
+
"content": "\\e75a"
|
|
2661
|
+
},
|
|
2662
|
+
{
|
|
2663
|
+
"displayName": "Vertical bar chart: ascending",
|
|
2664
|
+
"iconName": "vertical-bar-chart-asc",
|
|
2665
|
+
"tags": "graph, bar, histogram",
|
|
2666
|
+
"group": "data",
|
|
2667
|
+
"content": "\\e75b"
|
|
2668
|
+
},
|
|
2669
|
+
{
|
|
2670
|
+
"displayName": "Horizontal bar chart: ascending",
|
|
2671
|
+
"iconName": "horizontal-bar-chart-asc",
|
|
2672
|
+
"tags": "graph, bar, histogram",
|
|
2673
|
+
"group": "data",
|
|
2674
|
+
"content": "\\e75c"
|
|
2675
|
+
},
|
|
2676
|
+
{
|
|
2677
|
+
"displayName": "Grouped bar chart",
|
|
2678
|
+
"iconName": "grouped-bar-chart",
|
|
2679
|
+
"tags": "graph, bar, chart",
|
|
2680
|
+
"group": "data",
|
|
2681
|
+
"content": "\\e75d"
|
|
2682
|
+
},
|
|
2683
|
+
{
|
|
2684
|
+
"displayName": "Full stacked chart",
|
|
2685
|
+
"iconName": "full-stacked-chart",
|
|
2686
|
+
"tags": "graph, bar, chart",
|
|
2687
|
+
"group": "data",
|
|
2688
|
+
"content": "\\e75e"
|
|
2689
|
+
},
|
|
2690
|
+
{
|
|
2691
|
+
"displayName": "Endorsed",
|
|
2692
|
+
"iconName": "endorsed",
|
|
2693
|
+
"tags": "tick, mark, sign, ok, approved, success",
|
|
2694
|
+
"group": "action",
|
|
2695
|
+
"content": "\\e75f"
|
|
2696
|
+
},
|
|
2697
|
+
{
|
|
2698
|
+
"displayName": "Follower",
|
|
2699
|
+
"iconName": "follower",
|
|
2700
|
+
"tags": "person, human, male, female, character, customer, individual, social",
|
|
2701
|
+
"group": "interface",
|
|
2702
|
+
"content": "\\e760"
|
|
2703
|
+
},
|
|
2704
|
+
{
|
|
2705
|
+
"displayName": "Following",
|
|
2706
|
+
"iconName": "following",
|
|
2707
|
+
"tags": "person, human, male, female, character, customer, individual, social",
|
|
2708
|
+
"group": "interface",
|
|
2709
|
+
"content": "\\e761"
|
|
2710
|
+
},
|
|
2711
|
+
{
|
|
2712
|
+
"displayName": "Menu",
|
|
2713
|
+
"iconName": "menu",
|
|
2714
|
+
"tags": "navigation, lines, list",
|
|
2715
|
+
"group": "interface",
|
|
2716
|
+
"content": "\\e762"
|
|
2717
|
+
},
|
|
2718
|
+
{
|
|
2719
|
+
"displayName": "Collapse all",
|
|
2720
|
+
"iconName": "collapse-all",
|
|
2721
|
+
"tags": "arrows, chevron, reduce",
|
|
2722
|
+
"group": "interface",
|
|
2723
|
+
"content": "\\e763"
|
|
2724
|
+
},
|
|
2725
|
+
{
|
|
2726
|
+
"displayName": "Expand all",
|
|
2727
|
+
"iconName": "expand-all",
|
|
2728
|
+
"tags": "arrows, chevron, enlarge",
|
|
2729
|
+
"group": "interface",
|
|
2730
|
+
"content": "\\e764"
|
|
2731
|
+
},
|
|
2732
|
+
{
|
|
2733
|
+
"displayName": "Intersection",
|
|
2734
|
+
"iconName": "intersection",
|
|
2735
|
+
"tags": "circles, combine, cross",
|
|
2736
|
+
"group": "action",
|
|
2737
|
+
"content": "\\e765"
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
"displayName": "Blocked person",
|
|
2741
|
+
"iconName": "blocked-person",
|
|
2742
|
+
"tags": "person, human, male, female, character, customer, individual, social, banned, prohibited",
|
|
2743
|
+
"group": "interface",
|
|
2744
|
+
"content": "\\e768"
|
|
2745
|
+
},
|
|
2746
|
+
{
|
|
2747
|
+
"displayName": "Slash",
|
|
2748
|
+
"iconName": "slash",
|
|
2749
|
+
"tags": "divide, separate",
|
|
2750
|
+
"group": "action",
|
|
2751
|
+
"content": "\\e769"
|
|
2752
|
+
},
|
|
2753
|
+
{
|
|
2754
|
+
"displayName": "Percentage",
|
|
2755
|
+
"iconName": "percentage",
|
|
2756
|
+
"tags": "modulo, modulus",
|
|
2757
|
+
"group": "action",
|
|
2758
|
+
"content": "\\e76a"
|
|
2759
|
+
},
|
|
2760
|
+
{
|
|
2761
|
+
"displayName": "Satellite",
|
|
2762
|
+
"iconName": "satellite",
|
|
2763
|
+
"tags": "communication, space",
|
|
2764
|
+
"group": "miscellaneous",
|
|
2765
|
+
"content": "\\e76b"
|
|
2766
|
+
},
|
|
2767
|
+
{
|
|
2768
|
+
"displayName": "Paragraph",
|
|
2769
|
+
"iconName": "paragraph",
|
|
2770
|
+
"tags": "text, chapter, division, part",
|
|
2771
|
+
"group": "editor",
|
|
2772
|
+
"content": "\\e76c"
|
|
2773
|
+
},
|
|
2774
|
+
{
|
|
2775
|
+
"displayName": "Bank account",
|
|
2776
|
+
"iconName": "bank-account",
|
|
2777
|
+
"tags": "money, finance, funds",
|
|
2778
|
+
"group": "miscellaneous",
|
|
2779
|
+
"content": "\\e76f"
|
|
2780
|
+
},
|
|
2781
|
+
{
|
|
2782
|
+
"displayName": "Cell tower",
|
|
2783
|
+
"iconName": "cell-tower",
|
|
2784
|
+
"tags": "signal, communication, radio, mast",
|
|
2785
|
+
"group": "miscellaneous",
|
|
2786
|
+
"content": "\\e770"
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
"displayName": "ID number",
|
|
2790
|
+
"iconName": "id-number",
|
|
2791
|
+
"tags": "identification, person, document",
|
|
2792
|
+
"group": "miscellaneous",
|
|
2793
|
+
"content": "\\e771"
|
|
2794
|
+
},
|
|
2795
|
+
{
|
|
2796
|
+
"displayName": "IP address",
|
|
2797
|
+
"iconName": "ip-address",
|
|
2798
|
+
"tags": "internet, protocol, number, id, network",
|
|
2799
|
+
"group": "miscellaneous",
|
|
2800
|
+
"content": "\\e772"
|
|
2801
|
+
},
|
|
2802
|
+
{
|
|
2803
|
+
"displayName": "Eraser",
|
|
2804
|
+
"iconName": "eraser",
|
|
2805
|
+
"tags": "delete, remove",
|
|
2806
|
+
"group": "editor",
|
|
2807
|
+
"content": "\\e773"
|
|
2808
|
+
},
|
|
2809
|
+
{
|
|
2810
|
+
"displayName": "Issue",
|
|
2811
|
+
"iconName": "issue",
|
|
2812
|
+
"tags": "circle, notification, failure, circle, exclamation mark, sign, problem",
|
|
2813
|
+
"group": "interface",
|
|
2814
|
+
"content": "\\e774"
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
"displayName": "Issue: new",
|
|
2818
|
+
"iconName": "issue-new",
|
|
2819
|
+
"tags": "circle, notification, failure, circle, exclamation mark, sign, problem",
|
|
2820
|
+
"group": "interface",
|
|
2821
|
+
"content": "\\e775"
|
|
2822
|
+
},
|
|
2823
|
+
{
|
|
2824
|
+
"displayName": "Issue: closed",
|
|
2825
|
+
"iconName": "issue-closed",
|
|
2826
|
+
"tags": "circle, notification, failure, circle, exclamation mark, sign, problem",
|
|
2827
|
+
"group": "interface",
|
|
2828
|
+
"content": "\\e776"
|
|
2829
|
+
},
|
|
2830
|
+
{
|
|
2831
|
+
"displayName": "Panel: stats",
|
|
2832
|
+
"iconName": "panel-stats",
|
|
2833
|
+
"tags": "sidebar, layout, list",
|
|
2834
|
+
"group": "table",
|
|
2835
|
+
"content": "\\e777"
|
|
2836
|
+
},
|
|
2837
|
+
{
|
|
2838
|
+
"displayName": "Panel: table",
|
|
2839
|
+
"iconName": "panel-table",
|
|
2840
|
+
"tags": "sidebar, layout, spreadsheet",
|
|
2841
|
+
"group": "table",
|
|
2842
|
+
"content": "\\e778"
|
|
2843
|
+
},
|
|
2844
|
+
{
|
|
2845
|
+
"displayName": "Tick circle",
|
|
2846
|
+
"iconName": "tick-circle",
|
|
2847
|
+
"tags": "mark, sign, ok, approved, success",
|
|
2848
|
+
"group": "action",
|
|
2849
|
+
"content": "\\e779"
|
|
2850
|
+
},
|
|
2851
|
+
{
|
|
2852
|
+
"displayName": "Prescription",
|
|
2853
|
+
"iconName": "prescription",
|
|
2854
|
+
"tags": "instruction, direction, medicine, drug, medication, mixture",
|
|
2855
|
+
"group": "miscellaneous",
|
|
2856
|
+
"content": "\\e78a"
|
|
2857
|
+
},
|
|
2858
|
+
{
|
|
2859
|
+
"displayName": "Prescription: new",
|
|
2860
|
+
"iconName": "new-prescription",
|
|
2861
|
+
"tags": "instruction, direction, medicine, drug, medication, mixture",
|
|
2862
|
+
"group": "miscellaneous",
|
|
2863
|
+
"content": "\\e78b"
|
|
2864
|
+
},
|
|
2865
|
+
{
|
|
2866
|
+
"displayName": "Filter: keep",
|
|
2867
|
+
"iconName": "filter-keep",
|
|
2868
|
+
"tags": "filtering, funnel, tube, pipe, retain, stay",
|
|
2869
|
+
"group": "action",
|
|
2870
|
+
"content": "\\e78c"
|
|
2871
|
+
},
|
|
2872
|
+
{
|
|
2873
|
+
"displayName": "Filter: remove",
|
|
2874
|
+
"iconName": "filter-remove",
|
|
2875
|
+
"tags": "filtering, funnel, tube, pipe, delete, detach, discard, dismiss",
|
|
2876
|
+
"group": "action",
|
|
2877
|
+
"content": "\\e78d"
|
|
2878
|
+
},
|
|
2879
|
+
{
|
|
2880
|
+
"displayName": "Key",
|
|
2881
|
+
"iconName": "key",
|
|
2882
|
+
"tags": "lock, unlock, open, security, password, access",
|
|
2883
|
+
"group": "interface",
|
|
2884
|
+
"content": "\\e78e"
|
|
2885
|
+
},
|
|
2886
|
+
{
|
|
2887
|
+
"displayName": "Feed: subscribed",
|
|
2888
|
+
"iconName": "feed-subscribed",
|
|
2889
|
+
"tags": "rss, feed, tick, check",
|
|
2890
|
+
"group": "interface",
|
|
2891
|
+
"content": "\\e78f"
|
|
2892
|
+
},
|
|
2893
|
+
{
|
|
2894
|
+
"displayName": "Widget: button",
|
|
2895
|
+
"iconName": "widget-button",
|
|
2896
|
+
"tags": "element, click, press",
|
|
2897
|
+
"group": "interface",
|
|
2898
|
+
"content": "\\e790"
|
|
2899
|
+
},
|
|
2900
|
+
{
|
|
2901
|
+
"displayName": "Widget: header",
|
|
2902
|
+
"iconName": "widget-header",
|
|
2903
|
+
"tags": "element, layout, top",
|
|
2904
|
+
"group": "interface",
|
|
2905
|
+
"content": "\\e791"
|
|
2906
|
+
},
|
|
2907
|
+
{
|
|
2908
|
+
"displayName": "Widget: footer",
|
|
2909
|
+
"iconName": "widget-footer",
|
|
2910
|
+
"tags": "element, layout, bottom",
|
|
2911
|
+
"group": "interface",
|
|
2912
|
+
"content": "\\e792"
|
|
2913
|
+
},
|
|
2914
|
+
{
|
|
2915
|
+
"displayName": "Header: one",
|
|
2916
|
+
"iconName": "header-one",
|
|
2917
|
+
"tags": "paragraph styling, formatting",
|
|
2918
|
+
"group": "editor",
|
|
2919
|
+
"content": "\\e793"
|
|
2920
|
+
},
|
|
2921
|
+
{
|
|
2922
|
+
"displayName": "Header: two",
|
|
2923
|
+
"iconName": "header-two",
|
|
2924
|
+
"tags": "paragraph styling, formatting",
|
|
2925
|
+
"group": "editor",
|
|
2926
|
+
"content": "\\e794"
|
|
2927
|
+
},
|
|
2928
|
+
{
|
|
2929
|
+
"displayName": "Form",
|
|
2930
|
+
"iconName": "form",
|
|
2931
|
+
"tags": "response, fill",
|
|
2932
|
+
"group": "data",
|
|
2933
|
+
"content": "\\e795"
|
|
2934
|
+
},
|
|
2935
|
+
{
|
|
2936
|
+
"displayName": "Series: add",
|
|
2937
|
+
"iconName": "series-add",
|
|
2938
|
+
"tags": "timeseries, plot, line, data, chart, new, create",
|
|
2939
|
+
"group": "data",
|
|
2940
|
+
"content": "\\e796"
|
|
2941
|
+
},
|
|
2942
|
+
{
|
|
2943
|
+
"displayName": "Series: search",
|
|
2944
|
+
"iconName": "series-search",
|
|
2945
|
+
"tags": "timeseries, plot, line, data, chart, find, filter",
|
|
2946
|
+
"group": "data",
|
|
2947
|
+
"content": "\\e797"
|
|
2948
|
+
},
|
|
2949
|
+
{
|
|
2950
|
+
"displayName": "Series: filtered",
|
|
2951
|
+
"iconName": "series-filtered",
|
|
2952
|
+
"tags": "timeseries, plot, line, data, chart, reduce, reduced, search",
|
|
2953
|
+
"group": "data",
|
|
2954
|
+
"content": "\\e798"
|
|
2955
|
+
},
|
|
2956
|
+
{
|
|
2957
|
+
"displayName": "Series: derived",
|
|
2958
|
+
"iconName": "series-derived",
|
|
2959
|
+
"tags": "timeseries, plot, line, data, chart, transform, transformed, compute, computed, modify, modified, alter, altered, adjust, adjusted",
|
|
2960
|
+
"group": "data",
|
|
2961
|
+
"content": "\\e799"
|
|
2962
|
+
},
|
|
2963
|
+
{
|
|
2964
|
+
"displayName": "Series: configuration",
|
|
2965
|
+
"iconName": "series-configuration",
|
|
2966
|
+
"tags": " timeseries, plot, line, data, chart, edit, modify, customize, adjust, alter, transform",
|
|
2967
|
+
"group": "data",
|
|
2968
|
+
"content": "\\e79a"
|
|
2969
|
+
},
|
|
2970
|
+
{
|
|
2971
|
+
"displayName": "Console",
|
|
2972
|
+
"iconName": "console",
|
|
2973
|
+
"tags": "terminal, coding",
|
|
2974
|
+
"group": "interface",
|
|
2975
|
+
"content": "\\e79b"
|
|
2976
|
+
},
|
|
2977
|
+
{
|
|
2978
|
+
"displayName": "Compass",
|
|
2979
|
+
"iconName": "compass",
|
|
2980
|
+
"tags": "map, direction",
|
|
2981
|
+
"group": "interface",
|
|
2982
|
+
"content": "\\e79c"
|
|
2983
|
+
},
|
|
2984
|
+
{
|
|
2985
|
+
"displayName": "Walk",
|
|
2986
|
+
"iconName": "walk",
|
|
2987
|
+
"tags": "transportation, run, move",
|
|
2988
|
+
"group": "interface",
|
|
2989
|
+
"content": "\\e79d"
|
|
2990
|
+
},
|
|
2991
|
+
{
|
|
2992
|
+
"displayName": "Taxi",
|
|
2993
|
+
"iconName": "taxi",
|
|
2994
|
+
"tags": "transportation, car, move",
|
|
2995
|
+
"group": "interface",
|
|
2996
|
+
"content": "\\e79e"
|
|
2997
|
+
},
|
|
2998
|
+
{
|
|
2999
|
+
"displayName": "Train",
|
|
3000
|
+
"iconName": "train",
|
|
3001
|
+
"tags": "transportation, public, move",
|
|
3002
|
+
"group": "interface",
|
|
3003
|
+
"content": "\\e79f"
|
|
3004
|
+
},
|
|
3005
|
+
{
|
|
3006
|
+
"displayName": "Heart: broken",
|
|
3007
|
+
"iconName": "heart-broken",
|
|
3008
|
+
"tags": "love, like, organ, human, feelings, split, torn, failed, health",
|
|
3009
|
+
"group": "miscellaneous",
|
|
3010
|
+
"content": "\\e7a2"
|
|
3011
|
+
},
|
|
3012
|
+
{
|
|
3013
|
+
"displayName": "Join: inner",
|
|
3014
|
+
"iconName": "inner-join",
|
|
3015
|
+
"tags": "circles, combine, connect, add, part, slice",
|
|
3016
|
+
"group": "action",
|
|
3017
|
+
"content": "\\e7a3"
|
|
3018
|
+
},
|
|
3019
|
+
{
|
|
3020
|
+
"displayName": "Join: left",
|
|
3021
|
+
"iconName": "left-join",
|
|
3022
|
+
"tags": "circles, combine, connect, add, part, slice",
|
|
3023
|
+
"group": "action",
|
|
3024
|
+
"content": "\\e7a4"
|
|
3025
|
+
},
|
|
3026
|
+
{
|
|
3027
|
+
"displayName": "Join: right",
|
|
3028
|
+
"iconName": "right-join",
|
|
3029
|
+
"tags": "circles, combine, connect, add, part, slice",
|
|
3030
|
+
"group": "action",
|
|
3031
|
+
"content": "\\e7a5"
|
|
3032
|
+
},
|
|
3033
|
+
{
|
|
3034
|
+
"displayName": "Strikethrough",
|
|
3035
|
+
"iconName": "strikethrough",
|
|
3036
|
+
"tags": "typography, text, font-style, line, removed",
|
|
3037
|
+
"group": "editor",
|
|
3038
|
+
"content": "\\e7a6"
|
|
3039
|
+
},
|
|
3040
|
+
{
|
|
3041
|
+
"displayName": "Updated",
|
|
3042
|
+
"iconName": "updated",
|
|
3043
|
+
"tags": "time, recent, success",
|
|
3044
|
+
"group": "interface",
|
|
3045
|
+
"content": "\\e7a7"
|
|
3046
|
+
},
|
|
3047
|
+
{
|
|
3048
|
+
"displayName": "Outdated",
|
|
3049
|
+
"iconName": "outdated",
|
|
3050
|
+
"tags": "time, error, warning",
|
|
3051
|
+
"group": "interface",
|
|
3052
|
+
"content": "\\e7a8"
|
|
3053
|
+
},
|
|
3054
|
+
{
|
|
3055
|
+
"displayName": "Flame",
|
|
3056
|
+
"iconName": "flame",
|
|
3057
|
+
"tags": "fire, trendy, hot, popular",
|
|
3058
|
+
"group": "miscellaneous",
|
|
3059
|
+
"content": "\\e7a9"
|
|
3060
|
+
},
|
|
3061
|
+
{
|
|
3062
|
+
"displayName": "Folder: new",
|
|
3063
|
+
"iconName": "folder-new",
|
|
3064
|
+
"tags": "create, group, organize, sort",
|
|
3065
|
+
"group": "file",
|
|
3066
|
+
"content": "\\e7b0"
|
|
3067
|
+
},
|
|
3068
|
+
{
|
|
3069
|
+
"displayName": "Mountain",
|
|
3070
|
+
"iconName": "mountain",
|
|
3071
|
+
"tags": "summit, climb, peak",
|
|
3072
|
+
"group": "miscellaneous",
|
|
3073
|
+
"content": "\\e7b1"
|
|
3074
|
+
},
|
|
3075
|
+
{
|
|
3076
|
+
"displayName": "Shield",
|
|
3077
|
+
"iconName": "shield",
|
|
3078
|
+
"tags": "protect, protection, secure, security, safe, safety, privacy, marking, control",
|
|
3079
|
+
"group": "miscellaneous",
|
|
3080
|
+
"content": "\\e7b2"
|
|
3081
|
+
},
|
|
3082
|
+
{
|
|
3083
|
+
"displayName": "Tree diagram",
|
|
3084
|
+
"iconName": "diagram-tree",
|
|
3085
|
+
"tags": "organization, chart, hierarchy, relationship, reference",
|
|
3086
|
+
"group": "data",
|
|
3087
|
+
"content": "\\e7b3"
|
|
3088
|
+
},
|
|
3089
|
+
{
|
|
3090
|
+
"displayName": "Crown",
|
|
3091
|
+
"iconName": "crown",
|
|
3092
|
+
"tags": "crown, hat, role, level, permission, king",
|
|
3093
|
+
"group": "miscellaneous",
|
|
3094
|
+
"content": "\\e7b4"
|
|
3095
|
+
},
|
|
3096
|
+
{
|
|
3097
|
+
"displayName": "Globe: network",
|
|
3098
|
+
"iconName": "globe-network",
|
|
3099
|
+
"tags": "planet, earth, map, world, www, website",
|
|
3100
|
+
"group": "miscellaneous",
|
|
3101
|
+
"content": "\\e7b5"
|
|
3102
|
+
},
|
|
3103
|
+
{
|
|
3104
|
+
"displayName": "Snowflake",
|
|
3105
|
+
"iconName": "snowflake",
|
|
3106
|
+
"tags": "weather, winter, freeze, ice",
|
|
3107
|
+
"group": "miscellaneous",
|
|
3108
|
+
"content": "\\e7b6"
|
|
3109
|
+
},
|
|
3110
|
+
{
|
|
3111
|
+
"displayName": "Tree",
|
|
3112
|
+
"iconName": "tree",
|
|
3113
|
+
"tags": "forest, wood, landmark",
|
|
3114
|
+
"group": "miscellaneous",
|
|
3115
|
+
"content": "\\e7b7"
|
|
3116
|
+
},
|
|
3117
|
+
{
|
|
3118
|
+
"displayName": "Notifications: updated",
|
|
3119
|
+
"iconName": "notifications-updated",
|
|
3120
|
+
"tags": "notifications, bell, alarm, notice, warning",
|
|
3121
|
+
"group": "interface",
|
|
3122
|
+
"content": "\\e7b8"
|
|
3123
|
+
},
|
|
3124
|
+
{
|
|
3125
|
+
"displayName": "List: columns",
|
|
3126
|
+
"iconName": "list-columns",
|
|
3127
|
+
"tags": "layout, arrangement, four lines, table",
|
|
3128
|
+
"group": "table",
|
|
3129
|
+
"content": "\\e7b9"
|
|
3130
|
+
},
|
|
3131
|
+
{
|
|
3132
|
+
"displayName": "Flow: linear",
|
|
3133
|
+
"iconName": "flow-linear",
|
|
3134
|
+
"tags": "workflow, edge, node, step",
|
|
3135
|
+
"group": "data",
|
|
3136
|
+
"content": "\\e7c0"
|
|
3137
|
+
},
|
|
3138
|
+
{
|
|
3139
|
+
"displayName": "Flow: branch",
|
|
3140
|
+
"iconName": "flow-branch",
|
|
3141
|
+
"tags": "workflow, edge, node, fork",
|
|
3142
|
+
"group": "data",
|
|
3143
|
+
"content": "\\e7c1"
|
|
3144
|
+
},
|
|
3145
|
+
{
|
|
3146
|
+
"displayName": "Flow: review",
|
|
3147
|
+
"iconName": "flow-review",
|
|
3148
|
+
"tags": "workflow, edge, node, reverse",
|
|
3149
|
+
"group": "data",
|
|
3150
|
+
"content": "\\e7c2"
|
|
3151
|
+
},
|
|
3152
|
+
{
|
|
3153
|
+
"displayName": "Flow: review branch",
|
|
3154
|
+
"iconName": "flow-review-branch",
|
|
3155
|
+
"tags": "workflow, edge, node, fork",
|
|
3156
|
+
"group": "data",
|
|
3157
|
+
"content": "\\e7c3"
|
|
3158
|
+
},
|
|
3159
|
+
{
|
|
3160
|
+
"displayName": "Flow: end",
|
|
3161
|
+
"iconName": "flow-end",
|
|
3162
|
+
"tags": "workflow, edge, node, complete, finished, final, last",
|
|
3163
|
+
"group": "data",
|
|
3164
|
+
"content": "\\e7c4"
|
|
3165
|
+
},
|
|
3166
|
+
{
|
|
3167
|
+
"displayName": "Clean",
|
|
3168
|
+
"iconName": "clean",
|
|
3169
|
+
"tags": "correct, cleanse, clear, purify, stars",
|
|
3170
|
+
"group": "action",
|
|
3171
|
+
"content": "\\e7c5"
|
|
3172
|
+
},
|
|
3173
|
+
{
|
|
3174
|
+
"displayName": "Table: filtered",
|
|
3175
|
+
"iconName": "th-filtered",
|
|
3176
|
+
"tags": "index, rows, columns, agenda, list, spreadsheet, filtering, funnel",
|
|
3177
|
+
"group": "table",
|
|
3178
|
+
"content": "\\e7c6"
|
|
3179
|
+
},
|
|
3180
|
+
{
|
|
3181
|
+
"displayName": "Lifesaver",
|
|
3182
|
+
"iconName": "lifesaver",
|
|
3183
|
+
"tags": "help, support, aid, advice",
|
|
3184
|
+
"group": "miscellaneous",
|
|
3185
|
+
"content": "\\e7c7"
|
|
3186
|
+
},
|
|
3187
|
+
{
|
|
3188
|
+
"displayName": "Cube",
|
|
3189
|
+
"iconName": "cube",
|
|
3190
|
+
"tags": "shape, 3d, object",
|
|
3191
|
+
"group": "miscellaneous",
|
|
3192
|
+
"content": "\\e7c8"
|
|
3193
|
+
},
|
|
3194
|
+
{
|
|
3195
|
+
"displayName": "Cube: add",
|
|
3196
|
+
"iconName": "cube-add",
|
|
3197
|
+
"tags": "shape, 3d, object",
|
|
3198
|
+
"group": "miscellaneous",
|
|
3199
|
+
"content": "\\e7c9"
|
|
3200
|
+
},
|
|
3201
|
+
{
|
|
3202
|
+
"displayName": "Cube: remove",
|
|
3203
|
+
"iconName": "cube-remove",
|
|
3204
|
+
"tags": "shape, 3d, object",
|
|
3205
|
+
"group": "miscellaneous",
|
|
3206
|
+
"content": "\\e7d0"
|
|
3207
|
+
},
|
|
3208
|
+
{
|
|
3209
|
+
"displayName": "Inbox: filtered",
|
|
3210
|
+
"iconName": "inbox-filtered",
|
|
3211
|
+
"tags": "folder, mail, file, message, funnel",
|
|
3212
|
+
"group": "file",
|
|
3213
|
+
"content": "\\e7d1"
|
|
3214
|
+
},
|
|
3215
|
+
{
|
|
3216
|
+
"displayName": "Inbox: geo",
|
|
3217
|
+
"iconName": "inbox-geo",
|
|
3218
|
+
"tags": "folder, mail, file, message, geography, location, area, globe",
|
|
3219
|
+
"group": "file",
|
|
3220
|
+
"content": "\\e7d2"
|
|
3221
|
+
},
|
|
3222
|
+
{
|
|
3223
|
+
"displayName": "Inbox: search",
|
|
3224
|
+
"iconName": "inbox-search",
|
|
3225
|
+
"tags": "folder, mail, file, message, inspection, exploration, magnifying glass",
|
|
3226
|
+
"group": "file",
|
|
3227
|
+
"content": "\\e7d3"
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"displayName": "Inbox: update",
|
|
3231
|
+
"iconName": "inbox-update",
|
|
3232
|
+
"tags": "folder, mail, file, message, notifications, warning",
|
|
3233
|
+
"group": "file",
|
|
3234
|
+
"content": "\\e7d4"
|
|
3235
|
+
}
|
|
3236
|
+
]
|