@geotab/zenith 3.1.1-beta.6 → 3.2.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (434) hide show
  1. package/README.md +20 -0
  2. package/dist/advancedGroupsFilter/advancedGroupsFilter.js +136 -30
  3. package/dist/advancedGroupsFilter/advancedGroupsFilterForm.js +139 -34
  4. package/dist/advancedGroupsFilter/advancedGroupsFilterFormSection.js +352 -87
  5. package/dist/advancedGroupsFilter/advancedGroupsFilterSectionTooltip.d.ts +0 -1
  6. package/dist/advancedGroupsFilter/advancedGroupsFilterSectionTooltip.js +83 -9
  7. package/dist/alertRaw/alertRaw.js +175 -54
  8. package/dist/banner/bannerMultipLine.js +131 -23
  9. package/dist/banner/bannerSingleLine.js +110 -16
  10. package/dist/betaPill/betaPill.js +111 -20
  11. package/dist/bookmark/bookmark.js +95 -28
  12. package/dist/bulkEditControl/bulkEditControl.js +167 -34
  13. package/dist/calendar/calendar.js +943 -273
  14. package/dist/calendar/calendarUtils.js +157 -85
  15. package/dist/card/card.js +268 -123
  16. package/dist/chart/accessibleChart/accessibleChartNarrative.js +648 -555
  17. package/dist/chart/accessibleChart/accessibleChartTable.js +245 -86
  18. package/dist/chart/chart.js +36 -21
  19. package/dist/chart/chartAxis/chartAxis.js +85 -7
  20. package/dist/checkboxListWithAction/checkboxListWithAction.js +224 -69
  21. package/dist/chip/chip.js +195 -91
  22. package/dist/columnsSelector/columnsSelector.js +97 -12
  23. package/dist/columnsSelector/columnsTab/columnsTab.js +59 -15
  24. package/dist/columnsSelector/columnsTabGroup/columnsTabGroup.js +81 -34
  25. package/dist/comboboxSelected/comboboxSelected.js +1 -3
  26. package/dist/dataFeed/feedExpandControl/feedExpandControl.js +25 -10
  27. package/dist/dataGrid/columns/checkboxColumn/checkboxHeaderCell.js +92 -11
  28. package/dist/dataGrid/dataGrid.js +227 -117
  29. package/dist/dataGrid/emptySearchList/emptySearchList.js +56 -9
  30. package/dist/dataGrid/entitiesListActions/actions/columnsListButton.js +51 -7
  31. package/dist/dataGrid/entitiesListActions/actions/fullscreenButton.js +64 -18
  32. package/dist/dataGrid/withFlexibleColumns/components/columnSettings.js +84 -10
  33. package/dist/dataGrid/withFlexibleColumns/components/columnSettingsSidePanel.js +48 -16
  34. package/dist/dataGrid/withSelectableRows/components/bulkActions/bulkActions.js +223 -32
  35. package/dist/dataGrid/withSelectableRows/withSelectableRows.js +286 -213
  36. package/dist/dataGrid/withSortableColumns/columns/sortableColumnWrapper.js +178 -95
  37. package/dist/dateInputInner/dateInputInner.js +791 -476
  38. package/dist/dateInputInner/dateInputInnerControlBlock.js +125 -22
  39. package/dist/dateInputRaw/dateInputRaw.js +315 -104
  40. package/dist/dateInputRaw/utils/getLabel.js +38 -7
  41. package/dist/dateRangeInner/dateRangeInner.js +173 -59
  42. package/dist/dateRangeRaw/dateRangeRaw.js +601 -239
  43. package/dist/dateRangeRaw/utils/dateRangeUtils.js +629 -241
  44. package/dist/dateSelectionWrapper/dateSelectionWrapper.js +152 -14
  45. package/dist/dialog/dialogContent.js +123 -40
  46. package/dist/dropdownRaw/dropdownHelper.d.ts +2 -2
  47. package/dist/dropdownRaw/dropdownHelper.js +9 -9
  48. package/dist/dropdownRaw/dropdownList.js +447 -78
  49. package/dist/dropdownRaw/dropdownPopup.js +218 -20
  50. package/dist/dropdownRaw/dropdownRaw.js +866 -506
  51. package/dist/dropdownRaw/dropdownSearchableTrigger.js +223 -46
  52. package/dist/dropdownRaw/stateReducer/stateAction.d.ts +5 -1
  53. package/dist/dropdownRaw/stateReducer/stateActionType.d.ts +2 -1
  54. package/dist/dropdownRaw/stateReducer/stateActionType.js +1 -0
  55. package/dist/dropdownRaw/stateReducer/stateReducer.d.ts +6 -1
  56. package/dist/dropdownRaw/stateReducer/stateReducer.js +24 -12
  57. package/dist/dropdownRaw/stateReducer/stateReducerHelper.d.ts +2 -0
  58. package/dist/dropdownRaw/stateReducer/stateReducerHelper.js +20 -1
  59. package/dist/dropdownRaw/stateReducer/stateReducerTestData.d.ts +39 -0
  60. package/dist/dropdownRaw/stateReducer/stateReducerTestData.js +74 -0
  61. package/dist/dropdownRaw/types.d.ts +1 -0
  62. package/dist/favoriteButton/favoriteButton.js +59 -10
  63. package/dist/filters/components/filtersContainer.js +151 -64
  64. package/dist/filters/components/filtersEmptySelectedList.js +30 -4
  65. package/dist/filters/components/filtersSaveModal.js +140 -42
  66. package/dist/filters/components/filtersSavedChipComponent.js +318 -108
  67. package/dist/filters/components/filtersSearchItemData.js +127 -47
  68. package/dist/filters/components/filtersSearchList.js +381 -179
  69. package/dist/filters/components/filtersSelect.js +128 -61
  70. package/dist/filters/components/filtersSelectListItem.js +125 -13
  71. package/dist/filters/components/filtersSidePanel.js +510 -178
  72. package/dist/filters/components/filtersSidePanelDropdown.js +2 -2
  73. package/dist/filters/filters.js +445 -268
  74. package/dist/filtersBar/components/filtersBarPeriodPicker/getRangeOption.js +729 -272
  75. package/dist/filtersBar/components/resetComponentButton.js +45 -5
  76. package/dist/filtersBar/filtersBarActions/filtersBarActions.js +126 -15
  77. package/dist/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRadioGroup/filtersBarSidePanelRadioGroup.js +2 -2
  78. package/dist/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRange/filtersBarSidePanelRange.js +155 -49
  79. package/dist/filtersBar/filtersBarSidePanel/filtersBarSidePanel.js +360 -104
  80. package/dist/filtersBar/filtersContainer/filtersContainer.js +204 -134
  81. package/dist/formField/components/formFieldWithLabel.d.ts +2 -1
  82. package/dist/formField/components/formFieldWithLabel.js +3 -2
  83. package/dist/formField/components/formFieldWithoutLabel.d.ts +2 -1
  84. package/dist/formField/components/formFieldWithoutLabel.js +3 -3
  85. package/dist/formField/components/trailingComponent.d.ts +8 -0
  86. package/dist/formField/components/trailingComponent.js +11 -0
  87. package/dist/formField/formField.js +26 -11
  88. package/dist/formField/hooks/useError.js +100 -36
  89. package/dist/formGroup/components/reviewListToggle/reviewListToggle.js +72 -7
  90. package/dist/formGroup/hooks/useToggle.js +37 -11
  91. package/dist/formGroup/utils/getControls.js +8 -7
  92. package/dist/formLayout/hooks/useError.js +55 -15
  93. package/dist/formLayout/hooks/useFormButtons.js +128 -27
  94. package/dist/formSection/components/formSectionModal.js +1 -1
  95. package/dist/formSection/formSection.js +1 -1
  96. package/dist/formSection/hooks/useError.js +70 -22
  97. package/dist/formStepper/components/formStep.js +65 -10
  98. package/dist/formStepper/formStepper.js +129 -33
  99. package/dist/formStepperButtons/formStepperButtons.js +184 -38
  100. package/dist/groupsFilter/groupsHelper.d.ts +1 -1
  101. package/dist/groupsFilterRaw/groupsFilterAdjustmentState.js +162 -17
  102. package/dist/groupsFilterRaw/groupsFilterBox.js +137 -32
  103. package/dist/groupsFilterRaw/groupsFilterCommon.js +75 -8
  104. package/dist/groupsFilterRaw/groupsFilterCurrentlySelectedState.js +184 -25
  105. package/dist/groupsFilterRaw/groupsFilterHelper.d.ts +2 -1
  106. package/dist/groupsFilterRaw/groupsFilterHelper.js +284 -168
  107. package/dist/groupsFilterRaw/groupsFilterInitialState.js +266 -18
  108. package/dist/groupsFilterRaw/groupsFilterMenu.js +124 -9
  109. package/dist/groupsFilterRaw/groupsFilterRaw.d.ts +1 -0
  110. package/dist/groupsFilterRaw/groupsFilterRaw.js +816 -308
  111. package/dist/groupsFilterRaw/groupsFilterTestData.d.ts +155 -2
  112. package/dist/groupsFilterRaw/groupsFilterTestData.js +153 -58
  113. package/dist/groupsFilterRaw/groupsFilterTrigger.js +139 -35
  114. package/dist/groupsFilterRaw/groupsHelper.js +739 -208
  115. package/dist/groupsFilterRaw/stateReducer/stateReducerHelper.js +3 -1
  116. package/dist/groupsFilterRaw/types.d.ts +1 -0
  117. package/dist/header/components/collapsedItemsControl/collapsedItemsControl.js +107 -52
  118. package/dist/header/components/mobileFilterControl/mobileFilterControl.js +62 -9
  119. package/dist/header/components/mobileSearchControl/mobileSearchControl.js +119 -14
  120. package/dist/header/headerBack.js +64 -20
  121. package/dist/index.css +116 -74
  122. package/dist/index.d.ts +1 -0
  123. package/dist/index.js +4 -1
  124. package/dist/list/itemData/itemDataInternal.js +216 -51
  125. package/dist/list/listItem/listItem.js +168 -55
  126. package/dist/menu/components/menuErrorItem.js +33 -5
  127. package/dist/mobileSheet/mobileSheet.js +195 -69
  128. package/dist/modal/modal.js +300 -142
  129. package/dist/nav/nav.js +1 -1
  130. package/dist/nav/navFooter/navFooter.js +82 -39
  131. package/dist/nav/navFooter/navFooterAction/navFooterAction.js +52 -13
  132. package/dist/nav/navHeader/navHeader.js +86 -36
  133. package/dist/nav/navHeader/navHeaderSearch/navHeaderSearch.js +88 -29
  134. package/dist/nav/navItem/navItem.d.ts +3 -3
  135. package/dist/nav/navItem/navItem.js +35 -33
  136. package/dist/nav/navMobileBar/navMobileBar.js +67 -21
  137. package/dist/notification/notification.js +124 -21
  138. package/dist/pagination/paginationArrow.js +81 -11
  139. package/dist/pagination/paginationText/paginationText.js +45 -11
  140. package/dist/pill/components/pillNonActionable/pillNonActionable.js +93 -24
  141. package/dist/pillBox/components/pillBoxItem.js +52 -9
  142. package/dist/pillBox/pillBox.js +121 -20
  143. package/dist/pillExpandable/pillExpandable.js +333 -139
  144. package/dist/rangeRaw/rangeRaw.js +486 -141
  145. package/dist/rangeRaw/utils/rangeHelper.js +209 -39
  146. package/dist/searchInputRaw/searchInputRaw.js +180 -65
  147. package/dist/skeleton/skeleton.js +51 -6
  148. package/dist/sortControl/sortControl.js +152 -42
  149. package/dist/stepperRaw/stepperRaw.js +116 -42
  150. package/dist/summary/summary.js +94 -8
  151. package/dist/table/actions/actionsMenu.js +171 -78
  152. package/dist/table/flexible/columnSettings.js +80 -10
  153. package/dist/table/flexible/columnsList.js +110 -43
  154. package/dist/table/flexible/columnsPopup.js +77 -20
  155. package/dist/table/nested/useNestedRows.js +167 -77
  156. package/dist/table/selectable/selectableHeader.js +180 -41
  157. package/dist/table/selectable/useSelectableRows.js +270 -191
  158. package/dist/table/sortable/sortableHeader.js +153 -75
  159. package/dist/tabs/tabs.js +227 -118
  160. package/dist/timePickerRaw/timePickerRaw.js +278 -58
  161. package/dist/toastRaw/toastRaw.js +138 -32
  162. package/dist/toggleButton/toggleButton.d.ts +0 -1
  163. package/dist/toggleButtonRaw/toggleButtonRaw.d.ts +1 -0
  164. package/dist/toggleButtonRaw/toggleButtonRaw.js +146 -40
  165. package/dist/utils/formatDate.js +1001 -117
  166. package/{esm/utils/localization/translations/cs-json.js → dist/utils/localization/translations/cs.json} +11 -12
  167. package/{esm/utils/localization/translations/da-DK-json.js → dist/utils/localization/translations/da-DK.json} +31 -23
  168. package/{esm/utils/localization/translations/de-json.js → dist/utils/localization/translations/de.json} +12 -13
  169. package/dist/utils/localization/translations/en.json +308 -0
  170. package/{esm/utils/localization/translations/es-json.js → dist/utils/localization/translations/es.json} +11 -12
  171. package/{esm/utils/localization/translations/fi-FI-json.js → dist/utils/localization/translations/fi-FI.json} +31 -23
  172. package/{esm/utils/localization/translations/fr-FR-json.js → dist/utils/localization/translations/fr-FR.json} +12 -12
  173. package/{esm/utils/localization/translations/fr-json.js → dist/utils/localization/translations/fr.json} +11 -12
  174. package/{esm/utils/localization/translations/hu-HU-json.js → dist/utils/localization/translations/hu-HU.json} +31 -23
  175. package/{esm/utils/localization/translations/id-json.js → dist/utils/localization/translations/id.json} +11 -13
  176. package/{esm/utils/localization/translations/it-json.js → dist/utils/localization/translations/it.json} +11 -12
  177. package/{esm/utils/localization/translations/ja-json.js → dist/utils/localization/translations/ja.json} +11 -12
  178. package/{esm/utils/localization/translations/ko-KR-json.js → dist/utils/localization/translations/ko-KR.json} +24 -23
  179. package/{esm/utils/localization/translations/ms-json.js → dist/utils/localization/translations/ms.json} +11 -12
  180. package/{esm/utils/localization/translations/nb-NO-json.js → dist/utils/localization/translations/nb-NO.json} +31 -23
  181. package/{esm/utils/localization/translations/nl-json.js → dist/utils/localization/translations/nl.json} +11 -12
  182. package/{esm/utils/localization/translations/pl-json.js → dist/utils/localization/translations/pl.json} +11 -12
  183. package/{esm/utils/localization/translations/pt-BR-json.js → dist/utils/localization/translations/pt-BR.json} +11 -12
  184. package/{esm/utils/localization/translations/sk-SK-json.js → dist/utils/localization/translations/sk-SK.json} +31 -23
  185. package/{esm/utils/localization/translations/sv-json.js → dist/utils/localization/translations/sv.json} +11 -12
  186. package/{esm/utils/localization/translations/th-json.js → dist/utils/localization/translations/th.json} +11 -12
  187. package/{esm/utils/localization/translations/tr-json.js → dist/utils/localization/translations/tr.json} +11 -12
  188. package/{esm/utils/localization/translations/zh-Hans-json.js → dist/utils/localization/translations/zh-Hans.json} +11 -12
  189. package/{esm/utils/localization/translations/zh-TW-json.js → dist/utils/localization/translations/zh-TW.json} +11 -23
  190. package/dist/utils/localization/translationsDictionary.d.ts +2 -0
  191. package/dist/utils/localization/translationsDictionary.js +63 -0
  192. package/dist/utils/localization/useLanguage.js +2 -74
  193. package/esm/advancedGroupsFilter/advancedGroupsFilter.js +130 -29
  194. package/esm/advancedGroupsFilter/advancedGroupsFilterForm.js +133 -33
  195. package/esm/advancedGroupsFilter/advancedGroupsFilterFormSection.js +317 -65
  196. package/esm/advancedGroupsFilter/advancedGroupsFilterSectionTooltip.d.ts +0 -1
  197. package/esm/advancedGroupsFilter/advancedGroupsFilterSectionTooltip.js +77 -8
  198. package/esm/alertRaw/alertRaw.js +165 -51
  199. package/esm/banner/bannerMultipLine.js +121 -20
  200. package/esm/banner/bannerSingleLine.js +100 -13
  201. package/esm/betaPill/betaPill.js +105 -19
  202. package/esm/bookmark/bookmark.js +89 -27
  203. package/esm/bulkEditControl/bulkEditControl.js +161 -33
  204. package/esm/calendar/calendar.js +937 -272
  205. package/esm/calendar/calendarUtils.js +151 -84
  206. package/esm/card/card.js +233 -101
  207. package/esm/chart/accessibleChart/accessibleChartNarrative.js +642 -554
  208. package/esm/chart/accessibleChart/accessibleChartTable.js +239 -85
  209. package/esm/chart/chart.js +30 -20
  210. package/esm/chart/chartAxis/chartAxis.js +79 -6
  211. package/esm/checkboxListWithAction/checkboxListWithAction.js +218 -68
  212. package/esm/chip/chip.js +189 -90
  213. package/esm/columnsSelector/columnsSelector.js +91 -11
  214. package/esm/columnsSelector/columnsTab/columnsTab.js +53 -14
  215. package/esm/columnsSelector/columnsTabGroup/columnsTabGroup.js +75 -33
  216. package/esm/comboboxSelected/comboboxSelected.js +1 -3
  217. package/esm/dataFeed/feedExpandControl/feedExpandControl.js +21 -9
  218. package/esm/dataGrid/columns/checkboxColumn/checkboxHeaderCell.js +86 -10
  219. package/esm/dataGrid/dataGrid.js +221 -116
  220. package/esm/dataGrid/emptySearchList/emptySearchList.js +50 -8
  221. package/esm/dataGrid/entitiesListActions/actions/columnsListButton.js +45 -6
  222. package/esm/dataGrid/entitiesListActions/actions/fullscreenButton.js +58 -17
  223. package/esm/dataGrid/withFlexibleColumns/components/columnSettings.js +78 -9
  224. package/esm/dataGrid/withFlexibleColumns/components/columnSettingsSidePanel.js +44 -15
  225. package/esm/dataGrid/withSelectableRows/components/bulkActions/bulkActions.js +217 -31
  226. package/esm/dataGrid/withSelectableRows/withSelectableRows.js +280 -212
  227. package/esm/dataGrid/withSortableColumns/columns/sortableColumnWrapper.js +172 -94
  228. package/esm/dateInputInner/dateInputInner.js +785 -475
  229. package/esm/dateInputInner/dateInputInnerControlBlock.js +119 -21
  230. package/esm/dateInputRaw/dateInputRaw.js +309 -103
  231. package/esm/dateInputRaw/utils/getLabel.js +32 -6
  232. package/esm/dateRangeInner/dateRangeInner.js +167 -58
  233. package/esm/dateRangeRaw/dateRangeRaw.js +595 -238
  234. package/esm/dateRangeRaw/utils/dateRangeUtils.js +622 -239
  235. package/esm/dateSelectionWrapper/dateSelectionWrapper.js +146 -13
  236. package/esm/dialog/dialogContent.js +117 -39
  237. package/esm/dropdownRaw/dropdownHelper.d.ts +2 -2
  238. package/esm/dropdownRaw/dropdownHelper.js +10 -10
  239. package/esm/dropdownRaw/dropdownList.js +412 -56
  240. package/esm/dropdownRaw/dropdownPopup.js +212 -19
  241. package/esm/dropdownRaw/dropdownRaw.js +862 -507
  242. package/esm/dropdownRaw/dropdownSearchableTrigger.js +217 -45
  243. package/esm/dropdownRaw/stateReducer/stateAction.d.ts +5 -1
  244. package/esm/dropdownRaw/stateReducer/stateActionType.d.ts +2 -1
  245. package/esm/dropdownRaw/stateReducer/stateActionType.js +1 -0
  246. package/esm/dropdownRaw/stateReducer/stateReducer.d.ts +6 -1
  247. package/esm/dropdownRaw/stateReducer/stateReducer.js +24 -12
  248. package/esm/dropdownRaw/stateReducer/stateReducerHelper.d.ts +2 -0
  249. package/esm/dropdownRaw/stateReducer/stateReducerHelper.js +18 -0
  250. package/esm/dropdownRaw/stateReducer/stateReducerTestData.d.ts +39 -0
  251. package/esm/dropdownRaw/stateReducer/stateReducerTestData.js +71 -0
  252. package/esm/dropdownRaw/types.d.ts +1 -0
  253. package/esm/favoriteButton/favoriteButton.js +53 -9
  254. package/esm/filters/components/filtersContainer.js +141 -61
  255. package/esm/filters/components/filtersEmptySelectedList.js +24 -3
  256. package/esm/filters/components/filtersSaveModal.js +134 -41
  257. package/esm/filters/components/filtersSavedChipComponent.js +312 -107
  258. package/esm/filters/components/filtersSearchItemData.js +121 -46
  259. package/esm/filters/components/filtersSearchList.js +375 -178
  260. package/esm/filters/components/filtersSelect.js +122 -60
  261. package/esm/filters/components/filtersSelectListItem.js +119 -12
  262. package/esm/filters/components/filtersSidePanel.js +504 -177
  263. package/esm/filters/components/filtersSidePanelDropdown.js +2 -2
  264. package/esm/filters/filters.js +435 -265
  265. package/esm/filtersBar/components/filtersBarPeriodPicker/getRangeOption.js +722 -270
  266. package/esm/filtersBar/components/resetComponentButton.js +39 -4
  267. package/esm/filtersBar/filtersBarActions/filtersBarActions.js +120 -14
  268. package/esm/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRadioGroup/filtersBarSidePanelRadioGroup.js +2 -2
  269. package/esm/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRange/filtersBarSidePanelRange.js +149 -48
  270. package/esm/filtersBar/filtersBarSidePanel/filtersBarSidePanel.js +354 -103
  271. package/esm/filtersBar/filtersContainer/filtersContainer.js +198 -133
  272. package/esm/formField/components/formFieldWithLabel.d.ts +2 -1
  273. package/esm/formField/components/formFieldWithLabel.js +3 -2
  274. package/esm/formField/components/formFieldWithoutLabel.d.ts +2 -1
  275. package/esm/formField/components/formFieldWithoutLabel.js +3 -3
  276. package/esm/formField/components/trailingComponent.d.ts +8 -0
  277. package/esm/formField/components/trailingComponent.js +7 -0
  278. package/esm/formField/formField.js +27 -12
  279. package/esm/formField/hooks/useError.js +94 -35
  280. package/esm/formGroup/components/reviewListToggle/reviewListToggle.js +66 -6
  281. package/esm/formGroup/hooks/useToggle.js +31 -10
  282. package/esm/formGroup/utils/getControls.js +8 -7
  283. package/esm/formLayout/hooks/useError.js +49 -14
  284. package/esm/formLayout/hooks/useFormButtons.js +122 -26
  285. package/esm/formSection/components/formSectionModal.js +1 -1
  286. package/esm/formSection/formSection.js +1 -1
  287. package/esm/formSection/hooks/useError.js +64 -21
  288. package/esm/formStepper/components/formStep.js +59 -9
  289. package/esm/formStepper/formStepper.js +123 -32
  290. package/esm/formStepperButtons/formStepperButtons.js +178 -37
  291. package/esm/groupsFilter/groupsHelper.d.ts +1 -1
  292. package/esm/groupsFilterRaw/groupsFilterAdjustmentState.js +152 -14
  293. package/esm/groupsFilterRaw/groupsFilterBox.js +131 -31
  294. package/esm/groupsFilterRaw/groupsFilterCommon.js +69 -7
  295. package/esm/groupsFilterRaw/groupsFilterCurrentlySelectedState.js +178 -24
  296. package/esm/groupsFilterRaw/groupsFilterHelper.d.ts +2 -1
  297. package/esm/groupsFilterRaw/groupsFilterHelper.js +279 -168
  298. package/esm/groupsFilterRaw/groupsFilterInitialState.js +260 -17
  299. package/esm/groupsFilterRaw/groupsFilterMenu.js +118 -8
  300. package/esm/groupsFilterRaw/groupsFilterRaw.d.ts +1 -0
  301. package/esm/groupsFilterRaw/groupsFilterRaw.js +811 -308
  302. package/esm/groupsFilterRaw/groupsFilterTestData.d.ts +155 -2
  303. package/esm/groupsFilterRaw/groupsFilterTestData.js +152 -57
  304. package/esm/groupsFilterRaw/groupsFilterTrigger.js +133 -34
  305. package/esm/groupsFilterRaw/groupsHelper.js +733 -207
  306. package/esm/groupsFilterRaw/stateReducer/stateReducerHelper.js +3 -1
  307. package/esm/groupsFilterRaw/types.d.ts +1 -0
  308. package/esm/header/components/collapsedItemsControl/collapsedItemsControl.js +101 -51
  309. package/esm/header/components/mobileFilterControl/mobileFilterControl.js +56 -8
  310. package/esm/header/components/mobileSearchControl/mobileSearchControl.js +113 -13
  311. package/esm/header/headerBack.js +58 -19
  312. package/esm/index.d.ts +1 -0
  313. package/esm/index.js +1 -0
  314. package/esm/list/itemData/itemDataInternal.js +210 -50
  315. package/esm/list/listItem/listItem.js +162 -54
  316. package/esm/menu/components/menuErrorItem.js +27 -4
  317. package/esm/mobileSheet/mobileSheet.js +189 -68
  318. package/esm/modal/modal.js +265 -120
  319. package/esm/nav/nav.js +1 -1
  320. package/esm/nav/navFooter/navFooter.js +76 -38
  321. package/esm/nav/navFooter/navFooterAction/navFooterAction.js +46 -12
  322. package/esm/nav/navHeader/navHeader.js +80 -35
  323. package/esm/nav/navHeader/navHeaderSearch/navHeaderSearch.js +82 -28
  324. package/esm/nav/navItem/navItem.d.ts +3 -3
  325. package/esm/nav/navItem/navItem.js +35 -33
  326. package/esm/nav/navMobileBar/navMobileBar.js +61 -20
  327. package/esm/notification/notification.js +114 -18
  328. package/esm/pagination/paginationArrow.js +75 -10
  329. package/esm/pagination/paginationText/paginationText.js +39 -10
  330. package/esm/pill/components/pillNonActionable/pillNonActionable.js +87 -23
  331. package/esm/pillBox/components/pillBoxItem.js +46 -8
  332. package/esm/pillBox/pillBox.js +115 -19
  333. package/esm/pillExpandable/pillExpandable.js +327 -138
  334. package/esm/rangeRaw/rangeRaw.js +480 -140
  335. package/esm/rangeRaw/utils/rangeHelper.js +203 -38
  336. package/esm/searchInputRaw/searchInputRaw.js +145 -43
  337. package/esm/skeleton/skeleton.js +45 -5
  338. package/esm/sortControl/sortControl.js +146 -41
  339. package/esm/stepperRaw/stepperRaw.js +112 -41
  340. package/esm/storybookHelpers/dataGridWithDifferentCellOptions/components/EntitiesListAction.js +178 -19
  341. package/esm/summary/summary.js +88 -7
  342. package/esm/table/actions/actionsMenu.js +165 -77
  343. package/esm/table/flexible/columnSettings.js +74 -9
  344. package/esm/table/flexible/columnsList.js +104 -42
  345. package/esm/table/flexible/columnsPopup.js +71 -19
  346. package/esm/table/nested/useNestedRows.js +161 -76
  347. package/esm/table/selectable/selectableHeader.js +174 -40
  348. package/esm/table/selectable/useSelectableRows.js +264 -190
  349. package/esm/table/sortable/sortableHeader.js +147 -74
  350. package/esm/tabs/tabs.js +221 -117
  351. package/esm/timePickerRaw/timePickerRaw.js +272 -57
  352. package/esm/toastRaw/toastRaw.js +132 -31
  353. package/esm/toggleButton/toggleButton.d.ts +0 -1
  354. package/esm/toggleButtonRaw/toggleButtonRaw.d.ts +1 -0
  355. package/esm/toggleButtonRaw/toggleButtonRaw.js +111 -18
  356. package/esm/utils/formatDate.js +995 -116
  357. package/{dist/utils/localization/translations/cs-json.js → esm/utils/localization/translations/cs.json} +11 -15
  358. package/{dist/utils/localization/translations/da-DK-json.js → esm/utils/localization/translations/da-DK.json} +31 -26
  359. package/{dist/utils/localization/translations/de-json.js → esm/utils/localization/translations/de.json} +12 -16
  360. package/esm/utils/localization/translations/en.json +308 -0
  361. package/{dist/utils/localization/translations/es-json.js → esm/utils/localization/translations/es.json} +11 -15
  362. package/{dist/utils/localization/translations/fi-FI-json.js → esm/utils/localization/translations/fi-FI.json} +31 -26
  363. package/{dist/utils/localization/translations/fr-FR-json.js → esm/utils/localization/translations/fr-FR.json} +12 -15
  364. package/{dist/utils/localization/translations/fr-json.js → esm/utils/localization/translations/fr.json} +11 -15
  365. package/{dist/utils/localization/translations/hu-HU-json.js → esm/utils/localization/translations/hu-HU.json} +31 -26
  366. package/{dist/utils/localization/translations/id-json.js → esm/utils/localization/translations/id.json} +11 -16
  367. package/{dist/utils/localization/translations/it-json.js → esm/utils/localization/translations/it.json} +11 -15
  368. package/{dist/utils/localization/translations/ja-json.js → esm/utils/localization/translations/ja.json} +11 -15
  369. package/{dist/utils/localization/translations/ko-KR-json.js → esm/utils/localization/translations/ko-KR.json} +24 -26
  370. package/{dist/utils/localization/translations/ms-json.js → esm/utils/localization/translations/ms.json} +11 -15
  371. package/{dist/utils/localization/translations/nb-NO-json.js → esm/utils/localization/translations/nb-NO.json} +31 -26
  372. package/{dist/utils/localization/translations/nl-json.js → esm/utils/localization/translations/nl.json} +11 -15
  373. package/{dist/utils/localization/translations/pl-json.js → esm/utils/localization/translations/pl.json} +11 -15
  374. package/{dist/utils/localization/translations/pt-BR-json.js → esm/utils/localization/translations/pt-BR.json} +11 -15
  375. package/{dist/utils/localization/translations/sk-SK-json.js → esm/utils/localization/translations/sk-SK.json} +31 -26
  376. package/{dist/utils/localization/translations/sv-json.js → esm/utils/localization/translations/sv.json} +11 -15
  377. package/{dist/utils/localization/translations/th-json.js → esm/utils/localization/translations/th.json} +11 -15
  378. package/{dist/utils/localization/translations/tr-json.js → esm/utils/localization/translations/tr.json} +11 -15
  379. package/{dist/utils/localization/translations/zh-Hans-json.js → esm/utils/localization/translations/zh-Hans.json} +11 -15
  380. package/{dist/utils/localization/translations/zh-TW-json.js → esm/utils/localization/translations/zh-TW.json} +11 -26
  381. package/esm/utils/localization/translationsDictionary.d.ts +2 -0
  382. package/esm/utils/localization/translationsDictionary.js +59 -0
  383. package/esm/utils/localization/useLanguage.js +1 -50
  384. package/package.json +19 -12
  385. package/dist/utils/localization/translations/cs-json.d.ts +0 -251
  386. package/dist/utils/localization/translations/da-DK-json.d.ts +0 -252
  387. package/dist/utils/localization/translations/de-json.d.ts +0 -251
  388. package/dist/utils/localization/translations/en-json.d.ts +0 -314
  389. package/dist/utils/localization/translations/en-json.js +0 -317
  390. package/dist/utils/localization/translations/es-json.d.ts +0 -251
  391. package/dist/utils/localization/translations/fi-FI-json.d.ts +0 -252
  392. package/dist/utils/localization/translations/fr-FR-json.d.ts +0 -250
  393. package/dist/utils/localization/translations/fr-json.d.ts +0 -251
  394. package/dist/utils/localization/translations/hu-HU-json.d.ts +0 -252
  395. package/dist/utils/localization/translations/id-json.d.ts +0 -252
  396. package/dist/utils/localization/translations/it-json.d.ts +0 -251
  397. package/dist/utils/localization/translations/ja-json.d.ts +0 -251
  398. package/dist/utils/localization/translations/ko-KR-json.d.ts +0 -258
  399. package/dist/utils/localization/translations/ms-json.d.ts +0 -251
  400. package/dist/utils/localization/translations/nb-NO-json.d.ts +0 -252
  401. package/dist/utils/localization/translations/nl-json.d.ts +0 -251
  402. package/dist/utils/localization/translations/pl-json.d.ts +0 -251
  403. package/dist/utils/localization/translations/pt-BR-json.d.ts +0 -251
  404. package/dist/utils/localization/translations/sk-SK-json.d.ts +0 -251
  405. package/dist/utils/localization/translations/sv-json.d.ts +0 -251
  406. package/dist/utils/localization/translations/th-json.d.ts +0 -251
  407. package/dist/utils/localization/translations/tr-json.d.ts +0 -251
  408. package/dist/utils/localization/translations/zh-Hans-json.d.ts +0 -251
  409. package/dist/utils/localization/translations/zh-TW-json.d.ts +0 -271
  410. package/esm/utils/localization/translations/cs-json.d.ts +0 -251
  411. package/esm/utils/localization/translations/da-DK-json.d.ts +0 -252
  412. package/esm/utils/localization/translations/de-json.d.ts +0 -251
  413. package/esm/utils/localization/translations/en-json.d.ts +0 -314
  414. package/esm/utils/localization/translations/en-json.js +0 -314
  415. package/esm/utils/localization/translations/es-json.d.ts +0 -251
  416. package/esm/utils/localization/translations/fi-FI-json.d.ts +0 -252
  417. package/esm/utils/localization/translations/fr-FR-json.d.ts +0 -250
  418. package/esm/utils/localization/translations/fr-json.d.ts +0 -251
  419. package/esm/utils/localization/translations/hu-HU-json.d.ts +0 -252
  420. package/esm/utils/localization/translations/id-json.d.ts +0 -252
  421. package/esm/utils/localization/translations/it-json.d.ts +0 -251
  422. package/esm/utils/localization/translations/ja-json.d.ts +0 -251
  423. package/esm/utils/localization/translations/ko-KR-json.d.ts +0 -258
  424. package/esm/utils/localization/translations/ms-json.d.ts +0 -251
  425. package/esm/utils/localization/translations/nb-NO-json.d.ts +0 -252
  426. package/esm/utils/localization/translations/nl-json.d.ts +0 -251
  427. package/esm/utils/localization/translations/pl-json.d.ts +0 -251
  428. package/esm/utils/localization/translations/pt-BR-json.d.ts +0 -251
  429. package/esm/utils/localization/translations/sk-SK-json.d.ts +0 -251
  430. package/esm/utils/localization/translations/sv-json.d.ts +0 -251
  431. package/esm/utils/localization/translations/th-json.d.ts +0 -251
  432. package/esm/utils/localization/translations/tr-json.d.ts +0 -251
  433. package/esm/utils/localization/translations/zh-Hans-json.d.ts +0 -251
  434. package/esm/utils/localization/translations/zh-TW-json.d.ts +0 -271
