@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.
Files changed (881) hide show
  1. package/dist/components/alert/Alert.d.ts +33 -0
  2. package/dist/components/alert/Alert.theme.d.ts +2 -0
  3. package/dist/components/alert/AlertTitle.theme.d.ts +2 -0
  4. package/dist/components/alert/index.d.ts +1 -0
  5. package/dist/components/avatar/Avatar.d.ts +91 -0
  6. package/dist/components/avatar/AvatarCard.d.ts +9 -0
  7. package/dist/components/avatar/AvatarMultiple.d.ts +35 -0
  8. package/dist/components/avatar/index.d.ts +3 -0
  9. package/dist/components/button/BadgeToggleButton.d.ts +42 -0
  10. package/dist/components/button/Button.d.ts +175 -0
  11. package/dist/components/button/Button.theme.d.ts +2 -0
  12. package/dist/components/button/ButtonGroup.d.ts +26 -0
  13. package/dist/components/button/ButtonWithActions.d.ts +68 -0
  14. package/dist/components/button/IconButton.d.ts +78 -0
  15. package/dist/components/button/IconButton.theme.d.ts +2 -0
  16. package/dist/components/button/IconToggleButton.d.ts +35 -0
  17. package/dist/components/button/MenuButton.d.ts +56 -0
  18. package/dist/components/button/MenuIconButton.d.ts +77 -0
  19. package/dist/components/button/MenuItem.theme.d.ts +2 -0
  20. package/dist/components/button/ToggleButton.d.ts +28 -0
  21. package/dist/components/button/ToggleButton.theme.d.ts +2 -0
  22. package/dist/components/button/ToggleButtonGroup.d.ts +40 -0
  23. package/dist/components/button/UploadButton.d.ts +25 -0
  24. package/dist/components/button/index.d.ts +11 -0
  25. package/dist/components/card/Card.d.ts +40 -0
  26. package/dist/components/card/CardActions.d.ts +17 -0
  27. package/dist/components/card/CardChips.d.ts +17 -0
  28. package/dist/components/card/CardDescription.d.ts +13 -0
  29. package/dist/components/card/CardImage.d.ts +22 -0
  30. package/dist/components/card/CardStatus.d.ts +23 -0
  31. package/dist/components/card/CardTable.d.ts +22 -0
  32. package/dist/components/card/CardTitle.d.ts +22 -0
  33. package/dist/components/card/CardTitleWithIcon.d.ts +29 -0
  34. package/dist/components/card/EnhancedCard.d.ts +97 -0
  35. package/dist/components/card/EnhancedCardImage.d.ts +43 -0
  36. package/dist/components/card/EnhancedCardRow.d.ts +11 -0
  37. package/dist/components/card/EnhancedCardSubtitle.d.ts +26 -0
  38. package/dist/components/card/EnhancedCardTitle.d.ts +38 -0
  39. package/dist/components/card/index.d.ts +14 -0
  40. package/dist/components/chart/BarChart.d.ts +84 -0
  41. package/dist/components/chart/CategorizedChartProps.d.ts +35 -0
  42. package/dist/components/chart/ChartUtils.d.ts +8 -0
  43. package/dist/components/chart/DonutChart.d.ts +79 -0
  44. package/dist/components/chart/DonutChartLegendItem.d.ts +9 -0
  45. package/dist/components/chart/EchartsConfig.d.ts +1 -0
  46. package/dist/components/chart/FunnelChart.d.ts +84 -0
  47. package/dist/components/chart/IncrementLabel.d.ts +18 -0
  48. package/dist/components/chart/LineChart.d.ts +98 -0
  49. package/dist/components/chart/MicroPieChart.d.ts +18 -0
  50. package/dist/components/chart/RankingChart.d.ts +33 -0
  51. package/dist/components/chart/RankingChartItem.d.ts +7 -0
  52. package/dist/components/chart/RankingChartTooltip.d.ts +15 -0
  53. package/dist/components/chart/WeekChart.d.ts +41 -0
  54. package/dist/components/chart/WeekChartItem.d.ts +5 -0
  55. package/dist/components/chart/WeekChartTooltip.d.ts +19 -0
  56. package/dist/components/chart/index.d.ts +8 -0
  57. package/dist/components/chat/Chat.d.ts +13 -0
  58. package/dist/components/chat/ChatMessage.d.ts +35 -0
  59. package/dist/components/chat/index.d.ts +2 -0
  60. package/dist/components/chip/Chip.d.ts +1002 -0
  61. package/dist/components/chip/ChipList.d.ts +14 -0
  62. package/dist/components/chip/MenuChip.d.ts +56 -0
  63. package/dist/components/chip/index.d.ts +3 -0
  64. package/dist/components/dialog/ConfirmationDialog.d.ts +54 -0
  65. package/dist/components/dialog/Dialog.d.ts +16 -0
  66. package/dist/components/dialog/index.d.ts +2 -0
  67. package/dist/components/divider/Divider.d.ts +18 -0
  68. package/dist/components/divider/index.d.ts +1 -0
  69. package/dist/components/drawer/Drawer.d.ts +9 -0
  70. package/dist/components/drawer/InputDrawer.d.ts +41 -0
  71. package/dist/components/drawer/index.d.ts +2 -0
  72. package/dist/components/formatter/CompactNumberFormatter.d.ts +13 -0
  73. package/dist/components/formatter/CurrencyFormatter.d.ts +21 -0
  74. package/dist/components/formatter/DateFormatter.d.ts +18 -0
  75. package/dist/components/formatter/NumberFormatter.d.ts +17 -0
  76. package/dist/components/formatter/PercentageFormatter.d.ts +17 -0
  77. package/dist/components/formatter/index.d.ts +5 -0
  78. package/dist/components/header/Header.d.ts +33 -0
  79. package/dist/components/header/HeaderSubtitle.d.ts +13 -0
  80. package/dist/components/header/HeaderTitle.d.ts +13 -0
  81. package/dist/components/header/index.d.ts +3 -0
  82. package/dist/components/icon/Icon.d.ts +47 -0
  83. package/dist/components/icon/StackedIcons.d.ts +13 -0
  84. package/dist/components/icon/SvgIcon.theme.d.ts +2 -0
  85. package/dist/components/icon/icons.d.ts +1953 -0
  86. package/dist/components/icon/index.d.ts +1 -0
  87. package/dist/components/image/ImageEditor.d.ts +12 -0
  88. package/dist/components/image/index.d.ts +1 -0
  89. package/dist/components/index.d.ts +35 -0
  90. package/dist/components/info/InfoBox.d.ts +10 -0
  91. package/dist/components/info/index.d.ts +1 -0
  92. package/dist/components/input/Autocomplete.d.ts +118 -0
  93. package/dist/components/input/CalendarDay.d.ts +17 -0
  94. package/dist/components/input/CalendarMonth.d.ts +19 -0
  95. package/dist/components/input/CalendarScrollPicker.d.ts +17 -0
  96. package/dist/components/input/CategorizedPicker.d.ts +22 -0
  97. package/dist/components/input/Checkbox.d.ts +39 -0
  98. package/dist/components/input/CodeEditor.d.ts +29 -0
  99. package/dist/components/input/CodeEditorPopup.d.ts +18 -0
  100. package/dist/components/input/ColorPicker.d.ts +62 -0
  101. package/dist/components/input/DateIntervalPicker.d.ts +84 -0
  102. package/dist/components/input/DateIntervalPickerInputs.d.ts +18 -0
  103. package/dist/components/input/DateIntervalPickerList.d.ts +35 -0
  104. package/dist/components/input/DateIntervalPickerPopover.d.ts +32 -0
  105. package/dist/components/input/DatePicker.d.ts +59 -0
  106. package/dist/components/input/DatePickerPopover.d.ts +10 -0
  107. package/dist/components/input/DatePickerStatic.d.ts +9 -0
  108. package/dist/components/input/DaysOfWeekPicker.d.ts +11 -0
  109. package/dist/components/input/DaysOfWeekRow.d.ts +3 -0
  110. package/dist/components/input/DebouncedTextField.d.ts +18 -0
  111. package/dist/components/input/InputHelperText.d.ts +29 -0
  112. package/dist/components/input/InputLabel.d.ts +47 -0
  113. package/dist/components/input/ItemSelector.d.ts +27 -0
  114. package/dist/components/input/NumberField.d.ts +106 -0
  115. package/dist/components/input/PageSelector.d.ts +30 -0
  116. package/dist/components/input/PhoneField.d.ts +43 -0
  117. package/dist/components/input/Radio.d.ts +49 -0
  118. package/dist/components/input/Select.d.ts +89 -0
  119. package/dist/components/input/SelectPopover.d.ts +107 -0
  120. package/dist/components/input/SelectPopoverItem.d.ts +17 -0
  121. package/dist/components/input/Switch.d.ts +22 -0
  122. package/dist/components/input/Switch.theme.d.ts +2 -0
  123. package/dist/components/input/TextEditor.d.ts +123 -0
  124. package/dist/components/input/TextField.d.ts +156 -0
  125. package/dist/components/input/TextFieldContainer.d.ts +95 -0
  126. package/dist/components/input/TimeField.d.ts +20 -0
  127. package/dist/components/input/TimezoneSelector.d.ts +7 -0
  128. package/dist/components/input/UploadClickableArea.d.ts +14 -0
  129. package/dist/components/input/index.d.ts +26 -0
  130. package/dist/components/layout/Box.d.ts +2 -0
  131. package/dist/components/layout/Collapse.d.ts +5 -0
  132. package/dist/components/layout/CollapsiblePanel.d.ts +48 -0
  133. package/dist/components/layout/CollapsiblePanelSwitcher.d.ts +87 -0
  134. package/dist/components/layout/Container.d.ts +5 -0
  135. package/dist/components/layout/Container.theme.d.ts +2 -0
  136. package/dist/components/layout/Grid.d.ts +8 -0
  137. package/dist/components/layout/LazyLoad.d.ts +5 -0
  138. package/dist/components/layout/PageScrollContext.d.ts +5 -0
  139. package/dist/components/layout/PageWithHeader.d.ts +13 -0
  140. package/dist/components/layout/PageWithNavbar.d.ts +13 -0
  141. package/dist/components/layout/PageWithSidePanel.d.ts +17 -0
  142. package/dist/components/layout/PageWithToolBox.d.ts +17 -0
  143. package/dist/components/layout/PageWithToolbar.d.ts +18 -0
  144. package/dist/components/layout/Paper.d.ts +13 -0
  145. package/dist/components/layout/SidePanel.d.ts +7 -0
  146. package/dist/components/layout/Stack.d.ts +2 -0
  147. package/dist/components/layout/Stepper.d.ts +23 -0
  148. package/dist/components/layout/SwipeableViews.d.ts +8 -0
  149. package/dist/components/layout/ToolBox.d.ts +12 -0
  150. package/dist/components/layout/index.d.ts +17 -0
  151. package/dist/components/list/BaseListItem.d.ts +70 -0
  152. package/dist/components/list/List.d.ts +5 -0
  153. package/dist/components/list/ListItem.d.ts +16 -0
  154. package/dist/components/list/ListItemButton.d.ts +42 -0
  155. package/dist/components/list/ListItemText.d.ts +17 -0
  156. package/dist/components/list/index.d.ts +3 -0
  157. package/dist/components/loader/Loader.d.ts +32 -0
  158. package/dist/components/loader/index.d.ts +1 -0
  159. package/dist/components/navbar/Navbar.d.ts +41 -0
  160. package/dist/components/navbar/NavbarButton.d.ts +39 -0
  161. package/dist/components/navbar/NavbarHeader.d.ts +12 -0
  162. package/dist/components/navbar/NavbarLogo.d.ts +16 -0
  163. package/dist/components/navbar/index.d.ts +4 -0
  164. package/dist/components/overlay/DonutFocusOverlay.d.ts +11 -0
  165. package/dist/components/overlay/index.d.ts +1 -0
  166. package/dist/components/pager/Pager.d.ts +31 -0
  167. package/dist/components/pager/index.d.ts +1 -0
  168. package/dist/components/popover/Popover.d.ts +26 -0
  169. package/dist/components/popover/Popover.theme.d.ts +2 -0
  170. package/dist/components/popover/PopoverActions.d.ts +21 -0
  171. package/dist/components/popover/index.d.ts +2 -0
  172. package/dist/components/progress/CircularProgress.d.ts +35 -0
  173. package/dist/components/progress/DonutProgress.d.ts +45 -0
  174. package/dist/components/progress/LinearProgress.d.ts +19 -0
  175. package/dist/components/progress/LinearProgress.theme.d.ts +2 -0
  176. package/dist/components/progress/index.d.ts +2 -0
  177. package/dist/components/scrollable/HorizontalScrollable.d.ts +18 -0
  178. package/dist/components/scrollable/index.d.ts +1 -0
  179. package/dist/components/skeleton/Skeleton.d.ts +8 -0
  180. package/dist/components/skeleton/index.d.ts +1 -0
  181. package/dist/components/snackbar/Snackbar.d.ts +52 -0
  182. package/dist/components/snackbar/SnackbarProvider.d.ts +10 -0
  183. package/dist/components/snackbar/enqueueSnackbar.d.ts +27 -0
  184. package/dist/components/snackbar/index.d.ts +3 -0
  185. package/dist/components/tab/TabButton.d.ts +30 -0
  186. package/dist/components/tab/TabContent.d.ts +7 -0
  187. package/dist/components/tab/Tabs.d.ts +52 -0
  188. package/dist/components/tab/Tabs.theme.d.ts +2 -0
  189. package/dist/components/tab/index.d.ts +3 -0
  190. package/dist/components/table/NestedTable.d.ts +29 -0
  191. package/dist/components/table/Table.d.ts +5 -0
  192. package/dist/components/table/Table.theme.d.ts +2 -0
  193. package/dist/components/table/TableBody.d.ts +4 -0
  194. package/dist/components/table/TableCell.d.ts +20 -0
  195. package/dist/components/table/TableCell.theme.d.ts +2 -0
  196. package/dist/components/table/TableCellCopy.d.ts +10 -0
  197. package/dist/components/table/TableDivider.d.ts +3 -0
  198. package/dist/components/table/TableHead.d.ts +4 -0
  199. package/dist/components/table/TableRow.d.ts +9 -0
  200. package/dist/components/table/TableSortLabel.d.ts +8 -0
  201. package/dist/components/table/index.d.ts +9 -0
  202. package/dist/components/toolbar/Toolbar.d.ts +24 -0
  203. package/dist/components/toolbar/ToolbarBreadcrumb.d.ts +15 -0
  204. package/dist/components/toolbar/ToolbarBreadcrumbButton.d.ts +11 -0
  205. package/dist/components/toolbar/ToolbarTitle.d.ts +27 -0
  206. package/dist/components/toolbar/index.d.ts +4 -0
  207. package/dist/components/tooltip/TextEllipsis.d.ts +18 -0
  208. package/dist/components/tooltip/TextEllipsisTooltip.d.ts +27 -0
  209. package/dist/components/tooltip/Tooltip.d.ts +59 -0
  210. package/dist/components/tooltip/Tooltip.theme.d.ts +2 -0
  211. package/dist/components/tooltip/TooltipMenu.d.ts +35 -0
  212. package/dist/components/tooltip/index.d.ts +4 -0
  213. package/dist/components/transition/Slide.d.ts +3 -0
  214. package/dist/components/transition/index.d.ts +1 -0
  215. package/dist/components/typography/TextMarker.d.ts +32 -0
  216. package/dist/components/typography/Typography.d.ts +39 -0
  217. package/dist/components/typography/index.d.ts +2 -0
  218. package/dist/components/widget/Widget.d.ts +7 -0
  219. package/dist/components/widget/WidgetActions.d.ts +8 -0
  220. package/dist/components/widget/WidgetLegendItem.d.ts +65 -0
  221. package/dist/components/widget/WidgetTitle.d.ts +23 -0
  222. package/dist/components/widget/index.d.ts +4 -0
  223. package/dist/components/window/MinimizableWindow.d.ts +98 -0
  224. package/dist/components/window/index.d.ts +1 -0
  225. package/dist/contexts/IntlContext.d.ts +7 -0
  226. package/dist/contexts/index.d.ts +1 -0
  227. package/dist/hooks/index.d.ts +3 -0
  228. package/dist/hooks/useDebouncedCallback.d.ts +1 -0
  229. package/dist/hooks/useFormatters.d.ts +8 -0
  230. package/dist/hooks/useResizeObserver.d.ts +7 -0
  231. package/dist/i18n/TranslationKey.d.ts +11 -0
  232. package/dist/i18n/en.d.ts +202 -0
  233. package/dist/i18n/es.d.ts +202 -0
  234. package/dist/i18n/fr.d.ts +202 -0
  235. package/dist/i18n/it.d.ts +202 -0
  236. package/dist/i18n/pt.d.ts +202 -0
  237. package/dist/i18n/translate.d.ts +4 -0
  238. package/dist/index.d.ts +6 -0
  239. package/dist/index.js +25410 -0
  240. package/dist/models/ComparisonInterval.d.ts +1 -0
  241. package/dist/models/DateInputFormat.d.ts +4 -0
  242. package/dist/models/DateInterval.d.ts +1 -0
  243. package/dist/models/SimpleDate.d.ts +8 -0
  244. package/dist/propTypes/IncrementLabel.d.ts +15 -0
  245. package/dist/propTypes/index.d.ts +1 -0
  246. package/dist/src/components/alert/Alert.d.ts +33 -0
  247. package/dist/src/components/alert/Alert.theme.d.ts +2 -0
  248. package/dist/src/components/alert/AlertTitle.theme.d.ts +2 -0
  249. package/dist/src/components/alert/index.d.ts +1 -0
  250. package/dist/src/components/avatar/Avatar.d.ts +91 -0
  251. package/dist/src/components/avatar/AvatarCard.d.ts +9 -0
  252. package/dist/src/components/avatar/AvatarMultiple.d.ts +35 -0
  253. package/dist/src/components/avatar/index.d.ts +3 -0
  254. package/dist/src/components/button/BadgeToggleButton.d.ts +42 -0
  255. package/dist/src/components/button/Button.d.ts +175 -0
  256. package/dist/src/components/button/Button.theme.d.ts +2 -0
  257. package/dist/src/components/button/ButtonGroup.d.ts +26 -0
  258. package/dist/src/components/button/ButtonWithActions.d.ts +68 -0
  259. package/dist/src/components/button/IconButton.d.ts +78 -0
  260. package/dist/src/components/button/IconButton.theme.d.ts +2 -0
  261. package/dist/src/components/button/IconToggleButton.d.ts +35 -0
  262. package/dist/src/components/button/MenuButton.d.ts +56 -0
  263. package/dist/src/components/button/MenuIconButton.d.ts +77 -0
  264. package/dist/src/components/button/MenuItem.theme.d.ts +2 -0
  265. package/dist/src/components/button/ToggleButton.d.ts +28 -0
  266. package/dist/src/components/button/ToggleButton.theme.d.ts +2 -0
  267. package/dist/src/components/button/ToggleButtonGroup.d.ts +40 -0
  268. package/dist/src/components/button/UploadButton.d.ts +25 -0
  269. package/dist/src/components/button/index.d.ts +11 -0
  270. package/dist/src/components/card/Card.d.ts +40 -0
  271. package/dist/src/components/card/CardActions.d.ts +17 -0
  272. package/dist/src/components/card/CardChips.d.ts +17 -0
  273. package/dist/src/components/card/CardDescription.d.ts +13 -0
  274. package/dist/src/components/card/CardImage.d.ts +22 -0
  275. package/dist/src/components/card/CardStatus.d.ts +23 -0
  276. package/dist/src/components/card/CardTable.d.ts +22 -0
  277. package/dist/src/components/card/CardTitle.d.ts +22 -0
  278. package/dist/src/components/card/CardTitleWithIcon.d.ts +29 -0
  279. package/dist/src/components/card/EnhancedCard.d.ts +97 -0
  280. package/dist/src/components/card/EnhancedCardImage.d.ts +43 -0
  281. package/dist/src/components/card/EnhancedCardRow.d.ts +11 -0
  282. package/dist/src/components/card/EnhancedCardSubtitle.d.ts +26 -0
  283. package/dist/src/components/card/EnhancedCardTitle.d.ts +38 -0
  284. package/dist/src/components/card/index.d.ts +14 -0
  285. package/dist/src/components/chart/BarChart.d.ts +84 -0
  286. package/dist/src/components/chart/CategorizedChartProps.d.ts +35 -0
  287. package/dist/src/components/chart/ChartUtils.d.ts +8 -0
  288. package/dist/src/components/chart/DonutChart.d.ts +79 -0
  289. package/dist/src/components/chart/DonutChartLegendItem.d.ts +9 -0
  290. package/dist/src/components/chart/EchartsConfig.d.ts +1 -0
  291. package/dist/src/components/chart/FunnelChart.d.ts +84 -0
  292. package/dist/src/components/chart/IncrementLabel.d.ts +18 -0
  293. package/dist/src/components/chart/LineChart.d.ts +98 -0
  294. package/dist/src/components/chart/MicroPieChart.d.ts +18 -0
  295. package/dist/src/components/chart/RankingChart.d.ts +33 -0
  296. package/dist/src/components/chart/RankingChartItem.d.ts +7 -0
  297. package/dist/src/components/chart/RankingChartTooltip.d.ts +15 -0
  298. package/dist/src/components/chart/WeekChart.d.ts +41 -0
  299. package/dist/src/components/chart/WeekChartItem.d.ts +5 -0
  300. package/dist/src/components/chart/WeekChartTooltip.d.ts +19 -0
  301. package/dist/src/components/chart/index.d.ts +8 -0
  302. package/dist/src/components/chat/Chat.d.ts +13 -0
  303. package/dist/src/components/chat/ChatMessage.d.ts +35 -0
  304. package/dist/src/components/chat/index.d.ts +2 -0
  305. package/dist/src/components/chip/Chip.d.ts +1002 -0
  306. package/dist/src/components/chip/ChipList.d.ts +14 -0
  307. package/dist/src/components/chip/MenuChip.d.ts +56 -0
  308. package/dist/src/components/chip/index.d.ts +3 -0
  309. package/dist/src/components/dialog/ConfirmationDialog.d.ts +54 -0
  310. package/dist/src/components/dialog/Dialog.d.ts +16 -0
  311. package/dist/src/components/dialog/index.d.ts +2 -0
  312. package/dist/src/components/divider/Divider.d.ts +18 -0
  313. package/dist/src/components/divider/index.d.ts +1 -0
  314. package/dist/src/components/drawer/Drawer.d.ts +9 -0
  315. package/dist/src/components/drawer/InputDrawer.d.ts +41 -0
  316. package/dist/src/components/drawer/index.d.ts +2 -0
  317. package/dist/src/components/formatter/CompactNumberFormatter.d.ts +13 -0
  318. package/dist/src/components/formatter/CurrencyFormatter.d.ts +21 -0
  319. package/dist/src/components/formatter/DateFormatter.d.ts +18 -0
  320. package/dist/src/components/formatter/NumberFormatter.d.ts +17 -0
  321. package/dist/src/components/formatter/PercentageFormatter.d.ts +17 -0
  322. package/dist/src/components/formatter/index.d.ts +5 -0
  323. package/dist/src/components/header/Header.d.ts +33 -0
  324. package/dist/src/components/header/HeaderSubtitle.d.ts +13 -0
  325. package/dist/src/components/header/HeaderTitle.d.ts +13 -0
  326. package/dist/src/components/header/index.d.ts +3 -0
  327. package/dist/src/components/icon/Icon.d.ts +47 -0
  328. package/dist/src/components/icon/StackedIcons.d.ts +13 -0
  329. package/dist/src/components/icon/SvgIcon.theme.d.ts +2 -0
  330. package/dist/src/components/icon/icons.d.ts +1953 -0
  331. package/dist/src/components/icon/index.d.ts +1 -0
  332. package/dist/src/components/image/ImageEditor.d.ts +12 -0
  333. package/dist/src/components/image/index.d.ts +1 -0
  334. package/dist/src/components/index.d.ts +35 -0
  335. package/dist/src/components/info/InfoBox.d.ts +10 -0
  336. package/dist/src/components/info/index.d.ts +1 -0
  337. package/dist/src/components/input/Autocomplete.d.ts +118 -0
  338. package/dist/src/components/input/CalendarDay.d.ts +17 -0
  339. package/dist/src/components/input/CalendarMonth.d.ts +19 -0
  340. package/dist/src/components/input/CalendarScrollPicker.d.ts +17 -0
  341. package/dist/src/components/input/CategorizedPicker.d.ts +22 -0
  342. package/dist/src/components/input/Checkbox.d.ts +39 -0
  343. package/dist/src/components/input/CodeEditor.d.ts +29 -0
  344. package/dist/src/components/input/CodeEditorPopup.d.ts +18 -0
  345. package/dist/src/components/input/ColorPicker.d.ts +62 -0
  346. package/dist/src/components/input/DateIntervalPicker.d.ts +84 -0
  347. package/dist/src/components/input/DateIntervalPickerInputs.d.ts +18 -0
  348. package/dist/src/components/input/DateIntervalPickerList.d.ts +35 -0
  349. package/dist/src/components/input/DateIntervalPickerPopover.d.ts +32 -0
  350. package/dist/src/components/input/DatePicker.d.ts +59 -0
  351. package/dist/src/components/input/DatePickerPopover.d.ts +10 -0
  352. package/dist/src/components/input/DatePickerStatic.d.ts +9 -0
  353. package/dist/src/components/input/DaysOfWeekPicker.d.ts +11 -0
  354. package/dist/src/components/input/DaysOfWeekRow.d.ts +3 -0
  355. package/dist/src/components/input/DebouncedTextField.d.ts +18 -0
  356. package/dist/src/components/input/InputHelperText.d.ts +29 -0
  357. package/dist/src/components/input/InputLabel.d.ts +47 -0
  358. package/dist/src/components/input/ItemSelector.d.ts +27 -0
  359. package/dist/src/components/input/NumberField.d.ts +106 -0
  360. package/dist/src/components/input/PageSelector.d.ts +30 -0
  361. package/dist/src/components/input/PhoneField.d.ts +43 -0
  362. package/dist/src/components/input/Radio.d.ts +49 -0
  363. package/dist/src/components/input/Select.d.ts +89 -0
  364. package/dist/src/components/input/SelectPopover.d.ts +107 -0
  365. package/dist/src/components/input/SelectPopoverItem.d.ts +17 -0
  366. package/dist/src/components/input/Switch.d.ts +22 -0
  367. package/dist/src/components/input/Switch.theme.d.ts +2 -0
  368. package/dist/src/components/input/TextEditor.d.ts +123 -0
  369. package/dist/src/components/input/TextField.d.ts +156 -0
  370. package/dist/src/components/input/TextFieldContainer.d.ts +95 -0
  371. package/dist/src/components/input/TimeField.d.ts +20 -0
  372. package/dist/src/components/input/TimezoneSelector.d.ts +7 -0
  373. package/dist/src/components/input/UploadClickableArea.d.ts +14 -0
  374. package/dist/src/components/input/index.d.ts +26 -0
  375. package/dist/src/components/layout/Box.d.ts +2 -0
  376. package/dist/src/components/layout/Collapse.d.ts +5 -0
  377. package/dist/src/components/layout/CollapsiblePanel.d.ts +48 -0
  378. package/dist/src/components/layout/CollapsiblePanelSwitcher.d.ts +87 -0
  379. package/dist/src/components/layout/Container.d.ts +5 -0
  380. package/dist/src/components/layout/Container.theme.d.ts +2 -0
  381. package/dist/src/components/layout/Grid.d.ts +8 -0
  382. package/dist/src/components/layout/LazyLoad.d.ts +5 -0
  383. package/dist/src/components/layout/PageScrollContext.d.ts +5 -0
  384. package/dist/src/components/layout/PageWithHeader.d.ts +13 -0
  385. package/dist/src/components/layout/PageWithNavbar.d.ts +13 -0
  386. package/dist/src/components/layout/PageWithSidePanel.d.ts +17 -0
  387. package/dist/src/components/layout/PageWithToolBox.d.ts +17 -0
  388. package/dist/src/components/layout/PageWithToolbar.d.ts +18 -0
  389. package/dist/src/components/layout/Paper.d.ts +13 -0
  390. package/dist/src/components/layout/SidePanel.d.ts +7 -0
  391. package/dist/src/components/layout/Stack.d.ts +2 -0
  392. package/dist/src/components/layout/Stepper.d.ts +23 -0
  393. package/dist/src/components/layout/ToolBox.d.ts +12 -0
  394. package/dist/src/components/layout/index.d.ts +17 -0
  395. package/dist/src/components/list/BaseListItem.d.ts +70 -0
  396. package/dist/src/components/list/List.d.ts +5 -0
  397. package/dist/src/components/list/ListItem.d.ts +16 -0
  398. package/dist/src/components/list/ListItemButton.d.ts +42 -0
  399. package/dist/src/components/list/ListItemText.d.ts +17 -0
  400. package/dist/src/components/list/index.d.ts +3 -0
  401. package/dist/src/components/loader/Loader.d.ts +32 -0
  402. package/dist/src/components/loader/index.d.ts +1 -0
  403. package/dist/src/components/navbar/Navbar.d.ts +41 -0
  404. package/dist/src/components/navbar/NavbarButton.d.ts +39 -0
  405. package/dist/src/components/navbar/NavbarHeader.d.ts +12 -0
  406. package/dist/src/components/navbar/NavbarLogo.d.ts +16 -0
  407. package/dist/src/components/navbar/index.d.ts +4 -0
  408. package/dist/src/components/overlay/DonutFocusOverlay.d.ts +11 -0
  409. package/dist/src/components/overlay/index.d.ts +1 -0
  410. package/dist/src/components/pager/Pager.d.ts +31 -0
  411. package/dist/src/components/pager/index.d.ts +1 -0
  412. package/dist/src/components/popover/Popover.d.ts +26 -0
  413. package/dist/src/components/popover/Popover.theme.d.ts +2 -0
  414. package/dist/src/components/popover/PopoverActions.d.ts +21 -0
  415. package/dist/src/components/popover/index.d.ts +2 -0
  416. package/dist/src/components/progress/CircularProgress.d.ts +35 -0
  417. package/dist/src/components/progress/LinearProgress.d.ts +19 -0
  418. package/dist/src/components/progress/LinearProgress.theme.d.ts +2 -0
  419. package/dist/src/components/progress/index.d.ts +2 -0
  420. package/dist/src/components/scrollable/HorizontalScrollable.d.ts +18 -0
  421. package/dist/src/components/scrollable/index.d.ts +1 -0
  422. package/dist/src/components/skeleton/Skeleton.d.ts +8 -0
  423. package/dist/src/components/skeleton/index.d.ts +1 -0
  424. package/dist/src/components/snackbar/Snackbar.d.ts +52 -0
  425. package/dist/src/components/snackbar/SnackbarProvider.d.ts +10 -0
  426. package/dist/src/components/snackbar/enqueueSnackbar.d.ts +27 -0
  427. package/dist/src/components/snackbar/index.d.ts +3 -0
  428. package/dist/src/components/tab/TabButton.d.ts +30 -0
  429. package/dist/src/components/tab/TabContent.d.ts +7 -0
  430. package/dist/src/components/tab/Tabs.d.ts +52 -0
  431. package/dist/src/components/tab/Tabs.theme.d.ts +2 -0
  432. package/dist/src/components/tab/index.d.ts +3 -0
  433. package/dist/src/components/table/NestedTable.d.ts +29 -0
  434. package/dist/src/components/table/Table.d.ts +5 -0
  435. package/dist/src/components/table/Table.theme.d.ts +2 -0
  436. package/dist/src/components/table/TableBody.d.ts +4 -0
  437. package/dist/src/components/table/TableCell.d.ts +20 -0
  438. package/dist/src/components/table/TableCell.theme.d.ts +2 -0
  439. package/dist/src/components/table/TableCellCopy.d.ts +10 -0
  440. package/dist/src/components/table/TableDivider.d.ts +3 -0
  441. package/dist/src/components/table/TableHead.d.ts +4 -0
  442. package/dist/src/components/table/TableRow.d.ts +9 -0
  443. package/dist/src/components/table/TableSortLabel.d.ts +8 -0
  444. package/dist/src/components/table/index.d.ts +9 -0
  445. package/dist/src/components/toolbar/Toolbar.d.ts +24 -0
  446. package/dist/src/components/toolbar/ToolbarBreadcrumb.d.ts +15 -0
  447. package/dist/src/components/toolbar/ToolbarBreadcrumbButton.d.ts +11 -0
  448. package/dist/src/components/toolbar/ToolbarTitle.d.ts +27 -0
  449. package/dist/src/components/toolbar/index.d.ts +4 -0
  450. package/dist/src/components/tooltip/TextEllipsis.d.ts +18 -0
  451. package/dist/src/components/tooltip/TextEllipsisTooltip.d.ts +27 -0
  452. package/dist/src/components/tooltip/Tooltip.d.ts +59 -0
  453. package/dist/src/components/tooltip/Tooltip.theme.d.ts +2 -0
  454. package/dist/src/components/tooltip/TooltipMenu.d.ts +35 -0
  455. package/dist/src/components/tooltip/index.d.ts +4 -0
  456. package/dist/src/components/transition/Slide.d.ts +3 -0
  457. package/dist/src/components/transition/index.d.ts +1 -0
  458. package/dist/src/components/typography/TextMarker.d.ts +32 -0
  459. package/dist/src/components/typography/Typography.d.ts +39 -0
  460. package/dist/src/components/typography/index.d.ts +2 -0
  461. package/dist/src/components/widget/Widget.d.ts +7 -0
  462. package/dist/src/components/widget/WidgetActions.d.ts +8 -0
  463. package/dist/src/components/widget/WidgetLegendItem.d.ts +65 -0
  464. package/dist/src/components/widget/WidgetTitle.d.ts +23 -0
  465. package/dist/src/components/widget/index.d.ts +4 -0
  466. package/dist/src/components/window/MinimizableWindow.d.ts +98 -0
  467. package/dist/src/components/window/index.d.ts +1 -0
  468. package/dist/src/contexts/IntlContext.d.ts +7 -0
  469. package/dist/src/contexts/index.d.ts +1 -0
  470. package/dist/src/hooks/index.d.ts +3 -0
  471. package/dist/src/hooks/useDebouncedCallback.d.ts +1 -0
  472. package/dist/src/hooks/useFormatters.d.ts +8 -0
  473. package/dist/src/hooks/useResizeObserver.d.ts +7 -0
  474. package/dist/src/i18n/TranslationKey.d.ts +11 -0
  475. package/dist/src/i18n/en.d.ts +202 -0
  476. package/dist/src/i18n/es.d.ts +202 -0
  477. package/dist/src/i18n/fr.d.ts +202 -0
  478. package/dist/src/i18n/it.d.ts +202 -0
  479. package/dist/src/i18n/pt.d.ts +202 -0
  480. package/dist/src/i18n/translate.d.ts +4 -0
  481. package/dist/src/index.d.ts +6 -0
  482. package/dist/src/models/ComparisonInterval.d.ts +1 -0
  483. package/dist/src/models/DateInputFormat.d.ts +4 -0
  484. package/dist/src/models/DateInterval.d.ts +1 -0
  485. package/dist/src/models/SimpleDate.d.ts +8 -0
  486. package/dist/src/propTypes/IncrementLabel.d.ts +15 -0
  487. package/dist/src/propTypes/index.d.ts +1 -0
  488. package/dist/src/stories/alert/Alert.stories.d.ts +6 -0
  489. package/dist/src/stories/avatar/Avatar.stories.d.ts +31 -0
  490. package/dist/src/stories/avatar/AvatarCard.stories.d.ts +8 -0
  491. package/dist/src/stories/avatar/AvatarMultiple.stories.d.ts +13 -0
  492. package/dist/src/stories/button/BadgeToggleButton.stories.d.ts +5 -0
  493. package/dist/src/stories/button/Button.stories.d.ts +33 -0
  494. package/dist/src/stories/button/ButtonGroup.stories.d.ts +6 -0
  495. package/dist/src/stories/button/ButtonWithActions.stories.d.ts +45 -0
  496. package/dist/src/stories/button/IconButton.stories.d.ts +17 -0
  497. package/dist/src/stories/button/IconToggleButton.stories.d.ts +15 -0
  498. package/dist/src/stories/button/MenuButton.stories.d.ts +13 -0
  499. package/dist/src/stories/button/MenuIconButton.stories.d.ts +23 -0
  500. package/dist/src/stories/button/ToggleButton.stories.d.ts +6 -0
  501. package/dist/src/stories/button/ToggleButtonGroup.stories.d.ts +6 -0
  502. package/dist/src/stories/button/UploadButton.stories.d.ts +11 -0
  503. package/dist/src/stories/card/Card.stories.d.ts +6 -0
  504. package/dist/src/stories/card/CardActions.stories.d.ts +6 -0
  505. package/dist/src/stories/card/CardChips.stories.d.ts +6 -0
  506. package/dist/src/stories/card/CardDescription.stories.d.ts +6 -0
  507. package/dist/src/stories/card/CardImage.stories.d.ts +6 -0
  508. package/dist/src/stories/card/CardStatus.stories.d.ts +6 -0
  509. package/dist/src/stories/card/CardTable.stories.d.ts +6 -0
  510. package/dist/src/stories/card/CardTitle.stories.d.ts +6 -0
  511. package/dist/src/stories/card/CardTitleWithIcon.stories.d.ts +6 -0
  512. package/dist/src/stories/card/EnhancedCard.stories.d.ts +6 -0
  513. package/dist/src/stories/chart/BarChart.stories.d.ts +9 -0
  514. package/dist/src/stories/chart/DonutChart.stories.d.ts +11 -0
  515. package/dist/src/stories/chart/FunnelChart.stories.d.ts +9 -0
  516. package/dist/src/stories/chart/IncrementLabel.stories.d.ts +7 -0
  517. package/dist/src/stories/chart/LineChart.stories.d.ts +10 -0
  518. package/dist/src/stories/chart/MicroPieChart.stories.d.ts +6 -0
  519. package/dist/src/stories/chart/RankingChart.stories.d.ts +8 -0
  520. package/dist/src/stories/chart/WeekChart.stories.d.ts +9 -0
  521. package/dist/src/stories/chat/Chat.stories.d.ts +7 -0
  522. package/dist/src/stories/chat/ChatMessage.stories.d.ts +8 -0
  523. package/dist/src/stories/chip/Chip.stories.d.ts +131 -0
  524. package/dist/src/stories/chip/ChipList.stories.d.ts +6 -0
  525. package/dist/src/stories/chip/MenuChip.stories.d.ts +13 -0
  526. package/dist/src/stories/dialog/ConformationDialog.stories.d.ts +7 -0
  527. package/dist/src/stories/dialog/Dialog.stories.d.ts +7 -0
  528. package/dist/src/stories/divider/Divider.stories.d.ts +6 -0
  529. package/dist/src/stories/drawer/Drawer.stories.d.ts +6 -0
  530. package/dist/src/stories/drawer/InputDrawer.stories.d.ts +6 -0
  531. package/dist/src/stories/formatter/CompactNumberFormatter.stories.d.ts +6 -0
  532. package/dist/src/stories/formatter/CurrencyFormatter.stories.d.ts +6 -0
  533. package/dist/src/stories/formatter/DateFormatter.stories.d.ts +6 -0
  534. package/dist/src/stories/formatter/NumberFormatter.stories.d.ts +6 -0
  535. package/dist/src/stories/formatter/PercentageFormatter.stories.d.ts +6 -0
  536. package/dist/src/stories/header/Header.stories.d.ts +6 -0
  537. package/dist/src/stories/header/HeaderSubtitle.stories.d.ts +6 -0
  538. package/dist/src/stories/header/HeaderTitle.stories.d.ts +6 -0
  539. package/dist/src/stories/icon/Icon.stories.d.ts +12 -0
  540. package/dist/src/stories/icon/StackedIcons.stories.d.ts +6 -0
  541. package/dist/src/stories/image/ImageEditor.stories.d.ts +6 -0
  542. package/dist/src/stories/info/InfoBox.stories.d.ts +6 -0
  543. package/dist/src/stories/input/Autocomplete.stories.d.ts +11 -0
  544. package/dist/src/stories/input/CategorizedPicker.stories.d.ts +9 -0
  545. package/dist/src/stories/input/Checkbox.stories.d.ts +6 -0
  546. package/dist/src/stories/input/CodeEditor.stories.d.ts +6 -0
  547. package/dist/src/stories/input/ColorPicker.stories.d.ts +6 -0
  548. package/dist/src/stories/input/DateIntervalPicker.stories.d.ts +6 -0
  549. package/dist/src/stories/input/DatePicker.stories.d.ts +13 -0
  550. package/dist/src/stories/input/DaysOfWeekPicker.stories.d.ts +6 -0
  551. package/dist/src/stories/input/DebouncedTextField.stories.d.ts +8 -0
  552. package/dist/src/stories/input/InputHelperText.stories.d.ts +11 -0
  553. package/dist/src/stories/input/InputLabel.stories.d.ts +13 -0
  554. package/dist/src/stories/input/ItemSelector.stories.d.ts +6 -0
  555. package/dist/src/stories/input/NumberField.stories.d.ts +18 -0
  556. package/dist/src/stories/input/PageSelector.stories.d.ts +6 -0
  557. package/dist/src/stories/input/PhoneField.stories.d.ts +11 -0
  558. package/dist/src/stories/input/Radio.stories.d.ts +6 -0
  559. package/dist/src/stories/input/Select.stories.d.ts +23 -0
  560. package/dist/src/stories/input/SelectPopover.stories.d.ts +9 -0
  561. package/dist/src/stories/input/Switch.stories.d.ts +6 -0
  562. package/dist/src/stories/input/TextEditor.stories.d.ts +6 -0
  563. package/dist/src/stories/input/TextField.stories.d.ts +10 -0
  564. package/dist/src/stories/input/TextFieldContainer.stories.d.ts +20 -0
  565. package/dist/src/stories/input/TimeField.stories.d.ts +6 -0
  566. package/dist/src/stories/input/TimezoneSelector.stories.d.ts +6 -0
  567. package/dist/src/stories/input/UploadClickableArea.stories.d.ts +5 -0
  568. package/dist/src/stories/layout/CollapsiblePanel.stories.d.ts +6 -0
  569. package/dist/src/stories/layout/CollapsiblePanelSwitcher.stories.d.ts +7 -0
  570. package/dist/src/stories/layout/Container.stories.d.ts +6 -0
  571. package/dist/src/stories/layout/Grid.stories.d.ts +6 -0
  572. package/dist/src/stories/layout/LazyLoad.stories.d.ts +6 -0
  573. package/dist/src/stories/layout/PageWIthNavbar.stories.d.ts +10 -0
  574. package/dist/src/stories/layout/PageWIthSidePanel.stories.d.ts +8 -0
  575. package/dist/src/stories/layout/PageWIthToolBox.stories.d.ts +8 -0
  576. package/dist/src/stories/layout/PageWithHeader.stories.d.ts +6 -0
  577. package/dist/src/stories/layout/PageWithToolbar.stories.d.ts +6 -0
  578. package/dist/src/stories/layout/Paper.stories.d.ts +6 -0
  579. package/dist/src/stories/layout/SidePanel.stories.d.ts +6 -0
  580. package/dist/src/stories/layout/Stepper.stories.d.ts +6 -0
  581. package/dist/src/stories/layout/ToolBox.stories.d.ts +6 -0
  582. package/dist/src/stories/list/List.stories.d.ts +6 -0
  583. package/dist/src/stories/list/ListItem.stories.d.ts +28 -0
  584. package/dist/src/stories/list/ListItemButton.stories.d.ts +57 -0
  585. package/dist/src/stories/loader/Loader.stories.d.ts +8 -0
  586. package/dist/src/stories/navbar/Navbar.stories.d.ts +6 -0
  587. package/dist/src/stories/overlay/DonutFocusOverlay.stories.d.ts +6 -0
  588. package/dist/src/stories/pager/Pager.stories.d.ts +6 -0
  589. package/dist/src/stories/popover/Popover.stories.d.ts +6 -0
  590. package/dist/src/stories/progress/CircularProgress.stories.d.ts +9 -0
  591. package/dist/src/stories/progress/LinearProgress.stories.d.ts +9 -0
  592. package/dist/src/stories/scrollable/HorizontalScrollable.stories.d.ts +6 -0
  593. package/dist/src/stories/skeleton/Skeleton.stories.d.ts +33 -0
  594. package/dist/src/stories/snackbar/Snackbar.stories.d.ts +10 -0
  595. package/dist/src/stories/tab/TabButton.stories.d.ts +5 -0
  596. package/dist/src/stories/tab/Tabs.stories.d.ts +5 -0
  597. package/dist/src/stories/table/NestedTable.stories.d.ts +6 -0
  598. package/dist/src/stories/table/Table.stories.d.ts +7 -0
  599. package/dist/src/stories/text-ellipsis/TextEllipsis.stories.d.ts +6 -0
  600. package/dist/src/stories/toolbar/Toolbar.stories.d.ts +9 -0
  601. package/dist/src/stories/toolbar/ToolbarBreadcrumb.stories.d.ts +6 -0
  602. package/dist/src/stories/toolbar/ToolbarTitle.stories.d.ts +6 -0
  603. package/dist/src/stories/tooltip/Tooltip.stories.d.ts +7 -0
  604. package/dist/src/stories/tooltip/TooltipMenu.stories.d.ts +6 -0
  605. package/dist/src/stories/typography/TextMarker.stories.d.ts +6 -0
  606. package/dist/src/stories/typography/Typography.stories.d.ts +11 -0
  607. package/dist/src/stories/utils/StoryUtilities.d.ts +2 -0
  608. package/dist/src/stories/widget/Widget.stories.d.ts +6 -0
  609. package/dist/src/stories/widget/WidgetActions.stories.d.ts +6 -0
  610. package/dist/src/stories/widget/WidgetLegendItem.stories.d.ts +7 -0
  611. package/dist/src/stories/widget/WidgetTitle.stories.d.ts +6 -0
  612. package/dist/src/stories/window/MinimizableWindow.stories.d.ts +25 -0
  613. package/dist/src/theme/Animations.d.ts +3 -0
  614. package/dist/src/theme/Breakpoints.d.ts +11 -0
  615. package/dist/src/theme/Colors.d.ts +90 -0
  616. package/dist/src/theme/GlobalStyles.d.ts +3 -0
  617. package/dist/src/theme/Palettes.d.ts +4 -0
  618. package/dist/src/theme/Shadows.d.ts +2 -0
  619. package/dist/src/theme/Theme.d.ts +1 -0
  620. package/dist/src/theme/Typography.d.ts +97 -0
  621. package/dist/src/theme/index.d.ts +7 -0
  622. package/dist/src/utils/ChartUtils.d.ts +23 -0
  623. package/dist/src/utils/CurrencyFormatter.d.ts +1 -0
  624. package/dist/src/utils/DateUtils.d.ts +45 -0
  625. package/dist/src/utils/NumberFormatter.d.ts +2 -0
  626. package/dist/src/utils/PercentageFormatter.d.ts +1 -0
  627. package/dist/src/utils/PhoneUtils.d.ts +11 -0
  628. package/dist/src/utils/RegExpUtils.d.ts +1 -0
  629. package/dist/src/utils/ResizeObserverUtils.d.ts +1 -0
  630. package/dist/src/utils/index.d.ts +5 -0
  631. package/dist/test/Setup.d.ts +1 -0
  632. package/dist/test/TestUtils.d.ts +3 -0
  633. package/dist/test/unit/components/button/Button.spec.d.ts +1 -0
  634. package/dist/test/unit/components/button/MenuButton.spec.d.ts +1 -0
  635. package/dist/test/unit/components/formatter/CurrencyFormatter.spec.d.ts +1 -0
  636. package/dist/test/unit/components/formatter/DateFormatter.spec.d.ts +1 -0
  637. package/dist/test/unit/components/formatter/NumberFormatter.spec.d.ts +1 -0
  638. package/dist/test/unit/components/formatter/PercentageFormatter.spec.d.ts +1 -0
  639. package/dist/test/unit/components/input/DateIntervalPicker.spec.d.ts +1 -0
  640. package/dist/test/unit/components/input/DatePicker.spec.d.ts +1 -0
  641. package/dist/test/unit/components/input/NumberField.spec.d.ts +1 -0
  642. package/dist/test/unit/components/input/PhoneField.spec.d.ts +1 -0
  643. package/dist/test/unit/components/input/TextField.spec.d.ts +1 -0
  644. package/dist/test/unit/components/input/__mocks__/react-virtualized-auto-sizer.d.ts +4 -0
  645. package/dist/test/unit/components/list/ListItemButton.spec.d.ts +1 -0
  646. package/dist/test/unit/components/tab/Tabs.spec.d.ts +1 -0
  647. package/dist/test/unit/components/tooltop/Tooltip.spec.d.ts +1 -0
  648. package/dist/test/unit/components/widget/WidgetLegendItem.spec.d.ts +1 -0
  649. package/dist/test/unit/i18n/translate.spec.d.ts +1 -0
  650. package/dist/test/unit/utils/DateUtils.spec.d.ts +1 -0
  651. package/dist/theme/Animations.d.ts +3 -0
  652. package/dist/theme/Breakpoints.d.ts +11 -0
  653. package/dist/theme/Colors.d.ts +90 -0
  654. package/dist/theme/GlobalStyles.d.ts +3 -0
  655. package/dist/theme/Palettes.d.ts +4 -0
  656. package/dist/theme/Shadows.d.ts +2 -0
  657. package/dist/theme/Theme.d.ts +1 -0
  658. package/dist/theme/Typography.d.ts +97 -0
  659. package/dist/theme/index.d.ts +7 -0
  660. package/dist/tinymce/icons/default/icons.js +194 -0
  661. package/dist/tinymce/icons/default/icons.min.js +1 -0
  662. package/dist/tinymce/icons/default/index.js +7 -0
  663. package/dist/tinymce/models/dom/index.js +7 -0
  664. package/dist/tinymce/models/dom/model.js +8040 -0
  665. package/dist/tinymce/models/dom/model.min.js +4 -0
  666. package/dist/tinymce/plugins/accordion/index.js +7 -0
  667. package/dist/tinymce/plugins/accordion/plugin.js +1054 -0
  668. package/dist/tinymce/plugins/accordion/plugin.min.js +4 -0
  669. package/dist/tinymce/plugins/advlist/index.js +7 -0
  670. package/dist/tinymce/plugins/advlist/plugin.js +259 -0
  671. package/dist/tinymce/plugins/advlist/plugin.min.js +4 -0
  672. package/dist/tinymce/plugins/anchor/index.js +7 -0
  673. package/dist/tinymce/plugins/anchor/plugin.js +214 -0
  674. package/dist/tinymce/plugins/anchor/plugin.min.js +4 -0
  675. package/dist/tinymce/plugins/autolink/index.js +7 -0
  676. package/dist/tinymce/plugins/autolink/plugin.js +228 -0
  677. package/dist/tinymce/plugins/autolink/plugin.min.js +4 -0
  678. package/dist/tinymce/plugins/autoresize/index.js +7 -0
  679. package/dist/tinymce/plugins/autoresize/plugin.js +192 -0
  680. package/dist/tinymce/plugins/autoresize/plugin.min.js +4 -0
  681. package/dist/tinymce/plugins/autosave/index.js +7 -0
  682. package/dist/tinymce/plugins/autosave/plugin.js +233 -0
  683. package/dist/tinymce/plugins/autosave/plugin.min.js +4 -0
  684. package/dist/tinymce/plugins/charmap/index.js +7 -0
  685. package/dist/tinymce/plugins/charmap/plugin.js +1658 -0
  686. package/dist/tinymce/plugins/charmap/plugin.min.js +4 -0
  687. package/dist/tinymce/plugins/code/index.js +7 -0
  688. package/dist/tinymce/plugins/code/plugin.js +85 -0
  689. package/dist/tinymce/plugins/code/plugin.min.js +4 -0
  690. package/dist/tinymce/plugins/codesample/index.js +7 -0
  691. package/dist/tinymce/plugins/codesample/plugin.js +2463 -0
  692. package/dist/tinymce/plugins/codesample/plugin.min.js +4 -0
  693. package/dist/tinymce/plugins/directionality/index.js +7 -0
  694. package/dist/tinymce/plugins/directionality/plugin.js +395 -0
  695. package/dist/tinymce/plugins/directionality/plugin.min.js +4 -0
  696. package/dist/tinymce/plugins/emoticons/index.js +7 -0
  697. package/dist/tinymce/plugins/emoticons/js/emojiimages.js +1 -0
  698. package/dist/tinymce/plugins/emoticons/js/emojiimages.min.js +3 -0
  699. package/dist/tinymce/plugins/emoticons/js/emojis.js +1 -0
  700. package/dist/tinymce/plugins/emoticons/js/emojis.min.js +2 -0
  701. package/dist/tinymce/plugins/emoticons/plugin.js +595 -0
  702. package/dist/tinymce/plugins/emoticons/plugin.min.js +4 -0
  703. package/dist/tinymce/plugins/fullscreen/index.js +7 -0
  704. package/dist/tinymce/plugins/fullscreen/plugin.js +1249 -0
  705. package/dist/tinymce/plugins/fullscreen/plugin.min.js +4 -0
  706. package/dist/tinymce/plugins/help/index.js +7 -0
  707. package/dist/tinymce/plugins/help/js/i18n/keynav/ar.js +90 -0
  708. package/dist/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +90 -0
  709. package/dist/tinymce/plugins/help/js/i18n/keynav/ca.js +90 -0
  710. package/dist/tinymce/plugins/help/js/i18n/keynav/cs.js +90 -0
  711. package/dist/tinymce/plugins/help/js/i18n/keynav/da.js +90 -0
  712. package/dist/tinymce/plugins/help/js/i18n/keynav/de.js +90 -0
  713. package/dist/tinymce/plugins/help/js/i18n/keynav/el.js +90 -0
  714. package/dist/tinymce/plugins/help/js/i18n/keynav/en.js +90 -0
  715. package/dist/tinymce/plugins/help/js/i18n/keynav/es.js +90 -0
  716. package/dist/tinymce/plugins/help/js/i18n/keynav/eu.js +90 -0
  717. package/dist/tinymce/plugins/help/js/i18n/keynav/fa.js +90 -0
  718. package/dist/tinymce/plugins/help/js/i18n/keynav/fi.js +90 -0
  719. package/dist/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +90 -0
  720. package/dist/tinymce/plugins/help/js/i18n/keynav/he_IL.js +90 -0
  721. package/dist/tinymce/plugins/help/js/i18n/keynav/hi.js +90 -0
  722. package/dist/tinymce/plugins/help/js/i18n/keynav/hr.js +90 -0
  723. package/dist/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +90 -0
  724. package/dist/tinymce/plugins/help/js/i18n/keynav/id.js +90 -0
  725. package/dist/tinymce/plugins/help/js/i18n/keynav/it.js +90 -0
  726. package/dist/tinymce/plugins/help/js/i18n/keynav/ja.js +90 -0
  727. package/dist/tinymce/plugins/help/js/i18n/keynav/kk.js +90 -0
  728. package/dist/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +90 -0
  729. package/dist/tinymce/plugins/help/js/i18n/keynav/ms.js +90 -0
  730. package/dist/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +90 -0
  731. package/dist/tinymce/plugins/help/js/i18n/keynav/nl.js +90 -0
  732. package/dist/tinymce/plugins/help/js/i18n/keynav/pl.js +90 -0
  733. package/dist/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +90 -0
  734. package/dist/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +90 -0
  735. package/dist/tinymce/plugins/help/js/i18n/keynav/ro.js +90 -0
  736. package/dist/tinymce/plugins/help/js/i18n/keynav/ru.js +90 -0
  737. package/dist/tinymce/plugins/help/js/i18n/keynav/sk.js +90 -0
  738. package/dist/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +90 -0
  739. package/dist/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +90 -0
  740. package/dist/tinymce/plugins/help/js/i18n/keynav/th_TH.js +90 -0
  741. package/dist/tinymce/plugins/help/js/i18n/keynav/tr.js +90 -0
  742. package/dist/tinymce/plugins/help/js/i18n/keynav/uk.js +90 -0
  743. package/dist/tinymce/plugins/help/js/i18n/keynav/vi.js +90 -0
  744. package/dist/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +84 -0
  745. package/dist/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +90 -0
  746. package/dist/tinymce/plugins/help/plugin.js +898 -0
  747. package/dist/tinymce/plugins/help/plugin.min.js +4 -0
  748. package/dist/tinymce/plugins/image/index.js +7 -0
  749. package/dist/tinymce/plugins/image/plugin.js +1505 -0
  750. package/dist/tinymce/plugins/image/plugin.min.js +4 -0
  751. package/dist/tinymce/plugins/importcss/index.js +7 -0
  752. package/dist/tinymce/plugins/importcss/plugin.js +344 -0
  753. package/dist/tinymce/plugins/importcss/plugin.min.js +4 -0
  754. package/dist/tinymce/plugins/insertdatetime/index.js +7 -0
  755. package/dist/tinymce/plugins/insertdatetime/plugin.js +187 -0
  756. package/dist/tinymce/plugins/insertdatetime/plugin.min.js +4 -0
  757. package/dist/tinymce/plugins/link/index.js +7 -0
  758. package/dist/tinymce/plugins/link/plugin.js +1242 -0
  759. package/dist/tinymce/plugins/link/plugin.min.js +4 -0
  760. package/dist/tinymce/plugins/lists/index.js +7 -0
  761. package/dist/tinymce/plugins/lists/plugin.js +2172 -0
  762. package/dist/tinymce/plugins/lists/plugin.min.js +4 -0
  763. package/dist/tinymce/plugins/media/index.js +7 -0
  764. package/dist/tinymce/plugins/media/plugin.js +1217 -0
  765. package/dist/tinymce/plugins/media/plugin.min.js +4 -0
  766. package/dist/tinymce/plugins/nonbreaking/index.js +7 -0
  767. package/dist/tinymce/plugins/nonbreaking/plugin.js +123 -0
  768. package/dist/tinymce/plugins/nonbreaking/plugin.min.js +4 -0
  769. package/dist/tinymce/plugins/pagebreak/index.js +7 -0
  770. package/dist/tinymce/plugins/pagebreak/plugin.js +117 -0
  771. package/dist/tinymce/plugins/pagebreak/plugin.min.js +4 -0
  772. package/dist/tinymce/plugins/preview/index.js +7 -0
  773. package/dist/tinymce/plugins/preview/plugin.js +97 -0
  774. package/dist/tinymce/plugins/preview/plugin.min.js +4 -0
  775. package/dist/tinymce/plugins/quickbars/index.js +7 -0
  776. package/dist/tinymce/plugins/quickbars/plugin.js +447 -0
  777. package/dist/tinymce/plugins/quickbars/plugin.min.js +4 -0
  778. package/dist/tinymce/plugins/save/index.js +7 -0
  779. package/dist/tinymce/plugins/save/plugin.js +118 -0
  780. package/dist/tinymce/plugins/save/plugin.min.js +4 -0
  781. package/dist/tinymce/plugins/searchreplace/index.js +7 -0
  782. package/dist/tinymce/plugins/searchreplace/plugin.js +1093 -0
  783. package/dist/tinymce/plugins/searchreplace/plugin.min.js +4 -0
  784. package/dist/tinymce/plugins/table/index.js +7 -0
  785. package/dist/tinymce/plugins/table/plugin.js +3462 -0
  786. package/dist/tinymce/plugins/table/plugin.min.js +4 -0
  787. package/dist/tinymce/plugins/template/index.js +7 -0
  788. package/dist/tinymce/plugins/template/plugin.js +567 -0
  789. package/dist/tinymce/plugins/template/plugin.min.js +4 -0
  790. package/dist/tinymce/plugins/visualblocks/index.js +7 -0
  791. package/dist/tinymce/plugins/visualblocks/plugin.js +98 -0
  792. package/dist/tinymce/plugins/visualblocks/plugin.min.js +4 -0
  793. package/dist/tinymce/plugins/visualchars/index.js +7 -0
  794. package/dist/tinymce/plugins/visualchars/plugin.js +560 -0
  795. package/dist/tinymce/plugins/visualchars/plugin.min.js +4 -0
  796. package/dist/tinymce/plugins/wordcount/index.js +7 -0
  797. package/dist/tinymce/plugins/wordcount/plugin.js +405 -0
  798. package/dist/tinymce/plugins/wordcount/plugin.min.js +4 -0
  799. package/dist/tinymce/skins/content/dark/content.css +66 -0
  800. package/dist/tinymce/skins/content/dark/content.js +2 -0
  801. package/dist/tinymce/skins/content/dark/content.min.css +1 -0
  802. package/dist/tinymce/skins/content/default/content.css +61 -0
  803. package/dist/tinymce/skins/content/default/content.js +2 -0
  804. package/dist/tinymce/skins/content/default/content.min.css +1 -0
  805. package/dist/tinymce/skins/content/document/content.css +66 -0
  806. package/dist/tinymce/skins/content/document/content.js +2 -0
  807. package/dist/tinymce/skins/content/document/content.min.css +1 -0
  808. package/dist/tinymce/skins/content/tinymce-5/content.css +61 -0
  809. package/dist/tinymce/skins/content/tinymce-5/content.js +2 -0
  810. package/dist/tinymce/skins/content/tinymce-5/content.min.css +1 -0
  811. package/dist/tinymce/skins/content/tinymce-5-dark/content.css +66 -0
  812. package/dist/tinymce/skins/content/tinymce-5-dark/content.js +2 -0
  813. package/dist/tinymce/skins/content/tinymce-5-dark/content.min.css +1 -0
  814. package/dist/tinymce/skins/content/writer/content.css +62 -0
  815. package/dist/tinymce/skins/content/writer/content.js +2 -0
  816. package/dist/tinymce/skins/content/writer/content.min.css +1 -0
  817. package/dist/tinymce/skins/ui/oxide/content.css +785 -0
  818. package/dist/tinymce/skins/ui/oxide/content.inline.css +779 -0
  819. package/dist/tinymce/skins/ui/oxide/content.inline.js +2 -0
  820. package/dist/tinymce/skins/ui/oxide/content.inline.min.css +1 -0
  821. package/dist/tinymce/skins/ui/oxide/content.js +2 -0
  822. package/dist/tinymce/skins/ui/oxide/content.min.css +1 -0
  823. package/dist/tinymce/skins/ui/oxide/skin.css +3763 -0
  824. package/dist/tinymce/skins/ui/oxide/skin.js +2 -0
  825. package/dist/tinymce/skins/ui/oxide/skin.min.css +1 -0
  826. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.css +30 -0
  827. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.js +2 -0
  828. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.min.css +1 -0
  829. package/dist/tinymce/skins/ui/oxide-dark/content.css +766 -0
  830. package/dist/tinymce/skins/ui/oxide-dark/content.inline.css +779 -0
  831. package/dist/tinymce/skins/ui/oxide-dark/content.inline.js +2 -0
  832. package/dist/tinymce/skins/ui/oxide-dark/content.inline.min.css +1 -0
  833. package/dist/tinymce/skins/ui/oxide-dark/content.js +2 -0
  834. package/dist/tinymce/skins/ui/oxide-dark/content.min.css +1 -0
  835. package/dist/tinymce/skins/ui/oxide-dark/skin.css +3766 -0
  836. package/dist/tinymce/skins/ui/oxide-dark/skin.js +2 -0
  837. package/dist/tinymce/skins/ui/oxide-dark/skin.min.css +1 -0
  838. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.css +30 -0
  839. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.js +2 -0
  840. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +1 -0
  841. package/dist/tinymce/skins/ui/tinymce-5/content.css +785 -0
  842. package/dist/tinymce/skins/ui/tinymce-5/content.inline.css +779 -0
  843. package/dist/tinymce/skins/ui/tinymce-5/content.inline.js +2 -0
  844. package/dist/tinymce/skins/ui/tinymce-5/content.inline.min.css +1 -0
  845. package/dist/tinymce/skins/ui/tinymce-5/content.js +2 -0
  846. package/dist/tinymce/skins/ui/tinymce-5/content.min.css +1 -0
  847. package/dist/tinymce/skins/ui/tinymce-5/skin.css +3857 -0
  848. package/dist/tinymce/skins/ui/tinymce-5/skin.js +2 -0
  849. package/dist/tinymce/skins/ui/tinymce-5/skin.min.css +1 -0
  850. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.css +30 -0
  851. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.js +2 -0
  852. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +1 -0
  853. package/dist/tinymce/skins/ui/tinymce-5-dark/content.css +766 -0
  854. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.css +779 -0
  855. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.js +2 -0
  856. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +1 -0
  857. package/dist/tinymce/skins/ui/tinymce-5-dark/content.js +2 -0
  858. package/dist/tinymce/skins/ui/tinymce-5-dark/content.min.css +1 -0
  859. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.css +3857 -0
  860. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.js +2 -0
  861. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.min.css +1 -0
  862. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.css +30 -0
  863. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.js +2 -0
  864. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +1 -0
  865. package/dist/tinymce/themes/silver/index.js +7 -0
  866. package/dist/tinymce/themes/silver/theme.js +30754 -0
  867. package/dist/tinymce/themes/silver/theme.min.js +4 -0
  868. package/dist/tinymce/tinymce.js +31757 -0
  869. package/dist/tinymce/tinymce.min.js +4 -0
  870. package/dist/tsconfig.build.tsbuildinfo +1 -0
  871. package/dist/tsconfig.tsbuildinfo +1 -0
  872. package/dist/utils/ChartUtils.d.ts +23 -0
  873. package/dist/utils/CurrencyFormatter.d.ts +1 -0
  874. package/dist/utils/DateUtils.d.ts +45 -0
  875. package/dist/utils/NumberFormatter.d.ts +2 -0
  876. package/dist/utils/PercentageFormatter.d.ts +1 -0
  877. package/dist/utils/PhoneUtils.d.ts +11 -0
  878. package/dist/utils/RegExpUtils.d.ts +1 -0
  879. package/dist/utils/ResizeObserverUtils.d.ts +1 -0
  880. package/dist/utils/index.d.ts +5 -0
  881. package/package.json +110 -0
