@geotab/zenith 3.7.0 → 3.8.0-beta.0

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 (2290) hide show
  1. package/README.md +18 -1
  2. package/dist/absolute/absolute.js +3 -1
  3. package/dist/accordion/accordion.js +1 -1
  4. package/dist/accordion/accordionItem/accordionItem.js +1 -9
  5. package/dist/advancedGroupsFilter/advancedGroupsFilter.js +3 -0
  6. package/dist/advancedGroupsFilter/advancedGroupsFilterForm.js +2 -0
  7. package/dist/advancedGroupsFilter/advancedGroupsFilterFormHelper.js +1 -4
  8. package/dist/advancedGroupsFilter/advancedGroupsFilterFormSection.js +9 -2
  9. package/dist/advancedGroupsFilter/advancedGroupsFilterHelper.js +3 -1
  10. package/dist/advancedGroupsFilter/advancedGroupsFilterSectionTooltip.js +1 -0
  11. package/dist/alert/alert.js +45 -11
  12. package/dist/alert/hooks/useAlert.js +3 -3
  13. package/dist/alert/utils/hideAlertCallback.js +3 -2
  14. package/dist/alertRaw/alertRaw.js +1 -0
  15. package/dist/alertRaw/components/alertAnimation.js +5 -17
  16. package/dist/anchor/anchor.js +1 -1
  17. package/dist/banner/banner.js +3 -3
  18. package/dist/banner/bannerMultipLine.js +1 -0
  19. package/dist/banner/bannerSingleLine.js +1 -0
  20. package/dist/banner/bannerUtils.js +5 -5
  21. package/dist/banner/typeIcon.js +7 -7
  22. package/dist/banner/utils/isBannerTarget.d.ts +1 -0
  23. package/dist/banner/utils/isBannerTarget.js +11 -0
  24. package/dist/betaPill/betaPill.js +37 -0
  25. package/dist/betaPill/betaPillContext.js +1 -1
  26. package/dist/bookmark/bookmark.js +2 -0
  27. package/dist/bulkEditControl/bulkEditControl.d.ts +1 -1
  28. package/dist/bulkEditControl/bulkEditControl.js +6 -1
  29. package/dist/button/button.d.ts +2 -1
  30. package/dist/button/button.js +3 -3
  31. package/dist/button/buttonType.d.ts +1 -1
  32. package/dist/calendar/calendar.js +23 -0
  33. package/dist/calendar/calendarUtils.js +50 -0
  34. package/dist/calendar/dateUtils.js +35 -19
  35. package/dist/card/card.d.ts +6 -6
  36. package/dist/card/card.js +1 -0
  37. package/dist/card/components/cardButton/cardButton.d.ts +2 -1
  38. package/dist/card/components/cardButton/cardButton.js +7 -4
  39. package/dist/card/components/cardToggle/cardToggle.js +1 -1
  40. package/dist/card/components/status.js +8 -2
  41. package/dist/card/components/title.js +4 -8
  42. package/dist/card/components/titleLink.js +2 -2
  43. package/dist/card/helpers/getDefaultFullWidthValue.js +1 -1
  44. package/dist/cardContainer/hooks/useAbsoluteSize.js +2 -1
  45. package/dist/cards/cards.js +1 -1
  46. package/dist/cards/cardsRow.js +1 -1
  47. package/dist/chart/accessibleChart/accessibleChart.js +1 -1
  48. package/dist/chart/accessibleChart/accessibleChartNarrative.js +267 -1
  49. package/dist/chart/accessibleChart/accessibleChartTable.js +28 -0
  50. package/dist/chart/barChart/getBarTooltipItems.js +11 -10
  51. package/dist/chart/barChart/getDefaultDatasetStyle.js +1 -10
  52. package/dist/chart/barChart/getDefaultOptions.js +16 -14
  53. package/dist/chart/barChart.js +2 -10
  54. package/dist/chart/chart.js +24 -0
  55. package/dist/chart/chartAxis/chartAxis.js +2 -0
  56. package/dist/chart/chartInsight/chartInsight.js +1 -1
  57. package/dist/chart/lineChart/getDatasetColor.js +1 -10
  58. package/dist/chart/lineChart/getDefaultOptions.js +38 -27
  59. package/dist/chart/lineChart/useSummary.js +4 -2
  60. package/dist/chart/lineChart.js +2 -10
  61. package/dist/chart/pieChart/centerTextPlugin.d.ts +3 -0
  62. package/dist/chart/pieChart/centerTextPlugin.js +33 -0
  63. package/dist/chart/pieChart/getDefaultDatasetStyle.js +1 -10
  64. package/dist/chart/pieChart/getPieTooltipItems.js +4 -2
  65. package/dist/chart/pieChart/interfaces.d.ts +13 -0
  66. package/dist/chart/pieChart/pieLegendPlugin.d.ts +7 -0
  67. package/dist/chart/pieChart/pieLegendPlugin.js +45 -0
  68. package/dist/chart/pieChart/renderPieLegend.d.ts +7 -0
  69. package/dist/chart/pieChart/renderPieLegend.js +61 -0
  70. package/dist/chart/pieChart.d.ts +3 -3
  71. package/dist/chart/pieChart.js +37 -12
  72. package/dist/chart/plugins/legend/renderLegend.js +5 -3
  73. package/dist/chart/plugins/linePlugin/getInterpolatedValue.js +1 -1
  74. package/dist/chart/plugins/linePlugin/linePlugin.js +4 -2
  75. package/dist/chart/plugins/tooltip/calculatePositions.js +12 -12
  76. package/dist/chart/plugins/tooltip/renderTooltip.js +1 -1
  77. package/dist/chart/plugins/tooltip/tooltipPlugin.js +3 -2
  78. package/dist/chart/utils/getYAxisMeta.js +5 -3
  79. package/dist/chart/utils/removeTrendDataFromDatasets.js +1 -1
  80. package/dist/checkbox/checkbox.js +1 -1
  81. package/dist/checkbox/checkboxIconCheckmark.js +2 -6
  82. package/dist/checkbox/checkboxIconMinus.js +2 -6
  83. package/dist/checkboxListWithAction/checkboxListWithAction.js +29 -0
  84. package/dist/checkboxNonInteractive/checkboxNonInteractive.js +1 -3
  85. package/dist/chip/chip.d.ts +1 -0
  86. package/dist/chip/chip.js +15 -7
  87. package/dist/columnsSelector/columnsSelector.d.ts +1 -1
  88. package/dist/columnsSelector/columnsSelector.js +3 -1
  89. package/dist/columnsSelector/columnsTab/columnsTab.js +1 -0
  90. package/dist/columnsSelector/columnsTabGroup/columnsTabGroup.js +1 -0
  91. package/dist/comboboxSelected/comboboxSelected.js +3 -6
  92. package/dist/commonHelpers/arrowNavigation/components/arrowButton/arrowButton.js +1 -3
  93. package/dist/commonHelpers/arrowNavigation/hooks/useClearTimers.js +3 -1
  94. package/dist/commonHelpers/hooks/deviceProvider.js +1 -1
  95. package/dist/commonHelpers/hooks/useFetch.js +4 -2
  96. package/dist/commonHelpers/hooks/useResizeObserver.js +7 -5
  97. package/dist/commonHelpers/hooks/useThrottle.js +1 -1
  98. package/dist/commonHelpers/hooks/useTrapFocus.js +10 -6
  99. package/dist/commonHelpers/isDomEnv.js +1 -6
  100. package/dist/commonHelpers/keyboard.js +1 -4
  101. package/dist/commonHelpers/utils.js +1 -1
  102. package/dist/commonStyles/appIcons.less +3 -3
  103. package/dist/commonStyles/caption/caption.less +1 -2
  104. package/dist/commonStyles/colors/colors.less +118 -118
  105. package/dist/commonStyles/ellipsis.less +1 -1
  106. package/dist/commonStyles/fonts/roboto.less +24 -17
  107. package/dist/commonStyles/fonts/robotomono/robotomono.less +5 -4
  108. package/dist/commonStyles/fonts/robotomono.less +5 -4
  109. package/dist/commonStyles/link/link.less +10 -8
  110. package/dist/commonStyles/notSelectable.less +7 -7
  111. package/dist/commonStyles/pillStyles/pillContent.less +7 -9
  112. package/dist/commonStyles/pillStyles/pillStyles.less +1 -2
  113. package/dist/commonStyles/pillStyles/pillTextContent.less +3 -2
  114. package/dist/commonStyles/pillStyles/pillTypes.less +1 -1
  115. package/dist/commonStyles/popupMixin.less +2 -2
  116. package/dist/commonStyles/rangeFieldMixin.less +7 -7
  117. package/dist/commonStyles/selectButton.less +9 -7
  118. package/dist/commonStyles/shadows/shadows.less +1 -1
  119. package/dist/commonStyles/textInputMixin.less +2 -2
  120. package/dist/commonStyles/typography/typography.less +111 -56
  121. package/dist/commonStyles/zIndex.less +0 -4
  122. package/dist/controlledPopup/controlledPopup.d.ts +2 -5
  123. package/dist/controlledPopup/controlledPopup.js +2 -2
  124. package/dist/dataFeed/dataFeed.js +6 -7
  125. package/dist/dataFeed/dataFeedCell/dataFeedCell.js +9 -9
  126. package/dist/dataFeed/dataFeedColumnsItems.js +34 -16
  127. package/dist/dataFeed/dataFeedHeader/dataFeedHeader.js +1 -1
  128. package/dist/dataFeed/dataFeedSelectPanel/dataFeedSelectPanel.js +1 -1
  129. package/dist/dataFeed/feedItem/feedItem.js +1 -1
  130. package/dist/dataFeed/feedSelectControl/feedSelectControl.js +1 -1
  131. package/dist/dataGrid/cell/cell.js +6 -4
  132. package/dist/dataGrid/columns/actionLinkColumn/actionButtonsMobileWrapper.js +2 -6
  133. package/dist/dataGrid/columns/actionLinkColumn/actionLinkColumnWrapper.js +2 -6
  134. package/dist/dataGrid/columns/actionsColumn/actionsButton.js +3 -5
  135. package/dist/dataGrid/columns/actionsColumn/actionsColumn.js +22 -7
  136. package/dist/dataGrid/columns/actionsColumn/actionsColumnCell.js +1 -3
  137. package/dist/dataGrid/columns/basicColumn.js +2 -4
  138. package/dist/dataGrid/columns/checkboxColumn/checkboxCell.d.ts +1 -0
  139. package/dist/dataGrid/columns/checkboxColumn/checkboxCell.js +4 -2
  140. package/dist/dataGrid/columns/checkboxColumn/checkboxColumn.d.ts +1 -1
  141. package/dist/dataGrid/columns/checkboxColumn/checkboxColumnWrapper.js +3 -5
  142. package/dist/dataGrid/columns/checkboxColumn/checkboxHeaderCell.js +1 -0
  143. package/dist/dataGrid/columns/mainColumn/mainColumnWrapper.js +12 -8
  144. package/dist/dataGrid/dataGrid.js +2 -1
  145. package/dist/dataGrid/emptySearchList/emptySearchList.js +1 -0
  146. package/dist/dataGrid/entitiesListActions/actions/columnsListButton.js +1 -0
  147. package/dist/dataGrid/entitiesListActions/actions/fullscreenButton.js +27 -0
  148. package/dist/dataGrid/entitiesListActions/entitiesListActions.js +3 -6
  149. package/dist/dataGrid/headerCell/headerCell.js +2 -2
  150. package/dist/dataGrid/listColumn.d.ts +2 -4
  151. package/dist/dataGrid/row/row.js +8 -16
  152. package/dist/dataGrid/withActions/withActions.js +3 -1
  153. package/dist/dataGrid/withFlexibleColumns/columns/flexibleColumnWrapper.js +2 -2
  154. package/dist/dataGrid/withFlexibleColumns/components/columnSettings.js +2 -0
  155. package/dist/dataGrid/withFlexibleColumns/components/columnSettingsList.js +4 -2
  156. package/dist/dataGrid/withFlexibleColumns/flexibleColumnsReorder.js +3 -3
  157. package/dist/dataGrid/withFlexibleColumns/flexibleColumnsResizer.js +4 -4
  158. package/dist/dataGrid/withFlexibleColumns/flexibleColumnsStorage.js +1 -5
  159. package/dist/dataGrid/withFlexibleColumns/withFlexibleColumns.js +20 -27
  160. package/dist/dataGrid/withLoading/withLoading.js +5 -10
  161. package/dist/dataGrid/withSelectableRows/components/bulkActions/bulkAction.d.ts +3 -3
  162. package/dist/dataGrid/withSelectableRows/components/bulkActions/bulkActionButton/bulkActionButton.js +1 -1
  163. package/dist/dataGrid/withSelectableRows/components/bulkActions/bulkActionLink/bulkActionLink.js +1 -1
  164. package/dist/dataGrid/withSelectableRows/components/bulkActions/bulkActions.js +5 -0
  165. package/dist/dataGrid/withSelectableRows/withLimitedSelectableRows.js +5 -3
  166. package/dist/dataGrid/withSelectableRows/withSelectableRows.js +3 -0
  167. package/dist/dataGrid/withSortableColumns/columns/sortableColumnWrapper.d.ts +2 -1
  168. package/dist/dataGrid/withSortableColumns/columns/sortableColumnWrapper.js +11 -2
  169. package/dist/dataGrid/withSortableColumns/withSortableColumns.js +13 -13
  170. package/dist/dateInput/dateInput.js +1 -3
  171. package/dist/dateInputInner/dateInputInner.js +77 -3
  172. package/dist/dateInputInner/dateInputInnerControlBlock.js +14 -8
  173. package/dist/dateInputInner/dateInputInnerReducer.d.ts +1 -1
  174. package/dist/dateInputRaw/dateInputRaw.js +3 -0
  175. package/dist/dateInputRaw/utils/getLabel.js +25 -0
  176. package/dist/dateRange/dateRange.js +1 -1
  177. package/dist/dateRangeInner/dateRangeInner.js +2 -1
  178. package/dist/dateRangeRaw/dateRangeRaw.js +33 -2
  179. package/dist/dateRangeRaw/utils/areMapsEqual.js +3 -1
  180. package/dist/dateRangeRaw/utils/dateRangeUtils.js +17 -0
  181. package/dist/dateSelectionWrapper/dateSelectionWrapper.js +4 -0
  182. package/dist/dialog/dialogContent.d.ts +1 -1
  183. package/dist/dialog/dialogContent.js +2 -1
  184. package/dist/dropdown/dropdown.js +1 -10
  185. package/dist/dropdown/dropdownPopup.d.ts +1 -1
  186. package/dist/dropdown/dropdownTrigger.d.ts +1 -1
  187. package/dist/dropdownRaw/dropdownHelper.d.ts +10 -0
  188. package/dist/dropdownRaw/dropdownHelper.js +41 -22
  189. package/dist/dropdownRaw/dropdownList.d.ts +2 -1
  190. package/dist/dropdownRaw/dropdownList.js +33 -4
  191. package/dist/dropdownRaw/dropdownPopup.d.ts +2 -1
  192. package/dist/dropdownRaw/dropdownPopup.js +10 -4
  193. package/dist/dropdownRaw/dropdownRaw.js +20 -5
  194. package/dist/dropdownRaw/dropdownSearchableTrigger.js +4 -0
  195. package/dist/dropdownRaw/dropdownTestData.js +683 -699
  196. package/dist/dropdownRaw/dropdownTrigger.d.ts +2 -1
  197. package/dist/dropdownRaw/dropdownTrigger.js +7 -2
  198. package/dist/dropdownRaw/stateReducer/stateReducer.js +29 -17
  199. package/dist/dropdownRaw/types.d.ts +3 -3
  200. package/dist/dropdownRaw/utils/getSelectedValues.js +4 -1
  201. package/dist/emptyState/emptyState.js +1 -3
  202. package/dist/favoriteButton/favoriteButton.js +1 -0
  203. package/dist/feedbackContainer/feedbackContainer.js +6 -2
  204. package/dist/feedbackContainer/hooks/useFeedbackAlert.js +42 -31
  205. package/dist/feedbackContainer/hooks/useFeedbackToast.js +30 -30
  206. package/dist/feedbackContainer/utils/getToastAnimation.js +1 -1
  207. package/dist/fileUpload/components/dropZoneContent.d.ts +15 -0
  208. package/dist/fileUpload/components/dropZoneContent.js +175 -0
  209. package/dist/fileUpload/components/templateDownloadSection.d.ts +11 -0
  210. package/dist/fileUpload/components/templateDownloadSection.js +71 -0
  211. package/dist/fileUpload/components/uploadedFilesSection.d.ts +13 -0
  212. package/dist/fileUpload/components/uploadedFilesSection.js +159 -0
  213. package/dist/fileUpload/fileUpload.d.ts +6 -0
  214. package/dist/fileUpload/fileUpload.js +377 -0
  215. package/dist/fileUpload/fileUploadType.d.ts +33 -0
  216. package/dist/fileUpload/fileUploadType.js +2 -0
  217. package/dist/filterButton/filterButton.js +6 -6
  218. package/dist/filters/components/filtersChip.js +2 -2
  219. package/dist/filters/components/filtersContainer.js +2 -0
  220. package/dist/filters/components/filtersCustomProvider.js +1 -1
  221. package/dist/filters/components/filtersDateInput.js +6 -2
  222. package/dist/filters/components/filtersDropdown.js +16 -2
  223. package/dist/filters/components/filtersEmptyState.js +48 -0
  224. package/dist/filters/components/filtersSaveModal.js +74 -0
  225. package/dist/filters/components/filtersSavedChipComponent.js +128 -0
  226. package/dist/filters/components/filtersSavedItemsProvider.js +7 -1
  227. package/dist/filters/components/filtersSearchItemData.js +1 -0
  228. package/dist/filters/components/filtersSearchList.js +102 -0
  229. package/dist/filters/components/filtersSelect.js +1 -0
  230. package/dist/filters/components/filtersSelectCompact.js +3 -7
  231. package/dist/filters/components/filtersSelectListItem.js +2 -0
  232. package/dist/filters/components/filtersSelectUnfoldingPill.js +8 -2
  233. package/dist/filters/components/filtersSidePanel.js +31 -0
  234. package/dist/filters/components/filtersSidePanelChip.js +1 -1
  235. package/dist/filters/components/filtersSidePanelDateRange.js +1 -1
  236. package/dist/filters/components/filtersSidePanelDropdown.js +21 -16
  237. package/dist/filters/components/filtersSidePanelItem.js +1 -1
  238. package/dist/filters/components/filtersSidePanelItemWrapper.js +1 -1
  239. package/dist/filters/filters.js +147 -0
  240. package/dist/filters/filtersHelper.js +13 -13
  241. package/dist/filtersBar/components/filtersBarDateInput/filtersBarDateInput.js +10 -2
  242. package/dist/filtersBar/components/filtersBarDropdown/filtersBarDropdown.js +48 -27
  243. package/dist/filtersBar/components/filtersBarDropdownWithCheckbox/filtersBarDropdownWithCheckbox.js +44 -19
  244. package/dist/filtersBar/components/filtersBarGroupButton/filtersBarGroupButton.js +2 -2
  245. package/dist/filtersBar/components/filtersBarGroupsFilter/filtersBarGroupsFilter.js +2 -2
  246. package/dist/filtersBar/components/filtersBarPeriodPicker/filtersBarPeriodPicker.js +30 -4
  247. package/dist/filtersBar/components/filtersBarPeriodPicker/getRangeOption.js +19 -1
  248. package/dist/filtersBar/components/filtersBarPeriodPicker/normalizeDates.js +32 -10
  249. package/dist/filtersBar/components/filtersBarRange/filtersBarRange.js +6 -5
  250. package/dist/filtersBar/components/filtersBarSearch/filtersBarSearch.js +2 -2
  251. package/dist/filtersBar/components/resetComponentButton.js +1 -0
  252. package/dist/filtersBar/filtersBar.d.ts +4 -4
  253. package/dist/filtersBar/filtersBar.js +60 -29
  254. package/dist/filtersBar/filtersBarActions/filtersBarActions.js +3 -0
  255. package/dist/filtersBar/filtersBarProvider.js +4 -1
  256. package/dist/filtersBar/filtersBarProviderSearch.js +1 -2
  257. package/dist/filtersBar/filtersBarProviderTrigger.js +1 -1
  258. package/dist/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelCheckboxGroup/filtersBarSidePanelCheckboxGroup.js +1 -1
  259. package/dist/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelDropdownWithCheckbox/filtersBarSidePanelDropdownWithCheckbox.js +21 -12
  260. package/dist/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRadioGroup/filtersBarSidePanelRadioGroup.js +1 -1
  261. package/dist/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRange/filtersBarSidePanelRange.js +5 -0
  262. package/dist/filtersBar/filtersBarSidePanel/filtersBarSidePanel.js +5 -0
  263. package/dist/filtersBar/filtersBarSidePanel/hooks/useDirection.js +3 -1
  264. package/dist/filtersBar/filtersContainer/filtersContainer.js +2 -0
  265. package/dist/filtersBar/utils/getNumberOfChangedFilters.js +2 -2
  266. package/dist/footerButtons/footerButtons.js +9 -2
  267. package/dist/formField/components/formFieldAdditionalInfo.js +1 -3
  268. package/dist/formField/components/formFieldAssistiveError.js +1 -5
  269. package/dist/formField/components/formFieldCounter.js +1 -1
  270. package/dist/formField/components/formFieldWithLabel.js +4 -4
  271. package/dist/formField/components/formFieldWithoutLabel.js +2 -2
  272. package/dist/formField/components/isOldFormFieldComponent.js +1 -7
  273. package/dist/formField/components/trailingComponent.js +2 -2
  274. package/dist/formField/hooks/useBanner.js +1 -1
  275. package/dist/formField/hooks/useContainer.js +31 -4
  276. package/dist/formField/hooks/useError.js +26 -0
  277. package/dist/formField/hooks/useFormFieldClasses.js +5 -1
  278. package/dist/formField/hooks/useFormFieldProps.js +9 -1
  279. package/dist/formField/hooks/useReadonly.js +1 -1
  280. package/dist/formField/hooks/useSkeleton.js +1 -3
  281. package/dist/formField/utils/getFormFieldBanner.js +1 -1
  282. package/dist/formFieldError/formFieldError.d.ts +2 -1
  283. package/dist/formFieldError/formFieldError.js +5 -3
  284. package/dist/formGroup/components/customRow/customRow.js +1 -1
  285. package/dist/formGroup/components/list.js +1 -1
  286. package/dist/formGroup/components/listToggle/listToggle.js +8 -6
  287. package/dist/formGroup/components/oneRow.js +1 -1
  288. package/dist/formGroup/components/reviewListToggle/reviewListToggle.js +3 -1
  289. package/dist/formGroup/components/reviewTextControl.js +1 -1
  290. package/dist/formGroup/components/twoRows.js +1 -1
  291. package/dist/formGroup/formGroup.js +8 -8
  292. package/dist/formGroup/hooks/listHooks/useControlClasses.js +1 -1
  293. package/dist/formGroup/hooks/listHooks/useControls.js +1 -1
  294. package/dist/formGroup/hooks/listHooks/useElementsState.js +1 -1
  295. package/dist/formGroup/hooks/listHooks/useLabelClasses.js +1 -1
  296. package/dist/formGroup/hooks/useCustomRow.js +27 -9
  297. package/dist/formGroup/hooks/useToggle.js +24 -0
  298. package/dist/formGroup/utils/applyCustomControlClasses.js +2 -1
  299. package/dist/formGroup/utils/getControlNode.js +1 -1
  300. package/dist/formGroup/utils/getControls.js +12 -8
  301. package/dist/formGroup/utils/getElementsControl.js +4 -4
  302. package/dist/formGroup/utils/getLabelNode.js +1 -1
  303. package/dist/formGroup/utils/getTotalState.js +1 -1
  304. package/dist/formGroup/utils/hasWidthProp.js +1 -1
  305. package/dist/formGroupItem/formGroupItem.js +1 -1
  306. package/dist/formLayout/components/columnTitle/formLayoutColumnTitle.js +1 -1
  307. package/dist/formLayout/components/customColumns.js +2 -2
  308. package/dist/formLayout/components/formLayoutSecondary.js +1 -1
  309. package/dist/formLayout/components/formLayoutTitle.js +1 -1
  310. package/dist/formLayout/components/getLayoutColumns.js +3 -6
  311. package/dist/formLayout/components/oneColumnGrid.js +2 -2
  312. package/dist/formLayout/components/useCustomColumns.js +10 -10
  313. package/dist/formLayout/formLayout.js +3 -3
  314. package/dist/formLayout/hooks/getStepperLayout.js +1 -1
  315. package/dist/formLayout/hooks/useError.js +49 -0
  316. package/dist/formLayout/hooks/useFormButtons.d.ts +1 -1
  317. package/dist/formLayout/hooks/useFormButtons.js +3 -0
  318. package/dist/formLayout/hooks/useLoading.js +1 -1
  319. package/dist/formLayout/utils/applyLayoutPosition/applyLayoutPosition.js +13 -13
  320. package/dist/formLayout/utils/attachHeadings.js +2 -2
  321. package/dist/formLayout/utils/attachStepper.js +6 -2
  322. package/dist/formLayout/utils/getAllowedComponents.js +1 -1
  323. package/dist/formLayout/utils/getChildrenWithCustomColumns.js +9 -9
  324. package/dist/formLayout/utils/getFilteredComponents.js +1 -6
  325. package/dist/formLayout/utils/isStaticElement.js +5 -1
  326. package/dist/formSection/components/additionalSection.js +2 -2
  327. package/dist/formSection/components/formSectionCard.js +13 -12
  328. package/dist/formSection/components/formSectionDefault.js +7 -6
  329. package/dist/formSection/components/formSectionDefaultTitle.js +1 -1
  330. package/dist/formSection/components/formSectionInner.js +1 -1
  331. package/dist/formSection/components/formSectionModal.js +1 -1
  332. package/dist/formSection/formSection.js +5 -4
  333. package/dist/formSection/hooks/useError.js +49 -0
  334. package/dist/formSection/hooks/useLoading.js +3 -3
  335. package/dist/formSection/utils/formSectionProvider.js +1 -1
  336. package/dist/formSection/utils/isFormSection.js +4 -1
  337. package/dist/formSection/utils/isModalSection.js +1 -4
  338. package/dist/formStepper/components/formStep.js +1 -0
  339. package/dist/formStepper/components/formStepRaw.js +11 -2
  340. package/dist/formStepper/formStepper.js +2 -0
  341. package/dist/formStepperButtons/formStepperButtons.js +4 -0
  342. package/dist/formStepperButtons/utils/getCurrentIndex.js +1 -1
  343. package/dist/gridLayout/gridLayout.js +1 -1
  344. package/dist/gridLayout/hooks/useGridClasses.js +7 -1
  345. package/dist/gridLayout/hooks/useStretch.js +1 -4
  346. package/dist/gridLayout/utils/adaptGridState.js +3 -3
  347. package/dist/gridLayout/utils/convertClassesToState.js +1 -1
  348. package/dist/gridLayout/utils/getGridClasses.js +3 -9
  349. package/dist/gridLayout/utils/getGridPositionClasses.js +5 -7
  350. package/dist/gridLayout/utils/getGridRows.js +8 -4
  351. package/dist/gridLayout/utils/getGridWidthClasses.js +5 -13
  352. package/dist/gridLayout/utils/gridLayoutProvider.js +1 -1
  353. package/dist/gridLayout/utils/hasGridClasses.js +3 -7
  354. package/dist/gridLayout/utils/isGridItem.js +8 -8
  355. package/dist/gridLayout/utils/mergeGridStates.js +8 -7
  356. package/dist/gridLayout/utils/removeSameTypeClasses.js +1 -1
  357. package/dist/gridLayout/utils/updateGridStateFromClassNames.js +32 -8
  358. package/dist/groupButtonRaw/components/groupButtonOption.js +1 -1
  359. package/dist/groupButtonRaw/groupButtonRaw.js +8 -2
  360. package/dist/groupButtonRaw/types.d.ts +1 -0
  361. package/dist/groupsFilter/groupsFilter.js +1 -3
  362. package/dist/groupsFilterRaw/groupsFilterAdjustmentState.js +4 -0
  363. package/dist/groupsFilterRaw/groupsFilterAdvancedValue.js +1 -1
  364. package/dist/groupsFilterRaw/groupsFilterBox.js +3 -0
  365. package/dist/groupsFilterRaw/groupsFilterCommon.js +2 -0
  366. package/dist/groupsFilterRaw/groupsFilterCounter.js +1 -1
  367. package/dist/groupsFilterRaw/groupsFilterCurrentlySelectedState.js +35 -3
  368. package/dist/groupsFilterRaw/groupsFilterHelper.js +2 -0
  369. package/dist/groupsFilterRaw/groupsFilterInitialState.js +8 -0
  370. package/dist/groupsFilterRaw/groupsFilterLabelBox.js +1 -1
  371. package/dist/groupsFilterRaw/groupsFilterMenu.js +3 -0
  372. package/dist/groupsFilterRaw/groupsFilterRaw.js +10 -2
  373. package/dist/groupsFilterRaw/groupsFilterStatesHelper.js +10 -4
  374. package/dist/groupsFilterRaw/groupsFilterTestData.js +16 -2
  375. package/dist/groupsFilterRaw/groupsFilterTrigger.js +2 -0
  376. package/dist/groupsFilterRaw/groupsHelper.js +44 -22
  377. package/dist/groupsFilterRaw/stateReducer/stateReducerHelper.js +14 -10
  378. package/dist/groupsFilterRaw/testData.js +27665 -27665
  379. package/dist/header/components/basicToolbar/basicToolbar.js +5 -2
  380. package/dist/header/components/collapsedItemsControl/collapsedItemsControl.js +1 -0
  381. package/dist/header/components/collapsedItemsControl/utils/handleCustomMenuWrapper.d.ts +1 -1
  382. package/dist/header/components/mobileFilterControl/mobileFilterControl.js +1 -0
  383. package/dist/header/components/mobileSearchControl/mobileSearchControl.js +3 -0
  384. package/dist/header/header.js +12 -4
  385. package/dist/header/headerBack.js +1 -0
  386. package/dist/header/headerButton.js +1 -3
  387. package/dist/header/headerHelpers.js +12 -10
  388. package/dist/header/headerMenu.js +4 -2
  389. package/dist/header/hooks/useNonFittingElements.js +4 -4
  390. package/dist/headerTitle/headerTitle.d.ts +1 -1
  391. package/dist/headerTitle/headerTitle.js +3 -5
  392. package/dist/headerTitle/headerTitleSubline/headerTitleSubline.js +1 -1
  393. package/dist/headerTitle/headerTitleTools/headerTitleTools.js +1 -1
  394. package/dist/icons/deprecated/iconBackArrow.js +2 -6
  395. package/dist/icons/deprecated/iconCheckmark.js +2 -6
  396. package/dist/icons/deprecated/iconCrossThin.js +2 -6
  397. package/dist/icons/deprecated/iconFlatFilledArrowDown.js +2 -6
  398. package/dist/icons/deprecated/iconGlobe.js +2 -6
  399. package/dist/icons/deprecated/iconHouse.js +2 -6
  400. package/dist/icons/deprecated/iconInfoCircleTooltip.js +2 -6
  401. package/dist/icons/deprecated/iconLoupe.js +2 -6
  402. package/dist/icons/deprecated/iconMinusIcon.js +2 -6
  403. package/dist/icons/deprecated/iconOrgFilter.js +2 -6
  404. package/dist/icons/deprecated/iconRefresh.js +2 -6
  405. package/dist/icons/iconActivity.js +2 -6
  406. package/dist/icons/iconAddPeople.js +2 -6
  407. package/dist/icons/iconAiImages.js +2 -6
  408. package/dist/icons/iconAiSparkles.js +2 -6
  409. package/dist/icons/iconAiSparkles2.js +2 -6
  410. package/dist/icons/iconAirplay.js +2 -6
  411. package/dist/icons/iconAirpods.js +2 -6
  412. package/dist/icons/iconAlignBottom.js +2 -6
  413. package/dist/icons/iconAlignLeft.js +2 -6
  414. package/dist/icons/iconAlignRightBox.js +2 -6
  415. package/dist/icons/iconAlignTopBox.js +2 -6
  416. package/dist/icons/iconAlignmentCenter.js +2 -6
  417. package/dist/icons/iconAlignmentJustify.js +2 -6
  418. package/dist/icons/iconAlignmentLeft.js +2 -6
  419. package/dist/icons/iconAlignmentRight.js +2 -6
  420. package/dist/icons/iconAnchor.js +2 -6
  421. package/dist/icons/iconAnchor2.js +2 -6
  422. package/dist/icons/iconArchive.js +2 -6
  423. package/dist/icons/iconArchive2.js +2 -6
  424. package/dist/icons/iconArrowBottom.js +2 -6
  425. package/dist/icons/iconArrowBottomCircle.js +2 -6
  426. package/dist/icons/iconArrowBottomLeft.js +2 -6
  427. package/dist/icons/iconArrowBottomRight.js +2 -6
  428. package/dist/icons/iconArrowDownPath.js +2 -6
  429. package/dist/icons/iconArrowLeft.js +2 -6
  430. package/dist/icons/iconArrowLeftCircle.js +2 -6
  431. package/dist/icons/iconArrowLeftPath.js +2 -6
  432. package/dist/icons/iconArrowRight.js +2 -6
  433. package/dist/icons/iconArrowRightCircle.js +2 -6
  434. package/dist/icons/iconArrowRightPath.js +2 -6
  435. package/dist/icons/iconArrowTop.js +2 -6
  436. package/dist/icons/iconArrowTopCircle.js +2 -6
  437. package/dist/icons/iconArrowTopLeft.js +2 -6
  438. package/dist/icons/iconArrowTopRight.js +2 -6
  439. package/dist/icons/iconArrowUpPath.js +2 -6
  440. package/dist/icons/iconAt.js +2 -6
  441. package/dist/icons/iconAttachment.js +2 -6
  442. package/dist/icons/iconAttachment2.js +2 -6
  443. package/dist/icons/iconAttachmentFile.js +2 -6
  444. package/dist/icons/iconAudio.js +2 -6
  445. package/dist/icons/iconAutoSize.js +2 -6
  446. package/dist/icons/iconBackward.js +2 -6
  447. package/dist/icons/iconBadge.js +2 -6
  448. package/dist/icons/iconBag.js +2 -6
  449. package/dist/icons/iconBag2.js +2 -6
  450. package/dist/icons/iconBagLuggage.js +2 -6
  451. package/dist/icons/iconBagLuggage2.js +2 -6
  452. package/dist/icons/iconBasket.js +2 -6
  453. package/dist/icons/iconBasket2.js +2 -6
  454. package/dist/icons/iconBatteryError.js +2 -6
  455. package/dist/icons/iconBatteryFull.js +2 -6
  456. package/dist/icons/iconBatteryLoading.js +2 -6
  457. package/dist/icons/iconBatteryLow.js +2 -6
  458. package/dist/icons/iconBatteryLow2.js +2 -6
  459. package/dist/icons/iconBatteryMedium.js +2 -6
  460. package/dist/icons/iconBell.js +2 -6
  461. package/dist/icons/iconBeta.js +2 -6
  462. package/dist/icons/iconBitcoin.js +2 -6
  463. package/dist/icons/iconBluetooth.js +2 -6
  464. package/dist/icons/iconBold.js +2 -6
  465. package/dist/icons/iconBook.js +2 -6
  466. package/dist/icons/iconBook2.js +2 -6
  467. package/dist/icons/iconBookmark.js +2 -6
  468. package/dist/icons/iconBookmarkCheck.js +2 -6
  469. package/dist/icons/iconBookmarkDelete.js +2 -6
  470. package/dist/icons/iconBookmarkFill.js +2 -6
  471. package/dist/icons/iconBookmarkPlus.js +2 -6
  472. package/dist/icons/iconBookmarkSelectedHover.js +2 -6
  473. package/dist/icons/iconBranches.js +2 -6
  474. package/dist/icons/iconBrokenLink.js +2 -6
  475. package/dist/icons/iconBrowser.js +2 -6
  476. package/dist/icons/iconBrush.js +2 -6
  477. package/dist/icons/iconBubble.js +2 -6
  478. package/dist/icons/iconBubble2.js +2 -6
  479. package/dist/icons/iconBubble3.js +2 -6
  480. package/dist/icons/iconBubble4.js +2 -6
  481. package/dist/icons/iconBubble5.js +2 -6
  482. package/dist/icons/iconBubble6.js +2 -6
  483. package/dist/icons/iconBubbleAnnotation.js +2 -6
  484. package/dist/icons/iconBubbleAnnotation2.js +2 -6
  485. package/dist/icons/iconBubbleAnnotation4.js +2 -6
  486. package/dist/icons/iconBubbleAnnotation5.js +2 -6
  487. package/dist/icons/iconBubbleAnnotation6.js +2 -6
  488. package/dist/icons/iconBubbleNotification.js +2 -6
  489. package/dist/icons/iconBubbles.js +2 -6
  490. package/dist/icons/iconBucket.js +2 -6
  491. package/dist/icons/iconBuilding.js +2 -6
  492. package/dist/icons/iconBulkSelect.js +2 -6
  493. package/dist/icons/iconBulletList.js +2 -6
  494. package/dist/icons/iconBusiness.js +2 -6
  495. package/dist/icons/iconCalculator.js +2 -6
  496. package/dist/icons/iconCalendar.js +2 -6
  497. package/dist/icons/iconCamera.js +2 -6
  498. package/dist/icons/iconCamera2.js +2 -6
  499. package/dist/icons/iconCamera3.js +2 -6
  500. package/dist/icons/iconCameraAction.js +2 -6
  501. package/dist/icons/iconCanBus.js +2 -6
  502. package/dist/icons/iconChart.js +2 -6
  503. package/dist/icons/iconChart2.js +2 -6
  504. package/dist/icons/iconChart3.js +2 -6
  505. package/dist/icons/iconChart4.js +2 -6
  506. package/dist/icons/iconChart5.js +2 -6
  507. package/dist/icons/iconChart6.js +2 -6
  508. package/dist/icons/iconChart7.js +2 -6
  509. package/dist/icons/iconChart8.js +2 -6
  510. package/dist/icons/iconCheck.js +2 -6
  511. package/dist/icons/iconCheckRadio.js +2 -6
  512. package/dist/icons/iconCheckbox.js +2 -6
  513. package/dist/icons/iconChevronBottom.js +2 -6
  514. package/dist/icons/iconChevronDoubleDown.js +2 -6
  515. package/dist/icons/iconChevronDoubleLeft.js +2 -6
  516. package/dist/icons/iconChevronDoubleRight.js +2 -6
  517. package/dist/icons/iconChevronDoubleUp.js +2 -6
  518. package/dist/icons/iconChevronDownSmall.js +2 -6
  519. package/dist/icons/iconChevronGrabberHorizontal.js +2 -6
  520. package/dist/icons/iconChevronGrabberVertical.js +2 -6
  521. package/dist/icons/iconChevronLeft.js +2 -6
  522. package/dist/icons/iconChevronLeftSmall.js +2 -6
  523. package/dist/icons/iconChevronRight.js +2 -6
  524. package/dist/icons/iconChevronRightSmall.js +2 -6
  525. package/dist/icons/iconChevronTop.js +2 -6
  526. package/dist/icons/iconChevronTopSmall.js +2 -6
  527. package/dist/icons/iconChromecast.js +2 -6
  528. package/dist/icons/iconCircle.js +2 -6
  529. package/dist/icons/iconClipboard.js +2 -6
  530. package/dist/icons/iconClipboard2.js +2 -6
  531. package/dist/icons/iconClock.js +2 -6
  532. package/dist/icons/iconClock2.js +2 -6
  533. package/dist/icons/iconClockSnooze.js +2 -6
  534. package/dist/icons/iconClockTimer.js +2 -6
  535. package/dist/icons/iconClose.js +2 -6
  536. package/dist/icons/iconCloseCircle.js +2 -6
  537. package/dist/icons/iconCloseSquare.js +2 -6
  538. package/dist/icons/iconCloud.js +2 -6
  539. package/dist/icons/iconCloud2.js +2 -6
  540. package/dist/icons/iconCloudCheck.js +2 -6
  541. package/dist/icons/iconCloudDownload.js +2 -6
  542. package/dist/icons/iconCloudLines.js +2 -6
  543. package/dist/icons/iconCloudOff.js +2 -6
  544. package/dist/icons/iconCloudOff2.js +2 -6
  545. package/dist/icons/iconCloudQuestion.js +2 -6
  546. package/dist/icons/iconCloudSync.js +2 -6
  547. package/dist/icons/iconCloudUpload.js +2 -6
  548. package/dist/icons/iconCmd.js +2 -6
  549. package/dist/icons/iconCmd2.js +2 -6
  550. package/dist/icons/iconCode.js +2 -6
  551. package/dist/icons/iconCode2.js +2 -6
  552. package/dist/icons/iconColor.js +2 -6
  553. package/dist/icons/iconColorPicker.js +2 -6
  554. package/dist/icons/iconCommunity.js +2 -6
  555. package/dist/icons/iconCompass.js +2 -6
  556. package/dist/icons/iconConnectDevices.js +2 -6
  557. package/dist/icons/iconConsole.js +2 -6
  558. package/dist/icons/iconConstruction.js +2 -6
  559. package/dist/icons/iconCopy.js +2 -6
  560. package/dist/icons/iconCopy2.js +2 -6
  561. package/dist/icons/iconCopy3.js +2 -6
  562. package/dist/icons/iconCopy4.js +2 -6
  563. package/dist/icons/iconCopy5.js +2 -6
  564. package/dist/icons/iconCornerDownLeft.js +2 -6
  565. package/dist/icons/iconCornerDownRight.js +2 -6
  566. package/dist/icons/iconCornerLeftDown.js +2 -6
  567. package/dist/icons/iconCornerLeftUp.js +2 -6
  568. package/dist/icons/iconCornerRightDown.js +2 -6
  569. package/dist/icons/iconCornerRightUp.js +2 -6
  570. package/dist/icons/iconCornerUpLeft.js +2 -6
  571. package/dist/icons/iconCornerUpRight.js +2 -6
  572. package/dist/icons/iconCreditCard.js +2 -6
  573. package/dist/icons/iconCreditCard2.js +2 -6
  574. package/dist/icons/iconCreditCard3.js +2 -6
  575. package/dist/icons/iconCrop.js +2 -6
  576. package/dist/icons/iconCrypto.js +2 -6
  577. package/dist/icons/iconCryptoCoin.js +2 -6
  578. package/dist/icons/iconCup.js +2 -6
  579. package/dist/icons/iconCursor.js +2 -6
  580. package/dist/icons/iconCursor2.js +2 -6
  581. package/dist/icons/iconCursor3.js +2 -6
  582. package/dist/icons/iconCursorBox.js +2 -6
  583. package/dist/icons/iconCursorClick.js +2 -6
  584. package/dist/icons/iconCycle.js +2 -6
  585. package/dist/icons/iconDelete.js +2 -6
  586. package/dist/icons/iconDelete2.js +2 -6
  587. package/dist/icons/iconDelete3.js +2 -6
  588. package/dist/icons/iconDeviceUptime.js +2 -6
  589. package/dist/icons/iconDeviceUptimeDisconnected.js +2 -6
  590. package/dist/icons/iconDiamondWarning.js +2 -6
  591. package/dist/icons/iconDisk.js +2 -6
  592. package/dist/icons/iconDisk2.js +2 -6
  593. package/dist/icons/iconDispatchAsset.js +2 -6
  594. package/dist/icons/iconDock.js +2 -6
  595. package/dist/icons/iconDocument.js +2 -6
  596. package/dist/icons/iconDocumentWithLines.js +2 -6
  597. package/dist/icons/iconDollar.js +2 -6
  598. package/dist/icons/iconDotGrid.js +2 -6
  599. package/dist/icons/iconDotHorizontal.js +2 -6
  600. package/dist/icons/iconDotVertical.js +2 -6
  601. package/dist/icons/iconDownload.js +2 -6
  602. package/dist/icons/iconDrive.js +2 -6
  603. package/dist/icons/iconDriver.js +2 -6
  604. package/dist/icons/iconDvir.js +2 -6
  605. package/dist/icons/iconEdit.js +2 -6
  606. package/dist/icons/iconEdit2.js +2 -6
  607. package/dist/icons/iconEditBig.js +2 -6
  608. package/dist/icons/iconEditSmall.js +2 -6
  609. package/dist/icons/iconEmail.js +2 -6
  610. package/dist/icons/iconEmail2.js +2 -6
  611. package/dist/icons/iconEmailNotification.js +2 -6
  612. package/dist/icons/iconEsc.js +2 -6
  613. package/dist/icons/iconEthereum.js +2 -6
  614. package/dist/icons/iconEuro.js +2 -6
  615. package/dist/icons/iconEvse.js +2 -6
  616. package/dist/icons/iconExcel.js +2 -6
  617. package/dist/icons/iconException.js +2 -6
  618. package/dist/icons/iconExpand.js +2 -6
  619. package/dist/icons/iconEye.js +2 -6
  620. package/dist/icons/iconEyeOff.js +2 -6
  621. package/dist/icons/iconFaceId.js +2 -6
  622. package/dist/icons/iconFile.js +2 -6
  623. package/dist/icons/iconFileCopy.js +2 -6
  624. package/dist/icons/iconFileLocked.js +2 -6
  625. package/dist/icons/iconFileSync.js +2 -6
  626. package/dist/icons/iconFileSync2.js +2 -6
  627. package/dist/icons/iconFileSync3.js +2 -6
  628. package/dist/icons/iconFileSync4.js +2 -6
  629. package/dist/icons/iconFileSync5.js +2 -6
  630. package/dist/icons/iconFilter.js +2 -6
  631. package/dist/icons/iconFilter2.js +2 -6
  632. package/dist/icons/iconFilter3.js +2 -6
  633. package/dist/icons/iconFilter3Asc.js +2 -6
  634. package/dist/icons/iconFilter3Desc.js +2 -6
  635. package/dist/icons/iconFilterAsc.js +2 -6
  636. package/dist/icons/iconFilterDesc.js +2 -6
  637. package/dist/icons/iconFingerPrint.js +2 -6
  638. package/dist/icons/iconFocus.js +2 -6
  639. package/dist/icons/iconFolder.js +2 -6
  640. package/dist/icons/iconFolder2.js +2 -6
  641. package/dist/icons/iconFolderAdd.js +2 -6
  642. package/dist/icons/iconFolderBookmarks.js +2 -6
  643. package/dist/icons/iconFolderCloud.js +2 -6
  644. package/dist/icons/iconFolderCloud2.js +2 -6
  645. package/dist/icons/iconFolderDelete.js +2 -6
  646. package/dist/icons/iconFolderDownload.js +2 -6
  647. package/dist/icons/iconFolderRestricted.js +2 -6
  648. package/dist/icons/iconFolderShared.js +2 -6
  649. package/dist/icons/iconFolderUpload.js +2 -6
  650. package/dist/icons/iconFolders.js +2 -6
  651. package/dist/icons/iconFork.js +2 -6
  652. package/dist/icons/iconFuelGas.js +2 -6
  653. package/dist/icons/iconGamepad.js +2 -6
  654. package/dist/icons/iconGeotabDrive.js +2 -6
  655. package/dist/icons/iconGeotabSales.js +2 -6
  656. package/dist/icons/iconGift.js +2 -6
  657. package/dist/icons/iconGlobus.js +2 -6
  658. package/dist/icons/iconGrab.js +2 -6
  659. package/dist/icons/iconGraph.js +2 -6
  660. package/dist/icons/iconGraphChart.js +2 -6
  661. package/dist/icons/iconGraphLines.js +2 -6
  662. package/dist/icons/iconGraphPresentation.js +2 -6
  663. package/dist/icons/iconGraphStatistics.js +2 -6
  664. package/dist/icons/iconGrids.js +2 -6
  665. package/dist/icons/iconGrids2.js +2 -6
  666. package/dist/icons/iconHarness.js +2 -6
  667. package/dist/icons/iconHeadphones.js +2 -6
  668. package/dist/icons/iconHeart.js +2 -6
  669. package/dist/icons/iconHexonalWarning.js +2 -6
  670. package/dist/icons/iconHistory.js +2 -6
  671. package/dist/icons/iconHomeDoor.js +2 -6
  672. package/dist/icons/iconHomeDoor2.js +2 -6
  673. package/dist/icons/iconHomeRoof.js +2 -6
  674. package/dist/icons/iconHomeSimple.js +2 -6
  675. package/dist/icons/iconHourglass.js +2 -6
  676. package/dist/icons/iconITS.js +2 -6
  677. package/dist/icons/iconIcon.js +2 -6
  678. package/dist/icons/iconImac.js +2 -6
  679. package/dist/icons/iconImage.js +2 -6
  680. package/dist/icons/iconImages.js +2 -6
  681. package/dist/icons/iconImages2.js +2 -6
  682. package/dist/icons/iconInbox.js +2 -6
  683. package/dist/icons/iconInfoCircle.js +2 -6
  684. package/dist/icons/iconInfoSquare.js +2 -6
  685. package/dist/icons/iconInspect.js +2 -6
  686. package/dist/icons/iconItalic.js +2 -6
  687. package/dist/icons/iconKeyboard.js +2 -6
  688. package/dist/icons/iconKeyboardDown.js +2 -6
  689. package/dist/icons/iconKeyboardUp.js +2 -6
  690. package/dist/icons/iconKeyboardUp2.js +2 -6
  691. package/dist/icons/iconLab.js +2 -6
  692. package/dist/icons/iconLaptop.js +2 -6
  693. package/dist/icons/iconLayers.js +2 -6
  694. package/dist/icons/iconLayout.js +2 -6
  695. package/dist/icons/iconLayoutBottom.js +2 -6
  696. package/dist/icons/iconLayoutColumn.js +2 -6
  697. package/dist/icons/iconLayoutLeft.js +2 -6
  698. package/dist/icons/iconLayoutRight.js +2 -6
  699. package/dist/icons/iconLayoutSearch.js +2 -6
  700. package/dist/icons/iconLayoutSidebar.js +2 -6
  701. package/dist/icons/iconLayoutTop.js +2 -6
  702. package/dist/icons/iconLayoutTopbar.js +2 -6
  703. package/dist/icons/iconLayoutWindow.js +2 -6
  704. package/dist/icons/iconLayoutWindow2.js +2 -6
  705. package/dist/icons/iconLayoutWindow3.js +2 -6
  706. package/dist/icons/iconLayoutWindow4.js +2 -6
  707. package/dist/icons/iconLayoutWindow5.js +2 -6
  708. package/dist/icons/iconLeaf.js +2 -6
  709. package/dist/icons/iconLifeBuoy.js +2 -6
  710. package/dist/icons/iconLightBulb.js +2 -6
  711. package/dist/icons/iconLightning.js +2 -6
  712. package/dist/icons/iconLink.js +2 -6
  713. package/dist/icons/iconLink2.js +2 -6
  714. package/dist/icons/iconLink3.js +2 -6
  715. package/dist/icons/iconLinkLines.js +2 -6
  716. package/dist/icons/iconList.js +2 -6
  717. package/dist/icons/iconLoader.js +2 -6
  718. package/dist/icons/iconLocationCompass.js +2 -6
  719. package/dist/icons/iconLocationMap.js +2 -6
  720. package/dist/icons/iconLocationOff.js +2 -6
  721. package/dist/icons/iconLock.js +2 -6
  722. package/dist/icons/iconLogin.js +2 -6
  723. package/dist/icons/iconLogout.js +2 -6
  724. package/dist/icons/iconLowDataQuality.js +2 -6
  725. package/dist/icons/iconMacbook.js +2 -6
  726. package/dist/icons/iconMagic.js +2 -6
  727. package/dist/icons/iconMagic2.js +2 -6
  728. package/dist/icons/iconMagicEyes.js +2 -6
  729. package/dist/icons/iconMap.js +2 -6
  730. package/dist/icons/iconMarketplace.js +2 -6
  731. package/dist/icons/iconMedal.js +2 -6
  732. package/dist/icons/iconMemory.js +2 -6
  733. package/dist/icons/iconMemory2.js +2 -6
  734. package/dist/icons/iconMenu.js +2 -6
  735. package/dist/icons/iconMenu2.js +2 -6
  736. package/dist/icons/iconMenu3.js +2 -6
  737. package/dist/icons/iconMenuCircle.js +2 -6
  738. package/dist/icons/iconMicrophone.js +2 -6
  739. package/dist/icons/iconMicrophone2.js +2 -6
  740. package/dist/icons/iconMinimize.js +2 -6
  741. package/dist/icons/iconMinus.js +2 -6
  742. package/dist/icons/iconMinusCircle.js +2 -6
  743. package/dist/icons/iconMinusSquare.js +2 -6
  744. package/dist/icons/iconMobi.js +2 -6
  745. package/dist/icons/iconMoney.js +2 -6
  746. package/dist/icons/iconMoon.js +2 -6
  747. package/dist/icons/iconMouse.js +2 -6
  748. package/dist/icons/iconMouseScrollDown.js +2 -6
  749. package/dist/icons/iconMouseScrollUp.js +2 -6
  750. package/dist/icons/iconMove.js +2 -6
  751. package/dist/icons/iconMove2.js +2 -6
  752. package/dist/icons/iconMyAdmin.js +2 -6
  753. package/dist/icons/iconMyGeotab.js +2 -6
  754. package/dist/icons/iconNavigationFooterCollapsed.js +2 -6
  755. package/dist/icons/iconNavigationFooterExpanded.js +2 -6
  756. package/dist/icons/iconNews.js +2 -6
  757. package/dist/icons/iconNewspaper.js +2 -6
  758. package/dist/icons/iconNote.js +2 -6
  759. package/dist/icons/iconNotificationAlarm.js +2 -6
  760. package/dist/icons/iconNotificationBell.js +2 -6
  761. package/dist/icons/iconNotificationOff.js +2 -6
  762. package/dist/icons/iconNotifications.js +2 -6
  763. package/dist/icons/iconNumberedList.js +2 -6
  764. package/dist/icons/iconOnDuty.js +2 -6
  765. package/dist/icons/iconOpen.js +2 -6
  766. package/dist/icons/iconOpen2.js +2 -6
  767. package/dist/icons/iconOpt.js +2 -6
  768. package/dist/icons/iconOptAlt.js +2 -6
  769. package/dist/icons/iconPDF.js +2 -6
  770. package/dist/icons/iconPackage.js +2 -6
  771. package/dist/icons/iconPackage2.js +2 -6
  772. package/dist/icons/iconPackage3.js +2 -6
  773. package/dist/icons/iconPaperPlane.js +2 -6
  774. package/dist/icons/iconPassword.js +2 -6
  775. package/dist/icons/iconPause.js +2 -6
  776. package/dist/icons/iconPencil.js +2 -6
  777. package/dist/icons/iconPencil2.js +2 -6
  778. package/dist/icons/iconPeople.js +2 -6
  779. package/dist/icons/iconPeopleGroup.js +2 -6
  780. package/dist/icons/iconPeopleGroup2.js +2 -6
  781. package/dist/icons/iconPeopleLike.js +2 -6
  782. package/dist/icons/iconPercent.js +2 -6
  783. package/dist/icons/iconPerformance.js +2 -6
  784. package/dist/icons/iconPhone.js +2 -6
  785. package/dist/icons/iconPhoneMobile.js +2 -6
  786. package/dist/icons/iconPin.js +2 -6
  787. package/dist/icons/iconPin2.js +2 -6
  788. package/dist/icons/iconPinLocation.js +2 -6
  789. package/dist/icons/iconPinLocation2.js +2 -6
  790. package/dist/icons/iconPinLocation3.js +2 -6
  791. package/dist/icons/iconPlay.js +2 -6
  792. package/dist/icons/iconPlus.js +2 -6
  793. package/dist/icons/iconPlusCircle.js +2 -6
  794. package/dist/icons/iconPlusFile.js +2 -6
  795. package/dist/icons/iconPlusLines.js +2 -6
  796. package/dist/icons/iconPlusSquare.js +2 -6
  797. package/dist/icons/iconPound.js +2 -6
  798. package/dist/icons/iconPrinter.js +2 -6
  799. package/dist/icons/iconProcessor.js +2 -6
  800. package/dist/icons/iconPullRequest.js +2 -6
  801. package/dist/icons/iconPuzzle.js +2 -6
  802. package/dist/icons/iconQuestion.js +2 -6
  803. package/dist/icons/iconRadar.js +2 -6
  804. package/dist/icons/iconReceipt.js +2 -6
  805. package/dist/icons/iconRecord.js +2 -6
  806. package/dist/icons/iconRedo.js +2 -6
  807. package/dist/icons/iconRedo2.js +2 -6
  808. package/dist/icons/iconRefrigeration.js +2 -6
  809. package/dist/icons/iconRemovePeople.js +2 -6
  810. package/dist/icons/iconRepeat.js +2 -6
  811. package/dist/icons/iconRepeat2.js +2 -6
  812. package/dist/icons/iconResizeBig.js +2 -6
  813. package/dist/icons/iconResizeSmall.js +2 -6
  814. package/dist/icons/iconRotateClockwise.js +2 -6
  815. package/dist/icons/iconRotateCounterclockwise.js +2 -6
  816. package/dist/icons/iconRotateRepeat.js +2 -6
  817. package/dist/icons/iconRotateRepeat2.js +2 -6
  818. package/dist/icons/iconRoute.js +2 -6
  819. package/dist/icons/iconRuler.js +2 -6
  820. package/dist/icons/iconSdCard.js +2 -6
  821. package/dist/icons/iconSearch.js +2 -6
  822. package/dist/icons/iconSearchDocument.js +2 -6
  823. package/dist/icons/iconSearchLines.js +2 -6
  824. package/dist/icons/iconSearchPage.js +2 -6
  825. package/dist/icons/iconSeatbelt.js +2 -6
  826. package/dist/icons/iconSecured.js +2 -6
  827. package/dist/icons/iconSecuredLines.js +2 -6
  828. package/dist/icons/iconSend.js +2 -6
  829. package/dist/icons/iconServer.js +2 -6
  830. package/dist/icons/iconServer2.js +2 -6
  831. package/dist/icons/iconServer3.js +2 -6
  832. package/dist/icons/iconSettings1.js +2 -6
  833. package/dist/icons/iconSettings2.js +2 -6
  834. package/dist/icons/iconSettings3.js +2 -6
  835. package/dist/icons/iconSettings4.js +2 -6
  836. package/dist/icons/iconSettings6.js +2 -6
  837. package/dist/icons/iconSettings7.js +2 -6
  838. package/dist/icons/iconSettings8.js +2 -6
  839. package/dist/icons/iconShare.js +2 -6
  840. package/dist/icons/iconShare3.js +2 -6
  841. package/dist/icons/iconShield.js +2 -6
  842. package/dist/icons/iconShield2.js +2 -6
  843. package/dist/icons/iconShield3.js +2 -6
  844. package/dist/icons/iconShield4.js +2 -6
  845. package/dist/icons/iconSidebar.js +2 -6
  846. package/dist/icons/iconSign.js +2 -6
  847. package/dist/icons/iconSmiley.js +2 -6
  848. package/dist/icons/iconSort2Horizontal.js +2 -6
  849. package/dist/icons/iconSort2Vertical.js +2 -6
  850. package/dist/icons/iconSortHorizontal.js +2 -6
  851. package/dist/icons/iconSortVertical.js +2 -6
  852. package/dist/icons/iconSpeaker.js +2 -6
  853. package/dist/icons/iconSquare.js +2 -6
  854. package/dist/icons/iconStar.js +2 -6
  855. package/dist/icons/iconStarAi.js +2 -6
  856. package/dist/icons/iconStarFilled.js +2 -6
  857. package/dist/icons/iconStopwatch.js +2 -6
  858. package/dist/icons/iconStorage.js +2 -6
  859. package/dist/icons/iconStore.js +2 -6
  860. package/dist/icons/iconStrikeThrough.js +2 -6
  861. package/dist/icons/iconSun.js +2 -6
  862. package/dist/icons/iconSupport.js +2 -6
  863. package/dist/icons/iconTable.js +2 -6
  864. package/dist/icons/iconTachograph.js +2 -6
  865. package/dist/icons/iconTachographTimeCard.js +2 -6
  866. package/dist/icons/iconTarget.js +2 -6
  867. package/dist/icons/iconTarget2.js +2 -6
  868. package/dist/icons/iconTarget3.js +2 -6
  869. package/dist/icons/iconTelevision.js +2 -6
  870. package/dist/icons/iconTelevision2.js +2 -6
  871. package/dist/icons/iconTextSize.js +2 -6
  872. package/dist/icons/iconThermograph.js +2 -6
  873. package/dist/icons/iconThermometer.js +2 -6
  874. package/dist/icons/iconThumbsDown.js +2 -6
  875. package/dist/icons/iconThumbsUp.js +2 -6
  876. package/dist/icons/iconTrailer.js +2 -6
  877. package/dist/icons/iconUmbrella.js +2 -6
  878. package/dist/icons/iconUnderline.js +2 -6
  879. package/dist/icons/iconUndo.js +2 -6
  880. package/dist/icons/iconUndo2.js +2 -6
  881. package/dist/icons/iconUndock.js +2 -6
  882. package/dist/icons/iconUnlocked.js +2 -6
  883. package/dist/icons/iconUpload.js +2 -6
  884. package/dist/icons/iconUsb.js +2 -6
  885. package/dist/icons/iconUsbHub.js +2 -6
  886. package/dist/icons/iconVideo.js +2 -6
  887. package/dist/icons/iconVideo2.js +2 -6
  888. package/dist/icons/iconVideoReplay.js +2 -6
  889. package/dist/icons/iconVisitPage.js +2 -6
  890. package/dist/icons/iconVoice.js +2 -6
  891. package/dist/icons/iconVolumeDown.js +2 -6
  892. package/dist/icons/iconVolumeFull.js +2 -6
  893. package/dist/icons/iconVolumeHalf.js +2 -6
  894. package/dist/icons/iconVolumeMinimum.js +2 -6
  895. package/dist/icons/iconVolumeOff.js +2 -6
  896. package/dist/icons/iconVolumeOn.js +2 -6
  897. package/dist/icons/iconWallet.js +2 -6
  898. package/dist/icons/iconWallet1.js +2 -6
  899. package/dist/icons/iconWarning.js +2 -6
  900. package/dist/icons/iconWatch.js +2 -6
  901. package/dist/icons/iconWatch2.js +2 -6
  902. package/dist/icons/iconWebcam.js +2 -6
  903. package/dist/icons/iconWhisper.js +2 -6
  904. package/dist/icons/iconWifi.js +2 -6
  905. package/dist/icons/iconWifi2.js +2 -6
  906. package/dist/icons/iconWorkday.js +2 -6
  907. package/dist/icons/iconWorld.js +2 -6
  908. package/dist/icons/iconWrench.js +2 -6
  909. package/dist/icons/iconWrite.js +2 -6
  910. package/dist/icons/iconYen.js +2 -6
  911. package/dist/icons/iconZone.js +2 -6
  912. package/dist/icons/iconZoom.js +2 -6
  913. package/dist/icons/iconZoom2.js +2 -6
  914. package/dist/images/imageAdjustFilter.js +2 -5
  915. package/dist/images/imageCloudUpload.d.ts +3 -0
  916. package/dist/images/imageCloudUpload.js +14 -0
  917. package/dist/images/imageLooking.js +2 -5
  918. package/dist/images/imageNoMatchingAssets.js +2 -5
  919. package/dist/images/imageNothingFound.js +2 -5
  920. package/dist/images/imageTapToUpload.d.ts +6 -0
  921. package/dist/images/imageTapToUpload.js +14 -0
  922. package/dist/index.css +1457 -1006
  923. package/dist/index.d.ts +6 -0
  924. package/dist/index.js +26 -16
  925. package/dist/inputAdornments/inputAdornments.js +6 -1
  926. package/dist/layout/layout.js +1 -1
  927. package/dist/layout/layoutContent.js +7 -1
  928. package/dist/layout/layoutFullScreen.js +5 -2
  929. package/dist/layout/layoutFullScreenElementProvider.js +1 -1
  930. package/dist/layout/layoutFullScreenProvider.js +1 -1
  931. package/dist/layout/layoutSummaryTiles.js +3 -3
  932. package/dist/lineChart/lineChart.js +1 -1
  933. package/dist/lineChart/plugins/htmlLegend.js +2 -2
  934. package/dist/lineChartMini/lineChartMini.js +2 -2
  935. package/dist/list/hooks/useDragAndDrop.js +16 -5
  936. package/dist/list/hooks/useVirtualScroll.js +4 -2
  937. package/dist/list/itemCompact/itemCompact.js +1 -1
  938. package/dist/list/itemCompact/itemCompactWaiting.js +2 -4
  939. package/dist/list/itemData/itemDataInternal.js +2 -0
  940. package/dist/list/itemData/itemDataWaiting.js +1 -4
  941. package/dist/list/list.js +3 -14
  942. package/dist/list/listItem/listItem.js +3 -1
  943. package/dist/list/listItem/listItemWaiting.js +2 -4
  944. package/dist/list/utils/getLoadingItems.js +2 -2
  945. package/dist/menu/components/menuButton.js +21 -13
  946. package/dist/menu/components/menuErrorItem.js +48 -0
  947. package/dist/menu/components/menuItem.js +4 -4
  948. package/dist/menu/controlledMenu.js +10 -8
  949. package/dist/menu/menu.js +2 -2
  950. package/dist/miniTabs/miniTabs.js +1 -1
  951. package/dist/miniTabs/miniTabsHelper.js +3 -2
  952. package/dist/miniTabs/miniTabsItem.js +1 -1
  953. package/dist/mobileSheet/components/mobileSheetContent.js +1 -1
  954. package/dist/mobileSheet/components/mobileSheetFooter.js +1 -1
  955. package/dist/mobileSheet/mobileSheet.d.ts +1 -0
  956. package/dist/mobileSheet/mobileSheet.js +7 -2
  957. package/dist/modal/modal.js +1 -0
  958. package/dist/modal/modalHelpers.js +3 -3
  959. package/dist/modal/utils/isModalTarget.d.ts +1 -0
  960. package/dist/modal/utils/isModalTarget.js +11 -0
  961. package/dist/nav/nav.js +22 -14
  962. package/dist/nav/navAddMenu/navAddMenu.js +8 -5
  963. package/dist/nav/navDivider/navDivider.js +1 -4
  964. package/dist/nav/navEditList/navEditList.js +2 -2
  965. package/dist/nav/navEditList/navEditListUtils.js +1 -1
  966. package/dist/nav/navEditSection/navEditSection.js +1 -1
  967. package/dist/nav/navFooter/navEditFooter/navEditFooter.js +2 -0
  968. package/dist/nav/navFooter/navFooter.js +24 -0
  969. package/dist/nav/navFooter/navFooterAction/navFooterAction.js +1 -0
  970. package/dist/nav/navHeader/navHeader.js +48 -0
  971. package/dist/nav/navHeader/navHeaderSearch/navHeaderSearch.js +27 -0
  972. package/dist/nav/navItem/navActionItem.js +1 -3
  973. package/dist/nav/navItem/navItem.js +1 -1
  974. package/dist/nav/navMobileBar/navMobileBar.js +1 -0
  975. package/dist/nav/navSection/navSection.js +3 -5
  976. package/dist/nav/utils/navUtils.js +1 -3
  977. package/dist/notification/notification.js +1 -0
  978. package/dist/notification/pushNotification/pushNotification.js +2 -5
  979. package/dist/oldPill/pill.js +2 -2
  980. package/dist/overview/overview.js +2 -4
  981. package/dist/pageHeader/pageHeaderActions.js +7 -3
  982. package/dist/pageHeader/pageHeaderButton.js +1 -1
  983. package/dist/pageLayout/pageContentLayout/pageContentLayout.js +2 -6
  984. package/dist/pageLayout/pageLayout.js +1 -1
  985. package/dist/pageSection/pageSection.js +1 -1
  986. package/dist/pagination/pagination.js +2 -11
  987. package/dist/pagination/paginationArrow.js +2 -0
  988. package/dist/pagination/paginationButtonsRow.js +1 -1
  989. package/dist/pagination/paginationText/paginationText.js +1 -0
  990. package/dist/pagination/paginationType.d.ts +1 -1
  991. package/dist/pagination/paginationType.js +1 -1
  992. package/dist/parallelSelection/parallelSelection.js +6 -3
  993. package/dist/pill/components/pillActionable/pillActionable.js +11 -9
  994. package/dist/pill/components/pillNonActionable/pillNonActionable.js +3 -2
  995. package/dist/pill/pill.js +1 -3
  996. package/dist/pillAction/pillAction.js +1 -1
  997. package/dist/pillBox/components/pillBoxItem.js +1 -0
  998. package/dist/pillBox/pillBox.js +3 -0
  999. package/dist/pillBox/utils/getValidMaxPills.js +1 -1
  1000. package/dist/pillClosable/pillClosable.d.ts +1 -1
  1001. package/dist/pillClosable/pillClosable.js +2 -2
  1002. package/dist/pillExpandable/pillContent.js +10 -8
  1003. package/dist/pillExpandable/pillExpandable.js +2 -0
  1004. package/dist/pillExpandable/pillExpandableAlignments.js +10 -10
  1005. package/dist/pillExpandable/pillExpandablePopoverContent.js +1 -1
  1006. package/dist/pillExpandable/pillExpandableSimple.js +10 -6
  1007. package/dist/popup/popup.js +3 -3
  1008. package/dist/primaryIcon/primaryIcon.js +2 -2
  1009. package/dist/progressBar/progressBar.d.ts +1 -1
  1010. package/dist/progressBar/progressBarUtils.js +1 -1
  1011. package/dist/radio/radio.d.ts +5 -4
  1012. package/dist/radio/radio.js +11 -2
  1013. package/dist/radioGroupRaw/radioGroupRaw.js +11 -7
  1014. package/dist/radioGroupRaw/types.d.ts +2 -0
  1015. package/dist/rangeRaw/components/rangeField.js +7 -3
  1016. package/dist/rangeRaw/rangeRaw.js +14 -1
  1017. package/dist/rangeRaw/utils/rangeHelper.js +9 -1
  1018. package/dist/react-chartjs/dateAdapter.js +22 -12
  1019. package/dist/react-chartjs/dateFns/dateFns.js +14 -14
  1020. package/dist/react-chartjs/types.d.ts +27 -27
  1021. package/dist/react-chartjs/utils.js +1 -3
  1022. package/dist/searchInput/searchInput.js +1 -3
  1023. package/dist/searchInputRaw/searchInputRaw.js +2 -0
  1024. package/dist/selectList/selectList.js +27 -13
  1025. package/dist/selectList/selectList.reducer.js +17 -9
  1026. package/dist/selectList/selectListItem.js +2 -4
  1027. package/dist/selectRaw/select.helpers.js +2 -2
  1028. package/dist/selectRaw/selectRaw.js +31 -23
  1029. package/dist/selectRaw/types.d.ts +3 -3
  1030. package/dist/selectRaw/utils/getValidWidth.js +1 -1
  1031. package/dist/shield/shield.js +1 -1
  1032. package/dist/sidePanel/sidePanel.d.ts +1 -0
  1033. package/dist/sidePanel/sidePanel.js +39 -8
  1034. package/dist/sidePanel/sidePanelCell/sidePanelCell.js +1 -3
  1035. package/dist/skeleton/lazyContent.js +4 -6
  1036. package/dist/skeleton/skeleton.js +1 -0
  1037. package/dist/skeletonList/skeletonList.js +1 -1
  1038. package/dist/sortControl/sortControl.js +19 -0
  1039. package/dist/stepperRaw/utils/calculateWithPrecision.js +1 -3
  1040. package/dist/summaries/summaries.js +1 -1
  1041. package/dist/summary/summary.js +2 -0
  1042. package/dist/summaryTile/summaryTile.d.ts +45 -2
  1043. package/dist/summaryTile/summaryTile.js +38 -13
  1044. package/dist/summaryTile/summaryTileTrigger.js +2 -2
  1045. package/dist/summaryTile/utils/getTypeClassName.js +1 -1
  1046. package/dist/summaryTileBar/summaryTileBar.js +1 -1
  1047. package/dist/svgIcon/svgIconSize.d.ts +1 -1
  1048. package/dist/svgSprite/svgSprite.js +1 -1
  1049. package/dist/svgSprites/svgSprites.js +1 -1
  1050. package/dist/tabBar/tabBar.js +1 -1
  1051. package/dist/tabBar/tabBarContent.js +1 -1
  1052. package/dist/table/actions/actionsMenu.js +2 -0
  1053. package/dist/table/children/useTableChildren.js +1 -1
  1054. package/dist/table/detailPanel/detailPanel.js +1 -0
  1055. package/dist/table/detailPanel/detailPanelHeader.js +2 -0
  1056. package/dist/table/expandable/useFeedExpandable.js +1 -1
  1057. package/dist/table/flexible/columnSettings.js +2 -0
  1058. package/dist/table/flexible/columnsList.js +1 -0
  1059. package/dist/table/flexible/columnsPopup.js +1 -0
  1060. package/dist/table/flexible/flexibleHeader.js +1 -1
  1061. package/dist/table/flexible/mergeColumnSettings.js +1 -5
  1062. package/dist/table/flexible/useFlexibleColumns.js +8 -13
  1063. package/dist/table/loading/useLoading.d.ts +1 -0
  1064. package/dist/table/loading/useLoading.js +9 -19
  1065. package/dist/table/nested/nestedData.js +4 -3
  1066. package/dist/table/nested/useNestedRows.js +2 -0
  1067. package/dist/table/selectable/selectableHeader.js +4 -0
  1068. package/dist/table/selectable/useSelectableRows.js +2 -0
  1069. package/dist/table/selectable/utils/calculateSelectionState.js +3 -1
  1070. package/dist/table/selectable/utils/checkRow.js +2 -4
  1071. package/dist/table/selectable/utils/getCurrentPageSelection.js +2 -6
  1072. package/dist/table/sortable/mobileSortControl.d.ts +15 -0
  1073. package/dist/table/sortable/mobileSortControl.js +148 -0
  1074. package/dist/table/sortable/sortableHeader.js +2 -0
  1075. package/dist/table/sortable/useSortableColumns.js +21 -10
  1076. package/dist/table/table.d.ts +2 -4
  1077. package/dist/table/table.js +48 -0
  1078. package/dist/tabs/tabItem/tabItem.js +1 -1
  1079. package/dist/tabs/tabs.js +2 -0
  1080. package/dist/textIconButton/textIconButton.d.ts +1 -1
  1081. package/dist/textIconButton/textIconButton.js +1 -1
  1082. package/dist/textInput/textInput.js +1 -3
  1083. package/dist/textInputRaw/textInputRaw.js +2 -2
  1084. package/dist/textarea/textarea.js +1 -3
  1085. package/dist/textareaRaw/textareaRaw.js +2 -2
  1086. package/dist/timePicker/timePicker.js +1 -3
  1087. package/dist/timePickerRaw/components/timeSelect/timeSelect.js +1 -1
  1088. package/dist/timePickerRaw/timePickerRaw.js +23 -0
  1089. package/dist/timePickerRaw/types.d.ts +6 -6
  1090. package/dist/toast/hooks/useToast.js +3 -3
  1091. package/dist/toast/toast.js +28 -10
  1092. package/dist/toast/utils/hideToastCallback.js +3 -2
  1093. package/dist/toastRaw/components/toastAnimation.js +5 -17
  1094. package/dist/toastRaw/hooks/useProgress.js +1 -1
  1095. package/dist/toastRaw/toastRaw.js +1 -0
  1096. package/dist/toggleButtonRaw/toggleButtonRaw.js +6 -2
  1097. package/dist/toggleButtonRaw/types.d.ts +1 -0
  1098. package/dist/toolbar/helpers/getWidthWithMargin.js +1 -1
  1099. package/dist/toolbar/helpers/getWidthWithoutPadding.js +1 -1
  1100. package/dist/toolbar/toolbar.js +4 -5
  1101. package/dist/toolbar/toolbarContent.js +18 -12
  1102. package/dist/toolbar/toolbarMoreButton.js +4 -6
  1103. package/dist/tooltip/helpers/calculateArrowPosition.js +12 -2
  1104. package/dist/tooltip/helpers/removeArrowClasses.js +1 -3
  1105. package/dist/tooltip/tooltip.d.ts +12 -12
  1106. package/dist/tooltip/tooltip.js +16 -6
  1107. package/dist/tooltipInfo/tooltipInfo.js +1 -1
  1108. package/dist/twoOptionsSwitcher/twoOptionsSwitcher.d.ts +2 -1
  1109. package/dist/twoOptionsSwitcher/twoOptionsSwitcher.js +7 -4
  1110. package/dist/utils/abortablePromise.js +1 -3
  1111. package/dist/utils/compareElementsUtils/isObjectNested.js +1 -1
  1112. package/dist/utils/dateInputUtils/useTodayButton.js +4 -2
  1113. package/dist/utils/formatDate.js +37 -0
  1114. package/dist/utils/getParentByClass.d.ts +1 -1
  1115. package/dist/utils/getParentWindow.js +1 -1
  1116. package/dist/utils/globalThisPolyfill.js +1 -1
  1117. package/dist/utils/localization/translations/ar.json +328 -0
  1118. package/dist/utils/localization/translations/cs.json +73 -2
  1119. package/dist/utils/localization/translations/da-DK.json +64 -2
  1120. package/dist/utils/localization/translations/de.json +73 -2
  1121. package/dist/utils/localization/translations/en-json.d.ts +1 -1
  1122. package/dist/utils/localization/translations/en-json.js +113 -113
  1123. package/dist/utils/localization/translations/en.json +11 -2
  1124. package/dist/utils/localization/translations/es.json +73 -2
  1125. package/dist/utils/localization/translations/fi-FI.json +64 -2
  1126. package/dist/utils/localization/translations/fr-FR.json +73 -2
  1127. package/dist/utils/localization/translations/fr.json +73 -2
  1128. package/dist/utils/localization/translations/hu-HU.json +64 -2
  1129. package/dist/utils/localization/translations/id.json +73 -2
  1130. package/dist/utils/localization/translations/it.json +73 -2
  1131. package/dist/utils/localization/translations/ja.json +78 -7
  1132. package/dist/utils/localization/translations/ko-KR.json +65 -2
  1133. package/dist/utils/localization/translations/ms.json +73 -2
  1134. package/dist/utils/localization/translations/nb-NO.json +64 -2
  1135. package/dist/utils/localization/translations/nl.json +73 -2
  1136. package/dist/utils/localization/translations/pl.json +73 -2
  1137. package/dist/utils/localization/translations/pt-BR.json +73 -2
  1138. package/dist/utils/localization/translations/pt-PT.json +15 -3
  1139. package/dist/utils/localization/translations/ro-RO.json +14 -2
  1140. package/dist/utils/localization/translations/sk-SK.json +65 -2
  1141. package/dist/utils/localization/translations/sv.json +73 -2
  1142. package/dist/utils/localization/translations/th.json +73 -2
  1143. package/dist/utils/localization/translations/tr.json +73 -2
  1144. package/dist/utils/localization/translations/zh-Hans.json +73 -2
  1145. package/dist/utils/localization/translations/zh-TW.json +65 -2
  1146. package/dist/utils/localization/translationsDictionary.js +2 -1
  1147. package/dist/utils/positioningUtils/alignments.js +5 -5
  1148. package/dist/utils/positioningUtils/calculatePosition.js +7 -5
  1149. package/dist/utils/positioningUtils/normalizeHorizontally.js +2 -2
  1150. package/dist/utils/positioningUtils/normalizeVertically.js +2 -2
  1151. package/dist/utils/positioningUtils/tooltipAlignments.js +13 -13
  1152. package/dist/utils/toKebabCase.d.ts +16 -0
  1153. package/dist/utils/toKebabCase.js +25 -0
  1154. package/dist/utils/userFormat/userFormatContext.js +1 -1
  1155. package/dist/waiting/waiting.js +5 -4
  1156. package/esm/absolute/absolute.js +3 -1
  1157. package/esm/accordion/accordion.js +1 -1
  1158. package/esm/accordion/accordionItem/accordionItem.js +1 -9
  1159. package/esm/advancedGroupsFilter/advancedGroupsFilter.js +3 -0
  1160. package/esm/advancedGroupsFilter/advancedGroupsFilterForm.js +2 -0
  1161. package/esm/advancedGroupsFilter/advancedGroupsFilterFormHelper.js +1 -4
  1162. package/esm/advancedGroupsFilter/advancedGroupsFilterFormSection.js +9 -2
  1163. package/esm/advancedGroupsFilter/advancedGroupsFilterHelper.js +3 -1
  1164. package/esm/advancedGroupsFilter/advancedGroupsFilterSectionTooltip.js +1 -0
  1165. package/esm/alert/alert.js +45 -11
  1166. package/esm/alert/hooks/useAlert.js +3 -3
  1167. package/esm/alert/utils/hideAlertCallback.js +2 -2
  1168. package/esm/alertRaw/alertRaw.js +1 -0
  1169. package/esm/alertRaw/components/alertAnimation.js +5 -17
  1170. package/esm/anchor/anchor.js +1 -1
  1171. package/esm/banner/banner.js +3 -3
  1172. package/esm/banner/bannerMultipLine.js +1 -0
  1173. package/esm/banner/bannerSingleLine.js +1 -0
  1174. package/esm/banner/bannerUtils.js +5 -5
  1175. package/esm/banner/typeIcon.js +7 -7
  1176. package/esm/banner/utils/isBannerTarget.d.ts +1 -0
  1177. package/esm/banner/utils/isBannerTarget.js +7 -0
  1178. package/esm/betaPill/betaPill.js +37 -0
  1179. package/esm/betaPill/betaPillContext.js +1 -1
  1180. package/esm/bookmark/bookmark.js +2 -0
  1181. package/esm/bulkEditControl/bulkEditControl.d.ts +1 -1
  1182. package/esm/bulkEditControl/bulkEditControl.js +6 -1
  1183. package/esm/button/button.d.ts +2 -1
  1184. package/esm/button/button.js +3 -3
  1185. package/esm/button/buttonType.d.ts +1 -1
  1186. package/esm/calendar/calendar.js +23 -0
  1187. package/esm/calendar/calendarUtils.js +50 -0
  1188. package/esm/calendar/dateUtils.js +35 -19
  1189. package/esm/card/card.d.ts +6 -6
  1190. package/esm/card/card.js +1 -0
  1191. package/esm/card/components/cardButton/cardButton.d.ts +2 -1
  1192. package/esm/card/components/cardButton/cardButton.js +7 -4
  1193. package/esm/card/components/cardToggle/cardToggle.js +1 -1
  1194. package/esm/card/components/status.js +8 -2
  1195. package/esm/card/components/title.js +4 -8
  1196. package/esm/card/components/titleLink.js +2 -2
  1197. package/esm/card/helpers/getDefaultFullWidthValue.js +1 -1
  1198. package/esm/cardContainer/hooks/useAbsoluteSize.js +2 -1
  1199. package/esm/cards/cards.js +1 -1
  1200. package/esm/cards/cardsRow.js +1 -1
  1201. package/esm/chart/accessibleChart/accessibleChart.js +1 -1
  1202. package/esm/chart/accessibleChart/accessibleChartNarrative.js +267 -1
  1203. package/esm/chart/accessibleChart/accessibleChartTable.js +28 -0
  1204. package/esm/chart/barChart/getBarTooltipItems.js +11 -10
  1205. package/esm/chart/barChart/getDefaultDatasetStyle.js +1 -10
  1206. package/esm/chart/barChart/getDefaultOptions.js +16 -14
  1207. package/esm/chart/barChart.js +2 -10
  1208. package/esm/chart/chart.js +24 -0
  1209. package/esm/chart/chartAxis/chartAxis.js +2 -0
  1210. package/esm/chart/chartInsight/chartInsight.js +1 -1
  1211. package/esm/chart/lineChart/getDatasetColor.js +1 -10
  1212. package/esm/chart/lineChart/getDefaultOptions.js +38 -27
  1213. package/esm/chart/lineChart/useSummary.js +4 -2
  1214. package/esm/chart/lineChart.js +2 -10
  1215. package/esm/chart/pieChart/centerTextPlugin.d.ts +3 -0
  1216. package/esm/chart/pieChart/centerTextPlugin.js +29 -0
  1217. package/esm/chart/pieChart/getDefaultDatasetStyle.js +1 -10
  1218. package/esm/chart/pieChart/getPieTooltipItems.js +4 -2
  1219. package/esm/chart/pieChart/interfaces.d.ts +13 -0
  1220. package/esm/chart/pieChart/pieLegendPlugin.d.ts +7 -0
  1221. package/esm/chart/pieChart/pieLegendPlugin.js +41 -0
  1222. package/esm/chart/pieChart/renderPieLegend.d.ts +7 -0
  1223. package/esm/chart/pieChart/renderPieLegend.js +57 -0
  1224. package/esm/chart/pieChart.d.ts +3 -3
  1225. package/esm/chart/pieChart.js +38 -13
  1226. package/esm/chart/plugins/legend/renderLegend.js +5 -3
  1227. package/esm/chart/plugins/linePlugin/getInterpolatedValue.js +1 -1
  1228. package/esm/chart/plugins/linePlugin/linePlugin.js +4 -2
  1229. package/esm/chart/plugins/tooltip/calculatePositions.js +12 -12
  1230. package/esm/chart/plugins/tooltip/renderTooltip.js +1 -1
  1231. package/esm/chart/plugins/tooltip/tooltipPlugin.js +3 -2
  1232. package/esm/chart/utils/getYAxisMeta.js +5 -3
  1233. package/esm/chart/utils/removeTrendDataFromDatasets.js +1 -1
  1234. package/esm/checkbox/checkbox.js +1 -1
  1235. package/esm/checkbox/checkboxIconCheckmark.js +2 -6
  1236. package/esm/checkbox/checkboxIconMinus.js +2 -6
  1237. package/esm/checkboxListWithAction/checkboxListWithAction.js +29 -0
  1238. package/esm/checkboxNonInteractive/checkboxNonInteractive.js +1 -3
  1239. package/esm/chip/chip.d.ts +1 -0
  1240. package/esm/chip/chip.js +15 -7
  1241. package/esm/columnsSelector/columnsSelector.d.ts +1 -1
  1242. package/esm/columnsSelector/columnsSelector.js +3 -1
  1243. package/esm/columnsSelector/columnsTab/columnsTab.js +1 -0
  1244. package/esm/columnsSelector/columnsTabGroup/columnsTabGroup.js +1 -0
  1245. package/esm/comboboxSelected/comboboxSelected.js +3 -6
  1246. package/esm/commonHelpers/arrowNavigation/components/arrowButton/arrowButton.js +1 -3
  1247. package/esm/commonHelpers/arrowNavigation/hooks/useClearTimers.js +3 -1
  1248. package/esm/commonHelpers/hooks/deviceProvider.js +1 -1
  1249. package/esm/commonHelpers/hooks/useFetch.js +4 -2
  1250. package/esm/commonHelpers/hooks/useResizeObserver.js +7 -5
  1251. package/esm/commonHelpers/hooks/useThrottle.js +1 -1
  1252. package/esm/commonHelpers/hooks/useTrapFocus.js +10 -6
  1253. package/esm/commonHelpers/isDomEnv.js +1 -6
  1254. package/esm/commonHelpers/keyboard.js +1 -4
  1255. package/esm/commonHelpers/utils.js +1 -1
  1256. package/esm/commonStyles/typography/components/typographyItem.js +1 -1
  1257. package/esm/controlledPopup/controlledPopup.d.ts +2 -5
  1258. package/esm/controlledPopup/controlledPopup.js +2 -2
  1259. package/esm/dataFeed/dataFeed.js +6 -7
  1260. package/esm/dataFeed/dataFeedCell/dataFeedCell.js +9 -9
  1261. package/esm/dataFeed/dataFeedColumnsItems.js +34 -16
  1262. package/esm/dataFeed/dataFeedHeader/dataFeedHeader.js +1 -1
  1263. package/esm/dataFeed/dataFeedSelectPanel/dataFeedSelectPanel.js +1 -1
  1264. package/esm/dataFeed/feedItem/feedItem.js +1 -1
  1265. package/esm/dataFeed/feedSelectControl/feedSelectControl.js +1 -1
  1266. package/esm/dataGrid/cell/cell.js +6 -4
  1267. package/esm/dataGrid/columns/actionLinkColumn/actionButtonsMobileWrapper.js +2 -6
  1268. package/esm/dataGrid/columns/actionLinkColumn/actionLinkColumnWrapper.js +2 -6
  1269. package/esm/dataGrid/columns/actionsColumn/actionsButton.js +3 -5
  1270. package/esm/dataGrid/columns/actionsColumn/actionsColumn.js +22 -7
  1271. package/esm/dataGrid/columns/actionsColumn/actionsColumnCell.js +1 -3
  1272. package/esm/dataGrid/columns/basicColumn.js +2 -4
  1273. package/esm/dataGrid/columns/checkboxColumn/checkboxCell.d.ts +1 -0
  1274. package/esm/dataGrid/columns/checkboxColumn/checkboxCell.js +4 -2
  1275. package/esm/dataGrid/columns/checkboxColumn/checkboxColumn.d.ts +1 -1
  1276. package/esm/dataGrid/columns/checkboxColumn/checkboxColumnWrapper.js +3 -5
  1277. package/esm/dataGrid/columns/checkboxColumn/checkboxHeaderCell.js +1 -0
  1278. package/esm/dataGrid/columns/mainColumn/mainColumnWrapper.js +12 -8
  1279. package/esm/dataGrid/dataGrid.js +2 -1
  1280. package/esm/dataGrid/emptySearchList/emptySearchList.js +1 -0
  1281. package/esm/dataGrid/entitiesListActions/actions/columnsListButton.js +1 -0
  1282. package/esm/dataGrid/entitiesListActions/actions/fullscreenButton.js +27 -0
  1283. package/esm/dataGrid/entitiesListActions/entitiesListActions.js +3 -6
  1284. package/esm/dataGrid/headerCell/headerCell.js +2 -2
  1285. package/esm/dataGrid/listColumn.d.ts +2 -4
  1286. package/esm/dataGrid/row/row.js +8 -16
  1287. package/esm/dataGrid/withActions/withActions.js +3 -1
  1288. package/esm/dataGrid/withFlexibleColumns/columns/flexibleColumnWrapper.js +2 -2
  1289. package/esm/dataGrid/withFlexibleColumns/components/columnSettings.js +2 -0
  1290. package/esm/dataGrid/withFlexibleColumns/components/columnSettingsList.js +4 -2
  1291. package/esm/dataGrid/withFlexibleColumns/flexibleColumnsReorder.js +3 -3
  1292. package/esm/dataGrid/withFlexibleColumns/flexibleColumnsResizer.js +4 -4
  1293. package/esm/dataGrid/withFlexibleColumns/flexibleColumnsStorage.js +1 -5
  1294. package/esm/dataGrid/withFlexibleColumns/withFlexibleColumns.js +20 -27
  1295. package/esm/dataGrid/withLoading/withLoading.js +5 -10
  1296. package/esm/dataGrid/withSelectableRows/components/bulkActions/bulkAction.d.ts +3 -3
  1297. package/esm/dataGrid/withSelectableRows/components/bulkActions/bulkActionButton/bulkActionButton.js +1 -1
  1298. package/esm/dataGrid/withSelectableRows/components/bulkActions/bulkActionLink/bulkActionLink.js +1 -1
  1299. package/esm/dataGrid/withSelectableRows/components/bulkActions/bulkActions.js +5 -0
  1300. package/esm/dataGrid/withSelectableRows/withLimitedSelectableRows.js +5 -3
  1301. package/esm/dataGrid/withSelectableRows/withSelectableRows.js +3 -0
  1302. package/esm/dataGrid/withSortableColumns/columns/sortableColumnWrapper.d.ts +2 -1
  1303. package/esm/dataGrid/withSortableColumns/columns/sortableColumnWrapper.js +11 -2
  1304. package/esm/dataGrid/withSortableColumns/withSortableColumns.js +13 -13
  1305. package/esm/dateInput/dateInput.js +1 -3
  1306. package/esm/dateInputInner/dateInputInner.js +77 -3
  1307. package/esm/dateInputInner/dateInputInnerControlBlock.js +15 -9
  1308. package/esm/dateInputInner/dateInputInnerReducer.d.ts +1 -1
  1309. package/esm/dateInputRaw/dateInputRaw.js +3 -0
  1310. package/esm/dateInputRaw/utils/getLabel.js +25 -0
  1311. package/esm/dateRange/dateRange.js +1 -1
  1312. package/esm/dateRangeInner/dateRangeInner.js +2 -1
  1313. package/esm/dateRangeRaw/dateRangeRaw.js +33 -2
  1314. package/esm/dateRangeRaw/utils/areMapsEqual.js +3 -1
  1315. package/esm/dateRangeRaw/utils/dateRangeUtils.js +17 -0
  1316. package/esm/dateSelectionWrapper/dateSelectionWrapper.js +4 -0
  1317. package/esm/dialog/dialogContent.d.ts +1 -1
  1318. package/esm/dialog/dialogContent.js +2 -1
  1319. package/esm/dropdown/dropdown.js +1 -10
  1320. package/esm/dropdown/dropdownPopup.d.ts +1 -1
  1321. package/esm/dropdown/dropdownTrigger.d.ts +1 -1
  1322. package/esm/dropdownRaw/dropdownHelper.d.ts +10 -0
  1323. package/esm/dropdownRaw/dropdownHelper.js +39 -21
  1324. package/esm/dropdownRaw/dropdownList.d.ts +2 -1
  1325. package/esm/dropdownRaw/dropdownList.js +33 -4
  1326. package/esm/dropdownRaw/dropdownPopup.d.ts +2 -1
  1327. package/esm/dropdownRaw/dropdownPopup.js +10 -4
  1328. package/esm/dropdownRaw/dropdownRaw.js +20 -5
  1329. package/esm/dropdownRaw/dropdownSearchableTrigger.js +4 -0
  1330. package/esm/dropdownRaw/dropdownTestData.js +683 -699
  1331. package/esm/dropdownRaw/dropdownTrigger.d.ts +2 -1
  1332. package/esm/dropdownRaw/dropdownTrigger.js +8 -3
  1333. package/esm/dropdownRaw/stateReducer/stateReducer.js +29 -17
  1334. package/esm/dropdownRaw/types.d.ts +3 -3
  1335. package/esm/dropdownRaw/utils/getSelectedValues.js +4 -1
  1336. package/esm/emptyState/emptyState.js +1 -3
  1337. package/esm/favoriteButton/favoriteButton.js +1 -0
  1338. package/esm/feedbackContainer/feedbackContainer.js +6 -2
  1339. package/esm/feedbackContainer/hooks/useFeedbackAlert.js +42 -31
  1340. package/esm/feedbackContainer/hooks/useFeedbackToast.js +30 -30
  1341. package/esm/feedbackContainer/utils/getToastAnimation.js +1 -1
  1342. package/esm/fileUpload/components/dropZoneContent.d.ts +15 -0
  1343. package/esm/fileUpload/components/dropZoneContent.js +166 -0
  1344. package/esm/fileUpload/components/templateDownloadSection.d.ts +11 -0
  1345. package/esm/fileUpload/components/templateDownloadSection.js +62 -0
  1346. package/esm/fileUpload/components/uploadedFilesSection.d.ts +13 -0
  1347. package/esm/fileUpload/components/uploadedFilesSection.js +150 -0
  1348. package/esm/fileUpload/fileUpload.d.ts +6 -0
  1349. package/esm/fileUpload/fileUpload.js +368 -0
  1350. package/esm/fileUpload/fileUploadType.d.ts +33 -0
  1351. package/esm/fileUpload/fileUploadType.js +1 -0
  1352. package/esm/filterButton/filterButton.js +6 -6
  1353. package/esm/filters/components/filtersChip.js +2 -2
  1354. package/esm/filters/components/filtersContainer.js +2 -0
  1355. package/esm/filters/components/filtersCustomProvider.js +1 -1
  1356. package/esm/filters/components/filtersDateInput.js +6 -2
  1357. package/esm/filters/components/filtersDropdown.js +16 -2
  1358. package/esm/filters/components/filtersEmptyState.js +48 -0
  1359. package/esm/filters/components/filtersSaveModal.js +74 -0
  1360. package/esm/filters/components/filtersSavedChipComponent.js +128 -0
  1361. package/esm/filters/components/filtersSavedItemsProvider.js +7 -1
  1362. package/esm/filters/components/filtersSearchItemData.js +1 -0
  1363. package/esm/filters/components/filtersSearchList.js +102 -0
  1364. package/esm/filters/components/filtersSelect.js +1 -0
  1365. package/esm/filters/components/filtersSelectCompact.js +3 -7
  1366. package/esm/filters/components/filtersSelectListItem.js +2 -0
  1367. package/esm/filters/components/filtersSelectUnfoldingPill.js +8 -2
  1368. package/esm/filters/components/filtersSidePanel.js +31 -0
  1369. package/esm/filters/components/filtersSidePanelChip.js +1 -1
  1370. package/esm/filters/components/filtersSidePanelDateRange.js +1 -1
  1371. package/esm/filters/components/filtersSidePanelDropdown.js +21 -16
  1372. package/esm/filters/components/filtersSidePanelItem.js +1 -1
  1373. package/esm/filters/components/filtersSidePanelItemWrapper.js +1 -1
  1374. package/esm/filters/filters.js +147 -0
  1375. package/esm/filters/filtersHelper.js +13 -13
  1376. package/esm/filtersBar/components/filtersBarDateInput/filtersBarDateInput.js +10 -2
  1377. package/esm/filtersBar/components/filtersBarDropdown/filtersBarDropdown.js +48 -27
  1378. package/esm/filtersBar/components/filtersBarDropdownWithCheckbox/filtersBarDropdownWithCheckbox.js +44 -19
  1379. package/esm/filtersBar/components/filtersBarGroupButton/filtersBarGroupButton.js +2 -2
  1380. package/esm/filtersBar/components/filtersBarGroupsFilter/filtersBarGroupsFilter.js +2 -2
  1381. package/esm/filtersBar/components/filtersBarPeriodPicker/filtersBarPeriodPicker.js +30 -4
  1382. package/esm/filtersBar/components/filtersBarPeriodPicker/getRangeOption.js +19 -1
  1383. package/esm/filtersBar/components/filtersBarPeriodPicker/normalizeDates.js +32 -10
  1384. package/esm/filtersBar/components/filtersBarRange/filtersBarRange.js +6 -5
  1385. package/esm/filtersBar/components/filtersBarSearch/filtersBarSearch.js +2 -2
  1386. package/esm/filtersBar/components/resetComponentButton.js +1 -0
  1387. package/esm/filtersBar/filtersBar.d.ts +4 -4
  1388. package/esm/filtersBar/filtersBar.js +60 -29
  1389. package/esm/filtersBar/filtersBarActions/filtersBarActions.js +3 -0
  1390. package/esm/filtersBar/filtersBarProvider.js +4 -1
  1391. package/esm/filtersBar/filtersBarProviderSearch.js +1 -2
  1392. package/esm/filtersBar/filtersBarProviderTrigger.js +1 -1
  1393. package/esm/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelCheckboxGroup/filtersBarSidePanelCheckboxGroup.js +1 -1
  1394. package/esm/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelDropdownWithCheckbox/filtersBarSidePanelDropdownWithCheckbox.js +21 -12
  1395. package/esm/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRadioGroup/filtersBarSidePanelRadioGroup.js +1 -1
  1396. package/esm/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRange/filtersBarSidePanelRange.js +5 -0
  1397. package/esm/filtersBar/filtersBarSidePanel/filtersBarSidePanel.js +5 -0
  1398. package/esm/filtersBar/filtersBarSidePanel/hooks/useDirection.js +3 -1
  1399. package/esm/filtersBar/filtersContainer/filtersContainer.js +2 -0
  1400. package/esm/filtersBar/utils/getNumberOfChangedFilters.js +2 -2
  1401. package/esm/footerButtons/footerButtons.js +9 -2
  1402. package/esm/formField/components/formFieldAdditionalInfo.js +1 -3
  1403. package/esm/formField/components/formFieldAssistiveError.js +1 -5
  1404. package/esm/formField/components/formFieldCounter.js +1 -1
  1405. package/esm/formField/components/formFieldWithLabel.js +4 -4
  1406. package/esm/formField/components/formFieldWithoutLabel.js +2 -2
  1407. package/esm/formField/components/isOldFormFieldComponent.js +1 -7
  1408. package/esm/formField/components/trailingComponent.js +2 -2
  1409. package/esm/formField/hooks/useBanner.js +1 -1
  1410. package/esm/formField/hooks/useContainer.js +31 -4
  1411. package/esm/formField/hooks/useError.js +26 -0
  1412. package/esm/formField/hooks/useFormFieldClasses.js +5 -1
  1413. package/esm/formField/hooks/useFormFieldProps.js +9 -1
  1414. package/esm/formField/hooks/useReadonly.js +1 -1
  1415. package/esm/formField/hooks/useSkeleton.js +1 -3
  1416. package/esm/formField/utils/getFormFieldBanner.js +1 -1
  1417. package/esm/formFieldError/formFieldError.d.ts +2 -1
  1418. package/esm/formFieldError/formFieldError.js +5 -3
  1419. package/esm/formGroup/components/customRow/customRow.js +1 -1
  1420. package/esm/formGroup/components/list.js +1 -1
  1421. package/esm/formGroup/components/listToggle/listToggle.js +8 -6
  1422. package/esm/formGroup/components/oneRow.js +1 -1
  1423. package/esm/formGroup/components/reviewListToggle/reviewListToggle.js +3 -1
  1424. package/esm/formGroup/components/reviewTextControl.js +1 -1
  1425. package/esm/formGroup/components/twoRows.js +1 -1
  1426. package/esm/formGroup/formGroup.js +8 -8
  1427. package/esm/formGroup/hooks/listHooks/useControlClasses.js +1 -1
  1428. package/esm/formGroup/hooks/listHooks/useControls.js +1 -1
  1429. package/esm/formGroup/hooks/listHooks/useElementsState.js +1 -1
  1430. package/esm/formGroup/hooks/listHooks/useLabelClasses.js +1 -1
  1431. package/esm/formGroup/hooks/useCustomRow.js +27 -9
  1432. package/esm/formGroup/hooks/useToggle.js +24 -0
  1433. package/esm/formGroup/utils/applyCustomControlClasses.js +2 -1
  1434. package/esm/formGroup/utils/getControlNode.js +1 -1
  1435. package/esm/formGroup/utils/getControls.js +12 -8
  1436. package/esm/formGroup/utils/getElementsControl.js +4 -4
  1437. package/esm/formGroup/utils/getLabelNode.js +1 -1
  1438. package/esm/formGroup/utils/getTotalState.js +1 -1
  1439. package/esm/formGroup/utils/hasWidthProp.js +1 -1
  1440. package/esm/formGroupItem/formGroupItem.js +1 -1
  1441. package/esm/formLayout/components/columnTitle/formLayoutColumnTitle.js +1 -1
  1442. package/esm/formLayout/components/customColumns.js +2 -2
  1443. package/esm/formLayout/components/formLayoutSecondary.js +1 -1
  1444. package/esm/formLayout/components/formLayoutTitle.js +1 -1
  1445. package/esm/formLayout/components/getLayoutColumns.js +3 -6
  1446. package/esm/formLayout/components/oneColumnGrid.js +2 -2
  1447. package/esm/formLayout/components/useCustomColumns.js +10 -10
  1448. package/esm/formLayout/formLayout.js +3 -3
  1449. package/esm/formLayout/hooks/getStepperLayout.js +1 -1
  1450. package/esm/formLayout/hooks/useError.js +49 -0
  1451. package/esm/formLayout/hooks/useFormButtons.d.ts +1 -1
  1452. package/esm/formLayout/hooks/useFormButtons.js +3 -0
  1453. package/esm/formLayout/hooks/useLoading.js +1 -1
  1454. package/esm/formLayout/utils/applyLayoutPosition/applyLayoutPosition.js +13 -13
  1455. package/esm/formLayout/utils/attachHeadings.js +2 -2
  1456. package/esm/formLayout/utils/attachStepper.js +6 -2
  1457. package/esm/formLayout/utils/getAllowedComponents.js +1 -1
  1458. package/esm/formLayout/utils/getChildrenWithCustomColumns.js +9 -9
  1459. package/esm/formLayout/utils/getFilteredComponents.js +1 -6
  1460. package/esm/formLayout/utils/isStaticElement.js +5 -1
  1461. package/esm/formSection/components/additionalSection.js +2 -2
  1462. package/esm/formSection/components/formSectionCard.js +13 -12
  1463. package/esm/formSection/components/formSectionDefault.js +7 -6
  1464. package/esm/formSection/components/formSectionDefaultTitle.js +1 -1
  1465. package/esm/formSection/components/formSectionInner.js +1 -1
  1466. package/esm/formSection/components/formSectionModal.js +1 -1
  1467. package/esm/formSection/formSection.js +5 -4
  1468. package/esm/formSection/hooks/useError.js +49 -0
  1469. package/esm/formSection/hooks/useLoading.js +3 -3
  1470. package/esm/formSection/utils/formSectionProvider.js +1 -1
  1471. package/esm/formSection/utils/isFormSection.js +4 -1
  1472. package/esm/formSection/utils/isModalSection.js +1 -4
  1473. package/esm/formStepper/components/formStep.js +1 -0
  1474. package/esm/formStepper/components/formStepRaw.js +11 -2
  1475. package/esm/formStepper/formStepper.js +2 -0
  1476. package/esm/formStepperButtons/formStepperButtons.js +4 -0
  1477. package/esm/formStepperButtons/utils/getCurrentIndex.js +1 -1
  1478. package/esm/gridLayout/gridLayout.js +1 -1
  1479. package/esm/gridLayout/hooks/useGridClasses.js +7 -1
  1480. package/esm/gridLayout/hooks/useStretch.js +1 -4
  1481. package/esm/gridLayout/utils/adaptGridState.js +3 -3
  1482. package/esm/gridLayout/utils/convertClassesToState.js +1 -1
  1483. package/esm/gridLayout/utils/getGridClasses.js +3 -9
  1484. package/esm/gridLayout/utils/getGridPositionClasses.js +5 -7
  1485. package/esm/gridLayout/utils/getGridRows.js +8 -4
  1486. package/esm/gridLayout/utils/getGridWidthClasses.js +5 -13
  1487. package/esm/gridLayout/utils/gridLayoutProvider.js +1 -1
  1488. package/esm/gridLayout/utils/hasGridClasses.js +3 -7
  1489. package/esm/gridLayout/utils/isGridItem.js +8 -8
  1490. package/esm/gridLayout/utils/mergeGridStates.js +8 -7
  1491. package/esm/gridLayout/utils/removeSameTypeClasses.js +1 -1
  1492. package/esm/gridLayout/utils/updateGridStateFromClassNames.js +32 -8
  1493. package/esm/groupButtonRaw/components/groupButtonOption.js +2 -2
  1494. package/esm/groupButtonRaw/groupButtonRaw.js +8 -2
  1495. package/esm/groupButtonRaw/types.d.ts +1 -0
  1496. package/esm/groupsFilter/groupsFilter.js +1 -3
  1497. package/esm/groupsFilterRaw/groupsFilterAdjustmentState.js +4 -0
  1498. package/esm/groupsFilterRaw/groupsFilterAdvancedValue.js +1 -1
  1499. package/esm/groupsFilterRaw/groupsFilterBox.js +3 -0
  1500. package/esm/groupsFilterRaw/groupsFilterCommon.js +2 -0
  1501. package/esm/groupsFilterRaw/groupsFilterCounter.js +1 -1
  1502. package/esm/groupsFilterRaw/groupsFilterCurrentlySelectedState.js +35 -3
  1503. package/esm/groupsFilterRaw/groupsFilterHelper.js +2 -0
  1504. package/esm/groupsFilterRaw/groupsFilterInitialState.js +8 -0
  1505. package/esm/groupsFilterRaw/groupsFilterLabelBox.js +1 -1
  1506. package/esm/groupsFilterRaw/groupsFilterMenu.js +3 -0
  1507. package/esm/groupsFilterRaw/groupsFilterRaw.js +10 -2
  1508. package/esm/groupsFilterRaw/groupsFilterStatesHelper.js +10 -4
  1509. package/esm/groupsFilterRaw/groupsFilterTestData.js +16 -2
  1510. package/esm/groupsFilterRaw/groupsFilterTrigger.js +2 -0
  1511. package/esm/groupsFilterRaw/groupsHelper.js +44 -22
  1512. package/esm/groupsFilterRaw/stateReducer/stateReducerHelper.js +14 -10
  1513. package/esm/groupsFilterRaw/testData.js +27665 -27665
  1514. package/esm/header/components/basicToolbar/basicToolbar.js +5 -2
  1515. package/esm/header/components/collapsedItemsControl/collapsedItemsControl.js +1 -0
  1516. package/esm/header/components/collapsedItemsControl/utils/handleCustomMenuWrapper.d.ts +1 -1
  1517. package/esm/header/components/mobileFilterControl/mobileFilterControl.js +1 -0
  1518. package/esm/header/components/mobileSearchControl/mobileSearchControl.js +3 -0
  1519. package/esm/header/header.js +12 -4
  1520. package/esm/header/headerBack.js +1 -0
  1521. package/esm/header/headerButton.js +1 -3
  1522. package/esm/header/headerHelpers.js +12 -10
  1523. package/esm/header/headerMenu.js +4 -2
  1524. package/esm/header/hooks/useNonFittingElements.js +4 -4
  1525. package/esm/headerTitle/headerTitle.d.ts +1 -1
  1526. package/esm/headerTitle/headerTitle.js +3 -5
  1527. package/esm/headerTitle/headerTitleSubline/headerTitleSubline.js +1 -1
  1528. package/esm/headerTitle/headerTitleTools/headerTitleTools.js +1 -1
  1529. package/esm/icons/deprecated/iconBackArrow.js +2 -6
  1530. package/esm/icons/deprecated/iconCheckmark.js +2 -6
  1531. package/esm/icons/deprecated/iconCrossThin.js +2 -6
  1532. package/esm/icons/deprecated/iconFlatFilledArrowDown.js +2 -6
  1533. package/esm/icons/deprecated/iconGlobe.js +2 -6
  1534. package/esm/icons/deprecated/iconHouse.js +2 -6
  1535. package/esm/icons/deprecated/iconInfoCircleTooltip.js +2 -6
  1536. package/esm/icons/deprecated/iconLoupe.js +2 -6
  1537. package/esm/icons/deprecated/iconMinusIcon.js +2 -6
  1538. package/esm/icons/deprecated/iconOrgFilter.js +2 -6
  1539. package/esm/icons/deprecated/iconRefresh.js +2 -6
  1540. package/esm/icons/iconActivity.js +2 -6
  1541. package/esm/icons/iconAddPeople.js +2 -6
  1542. package/esm/icons/iconAiImages.js +2 -6
  1543. package/esm/icons/iconAiSparkles.js +2 -6
  1544. package/esm/icons/iconAiSparkles2.js +2 -6
  1545. package/esm/icons/iconAirplay.js +2 -6
  1546. package/esm/icons/iconAirpods.js +2 -6
  1547. package/esm/icons/iconAlignBottom.js +2 -6
  1548. package/esm/icons/iconAlignLeft.js +2 -6
  1549. package/esm/icons/iconAlignRightBox.js +2 -6
  1550. package/esm/icons/iconAlignTopBox.js +2 -6
  1551. package/esm/icons/iconAlignmentCenter.js +2 -6
  1552. package/esm/icons/iconAlignmentJustify.js +2 -6
  1553. package/esm/icons/iconAlignmentLeft.js +2 -6
  1554. package/esm/icons/iconAlignmentRight.js +2 -6
  1555. package/esm/icons/iconAnchor.js +2 -6
  1556. package/esm/icons/iconAnchor2.js +2 -6
  1557. package/esm/icons/iconArchive.js +2 -6
  1558. package/esm/icons/iconArchive2.js +2 -6
  1559. package/esm/icons/iconArrowBottom.js +2 -6
  1560. package/esm/icons/iconArrowBottomCircle.js +2 -6
  1561. package/esm/icons/iconArrowBottomLeft.js +2 -6
  1562. package/esm/icons/iconArrowBottomRight.js +2 -6
  1563. package/esm/icons/iconArrowDownPath.js +2 -6
  1564. package/esm/icons/iconArrowLeft.js +2 -6
  1565. package/esm/icons/iconArrowLeftCircle.js +2 -6
  1566. package/esm/icons/iconArrowLeftPath.js +2 -6
  1567. package/esm/icons/iconArrowRight.js +2 -6
  1568. package/esm/icons/iconArrowRightCircle.js +2 -6
  1569. package/esm/icons/iconArrowRightPath.js +2 -6
  1570. package/esm/icons/iconArrowTop.js +2 -6
  1571. package/esm/icons/iconArrowTopCircle.js +2 -6
  1572. package/esm/icons/iconArrowTopLeft.js +2 -6
  1573. package/esm/icons/iconArrowTopRight.js +2 -6
  1574. package/esm/icons/iconArrowUpPath.js +2 -6
  1575. package/esm/icons/iconAt.js +2 -6
  1576. package/esm/icons/iconAttachment.js +2 -6
  1577. package/esm/icons/iconAttachment2.js +2 -6
  1578. package/esm/icons/iconAttachmentFile.js +2 -6
  1579. package/esm/icons/iconAudio.js +2 -6
  1580. package/esm/icons/iconAutoSize.js +2 -6
  1581. package/esm/icons/iconBackward.js +2 -6
  1582. package/esm/icons/iconBadge.js +2 -6
  1583. package/esm/icons/iconBag.js +2 -6
  1584. package/esm/icons/iconBag2.js +2 -6
  1585. package/esm/icons/iconBagLuggage.js +2 -6
  1586. package/esm/icons/iconBagLuggage2.js +2 -6
  1587. package/esm/icons/iconBasket.js +2 -6
  1588. package/esm/icons/iconBasket2.js +2 -6
  1589. package/esm/icons/iconBatteryError.js +2 -6
  1590. package/esm/icons/iconBatteryFull.js +2 -6
  1591. package/esm/icons/iconBatteryLoading.js +2 -6
  1592. package/esm/icons/iconBatteryLow.js +2 -6
  1593. package/esm/icons/iconBatteryLow2.js +2 -6
  1594. package/esm/icons/iconBatteryMedium.js +2 -6
  1595. package/esm/icons/iconBell.js +2 -6
  1596. package/esm/icons/iconBeta.js +2 -6
  1597. package/esm/icons/iconBitcoin.js +2 -6
  1598. package/esm/icons/iconBluetooth.js +2 -6
  1599. package/esm/icons/iconBold.js +2 -6
  1600. package/esm/icons/iconBook.js +2 -6
  1601. package/esm/icons/iconBook2.js +2 -6
  1602. package/esm/icons/iconBookmark.js +2 -6
  1603. package/esm/icons/iconBookmarkCheck.js +2 -6
  1604. package/esm/icons/iconBookmarkDelete.js +2 -6
  1605. package/esm/icons/iconBookmarkFill.js +2 -6
  1606. package/esm/icons/iconBookmarkPlus.js +2 -6
  1607. package/esm/icons/iconBookmarkSelectedHover.js +2 -6
  1608. package/esm/icons/iconBranches.js +2 -6
  1609. package/esm/icons/iconBrokenLink.js +2 -6
  1610. package/esm/icons/iconBrowser.js +2 -6
  1611. package/esm/icons/iconBrush.js +2 -6
  1612. package/esm/icons/iconBubble.js +2 -6
  1613. package/esm/icons/iconBubble2.js +2 -6
  1614. package/esm/icons/iconBubble3.js +2 -6
  1615. package/esm/icons/iconBubble4.js +2 -6
  1616. package/esm/icons/iconBubble5.js +2 -6
  1617. package/esm/icons/iconBubble6.js +2 -6
  1618. package/esm/icons/iconBubbleAnnotation.js +2 -6
  1619. package/esm/icons/iconBubbleAnnotation2.js +2 -6
  1620. package/esm/icons/iconBubbleAnnotation4.js +2 -6
  1621. package/esm/icons/iconBubbleAnnotation5.js +2 -6
  1622. package/esm/icons/iconBubbleAnnotation6.js +2 -6
  1623. package/esm/icons/iconBubbleNotification.js +2 -6
  1624. package/esm/icons/iconBubbles.js +2 -6
  1625. package/esm/icons/iconBucket.js +2 -6
  1626. package/esm/icons/iconBuilding.js +2 -6
  1627. package/esm/icons/iconBulkSelect.js +2 -6
  1628. package/esm/icons/iconBulletList.js +2 -6
  1629. package/esm/icons/iconBusiness.js +2 -6
  1630. package/esm/icons/iconCalculator.js +2 -6
  1631. package/esm/icons/iconCalendar.js +2 -6
  1632. package/esm/icons/iconCamera.js +2 -6
  1633. package/esm/icons/iconCamera2.js +2 -6
  1634. package/esm/icons/iconCamera3.js +2 -6
  1635. package/esm/icons/iconCameraAction.js +2 -6
  1636. package/esm/icons/iconCanBus.js +2 -6
  1637. package/esm/icons/iconChart.js +2 -6
  1638. package/esm/icons/iconChart2.js +2 -6
  1639. package/esm/icons/iconChart3.js +2 -6
  1640. package/esm/icons/iconChart4.js +2 -6
  1641. package/esm/icons/iconChart5.js +2 -6
  1642. package/esm/icons/iconChart6.js +2 -6
  1643. package/esm/icons/iconChart7.js +2 -6
  1644. package/esm/icons/iconChart8.js +2 -6
  1645. package/esm/icons/iconCheck.js +2 -6
  1646. package/esm/icons/iconCheckRadio.js +2 -6
  1647. package/esm/icons/iconCheckbox.js +2 -6
  1648. package/esm/icons/iconChevronBottom.js +2 -6
  1649. package/esm/icons/iconChevronDoubleDown.js +2 -6
  1650. package/esm/icons/iconChevronDoubleLeft.js +2 -6
  1651. package/esm/icons/iconChevronDoubleRight.js +2 -6
  1652. package/esm/icons/iconChevronDoubleUp.js +2 -6
  1653. package/esm/icons/iconChevronDownSmall.js +2 -6
  1654. package/esm/icons/iconChevronGrabberHorizontal.js +2 -6
  1655. package/esm/icons/iconChevronGrabberVertical.js +2 -6
  1656. package/esm/icons/iconChevronLeft.js +2 -6
  1657. package/esm/icons/iconChevronLeftSmall.js +2 -6
  1658. package/esm/icons/iconChevronRight.js +2 -6
  1659. package/esm/icons/iconChevronRightSmall.js +2 -6
  1660. package/esm/icons/iconChevronTop.js +2 -6
  1661. package/esm/icons/iconChevronTopSmall.js +2 -6
  1662. package/esm/icons/iconChromecast.js +2 -6
  1663. package/esm/icons/iconCircle.js +2 -6
  1664. package/esm/icons/iconClipboard.js +2 -6
  1665. package/esm/icons/iconClipboard2.js +2 -6
  1666. package/esm/icons/iconClock.js +2 -6
  1667. package/esm/icons/iconClock2.js +2 -6
  1668. package/esm/icons/iconClockSnooze.js +2 -6
  1669. package/esm/icons/iconClockTimer.js +2 -6
  1670. package/esm/icons/iconClose.js +2 -6
  1671. package/esm/icons/iconCloseCircle.js +2 -6
  1672. package/esm/icons/iconCloseSquare.js +2 -6
  1673. package/esm/icons/iconCloud.js +2 -6
  1674. package/esm/icons/iconCloud2.js +2 -6
  1675. package/esm/icons/iconCloudCheck.js +2 -6
  1676. package/esm/icons/iconCloudDownload.js +2 -6
  1677. package/esm/icons/iconCloudLines.js +2 -6
  1678. package/esm/icons/iconCloudOff.js +2 -6
  1679. package/esm/icons/iconCloudOff2.js +2 -6
  1680. package/esm/icons/iconCloudQuestion.js +2 -6
  1681. package/esm/icons/iconCloudSync.js +2 -6
  1682. package/esm/icons/iconCloudUpload.js +2 -6
  1683. package/esm/icons/iconCmd.js +2 -6
  1684. package/esm/icons/iconCmd2.js +2 -6
  1685. package/esm/icons/iconCode.js +2 -6
  1686. package/esm/icons/iconCode2.js +2 -6
  1687. package/esm/icons/iconColor.js +2 -6
  1688. package/esm/icons/iconColorPicker.js +2 -6
  1689. package/esm/icons/iconCommunity.js +2 -6
  1690. package/esm/icons/iconCompass.js +2 -6
  1691. package/esm/icons/iconConnectDevices.js +2 -6
  1692. package/esm/icons/iconConsole.js +2 -6
  1693. package/esm/icons/iconConstruction.js +2 -6
  1694. package/esm/icons/iconCopy.js +2 -6
  1695. package/esm/icons/iconCopy2.js +2 -6
  1696. package/esm/icons/iconCopy3.js +2 -6
  1697. package/esm/icons/iconCopy4.js +2 -6
  1698. package/esm/icons/iconCopy5.js +2 -6
  1699. package/esm/icons/iconCornerDownLeft.js +2 -6
  1700. package/esm/icons/iconCornerDownRight.js +2 -6
  1701. package/esm/icons/iconCornerLeftDown.js +2 -6
  1702. package/esm/icons/iconCornerLeftUp.js +2 -6
  1703. package/esm/icons/iconCornerRightDown.js +2 -6
  1704. package/esm/icons/iconCornerRightUp.js +2 -6
  1705. package/esm/icons/iconCornerUpLeft.js +2 -6
  1706. package/esm/icons/iconCornerUpRight.js +2 -6
  1707. package/esm/icons/iconCreditCard.js +2 -6
  1708. package/esm/icons/iconCreditCard2.js +2 -6
  1709. package/esm/icons/iconCreditCard3.js +2 -6
  1710. package/esm/icons/iconCrop.js +2 -6
  1711. package/esm/icons/iconCrypto.js +2 -6
  1712. package/esm/icons/iconCryptoCoin.js +2 -6
  1713. package/esm/icons/iconCup.js +2 -6
  1714. package/esm/icons/iconCursor.js +2 -6
  1715. package/esm/icons/iconCursor2.js +2 -6
  1716. package/esm/icons/iconCursor3.js +2 -6
  1717. package/esm/icons/iconCursorBox.js +2 -6
  1718. package/esm/icons/iconCursorClick.js +2 -6
  1719. package/esm/icons/iconCycle.js +2 -6
  1720. package/esm/icons/iconDelete.js +2 -6
  1721. package/esm/icons/iconDelete2.js +2 -6
  1722. package/esm/icons/iconDelete3.js +2 -6
  1723. package/esm/icons/iconDeviceUptime.js +2 -6
  1724. package/esm/icons/iconDeviceUptimeDisconnected.js +2 -6
  1725. package/esm/icons/iconDiamondWarning.js +2 -6
  1726. package/esm/icons/iconDisk.js +2 -6
  1727. package/esm/icons/iconDisk2.js +2 -6
  1728. package/esm/icons/iconDispatchAsset.js +2 -6
  1729. package/esm/icons/iconDock.js +2 -6
  1730. package/esm/icons/iconDocument.js +2 -6
  1731. package/esm/icons/iconDocumentWithLines.js +2 -6
  1732. package/esm/icons/iconDollar.js +2 -6
  1733. package/esm/icons/iconDotGrid.js +2 -6
  1734. package/esm/icons/iconDotHorizontal.js +2 -6
  1735. package/esm/icons/iconDotVertical.js +2 -6
  1736. package/esm/icons/iconDownload.js +2 -6
  1737. package/esm/icons/iconDrive.js +2 -6
  1738. package/esm/icons/iconDriver.js +2 -6
  1739. package/esm/icons/iconDvir.js +2 -6
  1740. package/esm/icons/iconEdit.js +2 -6
  1741. package/esm/icons/iconEdit2.js +2 -6
  1742. package/esm/icons/iconEditBig.js +2 -6
  1743. package/esm/icons/iconEditSmall.js +2 -6
  1744. package/esm/icons/iconEmail.js +2 -6
  1745. package/esm/icons/iconEmail2.js +2 -6
  1746. package/esm/icons/iconEmailNotification.js +2 -6
  1747. package/esm/icons/iconEsc.js +2 -6
  1748. package/esm/icons/iconEthereum.js +2 -6
  1749. package/esm/icons/iconEuro.js +2 -6
  1750. package/esm/icons/iconEvse.js +2 -6
  1751. package/esm/icons/iconExcel.js +2 -6
  1752. package/esm/icons/iconException.js +2 -6
  1753. package/esm/icons/iconExpand.js +2 -6
  1754. package/esm/icons/iconEye.js +2 -6
  1755. package/esm/icons/iconEyeOff.js +2 -6
  1756. package/esm/icons/iconFaceId.js +2 -6
  1757. package/esm/icons/iconFile.js +2 -6
  1758. package/esm/icons/iconFileCopy.js +2 -6
  1759. package/esm/icons/iconFileLocked.js +2 -6
  1760. package/esm/icons/iconFileSync.js +2 -6
  1761. package/esm/icons/iconFileSync2.js +2 -6
  1762. package/esm/icons/iconFileSync3.js +2 -6
  1763. package/esm/icons/iconFileSync4.js +2 -6
  1764. package/esm/icons/iconFileSync5.js +2 -6
  1765. package/esm/icons/iconFilter.js +2 -6
  1766. package/esm/icons/iconFilter2.js +2 -6
  1767. package/esm/icons/iconFilter3.js +2 -6
  1768. package/esm/icons/iconFilter3Asc.js +2 -6
  1769. package/esm/icons/iconFilter3Desc.js +2 -6
  1770. package/esm/icons/iconFilterAsc.js +2 -6
  1771. package/esm/icons/iconFilterDesc.js +2 -6
  1772. package/esm/icons/iconFingerPrint.js +2 -6
  1773. package/esm/icons/iconFocus.js +2 -6
  1774. package/esm/icons/iconFolder.js +2 -6
  1775. package/esm/icons/iconFolder2.js +2 -6
  1776. package/esm/icons/iconFolderAdd.js +2 -6
  1777. package/esm/icons/iconFolderBookmarks.js +2 -6
  1778. package/esm/icons/iconFolderCloud.js +2 -6
  1779. package/esm/icons/iconFolderCloud2.js +2 -6
  1780. package/esm/icons/iconFolderDelete.js +2 -6
  1781. package/esm/icons/iconFolderDownload.js +2 -6
  1782. package/esm/icons/iconFolderRestricted.js +2 -6
  1783. package/esm/icons/iconFolderShared.js +2 -6
  1784. package/esm/icons/iconFolderUpload.js +2 -6
  1785. package/esm/icons/iconFolders.js +2 -6
  1786. package/esm/icons/iconFork.js +2 -6
  1787. package/esm/icons/iconFuelGas.js +2 -6
  1788. package/esm/icons/iconGamepad.js +2 -6
  1789. package/esm/icons/iconGeotabDrive.js +2 -6
  1790. package/esm/icons/iconGeotabSales.js +2 -6
  1791. package/esm/icons/iconGift.js +2 -6
  1792. package/esm/icons/iconGlobus.js +2 -6
  1793. package/esm/icons/iconGrab.js +2 -6
  1794. package/esm/icons/iconGraph.js +2 -6
  1795. package/esm/icons/iconGraphChart.js +2 -6
  1796. package/esm/icons/iconGraphLines.js +2 -6
  1797. package/esm/icons/iconGraphPresentation.js +2 -6
  1798. package/esm/icons/iconGraphStatistics.js +2 -6
  1799. package/esm/icons/iconGrids.js +2 -6
  1800. package/esm/icons/iconGrids2.js +2 -6
  1801. package/esm/icons/iconHarness.js +2 -6
  1802. package/esm/icons/iconHeadphones.js +2 -6
  1803. package/esm/icons/iconHeart.js +2 -6
  1804. package/esm/icons/iconHexonalWarning.js +2 -6
  1805. package/esm/icons/iconHistory.js +2 -6
  1806. package/esm/icons/iconHomeDoor.js +2 -6
  1807. package/esm/icons/iconHomeDoor2.js +2 -6
  1808. package/esm/icons/iconHomeRoof.js +2 -6
  1809. package/esm/icons/iconHomeSimple.js +2 -6
  1810. package/esm/icons/iconHourglass.js +2 -6
  1811. package/esm/icons/iconITS.js +2 -6
  1812. package/esm/icons/iconIcon.js +2 -6
  1813. package/esm/icons/iconImac.js +2 -6
  1814. package/esm/icons/iconImage.js +2 -6
  1815. package/esm/icons/iconImages.js +2 -6
  1816. package/esm/icons/iconImages2.js +2 -6
  1817. package/esm/icons/iconInbox.js +2 -6
  1818. package/esm/icons/iconInfoCircle.js +2 -6
  1819. package/esm/icons/iconInfoSquare.js +2 -6
  1820. package/esm/icons/iconInspect.js +2 -6
  1821. package/esm/icons/iconItalic.js +2 -6
  1822. package/esm/icons/iconKeyboard.js +2 -6
  1823. package/esm/icons/iconKeyboardDown.js +2 -6
  1824. package/esm/icons/iconKeyboardUp.js +2 -6
  1825. package/esm/icons/iconKeyboardUp2.js +2 -6
  1826. package/esm/icons/iconLab.js +2 -6
  1827. package/esm/icons/iconLaptop.js +2 -6
  1828. package/esm/icons/iconLayers.js +2 -6
  1829. package/esm/icons/iconLayout.js +2 -6
  1830. package/esm/icons/iconLayoutBottom.js +2 -6
  1831. package/esm/icons/iconLayoutColumn.js +2 -6
  1832. package/esm/icons/iconLayoutLeft.js +2 -6
  1833. package/esm/icons/iconLayoutRight.js +2 -6
  1834. package/esm/icons/iconLayoutSearch.js +2 -6
  1835. package/esm/icons/iconLayoutSidebar.js +2 -6
  1836. package/esm/icons/iconLayoutTop.js +2 -6
  1837. package/esm/icons/iconLayoutTopbar.js +2 -6
  1838. package/esm/icons/iconLayoutWindow.js +2 -6
  1839. package/esm/icons/iconLayoutWindow2.js +2 -6
  1840. package/esm/icons/iconLayoutWindow3.js +2 -6
  1841. package/esm/icons/iconLayoutWindow4.js +2 -6
  1842. package/esm/icons/iconLayoutWindow5.js +2 -6
  1843. package/esm/icons/iconLeaf.js +2 -6
  1844. package/esm/icons/iconLifeBuoy.js +2 -6
  1845. package/esm/icons/iconLightBulb.js +2 -6
  1846. package/esm/icons/iconLightning.js +2 -6
  1847. package/esm/icons/iconLink.js +2 -6
  1848. package/esm/icons/iconLink2.js +2 -6
  1849. package/esm/icons/iconLink3.js +2 -6
  1850. package/esm/icons/iconLinkLines.js +2 -6
  1851. package/esm/icons/iconList.js +2 -6
  1852. package/esm/icons/iconLoader.js +2 -6
  1853. package/esm/icons/iconLocationCompass.js +2 -6
  1854. package/esm/icons/iconLocationMap.js +2 -6
  1855. package/esm/icons/iconLocationOff.js +2 -6
  1856. package/esm/icons/iconLock.js +2 -6
  1857. package/esm/icons/iconLogin.js +2 -6
  1858. package/esm/icons/iconLogout.js +2 -6
  1859. package/esm/icons/iconLowDataQuality.js +2 -6
  1860. package/esm/icons/iconMacbook.js +2 -6
  1861. package/esm/icons/iconMagic.js +2 -6
  1862. package/esm/icons/iconMagic2.js +2 -6
  1863. package/esm/icons/iconMagicEyes.js +2 -6
  1864. package/esm/icons/iconMap.js +2 -6
  1865. package/esm/icons/iconMarketplace.js +2 -6
  1866. package/esm/icons/iconMedal.js +2 -6
  1867. package/esm/icons/iconMemory.js +2 -6
  1868. package/esm/icons/iconMemory2.js +2 -6
  1869. package/esm/icons/iconMenu.js +2 -6
  1870. package/esm/icons/iconMenu2.js +2 -6
  1871. package/esm/icons/iconMenu3.js +2 -6
  1872. package/esm/icons/iconMenuCircle.js +2 -6
  1873. package/esm/icons/iconMicrophone.js +2 -6
  1874. package/esm/icons/iconMicrophone2.js +2 -6
  1875. package/esm/icons/iconMinimize.js +2 -6
  1876. package/esm/icons/iconMinus.js +2 -6
  1877. package/esm/icons/iconMinusCircle.js +2 -6
  1878. package/esm/icons/iconMinusSquare.js +2 -6
  1879. package/esm/icons/iconMobi.js +2 -6
  1880. package/esm/icons/iconMoney.js +2 -6
  1881. package/esm/icons/iconMoon.js +2 -6
  1882. package/esm/icons/iconMouse.js +2 -6
  1883. package/esm/icons/iconMouseScrollDown.js +2 -6
  1884. package/esm/icons/iconMouseScrollUp.js +2 -6
  1885. package/esm/icons/iconMove.js +2 -6
  1886. package/esm/icons/iconMove2.js +2 -6
  1887. package/esm/icons/iconMyAdmin.js +2 -6
  1888. package/esm/icons/iconMyGeotab.js +2 -6
  1889. package/esm/icons/iconNavigationFooterCollapsed.js +2 -6
  1890. package/esm/icons/iconNavigationFooterExpanded.js +2 -6
  1891. package/esm/icons/iconNews.js +2 -6
  1892. package/esm/icons/iconNewspaper.js +2 -6
  1893. package/esm/icons/iconNote.js +2 -6
  1894. package/esm/icons/iconNotificationAlarm.js +2 -6
  1895. package/esm/icons/iconNotificationBell.js +2 -6
  1896. package/esm/icons/iconNotificationOff.js +2 -6
  1897. package/esm/icons/iconNotifications.js +2 -6
  1898. package/esm/icons/iconNumberedList.js +2 -6
  1899. package/esm/icons/iconOnDuty.js +2 -6
  1900. package/esm/icons/iconOpen.js +2 -6
  1901. package/esm/icons/iconOpen2.js +2 -6
  1902. package/esm/icons/iconOpt.js +2 -6
  1903. package/esm/icons/iconOptAlt.js +2 -6
  1904. package/esm/icons/iconPDF.js +2 -6
  1905. package/esm/icons/iconPackage.js +2 -6
  1906. package/esm/icons/iconPackage2.js +2 -6
  1907. package/esm/icons/iconPackage3.js +2 -6
  1908. package/esm/icons/iconPaperPlane.js +2 -6
  1909. package/esm/icons/iconPassword.js +2 -6
  1910. package/esm/icons/iconPause.js +2 -6
  1911. package/esm/icons/iconPencil.js +2 -6
  1912. package/esm/icons/iconPencil2.js +2 -6
  1913. package/esm/icons/iconPeople.js +2 -6
  1914. package/esm/icons/iconPeopleGroup.js +2 -6
  1915. package/esm/icons/iconPeopleGroup2.js +2 -6
  1916. package/esm/icons/iconPeopleLike.js +2 -6
  1917. package/esm/icons/iconPercent.js +2 -6
  1918. package/esm/icons/iconPerformance.js +2 -6
  1919. package/esm/icons/iconPhone.js +2 -6
  1920. package/esm/icons/iconPhoneMobile.js +2 -6
  1921. package/esm/icons/iconPin.js +2 -6
  1922. package/esm/icons/iconPin2.js +2 -6
  1923. package/esm/icons/iconPinLocation.js +2 -6
  1924. package/esm/icons/iconPinLocation2.js +2 -6
  1925. package/esm/icons/iconPinLocation3.js +2 -6
  1926. package/esm/icons/iconPlay.js +2 -6
  1927. package/esm/icons/iconPlus.js +2 -6
  1928. package/esm/icons/iconPlusCircle.js +2 -6
  1929. package/esm/icons/iconPlusFile.js +2 -6
  1930. package/esm/icons/iconPlusLines.js +2 -6
  1931. package/esm/icons/iconPlusSquare.js +2 -6
  1932. package/esm/icons/iconPound.js +2 -6
  1933. package/esm/icons/iconPrinter.js +2 -6
  1934. package/esm/icons/iconProcessor.js +2 -6
  1935. package/esm/icons/iconPullRequest.js +2 -6
  1936. package/esm/icons/iconPuzzle.js +2 -6
  1937. package/esm/icons/iconQuestion.js +2 -6
  1938. package/esm/icons/iconRadar.js +2 -6
  1939. package/esm/icons/iconReceipt.js +2 -6
  1940. package/esm/icons/iconRecord.js +2 -6
  1941. package/esm/icons/iconRedo.js +2 -6
  1942. package/esm/icons/iconRedo2.js +2 -6
  1943. package/esm/icons/iconRefrigeration.js +2 -6
  1944. package/esm/icons/iconRemovePeople.js +2 -6
  1945. package/esm/icons/iconRepeat.js +2 -6
  1946. package/esm/icons/iconRepeat2.js +2 -6
  1947. package/esm/icons/iconResizeBig.js +2 -6
  1948. package/esm/icons/iconResizeSmall.js +2 -6
  1949. package/esm/icons/iconRotateClockwise.js +2 -6
  1950. package/esm/icons/iconRotateCounterclockwise.js +2 -6
  1951. package/esm/icons/iconRotateRepeat.js +2 -6
  1952. package/esm/icons/iconRotateRepeat2.js +2 -6
  1953. package/esm/icons/iconRoute.js +2 -6
  1954. package/esm/icons/iconRuler.js +2 -6
  1955. package/esm/icons/iconSdCard.js +2 -6
  1956. package/esm/icons/iconSearch.js +2 -6
  1957. package/esm/icons/iconSearchDocument.js +2 -6
  1958. package/esm/icons/iconSearchLines.js +2 -6
  1959. package/esm/icons/iconSearchPage.js +2 -6
  1960. package/esm/icons/iconSeatbelt.js +2 -6
  1961. package/esm/icons/iconSecured.js +2 -6
  1962. package/esm/icons/iconSecuredLines.js +2 -6
  1963. package/esm/icons/iconSend.js +2 -6
  1964. package/esm/icons/iconServer.js +2 -6
  1965. package/esm/icons/iconServer2.js +2 -6
  1966. package/esm/icons/iconServer3.js +2 -6
  1967. package/esm/icons/iconSettings1.js +2 -6
  1968. package/esm/icons/iconSettings2.js +2 -6
  1969. package/esm/icons/iconSettings3.js +2 -6
  1970. package/esm/icons/iconSettings4.js +2 -6
  1971. package/esm/icons/iconSettings6.js +2 -6
  1972. package/esm/icons/iconSettings7.js +2 -6
  1973. package/esm/icons/iconSettings8.js +2 -6
  1974. package/esm/icons/iconShare.js +2 -6
  1975. package/esm/icons/iconShare3.js +2 -6
  1976. package/esm/icons/iconShield.js +2 -6
  1977. package/esm/icons/iconShield2.js +2 -6
  1978. package/esm/icons/iconShield3.js +2 -6
  1979. package/esm/icons/iconShield4.js +2 -6
  1980. package/esm/icons/iconSidebar.js +2 -6
  1981. package/esm/icons/iconSign.js +2 -6
  1982. package/esm/icons/iconSmiley.js +2 -6
  1983. package/esm/icons/iconSort2Horizontal.js +2 -6
  1984. package/esm/icons/iconSort2Vertical.js +2 -6
  1985. package/esm/icons/iconSortHorizontal.js +2 -6
  1986. package/esm/icons/iconSortVertical.js +2 -6
  1987. package/esm/icons/iconSpeaker.js +2 -6
  1988. package/esm/icons/iconSquare.js +2 -6
  1989. package/esm/icons/iconStar.js +2 -6
  1990. package/esm/icons/iconStarAi.js +2 -6
  1991. package/esm/icons/iconStarFilled.js +2 -6
  1992. package/esm/icons/iconStopwatch.js +2 -6
  1993. package/esm/icons/iconStorage.js +2 -6
  1994. package/esm/icons/iconStore.js +2 -6
  1995. package/esm/icons/iconStrikeThrough.js +2 -6
  1996. package/esm/icons/iconSun.js +2 -6
  1997. package/esm/icons/iconSupport.js +2 -6
  1998. package/esm/icons/iconTable.js +2 -6
  1999. package/esm/icons/iconTachograph.js +2 -6
  2000. package/esm/icons/iconTachographTimeCard.js +2 -6
  2001. package/esm/icons/iconTarget.js +2 -6
  2002. package/esm/icons/iconTarget2.js +2 -6
  2003. package/esm/icons/iconTarget3.js +2 -6
  2004. package/esm/icons/iconTelevision.js +2 -6
  2005. package/esm/icons/iconTelevision2.js +2 -6
  2006. package/esm/icons/iconTextSize.js +2 -6
  2007. package/esm/icons/iconThermograph.js +2 -6
  2008. package/esm/icons/iconThermometer.js +2 -6
  2009. package/esm/icons/iconThumbsDown.js +2 -6
  2010. package/esm/icons/iconThumbsUp.js +2 -6
  2011. package/esm/icons/iconTrailer.js +2 -6
  2012. package/esm/icons/iconUmbrella.js +2 -6
  2013. package/esm/icons/iconUnderline.js +2 -6
  2014. package/esm/icons/iconUndo.js +2 -6
  2015. package/esm/icons/iconUndo2.js +2 -6
  2016. package/esm/icons/iconUndock.js +2 -6
  2017. package/esm/icons/iconUnlocked.js +2 -6
  2018. package/esm/icons/iconUpload.js +2 -6
  2019. package/esm/icons/iconUsb.js +2 -6
  2020. package/esm/icons/iconUsbHub.js +2 -6
  2021. package/esm/icons/iconVideo.js +2 -6
  2022. package/esm/icons/iconVideo2.js +2 -6
  2023. package/esm/icons/iconVideoReplay.js +2 -6
  2024. package/esm/icons/iconVisitPage.js +2 -6
  2025. package/esm/icons/iconVoice.js +2 -6
  2026. package/esm/icons/iconVolumeDown.js +2 -6
  2027. package/esm/icons/iconVolumeFull.js +2 -6
  2028. package/esm/icons/iconVolumeHalf.js +2 -6
  2029. package/esm/icons/iconVolumeMinimum.js +2 -6
  2030. package/esm/icons/iconVolumeOff.js +2 -6
  2031. package/esm/icons/iconVolumeOn.js +2 -6
  2032. package/esm/icons/iconWallet.js +2 -6
  2033. package/esm/icons/iconWallet1.js +2 -6
  2034. package/esm/icons/iconWarning.js +2 -6
  2035. package/esm/icons/iconWatch.js +2 -6
  2036. package/esm/icons/iconWatch2.js +2 -6
  2037. package/esm/icons/iconWebcam.js +2 -6
  2038. package/esm/icons/iconWhisper.js +2 -6
  2039. package/esm/icons/iconWifi.js +2 -6
  2040. package/esm/icons/iconWifi2.js +2 -6
  2041. package/esm/icons/iconWorkday.js +2 -6
  2042. package/esm/icons/iconWorld.js +2 -6
  2043. package/esm/icons/iconWrench.js +2 -6
  2044. package/esm/icons/iconWrite.js +2 -6
  2045. package/esm/icons/iconYen.js +2 -6
  2046. package/esm/icons/iconZone.js +2 -6
  2047. package/esm/icons/iconZoom.js +2 -6
  2048. package/esm/icons/iconZoom2.js +2 -6
  2049. package/esm/images/imageAdjustFilter.js +2 -5
  2050. package/esm/images/imageCloudUpload.d.ts +3 -0
  2051. package/esm/images/imageCloudUpload.js +10 -0
  2052. package/esm/images/imageLooking.js +2 -5
  2053. package/esm/images/imageNoMatchingAssets.js +2 -5
  2054. package/esm/images/imageNothingFound.js +2 -5
  2055. package/esm/images/imageTapToUpload.d.ts +6 -0
  2056. package/esm/images/imageTapToUpload.js +10 -0
  2057. package/esm/index.d.ts +6 -0
  2058. package/esm/index.js +5 -0
  2059. package/esm/inputAdornments/inputAdornments.js +6 -1
  2060. package/esm/layout/layout.js +1 -1
  2061. package/esm/layout/layoutContent.js +7 -1
  2062. package/esm/layout/layoutFullScreen.js +5 -2
  2063. package/esm/layout/layoutFullScreenElementProvider.js +1 -1
  2064. package/esm/layout/layoutFullScreenProvider.js +1 -1
  2065. package/esm/layout/layoutSummaryTiles.js +3 -3
  2066. package/esm/lineChart/lineChart.js +1 -1
  2067. package/esm/lineChart/plugins/htmlLegend.js +2 -2
  2068. package/esm/lineChartMini/lineChartMini.js +2 -2
  2069. package/esm/list/hooks/useDragAndDrop.js +16 -5
  2070. package/esm/list/hooks/useVirtualScroll.js +4 -2
  2071. package/esm/list/itemCompact/itemCompact.js +1 -1
  2072. package/esm/list/itemCompact/itemCompactWaiting.js +2 -4
  2073. package/esm/list/itemData/itemDataInternal.js +2 -0
  2074. package/esm/list/itemData/itemDataWaiting.js +1 -4
  2075. package/esm/list/list.js +3 -14
  2076. package/esm/list/listItem/listItem.js +3 -1
  2077. package/esm/list/listItem/listItemWaiting.js +2 -4
  2078. package/esm/list/utils/getLoadingItems.js +2 -2
  2079. package/esm/menu/components/menuButton.js +21 -13
  2080. package/esm/menu/components/menuErrorItem.js +48 -0
  2081. package/esm/menu/components/menuItem.js +4 -4
  2082. package/esm/menu/controlledMenu.js +10 -8
  2083. package/esm/menu/menu.js +2 -2
  2084. package/esm/miniTabs/miniTabs.js +1 -1
  2085. package/esm/miniTabs/miniTabsHelper.js +3 -2
  2086. package/esm/miniTabs/miniTabsItem.js +1 -1
  2087. package/esm/mobileSheet/components/mobileSheetContent.js +1 -1
  2088. package/esm/mobileSheet/components/mobileSheetFooter.js +1 -1
  2089. package/esm/mobileSheet/mobileSheet.d.ts +1 -0
  2090. package/esm/mobileSheet/mobileSheet.js +7 -2
  2091. package/esm/modal/modal.js +1 -0
  2092. package/esm/modal/modalHelpers.js +3 -3
  2093. package/esm/modal/utils/isModalTarget.d.ts +1 -0
  2094. package/esm/modal/utils/isModalTarget.js +7 -0
  2095. package/esm/nav/nav.js +22 -14
  2096. package/esm/nav/navAddMenu/navAddMenu.js +8 -5
  2097. package/esm/nav/navDivider/navDivider.js +1 -4
  2098. package/esm/nav/navEditList/navEditList.js +2 -2
  2099. package/esm/nav/navEditList/navEditListUtils.js +1 -1
  2100. package/esm/nav/navEditSection/navEditSection.js +1 -1
  2101. package/esm/nav/navFooter/navEditFooter/navEditFooter.js +2 -0
  2102. package/esm/nav/navFooter/navFooter.js +24 -0
  2103. package/esm/nav/navFooter/navFooterAction/navFooterAction.js +1 -0
  2104. package/esm/nav/navHeader/navHeader.js +48 -0
  2105. package/esm/nav/navHeader/navHeaderSearch/navHeaderSearch.js +27 -0
  2106. package/esm/nav/navItem/navActionItem.js +1 -3
  2107. package/esm/nav/navItem/navItem.js +1 -1
  2108. package/esm/nav/navMobileBar/navMobileBar.js +1 -0
  2109. package/esm/nav/navSection/navSection.js +3 -5
  2110. package/esm/nav/utils/navUtils.js +1 -3
  2111. package/esm/notification/notification.js +1 -0
  2112. package/esm/notification/pushNotification/pushNotification.js +2 -5
  2113. package/esm/oldPill/pill.js +2 -2
  2114. package/esm/overview/overview.js +2 -4
  2115. package/esm/pageHeader/pageHeaderActions.js +7 -3
  2116. package/esm/pageHeader/pageHeaderButton.js +1 -1
  2117. package/esm/pageLayout/pageContentLayout/pageContentLayout.js +2 -6
  2118. package/esm/pageLayout/pageLayout.js +1 -1
  2119. package/esm/pageSection/pageSection.js +1 -1
  2120. package/esm/pagination/pagination.js +2 -11
  2121. package/esm/pagination/paginationArrow.js +2 -0
  2122. package/esm/pagination/paginationButtonsRow.js +1 -1
  2123. package/esm/pagination/paginationText/paginationText.js +1 -0
  2124. package/esm/pagination/paginationType.d.ts +1 -1
  2125. package/esm/pagination/paginationType.js +1 -1
  2126. package/esm/parallelSelection/parallelSelection.js +6 -3
  2127. package/esm/pill/components/pillActionable/pillActionable.js +11 -9
  2128. package/esm/pill/components/pillNonActionable/pillNonActionable.js +3 -2
  2129. package/esm/pill/pill.js +1 -3
  2130. package/esm/pillAction/pillAction.js +1 -1
  2131. package/esm/pillBox/components/pillBoxItem.js +1 -0
  2132. package/esm/pillBox/pillBox.js +3 -0
  2133. package/esm/pillBox/utils/getValidMaxPills.js +1 -1
  2134. package/esm/pillClosable/pillClosable.d.ts +1 -1
  2135. package/esm/pillClosable/pillClosable.js +2 -2
  2136. package/esm/pillExpandable/pillContent.js +10 -8
  2137. package/esm/pillExpandable/pillExpandable.js +2 -0
  2138. package/esm/pillExpandable/pillExpandableAlignments.js +10 -10
  2139. package/esm/pillExpandable/pillExpandablePopoverContent.js +1 -1
  2140. package/esm/pillExpandable/pillExpandableSimple.js +10 -6
  2141. package/esm/popup/popup.js +3 -3
  2142. package/esm/primaryIcon/primaryIcon.js +2 -2
  2143. package/esm/progressBar/progressBar.d.ts +1 -1
  2144. package/esm/progressBar/progressBarUtils.js +1 -1
  2145. package/esm/radio/radio.d.ts +5 -4
  2146. package/esm/radio/radio.js +11 -2
  2147. package/esm/radioGroupRaw/radioGroupRaw.js +11 -7
  2148. package/esm/radioGroupRaw/types.d.ts +2 -0
  2149. package/esm/rangeRaw/components/rangeField.js +7 -3
  2150. package/esm/rangeRaw/rangeRaw.js +14 -1
  2151. package/esm/rangeRaw/utils/rangeHelper.js +9 -1
  2152. package/esm/react-chartjs/dateAdapter.js +22 -12
  2153. package/esm/react-chartjs/dateFns/dateFns.js +14 -14
  2154. package/esm/react-chartjs/types.d.ts +27 -27
  2155. package/esm/react-chartjs/utils.js +1 -3
  2156. package/esm/searchInput/searchInput.js +1 -3
  2157. package/esm/searchInputRaw/searchInputRaw.js +2 -0
  2158. package/esm/selectList/selectList.js +27 -13
  2159. package/esm/selectList/selectList.reducer.js +17 -9
  2160. package/esm/selectList/selectListItem.js +2 -4
  2161. package/esm/selectRaw/select.helpers.js +2 -2
  2162. package/esm/selectRaw/selectRaw.js +31 -23
  2163. package/esm/selectRaw/types.d.ts +3 -3
  2164. package/esm/selectRaw/utils/getValidWidth.js +1 -1
  2165. package/esm/shield/shield.js +1 -1
  2166. package/esm/sidePanel/sidePanel.d.ts +1 -0
  2167. package/esm/sidePanel/sidePanel.js +39 -8
  2168. package/esm/sidePanel/sidePanelCell/sidePanelCell.js +1 -3
  2169. package/esm/skeleton/lazyContent.js +4 -6
  2170. package/esm/skeleton/skeleton.js +1 -0
  2171. package/esm/skeletonList/skeletonList.js +1 -1
  2172. package/esm/sortControl/sortControl.js +19 -0
  2173. package/esm/stepperRaw/utils/calculateWithPrecision.js +1 -3
  2174. package/esm/summaries/summaries.js +1 -1
  2175. package/esm/summary/summary.js +2 -0
  2176. package/esm/summaryTile/summaryTile.d.ts +45 -2
  2177. package/esm/summaryTile/summaryTile.js +38 -13
  2178. package/esm/summaryTile/summaryTileTrigger.js +2 -2
  2179. package/esm/summaryTile/utils/getTypeClassName.js +1 -1
  2180. package/esm/summaryTileBar/summaryTileBar.js +2 -2
  2181. package/esm/svgIcon/svgIconSize.d.ts +1 -1
  2182. package/esm/svgSprite/svgSprite.js +1 -1
  2183. package/esm/svgSprites/svgSprites.js +1 -1
  2184. package/esm/tabBar/tabBar.js +1 -1
  2185. package/esm/tabBar/tabBarContent.js +1 -1
  2186. package/esm/table/actions/actionsMenu.js +2 -0
  2187. package/esm/table/children/useTableChildren.js +1 -1
  2188. package/esm/table/detailPanel/detailPanel.js +1 -0
  2189. package/esm/table/detailPanel/detailPanelHeader.js +2 -0
  2190. package/esm/table/expandable/useFeedExpandable.js +1 -1
  2191. package/esm/table/flexible/columnSettings.js +2 -0
  2192. package/esm/table/flexible/columnsList.js +1 -0
  2193. package/esm/table/flexible/columnsPopup.js +1 -0
  2194. package/esm/table/flexible/flexibleHeader.js +1 -1
  2195. package/esm/table/flexible/mergeColumnSettings.js +1 -5
  2196. package/esm/table/flexible/useFlexibleColumns.js +8 -13
  2197. package/esm/table/loading/useLoading.d.ts +1 -0
  2198. package/esm/table/loading/useLoading.js +9 -19
  2199. package/esm/table/nested/nestedData.js +4 -3
  2200. package/esm/table/nested/useNestedRows.js +2 -0
  2201. package/esm/table/selectable/selectableHeader.js +4 -0
  2202. package/esm/table/selectable/useSelectableRows.js +2 -0
  2203. package/esm/table/selectable/utils/calculateSelectionState.js +3 -1
  2204. package/esm/table/selectable/utils/checkRow.js +2 -4
  2205. package/esm/table/selectable/utils/getCurrentPageSelection.js +2 -6
  2206. package/esm/table/sortable/mobileSortControl.d.ts +15 -0
  2207. package/esm/table/sortable/mobileSortControl.js +139 -0
  2208. package/esm/table/sortable/sortableHeader.js +2 -0
  2209. package/esm/table/sortable/useSortableColumns.js +21 -10
  2210. package/esm/table/table.d.ts +2 -4
  2211. package/esm/table/table.js +48 -0
  2212. package/esm/tabs/tabItem/tabItem.js +1 -1
  2213. package/esm/tabs/tabs.js +2 -0
  2214. package/esm/textIconButton/textIconButton.d.ts +1 -1
  2215. package/esm/textIconButton/textIconButton.js +1 -1
  2216. package/esm/textInput/textInput.js +1 -3
  2217. package/esm/textInputRaw/textInputRaw.js +2 -2
  2218. package/esm/textarea/textarea.js +1 -3
  2219. package/esm/textareaRaw/textareaRaw.js +2 -2
  2220. package/esm/timePicker/timePicker.js +1 -3
  2221. package/esm/timePickerRaw/components/timeSelect/timeSelect.js +1 -1
  2222. package/esm/timePickerRaw/timePickerRaw.js +23 -0
  2223. package/esm/timePickerRaw/types.d.ts +6 -6
  2224. package/esm/toast/hooks/useToast.js +3 -3
  2225. package/esm/toast/toast.js +28 -10
  2226. package/esm/toast/utils/hideToastCallback.js +2 -2
  2227. package/esm/toastRaw/components/toastAnimation.js +5 -17
  2228. package/esm/toastRaw/hooks/useProgress.js +1 -1
  2229. package/esm/toastRaw/toastRaw.js +1 -0
  2230. package/esm/toggleButtonRaw/toggleButtonRaw.js +6 -2
  2231. package/esm/toggleButtonRaw/types.d.ts +1 -0
  2232. package/esm/toolbar/helpers/getWidthWithMargin.js +1 -1
  2233. package/esm/toolbar/helpers/getWidthWithoutPadding.js +1 -1
  2234. package/esm/toolbar/toolbar.js +4 -5
  2235. package/esm/toolbar/toolbarContent.js +18 -12
  2236. package/esm/toolbar/toolbarMoreButton.js +4 -6
  2237. package/esm/tooltip/helpers/calculateArrowPosition.js +12 -2
  2238. package/esm/tooltip/helpers/removeArrowClasses.js +1 -3
  2239. package/esm/tooltip/tooltip.d.ts +12 -12
  2240. package/esm/tooltip/tooltip.js +16 -6
  2241. package/esm/tooltipInfo/tooltipInfo.js +1 -1
  2242. package/esm/twoOptionsSwitcher/twoOptionsSwitcher.d.ts +2 -1
  2243. package/esm/twoOptionsSwitcher/twoOptionsSwitcher.js +7 -4
  2244. package/esm/utils/abortablePromise.js +1 -3
  2245. package/esm/utils/compareElementsUtils/isObjectNested.js +1 -1
  2246. package/esm/utils/dateInputUtils/useTodayButton.js +4 -2
  2247. package/esm/utils/formatDate.js +37 -0
  2248. package/esm/utils/getParentByClass.d.ts +1 -1
  2249. package/esm/utils/getParentWindow.js +1 -1
  2250. package/esm/utils/globalThisPolyfill.js +1 -1
  2251. package/esm/utils/localization/translations/ar.json +328 -0
  2252. package/esm/utils/localization/translations/cs.json +73 -2
  2253. package/esm/utils/localization/translations/da-DK.json +64 -2
  2254. package/esm/utils/localization/translations/de.json +73 -2
  2255. package/esm/utils/localization/translations/en-json.d.ts +1 -1
  2256. package/esm/utils/localization/translations/en-json.js +113 -113
  2257. package/esm/utils/localization/translations/en.json +11 -2
  2258. package/esm/utils/localization/translations/es.json +73 -2
  2259. package/esm/utils/localization/translations/fi-FI.json +64 -2
  2260. package/esm/utils/localization/translations/fr-FR.json +73 -2
  2261. package/esm/utils/localization/translations/fr.json +73 -2
  2262. package/esm/utils/localization/translations/hu-HU.json +64 -2
  2263. package/esm/utils/localization/translations/id.json +73 -2
  2264. package/esm/utils/localization/translations/it.json +73 -2
  2265. package/esm/utils/localization/translations/ja.json +78 -7
  2266. package/esm/utils/localization/translations/ko-KR.json +65 -2
  2267. package/esm/utils/localization/translations/ms.json +73 -2
  2268. package/esm/utils/localization/translations/nb-NO.json +64 -2
  2269. package/esm/utils/localization/translations/nl.json +73 -2
  2270. package/esm/utils/localization/translations/pl.json +73 -2
  2271. package/esm/utils/localization/translations/pt-BR.json +73 -2
  2272. package/esm/utils/localization/translations/pt-PT.json +15 -3
  2273. package/esm/utils/localization/translations/ro-RO.json +14 -2
  2274. package/esm/utils/localization/translations/sk-SK.json +65 -2
  2275. package/esm/utils/localization/translations/sv.json +73 -2
  2276. package/esm/utils/localization/translations/th.json +73 -2
  2277. package/esm/utils/localization/translations/tr.json +73 -2
  2278. package/esm/utils/localization/translations/zh-Hans.json +73 -2
  2279. package/esm/utils/localization/translations/zh-TW.json +65 -2
  2280. package/esm/utils/localization/translationsDictionary.js +2 -1
  2281. package/esm/utils/positioningUtils/alignments.js +5 -5
  2282. package/esm/utils/positioningUtils/calculatePosition.js +7 -5
  2283. package/esm/utils/positioningUtils/normalizeHorizontally.js +2 -2
  2284. package/esm/utils/positioningUtils/normalizeVertically.js +2 -2
  2285. package/esm/utils/positioningUtils/tooltipAlignments.js +13 -13
  2286. package/esm/utils/toKebabCase.d.ts +16 -0
  2287. package/esm/utils/toKebabCase.js +21 -0
  2288. package/esm/utils/userFormat/userFormatContext.js +1 -1
  2289. package/esm/waiting/waiting.js +5 -4
  2290. package/package.json +1 -1
