@geotab/zenith 3.14.0 → 3.15.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 (833) hide show
  1. package/README.md +32 -3
  2. package/dist/advancedGroupsFilter/advancedGroupsFilter.js +19 -1
  3. package/dist/advancedGroupsFilter/advancedGroupsFilterForm.js +13 -1
  4. package/dist/advancedGroupsFilter/advancedGroupsFilterFormSection.js +60 -8
  5. package/dist/advancedGroupsFilter/advancedGroupsFilterSectionTooltip.js +7 -1
  6. package/dist/alert/banner.d.ts +2 -3
  7. package/dist/alert/hooks/useAlertState.d.ts +0 -1
  8. package/dist/alertRaw/alertRaw.js +6 -0
  9. package/dist/banner/bannerMultipLine.d.ts +0 -1
  10. package/dist/banner/bannerMultipLine.js +6 -0
  11. package/dist/banner/bannerSingleLine.d.ts +0 -1
  12. package/dist/banner/bannerSingleLine.js +6 -0
  13. package/dist/banner/utils/isSummaryErrorElement.d.ts +1 -2
  14. package/dist/banner/utils/useSummaryBannerProp.js +32 -0
  15. package/dist/betaPill/betaPill.js +34 -10
  16. package/dist/bookmark/bookmark.js +14 -2
  17. package/dist/bulkEditControl/bulkEditControl.js +32 -2
  18. package/dist/calendar/calendar.js +182 -2
  19. package/dist/calendar/calendarUtils.js +107 -19
  20. package/dist/calendar/dateUtils.js +2 -2
  21. package/dist/card/card.js +23 -7
  22. package/dist/card/components/content.d.ts +0 -1
  23. package/dist/cardContainer/helpers/getSizeClass.js +1 -2
  24. package/dist/chart/accessibleChart/accessibleChart.js +1 -1
  25. package/dist/chart/accessibleChart/accessibleChartNarrative.d.ts +1 -1
  26. package/dist/chart/accessibleChart/accessibleChartNarrative.js +189 -105
  27. package/dist/chart/accessibleChart/accessibleChartTable.js +42 -12
  28. package/dist/chart/accessibleChart/generatePieNarrative.d.ts +7 -0
  29. package/dist/chart/accessibleChart/generatePieNarrative.js +179 -0
  30. package/dist/chart/accessibleChart/interfaces.d.ts +1 -0
  31. package/dist/chart/barChart/getDefaultOptions.js +5 -6
  32. package/dist/chart/barChart.js +152 -50
  33. package/dist/chart/chart.js +15 -9
  34. package/dist/chart/chartAxis/chartAxis.js +14 -2
  35. package/dist/chart/interfaces.d.ts +0 -1
  36. package/dist/chart/lineChart/getDefaultOptions.js +5 -6
  37. package/dist/chart/lineChart/useChartTicks.d.ts +0 -1
  38. package/dist/chart/lineChart/useSummary.d.ts +7 -8
  39. package/dist/chart/lineChart.js +167 -59
  40. package/dist/chart/pieChart.js +174 -76
  41. package/dist/chart/plugins/linePlugin/getInterpolatedValue.js +1 -2
  42. package/dist/chart/plugins/linePlugin/linePlugin.js +29 -7
  43. package/dist/chart/utils/convertDates.d.ts +1 -1
  44. package/dist/chart/utils/getFormattedLabel.js +1 -2
  45. package/dist/chart/utils/getNiceAxisRange.d.ts +21 -0
  46. package/dist/chart/utils/getNiceAxisRange.js +76 -0
  47. package/dist/chart/utils/getRange.js +2 -2
  48. package/dist/chart/utils/getYAxisMeta.d.ts +2 -5
  49. package/dist/chart/utils/getYAxisMeta.js +17 -2
  50. package/dist/chart/utils/getYAxisTickCount.d.ts +15 -0
  51. package/dist/chart/utils/getYAxisTickCount.js +19 -0
  52. package/dist/chart/utils/resampleArrayEvenly.js +1 -2
  53. package/dist/checkbox/checkbox.js +17 -7
  54. package/dist/checkboxListWithAction/checkboxListWithAction.d.ts +0 -1
  55. package/dist/checkboxListWithAction/checkboxListWithAction.js +36 -12
  56. package/dist/chip/chip.d.ts +0 -1
  57. package/dist/chip/chip.js +6 -0
  58. package/dist/chip/utils/useChip.d.ts +0 -1
  59. package/dist/columnsSelector/columnsSelector.js +13 -1
  60. package/dist/columnsSelector/columnsTab/columnsTab.js +6 -0
  61. package/dist/columnsSelector/columnsTabGroup/columnsTabGroup.js +6 -0
  62. package/dist/commonHelpers/HOC/reducerLogger/reducerLogger.d.ts +1 -1
  63. package/dist/commonHelpers/arrowNavigation/components/arrowButton/arrowButton.d.ts +0 -1
  64. package/dist/commonHelpers/arrowNavigation/hooks/useHoldOnScroll.d.ts +0 -1
  65. package/dist/commonHelpers/generateId.js +1 -2
  66. package/dist/commonHelpers/hooks/breakpoints.d.ts +4 -0
  67. package/dist/commonHelpers/hooks/breakpoints.js +7 -0
  68. package/dist/commonHelpers/hooks/fetch.reducer.d.ts +1 -1
  69. package/dist/commonHelpers/hooks/fetch.reducer.js +1 -2
  70. package/dist/commonHelpers/hooks/useDebouncedMemo.d.ts +0 -1
  71. package/dist/commonHelpers/hooks/useDebouncedMemo.js +1 -2
  72. package/dist/commonHelpers/hooks/useDeviceType.js +2 -2
  73. package/dist/commonHelpers/hooks/useEscape.d.ts +1 -1
  74. package/dist/commonHelpers/hooks/useGridSize.d.ts +0 -1
  75. package/dist/commonHelpers/hooks/useMobileOrTablet.d.ts +1 -0
  76. package/dist/commonHelpers/hooks/useMobileOrTablet.js +21 -0
  77. package/dist/commonHelpers/hooks/usePillSize.d.ts +0 -1
  78. package/dist/{gridLayout → commonHelpers}/hooks/useTablet.js +8 -11
  79. package/dist/commonHelpers/utils.js +3 -3
  80. package/dist/commonStyles/colors/colors.less +1 -0
  81. package/dist/dataFeed/dataFeed.d.ts +1 -1
  82. package/dist/dataFeed/dataFeed.js +2 -2
  83. package/dist/dataFeed/dataFeedCell/dataFeedCell.d.ts +3 -1
  84. package/dist/dataFeed/dataFeedColumnsItems.d.ts +2 -2
  85. package/dist/dataFeed/feedExpandControl/feedExpandControl.js +64 -0
  86. package/dist/dataGrid/cell/cell.d.ts +3 -1
  87. package/dist/dataGrid/columns/actionsColumn/actionsButton.js +1 -2
  88. package/dist/dataGrid/columns/actionsColumn/actionsColumn.d.ts +3 -3
  89. package/dist/dataGrid/columns/checkboxColumn/checkboxHeaderCell.js +7 -1
  90. package/dist/dataGrid/dataGrid.d.ts +13 -1
  91. package/dist/dataGrid/dataGrid.js +54 -3
  92. package/dist/dataGrid/emptySearchList/emptySearchList.d.ts +0 -1
  93. package/dist/dataGrid/emptySearchList/emptySearchList.js +7 -1
  94. package/dist/dataGrid/entitiesListActions/actions/columnsListButton.js +7 -1
  95. package/dist/dataGrid/entitiesListActions/actions/fullscreenButton.js +22 -10
  96. package/dist/dataGrid/row/row.d.ts +3 -1
  97. package/dist/dataGrid/withActions/withActions.d.ts +1 -1
  98. package/dist/dataGrid/withFlexibleColumns/components/columnSettings.js +13 -1
  99. package/dist/dataGrid/withFlexibleColumns/components/columnSettingsList.js +1 -2
  100. package/dist/dataGrid/withFlexibleColumns/components/columnSettingsSidePanel.js +32 -0
  101. package/dist/dataGrid/withFlexibleColumns/withFlexibleColumns.d.ts +1 -1
  102. package/dist/dataGrid/withFlexibleColumns/withFlexibleColumns.js +6 -0
  103. package/dist/dataGrid/withLoading/withLoading.d.ts +1 -1
  104. package/dist/dataGrid/withSelectableRows/components/bulkActions/bulkActions.js +31 -1
  105. package/dist/dataGrid/withSelectableRows/withLimitedSelectableRows.d.ts +1 -1
  106. package/dist/dataGrid/withSelectableRows/withSelectableRows.d.ts +1 -1
  107. package/dist/dataGrid/withSelectableRows/withSelectableRows.js +50 -0
  108. package/dist/dataGrid/withSortableColumns/columns/sortableColumnWrapper.js +14 -2
  109. package/dist/dataGrid/withSortableColumns/withSortableColumns.d.ts +1 -1
  110. package/dist/dateInputInner/dateInputInner.js +62 -20
  111. package/dist/dateInputInner/dateInputInnerControlBlock.js +12 -0
  112. package/dist/dateInputInner/dateInputInnerReducer.js +2 -2
  113. package/dist/dateInputRaw/dateInputRaw.js +18 -0
  114. package/dist/dateInputRaw/utils/getLabel.js +21 -9
  115. package/dist/dateRangeInner/dateRangeInner.js +6 -0
  116. package/dist/dateRangeRaw/dateRangeRaw.js +121 -9
  117. package/dist/dateRangeRaw/utils/areMapsEqual.js +1 -2
  118. package/dist/dateRangeRaw/utils/dateRangeUtils.js +108 -6
  119. package/dist/dateSelectionWrapper/dateSelectionWrapper.js +24 -0
  120. package/dist/dialog/dialog.d.ts +0 -1
  121. package/dist/dialog/dialogContent.js +6 -0
  122. package/dist/dropdown/dropdown.js +1 -1
  123. package/dist/dropdown/useDropdownState.d.ts +0 -1
  124. package/dist/dropdownRaw/dropdownHelper.js +2 -2
  125. package/dist/dropdownRaw/dropdownList.d.ts +3 -2
  126. package/dist/dropdownRaw/dropdownList.js +84 -48
  127. package/dist/dropdownRaw/dropdownPopup.js +19 -1
  128. package/dist/dropdownRaw/dropdownRaw.js +41 -14
  129. package/dist/dropdownRaw/dropdownSearchableTrigger.js +27 -3
  130. package/dist/dropdownRaw/stateReducer/stateReducer.d.ts +4 -1
  131. package/dist/dropdownRaw/stateReducer/stateReducer.js +33 -23
  132. package/dist/dropdownRaw/stateReducer/stateReducerHelper.d.ts +1 -2
  133. package/dist/dropdownRaw/stateReducer/stateReducerHelper.js +8 -13
  134. package/dist/dropdownRaw/types.d.ts +20 -0
  135. package/dist/favoriteButton/favoriteButton.js +7 -1
  136. package/dist/feedbackContainer/feedbackContainer.js +17 -7
  137. package/dist/feedbackContainer/hooks/useFeedbackAlert.d.ts +0 -1
  138. package/dist/feedbackContainer/hooks/useFeedbackToast.d.ts +0 -1
  139. package/dist/fileUpload/components/dropZoneContent.js +25 -1
  140. package/dist/fileUpload/components/templateDownloadSection.js +6 -0
  141. package/dist/fileUpload/components/uploadedFilesSection.js +21 -9
  142. package/dist/fileUpload/fileUpload.js +55 -19
  143. package/dist/filters/components/filtersContainer.js +19 -1
  144. package/dist/filters/components/filtersDropdown.js +2 -2
  145. package/dist/filters/components/filtersEmptyState.js +30 -18
  146. package/dist/filters/components/filtersItem.d.ts +2 -2
  147. package/dist/filters/components/filtersSaveModal.js +57 -27
  148. package/dist/filters/components/filtersSavedChipComponent.js +113 -47
  149. package/dist/filters/components/filtersSearchItemData.js +6 -0
  150. package/dist/filters/components/filtersSearchList.d.ts +0 -1
  151. package/dist/filters/components/filtersSearchList.js +83 -29
  152. package/dist/filters/components/filtersSelect.d.ts +0 -1
  153. package/dist/filters/components/filtersSelect.js +6 -0
  154. package/dist/filters/components/filtersSelectCompact.d.ts +0 -1
  155. package/dist/filters/components/filtersSelectListItem.d.ts +0 -1
  156. package/dist/filters/components/filtersSelectListItem.js +12 -0
  157. package/dist/filters/components/filtersSelectUnfoldingPill.d.ts +0 -1
  158. package/dist/filters/components/filtersSidePanel.js +58 -10
  159. package/dist/filters/components/filtersSidePanelItem.js +17 -7
  160. package/dist/filters/filters.js +45 -27
  161. package/dist/filters/filtersHelper.d.ts +1 -1
  162. package/dist/filters/filtersHelper.js +5 -5
  163. package/dist/filters/filtersHooks.d.ts +0 -1
  164. package/dist/filtersBar/components/filtersBarDropdownWithCheckbox/filtersBarDropdownWithCheckbox.js +1 -1
  165. package/dist/filtersBar/components/filtersBarPeriodPicker/getRangeOption.js +116 -8
  166. package/dist/filtersBar/components/resetComponentButton.js +6 -0
  167. package/dist/filtersBar/filtersBar.js +2 -2
  168. package/dist/filtersBar/filtersBarActions/filtersBarActions.d.ts +0 -1
  169. package/dist/filtersBar/filtersBarActions/filtersBarActions.js +50 -0
  170. package/dist/filtersBar/filtersBarInterfaces.d.ts +0 -1
  171. package/dist/filtersBar/filtersBarReducer.js +2 -2
  172. package/dist/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelDropdownWithCheckbox/filtersBarSidePanelDropdownWithCheckbox.d.ts +4 -10
  173. package/dist/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRange/filtersBarSidePanelRange.js +12 -0
  174. package/dist/filtersBar/filtersBarSidePanel/filtersBarSidePanel.js +31 -1
  175. package/dist/filtersBar/filtersBarSidePanel/sidePanelReducer.js +2 -2
  176. package/dist/filtersBar/filtersContainer/filtersContainer.js +20 -6
  177. package/dist/filtersBar/utils/getNumberOfChangedFilters.js +1 -2
  178. package/dist/footerButtons/footerButtons.js +17 -7
  179. package/dist/formField/components/formFieldAdditionalInfo.d.ts +0 -1
  180. package/dist/formField/components/formFieldCounter.d.ts +0 -1
  181. package/dist/formField/components/formFieldLoading.d.ts +0 -1
  182. package/dist/formField/components/formFieldSkeleton.d.ts +0 -1
  183. package/dist/formField/components/formFieldWithLabel.d.ts +0 -1
  184. package/dist/formField/components/formFieldWithoutLabel.d.ts +0 -1
  185. package/dist/formField/formField.d.ts +1 -1
  186. package/dist/formField/hooks/useBanner.d.ts +0 -1
  187. package/dist/formField/hooks/useDisabled.d.ts +1 -1
  188. package/dist/formField/hooks/useError.js +27 -9
  189. package/dist/formGroup/components/customRow/customRow.d.ts +0 -1
  190. package/dist/formGroup/components/reviewListToggle/reviewListToggle.js +12 -0
  191. package/dist/formGroup/formGroup.js +17 -7
  192. package/dist/formGroup/hooks/listHooks/useStateToElements.d.ts +0 -1
  193. package/dist/formGroup/hooks/listHooks/useStateToElements.js +1 -1
  194. package/dist/formGroup/hooks/useToggle.js +15 -9
  195. package/dist/formGroup/utils/formGroupProvider.d.ts +0 -1
  196. package/dist/formGroup/utils/isFormLabel.d.ts +1 -1
  197. package/dist/formGroupItem/formGroupItem.d.ts +0 -1
  198. package/dist/formLayout/components/layoutColumn/layoutColum.d.ts +0 -1
  199. package/dist/formLayout/hooks/useError.js +36 -18
  200. package/dist/formLayout/hooks/useFormButtons.d.ts +1 -1
  201. package/dist/formLayout/hooks/useFormButtons.js +18 -0
  202. package/dist/formLayout/types.d.ts +0 -1
  203. package/dist/formLayout/utils/attachHeadings.d.ts +1 -1
  204. package/dist/formLayout/utils/attachSeparators.d.ts +0 -1
  205. package/dist/formLayout/utils/getChildrenWithCustomColumns.d.ts +1 -2
  206. package/dist/formLayout/utils/getChildrenWithCustomColumns.js +2 -2
  207. package/dist/formLayout/utils/getFieldLabel.js +5 -5
  208. package/dist/formSection/components/actions.d.ts +0 -1
  209. package/dist/formSection/components/additional.d.ts +0 -1
  210. package/dist/formSection/hooks/useError.js +36 -18
  211. package/dist/formSection/utils/isFormSection.d.ts +2 -4
  212. package/dist/formStepper/components/formStep.js +6 -0
  213. package/dist/formStepper/components/formStepRaw.d.ts +0 -1
  214. package/dist/formStepper/formStepper.d.ts +0 -1
  215. package/dist/formStepper/formStepper.js +17 -5
  216. package/dist/formStepperButtons/formStepperButtons.js +27 -3
  217. package/dist/gridLayout/hooks/useStretch.js +1 -1
  218. package/dist/gridLayout/utils/convertStateToClasses.js +1 -2
  219. package/dist/gridLayout/utils/gridLayoutProvider.d.ts +0 -1
  220. package/dist/gridLayout/utils/gridLayoutProvider.js +1 -1
  221. package/dist/gridLayout/utils/isGridItem.d.ts +1 -1
  222. package/dist/groupsFilter/groupsHelper.d.ts +5 -5
  223. package/dist/groupsFilterRaw/groupsFilterAdjustmentState.js +24 -0
  224. package/dist/groupsFilterRaw/groupsFilterBox.js +20 -2
  225. package/dist/groupsFilterRaw/groupsFilterCommon.js +14 -2
  226. package/dist/groupsFilterRaw/groupsFilterCurrentlySelectedState.js +30 -0
  227. package/dist/groupsFilterRaw/groupsFilterHelper.js +28 -16
  228. package/dist/groupsFilterRaw/groupsFilterInitialState.js +52 -4
  229. package/dist/groupsFilterRaw/groupsFilterMenu.js +18 -0
  230. package/dist/groupsFilterRaw/groupsFilterRaw.js +50 -2
  231. package/dist/groupsFilterRaw/groupsFilterTrigger.js +14 -2
  232. package/dist/groupsFilterRaw/groupsHelper.d.ts +1 -1
  233. package/dist/groupsFilterRaw/groupsHelper.js +136 -4
  234. package/dist/groupsFilterRaw/stateReducer/stateReducer.d.ts +1 -1
  235. package/dist/groupsFilterRaw/stateReducer/stateReducer.js +2 -2
  236. package/dist/groupsFilterRaw/testData.js +3 -4
  237. package/dist/groupsFilterRaw/uiStateReducer/uiStateReducer.js +2 -2
  238. package/dist/header/components/collapsedItemsControl/collapsedItemsControl.js +6 -0
  239. package/dist/header/components/collapsedItemsControl/utils/handleCustomMenuWrapper.js +5 -0
  240. package/dist/header/components/mobileFilterControl/mobileFilterControl.d.ts +0 -1
  241. package/dist/header/components/mobileFilterControl/mobileFilterControl.js +7 -1
  242. package/dist/header/components/mobileSearchControl/mobileSearchControl.d.ts +0 -1
  243. package/dist/header/components/mobileSearchControl/mobileSearchControl.js +19 -1
  244. package/dist/header/header.js +17 -7
  245. package/dist/header/headerBack.js +6 -0
  246. package/dist/header/headerButton.d.ts +0 -1
  247. package/dist/header/headerContext.d.ts +1 -2
  248. package/dist/header/headerHelpers.d.ts +5 -5
  249. package/dist/header/headerHelpers.js +17 -7
  250. package/dist/header/hooks/useNonFittingElements.d.ts +3 -4
  251. package/dist/headerTitle/headerTitle.d.ts +0 -1
  252. package/dist/icons/iconAce.d.ts +3 -0
  253. package/dist/icons/iconAce.js +12 -0
  254. package/dist/icons/iconBreak.d.ts +3 -0
  255. package/dist/icons/iconBreak.js +12 -0
  256. package/dist/icons/iconChevronStepper.d.ts +3 -0
  257. package/dist/icons/iconChevronStepper.js +12 -0
  258. package/dist/icons/iconPotato.d.ts +3 -0
  259. package/dist/icons/iconPotato.js +12 -0
  260. package/dist/icons/iconToggleLarge.d.ts +3 -0
  261. package/dist/icons/iconToggleLarge.js +12 -0
  262. package/dist/icons/iconToggleSmall.d.ts +3 -0
  263. package/dist/icons/iconToggleSmall.js +12 -0
  264. package/dist/icons/iconTrendNeutral.d.ts +3 -0
  265. package/dist/icons/iconTrendNeutral.js +12 -0
  266. package/dist/icons/iconTruck.d.ts +3 -0
  267. package/dist/icons/iconTruck.js +12 -0
  268. package/dist/index.css +219 -169
  269. package/dist/index.d.ts +8 -0
  270. package/dist/index.js +30 -13
  271. package/dist/layout/layout.d.ts +2 -1
  272. package/dist/layout/layout.js +17 -7
  273. package/dist/layout/layoutBanner.d.ts +0 -1
  274. package/dist/lineChart/lineChart.d.ts +1 -0
  275. package/dist/lineChart/lineChart.js +135 -70
  276. package/dist/lineChartMini/lineChartMini.d.ts +1 -0
  277. package/dist/lineChartMini/lineChartMini.js +141 -73
  278. package/dist/list/itemData/itemData.d.ts +2 -1
  279. package/dist/list/itemData/itemDataInternal.d.ts +2 -1
  280. package/dist/list/itemData/itemDataInternal.js +12 -0
  281. package/dist/list/list.d.ts +0 -1
  282. package/dist/list/listItem/listItem.js +12 -0
  283. package/dist/list/utils/changeOrder.js +1 -2
  284. package/dist/list/utils/isDataListitem.d.ts +1 -1
  285. package/dist/list/viewportProvider/viewportContext.d.ts +0 -1
  286. package/dist/menu/components/controlledMenuList/controlledMenuList.d.ts +2 -4
  287. package/dist/menu/components/controlledMenuList/controlledMenuList.js +3 -1
  288. package/dist/menu/components/createControlledMenuList.js +1 -2
  289. package/dist/menu/components/createMenuItem.js +1 -2
  290. package/dist/menu/components/menuErrorItem.js +30 -18
  291. package/dist/menu/contexts/usePathContext.js +1 -2
  292. package/dist/menu/utils/buildMenuContent.js +1 -2
  293. package/dist/menu/utils/findPrevFocusable.js +1 -2
  294. package/dist/menu/utils/useDisplayContent.d.ts +21 -0
  295. package/dist/menu/utils/useDisplayContent.js +35 -0
  296. package/dist/menu/utils/useMenuItemKeyboardNav.js +1 -2
  297. package/dist/miniTabs/miniTabsHelper.js +17 -7
  298. package/dist/mobileSheet/components/mobileSheetTitle.d.ts +0 -1
  299. package/dist/mobileSheet/mobileSheet.js +12 -0
  300. package/dist/modal/modal.js +23 -7
  301. package/dist/nav/context/nav.context.d.ts +0 -1
  302. package/dist/nav/navFooter/navEditFooter/navEditFooter.d.ts +0 -1
  303. package/dist/nav/navFooter/navEditFooter/navEditFooter.js +12 -0
  304. package/dist/nav/navFooter/navFooter.d.ts +1 -1
  305. package/dist/nav/navFooter/navFooter.js +15 -9
  306. package/dist/nav/navFooter/navFooterAction/navFooterAction.d.ts +2 -1
  307. package/dist/nav/navFooter/navFooterAction/navFooterAction.js +9 -1
  308. package/dist/nav/navHeader/navHeader.js +30 -18
  309. package/dist/nav/navHeader/navHeaderSearch/navHeaderSearch.js +21 -9
  310. package/dist/nav/navItem/navItem.d.ts +2 -0
  311. package/dist/nav/navItem/navItem.js +56 -47
  312. package/dist/nav/navItem/navItemContent.d.ts +19 -0
  313. package/dist/nav/navItem/navItemContent.js +21 -0
  314. package/dist/nav/navItem/navItemType.d.ts +7 -0
  315. package/dist/nav/navItem/navItemType.js +9 -0
  316. package/dist/nav/navMobileBar/navMobileBar.js +6 -0
  317. package/dist/nav/utils/navUtils.d.ts +2 -4
  318. package/dist/nav/utils/navUtils.js +2 -2
  319. package/dist/notification/notification.js +6 -0
  320. package/dist/overview/overview.d.ts +0 -1
  321. package/dist/pageHeader/pageHeader.d.ts +1 -1
  322. package/dist/pageHeader/pageHeaderButton.d.ts +0 -1
  323. package/dist/pageHeader/pageHeaderHelpers.d.ts +1 -1
  324. package/dist/pageHeader/pageHeaderMenu.d.ts +0 -1
  325. package/dist/pagination/paginationArrow.d.ts +0 -1
  326. package/dist/pagination/paginationArrow.js +12 -0
  327. package/dist/pagination/paginationText/paginationText.js +6 -0
  328. package/dist/pill/components/pillNonActionable/pillNonActionable.js +6 -0
  329. package/dist/pill/interfaces/pill.interface.d.ts +0 -1
  330. package/dist/pillBox/components/pillBoxItem.d.ts +1 -2
  331. package/dist/pillBox/components/pillBoxItem.js +6 -0
  332. package/dist/pillBox/pillBox.js +19 -1
  333. package/dist/pillExpandable/pillExpandable.js +6 -0
  334. package/dist/popup/popup.js +17 -7
  335. package/dist/progressIndicator/progressIndicator.d.ts +39 -0
  336. package/dist/progressIndicator/progressIndicator.js +30 -0
  337. package/dist/progressIndicator/progressIndicatorUtils.d.ts +12 -0
  338. package/dist/progressIndicator/progressIndicatorUtils.js +30 -0
  339. package/dist/radioGroupRaw/radioGroupRaw.js +17 -7
  340. package/dist/radioGroupRaw/types.d.ts +0 -1
  341. package/dist/rangeRaw/rangeRaw.js +44 -2
  342. package/dist/rangeRaw/utils/rangeHelper.js +45 -3
  343. package/dist/react-chartjs/dateFns/dateFns.js +10 -11
  344. package/dist/react-chartjs/utils.d.ts +3 -3
  345. package/dist/react-chartjs/utils.js +8 -9
  346. package/dist/searchInputRaw/searchInputRaw.js +29 -7
  347. package/dist/searchInputRaw/types.d.ts +0 -1
  348. package/dist/selectField/selectField.d.ts +2 -3
  349. package/dist/selectList/selectList.d.ts +0 -1
  350. package/dist/selectList/selectList.js +12 -0
  351. package/dist/selectRaw/hooks/usePopupWidth.js +17 -7
  352. package/dist/selectRaw/selectRaw.js +20 -7
  353. package/dist/sidePanel/sidePanelCell/sidePanelCell.d.ts +0 -1
  354. package/dist/skeleton/skeleton.js +6 -0
  355. package/dist/sortControl/sortControl.js +36 -6
  356. package/dist/stepperRaw/stepperRaw.js +64 -0
  357. package/dist/summaries/utils/splitIntoPairs.js +1 -2
  358. package/dist/summary/summary.js +12 -0
  359. package/dist/summaryTile/summaryTile.js +23 -7
  360. package/dist/summaryTile/summaryTileTrigger.js +17 -7
  361. package/dist/table/actions/actionsMenu.d.ts +0 -1
  362. package/dist/table/actions/actionsMenu.js +12 -0
  363. package/dist/table/children/useTableChildren.d.ts +7 -7
  364. package/dist/table/detailPanel/detailPanel.js +6 -0
  365. package/dist/table/detailPanel/detailPanelHeader.js +12 -0
  366. package/dist/table/detailPanel/interfaces.d.ts +0 -1
  367. package/dist/table/flexible/columnSettings.js +13 -1
  368. package/dist/table/flexible/columnsList.js +1 -2
  369. package/dist/table/flexible/columnsPopup.js +7 -1
  370. package/dist/table/loading/useLoading.d.ts +10 -10
  371. package/dist/table/nested/nestedData.d.ts +3 -1
  372. package/dist/table/nested/useNestedRows.d.ts +2 -2
  373. package/dist/table/nested/useNestedRows.js +12 -0
  374. package/dist/table/selectable/selectableHeader.d.ts +2 -1
  375. package/dist/table/selectable/selectableHeader.js +61 -4
  376. package/dist/table/selectable/useSelectableRows.d.ts +1 -1
  377. package/dist/table/selectable/useSelectableRows.js +19 -4
  378. package/dist/table/sortable/mobileSortControl.js +71 -1
  379. package/dist/table/sortable/sortableHeader.js +14 -2
  380. package/dist/table/table.d.ts +16 -1
  381. package/dist/table/table.js +131 -23
  382. package/dist/tabs/tabs.js +20 -6
  383. package/dist/tag/tag.d.ts +19 -0
  384. package/dist/tag/tag.js +14 -0
  385. package/dist/textIconButton/textIconButton.js +17 -7
  386. package/dist/timePickerRaw/timePickerRaw.js +47 -5
  387. package/dist/toastRaw/toastRaw.d.ts +1 -1
  388. package/dist/toastRaw/toastRaw.js +9 -1
  389. package/dist/toggleButtonRaw/toggleButtonRaw.js +29 -7
  390. package/dist/toggleButtonRaw/types.d.ts +0 -1
  391. package/dist/tooltip/tooltip.js +29 -7
  392. package/dist/tooltipInfo/tooltipInfo.d.ts +0 -1
  393. package/dist/tsconfig.cjs.tsbuildinfo +1 -0
  394. package/dist/utils/compareElementsUtils/isArraysEqualDeeply.js +1 -2
  395. package/dist/utils/compareElementsUtils/isElementsEqual.js +2 -2
  396. package/dist/utils/escapeHtml.js +1 -2
  397. package/dist/utils/formatDate.js +228 -6
  398. package/dist/utils/localization/directionContext.d.ts +0 -1
  399. package/dist/utils/localization/getSupportedLanguage.d.ts +1 -1
  400. package/dist/utils/localization/getSupportedLanguage.js +7 -1
  401. package/dist/utils/localization/languageContext.d.ts +1 -2
  402. package/dist/utils/localization/translations/ar.json +110 -83
  403. package/dist/utils/localization/translations/bg-BG.json +358 -0
  404. package/dist/utils/localization/translations/cs.json +18 -1
  405. package/dist/utils/localization/translations/da-DK.json +84 -59
  406. package/dist/utils/localization/translations/de.json +18 -1
  407. package/dist/utils/localization/translations/el-GR.json +358 -0
  408. package/dist/utils/localization/translations/en.json +12 -1
  409. package/dist/utils/localization/translations/es.json +18 -1
  410. package/dist/utils/localization/translations/et-EE.json +358 -0
  411. package/dist/utils/localization/translations/fi-FI.json +84 -59
  412. package/dist/utils/localization/translations/fr-FR.json +18 -1
  413. package/dist/utils/localization/translations/fr.json +18 -1
  414. package/dist/utils/localization/translations/hu-HU.json +84 -59
  415. package/dist/utils/localization/translations/id.json +18 -1
  416. package/dist/utils/localization/translations/it.json +18 -1
  417. package/dist/utils/localization/translations/ja.json +18 -1
  418. package/dist/utils/localization/translations/ka-GE.json +358 -0
  419. package/dist/utils/localization/translations/ko-KR.json +18 -1
  420. package/dist/utils/localization/translations/lt-LT.json +358 -0
  421. package/dist/utils/localization/translations/lv-LV.json +358 -0
  422. package/dist/utils/localization/translations/ms.json +92 -67
  423. package/dist/utils/localization/translations/nb-NO.json +84 -59
  424. package/dist/utils/localization/translations/nl.json +94 -69
  425. package/dist/utils/localization/translations/pl.json +18 -1
  426. package/dist/utils/localization/translations/pt-BR.json +94 -69
  427. package/dist/utils/localization/translations/pt-PT.json +18 -1
  428. package/dist/utils/localization/translations/ro-RO.json +18 -1
  429. package/dist/utils/localization/translations/sk-SK.json +85 -60
  430. package/dist/utils/localization/translations/sv.json +94 -69
  431. package/dist/utils/localization/translations/th.json +18 -1
  432. package/dist/utils/localization/translations/tr.json +18 -1
  433. package/dist/utils/localization/translations/zh-Hans.json +18 -1
  434. package/dist/utils/localization/translations/zh-TW.json +18 -1
  435. package/dist/utils/localization/translationsDictionary.js +7 -1
  436. package/dist/utils/theme/themeContext.d.ts +0 -1
  437. package/dist/utils/topWindow/topWindowContext.d.ts +0 -1
  438. package/dist/utils/useFadeComponent.d.ts +0 -1
  439. package/dist/utils/userFormat/userFormatContext.d.ts +0 -1
  440. package/dist/waiting/waiting.d.ts +2 -1
  441. package/dist/waiting/waiting.js +23 -6
  442. package/esm/advancedGroupsFilter/advancedGroupsFilter.js +19 -1
  443. package/esm/advancedGroupsFilter/advancedGroupsFilterForm.js +13 -1
  444. package/esm/advancedGroupsFilter/advancedGroupsFilterFormSection.js +43 -1
  445. package/esm/advancedGroupsFilter/advancedGroupsFilterSectionTooltip.js +7 -1
  446. package/esm/alert/banner.d.ts +2 -3
  447. package/esm/alert/hooks/useAlertState.d.ts +0 -1
  448. package/esm/alertRaw/alertRaw.js +6 -0
  449. package/esm/banner/bannerMultipLine.d.ts +0 -1
  450. package/esm/banner/bannerMultipLine.js +6 -0
  451. package/esm/banner/bannerSingleLine.d.ts +0 -1
  452. package/esm/banner/bannerSingleLine.js +6 -0
  453. package/esm/banner/utils/isSummaryErrorElement.d.ts +1 -2
  454. package/esm/banner/utils/useSummaryBannerProp.js +32 -0
  455. package/esm/betaPill/betaPill.js +34 -10
  456. package/esm/bookmark/bookmark.js +14 -2
  457. package/esm/bulkEditControl/bulkEditControl.js +32 -2
  458. package/esm/calendar/calendar.js +182 -2
  459. package/esm/calendar/calendarUtils.js +107 -19
  460. package/esm/card/card.js +6 -0
  461. package/esm/card/components/content.d.ts +0 -1
  462. package/esm/chart/accessibleChart/accessibleChart.js +1 -1
  463. package/esm/chart/accessibleChart/accessibleChartNarrative.d.ts +1 -1
  464. package/esm/chart/accessibleChart/accessibleChartNarrative.js +186 -102
  465. package/esm/chart/accessibleChart/accessibleChartTable.js +42 -12
  466. package/esm/chart/accessibleChart/generatePieNarrative.d.ts +7 -0
  467. package/esm/chart/accessibleChart/generatePieNarrative.js +167 -0
  468. package/esm/chart/accessibleChart/interfaces.d.ts +1 -0
  469. package/esm/chart/barChart/getDefaultOptions.js +5 -6
  470. package/esm/chart/barChart.js +147 -50
  471. package/esm/chart/chart.js +15 -9
  472. package/esm/chart/chartAxis/chartAxis.js +14 -2
  473. package/esm/chart/interfaces.d.ts +0 -1
  474. package/esm/chart/lineChart/getDefaultOptions.js +5 -6
  475. package/esm/chart/lineChart/useChartTicks.d.ts +0 -1
  476. package/esm/chart/lineChart/useSummary.d.ts +7 -8
  477. package/esm/chart/lineChart.js +162 -59
  478. package/esm/chart/pieChart.js +169 -76
  479. package/esm/chart/plugins/linePlugin/linePlugin.js +29 -7
  480. package/esm/chart/utils/convertDates.d.ts +1 -1
  481. package/esm/chart/utils/getNiceAxisRange.d.ts +21 -0
  482. package/esm/chart/utils/getNiceAxisRange.js +72 -0
  483. package/esm/chart/utils/getRange.js +2 -2
  484. package/esm/chart/utils/getYAxisMeta.d.ts +2 -5
  485. package/esm/chart/utils/getYAxisMeta.js +17 -2
  486. package/esm/chart/utils/getYAxisTickCount.d.ts +15 -0
  487. package/esm/chart/utils/getYAxisTickCount.js +15 -0
  488. package/esm/checkboxListWithAction/checkboxListWithAction.d.ts +0 -1
  489. package/esm/checkboxListWithAction/checkboxListWithAction.js +36 -12
  490. package/esm/chip/chip.d.ts +0 -1
  491. package/esm/chip/chip.js +6 -0
  492. package/esm/chip/utils/useChip.d.ts +0 -1
  493. package/esm/columnsSelector/columnsSelector.js +13 -1
  494. package/esm/columnsSelector/columnsTab/columnsTab.js +6 -0
  495. package/esm/columnsSelector/columnsTabGroup/columnsTabGroup.js +6 -0
  496. package/esm/commonHelpers/HOC/reducerLogger/reducerLogger.d.ts +1 -1
  497. package/esm/commonHelpers/arrowNavigation/components/arrowButton/arrowButton.d.ts +0 -1
  498. package/esm/commonHelpers/arrowNavigation/hooks/useHoldOnScroll.d.ts +0 -1
  499. package/esm/commonHelpers/hooks/breakpoints.d.ts +4 -0
  500. package/esm/commonHelpers/hooks/breakpoints.js +4 -0
  501. package/esm/commonHelpers/hooks/fetch.reducer.d.ts +1 -1
  502. package/esm/commonHelpers/hooks/useDebouncedMemo.d.ts +0 -1
  503. package/esm/commonHelpers/hooks/useDeviceType.js +2 -2
  504. package/esm/commonHelpers/hooks/useEscape.d.ts +1 -1
  505. package/esm/commonHelpers/hooks/useGridSize.d.ts +0 -1
  506. package/esm/commonHelpers/hooks/useMobileOrTablet.d.ts +1 -0
  507. package/esm/commonHelpers/hooks/useMobileOrTablet.js +17 -0
  508. package/esm/commonHelpers/hooks/usePillSize.d.ts +0 -1
  509. package/esm/commonHelpers/hooks/useTablet.js +17 -0
  510. package/esm/dataFeed/dataFeed.d.ts +1 -1
  511. package/esm/dataFeed/dataFeed.js +2 -2
  512. package/esm/dataFeed/dataFeedCell/dataFeedCell.d.ts +3 -1
  513. package/esm/dataFeed/dataFeedColumnsItems.d.ts +2 -2
  514. package/esm/dataFeed/feedExpandControl/feedExpandControl.js +64 -0
  515. package/esm/dataGrid/cell/cell.d.ts +3 -1
  516. package/esm/dataGrid/columns/actionsColumn/actionsColumn.d.ts +3 -3
  517. package/esm/dataGrid/columns/checkboxColumn/checkboxHeaderCell.js +7 -1
  518. package/esm/dataGrid/dataGrid.d.ts +13 -1
  519. package/esm/dataGrid/dataGrid.js +54 -3
  520. package/esm/dataGrid/emptySearchList/emptySearchList.d.ts +0 -1
  521. package/esm/dataGrid/emptySearchList/emptySearchList.js +7 -1
  522. package/esm/dataGrid/entitiesListActions/actions/columnsListButton.js +7 -1
  523. package/esm/dataGrid/entitiesListActions/actions/fullscreenButton.js +22 -10
  524. package/esm/dataGrid/row/row.d.ts +3 -1
  525. package/esm/dataGrid/withActions/withActions.d.ts +1 -1
  526. package/esm/dataGrid/withFlexibleColumns/components/columnSettings.js +13 -1
  527. package/esm/dataGrid/withFlexibleColumns/components/columnSettingsSidePanel.js +32 -0
  528. package/esm/dataGrid/withFlexibleColumns/withFlexibleColumns.d.ts +1 -1
  529. package/esm/dataGrid/withFlexibleColumns/withFlexibleColumns.js +6 -0
  530. package/esm/dataGrid/withLoading/withLoading.d.ts +1 -1
  531. package/esm/dataGrid/withSelectableRows/components/bulkActions/bulkActions.js +31 -1
  532. package/esm/dataGrid/withSelectableRows/withLimitedSelectableRows.d.ts +1 -1
  533. package/esm/dataGrid/withSelectableRows/withSelectableRows.d.ts +1 -1
  534. package/esm/dataGrid/withSelectableRows/withSelectableRows.js +50 -0
  535. package/esm/dataGrid/withSortableColumns/columns/sortableColumnWrapper.js +14 -2
  536. package/esm/dataGrid/withSortableColumns/withSortableColumns.d.ts +1 -1
  537. package/esm/dateInputInner/dateInputInner.js +62 -20
  538. package/esm/dateInputInner/dateInputInnerControlBlock.js +12 -0
  539. package/esm/dateInputRaw/dateInputRaw.js +18 -0
  540. package/esm/dateInputRaw/utils/getLabel.js +21 -9
  541. package/esm/dateRangeInner/dateRangeInner.js +6 -0
  542. package/esm/dateRangeRaw/dateRangeRaw.js +121 -9
  543. package/esm/dateRangeRaw/utils/dateRangeUtils.js +108 -6
  544. package/esm/dateSelectionWrapper/dateSelectionWrapper.js +24 -0
  545. package/esm/dialog/dialog.d.ts +0 -1
  546. package/esm/dialog/dialogContent.js +6 -0
  547. package/esm/dropdown/dropdown.js +1 -1
  548. package/esm/dropdown/useDropdownState.d.ts +0 -1
  549. package/esm/dropdownRaw/dropdownList.d.ts +3 -2
  550. package/esm/dropdownRaw/dropdownList.js +67 -41
  551. package/esm/dropdownRaw/dropdownPopup.js +19 -1
  552. package/esm/dropdownRaw/dropdownRaw.js +42 -15
  553. package/esm/dropdownRaw/dropdownSearchableTrigger.js +27 -3
  554. package/esm/dropdownRaw/stateReducer/stateReducer.d.ts +4 -1
  555. package/esm/dropdownRaw/stateReducer/stateReducer.js +32 -22
  556. package/esm/dropdownRaw/stateReducer/stateReducerHelper.d.ts +1 -2
  557. package/esm/dropdownRaw/stateReducer/stateReducerHelper.js +5 -10
  558. package/esm/dropdownRaw/types.d.ts +20 -0
  559. package/esm/favoriteButton/favoriteButton.js +7 -1
  560. package/esm/feedbackContainer/hooks/useFeedbackAlert.d.ts +0 -1
  561. package/esm/feedbackContainer/hooks/useFeedbackToast.d.ts +0 -1
  562. package/esm/fileUpload/components/dropZoneContent.js +25 -1
  563. package/esm/fileUpload/components/templateDownloadSection.js +6 -0
  564. package/esm/fileUpload/components/uploadedFilesSection.js +21 -9
  565. package/esm/fileUpload/fileUpload.js +55 -19
  566. package/esm/filters/components/filtersContainer.js +19 -1
  567. package/esm/filters/components/filtersEmptyState.js +30 -18
  568. package/esm/filters/components/filtersItem.d.ts +2 -2
  569. package/esm/filters/components/filtersSaveModal.js +57 -27
  570. package/esm/filters/components/filtersSavedChipComponent.js +113 -47
  571. package/esm/filters/components/filtersSearchItemData.js +6 -0
  572. package/esm/filters/components/filtersSearchList.d.ts +0 -1
  573. package/esm/filters/components/filtersSearchList.js +83 -29
  574. package/esm/filters/components/filtersSelect.d.ts +0 -1
  575. package/esm/filters/components/filtersSelect.js +6 -0
  576. package/esm/filters/components/filtersSelectCompact.d.ts +0 -1
  577. package/esm/filters/components/filtersSelectListItem.d.ts +0 -1
  578. package/esm/filters/components/filtersSelectListItem.js +12 -0
  579. package/esm/filters/components/filtersSelectUnfoldingPill.d.ts +0 -1
  580. package/esm/filters/components/filtersSidePanel.js +58 -10
  581. package/esm/filters/filters.js +45 -27
  582. package/esm/filters/filtersHelper.d.ts +1 -1
  583. package/esm/filters/filtersHooks.d.ts +0 -1
  584. package/esm/filtersBar/components/filtersBarDropdownWithCheckbox/filtersBarDropdownWithCheckbox.js +1 -1
  585. package/esm/filtersBar/components/filtersBarPeriodPicker/getRangeOption.js +114 -6
  586. package/esm/filtersBar/components/resetComponentButton.js +6 -0
  587. package/esm/filtersBar/filtersBar.js +2 -2
  588. package/esm/filtersBar/filtersBarActions/filtersBarActions.d.ts +0 -1
  589. package/esm/filtersBar/filtersBarActions/filtersBarActions.js +50 -0
  590. package/esm/filtersBar/filtersBarInterfaces.d.ts +0 -1
  591. package/esm/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelDropdownWithCheckbox/filtersBarSidePanelDropdownWithCheckbox.d.ts +4 -10
  592. package/esm/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRange/filtersBarSidePanelRange.js +12 -0
  593. package/esm/filtersBar/filtersBarSidePanel/filtersBarSidePanel.js +31 -1
  594. package/esm/filtersBar/filtersContainer/filtersContainer.js +20 -6
  595. package/esm/formField/components/formFieldAdditionalInfo.d.ts +0 -1
  596. package/esm/formField/components/formFieldCounter.d.ts +0 -1
  597. package/esm/formField/components/formFieldLoading.d.ts +0 -1
  598. package/esm/formField/components/formFieldSkeleton.d.ts +0 -1
  599. package/esm/formField/components/formFieldWithLabel.d.ts +0 -1
  600. package/esm/formField/components/formFieldWithoutLabel.d.ts +0 -1
  601. package/esm/formField/formField.d.ts +1 -1
  602. package/esm/formField/hooks/useBanner.d.ts +0 -1
  603. package/esm/formField/hooks/useDisabled.d.ts +1 -1
  604. package/esm/formField/hooks/useError.js +27 -9
  605. package/esm/formGroup/components/customRow/customRow.d.ts +0 -1
  606. package/esm/formGroup/components/reviewListToggle/reviewListToggle.js +12 -0
  607. package/esm/formGroup/hooks/listHooks/useStateToElements.d.ts +0 -1
  608. package/esm/formGroup/hooks/listHooks/useStateToElements.js +1 -1
  609. package/esm/formGroup/hooks/useToggle.js +15 -9
  610. package/esm/formGroup/utils/formGroupProvider.d.ts +0 -1
  611. package/esm/formGroup/utils/isFormLabel.d.ts +1 -1
  612. package/esm/formGroupItem/formGroupItem.d.ts +0 -1
  613. package/esm/formLayout/components/layoutColumn/layoutColum.d.ts +0 -1
  614. package/esm/formLayout/hooks/useError.js +36 -18
  615. package/esm/formLayout/hooks/useFormButtons.d.ts +1 -1
  616. package/esm/formLayout/hooks/useFormButtons.js +18 -0
  617. package/esm/formLayout/types.d.ts +0 -1
  618. package/esm/formLayout/utils/attachHeadings.d.ts +1 -1
  619. package/esm/formLayout/utils/attachSeparators.d.ts +0 -1
  620. package/esm/formLayout/utils/getChildrenWithCustomColumns.d.ts +1 -2
  621. package/esm/formLayout/utils/getChildrenWithCustomColumns.js +2 -2
  622. package/esm/formLayout/utils/getFieldLabel.js +5 -5
  623. package/esm/formSection/components/actions.d.ts +0 -1
  624. package/esm/formSection/components/additional.d.ts +0 -1
  625. package/esm/formSection/hooks/useError.js +36 -18
  626. package/esm/formSection/utils/isFormSection.d.ts +2 -4
  627. package/esm/formStepper/components/formStep.js +6 -0
  628. package/esm/formStepper/components/formStepRaw.d.ts +0 -1
  629. package/esm/formStepper/formStepper.d.ts +0 -1
  630. package/esm/formStepper/formStepper.js +17 -5
  631. package/esm/formStepperButtons/formStepperButtons.js +27 -3
  632. package/esm/gridLayout/hooks/useStretch.js +1 -1
  633. package/esm/gridLayout/utils/gridLayoutProvider.d.ts +0 -1
  634. package/esm/gridLayout/utils/gridLayoutProvider.js +1 -1
  635. package/esm/gridLayout/utils/isGridItem.d.ts +1 -1
  636. package/esm/groupsFilter/groupsHelper.d.ts +5 -5
  637. package/esm/groupsFilterRaw/groupsFilterAdjustmentState.js +24 -0
  638. package/esm/groupsFilterRaw/groupsFilterBox.js +20 -2
  639. package/esm/groupsFilterRaw/groupsFilterCommon.js +14 -2
  640. package/esm/groupsFilterRaw/groupsFilterCurrentlySelectedState.js +30 -0
  641. package/esm/groupsFilterRaw/groupsFilterHelper.js +12 -0
  642. package/esm/groupsFilterRaw/groupsFilterInitialState.js +52 -4
  643. package/esm/groupsFilterRaw/groupsFilterMenu.js +18 -0
  644. package/esm/groupsFilterRaw/groupsFilterRaw.js +50 -2
  645. package/esm/groupsFilterRaw/groupsFilterTrigger.js +14 -2
  646. package/esm/groupsFilterRaw/groupsHelper.d.ts +1 -1
  647. package/esm/groupsFilterRaw/groupsHelper.js +132 -0
  648. package/esm/groupsFilterRaw/stateReducer/stateReducer.d.ts +1 -1
  649. package/esm/groupsFilterRaw/testData.js +1 -2
  650. package/esm/header/components/collapsedItemsControl/collapsedItemsControl.js +6 -0
  651. package/esm/header/components/collapsedItemsControl/utils/handleCustomMenuWrapper.js +5 -0
  652. package/esm/header/components/mobileFilterControl/mobileFilterControl.d.ts +0 -1
  653. package/esm/header/components/mobileFilterControl/mobileFilterControl.js +7 -1
  654. package/esm/header/components/mobileSearchControl/mobileSearchControl.d.ts +0 -1
  655. package/esm/header/components/mobileSearchControl/mobileSearchControl.js +19 -1
  656. package/esm/header/headerBack.js +6 -0
  657. package/esm/header/headerButton.d.ts +0 -1
  658. package/esm/header/headerContext.d.ts +1 -2
  659. package/esm/header/headerHelpers.d.ts +5 -5
  660. package/esm/header/hooks/useNonFittingElements.d.ts +3 -4
  661. package/esm/headerTitle/headerTitle.d.ts +0 -1
  662. package/esm/icons/iconAce.d.ts +3 -0
  663. package/esm/icons/iconAce.js +8 -0
  664. package/esm/icons/iconBreak.d.ts +3 -0
  665. package/esm/icons/iconBreak.js +8 -0
  666. package/esm/icons/iconChevronStepper.d.ts +3 -0
  667. package/esm/icons/iconChevronStepper.js +8 -0
  668. package/esm/icons/iconPotato.d.ts +3 -0
  669. package/esm/icons/iconPotato.js +8 -0
  670. package/esm/icons/iconToggleLarge.d.ts +3 -0
  671. package/esm/icons/iconToggleLarge.js +8 -0
  672. package/esm/icons/iconToggleSmall.d.ts +3 -0
  673. package/esm/icons/iconToggleSmall.js +8 -0
  674. package/esm/icons/iconTrendNeutral.d.ts +3 -0
  675. package/esm/icons/iconTrendNeutral.js +8 -0
  676. package/esm/icons/iconTruck.d.ts +3 -0
  677. package/esm/icons/iconTruck.js +8 -0
  678. package/esm/index.d.ts +8 -0
  679. package/esm/index.js +8 -0
  680. package/esm/layout/layout.d.ts +2 -1
  681. package/esm/layout/layoutBanner.d.ts +0 -1
  682. package/esm/lineChart/lineChart.d.ts +1 -0
  683. package/esm/lineChart/lineChart.js +129 -69
  684. package/esm/lineChartMini/lineChartMini.d.ts +1 -0
  685. package/esm/lineChartMini/lineChartMini.js +136 -73
  686. package/esm/list/itemData/itemData.d.ts +2 -1
  687. package/esm/list/itemData/itemDataInternal.d.ts +2 -1
  688. package/esm/list/itemData/itemDataInternal.js +12 -0
  689. package/esm/list/list.d.ts +0 -1
  690. package/esm/list/listItem/listItem.js +12 -0
  691. package/esm/list/utils/isDataListitem.d.ts +1 -1
  692. package/esm/list/viewportProvider/viewportContext.d.ts +0 -1
  693. package/esm/menu/components/controlledMenuList/controlledMenuList.d.ts +2 -4
  694. package/esm/menu/components/controlledMenuList/controlledMenuList.js +3 -1
  695. package/esm/menu/components/menuErrorItem.js +30 -18
  696. package/esm/menu/utils/useDisplayContent.d.ts +21 -0
  697. package/esm/menu/utils/useDisplayContent.js +31 -0
  698. package/esm/mobileSheet/components/mobileSheetTitle.d.ts +0 -1
  699. package/esm/mobileSheet/mobileSheet.js +12 -0
  700. package/esm/modal/modal.js +6 -0
  701. package/esm/nav/context/nav.context.d.ts +0 -1
  702. package/esm/nav/navFooter/navEditFooter/navEditFooter.d.ts +0 -1
  703. package/esm/nav/navFooter/navEditFooter/navEditFooter.js +12 -0
  704. package/esm/nav/navFooter/navFooter.d.ts +1 -1
  705. package/esm/nav/navFooter/navFooter.js +15 -9
  706. package/esm/nav/navFooter/navFooterAction/navFooterAction.d.ts +2 -1
  707. package/esm/nav/navFooter/navFooterAction/navFooterAction.js +9 -1
  708. package/esm/nav/navHeader/navHeader.js +30 -18
  709. package/esm/nav/navHeader/navHeaderSearch/navHeaderSearch.js +21 -9
  710. package/esm/nav/navItem/navItem.d.ts +2 -0
  711. package/esm/nav/navItem/navItem.js +57 -48
  712. package/esm/nav/navItem/navItemContent.d.ts +19 -0
  713. package/esm/nav/navItem/navItemContent.js +17 -0
  714. package/esm/nav/navItem/navItemType.d.ts +7 -0
  715. package/esm/nav/navItem/navItemType.js +6 -0
  716. package/esm/nav/navMobileBar/navMobileBar.js +6 -0
  717. package/esm/nav/utils/navUtils.d.ts +2 -4
  718. package/esm/notification/notification.js +6 -0
  719. package/esm/overview/overview.d.ts +0 -1
  720. package/esm/pageHeader/pageHeader.d.ts +1 -1
  721. package/esm/pageHeader/pageHeaderButton.d.ts +0 -1
  722. package/esm/pageHeader/pageHeaderHelpers.d.ts +1 -1
  723. package/esm/pageHeader/pageHeaderMenu.d.ts +0 -1
  724. package/esm/pagination/paginationArrow.d.ts +0 -1
  725. package/esm/pagination/paginationArrow.js +12 -0
  726. package/esm/pagination/paginationText/paginationText.js +6 -0
  727. package/esm/pill/components/pillNonActionable/pillNonActionable.js +6 -0
  728. package/esm/pill/interfaces/pill.interface.d.ts +0 -1
  729. package/esm/pillBox/components/pillBoxItem.d.ts +1 -2
  730. package/esm/pillBox/components/pillBoxItem.js +6 -0
  731. package/esm/pillBox/pillBox.js +19 -1
  732. package/esm/pillExpandable/pillExpandable.js +6 -0
  733. package/esm/progressIndicator/progressIndicator.d.ts +39 -0
  734. package/esm/progressIndicator/progressIndicator.js +26 -0
  735. package/esm/progressIndicator/progressIndicatorUtils.d.ts +12 -0
  736. package/esm/progressIndicator/progressIndicatorUtils.js +25 -0
  737. package/esm/radioGroupRaw/types.d.ts +0 -1
  738. package/esm/rangeRaw/rangeRaw.js +44 -2
  739. package/esm/rangeRaw/utils/rangeHelper.js +45 -3
  740. package/esm/react-chartjs/utils.d.ts +3 -3
  741. package/esm/searchInputRaw/searchInputRaw.js +12 -0
  742. package/esm/searchInputRaw/types.d.ts +0 -1
  743. package/esm/selectField/selectField.d.ts +2 -3
  744. package/esm/selectList/selectList.d.ts +0 -1
  745. package/esm/selectList/selectList.js +12 -0
  746. package/esm/selectRaw/selectRaw.js +3 -0
  747. package/esm/sidePanel/sidePanelCell/sidePanelCell.d.ts +0 -1
  748. package/esm/skeleton/skeleton.js +6 -0
  749. package/esm/sortControl/sortControl.js +36 -6
  750. package/esm/stepperRaw/stepperRaw.js +64 -0
  751. package/esm/summary/summary.js +12 -0
  752. package/esm/summaryTile/summaryTile.js +6 -0
  753. package/esm/table/actions/actionsMenu.d.ts +0 -1
  754. package/esm/table/actions/actionsMenu.js +12 -0
  755. package/esm/table/children/useTableChildren.d.ts +7 -7
  756. package/esm/table/detailPanel/detailPanel.js +6 -0
  757. package/esm/table/detailPanel/detailPanelHeader.js +12 -0
  758. package/esm/table/detailPanel/interfaces.d.ts +0 -1
  759. package/esm/table/flexible/columnSettings.js +13 -1
  760. package/esm/table/flexible/columnsPopup.js +7 -1
  761. package/esm/table/loading/useLoading.d.ts +10 -10
  762. package/esm/table/nested/nestedData.d.ts +3 -1
  763. package/esm/table/nested/useNestedRows.d.ts +2 -2
  764. package/esm/table/nested/useNestedRows.js +12 -0
  765. package/esm/table/selectable/selectableHeader.d.ts +2 -1
  766. package/esm/table/selectable/selectableHeader.js +61 -4
  767. package/esm/table/selectable/useSelectableRows.d.ts +1 -1
  768. package/esm/table/selectable/useSelectableRows.js +19 -4
  769. package/esm/table/sortable/mobileSortControl.js +71 -1
  770. package/esm/table/sortable/sortableHeader.js +14 -2
  771. package/esm/table/table.d.ts +16 -1
  772. package/esm/table/table.js +132 -24
  773. package/esm/tabs/tabs.js +20 -6
  774. package/esm/tag/tag.d.ts +19 -0
  775. package/esm/tag/tag.js +10 -0
  776. package/esm/testHelpers/geotab-axe/index.d.ts +0 -1
  777. package/esm/timePickerRaw/timePickerRaw.js +47 -5
  778. package/esm/toastRaw/toastRaw.d.ts +1 -1
  779. package/esm/toastRaw/toastRaw.js +9 -1
  780. package/esm/toggleButtonRaw/toggleButtonRaw.js +12 -0
  781. package/esm/toggleButtonRaw/types.d.ts +0 -1
  782. package/esm/tooltip/tooltip.js +12 -0
  783. package/esm/tooltipInfo/tooltipInfo.d.ts +0 -1
  784. package/esm/tsconfig.esm.tsbuildinfo +1 -0
  785. package/esm/utils/formatDate.js +228 -6
  786. package/esm/utils/localization/directionContext.d.ts +0 -1
  787. package/esm/utils/localization/getSupportedLanguage.d.ts +1 -1
  788. package/esm/utils/localization/getSupportedLanguage.js +7 -1
  789. package/esm/utils/localization/languageContext.d.ts +1 -2
  790. package/esm/utils/localization/translations/ar.json +110 -83
  791. package/esm/utils/localization/translations/bg-BG.json +358 -0
  792. package/esm/utils/localization/translations/cs.json +18 -1
  793. package/esm/utils/localization/translations/da-DK.json +84 -59
  794. package/esm/utils/localization/translations/de.json +18 -1
  795. package/esm/utils/localization/translations/el-GR.json +358 -0
  796. package/esm/utils/localization/translations/en.json +12 -1
  797. package/esm/utils/localization/translations/es.json +18 -1
  798. package/esm/utils/localization/translations/et-EE.json +358 -0
  799. package/esm/utils/localization/translations/fi-FI.json +84 -59
  800. package/esm/utils/localization/translations/fr-FR.json +18 -1
  801. package/esm/utils/localization/translations/fr.json +18 -1
  802. package/esm/utils/localization/translations/hu-HU.json +84 -59
  803. package/esm/utils/localization/translations/id.json +18 -1
  804. package/esm/utils/localization/translations/it.json +18 -1
  805. package/esm/utils/localization/translations/ja.json +18 -1
  806. package/esm/utils/localization/translations/ka-GE.json +358 -0
  807. package/esm/utils/localization/translations/ko-KR.json +18 -1
  808. package/esm/utils/localization/translations/lt-LT.json +358 -0
  809. package/esm/utils/localization/translations/lv-LV.json +358 -0
  810. package/esm/utils/localization/translations/ms.json +92 -67
  811. package/esm/utils/localization/translations/nb-NO.json +84 -59
  812. package/esm/utils/localization/translations/nl.json +94 -69
  813. package/esm/utils/localization/translations/pl.json +18 -1
  814. package/esm/utils/localization/translations/pt-BR.json +94 -69
  815. package/esm/utils/localization/translations/pt-PT.json +18 -1
  816. package/esm/utils/localization/translations/ro-RO.json +18 -1
  817. package/esm/utils/localization/translations/sk-SK.json +85 -60
  818. package/esm/utils/localization/translations/sv.json +94 -69
  819. package/esm/utils/localization/translations/th.json +18 -1
  820. package/esm/utils/localization/translations/tr.json +18 -1
  821. package/esm/utils/localization/translations/zh-Hans.json +18 -1
  822. package/esm/utils/localization/translations/zh-TW.json +18 -1
  823. package/esm/utils/localization/translationsDictionary.js +7 -1
  824. package/esm/utils/theme/themeContext.d.ts +0 -1
  825. package/esm/utils/topWindow/topWindowContext.d.ts +0 -1
  826. package/esm/utils/useFadeComponent.d.ts +0 -1
  827. package/esm/utils/userFormat/userFormatContext.d.ts +0 -1
  828. package/esm/waiting/waiting.d.ts +2 -1
  829. package/esm/waiting/waiting.js +24 -7
  830. package/package.json +13 -6
  831. package/esm/gridLayout/hooks/useTablet.js +0 -20
  832. /package/dist/{gridLayout → commonHelpers}/hooks/useTablet.d.ts +0 -0
  833. /package/esm/{gridLayout → commonHelpers}/hooks/useTablet.d.ts +0 -0
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getNumberOfChangedFilters = void 0;
3
+ exports.getNumberOfChangedFilters = getNumberOfChangedFilters;
4
4
  const isArraysEqualDeeply_1 = require("../../utils/compareElementsUtils/isArraysEqualDeeply");
