@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,22 @@
1
+ /// <reference types="react" />
2
+ declare const imageHeights: {
3
+ readonly sm: "104px";
4
+ readonly md: "130px";
5
+ };
6
+ export type CardImageProps = {
7
+ /**
8
+ * The URL of the image to display.
9
+ */
10
+ imageUrl: string;
11
+ /**
12
+ * The size of the image.
13
+ */
14
+ size?: keyof typeof imageHeights;
15
+ };
16
+ /**
17
+ * A component that displays an image within a Card.
18
+ * It should be placed as the first child of a Card.
19
+ * It should not be used along with CardTitleWithIcon.
20
+ */
21
+ declare const CardImage: ({ imageUrl, size }: CardImageProps) => JSX.Element;
22
+ export default CardImage;
@@ -0,0 +1,23 @@
1
+ /// <reference types="react" />
2
+ export type CardStatusProps = {
3
+ /**
4
+ * The status to display.
5
+ */
6
+ text: string;
7
+ /**
8
+ * The background color of the status.
9
+ */
10
+ backgroundColor?: string;
11
+ /**
12
+ * Whether the status must be displayed with a moving bars animation.
13
+ */
14
+ animated?: boolean;
15
+ };
16
+ /**
17
+ * A component that displays a status inside a Card.
18
+ * It should be placed immediately after the CardImage.
19
+ * By default, the status has the primary color, but it can be customized.
20
+ * Also, it can be animated (with a background moving bars animation).
21
+ */
22
+ declare const CardStatus: ({ text, animated, backgroundColor }: CardStatusProps) => JSX.Element;
23
+ export default CardStatus;
@@ -0,0 +1,22 @@
1
+ /// <reference types="react" />
2
+ export type CardTableProps = {
3
+ /**
4
+ * The rows of the table to display.
5
+ */
6
+ rows: {
7
+ /**
8
+ * Left side of the table.
9
+ */
10
+ label: string;
11
+ /**
12
+ * Right side of the table.
13
+ */
14
+ value: string;
15
+ }[];
16
+ };
17
+ /**
18
+ * A component that displays a two column table inside a Card, so it can show key/value pairs.
19
+ * It should be placed just before the CardActions.
20
+ */
21
+ declare const CardTable: ({ rows }: CardTableProps) => JSX.Element;
22
+ export default CardTable;
@@ -0,0 +1,22 @@
1
+ /// <reference types="react" />
2
+ import { SxProps, Theme } from '@mui/material';
3
+ export type CardTitleProps = {
4
+ /**
5
+ * The title to display.
6
+ */
7
+ title: string;
8
+ /**
9
+ * Sets if the title can be multiline or single line.
10
+ * @variation false sets the title to be displayed on a single line, using ellipsis if necessary.
11
+ * @variation true sets the title to be displayed on multiple lines if necessary.
12
+ */
13
+ multiline?: boolean;
14
+ sx?: SxProps<Theme>;
15
+ };
16
+ /**
17
+ * A component that displays a card title inside a Card.
18
+ * It should be used in cards having a CardImage, being set after the CardImage (and CardStatus, if any).
19
+ * It should not be used along with CardTitleWithIcon.
20
+ */
21
+ declare const CardTitle: ({ title, sx, multiline }: CardTitleProps) => JSX.Element;
22
+ export default CardTitle;
@@ -0,0 +1,29 @@
1
+ /// <reference types="react" />
2
+ import { IconId } from '../icon/Icon';
3
+ export type CardTitleWithIconProps = {
4
+ /**
5
+ * The title to display.
6
+ */
7
+ title: string;
8
+ /**
9
+ * The subtitle to display.
10
+ */
11
+ subtitle?: string;
12
+ /**
13
+ * The icon to display.
14
+ */
15
+ iconId: IconId;
16
+ /**
17
+ * The background color of the icon.
18
+ * By default, it uses the primary color.
19
+ */
20
+ iconBgColor?: string;
21
+ };
22
+ /**
23
+ * A component that displays a title with an icon inside a Card, and optionally a subtitle.
24
+ * The title and subtitle are displayed in a single line each, using ellipsis if necessary.
25
+ * It should be placed as first child of a Card.
26
+ * It should not be used along with CardTitle and CardImage.
27
+ */
28
+ declare const CardTitleWithIcon: ({ title, subtitle, iconId, iconBgColor }: CardTitleWithIconProps) => JSX.Element;
29
+ export default CardTitleWithIcon;
@@ -0,0 +1,97 @@
1
+ import { BoxProps } from '@mui/material';
2
+ import * as React from 'react';
3
+ import { IconId } from '../icon/Icon';
4
+ import { EnhancedCardImageProps } from './EnhancedCardImage';
5
+ import { EnhancedCardTitleProps } from './EnhancedCardTitle';
6
+ import { EnhancedCardSubtitleProps } from './EnhancedCardSubtitle';
7
+ import { EnhancedCardRowProps } from './EnhancedCardRow';
8
+ export interface EnhancedCardCompound extends React.ForwardRefExoticComponent<EnhancedCardProps & React.RefAttributes<HTMLDivElement>> {
9
+ Image: React.FC<EnhancedCardImageProps>;
10
+ Title: React.FC<EnhancedCardTitleProps>;
11
+ Subtitle: React.FC<EnhancedCardSubtitleProps>;
12
+ Row: React.FC<EnhancedCardRowProps>;
13
+ }
14
+ export type EnhancedCardSize = 'S' | 'M' | 'L' | 'XL' | 'XXL';
15
+ type Action = {
16
+ iconId: IconId;
17
+ text?: string;
18
+ onClick: (event?: React.MouseEvent) => void;
19
+ enableAuxClick?: boolean;
20
+ disabled?: boolean;
21
+ disabledTooltip?: string;
22
+ };
23
+ export type EnhancedCardProps = React.PropsWithChildren<{
24
+ /**
25
+ * Variant of the card.'
26
+ */
27
+ variant?: 'default' | 'selectable';
28
+ /**
29
+ * Tooltip of the card
30
+ */
31
+ tooltip?: string;
32
+ /**
33
+ * Size of the card. Default is 'M'.
34
+ */
35
+ size?: EnhancedCardSize;
36
+ /**
37
+ * Left icon of the card.
38
+ */
39
+ leftIconId?: IconId;
40
+ /**
41
+ * Right icon of the card.
42
+ */
43
+ rightIconId?: IconId;
44
+ /**
45
+ * Disables hover effect. Default is false.
46
+ */
47
+ disableHover?: boolean;
48
+ /**
49
+ * Cursor style for the card.
50
+ */
51
+ cursor?: string;
52
+ /**
53
+ * Define properties for the action button. Button will be rendered if actionProps is defined.
54
+ */
55
+ actionProps?: Action | Action[];
56
+ /**
57
+ * Show action button on hover. Default is false.
58
+ */
59
+ showActionOnHover?: boolean;
60
+ /**
61
+ * Component to show in hover.
62
+ */
63
+ hoverComponent?: React.ReactNode;
64
+ /**
65
+ * Define properties for the badge button. Button will be rendered if badgeProps is defined.
66
+ */
67
+ badgeProps?: {
68
+ text: string;
69
+ onClick?: () => void;
70
+ };
71
+ /**
72
+ * Disables border around the content.
73
+ */
74
+ borderless?: boolean;
75
+ /**
76
+ * Apply selected card styles.
77
+ */
78
+ selected?: boolean;
79
+ /**
80
+ * Data test.
81
+ */
82
+ dataTest?: string;
83
+ /**
84
+ * Disable padding around the content.
85
+ */
86
+ disablePadding?: boolean;
87
+ /**
88
+ * Disable gap between children.
89
+ */
90
+ disableGap?: boolean;
91
+ /**
92
+ * If `true` the onClick callback will also be triggered on aux click. Default is `false`.
93
+ */
94
+ enableAuxClick?: boolean;
95
+ } & Pick<BoxProps, 'onClick' | 'onMouseDown'>>;
96
+ declare const _default: EnhancedCardCompound;
97
+ export default _default;
@@ -0,0 +1,43 @@
1
+ import React from 'react';
2
+ import { SxProps } from '@mui/material';
3
+ import { EnhancedCardSize } from './EnhancedCard';
4
+ import { AvatarProps } from '../avatar';
5
+ export interface EnhancedCardImageProps {
6
+ /**
7
+ * Image source. It can be a URL or a base64 string.
8
+ */
9
+ src: string;
10
+ /**
11
+ * Variant of the image. Default is 'rounded'
12
+ */
13
+ variant?: AvatarProps['variant'];
14
+ /**
15
+ * Custom styles for the image container.
16
+ */
17
+ sx?: SxProps;
18
+ /**
19
+ * Size of the image. Default is determined by the parent EnhancedCard size.
20
+ * Use it carefully, it can break the layout.
21
+ */
22
+ size?: EnhancedCardSize;
23
+ /**
24
+ * If true, the image will be displayed without border. Default is defined by the parent EnhancedCard.
25
+ */
26
+ borderless?: boolean;
27
+ /**
28
+ * If true, the image will keep its aspect ratio. Default is false.
29
+ */
30
+ keepAspectRatio?: boolean;
31
+ /**
32
+ * Extra width for the image container. Default is determined by the parent EnhancedCard.
33
+ * This prop is only used when borderless is false.
34
+ * Use it carefully, it can break the layout.
35
+ */
36
+ extraWidth?: number;
37
+ }
38
+ /**
39
+ * EnhancedCardImage component is used to display an image in an EnhancedCard.
40
+ * It must be used as a child of EnhancedCard.
41
+ */
42
+ declare const EnhancedCardImage: React.FC<EnhancedCardImageProps>;
43
+ export default EnhancedCardImage;
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ import { EnhancedCardSubtitleProps } from './EnhancedCardSubtitle';
3
+ import { EnhancedCardTitleProps } from './EnhancedCardTitle';
4
+ export interface EnhancedCardRowProps {
5
+ gap?: string;
6
+ justifyContent?: 'flex-start' | 'center' | 'flex-end' | 'space-between' | 'space-around' | 'space-evenly';
7
+ titleProps?: EnhancedCardTitleProps;
8
+ subtitleProps?: EnhancedCardSubtitleProps;
9
+ }
10
+ declare const EnhancedCardRow: React.FC<EnhancedCardRowProps>;
11
+ export default EnhancedCardRow;
@@ -0,0 +1,26 @@
1
+ import React from 'react';
2
+ import { TypographyProps } from '../typography';
3
+ export interface EnhancedCardSubtitleProps {
4
+ /**
5
+ * Text to be displayed.
6
+ */
7
+ text: string;
8
+ /**
9
+ * Justify the text. Default is 'center'.
10
+ */
11
+ justify?: 'left' | 'center' | 'right';
12
+ /**
13
+ * Cursor style. Default is the same as the parent EnhancedCard.
14
+ */
15
+ cursor?: 'pointer' | 'default';
16
+ /**
17
+ * Typography variant. Default is 'body2'.
18
+ */
19
+ variant?: TypographyProps['variant'];
20
+ /**
21
+ * Data test id. By default the dataTest of parent EnhancedCard is used to compose a dataTest string.
22
+ */
23
+ dataTest?: string;
24
+ }
25
+ declare const EnhancedCardSubtitle: React.FC<EnhancedCardSubtitleProps>;
26
+ export default EnhancedCardSubtitle;
@@ -0,0 +1,38 @@
1
+ import React from 'react';
2
+ import { TypographyProps } from '../typography';
3
+ export interface EnhancedCardTitleProps {
4
+ /**
5
+ * Text to be displayed.
6
+ */
7
+ text: string;
8
+ /**
9
+ * Justify the text. Default is 'center'.
10
+ */
11
+ justify?: 'left' | 'center' | 'right';
12
+ /**
13
+ * If true, the title will have a fixed height according to its variant and size. Default is false.
14
+ */
15
+ forceHeight?: boolean;
16
+ /**
17
+ * Cursor style. Default is the same as the parent EnhancedCard.
18
+ */
19
+ cursor?: 'pointer' | 'default';
20
+ /**
21
+ * Typography variant. Default is 'body2'.
22
+ */
23
+ variant?: TypographyProps['variant'];
24
+ /**
25
+ * Size of the title. By default the size is determined according to parent EnhancedCard size.
26
+ */
27
+ size?: 'S' | 'M';
28
+ /**
29
+ * Data test id. By default the dataTest of parent EnhancedCard is used to compose a dataTest string.
30
+ */
31
+ dataTest?: string;
32
+ }
33
+ /**
34
+ * EnhancedCardTitle component is used to display a title in an EnhancedCard.
35
+ * It must be used as a child of EnhancedCard.
36
+ */
37
+ declare const EnhancedCardTitle: React.FC<EnhancedCardTitleProps>;
38
+ export default EnhancedCardTitle;
@@ -0,0 +1,14 @@
1
+ export { default as Card, CardProps } from './Card';
2
+ export { default as CardActions, CardActionsProps } from './CardActions';
3
+ export { default as CardChips, CardChipsProps } from './CardChips';
4
+ export { default as CardDescription, CardDescriptionProps } from './CardDescription';
5
+ export { default as CardImage, CardImageProps } from './CardImage';
6
+ export { default as CardStatus, CardStatusProps } from './CardStatus';
7
+ export { default as CardTable, CardTableProps } from './CardTable';
8
+ export { default as CardTitle, CardTitleProps } from './CardTitle';
9
+ export { default as CardTitleWithIcon, CardTitleWithIconProps } from './CardTitleWithIcon';
10
+ export { default as EnhancedCard, EnhancedCardProps } from './EnhancedCard';
11
+ export { EnhancedCardImageProps } from './EnhancedCardImage';
12
+ export { EnhancedCardTitleProps } from './EnhancedCardTitle';
13
+ export { EnhancedCardSubtitleProps } from './EnhancedCardSubtitle';
14
+ export { EnhancedCardRowProps } from './EnhancedCardRow';
@@ -0,0 +1,84 @@
1
+ import * as React from 'react';
2
+ import './EchartsConfig';
3
+ import { IncrementLabelType } from '../../propTypes/IncrementLabel';
4
+ import { ChartTooltipEntryFormatter } from '../../utils/ChartUtils';
5
+ type YAxisLabelFormatter = (value: number) => string;
6
+ export type BarChartProps = {
7
+ /**
8
+ * The css style to apply to the chart container.
9
+ * Use this to set specific with, padding, background color, etc.
10
+ */
11
+ style?: React.CSSProperties;
12
+ /**
13
+ * The categories to display on the x axis.
14
+ */
15
+ categories: string[];
16
+ /**
17
+ * Optional callback to be called when the chart is clicked.
18
+ */
19
+ onClick?: (data: any) => void;
20
+ /**
21
+ * Whether to show the skeleton or not.
22
+ */
23
+ isLoading?: boolean;
24
+ /**
25
+ * Formatter used to format yAxis values.
26
+ */
27
+ yAxisLabelFormatter?: YAxisLabelFormatter;
28
+ /**
29
+ * Formatter function used to format values shown in tooltip.
30
+ */
31
+ tooltipEntryFormatter?: ChartTooltipEntryFormatter;
32
+ /**
33
+ * The series to display in the chart.
34
+ */
35
+ series: {
36
+ /**
37
+ * The color to use for this item.
38
+ */
39
+ color: string;
40
+ /**
41
+ * The text to use for this item as name in tooltip.
42
+ */
43
+ tooltipName: string;
44
+ /**
45
+ * The comparisonColor to use for this item.
46
+ */
47
+ comparisonColor?: string;
48
+ /**
49
+ * The text to use for this item as name in tooltip.
50
+ */
51
+ comparisonTooltipName?: string;
52
+ data: {
53
+ /**
54
+ * The value to display in the chart for this serie item.
55
+ */
56
+ value: number;
57
+ /**
58
+ * The text shown in label to represent the increment value of this item.
59
+ */
60
+ incrementLabelValue?: string;
61
+ /**
62
+ * The style to use to represent the label for this serie.
63
+ */
64
+ incrementLabelType?: IncrementLabelType;
65
+ /**
66
+ * The text to use for this item as value in tooltip.
67
+ */
68
+ tooltipValue: string;
69
+ /**
70
+ * The comparison value to display in the chart for this serie item.
71
+ */
72
+ comparisonValue?: number;
73
+ /**
74
+ * The text to use for this item as value in tooltip.
75
+ */
76
+ comparisonTooltipValue?: string;
77
+ }[];
78
+ }[];
79
+ };
80
+ /**
81
+ * A bar chart component to display numeric data grouped by categories and series.
82
+ */
83
+ declare const BarChart: ({ style, isLoading, series, categories, yAxisLabelFormatter, tooltipEntryFormatter, onClick }: BarChartProps) => JSX.Element;
84
+ export default BarChart;
@@ -0,0 +1,35 @@
1
+ /// <reference types="react" />
2
+ import { ChartTooltipEntryFormatter } from '../../utils/ChartUtils';
3
+ type YAxisLabelFormatter = (value: number) => string;
4
+ export type CategorizedChartProps = {
5
+ /**
6
+ * The css style to apply to the chart container.
7
+ * Use this to set specific with, padding, background color, etc.
8
+ */
9
+ style?: React.CSSProperties;
10
+ /**
11
+ * The categories to display on the x axis.
12
+ */
13
+ categories: string[];
14
+ /**
15
+ * Optional callback to be called when the chart is clicked.
16
+ */
17
+ onClick?: (data: any) => void;
18
+ /**
19
+ * Whether to show the skeleton or not.
20
+ */
21
+ isLoading?: boolean;
22
+ /**
23
+ * Formatter used to format yAxis values.
24
+ */
25
+ yAxisLabelFormatter?: YAxisLabelFormatter;
26
+ /**
27
+ * Formatter used to format ySecondaryAxis values.
28
+ */
29
+ ySecondaryAxisLabelFormatter?: YAxisLabelFormatter;
30
+ /**
31
+ * Formatter function used to format values shown in tooltip.
32
+ */
33
+ tooltipEntryFormatter?: ChartTooltipEntryFormatter;
34
+ };
35
+ export {};
@@ -0,0 +1,8 @@
1
+ import { IncrementLabelType } from '../../propTypes/IncrementLabel';
2
+ import { IconId } from '../icon/Icon';
3
+ import { TooltipComponentOption } from 'echarts';
4
+ /**
5
+ * Get an icon as a base64 image
6
+ */
7
+ export declare const getIconDataUri: (iconId: IconId, iconType?: IncrementLabelType) => string;
8
+ export declare const tooltipOptions: TooltipComponentOption;
@@ -0,0 +1,79 @@
1
+ import * as React from 'react';
2
+ import './EchartsConfig';
3
+ import { ChartTooltipEntryFormatter } from '../../utils/ChartUtils';
4
+ import { IncrementLabelType } from '../../propTypes/IncrementLabel';
5
+ export type DonutChartProps = {
6
+ /**
7
+ * The css style to apply to the chart container.
8
+ * Use this to set specific with, padding, background color, etc.
9
+ */
10
+ style?: React.CSSProperties;
11
+ /**
12
+ * Optional callback to be called when the chart is clicked.
13
+ */
14
+ onClick?: (data: any) => void;
15
+ /**
16
+ * Whether to show the skeleton or not.
17
+ */
18
+ isLoading?: boolean;
19
+ /**
20
+ * Formatter function used to format values shown in tooltip.
21
+ */
22
+ tooltipEntryFormatter?: ChartTooltipEntryFormatter;
23
+ /**
24
+ * The series to display in the chart.
25
+ */
26
+ series: {
27
+ /**
28
+ * The name of the series.
29
+ */
30
+ name: string;
31
+ /**
32
+ * The name of the comparison series.
33
+ */
34
+ comparisonName?: string;
35
+ /**
36
+ * Formatted value to be shown in the center.
37
+ */
38
+ value: string;
39
+ /**
40
+ * Formatted increment to be shown in the center.
41
+ */
42
+ incrementLabelValue?: string;
43
+ /**
44
+ * The style to show the increment at the center of donut.
45
+ */
46
+ incrementLabelType?: IncrementLabelType;
47
+ /**
48
+ * The values to display in the chart for this series.
49
+ * The values must be in the same order and quantity as the categories.
50
+ */
51
+ data: {
52
+ /**
53
+ * The value for this data item. It should be greater than 0.
54
+ */
55
+ value: number;
56
+ /**
57
+ * The label for this data item.
58
+ */
59
+ label: string;
60
+ /**
61
+ * The comparison value for this data item. It should be greater or equal than 0.
62
+ */
63
+ comparisonValue?: number;
64
+ /**
65
+ * The comparison label for this data item.
66
+ */
67
+ comparisonLabel?: string;
68
+ /**
69
+ * The color for this data item.
70
+ */
71
+ color: string;
72
+ }[];
73
+ }[];
74
+ };
75
+ /**
76
+ * A donut chart component to display numeric data grouped by categories and series.
77
+ */
78
+ declare const DonutChart: ({ style, isLoading, series, tooltipEntryFormatter, onClick }: DonutChartProps) => JSX.Element;
79
+ export default DonutChart;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { TypographyProps } from '../typography';
3
+ export type DonutChartLegendItemProps = {
4
+ label: string;
5
+ variant: Extract<TypographyProps['variant'], 'body2' | 'caption'>;
6
+ colors: string[];
7
+ };
8
+ declare const DonutChartLegendItem: ({ label, variant, colors }: DonutChartLegendItemProps) => JSX.Element;
9
+ export default DonutChartLegendItem;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,84 @@
1
+ import * as React from 'react';
2
+ import './EchartsConfig';
3
+ import { IncrementLabelType } from '../../propTypes/IncrementLabel';
4
+ import { ChartTooltipEntryFormatter } from '../../utils/ChartUtils';
5
+ type YAxisLabelFormatter = (value: number) => string;
6
+ export type FunnelChartProps = {
7
+ /**
8
+ * The css style to apply to the chart container.
9
+ * Use this to set specific with, padding, background color, etc.
10
+ */
11
+ style?: React.CSSProperties;
12
+ /**
13
+ * The categories to display on the x axis.
14
+ */
15
+ categories: string[];
16
+ /**
17
+ * Optional callback to be called when the chart is clicked.
18
+ */
19
+ onClick?: (data: any) => void;
20
+ /**
21
+ * Whether to show the skeleton or not.
22
+ */
23
+ isLoading?: boolean;
24
+ /**
25
+ * Formatter used to format yAxis values.
26
+ */
27
+ yAxisLabelFormatter?: YAxisLabelFormatter;
28
+ /**
29
+ * Formatter function used to format values shown in tooltip.
30
+ */
31
+ tooltipEntryFormatter?: ChartTooltipEntryFormatter;
32
+ /**
33
+ * The series to display in the chart.
34
+ */
35
+ series: {
36
+ /**
37
+ * The values to display in the chart for this series.
38
+ * The values must be in the same order and quantity as the categories.
39
+ */
40
+ data: {
41
+ /**
42
+ * The value to display in the chart for this serie item.
43
+ */
44
+ value: number;
45
+ /**
46
+ * The color to use for this item.
47
+ */
48
+ color: string;
49
+ /**
50
+ * The label to display in the chart for this series.
51
+ */
52
+ incrementLabelValue?: string;
53
+ /**
54
+ * The style to use to represent the label for this serie.
55
+ */
56
+ incrementLabelType?: IncrementLabelType;
57
+ /**
58
+ * The name to use for this item in tooltip.
59
+ */
60
+ tooltipName: string;
61
+ /**
62
+ * The label to use in the transition between this item an the following. If this is the last item, it will be ignored.
63
+ */
64
+ differenceToNextStepLabel?: string;
65
+ /**
66
+ * The comparison value to display in the chart for this serie item.
67
+ */
68
+ comparisonValue?: number;
69
+ /**
70
+ * The comparisonColor to use for this item.
71
+ */
72
+ comparisonColor?: string;
73
+ /**
74
+ * The comparison name to use for this item in tooltip.
75
+ */
76
+ comparisonTooltipName?: string;
77
+ }[];
78
+ }[];
79
+ };
80
+ /**
81
+ * A funnel chart component to display numeric data grouped by steps and series.
82
+ */
83
+ declare const FunnelChart: ({ style, isLoading, series, categories, yAxisLabelFormatter, tooltipEntryFormatter, onClick }: FunnelChartProps) => JSX.Element;
84
+ export default FunnelChart;