@@ -1,6 +1,5 @@
1
- export const translations = {
1
+ {
2
2
  "Cancel": "Zrušit",
3
- "Apply filters": "Použít filtry",
4
3
  "Advanced groups filter": "Rozšířený filtr skupin",
5
4
  "Create conditions below to filter the entire system.": "Níže vytvořte podmínky pro filtrování celého systému.",
6
5
  "Add new condition": "Přidat novou podmínku",
@@ -81,18 +80,11 @@ export const translations = {
81
80
  "Selected:": "Vybráno:",
82
81
  "All": "Vše",
83
82
  "There was an issue preparing your report": "Při připravování výkazu došlo k problému",
84
- "Try again or see more details on the My Reports page.": "Zkuste to znovu nebo zjistěte další podrobnosti na stránce Moje výkazy.",
85
83
  "Your report is being prepared": "Váš výkaz se připravuje",
86
84
  "We will notify you when your report is ready. You can track the progress by going to the My Reports page.": "Až bude váš výkaz připraven, upozorníme vás. Průběh můžete sledovat na stránce Moje výkazy.",
87
85
  "Your report is ready to download": "Váš výkaz je připraven ke stažení",
88
86
  "Download now": "Stáhnout",
89
- "Prepare for download": "Připravit ke stažení",
90
87
  "Download": "Stáhnout",
91
- "More formats": "Více formátů",
92
- "Show report formats": "Zobrazit formáty výkazů",
93
- "Prepare PDF": "Připravit soubor PDF",
94
- "Download PDF": "Stáhnout PDF",
95
- "List": "Seznam",
96
88
  "Sort by": "Řadit podle",
97
89
  "Change sort direction": "Změnit směr řazení",
98
90
  "Select hour": "Vybrat hodiny",
@@ -196,7 +188,6 @@ export const translations = {
196
188
  "Range Filter popup": "Vyskakovací okno Filtr rozmezí",
197
189
  "{rangeName} values {values}": "{rangeName} v hodnotě {values}",
198
190
  "Try adjusting your search or filter.": "Zkuste upravit své vyhledávání nebo filtr.",
199
- "Change daterange end date, {date}": "Změňte datum konce hodnoty daterange, {date}",
200
191
  "Change date, {date}": "Změňte datum, {date}",
201
192
  "Date range": "Rozmezí dat",
202
193
  "The end date cannot be empty.": "Datum konce nemůže být prázdné.",
@@ -247,5 +238,13 @@ export const translations = {
247
238
  "Selected": "Vybráno",
248
239
  "This field is required.": "Toto pole je povinné.",
249
240
  "On": "Zapnout",
250
- "Off": "Vypnout"
251
- };
241
+ "Off": "Vypnout",
242
+ "Scroll left": "Přejít doleva",
243
+ "Scroll right": "Přejít doprava",
244
+ "Send feedback": "Odeslat zpětnou vazbu",
245
+ "Save": "Uložit",
246
+ "Remove": "Odebrat",
247
+ "Confirm": "Potvrdit",
248
+ "Clear all": "Vymazat vše",
249
+ "Reload": "Načíst znovu"
250
+ }
@@ -1,6 +1,5 @@
1
- export const translations = {
1
+ {
2
2
  "Cancel": "Annuller",
3
- "Apply filters": "Anvend filtre",
4
3
  "Advanced groups filter": "Avanceret grupperfilter",
5
4
  "Create conditions below to filter the entire system.": "Lav de nedenstående betingelser for at filtrere hele systemet.",
6
5
  "Add new condition": "Tilføj ny betingelse",
@@ -13,8 +12,6 @@ export const translations = {
13
12
  "Or": "Eller",
14
13
  "Expand": "Udvid",
15
14
  "View all": "Se alle",
16
- "Use multiple operators when searching for a specific group. For example": "Brug flere operatorer, når du søger efter en bestemt gruppe. For eksempel",
17
- "filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.": "Hvis du filtrerer efter aktiver, der tilhører gruppen Traktor og Toronto, vises en liste over traktorer, der tilhører Toronto-grenen.",
18
15
  "Beta": "Beta",
19
16
  "Add page to bookmarks": "Føj side til bogmærker",
20
17
  "Remove page from bookmarks": "Fjern side fra bogmærker",
@@ -26,9 +23,6 @@ export const translations = {
26
23
  "Select year": "Vælg år",
27
24
  "Previous month": "Forrige måned",
28
25
  "Next month": "Næste måned",
29
- "Choose daterange end date": "Vælg datointerval slutdato",
30
- "Choose daterange start date": "Vælg startdato for datointerval",
31
- "Change date": "Skift dato",
32
26
  "Choose date": "Vælg dato",
33
27
  "January": "Januar",
34
28
  "February": "Februar",
@@ -48,7 +42,6 @@ export const translations = {
48
42
  "Number of selected child groups - {count}": "Antal valgte underordnede grupper - {count}",
49
43
  "Columns": "Kolonner",
50
44
  "Reset to default": "Nulstil til standard",
51
- "Columns selector": "Kolonnevælger",
52
45
  "Additional Properties": "Yderligere egenskaber",
53
46
  "Action": "Handling",
54
47
  "Pick a date": "Vælg en dato",
@@ -94,23 +87,11 @@ export const translations = {
94
87
  "All": "Alle",
95
88
  "Go to My Reports": "Gå til Mine rapporter",
96
89
  "There was an issue preparing your report": "Der opstod et problem med at lave din rapport.",
97
- "Try again or see more details on the My Reports page.": "Prøv igen, eller tjek siden 'Mine rapporter' for flere detaljer.",
98
90
  "Your report is being prepared": "Din rapport er ved at blive lavet.",
99
91
  "We will notify you when your report is ready. You can track the progress by going to the My Reports page.": "Vi giver dig besked, når din rapport er klar. Du kan tjekke status på siden 'Mine rapporter'.",
100
92
  "Your report is ready to download": "Din rapport er klar til download",
101
- "Download your report now": "Download din rapport nu",
102
- "or see more details on the My Reports page.": "eller se flere detaljer på siden Mine rapporter.",
103
93
  "Download now": "Download nu",
104
- "Prepare for download": "Gør dig klar til download",
105
94
  "Download": "Download",
106
- "More formats": "Flere formater",
107
- "Show report formats": "Vis rapportformater",
108
- "Prepare PDF": "Forbered PDF",
109
- "Download PDF": "Download PDF",
110
- "View in Browser": "Se i browser",
111
- "Search field": "Søgefelt",
112
- "List": "Liste",
113
- "Open search": "Åbn søgning",
114
95
  "Sort by": "Sorter efter",
115
96
  "Sort Options": "Sorteringsmuligheder",
116
97
  "Change sort direction": "Skift sorteringsretning",
@@ -158,7 +139,6 @@ export const translations = {
158
139
  "Delete": "Slet",
159
140
  "Archive": "Arkiv",
160
141
  "More actions for {0}": "Flere handlinger for {0}",
161
- "Change daterange end date, {date}": "Skift slutdato for datointerval, {date}",
162
142
  "Change date, {date}": "Skift dato, {date}",
163
143
  "Max": "Maks",
164
144
  "Min": "Min",
@@ -248,5 +228,33 @@ export const translations = {
248
228
  "Collapse": "Fold sammen",
249
229
  "Column Settings": "Kolonneindstillinger",
250
230
  "Category": "Kategori",
251
- "Select visible columns": "Vælg synlige kolonner"
252
- };
231
+ "Select visible columns": "Vælg synlige kolonner",
232
+ "Value": "Værdi",
233
+ "Data": "Data",
234
+ "Configure": "Konfigurér",
235
+ "Close filter": "Luk filter",
236
+ "No data available": "Ingen data tilgængelige",
237
+ "Save": "Spare",
238
+ "Remove": "Fjerne",
239
+ "Confirm": "Bekræfte",
240
+ "Clear all": "Ryd alt",
241
+ "Selected": "Valgt",
242
+ "Monday": "mandag",
243
+ "Tuesday": "tirsdag",
244
+ "Wednesday": "onsdag",
245
+ "Thursday": "torsdag",
246
+ "Friday": "fredag",
247
+ "Saturday": "lørdag",
248
+ "Sunday": "søndag",
249
+ "Mon": "man",
250
+ "Tue": "Tirsdag",
251
+ "Wed": "Ons",
252
+ "Thu": "Torsdag",
253
+ "Fri": "Fre",
254
+ "Sat": "Lør",
255
+ "Sun": "Sol",
256
+ "This field is required.": "Dette felt er påkrævet.",
257
+ "On": "På",
258
+ "Off": "Slukket",
259
+ "Reload": "Genindlæs"
260
+ }
@@ -1,6 +1,5 @@
1
- export const translations = {
1
+ {
2
2
  "Cancel": "Abbrechen",
3
- "Apply filters": "Filter anwenden",
4
3
  "Advanced groups filter": "Erweiterte Gruppenfilter",
5
4
  "Create conditions below to filter the entire system.": "Erstellen Sie unten Bedingungen, um das gesamte System zu filtern.",
6
5
  "Add new condition": "Neue Bedingung hinzufügen",
@@ -81,18 +80,11 @@ export const translations = {
81
80
  "Selected:": "Ausgewählte Fahrer",
82
81
  "All": "Alle",
83
82
  "There was an issue preparing your report": "Beim Vorbereiten Ihres Berichts ist ein Problem aufgetreten.",
84
- "Try again or see more details on the My Reports page.": "Versuchen Sie es erneut oder sehen Sie sich auf der Seite „Meine Berichte“ weitere Details an.",
85
83
  "Your report is being prepared": "Ihr Bericht wird vorbereitet",
86
84
  "We will notify you when your report is ready. You can track the progress by going to the My Reports page.": "Wir werden Sie benachrichtigen, sobald Ihr Bericht fertig ist. Sie können den Fortschritt auf der Seite „Meine Berichte“ verfolgen.",
87
85
  "Your report is ready to download": "Ihr Bericht kann heruntergeladen werden.",
88
86
  "Download now": "Jetzt herunterladen",
89
- "Prepare for download": "Download vorbereiten",
90
87
  "Download": "Herunterladen",
91
- "More formats": "Mehr Formate",
92
- "Show report formats": "Berichtsformate anzeigen",
93
- "Prepare PDF": "PDF vorbereiten",
94
- "Download PDF": "PDF herunterladen",
95
- "List": "Liste",
96
88
  "Sort by": "Sortieren nach",
97
89
  "Change sort direction": "Sortierrichtung ändern",
98
90
  "Select hour": "Stunde auswählen",
@@ -123,7 +115,6 @@ export const translations = {
123
115
  "GroupFuelCellElectricVehicleId": "Brennstoffzellenfahrzeug",
124
116
  "{1} selected": "{1} ausgewählt",
125
117
  "and {0} more": "und {0} weitere",
126
- "Clear selections": "Serienfunktionen schließen",
127
118
  "Select current page": "Aktuelle Seite auswählen",
128
119
  "OperatorOr": "ODER",
129
120
  "OperatorAnd": "UND",
@@ -196,7 +187,6 @@ export const translations = {
196
187
  "Range Filter popup": "Bereichsfilter-Popup",
197
188
  "{rangeName} values {values}": "{rangeName}-Werte {values}",
198
189
  "Try adjusting your search or filter.": "Versuchen Sie, die Suche oder Filter anzupassen.",
199
- "Change daterange end date, {date}": "Enddatum Datumsbereich ändern, {date}",
200
190
  "Change date, {date}": "Datum ändern, {date}",
201
191
  "Date range": "Datumsbereich",
202
192
  "The end date cannot be empty.": "Das Enddatum kann nicht leer bleiben",
@@ -247,5 +237,14 @@ export const translations = {
247
237
  "Selected": "Ausgewählt",
248
238
  "This field is required.": "Dieses Feld ist erforderlich.",
249
239
  "On": "Ein",
250
- "Off": "Aus"
251
- };
240
+ "Off": "Aus",
241
+ "Scroll left": "Nach links scrollen",
242
+ "Scroll right": "Nach rechts scrollen",
243
+ "Clear selection": "Auswahl löschen",
244
+ "Send feedback": "Feedback senden",
245
+ "Save": "Speichern",
246
+ "Remove": "Entfernen",
247
+ "Confirm": "Bestätigen",
248
+ "Clear all": "Alle löschen",
249
+ "Reload": "Neu laden"
250
+ }
@@ -0,0 +1,308 @@
1
+ {
2
+ "Cancel": "Cancel",
3
+ "Advanced groups filter": "Advanced groups filter",
4
+ "Create conditions below to filter the entire system.": "Create conditions below to filter the entire system.",
5
+ "Add new condition": "Add new condition",
6
+ "Operator": "Operator",
7
+ "Information": "Information",
8
+ "Groups": "Groups",
9
+ "Remove condition": "Remove condition",
10
+ "Remove selection": "Remove selection",
11
+ "And": "And",
12
+ "Or": "Or",
13
+ "Expand": "Expand",
14
+ "View all": "View all",
15
+ "Beta": "Beta",
16
+ "Add page to bookmarks": "Add page to bookmarks",
17
+ "Remove page from bookmarks": "Remove page from bookmarks",
18
+ "Multiple Selection Menu": "Multiple Selection Menu",
19
+ "Select visible": "Select visible",
20
+ "Select individual": "Select individual",
21
+ "Select all": "Select all",
22
+ "Select none": "Select none",
23
+ "Select year": "Select year",
24
+ "Previous month": "Previous month",
25
+ "Next month": "Next month",
26
+ "Choose end date": "Choose end date",
27
+ "Choose start date": "Choose start date",
28
+ "Choose date": "Choose date",
29
+ "January": "January",
30
+ "February": "February",
31
+ "March": "March",
32
+ "April": "April",
33
+ "May": "May",
34
+ "June": "June",
35
+ "July": "July",
36
+ "August": "August",
37
+ "September": "September",
38
+ "October": "October",
39
+ "November": "November",
40
+ "December": "December",
41
+ "Actions": "Actions",
42
+ "View {groupName} children": "View {groupName} children",
43
+ "Toggle {groupName} filter": "Toggle {groupName} filter",
44
+ "Number of selected child groups - {count}": "Number of selected child groups - {count}",
45
+ "Columns": "Columns",
46
+ "Reset to default": "Reset to default",
47
+ "Additional Properties": "Additional Properties",
48
+ "Action": "Action",
49
+ "Pick a date": "Pick a date",
50
+ "Start date": "Start date",
51
+ "End date": "End date",
52
+ "Clear": "Clear",
53
+ "Reset": "Reset",
54
+ "Apply": "Apply",
55
+ "Close": "Close",
56
+ "Deselect all": "Deselect all",
57
+ "Back": "Back",
58
+ "No data": "No data",
59
+ "Filter by group": "Filter by group",
60
+ "Open filter": "Open filter",
61
+ "Clear search": "Clear search",
62
+ "Search": "Search",
63
+ "Scroll left": "Scroll left",
64
+ "Scroll right": "Scroll right",
65
+ "Organization groups filter": "Organization groups filter",
66
+ "Home": "Home",
67
+ "Built-in Groups": "Built-in Groups",
68
+ "User Groups": "User Groups",
69
+ "Advanced Filter": "Advanced Filter",
70
+ "Currently Selected": "Currently Selected",
71
+ "All groups": "All groups",
72
+ "Apply site-wide": "Apply site-wide",
73
+ "Advanced": "Advanced",
74
+ "AND": "AND",
75
+ "OR": "OR",
76
+ "View currently selected filters": "View currently selected filters",
77
+ "All groups selected": "All groups selected",
78
+ "Number of selected groups - {count}": "Number of selected groups - {count}",
79
+ "Select Filters:": "Select Filters:",
80
+ "Results": "Results",
81
+ "More": "More",
82
+ "Show all filters": "Show all filters",
83
+ "Cancel search": "Cancel search",
84
+ "Show page search": "Show page search",
85
+ "Previous page": "Previous page",
86
+ "Next page": "Next page",
87
+ "Showing {from} - {to} of {total}": "Showing {from} - {to} of {total}",
88
+ "Selected:": "Selected:",
89
+ "All": "All",
90
+ "Go to My Reports": "Go to My Reports",
91
+ "There was an issue preparing your report": "There was an issue preparing your report",
92
+ "Your report is being prepared": "Your report is being prepared",
93
+ "We will notify you when your report is ready. You can track the progress by going to the My Reports page.": "We will notify you when your report is ready. You can track the progress by going to the My Reports page.",
94
+ "Your report is ready to download": "Your report is ready to download",
95
+ "Download now": "Download now",
96
+ "Download": "Download",
97
+ "Sort by": "Sort by",
98
+ "Sort Options": "Sort Options",
99
+ "Change sort direction": "Change sort direction",
100
+ "Select hour": "Select hour",
101
+ "Select minutes": "Select minutes",
102
+ "Cancel changes": "Cancel changes",
103
+ "Apply changes": "Apply changes",
104
+ "Custom": "Custom",
105
+ "Try adjusting your search or filter.": "Try adjusting your search or filter.",
106
+ "{1} selected": "{1} selected",
107
+ "GroupCompanyId": "Company group",
108
+ "GroupDriverActivityGroupId": "Driver activity",
109
+ "GroupBusinessGroupId": "Business",
110
+ "GroupPersonalGroupId": "Personal",
111
+ "GroupAssetInformationId": "Asset Information",
112
+ "GroupAssetTypeId": "Asset Type",
113
+ "GroupVehicleId": "Vehicle",
114
+ "GroupTrailerId": "Trailer",
115
+ "GroupPowertrainAndFuelTypeId": "Powertrain and Fuel Type",
116
+ "GroupInternalCombustionEngineId": "Internal Combustion Engine",
117
+ "GroupGasolinePetrolId": "Gasoline or Petrol",
118
+ "GroupDieselId": "Diesel",
119
+ "GroupEthanolId": "Ethanol",
120
+ "GroupBiodieselId": "Biodiesel",
121
+ "GroupCompressedNaturalGasId": "Compressed Natural Gas",
122
+ "GroupOtherFuelId": "Other Fuel Type",
123
+ "GroupPropaneLiquifiedPetroleumGasId": "Propane or Liquified Petroleum Gas",
124
+ "GroupElectricHybridPluginId": "Electric or Plug-in Hybrid",
125
+ "GroupBatteryElectricVehicleId": "Battery Electric Vehicle",
126
+ "GroupPluginHybridElectricVehicleId": "Plug-in Hybrid Electric Vehicle",
127
+ "GroupManuallyClassifiedPowertrainId": "Manually Classified Powertrain",
128
+ "GroupFuelCellElectricVehicleId": "Fuel Cell Electric Vehicle",
129
+ "and {0} more": "and {0} more",
130
+ "Clear selection": "Clear selection",
131
+ "Select current page": "Select current page",
132
+ "OperatorOr": "OR",
133
+ "OperatorAnd": "AND",
134
+ "Select groups…": "Select groups…",
135
+ "Sort by {COLUMN_NAME} descending": "Sort by {COLUMN_NAME} descending",
136
+ "Sort by {COLUMN_NAME} ascending": "Sort by {COLUMN_NAME} ascending",
137
+ "Multiple row selection menu": "Multiple row selection menu",
138
+ "Convert table to full screen": "Convert table to full screen",
139
+ "View on map": "View on map",
140
+ "Edit": "Edit",
141
+ "Delete": "Delete",
142
+ "Archive": "Archive",
143
+ "More actions for {0}": "More actions for {0}",
144
+ "Change date, {date}": "Change date, {date}",
145
+ "Max": "Max",
146
+ "Min": "Min",
147
+ "Today": "Today",
148
+ "Yesterday": "Yesterday",
149
+ "This week": "This week",
150
+ "Next week": "Next week",
151
+ "Last week": "Last week",
152
+ "This month": "This month",
153
+ "Last month": "Last month",
154
+ "Last 3 months": "Last 3 months",
155
+ "Last 7 days": "Last 7 days",
156
+ "Last 30 days": "Last 30 days",
157
+ "Last 12 months": "Last 12 months",
158
+ "Last quarter": "Last quarter",
159
+ "This quarter": "This quarter",
160
+ "This year": "This year",
161
+ "Last year": "Last year",
162
+ "ShortMonday": "M",
163
+ "ShortTuesday": "T",
164
+ "ShortWednesday": "W",
165
+ "ShortThursday": "T",
166
+ "ShortFriday": "F",
167
+ "ShortSaturday": "S",
168
+ "ShortSunday": "S",
169
+ "Date range": "Date range",
170
+ "Use multiple operators when searching for a specific group. For example, filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.": "Use multiple Operators when searching for a specific group. For example, filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.",
171
+ "Select columns": "Select columns",
172
+ "Must be less than the max": "Must be less than the max",
173
+ "Must be more than the min": "Must be more than the min",
174
+ "Must be more than {value}": "Must be more than {value}",
175
+ "Must be less than {value}": "Must be less than {value}",
176
+ "Must be in range {min} - {max}": "Must be in the {min} - {max} range",
177
+ "The min value must be set": "The min value must be set",
178
+ "The max value must be set": "The max value must be set",
179
+ "Range Filter popup": "Range Filter popup",
180
+ "{rangeName} values {values}": "{rangeName} values {values}",
181
+ "The end date cannot be empty.": "The End date cannot be empty.",
182
+ "The start date cannot be empty.": "The Start date cannot be empty.",
183
+ "The date must be set": "The date must be set.",
184
+ "The time must be set": "The time must be set.",
185
+ "Selecting...": "Selecting...",
186
+ "Reset column settings": "Reset column settings",
187
+ "Filters": "Filters",
188
+ "Start date has been adjusted.": "Start date has been adjusted.",
189
+ "End date has been adjusted.": "End date has been adjusted.",
190
+ "Start time has been adjusted.": "Start time has been adjusted.",
191
+ "End time has been adjusted.": "End time has been adjusted.",
192
+ "Jan": "Jan",
193
+ "Feb": "Feb",
194
+ "Mar": "Mar",
195
+ "Apr": "Apr",
196
+ "Jun": "Jun",
197
+ "Jul": "Jul",
198
+ "Aug": "Aug",
199
+ "Sep": "Sep",
200
+ "Oct": "Oct",
201
+ "Nov": "Nov",
202
+ "Dec": "Dec",
203
+ "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.": "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.",
204
+ "Send feedback": "Send feedback",
205
+ "Manage beta option": "Manage beta option",
206
+ "Ma": "May",
207
+ "Y-axis": "Y-axis",
208
+ "X-axis": "X-axis",
209
+ "Previous": "Previous",
210
+ "Next": "Next",
211
+ "Choose dates": "Choose dates",
212
+ "Date range not available": "Date range not available",
213
+ "Choose your date range": "Choose your date range",
214
+ "Some of the dates you selected aren’t available. Please try a different range.": "Some of the dates you selected aren’t available. Please try a different range.",
215
+ "Please select the dates you want to view.": "Please select the dates you want to view.",
216
+ "Open": "Open",
217
+ "Favorite": "Favorite",
218
+ "All Filters": "All Filters",
219
+ "Reset All": "Reset all",
220
+ "Loading": "Loading",
221
+ "Select option": "Select option",
222
+ "Value": "Value",
223
+ "Data": "Data",
224
+ "Previous step": "Previous step",
225
+ "Continue": "Continue",
226
+ "Submit": "Submit",
227
+ "Optional": "Optional",
228
+ "Step {0} of {1}": "Step {0} of {1}",
229
+ "Error Loading Items": "Error Loading Items",
230
+ "Summary color": "Summary color",
231
+ "Chart data": "Chart data",
232
+ "Collapse": "Collapse",
233
+ "Configure": "Configure",
234
+ "Close filter": "Close filter",
235
+ "Error with loading": "Error with loading",
236
+ "Click to refresh": "Click to refresh",
237
+ "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range": "Chart contains too many data points so their number has been reduced. If you want to see more, change the Report Range",
238
+ "from {FROM} at {X0} to {TO} at {X}.": "from {FROM} at {X0} to {TO} at {X}.",
239
+ "shows a complex trend with multiple segments:": "shows a complex trend with multiple segments:",
240
+ "shows a relatively flat or stable trend.": "shows a relatively flat or stable trend.",
241
+ "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.": "switched {TRANSITIONS} times between two states: {STATE1} and {STATE2}.",
242
+ "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.": "Segment {INDEX} {DIRECTION} from {FROM} at {X0} to {TO} at {X}.",
243
+ "Highest point(s):": "Highest point(s):",
244
+ "Lowest point(s):": "Lowest point(s):",
245
+ "Only one data point: value is {VALUE}.": "Only one data point: value is {VALUE}.",
246
+ "Average value is:": "Average value is:",
247
+ "No data available": "No data available",
248
+ "value changes in the range from {MIN} to {MAX}.": "value changes in the range from {MIN} to {MAX}.",
249
+ "Error generating chart narrative for dataset": "Error generating chart narrative for dataset",
250
+ "Chart data table and visualization": "Chart data table and visualization",
251
+ "Search page": "Search page",
252
+ "Search by": "Search by",
253
+ "Save": "Save",
254
+ "Remove": "Remove",
255
+ "Save filters": "Save filters",
256
+ "Remove saved {name} filter?": "Remove saved {name} filter?",
257
+ "Saved filters": "Saved filters",
258
+ "Confirm": "Confirm",
259
+ "Save new filters": "Save new filters",
260
+ "Save new": "Save new",
261
+ "Filter title": "Filter title",
262
+ "Title already in use": "Title already in use",
263
+ "Recent searches": "Recent searches",
264
+ "View history": "View history",
265
+ "Clear all": "Clear all",
266
+ "Pin": "Pin",
267
+ "Setting conditions": "Setting conditions",
268
+ "Edit Navigation": "Edit Navigation",
269
+ "Expand Navigation": "Expand Navigation",
270
+ "Collapse Navigation": "Collapse Navigation",
271
+ "Column Settings": "Column Settings",
272
+ "Category": "Category",
273
+ "Date range filter:": "Date range filter:",
274
+ "Date filter:": "Date filter:",
275
+ "Select visible columns": "Select visible columns",
276
+ "Selected": "Selected",
277
+ "No Filters Selected": "No Filters Selected",
278
+ "Selected filters will appear here.": "Selected filters will appear here.",
279
+ "Currently selected": "Currently selected",
280
+ "Top results": "Top results",
281
+ "Open setting conditions popup": "Open setting conditions popup",
282
+ "Close setting conditions popup": "Close setting conditions popup",
283
+ "This field is required.": "This field is required.",
284
+ "On": "On",
285
+ "Off": "Off",
286
+ "Sub-options are not active.": "Sub-options are not active.",
287
+ "Reload": "Reload",
288
+ "Could not load field data": "Could not load field data",
289
+ "Failed to load section": "Failed to load section",
290
+ "Please reload this section to try again. If the issue persists, contact Support.": "Please reload this section to try again. If the issue persists, contact Support.",
291
+ "Failed to load page": "Failed to load page",
292
+ "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.",
293
+ "Failed to load {0}": "Failed to load {0}",
294
+ "Monday": "Monday",
295
+ "Tuesday": "Tuesday",
296
+ "Wednesday": "Wednesday",
297
+ "Thursday": "Thursday",
298
+ "Friday": "Friday",
299
+ "Saturday": "Saturday",
300
+ "Sunday": "Sunday",
301
+ "Mon": "Mon",
302
+ "Tue": "Tue",
303
+ "Wed": "Wed",
304
+ "Thu": "Thu",
305
+ "Fri": "Fri",
306
+ "Sat": "Sat",
307
+ "Sun": "Sun"
308
+ }
@@ -1,6 +1,5 @@
1
- export const translations = {
1
+ {
2
2
  "Cancel": "Cancelar",
3
- "Apply filters": "Aplicar filtros",
4
3
  "Advanced groups filter": "Filtro de grupos avanzado",
5
4
  "Create conditions below to filter the entire system.": "Cree condiciones a continuación para filtrar todo el sistema.",
6
5
  "Add new condition": "Añadir condición nueva",
@@ -81,18 +80,11 @@ export const translations = {
81
80
  "Selected:": "Seleccionado:",
82
81
  "All": "Todo",
83
82
  "There was an issue preparing your report": "Hubo un problema al preparar el reporte",
84
- "Try again or see more details on the My Reports page.": "Inténtelo de nuevo o vea más detalles en la página Mis reportes.",
85
83
  "Your report is being prepared": "Se está preparando su reporte",
86
84
  "We will notify you when your report is ready. You can track the progress by going to the My Reports page.": "Le notificaremos cuando su reporte esté listo. Puede realizar un seguimiento del progreso en la página Mis reportes.",
87
85
  "Your report is ready to download": "Su reporte está listo para descargar",
88
86
  "Download now": "Descargar ahora",
89
- "Prepare for download": "Preparar para la descarga",
90
87
  "Download": "Descargar",
91
- "More formats": "Más formatos",
92
- "Show report formats": "Mostrar formatos de reportes",
93
- "Prepare PDF": "Preparar PDF",
94
- "Download PDF": "Descargar PDF",
95
- "List": "Lista",
96
88
  "Sort by": "Ordenar por",
97
89
  "Change sort direction": "Cambiar dirección de orden",
98
90
  "Select hour": "Seleccionar hora",
@@ -196,7 +188,6 @@ export const translations = {
196
188
  "Range Filter popup": "Ventana emergente filtro de rango",
197
189
  "{rangeName} values {values}": "{rangeName} con valores {values}",
198
190
  "Try adjusting your search or filter.": "Pruebe ajustar la búsqueda o el filtro.",
199
- "Change daterange end date, {date}": "Cambiar fecha de finalización del rango de fechas, {date}",
200
191
  "Change date, {date}": "Cambiar fecha, {date}",
201
192
  "Date range": "Intervalo de fechas",
202
193
  "The end date cannot be empty.": "La fecha de finalización no puede estar vacía.",
@@ -247,5 +238,13 @@ export const translations = {
247
238
  "Selected": "Seleccionado",
248
239
  "This field is required.": "Este campo es obligatorio.",
249
240
  "On": "Activar",
250
- "Off": "Desactivar"
251
- };
241
+ "Off": "Desactivar",
242
+ "Scroll left": "Desplazarse a la izquierda",
243
+ "Scroll right": "Desplazarse a la derecha",
244
+ "Send feedback": "Enviar comentarios",
245
+ "Save": "Guardar",
246
+ "Remove": "Eliminar",
247
+ "Confirm": "Confirmar",
248
+ "Clear all": "Borrar todo",
249
+ "Reload": "Volver a cargar"
250
+ }