5
5
  const isElementsEqual_1 = require("../../utils/compareElementsUtils/isElementsEqual");
6
6
  function getNumberOfChangedFilters(defaultState, newState) {
@@ -35,4 +35,3 @@ function getNumberOfChangedFilters(defaultState, newState) {
35
35
  });
36
36
  return changes;
37
37
  }
38
- exports.getNumberOfChangedFilters = getNumberOfChangedFilters;
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  Object.defineProperty(exports, "__esModule", { value: true });
26
36
  exports.FooterButtons = void 0;
27
37
  const jsx_runtime_1 = require("react/jsx-runtime");
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface IFormFieldAdditionalInfoProps {
3
2
  assistiveId?: string;
4
3
  errorId: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface IFormFieldCounterProps {
3
2
  value?: string | number | React.ReactElement;
4
3
  id?: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { Skeleton } from "../../skeleton/skeleton";
3
2
  import { TFormFieldComponentProps } from "../formField";
4
3
  export declare const DEFAULT_HEIGHT = 32;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { ISkeleton } from "../../skeleton/skeleton";
3
2
  interface IFormFieldSkeletonProps extends ISkeleton {
4
3
  }
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { TFormFieldComponentProps } from "../formField";
3
2
  interface IFormFieldWithLabelProps<T> {
4
3
  props: TFormFieldComponentProps<T>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { TFormFieldComponentProps } from "../formField";
3
2
  interface IFormFieldWithoutLabelProps<T> {
4
3
  props: TFormFieldComponentProps<T>;
@@ -23,5 +23,5 @@ export declare const FormField: {
23
23
  (props: TFormFieldComponentProps<T>): import("react/jsx-runtime").JSX.Element;
24
24
  displayName: string;
25
25
  };
26
- Banner: (props: import("./components/formFieldBanner").IFormFieldBannerProps) => import("react/jsx-runtime").JSX.Element;
26
+ Banner: (props: import("..").IFormFieldBannerProps) => import("react/jsx-runtime").JSX.Element;
27
27
  };
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const useBanner: (props: any) => {
3
2
  id: string;
4
3
  banner: null;
@@ -6,7 +6,7 @@ export declare const useDisabled: (props: {
6
6
  disabled?: boolean;
7
7
  } & Partial<ILoadingBase>) => {
8
8
  controller: {
9
- disabled?: boolean | undefined;
9
+ disabled?: boolean;
10
10
  } | undefined;
11
11
  disabled: boolean | undefined;
12
12
  } | {
@@ -40,33 +40,45 @@ injectString("zh-Hans", "Reload", "\u91CD\u65B0\u52A0\u8F7D");
40
40
  injectString("zh-TW", "Reload", "\u91CD\u65B0\u8F09\u5165");
41
41
  injectString("ro-RO", "Reload", "Re\xEEnc\u0103rca\u021Bi");
42
42
  injectString("ar", "Reload", "\u0625\u0639\u0627\u062F\u0629 \u062A\u062D\u0645\u064A\u0644");
43
+ injectString("lt-LT", "Reload", "Perkrauti");
44
+ injectString("lv-LV", "Reload", "P\u0101rl\u0101d\u0113t");
45
+ injectString("ka-GE", "Reload", "\u10EE\u10D4\u10DA\u10D0\u10EE\u10DA\u10D0 \u10E9\u10D0\u10E2\u10D5\u10D8\u10E0\u10D7\u10D5\u10D0");
46
+ injectString("el-GR", "Reload", "\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7");
47
+ injectString("et-EE", "Reload", "Laadi uuesti");
48
+ injectString("bg-BG", "Reload", "\u041F\u0440\u0435\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043D\u0435");
43
49
  injectString("cs", "Failed to load {0}", "Failed to load {0}");
44
- injectString("da-DK", "Failed to load {0}", "Failed to load {0}");
50
+ injectString("da-DK", "Failed to load {0}", "Kunne ikke indl\xE6se {0}");
45
51
  injectString("de", "Failed to load {0}", "Failed to load {0}");
46
52
  injectString("en", "Failed to load {0}", "Failed to load {0}");
47
53
  injectString("es", "Failed to load {0}", "Failed to load {0}");
48
- injectString("fi-FI", "Failed to load {0}", "Failed to load {0}");
54
+ injectString("fi-FI", "Failed to load {0}", "Kohteen {0} lataaminen ep\xE4onnistui");
49
55
  injectString("fr", "Failed to load {0}", "Failed to load {0}");
50
56
  injectString("fr-FR", "Failed to load {0}", "Failed to load {0}");
51
- injectString("hu-HU", "Failed to load {0}", "Failed to load {0}");
57
+ injectString("hu-HU", "Failed to load {0}", "A(z) {0} bet\xF6lt\xE9se nem siker\xFClt");
52
58
  injectString("id", "Failed to load {0}", "Failed to load {0}");
53
59
  injectString("it", "Failed to load {0}", "Failed to load {0}");
54
60
  injectString("ja", "Failed to load {0}", "Failed to load {0}");
55
61
  injectString("ko-KR", "Failed to load {0}", "Failed to load {0}");
56
- injectString("ms", "Failed to load {0}", "Failed to load {0}");
57
- injectString("nb-NO", "Failed to load {0}", "Failed to load {0}");
58
- injectString("nl", "Failed to load {0}", "Failed to load {0}");
62
+ injectString("ms", "Failed to load {0}", "Gagal memuatkan {0}");
63
+ injectString("nb-NO", "Failed to load {0}", "Kunne ikke laste {0}");
64
+ injectString("nl", "Failed to load {0}", "Laden van {0} mislukt");
59
65
  injectString("pl", "Failed to load {0}", "Failed to load {0}");
60
- injectString("pt-BR", "Failed to load {0}", "Failed to load {0}");
66
+ injectString("pt-BR", "Failed to load {0}", "Falha ao carregar {0}");
61
67
  injectString("pt-PT", "Failed to load {0}", "Falha ao carregar {0}");
62
- injectString("sk-SK", "Failed to load {0}", "Failed to load {0}");
63
- injectString("sv", "Failed to load {0}", "Failed to load {0}");
68
+ injectString("sk-SK", "Failed to load {0}", "Nepodarilo sa na\u010D\xEDta\u0165 {0}");
69
+ injectString("sv", "Failed to load {0}", "Det gick inte att l\xE4sa in {0}");
64
70
  injectString("th", "Failed to load {0}", "Failed to load {0}");
65
71
  injectString("tr", "Failed to load {0}", "Failed to load {0}");
66
72
  injectString("zh-Hans", "Failed to load {0}", "Failed to load {0}");
67
73
  injectString("zh-TW", "Failed to load {0}", "Failed to load {0}");
68
74
  injectString("ro-RO", "Failed to load {0}", "Nu s-a putut \xEEnc\u0103rca {0}");
69
75
  injectString("ar", "Failed to load {0}", "\u0641\u0634\u0644 \u062A\u062D\u0645\u064A\u0644 {0}");
76
+ injectString("lt-LT", "Failed to load {0}", "Nepavyko \u012Fkelti {0}");
77
+ injectString("lv-LV", "Failed to load {0}", "Neizdev\u0101s iel\u0101d\u0113t {0}");
78
+ injectString("ka-GE", "Failed to load {0}", "{0}-\u10D8\u10E1 \u10E9\u10D0\u10E2\u10D5\u10D8\u10E0\u10D7\u10D5\u10D0 \u10D5\u10D4\u10E0 \u10DB\u10DD\u10EE\u10D4\u10E0\u10EE\u10D3\u10D0");
79
+ injectString("el-GR", "Failed to load {0}", "\u0391\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B1 \u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7\u03C2 {0}");
80
+ injectString("et-EE", "Failed to load {0}", "{0} laadimine eba\xF5nnestus");
81
+ injectString("bg-BG", "Failed to load {0}", "{0} \u043D\u0435 \u043C\u043E\u0436\u0430 \u0434\u0430 \u0441\u0435 \u0437\u0430\u0440\u0435\u0434\u0438");
70
82
  injectString("cs", "This field is required.", "Toto pole je povinn\xE9.");
71
83
  injectString("da-DK", "This field is required.", "Dette felt er p\xE5kr\xE6vet.");
72
84
  injectString("de", "This field is required.", "Dieses Feld ist erforderlich.");
@@ -94,6 +106,12 @@ injectString("zh-Hans", "This field is required.", "\u8BE5\u5B57\u6BB5\u4E3A\u5F
94
106
  injectString("zh-TW", "This field is required.", "\u6B64\u6B04\u4F4D\u70BA\u5FC5\u586B\u3002");
95
107
  injectString("ro-RO", "This field is required.", "Acest c\xE2mp este obligatoriu.");
96
108
  injectString("ar", "This field is required.", "\u0647\u0630\u0627 \u0627\u0644\u062D\u0642\u0644 \u0645\u0637\u0644\u0648\u0628.");
109
+ injectString("lt-LT", "This field is required.", "\u0160is laukas yra privalomas.");
110
+ injectString("lv-LV", "This field is required.", "\u0160is lauks ir oblig\u0101ts.");
111
+ injectString("ka-GE", "This field is required.", "\u10D4\u10E1 \u10D5\u10D4\u10DA\u10D8 \u10E1\u10D0\u10D5\u10D0\u10DA\u10D3\u10D4\u10D1\u10E3\u10DA\u10DD\u10D0.");
112
+ injectString("el-GR", "This field is required.", "\u0391\u03C5\u03C4\u03CC \u03C4\u03BF \u03C0\u03B5\u03B4\u03AF\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C5\u03C0\u03BF\u03C7\u03C1\u03B5\u03C9\u03C4\u03B9\u03BA\u03CC.");
113
+ injectString("et-EE", "This field is required.", "See v\xE4li on kohustuslik.");
114
+ injectString("bg-BG", "This field is required.", "\u0422\u043E\u0432\u0430 \u043F\u043E\u043B\u0435 \u0435 \u0437\u0430\u0434\u044A\u043B\u0436\u0438\u0442\u0435\u043B\u043D\u043E.");
97
115
  const useError = props => {
98
116
  var _a, _b, _c, _d;
99
117
  const errorId = (0, react_1.useId)();
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import "./customRow.less";
3
2
  export interface ICustomRowProps {
4
3
  children: React.ReactNode;
@@ -40,6 +40,12 @@ injectString("zh-Hans", "On", "\u5F00\u542F");
40
40
  injectString("zh-TW", "On", "\u958B\u555F");
41
41
  injectString("ro-RO", "On", "Pe");
42
42
  injectString("ar", "On", "\u062A\u0634\u063A\u064A\u0644");
43
+ injectString("lt-LT", "On", "\u012Ejungta");
44
+ injectString("lv-LV", "On", "Iesl\u0113gts");
45
+ injectString("ka-GE", "On", "\u10E9\u10D0\u10E0\u10D7\u10E3\u10DA\u10D8\u10D0");
46
+ injectString("el-GR", "On", "\u0395\u03BD\u03B5\u03C1\u03B3\u03CC");
47
+ injectString("et-EE", "On", "Sees");
48
+ injectString("bg-BG", "On", "\u0412\u043A\u043B");
43
49
  injectString("cs", "Off", "Vypnuto");
44
50
  injectString("da-DK", "Off", "Slukket");
45
51
  injectString("de", "Off", "Aus");
@@ -67,6 +73,12 @@ injectString("zh-Hans", "Off", "\u5173\u95ED");
67
73
  injectString("zh-TW", "Off", "\u95DC\u9589");
68
74
  injectString("ro-RO", "Off", "Off");
69
75
  injectString("ar", "Off", "\u0625\u064A\u0642\u0627\u0641");
76
+ injectString("lt-LT", "Off", "I\u0161jungta");
77
+ injectString("lv-LV", "Off", "Izsl\u0113gts");
78
+ injectString("ka-GE", "Off", "\u10D2\u10D0\u10DB\u10DD\u10E0\u10D7\u10E3\u10DA\u10D8\u10D0");
79
+ injectString("el-GR", "Off", "\u0391\u03BD\u03B5\u03BD\u03B5\u03C1\u03B3\u03CC");
80
+ injectString("et-EE", "Off", "V\xE4ljas");
81
+ injectString("bg-BG", "Off", "\u0418\u0437\u043A\u043B");
70
82
  const ReviewListToggle = ({
71
83
  value,
72
84
  className = ""
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  Object.defineProperty(exports, "__esModule", { value: true });
26
36
  exports.FormGroup = void 0;
27
37
  const jsx_runtime_1 = require("react/jsx-runtime");
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  import { ITotalState } from "../../types";
3
2
  export declare const useStateToElements: (state: ITotalState[]) => import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>[];
@@ -4,7 +4,7 @@ exports.useStateToElements = void 0;
4
4
  const jsx_runtime_1 = require("react/jsx-runtime");
5
5
  const useMobile_1 = require("../../../commonHelpers/hooks/useMobile");
6
6
  const useColumns_1 = require("../../../formLayout/hooks/useColumns");
7
- const useTablet_1 = require("../../../gridLayout/hooks/useTablet");
7
+ const useTablet_1 = require("../../../commonHelpers/hooks/useTablet");
8
8
  const oneRow_1 = require("../../components/oneRow");
9
9
  const twoRows_1 = require("../../components/twoRows");
10
10
  const isTwoRowsStructure_1 = require("../../utils/isTwoRowsStructure");
@@ -19,32 +19,38 @@ const classNames_1 = require("../../commonHelpers/classNames/classNames");
19
19
  const getListClasses_1 = require("../utils/getListClasses");
20
20
  const useColumns_1 = require("../../formLayout/hooks/useColumns");
21
21
  injectString("cs", "Sub-options are not active.", "Sub-options are not active.");
22
- injectString("da-DK", "Sub-options are not active.", "Sub-options are not active.");
22
+ injectString("da-DK", "Sub-options are not active.", "Underindstillinger er ikke aktive.");
23
23
  injectString("de", "Sub-options are not active.", "Sub-options are not active.");
24
24
  injectString("en", "Sub-options are not active.", "Sub-options are not active.");
25
25
  injectString("es", "Sub-options are not active.", "Sub-options are not active.");
26
- injectString("fi-FI", "Sub-options are not active.", "Sub-options are not active.");
26
+ injectString("fi-FI", "Sub-options are not active.", "Alivalinnat eiv\xE4t ole aktiivisia.");
27
27
  injectString("fr", "Sub-options are not active.", "Sub-options are not active.");
28
28
  injectString("fr-FR", "Sub-options are not active.", "Sub-options are not active.");
29
- injectString("hu-HU", "Sub-options are not active.", "Sub-options are not active.");
29
+ injectString("hu-HU", "Sub-options are not active.", "Az albe\xE1ll\xEDt\xE1sok nem akt\xEDvak.");
30
30
  injectString("id", "Sub-options are not active.", "Sub-options are not active.");
31
31
  injectString("it", "Sub-options are not active.", "Sub-options are not active.");
32
32
  injectString("ja", "Sub-options are not active.", "Sub-options are not active.");
33
33
  injectString("ko-KR", "Sub-options are not active.", "Sub-options are not active.");
34
- injectString("ms", "Sub-options are not active.", "Sub-options are not active.");
35
- injectString("nb-NO", "Sub-options are not active.", "Sub-options are not active.");
36
- injectString("nl", "Sub-options are not active.", "Sub-options are not active.");
34
+ injectString("ms", "Sub-options are not active.", "Sub-pilihan tidak aktif.");
35
+ injectString("nb-NO", "Sub-options are not active.", "Underalternativer er ikke aktive.");
36
+ injectString("nl", "Sub-options are not active.", "Subopties zijn niet actief.");
37
37
  injectString("pl", "Sub-options are not active.", "Sub-options are not active.");
38
- injectString("pt-BR", "Sub-options are not active.", "Sub-options are not active.");
38
+ injectString("pt-BR", "Sub-options are not active.", "As subop\xE7\xF5es n\xE3o est\xE3o ativas.");
39
39
  injectString("pt-PT", "Sub-options are not active.", "Subop\xE7\xF5es n\xE3o est\xE3o ativas.");
40
- injectString("sk-SK", "Sub-options are not active.", "Sub-options are not active.");
41
- injectString("sv", "Sub-options are not active.", "Sub-options are not active.");
40
+ injectString("sk-SK", "Sub-options are not active.", "Podvo\u013Eby nie s\xFA akt\xEDvne.");
41
+ injectString("sv", "Sub-options are not active.", "Underalternativ \xE4r inte aktiva.");
42
42
  injectString("th", "Sub-options are not active.", "Sub-options are not active.");
43
43
  injectString("tr", "Sub-options are not active.", "Sub-options are not active.");
44
44
  injectString("zh-Hans", "Sub-options are not active.", "Sub-options are not active.");
45
45
  injectString("zh-TW", "Sub-options are not active.", "Sub-options are not active.");
46
46
  injectString("ro-RO", "Sub-options are not active.", "Nu sunt active op\u021Biuni secundare.");
47
47
  injectString("ar", "Sub-options are not active.", "\u0627\u0644\u062E\u064A\u0627\u0631\u0627\u062A \u0627\u0644\u0641\u0631\u0639\u064A\u0629 \u063A\u064A\u0631 \u0646\u0634\u0637\u0629.");
48
+ injectString("lt-LT", "Sub-options are not active.", "Papildomos parinktys neaktyvios.");
49
+ injectString("lv-LV", "Sub-options are not active.", "Apak\u0161opcijas nav akt\u012Bvas.");
50
+ injectString("ka-GE", "Sub-options are not active.", "\u10E5\u10D5\u10D4\u10DE\u10D0\u10E0\u10D0\u10DB\u10D4\u10E2\u10E0\u10D4\u10D1\u10D8 \u10D0\u10E0 \u10D0\u10E0\u10D8\u10E1 \u10D0\u10E5\u10E2\u10D8\u10E3\u10E0\u10D8.");
51
+ injectString("el-GR", "Sub-options are not active.", "\u039F\u03B9 \u03C5\u03C0\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BD\u03B5\u03C1\u03B3\u03AD\u03C2.");
52
+ injectString("et-EE", "Sub-options are not active.", "Alamvalikud pole aktiivsed.");
53
+ injectString("bg-BG", "Sub-options are not active.", "\u041F\u043E\u0434\u043E\u043F\u0446\u0438\u0438\u0442\u0435 \u043D\u0435 \u0441\u0430 \u0430\u043A\u0442\u0438\u0432\u043D\u0438.");
48
54
  const useToggle = result => {
49
55
  const {
50
56
  controller,
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { IFormGroupProps } from "../formGroup";
3
2
  import { IReactFormItemController } from "../../commonHelpers/zenComponent";
4
3
  export interface IFormGroupProviderProps extends IFormGroupProps, IReactFormItemController {
@@ -1,3 +1,3 @@
1
1
  import { ReactElement } from "react";
2
2
  import { ILabelState } from "../types";
3
- export declare const isFormLabel: (element: any) => element is ReactElement<ILabelState, string | import("react").JSXElementConstructor<any>>;
3
+ export declare const isFormLabel: (element: any) => element is ReactElement<ILabelState>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { IZenIdComponentProps } from "../commonHelpers/zenComponent";
3
2
  import "./formGroupItem.less";
4
3
  export interface IFormGroupItem extends Partial<IZenIdComponentProps> {
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export interface ILayoutColumnProps {
3
2
  children?: React.ReactNode;
4
3
  title?: string;
@@ -38,60 +38,78 @@ injectString("zh-Hans", "Reload", "\u91CD\u65B0\u52A0\u8F7D");
38
38
  injectString("zh-TW", "Reload", "\u91CD\u65B0\u8F09\u5165");
39
39
  injectString("ro-RO", "Reload", "Re\xEEnc\u0103rca\u021Bi");
40
40
  injectString("ar", "Reload", "\u0625\u0639\u0627\u062F\u0629 \u062A\u062D\u0645\u064A\u0644");
41
+ injectString("lt-LT", "Reload", "Perkrauti");
42
+ injectString("lv-LV", "Reload", "P\u0101rl\u0101d\u0113t");
43
+ injectString("ka-GE", "Reload", "\u10EE\u10D4\u10DA\u10D0\u10EE\u10DA\u10D0 \u10E9\u10D0\u10E2\u10D5\u10D8\u10E0\u10D7\u10D5\u10D0");
44
+ injectString("el-GR", "Reload", "\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7");
45
+ injectString("et-EE", "Reload", "Laadi uuesti");
46
+ injectString("bg-BG", "Reload", "\u041F\u0440\u0435\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043D\u0435");
41
47
  injectString("cs", "Failed to load page", "Failed to load page");
42
- injectString("da-DK", "Failed to load page", "Failed to load page");
48
+ injectString("da-DK", "Failed to load page", "Kunne ikke indl\xE6se side");
43
49
  injectString("de", "Failed to load page", "Failed to load page");
44
50
  injectString("en", "Failed to load page", "Failed to load page");
45
51
  injectString("es", "Failed to load page", "Failed to load page");
46
- injectString("fi-FI", "Failed to load page", "Failed to load page");
52
+ injectString("fi-FI", "Failed to load page", "Sivun lataaminen ep\xE4onnistui");
47
53
  injectString("fr", "Failed to load page", "Failed to load page");
48
54
  injectString("fr-FR", "Failed to load page", "Failed to load page");
49
- injectString("hu-HU", "Failed to load page", "Failed to load page");
55
+ injectString("hu-HU", "Failed to load page", "Az oldal bet\xF6lt\xE9se nem siker\xFClt");
50
56
  injectString("id", "Failed to load page", "Failed to load page");
51
57
  injectString("it", "Failed to load page", "Failed to load page");
52
58
  injectString("ja", "Failed to load page", "Failed to load page");
53
59
  injectString("ko-KR", "Failed to load page", "Failed to load page");
54
- injectString("ms", "Failed to load page", "Failed to load page");
55
- injectString("nb-NO", "Failed to load page", "Failed to load page");
56
- injectString("nl", "Failed to load page", "Failed to load page");
60
+ injectString("ms", "Failed to load page", "Gagal memuatkan halaman");
61
+ injectString("nb-NO", "Failed to load page", "Kunne ikke laste inn siden");
62
+ injectString("nl", "Failed to load page", "Pagina laden mislukt");
57
63
  injectString("pl", "Failed to load page", "Failed to load page");
58
- injectString("pt-BR", "Failed to load page", "Failed to load page");
64
+ injectString("pt-BR", "Failed to load page", "Falha ao carregar a p\xE1gina");
59
65
  injectString("pt-PT", "Failed to load page", "Falha ao carregar a p\xE1gina");
60
- injectString("sk-SK", "Failed to load page", "Failed to load page");
61
- injectString("sv", "Failed to load page", "Failed to load page");
66
+ injectString("sk-SK", "Failed to load page", "Nepodarilo sa na\u010D\xEDta\u0165 str\xE1nku");
67
+ injectString("sv", "Failed to load page", "Det gick inte att l\xE4sa in sidan");
62
68
  injectString("th", "Failed to load page", "Failed to load page");
63
69
  injectString("tr", "Failed to load page", "Failed to load page");
64
70
  injectString("zh-Hans", "Failed to load page", "Failed to load page");
65
71
  injectString("zh-TW", "Failed to load page", "Failed to load page");
66
72
  injectString("ro-RO", "Failed to load page", "Nu s-a putut \xEEnc\u0103rca pagina");
67
73
  injectString("ar", "Failed to load page", "\u0641\u0634\u0644 \u062A\u062D\u0645\u064A\u0644 \u0627\u0644\u0635\u0641\u062D\u0629");
74
+ injectString("lt-LT", "Failed to load page", "Nepavyko \u012Fkelti puslapio");
75
+ injectString("lv-LV", "Failed to load page", "Neizdev\u0101s iel\u0101d\u0113t lapu");
76
+ injectString("ka-GE", "Failed to load page", "\u10D2\u10D5\u10D4\u10E0\u10D3\u10D8\u10E1 \u10E9\u10D0\u10E2\u10D5\u10D8\u10E0\u10D7\u10D5\u10D0 \u10D5\u10D4\u10E0 \u10DB\u10DD\u10EE\u10D4\u10E0\u10EE\u10D3\u10D0");
77
+ injectString("el-GR", "Failed to load page", "\u0391\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B1 \u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2");
78
+ injectString("et-EE", "Failed to load page", "Lehe laadimine eba\xF5nnestus");
79
+ injectString("bg-BG", "Failed to load page", "\u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0442\u0430 \u043D\u0435 \u043C\u043E\u0436\u0430 \u0434\u0430 \u0441\u0435 \u0437\u0430\u0440\u0435\u0434\u0438");
68
80
  injectString("cs", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
69
- injectString("da-DK", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
81
+ injectString("da-DK", "Please refresh the page and try again. If the issue persists, contact Support.", "Opdater siden og pr\xF8v igen. Hvis problemet forts\xE6tter, kontakt Support.");
70
82
  injectString("de", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
71
83
  injectString("en", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
72
84
  injectString("es", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
73
- injectString("fi-FI", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
85
+ injectString("fi-FI", "Please refresh the page and try again. If the issue persists, contact Support.", "P\xE4ivit\xE4 sivu ja yrit\xE4 uudelleen. Jos ongelma jatkuu, ota yhteytt\xE4 tukeen.");
74
86
  injectString("fr", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
75
87
  injectString("fr-FR", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
76
- injectString("hu-HU", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
88
+ injectString("hu-HU", "Please refresh the page and try again. If the issue persists, contact Support.", "Friss\xEDtse az oldalt, \xE9s pr\xF3b\xE1lja \xFAjra. Ha a probl\xE9ma tov\xE1bbra is fenn\xE1ll, vegye fel a kapcsolatot az \xFCgyf\xE9lszolg\xE1lattal.");
77
89
  injectString("id", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
78
90
  injectString("it", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
79
91
  injectString("ja", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
80
92
  injectString("ko-KR", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
81
- injectString("ms", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
82
- injectString("nb-NO", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
83
- injectString("nl", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
93
+ injectString("ms", "Please refresh the page and try again. If the issue persists, contact Support.", "Sila segarkan semula halaman dan cuba lagi. Jika masalah berterusan, hubungi Sokongan.");
94
+ injectString("nb-NO", "Please refresh the page and try again. If the issue persists, contact Support.", "Oppdater siden og pr\xF8v igjen. Hvis problemet vedvarer, kontakt Support.");
95
+ injectString("nl", "Please refresh the page and try again. If the issue persists, contact Support.", "Vernieuw de pagina en probeer het opnieuw. Als het probleem aanhoudt, neem dan contact op met Ondersteuning.");
84
96
  injectString("pl", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
85
- injectString("pt-BR", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
97
+ injectString("pt-BR", "Please refresh the page and try again. If the issue persists, contact Support.", "Atualize a p\xE1gina e tente novamente. Se o problema persistir, entre em contato com o Suporte.");
86
98
  injectString("pt-PT", "Please refresh the page and try again. If the issue persists, contact Support.", "Atualize a p\xE1gina e tente novamente. Se o problema persistir, contacte o Suporte.");
87
- injectString("sk-SK", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
88
- injectString("sv", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
99
+ injectString("sk-SK", "Please refresh the page and try again. If the issue persists, contact Support.", "Obnovte str\xE1nku a sk\xFAste to znova. Ak probl\xE9m pretrv\xE1va, kontaktujte podporu.");
100
+ injectString("sv", "Please refresh the page and try again. If the issue persists, contact Support.", "Uppdatera sidan och f\xF6rs\xF6k igen. Om problemet kvarst\xE5r, kontakta Support.");
89
101
  injectString("th", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
90
102
  injectString("tr", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
91
103
  injectString("zh-Hans", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
92
104
  injectString("zh-TW", "Please refresh the page and try again. If the issue persists, contact Support.", "Please refresh the page and try again. If the issue persists, contact Support.");
93
105
  injectString("ro-RO", "Please refresh the page and try again. If the issue persists, contact Support.", "Re\xEEnc\u0103rca\u021Bi pagina \u0219i \xEEncerca\u021Bi din nou. Dac\u0103 problema persist\u0103, contacta\u021Bi Asisten\u021Ba.");
94
106
  injectString("ar", "Please refresh the page and try again. If the issue persists, contact Support.", "\u064A\u0631\u062C\u0649 \u062A\u062D\u062F\u064A\u062B \u0627\u0644\u0635\u0641\u062D\u0629 \u0648\u0627\u0644\u0645\u062D\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062E\u0631\u0649. \u0625\u0630\u0627 \u0627\u0633\u062A\u0645\u0631\u062A \u0627\u0644\u0645\u0634\u0643\u0644\u0629\u060C \u0627\u062A\u0635\u0644 \u0628\u0627\u0644\u062F\u0639\u0645.");
107
+ injectString("lt-LT", "Please refresh the page and try again. If the issue persists, contact Support.", "Atnaujinkite puslap\u012F. Jei problema i\u0161lieka, susisiekite su palaikymo tarnyba.");
108
+ injectString("lv-LV", "Please refresh the page and try again. If the issue persists, contact Support.", "L\u016Bdzu atsvaidziniet lapu. Ja probl\u0113ma saglab\u0101jas, sazinieties ar atbalstu.");
109
+ injectString("ka-GE", "Please refresh the page and try again. If the issue persists, contact Support.", "\u10D2\u10D7\u10EE\u10DD\u10D5\u10D7, \u10D2\u10D0\u10DC\u10D0\u10D0\u10EE\u10DA\u10D4\u10D7 \u10D2\u10D5\u10D4\u10E0\u10D3\u10D8. \u10DE\u10E0\u10DD\u10D1\u10DA\u10D4\u10DB\u10D8\u10E1 \u10E8\u10D4\u10DB\u10D7\u10EE\u10D5\u10D4\u10D5\u10D0\u10E8\u10D8 \u10D3\u10D0\u10E3\u10D9\u10D0\u10D5\u10E8\u10D8\u10E0\u10D3\u10D8\u10D7 \u10DB\u10EE\u10D0\u10E0\u10D3\u10D0\u10ED\u10D4\u10E0\u10D0\u10E1.");
110
+ injectString("el-GR", "Please refresh the page and try again. If the issue persists, contact Support.", "\u0391\u03BD\u03B1\u03BD\u03B5\u03CE\u03C3\u03C4\u03B5 \u03C4\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1. \u0391\u03BD \u03C4\u03BF \u03C0\u03C1\u03CC\u03B2\u03BB\u03B7\u03BC\u03B1 \u03C0\u03B1\u03C1\u03B1\u03BC\u03AD\u03BD\u03B5\u03B9, \u03B5\u03C0\u03B9\u03BA\u03BF\u03B9\u03BD\u03C9\u03BD\u03AE\u03C3\u03C4\u03B5 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03A5\u03C0\u03BF\u03C3\u03C4\u03AE\u03C1\u03B9\u03BE\u03B7.");
111
+ injectString("et-EE", "Please refresh the page and try again. If the issue persists, contact Support.", "V\xE4rskendage lehte. Kui probleem p\xFCsib, v\xF5tke \xFChendust toega.");
112
+ injectString("bg-BG", "Please refresh the page and try again. If the issue persists, contact Support.", "\u041C\u043E\u043B\u044F, \u043E\u043F\u0440\u0435\u0441\u043D\u0435\u0442\u0435 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0442\u0430. \u0410\u043A\u043E \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u044A\u0442 \u043F\u0440\u043E\u0434\u044A\u043B\u0436\u0438, \u0441\u0432\u044A\u0440\u0436\u0435\u0442\u0435 \u0441\u0435 \u0441 \u043F\u043E\u0434\u0434\u0440\u044A\u0436\u043A\u0430\u0442\u0430.");
95
113
  const useError = props => {
96
114
  const {
97
115
  translate
@@ -7,5 +7,5 @@ export interface IUseFormButtonsProps {
7
7
  }
8
8
  export declare const useFormButtons: (props?: IUseFormButtonsProps) => {
9
9
  mode: TFormLayoutMode;
10
- buttons: (import("react/jsx-runtime").JSX.Element | null)[];
10
+ buttons: import("react/jsx-runtime").JSX.Element[];
11
11
  };
@@ -42,6 +42,12 @@ injectString("zh-Hans", "Save", "\u4FDD\u5B58");
42
42
  injectString("zh-TW", "Save", "\u5132\u5B58");
43
43
  injectString("ro-RO", "Save", "Salva\u021Bi");
44
44
  injectString("ar", "Save", "\u062D\u0641\u0638");
45
+ injectString("lt-LT", "Save", "I\u0161saugoti");
46
+ injectString("lv-LV", "Save", "Saglab\u0101t");
47
+ injectString("ka-GE", "Save", "\u10E8\u10D4\u10DC\u10D0\u10EE\u10D5\u10D0");
48
+ injectString("el-GR", "Save", "\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7");
49
+ injectString("et-EE", "Save", "Salvesta");
50
+ injectString("bg-BG", "Save", "\u0417\u0430\u043F\u0430\u0437\u0432\u0430\u043D\u0435");
45
51
  injectString("cs", "Edit", "Upravit");
46
52
  injectString("da-DK", "Edit", "Rediger");
47
53
  injectString("de", "Edit", "Bearbeiten");
@@ -69,6 +75,12 @@ injectString("zh-Hans", "Edit", "\u7F16\u8F91");
69
75
  injectString("zh-TW", "Edit", "\u7DE8\u8F2F");
70
76
  injectString("ro-RO", "Edit", "Edita\u021Bi");
71
77
  injectString("ar", "Edit", "\u062A\u0639\u062F\u064A\u0644");
78
+ injectString("lt-LT", "Edit", "Redaguoti");
79
+ injectString("lv-LV", "Edit", "Redi\u0123\u0113t");
80
+ injectString("ka-GE", "Edit", "\u10E0\u10D4\u10D3\u10D0\u10E5\u10E2\u10D8\u10E0\u10D4\u10D1\u10D0");
81
+ injectString("el-GR", "Edit", "\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1");
82
+ injectString("et-EE", "Edit", "Muuda");
83
+ injectString("bg-BG", "Edit", "\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u043D\u0435");
72
84
  injectString("cs", "Cancel", "Zru\u0161it");
73
85
  injectString("da-DK", "Cancel", "Annuller");
74
86
  injectString("de", "Cancel", "Abbrechen");
@@ -96,6 +108,12 @@ injectString("zh-Hans", "Cancel", "\u53D6\u6D88");
96
108
  injectString("zh-TW", "Cancel", "\u53D6\u6D88");
97
109
  injectString("ro-RO", "Cancel", "Anula\u021Bi");
98
110
  injectString("ar", "Cancel", "\u0625\u0644\u063A\u0627\u0621");
111
+ injectString("lt-LT", "Cancel", "At\u0161aukti");
112
+ injectString("lv-LV", "Cancel", "Atcelt");
113
+ injectString("ka-GE", "Cancel", "\u10D2\u10D0\u10E3\u10E5\u10DB\u10D4\u10D1\u10D0");
114
+ injectString("el-GR", "Cancel", "\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7");
115
+ injectString("et-EE", "Cancel", "T\xFChista");
116
+ injectString("bg-BG", "Cancel", "\u041E\u0442\u043A\u0430\u0437");
99
117
  const useFormButtons = (props = {}) => {
100
118
  const {
101
119
  onSave,
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { ILoadingBase } from "../commonHelpers/loading";
3
2
  import { Exclusive } from "../commonHelpers/types/exclusive";
4
3
  import { IZenComponentProps } from "../commonHelpers/zenComponent";
@@ -1 +1 @@
1
- export declare const attachHeadings: (elements: React.ReactElement[], title?: string, secondary?: string) => (import("react/jsx-runtime").JSX.Element | null)[];
1
+ export declare const attachHeadings: (elements: React.ReactElement[], title?: string, secondary?: string) => import("react/jsx-runtime").JSX.Element[];
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { TFormSectionType } from "../../formSection/types";
3
2
  import { TFormLayoutColumns } from "../types";
4
3
  export declare const attachSeparators: (components: React.ReactElement[], type: TFormSectionType, columns: TFormLayoutColumns) => import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>[];
@@ -1,2 +1 @@
1
- import { ReactNode } from "react";
2
- export declare const getChildrenWithCustomColumns: (children: React.ReactElement) => ReactNode[];
1
+ export declare const getChildrenWithCustomColumns: (children: React.ReactElement) => import("react").ReactNode[];
@@ -51,7 +51,7 @@ const getChildrenWithCustomColumns = (children) => {
51
51
  });
52
52
  const title = ((_k = (_j = filtered[indexOfFirstColumn]) === null || _j === void 0 ? void 0 : _j.props) === null || _k === void 0 ? void 0 : _k.title) || "";
53
53
  if ((firstColumnTittle || secondColumnTittle) && Array.isArray(childrenOfFirstColumn)) {
54
- childrenOfFirstColumn.unshift(((0, jsx_runtime_1.jsx)(formLayoutColumnTitle_1.FormLayoutColumnTitle, { column: 1, value: title }, "column-1-title")));
54
+ childrenOfFirstColumn.unshift((0, jsx_runtime_1.jsx)(formLayoutColumnTitle_1.FormLayoutColumnTitle, { column: 1, value: title }, "column-1-title"));
55
55
  }
56
56
  }
57
57
  if (childrenOfSecondColumn) {
@@ -66,7 +66,7 @@ const getChildrenWithCustomColumns = (children) => {
66
66
  });
67
67
  const title = ((_m = (_l = filtered[indexOfSecondColumn]) === null || _l === void 0 ? void 0 : _l.props) === null || _m === void 0 ? void 0 : _m.title) || "";
68
68
  if ((firstColumnTittle || secondColumnTittle) && Array.isArray(childrenOfSecondColumn)) {
69
- childrenOfSecondColumn.unshift(((0, jsx_runtime_1.jsx)(formLayoutColumnTitle_1.FormLayoutColumnTitle, { column: 2, value: title }, "column-2-title")));
69
+ childrenOfSecondColumn.unshift((0, jsx_runtime_1.jsx)(formLayoutColumnTitle_1.FormLayoutColumnTitle, { column: 2, value: title }, "column-2-title"));
70
70
  }
71
71
  }
72
72
  indexOfFirstColumn !== -1 && filtered.splice(indexOfFirstColumn, 1, ...childrenOfFirstColumn);
@@ -3,22 +3,22 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getFieldLabel = void 0;
4
4
  const zen_1 = require("../../utils/zen");
5
5
  const getFieldLabel = (id) => {
6
- var _a, _b, _c, _d, _e, _f, _g;
6
+ var _a, _b;
7
7
  if (typeof zen_1.zen.document === "undefined" || typeof zen_1.zen.document.querySelector !== "function")
8
8
  return null;
9
- const direct = (_b = (_a = zen_1.zen.document.querySelector(`label[for="${id}"]`)) === null || _a === void 0 ? void 0 : _a.textContent) === null || _b === void 0 ? void 0 : _b.trim();
9
+ const direct = (_a = zen_1.zen.document.querySelector(`label[for="${id}"]`)) === null || _a === void 0 ? void 0 : _a.textContent.trim();
10
10
  if (direct !== undefined)
11
11
  return direct || null;
12
- const row = (_c = zen_1.zen.document.getElementById(id)) === null || _c === void 0 ? void 0 : _c.closest(".zen-custom-form-row");
12
+ const row = (_b = zen_1.zen.document.getElementById(id)) === null || _b === void 0 ? void 0 : _b.closest(".zen-custom-form-row");
13
13
  if (!row)
14
14
  return null;
15
15
  let sibling = row.previousElementSibling;
16
16
  while (sibling) {
17
17
  if (sibling.tagName === "LABEL")
18
- return (_e = (_d = sibling.textContent) === null || _d === void 0 ? void 0 : _d.trim()) !== null && _e !== void 0 ? _e : null;
18
+ return sibling.textContent.trim() || null;
19
19
  const inner = sibling.querySelector("label");
20
20
  if (inner)
21
- return (_g = (_f = inner.textContent) === null || _f === void 0 ? void 0 : _f.trim()) !== null && _g !== void 0 ? _g : null;
21
+ return inner.textContent.trim() || null;
22
22
  sibling = sibling.previousElementSibling;
23
23
  }
24
24
  return null;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { IActions } from "../../card/components/actions";
3
2
  export interface IFormSectionActions extends IActions {
4
3
  }
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { IAdditionalSectionProps } from "./additionalSection";
3
2
  export interface IFormSectionAdditional extends IAdditionalSectionProps {
4
3
  }