@connectif/ui-components 0.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/dist/components/alert/Alert.d.ts +33 -0
- package/dist/components/alert/Alert.theme.d.ts +2 -0
- package/dist/components/alert/AlertTitle.theme.d.ts +2 -0
- package/dist/components/alert/index.d.ts +1 -0
- package/dist/components/avatar/Avatar.d.ts +91 -0
- package/dist/components/avatar/AvatarCard.d.ts +9 -0
- package/dist/components/avatar/AvatarMultiple.d.ts +35 -0
- package/dist/components/avatar/index.d.ts +3 -0
- package/dist/components/button/BadgeToggleButton.d.ts +42 -0
- package/dist/components/button/Button.d.ts +175 -0
- package/dist/components/button/Button.theme.d.ts +2 -0
- package/dist/components/button/ButtonGroup.d.ts +26 -0
- package/dist/components/button/ButtonWithActions.d.ts +68 -0
- package/dist/components/button/IconButton.d.ts +78 -0
- package/dist/components/button/IconButton.theme.d.ts +2 -0
- package/dist/components/button/IconToggleButton.d.ts +35 -0
- package/dist/components/button/MenuButton.d.ts +56 -0
- package/dist/components/button/MenuIconButton.d.ts +77 -0
- package/dist/components/button/MenuItem.theme.d.ts +2 -0
- package/dist/components/button/ToggleButton.d.ts +28 -0
- package/dist/components/button/ToggleButton.theme.d.ts +2 -0
- package/dist/components/button/ToggleButtonGroup.d.ts +40 -0
- package/dist/components/button/UploadButton.d.ts +25 -0
- package/dist/components/button/index.d.ts +11 -0
- package/dist/components/card/Card.d.ts +40 -0
- package/dist/components/card/CardActions.d.ts +17 -0
- package/dist/components/card/CardChips.d.ts +17 -0
- package/dist/components/card/CardDescription.d.ts +13 -0
- package/dist/components/card/CardImage.d.ts +22 -0
- package/dist/components/card/CardStatus.d.ts +23 -0
- package/dist/components/card/CardTable.d.ts +22 -0
- package/dist/components/card/CardTitle.d.ts +22 -0
- package/dist/components/card/CardTitleWithIcon.d.ts +29 -0
- package/dist/components/card/EnhancedCard.d.ts +97 -0
- package/dist/components/card/EnhancedCardImage.d.ts +43 -0
- package/dist/components/card/EnhancedCardRow.d.ts +11 -0
- package/dist/components/card/EnhancedCardSubtitle.d.ts +26 -0
- package/dist/components/card/EnhancedCardTitle.d.ts +38 -0
- package/dist/components/card/index.d.ts +14 -0
- package/dist/components/chart/BarChart.d.ts +84 -0
- package/dist/components/chart/CategorizedChartProps.d.ts +35 -0
- package/dist/components/chart/ChartUtils.d.ts +8 -0
- package/dist/components/chart/DonutChart.d.ts +79 -0
- package/dist/components/chart/DonutChartLegendItem.d.ts +9 -0
- package/dist/components/chart/EchartsConfig.d.ts +1 -0
- package/dist/components/chart/FunnelChart.d.ts +84 -0
- package/dist/components/chart/IncrementLabel.d.ts +18 -0
- package/dist/components/chart/LineChart.d.ts +98 -0
- package/dist/components/chart/MicroPieChart.d.ts +18 -0
- package/dist/components/chart/RankingChart.d.ts +33 -0
- package/dist/components/chart/RankingChartItem.d.ts +7 -0
- package/dist/components/chart/RankingChartTooltip.d.ts +15 -0
- package/dist/components/chart/WeekChart.d.ts +41 -0
- package/dist/components/chart/WeekChartItem.d.ts +5 -0
- package/dist/components/chart/WeekChartTooltip.d.ts +19 -0
- package/dist/components/chart/index.d.ts +8 -0
- package/dist/components/chat/Chat.d.ts +13 -0
- package/dist/components/chat/ChatMessage.d.ts +35 -0
- package/dist/components/chat/index.d.ts +2 -0
- package/dist/components/chip/Chip.d.ts +1002 -0
- package/dist/components/chip/ChipList.d.ts +14 -0
- package/dist/components/chip/MenuChip.d.ts +56 -0
- package/dist/components/chip/index.d.ts +3 -0
- package/dist/components/dialog/ConfirmationDialog.d.ts +54 -0
- package/dist/components/dialog/Dialog.d.ts +16 -0
- package/dist/components/dialog/index.d.ts +2 -0
- package/dist/components/divider/Divider.d.ts +18 -0
- package/dist/components/divider/index.d.ts +1 -0
- package/dist/components/drawer/Drawer.d.ts +9 -0
- package/dist/components/drawer/InputDrawer.d.ts +41 -0
- package/dist/components/drawer/index.d.ts +2 -0
- package/dist/components/formatter/CompactNumberFormatter.d.ts +13 -0
- package/dist/components/formatter/CurrencyFormatter.d.ts +21 -0
- package/dist/components/formatter/DateFormatter.d.ts +18 -0
- package/dist/components/formatter/NumberFormatter.d.ts +17 -0
- package/dist/components/formatter/PercentageFormatter.d.ts +17 -0
- package/dist/components/formatter/index.d.ts +5 -0
- package/dist/components/header/Header.d.ts +33 -0
- package/dist/components/header/HeaderSubtitle.d.ts +13 -0
- package/dist/components/header/HeaderTitle.d.ts +13 -0
- package/dist/components/header/index.d.ts +3 -0
- package/dist/components/icon/Icon.d.ts +47 -0
- package/dist/components/icon/StackedIcons.d.ts +13 -0
- package/dist/components/icon/SvgIcon.theme.d.ts +2 -0
- package/dist/components/icon/icons.d.ts +1953 -0
- package/dist/components/icon/index.d.ts +1 -0
- package/dist/components/image/ImageEditor.d.ts +12 -0
- package/dist/components/image/index.d.ts +1 -0
- package/dist/components/index.d.ts +35 -0
- package/dist/components/info/InfoBox.d.ts +10 -0
- package/dist/components/info/index.d.ts +1 -0
- package/dist/components/input/Autocomplete.d.ts +118 -0
- package/dist/components/input/CalendarDay.d.ts +17 -0
- package/dist/components/input/CalendarMonth.d.ts +19 -0
- package/dist/components/input/CalendarScrollPicker.d.ts +17 -0
- package/dist/components/input/CategorizedPicker.d.ts +22 -0
- package/dist/components/input/Checkbox.d.ts +39 -0
- package/dist/components/input/CodeEditor.d.ts +29 -0
- package/dist/components/input/CodeEditorPopup.d.ts +18 -0
- package/dist/components/input/ColorPicker.d.ts +62 -0
- package/dist/components/input/DateIntervalPicker.d.ts +84 -0
- package/dist/components/input/DateIntervalPickerInputs.d.ts +18 -0
- package/dist/components/input/DateIntervalPickerList.d.ts +35 -0
- package/dist/components/input/DateIntervalPickerPopover.d.ts +32 -0
- package/dist/components/input/DatePicker.d.ts +59 -0
- package/dist/components/input/DatePickerPopover.d.ts +10 -0
- package/dist/components/input/DatePickerStatic.d.ts +9 -0
- package/dist/components/input/DaysOfWeekPicker.d.ts +11 -0
- package/dist/components/input/DaysOfWeekRow.d.ts +3 -0
- package/dist/components/input/DebouncedTextField.d.ts +18 -0
- package/dist/components/input/InputHelperText.d.ts +29 -0
- package/dist/components/input/InputLabel.d.ts +47 -0
- package/dist/components/input/ItemSelector.d.ts +27 -0
- package/dist/components/input/NumberField.d.ts +106 -0
- package/dist/components/input/PageSelector.d.ts +30 -0
- package/dist/components/input/PhoneField.d.ts +43 -0
- package/dist/components/input/Radio.d.ts +49 -0
- package/dist/components/input/Select.d.ts +89 -0
- package/dist/components/input/SelectPopover.d.ts +107 -0
- package/dist/components/input/SelectPopoverItem.d.ts +17 -0
- package/dist/components/input/Switch.d.ts +22 -0
- package/dist/components/input/Switch.theme.d.ts +2 -0
- package/dist/components/input/TextEditor.d.ts +123 -0
- package/dist/components/input/TextField.d.ts +156 -0
- package/dist/components/input/TextFieldContainer.d.ts +95 -0
- package/dist/components/input/TimeField.d.ts +20 -0
- package/dist/components/input/TimezoneSelector.d.ts +7 -0
- package/dist/components/input/UploadClickableArea.d.ts +14 -0
- package/dist/components/input/index.d.ts +26 -0
- package/dist/components/layout/Box.d.ts +2 -0
- package/dist/components/layout/Collapse.d.ts +5 -0
- package/dist/components/layout/CollapsiblePanel.d.ts +48 -0
- package/dist/components/layout/CollapsiblePanelSwitcher.d.ts +87 -0
- package/dist/components/layout/Container.d.ts +5 -0
- package/dist/components/layout/Container.theme.d.ts +2 -0
- package/dist/components/layout/Grid.d.ts +8 -0
- package/dist/components/layout/LazyLoad.d.ts +5 -0
- package/dist/components/layout/PageScrollContext.d.ts +5 -0
- package/dist/components/layout/PageWithHeader.d.ts +13 -0
- package/dist/components/layout/PageWithNavbar.d.ts +13 -0
- package/dist/components/layout/PageWithSidePanel.d.ts +17 -0
- package/dist/components/layout/PageWithToolBox.d.ts +17 -0
- package/dist/components/layout/PageWithToolbar.d.ts +18 -0
- package/dist/components/layout/Paper.d.ts +13 -0
- package/dist/components/layout/SidePanel.d.ts +7 -0
- package/dist/components/layout/Stack.d.ts +2 -0
- package/dist/components/layout/Stepper.d.ts +23 -0
- package/dist/components/layout/SwipeableViews.d.ts +8 -0
- package/dist/components/layout/ToolBox.d.ts +12 -0
- package/dist/components/layout/index.d.ts +17 -0
- package/dist/components/list/BaseListItem.d.ts +70 -0
- package/dist/components/list/List.d.ts +5 -0
- package/dist/components/list/ListItem.d.ts +16 -0
- package/dist/components/list/ListItemButton.d.ts +42 -0
- package/dist/components/list/ListItemText.d.ts +17 -0
- package/dist/components/list/index.d.ts +3 -0
- package/dist/components/loader/Loader.d.ts +32 -0
- package/dist/components/loader/index.d.ts +1 -0
- package/dist/components/navbar/Navbar.d.ts +41 -0
- package/dist/components/navbar/NavbarButton.d.ts +39 -0
- package/dist/components/navbar/NavbarHeader.d.ts +12 -0
- package/dist/components/navbar/NavbarLogo.d.ts +16 -0
- package/dist/components/navbar/index.d.ts +4 -0
- package/dist/components/overlay/DonutFocusOverlay.d.ts +11 -0
- package/dist/components/overlay/index.d.ts +1 -0
- package/dist/components/pager/Pager.d.ts +31 -0
- package/dist/components/pager/index.d.ts +1 -0
- package/dist/components/popover/Popover.d.ts +26 -0
- package/dist/components/popover/Popover.theme.d.ts +2 -0
- package/dist/components/popover/PopoverActions.d.ts +21 -0
- package/dist/components/popover/index.d.ts +2 -0
- package/dist/components/progress/CircularProgress.d.ts +35 -0
- package/dist/components/progress/DonutProgress.d.ts +45 -0
- package/dist/components/progress/LinearProgress.d.ts +19 -0
- package/dist/components/progress/LinearProgress.theme.d.ts +2 -0
- package/dist/components/progress/index.d.ts +2 -0
- package/dist/components/scrollable/HorizontalScrollable.d.ts +18 -0
- package/dist/components/scrollable/index.d.ts +1 -0
- package/dist/components/skeleton/Skeleton.d.ts +8 -0
- package/dist/components/skeleton/index.d.ts +1 -0
- package/dist/components/snackbar/Snackbar.d.ts +52 -0
- package/dist/components/snackbar/SnackbarProvider.d.ts +10 -0
- package/dist/components/snackbar/enqueueSnackbar.d.ts +27 -0
- package/dist/components/snackbar/index.d.ts +3 -0
- package/dist/components/tab/TabButton.d.ts +30 -0
- package/dist/components/tab/TabContent.d.ts +7 -0
- package/dist/components/tab/Tabs.d.ts +52 -0
- package/dist/components/tab/Tabs.theme.d.ts +2 -0
- package/dist/components/tab/index.d.ts +3 -0
- package/dist/components/table/NestedTable.d.ts +29 -0
- package/dist/components/table/Table.d.ts +5 -0
- package/dist/components/table/Table.theme.d.ts +2 -0
- package/dist/components/table/TableBody.d.ts +4 -0
- package/dist/components/table/TableCell.d.ts +20 -0
- package/dist/components/table/TableCell.theme.d.ts +2 -0
- package/dist/components/table/TableCellCopy.d.ts +10 -0
- package/dist/components/table/TableDivider.d.ts +3 -0
- package/dist/components/table/TableHead.d.ts +4 -0
- package/dist/components/table/TableRow.d.ts +9 -0
- package/dist/components/table/TableSortLabel.d.ts +8 -0
- package/dist/components/table/index.d.ts +9 -0
- package/dist/components/toolbar/Toolbar.d.ts +24 -0
- package/dist/components/toolbar/ToolbarBreadcrumb.d.ts +15 -0
- package/dist/components/toolbar/ToolbarBreadcrumbButton.d.ts +11 -0
- package/dist/components/toolbar/ToolbarTitle.d.ts +27 -0
- package/dist/components/toolbar/index.d.ts +4 -0
- package/dist/components/tooltip/TextEllipsis.d.ts +18 -0
- package/dist/components/tooltip/TextEllipsisTooltip.d.ts +27 -0
- package/dist/components/tooltip/Tooltip.d.ts +59 -0
- package/dist/components/tooltip/Tooltip.theme.d.ts +2 -0
- package/dist/components/tooltip/TooltipMenu.d.ts +35 -0
- package/dist/components/tooltip/index.d.ts +4 -0
- package/dist/components/transition/Slide.d.ts +3 -0
- package/dist/components/transition/index.d.ts +1 -0
- package/dist/components/typography/TextMarker.d.ts +32 -0
- package/dist/components/typography/Typography.d.ts +39 -0
- package/dist/components/typography/index.d.ts +2 -0
- package/dist/components/widget/Widget.d.ts +7 -0
- package/dist/components/widget/WidgetActions.d.ts +8 -0
- package/dist/components/widget/WidgetLegendItem.d.ts +65 -0
- package/dist/components/widget/WidgetTitle.d.ts +23 -0
- package/dist/components/widget/index.d.ts +4 -0
- package/dist/components/window/MinimizableWindow.d.ts +98 -0
- package/dist/components/window/index.d.ts +1 -0
- package/dist/contexts/IntlContext.d.ts +7 -0
- package/dist/contexts/index.d.ts +1 -0
- package/dist/hooks/index.d.ts +3 -0
- package/dist/hooks/useDebouncedCallback.d.ts +1 -0
- package/dist/hooks/useFormatters.d.ts +8 -0
- package/dist/hooks/useResizeObserver.d.ts +7 -0
- package/dist/i18n/TranslationKey.d.ts +11 -0
- package/dist/i18n/en.d.ts +202 -0
- package/dist/i18n/es.d.ts +202 -0
- package/dist/i18n/fr.d.ts +202 -0
- package/dist/i18n/it.d.ts +202 -0
- package/dist/i18n/pt.d.ts +202 -0
- package/dist/i18n/translate.d.ts +4 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +25410 -0
- package/dist/models/ComparisonInterval.d.ts +1 -0
- package/dist/models/DateInputFormat.d.ts +4 -0
- package/dist/models/DateInterval.d.ts +1 -0
- package/dist/models/SimpleDate.d.ts +8 -0
- package/dist/propTypes/IncrementLabel.d.ts +15 -0
- package/dist/propTypes/index.d.ts +1 -0
- package/dist/src/components/alert/Alert.d.ts +33 -0
- package/dist/src/components/alert/Alert.theme.d.ts +2 -0
- package/dist/src/components/alert/AlertTitle.theme.d.ts +2 -0
- package/dist/src/components/alert/index.d.ts +1 -0
- package/dist/src/components/avatar/Avatar.d.ts +91 -0
- package/dist/src/components/avatar/AvatarCard.d.ts +9 -0
- package/dist/src/components/avatar/AvatarMultiple.d.ts +35 -0
- package/dist/src/components/avatar/index.d.ts +3 -0
- package/dist/src/components/button/BadgeToggleButton.d.ts +42 -0
- package/dist/src/components/button/Button.d.ts +175 -0
- package/dist/src/components/button/Button.theme.d.ts +2 -0
- package/dist/src/components/button/ButtonGroup.d.ts +26 -0
- package/dist/src/components/button/ButtonWithActions.d.ts +68 -0
- package/dist/src/components/button/IconButton.d.ts +78 -0
- package/dist/src/components/button/IconButton.theme.d.ts +2 -0
- package/dist/src/components/button/IconToggleButton.d.ts +35 -0
- package/dist/src/components/button/MenuButton.d.ts +56 -0
- package/dist/src/components/button/MenuIconButton.d.ts +77 -0
- package/dist/src/components/button/MenuItem.theme.d.ts +2 -0
- package/dist/src/components/button/ToggleButton.d.ts +28 -0
- package/dist/src/components/button/ToggleButton.theme.d.ts +2 -0
- package/dist/src/components/button/ToggleButtonGroup.d.ts +40 -0
- package/dist/src/components/button/UploadButton.d.ts +25 -0
- package/dist/src/components/button/index.d.ts +11 -0
- package/dist/src/components/card/Card.d.ts +40 -0
- package/dist/src/components/card/CardActions.d.ts +17 -0
- package/dist/src/components/card/CardChips.d.ts +17 -0
- package/dist/src/components/card/CardDescription.d.ts +13 -0
- package/dist/src/components/card/CardImage.d.ts +22 -0
- package/dist/src/components/card/CardStatus.d.ts +23 -0
- package/dist/src/components/card/CardTable.d.ts +22 -0
- package/dist/src/components/card/CardTitle.d.ts +22 -0
- package/dist/src/components/card/CardTitleWithIcon.d.ts +29 -0
- package/dist/src/components/card/EnhancedCard.d.ts +97 -0
- package/dist/src/components/card/EnhancedCardImage.d.ts +43 -0
- package/dist/src/components/card/EnhancedCardRow.d.ts +11 -0
- package/dist/src/components/card/EnhancedCardSubtitle.d.ts +26 -0
- package/dist/src/components/card/EnhancedCardTitle.d.ts +38 -0
- package/dist/src/components/card/index.d.ts +14 -0
- package/dist/src/components/chart/BarChart.d.ts +84 -0
- package/dist/src/components/chart/CategorizedChartProps.d.ts +35 -0
- package/dist/src/components/chart/ChartUtils.d.ts +8 -0
- package/dist/src/components/chart/DonutChart.d.ts +79 -0
- package/dist/src/components/chart/DonutChartLegendItem.d.ts +9 -0
- package/dist/src/components/chart/EchartsConfig.d.ts +1 -0
- package/dist/src/components/chart/FunnelChart.d.ts +84 -0
- package/dist/src/components/chart/IncrementLabel.d.ts +18 -0
- package/dist/src/components/chart/LineChart.d.ts +98 -0
- package/dist/src/components/chart/MicroPieChart.d.ts +18 -0
- package/dist/src/components/chart/RankingChart.d.ts +33 -0
- package/dist/src/components/chart/RankingChartItem.d.ts +7 -0
- package/dist/src/components/chart/RankingChartTooltip.d.ts +15 -0
- package/dist/src/components/chart/WeekChart.d.ts +41 -0
- package/dist/src/components/chart/WeekChartItem.d.ts +5 -0
- package/dist/src/components/chart/WeekChartTooltip.d.ts +19 -0
- package/dist/src/components/chart/index.d.ts +8 -0
- package/dist/src/components/chat/Chat.d.ts +13 -0
- package/dist/src/components/chat/ChatMessage.d.ts +35 -0
- package/dist/src/components/chat/index.d.ts +2 -0
- package/dist/src/components/chip/Chip.d.ts +1002 -0
- package/dist/src/components/chip/ChipList.d.ts +14 -0
- package/dist/src/components/chip/MenuChip.d.ts +56 -0
- package/dist/src/components/chip/index.d.ts +3 -0
- package/dist/src/components/dialog/ConfirmationDialog.d.ts +54 -0
- package/dist/src/components/dialog/Dialog.d.ts +16 -0
- package/dist/src/components/dialog/index.d.ts +2 -0
- package/dist/src/components/divider/Divider.d.ts +18 -0
- package/dist/src/components/divider/index.d.ts +1 -0
- package/dist/src/components/drawer/Drawer.d.ts +9 -0
- package/dist/src/components/drawer/InputDrawer.d.ts +41 -0
- package/dist/src/components/drawer/index.d.ts +2 -0
- package/dist/src/components/formatter/CompactNumberFormatter.d.ts +13 -0
- package/dist/src/components/formatter/CurrencyFormatter.d.ts +21 -0
- package/dist/src/components/formatter/DateFormatter.d.ts +18 -0
- package/dist/src/components/formatter/NumberFormatter.d.ts +17 -0
- package/dist/src/components/formatter/PercentageFormatter.d.ts +17 -0
- package/dist/src/components/formatter/index.d.ts +5 -0
- package/dist/src/components/header/Header.d.ts +33 -0
- package/dist/src/components/header/HeaderSubtitle.d.ts +13 -0
- package/dist/src/components/header/HeaderTitle.d.ts +13 -0
- package/dist/src/components/header/index.d.ts +3 -0
- package/dist/src/components/icon/Icon.d.ts +47 -0
- package/dist/src/components/icon/StackedIcons.d.ts +13 -0
- package/dist/src/components/icon/SvgIcon.theme.d.ts +2 -0
- package/dist/src/components/icon/icons.d.ts +1953 -0
- package/dist/src/components/icon/index.d.ts +1 -0
- package/dist/src/components/image/ImageEditor.d.ts +12 -0
- package/dist/src/components/image/index.d.ts +1 -0
- package/dist/src/components/index.d.ts +35 -0
- package/dist/src/components/info/InfoBox.d.ts +10 -0
- package/dist/src/components/info/index.d.ts +1 -0
- package/dist/src/components/input/Autocomplete.d.ts +118 -0
- package/dist/src/components/input/CalendarDay.d.ts +17 -0
- package/dist/src/components/input/CalendarMonth.d.ts +19 -0
- package/dist/src/components/input/CalendarScrollPicker.d.ts +17 -0
- package/dist/src/components/input/CategorizedPicker.d.ts +22 -0
- package/dist/src/components/input/Checkbox.d.ts +39 -0
- package/dist/src/components/input/CodeEditor.d.ts +29 -0
- package/dist/src/components/input/CodeEditorPopup.d.ts +18 -0
- package/dist/src/components/input/ColorPicker.d.ts +62 -0
- package/dist/src/components/input/DateIntervalPicker.d.ts +84 -0
- package/dist/src/components/input/DateIntervalPickerInputs.d.ts +18 -0
- package/dist/src/components/input/DateIntervalPickerList.d.ts +35 -0
- package/dist/src/components/input/DateIntervalPickerPopover.d.ts +32 -0
- package/dist/src/components/input/DatePicker.d.ts +59 -0
- package/dist/src/components/input/DatePickerPopover.d.ts +10 -0
- package/dist/src/components/input/DatePickerStatic.d.ts +9 -0
- package/dist/src/components/input/DaysOfWeekPicker.d.ts +11 -0
- package/dist/src/components/input/DaysOfWeekRow.d.ts +3 -0
- package/dist/src/components/input/DebouncedTextField.d.ts +18 -0
- package/dist/src/components/input/InputHelperText.d.ts +29 -0
- package/dist/src/components/input/InputLabel.d.ts +47 -0
- package/dist/src/components/input/ItemSelector.d.ts +27 -0
- package/dist/src/components/input/NumberField.d.ts +106 -0
- package/dist/src/components/input/PageSelector.d.ts +30 -0
- package/dist/src/components/input/PhoneField.d.ts +43 -0
- package/dist/src/components/input/Radio.d.ts +49 -0
- package/dist/src/components/input/Select.d.ts +89 -0
- package/dist/src/components/input/SelectPopover.d.ts +107 -0
- package/dist/src/components/input/SelectPopoverItem.d.ts +17 -0
- package/dist/src/components/input/Switch.d.ts +22 -0
- package/dist/src/components/input/Switch.theme.d.ts +2 -0
- package/dist/src/components/input/TextEditor.d.ts +123 -0
- package/dist/src/components/input/TextField.d.ts +156 -0
- package/dist/src/components/input/TextFieldContainer.d.ts +95 -0
- package/dist/src/components/input/TimeField.d.ts +20 -0
- package/dist/src/components/input/TimezoneSelector.d.ts +7 -0
- package/dist/src/components/input/UploadClickableArea.d.ts +14 -0
- package/dist/src/components/input/index.d.ts +26 -0
- package/dist/src/components/layout/Box.d.ts +2 -0
- package/dist/src/components/layout/Collapse.d.ts +5 -0
- package/dist/src/components/layout/CollapsiblePanel.d.ts +48 -0
- package/dist/src/components/layout/CollapsiblePanelSwitcher.d.ts +87 -0
- package/dist/src/components/layout/Container.d.ts +5 -0
- package/dist/src/components/layout/Container.theme.d.ts +2 -0
- package/dist/src/components/layout/Grid.d.ts +8 -0
- package/dist/src/components/layout/LazyLoad.d.ts +5 -0
- package/dist/src/components/layout/PageScrollContext.d.ts +5 -0
- package/dist/src/components/layout/PageWithHeader.d.ts +13 -0
- package/dist/src/components/layout/PageWithNavbar.d.ts +13 -0
- package/dist/src/components/layout/PageWithSidePanel.d.ts +17 -0
- package/dist/src/components/layout/PageWithToolBox.d.ts +17 -0
- package/dist/src/components/layout/PageWithToolbar.d.ts +18 -0
- package/dist/src/components/layout/Paper.d.ts +13 -0
- package/dist/src/components/layout/SidePanel.d.ts +7 -0
- package/dist/src/components/layout/Stack.d.ts +2 -0
- package/dist/src/components/layout/Stepper.d.ts +23 -0
- package/dist/src/components/layout/ToolBox.d.ts +12 -0
- package/dist/src/components/layout/index.d.ts +17 -0
- package/dist/src/components/list/BaseListItem.d.ts +70 -0
- package/dist/src/components/list/List.d.ts +5 -0
- package/dist/src/components/list/ListItem.d.ts +16 -0
- package/dist/src/components/list/ListItemButton.d.ts +42 -0
- package/dist/src/components/list/ListItemText.d.ts +17 -0
- package/dist/src/components/list/index.d.ts +3 -0
- package/dist/src/components/loader/Loader.d.ts +32 -0
- package/dist/src/components/loader/index.d.ts +1 -0
- package/dist/src/components/navbar/Navbar.d.ts +41 -0
- package/dist/src/components/navbar/NavbarButton.d.ts +39 -0
- package/dist/src/components/navbar/NavbarHeader.d.ts +12 -0
- package/dist/src/components/navbar/NavbarLogo.d.ts +16 -0
- package/dist/src/components/navbar/index.d.ts +4 -0
- package/dist/src/components/overlay/DonutFocusOverlay.d.ts +11 -0
- package/dist/src/components/overlay/index.d.ts +1 -0
- package/dist/src/components/pager/Pager.d.ts +31 -0
- package/dist/src/components/pager/index.d.ts +1 -0
- package/dist/src/components/popover/Popover.d.ts +26 -0
- package/dist/src/components/popover/Popover.theme.d.ts +2 -0
- package/dist/src/components/popover/PopoverActions.d.ts +21 -0
- package/dist/src/components/popover/index.d.ts +2 -0
- package/dist/src/components/progress/CircularProgress.d.ts +35 -0
- package/dist/src/components/progress/LinearProgress.d.ts +19 -0
- package/dist/src/components/progress/LinearProgress.theme.d.ts +2 -0
- package/dist/src/components/progress/index.d.ts +2 -0
- package/dist/src/components/scrollable/HorizontalScrollable.d.ts +18 -0
- package/dist/src/components/scrollable/index.d.ts +1 -0
- package/dist/src/components/skeleton/Skeleton.d.ts +8 -0
- package/dist/src/components/skeleton/index.d.ts +1 -0
- package/dist/src/components/snackbar/Snackbar.d.ts +52 -0
- package/dist/src/components/snackbar/SnackbarProvider.d.ts +10 -0
- package/dist/src/components/snackbar/enqueueSnackbar.d.ts +27 -0
- package/dist/src/components/snackbar/index.d.ts +3 -0
- package/dist/src/components/tab/TabButton.d.ts +30 -0
- package/dist/src/components/tab/TabContent.d.ts +7 -0
- package/dist/src/components/tab/Tabs.d.ts +52 -0
- package/dist/src/components/tab/Tabs.theme.d.ts +2 -0
- package/dist/src/components/tab/index.d.ts +3 -0
- package/dist/src/components/table/NestedTable.d.ts +29 -0
- package/dist/src/components/table/Table.d.ts +5 -0
- package/dist/src/components/table/Table.theme.d.ts +2 -0
- package/dist/src/components/table/TableBody.d.ts +4 -0
- package/dist/src/components/table/TableCell.d.ts +20 -0
- package/dist/src/components/table/TableCell.theme.d.ts +2 -0
- package/dist/src/components/table/TableCellCopy.d.ts +10 -0
- package/dist/src/components/table/TableDivider.d.ts +3 -0
- package/dist/src/components/table/TableHead.d.ts +4 -0
- package/dist/src/components/table/TableRow.d.ts +9 -0
- package/dist/src/components/table/TableSortLabel.d.ts +8 -0
- package/dist/src/components/table/index.d.ts +9 -0
- package/dist/src/components/toolbar/Toolbar.d.ts +24 -0
- package/dist/src/components/toolbar/ToolbarBreadcrumb.d.ts +15 -0
- package/dist/src/components/toolbar/ToolbarBreadcrumbButton.d.ts +11 -0
- package/dist/src/components/toolbar/ToolbarTitle.d.ts +27 -0
- package/dist/src/components/toolbar/index.d.ts +4 -0
- package/dist/src/components/tooltip/TextEllipsis.d.ts +18 -0
- package/dist/src/components/tooltip/TextEllipsisTooltip.d.ts +27 -0
- package/dist/src/components/tooltip/Tooltip.d.ts +59 -0
- package/dist/src/components/tooltip/Tooltip.theme.d.ts +2 -0
- package/dist/src/components/tooltip/TooltipMenu.d.ts +35 -0
- package/dist/src/components/tooltip/index.d.ts +4 -0
- package/dist/src/components/transition/Slide.d.ts +3 -0
- package/dist/src/components/transition/index.d.ts +1 -0
- package/dist/src/components/typography/TextMarker.d.ts +32 -0
- package/dist/src/components/typography/Typography.d.ts +39 -0
- package/dist/src/components/typography/index.d.ts +2 -0
- package/dist/src/components/widget/Widget.d.ts +7 -0
- package/dist/src/components/widget/WidgetActions.d.ts +8 -0
- package/dist/src/components/widget/WidgetLegendItem.d.ts +65 -0
- package/dist/src/components/widget/WidgetTitle.d.ts +23 -0
- package/dist/src/components/widget/index.d.ts +4 -0
- package/dist/src/components/window/MinimizableWindow.d.ts +98 -0
- package/dist/src/components/window/index.d.ts +1 -0
- package/dist/src/contexts/IntlContext.d.ts +7 -0
- package/dist/src/contexts/index.d.ts +1 -0
- package/dist/src/hooks/index.d.ts +3 -0
- package/dist/src/hooks/useDebouncedCallback.d.ts +1 -0
- package/dist/src/hooks/useFormatters.d.ts +8 -0
- package/dist/src/hooks/useResizeObserver.d.ts +7 -0
- package/dist/src/i18n/TranslationKey.d.ts +11 -0
- package/dist/src/i18n/en.d.ts +202 -0
- package/dist/src/i18n/es.d.ts +202 -0
- package/dist/src/i18n/fr.d.ts +202 -0
- package/dist/src/i18n/it.d.ts +202 -0
- package/dist/src/i18n/pt.d.ts +202 -0
- package/dist/src/i18n/translate.d.ts +4 -0
- package/dist/src/index.d.ts +6 -0
- package/dist/src/models/ComparisonInterval.d.ts +1 -0
- package/dist/src/models/DateInputFormat.d.ts +4 -0
- package/dist/src/models/DateInterval.d.ts +1 -0
- package/dist/src/models/SimpleDate.d.ts +8 -0
- package/dist/src/propTypes/IncrementLabel.d.ts +15 -0
- package/dist/src/propTypes/index.d.ts +1 -0
- package/dist/src/stories/alert/Alert.stories.d.ts +6 -0
- package/dist/src/stories/avatar/Avatar.stories.d.ts +31 -0
- package/dist/src/stories/avatar/AvatarCard.stories.d.ts +8 -0
- package/dist/src/stories/avatar/AvatarMultiple.stories.d.ts +13 -0
- package/dist/src/stories/button/BadgeToggleButton.stories.d.ts +5 -0
- package/dist/src/stories/button/Button.stories.d.ts +33 -0
- package/dist/src/stories/button/ButtonGroup.stories.d.ts +6 -0
- package/dist/src/stories/button/ButtonWithActions.stories.d.ts +45 -0
- package/dist/src/stories/button/IconButton.stories.d.ts +17 -0
- package/dist/src/stories/button/IconToggleButton.stories.d.ts +15 -0
- package/dist/src/stories/button/MenuButton.stories.d.ts +13 -0
- package/dist/src/stories/button/MenuIconButton.stories.d.ts +23 -0
- package/dist/src/stories/button/ToggleButton.stories.d.ts +6 -0
- package/dist/src/stories/button/ToggleButtonGroup.stories.d.ts +6 -0
- package/dist/src/stories/button/UploadButton.stories.d.ts +11 -0
- package/dist/src/stories/card/Card.stories.d.ts +6 -0
- package/dist/src/stories/card/CardActions.stories.d.ts +6 -0
- package/dist/src/stories/card/CardChips.stories.d.ts +6 -0
- package/dist/src/stories/card/CardDescription.stories.d.ts +6 -0
- package/dist/src/stories/card/CardImage.stories.d.ts +6 -0
- package/dist/src/stories/card/CardStatus.stories.d.ts +6 -0
- package/dist/src/stories/card/CardTable.stories.d.ts +6 -0
- package/dist/src/stories/card/CardTitle.stories.d.ts +6 -0
- package/dist/src/stories/card/CardTitleWithIcon.stories.d.ts +6 -0
- package/dist/src/stories/card/EnhancedCard.stories.d.ts +6 -0
- package/dist/src/stories/chart/BarChart.stories.d.ts +9 -0
- package/dist/src/stories/chart/DonutChart.stories.d.ts +11 -0
- package/dist/src/stories/chart/FunnelChart.stories.d.ts +9 -0
- package/dist/src/stories/chart/IncrementLabel.stories.d.ts +7 -0
- package/dist/src/stories/chart/LineChart.stories.d.ts +10 -0
- package/dist/src/stories/chart/MicroPieChart.stories.d.ts +6 -0
- package/dist/src/stories/chart/RankingChart.stories.d.ts +8 -0
- package/dist/src/stories/chart/WeekChart.stories.d.ts +9 -0
- package/dist/src/stories/chat/Chat.stories.d.ts +7 -0
- package/dist/src/stories/chat/ChatMessage.stories.d.ts +8 -0
- package/dist/src/stories/chip/Chip.stories.d.ts +131 -0
- package/dist/src/stories/chip/ChipList.stories.d.ts +6 -0
- package/dist/src/stories/chip/MenuChip.stories.d.ts +13 -0
- package/dist/src/stories/dialog/ConformationDialog.stories.d.ts +7 -0
- package/dist/src/stories/dialog/Dialog.stories.d.ts +7 -0
- package/dist/src/stories/divider/Divider.stories.d.ts +6 -0
- package/dist/src/stories/drawer/Drawer.stories.d.ts +6 -0
- package/dist/src/stories/drawer/InputDrawer.stories.d.ts +6 -0
- package/dist/src/stories/formatter/CompactNumberFormatter.stories.d.ts +6 -0
- package/dist/src/stories/formatter/CurrencyFormatter.stories.d.ts +6 -0
- package/dist/src/stories/formatter/DateFormatter.stories.d.ts +6 -0
- package/dist/src/stories/formatter/NumberFormatter.stories.d.ts +6 -0
- package/dist/src/stories/formatter/PercentageFormatter.stories.d.ts +6 -0
- package/dist/src/stories/header/Header.stories.d.ts +6 -0
- package/dist/src/stories/header/HeaderSubtitle.stories.d.ts +6 -0
- package/dist/src/stories/header/HeaderTitle.stories.d.ts +6 -0
- package/dist/src/stories/icon/Icon.stories.d.ts +12 -0
- package/dist/src/stories/icon/StackedIcons.stories.d.ts +6 -0
- package/dist/src/stories/image/ImageEditor.stories.d.ts +6 -0
- package/dist/src/stories/info/InfoBox.stories.d.ts +6 -0
- package/dist/src/stories/input/Autocomplete.stories.d.ts +11 -0
- package/dist/src/stories/input/CategorizedPicker.stories.d.ts +9 -0
- package/dist/src/stories/input/Checkbox.stories.d.ts +6 -0
- package/dist/src/stories/input/CodeEditor.stories.d.ts +6 -0
- package/dist/src/stories/input/ColorPicker.stories.d.ts +6 -0
- package/dist/src/stories/input/DateIntervalPicker.stories.d.ts +6 -0
- package/dist/src/stories/input/DatePicker.stories.d.ts +13 -0
- package/dist/src/stories/input/DaysOfWeekPicker.stories.d.ts +6 -0
- package/dist/src/stories/input/DebouncedTextField.stories.d.ts +8 -0
- package/dist/src/stories/input/InputHelperText.stories.d.ts +11 -0
- package/dist/src/stories/input/InputLabel.stories.d.ts +13 -0
- package/dist/src/stories/input/ItemSelector.stories.d.ts +6 -0
- package/dist/src/stories/input/NumberField.stories.d.ts +18 -0
- package/dist/src/stories/input/PageSelector.stories.d.ts +6 -0
- package/dist/src/stories/input/PhoneField.stories.d.ts +11 -0
- package/dist/src/stories/input/Radio.stories.d.ts +6 -0
- package/dist/src/stories/input/Select.stories.d.ts +23 -0
- package/dist/src/stories/input/SelectPopover.stories.d.ts +9 -0
- package/dist/src/stories/input/Switch.stories.d.ts +6 -0
- package/dist/src/stories/input/TextEditor.stories.d.ts +6 -0
- package/dist/src/stories/input/TextField.stories.d.ts +10 -0
- package/dist/src/stories/input/TextFieldContainer.stories.d.ts +20 -0
- package/dist/src/stories/input/TimeField.stories.d.ts +6 -0
- package/dist/src/stories/input/TimezoneSelector.stories.d.ts +6 -0
- package/dist/src/stories/input/UploadClickableArea.stories.d.ts +5 -0
- package/dist/src/stories/layout/CollapsiblePanel.stories.d.ts +6 -0
- package/dist/src/stories/layout/CollapsiblePanelSwitcher.stories.d.ts +7 -0
- package/dist/src/stories/layout/Container.stories.d.ts +6 -0
- package/dist/src/stories/layout/Grid.stories.d.ts +6 -0
- package/dist/src/stories/layout/LazyLoad.stories.d.ts +6 -0
- package/dist/src/stories/layout/PageWIthNavbar.stories.d.ts +10 -0
- package/dist/src/stories/layout/PageWIthSidePanel.stories.d.ts +8 -0
- package/dist/src/stories/layout/PageWIthToolBox.stories.d.ts +8 -0
- package/dist/src/stories/layout/PageWithHeader.stories.d.ts +6 -0
- package/dist/src/stories/layout/PageWithToolbar.stories.d.ts +6 -0
- package/dist/src/stories/layout/Paper.stories.d.ts +6 -0
- package/dist/src/stories/layout/SidePanel.stories.d.ts +6 -0
- package/dist/src/stories/layout/Stepper.stories.d.ts +6 -0
- package/dist/src/stories/layout/ToolBox.stories.d.ts +6 -0
- package/dist/src/stories/list/List.stories.d.ts +6 -0
- package/dist/src/stories/list/ListItem.stories.d.ts +28 -0
- package/dist/src/stories/list/ListItemButton.stories.d.ts +57 -0
- package/dist/src/stories/loader/Loader.stories.d.ts +8 -0
- package/dist/src/stories/navbar/Navbar.stories.d.ts +6 -0
- package/dist/src/stories/overlay/DonutFocusOverlay.stories.d.ts +6 -0
- package/dist/src/stories/pager/Pager.stories.d.ts +6 -0
- package/dist/src/stories/popover/Popover.stories.d.ts +6 -0
- package/dist/src/stories/progress/CircularProgress.stories.d.ts +9 -0
- package/dist/src/stories/progress/LinearProgress.stories.d.ts +9 -0
- package/dist/src/stories/scrollable/HorizontalScrollable.stories.d.ts +6 -0
- package/dist/src/stories/skeleton/Skeleton.stories.d.ts +33 -0
- package/dist/src/stories/snackbar/Snackbar.stories.d.ts +10 -0
- package/dist/src/stories/tab/TabButton.stories.d.ts +5 -0
- package/dist/src/stories/tab/Tabs.stories.d.ts +5 -0
- package/dist/src/stories/table/NestedTable.stories.d.ts +6 -0
- package/dist/src/stories/table/Table.stories.d.ts +7 -0
- package/dist/src/stories/text-ellipsis/TextEllipsis.stories.d.ts +6 -0
- package/dist/src/stories/toolbar/Toolbar.stories.d.ts +9 -0
- package/dist/src/stories/toolbar/ToolbarBreadcrumb.stories.d.ts +6 -0
- package/dist/src/stories/toolbar/ToolbarTitle.stories.d.ts +6 -0
- package/dist/src/stories/tooltip/Tooltip.stories.d.ts +7 -0
- package/dist/src/stories/tooltip/TooltipMenu.stories.d.ts +6 -0
- package/dist/src/stories/typography/TextMarker.stories.d.ts +6 -0
- package/dist/src/stories/typography/Typography.stories.d.ts +11 -0
- package/dist/src/stories/utils/StoryUtilities.d.ts +2 -0
- package/dist/src/stories/widget/Widget.stories.d.ts +6 -0
- package/dist/src/stories/widget/WidgetActions.stories.d.ts +6 -0
- package/dist/src/stories/widget/WidgetLegendItem.stories.d.ts +7 -0
- package/dist/src/stories/widget/WidgetTitle.stories.d.ts +6 -0
- package/dist/src/stories/window/MinimizableWindow.stories.d.ts +25 -0
- package/dist/src/theme/Animations.d.ts +3 -0
- package/dist/src/theme/Breakpoints.d.ts +11 -0
- package/dist/src/theme/Colors.d.ts +90 -0
- package/dist/src/theme/GlobalStyles.d.ts +3 -0
- package/dist/src/theme/Palettes.d.ts +4 -0
- package/dist/src/theme/Shadows.d.ts +2 -0
- package/dist/src/theme/Theme.d.ts +1 -0
- package/dist/src/theme/Typography.d.ts +97 -0
- package/dist/src/theme/index.d.ts +7 -0
- package/dist/src/utils/ChartUtils.d.ts +23 -0
- package/dist/src/utils/CurrencyFormatter.d.ts +1 -0
- package/dist/src/utils/DateUtils.d.ts +45 -0
- package/dist/src/utils/NumberFormatter.d.ts +2 -0
- package/dist/src/utils/PercentageFormatter.d.ts +1 -0
- package/dist/src/utils/PhoneUtils.d.ts +11 -0
- package/dist/src/utils/RegExpUtils.d.ts +1 -0
- package/dist/src/utils/ResizeObserverUtils.d.ts +1 -0
- package/dist/src/utils/index.d.ts +5 -0
- package/dist/test/Setup.d.ts +1 -0
- package/dist/test/TestUtils.d.ts +3 -0
- package/dist/test/unit/components/button/Button.spec.d.ts +1 -0
- package/dist/test/unit/components/button/MenuButton.spec.d.ts +1 -0
- package/dist/test/unit/components/formatter/CurrencyFormatter.spec.d.ts +1 -0
- package/dist/test/unit/components/formatter/DateFormatter.spec.d.ts +1 -0
- package/dist/test/unit/components/formatter/NumberFormatter.spec.d.ts +1 -0
- package/dist/test/unit/components/formatter/PercentageFormatter.spec.d.ts +1 -0
- package/dist/test/unit/components/input/DateIntervalPicker.spec.d.ts +1 -0
- package/dist/test/unit/components/input/DatePicker.spec.d.ts +1 -0
- package/dist/test/unit/components/input/NumberField.spec.d.ts +1 -0
- package/dist/test/unit/components/input/PhoneField.spec.d.ts +1 -0
- package/dist/test/unit/components/input/TextField.spec.d.ts +1 -0
- package/dist/test/unit/components/input/__mocks__/react-virtualized-auto-sizer.d.ts +4 -0
- package/dist/test/unit/components/list/ListItemButton.spec.d.ts +1 -0
- package/dist/test/unit/components/tab/Tabs.spec.d.ts +1 -0
- package/dist/test/unit/components/tooltop/Tooltip.spec.d.ts +1 -0
- package/dist/test/unit/components/widget/WidgetLegendItem.spec.d.ts +1 -0
- package/dist/test/unit/i18n/translate.spec.d.ts +1 -0
- package/dist/test/unit/utils/DateUtils.spec.d.ts +1 -0
- package/dist/theme/Animations.d.ts +3 -0
- package/dist/theme/Breakpoints.d.ts +11 -0
- package/dist/theme/Colors.d.ts +90 -0
- package/dist/theme/GlobalStyles.d.ts +3 -0
- package/dist/theme/Palettes.d.ts +4 -0
- package/dist/theme/Shadows.d.ts +2 -0
- package/dist/theme/Theme.d.ts +1 -0
- package/dist/theme/Typography.d.ts +97 -0
- package/dist/theme/index.d.ts +7 -0
- package/dist/tinymce/icons/default/icons.js +194 -0
- package/dist/tinymce/icons/default/icons.min.js +1 -0
- package/dist/tinymce/icons/default/index.js +7 -0
- package/dist/tinymce/models/dom/index.js +7 -0
- package/dist/tinymce/models/dom/model.js +8040 -0
- package/dist/tinymce/models/dom/model.min.js +4 -0
- package/dist/tinymce/plugins/accordion/index.js +7 -0
- package/dist/tinymce/plugins/accordion/plugin.js +1054 -0
- package/dist/tinymce/plugins/accordion/plugin.min.js +4 -0
- package/dist/tinymce/plugins/advlist/index.js +7 -0
- package/dist/tinymce/plugins/advlist/plugin.js +259 -0
- package/dist/tinymce/plugins/advlist/plugin.min.js +4 -0
- package/dist/tinymce/plugins/anchor/index.js +7 -0
- package/dist/tinymce/plugins/anchor/plugin.js +214 -0
- package/dist/tinymce/plugins/anchor/plugin.min.js +4 -0
- package/dist/tinymce/plugins/autolink/index.js +7 -0
- package/dist/tinymce/plugins/autolink/plugin.js +228 -0
- package/dist/tinymce/plugins/autolink/plugin.min.js +4 -0
- package/dist/tinymce/plugins/autoresize/index.js +7 -0
- package/dist/tinymce/plugins/autoresize/plugin.js +192 -0
- package/dist/tinymce/plugins/autoresize/plugin.min.js +4 -0
- package/dist/tinymce/plugins/autosave/index.js +7 -0
- package/dist/tinymce/plugins/autosave/plugin.js +233 -0
- package/dist/tinymce/plugins/autosave/plugin.min.js +4 -0
- package/dist/tinymce/plugins/charmap/index.js +7 -0
- package/dist/tinymce/plugins/charmap/plugin.js +1658 -0
- package/dist/tinymce/plugins/charmap/plugin.min.js +4 -0
- package/dist/tinymce/plugins/code/index.js +7 -0
- package/dist/tinymce/plugins/code/plugin.js +85 -0
- package/dist/tinymce/plugins/code/plugin.min.js +4 -0
- package/dist/tinymce/plugins/codesample/index.js +7 -0
- package/dist/tinymce/plugins/codesample/plugin.js +2463 -0
- package/dist/tinymce/plugins/codesample/plugin.min.js +4 -0
- package/dist/tinymce/plugins/directionality/index.js +7 -0
- package/dist/tinymce/plugins/directionality/plugin.js +395 -0
- package/dist/tinymce/plugins/directionality/plugin.min.js +4 -0
- package/dist/tinymce/plugins/emoticons/index.js +7 -0
- package/dist/tinymce/plugins/emoticons/js/emojiimages.js +1 -0
- package/dist/tinymce/plugins/emoticons/js/emojiimages.min.js +3 -0
- package/dist/tinymce/plugins/emoticons/js/emojis.js +1 -0
- package/dist/tinymce/plugins/emoticons/js/emojis.min.js +2 -0
- package/dist/tinymce/plugins/emoticons/plugin.js +595 -0
- package/dist/tinymce/plugins/emoticons/plugin.min.js +4 -0
- package/dist/tinymce/plugins/fullscreen/index.js +7 -0
- package/dist/tinymce/plugins/fullscreen/plugin.js +1249 -0
- package/dist/tinymce/plugins/fullscreen/plugin.min.js +4 -0
- package/dist/tinymce/plugins/help/index.js +7 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ar.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ca.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/cs.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/da.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/de.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/el.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/en.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/es.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/eu.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/fa.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/fi.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/he_IL.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/hi.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/hr.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/id.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/it.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ja.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/kk.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ms.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/nl.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/pl.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ro.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ru.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/sk.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/th_TH.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/tr.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/uk.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/vi.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +84 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +90 -0
- package/dist/tinymce/plugins/help/plugin.js +898 -0
- package/dist/tinymce/plugins/help/plugin.min.js +4 -0
- package/dist/tinymce/plugins/image/index.js +7 -0
- package/dist/tinymce/plugins/image/plugin.js +1505 -0
- package/dist/tinymce/plugins/image/plugin.min.js +4 -0
- package/dist/tinymce/plugins/importcss/index.js +7 -0
- package/dist/tinymce/plugins/importcss/plugin.js +344 -0
- package/dist/tinymce/plugins/importcss/plugin.min.js +4 -0
- package/dist/tinymce/plugins/insertdatetime/index.js +7 -0
- package/dist/tinymce/plugins/insertdatetime/plugin.js +187 -0
- package/dist/tinymce/plugins/insertdatetime/plugin.min.js +4 -0
- package/dist/tinymce/plugins/link/index.js +7 -0
- package/dist/tinymce/plugins/link/plugin.js +1242 -0
- package/dist/tinymce/plugins/link/plugin.min.js +4 -0
- package/dist/tinymce/plugins/lists/index.js +7 -0
- package/dist/tinymce/plugins/lists/plugin.js +2172 -0
- package/dist/tinymce/plugins/lists/plugin.min.js +4 -0
- package/dist/tinymce/plugins/media/index.js +7 -0
- package/dist/tinymce/plugins/media/plugin.js +1217 -0
- package/dist/tinymce/plugins/media/plugin.min.js +4 -0
- package/dist/tinymce/plugins/nonbreaking/index.js +7 -0
- package/dist/tinymce/plugins/nonbreaking/plugin.js +123 -0
- package/dist/tinymce/plugins/nonbreaking/plugin.min.js +4 -0
- package/dist/tinymce/plugins/pagebreak/index.js +7 -0
- package/dist/tinymce/plugins/pagebreak/plugin.js +117 -0
- package/dist/tinymce/plugins/pagebreak/plugin.min.js +4 -0
- package/dist/tinymce/plugins/preview/index.js +7 -0
- package/dist/tinymce/plugins/preview/plugin.js +97 -0
- package/dist/tinymce/plugins/preview/plugin.min.js +4 -0
- package/dist/tinymce/plugins/quickbars/index.js +7 -0
- package/dist/tinymce/plugins/quickbars/plugin.js +447 -0
- package/dist/tinymce/plugins/quickbars/plugin.min.js +4 -0
- package/dist/tinymce/plugins/save/index.js +7 -0
- package/dist/tinymce/plugins/save/plugin.js +118 -0
- package/dist/tinymce/plugins/save/plugin.min.js +4 -0
- package/dist/tinymce/plugins/searchreplace/index.js +7 -0
- package/dist/tinymce/plugins/searchreplace/plugin.js +1093 -0
- package/dist/tinymce/plugins/searchreplace/plugin.min.js +4 -0
- package/dist/tinymce/plugins/table/index.js +7 -0
- package/dist/tinymce/plugins/table/plugin.js +3462 -0
- package/dist/tinymce/plugins/table/plugin.min.js +4 -0
- package/dist/tinymce/plugins/template/index.js +7 -0
- package/dist/tinymce/plugins/template/plugin.js +567 -0
- package/dist/tinymce/plugins/template/plugin.min.js +4 -0
- package/dist/tinymce/plugins/visualblocks/index.js +7 -0
- package/dist/tinymce/plugins/visualblocks/plugin.js +98 -0
- package/dist/tinymce/plugins/visualblocks/plugin.min.js +4 -0
- package/dist/tinymce/plugins/visualchars/index.js +7 -0
- package/dist/tinymce/plugins/visualchars/plugin.js +560 -0
- package/dist/tinymce/plugins/visualchars/plugin.min.js +4 -0
- package/dist/tinymce/plugins/wordcount/index.js +7 -0
- package/dist/tinymce/plugins/wordcount/plugin.js +405 -0
- package/dist/tinymce/plugins/wordcount/plugin.min.js +4 -0
- package/dist/tinymce/skins/content/dark/content.css +66 -0
- package/dist/tinymce/skins/content/dark/content.js +2 -0
- package/dist/tinymce/skins/content/dark/content.min.css +1 -0
- package/dist/tinymce/skins/content/default/content.css +61 -0
- package/dist/tinymce/skins/content/default/content.js +2 -0
- package/dist/tinymce/skins/content/default/content.min.css +1 -0
- package/dist/tinymce/skins/content/document/content.css +66 -0
- package/dist/tinymce/skins/content/document/content.js +2 -0
- package/dist/tinymce/skins/content/document/content.min.css +1 -0
- package/dist/tinymce/skins/content/tinymce-5/content.css +61 -0
- package/dist/tinymce/skins/content/tinymce-5/content.js +2 -0
- package/dist/tinymce/skins/content/tinymce-5/content.min.css +1 -0
- package/dist/tinymce/skins/content/tinymce-5-dark/content.css +66 -0
- package/dist/tinymce/skins/content/tinymce-5-dark/content.js +2 -0
- package/dist/tinymce/skins/content/tinymce-5-dark/content.min.css +1 -0
- package/dist/tinymce/skins/content/writer/content.css +62 -0
- package/dist/tinymce/skins/content/writer/content.js +2 -0
- package/dist/tinymce/skins/content/writer/content.min.css +1 -0
- package/dist/tinymce/skins/ui/oxide/content.css +785 -0
- package/dist/tinymce/skins/ui/oxide/content.inline.css +779 -0
- package/dist/tinymce/skins/ui/oxide/content.inline.js +2 -0
- package/dist/tinymce/skins/ui/oxide/content.inline.min.css +1 -0
- package/dist/tinymce/skins/ui/oxide/content.js +2 -0
- package/dist/tinymce/skins/ui/oxide/content.min.css +1 -0
- package/dist/tinymce/skins/ui/oxide/skin.css +3763 -0
- package/dist/tinymce/skins/ui/oxide/skin.js +2 -0
- package/dist/tinymce/skins/ui/oxide/skin.min.css +1 -0
- package/dist/tinymce/skins/ui/oxide/skin.shadowdom.css +30 -0
- package/dist/tinymce/skins/ui/oxide/skin.shadowdom.js +2 -0
- package/dist/tinymce/skins/ui/oxide/skin.shadowdom.min.css +1 -0
- package/dist/tinymce/skins/ui/oxide-dark/content.css +766 -0
- package/dist/tinymce/skins/ui/oxide-dark/content.inline.css +779 -0
- package/dist/tinymce/skins/ui/oxide-dark/content.inline.js +2 -0
- package/dist/tinymce/skins/ui/oxide-dark/content.inline.min.css +1 -0
- package/dist/tinymce/skins/ui/oxide-dark/content.js +2 -0
- package/dist/tinymce/skins/ui/oxide-dark/content.min.css +1 -0
- package/dist/tinymce/skins/ui/oxide-dark/skin.css +3766 -0
- package/dist/tinymce/skins/ui/oxide-dark/skin.js +2 -0
- package/dist/tinymce/skins/ui/oxide-dark/skin.min.css +1 -0
- package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.css +30 -0
- package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.js +2 -0
- package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +1 -0
- package/dist/tinymce/skins/ui/tinymce-5/content.css +785 -0
- package/dist/tinymce/skins/ui/tinymce-5/content.inline.css +779 -0
- package/dist/tinymce/skins/ui/tinymce-5/content.inline.js +2 -0
- package/dist/tinymce/skins/ui/tinymce-5/content.inline.min.css +1 -0
- package/dist/tinymce/skins/ui/tinymce-5/content.js +2 -0
- package/dist/tinymce/skins/ui/tinymce-5/content.min.css +1 -0
- package/dist/tinymce/skins/ui/tinymce-5/skin.css +3857 -0
- package/dist/tinymce/skins/ui/tinymce-5/skin.js +2 -0
- package/dist/tinymce/skins/ui/tinymce-5/skin.min.css +1 -0
- package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.css +30 -0
- package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.js +2 -0
- package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +1 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/content.css +766 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.css +779 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.js +2 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +1 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/content.js +2 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/content.min.css +1 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/skin.css +3857 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/skin.js +2 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/skin.min.css +1 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.css +30 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.js +2 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +1 -0
- package/dist/tinymce/themes/silver/index.js +7 -0
- package/dist/tinymce/themes/silver/theme.js +30754 -0
- package/dist/tinymce/themes/silver/theme.min.js +4 -0
- package/dist/tinymce/tinymce.js +31757 -0
- package/dist/tinymce/tinymce.min.js +4 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/utils/ChartUtils.d.ts +23 -0
- package/dist/utils/CurrencyFormatter.d.ts +1 -0
- package/dist/utils/DateUtils.d.ts +45 -0
- package/dist/utils/NumberFormatter.d.ts +2 -0
- package/dist/utils/PercentageFormatter.d.ts +1 -0
- package/dist/utils/PhoneUtils.d.ts +11 -0
- package/dist/utils/RegExpUtils.d.ts +1 -0
- package/dist/utils/ResizeObserverUtils.d.ts +1 -0
- package/dist/utils/index.d.ts +5 -0
- package/package.json +110 -0
|
@@ -0,0 +1,1953 @@
|
|
|
1
|
+
export declare const icons: {
|
|
2
|
+
'abx-testing': string;
|
|
3
|
+
'abx-testing-add': string;
|
|
4
|
+
'access-point': string;
|
|
5
|
+
'access-point-network': string;
|
|
6
|
+
account: string;
|
|
7
|
+
'account-alert': string;
|
|
8
|
+
'account-box': string;
|
|
9
|
+
'account-box-outline': string;
|
|
10
|
+
'account-card-details': string;
|
|
11
|
+
'account-check': string;
|
|
12
|
+
'account-circle': string;
|
|
13
|
+
'account-convert': string;
|
|
14
|
+
'account-dynamic-plus': string;
|
|
15
|
+
'account-edit': string;
|
|
16
|
+
'account-filter': string;
|
|
17
|
+
'account-key': string;
|
|
18
|
+
'account-location': string;
|
|
19
|
+
'account-minus': string;
|
|
20
|
+
'account-multiple': string;
|
|
21
|
+
'account-multiple-minus': string;
|
|
22
|
+
'account-multiple-outline': string;
|
|
23
|
+
'account-multiple-plus': string;
|
|
24
|
+
'account-network': string;
|
|
25
|
+
'account-off': string;
|
|
26
|
+
'account-outline': string;
|
|
27
|
+
'account-plus': string;
|
|
28
|
+
'account-remove': string;
|
|
29
|
+
'account-search': string;
|
|
30
|
+
'account-settings': string;
|
|
31
|
+
'account-settings-variant': string;
|
|
32
|
+
'account-star': string;
|
|
33
|
+
'account-star-variant': string;
|
|
34
|
+
'account-switch': string;
|
|
35
|
+
'add-note': string;
|
|
36
|
+
adjust: string;
|
|
37
|
+
'air-conditioner': string;
|
|
38
|
+
airballoon: string;
|
|
39
|
+
airplane: string;
|
|
40
|
+
'airplane-landing': string;
|
|
41
|
+
'airplane-off': string;
|
|
42
|
+
'airplane-takeoff': string;
|
|
43
|
+
airplay: string;
|
|
44
|
+
alarm: string;
|
|
45
|
+
'alarm-check': string;
|
|
46
|
+
'alarm-multiple': string;
|
|
47
|
+
'alarm-off': string;
|
|
48
|
+
'alarm-plus': string;
|
|
49
|
+
'alarm-snooze': string;
|
|
50
|
+
album: string;
|
|
51
|
+
alert: string;
|
|
52
|
+
'alert-box': string;
|
|
53
|
+
'alert-circle': string;
|
|
54
|
+
'alert-circle-outline': string;
|
|
55
|
+
'alert-octagon': string;
|
|
56
|
+
'alert-octagram': string;
|
|
57
|
+
'alert-outline': string;
|
|
58
|
+
'align-horizontal-center': string;
|
|
59
|
+
'align-horizontal-left': string;
|
|
60
|
+
'align-horizontal-right': string;
|
|
61
|
+
'all-inclusive': string;
|
|
62
|
+
alpha: string;
|
|
63
|
+
alphabetical: string;
|
|
64
|
+
altimeter: string;
|
|
65
|
+
amazon: string;
|
|
66
|
+
'amazon-clouddrive': string;
|
|
67
|
+
ambulance: string;
|
|
68
|
+
amplifier: string;
|
|
69
|
+
anchor: string;
|
|
70
|
+
android: string;
|
|
71
|
+
'android-debug-bridge': string;
|
|
72
|
+
'android-studio': string;
|
|
73
|
+
angular: string;
|
|
74
|
+
angularjs: string;
|
|
75
|
+
animation: string;
|
|
76
|
+
apple: string;
|
|
77
|
+
'apple-finder': string;
|
|
78
|
+
'apple-ios': string;
|
|
79
|
+
'apple-keyboard-caps': string;
|
|
80
|
+
'apple-keyboard-command': string;
|
|
81
|
+
'apple-keyboard-control': string;
|
|
82
|
+
'apple-keyboard-option': string;
|
|
83
|
+
'apple-keyboard-shift': string;
|
|
84
|
+
'apple-mobileme': string;
|
|
85
|
+
'apple-safari': string;
|
|
86
|
+
application: string;
|
|
87
|
+
apps: string;
|
|
88
|
+
archive: string;
|
|
89
|
+
'arrange-bring-forward': string;
|
|
90
|
+
'arrange-bring-to-front': string;
|
|
91
|
+
'arrange-send-backward': string;
|
|
92
|
+
'arrange-send-to-back': string;
|
|
93
|
+
'arrow-all': string;
|
|
94
|
+
'arrow-bottom-left': string;
|
|
95
|
+
'arrow-bottom-right': string;
|
|
96
|
+
'arrow-compress': string;
|
|
97
|
+
'arrow-compress-all': string;
|
|
98
|
+
'arrow-down': string;
|
|
99
|
+
'arrow-down-bold': string;
|
|
100
|
+
'arrow-down-bold-box': string;
|
|
101
|
+
'arrow-down-bold-box-outline': string;
|
|
102
|
+
'arrow-down-bold-circle': string;
|
|
103
|
+
'arrow-down-bold-circle-outline': string;
|
|
104
|
+
'arrow-down-bold-hexagon-outline': string;
|
|
105
|
+
'arrow-down-box': string;
|
|
106
|
+
'arrow-down-drop-circle': string;
|
|
107
|
+
'arrow-down-drop-circle-outline': string;
|
|
108
|
+
'arrow-down-thick': string;
|
|
109
|
+
'arrow-expand': string;
|
|
110
|
+
'arrow-expand-all': string;
|
|
111
|
+
'arrow-left': string;
|
|
112
|
+
'arrow-left-bold': string;
|
|
113
|
+
'arrow-left-bold-box': string;
|
|
114
|
+
'arrow-left-bold-box-outline': string;
|
|
115
|
+
'arrow-left-bold-circle': string;
|
|
116
|
+
'arrow-left-bold-circle-outline': string;
|
|
117
|
+
'arrow-left-bold-hexagon-outline': string;
|
|
118
|
+
'arrow-left-box': string;
|
|
119
|
+
'arrow-left-drop-circle': string;
|
|
120
|
+
'arrow-left-drop-circle-outline': string;
|
|
121
|
+
'arrow-left-thick': string;
|
|
122
|
+
'arrow-right': string;
|
|
123
|
+
'arrow-right-bold': string;
|
|
124
|
+
'arrow-right-bold-box': string;
|
|
125
|
+
'arrow-right-bold-box-outline': string;
|
|
126
|
+
'arrow-right-bold-circle': string;
|
|
127
|
+
'arrow-right-bold-circle-outline': string;
|
|
128
|
+
'arrow-right-bold-hexagon-outline': string;
|
|
129
|
+
'arrow-right-box': string;
|
|
130
|
+
'arrow-right-drop-circle': string;
|
|
131
|
+
'arrow-right-drop-circle-outline': string;
|
|
132
|
+
'arrow-right-thick': string;
|
|
133
|
+
'arrow-top-left': string;
|
|
134
|
+
'arrow-top-right': string;
|
|
135
|
+
'arrow-up': string;
|
|
136
|
+
'arrow-up-bold': string;
|
|
137
|
+
'arrow-up-bold-box': string;
|
|
138
|
+
'arrow-up-bold-box-outline': string;
|
|
139
|
+
'arrow-up-bold-circle': string;
|
|
140
|
+
'arrow-up-bold-circle-outline': string;
|
|
141
|
+
'arrow-up-bold-hexagon-outline': string;
|
|
142
|
+
'arrow-up-box': string;
|
|
143
|
+
'arrow-up-drop-circle': string;
|
|
144
|
+
'arrow-up-drop-circle-outline': string;
|
|
145
|
+
'arrow-up-thick': string;
|
|
146
|
+
assistant: string;
|
|
147
|
+
asterisk: string;
|
|
148
|
+
at: string;
|
|
149
|
+
attachment: string;
|
|
150
|
+
audiobook: string;
|
|
151
|
+
'auto-awesome': string;
|
|
152
|
+
'auto-fix': string;
|
|
153
|
+
'auto-upload': string;
|
|
154
|
+
autorenew: string;
|
|
155
|
+
'av-timer': string;
|
|
156
|
+
baby: string;
|
|
157
|
+
'baby-buggy': string;
|
|
158
|
+
backburger: string;
|
|
159
|
+
backspace: string;
|
|
160
|
+
'backup-restore': string;
|
|
161
|
+
bandcamp: string;
|
|
162
|
+
bank: string;
|
|
163
|
+
barcode: string;
|
|
164
|
+
'barcode-scan': string;
|
|
165
|
+
barley: string;
|
|
166
|
+
barrel: string;
|
|
167
|
+
basecamp: string;
|
|
168
|
+
basket: string;
|
|
169
|
+
'basket-fill': string;
|
|
170
|
+
'basket-unfill': string;
|
|
171
|
+
battery: string;
|
|
172
|
+
'battery-10': string;
|
|
173
|
+
'battery-20': string;
|
|
174
|
+
'battery-30': string;
|
|
175
|
+
'battery-40': string;
|
|
176
|
+
'battery-50': string;
|
|
177
|
+
'battery-60': string;
|
|
178
|
+
'battery-70': string;
|
|
179
|
+
'battery-80': string;
|
|
180
|
+
'battery-90': string;
|
|
181
|
+
'battery-alert': string;
|
|
182
|
+
'battery-charging': string;
|
|
183
|
+
'battery-charging-100': string;
|
|
184
|
+
'battery-charging-20': string;
|
|
185
|
+
'battery-charging-30': string;
|
|
186
|
+
'battery-charging-40': string;
|
|
187
|
+
'battery-charging-60': string;
|
|
188
|
+
'battery-charging-80': string;
|
|
189
|
+
'battery-charging-90': string;
|
|
190
|
+
'battery-minus': string;
|
|
191
|
+
'battery-negative': string;
|
|
192
|
+
'battery-outline': string;
|
|
193
|
+
'battery-plus': string;
|
|
194
|
+
'battery-positive': string;
|
|
195
|
+
'battery-unknown': string;
|
|
196
|
+
beach: string;
|
|
197
|
+
beaker: string;
|
|
198
|
+
beats: string;
|
|
199
|
+
beer: string;
|
|
200
|
+
behance: string;
|
|
201
|
+
bell: string;
|
|
202
|
+
'bell-off': string;
|
|
203
|
+
'bell-outline': string;
|
|
204
|
+
'bell-plus': string;
|
|
205
|
+
'bell-ring': string;
|
|
206
|
+
'bell-ring-outline': string;
|
|
207
|
+
'bell-sleep': string;
|
|
208
|
+
beta: string;
|
|
209
|
+
bible: string;
|
|
210
|
+
'bigtop-updates': string;
|
|
211
|
+
bigcommerce: string;
|
|
212
|
+
bike: string;
|
|
213
|
+
bing: string;
|
|
214
|
+
binoculars: string;
|
|
215
|
+
bio: string;
|
|
216
|
+
biohazard: string;
|
|
217
|
+
bitbucket: string;
|
|
218
|
+
'black-mesa': string;
|
|
219
|
+
blackberry: string;
|
|
220
|
+
blender: string;
|
|
221
|
+
blinds: string;
|
|
222
|
+
'block-helper': string;
|
|
223
|
+
blogger: string;
|
|
224
|
+
bluetooth: string;
|
|
225
|
+
'bluetooth-audio': string;
|
|
226
|
+
'bluetooth-connect': string;
|
|
227
|
+
'bluetooth-off': string;
|
|
228
|
+
'bluetooth-settings': string;
|
|
229
|
+
'bluetooth-transfer': string;
|
|
230
|
+
blur: string;
|
|
231
|
+
'blur-linear': string;
|
|
232
|
+
'blur-off': string;
|
|
233
|
+
'blur-radial': string;
|
|
234
|
+
bomb: string;
|
|
235
|
+
'bomb-off': string;
|
|
236
|
+
bone: string;
|
|
237
|
+
book: string;
|
|
238
|
+
'book-minus': string;
|
|
239
|
+
'book-multiple': string;
|
|
240
|
+
'book-multiple-variant': string;
|
|
241
|
+
'book-open': string;
|
|
242
|
+
'book-open-page-variant': string;
|
|
243
|
+
'book-open-variant': string;
|
|
244
|
+
'book-plus': string;
|
|
245
|
+
'book-variant': string;
|
|
246
|
+
bookmark: string;
|
|
247
|
+
'bookmark-check': string;
|
|
248
|
+
'bookmark-music': string;
|
|
249
|
+
'bookmark-outline': string;
|
|
250
|
+
'bookmark-plus': string;
|
|
251
|
+
'bookmark-plus-outline': string;
|
|
252
|
+
'bookmark-remove': string;
|
|
253
|
+
boombox: string;
|
|
254
|
+
bootstrap: string;
|
|
255
|
+
'border-all': string;
|
|
256
|
+
'border-bottom': string;
|
|
257
|
+
'border-color': string;
|
|
258
|
+
'border-horizontal': string;
|
|
259
|
+
'border-inside': string;
|
|
260
|
+
'border-left': string;
|
|
261
|
+
'border-none': string;
|
|
262
|
+
'border-outside': string;
|
|
263
|
+
'border-right': string;
|
|
264
|
+
'border-style': string;
|
|
265
|
+
'border-top': string;
|
|
266
|
+
'border-vertical': string;
|
|
267
|
+
'bow-tie': string;
|
|
268
|
+
bowl: string;
|
|
269
|
+
bowling: string;
|
|
270
|
+
box: string;
|
|
271
|
+
'box-cutter': string;
|
|
272
|
+
'box-shadow': string;
|
|
273
|
+
bridge: string;
|
|
274
|
+
briefcase: string;
|
|
275
|
+
'briefcase-check': string;
|
|
276
|
+
'briefcase-download': string;
|
|
277
|
+
'briefcase-outline': string;
|
|
278
|
+
'briefcase-upload': string;
|
|
279
|
+
'brightness-1': string;
|
|
280
|
+
'brightness-2': string;
|
|
281
|
+
'brightness-3': string;
|
|
282
|
+
'brightness-4': string;
|
|
283
|
+
'brightness-5': string;
|
|
284
|
+
'brightness-6': string;
|
|
285
|
+
'brightness-7': string;
|
|
286
|
+
'brightness-auto': string;
|
|
287
|
+
broom: string;
|
|
288
|
+
brush: string;
|
|
289
|
+
buffer: string;
|
|
290
|
+
bug: string;
|
|
291
|
+
'bulletin-board': string;
|
|
292
|
+
bullhorn: string;
|
|
293
|
+
'bullhorn-outline': string;
|
|
294
|
+
bullseye: string;
|
|
295
|
+
'bullseye-arrow': string;
|
|
296
|
+
'burst-mode': string;
|
|
297
|
+
bus: string;
|
|
298
|
+
cached: string;
|
|
299
|
+
cake: string;
|
|
300
|
+
'cake-layered': string;
|
|
301
|
+
'cake-variant': string;
|
|
302
|
+
calculator: string;
|
|
303
|
+
calendar: string;
|
|
304
|
+
'calendar-blank': string;
|
|
305
|
+
'calendar-check': string;
|
|
306
|
+
'calendar-clock': string;
|
|
307
|
+
'calendar-multiple': string;
|
|
308
|
+
'calendar-multiple-check': string;
|
|
309
|
+
'calendar-plus': string;
|
|
310
|
+
'calendar-question': string;
|
|
311
|
+
'calendar-range': string;
|
|
312
|
+
'calendar-remove': string;
|
|
313
|
+
'calendar-search-outline': string;
|
|
314
|
+
'calendar-text': string;
|
|
315
|
+
'calendar-today': string;
|
|
316
|
+
'call-made': string;
|
|
317
|
+
'call-merge': string;
|
|
318
|
+
'call-missed': string;
|
|
319
|
+
'call-received': string;
|
|
320
|
+
'call-split': string;
|
|
321
|
+
'call-split-rotate': string;
|
|
322
|
+
'call-to-action': string;
|
|
323
|
+
camcorder: string;
|
|
324
|
+
'camcorder-box': string;
|
|
325
|
+
'camcorder-box-off': string;
|
|
326
|
+
'camcorder-off': string;
|
|
327
|
+
camera: string;
|
|
328
|
+
'camera-burst': string;
|
|
329
|
+
'camera-enhance': string;
|
|
330
|
+
'camera-front': string;
|
|
331
|
+
'camera-front-variant': string;
|
|
332
|
+
'camera-iris': string;
|
|
333
|
+
'camera-off': string;
|
|
334
|
+
'camera-party-mode': string;
|
|
335
|
+
'camera-rear': string;
|
|
336
|
+
'camera-rear-variant': string;
|
|
337
|
+
'camera-switch': string;
|
|
338
|
+
'camera-timer': string;
|
|
339
|
+
candle: string;
|
|
340
|
+
candycane: string;
|
|
341
|
+
car: string;
|
|
342
|
+
'car-battery': string;
|
|
343
|
+
'car-connected': string;
|
|
344
|
+
'car-wash': string;
|
|
345
|
+
cards: string;
|
|
346
|
+
'cards-outline': string;
|
|
347
|
+
'cards-playing-outline': string;
|
|
348
|
+
'cards-variant': string;
|
|
349
|
+
carrot: string;
|
|
350
|
+
cart: string;
|
|
351
|
+
'cart-check': string;
|
|
352
|
+
'cart-off': string;
|
|
353
|
+
'cart-outline': string;
|
|
354
|
+
'cart-plus': string;
|
|
355
|
+
'case-sensitive-alt': string;
|
|
356
|
+
cash: string;
|
|
357
|
+
'cash-100': string;
|
|
358
|
+
'cash-multiple': string;
|
|
359
|
+
'cash-usd': string;
|
|
360
|
+
cast: string;
|
|
361
|
+
'cast-connected': string;
|
|
362
|
+
castle: string;
|
|
363
|
+
cat: string;
|
|
364
|
+
cellphone: string;
|
|
365
|
+
'cellphone-android': string;
|
|
366
|
+
'cellphone-basic': string;
|
|
367
|
+
'cellphone-dock': string;
|
|
368
|
+
'cellphone-iphone': string;
|
|
369
|
+
'cellphone-link': string;
|
|
370
|
+
'cellphone-link-off': string;
|
|
371
|
+
'cellphone-message': string;
|
|
372
|
+
'cellphone-settings': string;
|
|
373
|
+
certificate: string;
|
|
374
|
+
'chair-school': string;
|
|
375
|
+
'chart-arc': string;
|
|
376
|
+
'chart-areaspline': string;
|
|
377
|
+
'chart-bar': string;
|
|
378
|
+
'chart-bubble': string;
|
|
379
|
+
'chart-gantt': string;
|
|
380
|
+
'chart-histogram': string;
|
|
381
|
+
'chart-line': string;
|
|
382
|
+
'chart-line-variant': string;
|
|
383
|
+
'chart-pie': string;
|
|
384
|
+
'chart-scatterplot-hexbin': string;
|
|
385
|
+
'chart-timeline': string;
|
|
386
|
+
check: string;
|
|
387
|
+
'check-all': string;
|
|
388
|
+
'check-circle': string;
|
|
389
|
+
'check-circle-outline': string;
|
|
390
|
+
'checkbox-blank': string;
|
|
391
|
+
'checkbox-blank-circle': string;
|
|
392
|
+
'checkbox-blank-circle-outline': string;
|
|
393
|
+
'checkbox-blank-outline': string;
|
|
394
|
+
'checkbox-marked': string;
|
|
395
|
+
'checkbox-marked-circle': string;
|
|
396
|
+
'checkbox-marked-circle-outline': string;
|
|
397
|
+
'checkbox-marked-outline': string;
|
|
398
|
+
'checkbox-indeterminate': string;
|
|
399
|
+
'checkbox-multiple-blank': string;
|
|
400
|
+
'checkbox-multiple-blank-circle': string;
|
|
401
|
+
'checkbox-multiple-blank-circle-outline': string;
|
|
402
|
+
'checkbox-multiple-blank-outline': string;
|
|
403
|
+
'checkbox-multiple-marked': string;
|
|
404
|
+
'checkbox-multiple-marked-circle': string;
|
|
405
|
+
'checkbox-multiple-marked-circle-outline': string;
|
|
406
|
+
'checkbox-multiple-marked-outline': string;
|
|
407
|
+
checkerboard: string;
|
|
408
|
+
'chemical-weapon': string;
|
|
409
|
+
'chevron-double-down': string;
|
|
410
|
+
'chevron-double-left': string;
|
|
411
|
+
'chevron-double-right': string;
|
|
412
|
+
'chevron-double-up': string;
|
|
413
|
+
'chevron-down': string;
|
|
414
|
+
'chevron-left': string;
|
|
415
|
+
'chevron-right': string;
|
|
416
|
+
'chevron-up': string;
|
|
417
|
+
chip: string;
|
|
418
|
+
church: string;
|
|
419
|
+
'circle-medium': string;
|
|
420
|
+
'cisco-webex': string;
|
|
421
|
+
city: string;
|
|
422
|
+
clipboard: string;
|
|
423
|
+
'clipboard-account': string;
|
|
424
|
+
'clipboard-account-outline': string;
|
|
425
|
+
'clipboard-alert': string;
|
|
426
|
+
'clipboard-arrow-down': string;
|
|
427
|
+
'clipboard-arrow-left': string;
|
|
428
|
+
'clipboard-check': string;
|
|
429
|
+
'clipboard-flow': string;
|
|
430
|
+
'clipboard-multiple': string;
|
|
431
|
+
'clipboard-outline': string;
|
|
432
|
+
'clipboard-text': string;
|
|
433
|
+
'clipboard-text-outline': string;
|
|
434
|
+
clippy: string;
|
|
435
|
+
clock: string;
|
|
436
|
+
'clock-alert': string;
|
|
437
|
+
'clock-end': string;
|
|
438
|
+
'clock-fast': string;
|
|
439
|
+
'clock-in': string;
|
|
440
|
+
'clock-out': string;
|
|
441
|
+
'clock-start': string;
|
|
442
|
+
close: string;
|
|
443
|
+
'close-box': string;
|
|
444
|
+
'close-box-outline': string;
|
|
445
|
+
'close-circle': string;
|
|
446
|
+
'close-circle-outline': string;
|
|
447
|
+
'close-network': string;
|
|
448
|
+
'close-octagon': string;
|
|
449
|
+
'close-octagon-outline': string;
|
|
450
|
+
'close-outline': string;
|
|
451
|
+
'closed-caption': string;
|
|
452
|
+
cloud: string;
|
|
453
|
+
'cloud-check': string;
|
|
454
|
+
'cloud-circle': string;
|
|
455
|
+
'cloud-download': string;
|
|
456
|
+
'cloud-outline': string;
|
|
457
|
+
'cloud-outline-off': string;
|
|
458
|
+
'cloud-print': string;
|
|
459
|
+
'cloud-print-outline': string;
|
|
460
|
+
'cloud-sync': string;
|
|
461
|
+
'cloud-upload': string;
|
|
462
|
+
connect: string;
|
|
463
|
+
'code-array': string;
|
|
464
|
+
'code-braces': string;
|
|
465
|
+
'code-brackets': string;
|
|
466
|
+
'code-equal': string;
|
|
467
|
+
'code-greater-than': string;
|
|
468
|
+
'code-greater-than-or-equal': string;
|
|
469
|
+
'code-less-than': string;
|
|
470
|
+
'code-less-than-or-equal': string;
|
|
471
|
+
'code-not-equal': string;
|
|
472
|
+
'code-not-equal-variant': string;
|
|
473
|
+
'code-parentheses': string;
|
|
474
|
+
'code-string': string;
|
|
475
|
+
'code-tags': string;
|
|
476
|
+
'code-tags-check': string;
|
|
477
|
+
codepen: string;
|
|
478
|
+
coffee: string;
|
|
479
|
+
'coffee-outline': string;
|
|
480
|
+
'coffee-to-go': string;
|
|
481
|
+
coin: string;
|
|
482
|
+
coins: string;
|
|
483
|
+
collage: string;
|
|
484
|
+
'color-helper': string;
|
|
485
|
+
comment: string;
|
|
486
|
+
'color-square': string;
|
|
487
|
+
'comment-account': string;
|
|
488
|
+
'comment-account-outline': string;
|
|
489
|
+
'comment-alert': string;
|
|
490
|
+
'comment-alert-outline': string;
|
|
491
|
+
'comment-check': string;
|
|
492
|
+
'comment-check-outline': string;
|
|
493
|
+
'comment-multiple-outline': string;
|
|
494
|
+
'comment-outline': string;
|
|
495
|
+
'comment-plus-outline': string;
|
|
496
|
+
'comment-processing': string;
|
|
497
|
+
'comment-processing-outline': string;
|
|
498
|
+
'comment-question-outline': string;
|
|
499
|
+
'comment-remove-outline': string;
|
|
500
|
+
'comment-text': string;
|
|
501
|
+
'comment-text-outline': string;
|
|
502
|
+
compare: string;
|
|
503
|
+
compass: string;
|
|
504
|
+
'compass-outline': string;
|
|
505
|
+
'connectif-email-bounce': string;
|
|
506
|
+
'connectif-logo': string;
|
|
507
|
+
console: string;
|
|
508
|
+
'contact-mail': string;
|
|
509
|
+
contacts: string;
|
|
510
|
+
'content-copy': string;
|
|
511
|
+
'content-cut': string;
|
|
512
|
+
'content-duplicate': string;
|
|
513
|
+
'content-paste': string;
|
|
514
|
+
'content-save': string;
|
|
515
|
+
'content-save-all': string;
|
|
516
|
+
'content-save-settings': string;
|
|
517
|
+
contrast: string;
|
|
518
|
+
'contrast-box': string;
|
|
519
|
+
'contrast-circle': string;
|
|
520
|
+
cookie: string;
|
|
521
|
+
copyright: string;
|
|
522
|
+
counter: string;
|
|
523
|
+
cow: string;
|
|
524
|
+
creation: string;
|
|
525
|
+
'credit-card': string;
|
|
526
|
+
'credit-card-multiple': string;
|
|
527
|
+
'credit-card-off': string;
|
|
528
|
+
'credit-card-plus': string;
|
|
529
|
+
'credit-card-scan': string;
|
|
530
|
+
crop: string;
|
|
531
|
+
'crop-free': string;
|
|
532
|
+
'crop-landscape': string;
|
|
533
|
+
'crop-portrait': string;
|
|
534
|
+
'crop-rotate': string;
|
|
535
|
+
'crop-square': string;
|
|
536
|
+
crosshairs: string;
|
|
537
|
+
'crosshairs-gps': string;
|
|
538
|
+
crown: string;
|
|
539
|
+
cube: string;
|
|
540
|
+
'cube-outline': string;
|
|
541
|
+
'cube-send': string;
|
|
542
|
+
'cube-unfolded': string;
|
|
543
|
+
cup: string;
|
|
544
|
+
'cup-off': string;
|
|
545
|
+
'cup-water': string;
|
|
546
|
+
'currency-btc': string;
|
|
547
|
+
'currency-eur': string;
|
|
548
|
+
'currency-gbp': string;
|
|
549
|
+
'currency-inr': string;
|
|
550
|
+
'currency-ngn': string;
|
|
551
|
+
'currency-rub': string;
|
|
552
|
+
'currency-try': string;
|
|
553
|
+
'currency-usd': string;
|
|
554
|
+
'currency-usd-off': string;
|
|
555
|
+
'cursor-default': string;
|
|
556
|
+
'cursor-default-click-outline': string;
|
|
557
|
+
'cursor-default-outline': string;
|
|
558
|
+
'cursor-move': string;
|
|
559
|
+
'cursor-pointer': string;
|
|
560
|
+
'cursor-text': string;
|
|
561
|
+
database: string;
|
|
562
|
+
'database-minus': string;
|
|
563
|
+
'database-plus': string;
|
|
564
|
+
'debug-step-into': string;
|
|
565
|
+
'debug-step-out': string;
|
|
566
|
+
'debug-step-over': string;
|
|
567
|
+
decimal: string;
|
|
568
|
+
'decimal-decrease': string;
|
|
569
|
+
'decimal-increase': string;
|
|
570
|
+
delete: string;
|
|
571
|
+
'delete-circle': string;
|
|
572
|
+
'delete-empty': string;
|
|
573
|
+
'delete-forever': string;
|
|
574
|
+
'delete-outline': string;
|
|
575
|
+
'delete-sweep': string;
|
|
576
|
+
'delete-variant': string;
|
|
577
|
+
delta: string;
|
|
578
|
+
deskphone: string;
|
|
579
|
+
'desktop-mac': string;
|
|
580
|
+
'desktop-tower': string;
|
|
581
|
+
details: string;
|
|
582
|
+
'developer-board': string;
|
|
583
|
+
deviantart: string;
|
|
584
|
+
dialpad: string;
|
|
585
|
+
diamond: string;
|
|
586
|
+
'dice-1': string;
|
|
587
|
+
'dice-2': string;
|
|
588
|
+
'dice-3': string;
|
|
589
|
+
'dice-4': string;
|
|
590
|
+
'dice-5': string;
|
|
591
|
+
'dice-6': string;
|
|
592
|
+
'dice-d20': string;
|
|
593
|
+
'dice-d4': string;
|
|
594
|
+
'dice-d6': string;
|
|
595
|
+
'dice-d8': string;
|
|
596
|
+
dictionary: string;
|
|
597
|
+
directions: string;
|
|
598
|
+
'directions-fork': string;
|
|
599
|
+
discord: string;
|
|
600
|
+
disk: string;
|
|
601
|
+
'disk-alert': string;
|
|
602
|
+
disqus: string;
|
|
603
|
+
'disqus-outline': string;
|
|
604
|
+
division: string;
|
|
605
|
+
'division-box': string;
|
|
606
|
+
dna: string;
|
|
607
|
+
dns: string;
|
|
608
|
+
'do-not-disturb': string;
|
|
609
|
+
'do-not-disturb-off': string;
|
|
610
|
+
dolby: string;
|
|
611
|
+
domain: string;
|
|
612
|
+
dot: string;
|
|
613
|
+
'dot-square': string;
|
|
614
|
+
'dots-horizontal': string;
|
|
615
|
+
'dots-vertical': string;
|
|
616
|
+
douban: string;
|
|
617
|
+
download: string;
|
|
618
|
+
drag: string;
|
|
619
|
+
'drag-horizontal': string;
|
|
620
|
+
'drag-vertical': string;
|
|
621
|
+
'drama-mask': string;
|
|
622
|
+
drawing: string;
|
|
623
|
+
'drawing-box': string;
|
|
624
|
+
dribbble: string;
|
|
625
|
+
'dribbble-box': string;
|
|
626
|
+
drone: string;
|
|
627
|
+
dropbox: string;
|
|
628
|
+
drupal: string;
|
|
629
|
+
duck: string;
|
|
630
|
+
dumbbell: string;
|
|
631
|
+
earth: string;
|
|
632
|
+
'earth-box': string;
|
|
633
|
+
'earth-box-off': string;
|
|
634
|
+
'earth-off': string;
|
|
635
|
+
edge: string;
|
|
636
|
+
'edit-note': string;
|
|
637
|
+
eject: string;
|
|
638
|
+
'elevation-decline': string;
|
|
639
|
+
'elevation-rise': string;
|
|
640
|
+
elevator: string;
|
|
641
|
+
email: string;
|
|
642
|
+
'email-alert': string;
|
|
643
|
+
'email-fast-outline': string;
|
|
644
|
+
'email-multiple-outline': string;
|
|
645
|
+
'email-open': string;
|
|
646
|
+
'email-open-outline': string;
|
|
647
|
+
'email-outline': string;
|
|
648
|
+
'email-plus-outline': string;
|
|
649
|
+
'email-secure': string;
|
|
650
|
+
'email-variant': string;
|
|
651
|
+
emby: string;
|
|
652
|
+
emoticon: string;
|
|
653
|
+
'emoticon-cool': string;
|
|
654
|
+
'emoticon-dead': string;
|
|
655
|
+
'emoticon-devil': string;
|
|
656
|
+
'emoticon-excited': string;
|
|
657
|
+
'emoticon-happy': string;
|
|
658
|
+
'emoticon-neutral': string;
|
|
659
|
+
'emoticon-poop': string;
|
|
660
|
+
'emoticon-sad': string;
|
|
661
|
+
'emoticon-tongue': string;
|
|
662
|
+
engine: string;
|
|
663
|
+
'engine-outline': string;
|
|
664
|
+
equal: string;
|
|
665
|
+
'equal-box': string;
|
|
666
|
+
eraser: string;
|
|
667
|
+
'eraser-variant': string;
|
|
668
|
+
escalator: string;
|
|
669
|
+
ethernet: string;
|
|
670
|
+
'ethernet-cable': string;
|
|
671
|
+
'ethernet-cable-off': string;
|
|
672
|
+
etsy: string;
|
|
673
|
+
'ev-station': string;
|
|
674
|
+
evernote: string;
|
|
675
|
+
exclamation: string;
|
|
676
|
+
'exit-to-app': string;
|
|
677
|
+
export: string;
|
|
678
|
+
eye: string;
|
|
679
|
+
'eye-off': string;
|
|
680
|
+
'eye-outline': string;
|
|
681
|
+
'eye-outline-off': string;
|
|
682
|
+
eyedropper: string;
|
|
683
|
+
'eyedropper-variant': string;
|
|
684
|
+
face: string;
|
|
685
|
+
'face-profile': string;
|
|
686
|
+
facebook: string;
|
|
687
|
+
'facebook-box': string;
|
|
688
|
+
'facebook-messenger': string;
|
|
689
|
+
'facebook-page-visit': string;
|
|
690
|
+
factory: string;
|
|
691
|
+
fan: string;
|
|
692
|
+
'fast-forward': string;
|
|
693
|
+
'fast-forward-outline': string;
|
|
694
|
+
fax: string;
|
|
695
|
+
feather: string;
|
|
696
|
+
ferry: string;
|
|
697
|
+
file: string;
|
|
698
|
+
'file-account': string;
|
|
699
|
+
'file-chart': string;
|
|
700
|
+
'file-check': string;
|
|
701
|
+
'file-cloud': string;
|
|
702
|
+
'file-delimited': string;
|
|
703
|
+
'file-document': string;
|
|
704
|
+
'file-document-box': string;
|
|
705
|
+
'file-excel': string;
|
|
706
|
+
'file-excel-box': string;
|
|
707
|
+
'file-export': string;
|
|
708
|
+
'file-eye-outline': string;
|
|
709
|
+
'file-find': string;
|
|
710
|
+
'file-hidden': string;
|
|
711
|
+
'file-image': string;
|
|
712
|
+
'file-import': string;
|
|
713
|
+
'file-lock': string;
|
|
714
|
+
'file-multiple': string;
|
|
715
|
+
'file-music': string;
|
|
716
|
+
'file-outline': string;
|
|
717
|
+
'file-pdf': string;
|
|
718
|
+
'file-pdf-box': string;
|
|
719
|
+
'file-powerpoint': string;
|
|
720
|
+
'file-powerpoint-box': string;
|
|
721
|
+
'file-presentation-box': string;
|
|
722
|
+
'file-restore': string;
|
|
723
|
+
'file-send': string;
|
|
724
|
+
'file-tree': string;
|
|
725
|
+
'file-video': string;
|
|
726
|
+
'file-word': string;
|
|
727
|
+
'file-word-box': string;
|
|
728
|
+
'file-xml': string;
|
|
729
|
+
film: string;
|
|
730
|
+
filmstrip: string;
|
|
731
|
+
'filmstrip-off': string;
|
|
732
|
+
filter: string;
|
|
733
|
+
'filter-outline': string;
|
|
734
|
+
'filter-remove': string;
|
|
735
|
+
'filter-remove-outline': string;
|
|
736
|
+
'filter-variant': string;
|
|
737
|
+
'find-replace': string;
|
|
738
|
+
fingerprint: string;
|
|
739
|
+
fire: string;
|
|
740
|
+
firefox: string;
|
|
741
|
+
fish: string;
|
|
742
|
+
flag: string;
|
|
743
|
+
'flag-checkered': string;
|
|
744
|
+
'flag-outline': string;
|
|
745
|
+
'flag-outline-variant': string;
|
|
746
|
+
'flag-triangle': string;
|
|
747
|
+
'flag-variant': string;
|
|
748
|
+
flash: string;
|
|
749
|
+
'flash-auto': string;
|
|
750
|
+
'flash-off': string;
|
|
751
|
+
'flash-outline': string;
|
|
752
|
+
'flash-red-eye': string;
|
|
753
|
+
flashlight: string;
|
|
754
|
+
'flashlight-off': string;
|
|
755
|
+
flask: string;
|
|
756
|
+
'flask-empty': string;
|
|
757
|
+
'flask-empty-outline': string;
|
|
758
|
+
'flask-outline': string;
|
|
759
|
+
flattr: string;
|
|
760
|
+
'flip-to-back': string;
|
|
761
|
+
'flip-to-front': string;
|
|
762
|
+
floppy: string;
|
|
763
|
+
flower: string;
|
|
764
|
+
folder: string;
|
|
765
|
+
'folder-account': string;
|
|
766
|
+
'folder-download': string;
|
|
767
|
+
'folder-google-drive': string;
|
|
768
|
+
'folder-image': string;
|
|
769
|
+
'folder-lock': string;
|
|
770
|
+
'folder-lock-open': string;
|
|
771
|
+
'folder-move': string;
|
|
772
|
+
'folder-multiple': string;
|
|
773
|
+
'folder-multiple-image': string;
|
|
774
|
+
'folder-multiple-outline': string;
|
|
775
|
+
'folder-outline': string;
|
|
776
|
+
'folder-plus': string;
|
|
777
|
+
'folder-remove': string;
|
|
778
|
+
'folder-star': string;
|
|
779
|
+
'folder-upload': string;
|
|
780
|
+
'font-awesome': string;
|
|
781
|
+
food: string;
|
|
782
|
+
'food-apple': string;
|
|
783
|
+
'food-fork-drink': string;
|
|
784
|
+
'food-off': string;
|
|
785
|
+
'food-variant': string;
|
|
786
|
+
football: string;
|
|
787
|
+
'football-australian': string;
|
|
788
|
+
'football-helmet': string;
|
|
789
|
+
'format-align-center': string;
|
|
790
|
+
'format-align-justify': string;
|
|
791
|
+
'format-align-left': string;
|
|
792
|
+
'format-align-right': string;
|
|
793
|
+
'format-annotation-plus': string;
|
|
794
|
+
'format-bold': string;
|
|
795
|
+
'format-clear': string;
|
|
796
|
+
'format-color-fill': string;
|
|
797
|
+
'format-color-text': string;
|
|
798
|
+
'format-float-center': string;
|
|
799
|
+
'format-float-left': string;
|
|
800
|
+
'format-float-none': string;
|
|
801
|
+
'format-float-right': string;
|
|
802
|
+
'format-font': string;
|
|
803
|
+
'format-header-1': string;
|
|
804
|
+
'format-header-2': string;
|
|
805
|
+
'format-header-3': string;
|
|
806
|
+
'format-header-4': string;
|
|
807
|
+
'format-header-5': string;
|
|
808
|
+
'format-header-6': string;
|
|
809
|
+
'format-header-decrease': string;
|
|
810
|
+
'format-header-equal': string;
|
|
811
|
+
'format-header-increase': string;
|
|
812
|
+
'format-header-pound': string;
|
|
813
|
+
'format-horizontal-align-center': string;
|
|
814
|
+
'format-horizontal-align-left': string;
|
|
815
|
+
'format-horizontal-align-right': string;
|
|
816
|
+
'format-indent-decrease': string;
|
|
817
|
+
'format-indent-increase': string;
|
|
818
|
+
'format-italic': string;
|
|
819
|
+
'format-line-spacing': string;
|
|
820
|
+
'format-line-style': string;
|
|
821
|
+
'format-line-weight': string;
|
|
822
|
+
'format-list-bulleted': string;
|
|
823
|
+
'format-list-bulleted-type': string;
|
|
824
|
+
'format-list-numbers': string;
|
|
825
|
+
'format-page-break': string;
|
|
826
|
+
'format-paint': string;
|
|
827
|
+
'format-paragraph': string;
|
|
828
|
+
'format-pilcrow': string;
|
|
829
|
+
'format-quote': string;
|
|
830
|
+
'format-rotate-90': string;
|
|
831
|
+
'format-section': string;
|
|
832
|
+
'format-size': string;
|
|
833
|
+
'format-strikethrough': string;
|
|
834
|
+
'format-strikethrough-variant': string;
|
|
835
|
+
'format-subscript': string;
|
|
836
|
+
'format-superscript': string;
|
|
837
|
+
'format-text': string;
|
|
838
|
+
'format-textdirection-l-to-r': string;
|
|
839
|
+
'format-textdirection-r-to-l': string;
|
|
840
|
+
'format-title': string;
|
|
841
|
+
'format-underline': string;
|
|
842
|
+
'format-vertical-align-bottom': string;
|
|
843
|
+
'format-vertical-align-center': string;
|
|
844
|
+
'format-vertical-align-top': string;
|
|
845
|
+
'format-wrap-inline': string;
|
|
846
|
+
'format-wrap-square': string;
|
|
847
|
+
'format-wrap-tight': string;
|
|
848
|
+
'format-wrap-top-bottom': string;
|
|
849
|
+
forum: string;
|
|
850
|
+
'forum-outline': string;
|
|
851
|
+
forward: string;
|
|
852
|
+
foursquare: string;
|
|
853
|
+
fridge: string;
|
|
854
|
+
'fridge-filled': string;
|
|
855
|
+
'fridge-filled-bottom': string;
|
|
856
|
+
'fridge-filled-top': string;
|
|
857
|
+
fullscreen: string;
|
|
858
|
+
'fullscreen-exit': string;
|
|
859
|
+
function: string;
|
|
860
|
+
gamepad: string;
|
|
861
|
+
'gamepad-variant': string;
|
|
862
|
+
garage: string;
|
|
863
|
+
'garage-open': string;
|
|
864
|
+
'gas-cylinder': string;
|
|
865
|
+
'gas-station': string;
|
|
866
|
+
gate: string;
|
|
867
|
+
gauge: string;
|
|
868
|
+
gavel: string;
|
|
869
|
+
'gender-female': string;
|
|
870
|
+
'gender-male': string;
|
|
871
|
+
'gender-male-female': string;
|
|
872
|
+
'gender-transgender': string;
|
|
873
|
+
'gesture-double-tap': string;
|
|
874
|
+
'gesture-swipe-down': string;
|
|
875
|
+
'gesture-swipe-left': string;
|
|
876
|
+
'gesture-swipe-right': string;
|
|
877
|
+
'gesture-swipe-up': string;
|
|
878
|
+
'gesture-tap': string;
|
|
879
|
+
'gesture-two-double-tap': string;
|
|
880
|
+
'gesture-two-tap': string;
|
|
881
|
+
ghost: string;
|
|
882
|
+
gift: string;
|
|
883
|
+
git: string;
|
|
884
|
+
'github-box': string;
|
|
885
|
+
'github-circle': string;
|
|
886
|
+
'github-face': string;
|
|
887
|
+
'glass-flute': string;
|
|
888
|
+
'glass-mug': string;
|
|
889
|
+
'glass-stange': string;
|
|
890
|
+
'glass-tulip': string;
|
|
891
|
+
glassdoor: string;
|
|
892
|
+
glasses: string;
|
|
893
|
+
gmail: string;
|
|
894
|
+
gnome: string;
|
|
895
|
+
gondola: string;
|
|
896
|
+
google: string;
|
|
897
|
+
'google-analytics': string;
|
|
898
|
+
'google-cardboard': string;
|
|
899
|
+
'google-chrome': string;
|
|
900
|
+
'google-circles': string;
|
|
901
|
+
'google-circles-communities': string;
|
|
902
|
+
'google-circles-extended': string;
|
|
903
|
+
'google-circles-group': string;
|
|
904
|
+
'google-controller': string;
|
|
905
|
+
'google-controller-off': string;
|
|
906
|
+
'google-drive': string;
|
|
907
|
+
'google-earth': string;
|
|
908
|
+
'google-glass': string;
|
|
909
|
+
'google-keep': string;
|
|
910
|
+
'google-maps': string;
|
|
911
|
+
'google-nearby': string;
|
|
912
|
+
'google-pages': string;
|
|
913
|
+
'google-photos': string;
|
|
914
|
+
'google-physical-web': string;
|
|
915
|
+
'google-play': string;
|
|
916
|
+
'google-plus': string;
|
|
917
|
+
'google-plus-box': string;
|
|
918
|
+
'google-translate': string;
|
|
919
|
+
'google-wallet': string;
|
|
920
|
+
gradient: string;
|
|
921
|
+
'grease-pencil': string;
|
|
922
|
+
grid: string;
|
|
923
|
+
'grid-off': string;
|
|
924
|
+
group: string;
|
|
925
|
+
'guitar-electric': string;
|
|
926
|
+
'guitar-pick': string;
|
|
927
|
+
'guitar-pick-outline': string;
|
|
928
|
+
hackernews: string;
|
|
929
|
+
hamburger: string;
|
|
930
|
+
'hand-pointing-right': string;
|
|
931
|
+
hanger: string;
|
|
932
|
+
hangouts: string;
|
|
933
|
+
harddisk: string;
|
|
934
|
+
headphones: string;
|
|
935
|
+
'headphones-box': string;
|
|
936
|
+
'headphones-settings': string;
|
|
937
|
+
headset: string;
|
|
938
|
+
'headset-dock': string;
|
|
939
|
+
'headset-off': string;
|
|
940
|
+
heart: string;
|
|
941
|
+
'heart-box': string;
|
|
942
|
+
'heart-box-outline': string;
|
|
943
|
+
'heart-broken': string;
|
|
944
|
+
'heart-half-outline': string;
|
|
945
|
+
'heart-half-part': string;
|
|
946
|
+
'heart-half-part-outline': string;
|
|
947
|
+
'heart-outline': string;
|
|
948
|
+
'heart-pulse': string;
|
|
949
|
+
help: string;
|
|
950
|
+
'help-circle': string;
|
|
951
|
+
'help-circle-outline': string;
|
|
952
|
+
hexagon: string;
|
|
953
|
+
'hexagon-multiple': string;
|
|
954
|
+
'hexagon-outline': string;
|
|
955
|
+
highway: string;
|
|
956
|
+
history: string;
|
|
957
|
+
hololens: string;
|
|
958
|
+
home: string;
|
|
959
|
+
'home-map-marker': string;
|
|
960
|
+
'home-modern': string;
|
|
961
|
+
'home-outline': string;
|
|
962
|
+
'home-variant': string;
|
|
963
|
+
hook: string;
|
|
964
|
+
'hook-off': string;
|
|
965
|
+
hops: string;
|
|
966
|
+
hospital: string;
|
|
967
|
+
'hospital-building': string;
|
|
968
|
+
'hospital-marker': string;
|
|
969
|
+
hotel: string;
|
|
970
|
+
houzz: string;
|
|
971
|
+
'houzz-box': string;
|
|
972
|
+
human: string;
|
|
973
|
+
'human-child': string;
|
|
974
|
+
'human-female': string;
|
|
975
|
+
'human-greeting': string;
|
|
976
|
+
'human-handsdown': string;
|
|
977
|
+
'human-handsup': string;
|
|
978
|
+
'human-male': string;
|
|
979
|
+
'human-male-female': string;
|
|
980
|
+
'human-pregnant': string;
|
|
981
|
+
image: string;
|
|
982
|
+
'image-album': string;
|
|
983
|
+
'image-area': string;
|
|
984
|
+
'image-area-close': string;
|
|
985
|
+
'image-broken': string;
|
|
986
|
+
'image-broken-variant': string;
|
|
987
|
+
'image-filter': string;
|
|
988
|
+
'image-filter-black-white': string;
|
|
989
|
+
'image-filter-center-focus': string;
|
|
990
|
+
'image-filter-center-focus-weak': string;
|
|
991
|
+
'image-filter-drama': string;
|
|
992
|
+
'image-filter-frames': string;
|
|
993
|
+
'image-filter-hdr': string;
|
|
994
|
+
'image-filter-none': string;
|
|
995
|
+
'image-filter-tilt-shift': string;
|
|
996
|
+
'image-filter-vintage': string;
|
|
997
|
+
'image-edit': string;
|
|
998
|
+
'image-multiple': string;
|
|
999
|
+
import: string;
|
|
1000
|
+
inbox: string;
|
|
1001
|
+
'inbox-arrow-down': string;
|
|
1002
|
+
'inbox-arrow-up': string;
|
|
1003
|
+
incognito: string;
|
|
1004
|
+
infinity: string;
|
|
1005
|
+
information: string;
|
|
1006
|
+
'information-outline': string;
|
|
1007
|
+
'information-variant': string;
|
|
1008
|
+
instagram: string;
|
|
1009
|
+
'instagram-page-visit': string;
|
|
1010
|
+
instapaper: string;
|
|
1011
|
+
'internet-explorer': string;
|
|
1012
|
+
'invert-colors': string;
|
|
1013
|
+
itunes: string;
|
|
1014
|
+
jeepney: string;
|
|
1015
|
+
jira: string;
|
|
1016
|
+
jsfiddle: string;
|
|
1017
|
+
json: string;
|
|
1018
|
+
keg: string;
|
|
1019
|
+
kettle: string;
|
|
1020
|
+
key: string;
|
|
1021
|
+
'key-change': string;
|
|
1022
|
+
'key-minus': string;
|
|
1023
|
+
'key-plus': string;
|
|
1024
|
+
'key-remove': string;
|
|
1025
|
+
'key-variant': string;
|
|
1026
|
+
keyboard: string;
|
|
1027
|
+
'keyboard-backspace': string;
|
|
1028
|
+
'keyboard-caps': string;
|
|
1029
|
+
'keyboard-close': string;
|
|
1030
|
+
'keyboard-off': string;
|
|
1031
|
+
'keyboard-return': string;
|
|
1032
|
+
'keyboard-tab': string;
|
|
1033
|
+
'keyboard-variant': string;
|
|
1034
|
+
kickstarter: string;
|
|
1035
|
+
kodi: string;
|
|
1036
|
+
label: string;
|
|
1037
|
+
'label-outline': string;
|
|
1038
|
+
lambda: string;
|
|
1039
|
+
lamp: string;
|
|
1040
|
+
lan: string;
|
|
1041
|
+
'lan-connect': string;
|
|
1042
|
+
'lan-disconnect': string;
|
|
1043
|
+
'lan-pending': string;
|
|
1044
|
+
'language-c': string;
|
|
1045
|
+
'language-cpp': string;
|
|
1046
|
+
'language-csharp': string;
|
|
1047
|
+
'language-css3': string;
|
|
1048
|
+
'language-html5': string;
|
|
1049
|
+
'language-javascript': string;
|
|
1050
|
+
'language-php': string;
|
|
1051
|
+
'language-python': string;
|
|
1052
|
+
'language-python-text': string;
|
|
1053
|
+
'language-swift': string;
|
|
1054
|
+
'language-typescript': string;
|
|
1055
|
+
laptop: string;
|
|
1056
|
+
'laptop-chromebook': string;
|
|
1057
|
+
'laptop-mac': string;
|
|
1058
|
+
'laptop-off': string;
|
|
1059
|
+
'laptop-windows': string;
|
|
1060
|
+
lastfm: string;
|
|
1061
|
+
launch: string;
|
|
1062
|
+
layers: string;
|
|
1063
|
+
'layers-off': string;
|
|
1064
|
+
'lead-pencil': string;
|
|
1065
|
+
leaf: string;
|
|
1066
|
+
'led-off': string;
|
|
1067
|
+
'led-on': string;
|
|
1068
|
+
'led-outline': string;
|
|
1069
|
+
'led-variant-off': string;
|
|
1070
|
+
'led-variant-on': string;
|
|
1071
|
+
'led-variant-outline': string;
|
|
1072
|
+
library: string;
|
|
1073
|
+
'library-books': string;
|
|
1074
|
+
'library-music': string;
|
|
1075
|
+
'library-plus': string;
|
|
1076
|
+
lightbulb: string;
|
|
1077
|
+
'lightbulb-on': string;
|
|
1078
|
+
'lightbulb-on-outline': string;
|
|
1079
|
+
'lightbulb-outline': string;
|
|
1080
|
+
'lightning-bolt': string;
|
|
1081
|
+
link: string;
|
|
1082
|
+
'link-off': string;
|
|
1083
|
+
'link-variant': string;
|
|
1084
|
+
'link-variant-off': string;
|
|
1085
|
+
linkedin: string;
|
|
1086
|
+
'linkedin-box': string;
|
|
1087
|
+
linux: string;
|
|
1088
|
+
lock: string;
|
|
1089
|
+
'lock-open': string;
|
|
1090
|
+
'lock-open-outline': string;
|
|
1091
|
+
'lock-outline': string;
|
|
1092
|
+
'lock-pattern': string;
|
|
1093
|
+
'lock-plus': string;
|
|
1094
|
+
login: string;
|
|
1095
|
+
'login-variant': string;
|
|
1096
|
+
logout: string;
|
|
1097
|
+
'logout-cn': string;
|
|
1098
|
+
'logout-variant': string;
|
|
1099
|
+
looks: string;
|
|
1100
|
+
loop: string;
|
|
1101
|
+
loupe: string;
|
|
1102
|
+
lumx: string;
|
|
1103
|
+
magento: string;
|
|
1104
|
+
magnet: string;
|
|
1105
|
+
'magnet-on': string;
|
|
1106
|
+
magnify: string;
|
|
1107
|
+
'magnify-minus': string;
|
|
1108
|
+
'magnify-minus-outline': string;
|
|
1109
|
+
'magnify-plus': string;
|
|
1110
|
+
'magnify-plus-outline': string;
|
|
1111
|
+
'mail-ru': string;
|
|
1112
|
+
mailbox: string;
|
|
1113
|
+
map: string;
|
|
1114
|
+
'map-marker': string;
|
|
1115
|
+
'map-marker-circle': string;
|
|
1116
|
+
'map-marker-minus': string;
|
|
1117
|
+
'map-marker-multiple': string;
|
|
1118
|
+
'map-marker-off': string;
|
|
1119
|
+
'map-marker-plus': string;
|
|
1120
|
+
'map-marker-radius': string;
|
|
1121
|
+
margin: string;
|
|
1122
|
+
markdown: string;
|
|
1123
|
+
marker: string;
|
|
1124
|
+
'marker-check': string;
|
|
1125
|
+
martini: string;
|
|
1126
|
+
'material-ui': string;
|
|
1127
|
+
'math-compass': string;
|
|
1128
|
+
matrix: string;
|
|
1129
|
+
maxcdn: string;
|
|
1130
|
+
'medical-bag': string;
|
|
1131
|
+
medium: string;
|
|
1132
|
+
memory: string;
|
|
1133
|
+
menu: string;
|
|
1134
|
+
'menu-down': string;
|
|
1135
|
+
'menu-down-outline': string;
|
|
1136
|
+
'menu-left': string;
|
|
1137
|
+
'menu-right': string;
|
|
1138
|
+
'menu-up': string;
|
|
1139
|
+
'menu-up-outline': string;
|
|
1140
|
+
message: string;
|
|
1141
|
+
'message-alert': string;
|
|
1142
|
+
'message-bulleted': string;
|
|
1143
|
+
'message-bulleted-off': string;
|
|
1144
|
+
'message-draw': string;
|
|
1145
|
+
'message-image': string;
|
|
1146
|
+
'message-outline': string;
|
|
1147
|
+
'message-plus': string;
|
|
1148
|
+
'message-processing': string;
|
|
1149
|
+
'message-reply': string;
|
|
1150
|
+
'message-reply-text': string;
|
|
1151
|
+
'message-settings': string;
|
|
1152
|
+
'message-settings-variant': string;
|
|
1153
|
+
'message-text': string;
|
|
1154
|
+
'message-text-outline': string;
|
|
1155
|
+
'message-video': string;
|
|
1156
|
+
meteor: string;
|
|
1157
|
+
microphone: string;
|
|
1158
|
+
'microphone-off': string;
|
|
1159
|
+
'microphone-outline': string;
|
|
1160
|
+
'microphone-settings': string;
|
|
1161
|
+
'microphone-variant': string;
|
|
1162
|
+
'microphone-variant-off': string;
|
|
1163
|
+
microscope: string;
|
|
1164
|
+
microsoft: string;
|
|
1165
|
+
minecraft: string;
|
|
1166
|
+
minus: string;
|
|
1167
|
+
'minus-box': string;
|
|
1168
|
+
'minus-box-outline': string;
|
|
1169
|
+
'minus-circle': string;
|
|
1170
|
+
'minus-circle-outline': string;
|
|
1171
|
+
'minus-network': string;
|
|
1172
|
+
mixcloud: string;
|
|
1173
|
+
monitor: string;
|
|
1174
|
+
'monitor-multiple': string;
|
|
1175
|
+
mop: string;
|
|
1176
|
+
more: string;
|
|
1177
|
+
motorbike: string;
|
|
1178
|
+
mouse: string;
|
|
1179
|
+
'mouse-off': string;
|
|
1180
|
+
'mouse-variant': string;
|
|
1181
|
+
'mouse-variant-off': string;
|
|
1182
|
+
'move-resize': string;
|
|
1183
|
+
'move-resize-variant': string;
|
|
1184
|
+
movie: string;
|
|
1185
|
+
multiplication: string;
|
|
1186
|
+
'multiplication-box': string;
|
|
1187
|
+
'music-box': string;
|
|
1188
|
+
'music-box-outline': string;
|
|
1189
|
+
'music-circle': string;
|
|
1190
|
+
'music-note': string;
|
|
1191
|
+
'music-note-bluetooth': string;
|
|
1192
|
+
'music-note-bluetooth-off': string;
|
|
1193
|
+
'music-note-eighth': string;
|
|
1194
|
+
'music-note-half': string;
|
|
1195
|
+
'music-note-off': string;
|
|
1196
|
+
'music-note-quarter': string;
|
|
1197
|
+
'music-note-sixteenth': string;
|
|
1198
|
+
'music-note-whole': string;
|
|
1199
|
+
nature: string;
|
|
1200
|
+
'nature-people': string;
|
|
1201
|
+
navigation: string;
|
|
1202
|
+
'near-me': string;
|
|
1203
|
+
needle: string;
|
|
1204
|
+
'nest-protect': string;
|
|
1205
|
+
'nest-thermostat': string;
|
|
1206
|
+
netflix: string;
|
|
1207
|
+
network: string;
|
|
1208
|
+
'network-download': string;
|
|
1209
|
+
'network-question': string;
|
|
1210
|
+
'network-upload': string;
|
|
1211
|
+
'new-box': string;
|
|
1212
|
+
newspaper: string;
|
|
1213
|
+
nfc: string;
|
|
1214
|
+
'nfc-tap': string;
|
|
1215
|
+
'nfc-variant': string;
|
|
1216
|
+
nodejs: string;
|
|
1217
|
+
note: string;
|
|
1218
|
+
'note-multiple': string;
|
|
1219
|
+
'note-multiple-outline': string;
|
|
1220
|
+
'note-outline': string;
|
|
1221
|
+
'note-plus': string;
|
|
1222
|
+
'note-plus-outline': string;
|
|
1223
|
+
'note-text': string;
|
|
1224
|
+
'notification-clear-all': string;
|
|
1225
|
+
npm: string;
|
|
1226
|
+
nuke: string;
|
|
1227
|
+
numeric: string;
|
|
1228
|
+
'numeric-0-box': string;
|
|
1229
|
+
'numeric-0-box-multiple-outline': string;
|
|
1230
|
+
'numeric-0-box-outline': string;
|
|
1231
|
+
'numeric-1-box': string;
|
|
1232
|
+
'numeric-1-box-multiple-outline': string;
|
|
1233
|
+
'numeric-1-box-outline': string;
|
|
1234
|
+
'numeric-2-box': string;
|
|
1235
|
+
'numeric-2-box-multiple-outline': string;
|
|
1236
|
+
'numeric-2-box-outline': string;
|
|
1237
|
+
'numeric-3-box': string;
|
|
1238
|
+
'numeric-3-box-multiple-outline': string;
|
|
1239
|
+
'numeric-3-box-outline': string;
|
|
1240
|
+
'numeric-4-box': string;
|
|
1241
|
+
'numeric-4-box-multiple-outline': string;
|
|
1242
|
+
'numeric-4-box-outline': string;
|
|
1243
|
+
'numeric-5-box': string;
|
|
1244
|
+
'numeric-5-box-multiple-outline': string;
|
|
1245
|
+
'numeric-5-box-outline': string;
|
|
1246
|
+
'numeric-6-box': string;
|
|
1247
|
+
'numeric-6-box-multiple-outline': string;
|
|
1248
|
+
'numeric-6-box-outline': string;
|
|
1249
|
+
'numeric-7-box': string;
|
|
1250
|
+
'numeric-7-box-multiple-outline': string;
|
|
1251
|
+
'numeric-7-box-outline': string;
|
|
1252
|
+
'numeric-8-box': string;
|
|
1253
|
+
'numeric-8-box-multiple-outline': string;
|
|
1254
|
+
'numeric-8-box-outline': string;
|
|
1255
|
+
'numeric-9-box': string;
|
|
1256
|
+
'numeric-9-box-multiple-outline': string;
|
|
1257
|
+
'numeric-9-box-outline': string;
|
|
1258
|
+
'numeric-9-plus-box': string;
|
|
1259
|
+
'numeric-9-plus-box-multiple-outline': string;
|
|
1260
|
+
'numeric-9-plus-box-outline': string;
|
|
1261
|
+
nut: string;
|
|
1262
|
+
nutrition: string;
|
|
1263
|
+
oar: string;
|
|
1264
|
+
octagon: string;
|
|
1265
|
+
'octagon-outline': string;
|
|
1266
|
+
octagram: string;
|
|
1267
|
+
odnoklassniki: string;
|
|
1268
|
+
office: string;
|
|
1269
|
+
oil: string;
|
|
1270
|
+
'oil-temperature': string;
|
|
1271
|
+
omega: string;
|
|
1272
|
+
onedrive: string;
|
|
1273
|
+
onenote: string;
|
|
1274
|
+
opacity: string;
|
|
1275
|
+
'open-in-app': string;
|
|
1276
|
+
'open-in-new': string;
|
|
1277
|
+
openid: string;
|
|
1278
|
+
opera: string;
|
|
1279
|
+
ornament: string;
|
|
1280
|
+
'ornament-variant': string;
|
|
1281
|
+
owl: string;
|
|
1282
|
+
package: string;
|
|
1283
|
+
'package-down': string;
|
|
1284
|
+
'package-up': string;
|
|
1285
|
+
'package-variant': string;
|
|
1286
|
+
'package-variant-closed': string;
|
|
1287
|
+
'page-first': string;
|
|
1288
|
+
'page-last': string;
|
|
1289
|
+
'page-layout-body': string;
|
|
1290
|
+
'page-layout-footer': string;
|
|
1291
|
+
'page-layout-header': string;
|
|
1292
|
+
'page-layout-sidebar-left': string;
|
|
1293
|
+
'page-layout-sidebar-right': string;
|
|
1294
|
+
palette: string;
|
|
1295
|
+
'palette-advanced': string;
|
|
1296
|
+
'palette-outline': string;
|
|
1297
|
+
panda: string;
|
|
1298
|
+
pandora: string;
|
|
1299
|
+
panorama: string;
|
|
1300
|
+
'panorama-fisheye': string;
|
|
1301
|
+
'panorama-horizontal': string;
|
|
1302
|
+
'panorama-vertical': string;
|
|
1303
|
+
'panorama-wide-angle': string;
|
|
1304
|
+
'paper-cut-vertical': string;
|
|
1305
|
+
paperclip: string;
|
|
1306
|
+
parking: string;
|
|
1307
|
+
pause: string;
|
|
1308
|
+
'pause-circle': string;
|
|
1309
|
+
'pause-circle-outline': string;
|
|
1310
|
+
'pause-octagon': string;
|
|
1311
|
+
'pause-octagon-outline': string;
|
|
1312
|
+
paw: string;
|
|
1313
|
+
'paw-off': string;
|
|
1314
|
+
pen: string;
|
|
1315
|
+
pencil: string;
|
|
1316
|
+
'pencil-box': string;
|
|
1317
|
+
'pencil-box-outline': string;
|
|
1318
|
+
'pencil-circle': string;
|
|
1319
|
+
'pencil-lock': string;
|
|
1320
|
+
'pencil-off': string;
|
|
1321
|
+
'pencil-outline': string;
|
|
1322
|
+
pending: string;
|
|
1323
|
+
pentagon: string;
|
|
1324
|
+
'pentagon-outline': string;
|
|
1325
|
+
percent: string;
|
|
1326
|
+
periscope: string;
|
|
1327
|
+
pharmacy: string;
|
|
1328
|
+
phone: string;
|
|
1329
|
+
'phone-bluetooth': string;
|
|
1330
|
+
'phone-classic': string;
|
|
1331
|
+
'phone-forward': string;
|
|
1332
|
+
'phone-hangup': string;
|
|
1333
|
+
'phone-in-talk': string;
|
|
1334
|
+
'phone-incoming': string;
|
|
1335
|
+
'phone-locked': string;
|
|
1336
|
+
'phone-log': string;
|
|
1337
|
+
'phone-minus': string;
|
|
1338
|
+
'phone-missed': string;
|
|
1339
|
+
'phone-outgoing': string;
|
|
1340
|
+
'phone-paused': string;
|
|
1341
|
+
'phone-plus': string;
|
|
1342
|
+
'phone-settings': string;
|
|
1343
|
+
'phone-voip': string;
|
|
1344
|
+
pi: string;
|
|
1345
|
+
'pi-box': string;
|
|
1346
|
+
piano: string;
|
|
1347
|
+
pig: string;
|
|
1348
|
+
pill: string;
|
|
1349
|
+
pillar: string;
|
|
1350
|
+
pin: string;
|
|
1351
|
+
'pin-off': string;
|
|
1352
|
+
'pin-outline': string;
|
|
1353
|
+
'pine-tree': string;
|
|
1354
|
+
'pine-tree-box': string;
|
|
1355
|
+
pinterest: string;
|
|
1356
|
+
'pinterest-box': string;
|
|
1357
|
+
pistol: string;
|
|
1358
|
+
pizza: string;
|
|
1359
|
+
'plane-shield': string;
|
|
1360
|
+
play: string;
|
|
1361
|
+
'play-box-outline': string;
|
|
1362
|
+
'play-circle': string;
|
|
1363
|
+
'play-circle-outline': string;
|
|
1364
|
+
'play-pause': string;
|
|
1365
|
+
'play-protected-content': string;
|
|
1366
|
+
'playlist-check': string;
|
|
1367
|
+
'playlist-edit': string;
|
|
1368
|
+
'playlist-minus': string;
|
|
1369
|
+
'playlist-play': string;
|
|
1370
|
+
'playlist-plus': string;
|
|
1371
|
+
'playlist-remove': string;
|
|
1372
|
+
playstation: string;
|
|
1373
|
+
plex: string;
|
|
1374
|
+
plus: string;
|
|
1375
|
+
'plus-box': string;
|
|
1376
|
+
'plus-box-outline': string;
|
|
1377
|
+
'plus-circle': string;
|
|
1378
|
+
'plus-circle-multiple-outline': string;
|
|
1379
|
+
'plus-circle-outline': string;
|
|
1380
|
+
'plus-network': string;
|
|
1381
|
+
'plus-one': string;
|
|
1382
|
+
'plus-outline': string;
|
|
1383
|
+
pocket: string;
|
|
1384
|
+
pokeball: string;
|
|
1385
|
+
polaroid: string;
|
|
1386
|
+
poll: string;
|
|
1387
|
+
'poll-box': string;
|
|
1388
|
+
polymer: string;
|
|
1389
|
+
pool: string;
|
|
1390
|
+
popcorn: string;
|
|
1391
|
+
pot: string;
|
|
1392
|
+
'pot-mix': string;
|
|
1393
|
+
pound: string;
|
|
1394
|
+
'pound-box': string;
|
|
1395
|
+
power: string;
|
|
1396
|
+
'power-plug': string;
|
|
1397
|
+
'power-plug-off': string;
|
|
1398
|
+
'power-settings': string;
|
|
1399
|
+
'power-socket': string;
|
|
1400
|
+
prescription: string;
|
|
1401
|
+
presentation: string;
|
|
1402
|
+
'presentation-play': string;
|
|
1403
|
+
prestashop: string;
|
|
1404
|
+
printer: string;
|
|
1405
|
+
'printer-3d': string;
|
|
1406
|
+
'printer-alert': string;
|
|
1407
|
+
'printer-settings': string;
|
|
1408
|
+
'priority-high': string;
|
|
1409
|
+
'priority-low': string;
|
|
1410
|
+
'professional-hexagon': string;
|
|
1411
|
+
'progress-clock': string;
|
|
1412
|
+
'progress-pencil': string;
|
|
1413
|
+
projector: string;
|
|
1414
|
+
'projector-screen': string;
|
|
1415
|
+
publish: string;
|
|
1416
|
+
pulse: string;
|
|
1417
|
+
puzzle: string;
|
|
1418
|
+
qqchat: string;
|
|
1419
|
+
qrcode: string;
|
|
1420
|
+
'qrcode-scan': string;
|
|
1421
|
+
quadcopter: string;
|
|
1422
|
+
'quality-high': string;
|
|
1423
|
+
quicktime: string;
|
|
1424
|
+
radar: string;
|
|
1425
|
+
radiator: string;
|
|
1426
|
+
radio: string;
|
|
1427
|
+
'radio-handheld': string;
|
|
1428
|
+
'radio-tower': string;
|
|
1429
|
+
radioactive: string;
|
|
1430
|
+
'radiobox-blank': string;
|
|
1431
|
+
'radiobox-marked': string;
|
|
1432
|
+
raspberrypi: string;
|
|
1433
|
+
'ray-end': string;
|
|
1434
|
+
'ray-end-arrow': string;
|
|
1435
|
+
'ray-start': string;
|
|
1436
|
+
'ray-start-arrow': string;
|
|
1437
|
+
'ray-start-end': string;
|
|
1438
|
+
'ray-vertex': string;
|
|
1439
|
+
rdio: string;
|
|
1440
|
+
react: string;
|
|
1441
|
+
read: string;
|
|
1442
|
+
readability: string;
|
|
1443
|
+
receipt: string;
|
|
1444
|
+
record: string;
|
|
1445
|
+
'record-rec': string;
|
|
1446
|
+
recycle: string;
|
|
1447
|
+
reddit: string;
|
|
1448
|
+
redo: string;
|
|
1449
|
+
'redo-variant': string;
|
|
1450
|
+
refresh: string;
|
|
1451
|
+
regex: string;
|
|
1452
|
+
'relative-scale': string;
|
|
1453
|
+
reload: string;
|
|
1454
|
+
remote: string;
|
|
1455
|
+
'rename-box': string;
|
|
1456
|
+
'reorder-horizontal': string;
|
|
1457
|
+
'reorder-vertical': string;
|
|
1458
|
+
repeat: string;
|
|
1459
|
+
'repeat-off': string;
|
|
1460
|
+
'repeat-once': string;
|
|
1461
|
+
replay: string;
|
|
1462
|
+
reply: string;
|
|
1463
|
+
'reply-all': string;
|
|
1464
|
+
reproduction: string;
|
|
1465
|
+
'resize-bottom-right': string;
|
|
1466
|
+
responsive: string;
|
|
1467
|
+
restart: string;
|
|
1468
|
+
restore: string;
|
|
1469
|
+
rewind: string;
|
|
1470
|
+
'rewind-outline': string;
|
|
1471
|
+
rhombus: string;
|
|
1472
|
+
'rhombus-outline': string;
|
|
1473
|
+
ribbon: string;
|
|
1474
|
+
road: string;
|
|
1475
|
+
'road-variant': string;
|
|
1476
|
+
robot: string;
|
|
1477
|
+
rocket: string;
|
|
1478
|
+
roomba: string;
|
|
1479
|
+
'rotate-3d': string;
|
|
1480
|
+
'rotate-left': string;
|
|
1481
|
+
'rotate-left-variant': string;
|
|
1482
|
+
'rotate-right': string;
|
|
1483
|
+
'rotate-right-variant': string;
|
|
1484
|
+
'rounded-corner': string;
|
|
1485
|
+
'router-wireless': string;
|
|
1486
|
+
routes: string;
|
|
1487
|
+
rowing: string;
|
|
1488
|
+
rss: string;
|
|
1489
|
+
'rss-box': string;
|
|
1490
|
+
ruler: string;
|
|
1491
|
+
run: string;
|
|
1492
|
+
'run-fast': string;
|
|
1493
|
+
sale: string;
|
|
1494
|
+
satellite: string;
|
|
1495
|
+
'satellite-variant': string;
|
|
1496
|
+
saxophone: string;
|
|
1497
|
+
scale: string;
|
|
1498
|
+
'scale-balance': string;
|
|
1499
|
+
'scale-bathroom': string;
|
|
1500
|
+
scanner: string;
|
|
1501
|
+
school: string;
|
|
1502
|
+
'screen-rotation': string;
|
|
1503
|
+
'screen-rotation-lock': string;
|
|
1504
|
+
screwdriver: string;
|
|
1505
|
+
script: string;
|
|
1506
|
+
sd: string;
|
|
1507
|
+
seal: string;
|
|
1508
|
+
segment: string;
|
|
1509
|
+
'connectif-segment': string;
|
|
1510
|
+
'connectif-segment-add': string;
|
|
1511
|
+
'connectif-segment-remove': string;
|
|
1512
|
+
'search-web': string;
|
|
1513
|
+
'seat-flat': string;
|
|
1514
|
+
'seat-flat-angled': string;
|
|
1515
|
+
'seat-individual-suite': string;
|
|
1516
|
+
'seat-legroom-extra': string;
|
|
1517
|
+
'seat-legroom-normal': string;
|
|
1518
|
+
'seat-legroom-reduced': string;
|
|
1519
|
+
'seat-recline-extra': string;
|
|
1520
|
+
'seat-recline-normal': string;
|
|
1521
|
+
security: string;
|
|
1522
|
+
'security-home': string;
|
|
1523
|
+
'security-network': string;
|
|
1524
|
+
select: string;
|
|
1525
|
+
'select-all': string;
|
|
1526
|
+
'select-inverse': string;
|
|
1527
|
+
'select-off': string;
|
|
1528
|
+
selection: string;
|
|
1529
|
+
send: string;
|
|
1530
|
+
'serial-port': string;
|
|
1531
|
+
server: string;
|
|
1532
|
+
'server-minus': string;
|
|
1533
|
+
'server-network': string;
|
|
1534
|
+
'server-network-off': string;
|
|
1535
|
+
'server-off': string;
|
|
1536
|
+
'server-plus': string;
|
|
1537
|
+
'server-remove': string;
|
|
1538
|
+
'server-security': string;
|
|
1539
|
+
settings: string;
|
|
1540
|
+
'settings-box': string;
|
|
1541
|
+
'shape-circle-plus': string;
|
|
1542
|
+
'shape-plus': string;
|
|
1543
|
+
'shape-polygon-plus': string;
|
|
1544
|
+
'shape-rectangle-plus': string;
|
|
1545
|
+
'shape-square-plus': string;
|
|
1546
|
+
share: string;
|
|
1547
|
+
'share-variant': string;
|
|
1548
|
+
shield: string;
|
|
1549
|
+
'shield-outline': string;
|
|
1550
|
+
shopify: string;
|
|
1551
|
+
shopping: string;
|
|
1552
|
+
'shopping-music': string;
|
|
1553
|
+
'shopping-outline': string;
|
|
1554
|
+
'short-text': string;
|
|
1555
|
+
shovel: string;
|
|
1556
|
+
'shovel-off': string;
|
|
1557
|
+
shredder: string;
|
|
1558
|
+
shuffle: string;
|
|
1559
|
+
'shuffle-disabled': string;
|
|
1560
|
+
'shuffle-variant': string;
|
|
1561
|
+
sigma: string;
|
|
1562
|
+
'sigma-lower': string;
|
|
1563
|
+
'sign-caution': string;
|
|
1564
|
+
signal: string;
|
|
1565
|
+
'signal-2g': string;
|
|
1566
|
+
'signal-3g': string;
|
|
1567
|
+
'signal-4g': string;
|
|
1568
|
+
'signal-hspa': string;
|
|
1569
|
+
'signal-hspa-plus': string;
|
|
1570
|
+
'signal-variant': string;
|
|
1571
|
+
silverware: string;
|
|
1572
|
+
'silverware-fork': string;
|
|
1573
|
+
'silverware-spoon': string;
|
|
1574
|
+
'silverware-variant': string;
|
|
1575
|
+
sim: string;
|
|
1576
|
+
'sim-alert': string;
|
|
1577
|
+
'sim-off': string;
|
|
1578
|
+
sitemap: string;
|
|
1579
|
+
'skip-backward': string;
|
|
1580
|
+
'skip-forward': string;
|
|
1581
|
+
'skip-next': string;
|
|
1582
|
+
'skip-next-circle': string;
|
|
1583
|
+
'skip-next-circle-outline': string;
|
|
1584
|
+
'skip-previous': string;
|
|
1585
|
+
'skip-previous-circle': string;
|
|
1586
|
+
'skip-previous-circle-outline': string;
|
|
1587
|
+
skull: string;
|
|
1588
|
+
skype: string;
|
|
1589
|
+
'skype-business': string;
|
|
1590
|
+
slack: string;
|
|
1591
|
+
sleep: string;
|
|
1592
|
+
'sleep-off': string;
|
|
1593
|
+
smoking: string;
|
|
1594
|
+
'smoking-off': string;
|
|
1595
|
+
sms: string;
|
|
1596
|
+
snapchat: string;
|
|
1597
|
+
snowflake: string;
|
|
1598
|
+
snowman: string;
|
|
1599
|
+
soccer: string;
|
|
1600
|
+
sofa: string;
|
|
1601
|
+
solid: string;
|
|
1602
|
+
sort: string;
|
|
1603
|
+
'sort-alphabetical': string;
|
|
1604
|
+
'sort-ascending': string;
|
|
1605
|
+
'sort-descending': string;
|
|
1606
|
+
'sort-numeric': string;
|
|
1607
|
+
'sort-variant': string;
|
|
1608
|
+
soundcloud: string;
|
|
1609
|
+
'source-branch': string;
|
|
1610
|
+
'source-commit': string;
|
|
1611
|
+
'source-commit-end': string;
|
|
1612
|
+
'source-commit-end-local': string;
|
|
1613
|
+
'source-commit-local': string;
|
|
1614
|
+
'source-commit-next-local': string;
|
|
1615
|
+
'source-commit-start': string;
|
|
1616
|
+
'source-commit-start-next-local': string;
|
|
1617
|
+
'source-fork': string;
|
|
1618
|
+
'source-merge': string;
|
|
1619
|
+
'source-pull': string;
|
|
1620
|
+
speaker: string;
|
|
1621
|
+
'speaker-off': string;
|
|
1622
|
+
'speaker-wireless': string;
|
|
1623
|
+
speedometer: string;
|
|
1624
|
+
spellcheck: string;
|
|
1625
|
+
spotify: string;
|
|
1626
|
+
spotlight: string;
|
|
1627
|
+
'spotlight-beam': string;
|
|
1628
|
+
spray: string;
|
|
1629
|
+
'square-inc': string;
|
|
1630
|
+
'square-inc-cash': string;
|
|
1631
|
+
stackexchange: string;
|
|
1632
|
+
stackoverflow: string;
|
|
1633
|
+
stadium: string;
|
|
1634
|
+
stairs: string;
|
|
1635
|
+
star: string;
|
|
1636
|
+
'star-circle': string;
|
|
1637
|
+
'star-four-points': string;
|
|
1638
|
+
'star-half': string;
|
|
1639
|
+
'star-off': string;
|
|
1640
|
+
'star-outline': string;
|
|
1641
|
+
steam: string;
|
|
1642
|
+
steering: string;
|
|
1643
|
+
'step-backward': string;
|
|
1644
|
+
'step-backward-2': string;
|
|
1645
|
+
'step-forward': string;
|
|
1646
|
+
'step-forward-2': string;
|
|
1647
|
+
stethoscope: string;
|
|
1648
|
+
sticker: string;
|
|
1649
|
+
stocking: string;
|
|
1650
|
+
stop: string;
|
|
1651
|
+
'stop-circle': string;
|
|
1652
|
+
'stop-circle-outline': string;
|
|
1653
|
+
store: string;
|
|
1654
|
+
'store-24-hour': string;
|
|
1655
|
+
'store-outline': string;
|
|
1656
|
+
stove: string;
|
|
1657
|
+
'subdirectory-arrow-left': string;
|
|
1658
|
+
'subdirectory-arrow-right': string;
|
|
1659
|
+
subject: string;
|
|
1660
|
+
subway: string;
|
|
1661
|
+
'subway-variant': string;
|
|
1662
|
+
sunglasses: string;
|
|
1663
|
+
'surround-sound': string;
|
|
1664
|
+
svg: string;
|
|
1665
|
+
'swap-horizontal': string;
|
|
1666
|
+
'swap-vertical': string;
|
|
1667
|
+
swim: string;
|
|
1668
|
+
switch: string;
|
|
1669
|
+
sword: string;
|
|
1670
|
+
sync: string;
|
|
1671
|
+
'sync-alert': string;
|
|
1672
|
+
'sync-off': string;
|
|
1673
|
+
tab: string;
|
|
1674
|
+
'tab-unselected': string;
|
|
1675
|
+
table: string;
|
|
1676
|
+
'table-column-plus-after': string;
|
|
1677
|
+
'table-column-plus-before': string;
|
|
1678
|
+
'table-column-remove': string;
|
|
1679
|
+
'table-column-width': string;
|
|
1680
|
+
'table-edit': string;
|
|
1681
|
+
'table-large': string;
|
|
1682
|
+
'table-row-height': string;
|
|
1683
|
+
'table-row-plus-after': string;
|
|
1684
|
+
'table-row-plus-before': string;
|
|
1685
|
+
'table-row-remove': string;
|
|
1686
|
+
tablet: string;
|
|
1687
|
+
'tablet-android': string;
|
|
1688
|
+
'tablet-ipad': string;
|
|
1689
|
+
tag: string;
|
|
1690
|
+
'tag-faces': string;
|
|
1691
|
+
'tag-heart': string;
|
|
1692
|
+
'tag-multiple': string;
|
|
1693
|
+
'tag-outline': string;
|
|
1694
|
+
'tag-plus': string;
|
|
1695
|
+
'tag-remove': string;
|
|
1696
|
+
'tag-text-outline': string;
|
|
1697
|
+
target: string;
|
|
1698
|
+
taxi: string;
|
|
1699
|
+
teamviewer: string;
|
|
1700
|
+
telegram: string;
|
|
1701
|
+
television: string;
|
|
1702
|
+
'television-guide': string;
|
|
1703
|
+
'temperature-celsius': string;
|
|
1704
|
+
'temperature-fahrenheit': string;
|
|
1705
|
+
'temperature-kelvin': string;
|
|
1706
|
+
tennis: string;
|
|
1707
|
+
tent: string;
|
|
1708
|
+
terrain: string;
|
|
1709
|
+
'test-tube': string;
|
|
1710
|
+
text: string;
|
|
1711
|
+
'text-shadow': string;
|
|
1712
|
+
'text-to-speech': string;
|
|
1713
|
+
'text-to-speech-off': string;
|
|
1714
|
+
textbox: string;
|
|
1715
|
+
texture: string;
|
|
1716
|
+
theater: string;
|
|
1717
|
+
'theater-comedy': string;
|
|
1718
|
+
'theme-light-dark': string;
|
|
1719
|
+
thermometer: string;
|
|
1720
|
+
'thermometer-lines': string;
|
|
1721
|
+
'thumb-down': string;
|
|
1722
|
+
'thumb-down-outline': string;
|
|
1723
|
+
'thumb-up': string;
|
|
1724
|
+
'thumb-up-outline': string;
|
|
1725
|
+
'thumbs-up-down': string;
|
|
1726
|
+
ticket: string;
|
|
1727
|
+
'ticket-account': string;
|
|
1728
|
+
'ticket-confirmation': string;
|
|
1729
|
+
'ticket-percent': string;
|
|
1730
|
+
'ticket-percent-outline': string;
|
|
1731
|
+
tie: string;
|
|
1732
|
+
tilde: string;
|
|
1733
|
+
timelapse: string;
|
|
1734
|
+
timer: string;
|
|
1735
|
+
'timer-10': string;
|
|
1736
|
+
'timer-3': string;
|
|
1737
|
+
'timer-cancel': string;
|
|
1738
|
+
'timer-off': string;
|
|
1739
|
+
'timer-outline': string;
|
|
1740
|
+
'timer-sand': string;
|
|
1741
|
+
'timer-sand-empty': string;
|
|
1742
|
+
timetable: string;
|
|
1743
|
+
'toggle-switch': string;
|
|
1744
|
+
'toggle-switch-off': string;
|
|
1745
|
+
tooltip: string;
|
|
1746
|
+
'tooltip-edit': string;
|
|
1747
|
+
'tooltip-image': string;
|
|
1748
|
+
'tooltip-outline': string;
|
|
1749
|
+
'tooltip-outline-plus': string;
|
|
1750
|
+
'tooltip-text': string;
|
|
1751
|
+
tooth: string;
|
|
1752
|
+
tor: string;
|
|
1753
|
+
'tower-beach': string;
|
|
1754
|
+
'tower-fire': string;
|
|
1755
|
+
'traffic-light': string;
|
|
1756
|
+
train: string;
|
|
1757
|
+
tram: string;
|
|
1758
|
+
transcribe: string;
|
|
1759
|
+
'transcribe-close': string;
|
|
1760
|
+
transfer: string;
|
|
1761
|
+
'transit-transfer': string;
|
|
1762
|
+
translate: string;
|
|
1763
|
+
transparent: string;
|
|
1764
|
+
'trash-can-outline': string;
|
|
1765
|
+
'treasure-chest': string;
|
|
1766
|
+
tree: string;
|
|
1767
|
+
trello: string;
|
|
1768
|
+
'trending-down': string;
|
|
1769
|
+
'trending-neutral': string;
|
|
1770
|
+
'trending-up': string;
|
|
1771
|
+
triangle: string;
|
|
1772
|
+
'triangle-outline': string;
|
|
1773
|
+
trophy: string;
|
|
1774
|
+
'trophy-award': string;
|
|
1775
|
+
'trophy-outline': string;
|
|
1776
|
+
'trophy-variant': string;
|
|
1777
|
+
'trophy-variant-outline': string;
|
|
1778
|
+
truck: string;
|
|
1779
|
+
'truck-delivery': string;
|
|
1780
|
+
'truck-trailer': string;
|
|
1781
|
+
'tshirt-crew': string;
|
|
1782
|
+
'tshirt-v': string;
|
|
1783
|
+
tumblr: string;
|
|
1784
|
+
'tumblr-reblog': string;
|
|
1785
|
+
tune: string;
|
|
1786
|
+
'tune-vertical': string;
|
|
1787
|
+
twitch: string;
|
|
1788
|
+
twitter: string;
|
|
1789
|
+
'twitter-box': string;
|
|
1790
|
+
'twitter-circle': string;
|
|
1791
|
+
'twitter-retweet': string;
|
|
1792
|
+
uber: string;
|
|
1793
|
+
ubuntu: string;
|
|
1794
|
+
umbraco: string;
|
|
1795
|
+
umbrella: string;
|
|
1796
|
+
'umbrella-outline': string;
|
|
1797
|
+
undo: string;
|
|
1798
|
+
'undo-variant': string;
|
|
1799
|
+
'unfold-less': string;
|
|
1800
|
+
'unfold-more': string;
|
|
1801
|
+
ungroup: string;
|
|
1802
|
+
unity: string;
|
|
1803
|
+
untappd: string;
|
|
1804
|
+
update: string;
|
|
1805
|
+
upload: string;
|
|
1806
|
+
usb: string;
|
|
1807
|
+
'user-list': string;
|
|
1808
|
+
'vector-arrange-above': string;
|
|
1809
|
+
'vector-arrange-below': string;
|
|
1810
|
+
'vector-circle': string;
|
|
1811
|
+
'vector-circle-variant': string;
|
|
1812
|
+
'vector-combine': string;
|
|
1813
|
+
'vector-curve': string;
|
|
1814
|
+
'vector-difference': string;
|
|
1815
|
+
'vector-difference-ab': string;
|
|
1816
|
+
'vector-difference-ba': string;
|
|
1817
|
+
'vector-intersection': string;
|
|
1818
|
+
'vector-line': string;
|
|
1819
|
+
'vector-point': string;
|
|
1820
|
+
'vector-polygon': string;
|
|
1821
|
+
'vector-polyline': string;
|
|
1822
|
+
'vector-rectangle': string;
|
|
1823
|
+
'vector-selection': string;
|
|
1824
|
+
'vector-square': string;
|
|
1825
|
+
'vector-triangle': string;
|
|
1826
|
+
'vector-union': string;
|
|
1827
|
+
verified: string;
|
|
1828
|
+
vibrate: string;
|
|
1829
|
+
video: string;
|
|
1830
|
+
'video-off': string;
|
|
1831
|
+
'video-switch': string;
|
|
1832
|
+
'view-agenda': string;
|
|
1833
|
+
'view-array': string;
|
|
1834
|
+
'view-carousel': string;
|
|
1835
|
+
'view-column': string;
|
|
1836
|
+
'view-dashboard': string;
|
|
1837
|
+
'view-day': string;
|
|
1838
|
+
'view-grid': string;
|
|
1839
|
+
'view-headline': string;
|
|
1840
|
+
'view-list': string;
|
|
1841
|
+
'view-module': string;
|
|
1842
|
+
'view-parallel': string;
|
|
1843
|
+
'view-quilt': string;
|
|
1844
|
+
'view-sequential': string;
|
|
1845
|
+
'view-stream': string;
|
|
1846
|
+
'view-week': string;
|
|
1847
|
+
vimeo: string;
|
|
1848
|
+
vine: string;
|
|
1849
|
+
violin: string;
|
|
1850
|
+
visualstudio: string;
|
|
1851
|
+
vk: string;
|
|
1852
|
+
'vk-box': string;
|
|
1853
|
+
'vk-circle': string;
|
|
1854
|
+
vlc: string;
|
|
1855
|
+
voice: string;
|
|
1856
|
+
voicemail: string;
|
|
1857
|
+
'volume-high': string;
|
|
1858
|
+
'volume-low': string;
|
|
1859
|
+
'volume-medium': string;
|
|
1860
|
+
'volume-off': string;
|
|
1861
|
+
vpn: string;
|
|
1862
|
+
vtex: string;
|
|
1863
|
+
walk: string;
|
|
1864
|
+
wallet: string;
|
|
1865
|
+
'wallet-giftcard': string;
|
|
1866
|
+
'wallet-membership': string;
|
|
1867
|
+
'wallet-travel': string;
|
|
1868
|
+
wan: string;
|
|
1869
|
+
'washing-machine': string;
|
|
1870
|
+
watch: string;
|
|
1871
|
+
'watch-export': string;
|
|
1872
|
+
'watch-import': string;
|
|
1873
|
+
'watch-vibrate': string;
|
|
1874
|
+
water: string;
|
|
1875
|
+
'water-off': string;
|
|
1876
|
+
'water-percent': string;
|
|
1877
|
+
'water-pump': string;
|
|
1878
|
+
watermark: string;
|
|
1879
|
+
'weather-cloudy': string;
|
|
1880
|
+
'weather-fog': string;
|
|
1881
|
+
'weather-hail': string;
|
|
1882
|
+
'weather-lightning': string;
|
|
1883
|
+
'weather-lightning-rainy': string;
|
|
1884
|
+
'weather-night': string;
|
|
1885
|
+
'weather-partlycloudy': string;
|
|
1886
|
+
'weather-pouring': string;
|
|
1887
|
+
'weather-rainy': string;
|
|
1888
|
+
'weather-snowy': string;
|
|
1889
|
+
'weather-snowy-rainy': string;
|
|
1890
|
+
'weather-sunny': string;
|
|
1891
|
+
'weather-sunset': string;
|
|
1892
|
+
'weather-sunset-down': string;
|
|
1893
|
+
'weather-sunset-up': string;
|
|
1894
|
+
'weather-windy': string;
|
|
1895
|
+
'weather-windy-variant': string;
|
|
1896
|
+
web: string;
|
|
1897
|
+
'web-check': string;
|
|
1898
|
+
webcam: string;
|
|
1899
|
+
webhook: string;
|
|
1900
|
+
webpack: string;
|
|
1901
|
+
wechat: string;
|
|
1902
|
+
weight: string;
|
|
1903
|
+
'weight-kilogram': string;
|
|
1904
|
+
whatsapp: string;
|
|
1905
|
+
'wheelchair-accessibility': string;
|
|
1906
|
+
'white-balance-auto': string;
|
|
1907
|
+
'white-balance-incandescent': string;
|
|
1908
|
+
'white-balance-iridescent': string;
|
|
1909
|
+
'white-balance-sunny': string;
|
|
1910
|
+
widgets: string;
|
|
1911
|
+
wifi: string;
|
|
1912
|
+
'wifi-off': string;
|
|
1913
|
+
wii: string;
|
|
1914
|
+
wiiu: string;
|
|
1915
|
+
wikipedia: string;
|
|
1916
|
+
'window-close': string;
|
|
1917
|
+
'window-closed': string;
|
|
1918
|
+
'window-maximize': string;
|
|
1919
|
+
'window-minimize': string;
|
|
1920
|
+
'window-open': string;
|
|
1921
|
+
'window-restore': string;
|
|
1922
|
+
windows: string;
|
|
1923
|
+
woocommerce: string;
|
|
1924
|
+
wordpress: string;
|
|
1925
|
+
worker: string;
|
|
1926
|
+
wrap: string;
|
|
1927
|
+
wrench: string;
|
|
1928
|
+
wunderlist: string;
|
|
1929
|
+
'workflow-icon': string;
|
|
1930
|
+
xaml: string;
|
|
1931
|
+
xbox: string;
|
|
1932
|
+
'xbox-controller': string;
|
|
1933
|
+
'xbox-controller-battery-alert': string;
|
|
1934
|
+
'xbox-controller-battery-empty': string;
|
|
1935
|
+
'xbox-controller-battery-full': string;
|
|
1936
|
+
'xbox-controller-battery-low': string;
|
|
1937
|
+
'xbox-controller-battery-medium': string;
|
|
1938
|
+
'xbox-controller-battery-unknown': string;
|
|
1939
|
+
'xbox-controller-off': string;
|
|
1940
|
+
xda: string;
|
|
1941
|
+
xing: string;
|
|
1942
|
+
'xing-box': string;
|
|
1943
|
+
'xing-circle': string;
|
|
1944
|
+
xml: string;
|
|
1945
|
+
yeast: string;
|
|
1946
|
+
yelp: string;
|
|
1947
|
+
'yin-yang': string;
|
|
1948
|
+
'youtube-play': string;
|
|
1949
|
+
'zip-box': string;
|
|
1950
|
+
'zoom-in': string;
|
|
1951
|
+
'zoom-out': string;
|
|
1952
|
+
'database-export': string;
|
|
1953
|
+
};
|