@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,90 @@
|
|
|
1
|
+
export declare const primary50 = "#E7F3FF";
|
|
2
|
+
export declare const primary100 = "#C5E1FF";
|
|
3
|
+
export declare const primary200 = "#A2D0FF";
|
|
4
|
+
export declare const primary300 = "#82BDFD";
|
|
5
|
+
export declare const primary400 = "#6FAEFC";
|
|
6
|
+
export declare const primary500 = "#63A0FA";
|
|
7
|
+
export declare const primary600 = "#5E91EB";
|
|
8
|
+
export declare const primary700 = "#577ED7";
|
|
9
|
+
export declare const primary800 = "#516DC4";
|
|
10
|
+
export declare const primary900 = "#464EA3";
|
|
11
|
+
export declare const primaryMain = "#5E91EB";
|
|
12
|
+
export declare const primaryDark = "#516DC4";
|
|
13
|
+
export declare const primaryLight = "#82BDFD";
|
|
14
|
+
export declare const primaryOpacity32 = "rgba(212, 224, 246, 0.32)";
|
|
15
|
+
export declare const primaryAlpha32 = "#F1F5FC";
|
|
16
|
+
export declare const primaryAlpha64 = "#E3EBF9";
|
|
17
|
+
export declare const complementary50 = "#FBF3E3";
|
|
18
|
+
export declare const complementary100 = "#F5E0B9";
|
|
19
|
+
export declare const complementary200 = "#F0CC8C";
|
|
20
|
+
export declare const complementary300 = "#EBB860";
|
|
21
|
+
export declare const complementary400 = "#E8A944";
|
|
22
|
+
export declare const complementary500 = "#E69B2D";
|
|
23
|
+
export declare const complementary600 = "#E29029";
|
|
24
|
+
export declare const complementary700 = "#DB8223";
|
|
25
|
+
export declare const complementary800 = "#D5741E";
|
|
26
|
+
export declare const complementary900 = "#CC5D14";
|
|
27
|
+
export declare const complementaryMain = "#EBB860";
|
|
28
|
+
export declare const error50 = "#FFEBEE";
|
|
29
|
+
export declare const error100 = "#FFCDD2";
|
|
30
|
+
export declare const error200 = "#EF9A9A";
|
|
31
|
+
export declare const error300 = "#E57373";
|
|
32
|
+
export declare const error400 = "#EF5350";
|
|
33
|
+
export declare const error500 = "#F44336";
|
|
34
|
+
export declare const error600 = "#E53935";
|
|
35
|
+
export declare const error700 = "#D32F2F";
|
|
36
|
+
export declare const error800 = "#C62828";
|
|
37
|
+
export declare const error900 = "#B71C1C";
|
|
38
|
+
export declare const errorMain = "#EF5350";
|
|
39
|
+
export declare const success50 = "#E6FCE8";
|
|
40
|
+
export declare const success100 = "#C3F6C5";
|
|
41
|
+
export declare const success200 = "#98F19F";
|
|
42
|
+
export declare const success300 = "#60EB73";
|
|
43
|
+
export declare const success400 = "#07E44D";
|
|
44
|
+
export declare const success500 = "#00DB2D";
|
|
45
|
+
export declare const success600 = "#00CA20";
|
|
46
|
+
export declare const success700 = "#00B70D";
|
|
47
|
+
export declare const success800 = "#00A500";
|
|
48
|
+
export declare const success900 = "#008400";
|
|
49
|
+
export declare const successMain = "#60EB73";
|
|
50
|
+
export declare const successDark = "#00CA20";
|
|
51
|
+
export declare const successLight = "#C3F6C5";
|
|
52
|
+
export declare const grey50 = "#FAFAFA";
|
|
53
|
+
export declare const grey100 = "#F5F5F5";
|
|
54
|
+
export declare const grey200 = "#EEEEEE";
|
|
55
|
+
export declare const grey300 = "#E0E0E0";
|
|
56
|
+
export declare const grey400 = "#BDBDBD";
|
|
57
|
+
export declare const grey500 = "#9E9E9E";
|
|
58
|
+
export declare const grey600 = "#757575";
|
|
59
|
+
export declare const grey700 = "#616161";
|
|
60
|
+
export declare const grey800 = "#424242";
|
|
61
|
+
export declare const grey900 = "#212121";
|
|
62
|
+
export declare const white = "#FFFFFF";
|
|
63
|
+
export declare const whiteOpacity32 = "rgba(255, 255, 255, 0.32)";
|
|
64
|
+
export declare const black = "#000000";
|
|
65
|
+
export declare const blackOpacity04 = "rgba(0, 0, 0, 0.04)";
|
|
66
|
+
export declare const blueGrey300 = "#A0A4AB";
|
|
67
|
+
export declare const blueGrey400 = "#646D7A";
|
|
68
|
+
export declare const blueGrey500 = "#495362";
|
|
69
|
+
export declare const blueGrey700 = "#414A58";
|
|
70
|
+
export declare const blueGrey800 = "#383F4C";
|
|
71
|
+
export declare const blueGreyOpacity05 = "rgba(65, 74, 88, 0.05)";
|
|
72
|
+
export declare const lightGreen = "#599D7D";
|
|
73
|
+
export declare const darkGreen = "#487F65";
|
|
74
|
+
export declare const dark500 = "#7F8BA8";
|
|
75
|
+
export declare const dark600 = "#3A4155";
|
|
76
|
+
export declare const dark700 = "#2F3646";
|
|
77
|
+
export declare const dark800 = "#262B38";
|
|
78
|
+
export declare const dark900 = "#1D202A";
|
|
79
|
+
export declare const darkMain = "#2F3646";
|
|
80
|
+
export declare const electricLavender = "#AD77EF";
|
|
81
|
+
export declare const cornflowerBlue = "#5F90EF";
|
|
82
|
+
export declare const tertiaryBlueGray = "#0E7178";
|
|
83
|
+
export declare const tertiaryBlueGrayLight = "#E4F5F7";
|
|
84
|
+
export declare const gunMetal = "#47535D";
|
|
85
|
+
export declare const yellow = "#FFD234";
|
|
86
|
+
export declare const blueGrey = "#7384A0";
|
|
87
|
+
export declare const paleOliveGreen = "#AED581";
|
|
88
|
+
export declare const oliveGreen = "#83B04E";
|
|
89
|
+
export declare const redOrange = "#FF3D00";
|
|
90
|
+
export declare const green2 = "#2AC1CB";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const theme: import("@mui/material/styles").Theme;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { TypographyOptions } from '@mui/material/styles/createTypography';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
export declare const sizes: {
|
|
4
|
+
readonly xs: "10px";
|
|
5
|
+
readonly sm: "12px";
|
|
6
|
+
readonly md: "14px";
|
|
7
|
+
readonly lg: "16px";
|
|
8
|
+
readonly xl: "18px";
|
|
9
|
+
readonly '2xl': "24px";
|
|
10
|
+
readonly '3xl': "32px";
|
|
11
|
+
};
|
|
12
|
+
export type TypographySize = keyof typeof sizes;
|
|
13
|
+
export declare const weights: {
|
|
14
|
+
readonly regular: "400";
|
|
15
|
+
readonly semibold: "600";
|
|
16
|
+
readonly bold: "700";
|
|
17
|
+
};
|
|
18
|
+
export type TypographyWeight = keyof typeof weights;
|
|
19
|
+
export declare const families: {
|
|
20
|
+
readonly primary: "Source Sans Pro";
|
|
21
|
+
};
|
|
22
|
+
export type TypographyFamily = keyof typeof families;
|
|
23
|
+
export type TypographyVariant = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'subtitle1' | 'subtitle2' | 'body1' | 'body1-semibold' | 'body1-semibold-monospace' | 'body2' | 'body2-semibold' | 'body2-semibold-monospace' | 'button-large' | 'button-medium' | 'button-small' | 'caption' | 'tooltip' | 'overline';
|
|
24
|
+
export declare const variants: {
|
|
25
|
+
[key in TypographyVariant]: React.CSSProperties;
|
|
26
|
+
};
|
|
27
|
+
declare module '@mui/material/styles' {
|
|
28
|
+
interface TypographyVariants {
|
|
29
|
+
h1: React.CSSProperties;
|
|
30
|
+
h2: React.CSSProperties;
|
|
31
|
+
h3: React.CSSProperties;
|
|
32
|
+
h4: React.CSSProperties;
|
|
33
|
+
h5: React.CSSProperties;
|
|
34
|
+
h6: React.CSSProperties;
|
|
35
|
+
subtitle1: React.CSSProperties;
|
|
36
|
+
subtitle2: React.CSSProperties;
|
|
37
|
+
body1: React.CSSProperties;
|
|
38
|
+
'body1-semibold': React.CSSProperties;
|
|
39
|
+
'body1-semibold-monospace': React.CSSProperties;
|
|
40
|
+
body2: React.CSSProperties;
|
|
41
|
+
'body2-semibold': React.CSSProperties;
|
|
42
|
+
'body2-semibold-monospace': React.CSSProperties;
|
|
43
|
+
'button-large': React.CSSProperties;
|
|
44
|
+
'button-medium': React.CSSProperties;
|
|
45
|
+
'button-small': React.CSSProperties;
|
|
46
|
+
caption: React.CSSProperties;
|
|
47
|
+
tooltip: React.CSSProperties;
|
|
48
|
+
overline: React.CSSProperties;
|
|
49
|
+
}
|
|
50
|
+
interface TypographyVariantsOptions {
|
|
51
|
+
h1?: React.CSSProperties;
|
|
52
|
+
h2?: React.CSSProperties;
|
|
53
|
+
h3?: React.CSSProperties;
|
|
54
|
+
h4?: React.CSSProperties;
|
|
55
|
+
h5?: React.CSSProperties;
|
|
56
|
+
h6?: React.CSSProperties;
|
|
57
|
+
subtitle1?: React.CSSProperties;
|
|
58
|
+
subtitle2?: React.CSSProperties;
|
|
59
|
+
body1?: React.CSSProperties;
|
|
60
|
+
'body1-semibold'?: React.CSSProperties;
|
|
61
|
+
'body1-semibold-monospace'?: React.CSSProperties;
|
|
62
|
+
body2?: React.CSSProperties;
|
|
63
|
+
'body2-semibold'?: React.CSSProperties;
|
|
64
|
+
'body2-semibold-monospace'?: React.CSSProperties;
|
|
65
|
+
'button-large'?: React.CSSProperties;
|
|
66
|
+
'button-medium'?: React.CSSProperties;
|
|
67
|
+
'button-small'?: React.CSSProperties;
|
|
68
|
+
caption?: React.CSSProperties;
|
|
69
|
+
tooltip?: React.CSSProperties;
|
|
70
|
+
overline?: React.CSSProperties;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
declare module '@mui/material/Typography' {
|
|
74
|
+
interface TypographyPropsVariantOverrides {
|
|
75
|
+
h1: true;
|
|
76
|
+
h2: true;
|
|
77
|
+
h3: true;
|
|
78
|
+
h4: true;
|
|
79
|
+
h5: true;
|
|
80
|
+
h6: true;
|
|
81
|
+
subtitle1: true;
|
|
82
|
+
subtitle2: true;
|
|
83
|
+
body1: true;
|
|
84
|
+
'body1-semibold': true;
|
|
85
|
+
'body1-semibold-monospace': true;
|
|
86
|
+
body2: true;
|
|
87
|
+
'body2-semibold': true;
|
|
88
|
+
'body2-semibold-monospace': true;
|
|
89
|
+
'button-large': true;
|
|
90
|
+
'button-medium': true;
|
|
91
|
+
'button-small': true;
|
|
92
|
+
caption: true;
|
|
93
|
+
tooltip: true;
|
|
94
|
+
overline: true;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
export declare const typography: TypographyOptions;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * as Animations from './Animations';
|
|
2
|
+
export * as Colors from './Colors';
|
|
3
|
+
export * as GlobalStyles from './GlobalStyles';
|
|
4
|
+
export * as Palettes from './Palettes';
|
|
5
|
+
export * as Shadows from './Shadows';
|
|
6
|
+
export * as Theme from './Theme';
|
|
7
|
+
export * as ThemeTypography from './Typography';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { TopLevelFormatterParams } from 'echarts/types/dist/shared';
|
|
2
|
+
import { IconId } from '../components/icon/Icon';
|
|
3
|
+
import { IncrementLabelType } from '../propTypes/IncrementLabel';
|
|
4
|
+
export type ChartTooltipEntry = {
|
|
5
|
+
iconId?: IconId;
|
|
6
|
+
iconColor?: string;
|
|
7
|
+
text: string;
|
|
8
|
+
incrementLabelValue?: string;
|
|
9
|
+
incrementLabelType?: IncrementLabelType;
|
|
10
|
+
};
|
|
11
|
+
export type ChartTooltipEntryFormatter = (params: {
|
|
12
|
+
seriesIndex: number;
|
|
13
|
+
seriesName: string;
|
|
14
|
+
value: number;
|
|
15
|
+
data: {
|
|
16
|
+
tooltipName: string;
|
|
17
|
+
tooltipOrder: number;
|
|
18
|
+
tooltipValue: string;
|
|
19
|
+
incrementLabelValue: string;
|
|
20
|
+
incrementLabelType: IncrementLabelType;
|
|
21
|
+
};
|
|
22
|
+
}) => ChartTooltipEntry;
|
|
23
|
+
export declare function getTooltipFormatter(chartTooltipEntryFormatter?: ChartTooltipEntryFormatter): (param: TopLevelFormatterParams) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function formatCurrency(value: number, locale: string, currency: string, notation?: 'compact'): string;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { ComparisonInterval } from '../models/ComparisonInterval';
|
|
2
|
+
import { DateInputFormat } from '../models/DateInputFormat';
|
|
3
|
+
import { DateInterval } from '../models/DateInterval';
|
|
4
|
+
import { SimpleDate } from '../models/SimpleDate';
|
|
5
|
+
export type DateTimeFormat = 'dateTimeVeryLongFormat' | 'dateTimeLongFormat' | 'dateTimeMediumFormat' | 'dateMediumLongFormat' | 'dateMediumFormat' | 'timeFormat' | 'shortTimeFormat' | 'dateFormat' | 'yearMonthFormat' | 'yearMonthLongFormat' | 'twoDigitsFormat';
|
|
6
|
+
export declare function formatDate(date: Date, locale: string, timezone: string, format?: DateTimeFormat): string;
|
|
7
|
+
export declare function getWeekDayNamesForLocale(locale: string, format?: 'long' | 'short' | 'narrow'): string[];
|
|
8
|
+
/**
|
|
9
|
+
* Return a string representing a date in the format for the supplied locale.
|
|
10
|
+
* For example, if the locale is 'en-US' and the returned value is `"MM/DD/YYYY"`,
|
|
11
|
+
* and for locale 'es' the returned value is `"DD/MM/YYYY"`.
|
|
12
|
+
*
|
|
13
|
+
* All formats always have a 'DD' component representing the day of the month,
|
|
14
|
+
* and a 'MM' component representing the month, and a 'YYYY' component representing
|
|
15
|
+
* the year.
|
|
16
|
+
*/
|
|
17
|
+
export declare function getDateInputFormatForLocale(locale: string): DateInputFormat;
|
|
18
|
+
/**
|
|
19
|
+
* Return a Date object representing the supplied string date for a locale and timezone.
|
|
20
|
+
* Supplied string date must be in the format returned by `getDateFormatForLocale(locale)`.
|
|
21
|
+
*
|
|
22
|
+
* If the supplied string date is invalid, the returned date will be invalid.
|
|
23
|
+
*/
|
|
24
|
+
export declare function parseDateForLocale(dateString: string, locale: string, timezone: string): Date;
|
|
25
|
+
export declare function getDatesFromDateInterval(interval: Exclude<DateInterval, 'custom'>, maxSelectableDays: number, timezone: string): {
|
|
26
|
+
startDate: Date;
|
|
27
|
+
endDate: Date;
|
|
28
|
+
};
|
|
29
|
+
export declare function getComparisonInterval(comparisonInterval: Exclude<ComparisonInterval, 'custom'>, startSimpleDate: SimpleDate, endSimpleDate: SimpleDate, timezone: string, minDate: Date): {
|
|
30
|
+
comparisonStartDate: Date;
|
|
31
|
+
comparisonEndDate: Date;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Return true if first simpleDate is after the second simpleDate.
|
|
35
|
+
*/
|
|
36
|
+
export declare function isAfterSimpleDate(d1: SimpleDate | null, d2: SimpleDate | null): boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Return true if all simpleDate are exactly the same.
|
|
39
|
+
*/
|
|
40
|
+
export declare function areSameSimpleDate(...simpleDates: (SimpleDate | null)[]): boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Return a SimpleDate representing the supplied date in the supplied timezone
|
|
43
|
+
*/
|
|
44
|
+
export declare function dateToSimpleDate(date: Date | null | undefined, timezone: string): SimpleDate | null;
|
|
45
|
+
export declare function getDisplayEndDate(date: Date, timezone: string): Date;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function formatPercentage(value: number, locale: string, fractionSize?: 0 | 1 | 2 | 3, minFractionSize?: 0 | 1 | 2 | 3): string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const countryCodesFourDigits: Set<string>;
|
|
2
|
+
export declare const countryCodesThreeDigits: Set<string>;
|
|
3
|
+
export declare const countryCodesTwoDigits: Set<string>;
|
|
4
|
+
export declare const countryCodesOneDigit: string[];
|
|
5
|
+
export declare const allCountries: {
|
|
6
|
+
name: string;
|
|
7
|
+
countryCode: string;
|
|
8
|
+
}[];
|
|
9
|
+
export declare function getCountryCode(phone?: string): string;
|
|
10
|
+
export declare function getPhoneWithoutCountryCode(phone?: string, countryCode?: string): string;
|
|
11
|
+
export declare function isValidPhoneNumber(phone: string): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const toDiacriticInsensitiveString: (input: string) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getSafeResizeObserverCallback(callback: (entries: ResizeObserverEntry[]) => void): ResizeObserverCallback;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
export declare const primary50 = "#E7F3FF";
|
|
2
|
+
export declare const primary100 = "#C5E1FF";
|
|
3
|
+
export declare const primary200 = "#A2D0FF";
|
|
4
|
+
export declare const primary300 = "#82BDFD";
|
|
5
|
+
export declare const primary400 = "#6FAEFC";
|
|
6
|
+
export declare const primary500 = "#63A0FA";
|
|
7
|
+
export declare const primary600 = "#5E91EB";
|
|
8
|
+
export declare const primary700 = "#577ED7";
|
|
9
|
+
export declare const primary800 = "#516DC4";
|
|
10
|
+
export declare const primary900 = "#464EA3";
|
|
11
|
+
export declare const primaryMain = "#5E91EB";
|
|
12
|
+
export declare const primaryDark = "#516DC4";
|
|
13
|
+
export declare const primaryLight = "#82BDFD";
|
|
14
|
+
export declare const primaryOpacity32 = "rgba(212, 224, 246, 0.32)";
|
|
15
|
+
export declare const primaryAlpha32 = "#F1F5FC";
|
|
16
|
+
export declare const primaryAlpha64 = "#E3EBF9";
|
|
17
|
+
export declare const complementary50 = "#FBF3E3";
|
|
18
|
+
export declare const complementary100 = "#F5E0B9";
|
|
19
|
+
export declare const complementary200 = "#F0CC8C";
|
|
20
|
+
export declare const complementary300 = "#EBB860";
|
|
21
|
+
export declare const complementary400 = "#E8A944";
|
|
22
|
+
export declare const complementary500 = "#E69B2D";
|
|
23
|
+
export declare const complementary600 = "#E29029";
|
|
24
|
+
export declare const complementary700 = "#DB8223";
|
|
25
|
+
export declare const complementary800 = "#D5741E";
|
|
26
|
+
export declare const complementary900 = "#CC5D14";
|
|
27
|
+
export declare const complementaryMain = "#EBB860";
|
|
28
|
+
export declare const error50 = "#FFEBEE";
|
|
29
|
+
export declare const error100 = "#FFCDD2";
|
|
30
|
+
export declare const error200 = "#EF9A9A";
|
|
31
|
+
export declare const error300 = "#E57373";
|
|
32
|
+
export declare const error400 = "#EF5350";
|
|
33
|
+
export declare const error500 = "#F44336";
|
|
34
|
+
export declare const error600 = "#E53935";
|
|
35
|
+
export declare const error700 = "#D32F2F";
|
|
36
|
+
export declare const error800 = "#C62828";
|
|
37
|
+
export declare const error900 = "#B71C1C";
|
|
38
|
+
export declare const errorMain = "#EF5350";
|
|
39
|
+
export declare const success50 = "#E6FCE8";
|
|
40
|
+
export declare const success100 = "#C3F6C5";
|
|
41
|
+
export declare const success200 = "#98F19F";
|
|
42
|
+
export declare const success300 = "#60EB73";
|
|
43
|
+
export declare const success400 = "#07E44D";
|
|
44
|
+
export declare const success500 = "#00DB2D";
|
|
45
|
+
export declare const success600 = "#00CA20";
|
|
46
|
+
export declare const success700 = "#00B70D";
|
|
47
|
+
export declare const success800 = "#00A500";
|
|
48
|
+
export declare const success900 = "#008400";
|
|
49
|
+
export declare const successMain = "#60EB73";
|
|
50
|
+
export declare const successDark = "#00CA20";
|
|
51
|
+
export declare const successLight = "#C3F6C5";
|
|
52
|
+
export declare const grey50 = "#FAFAFA";
|
|
53
|
+
export declare const grey100 = "#F5F5F5";
|
|
54
|
+
export declare const grey200 = "#EEEEEE";
|
|
55
|
+
export declare const grey300 = "#E0E0E0";
|
|
56
|
+
export declare const grey400 = "#BDBDBD";
|
|
57
|
+
export declare const grey500 = "#9E9E9E";
|
|
58
|
+
export declare const grey600 = "#757575";
|
|
59
|
+
export declare const grey700 = "#616161";
|
|
60
|
+
export declare const grey800 = "#424242";
|
|
61
|
+
export declare const grey900 = "#212121";
|
|
62
|
+
export declare const white = "#FFFFFF";
|
|
63
|
+
export declare const whiteOpacity32 = "rgba(255, 255, 255, 0.32)";
|
|
64
|
+
export declare const black = "#000000";
|
|
65
|
+
export declare const blackOpacity04 = "rgba(0, 0, 0, 0.04)";
|
|
66
|
+
export declare const blueGrey300 = "#A0A4AB";
|
|
67
|
+
export declare const blueGrey400 = "#646D7A";
|
|
68
|
+
export declare const blueGrey500 = "#495362";
|
|
69
|
+
export declare const blueGrey700 = "#414A58";
|
|
70
|
+
export declare const blueGrey800 = "#383F4C";
|
|
71
|
+
export declare const blueGreyOpacity05 = "rgba(65, 74, 88, 0.05)";
|
|
72
|
+
export declare const lightGreen = "#599D7D";
|
|
73
|
+
export declare const darkGreen = "#487F65";
|
|
74
|
+
export declare const dark500 = "#7F8BA8";
|
|
75
|
+
export declare const dark600 = "#3A4155";
|
|
76
|
+
export declare const dark700 = "#2F3646";
|
|
77
|
+
export declare const dark800 = "#262B38";
|
|
78
|
+
export declare const dark900 = "#1D202A";
|
|
79
|
+
export declare const darkMain = "#2F3646";
|
|
80
|
+
export declare const electricLavender = "#AD77EF";
|
|
81
|
+
export declare const cornflowerBlue = "#5F90EF";
|
|
82
|
+
export declare const tertiaryBlueGray = "#0E7178";
|
|
83
|
+
export declare const tertiaryBlueGrayLight = "#E4F5F7";
|
|
84
|
+
export declare const gunMetal = "#47535D";
|
|
85
|
+
export declare const yellow = "#FFD234";
|
|
86
|
+
export declare const blueGrey = "#7384A0";
|
|
87
|
+
export declare const paleOliveGreen = "#AED581";
|
|
88
|
+
export declare const oliveGreen = "#83B04E";
|
|
89
|
+
export declare const redOrange = "#FF3D00";
|
|
90
|
+
export declare const green2 = "#2AC1CB";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const theme: import("@mui/material/styles").Theme;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { TypographyOptions } from '@mui/material/styles/createTypography';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
export declare const sizes: {
|
|
4
|
+
readonly xs: "10px";
|
|
5
|
+
readonly sm: "12px";
|
|
6
|
+
readonly md: "14px";
|
|
7
|
+
readonly lg: "16px";
|
|
8
|
+
readonly xl: "18px";
|
|
9
|
+
readonly '2xl': "24px";
|
|
10
|
+
readonly '3xl': "32px";
|
|
11
|
+
};
|
|
12
|
+
export type TypographySize = keyof typeof sizes;
|
|
13
|
+
export declare const weights: {
|
|
14
|
+
readonly regular: "400";
|
|
15
|
+
readonly semibold: "600";
|
|
16
|
+
readonly bold: "700";
|
|
17
|
+
};
|
|
18
|
+
export type TypographyWeight = keyof typeof weights;
|
|
19
|
+
export declare const families: {
|
|
20
|
+
readonly primary: "Source Sans Pro";
|
|
21
|
+
};
|
|
22
|
+
export type TypographyFamily = keyof typeof families;
|
|
23
|
+
export type TypographyVariant = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'subtitle1' | 'subtitle2' | 'body1' | 'body1-semibold' | 'body1-semibold-monospace' | 'body2' | 'body2-semibold' | 'body2-semibold-monospace' | 'button-large' | 'button-medium' | 'button-small' | 'caption' | 'tooltip' | 'overline';
|
|
24
|
+
export declare const variants: {
|
|
25
|
+
[key in TypographyVariant]: React.CSSProperties;
|
|
26
|
+
};
|
|
27
|
+
declare module '@mui/material/styles' {
|
|
28
|
+
interface TypographyVariants {
|
|
29
|
+
h1: React.CSSProperties;
|
|
30
|
+
h2: React.CSSProperties;
|
|
31
|
+
h3: React.CSSProperties;
|
|
32
|
+
h4: React.CSSProperties;
|
|
33
|
+
h5: React.CSSProperties;
|
|
34
|
+
h6: React.CSSProperties;
|
|
35
|
+
subtitle1: React.CSSProperties;
|
|
36
|
+
subtitle2: React.CSSProperties;
|
|
37
|
+
body1: React.CSSProperties;
|
|
38
|
+
'body1-semibold': React.CSSProperties;
|
|
39
|
+
'body1-semibold-monospace': React.CSSProperties;
|
|
40
|
+
body2: React.CSSProperties;
|
|
41
|
+
'body2-semibold': React.CSSProperties;
|
|
42
|
+
'body2-semibold-monospace': React.CSSProperties;
|
|
43
|
+
'button-large': React.CSSProperties;
|
|
44
|
+
'button-medium': React.CSSProperties;
|
|
45
|
+
'button-small': React.CSSProperties;
|
|
46
|
+
caption: React.CSSProperties;
|
|
47
|
+
tooltip: React.CSSProperties;
|
|
48
|
+
overline: React.CSSProperties;
|
|
49
|
+
}
|
|
50
|
+
interface TypographyVariantsOptions {
|
|
51
|
+
h1?: React.CSSProperties;
|
|
52
|
+
h2?: React.CSSProperties;
|
|
53
|
+
h3?: React.CSSProperties;
|
|
54
|
+
h4?: React.CSSProperties;
|
|
55
|
+
h5?: React.CSSProperties;
|
|
56
|
+
h6?: React.CSSProperties;
|
|
57
|
+
subtitle1?: React.CSSProperties;
|
|
58
|
+
subtitle2?: React.CSSProperties;
|
|
59
|
+
body1?: React.CSSProperties;
|
|
60
|
+
'body1-semibold'?: React.CSSProperties;
|
|
61
|
+
'body1-semibold-monospace'?: React.CSSProperties;
|
|
62
|
+
body2?: React.CSSProperties;
|
|
63
|
+
'body2-semibold'?: React.CSSProperties;
|
|
64
|
+
'body2-semibold-monospace'?: React.CSSProperties;
|
|
65
|
+
'button-large'?: React.CSSProperties;
|
|
66
|
+
'button-medium'?: React.CSSProperties;
|
|
67
|
+
'button-small'?: React.CSSProperties;
|
|
68
|
+
caption?: React.CSSProperties;
|
|
69
|
+
tooltip?: React.CSSProperties;
|
|
70
|
+
overline?: React.CSSProperties;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
declare module '@mui/material/Typography' {
|
|
74
|
+
interface TypographyPropsVariantOverrides {
|
|
75
|
+
h1: true;
|
|
76
|
+
h2: true;
|
|
77
|
+
h3: true;
|
|
78
|
+
h4: true;
|
|
79
|
+
h5: true;
|
|
80
|
+
h6: true;
|
|
81
|
+
subtitle1: true;
|
|
82
|
+
subtitle2: true;
|
|
83
|
+
body1: true;
|
|
84
|
+
'body1-semibold': true;
|
|
85
|
+
'body1-semibold-monospace': true;
|
|
86
|
+
body2: true;
|
|
87
|
+
'body2-semibold': true;
|
|
88
|
+
'body2-semibold-monospace': true;
|
|
89
|
+
'button-large': true;
|
|
90
|
+
'button-medium': true;
|
|
91
|
+
'button-small': true;
|
|
92
|
+
caption: true;
|
|
93
|
+
tooltip: true;
|
|
94
|
+
overline: true;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
export declare const typography: TypographyOptions;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * as Animations from './Animations';
|
|
2
|
+
export * as Colors from './Colors';
|
|
3
|
+
export * as GlobalStyles from './GlobalStyles';
|
|
4
|
+
export * as Palettes from './Palettes';
|
|
5
|
+
export * as Shadows from './Shadows';
|
|
6
|
+
export * as Theme from './Theme';
|
|
7
|
+
export * as ThemeTypography from './Typography';
|