@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,8 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SkeletonProps as MuiSkeletonProps } from '@mui/material/Skeleton';
|
|
3
|
+
type SkeletonColorVariantId = 'default' | 'primary';
|
|
4
|
+
export type SkeletonProps = Pick<MuiSkeletonProps, 'variant' | 'width' | 'height' | 'sx' | 'animation'> & {
|
|
5
|
+
colorVariant?: SkeletonColorVariantId;
|
|
6
|
+
};
|
|
7
|
+
declare const Skeleton: React.FC<SkeletonProps>;
|
|
8
|
+
export default Skeleton;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Skeleton, SkeletonProps } from '../skeleton/Skeleton';
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SnackbarKey, SnackbarMessage } from 'notistack';
|
|
3
|
+
type SnackbarSize = 'M' | 'L';
|
|
4
|
+
type SnackbarSeverity = 'success' | 'info' | 'error' | 'warning';
|
|
5
|
+
export type SnackbarProps = {
|
|
6
|
+
/**
|
|
7
|
+
* Unique key associated to this snackbar. It will be used to close this
|
|
8
|
+
* snackbar using closeSnackbar returned by hook useSnackbar.
|
|
9
|
+
*/
|
|
10
|
+
identifierKey: SnackbarKey;
|
|
11
|
+
/**
|
|
12
|
+
* Message to show
|
|
13
|
+
*/
|
|
14
|
+
message: SnackbarMessage;
|
|
15
|
+
/**
|
|
16
|
+
* Severity of this Snackbar
|
|
17
|
+
*/
|
|
18
|
+
severity?: SnackbarSeverity;
|
|
19
|
+
/**
|
|
20
|
+
* Size of Snackbar
|
|
21
|
+
*/
|
|
22
|
+
size?: SnackbarSize;
|
|
23
|
+
/**
|
|
24
|
+
* Whether the icon is visible or not.
|
|
25
|
+
* The iconId will depend on severity.
|
|
26
|
+
*/
|
|
27
|
+
withIcon?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* The text to show in the action button of this Snackbar.
|
|
30
|
+
* Leave it empty or undefined to not show action button.
|
|
31
|
+
*/
|
|
32
|
+
actionText?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Key to bind data-test attribute
|
|
35
|
+
*/
|
|
36
|
+
dataTestKey?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Click handler for main action button click.
|
|
39
|
+
*/
|
|
40
|
+
onActionClick?: (key: SnackbarKey) => void;
|
|
41
|
+
/**
|
|
42
|
+
* Custom handler for close event.
|
|
43
|
+
*/
|
|
44
|
+
onCloseClick?: (key: SnackbarKey) => void;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* An ephemeral message to be shown in some place of the screen. AKA Toast component.
|
|
48
|
+
* This is the rendered component only. To show/hide a Snackbar, see useSnackbar hook.
|
|
49
|
+
* This component should be rendered as descendant (at any level) of SnackbarProvider.
|
|
50
|
+
*/
|
|
51
|
+
declare const Snackbar: React.ForwardRefExoticComponent<SnackbarProps & React.RefAttributes<HTMLDivElement>>;
|
|
52
|
+
export default Snackbar;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { SnackbarProviderProps as NotistackSnackbarProviderProps } from 'notistack';
|
|
3
|
+
export type SnackbarProviderProps = Pick<NotistackSnackbarProviderProps, 'maxSnack' | 'domRoot' | 'children'>;
|
|
4
|
+
/**
|
|
5
|
+
* Logic manager to show and hide Snackbars.
|
|
6
|
+
* Use this provider at higher level in component tree, so you can use hook `useSnackbar` in nested
|
|
7
|
+
* components to show a Snackbar.
|
|
8
|
+
*/
|
|
9
|
+
declare const SnackbarProvider: ({ children, maxSnack, domRoot }: SnackbarProviderProps) => JSX.Element;
|
|
10
|
+
export default SnackbarProvider;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SnackbarOrigin } from 'notistack';
|
|
3
|
+
import { SnackbarProps } from './Snackbar';
|
|
4
|
+
export type EnqueueSnackbarOptions = Pick<SnackbarProps, 'severity' | 'actionText' | 'onActionClick' | 'size' | 'withIcon' | 'dataTestKey'> & {
|
|
5
|
+
/**
|
|
6
|
+
* Custom handler for close event. Leave it undefined if you want
|
|
7
|
+
* the default behavior of simply close this Snackbar.
|
|
8
|
+
*/
|
|
9
|
+
onCloseClick?: SnackbarProps['onCloseClick'];
|
|
10
|
+
/**
|
|
11
|
+
* Milliseconds to automatically close the Snackbar.
|
|
12
|
+
* @default 10000
|
|
13
|
+
*/
|
|
14
|
+
autoHideDurationMs?: number;
|
|
15
|
+
/**
|
|
16
|
+
* By using persist === true, auto-hide can be disabled to keep Snackbars in the view indefinitely.
|
|
17
|
+
* @default false
|
|
18
|
+
*/
|
|
19
|
+
persist?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Position where to show the snackbar
|
|
22
|
+
* @default 'center'
|
|
23
|
+
*/
|
|
24
|
+
horizontalPosition?: SnackbarOrigin['horizontal'];
|
|
25
|
+
};
|
|
26
|
+
export declare const enqueueSnackbar: (message: React.ReactNode, options?: Partial<EnqueueSnackbarOptions>) => import("notistack").SnackbarKey;
|
|
27
|
+
export { closeSnackbar } from 'notistack';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export type TabButtonProps = React.PropsWithChildren<{
|
|
3
|
+
/**
|
|
4
|
+
* Whether the tab button is disabled.
|
|
5
|
+
*/
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* Text align inside of tab
|
|
9
|
+
* @default left
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
textAlign?: 'left' | 'center';
|
|
13
|
+
/**
|
|
14
|
+
* Right margin of the tab
|
|
15
|
+
*/
|
|
16
|
+
marginRight?: number | string;
|
|
17
|
+
/**
|
|
18
|
+
* Whether the tab button text is in uppercase or not.
|
|
19
|
+
* If true, text will not be transformed to uppercase.
|
|
20
|
+
* @default false
|
|
21
|
+
*/
|
|
22
|
+
disableUppercase?: boolean;
|
|
23
|
+
dataTestId?: string;
|
|
24
|
+
}>;
|
|
25
|
+
/**
|
|
26
|
+
* A TabButton is a button that can be used to switch between tabs.
|
|
27
|
+
* It is usually used in a Tabs component.
|
|
28
|
+
*/
|
|
29
|
+
declare const TabButton: ({ children, disabled, textAlign, marginRight, dataTestId, disableUppercase, ...rest }: TabButtonProps) => JSX.Element;
|
|
30
|
+
export default TabButton;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export type TabContentProps = React.PropsWithChildren<Record<never, never>>;
|
|
3
|
+
/**
|
|
4
|
+
* The element that should be used as first child of Tabs component.
|
|
5
|
+
*/
|
|
6
|
+
declare const TabContent: ({ children }: TabContentProps) => JSX.Element;
|
|
7
|
+
export default TabContent;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export type TabsProps = {
|
|
3
|
+
/**
|
|
4
|
+
* An array with the tab buttons. Make sure it is the correlative order
|
|
5
|
+
* than the tab contents supplied as children.
|
|
6
|
+
*/
|
|
7
|
+
tabButtons: React.ReactNode[];
|
|
8
|
+
/**
|
|
9
|
+
* The tab contents. Make sure it is the correlative order
|
|
10
|
+
* than the supplied tabButtons. All first-level components of this children should be TabContent.
|
|
11
|
+
*/
|
|
12
|
+
children: React.ReactNode;
|
|
13
|
+
/**
|
|
14
|
+
* The index of the tab to be displayed.
|
|
15
|
+
*/
|
|
16
|
+
currentTabIndex?: number;
|
|
17
|
+
/**
|
|
18
|
+
* Callback function called when the tab is changed.
|
|
19
|
+
*/
|
|
20
|
+
onChangeTab?: (index: number) => void;
|
|
21
|
+
/**
|
|
22
|
+
* Establishes the distribution of the tabs.
|
|
23
|
+
* 'scrollable' is the default value, and it stacks the tabs horizontally to left.
|
|
24
|
+
* 'fullWith' distributes the tabs horizontally to fit the full width.
|
|
25
|
+
*/
|
|
26
|
+
variant?: 'scrollable' | 'fullWidth';
|
|
27
|
+
/**
|
|
28
|
+
* If true, it sets the main tabs container style to have height=100%, which will be adapted to the parent height
|
|
29
|
+
* according to general css rules (i.e. the parent height should be extablished to a fixed or relative value)
|
|
30
|
+
*/
|
|
31
|
+
fullHeight?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* If contained, tab indicator will be down and it will have line below tabs
|
|
34
|
+
* @default false
|
|
35
|
+
*/
|
|
36
|
+
contained?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Set the scrollbarGutter property for each slide of the SwipeableViews component.
|
|
39
|
+
*/
|
|
40
|
+
scrollbarGutter?: 'stable' | 'auto';
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Define a Tabs container, with a fixed header and a transitions on change between tabs.
|
|
44
|
+
* For a right usage, supply exactly the same quantity of tabButtons and children. They will be
|
|
45
|
+
* associated by index.
|
|
46
|
+
* By default, this component handles the current selected tab (first tab as default),
|
|
47
|
+
* but you can define the current tab by passing the currentTabIndex prop. You can also
|
|
48
|
+
* define a callback function to be called when the tab is clicked, so you can do something
|
|
49
|
+
* with the current tab index.
|
|
50
|
+
*/
|
|
51
|
+
declare const Tabs: ({ tabButtons, children, currentTabIndex, onChangeTab, variant, fullHeight, contained, scrollbarGutter }: TabsProps) => JSX.Element;
|
|
52
|
+
export default Tabs;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { SxProps } from '@mui/material';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
export type NestedTableProps = React.PropsWithChildren<{
|
|
4
|
+
/**
|
|
5
|
+
* As NestedTable should a full-width cell, the colSpan prop depends on the quantity of columns.
|
|
6
|
+
* Supply here the current total quantity of columns for the Table where this NestedTable is inserted into.
|
|
7
|
+
*/
|
|
8
|
+
colSpan: number;
|
|
9
|
+
/**
|
|
10
|
+
* Usually, nested tables will be collapsibles. Supply `isVisible={false}` to collapse this nested table row.
|
|
11
|
+
*/
|
|
12
|
+
isVisible?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* Custom styles to apply to the nested <Table> component.
|
|
15
|
+
*/
|
|
16
|
+
sx?: SxProps;
|
|
17
|
+
/**
|
|
18
|
+
* The class names of this Table component
|
|
19
|
+
*/
|
|
20
|
+
className?: string;
|
|
21
|
+
}>;
|
|
22
|
+
/**
|
|
23
|
+
* Use this component to show nested <Table> components inside another <Table> component.
|
|
24
|
+
* Nested tables will always should be a full row width; because of this, a colSpan is required
|
|
25
|
+
* so the intrinsic cell will know how many columns should be spanned.
|
|
26
|
+
* Nested table components are usually collapsibles. It is expanded by default if not supplied `isVisible` prop.
|
|
27
|
+
*/
|
|
28
|
+
declare const NestedTable: ({ colSpan, children, className, sx, isVisible }: NestedTableProps) => JSX.Element;
|
|
29
|
+
export default NestedTable;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TableProps as MuiTableProps } from '@mui/material';
|
|
3
|
+
export type TableProps = Pick<MuiTableProps, 'sx' | 'children' | 'className'>;
|
|
4
|
+
declare const Table: ({ children, sx, className }: TableProps) => JSX.Element;
|
|
5
|
+
export default Table;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TableCellProps as MuiTableCellProps } from '@mui/material';
|
|
3
|
+
export type TableCellProps = Pick<MuiTableCellProps, 'children' | 'align' | 'colSpan' | 'sortDirection' | 'sx' | 'onClick' | 'className'> & {
|
|
4
|
+
/**
|
|
5
|
+
* Size of cell. All cells in the same TableRow should have the same size.
|
|
6
|
+
*/
|
|
7
|
+
size?: 'S' | 'M';
|
|
8
|
+
/**
|
|
9
|
+
* Sets CSS white-space: nowrap to this cell
|
|
10
|
+
*/
|
|
11
|
+
noWrap?: boolean;
|
|
12
|
+
sticky?: 'left' | 'right';
|
|
13
|
+
/**
|
|
14
|
+
* Weather the cell have to remove border.
|
|
15
|
+
* @default false
|
|
16
|
+
*/
|
|
17
|
+
noBorder?: boolean;
|
|
18
|
+
};
|
|
19
|
+
declare const TableCell: ({ children, size, sx, noWrap, sticky, className, onClick, noBorder, ...rest }: TableCellProps) => JSX.Element;
|
|
20
|
+
export default TableCell;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TableCellProps } from './TableCell';
|
|
3
|
+
export type TableCellCopyProps = TableCellProps & {
|
|
4
|
+
/**
|
|
5
|
+
* Text to show
|
|
6
|
+
*/
|
|
7
|
+
text: string;
|
|
8
|
+
};
|
|
9
|
+
declare const TableCellCopy: ({ text, ...rest }: TableCellCopyProps) => JSX.Element;
|
|
10
|
+
export default TableCellCopy;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { TableRowProps as MuiTableRowProps } from '@mui/material';
|
|
3
|
+
export type TableRowProps = React.PropsWithChildren<{
|
|
4
|
+
isFollowedByNestedTable?: boolean;
|
|
5
|
+
fadeInLeftAnimation?: boolean;
|
|
6
|
+
sx?: MuiTableRowProps['sx'];
|
|
7
|
+
}>;
|
|
8
|
+
declare const TableRow: ({ children, isFollowedByNestedTable, fadeInLeftAnimation, sx }: TableRowProps) => JSX.Element;
|
|
9
|
+
export default TableRow;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TableSortLabelProps as MuiTableSortLabelProps } from '@mui/material';
|
|
3
|
+
export type TableSortLabelProps = Pick<MuiTableSortLabelProps, 'children' | 'active' | 'direction' | 'onClick'>;
|
|
4
|
+
/**
|
|
5
|
+
* An special structure to show a clickable header label in a Table to short by that column
|
|
6
|
+
*/
|
|
7
|
+
declare const TableSortLabel: ({ children, ...rest }: TableSortLabelProps) => JSX.Element;
|
|
8
|
+
export default TableSortLabel;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { default as Table, TableProps } from './Table';
|
|
2
|
+
export { default as TableBody, TableBodyProps } from './TableBody';
|
|
3
|
+
export { default as TableCell, TableCellProps } from './TableCell';
|
|
4
|
+
export { default as TableCellCopy, TableCellCopyProps } from './TableCellCopy';
|
|
5
|
+
export { default as TableDivider } from './TableDivider';
|
|
6
|
+
export { default as TableHead, TableHeadProps } from './TableHead';
|
|
7
|
+
export { default as TableRow, TableRowProps } from './TableRow';
|
|
8
|
+
export { default as TableSortLabel, TableSortLabelProps } from './TableSortLabel';
|
|
9
|
+
export { default as NestedTable, NestedTableProps } from './NestedTable';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { BoxProps } from '@mui/material';
|
|
3
|
+
export type ToolbarProps = React.PropsWithChildren<{
|
|
4
|
+
/**
|
|
5
|
+
* Actions to show at the right side.
|
|
6
|
+
*/
|
|
7
|
+
rightActions?: React.ReactNode;
|
|
8
|
+
/**
|
|
9
|
+
* Actions to show at the left side.
|
|
10
|
+
*/
|
|
11
|
+
leftActions?: React.ReactNode;
|
|
12
|
+
className?: string;
|
|
13
|
+
sx?: BoxProps['sx'];
|
|
14
|
+
dataTestId?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Called when the toolbar is clicked
|
|
17
|
+
*/
|
|
18
|
+
onClickToolbar?: React.MouseEventHandler<HTMLDivElement>;
|
|
19
|
+
}>;
|
|
20
|
+
/**
|
|
21
|
+
* A toolbar with three sections: left, middle, and right. Each section can be empty.
|
|
22
|
+
*/
|
|
23
|
+
declare const Toolbar: ({ children, rightActions, leftActions, className, sx, dataTestId, onClickToolbar }: ToolbarProps) => JSX.Element;
|
|
24
|
+
export default Toolbar;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export type ToolbarBreadcrumbProps = {
|
|
3
|
+
/**
|
|
4
|
+
* The breadcrumb parts to display. It should be an array of some of these components (can be mixed):
|
|
5
|
+
* - ToolbarBreadcrumbButton
|
|
6
|
+
* - ToolbarTitle
|
|
7
|
+
*/
|
|
8
|
+
parts?: React.ReactNode[];
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* The title for a Toolbar component when you want to represent a breadcrumb ended with the title.
|
|
12
|
+
* It automatically insert "/" separators between parts
|
|
13
|
+
*/
|
|
14
|
+
declare const ToolbarBreadcrumb: ({ parts }: ToolbarBreadcrumbProps) => JSX.Element;
|
|
15
|
+
export default ToolbarBreadcrumb;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SxProps } from '@mui/material';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
export type ToolbarBreadcrumbButtonProps = {
|
|
4
|
+
text: string;
|
|
5
|
+
className?: string;
|
|
6
|
+
onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
7
|
+
sx?: SxProps;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
};
|
|
10
|
+
declare const ToolbarBreadcrumbButton: React.ForwardRefExoticComponent<ToolbarBreadcrumbButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
11
|
+
export default ToolbarBreadcrumbButton;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
|
+
export type ToolbarTitleProps = {
|
|
4
|
+
/**
|
|
5
|
+
* The title to display.
|
|
6
|
+
*/
|
|
7
|
+
title: string;
|
|
8
|
+
/**
|
|
9
|
+
* Title text alignment.
|
|
10
|
+
*/
|
|
11
|
+
align?: 'left' | 'right';
|
|
12
|
+
className?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Actions to show on hover.
|
|
15
|
+
*/
|
|
16
|
+
hoverActions?: ReactNode;
|
|
17
|
+
/**
|
|
18
|
+
* The color of the title.
|
|
19
|
+
*/
|
|
20
|
+
color?: string;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* The title for a Toolbar component. It automatically handles show a tooltip if the title
|
|
24
|
+
* gets clipped with ellipsis
|
|
25
|
+
*/
|
|
26
|
+
declare const ToolbarTitle: React.ForwardRefExoticComponent<ToolbarTitleProps & React.RefAttributes<unknown>>;
|
|
27
|
+
export default ToolbarTitle;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { default as Toolbar, ToolbarProps } from './Toolbar';
|
|
2
|
+
export { default as ToolbarTitle, ToolbarTitleProps } from './ToolbarTitle';
|
|
3
|
+
export { default as ToolbarBreadcrumb, ToolbarBreadcrumbProps } from './ToolbarBreadcrumb';
|
|
4
|
+
export { default as ToolbarBreadcrumbButton, ToolbarBreadcrumbButtonProps } from './ToolbarBreadcrumbButton';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { ThemeTypography } from '../../theme';
|
|
3
|
+
import { SxProps } from '@mui/material';
|
|
4
|
+
export type TextEllipsisProps = {
|
|
5
|
+
text?: React.ReactNode;
|
|
6
|
+
typographyVariant: ThemeTypography.TypographyVariant;
|
|
7
|
+
color?: string;
|
|
8
|
+
width?: string;
|
|
9
|
+
maxWidth?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Number of lines to apply ellipsis. If no set, one line
|
|
12
|
+
*/
|
|
13
|
+
lines?: number;
|
|
14
|
+
'data-test'?: string;
|
|
15
|
+
sx?: SxProps;
|
|
16
|
+
};
|
|
17
|
+
declare const TextEllipsis: ({ text, typographyVariant, color, width, lines, maxWidth, "data-test": dataTest, sx }: TextEllipsisProps) => JSX.Element;
|
|
18
|
+
export default TextEllipsis;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { TooltipProps } from './Tooltip';
|
|
3
|
+
export type TextEllipsisTooltipProps = TooltipProps & {
|
|
4
|
+
/**
|
|
5
|
+
* A Reference to the ellipsable element.
|
|
6
|
+
*/
|
|
7
|
+
textEllipsableElement: React.RefObject<Element>;
|
|
8
|
+
/**
|
|
9
|
+
* Number of lines to apply ellipsis. If no set, one line
|
|
10
|
+
*/
|
|
11
|
+
lines?: number;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* An extended Tooltip component that can be used to display the full text (or any
|
|
15
|
+
* other text) only when inner text of `textEllipsableElement` is truncated
|
|
16
|
+
* with ellipsis (scrollWidth > clientWidth). See Tooltip component to know more about Tooltip usage.
|
|
17
|
+
*
|
|
18
|
+
* *KNOWN ISSUES*
|
|
19
|
+
* - This is not pixel perfect solution: it could be that text-ellipsis appears without tooltip when it is
|
|
20
|
+
* too close to fit in the available space.
|
|
21
|
+
* - When the `textEllipsableElement` has some inner paddings or borders, the previous known issue get even worse.
|
|
22
|
+
*
|
|
23
|
+
* @see https://stackoverflow.com/questions/56588625/react-show-material-ui-tooltip-only-for-text-that-has-ellipsis
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
declare const TextEllipsisTooltip: ({ textEllipsableElement, lines, ...rest }: TextEllipsisTooltipProps) => JSX.Element;
|
|
27
|
+
export default TextEllipsisTooltip;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { TooltipProps as MuiTooltipProps } from '@mui/material';
|
|
3
|
+
import { TypographyProps } from '../typography/Typography';
|
|
4
|
+
export type TooltipVariant = 'default' | 'white' | 'error' | 'blue';
|
|
5
|
+
export type TooltipProps = Pick<MuiTooltipProps, 'children' | 'disableHoverListener' | 'open'> & {
|
|
6
|
+
/**
|
|
7
|
+
* The content to display in the tooltip.
|
|
8
|
+
*/
|
|
9
|
+
title: NonNullable<React.ReactNode>;
|
|
10
|
+
/**
|
|
11
|
+
* The placement of the tooltip.
|
|
12
|
+
*/
|
|
13
|
+
placement?: 'top' | 'bottom' | 'left' | 'right';
|
|
14
|
+
/**
|
|
15
|
+
* If set, it won't close when the user hovers over the tooltip
|
|
16
|
+
*/
|
|
17
|
+
interactive?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* If set, tooltip will show up in disabled elements such as buttons and text fields. Default is false.
|
|
20
|
+
*/
|
|
21
|
+
allowDisabled?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* The background color of the tooltip
|
|
24
|
+
* @default 'default'
|
|
25
|
+
*/
|
|
26
|
+
variant?: TooltipVariant;
|
|
27
|
+
/**
|
|
28
|
+
* The variant of the text in the tooltip
|
|
29
|
+
*/
|
|
30
|
+
textVariant?: TypographyProps['variant'];
|
|
31
|
+
/**
|
|
32
|
+
* If set, the arrow will be shown
|
|
33
|
+
* @default false
|
|
34
|
+
*/
|
|
35
|
+
enableArrow?: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* The border radius of the tooltip
|
|
38
|
+
* @default 4
|
|
39
|
+
*/
|
|
40
|
+
borderRadius?: number;
|
|
41
|
+
/**
|
|
42
|
+
* Class to override .MuiTooltip-popper styles
|
|
43
|
+
*/
|
|
44
|
+
popperClass?: string;
|
|
45
|
+
/**
|
|
46
|
+
* zIndex to set in tooltip
|
|
47
|
+
*/
|
|
48
|
+
zIndex?: number;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* A tooltip component that can be used to display additional information about
|
|
52
|
+
* an element.
|
|
53
|
+
* Its used by wrapping the trigger element with the Tooltip component.
|
|
54
|
+
* **IMPORTANT**: The Tooltip children must be able to hold a ref. More info here:
|
|
55
|
+
* - https://mui.com/material-ui/guides/composition/#caveat-with-refs
|
|
56
|
+
* - https://reactjs.org/docs/forwarding-refs.html#forwarding-refs-to-dom-components
|
|
57
|
+
*/
|
|
58
|
+
declare const Tooltip: ({ children, title, placement, interactive, allowDisabled, variant, textVariant, enableArrow, borderRadius, popperClass, zIndex, ...rest }: TooltipProps) => JSX.Element;
|
|
59
|
+
export default Tooltip;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { TooltipProps } from '@mui/material';
|
|
3
|
+
export type TooltipMenuProps = {
|
|
4
|
+
/**
|
|
5
|
+
* Menu content to show when tooltip is open.
|
|
6
|
+
*/
|
|
7
|
+
menuContent: NonNullable<React.ReactNode>;
|
|
8
|
+
/**
|
|
9
|
+
* The placement of the tooltip.
|
|
10
|
+
*/
|
|
11
|
+
placement?: TooltipProps['placement'];
|
|
12
|
+
/**
|
|
13
|
+
* Children to anchor the tooltip.
|
|
14
|
+
*/
|
|
15
|
+
children: React.ReactElement<unknown>;
|
|
16
|
+
/**
|
|
17
|
+
* Show or hide tooltip. If undefined, tooltip will be on hovering children.
|
|
18
|
+
*/
|
|
19
|
+
isOpen?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Integer to indicate the offset from the top of the menu
|
|
22
|
+
* @default 0
|
|
23
|
+
*/
|
|
24
|
+
offsetTop?: number;
|
|
25
|
+
/**
|
|
26
|
+
* Integer to indicate the offset from the left of the menu
|
|
27
|
+
* @default 0
|
|
28
|
+
*/
|
|
29
|
+
offsetLeft?: number;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Displays a tooltip with a ReactNode on top of a child component.
|
|
33
|
+
*/
|
|
34
|
+
declare const TooltipMenu: ({ children, placement, menuContent, isOpen, offsetTop, offsetLeft }: TooltipMenuProps) => JSX.Element;
|
|
35
|
+
export default TooltipMenu;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { default as Tooltip, TooltipProps } from './Tooltip';
|
|
2
|
+
export { default as TooltipMenu, TooltipMenuProps } from './TooltipMenu';
|
|
3
|
+
export { default as TextEllipsisTooltip, TextEllipsisTooltipProps } from './TextEllipsisTooltip';
|
|
4
|
+
export { default as TextEllipsis, TextEllipsisProps } from './TextEllipsis';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Slide, SlideProps } from './Slide';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export type TextMarkerProps = {
|
|
3
|
+
/**
|
|
4
|
+
* The background color to be used as marker color
|
|
5
|
+
*/
|
|
6
|
+
backgroundColor?: string;
|
|
7
|
+
/**
|
|
8
|
+
* The text pattern to be search in children. This is the marked text.
|
|
9
|
+
*/
|
|
10
|
+
searchText: string;
|
|
11
|
+
/**
|
|
12
|
+
* The complete text to show.
|
|
13
|
+
*/
|
|
14
|
+
children: string;
|
|
15
|
+
/**
|
|
16
|
+
* Wheather the pattern is case sensitive or not.
|
|
17
|
+
*/
|
|
18
|
+
isCaseSensitive?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* The mode to search within the children.
|
|
21
|
+
*/
|
|
22
|
+
mode?: 'startsWith' | 'contains' | 'endsWith';
|
|
23
|
+
/**
|
|
24
|
+
* The separator to split the searchText in multiple tokens.
|
|
25
|
+
*/
|
|
26
|
+
multiSearchCharSeparator?: string;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Change a plain text by a set of marked and not-marked tokens, according to a searchText pattern.
|
|
30
|
+
*/
|
|
31
|
+
declare const TextMarker: ({ backgroundColor, searchText, isCaseSensitive, mode, multiSearchCharSeparator, children }: TextMarkerProps) => JSX.Element;
|
|
32
|
+
export default TextMarker;
|