@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,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export type DatePickerStaticProps = {
|
|
3
|
+
value?: Date | null;
|
|
4
|
+
onSelect: (date: Date | null) => void;
|
|
5
|
+
minDate?: Date | null;
|
|
6
|
+
maxDate?: Date | null;
|
|
7
|
+
};
|
|
8
|
+
declare const DatePickerStatic: ({ value, onSelect, minDate, maxDate }: DatePickerStaticProps) => JSX.Element;
|
|
9
|
+
export default DatePickerStatic;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export type DaysOfWeek = 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday' | 'sunday';
|
|
3
|
+
export type DaysOfWeekPickerProps = {
|
|
4
|
+
/**
|
|
5
|
+
* Value, should be a day of week
|
|
6
|
+
*/
|
|
7
|
+
value: DaysOfWeek[];
|
|
8
|
+
onChange: (newValue: DaysOfWeek[]) => void;
|
|
9
|
+
};
|
|
10
|
+
declare const DaysOfWeekPicker: ({ value, onChange }: DaysOfWeekPickerProps) => JSX.Element;
|
|
11
|
+
export default DaysOfWeekPicker;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { TextFieldProps } from './TextField';
|
|
3
|
+
export type DebouncedTextFieldProps = TextFieldProps & {
|
|
4
|
+
/**
|
|
5
|
+
* The time in ms that the debounce takes to trigger.
|
|
6
|
+
*/
|
|
7
|
+
debounce?: number;
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* DebouncedTextField is a component that wraps up TextField with a debounce time.
|
|
11
|
+
*/
|
|
12
|
+
declare const DebouncedTextField: React.ForwardRefExoticComponent<TextFieldProps & {
|
|
13
|
+
/**
|
|
14
|
+
* The time in ms that the debounce takes to trigger.
|
|
15
|
+
*/
|
|
16
|
+
debounce?: number | undefined;
|
|
17
|
+
} & React.RefAttributes<HTMLInputElement>>;
|
|
18
|
+
export default DebouncedTextField;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { SxProps } from '@mui/material';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
export type InputHelperTextProps = React.PropsWithChildren<{
|
|
4
|
+
/**
|
|
5
|
+
* The severity of this text
|
|
6
|
+
*/
|
|
7
|
+
severity?: 'info' | 'error';
|
|
8
|
+
/**
|
|
9
|
+
* Styles to custom main Box component
|
|
10
|
+
*/
|
|
11
|
+
sx?: SxProps;
|
|
12
|
+
}>;
|
|
13
|
+
/**
|
|
14
|
+
* A helper text to be shown along with form fields, like Select or TextFields, usually
|
|
15
|
+
* below the form field.
|
|
16
|
+
*/
|
|
17
|
+
declare const InputHelperText: React.ForwardRefExoticComponent<{
|
|
18
|
+
/**
|
|
19
|
+
* The severity of this text
|
|
20
|
+
*/
|
|
21
|
+
severity?: "error" | "info" | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* Styles to custom main Box component
|
|
24
|
+
*/
|
|
25
|
+
sx?: SxProps | undefined;
|
|
26
|
+
} & {
|
|
27
|
+
children?: React.ReactNode;
|
|
28
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
29
|
+
export default InputHelperText;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SxProps } from '@mui/material';
|
|
3
|
+
export type InputLabelProps = React.PropsWithChildren<{
|
|
4
|
+
/**
|
|
5
|
+
* The `for` native attribute. Set here the `id` of the related
|
|
6
|
+
* form field associated to this label.
|
|
7
|
+
*/
|
|
8
|
+
htmlFor?: string;
|
|
9
|
+
/**
|
|
10
|
+
* Styles to custom <label> component
|
|
11
|
+
*/
|
|
12
|
+
sx?: SxProps;
|
|
13
|
+
/**
|
|
14
|
+
* The severity of this label
|
|
15
|
+
*/
|
|
16
|
+
severity?: 'info' | 'error';
|
|
17
|
+
/**
|
|
18
|
+
* Show an info icon with the text as tooltip
|
|
19
|
+
*/
|
|
20
|
+
infoText?: string;
|
|
21
|
+
}>;
|
|
22
|
+
/**
|
|
23
|
+
* A label text to be shown along with form fields, like Select or TextFields, usually
|
|
24
|
+
* above the form field.
|
|
25
|
+
*/
|
|
26
|
+
declare const InputLabel: React.ForwardRefExoticComponent<{
|
|
27
|
+
/**
|
|
28
|
+
* The `for` native attribute. Set here the `id` of the related
|
|
29
|
+
* form field associated to this label.
|
|
30
|
+
*/
|
|
31
|
+
htmlFor?: string | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* Styles to custom <label> component
|
|
34
|
+
*/
|
|
35
|
+
sx?: SxProps | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* The severity of this label
|
|
38
|
+
*/
|
|
39
|
+
severity?: "error" | "info" | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* Show an info icon with the text as tooltip
|
|
42
|
+
*/
|
|
43
|
+
infoText?: string | undefined;
|
|
44
|
+
} & {
|
|
45
|
+
children?: React.ReactNode;
|
|
46
|
+
} & React.RefAttributes<HTMLLabelElement>>;
|
|
47
|
+
export default InputLabel;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { SelectPopoverProps } from './SelectPopover';
|
|
3
|
+
export type ItemSelectorItem = {
|
|
4
|
+
id: string;
|
|
5
|
+
};
|
|
6
|
+
export type ItemSelectorProps<T extends ItemSelectorItem> = {
|
|
7
|
+
items: T[];
|
|
8
|
+
selectedItems: T[];
|
|
9
|
+
variant?: 'circular' | 'rounded' | 'transparent';
|
|
10
|
+
placeholder?: string;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
helperText?: string;
|
|
13
|
+
isError?: boolean;
|
|
14
|
+
limitItemChips?: number;
|
|
15
|
+
itemChipWidth?: number;
|
|
16
|
+
renderChipLabel?: (item: T) => string;
|
|
17
|
+
renderItem?: (item: T) => {
|
|
18
|
+
title: string;
|
|
19
|
+
subtitle1: string;
|
|
20
|
+
subtitle2: string;
|
|
21
|
+
};
|
|
22
|
+
onChange: (value: T[]) => void;
|
|
23
|
+
onClose?: () => void;
|
|
24
|
+
onLoadMore?: (searchText: string) => void;
|
|
25
|
+
} & Pick<SelectPopoverProps, 'applyButtonText' | 'emptyListPlaceholder' | 'hasMore' | 'isLoading' | 'isLoadingSubtitle2' | 'maxSelectedItems' | 'onSearch' | 'requiredSelectedItemsToApply' | 'disableApplyWithoutChanges' | 'popoverWidth'>;
|
|
26
|
+
declare const ItemSelector: <T extends ItemSelectorItem>({ items, selectedItems, maxSelectedItems, variant, placeholder, disabled, helperText, isError, limitItemChips, itemChipWidth, isLoading, isLoadingSubtitle2, hasMore, applyButtonText, emptyListPlaceholder, requiredSelectedItemsToApply, disableApplyWithoutChanges, popoverWidth, renderChipLabel, renderItem, onChange, onLoadMore, onSearch, onClose }: ItemSelectorProps<T>) => JSX.Element;
|
|
27
|
+
export default ItemSelector;
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { TextFieldProps } from './TextField';
|
|
3
|
+
export type NumberFieldProps = Omit<TextFieldProps, 'value' | 'onChange' | 'multiline' | 'onScroll' | 'type' | 'defaultValue'> & {
|
|
4
|
+
/**
|
|
5
|
+
* The numeric value of this input.
|
|
6
|
+
*/
|
|
7
|
+
value?: number | null;
|
|
8
|
+
/**
|
|
9
|
+
* The numerical set to which the field belongs.
|
|
10
|
+
* * @default integer
|
|
11
|
+
*/
|
|
12
|
+
type?: 'integer' | 'decimal';
|
|
13
|
+
/**
|
|
14
|
+
* Called when value is changed internally (both with user typing or
|
|
15
|
+
* by using arrowUp/arrowDown keyboard keys)
|
|
16
|
+
*/
|
|
17
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>, value: number | null) => void;
|
|
18
|
+
/**
|
|
19
|
+
* number of decimal places to which the number is rounded (only for the "decimal" type)
|
|
20
|
+
* @default 0
|
|
21
|
+
*/
|
|
22
|
+
fractionDigits?: number;
|
|
23
|
+
/**
|
|
24
|
+
* Maximum value allowed
|
|
25
|
+
*/
|
|
26
|
+
maxValue?: number;
|
|
27
|
+
/**
|
|
28
|
+
* Minimum value allowed
|
|
29
|
+
*/
|
|
30
|
+
minValue?: number;
|
|
31
|
+
/**
|
|
32
|
+
* Number to be added or removed to the value on every arrowUp/arrowDown when input has focus
|
|
33
|
+
* @default 1
|
|
34
|
+
*/
|
|
35
|
+
step?: number;
|
|
36
|
+
/**
|
|
37
|
+
* If true, the stepper buttons will be shown
|
|
38
|
+
* @default false
|
|
39
|
+
*/
|
|
40
|
+
withStepperButtons?: boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Tooltip for the increase stepper button when it is disabled
|
|
43
|
+
*/
|
|
44
|
+
stepUpDisabledTooltip?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Tooltip for the decrease stepper button when it is disabled
|
|
47
|
+
*/
|
|
48
|
+
stepDownDisabledTooltip?: string;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* NumberField is a component that renders an input field with type="text", but handles the value
|
|
52
|
+
* to allow only numeric values.
|
|
53
|
+
* It comes with some optional features like an InputLabel, an InputHelperText, a leading Icon
|
|
54
|
+
* and an IconButton to clear the current value of input.
|
|
55
|
+
*
|
|
56
|
+
* The exposed `ref` property is the refference to the native <input> element,
|
|
57
|
+
* typed as React.Ref<HTMLInputElement>
|
|
58
|
+
*/
|
|
59
|
+
declare const NumberField: React.ForwardRefExoticComponent<Omit<TextFieldProps, "defaultValue" | "onChange" | "onScroll" | "type" | "value" | "multiline"> & {
|
|
60
|
+
/**
|
|
61
|
+
* The numeric value of this input.
|
|
62
|
+
*/
|
|
63
|
+
value?: number | null | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* The numerical set to which the field belongs.
|
|
66
|
+
* * @default integer
|
|
67
|
+
*/
|
|
68
|
+
type?: "decimal" | "integer" | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* Called when value is changed internally (both with user typing or
|
|
71
|
+
* by using arrowUp/arrowDown keyboard keys)
|
|
72
|
+
*/
|
|
73
|
+
onChange?: ((event: React.ChangeEvent<HTMLInputElement>, value: number | null) => void) | undefined;
|
|
74
|
+
/**
|
|
75
|
+
* number of decimal places to which the number is rounded (only for the "decimal" type)
|
|
76
|
+
* @default 0
|
|
77
|
+
*/
|
|
78
|
+
fractionDigits?: number | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* Maximum value allowed
|
|
81
|
+
*/
|
|
82
|
+
maxValue?: number | undefined;
|
|
83
|
+
/**
|
|
84
|
+
* Minimum value allowed
|
|
85
|
+
*/
|
|
86
|
+
minValue?: number | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* Number to be added or removed to the value on every arrowUp/arrowDown when input has focus
|
|
89
|
+
* @default 1
|
|
90
|
+
*/
|
|
91
|
+
step?: number | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* If true, the stepper buttons will be shown
|
|
94
|
+
* @default false
|
|
95
|
+
*/
|
|
96
|
+
withStepperButtons?: boolean | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* Tooltip for the increase stepper button when it is disabled
|
|
99
|
+
*/
|
|
100
|
+
stepUpDisabledTooltip?: string | undefined;
|
|
101
|
+
/**
|
|
102
|
+
* Tooltip for the decrease stepper button when it is disabled
|
|
103
|
+
*/
|
|
104
|
+
stepDownDisabledTooltip?: string | undefined;
|
|
105
|
+
} & React.RefAttributes<HTMLInputElement>>;
|
|
106
|
+
export default NumberField;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export type PageSelectorProps = {
|
|
3
|
+
/**
|
|
4
|
+
* The current page number.
|
|
5
|
+
*/
|
|
6
|
+
currentPage: number;
|
|
7
|
+
/**
|
|
8
|
+
* The number of items per page.
|
|
9
|
+
*/
|
|
10
|
+
pageSize: number;
|
|
11
|
+
/**
|
|
12
|
+
* The total number of items
|
|
13
|
+
* that are being paginated.
|
|
14
|
+
*/
|
|
15
|
+
totalItems: number;
|
|
16
|
+
/**
|
|
17
|
+
* The text to display next to the page selector.
|
|
18
|
+
* It will be rendered as HTML, so make sure to sanitize it.
|
|
19
|
+
*/
|
|
20
|
+
text?: string;
|
|
21
|
+
/**
|
|
22
|
+
* The function to call when the page is changed by the user.
|
|
23
|
+
*/
|
|
24
|
+
onPageChange: (page: number) => void;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* PageSelector component is used to navigate between pages of a list.
|
|
28
|
+
*/
|
|
29
|
+
declare const PageSelector: React.FC<PageSelectorProps>;
|
|
30
|
+
export default PageSelector;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { TextFieldProps } from './TextField';
|
|
3
|
+
import { SelectProps } from './Select';
|
|
4
|
+
export type PhoneFieldProps = Omit<TextFieldProps, 'multiline' | 'onChange' | 'rows' | 'onScroll' | 'type' | 'defaultValue'> & {
|
|
5
|
+
/**
|
|
6
|
+
* Called when the value changes
|
|
7
|
+
*/
|
|
8
|
+
onChange?: (value: string) => void;
|
|
9
|
+
/**
|
|
10
|
+
* Country code to be used by default if this field is firstly rendered with an empty value.
|
|
11
|
+
* It must be a code of 1, 2, 3 or 4 digits available in PhoneUtils.ts file.
|
|
12
|
+
*/
|
|
13
|
+
defaultCountryCode?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Country code select props
|
|
16
|
+
*/
|
|
17
|
+
codeSelectProps?: SelectProps<string, false>['sx'];
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* PhoneField is a component that renders an input field with type="text" with a start adornment
|
|
21
|
+
* to select the country code from a predefined list of country codes.
|
|
22
|
+
* It comes with some optional features like an InputLabel, an InputHelperText, a leading Icon
|
|
23
|
+
* and an IconButton to clear the current value of input.
|
|
24
|
+
*
|
|
25
|
+
* The exposed `ref` property is the refference to the native <input> element,
|
|
26
|
+
* typed as React.Ref<HTMLInputElement>
|
|
27
|
+
*/
|
|
28
|
+
declare const PhoneField: React.ForwardRefExoticComponent<Omit<TextFieldProps, "defaultValue" | "onChange" | "onScroll" | "type" | "rows" | "multiline"> & {
|
|
29
|
+
/**
|
|
30
|
+
* Called when the value changes
|
|
31
|
+
*/
|
|
32
|
+
onChange?: ((value: string) => void) | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* Country code to be used by default if this field is firstly rendered with an empty value.
|
|
35
|
+
* It must be a code of 1, 2, 3 or 4 digits available in PhoneUtils.ts file.
|
|
36
|
+
*/
|
|
37
|
+
defaultCountryCode?: string | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* Country code select props
|
|
40
|
+
*/
|
|
41
|
+
codeSelectProps?: SelectProps<string, false>['sx'];
|
|
42
|
+
} & React.RefAttributes<HTMLInputElement>>;
|
|
43
|
+
export default PhoneField;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { RadioProps as MuiRadioProps } from '@mui/material/Radio';
|
|
3
|
+
import { SxProps } from '@mui/material';
|
|
4
|
+
export type RadioProps<T extends string = string> = {
|
|
5
|
+
/**
|
|
6
|
+
* Wheather the radio is checked or not.
|
|
7
|
+
*/
|
|
8
|
+
checked: boolean;
|
|
9
|
+
/**
|
|
10
|
+
* Value associated to this radio button.
|
|
11
|
+
*/
|
|
12
|
+
value?: T;
|
|
13
|
+
/**
|
|
14
|
+
* Wheather the radio is disabled or not.
|
|
15
|
+
*/
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Optional text label to show before or after the radio.
|
|
19
|
+
*/
|
|
20
|
+
label?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Where to put the `label` text, if any.
|
|
23
|
+
*/
|
|
24
|
+
labelPlacement?: 'start' | 'end';
|
|
25
|
+
/**
|
|
26
|
+
* Callback fired when the state is changed.
|
|
27
|
+
*/
|
|
28
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>, value: T) => void;
|
|
29
|
+
/**
|
|
30
|
+
* Whether the Radio is in error state.
|
|
31
|
+
*/
|
|
32
|
+
isError?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* The size of the radio
|
|
35
|
+
*/
|
|
36
|
+
size?: 'S' | 'M';
|
|
37
|
+
/**
|
|
38
|
+
* Settled directly in DOM element, for testing easy location purposes.
|
|
39
|
+
*/
|
|
40
|
+
'data-testid'?: string;
|
|
41
|
+
className?: string;
|
|
42
|
+
sx?: SxProps;
|
|
43
|
+
tabIndex?: MuiRadioProps['tabIndex'];
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* Radios can be used to select one and only one option from a set of options, each one being on a different Radio.
|
|
47
|
+
*/
|
|
48
|
+
declare const Radio: React.ForwardRefExoticComponent<RadioProps<string> & React.RefAttributes<HTMLButtonElement>>;
|
|
49
|
+
export default Radio;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SelectProps as MuiSelectProps } from '@mui/material/Select';
|
|
3
|
+
import { ListItemButtonProps } from '../list/ListItemButton';
|
|
4
|
+
type Colors = {
|
|
5
|
+
backgroundColor?: string;
|
|
6
|
+
color?: string;
|
|
7
|
+
selectedColor?: string;
|
|
8
|
+
hoverColor?: string;
|
|
9
|
+
borderColor?: string;
|
|
10
|
+
};
|
|
11
|
+
type SelectValue<T extends string | number | undefined, Multiple extends boolean | undefined> = Multiple extends undefined | false ? T : T[];
|
|
12
|
+
/**
|
|
13
|
+
* NOTE: there is a limitation to perfectly model this SelectProps. Currently, when using the Select component
|
|
14
|
+
* we will have to set explicit multiple={false} to get the right typings and make TypeScript happy. This is probably
|
|
15
|
+
* a bug in TypeScript compiler. Take a look at this article:
|
|
16
|
+
* https://blog.andrewbran.ch/expressive-react-component-apis-with-discriminated-unions/#fn-1
|
|
17
|
+
* Also, the related bug looks to be this:
|
|
18
|
+
* https://github.com/Microsoft/TypeScript/issues/29340
|
|
19
|
+
*/
|
|
20
|
+
export type SelectProps<T extends string | number | undefined, Multiple extends boolean | undefined, Value = SelectValue<T, Multiple>> = Pick<MuiSelectProps<T>, 'id' | 'children' | 'sx' | 'disabled' | 'onClose'> & {
|
|
21
|
+
variant?: 'rounded' | 'circular' | 'transparent';
|
|
22
|
+
/**
|
|
23
|
+
* The placeholder to put in this Select when no value is selected.
|
|
24
|
+
*/
|
|
25
|
+
placeholder?: string;
|
|
26
|
+
/**
|
|
27
|
+
* All available options to be listed as selectable when Select is open.
|
|
28
|
+
*/
|
|
29
|
+
options?: ({
|
|
30
|
+
value: T;
|
|
31
|
+
label?: string;
|
|
32
|
+
} & Pick<ListItemButtonProps, 'disabled' | 'color' | 'endIconId' | 'startIconId' | 'startAdornment' | 'endAdornment' | 'typographyVariant' | 'sx'>)[];
|
|
33
|
+
/**
|
|
34
|
+
* Whether allow user to select multiple options or not
|
|
35
|
+
*/
|
|
36
|
+
multiple?: Multiple;
|
|
37
|
+
/**
|
|
38
|
+
* The current value of Select
|
|
39
|
+
*/
|
|
40
|
+
value: Value;
|
|
41
|
+
/**
|
|
42
|
+
* Whether to use or not virtualized list to render component. It is only compatible with single selection value, not multiple.
|
|
43
|
+
*/
|
|
44
|
+
virtualized?: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* Configuration of options list when using virtualization such as pixels width or number of overscan elements. Default value is {width: 250, overscanCount: 3, itemSize: 44}.
|
|
47
|
+
*/
|
|
48
|
+
virtualizedProps?: {
|
|
49
|
+
width?: number;
|
|
50
|
+
overscanCount?: number;
|
|
51
|
+
itemSize?: number;
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* Called when selected data is changed by the user
|
|
55
|
+
*/
|
|
56
|
+
onChange?: (data: Value) => void;
|
|
57
|
+
/**
|
|
58
|
+
* Render of the selected value
|
|
59
|
+
*/
|
|
60
|
+
renderValue?: (value: T | T[], options?: ({
|
|
61
|
+
value: T;
|
|
62
|
+
label?: string;
|
|
63
|
+
} & Pick<ListItemButtonProps, 'disabled' | 'color' | 'endIconId' | 'startIconId' | 'startAdornment' | 'endAdornment' | 'typographyVariant' | 'sx'>)[]) => React.ReactNode;
|
|
64
|
+
/**
|
|
65
|
+
* The z-index of the menu when open
|
|
66
|
+
*/
|
|
67
|
+
menuZIndex?: number;
|
|
68
|
+
/**
|
|
69
|
+
* The color of the menu
|
|
70
|
+
*/
|
|
71
|
+
menuColors?: Colors;
|
|
72
|
+
/**
|
|
73
|
+
* The max height of the menu when open
|
|
74
|
+
*/
|
|
75
|
+
menuMaxHeight?: string;
|
|
76
|
+
/**
|
|
77
|
+
* Ref to inner HTMLSelectElement
|
|
78
|
+
*/
|
|
79
|
+
ref?: React.Ref<HTMLSelectElement>;
|
|
80
|
+
size?: 'S' | 'M';
|
|
81
|
+
className?: string;
|
|
82
|
+
paperClassName?: string;
|
|
83
|
+
dataTest?: string;
|
|
84
|
+
open?: boolean;
|
|
85
|
+
onOpen?: () => void;
|
|
86
|
+
};
|
|
87
|
+
export declare const BootstrapInput: import("@emotion/styled").StyledComponent<import("@mui/material/InputBase").InputBaseProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
|
|
88
|
+
declare const _default: <T extends string | number | undefined = string | number | undefined, Multiple extends boolean | undefined = undefined, Value = SelectValue<T, Multiple>>({ variant, placeholder, children, onChange, onClose, options, multiple, value, virtualized, virtualizedProps, className, paperClassName, size, sx, renderValue, menuZIndex, menuColors, menuMaxHeight, dataTest, open, onOpen, ...rest }: SelectProps<T, Multiple, Value>, ref: React.Ref<HTMLSelectElement>) => JSX.Element;
|
|
89
|
+
export default _default;
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { PopoverProps } from '../popover/Popover';
|
|
3
|
+
import { IconId } from '../icon';
|
|
4
|
+
export type SelectableItem = {
|
|
5
|
+
id: string;
|
|
6
|
+
name: string;
|
|
7
|
+
subtitle1?: string;
|
|
8
|
+
subtitle2?: string;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
selected: boolean;
|
|
11
|
+
color?: string;
|
|
12
|
+
iconId?: IconId;
|
|
13
|
+
chipText?: string;
|
|
14
|
+
tooltip?: string;
|
|
15
|
+
isLoadingSubtitle2?: boolean;
|
|
16
|
+
};
|
|
17
|
+
export type SelectPopoverProps = Pick<PopoverProps, 'anchorEl'> & {
|
|
18
|
+
/**
|
|
19
|
+
* Called every time the popover apply changes.
|
|
20
|
+
*/
|
|
21
|
+
onApply: (selectedItemsIds: string[]) => void;
|
|
22
|
+
/**
|
|
23
|
+
* Called every time the popover cancel changes.
|
|
24
|
+
*/
|
|
25
|
+
onCancel: () => void;
|
|
26
|
+
/**
|
|
27
|
+
* Called every time the popover search items.
|
|
28
|
+
*/
|
|
29
|
+
onSearch: (searchTerm: string) => void;
|
|
30
|
+
/**
|
|
31
|
+
* Called every time the popover load more items.
|
|
32
|
+
*/
|
|
33
|
+
onLoadMore: () => void;
|
|
34
|
+
/**
|
|
35
|
+
* The time in ms that the debounce takes to trigger.
|
|
36
|
+
*/
|
|
37
|
+
debounce?: number;
|
|
38
|
+
/**
|
|
39
|
+
* If selector can have multiple selections at same time.
|
|
40
|
+
*/
|
|
41
|
+
multiple?: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* If infinite scroll have to load more items.
|
|
44
|
+
*/
|
|
45
|
+
hasMore?: boolean;
|
|
46
|
+
/**
|
|
47
|
+
* Are items loading.
|
|
48
|
+
*/
|
|
49
|
+
isLoading?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Are items subtitle2 loading.
|
|
52
|
+
*/
|
|
53
|
+
isLoadingSubtitle2?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* The selectable items.
|
|
56
|
+
*/
|
|
57
|
+
items: SelectableItem[];
|
|
58
|
+
/**
|
|
59
|
+
* Elements colors depending on state.
|
|
60
|
+
*/
|
|
61
|
+
itemsColorStyles?: {
|
|
62
|
+
selectedColor: string;
|
|
63
|
+
disabledColor: string;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* The selected items.
|
|
67
|
+
*/
|
|
68
|
+
selectedItemsIds: string[];
|
|
69
|
+
popoverWidth?: React.CSSProperties['width'];
|
|
70
|
+
/** If `true`, the modal will not restore focus to previously focused element once modal is hidden or unmounted.*/
|
|
71
|
+
disableRestoreFocus?: boolean;
|
|
72
|
+
/**
|
|
73
|
+
* Only enable the Apply button when selected at least this quantity of items.
|
|
74
|
+
*/
|
|
75
|
+
requiredSelectedItemsToApply?: number;
|
|
76
|
+
/**
|
|
77
|
+
* Text to show as placeholder of Search input.
|
|
78
|
+
*/
|
|
79
|
+
searchPlaceholder?: string;
|
|
80
|
+
/**
|
|
81
|
+
* Text to show in the Apply button.
|
|
82
|
+
*/
|
|
83
|
+
applyButtonText?: string;
|
|
84
|
+
/**
|
|
85
|
+
* Maximum number of items that can be selected.
|
|
86
|
+
*/
|
|
87
|
+
maxSelectedItems?: number;
|
|
88
|
+
/**
|
|
89
|
+
* If `true`, the current selection will be kept when searching.
|
|
90
|
+
* @default true
|
|
91
|
+
*/
|
|
92
|
+
keepCurrentSelectionOnSearch?: boolean;
|
|
93
|
+
/**
|
|
94
|
+
* Text to show when the list is empty.
|
|
95
|
+
*/
|
|
96
|
+
emptyListPlaceholder?: string;
|
|
97
|
+
/**
|
|
98
|
+
* If `true`, the Apply button will be disabled when there are no changes
|
|
99
|
+
* @default false
|
|
100
|
+
*/
|
|
101
|
+
disableApplyWithoutChanges?: boolean;
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* SelectPopover is a components that renders a complex selector with DataDisplayItems and is multiselectable, infinite scroll and search input.
|
|
105
|
+
*/
|
|
106
|
+
declare const SelectPopover: ({ onApply, onCancel, onLoadMore, onSearch, debounce, multiple, hasMore, isLoading, isLoadingSubtitle2, requiredSelectedItemsToApply, searchPlaceholder, items, anchorEl, itemsColorStyles, selectedItemsIds, popoverWidth, disableRestoreFocus, applyButtonText, maxSelectedItems, keepCurrentSelectionOnSearch, emptyListPlaceholder, disableApplyWithoutChanges }: SelectPopoverProps) => JSX.Element;
|
|
107
|
+
export default SelectPopover;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconId } from '../icon';
|
|
3
|
+
export type SelectPopoverItemProps = {
|
|
4
|
+
id: string;
|
|
5
|
+
name: string;
|
|
6
|
+
subtitle1?: string;
|
|
7
|
+
subtitle2?: string;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
iconId?: IconId;
|
|
10
|
+
chipText?: string;
|
|
11
|
+
color?: string;
|
|
12
|
+
tooltip?: string;
|
|
13
|
+
isLoadingSubtitle2?: boolean;
|
|
14
|
+
onClick?: () => void;
|
|
15
|
+
};
|
|
16
|
+
declare const SelectPopoverItem: ({ id, name, subtitle1, subtitle2, disabled, iconId, chipText, color, tooltip, isLoadingSubtitle2, onClick }: SelectPopoverItemProps) => JSX.Element;
|
|
17
|
+
export default SelectPopoverItem;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SwitchProps as MuiSwitchProps } from '@mui/material';
|
|
3
|
+
export type SwitchProps = {
|
|
4
|
+
/**
|
|
5
|
+
* If `true`, the component is checked.
|
|
6
|
+
*/
|
|
7
|
+
checked: MuiSwitchProps['checked'];
|
|
8
|
+
/**
|
|
9
|
+
* If `true`, the component is disabled.
|
|
10
|
+
*/
|
|
11
|
+
disabled?: MuiSwitchProps['disabled'];
|
|
12
|
+
/**
|
|
13
|
+
* Callback fired when the state is changed.
|
|
14
|
+
*
|
|
15
|
+
* @param {React.ChangeEvent<HTMLInputElement>} event The event source of the callback.
|
|
16
|
+
* You can pull out the new value by accessing `event.target.value` (string).
|
|
17
|
+
* You can pull out the new checked state by accessing `event.target.checked` (boolean).
|
|
18
|
+
*/
|
|
19
|
+
onChange?: MuiSwitchProps['onChange'];
|
|
20
|
+
};
|
|
21
|
+
declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;
|
|
22
|
+
export default Switch;
|