@@ -8,12 +8,14 @@ import { IconChevronTopSmall } from "../../../icons/iconChevronTopSmall";
8
8
  import { Menu } from "../../../menu/menu";
9
9
  import { useDriveClassName } from "../../../utils/theme/useDriveClassName";
10
10
  import { useDrive } from "../../../utils/theme/useDrive";
11
- export const CardButton = ({ children, disabled = false, icon, name, onClick, link, className, target: linkTarget }) => {
11
+ import { toKebabCase } from "../../../utils/toKebabCase";
12
+ export const CardButton = ({ children, disabled = false, icon, name, onClick, link, className, target: linkTarget, dataAnalyticsId }) => {
12
13
  const [isOpen, setIsOpen] = useState(false);
13
14
  const triggerRef = useRef(null);
14
15
  const content = [];
15
16
  const cardButtonDriveClasses = useDriveClassName("zen-card-button");
16
17
  const isDrive = useDrive();
18
+ const analyticsId = dataAnalyticsId || toKebabCase(name);
17
19
  Children.forEach(children, (el) => {
18
20
  if (el.type === Menu.Item) {
19
21
  content.push(el);
@@ -27,10 +29,11 @@ export const CardButton = ({ children, disabled = false, icon, name, onClick, li
27
29
  }
28
30
  onClick === null || onClick === void 0 ? void 0 : onClick(...args);
29
31
  };
30
- const renderLink = () => _jsxs(Button, { disabled: disabled, type: "tertiary", link: link, target: linkTarget, title: name, className: classNames([className || "", "zen-card-button", "zen-caption", cardButtonDriveClasses || ""]), children: [icon && createElement(icon, { size: isDrive ? "huge" : "large", className: "zen-caption__pre-content" }), _jsx("span", { className: "zen-caption__content", children: name })] });
32
+ const renderLink = () => (_jsxs(Button, { disabled: disabled, type: "tertiary", link: link, target: linkTarget, title: name, dataAnalyticsId: analyticsId, className: classNames([className || "", "zen-card-button", "zen-caption", cardButtonDriveClasses || ""]), children: [icon && createElement(icon, { size: isDrive ? "huge" : "large", className: "zen-caption__pre-content" }), _jsx("span", { className: "zen-caption__content", children: name })] }));
31
33
  const renderButton = () => {
32
- const trigger = _jsxs(Button, { htmlType: "button", ref: triggerRef, disabled: disabled, type: "tertiary", onClick: onButtonClickHandler, title: name, className: classNames([className || "", "zen-card-button", "zen-caption", cardButtonDriveClasses || ""]), children: [icon && createElement(icon, { size: isDrive ? "huge" : "large", className: "zen-caption__pre-content" }), _jsx("span", { className: "zen-caption__content", children: name }), !!content.length && (isOpen ? _jsx(IconChevronTopSmall, { size: isDrive ? "huge" : "large", className: "zen-caption__post-content" }) : _jsx(IconChevronDownSmall, { size: isDrive ? "huge" : "large", className: "zen-caption__post-content" }))] });
33
- return content.length ? _jsxs(_Fragment, { children: [trigger, _jsx(ControlledMenu, { title: name, isOpen: isOpen, setIsOpen: setIsOpen, triggerRef: triggerRef, children: content })] }) : trigger;
34
+ const trigger = (_jsxs(Button, { htmlType: "button", ref: triggerRef, disabled: disabled, type: "tertiary", onClick: onButtonClickHandler, title: name, dataAnalyticsId: analyticsId, className: classNames([className || "", "zen-card-button", "zen-caption", cardButtonDriveClasses || ""]), children: [icon && createElement(icon, { size: isDrive ? "huge" : "large", className: "zen-caption__pre-content" }), _jsx("span", { className: "zen-caption__content", children: name }), !!content.length &&
35
+ (isOpen ? (_jsx(IconChevronTopSmall, { size: isDrive ? "huge" : "large", className: "zen-caption__post-content" })) : (_jsx(IconChevronDownSmall, { size: isDrive ? "huge" : "large", className: "zen-caption__post-content" })))] }));
36
+ return content.length ? (_jsxs(_Fragment, { children: [trigger, _jsx(ControlledMenu, { title: name, isOpen: isOpen, setIsOpen: setIsOpen, triggerRef: triggerRef, children: content })] })) : (trigger);
34
37
  };
35
38
  return !link && !onClick ? renderButton() : onClick ? renderButton() : renderLink();
36
39
  };
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
2
2
  import { ToggleButtonRaw } from "../../../toggleButtonRaw/toggleButtonRaw";
3
- export const CardToggle = (props) => _jsx(_Fragment, { children: _jsx(ToggleButtonRaw, Object.assign({}, props)) });
3
+ export const CardToggle = (props) => (_jsx(_Fragment, { children: _jsx(ToggleButtonRaw, Object.assign({}, props)) }));
@@ -13,8 +13,14 @@ export const Status = ({ status, isMobile, tooltip, className = "", tooltipAlign
13
13
  if (!tooltip) {
14
14
  return "";
15
15
  }
16
- const statusButton = _jsx(TextIconButton, { ref: ref, iconPosition: ButtonIconPosition.Start, className: classNames(["zen-card-status", isMobile ? "zen-card-status--mobile" : "", "zen-card-status-button", status ? `zen-card-status--${status}` : "", className]), icon: IconInfoCircle, iconSize: isDrive || isMobile ? SvgIconSize.Huge : SvgIconSize.Large, "aria-label": tooltip, htmlType: "button" });
17
- return _jsx(Tooltip, { mobileTitle: title, alignment: tooltipAlignment, trigger: statusButton, children: tooltip });
16
+ const statusButton = (_jsx(TextIconButton, { ref: ref, iconPosition: ButtonIconPosition.Start, className: classNames([
17
+ "zen-card-status",
18
+ isMobile ? "zen-card-status--mobile" : "",
19
+ "zen-card-status-button",
20
+ status ? `zen-card-status--${status}` : "",
21
+ className
22
+ ]), icon: IconInfoCircle, iconSize: isDrive || isMobile ? SvgIconSize.Huge : SvgIconSize.Large, "aria-label": tooltip, htmlType: "button" }));
23
+ return (_jsx(Tooltip, { mobileTitle: title, alignment: tooltipAlignment, trigger: statusButton, children: tooltip }));
18
24
  };
19
25
  return tooltip ? renderButton() : null;
20
26
  };
@@ -8,15 +8,11 @@ export const Title = ({ isMobile, link, target, title, id, icon, iconType, class
8
8
  const driveClassNames = useDriveClassName("zen-card-title");
9
9
  const isDrive = useDrive();
10
10
  const iconClassName = iconType ? `zen-card-title__icon--${iconType}` : "";
11
- const iconSize = useMemo(() => isDrive ? "huge" : "large", [isDrive]);
12
- const iconElement = useMemo(() => icon
13
- ? _jsx("div", { className: classNames(["zen-card-title__icon", iconClassName]), children: createElement(icon, { size: iconSize }) })
14
- : null, [icon, iconSize, iconClassName]);
15
- const chevron = useMemo(() => _jsx("span", { className: "zen-card-title__link-chevron", children: _jsx(IconChevronRightSmall, { size: iconSize, className: "zen-card-title__chevron-icon" }) }), [iconSize]);
11
+ const iconSize = useMemo(() => (isDrive ? "huge" : "large"), [isDrive]);
12
+ const iconElement = useMemo(() => (icon ? _jsx("div", { className: classNames(["zen-card-title__icon", iconClassName]), children: createElement(icon, { size: iconSize }) }) : null), [icon, iconSize, iconClassName]);
13
+ const chevron = useMemo(() => (_jsx("span", { className: "zen-card-title__link-chevron", children: _jsx(IconChevronRightSmall, { size: iconSize, className: "zen-card-title__chevron-icon" }) })), [iconSize]);
16
14
  const roleProp = onClick ? "button" : undefined;
17
15
  const tabIndexProp = onClick ? 0 : undefined;
18
16
  const titleClasses = classNames(["zen-card-title", driveClassNames || "", onClick ? "zen-card-title__clickable" : ""]);
19
- return _jsxs("div", { className: titleClasses, role: roleProp, onClick: onClick, tabIndex: tabIndexProp, children: [iconElement, link && !onClick
20
- ? _jsx("a", { id: id, className: classNames(["zen-card-title__link"]), href: link, target: target, children: _jsxs("span", { title: title, className: classNames(["zen-card-title__link-text"]), children: [title, chevron] }) })
21
- : _jsx(_Fragment, { children: _jsxs("span", { title: title, id: id, className: classNames(["zen-card-title__text", (isMobile && !isDrive) ? "zen-card-title__text--mobile" : "", className]), children: [title, onClick ? chevron : null] }) })] });
17
+ return (_jsxs("div", { className: titleClasses, role: roleProp, onClick: onClick, tabIndex: tabIndexProp, children: [iconElement, link && !onClick ? (_jsx("a", { id: id, className: classNames(["zen-card-title__link"]), href: link, target: target, children: _jsxs("span", { title: title, className: classNames(["zen-card-title__link-text"]), children: [title, chevron] }) })) : (_jsx(_Fragment, { children: _jsxs("span", { title: title, id: id, className: classNames(["zen-card-title__text", isMobile && !isDrive ? "zen-card-title__text--mobile" : "", className]), children: [title, onClick ? chevron : null] }) }))] }));
22
18
  };
@@ -12,7 +12,7 @@ export const TitleLink = ({ titleIconClasses, ariaLabel, children, link, id, cla
12
12
  const isDrive = useDrive();
13
13
  const titleAriaLabel = ariaLabel || "";
14
14
  if (!isMobile) {
15
- return _jsxs("a", { id: id, className: classNames(["zen-link", "zen-title-link", className]), href: link, "aria-label": titleAriaLabel, children: [_jsx("span", { className: classNames(["zen-title-link__text", titleLinkTextDriveClasses || ""]), children: children }), _jsx(IconArrowRight, { size: isDrive ? "huge" : "large", className: classNames(["zen-title-link__icon", titleIconClasses || ""]) })] });
15
+ return (_jsxs("a", { id: id, className: classNames(["zen-link", "zen-title-link", className]), href: link, "aria-label": titleAriaLabel, children: [_jsx("span", { className: classNames(["zen-title-link__text", titleLinkTextDriveClasses || ""]), children: children }), _jsx(IconArrowRight, { size: isDrive ? "huge" : "large", className: classNames(["zen-title-link__icon", titleIconClasses || ""]) })] }));
16
16
  }
17
- return _jsx(TextIconButton, { type: "tertiary", iconClasses: titleIconClasses, id: id, "aria-label": titleAriaLabel, link: link, iconPosition: ButtonIconPosition.End, icon: IconArrowRight, iconSize: isDrive ? "huge" : "large", className: classNames(["zen-title-link", "zen-title-link__icon", titleLinkClasses || "", className || ""]), children: children && _jsx("span", { className: classNames(["zen-title-link__text", titleLinkTextDriveClasses || ""]), children: children }) });
17
+ return (_jsx(TextIconButton, { type: "tertiary", iconClasses: titleIconClasses, id: id, "aria-label": titleAriaLabel, link: link, iconPosition: ButtonIconPosition.End, icon: IconArrowRight, iconSize: isDrive ? "huge" : "large", className: classNames(["zen-title-link", "zen-title-link__icon", titleLinkClasses || "", className || ""]), children: children && _jsx("span", { className: classNames(["zen-title-link__text", titleLinkTextDriveClasses || ""]), children: children }) }));
18
18
  };
@@ -1 +1 @@
1
- export const getDefaultFullWidthValue = (isDrive) => isDrive ? true : false;
1
+ export const getDefaultFullWidthValue = (isDrive) => (isDrive ? true : false);
@@ -1,6 +1,7 @@
1
1
  import { isAbsoluteSize } from "../helpers/isAbsoluteSize";
2
- // eslint-disable-next-line complexity
2
+ /* eslint-disable complexity */
3
3
  export const useAbsoluteSize = (size, isMobile, autoHeight, fullWidth) => {
4
+ /* eslint-enable complexity */
4
5
  if (!isAbsoluteSize(size)) {
5
6
  return {};
6
7
  }
@@ -2,5 +2,5 @@ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { classNames } from "../commonHelpers/classNames/classNames";
3
3
  import { CardsRow } from "./cardsRow";
4
4
  // eslint-disable-next-line @typescript-eslint/naming-convention
5
- export const Cards = ({ children, wrap = true, gap = 16, direction = "row", className = "", paddingX = 0, paddingY = 0, fullHeight = false }) => _jsx("div", { className: classNames(["zen-cards", className, fullHeight ? "zen-cards--full-height" : ""]), style: { flexWrap: wrap ? "wrap" : "nowrap", flexDirection: direction, gap, padding: `${paddingY}px ${paddingX}px` }, children: children });
5
+ export const Cards = ({ children, wrap = true, gap = 16, direction = "row", className = "", paddingX = 0, paddingY = 0, fullHeight = false }) => (_jsx("div", { className: classNames(["zen-cards", className, fullHeight ? "zen-cards--full-height" : ""]), style: { flexWrap: wrap ? "wrap" : "nowrap", flexDirection: direction, gap, padding: `${paddingY}px ${paddingX}px` }, children: children }));
6
6
  Cards.Row = CardsRow;
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { classNames } from "../commonHelpers/classNames/classNames";
3
- export const CardsRow = ({ children, wrap = true, gap = 16, className = "", paddingX = 0, paddingY = 0, fullHeight = false }) => _jsx("div", { className: classNames(["zen-cards", className, fullHeight ? "zen-cards--full-height" : ""]), style: { flexWrap: wrap ? "wrap" : "nowrap", flexDirection: "row", gap, padding: `${paddingY}px ${paddingX}px` }, children: children });
3
+ export const CardsRow = ({ children, wrap = true, gap = 16, className = "", paddingX = 0, paddingY = 0, fullHeight = false }) => (_jsx("div", { className: classNames(["zen-cards", className, fullHeight ? "zen-cards--full-height" : ""]), style: { flexWrap: wrap ? "wrap" : "nowrap", flexDirection: "row", gap, padding: `${paddingY}px ${paddingX}px` }, children: children }));
@@ -2,4 +2,4 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { UserFormatProvider } from "../../utils/userFormat/userFormatProvider";
3
3
  import { AccessibleChartNarrative } from "./accessibleChartNarrative";
4
4
  import { AccessibleChartTable } from "./accessibleChartTable";
5
- export const AccessibleChart = (props) => _jsxs(UserFormatProvider, { dateFormat: "d MMMM yyyy", children: [props.type !== "pie" && _jsx(AccessibleChartNarrative, Object.assign({}, props)), _jsx(AccessibleChartTable, Object.assign({}, props))] });
5
+ export const AccessibleChart = (props) => (_jsxs(UserFormatProvider, { dateFormat: "d MMMM yyyy", children: [props.type !== "pie" && _jsx(AccessibleChartNarrative, Object.assign({}, props)), _jsx(AccessibleChartTable, Object.assign({}, props))] }));
@@ -35,21 +35,142 @@ injectString("tr", "Data", "Veri");
35
35
  injectString("zh-Hans", "Data", "\u6570\u636E");
36
36
  injectString("zh-TW", "Data", "\u8CC7\u6599");
37
37
  injectString("ro-RO", "Data", "Date");
38
+ injectString("ar-SA", "Data", "\u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A");
39
+ injectString("cs", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
40
+ injectString("da-DK", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
41
+ injectString("de", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
38
42
  injectString("en", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
43
+ injectString("es", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
44
+ injectString("fi-FI", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
45
+ injectString("fr", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
46
+ injectString("fr-FR", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
47
+ injectString("hu-HU", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
48
+ injectString("id", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
49
+ injectString("it", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
50
+ injectString("ja", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
51
+ injectString("ko-KR", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
52
+ injectString("ms", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
53
+ injectString("nb-NO", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
54
+ injectString("nl", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
55
+ injectString("pl", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
56
+ injectString("pt-BR", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
39
57
  injectString("pt-PT", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "mudou {TRANSITIONS} vezes entre dois estados: {STATE1} e {STATE2}.");
58
+ injectString("sk-SK", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
59
+ injectString("sv", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
60
+ injectString("th", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
61
+ injectString("tr", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
62
+ injectString("zh-Hans", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
63
+ injectString("zh-TW", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.");
40
64
  injectString("ro-RO", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "a schimbat orele {TRANSITIONS} \xEEntre dou\u0103 st\u0103ri: {STATE1} \u0219i {STATE2}.");
65
+ injectString("ar-SA", "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.", "\u062A\u0628\u062F\u0651\u0644 {TRANSITIONS} \u0645\u0631\u0629 \u0628\u064A\u0646 \u062D\u0627\u0644\u062A\u064A\u0646: {STATE1} \u0648 {STATE2}.");
66
+ injectString("cs", "Highest point(s):", "Highest point(s):");
67
+ injectString("da-DK", "Highest point(s):", "Highest point(s):");
68
+ injectString("de", "Highest point(s):", "Highest point(s):");
41
69
  injectString("en", "Highest point(s):", "Highest point(s):");
70
+ injectString("es", "Highest point(s):", "Highest point(s):");
71
+ injectString("fi-FI", "Highest point(s):", "Highest point(s):");
72
+ injectString("fr", "Highest point(s):", "Highest point(s):");
73
+ injectString("fr-FR", "Highest point(s):", "Highest point(s):");
74
+ injectString("hu-HU", "Highest point(s):", "Highest point(s):");
75
+ injectString("id", "Highest point(s):", "Highest point(s):");
76
+ injectString("it", "Highest point(s):", "Highest point(s):");
77
+ injectString("ja", "Highest point(s):", "Highest point(s):");
78
+ injectString("ko-KR", "Highest point(s):", "Highest point(s):");
79
+ injectString("ms", "Highest point(s):", "Highest point(s):");
80
+ injectString("nb-NO", "Highest point(s):", "Highest point(s):");
81
+ injectString("nl", "Highest point(s):", "Highest point(s):");
82
+ injectString("pl", "Highest point(s):", "Highest point(s):");
83
+ injectString("pt-BR", "Highest point(s):", "Highest point(s):");
42
84
  injectString("pt-PT", "Highest point(s):", "Ponto(s) mais elevado(s):");
85
+ injectString("sk-SK", "Highest point(s):", "Highest point(s):");
86
+ injectString("sv", "Highest point(s):", "Highest point(s):");
87
+ injectString("th", "Highest point(s):", "Highest point(s):");
88
+ injectString("tr", "Highest point(s):", "Highest point(s):");
89
+ injectString("zh-Hans", "Highest point(s):", "Highest point(s):");
90
+ injectString("zh-TW", "Highest point(s):", "Highest point(s):");
43
91
  injectString("ro-RO", "Highest point(s):", "Punctul (punctele) cel(e) mai ridicat(e):");
92
+ injectString("ar-SA", "Highest point(s):", "\u0623\u0639\u0644\u0649 \u0646\u0642\u0637\u0629 (\u0646\u0642\u0627\u0637):");
93
+ injectString("cs", "Lowest point(s):", "Lowest point(s):");
94
+ injectString("da-DK", "Lowest point(s):", "Lowest point(s):");
95
+ injectString("de", "Lowest point(s):", "Lowest point(s):");
44
96
  injectString("en", "Lowest point(s):", "Lowest point(s):");
97
+ injectString("es", "Lowest point(s):", "Lowest point(s):");
98
+ injectString("fi-FI", "Lowest point(s):", "Lowest point(s):");
99
+ injectString("fr", "Lowest point(s):", "Lowest point(s):");
100
+ injectString("fr-FR", "Lowest point(s):", "Lowest point(s):");
101
+ injectString("hu-HU", "Lowest point(s):", "Lowest point(s):");
102
+ injectString("id", "Lowest point(s):", "Lowest point(s):");
103
+ injectString("it", "Lowest point(s):", "Lowest point(s):");
104
+ injectString("ja", "Lowest point(s):", "Lowest point(s):");
105
+ injectString("ko-KR", "Lowest point(s):", "Lowest point(s):");
106
+ injectString("ms", "Lowest point(s):", "Lowest point(s):");
107
+ injectString("nb-NO", "Lowest point(s):", "Lowest point(s):");
108
+ injectString("nl", "Lowest point(s):", "Lowest point(s):");
109
+ injectString("pl", "Lowest point(s):", "Lowest point(s):");
110
+ injectString("pt-BR", "Lowest point(s):", "Lowest point(s):");
45
111
  injectString("pt-PT", "Lowest point(s):", "Ponto(s) mais baixo(s):");
112
+ injectString("sk-SK", "Lowest point(s):", "Lowest point(s):");
113
+ injectString("sv", "Lowest point(s):", "Lowest point(s):");
114
+ injectString("th", "Lowest point(s):", "Lowest point(s):");
115
+ injectString("tr", "Lowest point(s):", "Lowest point(s):");
116
+ injectString("zh-Hans", "Lowest point(s):", "Lowest point(s):");
117
+ injectString("zh-TW", "Lowest point(s):", "Lowest point(s):");
46
118
  injectString("ro-RO", "Lowest point(s):", "Punctul (punctele) cel(e) mai sc\u0103zut(e):");
119
+ injectString("ar-SA", "Lowest point(s):", "\u0623\u062F\u0646\u0649 \u0646\u0642\u0637\u0629 (\u0646\u0642\u0627\u0637):");
120
+ injectString("cs", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
121
+ injectString("da-DK", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
122
+ injectString("de", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
47
123
  injectString("en", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
124
+ injectString("es", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
125
+ injectString("fi-FI", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
126
+ injectString("fr", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
127
+ injectString("fr-FR", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
128
+ injectString("hu-HU", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
129
+ injectString("id", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
130
+ injectString("it", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
131
+ injectString("ja", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
132
+ injectString("ko-KR", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
133
+ injectString("ms", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
134
+ injectString("nb-NO", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
135
+ injectString("nl", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
136
+ injectString("pl", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
137
+ injectString("pt-BR", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
48
138
  injectString("pt-PT", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segmento {INDEX} {DIRECTION} de {FROM} em {X0} at\xE9 {TO} em {X}.");
139
+ injectString("sk-SK", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
140
+ injectString("sv", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
141
+ injectString("th", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
142
+ injectString("tr", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
143
+ injectString("zh-Hans", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
144
+ injectString("zh-TW", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.");
49
145
  injectString("ro-RO", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "Segmentul {INDEX} {DIRECTION} de la {FROM} la {X0} p\xE2n\u0103 la {TO} la {X}.");
146
+ injectString("ar-SA", "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.", "\u0627\u0644\u062C\u0632\u0621 {INDEX} {DIRECTION} \u0645\u0646 {FROM} \u0639\u0646\u062F {X0} \u0625\u0644\u0649 {TO} \u0639\u0646\u062F {X}.");
147
+ injectString("cs", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
148
+ injectString("da-DK", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
149
+ injectString("de", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
50
150
  injectString("en", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
151
+ injectString("es", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
152
+ injectString("fi-FI", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
153
+ injectString("fr", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
154
+ injectString("fr-FR", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
155
+ injectString("hu-HU", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
156
+ injectString("id", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
157
+ injectString("it", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
158
+ injectString("ja", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
159
+ injectString("ko-KR", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
160
+ injectString("ms", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
161
+ injectString("nb-NO", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
162
+ injectString("nl", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
163
+ injectString("pl", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
164
+ injectString("pt-BR", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
51
165
  injectString("pt-PT", "shows a complex trend with multiple segments:", "mostra uma tend\xEAncia complexa com m\xFAltiplos segmentos:");
166
+ injectString("sk-SK", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
167
+ injectString("sv", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
168
+ injectString("th", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
169
+ injectString("tr", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
170
+ injectString("zh-Hans", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
171
+ injectString("zh-TW", "shows a complex trend with multiple segments:", "shows a complex trend with multiple segments:");
52
172
  injectString("ro-RO", "shows a complex trend with multiple segments:", "arat\u0103 o tendin\u021B\u0103 complex\u0103 cu mai multe segmente:");
173
+ injectString("ar-SA", "shows a complex trend with multiple segments:", "\u064A\u064F\u0638\u0647\u0631 \u0627\u062A\u062C\u0627\u0647\u0627\u064B \u0645\u0639\u0642\u062F\u0627\u064B \u0645\u0639 \u0623\u062C\u0632\u0627\u0621 \u0645\u062A\u0639\u062F\u062F\u0629:");
53
174
  injectString("cs", "No data available", "Nejsou k\xA0dispozici \u017E\xE1dn\xE1 data");
54
175
  injectString("da-DK", "No data available", "Ingen data tilg\xE6ngelige");
55
176
  injectString("de", "No data available", "Keine Daten verf\xFCgbar");
@@ -76,24 +197,169 @@ injectString("tr", "No data available", "Mevcut veri yok");
76
197
  injectString("zh-Hans", "No data available", "\u65E0\u53EF\u7528\u6570\u636E");
77
198
  injectString("zh-TW", "No data available", "\u6C92\u6709\u53EF\u7528\u8CC7\u6599");
78
199
  injectString("ro-RO", "No data available", "Nu exist\u0103 date disponibile");
200
+ injectString("ar-SA", "No data available", "\u0644\u0627 \u062A\u0648\u062C\u062F \u0628\u064A\u0627\u0646\u0627\u062A \u0645\u062A\u0627\u062D\u0629");
201
+ injectString("cs", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
202
+ injectString("da-DK", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
203
+ injectString("de", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
79
204
  injectString("en", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
205
+ injectString("es", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
206
+ injectString("fi-FI", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
207
+ injectString("fr", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
208
+ injectString("fr-FR", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
209
+ injectString("hu-HU", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
210
+ injectString("id", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
211
+ injectString("it", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
212
+ injectString("ja", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
213
+ injectString("ko-KR", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
214
+ injectString("ms", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
215
+ injectString("nb-NO", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
216
+ injectString("nl", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
217
+ injectString("pl", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
218
+ injectString("pt-BR", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
80
219
  injectString("pt-PT", "Only one data point: value is {VALUE}.", "Apenas um ponto de dados: o valor \xE9 {VALUE}.");
220
+ injectString("sk-SK", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
221
+ injectString("sv", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
222
+ injectString("th", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
223
+ injectString("tr", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
224
+ injectString("zh-Hans", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
225
+ injectString("zh-TW", "Only one data point: value is {VALUE}.", "Only one data point: value is {VALUE}.");
81
226
  injectString("ro-RO", "Only one data point: value is {VALUE}.", "Un singur punct de date: valoarea este {VALUE}.");
227
+ injectString("ar-SA", "Only one data point: value is {VALUE}.", "\u0646\u0642\u0637\u0629 \u0628\u064A\u0627\u0646\u0627\u062A \u0648\u0627\u062D\u062F\u0629 \u0641\u0642\u0637: \u0627\u0644\u0642\u064A\u0645\u0629 \u0647\u064A {VALUE}.");
228
+ injectString("cs", "Average value is:", "Average value is:");
229
+ injectString("da-DK", "Average value is:", "Average value is:");
230
+ injectString("de", "Average value is:", "Average value is:");
82
231
  injectString("en", "Average value is:", "Average value is:");
232
+ injectString("es", "Average value is:", "Average value is:");
233
+ injectString("fi-FI", "Average value is:", "Average value is:");
234
+ injectString("fr", "Average value is:", "Average value is:");
235
+ injectString("fr-FR", "Average value is:", "Average value is:");
236
+ injectString("hu-HU", "Average value is:", "Average value is:");
237
+ injectString("id", "Average value is:", "Average value is:");
238
+ injectString("it", "Average value is:", "Average value is:");
239
+ injectString("ja", "Average value is:", "Average value is:");
240
+ injectString("ko-KR", "Average value is:", "Average value is:");
241
+ injectString("ms", "Average value is:", "Average value is:");
242
+ injectString("nb-NO", "Average value is:", "Average value is:");
243
+ injectString("nl", "Average value is:", "Average value is:");
244
+ injectString("pl", "Average value is:", "Average value is:");
245
+ injectString("pt-BR", "Average value is:", "Average value is:");
83
246
  injectString("pt-PT", "Average value is:", "O valor m\xE9dio \xE9:");
247
+ injectString("sk-SK", "Average value is:", "Average value is:");
248
+ injectString("sv", "Average value is:", "Average value is:");
249
+ injectString("th", "Average value is:", "Average value is:");
250
+ injectString("tr", "Average value is:", "Average value is:");
251
+ injectString("zh-Hans", "Average value is:", "Average value is:");
252
+ injectString("zh-TW", "Average value is:", "Average value is:");
84
253
  injectString("ro-RO", "Average value is:", "Valoarea medie este:");
254
+ injectString("ar-SA", "Average value is:", "\u0645\u062A\u0648\u0633\u0637 \u0627\u0644\u0642\u064A\u0645\u0629:");
255
+ injectString("cs", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
256
+ injectString("da-DK", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
257
+ injectString("de", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
85
258
  injectString("en", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
259
+ injectString("es", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
260
+ injectString("fi-FI", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
261
+ injectString("fr", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
262
+ injectString("fr-FR", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
263
+ injectString("hu-HU", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
264
+ injectString("id", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
265
+ injectString("it", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
266
+ injectString("ja", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
267
+ injectString("ko-KR", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
268
+ injectString("ms", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
269
+ injectString("nb-NO", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
270
+ injectString("nl", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
271
+ injectString("pl", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
272
+ injectString("pt-BR", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
86
273
  injectString("pt-PT", "shows a relatively flat or stable trend.", "mostra uma tend\xEAncia relativamente plana ou est\xE1vel.");
274
+ injectString("sk-SK", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
275
+ injectString("sv", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
276
+ injectString("th", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
277
+ injectString("tr", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
278
+ injectString("zh-Hans", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
279
+ injectString("zh-TW", "shows a relatively flat or stable trend.", "shows a relatively flat or stable trend.");
87
280
  injectString("ro-RO", "shows a relatively flat or stable trend.", "arat\u0103 o tendin\u021B\u0103 relativ plat\u0103 sau stabil\u0103.");
281
+ injectString("ar-SA", "shows a relatively flat or stable trend.", "\u064A\u064F\u0638\u0647\u0631 \u0627\u062A\u062C\u0627\u0647\u0627\u064B \u0645\u0633\u062A\u0642\u0631\u0627\u064B \u0646\u0633\u0628\u064A\u0627\u064B.");
282
+ injectString("cs", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
283
+ injectString("da-DK", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
284
+ injectString("de", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
88
285
  injectString("en", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
286
+ injectString("es", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
287
+ injectString("fi-FI", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
288
+ injectString("fr", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
289
+ injectString("fr-FR", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
290
+ injectString("hu-HU", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
291
+ injectString("id", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
292
+ injectString("it", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
293
+ injectString("ja", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
294
+ injectString("ko-KR", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
295
+ injectString("ms", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
296
+ injectString("nb-NO", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
297
+ injectString("nl", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
298
+ injectString("pl", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
299
+ injectString("pt-BR", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
89
300
  injectString("pt-PT", "value changes in the range from {MIN} to {MAX}.", "altera\xE7\xF5es de valor no intervalo de {MIN} a {MAX}.");
301
+ injectString("sk-SK", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
302
+ injectString("sv", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
303
+ injectString("th", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
304
+ injectString("tr", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
305
+ injectString("zh-Hans", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
306
+ injectString("zh-TW", "value changes in the range from {MIN} to {MAX}.", "value changes in the range from {MIN} to {MAX}.");
90
307
  injectString("ro-RO", "value changes in the range from {MIN} to {MAX}.", "valoarea se schimb\u0103 \xEEn intervalul de la {MIN} la {MAX}.");
308
+ injectString("ar-SA", "value changes in the range from {MIN} to {MAX}.", "\u062A\u062A\u063A\u064A\u0631 \u0627\u0644\u0642\u064A\u0645\u0629 \u0641\u064A \u0627\u0644\u0646\u0637\u0627\u0642 \u0645\u0646 {MIN} \u0625\u0644\u0649 {MAX}.");
309
+ injectString("cs", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
310
+ injectString("da-DK", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
311
+ injectString("de", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
91
312
  injectString("en", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
313
+ injectString("es", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
314
+ injectString("fi-FI", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
315
+ injectString("fr", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
316
+ injectString("fr-FR", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
317
+ injectString("hu-HU", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
318
+ injectString("id", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
319
+ injectString("it", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
320
+ injectString("ja", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
321
+ injectString("ko-KR", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
322
+ injectString("ms", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
323
+ injectString("nb-NO", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
324
+ injectString("nl", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
325
+ injectString("pl", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
326
+ injectString("pt-BR", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
92
327
  injectString("pt-PT", "from {FROM} at {X0} to {TO} at {X}.", "de {FROM} em {X0} at\xE9 {TO} em {X}.");
328
+ injectString("sk-SK", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
329
+ injectString("sv", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
330
+ injectString("th", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
331
+ injectString("tr", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
332
+ injectString("zh-Hans", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
333
+ injectString("zh-TW", "from {FROM} at {X0} to {TO} at {X}.", "from {FROM} at {X0} to {TO} at {X}.");
93
334
  injectString("ro-RO", "from {FROM} at {X0} to {TO} at {X}.", "de la {FROM} la {X0} \xEEn {TO} la {X}.");
335
+ injectString("ar-SA", "from {FROM} at {X0} to {TO} at {X}.", "\u0645\u0646 {FROM} \u0639\u0646\u062F {X0} \u0625\u0644\u0649 {TO} \u0639\u0646\u062F {X}.");
336
+ injectString("cs", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
337
+ injectString("da-DK", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
338
+ injectString("de", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
94
339
  injectString("en", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
340
+ injectString("es", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
341
+ injectString("fi-FI", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
342
+ injectString("fr", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
343
+ injectString("fr-FR", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
344
+ injectString("hu-HU", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
345
+ injectString("id", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
346
+ injectString("it", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
347
+ injectString("ja", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
348
+ injectString("ko-KR", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
349
+ injectString("ms", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
350
+ injectString("nb-NO", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
351
+ injectString("nl", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
352
+ injectString("pl", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
353
+ injectString("pt-BR", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
95
354
  injectString("pt-PT", "Error generating chart narrative for dataset", "Erro ao gerar narrativa do gr\xE1fico para o conjunto de dados");
355
+ injectString("sk-SK", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
356
+ injectString("sv", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
357
+ injectString("th", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
358
+ injectString("tr", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
359
+ injectString("zh-Hans", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
360
+ injectString("zh-TW", "Error generating chart narrative for dataset", "Error generating chart narrative for dataset");
96
361
  injectString("ro-RO", "Error generating chart narrative for dataset", "Eroare la generarea descrierii graficului pentru setul de date");
362
+ injectString("ar-SA", "Error generating chart narrative for dataset", "\u062E\u0637\u0623 \u0641\u064A \u0625\u0646\u0634\u0627\u0621 \u0633\u0631\u062F \u0627\u0644\u0631\u0633\u0645 \u0627\u0644\u0628\u064A\u0627\u0646\u064A \u0644\u0645\u062C\u0645\u0648\u0639\u0629 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A");
97
363
  export function collectAllPoints(dataset, dateFormatter, miniChartLabels, options) {
98
364
  if (dataset.data.length === 0) {
99
365
  return [];
@@ -212,7 +478,7 @@ export function simplifyData(data) {
212
478
  });
213
479
  // Filter points by trend change and relative height
214
480
  const significantExtremums = [];
215
- const strengthThreshold = 0.50;
481
+ const strengthThreshold = 0.5;
216
482
  const yValues = data.filter(p => p.y !== null).map(p => p.y);
217
483
  const minY = yValues.reduce((min, current) => Math.min(min, current));
218
484
  const maxY = yValues.reduce((max, current) => Math.max(max, current));
@@ -36,6 +36,7 @@ injectString("tr", "Value", "De\u011Fer");
36
36
  injectString("zh-Hans", "Value", "\u503C");
37
37
  injectString("zh-TW", "Value", "\u503C");
38
38
  injectString("ro-RO", "Value", "Valoare");
39
+ injectString("ar-SA", "Value", "\u0627\u0644\u0642\u064A\u0645\u0629");
39
40
  injectString("cs", "Chart data", "Data grafu");
40
41
  injectString("da-DK", "Chart data", "Diagramdata");
41
42
  injectString("de", "Chart data", "Diagrammdaten");
@@ -62,9 +63,34 @@ injectString("tr", "Chart data", "Grafik verileri");
62
63
  injectString("zh-Hans", "Chart data", "\u56FE\u8868\u6570\u636E");
63
64
  injectString("zh-TW", "Chart data", "\u5716\u8868\u8CC7\u6599");
64
65
  injectString("ro-RO", "Chart data", "Date grafic");
66
+ injectString("ar-SA", "Chart data", "\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0631\u0633\u0645 \u0627\u0644\u0628\u064A\u0627\u0646\u064A");
67
+ injectString("cs", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
68
+ injectString("da-DK", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
69
+ injectString("de", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
65
70
  injectString("en", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
71
+ injectString("es", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
72
+ injectString("fi-FI", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
73
+ injectString("fr", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
74
+ injectString("fr-FR", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
75
+ injectString("hu-HU", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
76
+ injectString("id", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
77
+ injectString("it", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
78
+ injectString("ja", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
79
+ injectString("ko-KR", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
80
+ injectString("ms", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
81
+ injectString("nb-NO", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
82
+ injectString("nl", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
83
+ injectString("pl", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
84
+ injectString("pt-BR", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
66
85
  injectString("pt-PT", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "O gr\xE1fico cont\xE9m muitos pontos de dados, por isso o seu n\xFAmero foi reduzido. Se quiser ver mais, altere o intervalo do relat\xF3rio.");
86
+ injectString("sk-SK", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
87
+ injectString("sv", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
88
+ injectString("th", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
89
+ injectString("tr", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
90
+ injectString("zh-Hans", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
91
+ injectString("zh-TW", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range");
67
92
  injectString("ro-RO", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "Graficul con\u021Bine prea multe puncte de date, a\u0219adar num\u0103rul lor a fost redus. Dac\u0103 dori\u021Bi s\u0103 vede\u021Bi mai mult, schimba\u021Bi intervalul raportului");
93
+ injectString("ar-SA", "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range", "\u064A\u062D\u062A\u0648\u064A \u0627\u0644\u0631\u0633\u0645 \u0627\u0644\u0628\u064A\u0627\u0646\u064A \u0639\u0644\u0649 \u0639\u062F\u062F \u0643\u0628\u064A\u0631 \u062C\u062F\u0627\u064B \u0645\u0646 \u0646\u0642\u0627\u0637 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0644\u0630\u0644\u0643 \u062A\u0645 \u062A\u0642\u0644\u064A\u0644 \u0639\u062F\u062F\u0647\u0627. \u0625\u0630\u0627 \u0623\u0631\u062F\u062A \u0631\u0624\u064A\u0629 \u0627\u0644\u0645\u0632\u064A\u062F\u060C \u063A\u064A\u0651\u0631 \u0646\u0637\u0627\u0642 \u0627\u0644\u062A\u0642\u0631\u064A\u0631");
68
94
  injectString("cs", "X-axis", "Osa X");
69
95
  injectString("da-DK", "X-axis", "X-akse");
70
96
  injectString("de", "X-axis", "X-Achse");
@@ -91,6 +117,7 @@ injectString("tr", "X-axis", "X ekseni");
91
117
  injectString("zh-Hans", "X-axis", "X \u8F74");
92
118
  injectString("zh-TW", "X-axis", "X \u8EF8");
93
119
  injectString("ro-RO", "X-axis", "Axa X");
120
+ injectString("ar-SA", "X-axis", "\u0627\u0644\u0645\u062D\u0648\u0631 \u0633");
94
121
  injectString("cs", "Category", "Kategorie");
95
122
  injectString("da-DK", "Category", "Kategori");
96
123
  injectString("de", "Category", "Kategorie");
@@ -117,6 +144,7 @@ injectString("tr", "Category", "Kategori");
117
144
  injectString("zh-Hans", "Category", "\u7C7B\u522B");
118
145
  injectString("zh-TW", "Category", "\u7A2E\u985E");
119
146
  injectString("ro-RO", "Category", "Categorie");
147
+ injectString("ar-SA", "Category", "\u0627\u0644\u0641\u0626\u0629");
120
148
  const MAX_TABLE_ROWS = 150;
121
149
  const getXLabels = (type, data, translate) => {
122
150
  if (type === "pie") {