@geotab/zenith 3.10.0-beta.7 → 3.11.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.
- package/README.md +33 -0
- package/dist/calendar/calendar.js +7 -4
- package/dist/card/components/title.js +4 -1
- package/dist/card/components/titleLink.js +5 -2
- package/dist/chart/barChart/getDefaultOptions.d.ts +2 -1
- package/dist/chart/barChart/getDefaultOptions.js +5 -2
- package/dist/chart/barChart.js +6 -4
- package/dist/chart/lineChart/getDefaultOptions.d.ts +2 -1
- package/dist/chart/lineChart/getDefaultOptions.js +5 -2
- package/dist/chart/lineChart.js +4 -2
- package/dist/checkboxListWithAction/checkboxListWithAction.js +4 -1
- package/dist/commonHelpers/arrowNavigation/components/arrowButton/arrowButton.js +4 -1
- package/dist/commonStyles/pillStyles/pillContent.less +13 -14
- package/dist/commonStyles/pillStyles/pillStyles.less +4 -5
- package/dist/commonStyles/pillStyles/pillTextContent.less +2 -2
- package/dist/commonStyles/typography/typography.less +579 -19
- package/dist/controlledPopup/controlledPopup.d.ts +1 -0
- package/dist/controlledPopup/controlledPopup.js +3 -1
- package/dist/dataGrid/cell/cell.d.ts +2 -1
- package/dist/dataGrid/cell/cell.js +2 -2
- package/dist/dataGrid/dataGrid.js +7 -4
- package/dist/dataGrid/listColumn.d.ts +2 -0
- package/dist/dataGrid/row/row.d.ts +2 -1
- package/dist/dataGrid/row/row.js +13 -9
- package/dist/dataGrid/withFlexibleColumns/components/columnSettingsList.js +2 -1
- package/dist/dataGrid/withSelectableRows/components/bulkActions/bulkActions.d.ts +4 -0
- package/dist/dateRangeInner/dateRangeInner.js +5 -2
- package/dist/dateRangeRaw/dateRangeRaw.js +5 -2
- package/dist/dateRangeRaw/utils/parseLabel.js +1 -1
- package/dist/dropdownRaw/dropdownRaw.js +12 -6
- package/dist/fileUpload/components/dropZoneContent.js +100 -100
- package/dist/fileUpload/fileUpload.js +100 -100
- package/dist/filters/components/filtersSearchList.js +4 -1
- package/dist/filtersBar/filtersContainer/filtersContainer.js +62 -61
- package/dist/formStepperButtons/formStepperButtons.js +4 -1
- package/dist/groupsFilterRaw/groupsFilterAdjustmentState.js +4 -1
- package/dist/groupsFilterRaw/groupsFilterInitialState.js +4 -1
- package/dist/header/headerBack.js +4 -1
- package/dist/icons/iconAlignLeft.js +1 -3
- package/dist/icons/iconAlignmentLeft.js +1 -3
- package/dist/icons/iconAlignmentRight.js +1 -3
- package/dist/icons/iconArrowBottomLeft.js +1 -3
- package/dist/icons/iconArrowBottomRight.js +1 -3
- package/dist/icons/iconArrowLeftPath.js +1 -3
- package/dist/icons/iconArrowRight.js +1 -3
- package/dist/icons/iconArrowRightCircle.js +1 -3
- package/dist/icons/iconArrowRightPath.js +1 -3
- package/dist/icons/iconArrowTopLeft.js +1 -3
- package/dist/icons/iconArrowTopRight.js +1 -3
- package/dist/icons/iconChevronDoubleRight.js +1 -3
- package/dist/icons/iconChevronRight.js +1 -3
- package/dist/icons/iconChevronRightSmall.js +1 -3
- package/dist/icons/iconCornerDownLeft.js +1 -3
- package/dist/icons/iconCornerDownRight.js +1 -3
- package/dist/icons/iconCornerLeftDown.js +1 -3
- package/dist/icons/iconCornerLeftUp.js +1 -3
- package/dist/icons/iconCornerRightDown.js +1 -3
- package/dist/icons/iconCornerRightUp.js +1 -3
- package/dist/icons/iconCornerUpLeft.js +1 -3
- package/dist/icons/iconCornerUpRight.js +1 -3
- package/dist/index.css +3257 -2925
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -1
- package/dist/lineChartMini/lineChartMini.js +15 -3
- package/dist/list/itemData/itemDataInternal.js +4 -1
- package/dist/list/list.d.ts +1 -0
- package/dist/list/list.js +2 -2
- package/dist/list/listItem/listItem.d.ts +1 -3
- package/dist/list/listItem/listItem.js +6 -5
- package/dist/menu/components/controlledMenuList/controlledMenuList.d.ts +27 -0
- package/dist/menu/components/controlledMenuList/controlledMenuList.js +126 -0
- package/dist/menu/components/createControlledMenuList.d.ts +37 -0
- package/dist/menu/components/createControlledMenuList.js +55 -0
- package/dist/menu/components/createMenuItem.d.ts +67 -0
- package/dist/menu/components/createMenuItem.js +97 -0
- package/dist/menu/components/menuButton.js +12 -3
- package/dist/menu/components/menuItem.d.ts +1 -2
- package/dist/menu/components/menuItem.js +20 -74
- package/dist/menu/contexts/usePathContext.d.ts +2 -0
- package/dist/menu/contexts/usePathContext.js +9 -0
- package/dist/menu/controlledMenu.js +8 -175
- package/dist/menu/utils/buildMenuContent.d.ts +2 -0
- package/dist/menu/utils/buildMenuContent.js +38 -0
- package/dist/menu/utils/findContent.d.ts +2 -2
- package/dist/menu/utils/findContent.js +4 -3
- package/dist/menu/utils/getItemLabel.d.ts +2 -0
- package/dist/menu/utils/getItemLabel.js +8 -0
- package/dist/menu/utils/getSafeRel.d.ts +1 -0
- package/dist/menu/utils/getSafeRel.js +14 -0
- package/dist/menu/utils/isMenuItem.d.ts +2 -0
- package/dist/menu/utils/isMenuItem.js +13 -0
- package/dist/menu/utils/isSafeHref.d.ts +1 -0
- package/dist/menu/utils/isSafeHref.js +10 -0
- package/dist/menu/utils/normalizeSeparators.d.ts +2 -0
- package/dist/menu/utils/normalizeSeparators.js +23 -0
- package/dist/menu/utils/resolveKeys.d.ts +12 -0
- package/dist/menu/utils/resolveKeys.js +22 -0
- package/dist/menu/utils/useLastValidSheet.d.ts +7 -0
- package/dist/menu/utils/useLastValidSheet.js +30 -0
- package/dist/menu/utils/useMenuItemCore.d.ts +31 -0
- package/dist/menu/utils/useMenuItemCore.js +54 -0
- package/dist/menu/utils/useMenuItemKeyboardNav.d.ts +2 -0
- package/dist/menu/utils/useMenuItemKeyboardNav.js +15 -0
- package/dist/menu/utils/useMenuListKeyboardNav.d.ts +12 -0
- package/dist/menu/utils/useMenuListKeyboardNav.js +77 -0
- package/dist/menu/utils/useMenuPath.d.ts +6 -0
- package/dist/menu/utils/useMenuPath.js +35 -0
- package/dist/nav/navItem/navItem.js +10 -5
- package/dist/nav/navSection/navSection.js +7 -5
- package/dist/pagination/paginationArrow.js +10 -3
- package/dist/radioGroupRaw/radioGroupRaw.js +2 -1
- package/dist/rangeRaw/rangeRaw.js +0 -1
- package/dist/selectList/selectList.helpers.d.ts +1 -1
- package/dist/selectList/selectList.helpers.js +29 -4
- package/dist/selectList/selectList.js +3 -1
- package/dist/selectList/selectList.reducer.js +1 -2
- package/dist/selectList/selectListItem.js +4 -1
- package/dist/sortControl/sortControl.js +59 -4
- package/dist/table/children/useTableChildren.d.ts +1 -1
- package/dist/table/children/useTableChildren.js +3 -3
- package/dist/table/flexible/columnsList.js +4 -2
- package/dist/table/selectable/useSelectableRows.d.ts +8 -0
- package/dist/table/selectable/useSelectableRows.js +14 -6
- package/dist/table/table.js +1 -7
- package/dist/tabs/tabs.js +60 -58
- package/dist/tabs/tabsTestHelper.js +2 -2
- package/dist/timePickerRaw/timePickerRaw.js +1 -1
- package/dist/toggleButtonRaw/toggleButtonRaw.js +5 -2
- package/dist/utils/localization/translations/ar.json +3 -1
- package/dist/utils/localization/translations/cs.json +9 -5
- package/dist/utils/localization/translations/da-DK.json +9 -5
- package/dist/utils/localization/translations/de.json +9 -5
- package/dist/utils/localization/translations/en.json +5 -1
- package/dist/utils/localization/translations/es.json +9 -5
- package/dist/utils/localization/translations/fi-FI.json +9 -5
- package/dist/utils/localization/translations/fr-FR.json +9 -5
- package/dist/utils/localization/translations/fr.json +9 -5
- package/dist/utils/localization/translations/hu-HU.json +9 -5
- package/dist/utils/localization/translations/id.json +9 -5
- package/dist/utils/localization/translations/it.json +9 -5
- package/dist/utils/localization/translations/ja.json +9 -5
- package/dist/utils/localization/translations/ko-KR.json +9 -5
- package/dist/utils/localization/translations/ms.json +9 -5
- package/dist/utils/localization/translations/nb-NO.json +9 -5
- package/dist/utils/localization/translations/nl.json +9 -5
- package/dist/utils/localization/translations/pl.json +9 -5
- package/dist/utils/localization/translations/pt-BR.json +9 -5
- package/dist/utils/localization/translations/pt-PT.json +9 -5
- package/dist/utils/localization/translations/ro-RO.json +9 -5
- package/dist/utils/localization/translations/sk-SK.json +9 -5
- package/dist/utils/localization/translations/sv.json +9 -5
- package/dist/utils/localization/translations/th.json +9 -5
- package/dist/utils/localization/translations/tr.json +9 -5
- package/dist/utils/localization/translations/zh-Hans.json +9 -5
- package/dist/utils/localization/translations/zh-TW.json +9 -5
- package/dist/utils/localization/useDirectionalIcon.d.ts +3 -0
- package/dist/utils/localization/useDirectionalIcon.js +9 -0
- package/dist/utils/positioningUtils/alignments.d.ts +2 -2
- package/dist/utils/positioningUtils/alignments.js +2 -2
- package/dist/utils/positioningUtils/calculatePosition.js +4 -6
- package/esm/calendar/calendar.js +7 -4
- package/esm/card/components/title.js +4 -1
- package/esm/card/components/titleLink.js +5 -2
- package/esm/chart/barChart/getDefaultOptions.d.ts +2 -1
- package/esm/chart/barChart/getDefaultOptions.js +5 -2
- package/esm/chart/barChart.js +6 -4
- package/esm/chart/lineChart/getDefaultOptions.d.ts +2 -1
- package/esm/chart/lineChart/getDefaultOptions.js +5 -2
- package/esm/chart/lineChart.js +4 -2
- package/esm/checkboxListWithAction/checkboxListWithAction.js +4 -1
- package/esm/commonHelpers/arrowNavigation/components/arrowButton/arrowButton.js +4 -1
- package/esm/controlledPopup/controlledPopup.d.ts +1 -0
- package/esm/controlledPopup/controlledPopup.js +3 -1
- package/esm/dataGrid/cell/cell.d.ts +2 -1
- package/esm/dataGrid/cell/cell.js +2 -2
- package/esm/dataGrid/dataGrid.js +7 -4
- package/esm/dataGrid/listColumn.d.ts +2 -0
- package/esm/dataGrid/row/row.d.ts +2 -1
- package/esm/dataGrid/row/row.js +13 -9
- package/esm/dataGrid/withFlexibleColumns/components/columnSettingsList.js +2 -1
- package/esm/dataGrid/withSelectableRows/components/bulkActions/bulkActions.d.ts +4 -0
- package/esm/dateRangeInner/dateRangeInner.js +5 -2
- package/esm/dateRangeRaw/dateRangeRaw.js +5 -2
- package/esm/dateRangeRaw/utils/parseLabel.js +1 -1
- package/esm/dropdownRaw/dropdownRaw.js +12 -6
- package/esm/fileUpload/components/dropZoneContent.js +100 -100
- package/esm/fileUpload/fileUpload.js +100 -100
- package/esm/filters/components/filtersSearchList.js +4 -1
- package/esm/filtersBar/filtersContainer/filtersContainer.js +62 -61
- package/esm/formStepperButtons/formStepperButtons.js +4 -1
- package/esm/groupsFilterRaw/groupsFilterAdjustmentState.js +4 -1
- package/esm/groupsFilterRaw/groupsFilterInitialState.js +4 -1
- package/esm/header/headerBack.js +4 -1
- package/esm/icons/iconAlignLeft.js +1 -3
- package/esm/icons/iconAlignmentLeft.js +1 -3
- package/esm/icons/iconAlignmentRight.js +1 -3
- package/esm/icons/iconArrowBottomLeft.js +1 -3
- package/esm/icons/iconArrowBottomRight.js +1 -3
- package/esm/icons/iconArrowLeftPath.js +1 -3
- package/esm/icons/iconArrowRight.js +1 -3
- package/esm/icons/iconArrowRightCircle.js +1 -3
- package/esm/icons/iconArrowRightPath.js +1 -3
- package/esm/icons/iconArrowTopLeft.js +1 -3
- package/esm/icons/iconArrowTopRight.js +1 -3
- package/esm/icons/iconChevronDoubleRight.js +1 -3
- package/esm/icons/iconChevronRight.js +1 -3
- package/esm/icons/iconChevronRightSmall.js +1 -3
- package/esm/icons/iconCornerDownLeft.js +1 -3
- package/esm/icons/iconCornerDownRight.js +1 -3
- package/esm/icons/iconCornerLeftDown.js +1 -3
- package/esm/icons/iconCornerLeftUp.js +1 -3
- package/esm/icons/iconCornerRightDown.js +1 -3
- package/esm/icons/iconCornerRightUp.js +1 -3
- package/esm/icons/iconCornerUpLeft.js +1 -3
- package/esm/icons/iconCornerUpRight.js +1 -3
- package/esm/index.d.ts +1 -0
- package/esm/index.js +1 -0
- package/esm/lineChartMini/lineChartMini.js +15 -3
- package/esm/list/itemData/itemDataInternal.js +4 -1
- package/esm/list/list.d.ts +1 -0
- package/esm/list/list.js +2 -2
- package/esm/list/listItem/listItem.d.ts +1 -3
- package/esm/list/listItem/listItem.js +6 -5
- package/esm/menu/components/controlledMenuList/controlledMenuList.d.ts +27 -0
- package/esm/menu/components/controlledMenuList/controlledMenuList.js +123 -0
- package/esm/menu/components/createControlledMenuList.d.ts +37 -0
- package/esm/menu/components/createControlledMenuList.js +51 -0
- package/esm/menu/components/createMenuItem.d.ts +67 -0
- package/esm/menu/components/createMenuItem.js +93 -0
- package/esm/menu/components/menuButton.js +12 -3
- package/esm/menu/components/menuItem.d.ts +1 -2
- package/esm/menu/components/menuItem.js +20 -74
- package/esm/menu/contexts/usePathContext.d.ts +2 -0
- package/esm/menu/contexts/usePathContext.js +5 -0
- package/esm/menu/controlledMenu.js +10 -177
- package/esm/menu/utils/buildMenuContent.d.ts +2 -0
- package/esm/menu/utils/buildMenuContent.js +34 -0
- package/esm/menu/utils/findContent.d.ts +2 -2
- package/esm/menu/utils/findContent.js +4 -3
- package/esm/menu/utils/getItemLabel.d.ts +2 -0
- package/esm/menu/utils/getItemLabel.js +4 -0
- package/esm/menu/utils/getSafeRel.d.ts +1 -0
- package/esm/menu/utils/getSafeRel.js +10 -0
- package/esm/menu/utils/isMenuItem.d.ts +2 -0
- package/esm/menu/utils/isMenuItem.js +9 -0
- package/esm/menu/utils/isSafeHref.d.ts +1 -0
- package/esm/menu/utils/isSafeHref.js +6 -0
- package/esm/menu/utils/normalizeSeparators.d.ts +2 -0
- package/esm/menu/utils/normalizeSeparators.js +19 -0
- package/esm/menu/utils/resolveKeys.d.ts +12 -0
- package/esm/menu/utils/resolveKeys.js +18 -0
- package/esm/menu/utils/useLastValidSheet.d.ts +7 -0
- package/esm/menu/utils/useLastValidSheet.js +26 -0
- package/esm/menu/utils/useMenuItemCore.d.ts +31 -0
- package/esm/menu/utils/useMenuItemCore.js +50 -0
- package/esm/menu/utils/useMenuItemKeyboardNav.d.ts +2 -0
- package/esm/menu/utils/useMenuItemKeyboardNav.js +11 -0
- package/esm/menu/utils/useMenuListKeyboardNav.d.ts +12 -0
- package/esm/menu/utils/useMenuListKeyboardNav.js +73 -0
- package/esm/menu/utils/useMenuPath.d.ts +6 -0
- package/esm/menu/utils/useMenuPath.js +31 -0
- package/esm/nav/navItem/navItem.js +10 -5
- package/esm/nav/navSection/navSection.js +7 -5
- package/esm/pagination/paginationArrow.js +10 -3
- package/esm/radioGroupRaw/radioGroupRaw.js +2 -1
- package/esm/rangeRaw/rangeRaw.js +0 -1
- package/esm/selectList/selectList.helpers.d.ts +1 -1
- package/esm/selectList/selectList.helpers.js +29 -4
- package/esm/selectList/selectList.js +3 -1
- package/esm/selectList/selectList.reducer.js +1 -2
- package/esm/selectList/selectListItem.js +4 -1
- package/esm/sortControl/sortControl.js +59 -4
- package/esm/table/children/useTableChildren.d.ts +1 -1
- package/esm/table/children/useTableChildren.js +3 -3
- package/esm/table/flexible/columnsList.js +4 -2
- package/esm/table/selectable/useSelectableRows.d.ts +8 -0
- package/esm/table/selectable/useSelectableRows.js +14 -6
- package/esm/table/table.js +1 -7
- package/esm/tabs/tabs.js +60 -58
- package/esm/tabs/tabsTestHelper.js +2 -2
- package/esm/testHelpers/mockAbsoluteAlignment.d.ts +1 -0
- package/esm/testHelpers/mockAbsoluteAlignment.js +10 -0
- package/esm/timePickerRaw/timePickerRaw.js +1 -1
- package/esm/toggleButtonRaw/toggleButtonRaw.js +5 -2
- package/esm/utils/localization/translations/ar.json +3 -1
- package/esm/utils/localization/translations/cs.json +9 -5
- package/esm/utils/localization/translations/da-DK.json +9 -5
- package/esm/utils/localization/translations/de.json +9 -5
- package/esm/utils/localization/translations/en.json +5 -1
- package/esm/utils/localization/translations/es.json +9 -5
- package/esm/utils/localization/translations/fi-FI.json +9 -5
- package/esm/utils/localization/translations/fr-FR.json +9 -5
- package/esm/utils/localization/translations/fr.json +9 -5
- package/esm/utils/localization/translations/hu-HU.json +9 -5
- package/esm/utils/localization/translations/id.json +9 -5
- package/esm/utils/localization/translations/it.json +9 -5
- package/esm/utils/localization/translations/ja.json +9 -5
- package/esm/utils/localization/translations/ko-KR.json +9 -5
- package/esm/utils/localization/translations/ms.json +9 -5
- package/esm/utils/localization/translations/nb-NO.json +9 -5
- package/esm/utils/localization/translations/nl.json +9 -5
- package/esm/utils/localization/translations/pl.json +9 -5
- package/esm/utils/localization/translations/pt-BR.json +9 -5
- package/esm/utils/localization/translations/pt-PT.json +9 -5
- package/esm/utils/localization/translations/ro-RO.json +9 -5
- package/esm/utils/localization/translations/sk-SK.json +9 -5
- package/esm/utils/localization/translations/sv.json +9 -5
- package/esm/utils/localization/translations/th.json +9 -5
- package/esm/utils/localization/translations/tr.json +9 -5
- package/esm/utils/localization/translations/zh-Hans.json +9 -5
- package/esm/utils/localization/translations/zh-TW.json +9 -5
- package/esm/utils/localization/useDirectionalIcon.d.ts +3 -0
- package/esm/utils/localization/useDirectionalIcon.js +5 -0
- package/esm/utils/positioningUtils/alignments.d.ts +2 -2
- package/esm/utils/positioningUtils/alignments.js +2 -2
- package/esm/utils/positioningUtils/calculatePosition.js +4 -6
- package/package.json +123 -122
|
@@ -17,86 +17,86 @@ const waiting_1 = require("../waiting/waiting");
|
|
|
17
17
|
const dropZoneContent_1 = require("./components/dropZoneContent");
|
|
18
18
|
const templateDownloadSection_1 = require("./components/templateDownloadSection");
|
|
19
19
|
const uploadedFilesSection_1 = require("./components/uploadedFilesSection");
|
|
20
|
-
injectString("cs", "Tap to add files", "
|
|
21
|
-
injectString("da-DK", "Tap to add files", "
|
|
22
|
-
injectString("de", "Tap to add files", "
|
|
20
|
+
injectString("cs", "Tap to add files", "Klepnut\xEDm p\u0159idejte soubory");
|
|
21
|
+
injectString("da-DK", "Tap to add files", "Tryk for at tilf\xF8je filer");
|
|
22
|
+
injectString("de", "Tap to add files", "Tippen, um Dateien hinzuzuf\xFCgen");
|
|
23
23
|
injectString("en", "Tap to add files", "Tap to add files");
|
|
24
|
-
injectString("es", "Tap to add files", "
|
|
25
|
-
injectString("fi-FI", "Tap to add files", "
|
|
26
|
-
injectString("fr", "Tap to add files", "
|
|
27
|
-
injectString("fr-FR", "Tap to add files", "
|
|
28
|
-
injectString("hu-HU", "Tap to add files", "
|
|
29
|
-
injectString("id", "Tap to add files", "
|
|
30
|
-
injectString("it", "Tap to add files", "
|
|
31
|
-
injectString("ja", "Tap to add files", "
|
|
32
|
-
injectString("ko-KR", "Tap to add files", "
|
|
33
|
-
injectString("ms", "Tap to add files", "
|
|
34
|
-
injectString("nb-NO", "Tap to add files", "
|
|
35
|
-
injectString("nl", "Tap to add files", "
|
|
36
|
-
injectString("pl", "Tap to add files", "
|
|
37
|
-
injectString("pt-BR", "Tap to add files", "
|
|
38
|
-
injectString("pt-PT", "Tap to add files", "
|
|
39
|
-
injectString("sk-SK", "Tap to add files", "
|
|
40
|
-
injectString("sv", "Tap to add files", "
|
|
41
|
-
injectString("th", "Tap to add files", "
|
|
42
|
-
injectString("tr", "Tap to add files", "
|
|
43
|
-
injectString("zh-Hans", "Tap to add files", "
|
|
44
|
-
injectString("zh-TW", "Tap to add files", "
|
|
45
|
-
injectString("ro-RO", "Tap to add files", "
|
|
24
|
+
injectString("es", "Tap to add files", "Toca para agregar archivos");
|
|
25
|
+
injectString("fi-FI", "Tap to add files", "Lis\xE4\xE4 tiedostoja napauttamalla");
|
|
26
|
+
injectString("fr", "Tap to add files", "Appuyez pour ajouter des fichiers");
|
|
27
|
+
injectString("fr-FR", "Tap to add files", "Appuyez pour ajouter des fichiers");
|
|
28
|
+
injectString("hu-HU", "Tap to add files", "F\xE1jlok hozz\xE1ad\xE1s\xE1hoz koppintson");
|
|
29
|
+
injectString("id", "Tap to add files", "Ketuk untuk menambahkan file");
|
|
30
|
+
injectString("it", "Tap to add files", "Tocca per aggiungere file");
|
|
31
|
+
injectString("ja", "Tap to add files", "\u30BF\u30C3\u30D7\u3057\u3066\u30D5\u30A1\u30A4\u30EB\u3092\u8FFD\u52A0");
|
|
32
|
+
injectString("ko-KR", "Tap to add files", "\uD0ED\uD558\uC5EC \uD30C\uC77C \uCD94\uAC00");
|
|
33
|
+
injectString("ms", "Tap to add files", "Ketik untuk menambah fail");
|
|
34
|
+
injectString("nb-NO", "Tap to add files", "Trykk for \xE5 legge til filer");
|
|
35
|
+
injectString("nl", "Tap to add files", "Tik om bestanden toe te voegen");
|
|
36
|
+
injectString("pl", "Tap to add files", "Dotknij, aby doda\u0107 pliki");
|
|
37
|
+
injectString("pt-BR", "Tap to add files", "Toque para adicionar arquivos");
|
|
38
|
+
injectString("pt-PT", "Tap to add files", "Toque para adicionar ficheiros");
|
|
39
|
+
injectString("sk-SK", "Tap to add files", "Klepnut\xEDm pridajte s\xFAbory");
|
|
40
|
+
injectString("sv", "Tap to add files", "Tryck f\xF6r att l\xE4gga till filer");
|
|
41
|
+
injectString("th", "Tap to add files", "\u0E41\u0E15\u0E30\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E44\u0E1F\u0E25\u0E4C");
|
|
42
|
+
injectString("tr", "Tap to add files", "Dosya eklemek i\xE7in dokunun");
|
|
43
|
+
injectString("zh-Hans", "Tap to add files", "\u70B9\u51FB\u6DFB\u52A0\u6587\u4EF6");
|
|
44
|
+
injectString("zh-TW", "Tap to add files", "\u9EDE\u9078\u4EE5\u65B0\u589E\u6A94\u6848");
|
|
45
|
+
injectString("ro-RO", "Tap to add files", "Atinge\u021Bi pentru a ad\u0103uga fi\u0219iere");
|
|
46
46
|
injectString("ar-SA", "Tap to add files", "\u0627\u0646\u0642\u0631 \u0644\u0625\u0636\u0627\u0641\u0629 \u0645\u0644\u0641\u0627\u062A");
|
|
47
|
-
injectString("cs", "Drag & drop files or", "
|
|
48
|
-
injectString("da-DK", "Drag & drop files or", "
|
|
49
|
-
injectString("de", "Drag & drop files or", "
|
|
47
|
+
injectString("cs", "Drag & drop files or", "P\u0159et\xE1hn\u011Bte soubory nebo");
|
|
48
|
+
injectString("da-DK", "Drag & drop files or", "Tr\xE6k og slip filer eller");
|
|
49
|
+
injectString("de", "Drag & drop files or", "Dateien hierher ziehen oder");
|
|
50
50
|
injectString("en", "Drag & drop files or", "Drag & drop files or");
|
|
51
|
-
injectString("es", "Drag & drop files or", "
|
|
52
|
-
injectString("fi-FI", "Drag & drop files or", "
|
|
53
|
-
injectString("fr", "Drag & drop files or", "
|
|
54
|
-
injectString("fr-FR", "Drag & drop files or", "
|
|
55
|
-
injectString("hu-HU", "Drag & drop files or", "
|
|
56
|
-
injectString("id", "Drag & drop files or", "
|
|
57
|
-
injectString("it", "Drag & drop files or", "
|
|
58
|
-
injectString("ja", "Drag & drop files or", "
|
|
59
|
-
injectString("ko-KR", "Drag & drop files or", "
|
|
60
|
-
injectString("ms", "Drag & drop files or", "
|
|
61
|
-
injectString("nb-NO", "Drag & drop files or", "
|
|
62
|
-
injectString("nl", "Drag & drop files or", "
|
|
63
|
-
injectString("pl", "Drag & drop files or", "
|
|
64
|
-
injectString("pt-BR", "Drag & drop files or", "
|
|
65
|
-
injectString("pt-PT", "Drag & drop files or", "
|
|
66
|
-
injectString("sk-SK", "Drag & drop files or", "
|
|
67
|
-
injectString("sv", "Drag & drop files or", "
|
|
68
|
-
injectString("th", "Drag & drop files or", "
|
|
69
|
-
injectString("tr", "Drag & drop files or", "
|
|
70
|
-
injectString("zh-Hans", "Drag & drop files or", "
|
|
71
|
-
injectString("zh-TW", "Drag & drop files or", "
|
|
72
|
-
injectString("ro-RO", "Drag & drop files or", "
|
|
51
|
+
injectString("es", "Drag & drop files or", "Arrastrar y soltar archivos o");
|
|
52
|
+
injectString("fi-FI", "Drag & drop files or", "Ved\xE4 ja pudota tiedostoja tai");
|
|
53
|
+
injectString("fr", "Drag & drop files or", "Glisser-d\xE9poser des fichiers ou");
|
|
54
|
+
injectString("fr-FR", "Drag & drop files or", "Glisser-d\xE9poser des fichiers ou");
|
|
55
|
+
injectString("hu-HU", "Drag & drop files or", "H\xFAzza ide a f\xE1jlokat, vagy");
|
|
56
|
+
injectString("id", "Drag & drop files or", "Seret & lepas file atau");
|
|
57
|
+
injectString("it", "Drag & drop files or", "Trascina e rilascia i file o");
|
|
58
|
+
injectString("ja", "Drag & drop files or", "\u30D5\u30A1\u30A4\u30EB\u3092\u30C9\u30E9\u30C3\u30B0\uFF06\u30C9\u30ED\u30C3\u30D7\u3059\u308B\u304B\u3001");
|
|
59
|
+
injectString("ko-KR", "Drag & drop files or", "\uD30C\uC77C\uC744 \uB4DC\uB798\uADF8 \uC564 \uB4DC\uB86D\uD558\uAC70\uB098");
|
|
60
|
+
injectString("ms", "Drag & drop files or", "Seret & lepas fail atau");
|
|
61
|
+
injectString("nb-NO", "Drag & drop files or", "Dra og slipp filer eller");
|
|
62
|
+
injectString("nl", "Drag & drop files or", "Bestanden slepen en neerzetten of");
|
|
63
|
+
injectString("pl", "Drag & drop files or", "Przeci\u0105gnij i upu\u015B\u0107 pliki lub");
|
|
64
|
+
injectString("pt-BR", "Drag & drop files or", "Arraste e solte arquivos ou");
|
|
65
|
+
injectString("pt-PT", "Drag & drop files or", "Arraste e largue ficheiros ou");
|
|
66
|
+
injectString("sk-SK", "Drag & drop files or", "Presu\u0148te s\xFAbory alebo");
|
|
67
|
+
injectString("sv", "Drag & drop files or", "Dra och sl\xE4pp filer eller");
|
|
68
|
+
injectString("th", "Drag & drop files or", "\u0E25\u0E32\u0E01\u0E41\u0E25\u0E30\u0E27\u0E32\u0E07\u0E44\u0E1F\u0E25\u0E4C\u0E2B\u0E23\u0E37\u0E2D");
|
|
69
|
+
injectString("tr", "Drag & drop files or", "Dosyalar\u0131 s\xFCr\xFCkleyip b\u0131rak\u0131n veya");
|
|
70
|
+
injectString("zh-Hans", "Drag & drop files or", "\u62D6\u653E\u6587\u4EF6\u6216");
|
|
71
|
+
injectString("zh-TW", "Drag & drop files or", "\u62D6\u653E\u6A94\u6848\u6216");
|
|
72
|
+
injectString("ro-RO", "Drag & drop files or", "Glisa\u021Bi \u0219i fixa\u021Bi fi\u0219iere sau");
|
|
73
73
|
injectString("ar-SA", "Drag & drop files or", "\u0627\u0633\u062D\u0628 \u0648\u0623\u0641\u0644\u062A \u0627\u0644\u0645\u0644\u0641\u0627\u062A \u0623\u0648");
|
|
74
|
-
injectString("cs", "Browse", "
|
|
75
|
-
injectString("da-DK", "Browse", "
|
|
76
|
-
injectString("de", "Browse", "
|
|
74
|
+
injectString("cs", "Browse", "Proch\xE1zet");
|
|
75
|
+
injectString("da-DK", "Browse", "Gennemse");
|
|
76
|
+
injectString("de", "Browse", "Durchsuchen");
|
|
77
77
|
injectString("en", "Browse", "Browse");
|
|
78
|
-
injectString("es", "Browse", "
|
|
79
|
-
injectString("fi-FI", "Browse", "
|
|
80
|
-
injectString("fr", "Browse", "
|
|
81
|
-
injectString("fr-FR", "Browse", "
|
|
82
|
-
injectString("hu-HU", "Browse", "
|
|
83
|
-
injectString("id", "Browse", "
|
|
84
|
-
injectString("it", "Browse", "
|
|
85
|
-
injectString("ja", "Browse", "
|
|
86
|
-
injectString("ko-KR", "Browse", "
|
|
87
|
-
injectString("ms", "Browse", "
|
|
88
|
-
injectString("nb-NO", "Browse", "
|
|
89
|
-
injectString("nl", "Browse", "
|
|
90
|
-
injectString("pl", "Browse", "
|
|
91
|
-
injectString("pt-BR", "Browse", "
|
|
92
|
-
injectString("pt-PT", "Browse", "
|
|
93
|
-
injectString("sk-SK", "Browse", "
|
|
94
|
-
injectString("sv", "Browse", "
|
|
95
|
-
injectString("th", "Browse", "
|
|
96
|
-
injectString("tr", "Browse", "
|
|
97
|
-
injectString("zh-Hans", "Browse", "
|
|
98
|
-
injectString("zh-TW", "Browse", "
|
|
99
|
-
injectString("ro-RO", "Browse", "
|
|
78
|
+
injectString("es", "Browse", "Explorar");
|
|
79
|
+
injectString("fi-FI", "Browse", "Selaa");
|
|
80
|
+
injectString("fr", "Browse", "Parcourir");
|
|
81
|
+
injectString("fr-FR", "Browse", "Parcourir");
|
|
82
|
+
injectString("hu-HU", "Browse", "Tall\xF3z\xE1s");
|
|
83
|
+
injectString("id", "Browse", "Jelajahi");
|
|
84
|
+
injectString("it", "Browse", "Sfoglia");
|
|
85
|
+
injectString("ja", "Browse", "\u53C2\u7167");
|
|
86
|
+
injectString("ko-KR", "Browse", "\uCC3E\uC544\uBCF4\uAE30");
|
|
87
|
+
injectString("ms", "Browse", "Semak Imbas");
|
|
88
|
+
injectString("nb-NO", "Browse", "Bla gjennom");
|
|
89
|
+
injectString("nl", "Browse", "Bladeren");
|
|
90
|
+
injectString("pl", "Browse", "Przegl\u0105daj");
|
|
91
|
+
injectString("pt-BR", "Browse", "Procurar");
|
|
92
|
+
injectString("pt-PT", "Browse", "Procurar");
|
|
93
|
+
injectString("sk-SK", "Browse", "Preh\u013Ead\xE1va\u0165");
|
|
94
|
+
injectString("sv", "Browse", "Bl\xE4ddra");
|
|
95
|
+
injectString("th", "Browse", "\u0E40\u0E23\u0E35\u0E22\u0E01\u0E14\u0E39");
|
|
96
|
+
injectString("tr", "Browse", "G\xF6zat");
|
|
97
|
+
injectString("zh-Hans", "Browse", "\u6D4F\u89C8");
|
|
98
|
+
injectString("zh-TW", "Browse", "\u700F\u89BD");
|
|
99
|
+
injectString("ro-RO", "Browse", "R\u0103sfoire");
|
|
100
100
|
injectString("ar-SA", "Browse", "\u062A\u0635\u0641\u062D");
|
|
101
101
|
injectString("cs", "Upload files.", "Upload files.");
|
|
102
102
|
injectString("da-DK", "Upload files.", "Upload files.");
|
|
@@ -125,32 +125,32 @@ injectString("zh-Hans", "Upload files.", "Upload files.");
|
|
|
125
125
|
injectString("zh-TW", "Upload files.", "Upload files.");
|
|
126
126
|
injectString("ro-RO", "Upload files.", "Upload files.");
|
|
127
127
|
injectString("ar-SA", "Upload files.", "\u0631\u0641\u0639 \u0627\u0644\u0645\u0644\u0641\u0627\u062A.");
|
|
128
|
-
injectString("cs", "Supported Formats:", "
|
|
129
|
-
injectString("da-DK", "Supported Formats:", "
|
|
130
|
-
injectString("de", "Supported Formats:", "
|
|
128
|
+
injectString("cs", "Supported Formats:", "Podporovan\xE9 form\xE1ty:");
|
|
129
|
+
injectString("da-DK", "Supported Formats:", "Underst\xF8ttede formater:");
|
|
130
|
+
injectString("de", "Supported Formats:", "Unterst\xFCtzte Formate:");
|
|
131
131
|
injectString("en", "Supported Formats:", "Supported Formats:");
|
|
132
|
-
injectString("es", "Supported Formats:", "
|
|
133
|
-
injectString("fi-FI", "Supported Formats:", "
|
|
134
|
-
injectString("fr", "Supported Formats:", "
|
|
135
|
-
injectString("fr-FR", "Supported Formats:", "
|
|
136
|
-
injectString("hu-HU", "Supported Formats:", "
|
|
137
|
-
injectString("id", "Supported Formats:", "
|
|
138
|
-
injectString("it", "Supported Formats:", "
|
|
139
|
-
injectString("ja", "Supported Formats:", "
|
|
140
|
-
injectString("ko-KR", "Supported Formats:", "
|
|
141
|
-
injectString("ms", "Supported Formats:", "
|
|
142
|
-
injectString("nb-NO", "Supported Formats:", "
|
|
143
|
-
injectString("nl", "Supported Formats:", "
|
|
144
|
-
injectString("pl", "Supported Formats:", "
|
|
145
|
-
injectString("pt-BR", "Supported Formats:", "
|
|
146
|
-
injectString("pt-PT", "Supported Formats:", "
|
|
147
|
-
injectString("sk-SK", "Supported Formats:", "
|
|
148
|
-
injectString("sv", "Supported Formats:", "
|
|
149
|
-
injectString("th", "Supported Formats:", "
|
|
150
|
-
injectString("tr", "Supported Formats:", "
|
|
151
|
-
injectString("zh-Hans", "Supported Formats:", "
|
|
152
|
-
injectString("zh-TW", "Supported Formats:", "
|
|
153
|
-
injectString("ro-RO", "Supported Formats:", "
|
|
132
|
+
injectString("es", "Supported Formats:", "Formatos compatibles:");
|
|
133
|
+
injectString("fi-FI", "Supported Formats:", "Tuetut muodot:");
|
|
134
|
+
injectString("fr", "Supported Formats:", "Formats pris en charge :");
|
|
135
|
+
injectString("fr-FR", "Supported Formats:", "Formats pris en charge :");
|
|
136
|
+
injectString("hu-HU", "Supported Formats:", "T\xE1mogatott form\xE1tumok:");
|
|
137
|
+
injectString("id", "Supported Formats:", "Format yang Didukung:");
|
|
138
|
+
injectString("it", "Supported Formats:", "Formati supportati:");
|
|
139
|
+
injectString("ja", "Supported Formats:", "\u5BFE\u5FDC\u30D5\u30A9\u30FC\u30DE\u30C3\u30C8\uFF1A");
|
|
140
|
+
injectString("ko-KR", "Supported Formats:", "\uC9C0\uC6D0\uB418\uB294 \uD615\uC2DD:");
|
|
141
|
+
injectString("ms", "Supported Formats:", "Format yang Disokong:");
|
|
142
|
+
injectString("nb-NO", "Supported Formats:", "St\xF8ttede formater:");
|
|
143
|
+
injectString("nl", "Supported Formats:", "Ondersteunde indelingen:");
|
|
144
|
+
injectString("pl", "Supported Formats:", "Obs\u0142ugiwane formaty:");
|
|
145
|
+
injectString("pt-BR", "Supported Formats:", "Formatos suportados:");
|
|
146
|
+
injectString("pt-PT", "Supported Formats:", "Formatos suportados:");
|
|
147
|
+
injectString("sk-SK", "Supported Formats:", "Podporovan\xE9 form\xE1ty:");
|
|
148
|
+
injectString("sv", "Supported Formats:", "Format som st\xF6ds:");
|
|
149
|
+
injectString("th", "Supported Formats:", "\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E23\u0E2D\u0E07\u0E23\u0E31\u0E1A:");
|
|
150
|
+
injectString("tr", "Supported Formats:", "Desteklenen Bi\xE7imler:");
|
|
151
|
+
injectString("zh-Hans", "Supported Formats:", "\u652F\u6301\u7684\u683C\u5F0F\uFF1A");
|
|
152
|
+
injectString("zh-TW", "Supported Formats:", "\u652F\u63F4\u7684\u683C\u5F0F\uFF1A");
|
|
153
|
+
injectString("ro-RO", "Supported Formats:", "Formate acceptate:");
|
|
154
154
|
injectString("ar-SA", "Supported Formats:", "\u0627\u0644\u0635\u064A\u063A \u0627\u0644\u0645\u062F\u0639\u0648\u0645\u0629:");
|
|
155
155
|
injectString("cs", "File upload area", "File upload area");
|
|
156
156
|
injectString("da-DK", "File upload area", "File upload area");
|
|
@@ -284,6 +284,8 @@ const useLanguage_1 = require("../../utils/localization/useLanguage");
|
|
|
284
284
|
const button_1 = require("../../button/button");
|
|
285
285
|
const textIconButton_1 = require("../../textIconButton/textIconButton");
|
|
286
286
|
const iconChevronLeft_1 = require("../../icons/iconChevronLeft");
|
|
287
|
+
const iconChevronRight_1 = require("../../icons/iconChevronRight");
|
|
288
|
+
const useDirectionalIcon_1 = require("../../utils/localization/useDirectionalIcon");
|
|
287
289
|
const textIconButton_2 = require("../../textIconButton/textIconButton");
|
|
288
290
|
const filtersSearchItemData_1 = require("./filtersSearchItemData");
|
|
289
291
|
const useMobile_1 = require("../../commonHelpers/hooks/useMobile");
|
|
@@ -317,6 +319,7 @@ const FiltersSearchList = ({
|
|
|
317
319
|
const {
|
|
318
320
|
translate
|
|
319
321
|
} = (0, useLanguage_1.useLanguage)();
|
|
322
|
+
const BackChevronIcon = (0, useDirectionalIcon_1.useDirectionalIcon)(iconChevronLeft_1.IconChevronLeft, iconChevronRight_1.IconChevronRight);
|
|
320
323
|
const isSearchModeAvailable = Boolean(handleSearchItemClick && searchSelection);
|
|
321
324
|
const isRecentSearchesModeAvailable = Boolean(recentSearches && handleRecentSearchItemClick && onRemoveRecentSearchItem);
|
|
322
325
|
const isMobile = (0, useMobile_1.useMobile)();
|
|
@@ -513,7 +516,7 @@ const FiltersSearchList = ({
|
|
|
513
516
|
title: translate("Back"),
|
|
514
517
|
type: "tertiary",
|
|
515
518
|
onClick: changeMode.bind(null, "recent"),
|
|
516
|
-
icon:
|
|
519
|
+
icon: BackChevronIcon,
|
|
517
520
|
iconPosition: textIconButton_2.ButtonIconPosition.Start
|
|
518
521
|
}), (0, jsx_runtime_1.jsx)(button_1.Button, {
|
|
519
522
|
type: "tertiary",
|
|
@@ -12,63 +12,63 @@ const textIconButton_1 = require("../../textIconButton/textIconButton");
|
|
|
12
12
|
const classNames_1 = require("../../commonHelpers/classNames/classNames");
|
|
13
13
|
const react_1 = require("react");
|
|
14
14
|
const iconChevronRight_1 = require("../../icons/iconChevronRight");
|
|
15
|
+
const iconChevronLeft_1 = require("../../icons/iconChevronLeft");
|
|
16
|
+
const useDirectionalIcon_1 = require("../../utils/localization/useDirectionalIcon");
|
|
15
17
|
const useLanguage_1 = require("../../utils/localization/useLanguage");
|
|
16
18
|
const useDriveClassName_1 = require("../../utils/theme/useDriveClassName");
|
|
17
19
|
const zen_1 = require("../../utils/zen");
|
|
18
|
-
injectString("cs", "Scroll
|
|
19
|
-
injectString("da-DK", "Scroll
|
|
20
|
-
injectString("de", "Scroll
|
|
21
|
-
injectString("en", "Scroll
|
|
22
|
-
injectString("es", "Scroll
|
|
23
|
-
injectString("fi-FI", "Scroll
|
|
24
|
-
injectString("fr", "Scroll
|
|
25
|
-
injectString("fr-FR", "Scroll
|
|
26
|
-
injectString("hu-HU", "Scroll
|
|
27
|
-
injectString("id", "Scroll
|
|
28
|
-
injectString("it", "Scroll
|
|
29
|
-
injectString("ja", "Scroll
|
|
30
|
-
injectString("ko-KR", "Scroll
|
|
31
|
-
injectString("ms", "Scroll
|
|
32
|
-
injectString("nb-NO", "Scroll
|
|
33
|
-
injectString("nl", "Scroll
|
|
34
|
-
injectString("pl", "Scroll
|
|
35
|
-
injectString("pt-BR", "Scroll
|
|
36
|
-
injectString("pt-PT", "Scroll
|
|
37
|
-
injectString("sk-SK", "Scroll
|
|
38
|
-
injectString("sv", "Scroll
|
|
39
|
-
injectString("th", "Scroll
|
|
40
|
-
injectString("tr", "Scroll
|
|
41
|
-
injectString("zh-Hans", "Scroll
|
|
42
|
-
injectString("zh-TW", "Scroll
|
|
43
|
-
injectString("ro-RO", "Scroll
|
|
44
|
-
injectString("
|
|
45
|
-
injectString("
|
|
46
|
-
injectString("
|
|
47
|
-
injectString("
|
|
48
|
-
injectString("
|
|
49
|
-
injectString("
|
|
50
|
-
injectString("
|
|
51
|
-
injectString("fr", "Scroll
|
|
52
|
-
injectString("
|
|
53
|
-
injectString("
|
|
54
|
-
injectString("
|
|
55
|
-
injectString("
|
|
56
|
-
injectString("
|
|
57
|
-
injectString("
|
|
58
|
-
injectString("
|
|
59
|
-
injectString("
|
|
60
|
-
injectString("
|
|
61
|
-
injectString("
|
|
62
|
-
injectString("pt-
|
|
63
|
-
injectString("
|
|
64
|
-
injectString("
|
|
65
|
-
injectString("
|
|
66
|
-
injectString("
|
|
67
|
-
injectString("
|
|
68
|
-
injectString("zh-
|
|
69
|
-
injectString("
|
|
70
|
-
injectString("ro-RO", "Scroll right", "Derula\u021Bi la dreapta");
|
|
71
|
-
injectString("ar-SA", "Scroll right", "\u0627\u0644\u062A\u0645\u0631\u064A\u0631 \u0644\u0644\u064A\u0645\u064A\u0646");
|
|
20
|
+
injectString("cs", "Scroll to start", "P\u0159ej\xEDt na za\u010D\xE1tek");
|
|
21
|
+
injectString("da-DK", "Scroll to start", "Rul til start");
|
|
22
|
+
injectString("de", "Scroll to start", "Zum Start scrollen");
|
|
23
|
+
injectString("en", "Scroll to start", "Scroll to start");
|
|
24
|
+
injectString("es", "Scroll to start", "Desplazarse al inicio");
|
|
25
|
+
injectString("fi-FI", "Scroll to start", "Vierit\xE4 alkuun");
|
|
26
|
+
injectString("fr", "Scroll to start", "D\xE9filement au d\xE9but");
|
|
27
|
+
injectString("fr-FR", "Scroll to start", "Faites d\xE9filer pour d\xE9marrer");
|
|
28
|
+
injectString("hu-HU", "Scroll to start", "G\xF6rget\xE9s az elej\xE9re");
|
|
29
|
+
injectString("id", "Scroll to start", "Gulirkan untuk memulai");
|
|
30
|
+
injectString("it", "Scroll to start", "Scorrere fino all'inizio");
|
|
31
|
+
injectString("ja", "Scroll to start", "\u4E00\u756A\u4E0A\u306B\u30B9\u30AF\u30ED\u30FC\u30EB");
|
|
32
|
+
injectString("ko-KR", "Scroll to start", "\uC2DC\uC791 \uC704\uCE58\uB85C \uC2A4\uD06C\uB864");
|
|
33
|
+
injectString("ms", "Scroll to start", "Tatal ke permulaan");
|
|
34
|
+
injectString("nb-NO", "Scroll to start", "Rull til start");
|
|
35
|
+
injectString("nl", "Scroll to start", "Scroll to start");
|
|
36
|
+
injectString("pl", "Scroll to start", "Przewi\u0144 do pocz\u0105tku");
|
|
37
|
+
injectString("pt-BR", "Scroll to start", "Scroll to start");
|
|
38
|
+
injectString("pt-PT", "Scroll to start", "Scroll to start");
|
|
39
|
+
injectString("sk-SK", "Scroll to start", "Posun\xFA\u0165 na za\u010Diatok");
|
|
40
|
+
injectString("sv", "Scroll to start", "Scroll to start");
|
|
41
|
+
injectString("th", "Scroll to start", "\u0E40\u0E25\u0E37\u0E48\u0E2D\u0E19\u0E44\u0E1B\u0E17\u0E35\u0E48\u0E08\u0E38\u0E14\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19");
|
|
42
|
+
injectString("tr", "Scroll to start", "Ba\u015Flang\u0131ca kayd\u0131r");
|
|
43
|
+
injectString("zh-Hans", "Scroll to start", "\u6EDA\u52A8\u81F3\u5F00\u5934");
|
|
44
|
+
injectString("zh-TW", "Scroll to start", "\u6372\u52D5\u81F3\u958B\u59CB\u8655");
|
|
45
|
+
injectString("ro-RO", "Scroll to start", "Derulare la \xEEnceput");
|
|
46
|
+
injectString("cs", "Scroll to end", "P\u0159ej\xEDt na konec");
|
|
47
|
+
injectString("da-DK", "Scroll to end", "Rul til slutning");
|
|
48
|
+
injectString("de", "Scroll to end", "Zum Ende scrollen");
|
|
49
|
+
injectString("en", "Scroll to end", "Scroll to end");
|
|
50
|
+
injectString("es", "Scroll to end", "Desplazarse al final");
|
|
51
|
+
injectString("fi-FI", "Scroll to end", "Vierit\xE4 loppuun");
|
|
52
|
+
injectString("fr", "Scroll to end", "D\xE9filement \xE0 la fin");
|
|
53
|
+
injectString("fr-FR", "Scroll to end", "Faites d\xE9filer jusqu\u2019\xE0 la fin");
|
|
54
|
+
injectString("hu-HU", "Scroll to end", "G\xF6rget\xE9s a v\xE9g\xE9re");
|
|
55
|
+
injectString("id", "Scroll to end", "Gulirkan ke akhir");
|
|
56
|
+
injectString("it", "Scroll to end", "Scorrere fino alla fine");
|
|
57
|
+
injectString("ja", "Scroll to end", "\u4E00\u756A\u4E0B\u307E\u3067\u30B9\u30AF\u30ED\u30FC\u30EB");
|
|
58
|
+
injectString("ko-KR", "Scroll to end", "\uB9C8\uC9C0\uB9C9 \uC704\uCE58\uB85C \uC2A4\uD06C\uB864");
|
|
59
|
+
injectString("ms", "Scroll to end", "Tatal ke penghujung");
|
|
60
|
+
injectString("nb-NO", "Scroll to end", "Rull til slutt");
|
|
61
|
+
injectString("nl", "Scroll to end", "Scroll to end");
|
|
62
|
+
injectString("pl", "Scroll to end", "Przewi\u0144 do ko\u0144ca");
|
|
63
|
+
injectString("pt-BR", "Scroll to end", "Scroll to end");
|
|
64
|
+
injectString("pt-PT", "Scroll to end", "Scroll to end");
|
|
65
|
+
injectString("sk-SK", "Scroll to end", "Posun\xFA\u0165 na koniec");
|
|
66
|
+
injectString("sv", "Scroll to end", "Scroll to end");
|
|
67
|
+
injectString("th", "Scroll to end", "\u0E40\u0E25\u0E37\u0E48\u0E2D\u0E19\u0E44\u0E1B\u0E17\u0E35\u0E48\u0E08\u0E38\u0E14\u0E2A\u0E34\u0E49\u0E19\u0E2A\u0E38\u0E14");
|
|
68
|
+
injectString("tr", "Scroll to end", "Sona kayd\u0131r");
|
|
69
|
+
injectString("zh-Hans", "Scroll to end", "\u6EDA\u52A8\u81F3\u672B\u5C3E");
|
|
70
|
+
injectString("zh-TW", "Scroll to end", "\u6372\u52D5\u81F3\u7D50\u5C3E\u8655");
|
|
71
|
+
injectString("ro-RO", "Scroll to end", "Derulare la sf\xE2r\u0219it");
|
|
72
72
|
const getScrollButtonType = element => {
|
|
73
73
|
const scrollLeft = element.scrollLeft;
|
|
74
74
|
const scrollWidth = element.scrollWidth;
|
|
@@ -93,6 +93,8 @@ const FiltersContainer = ({
|
|
|
93
93
|
const {
|
|
94
94
|
translate
|
|
95
95
|
} = (0, useLanguage_1.useLanguage)();
|
|
96
|
+
const ScrollStartIcon = (0, useDirectionalIcon_1.useDirectionalIcon)(iconChevronLeft_1.IconChevronLeft, iconChevronRight_1.IconChevronRight);
|
|
97
|
+
const ScrollEndIcon = (0, useDirectionalIcon_1.useDirectionalIcon)(iconChevronRight_1.IconChevronRight, iconChevronLeft_1.IconChevronLeft);
|
|
96
98
|
const gradientClass = "zen-filters-toolbar__gradient";
|
|
97
99
|
const scrollerClass = "zen-filters-toolbar__scroller";
|
|
98
100
|
const driveClassNameScroller = (0, useDriveClassName_1.useDriveClassName)(scrollerClass);
|
|
@@ -203,12 +205,11 @@ const FiltersContainer = ({
|
|
|
203
205
|
children: [(0, jsx_runtime_1.jsx)("div", {
|
|
204
206
|
className: (0, classNames_1.classNames)([gradientClass, driveClassNameGradient || "", `${gradientClass}--left`, showLeft ? `${gradientClass}--visible` : "", isHiddenDisplay.left ? `${gradientClass}--hidden` : ""])
|
|
205
207
|
}), (0, jsx_runtime_1.jsx)(textIconButton_1.TextIconButton, {
|
|
206
|
-
title: translate("Scroll
|
|
208
|
+
title: translate("Scroll to start"),
|
|
207
209
|
className: (0, classNames_1.classNames)(["zen-filters-toolbar__scroller", driveClassNameScroller || "", "zen-filters-toolbar__start", showLeft ? `${scrollerClass}--visible` : "", isHiddenDisplay.left ? `${scrollerClass}--hidden` : ""]),
|
|
208
|
-
icon:
|
|
210
|
+
icon: ScrollStartIcon,
|
|
209
211
|
iconPosition: textIconButton_1.ButtonIconPosition.Start,
|
|
210
|
-
onClick: handleScrollButtonClick(-scrollableStep)
|
|
211
|
-
iconClasses: "zen-filters-toolbar__start-icon"
|
|
212
|
+
onClick: handleScrollButtonClick(-scrollableStep)
|
|
212
213
|
}), (0, jsx_runtime_1.jsx)("div", {
|
|
213
214
|
ref: scrollableRef,
|
|
214
215
|
className: (0, classNames_1.classNames)(["zen-filters-toolbar__scrollable", !isHiddenDisplay.left ? "has-left-scroller" : "", !isHiddenDisplay.right ? "has-right-scroller" : ""]),
|
|
@@ -219,13 +220,13 @@ const FiltersContainer = ({
|
|
|
219
220
|
}), (0, jsx_runtime_1.jsx)("div", {
|
|
220
221
|
className: (0, classNames_1.classNames)([gradientClass, driveClassNameGradient || "", `${gradientClass}--right`, showRight ? `${gradientClass}--visible` : "", isHiddenDisplay.right ? `${gradientClass}--hidden` : ""])
|
|
221
222
|
}), (0, jsx_runtime_1.jsx)(textIconButton_1.TextIconButton, {
|
|
222
|
-
title: translate("Scroll
|
|
223
|
+
title: translate("Scroll to end"),
|
|
223
224
|
className: (0, classNames_1.classNames)([scrollerClass, driveClassNameScroller || "", "zen-filters-toolbar__end", showRight ? `${scrollerClass}--visible` : "", isHiddenDisplay.right ? `${scrollerClass}--hidden` : ""]),
|
|
224
|
-
icon:
|
|
225
|
+
icon: ScrollEndIcon,
|
|
225
226
|
onClick: handleScrollButtonClick(scrollableStep),
|
|
226
227
|
iconPosition: textIconButton_1.ButtonIconPosition.End
|
|
227
228
|
})]
|
|
228
229
|
}) : null;
|
|
229
230
|
};
|
|
230
231
|
exports.FiltersContainer = FiltersContainer;
|
|
231
|
-
exports.TRANSLATIONS = ["Scroll
|
|
232
|
+
exports.TRANSLATIONS = ["Scroll to start", "Scroll to end"];
|
|
@@ -11,6 +11,8 @@ const jsx_runtime_1 = require("react/jsx-runtime");
|
|
|
11
11
|
const react_1 = require("react");
|
|
12
12
|
const button_1 = require("../button/button");
|
|
13
13
|
const iconChevronLeft_1 = require("../icons/iconChevronLeft");
|
|
14
|
+
const iconChevronRight_1 = require("../icons/iconChevronRight");
|
|
15
|
+
const useDirectionalIcon_1 = require("../utils/localization/useDirectionalIcon");
|
|
14
16
|
const textIconButton_1 = require("../textIconButton/textIconButton");
|
|
15
17
|
const useLanguage_1 = require("../utils/localization/useLanguage");
|
|
16
18
|
const formStepper_1 = require("../formStepper/formStepper");
|
|
@@ -139,6 +141,7 @@ const FormStepperButtons = ({
|
|
|
139
141
|
translate
|
|
140
142
|
} = (0, useLanguage_1.useLanguage)();
|
|
141
143
|
const isMobile = (0, useMobile_1.useMobile)();
|
|
144
|
+
const BackChevronIcon = (0, useDirectionalIcon_1.useDirectionalIcon)(iconChevronLeft_1.IconChevronLeft, iconChevronRight_1.IconChevronRight);
|
|
142
145
|
const onPreviousHandler = (0, react_1.useCallback)(() => {
|
|
143
146
|
const currIndex = (0, getCurrentIndex_1.getCurrentIndex)(steps, current);
|
|
144
147
|
const prevStep = currIndex > 0 ? steps[currIndex - 1].id : null;
|
|
@@ -177,7 +180,7 @@ const FormStepperButtons = ({
|
|
|
177
180
|
className: "zen-form-step-buttons__left",
|
|
178
181
|
children: !isFirstStep && (0, jsx_runtime_1.jsx)(textIconButton_1.TextIconButton, {
|
|
179
182
|
className: "zen-form-step-buttons__previous",
|
|
180
|
-
icon:
|
|
183
|
+
icon: BackChevronIcon,
|
|
181
184
|
type: "tertiary-black",
|
|
182
185
|
onClick: onPreviousHandler,
|
|
183
186
|
children: translate("Previous step")
|
|
@@ -126,6 +126,8 @@ const iconHouse_1 = require("../icons/deprecated/iconHouse");
|
|
|
126
126
|
const iconCheckRadio_1 = require("../icons/iconCheckRadio");
|
|
127
127
|
const useLanguage_1 = require("../utils/localization/useLanguage");
|
|
128
128
|
const iconArrowLeft_1 = require("../icons/iconArrowLeft");
|
|
129
|
+
const iconArrowRight_1 = require("../icons/iconArrowRight");
|
|
130
|
+
const useDirectionalIcon_1 = require("../utils/localization/useDirectionalIcon");
|
|
129
131
|
const GroupsFilterAdjustmentState = ({
|
|
130
132
|
children,
|
|
131
133
|
onBackButtonClick,
|
|
@@ -137,6 +139,7 @@ const GroupsFilterAdjustmentState = ({
|
|
|
137
139
|
const {
|
|
138
140
|
translate
|
|
139
141
|
} = (0, useLanguage_1.useLanguage)();
|
|
142
|
+
const BackArrowIcon = (0, useDirectionalIcon_1.useDirectionalIcon)(iconArrowLeft_1.IconArrowLeft, iconArrowRight_1.IconArrowRight);
|
|
140
143
|
const handleSelectAllClick = () => {
|
|
141
144
|
onSelectAllClick(isAllSelected);
|
|
142
145
|
};
|
|
@@ -160,7 +163,7 @@ const GroupsFilterAdjustmentState = ({
|
|
|
160
163
|
className: "zen-groups-filter-menu__content-adjustment",
|
|
161
164
|
children: [(0, jsx_runtime_1.jsxs)("div", {
|
|
162
165
|
className: "zen-groups-filter-menu__item-wrapper",
|
|
163
|
-
children: [getActionButton(backButtonName ? backButtonName : translate("Back"), translate("Back"),
|
|
166
|
+
children: [getActionButton(backButtonName ? backButtonName : translate("Back"), translate("Back"), BackArrowIcon, onBackButtonClick), (0, jsx_runtime_1.jsx)("button", {
|
|
164
167
|
type: "button",
|
|
165
168
|
onClick: onHomeButtonClick,
|
|
166
169
|
className: "zen-groups-filter-menu__item zen-groups-filter-menu__item--interactive zen-groups-filter-menu__action-button zen-groups-filter-menu__item--end zen-groups-filter-menu__action-button-home",
|
|
@@ -229,6 +229,8 @@ injectString("ar-SA", "Results", "\u0627\u0644\u0646\u062A\u0627\u0626\u062C");
|
|
|
229
229
|
const iconGlobe_1 = require("../icons/deprecated/iconGlobe");
|
|
230
230
|
const iconOrgFilter_1 = require("../icons/deprecated/iconOrgFilter");
|
|
231
231
|
const iconChevronRight_1 = require("../icons/iconChevronRight");
|
|
232
|
+
const iconChevronLeft_1 = require("../icons/iconChevronLeft");
|
|
233
|
+
const useDirectionalIcon_1 = require("../utils/localization/useDirectionalIcon");
|
|
232
234
|
const useLanguage_1 = require("../utils/localization/useLanguage");
|
|
233
235
|
const toggleButtonRaw_1 = require("../toggleButtonRaw/toggleButtonRaw");
|
|
234
236
|
const divider_1 = require("../divider/divider");
|
|
@@ -245,6 +247,7 @@ const GroupsFilterInitialState = ({
|
|
|
245
247
|
translate
|
|
246
248
|
} = (0, useLanguage_1.useLanguage)();
|
|
247
249
|
const togglerId = (0, react_1.useId)();
|
|
250
|
+
const ChevronIcon = (0, useDirectionalIcon_1.useDirectionalIcon)(iconChevronRight_1.IconChevronRight, iconChevronLeft_1.IconChevronLeft);
|
|
248
251
|
const handleTogglerChange = newState => onSiteWideChange(newState);
|
|
249
252
|
const currentlySelectedAriaLabel = translate("View currently selected filters").concat(". ").concat(count ? translate("Number of selected groups - {count}").replace("{count}", count.toString()) : translate("All groups selected"));
|
|
250
253
|
return (0, jsx_runtime_1.jsxs)("div", {
|
|
@@ -293,7 +296,7 @@ const GroupsFilterInitialState = ({
|
|
|
293
296
|
children: (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, {
|
|
294
297
|
children: [(0, jsx_runtime_1.jsx)(groupsFilterCommon_1.GroupsFilterCurrentlySelectedLabel, {
|
|
295
298
|
count: count
|
|
296
|
-
}), (0, jsx_runtime_1.jsx)(
|
|
299
|
+
}), (0, jsx_runtime_1.jsx)(ChevronIcon, {
|
|
297
300
|
size: "large"
|
|
298
301
|
})]
|
|
299
302
|
})
|
|
@@ -19,7 +19,9 @@ const jsx_runtime_1 = require("react/jsx-runtime");
|
|
|
19
19
|
const textIconButton_1 = require("../textIconButton/textIconButton");
|
|
20
20
|
const classNames_1 = require("../commonHelpers/classNames/classNames");
|
|
21
21
|
const iconChevronLeft_1 = require("../icons/iconChevronLeft");
|
|
22
|
+
const iconChevronRight_1 = require("../icons/iconChevronRight");
|
|
22
23
|
const useLanguage_1 = require("../utils/localization/useLanguage");
|
|
24
|
+
const useDirectionalIcon_1 = require("../utils/localization/useDirectionalIcon");
|
|
23
25
|
injectString("cs", "Back", "Zp\u011Bt");
|
|
24
26
|
injectString("da-DK", "Back", "Tilbage");
|
|
25
27
|
injectString("de", "Back", "Zur\xFCck");
|
|
@@ -60,11 +62,12 @@ const HeaderBack = _a => {
|
|
|
60
62
|
const {
|
|
61
63
|
translate
|
|
62
64
|
} = (0, useLanguage_1.useLanguage)();
|
|
65
|
+
const BackChevronIcon = (0, useDirectionalIcon_1.useDirectionalIcon)(iconChevronLeft_1.IconChevronLeft, iconChevronRight_1.IconChevronRight);
|
|
63
66
|
const fullClassName = (0, classNames_1.classNames)(["zen-header-back", className || ""]);
|
|
64
67
|
const props = Object.assign({}, restProps);
|
|
65
68
|
return (0, jsx_runtime_1.jsx)(textIconButton_1.TextIconButton, Object.assign({
|
|
66
69
|
id: id,
|
|
67
|
-
icon:
|
|
70
|
+
icon: BackChevronIcon,
|
|
68
71
|
iconPosition: textIconButton_1.ButtonIconPosition.Start,
|
|
69
72
|
type: "tertiary",
|
|
70
73
|
className: fullClassName,
|
|
@@ -4,11 +4,9 @@ exports.IconAlignLeft = void 0;
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const react_1 = require("react");
|
|
6
6
|
const classNames_1 = require("../commonHelpers/classNames/classNames");
|
|
7
|
-
const useIsRTL_1 = require("../utils/localization/useIsRTL");
|
|
8
7
|
const IconAlignLeft = ({ className, size, title, description, focusable = false }) => {
|
|
9
8
|
const uniqueId = (0, react_1.useId)();
|
|
10
|
-
const
|
|
11
|
-
const classes = (0, react_1.useMemo)(() => (0, classNames_1.classNames)(["zen-icon", size ? `zen-icon--${size}` : "", isRTL ? "zen-icon--rtl" : "", className !== null && className !== void 0 ? className : ""]), [size, isRTL, className]);
|
|
9
|
+
const classes = (0, react_1.useMemo)(() => (0, classNames_1.classNames)(["zen-icon", size ? `zen-icon--${size}` : "", className !== null && className !== void 0 ? className : ""]), [size, className]);
|
|
12
10
|
return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 25", focusable: focusable ? "true" : undefined, tabIndex: focusable ? 0 : undefined, role: focusable || title || description ? undefined : "presentation", className: classes, "aria-labelledby": title && focusable ? uniqueId : undefined, "data-name": "IconAlignLeft", children: [title ? (0, jsx_runtime_1.jsx)("title", { id: uniqueId, children: title }) : null, description ? (0, jsx_runtime_1.jsx)("desc", { children: description }) : null, (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 4.87a1 1 0 011-1h16a1 1 0 011 1v16a1 1 0 01-1 1H4a1 1 0 01-1-1v-16zm2 1v14h14v-14H5zm3 2a1 1 0 011 1v8a1 1 0 11-2 0v-8a1 1 0 011-1z" })] }));
|
|
13
11
|
};
|
|
14
12
|
exports.IconAlignLeft = IconAlignLeft;
|
|
@@ -4,11 +4,9 @@ exports.IconAlignmentLeft = void 0;
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const react_1 = require("react");
|
|
6
6
|
const classNames_1 = require("../commonHelpers/classNames/classNames");
|
|
7
|
-
const useIsRTL_1 = require("../utils/localization/useIsRTL");
|
|
8
7
|
const IconAlignmentLeft = ({ className, size, title, description, focusable = false }) => {
|
|
9
8
|
const uniqueId = (0, react_1.useId)();
|
|
10
|
-
const
|
|
11
|
-
const classes = (0, react_1.useMemo)(() => (0, classNames_1.classNames)(["zen-icon", size ? `zen-icon--${size}` : "", isRTL ? "zen-icon--rtl" : "", className !== null && className !== void 0 ? className : ""]), [size, isRTL, className]);
|
|
9
|
+
const classes = (0, react_1.useMemo)(() => (0, classNames_1.classNames)(["zen-icon", size ? `zen-icon--${size}` : "", className !== null && className !== void 0 ? className : ""]), [size, className]);
|
|
12
10
|
return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 25", focusable: focusable ? "true" : undefined, tabIndex: focusable ? 0 : undefined, role: focusable || title || description ? undefined : "presentation", className: classes, "aria-labelledby": title && focusable ? uniqueId : undefined, "data-name": "IconAlignmentLeft", children: [title ? (0, jsx_runtime_1.jsx)("title", { id: uniqueId, children: title }) : null, description ? (0, jsx_runtime_1.jsx)("desc", { children: description }) : null, (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 5.87a1 1 0 011-1h16a1 1 0 110 2H4a1 1 0 01-1-1zm0 7a1 1 0 011-1h8a1 1 0 110 2H4a1 1 0 01-1-1zm0 7a1 1 0 011-1h16a1 1 0 110 2H4a1 1 0 01-1-1z" })] }));
|
|
13
11
|
};
|
|
14
12
|
exports.IconAlignmentLeft = IconAlignmentLeft;
|
|
@@ -4,11 +4,9 @@ exports.IconAlignmentRight = void 0;
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const react_1 = require("react");
|
|
6
6
|
const classNames_1 = require("../commonHelpers/classNames/classNames");
|
|
7
|
-
const useIsRTL_1 = require("../utils/localization/useIsRTL");
|
|
8
7
|
const IconAlignmentRight = ({ className, size, title, description, focusable = false }) => {
|
|
9
8
|
const uniqueId = (0, react_1.useId)();
|
|
10
|
-
const
|
|
11
|
-
const classes = (0, react_1.useMemo)(() => (0, classNames_1.classNames)(["zen-icon", size ? `zen-icon--${size}` : "", isRTL ? "zen-icon--rtl" : "", className !== null && className !== void 0 ? className : ""]), [size, isRTL, className]);
|
|
9
|
+
const classes = (0, react_1.useMemo)(() => (0, classNames_1.classNames)(["zen-icon", size ? `zen-icon--${size}` : "", className !== null && className !== void 0 ? className : ""]), [size, className]);
|
|
12
10
|
return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 25", focusable: focusable ? "true" : undefined, tabIndex: focusable ? 0 : undefined, role: focusable || title || description ? undefined : "presentation", className: classes, "aria-labelledby": title && focusable ? uniqueId : undefined, "data-name": "IconAlignmentRight", children: [title ? (0, jsx_runtime_1.jsx)("title", { id: uniqueId, children: title }) : null, description ? (0, jsx_runtime_1.jsx)("desc", { children: description }) : null, (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 5.87a1 1 0 011-1h16a1 1 0 110 2H4a1 1 0 01-1-1zm8 7a1 1 0 011-1h8a1 1 0 110 2h-8a1 1 0 01-1-1zm-8 7a1 1 0 011-1h16a1 1 0 110 2H4a1 1 0 01-1-1z" })] }));
|
|
13
11
|
};
|
|
14
12
|
exports.IconAlignmentRight = IconAlignmentRight;
|