@eccenca/gui-elements 6.3.0 → 22.0.0-rc.6
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/CHANGELOG.md +98 -880
- package/LICENSE +202 -0
- package/README.md +56 -1240
- package/blueprint/constants.ts +7 -0
- package/blueprint/toaster/index.tsx +1 -0
- package/dist/cmem/ActivityControl/ActivityControlTypes.d.ts +15 -0
- package/dist/cmem/ActivityControl/ActivityControlTypes.js +1 -0
- package/dist/cmem/ActivityControl/ActivityControlWidget.d.ts +32 -0
- package/dist/cmem/ActivityControl/ActivityControlWidget.js +92 -0
- package/dist/cmem/ActivityControl/ActivityControlWidget.jsx +45 -0
- package/dist/cmem/ActivityControl/ActivityExecutionErrorReportModal.d.ts +12 -0
- package/dist/cmem/ActivityControl/ActivityExecutionErrorReportModal.js +59 -0
- package/dist/cmem/ActivityControl/ActivityExecutionErrorReportModal.jsx +76 -0
- package/dist/cmem/ActivityControl/SilkActivityControl.d.ts +62 -0
- package/dist/cmem/ActivityControl/SilkActivityControl.js +219 -0
- package/dist/cmem/ActivityControl/SilkActivityControl.jsx +217 -0
- package/dist/cmem/ContentBlobToggler/ContentBlobToggler.d.ts +34 -0
- package/dist/cmem/ContentBlobToggler/ContentBlobToggler.js +56 -0
- package/dist/cmem/ContentBlobToggler/ContentBlobToggler.jsx +62 -0
- package/dist/cmem/ContentBlobToggler/StringPreviewContentBlobToggler.d.ts +42 -0
- package/dist/cmem/ContentBlobToggler/StringPreviewContentBlobToggler.js +52 -0
- package/dist/cmem/ContentBlobToggler/StringPreviewContentBlobToggler.jsx +17 -0
- package/dist/cmem/DateTimeDisplay/ElapsedDateTimeDisplay.d.ts +15 -0
- package/dist/cmem/DateTimeDisplay/ElapsedDateTimeDisplay.js +80 -0
- package/dist/cmem/DateTimeDisplay/ElapsedDateTimeDisplay.jsx +77 -0
- package/dist/cmem/index.d.ts +10 -0
- package/dist/cmem/index.js +67 -0
- package/dist/cmem/markdown/Markdown.d.ts +16 -0
- package/dist/cmem/markdown/Markdown.js +75 -0
- package/dist/cmem/markdown/Markdown.jsx +87 -0
- package/dist/cmem/markdown/highlightSearchWords.js +84 -0
- package/dist/common/Intent/index.d.ts +7 -0
- package/dist/common/Intent/index.js +33 -0
- package/dist/common/utils/openInNewTab.d.ts +3 -0
- package/dist/common/utils/openInNewTab.js +22 -0
- package/dist/components/Accordion/Accordion.d.ts +3 -0
- package/dist/components/Accordion/Accordion.js +31 -0
- package/dist/components/Accordion/Accordion.jsx +21 -0
- package/dist/components/Accordion/AccordionItem.d.ts +15 -0
- package/dist/components/Accordion/AccordionItem.js +37 -0
- package/dist/components/Accordion/AccordionItem.jsx +27 -0
- package/dist/components/Application/ApplicationContainer.d.ts +6 -0
- package/dist/components/Application/ApplicationContainer.js +27 -0
- package/dist/components/Application/ApplicationContainer.jsx +20 -0
- package/dist/components/Application/ApplicationContent.d.ts +22 -0
- package/dist/components/Application/ApplicationContent.js +48 -0
- package/dist/components/Application/ApplicationContent.jsx +34 -0
- package/dist/components/Application/ApplicationHeader.d.ts +3 -0
- package/dist/components/Application/ApplicationHeader.js +29 -0
- package/dist/components/Application/ApplicationHeader.jsx +22 -0
- package/dist/components/Application/ApplicationSidebarNavigation.d.ts +12 -0
- package/dist/components/Application/ApplicationSidebarNavigation.js +36 -0
- package/dist/components/Application/ApplicationSidebarNavigation.jsx +22 -0
- package/dist/components/Application/ApplicationSidebarToggler.d.ts +3 -0
- package/dist/components/Application/ApplicationSidebarToggler.js +28 -0
- package/dist/components/Application/ApplicationSidebarToggler.jsx +19 -0
- package/dist/components/Application/ApplicationTitle.d.ts +40 -0
- package/dist/components/Application/ApplicationTitle.js +53 -0
- package/dist/components/Application/ApplicationTitle.jsx +39 -0
- package/dist/components/Application/ApplicationToolbar.d.ts +3 -0
- package/dist/components/Application/ApplicationToolbar.js +30 -0
- package/dist/components/Application/ApplicationToolbar.jsx +22 -0
- package/dist/components/Application/ApplicationToolbarAction.d.ts +3 -0
- package/dist/components/Application/ApplicationToolbarAction.js +30 -0
- package/dist/components/Application/ApplicationToolbarAction.jsx +22 -0
- package/dist/components/Application/ApplicationToolbarPanel.d.ts +3 -0
- package/dist/components/Application/ApplicationToolbarPanel.js +30 -0
- package/dist/components/Application/ApplicationToolbarPanel.jsx +22 -0
- package/dist/components/Application/ApplicationToolbarSection.d.ts +3 -0
- package/dist/components/Application/ApplicationToolbarSection.js +27 -0
- package/dist/components/Application/ApplicationToolbarSection.jsx +20 -0
- package/dist/components/AutocompleteField/AutoCompleteField.d.ts +110 -0
- package/dist/components/AutocompleteField/AutoCompleteField.js +309 -0
- package/dist/components/AutocompleteField/AutoCompleteField.jsx +295 -0
- package/dist/components/AutocompleteField/autoCompleteFieldUtils.js +42 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.d.ts +5 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.js +45 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.jsx +30 -0
- package/dist/components/Breadcrumb/BreadcrumbList.d.ts +24 -0
- package/dist/components/Breadcrumb/BreadcrumbList.js +60 -0
- package/dist/components/Breadcrumb/BreadcrumbList.jsx +35 -0
- package/dist/components/Button/Button.d.ts +58 -0
- package/dist/components/Button/Button.js +84 -0
- package/dist/components/Button/Button.jsx +48 -0
- package/dist/components/Card/Card.d.ts +23 -0
- package/dist/components/Card/Card.js +44 -0
- package/dist/components/Card/Card.jsx +31 -0
- package/dist/components/Card/CardActions.d.ts +14 -0
- package/dist/components/Card/CardActions.js +33 -0
- package/dist/components/Card/CardActions.jsx +27 -0
- package/dist/components/Card/CardActionsAux.d.ts +9 -0
- package/dist/components/Card/CardActionsAux.js +32 -0
- package/dist/components/Card/CardActionsAux.jsx +26 -0
- package/dist/components/Card/CardContent.d.ts +9 -0
- package/dist/components/Card/CardContent.js +32 -0
- package/dist/components/Card/CardContent.jsx +25 -0
- package/dist/components/Card/CardHeader.d.ts +7 -0
- package/dist/components/Card/CardHeader.js +52 -0
- package/dist/components/Card/CardHeader.jsx +41 -0
- package/dist/components/Card/CardOptions.d.ts +11 -0
- package/dist/components/Card/CardOptions.js +35 -0
- package/dist/components/Card/CardOptions.jsx +28 -0
- package/dist/components/Card/CardTitle.d.ts +13 -0
- package/dist/components/Card/CardTitle.js +37 -0
- package/dist/components/Card/CardTitle.jsx +26 -0
- package/dist/components/Card/index.d.ts +8 -0
- package/dist/components/Card/index.js +63 -0
- package/dist/components/Card/index.jsx +8 -0
- package/dist/components/Checkbox/Checkbox.d.ts +3 -0
- package/dist/components/Checkbox/Checkbox.js +30 -0
- package/dist/components/Checkbox/Checkbox.jsx +22 -0
- package/dist/components/ContextOverlay/ContextMenu.d.ts +3 -0
- package/dist/components/ContextOverlay/ContextMenu.js +48 -0
- package/dist/components/ContextOverlay/ContextMenu.jsx +30 -0
- package/dist/components/ContextOverlay/ContextOverlay.d.ts +3 -0
- package/dist/components/ContextOverlay/ContextOverlay.js +37 -0
- package/dist/components/ContextOverlay/ContextOverlay.jsx +27 -0
- package/dist/components/Dialog/AlertDialog.d.ts +22 -0
- package/dist/components/Dialog/AlertDialog.js +56 -0
- package/dist/components/Dialog/AlertDialog.jsx +39 -0
- package/dist/components/Dialog/Modal.d.ts +25 -0
- package/dist/components/Dialog/Modal.js +67 -0
- package/dist/components/Dialog/Modal.jsx +49 -0
- package/dist/components/Dialog/SimpleDialog.d.ts +41 -0
- package/dist/components/Dialog/SimpleDialog.js +62 -0
- package/dist/components/Dialog/SimpleDialog.jsx +50 -0
- package/dist/components/Form/FieldItem.d.ts +16 -0
- package/dist/components/Form/FieldItem.js +82 -0
- package/dist/components/Form/FieldItem.jsx +48 -0
- package/dist/components/Form/FieldItemRow.d.ts +3 -0
- package/dist/components/Form/FieldItemRow.js +30 -0
- package/dist/components/Form/FieldItemRow.jsx +23 -0
- package/dist/components/Form/FieldSet.d.ts +3 -0
- package/dist/components/Form/FieldSet.js +73 -0
- package/dist/components/Form/FieldSet.jsx +49 -0
- package/dist/components/Grid/Grid.d.ts +3 -0
- package/dist/components/Grid/Grid.js +33 -0
- package/dist/components/Grid/Grid.jsx +25 -0
- package/dist/components/Grid/GridColumn.d.ts +3 -0
- package/dist/components/Grid/GridColumn.js +43 -0
- package/dist/components/Grid/GridColumn.jsx +29 -0
- package/dist/components/Grid/GridRow.d.ts +3 -0
- package/dist/components/Grid/GridRow.js +33 -0
- package/dist/components/Grid/GridRow.jsx +26 -0
- package/dist/components/Icon/Icon.d.ts +20 -0
- package/dist/components/Icon/Icon.js +91 -0
- package/dist/components/Icon/Icon.jsx +88 -0
- package/dist/components/Icon/IconButton.d.ts +17 -0
- package/dist/components/Icon/IconButton.js +49 -0
- package/dist/components/Icon/IconButton.jsx +21 -0
- package/dist/components/Icon/canonicalIconNames.d.ts +10 -0
- package/dist/components/Icon/canonicalIconNames.js +547 -0
- package/dist/components/Icon/canonicalIconNames.jsx +534 -0
- package/dist/components/Iframe/Iframe.d.ts +18 -0
- package/dist/components/Iframe/Iframe.js +92 -0
- package/dist/components/Iframe/Iframe.jsx +79 -0
- package/dist/components/Iframe/IframeModal.d.ts +12 -0
- package/dist/components/Iframe/IframeModal.js +66 -0
- package/dist/components/Iframe/IframeModal.jsx +49 -0
- package/dist/components/Label/Label.d.ts +3 -0
- package/dist/components/Label/Label.js +58 -0
- package/dist/components/Label/Label.jsx +32 -0
- package/dist/components/Link/Link.d.ts +3 -0
- package/dist/components/Link/Link.js +36 -0
- package/dist/components/Link/Link.jsx +22 -0
- package/dist/components/List/List.d.ts +17 -0
- package/dist/components/List/List.js +50 -0
- package/dist/components/List/List.jsx +44 -0
- package/dist/components/Menu/Menu.d.ts +3 -0
- package/dist/components/Menu/Menu.js +29 -0
- package/dist/components/Menu/Menu.jsx +19 -0
- package/dist/components/Menu/MenuDivider.d.ts +3 -0
- package/dist/components/Menu/MenuDivider.js +29 -0
- package/dist/components/Menu/MenuDivider.jsx +19 -0
- package/dist/components/Menu/MenuItem.d.ts +13 -0
- package/dist/components/Menu/MenuItem.js +45 -0
- package/dist/components/Menu/MenuItem.jsx +27 -0
- package/dist/components/Notification/Notification.d.ts +3 -0
- package/dist/components/Notification/Notification.js +79 -0
- package/dist/components/Notification/Notification.jsx +48 -0
- package/dist/components/Notification/Toast.d.ts +3 -0
- package/dist/components/Notification/Toast.js +31 -0
- package/dist/components/Notification/Toast.jsx +21 -0
- package/dist/components/NumericInput/NumericInput.d.ts +4 -0
- package/dist/components/NumericInput/NumericInput.js +14 -0
- package/dist/components/NumericInput/NumericInput.jsx +3 -0
- package/dist/components/OverviewItem/OverviewItem.d.ts +17 -0
- package/dist/components/OverviewItem/OverviewItem.js +45 -0
- package/dist/components/OverviewItem/OverviewItem.jsx +37 -0
- package/dist/components/OverviewItem/OverviewItemActions.d.ts +13 -0
- package/dist/components/OverviewItem/OverviewItemActions.js +32 -0
- package/dist/components/OverviewItem/OverviewItemActions.jsx +26 -0
- package/dist/components/OverviewItem/OverviewItemDepiction.d.ts +6 -0
- package/dist/components/OverviewItem/OverviewItemDepiction.js +28 -0
- package/dist/components/OverviewItem/OverviewItemDepiction.jsx +22 -0
- package/dist/components/OverviewItem/OverviewItemDescription.d.ts +3 -0
- package/dist/components/OverviewItem/OverviewItemDescription.js +27 -0
- package/dist/components/OverviewItem/OverviewItemDescription.jsx +20 -0
- package/dist/components/OverviewItem/OverviewItemLine.d.ts +19 -0
- package/dist/components/OverviewItem/OverviewItemLine.js +35 -0
- package/dist/components/OverviewItem/OverviewItemLine.jsx +29 -0
- package/dist/components/OverviewItem/OverviewItemList.d.ts +26 -0
- package/dist/components/OverviewItem/OverviewItemList.js +38 -0
- package/dist/components/OverviewItem/OverviewItemList.jsx +31 -0
- package/dist/components/OverviewItem/index.d.ts +7 -0
- package/dist/components/OverviewItem/index.js +55 -0
- package/dist/components/OverviewItem/index.jsx +7 -0
- package/dist/components/Pagination/Pagination.d.ts +17 -0
- package/dist/components/Pagination/Pagination.js +80 -0
- package/dist/components/Pagination/Pagination.jsx +81 -0
- package/dist/components/ProgressBar/ProgressBar.d.ts +3 -0
- package/dist/components/ProgressBar/ProgressBar.js +12 -0
- package/dist/components/ProgressBar/ProgressBar.jsx +3 -0
- package/dist/components/PropertyValuePair/PropertyName.d.ts +3 -0
- package/dist/components/PropertyValuePair/PropertyName.js +32 -0
- package/dist/components/PropertyValuePair/PropertyName.jsx +21 -0
- package/dist/components/PropertyValuePair/PropertyValue.d.ts +3 -0
- package/dist/components/PropertyValuePair/PropertyValue.js +27 -0
- package/dist/components/PropertyValuePair/PropertyValue.jsx +20 -0
- package/dist/components/PropertyValuePair/PropertyValueList.d.ts +3 -0
- package/dist/components/PropertyValuePair/PropertyValueList.js +27 -0
- package/dist/components/PropertyValuePair/PropertyValueList.jsx +20 -0
- package/dist/components/PropertyValuePair/PropertyValuePair.d.ts +3 -0
- package/dist/components/PropertyValuePair/PropertyValuePair.js +29 -0
- package/dist/components/PropertyValuePair/PropertyValuePair.jsx +23 -0
- package/dist/components/PropertyValuePair/index.d.ts +5 -0
- package/dist/components/PropertyValuePair/index.js +39 -0
- package/dist/components/PropertyValuePair/index.jsx +5 -0
- package/dist/components/RadioButton/RadioButton.d.ts +3 -0
- package/dist/components/RadioButton/RadioButton.js +30 -0
- package/dist/components/RadioButton/RadioButton.jsx +22 -0
- package/dist/components/Separation/Divider.d.ts +3 -0
- package/dist/components/Separation/Divider.js +23 -0
- package/dist/components/Separation/Divider.jsx +7 -0
- package/dist/components/Separation/Spacing.d.ts +9 -0
- package/dist/components/Separation/Spacing.js +27 -0
- package/dist/components/Separation/Spacing.jsx +11 -0
- package/dist/components/SimpleTable/TableContainer.d.ts +3 -0
- package/dist/components/SimpleTable/TableContainer.js +37 -0
- package/dist/components/SimpleTable/TableContainer.jsx +27 -0
- package/dist/components/SimpleTable/index.d.ts +3 -0
- package/dist/components/SimpleTable/index.js +53 -0
- package/dist/components/SimpleTable/index.jsx +3 -0
- package/dist/components/Spinner/Spinner.d.ts +19 -0
- package/dist/components/Spinner/Spinner.js +98 -0
- package/dist/components/Spinner/Spinner.jsx +83 -0
- package/dist/components/Structure/Section.d.ts +3 -0
- package/dist/components/Structure/Section.js +27 -0
- package/dist/components/Structure/Section.jsx +20 -0
- package/dist/components/Structure/SectionHeader.d.ts +3 -0
- package/dist/components/Structure/SectionHeader.js +27 -0
- package/dist/components/Structure/SectionHeader.jsx +20 -0
- package/dist/components/Structure/TitleMainsection.d.ts +3 -0
- package/dist/components/Structure/TitleMainsection.js +35 -0
- package/dist/components/Structure/TitleMainsection.jsx +26 -0
- package/dist/components/Structure/TitlePage.d.ts +3 -0
- package/dist/components/Structure/TitlePage.js +35 -0
- package/dist/components/Structure/TitlePage.jsx +26 -0
- package/dist/components/Structure/TitleSubsection.d.ts +3 -0
- package/dist/components/Structure/TitleSubsection.js +32 -0
- package/dist/components/Structure/TitleSubsection.jsx +23 -0
- package/dist/components/Switch/Switch.d.ts +4 -0
- package/dist/components/Switch/Switch.js +39 -0
- package/dist/components/Switch/Switch.jsx +22 -0
- package/dist/components/Tabs/Tabs.d.ts +24 -0
- package/dist/components/Tabs/Tabs.js +95 -0
- package/dist/components/Tabs/Tabs.jsx +49 -0
- package/dist/components/Tag/Tag.d.ts +27 -0
- package/dist/components/Tag/Tag.js +50 -0
- package/dist/components/Tag/Tag.jsx +46 -0
- package/dist/components/Tag/TagList.d.ts +3 -0
- package/dist/components/Tag/TagList.js +44 -0
- package/dist/components/Tag/TagList.jsx +38 -0
- package/dist/components/TextField/SearchField.d.ts +23 -0
- package/dist/components/TextField/SearchField.js +54 -0
- package/dist/components/TextField/SearchField.jsx +27 -0
- package/dist/components/TextField/TextArea.d.ts +22 -0
- package/dist/components/TextField/TextArea.js +60 -0
- package/dist/components/TextField/TextArea.jsx +36 -0
- package/dist/components/TextField/TextField.d.ts +34 -0
- package/dist/components/TextField/TextField.js +73 -0
- package/dist/components/TextField/TextField.jsx +40 -0
- package/dist/components/Toolbar/Toolbar.d.ts +18 -0
- package/dist/components/Toolbar/Toolbar.js +32 -0
- package/dist/components/Toolbar/Toolbar.jsx +26 -0
- package/dist/components/Toolbar/ToolbarSection.d.ts +22 -0
- package/dist/components/Toolbar/ToolbarSection.js +34 -0
- package/dist/components/Toolbar/ToolbarSection.jsx +28 -0
- package/dist/components/Tooltip/Tooltip.d.ts +17 -0
- package/dist/components/Tooltip/Tooltip.js +40 -0
- package/dist/components/Tooltip/Tooltip.jsx +25 -0
- package/dist/components/Typography/Highlighter.d.ts +18 -0
- package/dist/components/Typography/Highlighter.js +89 -0
- package/dist/components/Typography/Highlighter.jsx +58 -0
- package/dist/components/Typography/HtmlContentBlock.d.ts +6 -0
- package/dist/components/Typography/HtmlContentBlock.js +38 -0
- package/dist/components/Typography/HtmlContentBlock.jsx +31 -0
- package/dist/components/Typography/OverflowText.d.ts +12 -0
- package/dist/components/Typography/OverflowText.js +34 -0
- package/dist/components/Typography/OverflowText.jsx +31 -0
- package/dist/components/Typography/WhiteSpaceContainer.d.ts +5 -0
- package/dist/components/Typography/WhiteSpaceContainer.js +38 -0
- package/dist/components/Typography/WhiteSpaceContainer.jsx +34 -0
- package/dist/components/Typography/classnames.d.ts +7 -0
- package/dist/components/Typography/classnames.js +24 -0
- package/dist/components/Workspace/WorkspaceContent.d.ts +3 -0
- package/dist/components/Workspace/WorkspaceContent.js +34 -0
- package/dist/components/Workspace/WorkspaceContent.jsx +25 -0
- package/dist/components/Workspace/WorkspaceHeader.d.ts +10 -0
- package/dist/components/Workspace/WorkspaceHeader.js +27 -0
- package/dist/components/Workspace/WorkspaceHeader.jsx +20 -0
- package/dist/components/Workspace/WorkspaceMain.d.ts +3 -0
- package/dist/components/Workspace/WorkspaceMain.js +30 -0
- package/dist/components/Workspace/WorkspaceMain.jsx +22 -0
- package/dist/components/Workspace/WorkspaceSide.d.ts +3 -0
- package/dist/components/Workspace/WorkspaceSide.js +34 -0
- package/dist/components/Workspace/WorkspaceSide.jsx +22 -0
- package/dist/components/interfaces.d.ts +3 -0
- package/dist/components/interfaces.js +1 -0
- package/dist/configuration/constants.d.ts +1 -0
- package/dist/configuration/constants.js +9 -0
- package/dist/extensions/react-flow/edges/EdgeDefault.d.ts +10 -0
- package/dist/extensions/react-flow/edges/EdgeDefault.js +62 -0
- package/dist/extensions/react-flow/edges/EdgeDefault.jsx +45 -0
- package/dist/extensions/react-flow/edges/EdgeStep.d.ts +9 -0
- package/dist/extensions/react-flow/edges/EdgeStep.js +27 -0
- package/dist/extensions/react-flow/edges/EdgeStep.jsx +6 -0
- package/dist/extensions/react-flow/edges/EdgeTools.d.ts +12 -0
- package/dist/extensions/react-flow/edges/EdgeTools.js +48 -0
- package/dist/extensions/react-flow/edges/EdgeTools.jsx +32 -0
- package/dist/extensions/react-flow/edges/edgeTypes.d.ts +15 -0
- package/dist/extensions/react-flow/edges/edgeTypes.js +32 -0
- package/dist/extensions/react-flow/edges/utils.d.ts +4 -0
- package/dist/extensions/react-flow/edges/utils.js +41 -0
- package/dist/extensions/react-flow/handles/HandleContent.d.ts +6 -0
- package/dist/extensions/react-flow/handles/HandleContent.js +40 -0
- package/dist/extensions/react-flow/handles/HandleContent.jsx +15 -0
- package/dist/extensions/react-flow/handles/HandleDefault.d.ts +9 -0
- package/dist/extensions/react-flow/handles/HandleDefault.js +33 -0
- package/dist/extensions/react-flow/handles/HandleDefault.jsx +23 -0
- package/dist/extensions/react-flow/index.d.ts +14 -0
- package/dist/extensions/react-flow/index.js +83 -0
- package/dist/extensions/react-flow/minimap/MiniMap.d.ts +8 -0
- package/dist/extensions/react-flow/minimap/MiniMap.js +111 -0
- package/dist/extensions/react-flow/minimap/MiniMap.jsx +83 -0
- package/dist/extensions/react-flow/minimap/utils.d.ts +2 -0
- package/dist/extensions/react-flow/minimap/utils.js +29 -0
- package/dist/extensions/react-flow/nodes/NodeContentExtension.js +56 -0
- package/dist/extensions/react-flow/nodes/NodeDefault.d.ts +133 -0
- package/dist/extensions/react-flow/nodes/NodeDefault.js +223 -0
- package/dist/extensions/react-flow/nodes/NodeDefault.jsx +175 -0
- package/dist/extensions/react-flow/nodes/NodeTools.d.ts +9 -0
- package/dist/extensions/react-flow/nodes/NodeTools.js +58 -0
- package/dist/extensions/react-flow/nodes/NodeTools.jsx +46 -0
- package/dist/extensions/react-flow/nodes/nodeTypes.d.ts +13 -0
- package/dist/extensions/react-flow/nodes/nodeTypes.js +22 -0
- package/dist/index.d.ts +92 -0
- package/dist/index.js +876 -0
- package/dist/legacy-replacements/Button/AffirmativeButton.js +23 -0
- package/dist/legacy-replacements/Button/Button.js +91 -0
- package/dist/legacy-replacements/Button/DismissiveButton.js +23 -0
- package/dist/legacy-replacements/Button/DisruptiveButton.js +23 -0
- package/dist/legacy-replacements/Checkbox/Checkbox.js +66 -0
- package/dist/legacy-replacements/Radio/RadioButton.js +48 -0
- package/dist/legacy-replacements/TextField/TextField.js +96 -0
- package/package.json +151 -70
- package/src/_shame.scss +111 -0
- package/src/cmem/ActivityControl/ActivityControlTypes.ts +28 -0
- package/src/cmem/ActivityControl/ActivityControlWidget.tsx +165 -0
- package/src/cmem/ActivityControl/ActivityExecutionErrorReportModal.tsx +55 -0
- package/src/cmem/ActivityControl/SilkActivityControl.tsx +303 -0
- package/src/cmem/ActivityControl/activitycontrol.scss +27 -0
- package/src/cmem/ContentBlobToggler/ContentBlobToggler.tsx +95 -0
- package/src/cmem/ContentBlobToggler/StringPreviewContentBlobToggler.tsx +76 -0
- package/src/cmem/DateTimeDisplay/ElapsedDateTimeDisplay.tsx +69 -0
- package/src/cmem/DateTimeDisplay/tests/ElapsedDateTimeDisplay.test.tsx +29 -0
- package/src/cmem/_index.scss +2 -0
- package/src/cmem/index.ts +35 -0
- package/src/cmem/markdown/Markdown.tsx +89 -0
- package/src/cmem/markdown/highlightSearchWords.test.ts +36 -0
- package/src/cmem/markdown/highlightSearchWords.ts +67 -0
- package/src/cmem/markdown/markdown.scss +32 -0
- package/src/common/Intent/index.ts +23 -0
- package/src/common/utils/openInNewTab.ts +17 -0
- package/src/components/Accordion/Accordion.tsx +13 -0
- package/src/components/Accordion/AccordionItem.tsx +73 -0
- package/src/components/Accordion/accordion.scss +96 -0
- package/src/components/Application/ApplicationContainer.tsx +21 -0
- package/src/components/Application/ApplicationContent.tsx +57 -0
- package/src/components/Application/ApplicationHeader.tsx +14 -0
- package/src/components/Application/ApplicationSidebarNavigation.tsx +39 -0
- package/src/components/Application/ApplicationSidebarToggler.tsx +15 -0
- package/src/components/Application/ApplicationTitle.tsx +95 -0
- package/src/components/Application/ApplicationToolbar.tsx +17 -0
- package/src/components/Application/ApplicationToolbarAction.tsx +17 -0
- package/src/components/Application/ApplicationToolbarPanel.tsx +17 -0
- package/src/components/Application/ApplicationToolbarSection.tsx +15 -0
- package/src/components/Application/_config.scss +40 -0
- package/src/components/Application/_content.scss +27 -0
- package/src/components/Application/_header.scss +237 -0
- package/src/components/Application/_sidebar.scss +37 -0
- package/src/components/Application/_toolbar.scss +75 -0
- package/src/components/Application/application.scss +9 -0
- package/src/components/AutocompleteField/AutoCompleteField.tsx +399 -0
- package/src/components/AutocompleteField/autoCompleteFieldUtils.tsx +32 -0
- package/src/components/AutocompleteField/autocompletefield.scss +6 -0
- package/src/components/Breadcrumb/BreadcrumbItem.tsx +46 -0
- package/src/components/Breadcrumb/BreadcrumbList.tsx +81 -0
- package/src/components/Breadcrumb/breadcrumb.scss +47 -0
- package/src/components/Button/Button.stories.tsx +199 -0
- package/src/components/Button/Button.test.tsx +37 -0
- package/src/components/Button/Button.tsx +127 -0
- package/src/components/Button/button.scss +55 -0
- package/src/components/Card/Card.tsx +58 -0
- package/src/components/Card/CardActions.tsx +36 -0
- package/src/components/Card/CardActionsAux.tsx +29 -0
- package/src/components/Card/CardContent.tsx +26 -0
- package/src/components/Card/CardHeader.tsx +44 -0
- package/src/components/Card/CardOptions.tsx +32 -0
- package/src/components/Card/CardTitle.tsx +32 -0
- package/src/components/Card/card.scss +138 -0
- package/src/components/Card/index.tsx +17 -0
- package/src/components/Card/stories/Card.stories.tsx +82 -0
- package/src/components/Card/stories/CardActions.stories.tsx +41 -0
- package/src/components/Card/stories/CardContent.stories.tsx +28 -0
- package/src/components/Card/stories/CardHeader.stories.tsx +38 -0
- package/src/components/Card/stories/CardOptions.stories.tsx +27 -0
- package/src/components/Card/stories/CardTitle.stories.tsx +27 -0
- package/src/components/Checkbox/Checkbox.tsx +20 -0
- package/src/components/Checkbox/checkbox.scss +61 -0
- package/src/components/ContextOverlay/ContextMenu.tsx +36 -0
- package/src/components/ContextOverlay/ContextOverlay.tsx +29 -0
- package/src/components/ContextOverlay/contextoverlay.scss +15 -0
- package/src/components/Dialog/AlertDialog.tsx +52 -0
- package/src/components/Dialog/Modal.tsx +86 -0
- package/src/components/Dialog/SimpleDialog.tsx +113 -0
- package/src/components/Dialog/dialog.scss +75 -0
- package/src/components/Dialog/stories/AlertDialog.stories.tsx +42 -0
- package/src/components/Dialog/stories/Modal.stories.tsx +88 -0
- package/src/components/Dialog/stories/SimpleDialog.stories.tsx +39 -0
- package/src/components/Form/FieldItem.tsx +95 -0
- package/src/components/Form/FieldItemRow.tsx +14 -0
- package/src/components/Form/FieldSet.tsx +71 -0
- package/src/components/Form/form.scss +159 -0
- package/src/components/Grid/Grid.tsx +29 -0
- package/src/components/Grid/GridColumn.tsx +33 -0
- package/src/components/Grid/GridRow.tsx +30 -0
- package/src/components/Grid/grid.scss +89 -0
- package/src/components/Icon/Icon.tsx +96 -0
- package/src/components/Icon/IconButton.tsx +59 -0
- package/src/components/Icon/canonicalIconNames.json +120 -0
- package/src/components/Icon/canonicalIconNames.tsx +661 -0
- package/src/components/Icon/icon.scss +40 -0
- package/src/components/Iframe/Iframe.tsx +89 -0
- package/src/components/Iframe/IframeModal.tsx +77 -0
- package/src/components/Iframe/iframe.scss +49 -0
- package/src/components/Label/Label.tsx +43 -0
- package/src/components/Label/label.scss +75 -0
- package/src/components/Link/Link.tsx +19 -0
- package/src/components/Link/link.scss +6 -0
- package/src/components/List/List.tsx +46 -0
- package/src/components/Menu/Menu.tsx +9 -0
- package/src/components/Menu/MenuDivider.tsx +9 -0
- package/src/components/Menu/MenuItem.tsx +46 -0
- package/src/components/Menu/menu.scss +79 -0
- package/src/components/Notification/Notification.tsx +69 -0
- package/src/components/Notification/Toast.tsx +17 -0
- package/src/components/Notification/notification.scss +83 -0
- package/src/components/NumericInput/NumericInput.tsx +4 -0
- package/src/components/OverviewItem/OverviewItem.tsx +61 -0
- package/src/components/OverviewItem/OverviewItemActions.tsx +35 -0
- package/src/components/OverviewItem/OverviewItemDepiction.tsx +29 -0
- package/src/components/OverviewItem/OverviewItemDescription.tsx +16 -0
- package/src/components/OverviewItem/OverviewItemLine.tsx +43 -0
- package/src/components/OverviewItem/OverviewItemList.tsx +58 -0
- package/src/components/OverviewItem/index.tsx +15 -0
- package/src/components/OverviewItem/overviewitem.scss +193 -0
- package/src/components/OverviewItem/stories/OverviewItem.stories.tsx +56 -0
- package/src/components/OverviewItem/stories/OverviewItemActions.stories.tsx +31 -0
- package/src/components/OverviewItem/stories/OverviewItemDepiction.stories.tsx +26 -0
- package/src/components/OverviewItem/stories/OverviewItemDescription.stories.tsx +32 -0
- package/src/components/OverviewItem/stories/OverviewItemLine.stories.tsx +25 -0
- package/src/components/OverviewItem/stories/OverviewItemList.stories.tsx +41 -0
- package/src/components/Pagination/Pagination.tsx +80 -0
- package/src/components/Pagination/pagination.scss +47 -0
- package/src/components/ProgressBar/ProgressBar.tsx +8 -0
- package/src/components/PropertyValuePair/PropertyName.tsx +13 -0
- package/src/components/PropertyValuePair/PropertyValue.tsx +12 -0
- package/src/components/PropertyValuePair/PropertyValueList.tsx +12 -0
- package/src/components/PropertyValuePair/PropertyValuePair.tsx +20 -0
- package/src/components/PropertyValuePair/index.tsx +6 -0
- package/src/components/PropertyValuePair/propertyvalue.scss +56 -0
- package/src/components/RadioButton/RadioButton.tsx +20 -0
- package/src/components/RadioButton/radiobutton.scss +29 -0
- package/src/components/Separation/Divider.tsx +8 -0
- package/src/components/Separation/Spacing.tsx +25 -0
- package/src/components/Separation/separation.scss +77 -0
- package/src/components/SimpleTable/TableContainer.tsx +20 -0
- package/src/components/SimpleTable/index.tsx +4 -0
- package/src/components/SimpleTable/simpletable.scss +121 -0
- package/src/components/Spinner/Spinner.tsx +113 -0
- package/src/components/Spinner/spinner.scss +85 -0
- package/src/components/Structure/Section.tsx +15 -0
- package/src/components/Structure/SectionHeader.tsx +15 -0
- package/src/components/Structure/TitleMainsection.tsx +29 -0
- package/src/components/Structure/TitlePage.tsx +29 -0
- package/src/components/Structure/TitleSubsection.tsx +16 -0
- package/src/components/Structure/_titles.scss +56 -0
- package/src/components/Switch/Switch.tsx +17 -0
- package/src/components/Switch/switch.scss +4 -0
- package/src/components/Tabs/Tabs.tsx +121 -0
- package/src/components/Tabs/tabs.scss +65 -0
- package/src/components/Tag/Tag.stories.tsx +41 -0
- package/src/components/Tag/Tag.tsx +84 -0
- package/src/components/Tag/TagList.tsx +51 -0
- package/src/components/Tag/tag.scss +132 -0
- package/src/components/TagInput/taginput.scss +1 -0
- package/src/components/TextField/SearchField.tsx +71 -0
- package/src/components/TextField/TextArea.tsx +66 -0
- package/src/components/TextField/TextField.tsx +96 -0
- package/src/components/TextField/stories/SearchField.stories.tsx +40 -0
- package/src/components/TextField/stories/TextArea.stories.tsx +39 -0
- package/src/components/TextField/stories/TextField.stories.tsx +99 -0
- package/src/components/TextField/textfield.scss +63 -0
- package/src/components/Toolbar/Toolbar.stories.tsx +41 -0
- package/src/components/Toolbar/Toolbar.tsx +42 -0
- package/src/components/Toolbar/ToolbarSection.tsx +48 -0
- package/src/components/Toolbar/toolbar.scss +52 -0
- package/src/components/Tooltip/Tooltip.tsx +53 -0
- package/src/components/Tooltip/tooltip.scss +37 -0
- package/src/components/Typography/Highlighter.tsx +70 -0
- package/src/components/Typography/HtmlContentBlock.tsx +30 -0
- package/src/components/Typography/OverflowText.tsx +46 -0
- package/src/components/Typography/WhiteSpaceContainer.tsx +41 -0
- package/src/components/Typography/_reset.scss +36 -0
- package/src/components/Typography/classnames.ts +10 -0
- package/src/components/Typography/typography.scss +282 -0
- package/src/components/Workspace/WorkspaceContent.tsx +22 -0
- package/src/components/Workspace/WorkspaceHeader.tsx +20 -0
- package/src/components/Workspace/WorkspaceMain.tsx +14 -0
- package/src/components/Workspace/WorkspaceSide.tsx +18 -0
- package/src/components/Workspace/_header.scss +9 -0
- package/src/components/Workspace/workspace.scss +1 -0
- package/src/components/interfaces.ts +3 -0
- package/src/configuration/_variables.scss +130 -0
- package/src/configuration/constants.ts +2 -0
- package/src/extensions/_index.scss +1 -0
- package/src/extensions/react-flow/_config.scss +16 -0
- package/src/extensions/react-flow/_react-flow.scss +5 -0
- package/src/extensions/react-flow/edges/EdgeDefault.tsx +77 -0
- package/src/extensions/react-flow/edges/EdgeStep.tsx +19 -0
- package/src/extensions/react-flow/edges/EdgeTools.tsx +39 -0
- package/src/extensions/react-flow/edges/_edges.scss +181 -0
- package/src/extensions/react-flow/edges/edgeTypes.ts +24 -0
- package/src/extensions/react-flow/edges/utils.ts +32 -0
- package/src/extensions/react-flow/handles/HandleContent.tsx +39 -0
- package/src/extensions/react-flow/handles/HandleDefault.tsx +29 -0
- package/src/extensions/react-flow/handles/_handles.scss +208 -0
- package/src/extensions/react-flow/index.ts +15 -0
- package/src/extensions/react-flow/minimap/MiniMap.tsx +110 -0
- package/src/extensions/react-flow/minimap/_minimap.scss +79 -0
- package/src/extensions/react-flow/minimap/utils.ts +13 -0
- package/src/extensions/react-flow/nodes/NodeContent.stories.tsx +83 -0
- package/src/extensions/react-flow/nodes/NodeContentExtension.stories.tsx +36 -0
- package/src/extensions/react-flow/nodes/NodeContentExtension.tsx +87 -0
- package/src/extensions/react-flow/nodes/NodeDefault.stories.tsx +138 -0
- package/src/extensions/react-flow/nodes/NodeDefault.tsx +376 -0
- package/src/extensions/react-flow/nodes/NodeTools.tsx +48 -0
- package/src/extensions/react-flow/nodes/_nodes.scss +490 -0
- package/src/extensions/react-flow/nodes/nodeTypes.ts +14 -0
- package/src/includes/blueprintjs/_variables.scss +195 -0
- package/src/includes/carbon-components/_variables.scss +107 -0
- package/src/index.scss +190 -0
- package/src/index.ts +238 -0
- package/src/legacy-replacements/Button/AffirmativeButton.tsx +16 -0
- package/src/legacy-replacements/Button/Button.tsx +73 -0
- package/src/legacy-replacements/Button/DismissiveButton.tsx +16 -0
- package/src/legacy-replacements/Button/DisruptiveButton.tsx +16 -0
- package/src/legacy-replacements/Checkbox/Checkbox.tsx +54 -0
- package/src/legacy-replacements/Radio/RadioButton.tsx +38 -0
- package/src/legacy-replacements/TextField/TextField.tsx +90 -0
- package/src/test/setupTests.js +2 -0
- package/.cached-fonts +0 -1
- package/Ruleset.md +0 -93
- package/additionalLicenses.yml +0 -21
- package/buildConfig.js +0 -25
- package/dist/fonts/iconfont/MaterialIcons-Regular.woff +0 -0
- package/dist/fonts/iconfont/MaterialIcons-Regular.woff2 +0 -0
- package/dist/fonts/iconfont/codepoints +0 -932
- package/dist/fonts/roboto/Black/Roboto-Black.woff +0 -0
- package/dist/fonts/roboto/Black/Roboto-Black.woff2 +0 -0
- package/dist/fonts/roboto/BlackItalic/Roboto-BlackItalic.woff +0 -0
- package/dist/fonts/roboto/BlackItalic/Roboto-BlackItalic.woff2 +0 -0
- package/dist/fonts/roboto/Bold/Roboto-Bold.woff +0 -0
- package/dist/fonts/roboto/Bold/Roboto-Bold.woff2 +0 -0
- package/dist/fonts/roboto/BoldItalic/Roboto-BoldItalic.woff +0 -0
- package/dist/fonts/roboto/BoldItalic/Roboto-BoldItalic.woff2 +0 -0
- package/dist/fonts/roboto/Italic/Roboto-Italic.woff +0 -0
- package/dist/fonts/roboto/Italic/Roboto-Italic.woff2 +0 -0
- package/dist/fonts/roboto/Light/Roboto-Light.woff +0 -0
- package/dist/fonts/roboto/Light/Roboto-Light.woff2 +0 -0
- package/dist/fonts/roboto/LightItalic/Roboto-LightItalic.woff +0 -0
- package/dist/fonts/roboto/LightItalic/Roboto-LightItalic.woff2 +0 -0
- package/dist/fonts/roboto/Medium/Roboto-Medium.woff +0 -0
- package/dist/fonts/roboto/Medium/Roboto-Medium.woff2 +0 -0
- package/dist/fonts/roboto/MediumItalic/Roboto-MediumItalic.woff +0 -0
- package/dist/fonts/roboto/MediumItalic/Roboto-MediumItalic.woff2 +0 -0
- package/dist/fonts/roboto/Regular/Roboto-Regular.woff +0 -0
- package/dist/fonts/roboto/Regular/Roboto-Regular.woff2 +0 -0
- package/dist/fonts/roboto/Thin/Roboto-Thin.woff +0 -0
- package/dist/fonts/roboto/Thin/Roboto-Thin.woff2 +0 -0
- package/dist/fonts/roboto/ThinItalic/Roboto-ThinItalic.woff +0 -0
- package/dist/fonts/roboto/ThinItalic/Roboto-ThinItalic.woff2 +0 -0
- package/docs/README.md +0 -953
- package/docs/docTemplate.md +0 -140
- package/es5/component.js +0 -6686
- package/index.js +0 -136
- package/jest.config.js +0 -42
- package/src/_configuration.default.scss +0 -97
- package/src/_configuration.mdl.scss +0 -518
- package/src/elements/Alert/Alert.jsx +0 -141
- package/src/elements/Alert/Error.jsx +0 -22
- package/src/elements/Alert/Info.jsx +0 -21
- package/src/elements/Alert/Success.jsx +0 -20
- package/src/elements/Alert/Warning.jsx +0 -19
- package/src/elements/Alert/_alert.scss +0 -93
- package/src/elements/Alert/index.js +0 -13
- package/src/elements/AutoCompleteBox/AutoCompleteBox.jsx +0 -149
- package/src/elements/AutoCompleteBox/_autocomplete.scss +0 -33
- package/src/elements/Breadcrumbs/BreadcrumbItem.jsx +0 -34
- package/src/elements/Breadcrumbs/BreadcrumbList.jsx +0 -56
- package/src/elements/Breadcrumbs/_breadcrumbs.scss +0 -47
- package/src/elements/Breadcrumbs/index.js +0 -7
- package/src/elements/Button/AffirmativeButton.jsx +0 -73
- package/src/elements/Button/Button.jsx +0 -216
- package/src/elements/Button/DismissiveButton.jsx +0 -77
- package/src/elements/Button/DisruptiveButton.jsx +0 -74
- package/src/elements/Button/ProgressButton.jsx +0 -95
- package/src/elements/Button/_button.scss +0 -61
- package/src/elements/Button/index.js +0 -13
- package/src/elements/Card/Card.jsx +0 -61
- package/src/elements/Card/CardActions.jsx +0 -37
- package/src/elements/Card/CardTitle.jsx +0 -78
- package/src/elements/Card/FloatingActionList.jsx +0 -260
- package/src/elements/Card/_card.scss +0 -179
- package/src/elements/Card/index.js +0 -18
- package/src/elements/Checkbox/Checkbox.jsx +0 -113
- package/src/elements/Checkbox/_checkbox.scss +0 -14
- package/src/elements/Chip/Chip.jsx +0 -141
- package/src/elements/Chip/ChipVisual.jsx +0 -88
- package/src/elements/Chip/_chip.scss +0 -82
- package/src/elements/Chip/index.js +0 -7
- package/src/elements/ContextMenu/ContextMenu.jsx +0 -101
- package/src/elements/ContextMenu/_contextmenu.scss +0 -23
- package/src/elements/DateField/DateField.jsx +0 -178
- package/src/elements/DateField/DateTimefield.jsx +0 -20
- package/src/elements/DateField/_datefield.scss +0 -116
- package/src/elements/DateField/index.js +0 -7
- package/src/elements/Dialog/BaseDialog.jsx +0 -161
- package/src/elements/Dialog/ConfirmationDialog.jsx +0 -48
- package/src/elements/Dialog/_dialog.scss +0 -58
- package/src/elements/Dialog/index.js +0 -7
- package/src/elements/Footer/Footer.jsx +0 -171
- package/src/elements/Footer/_footer.scss +0 -17
- package/src/elements/Grid/_grid.scss +0 -18
- package/src/elements/Icon/Icon.jsx +0 -97
- package/src/elements/Icon/canonicalicons.json +0 -32
- package/src/elements/Icon/canonicaltooltips.json +0 -32
- package/src/elements/Icon/icontable.json +0 -934
- package/src/elements/Layout/_layout.scss +0 -82
- package/src/elements/NotAvailable/NotAvailable.jsx +0 -87
- package/src/elements/NotAvailable/_notavailable.scss +0 -18
- package/src/elements/Pagination/Pagination.jsx +0 -431
- package/src/elements/Pagination/_pagination.scss +0 -98
- package/src/elements/Progressbar/Progressbar.jsx +0 -34
- package/src/elements/Progressbar/_progressbar.scss +0 -22
- package/src/elements/Radio/RadioButton.jsx +0 -129
- package/src/elements/Radio/RadioGroup.jsx +0 -35
- package/src/elements/Radio/_radio.scss +0 -46
- package/src/elements/Radio/index.js +0 -7
- package/src/elements/SelectBox/SelectBox.jsx +0 -321
- package/src/elements/SelectBox/_selectbox.scss +0 -144
- package/src/elements/Spinner/Spinner.jsx +0 -44
- package/src/elements/Spinner/_spinner.scss +0 -20
- package/src/elements/Switch/Switch.jsx +0 -38
- package/src/elements/Table/Table.jsx +0 -100
- package/src/elements/Table/TableBody.jsx +0 -66
- package/src/elements/Table/TableCell.jsx +0 -94
- package/src/elements/Table/TableHead.jsx +0 -66
- package/src/elements/Table/TableRow.jsx +0 -78
- package/src/elements/Table/_datatable.scss +0 -78
- package/src/elements/Table/_table.scss +0 -143
- package/src/elements/Tabs/Tabs.jsx +0 -116
- package/src/elements/TextField/TextField.jsx +0 -172
- package/src/elements/TextField/_textfield.scss +0 -80
- package/src/elements/Tooltip/Tooltip.jsx +0 -3
- package/src/elements/Tooltip/_tooltip.scss +0 -21
- package/src/elements/Version/Version.jsx +0 -19
- package/src/hocs/ScrollingHOC.js +0 -122
- package/src/main.scss +0 -83
- package/src/scss/_adjustments.scss +0 -16
- package/src/scss/_helpers.scss +0 -29
- package/src/scss/_iconfont.scss +0 -35
- package/src/scss/_patches.scss +0 -19
- package/src/scss/_roboto.scss +0 -30
- package/src/scss/main.build-css.scss +0 -4
- package/src/utils/classnameSeperator.js +0 -10
- package/src/utils/extendedOnChangeBoolean.jsx +0 -14
- package/src/utils/uniqueId.jsx +0 -36
- package/style/test.scss +0 -30
|
@@ -1,934 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
"3d_rotation",
|
|
3
|
-
"ac_unit",
|
|
4
|
-
"access_alarm",
|
|
5
|
-
"access_alarms",
|
|
6
|
-
"access_time",
|
|
7
|
-
"accessibility",
|
|
8
|
-
"accessible",
|
|
9
|
-
"account_balance",
|
|
10
|
-
"account_balance_wallet",
|
|
11
|
-
"account_box",
|
|
12
|
-
"account_circle",
|
|
13
|
-
"adb",
|
|
14
|
-
"add",
|
|
15
|
-
"add_a_photo",
|
|
16
|
-
"add_alarm",
|
|
17
|
-
"add_alert",
|
|
18
|
-
"add_box",
|
|
19
|
-
"add_circle",
|
|
20
|
-
"add_circle_outline",
|
|
21
|
-
"add_location",
|
|
22
|
-
"add_shopping_cart",
|
|
23
|
-
"add_to_photos",
|
|
24
|
-
"add_to_queue",
|
|
25
|
-
"adjust",
|
|
26
|
-
"airline_seat_flat",
|
|
27
|
-
"airline_seat_flat_angled",
|
|
28
|
-
"airline_seat_individual_suite",
|
|
29
|
-
"airline_seat_legroom_extra",
|
|
30
|
-
"airline_seat_legroom_normal",
|
|
31
|
-
"airline_seat_legroom_reduced",
|
|
32
|
-
"airline_seat_recline_extra",
|
|
33
|
-
"airline_seat_recline_normal",
|
|
34
|
-
"airplanemode_active",
|
|
35
|
-
"airplanemode_inactive",
|
|
36
|
-
"airplay",
|
|
37
|
-
"airport_shuttle",
|
|
38
|
-
"alarm",
|
|
39
|
-
"alarm_add",
|
|
40
|
-
"alarm_off",
|
|
41
|
-
"alarm_on",
|
|
42
|
-
"album",
|
|
43
|
-
"all_inclusive",
|
|
44
|
-
"all_out",
|
|
45
|
-
"android",
|
|
46
|
-
"announcement",
|
|
47
|
-
"apps",
|
|
48
|
-
"archive",
|
|
49
|
-
"arrow_back",
|
|
50
|
-
"arrow_downward",
|
|
51
|
-
"arrow_drop_down",
|
|
52
|
-
"arrow_drop_down_circle",
|
|
53
|
-
"arrow_drop_up",
|
|
54
|
-
"arrow_forward",
|
|
55
|
-
"arrow_upward",
|
|
56
|
-
"art_track",
|
|
57
|
-
"aspect_ratio",
|
|
58
|
-
"assessment",
|
|
59
|
-
"assignment",
|
|
60
|
-
"assignment_ind",
|
|
61
|
-
"assignment_late",
|
|
62
|
-
"assignment_return",
|
|
63
|
-
"assignment_returned",
|
|
64
|
-
"assignment_turned_in",
|
|
65
|
-
"assistant",
|
|
66
|
-
"assistant_photo",
|
|
67
|
-
"attach_file",
|
|
68
|
-
"attach_money",
|
|
69
|
-
"attachment",
|
|
70
|
-
"audiotrack",
|
|
71
|
-
"autorenew",
|
|
72
|
-
"av_timer",
|
|
73
|
-
"backspace",
|
|
74
|
-
"backup",
|
|
75
|
-
"battery_alert",
|
|
76
|
-
"battery_charging_full",
|
|
77
|
-
"battery_full",
|
|
78
|
-
"battery_std",
|
|
79
|
-
"battery_unknown",
|
|
80
|
-
"beach_access",
|
|
81
|
-
"beenhere",
|
|
82
|
-
"block",
|
|
83
|
-
"bluetooth",
|
|
84
|
-
"bluetooth_audio",
|
|
85
|
-
"bluetooth_connected",
|
|
86
|
-
"bluetooth_disabled",
|
|
87
|
-
"bluetooth_searching",
|
|
88
|
-
"blur_circular",
|
|
89
|
-
"blur_linear",
|
|
90
|
-
"blur_off",
|
|
91
|
-
"blur_on",
|
|
92
|
-
"book",
|
|
93
|
-
"bookmark",
|
|
94
|
-
"bookmark_border",
|
|
95
|
-
"border_all",
|
|
96
|
-
"border_bottom",
|
|
97
|
-
"border_clear",
|
|
98
|
-
"border_color",
|
|
99
|
-
"border_horizontal",
|
|
100
|
-
"border_inner",
|
|
101
|
-
"border_left",
|
|
102
|
-
"border_outer",
|
|
103
|
-
"border_right",
|
|
104
|
-
"border_style",
|
|
105
|
-
"border_top",
|
|
106
|
-
"border_vertical",
|
|
107
|
-
"branding_watermark",
|
|
108
|
-
"brightness_1",
|
|
109
|
-
"brightness_2",
|
|
110
|
-
"brightness_3",
|
|
111
|
-
"brightness_4",
|
|
112
|
-
"brightness_5",
|
|
113
|
-
"brightness_6",
|
|
114
|
-
"brightness_7",
|
|
115
|
-
"brightness_auto",
|
|
116
|
-
"brightness_high",
|
|
117
|
-
"brightness_low",
|
|
118
|
-
"brightness_medium",
|
|
119
|
-
"broken_image",
|
|
120
|
-
"brush",
|
|
121
|
-
"bubble_chart",
|
|
122
|
-
"bug_report",
|
|
123
|
-
"build",
|
|
124
|
-
"burst_mode",
|
|
125
|
-
"business",
|
|
126
|
-
"business_center",
|
|
127
|
-
"cached",
|
|
128
|
-
"cake",
|
|
129
|
-
"call",
|
|
130
|
-
"call_end",
|
|
131
|
-
"call_made",
|
|
132
|
-
"call_merge",
|
|
133
|
-
"call_missed",
|
|
134
|
-
"call_missed_outgoing",
|
|
135
|
-
"call_received",
|
|
136
|
-
"call_split",
|
|
137
|
-
"call_to_action",
|
|
138
|
-
"camera",
|
|
139
|
-
"camera_alt",
|
|
140
|
-
"camera_enhance",
|
|
141
|
-
"camera_front",
|
|
142
|
-
"camera_rear",
|
|
143
|
-
"camera_roll",
|
|
144
|
-
"cancel",
|
|
145
|
-
"card_giftcard",
|
|
146
|
-
"card_membership",
|
|
147
|
-
"card_travel",
|
|
148
|
-
"casino",
|
|
149
|
-
"cast",
|
|
150
|
-
"cast_connected",
|
|
151
|
-
"center_focus_strong",
|
|
152
|
-
"center_focus_weak",
|
|
153
|
-
"change_history",
|
|
154
|
-
"chat",
|
|
155
|
-
"chat_bubble",
|
|
156
|
-
"chat_bubble_outline",
|
|
157
|
-
"check",
|
|
158
|
-
"check_box",
|
|
159
|
-
"check_box_outline_blank",
|
|
160
|
-
"check_circle",
|
|
161
|
-
"chevron_left",
|
|
162
|
-
"chevron_right",
|
|
163
|
-
"child_care",
|
|
164
|
-
"child_friendly",
|
|
165
|
-
"chrome_reader_mode",
|
|
166
|
-
"class",
|
|
167
|
-
"clear",
|
|
168
|
-
"clear_all",
|
|
169
|
-
"close",
|
|
170
|
-
"closed_caption",
|
|
171
|
-
"cloud",
|
|
172
|
-
"cloud_circle",
|
|
173
|
-
"cloud_done",
|
|
174
|
-
"cloud_download",
|
|
175
|
-
"cloud_off",
|
|
176
|
-
"cloud_queue",
|
|
177
|
-
"cloud_upload",
|
|
178
|
-
"code",
|
|
179
|
-
"collections",
|
|
180
|
-
"collections_bookmark",
|
|
181
|
-
"color_lens",
|
|
182
|
-
"colorize",
|
|
183
|
-
"comment",
|
|
184
|
-
"compare",
|
|
185
|
-
"compare_arrows",
|
|
186
|
-
"computer",
|
|
187
|
-
"confirmation_number",
|
|
188
|
-
"contact_mail",
|
|
189
|
-
"contact_phone",
|
|
190
|
-
"contacts",
|
|
191
|
-
"content_copy",
|
|
192
|
-
"content_cut",
|
|
193
|
-
"content_paste",
|
|
194
|
-
"control_point",
|
|
195
|
-
"control_point_duplicate",
|
|
196
|
-
"copyright",
|
|
197
|
-
"create",
|
|
198
|
-
"create_new_folder",
|
|
199
|
-
"credit_card",
|
|
200
|
-
"crop",
|
|
201
|
-
"crop_16_9",
|
|
202
|
-
"crop_3_2",
|
|
203
|
-
"crop_5_4",
|
|
204
|
-
"crop_7_5",
|
|
205
|
-
"crop_din",
|
|
206
|
-
"crop_free",
|
|
207
|
-
"crop_landscape",
|
|
208
|
-
"crop_original",
|
|
209
|
-
"crop_portrait",
|
|
210
|
-
"crop_rotate",
|
|
211
|
-
"crop_square",
|
|
212
|
-
"dashboard",
|
|
213
|
-
"data_usage",
|
|
214
|
-
"date_range",
|
|
215
|
-
"dehaze",
|
|
216
|
-
"delete",
|
|
217
|
-
"delete_forever",
|
|
218
|
-
"delete_sweep",
|
|
219
|
-
"description",
|
|
220
|
-
"desktop_mac",
|
|
221
|
-
"desktop_windows",
|
|
222
|
-
"details",
|
|
223
|
-
"developer_board",
|
|
224
|
-
"developer_mode",
|
|
225
|
-
"device_hub",
|
|
226
|
-
"devices",
|
|
227
|
-
"devices_other",
|
|
228
|
-
"dialer_sip",
|
|
229
|
-
"dialpad",
|
|
230
|
-
"directions",
|
|
231
|
-
"directions_bike",
|
|
232
|
-
"directions_boat",
|
|
233
|
-
"directions_bus",
|
|
234
|
-
"directions_car",
|
|
235
|
-
"directions_railway",
|
|
236
|
-
"directions_run",
|
|
237
|
-
"directions_subway",
|
|
238
|
-
"directions_transit",
|
|
239
|
-
"directions_walk",
|
|
240
|
-
"disc_full",
|
|
241
|
-
"dns",
|
|
242
|
-
"do_not_disturb",
|
|
243
|
-
"do_not_disturb_alt",
|
|
244
|
-
"do_not_disturb_off",
|
|
245
|
-
"do_not_disturb_on",
|
|
246
|
-
"dock",
|
|
247
|
-
"domain",
|
|
248
|
-
"done",
|
|
249
|
-
"done_all",
|
|
250
|
-
"donut_large",
|
|
251
|
-
"donut_small",
|
|
252
|
-
"drafts",
|
|
253
|
-
"drag_handle",
|
|
254
|
-
"drive_eta",
|
|
255
|
-
"dvr",
|
|
256
|
-
"edit",
|
|
257
|
-
"edit_location",
|
|
258
|
-
"eject",
|
|
259
|
-
"email",
|
|
260
|
-
"enhanced_encryption",
|
|
261
|
-
"equalizer",
|
|
262
|
-
"error",
|
|
263
|
-
"error_outline",
|
|
264
|
-
"euro_symbol",
|
|
265
|
-
"ev_station",
|
|
266
|
-
"event",
|
|
267
|
-
"event_available",
|
|
268
|
-
"event_busy",
|
|
269
|
-
"event_note",
|
|
270
|
-
"event_seat",
|
|
271
|
-
"exit_to_app",
|
|
272
|
-
"expand_less",
|
|
273
|
-
"expand_more",
|
|
274
|
-
"explicit",
|
|
275
|
-
"explore",
|
|
276
|
-
"exposure",
|
|
277
|
-
"exposure_neg_1",
|
|
278
|
-
"exposure_neg_2",
|
|
279
|
-
"exposure_plus_1",
|
|
280
|
-
"exposure_plus_2",
|
|
281
|
-
"exposure_zero",
|
|
282
|
-
"extension",
|
|
283
|
-
"face",
|
|
284
|
-
"fast_forward",
|
|
285
|
-
"fast_rewind",
|
|
286
|
-
"favorite",
|
|
287
|
-
"favorite_border",
|
|
288
|
-
"featured_play_list",
|
|
289
|
-
"featured_video",
|
|
290
|
-
"feedback",
|
|
291
|
-
"fiber_dvr",
|
|
292
|
-
"fiber_manual_record",
|
|
293
|
-
"fiber_new",
|
|
294
|
-
"fiber_pin",
|
|
295
|
-
"fiber_smart_record",
|
|
296
|
-
"file_download",
|
|
297
|
-
"file_upload",
|
|
298
|
-
"filter",
|
|
299
|
-
"filter_1",
|
|
300
|
-
"filter_2",
|
|
301
|
-
"filter_3",
|
|
302
|
-
"filter_4",
|
|
303
|
-
"filter_5",
|
|
304
|
-
"filter_6",
|
|
305
|
-
"filter_7",
|
|
306
|
-
"filter_8",
|
|
307
|
-
"filter_9",
|
|
308
|
-
"filter_9_plus",
|
|
309
|
-
"filter_b_and_w",
|
|
310
|
-
"filter_center_focus",
|
|
311
|
-
"filter_drama",
|
|
312
|
-
"filter_frames",
|
|
313
|
-
"filter_hdr",
|
|
314
|
-
"filter_list",
|
|
315
|
-
"filter_none",
|
|
316
|
-
"filter_tilt_shift",
|
|
317
|
-
"filter_vintage",
|
|
318
|
-
"find_in_page",
|
|
319
|
-
"find_replace",
|
|
320
|
-
"fingerprint",
|
|
321
|
-
"first_page",
|
|
322
|
-
"fitness_center",
|
|
323
|
-
"flag",
|
|
324
|
-
"flare",
|
|
325
|
-
"flash_auto",
|
|
326
|
-
"flash_off",
|
|
327
|
-
"flash_on",
|
|
328
|
-
"flight",
|
|
329
|
-
"flight_land",
|
|
330
|
-
"flight_takeoff",
|
|
331
|
-
"flip",
|
|
332
|
-
"flip_to_back",
|
|
333
|
-
"flip_to_front",
|
|
334
|
-
"folder",
|
|
335
|
-
"folder_open",
|
|
336
|
-
"folder_shared",
|
|
337
|
-
"folder_special",
|
|
338
|
-
"font_download",
|
|
339
|
-
"format_align_center",
|
|
340
|
-
"format_align_justify",
|
|
341
|
-
"format_align_left",
|
|
342
|
-
"format_align_right",
|
|
343
|
-
"format_bold",
|
|
344
|
-
"format_clear",
|
|
345
|
-
"format_color_fill",
|
|
346
|
-
"format_color_reset",
|
|
347
|
-
"format_color_text",
|
|
348
|
-
"format_indent_decrease",
|
|
349
|
-
"format_indent_increase",
|
|
350
|
-
"format_italic",
|
|
351
|
-
"format_line_spacing",
|
|
352
|
-
"format_list_bulleted",
|
|
353
|
-
"format_list_numbered",
|
|
354
|
-
"format_paint",
|
|
355
|
-
"format_quote",
|
|
356
|
-
"format_shapes",
|
|
357
|
-
"format_size",
|
|
358
|
-
"format_strikethrough",
|
|
359
|
-
"format_textdirection_l_to_r",
|
|
360
|
-
"format_textdirection_r_to_l",
|
|
361
|
-
"format_underlined",
|
|
362
|
-
"forum",
|
|
363
|
-
"forward",
|
|
364
|
-
"forward_10",
|
|
365
|
-
"forward_30",
|
|
366
|
-
"forward_5",
|
|
367
|
-
"free_breakfast",
|
|
368
|
-
"fullscreen",
|
|
369
|
-
"fullscreen_exit",
|
|
370
|
-
"functions",
|
|
371
|
-
"g_translate",
|
|
372
|
-
"gamepad",
|
|
373
|
-
"games",
|
|
374
|
-
"gavel",
|
|
375
|
-
"gesture",
|
|
376
|
-
"get_app",
|
|
377
|
-
"gif",
|
|
378
|
-
"golf_course",
|
|
379
|
-
"gps_fixed",
|
|
380
|
-
"gps_not_fixed",
|
|
381
|
-
"gps_off",
|
|
382
|
-
"grade",
|
|
383
|
-
"gradient",
|
|
384
|
-
"grain",
|
|
385
|
-
"graphic_eq",
|
|
386
|
-
"grid_off",
|
|
387
|
-
"grid_on",
|
|
388
|
-
"group",
|
|
389
|
-
"group_add",
|
|
390
|
-
"group_work",
|
|
391
|
-
"hd",
|
|
392
|
-
"hdr_off",
|
|
393
|
-
"hdr_on",
|
|
394
|
-
"hdr_strong",
|
|
395
|
-
"hdr_weak",
|
|
396
|
-
"headset",
|
|
397
|
-
"headset_mic",
|
|
398
|
-
"healing",
|
|
399
|
-
"hearing",
|
|
400
|
-
"help",
|
|
401
|
-
"help_outline",
|
|
402
|
-
"high_quality",
|
|
403
|
-
"highlight",
|
|
404
|
-
"highlight_off",
|
|
405
|
-
"history",
|
|
406
|
-
"home",
|
|
407
|
-
"hot_tub",
|
|
408
|
-
"hotel",
|
|
409
|
-
"hourglass_empty",
|
|
410
|
-
"hourglass_full",
|
|
411
|
-
"http",
|
|
412
|
-
"https",
|
|
413
|
-
"image",
|
|
414
|
-
"image_aspect_ratio",
|
|
415
|
-
"import_contacts",
|
|
416
|
-
"import_export",
|
|
417
|
-
"important_devices",
|
|
418
|
-
"inbox",
|
|
419
|
-
"indeterminate_check_box",
|
|
420
|
-
"info",
|
|
421
|
-
"info_outline",
|
|
422
|
-
"input",
|
|
423
|
-
"insert_chart",
|
|
424
|
-
"insert_comment",
|
|
425
|
-
"insert_drive_file",
|
|
426
|
-
"insert_emoticon",
|
|
427
|
-
"insert_invitation",
|
|
428
|
-
"insert_link",
|
|
429
|
-
"insert_photo",
|
|
430
|
-
"invert_colors",
|
|
431
|
-
"invert_colors_off",
|
|
432
|
-
"iso",
|
|
433
|
-
"keyboard",
|
|
434
|
-
"keyboard_arrow_down",
|
|
435
|
-
"keyboard_arrow_left",
|
|
436
|
-
"keyboard_arrow_right",
|
|
437
|
-
"keyboard_arrow_up",
|
|
438
|
-
"keyboard_backspace",
|
|
439
|
-
"keyboard_capslock",
|
|
440
|
-
"keyboard_hide",
|
|
441
|
-
"keyboard_return",
|
|
442
|
-
"keyboard_tab",
|
|
443
|
-
"keyboard_voice",
|
|
444
|
-
"kitchen",
|
|
445
|
-
"label",
|
|
446
|
-
"label_outline",
|
|
447
|
-
"landscape",
|
|
448
|
-
"language",
|
|
449
|
-
"laptop",
|
|
450
|
-
"laptop_chromebook",
|
|
451
|
-
"laptop_mac",
|
|
452
|
-
"laptop_windows",
|
|
453
|
-
"last_page",
|
|
454
|
-
"launch",
|
|
455
|
-
"layers",
|
|
456
|
-
"layers_clear",
|
|
457
|
-
"leak_add",
|
|
458
|
-
"leak_remove",
|
|
459
|
-
"lens",
|
|
460
|
-
"library_add",
|
|
461
|
-
"library_books",
|
|
462
|
-
"library_music",
|
|
463
|
-
"lightbulb_outline",
|
|
464
|
-
"line_style",
|
|
465
|
-
"line_weight",
|
|
466
|
-
"linear_scale",
|
|
467
|
-
"link",
|
|
468
|
-
"linked_camera",
|
|
469
|
-
"list",
|
|
470
|
-
"live_help",
|
|
471
|
-
"live_tv",
|
|
472
|
-
"local_activity",
|
|
473
|
-
"local_airport",
|
|
474
|
-
"local_atm",
|
|
475
|
-
"local_bar",
|
|
476
|
-
"local_cafe",
|
|
477
|
-
"local_car_wash",
|
|
478
|
-
"local_convenience_store",
|
|
479
|
-
"local_dining",
|
|
480
|
-
"local_drink",
|
|
481
|
-
"local_florist",
|
|
482
|
-
"local_gas_station",
|
|
483
|
-
"local_grocery_store",
|
|
484
|
-
"local_hospital",
|
|
485
|
-
"local_hotel",
|
|
486
|
-
"local_laundry_service",
|
|
487
|
-
"local_library",
|
|
488
|
-
"local_mall",
|
|
489
|
-
"local_movies",
|
|
490
|
-
"local_offer",
|
|
491
|
-
"local_parking",
|
|
492
|
-
"local_pharmacy",
|
|
493
|
-
"local_phone",
|
|
494
|
-
"local_pizza",
|
|
495
|
-
"local_play",
|
|
496
|
-
"local_post_office",
|
|
497
|
-
"local_printshop",
|
|
498
|
-
"local_see",
|
|
499
|
-
"local_shipping",
|
|
500
|
-
"local_taxi",
|
|
501
|
-
"location_city",
|
|
502
|
-
"location_disabled",
|
|
503
|
-
"location_off",
|
|
504
|
-
"location_on",
|
|
505
|
-
"location_searching",
|
|
506
|
-
"lock",
|
|
507
|
-
"lock_open",
|
|
508
|
-
"lock_outline",
|
|
509
|
-
"looks",
|
|
510
|
-
"looks_3",
|
|
511
|
-
"looks_4",
|
|
512
|
-
"looks_5",
|
|
513
|
-
"looks_6",
|
|
514
|
-
"looks_one",
|
|
515
|
-
"looks_two",
|
|
516
|
-
"loop",
|
|
517
|
-
"loupe",
|
|
518
|
-
"low_priority",
|
|
519
|
-
"loyalty",
|
|
520
|
-
"mail",
|
|
521
|
-
"mail_outline",
|
|
522
|
-
"map",
|
|
523
|
-
"markunread",
|
|
524
|
-
"markunread_mailbox",
|
|
525
|
-
"memory",
|
|
526
|
-
"menu",
|
|
527
|
-
"merge_type",
|
|
528
|
-
"message",
|
|
529
|
-
"mic",
|
|
530
|
-
"mic_none",
|
|
531
|
-
"mic_off",
|
|
532
|
-
"mms",
|
|
533
|
-
"mode_comment",
|
|
534
|
-
"mode_edit",
|
|
535
|
-
"monetization_on",
|
|
536
|
-
"money_off",
|
|
537
|
-
"monochrome_photos",
|
|
538
|
-
"mood",
|
|
539
|
-
"mood_bad",
|
|
540
|
-
"more",
|
|
541
|
-
"more_horiz",
|
|
542
|
-
"more_vert",
|
|
543
|
-
"motorcycle",
|
|
544
|
-
"mouse",
|
|
545
|
-
"move_to_inbox",
|
|
546
|
-
"movie",
|
|
547
|
-
"movie_creation",
|
|
548
|
-
"movie_filter",
|
|
549
|
-
"multiline_chart",
|
|
550
|
-
"music_note",
|
|
551
|
-
"music_video",
|
|
552
|
-
"my_location",
|
|
553
|
-
"nature",
|
|
554
|
-
"nature_people",
|
|
555
|
-
"navigate_before",
|
|
556
|
-
"navigate_next",
|
|
557
|
-
"navigation",
|
|
558
|
-
"near_me",
|
|
559
|
-
"network_cell",
|
|
560
|
-
"network_check",
|
|
561
|
-
"network_locked",
|
|
562
|
-
"network_wifi",
|
|
563
|
-
"new_releases",
|
|
564
|
-
"next_week",
|
|
565
|
-
"nfc",
|
|
566
|
-
"no_encryption",
|
|
567
|
-
"no_sim",
|
|
568
|
-
"not_interested",
|
|
569
|
-
"note",
|
|
570
|
-
"note_add",
|
|
571
|
-
"notifications",
|
|
572
|
-
"notifications_active",
|
|
573
|
-
"notifications_none",
|
|
574
|
-
"notifications_off",
|
|
575
|
-
"notifications_paused",
|
|
576
|
-
"offline_pin",
|
|
577
|
-
"ondemand_video",
|
|
578
|
-
"opacity",
|
|
579
|
-
"open_in_browser",
|
|
580
|
-
"open_in_new",
|
|
581
|
-
"open_with",
|
|
582
|
-
"pages",
|
|
583
|
-
"pageview",
|
|
584
|
-
"palette",
|
|
585
|
-
"pan_tool",
|
|
586
|
-
"panorama",
|
|
587
|
-
"panorama_fish_eye",
|
|
588
|
-
"panorama_horizontal",
|
|
589
|
-
"panorama_vertical",
|
|
590
|
-
"panorama_wide_angle",
|
|
591
|
-
"party_mode",
|
|
592
|
-
"pause",
|
|
593
|
-
"pause_circle_filled",
|
|
594
|
-
"pause_circle_outline",
|
|
595
|
-
"payment",
|
|
596
|
-
"people",
|
|
597
|
-
"people_outline",
|
|
598
|
-
"perm_camera_mic",
|
|
599
|
-
"perm_contact_calendar",
|
|
600
|
-
"perm_data_setting",
|
|
601
|
-
"perm_device_information",
|
|
602
|
-
"perm_identity",
|
|
603
|
-
"perm_media",
|
|
604
|
-
"perm_phone_msg",
|
|
605
|
-
"perm_scan_wifi",
|
|
606
|
-
"person",
|
|
607
|
-
"person_add",
|
|
608
|
-
"person_outline",
|
|
609
|
-
"person_pin",
|
|
610
|
-
"person_pin_circle",
|
|
611
|
-
"personal_video",
|
|
612
|
-
"pets",
|
|
613
|
-
"phone",
|
|
614
|
-
"phone_android",
|
|
615
|
-
"phone_bluetooth_speaker",
|
|
616
|
-
"phone_forwarded",
|
|
617
|
-
"phone_in_talk",
|
|
618
|
-
"phone_iphone",
|
|
619
|
-
"phone_locked",
|
|
620
|
-
"phone_missed",
|
|
621
|
-
"phone_paused",
|
|
622
|
-
"phonelink",
|
|
623
|
-
"phonelink_erase",
|
|
624
|
-
"phonelink_lock",
|
|
625
|
-
"phonelink_off",
|
|
626
|
-
"phonelink_ring",
|
|
627
|
-
"phonelink_setup",
|
|
628
|
-
"photo",
|
|
629
|
-
"photo_album",
|
|
630
|
-
"photo_camera",
|
|
631
|
-
"photo_filter",
|
|
632
|
-
"photo_library",
|
|
633
|
-
"photo_size_select_actual",
|
|
634
|
-
"photo_size_select_large",
|
|
635
|
-
"photo_size_select_small",
|
|
636
|
-
"picture_as_pdf",
|
|
637
|
-
"picture_in_picture",
|
|
638
|
-
"picture_in_picture_alt",
|
|
639
|
-
"pie_chart",
|
|
640
|
-
"pie_chart_outlined",
|
|
641
|
-
"pin_drop",
|
|
642
|
-
"place",
|
|
643
|
-
"play_arrow",
|
|
644
|
-
"play_circle_filled",
|
|
645
|
-
"play_circle_outline",
|
|
646
|
-
"play_for_work",
|
|
647
|
-
"playlist_add",
|
|
648
|
-
"playlist_add_check",
|
|
649
|
-
"playlist_play",
|
|
650
|
-
"plus_one",
|
|
651
|
-
"poll",
|
|
652
|
-
"polymer",
|
|
653
|
-
"pool",
|
|
654
|
-
"portable_wifi_off",
|
|
655
|
-
"portrait",
|
|
656
|
-
"power",
|
|
657
|
-
"power_input",
|
|
658
|
-
"power_settings_new",
|
|
659
|
-
"pregnant_woman",
|
|
660
|
-
"present_to_all",
|
|
661
|
-
"print",
|
|
662
|
-
"priority_high",
|
|
663
|
-
"public",
|
|
664
|
-
"publish",
|
|
665
|
-
"query_builder",
|
|
666
|
-
"question_answer",
|
|
667
|
-
"queue",
|
|
668
|
-
"queue_music",
|
|
669
|
-
"queue_play_next",
|
|
670
|
-
"radio",
|
|
671
|
-
"radio_button_checked",
|
|
672
|
-
"radio_button_unchecked",
|
|
673
|
-
"rate_review",
|
|
674
|
-
"receipt",
|
|
675
|
-
"recent_actors",
|
|
676
|
-
"record_voice_over",
|
|
677
|
-
"redeem",
|
|
678
|
-
"redo",
|
|
679
|
-
"refresh",
|
|
680
|
-
"remove",
|
|
681
|
-
"remove_circle",
|
|
682
|
-
"remove_circle_outline",
|
|
683
|
-
"remove_from_queue",
|
|
684
|
-
"remove_red_eye",
|
|
685
|
-
"remove_shopping_cart",
|
|
686
|
-
"reorder",
|
|
687
|
-
"repeat",
|
|
688
|
-
"repeat_one",
|
|
689
|
-
"replay",
|
|
690
|
-
"replay_10",
|
|
691
|
-
"replay_30",
|
|
692
|
-
"replay_5",
|
|
693
|
-
"reply",
|
|
694
|
-
"reply_all",
|
|
695
|
-
"report",
|
|
696
|
-
"report_problem",
|
|
697
|
-
"restaurant",
|
|
698
|
-
"restaurant_menu",
|
|
699
|
-
"restore",
|
|
700
|
-
"restore_page",
|
|
701
|
-
"ring_volume",
|
|
702
|
-
"room",
|
|
703
|
-
"room_service",
|
|
704
|
-
"rotate_90_degrees_ccw",
|
|
705
|
-
"rotate_left",
|
|
706
|
-
"rotate_right",
|
|
707
|
-
"rounded_corner",
|
|
708
|
-
"router",
|
|
709
|
-
"rowing",
|
|
710
|
-
"rss_feed",
|
|
711
|
-
"rv_hookup",
|
|
712
|
-
"satellite",
|
|
713
|
-
"save",
|
|
714
|
-
"scanner",
|
|
715
|
-
"schedule",
|
|
716
|
-
"school",
|
|
717
|
-
"screen_lock_landscape",
|
|
718
|
-
"screen_lock_portrait",
|
|
719
|
-
"screen_lock_rotation",
|
|
720
|
-
"screen_rotation",
|
|
721
|
-
"screen_share",
|
|
722
|
-
"sd_card",
|
|
723
|
-
"sd_storage",
|
|
724
|
-
"search",
|
|
725
|
-
"security",
|
|
726
|
-
"select_all",
|
|
727
|
-
"send",
|
|
728
|
-
"sentiment_dissatisfied",
|
|
729
|
-
"sentiment_neutral",
|
|
730
|
-
"sentiment_satisfied",
|
|
731
|
-
"sentiment_very_dissatisfied",
|
|
732
|
-
"sentiment_very_satisfied",
|
|
733
|
-
"settings",
|
|
734
|
-
"settings_applications",
|
|
735
|
-
"settings_backup_restore",
|
|
736
|
-
"settings_bluetooth",
|
|
737
|
-
"settings_brightness",
|
|
738
|
-
"settings_cell",
|
|
739
|
-
"settings_ethernet",
|
|
740
|
-
"settings_input_antenna",
|
|
741
|
-
"settings_input_component",
|
|
742
|
-
"settings_input_composite",
|
|
743
|
-
"settings_input_hdmi",
|
|
744
|
-
"settings_input_svideo",
|
|
745
|
-
"settings_overscan",
|
|
746
|
-
"settings_phone",
|
|
747
|
-
"settings_power",
|
|
748
|
-
"settings_remote",
|
|
749
|
-
"settings_system_daydream",
|
|
750
|
-
"settings_voice",
|
|
751
|
-
"share",
|
|
752
|
-
"shop",
|
|
753
|
-
"shop_two",
|
|
754
|
-
"shopping_basket",
|
|
755
|
-
"shopping_cart",
|
|
756
|
-
"short_text",
|
|
757
|
-
"show_chart",
|
|
758
|
-
"shuffle",
|
|
759
|
-
"signal_cellular_4_bar",
|
|
760
|
-
"signal_cellular_connected_no_internet_4_bar",
|
|
761
|
-
"signal_cellular_no_sim",
|
|
762
|
-
"signal_cellular_null",
|
|
763
|
-
"signal_cellular_off",
|
|
764
|
-
"signal_wifi_4_bar",
|
|
765
|
-
"signal_wifi_4_bar_lock",
|
|
766
|
-
"signal_wifi_off",
|
|
767
|
-
"sim_card",
|
|
768
|
-
"sim_card_alert",
|
|
769
|
-
"skip_next",
|
|
770
|
-
"skip_previous",
|
|
771
|
-
"slideshow",
|
|
772
|
-
"slow_motion_video",
|
|
773
|
-
"smartphone",
|
|
774
|
-
"smoke_free",
|
|
775
|
-
"smoking_rooms",
|
|
776
|
-
"sms",
|
|
777
|
-
"sms_failed",
|
|
778
|
-
"snooze",
|
|
779
|
-
"sort",
|
|
780
|
-
"sort_by_alpha",
|
|
781
|
-
"spa",
|
|
782
|
-
"space_bar",
|
|
783
|
-
"speaker",
|
|
784
|
-
"speaker_group",
|
|
785
|
-
"speaker_notes",
|
|
786
|
-
"speaker_notes_off",
|
|
787
|
-
"speaker_phone",
|
|
788
|
-
"spellcheck",
|
|
789
|
-
"star",
|
|
790
|
-
"star_border",
|
|
791
|
-
"star_half",
|
|
792
|
-
"stars",
|
|
793
|
-
"stay_current_landscape",
|
|
794
|
-
"stay_current_portrait",
|
|
795
|
-
"stay_primary_landscape",
|
|
796
|
-
"stay_primary_portrait",
|
|
797
|
-
"stop",
|
|
798
|
-
"stop_screen_share",
|
|
799
|
-
"storage",
|
|
800
|
-
"store",
|
|
801
|
-
"store_mall_directory",
|
|
802
|
-
"straighten",
|
|
803
|
-
"streetview",
|
|
804
|
-
"strikethrough_s",
|
|
805
|
-
"style",
|
|
806
|
-
"subdirectory_arrow_left",
|
|
807
|
-
"subdirectory_arrow_right",
|
|
808
|
-
"subject",
|
|
809
|
-
"subscriptions",
|
|
810
|
-
"subtitles",
|
|
811
|
-
"subway",
|
|
812
|
-
"supervisor_account",
|
|
813
|
-
"surround_sound",
|
|
814
|
-
"swap_calls",
|
|
815
|
-
"swap_horiz",
|
|
816
|
-
"swap_vert",
|
|
817
|
-
"swap_vertical_circle",
|
|
818
|
-
"switch_camera",
|
|
819
|
-
"switch_video",
|
|
820
|
-
"sync",
|
|
821
|
-
"sync_disabled",
|
|
822
|
-
"sync_problem",
|
|
823
|
-
"system_update",
|
|
824
|
-
"system_update_alt",
|
|
825
|
-
"tab",
|
|
826
|
-
"tab_unselected",
|
|
827
|
-
"tablet",
|
|
828
|
-
"tablet_android",
|
|
829
|
-
"tablet_mac",
|
|
830
|
-
"tag_faces",
|
|
831
|
-
"tap_and_play",
|
|
832
|
-
"terrain",
|
|
833
|
-
"text_fields",
|
|
834
|
-
"text_format",
|
|
835
|
-
"textsms",
|
|
836
|
-
"texture",
|
|
837
|
-
"theaters",
|
|
838
|
-
"thumb_down",
|
|
839
|
-
"thumb_up",
|
|
840
|
-
"thumbs_up_down",
|
|
841
|
-
"time_to_leave",
|
|
842
|
-
"timelapse",
|
|
843
|
-
"timeline",
|
|
844
|
-
"timer",
|
|
845
|
-
"timer_10",
|
|
846
|
-
"timer_3",
|
|
847
|
-
"timer_off",
|
|
848
|
-
"title",
|
|
849
|
-
"toc",
|
|
850
|
-
"today",
|
|
851
|
-
"toll",
|
|
852
|
-
"tonality",
|
|
853
|
-
"touch_app",
|
|
854
|
-
"toys",
|
|
855
|
-
"track_changes",
|
|
856
|
-
"traffic",
|
|
857
|
-
"train",
|
|
858
|
-
"tram",
|
|
859
|
-
"transfer_within_a_station",
|
|
860
|
-
"transform",
|
|
861
|
-
"translate",
|
|
862
|
-
"trending_down",
|
|
863
|
-
"trending_flat",
|
|
864
|
-
"trending_up",
|
|
865
|
-
"tune",
|
|
866
|
-
"turned_in",
|
|
867
|
-
"turned_in_not",
|
|
868
|
-
"tv",
|
|
869
|
-
"unarchive",
|
|
870
|
-
"undo",
|
|
871
|
-
"unfold_less",
|
|
872
|
-
"unfold_more",
|
|
873
|
-
"update",
|
|
874
|
-
"usb",
|
|
875
|
-
"verified_user",
|
|
876
|
-
"vertical_align_bottom",
|
|
877
|
-
"vertical_align_center",
|
|
878
|
-
"vertical_align_top",
|
|
879
|
-
"vibration",
|
|
880
|
-
"video_call",
|
|
881
|
-
"video_label",
|
|
882
|
-
"video_library",
|
|
883
|
-
"videocam",
|
|
884
|
-
"videocam_off",
|
|
885
|
-
"videogame_asset",
|
|
886
|
-
"view_agenda",
|
|
887
|
-
"view_array",
|
|
888
|
-
"view_carousel",
|
|
889
|
-
"view_column",
|
|
890
|
-
"view_comfy",
|
|
891
|
-
"view_compact",
|
|
892
|
-
"view_day",
|
|
893
|
-
"view_headline",
|
|
894
|
-
"view_list",
|
|
895
|
-
"view_module",
|
|
896
|
-
"view_quilt",
|
|
897
|
-
"view_stream",
|
|
898
|
-
"view_week",
|
|
899
|
-
"vignette",
|
|
900
|
-
"visibility",
|
|
901
|
-
"visibility_off",
|
|
902
|
-
"voice_chat",
|
|
903
|
-
"voicemail",
|
|
904
|
-
"volume_down",
|
|
905
|
-
"volume_mute",
|
|
906
|
-
"volume_off",
|
|
907
|
-
"volume_up",
|
|
908
|
-
"vpn_key",
|
|
909
|
-
"vpn_lock",
|
|
910
|
-
"wallpaper",
|
|
911
|
-
"warning",
|
|
912
|
-
"watch",
|
|
913
|
-
"watch_later",
|
|
914
|
-
"wb_auto",
|
|
915
|
-
"wb_cloudy",
|
|
916
|
-
"wb_incandescent",
|
|
917
|
-
"wb_iridescent",
|
|
918
|
-
"wb_sunny",
|
|
919
|
-
"wc",
|
|
920
|
-
"web",
|
|
921
|
-
"web_asset",
|
|
922
|
-
"weekend",
|
|
923
|
-
"whatshot",
|
|
924
|
-
"widgets",
|
|
925
|
-
"wifi",
|
|
926
|
-
"wifi_lock",
|
|
927
|
-
"wifi_tethering",
|
|
928
|
-
"work",
|
|
929
|
-
"wrap_text",
|
|
930
|
-
"youtube_searched_for",
|
|
931
|
-
"zoom_in",
|
|
932
|
-
"zoom_out",
|
|
933
|
-
"zoom_out_map"
|
|
934
|
-
]
|