@@ -0,0 +1,17 @@
1
+ import * as React from 'react';
2
+ export type PageWithSidePanelProps = React.PropsWithChildren<{
3
+ /**
4
+ * Used to show/hide sidePanel.
5
+ */
6
+ sidePanelVisible?: boolean;
7
+ /**
8
+ * The sidePanel to display. It should be a SidePanel component.
9
+ */
10
+ sidePanel?: React.ReactNode;
11
+ }>;
12
+ /**
13
+ * A page with a sidePanel at the left of the page.
14
+ * The `children` will be displayed in the main area.
15
+ */
16
+ declare const PageWithSidePanel: ({ sidePanel, children, sidePanelVisible }: PageWithSidePanelProps) => JSX.Element;
17
+ export default PageWithSidePanel;
@@ -0,0 +1,17 @@
1
+ import * as React from 'react';
2
+ export type PageWithToolBoxProps = React.PropsWithChildren<{
3
+ /**
4
+ * Used to show/hide toolBox.
5
+ */
6
+ toolBoxVisible?: boolean;
7
+ /**
8
+ * The toolBox to display. It should be a ToolBox component.
9
+ */
10
+ toolBox?: React.ReactNode;
11
+ }>;
12
+ /**
13
+ * A page with a toolBox at the left of the page.
14
+ * The `children` will be displayed in the main area.
15
+ */
16
+ declare const PageWithToolBox: ({ toolBox, children, toolBoxVisible }: PageWithToolBoxProps) => JSX.Element;
17
+ export default PageWithToolBox;
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ export type PageWithToolbarProps = React.PropsWithChildren<{
3
+ /**
4
+ * Whether the toolbar is sticky at the top.
5
+ */
6
+ toolbarSticky?: boolean;
7
+ /**
8
+ * The toolbar to display. It should be a Toolbar component.
9
+ */
10
+ toolbar?: React.ReactNode;
11
+ }>;
12
+ /**
13
+ * A page with a toolbar at the top of the page.
14
+ * The `children` will be displayed in the main area.
15
+ * Toolbar is sticky by default.
16
+ */
17
+ declare const PageWithToolbar: ({ toolbar, children, toolbarSticky }: PageWithToolbarProps) => JSX.Element;
18
+ export default PageWithToolbar;
@@ -0,0 +1,13 @@
1
+ /// <reference types="react" />
2
+ import { PaperProps as MuiPaperProps } from '@mui/material/Paper';
3
+ export type PaperProps = Pick<MuiPaperProps, 'children' | 'sx'> & {
4
+ /**
5
+ * Wheather the paper will be surrounded with a thin border.
6
+ */
7
+ bordered?: boolean;
8
+ };
9
+ /**
10
+ * This is a simple "Paper" component, which is raised
11
+ */
12
+ declare const Paper: ({ bordered, sx, ...rest }: PaperProps) => JSX.Element;
13
+ export default Paper;
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ import { BoxProps } from '@mui/material';
3
+ export type SidePanelProps = React.PropsWithChildren<{
4
+ className?: BoxProps['className'];
5
+ }>;
6
+ declare const SidePanel: ({ children, className }: SidePanelProps) => JSX.Element;
7
+ export default SidePanel;
@@ -0,0 +1,2 @@
1
+ import MuiStack from '@mui/material/Stack';
2
+ export default MuiStack;
@@ -0,0 +1,23 @@
1
+ import * as React from 'react';
2
+ import { StepperProps as MuiStepperProps } from '@mui/material';
3
+ export type StepperProps = {
4
+ /**
5
+ * Select active step
6
+ */
7
+ activeStep: number;
8
+ /**
9
+ * Select stepper orientation
10
+ */
11
+ orientation?: MuiStepperProps['orientation'];
12
+ /**
13
+ * Steps info
14
+ */
15
+ steps: {
16
+ label: string;
17
+ placeholder?: string;
18
+ description?: string;
19
+ descriptionNode?: React.ReactNode;
20
+ }[];
21
+ };
22
+ declare const Stepper: React.ForwardRefExoticComponent<StepperProps & React.RefAttributes<HTMLButtonElement>>;
23
+ export default Stepper;
@@ -0,0 +1,12 @@
1
+ import * as React from 'react';
2
+ import { BoxProps } from '@mui/material';
3
+ type ToolBoxSize = 'L' | 'M';
4
+ export type ToolBoxProps = React.PropsWithChildren<{
5
+ className?: BoxProps['className'];
6
+ header?: React.ReactNode;
7
+ containerSx?: BoxProps['sx'];
8
+ size?: ToolBoxSize;
9
+ dataTestId?: string;
10
+ }>;
11
+ declare const ToolBox: ({ children, className, header, containerSx, size, dataTestId }: ToolBoxProps) => JSX.Element;
12
+ export default ToolBox;
@@ -0,0 +1,17 @@
1
+ export { default as Box } from './Box';
2
+ export { default as CollapsiblePanel, CollapsiblePanelProps } from './CollapsiblePanel';
3
+ export { default as CollapsiblePanelSwitcher, CollapsiblePanelSwitcherProps } from './CollapsiblePanelSwitcher';
4
+ export { default as Grid, GridProps } from './Grid';
5
+ export { default as Container } from './Container';
6
+ export { default as PageWithHeader, PageWithHeaderProps } from './PageWithHeader';
7
+ export { default as PageWithToolbar, PageWithToolbarProps } from './PageWithToolbar';
8
+ export { default as PageWithSidePanel, PageWithSidePanelProps as PageWithSidebarProps } from './PageWithSidePanel';
9
+ export { default as PageWithToolBox, PageWithToolBoxProps } from './PageWithToolBox';
10
+ export { default as PageWithNavbar, PageWithNavbarProps } from './PageWithNavbar';
11
+ export { default as SidePanel, SidePanelProps } from './SidePanel';
12
+ export { default as Stack } from './Stack';
13
+ export { default as Paper, PaperProps } from './Paper';
14
+ export { default as LazyLoad } from './LazyLoad';
15
+ export { default as Collapse } from './Collapse';
16
+ export { default as ToolBox, ToolBoxProps } from './ToolBox';
17
+ export { default as Stepper, StepperProps } from './Stepper';
@@ -0,0 +1,70 @@
1
+ import { SxProps } from '@mui/material';
2
+ import * as React from 'react';
3
+ import { TypographyVariant } from '../../theme/Typography';
4
+ import { IconId } from '../icon/Icon';
5
+ export type BaseListItemProps = {
6
+ /**
7
+ * The color variant of the list item.
8
+ */
9
+ color?: 'default' | 'primary';
10
+ /**
11
+ * Adornment components to be placed at the start of the input.
12
+ */
13
+ startAdornment?: React.ReactNode;
14
+ /**
15
+ * Icon to be placed as first startAdornment. In fact, startIcon is like
16
+ * a shorthand of `startAdornment={<Icon id={...}/>}`
17
+ */
18
+ startIconId?: IconId;
19
+ /**
20
+ * Adornment components to be placed at the end of the input.
21
+ */
22
+ endAdornment?: React.ReactNode;
23
+ /**
24
+ * Icon to be placed as first endAdornment. In fact, endIcon is like
25
+ * a shorthand of `endAdornment={<Icon id={...}/>}`
26
+ */
27
+ endIconId?: IconId;
28
+ /**
29
+ * The variant to be used for main `text` prop. If supplied prop `children`
30
+ * this text will be ignored.
31
+ */
32
+ typographyVariant?: Extract<TypographyVariant, 'body1' | 'body2' | 'body1-semibold'>;
33
+ /**
34
+ * The text to be placed in main ListItem area. If supplied prop `children`
35
+ * this text will be ignored.
36
+ */
37
+ text?: string;
38
+ /**
39
+ * The text to be shown under the main ListItem area. If supplied prop `children`
40
+ * this text will be ignored.
41
+ */
42
+ subText?: string;
43
+ /**
44
+ * Children component to be used in main ListItem area. If supplied,
45
+ * props `text` and `subText` will be ignored.
46
+ */
47
+ children?: React.ReactNode;
48
+ /**
49
+ * The styles applied to the ListItemBase.
50
+ */
51
+ baseSx?: SxProps;
52
+ /**
53
+ * Whether the list item is in selected state.
54
+ */
55
+ selected?: boolean;
56
+ /**
57
+ * The variant of the list item.
58
+ */
59
+ variant?: 'default' | 'circular';
60
+ /**
61
+ * Class to override .MuiTooltip-popper styles
62
+ */
63
+ tooltipClass?: string;
64
+ /**
65
+ * Settled directly in DOM element, for testing easy location purposes.
66
+ */
67
+ 'data-test'?: string;
68
+ };
69
+ declare const BaseListItem: ({ baseSx, color, typographyVariant, variant, startAdornment, endAdornment, children, startIconId, endIconId, selected, text, subText, tooltipClass, "data-test": dataTest }: BaseListItemProps) => JSX.Element;
70
+ export default BaseListItem;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { ListProps as MuiListProps } from '@mui/material';
3
+ export type ListProps = Pick<MuiListProps, 'children' | 'disablePadding' | 'sx' | 'className'>;
4
+ declare const List: ({ children, disablePadding, sx, className }: ListProps) => JSX.Element;
5
+ export default List;
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+ import { ListItemProps as MuiListItemProps, SxProps } from '@mui/material';
3
+ import { BaseListItemProps } from './BaseListItem';
4
+ export type ListItemProps = {
5
+ /**
6
+ * The styles applied to this ListItem.
7
+ */
8
+ sx?: SxProps;
9
+ } & BaseListItemProps & Pick<MuiListItemProps, 'onMouseEnter' | 'onMouseLeave' | 'className'>;
10
+ declare const ListItem: React.ForwardRefExoticComponent<{
11
+ /**
12
+ * The styles applied to this ListItem.
13
+ */
14
+ sx?: SxProps | undefined;
15
+ } & BaseListItemProps & Pick<MuiListItemProps, "className" | "onMouseEnter" | "onMouseLeave"> & React.RefAttributes<HTMLLIElement>>;
16
+ export default ListItem;
@@ -0,0 +1,42 @@
1
+ import * as React from 'react';
2
+ import { ListItemButtonProps as MuiListItemButtonProps, SxProps } from '@mui/material';
3
+ import { BaseListItemProps } from './BaseListItem';
4
+ export type ListItemButtonProps = Pick<MuiListItemButtonProps, 'onClick' | 'tabIndex' | 'role' | 'onMouseDown' | 'onMouseUp' | 'onMouseEnter' | 'onMouseLeave' | 'className'> & {
5
+ /**
6
+ * If `true`, the onClick callback will also be triggered on aux click. Default is `false`.
7
+ */
8
+ enableAuxClick?: boolean;
9
+ /**
10
+ * The styles applied to this ListItemButton.
11
+ */
12
+ sx?: SxProps;
13
+ /**
14
+ * Whether this list item button is disabled
15
+ */
16
+ disabled?: boolean;
17
+ /**
18
+ * Settled directly in DOM element, for testing easy location purposes.
19
+ */
20
+ 'data-test'?: string;
21
+ buttonDataTest?: string;
22
+ } & BaseListItemProps;
23
+ declare const ListItemButton: React.ForwardRefExoticComponent<Pick<MuiListItemButtonProps, "className" | "role" | "tabIndex" | "onClick" | "onMouseDown" | "onMouseEnter" | "onMouseLeave" | "onMouseUp"> & {
24
+ /**
25
+ * If `true`, the onClick callback will also be triggered on aux click. Default is `false`.
26
+ */
27
+ enableAuxClick?: boolean | undefined;
28
+ /**
29
+ * The styles applied to this ListItemButton.
30
+ */
31
+ sx?: SxProps | undefined;
32
+ /**
33
+ * Whether this list item button is disabled
34
+ */
35
+ disabled?: boolean | undefined;
36
+ /**
37
+ * Settled directly in DOM element, for testing easy location purposes.
38
+ */
39
+ 'data-test'?: string | undefined;
40
+ buttonDataTest?: string | undefined;
41
+ } & BaseListItemProps & React.RefAttributes<HTMLDivElement>>;
42
+ export default ListItemButton;
@@ -0,0 +1,17 @@
1
+ /// <reference types="react" />
2
+ import { TypographyVariant } from '../../theme/Typography';
3
+ export type ListItemTextProps = {
4
+ text?: string;
5
+ typographyVariant: TypographyVariant;
6
+ color?: string;
7
+ /**
8
+ * Class to override .MuiTooltip-popper styles
9
+ */
10
+ tooltipClass?: string;
11
+ /**
12
+ * Settled directly in DOM element, for testing easy location purposes.
13
+ */
14
+ 'data-test'?: string;
15
+ };
16
+ declare const ListItemText: ({ text, typographyVariant, color, tooltipClass, "data-test": dataTest }: ListItemTextProps) => JSX.Element;
17
+ export default ListItemText;
@@ -0,0 +1,3 @@
1
+ export { default as ListItemButton, ListItemButtonProps } from './ListItemButton';
2
+ export { default as ListItem, ListItemProps } from './ListItem';
3
+ export { default as List, ListProps } from './List';
@@ -0,0 +1,32 @@
1
+ /// <reference types="react" />
2
+ import { CircularProgressProps } from '../progress';
3
+ import { BoxProps } from '@mui/material/Box';
4
+ export type LoaderProps = {
5
+ /**
6
+ * Wheather the loader is visible or not
7
+ */
8
+ isVisible: boolean;
9
+ /**
10
+ * The loader zIndex
11
+ */
12
+ zIndex?: string | number;
13
+ /**
14
+ * The size of the circular progress.
15
+ */
16
+ size?: CircularProgressProps['size'];
17
+ /**
18
+ * Whether to hide the progress circle or not
19
+ * @default false
20
+ */
21
+ hideProgress?: boolean;
22
+ sx?: BoxProps['sx'];
23
+ };
24
+ /**
25
+ * A Loader component that gets `position:absoulte` over the closest
26
+ * `position:relative` ancestor element, or body if there is not such element.
27
+ * It blocks mouse interaction with the hovered section, but note that user
28
+ * still is able to change focus and interact with hovered section elements by
29
+ * using keyboard controls.
30
+ */
31
+ declare const Loader: ({ isVisible, zIndex, size, hideProgress, sx }: LoaderProps) => JSX.Element;
32
+ export default Loader;
@@ -0,0 +1 @@
1
+ export { default as Loader } from './Loader';
@@ -0,0 +1,41 @@
1
+ import * as React from 'react';
2
+ export type NavbarProps = {
3
+ /**
4
+ * Whether the drawer is open or not
5
+ */
6
+ isDrawerOpen?: boolean;
7
+ /**
8
+ * The content to be placed at the top of the Navbar.
9
+ * You will usually start this content with a NavbarLogo component,
10
+ * followed by the menu entries as NavbarButtons
11
+ */
12
+ topContent?: React.ReactNode;
13
+ /**
14
+ * The content to be placed at the bottom of the Navbar.
15
+ * You will usually put NavbarButtons components here.
16
+ */
17
+ bottomContent?: React.ReactNode;
18
+ /**
19
+ * The content to be placed at the top of the drawer.
20
+ * You will usually start this content with a NavbarHeader component,
21
+ * followed by the sub-menu entries as ListItemButtons
22
+ */
23
+ drawerTopContent?: React.ReactNode;
24
+ /**
25
+ * The content to be placed at the bottom of the drawer.
26
+ * You will usually put ListItemButtons components here.
27
+ */
28
+ drawerBottomContent?: React.ReactNode;
29
+ /**
30
+ * Called when the drawer is closed by the user
31
+ */
32
+ onClose?: () => void;
33
+ };
34
+ /**
35
+ * This component is intended to be always visible in the left-side of application.
36
+ * It contains an inner drawer that could be used for sub-navigation if needed.
37
+ *
38
+ * You will usually use this component inside a PageWithNavbar.
39
+ */
40
+ declare const Navbar: ({ topContent, bottomContent, drawerTopContent, drawerBottomContent, onClose, isDrawerOpen }: NavbarProps) => JSX.Element;
41
+ export default Navbar;
@@ -0,0 +1,39 @@
1
+ import * as React from 'react';
2
+ import { IconId, IconProps } from '../icon/Icon';
3
+ import { SxProps } from '@mui/material';
4
+ export type NavbarButtonProps = {
5
+ /**
6
+ * The iconId of this item
7
+ */
8
+ iconId: IconId;
9
+ /**
10
+ * The URL of the image resource to use instead of iconId. If this is set iconId is ignored
11
+ */
12
+ srcUrl?: string;
13
+ /**
14
+ * Whether the button is active or not.
15
+ */
16
+ isActive?: boolean;
17
+ /**
18
+ * Click event handler
19
+ */
20
+ onClick?: React.MouseEventHandler<HTMLButtonElement>;
21
+ /**
22
+ * Styles to be applied to this button
23
+ */
24
+ sx?: SxProps;
25
+ /**
26
+ * Badge component to be positionanted at the bottom-right corner
27
+ */
28
+ badgeIconProps?: IconProps;
29
+ /**
30
+ * Set a border in navbar button. false by default.
31
+ */
32
+ highlighted?: boolean;
33
+ };
34
+ /**
35
+ * The usual entry to be displayed in a Navbar component. Use the `isActive`
36
+ * state to true when the user is in a view represented by this button
37
+ */
38
+ declare const NavbarButton: React.ForwardRefExoticComponent<NavbarButtonProps & React.RefAttributes<HTMLButtonElement>>;
39
+ export default NavbarButton;
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ export type NavbarHeaderProps = {
3
+ /**
4
+ * The title to show in this header
5
+ */
6
+ text: string;
7
+ };
8
+ /**
9
+ * A header component to be used at the top of the drawer of a Navbar component.
10
+ */
11
+ declare const NavbarHeader: ({ text }: NavbarHeaderProps) => JSX.Element;
12
+ export default NavbarHeader;
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+ export type NavbarLogoProps = {
3
+ /**
4
+ * Image src property to be used as logo
5
+ */
6
+ src: string;
7
+ /**
8
+ * Click event handler
9
+ */
10
+ onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
11
+ };
12
+ /**
13
+ * The main Navbar logo to be used in the top of the Navbar component.
14
+ */
15
+ declare const NavbarLogo: React.ForwardRefExoticComponent<NavbarLogoProps & React.RefAttributes<HTMLButtonElement>>;
16
+ export default NavbarLogo;
@@ -0,0 +1,4 @@
1
+ export { default as Navbar, NavbarProps } from './Navbar';
2
+ export { default as NavbarButton, NavbarButtonProps } from './NavbarButton';
3
+ export { default as NavbarHeader, NavbarHeaderProps } from './NavbarHeader';
4
+ export { default as NavbarLogo, NavbarLogoProps } from './NavbarLogo';
@@ -0,0 +1,11 @@
1
+ import * as React from 'react';
2
+ export type DonutFocusOverlayProps = {
3
+ isVisible: boolean;
4
+ elementRef?: React.RefObject<HTMLElement | null>;
5
+ padding?: number;
6
+ donutWidth?: number;
7
+ chipLabel?: string;
8
+ chipPosition?: 'left' | 'right';
9
+ };
10
+ declare const DonutFocusOverlay: ({ isVisible, elementRef, padding, donutWidth, chipLabel, chipPosition }: DonutFocusOverlayProps) => JSX.Element | null;
11
+ export default DonutFocusOverlay;
@@ -0,0 +1 @@
1
+ export { default as DonutFocusOverlay, DonutFocusOverlayProps } from './DonutFocusOverlay';
@@ -0,0 +1,31 @@
1
+ /// <reference types="react" />
2
+ export type PagerProps = {
3
+ /**
4
+ * The current page number, starting from 1
5
+ * */
6
+ page: number;
7
+ /**
8
+ * The size of the page
9
+ */
10
+ pageSize: number;
11
+ /**
12
+ * The list of allowed page sizes
13
+ * A Select will be displayed to change the page size, only if specified
14
+ */
15
+ allowedPageSizes?: number[];
16
+ /**
17
+ * The total number of elements
18
+ */
19
+ total: number;
20
+ /**
21
+ * Event fired when the page number or page size is changed.
22
+ * It will require a page refresh and update of the page and pageSize properties
23
+ */
24
+ onPageChange: (page: number, pageSize: number) => void;
25
+ };
26
+ /**
27
+ * A pager displays information about the current page and the total number of elements,
28
+ * allowing the user to navigate between pages.
29
+ */
30
+ declare const Pager: ({ page, pageSize, total, allowedPageSizes, onPageChange }: PagerProps) => JSX.Element;
31
+ export default Pager;
@@ -0,0 +1 @@
1
+ export { default as Pager } from './Pager';
@@ -0,0 +1,26 @@
1
+ /// <reference types="react" />
2
+ import { PopoverProps as MuiPopoverProps } from '@mui/material/Popover';
3
+ export type PopoverProps = Pick<MuiPopoverProps, 'children' | 'anchorEl' | 'sx' | 'disableEscapeKeyDown' | 'onTransitionEnd' | 'onMouseUp'> & {
4
+ /**
5
+ * The event triggered when clicking on the backdrop or Escape key is pushed.
6
+ * Required to close the popover. Usually, it should set anchorEl to undefined.
7
+ */
8
+ onClose: (event: object, reason: 'backdropClick' | 'escapeKeyDown') => void;
9
+ /** This prop is used to indicate the horizontal direction in which you want the popover to open having as reference point the origin of the popover. */
10
+ horizontalAlign?: 'left' | 'center' | 'right';
11
+ /** This prop is used to indicate the horizontal origin position as reference point the origin of the popover. */
12
+ anchorHorizontalOrigin?: 'left' | 'center' | 'right';
13
+ /** This prop is used to indicate the vertical direction in which you want the popover to open having as reference point the origin of the popover. */
14
+ verticalAlign?: 'bottom' | 'center' | 'top';
15
+ /** This prop is used to indicate the vertical origin position as reference point the origin of the popover. */
16
+ anchorVerticalAlign?: 'bottom' | 'center' | 'top';
17
+ /** If `true`, the modal will not restore focus to previously focused element once modal is hidden or unmounted.*/
18
+ disableRestoreFocus?: boolean;
19
+ };
20
+ /**
21
+ * A Popover can be used to display some content on top of another.
22
+ * It is shown when the anchor element is set and hidden when unset.
23
+ * By default it is positioned below the anchor element.
24
+ */
25
+ declare const Popover: ({ horizontalAlign, anchorHorizontalOrigin, verticalAlign, anchorVerticalAlign, ...props }: PopoverProps) => JSX.Element;
26
+ export default Popover;
@@ -0,0 +1,2 @@
1
+ import { Components, Theme } from '@mui/material';
2
+ export declare const popoverTheme: Components<Theme>['MuiPopover'];
@@ -0,0 +1,21 @@
1
+ import * as React from 'react';
2
+ export type PopoverActionsProps = {
3
+ /**
4
+ * Content to be displayed on the left side of the popover.
5
+ */
6
+ leftContent?: React.ReactNode;
7
+ /**
8
+ * Content to be displayed on the left side of the popover.
9
+ */
10
+ rightContent?: React.ReactNode;
11
+ /**
12
+ * Custom styles for the PopoverActions component.
13
+ */
14
+ sx?: React.CSSProperties;
15
+ };
16
+ /**
17
+ * To be used as last child of a Popover component.
18
+ * Use this to add actions to the Popover, like Buttons, MenuButtons, etc.
19
+ */
20
+ declare const PopoverActions: ({ leftContent, rightContent, sx }: PopoverActionsProps) => JSX.Element;
21
+ export default PopoverActions;
@@ -0,0 +1,2 @@
1
+ export { default as Popover, PopoverProps } from './Popover';
2
+ export { default as PopoverActions } from './PopoverActions';
@@ -0,0 +1,35 @@
1
+ /// <reference types="react" />
2
+ declare const circularSizes: {
3
+ readonly XS: "20px";
4
+ readonly SM: "24px";
5
+ readonly MD: "40px";
6
+ };
7
+ export type CircularProgressProps = {
8
+ /**
9
+ * The value to fill the circular progress bar. Only applied with determinate variant
10
+ */
11
+ value?: number;
12
+ /**
13
+ * The label to set on the circular progress. Only applied with determinate variant
14
+ */
15
+ label?: string;
16
+ /**
17
+ * The size of the circle.
18
+ */
19
+ size?: keyof typeof circularSizes;
20
+ /**
21
+ * Whether the progress is indeterminate or not.
22
+ * If indeterminate, the value prop is ignored.
23
+ */
24
+ variant?: 'determinate' | 'indeterminate';
25
+ /**
26
+ * The color of the circular progress.
27
+ */
28
+ color?: string;
29
+ /**
30
+ * Show the circular background not filled in circular progress.
31
+ */
32
+ showCircularBackground?: boolean;
33
+ };
34
+ declare const CircularProgress: ({ value, label, variant, color, size, showCircularBackground }: CircularProgressProps) => JSX.Element;
35
+ export default CircularProgress;
@@ -0,0 +1,19 @@
1
+ /// <reference types="react" />
2
+ import { LinearProgressProps as MuiLinearProgressProps } from '@mui/material/LinearProgress';
3
+ export type LinearProgressProps = Pick<MuiLinearProgressProps, 'value'> & {
4
+ /**
5
+ * Whether the progress is indeterminate or not.
6
+ * If indeterminate, the value prop is ignored.
7
+ */
8
+ variant?: 'determinate' | 'indeterminate';
9
+ /**
10
+ * The color of the progress bar.
11
+ */
12
+ color?: string;
13
+ /**
14
+ * The color of the progress bar background.
15
+ */
16
+ backgroundColor?: string;
17
+ };
18
+ declare const LinearProgress: ({ color, backgroundColor, variant, ...rest }: LinearProgressProps) => JSX.Element;
19
+ export default LinearProgress;
@@ -0,0 +1,2 @@
1
+ import { Components, Theme } from '@mui/material';
2
+ export declare const linearProgressTheme: Components<Theme>['MuiLinearProgress'];
@@ -0,0 +1,2 @@
1
+ export { default as LinearProgress, LinearProgressProps } from './LinearProgress';
2
+ export { default as CircularProgress, CircularProgressProps } from './CircularProgress';
@@ -0,0 +1,18 @@
1
+ import { SxProps } from '@mui/material';
2
+ import * as React from 'react';
3
+ export type HorizontalScrollableProps = React.PropsWithChildren<{
4
+ /**
5
+ * The css style to apply to the chart container.
6
+ * Use this to set specific with, padding, background color, etc.
7
+ */
8
+ style?: SxProps;
9
+ /**
10
+ * The distance scrolled by each click, in pixels.
11
+ */
12
+ stepDistance?: number;
13
+ }>;
14
+ /**
15
+ * A horizontal scrollable component to display groups of data in horizontal scroll.
16
+ */
17
+ declare const HorizontalScrollable: ({ style, children, stepDistance }: HorizontalScrollableProps) => JSX.Element;
18
+ export default HorizontalScrollable;
@@ -0,0 +1 @@
1
+ export { default as HorizontalScrollable, HorizontalScrollableProps } from './HorizontalScrollable';