@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
|
@@ -57,6 +57,7 @@ const SubColumnsList = ({
|
|
|
57
57
|
showCheckbox: true,
|
|
58
58
|
children: c.title
|
|
59
59
|
})), [columns, sortColumnsInt, lastVisibleColumnId]);
|
|
60
|
+
const allDisabled = useMemo(() => items.every(item => item.disabled), [items]);
|
|
60
61
|
const state = columns.reduce((res, c) => {
|
|
61
62
|
res.set(c.id, settings.get(c.id) !== false ? CheckboxState.On : CheckboxState.Off);
|
|
62
63
|
return res;
|
|
@@ -76,8 +77,9 @@ const SubColumnsList = ({
|
|
|
76
77
|
title: title || translate("Select visible columns"),
|
|
77
78
|
multiselect: true,
|
|
78
79
|
showCheckbox: true,
|
|
79
|
-
onChange: onChangeItem
|
|
80
|
-
|
|
80
|
+
onChange: onChangeItem,
|
|
81
|
+
disabled: allDisabled
|
|
82
|
+
}), [id, items, state, title, translate, onChangeItem, allDisabled]);
|
|
81
83
|
if (!title) {
|
|
82
84
|
return list;
|
|
83
85
|
}
|
|
@@ -16,6 +16,14 @@ export interface ISelectableRowsOptions<T extends IRowEntity<N>, N extends IEnti
|
|
|
16
16
|
checkboxTitle?: (entity: T | N) => string;
|
|
17
17
|
headerTitle?: (state: SelectionState) => string;
|
|
18
18
|
turnOffSelectAll?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* When `true`, the header checkbox emits the current page's IDs instead of `{ all: true }`.
|
|
21
|
+
* When `undefined`, falls back to `turnOffSelectAll` for backward compatibility.
|
|
22
|
+
*
|
|
23
|
+
* Note: avoid setting this to `false` alongside `turnOffSelectAll: true` — the checkbox
|
|
24
|
+
* will emit `{ all: true }` while the dropdown hides the "Select all" option, which is inconsistent.
|
|
25
|
+
*/
|
|
26
|
+
checkboxSelectsCurrentPage?: boolean;
|
|
19
27
|
checkboxPlaceholder?: boolean;
|
|
20
28
|
strategy?: TSelectionStrategy;
|
|
21
29
|
selectAll?: boolean;
|
|
@@ -179,8 +179,16 @@ export const useSelectableRows = (columns, entities, isMobile, selectMode, setSe
|
|
|
179
179
|
return translate("Deselect all");
|
|
180
180
|
}, [selectable, selectableState, state, translate]);
|
|
181
181
|
const isEntityChecked = useCallback((entity, isNested) => isRowChecked(selections, state, selectable === null || selectable === void 0 ? void 0 : selectable.strategy, entity, isNested), [selections, state, selectable === null || selectable === void 0 ? void 0 : selectable.strategy]);
|
|
182
|
+
const hasSelectable = !!selectable;
|
|
183
|
+
const selectableCheckboxSelectsCurrentPage = selectable === null || selectable === void 0 ? void 0 : selectable.checkboxSelectsCurrentPage;
|
|
184
|
+
const selectableTurnOffSelectAll = selectable === null || selectable === void 0 ? void 0 : selectable.turnOffSelectAll;
|
|
185
|
+
const selectableCheckboxInHeader = selectable === null || selectable === void 0 ? void 0 : selectable.checkboxInHeader;
|
|
186
|
+
const selectableSelectionLimit = selectable === null || selectable === void 0 ? void 0 : selectable.selectionLimit;
|
|
187
|
+
const selectableHeader = selectable === null || selectable === void 0 ? void 0 : selectable.header;
|
|
188
|
+
const checkboxEmitsCurrentPage = selectableCheckboxSelectsCurrentPage !== null && selectableCheckboxSelectsCurrentPage !== void 0 ? selectableCheckboxSelectsCurrentPage : selectableTurnOffSelectAll;
|
|
189
|
+
const checkboxInHeaderValue = selectableCheckboxInHeader !== undefined ? selectableCheckboxInHeader : selectableSelectionLimit !== undefined ? false : undefined;
|
|
182
190
|
const wrapper = useMemo(() => {
|
|
183
|
-
if (!
|
|
191
|
+
if (!hasSelectable) {
|
|
184
192
|
return null;
|
|
185
193
|
}
|
|
186
194
|
return {
|
|
@@ -224,7 +232,7 @@ export const useSelectableRows = (columns, entities, isMobile, selectMode, setSe
|
|
|
224
232
|
onChange: newValue => {
|
|
225
233
|
var _a, _b;
|
|
226
234
|
if (newValue) {
|
|
227
|
-
const newState =
|
|
235
|
+
const newState = checkboxEmitsCurrentPage ? SelectionState.CurrentPage : SelectionState.All;
|
|
228
236
|
setState(newState);
|
|
229
237
|
onChangeSelectionState(newState);
|
|
230
238
|
} else {
|
|
@@ -242,18 +250,18 @@ export const useSelectableRows = (columns, entities, isMobile, selectMode, setSe
|
|
|
242
250
|
}
|
|
243
251
|
},
|
|
244
252
|
calculateSelectionState: () => selectableState,
|
|
245
|
-
checkboxInHeader:
|
|
246
|
-
header:
|
|
253
|
+
checkboxInHeader: checkboxInHeaderValue,
|
|
254
|
+
header: selectableHeader,
|
|
247
255
|
onSelect: newState => {
|
|
248
256
|
setState(newState);
|
|
249
257
|
onChangeSelectionState(newState);
|
|
250
258
|
},
|
|
251
|
-
turnOffSelectAll:
|
|
259
|
+
turnOffSelectAll: selectableTurnOffSelectAll
|
|
252
260
|
});
|
|
253
261
|
return cell;
|
|
254
262
|
}
|
|
255
263
|
};
|
|
256
|
-
}, [checkboxDisabled, checkboxTitle, checkboxVisible, headerTitle, onChangeSelectionState, onSelectListener, selectable, selectableState, state, isMobile, checkboxPlaceholder, isEntityChecked, entities, setSelectMode]);
|
|
264
|
+
}, [checkboxDisabled, checkboxTitle, checkboxVisible, headerTitle, onChangeSelectionState, onSelectListener, hasSelectable, checkboxEmitsCurrentPage, checkboxInHeaderValue, selectableHeader, selectableTurnOffSelectAll, selectable, selectableState, state, isMobile, checkboxPlaceholder, isEntityChecked, entities, setSelectMode]);
|
|
257
265
|
const selectableFeedWrapper = useCallback((primaryData, secondaryData, entity, isNested) => {
|
|
258
266
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
259
267
|
if (!entity) {
|
package/esm/table/table.js
CHANGED
|
@@ -177,12 +177,6 @@ const TableInner = ({
|
|
|
177
177
|
selected: []
|
|
178
178
|
});
|
|
179
179
|
}, [selectable]);
|
|
180
|
-
const selectAll = useCallback(() => {
|
|
181
|
-
selectable === null || selectable === void 0 ? void 0 : selectable.onSelect({
|
|
182
|
-
all: true,
|
|
183
|
-
selected: []
|
|
184
|
-
});
|
|
185
|
-
}, [selectable]);
|
|
186
180
|
const [activeIdInternal, setActiveInternal] = useState(undefined);
|
|
187
181
|
const activeId = active !== undefined ? active : activeIdInternal;
|
|
188
182
|
const onClickInternal = useCallback(id => setActiveInternal(id === activeIdInternal ? undefined : id), [activeIdInternal, setActiveInternal]);
|
|
@@ -199,7 +193,7 @@ const TableInner = ({
|
|
|
199
193
|
detailPanel,
|
|
200
194
|
footer,
|
|
201
195
|
other
|
|
202
|
-
} = useTableChildren(children, isMobile, selectionQty, ((_c = selectable === null || selectable === void 0 ? void 0 : selectable.selection) === null || _c === void 0 ? void 0 : _c.all) || false, clearSelection,
|
|
196
|
+
} = useTableChildren(children, isMobile, selectionQty, ((_c = selectable === null || selectable === void 0 ? void 0 : selectable.selection) === null || _c === void 0 ? void 0 : _c.all) || false, clearSelection, activeId, gridRef, onCloseDetailPanel);
|
|
203
197
|
const hasDetailPanel = !!detailPanel;
|
|
204
198
|
const shouldEnableRowClick = hasDetailPanel || !!onClick;
|
|
205
199
|
const activeIdForRow = shouldEnableRowClick ? activeId : undefined;
|
package/esm/tabs/tabs.js
CHANGED
|
@@ -6,65 +6,65 @@ import { useDriveClassName } from "../utils/theme/useDriveClassName";
|
|
|
6
6
|
import { useLanguage } from "../utils/localization/useLanguage";
|
|
7
7
|
import { TabItem } from "./tabItem/tabItem";
|
|
8
8
|
import { IconChevronRight } from "../icons/iconChevronRight";
|
|
9
|
+
import { IconChevronLeft } from "../icons/iconChevronLeft";
|
|
10
|
+
import { useDirectionalIcon } from "../utils/localization/useDirectionalIcon";
|
|
9
11
|
import { ButtonIconPosition, TextIconButton } from "../textIconButton/textIconButton";
|
|
10
12
|
import { tabsKeyboardHandler, tabsKeyboardTabHandler } from "../commonHelpers/tabsKeyboard";
|
|
11
13
|
import { useMobileClassName } from "../utils/theme/useMobileClassName";
|
|
12
14
|
import "../utils/globalThisPolyfill";
|
|
13
15
|
import { zen } from "../utils/zen";
|
|
14
|
-
injectString("cs", "Scroll
|
|
15
|
-
injectString("da-DK", "Scroll
|
|
16
|
-
injectString("de", "Scroll
|
|
17
|
-
injectString("en", "Scroll
|
|
18
|
-
injectString("es", "Scroll
|
|
19
|
-
injectString("fi-FI", "Scroll
|
|
20
|
-
injectString("fr", "Scroll
|
|
21
|
-
injectString("fr-FR", "Scroll
|
|
22
|
-
injectString("hu-HU", "Scroll
|
|
23
|
-
injectString("id", "Scroll
|
|
24
|
-
injectString("it", "Scroll
|
|
25
|
-
injectString("ja", "Scroll
|
|
26
|
-
injectString("ko-KR", "Scroll
|
|
27
|
-
injectString("ms", "Scroll
|
|
28
|
-
injectString("nb-NO", "Scroll
|
|
29
|
-
injectString("nl", "Scroll
|
|
30
|
-
injectString("pl", "Scroll
|
|
31
|
-
injectString("pt-BR", "Scroll
|
|
32
|
-
injectString("pt-PT", "Scroll
|
|
33
|
-
injectString("sk-SK", "Scroll
|
|
34
|
-
injectString("sv", "Scroll
|
|
35
|
-
injectString("th", "Scroll
|
|
36
|
-
injectString("tr", "Scroll
|
|
37
|
-
injectString("zh-Hans", "Scroll
|
|
38
|
-
injectString("zh-TW", "Scroll
|
|
39
|
-
injectString("ro-RO", "Scroll
|
|
40
|
-
injectString("
|
|
41
|
-
injectString("
|
|
42
|
-
injectString("
|
|
43
|
-
injectString("
|
|
44
|
-
injectString("
|
|
45
|
-
injectString("
|
|
46
|
-
injectString("
|
|
47
|
-
injectString("fr", "Scroll
|
|
48
|
-
injectString("
|
|
49
|
-
injectString("
|
|
50
|
-
injectString("
|
|
51
|
-
injectString("
|
|
52
|
-
injectString("
|
|
53
|
-
injectString("
|
|
54
|
-
injectString("
|
|
55
|
-
injectString("
|
|
56
|
-
injectString("
|
|
57
|
-
injectString("
|
|
58
|
-
injectString("pt-
|
|
59
|
-
injectString("
|
|
60
|
-
injectString("
|
|
61
|
-
injectString("
|
|
62
|
-
injectString("
|
|
63
|
-
injectString("
|
|
64
|
-
injectString("zh-
|
|
65
|
-
injectString("
|
|
66
|
-
injectString("ro-RO", "Scroll right", "Derula\u021Bi la dreapta");
|
|
67
|
-
injectString("ar-SA", "Scroll right", "\u0627\u0644\u062A\u0645\u0631\u064A\u0631 \u0644\u0644\u064A\u0645\u064A\u0646");
|
|
16
|
+
injectString("cs", "Scroll to start", "P\u0159ej\xEDt na za\u010D\xE1tek");
|
|
17
|
+
injectString("da-DK", "Scroll to start", "Rul til start");
|
|
18
|
+
injectString("de", "Scroll to start", "Zum Start scrollen");
|
|
19
|
+
injectString("en", "Scroll to start", "Scroll to start");
|
|
20
|
+
injectString("es", "Scroll to start", "Desplazarse al inicio");
|
|
21
|
+
injectString("fi-FI", "Scroll to start", "Vierit\xE4 alkuun");
|
|
22
|
+
injectString("fr", "Scroll to start", "D\xE9filement au d\xE9but");
|
|
23
|
+
injectString("fr-FR", "Scroll to start", "Faites d\xE9filer pour d\xE9marrer");
|
|
24
|
+
injectString("hu-HU", "Scroll to start", "G\xF6rget\xE9s az elej\xE9re");
|
|
25
|
+
injectString("id", "Scroll to start", "Gulirkan untuk memulai");
|
|
26
|
+
injectString("it", "Scroll to start", "Scorrere fino all'inizio");
|
|
27
|
+
injectString("ja", "Scroll to start", "\u4E00\u756A\u4E0A\u306B\u30B9\u30AF\u30ED\u30FC\u30EB");
|
|
28
|
+
injectString("ko-KR", "Scroll to start", "\uC2DC\uC791 \uC704\uCE58\uB85C \uC2A4\uD06C\uB864");
|
|
29
|
+
injectString("ms", "Scroll to start", "Tatal ke permulaan");
|
|
30
|
+
injectString("nb-NO", "Scroll to start", "Rull til start");
|
|
31
|
+
injectString("nl", "Scroll to start", "Scroll to start");
|
|
32
|
+
injectString("pl", "Scroll to start", "Przewi\u0144 do pocz\u0105tku");
|
|
33
|
+
injectString("pt-BR", "Scroll to start", "Scroll to start");
|
|
34
|
+
injectString("pt-PT", "Scroll to start", "Scroll to start");
|
|
35
|
+
injectString("sk-SK", "Scroll to start", "Posun\xFA\u0165 na za\u010Diatok");
|
|
36
|
+
injectString("sv", "Scroll to start", "Scroll to start");
|
|
37
|
+
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");
|
|
38
|
+
injectString("tr", "Scroll to start", "Ba\u015Flang\u0131ca kayd\u0131r");
|
|
39
|
+
injectString("zh-Hans", "Scroll to start", "\u6EDA\u52A8\u81F3\u5F00\u5934");
|
|
40
|
+
injectString("zh-TW", "Scroll to start", "\u6372\u52D5\u81F3\u958B\u59CB\u8655");
|
|
41
|
+
injectString("ro-RO", "Scroll to start", "Derulare la \xEEnceput");
|
|
42
|
+
injectString("cs", "Scroll to end", "P\u0159ej\xEDt na konec");
|
|
43
|
+
injectString("da-DK", "Scroll to end", "Rul til slutning");
|
|
44
|
+
injectString("de", "Scroll to end", "Zum Ende scrollen");
|
|
45
|
+
injectString("en", "Scroll to end", "Scroll to end");
|
|
46
|
+
injectString("es", "Scroll to end", "Desplazarse al final");
|
|
47
|
+
injectString("fi-FI", "Scroll to end", "Vierit\xE4 loppuun");
|
|
48
|
+
injectString("fr", "Scroll to end", "D\xE9filement \xE0 la fin");
|
|
49
|
+
injectString("fr-FR", "Scroll to end", "Faites d\xE9filer jusqu\u2019\xE0 la fin");
|
|
50
|
+
injectString("hu-HU", "Scroll to end", "G\xF6rget\xE9s a v\xE9g\xE9re");
|
|
51
|
+
injectString("id", "Scroll to end", "Gulirkan ke akhir");
|
|
52
|
+
injectString("it", "Scroll to end", "Scorrere fino alla fine");
|
|
53
|
+
injectString("ja", "Scroll to end", "\u4E00\u756A\u4E0B\u307E\u3067\u30B9\u30AF\u30ED\u30FC\u30EB");
|
|
54
|
+
injectString("ko-KR", "Scroll to end", "\uB9C8\uC9C0\uB9C9 \uC704\uCE58\uB85C \uC2A4\uD06C\uB864");
|
|
55
|
+
injectString("ms", "Scroll to end", "Tatal ke penghujung");
|
|
56
|
+
injectString("nb-NO", "Scroll to end", "Rull til slutt");
|
|
57
|
+
injectString("nl", "Scroll to end", "Scroll to end");
|
|
58
|
+
injectString("pl", "Scroll to end", "Przewi\u0144 do ko\u0144ca");
|
|
59
|
+
injectString("pt-BR", "Scroll to end", "Scroll to end");
|
|
60
|
+
injectString("pt-PT", "Scroll to end", "Scroll to end");
|
|
61
|
+
injectString("sk-SK", "Scroll to end", "Posun\xFA\u0165 na koniec");
|
|
62
|
+
injectString("sv", "Scroll to end", "Scroll to end");
|
|
63
|
+
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");
|
|
64
|
+
injectString("tr", "Scroll to end", "Sona kayd\u0131r");
|
|
65
|
+
injectString("zh-Hans", "Scroll to end", "\u6EDA\u52A8\u81F3\u672B\u5C3E");
|
|
66
|
+
injectString("zh-TW", "Scroll to end", "\u6372\u52D5\u81F3\u7D50\u5C3E\u8655");
|
|
67
|
+
injectString("ro-RO", "Scroll to end", "Derulare la sf\xE2r\u0219it");
|
|
68
68
|
export const TabsDisplayName = "Tabs";
|
|
69
69
|
const getScrollButtonType = element => {
|
|
70
70
|
const scrollLeft = element.scrollLeft;
|
|
@@ -93,6 +93,8 @@ export const Tabs = ({
|
|
|
93
93
|
const {
|
|
94
94
|
translate
|
|
95
95
|
} = useLanguage();
|
|
96
|
+
const ScrollStartIcon = useDirectionalIcon(IconChevronLeft, IconChevronRight);
|
|
97
|
+
const ScrollEndIcon = useDirectionalIcon(IconChevronRight, IconChevronLeft);
|
|
96
98
|
const driveClassNameScroller = useDriveClassName("zen-tabs__scroller");
|
|
97
99
|
const mobileClassNameScroller = useMobileClassName("zen-tabs__scroller");
|
|
98
100
|
const driveClassNameGradient = useDriveClassName("zen-tabs__gradient");
|
|
@@ -210,9 +212,9 @@ export const Tabs = ({
|
|
|
210
212
|
children: [_jsx("div", {
|
|
211
213
|
className: classNames(["zen-tabs__gradient", driveClassNameGradient || mobileClassNameGradient || "", "zen-tabs__gradient--left"])
|
|
212
214
|
}), _jsx(TextIconButton, {
|
|
213
|
-
title: translate("Scroll
|
|
215
|
+
title: translate("Scroll to start"),
|
|
214
216
|
className: classNames(["zen-tabs__scroller", driveClassNameScroller || mobileClassNameScroller || "", "zen-tabs__start"]),
|
|
215
|
-
icon:
|
|
217
|
+
icon: ScrollStartIcon,
|
|
216
218
|
type: "tertiary",
|
|
217
219
|
iconPosition: ButtonIconPosition.Start,
|
|
218
220
|
onClick: handleScrollButtonClick(scrollableRef.current, -scrollableStep),
|
|
@@ -243,9 +245,9 @@ export const Tabs = ({
|
|
|
243
245
|
children: [_jsx("div", {
|
|
244
246
|
className: classNames(["zen-tabs__gradient", driveClassNameGradient || mobileClassNameGradient || "", "zen-tabs__gradient--right"])
|
|
245
247
|
}), _jsx(TextIconButton, {
|
|
246
|
-
title: translate("Scroll
|
|
248
|
+
title: translate("Scroll to end"),
|
|
247
249
|
className: classNames(["zen-tabs__scroller", driveClassNameScroller || mobileClassNameScroller || "", "zen-tabs__end"]),
|
|
248
|
-
icon:
|
|
250
|
+
icon: ScrollEndIcon,
|
|
249
251
|
type: "tertiary",
|
|
250
252
|
onClick: handleScrollButtonClick(scrollableRef.current, scrollableStep),
|
|
251
253
|
iconPosition: ButtonIconPosition.End
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
export const getLeftArrowElement = (el) => el.querySelector(".zen-tabs__scroller[aria-label='Scroll
|
|
3
|
-
export const getRightArrowElement = (el) => el.querySelector(".zen-tabs__scroller[aria-label='Scroll
|
|
2
|
+
export const getLeftArrowElement = (el) => el.querySelector(".zen-tabs__scroller[aria-label='Scroll to start']");
|
|
3
|
+
export const getRightArrowElement = (el) => el.querySelector(".zen-tabs__scroller[aria-label='Scroll to end']");
|
|
4
4
|
export const tabsData = [
|
|
5
5
|
{ id: "id1", name: "Tab Text 1", content: _jsx("div", { children: "Tab content1" }) },
|
|
6
6
|
{ id: "id2", name: "Tab Text 2", content: _jsx("div", { children: "Tab content2" }) },
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const mockAbsoluteAlignment: () => void;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import * as AbsoluteModule from "../absolute/absolute";
|
|
3
|
+
export const mockAbsoluteAlignment = () => {
|
|
4
|
+
beforeEach(() => {
|
|
5
|
+
jest.spyOn(AbsoluteModule, "Absolute").mockImplementation(({ alignment }) => (_jsx("div", { "data-testid": "absolute", "data-alignment": alignment })));
|
|
6
|
+
});
|
|
7
|
+
afterEach(() => {
|
|
8
|
+
jest.restoreAllMocks();
|
|
9
|
+
});
|
|
10
|
+
};
|
|
@@ -267,7 +267,7 @@ export const TimePickerRaw = props => {
|
|
|
267
267
|
}
|
|
268
268
|
}, [hourValue, isOpen, minutesValue]);
|
|
269
269
|
const triggerClassName = classNames(["zen-time-picker__trigger", fullWidth ? "zen-time-picker__trigger--full-width" : "", isError ? "zen-time-picker__trigger--error" : "", className || ""]);
|
|
270
|
-
const shownValue = `${hourValue || "
|
|
270
|
+
const shownValue = `${hourValue || "00"}:${minutesValue || "00"}`;
|
|
271
271
|
if (isReadOnly) {
|
|
272
272
|
return _jsx(ReviewTextControl, {
|
|
273
273
|
value: shownValue
|
|
@@ -102,6 +102,8 @@ export const ToggleButtonRaw = props => {
|
|
|
102
102
|
}
|
|
103
103
|
return _jsxs("div", {
|
|
104
104
|
className: classNames(["zen-toggler", driveClassesToggler || "", className || ""]),
|
|
105
|
+
role: "group",
|
|
106
|
+
"aria-label": title,
|
|
105
107
|
"data-analytics-id": dataAnalyticsId,
|
|
106
108
|
children: [_jsx(TriStateCheckbox, {
|
|
107
109
|
name: name,
|
|
@@ -110,14 +112,15 @@ export const ToggleButtonRaw = props => {
|
|
|
110
112
|
onChange: onChangeHandler,
|
|
111
113
|
checked: value,
|
|
112
114
|
disabled: disabled,
|
|
113
|
-
role: "switch"
|
|
115
|
+
role: "switch",
|
|
116
|
+
"aria-label": title
|
|
114
117
|
}), _jsxs("label", {
|
|
115
118
|
className: classNames(["zen-toggler__label", isReverted ? "zen-toggler__label--reverted" : ""]),
|
|
116
119
|
htmlFor: checkBoxId,
|
|
117
120
|
title: title,
|
|
118
|
-
"aria-label": title,
|
|
119
121
|
children: [_jsxs("div", {
|
|
120
122
|
className: classNames(["zen-toggler-component", driveClassesComponent || ""]),
|
|
123
|
+
"aria-hidden": "true",
|
|
121
124
|
children: [_jsx("div", {
|
|
122
125
|
className: "zen-toggler-component__focus"
|
|
123
126
|
}), _jsx("div", {
|
|
@@ -317,11 +317,15 @@
|
|
|
317
317
|
"Exit full screen table view": "Exit full screen table view",
|
|
318
318
|
"Close search": "Close search",
|
|
319
319
|
"Has additional actions. Use right arrow to access button, left arrow to return.": "Has additional actions. Use right arrow to access button, left arrow to return.",
|
|
320
|
-
"Drag & drop files or": "
|
|
321
|
-
"Browse": "
|
|
322
|
-
"Tap to add files": "
|
|
323
|
-
"Supported Formats:": "
|
|
320
|
+
"Drag & drop files or": "Přetáhněte soubory nebo",
|
|
321
|
+
"Browse": "Procházet",
|
|
322
|
+
"Tap to add files": "Klepnutím přidejte soubory",
|
|
323
|
+
"Supported Formats:": "Podporované formáty:",
|
|
324
324
|
"Upload files.": "Upload files.",
|
|
325
325
|
"File upload area": "File upload area",
|
|
326
|
-
"Uploaded": "Uploaded"
|
|
326
|
+
"Uploaded": "Uploaded",
|
|
327
|
+
"Ascending": "Vzestupně",
|
|
328
|
+
"Descending": "Sestupně",
|
|
329
|
+
"Scroll to start": "Přejít na začátek",
|
|
330
|
+
"Scroll to end": "Přejít na konec"
|
|
327
331
|
}
|
|
@@ -317,11 +317,15 @@
|
|
|
317
317
|
"Exit full screen table view": "Exit full screen table view",
|
|
318
318
|
"Close search": "Close search",
|
|
319
319
|
"Has additional actions. Use right arrow to access button, left arrow to return.": "Has additional actions. Use right arrow to access button, left arrow to return.",
|
|
320
|
-
"Drag & drop files or": "
|
|
321
|
-
"Browse": "
|
|
322
|
-
"Tap to add files": "
|
|
323
|
-
"Supported Formats:": "
|
|
320
|
+
"Drag & drop files or": "Træk og slip filer eller",
|
|
321
|
+
"Browse": "Gennemse",
|
|
322
|
+
"Tap to add files": "Tryk for at tilføje filer",
|
|
323
|
+
"Supported Formats:": "Understøttede formater:",
|
|
324
324
|
"Upload files.": "Upload files.",
|
|
325
325
|
"File upload area": "File upload area",
|
|
326
|
-
"Uploaded": "Uploaded"
|
|
326
|
+
"Uploaded": "Uploaded",
|
|
327
|
+
"Ascending": "Stigende",
|
|
328
|
+
"Descending": "Faldende",
|
|
329
|
+
"Scroll to start": "Rul til start",
|
|
330
|
+
"Scroll to end": "Rul til slutning"
|
|
327
331
|
}
|
|
@@ -317,11 +317,15 @@
|
|
|
317
317
|
"Exit full screen table view": "Exit full screen table view",
|
|
318
318
|
"Close search": "Close search",
|
|
319
319
|
"Has additional actions. Use right arrow to access button, left arrow to return.": "Has additional actions. Use right arrow to access button, left arrow to return.",
|
|
320
|
-
"Drag & drop files or": "
|
|
321
|
-
"Browse": "
|
|
322
|
-
"Tap to add files": "
|
|
323
|
-
"Supported Formats:": "
|
|
320
|
+
"Drag & drop files or": "Dateien hierher ziehen oder",
|
|
321
|
+
"Browse": "Durchsuchen",
|
|
322
|
+
"Tap to add files": "Tippen, um Dateien hinzuzufügen",
|
|
323
|
+
"Supported Formats:": "Unterstützte Formate:",
|
|
324
324
|
"Upload files.": "Upload files.",
|
|
325
325
|
"File upload area": "File upload area",
|
|
326
|
-
"Uploaded": "Uploaded"
|
|
326
|
+
"Uploaded": "Uploaded",
|
|
327
|
+
"Ascending": "Aufsteigend",
|
|
328
|
+
"Descending": "Absteigend",
|
|
329
|
+
"Scroll to start": "Zum Start scrollen",
|
|
330
|
+
"Scroll to end": "Zum Ende scrollen"
|
|
327
331
|
}
|
|
@@ -62,6 +62,8 @@
|
|
|
62
62
|
"Search": "Search",
|
|
63
63
|
"Scroll left": "Scroll left",
|
|
64
64
|
"Scroll right": "Scroll right",
|
|
65
|
+
"Scroll to start": "Scroll to start",
|
|
66
|
+
"Scroll to end": "Scroll to end",
|
|
65
67
|
"Organization groups filter": "Organization groups filter",
|
|
66
68
|
"Home": "Home",
|
|
67
69
|
"Built-in Groups": "Built-in Groups",
|
|
@@ -328,5 +330,7 @@
|
|
|
328
330
|
"File upload area": "File upload area",
|
|
329
331
|
"Uploaded": "Uploaded",
|
|
330
332
|
"Sort by Ascending": "Sort by Ascending",
|
|
331
|
-
"Sort by Descending": "Sort by Descending"
|
|
333
|
+
"Sort by Descending": "Sort by Descending",
|
|
334
|
+
"Ascending": "Ascending",
|
|
335
|
+
"Descending": "Descending"
|
|
332
336
|
}
|
|
@@ -317,11 +317,15 @@
|
|
|
317
317
|
"Exit full screen table view": "Exit full screen table view",
|
|
318
318
|
"Close search": "Close search",
|
|
319
319
|
"Has additional actions. Use right arrow to access button, left arrow to return.": "Has additional actions. Use right arrow to access button, left arrow to return.",
|
|
320
|
-
"Drag & drop files or": "
|
|
321
|
-
"Browse": "
|
|
322
|
-
"Tap to add files": "
|
|
323
|
-
"Supported Formats:": "
|
|
320
|
+
"Drag & drop files or": "Arrastrar y soltar archivos o",
|
|
321
|
+
"Browse": "Explorar",
|
|
322
|
+
"Tap to add files": "Toca para agregar archivos",
|
|
323
|
+
"Supported Formats:": "Formatos compatibles:",
|
|
324
324
|
"Upload files.": "Upload files.",
|
|
325
325
|
"File upload area": "File upload area",
|
|
326
|
-
"Uploaded": "Uploaded"
|
|
326
|
+
"Uploaded": "Uploaded",
|
|
327
|
+
"Ascending": "Ascendente",
|
|
328
|
+
"Descending": "Descendente",
|
|
329
|
+
"Scroll to start": "Desplazarse al inicio",
|
|
330
|
+
"Scroll to end": "Desplazarse al final"
|
|
327
331
|
}
|
|
@@ -317,11 +317,15 @@
|
|
|
317
317
|
"Exit full screen table view": "Exit full screen table view",
|
|
318
318
|
"Close search": "Close search",
|
|
319
319
|
"Has additional actions. Use right arrow to access button, left arrow to return.": "Has additional actions. Use right arrow to access button, left arrow to return.",
|
|
320
|
-
"Drag & drop files or": "
|
|
321
|
-
"Browse": "
|
|
322
|
-
"Tap to add files": "
|
|
323
|
-
"Supported Formats:": "
|
|
320
|
+
"Drag & drop files or": "Vedä ja pudota tiedostoja tai",
|
|
321
|
+
"Browse": "Selaa",
|
|
322
|
+
"Tap to add files": "Lisää tiedostoja napauttamalla",
|
|
323
|
+
"Supported Formats:": "Tuetut muodot:",
|
|
324
324
|
"Upload files.": "Upload files.",
|
|
325
325
|
"File upload area": "File upload area",
|
|
326
|
-
"Uploaded": "Uploaded"
|
|
326
|
+
"Uploaded": "Uploaded",
|
|
327
|
+
"Ascending": "Nouseva",
|
|
328
|
+
"Descending": "Laskeva",
|
|
329
|
+
"Scroll to start": "Vieritä alkuun",
|
|
330
|
+
"Scroll to end": "Vieritä loppuun"
|
|
327
331
|
}
|
|
@@ -317,11 +317,15 @@
|
|
|
317
317
|
"Exit full screen table view": "Exit full screen table view",
|
|
318
318
|
"Close search": "Close search",
|
|
319
319
|
"Has additional actions. Use right arrow to access button, left arrow to return.": "Has additional actions. Use right arrow to access button, left arrow to return.",
|
|
320
|
-
"Drag & drop files or": "
|
|
321
|
-
"Browse": "
|
|
322
|
-
"Tap to add files": "
|
|
323
|
-
"Supported Formats:": "
|
|
320
|
+
"Drag & drop files or": "Glisser-déposer des fichiers ou",
|
|
321
|
+
"Browse": "Parcourir",
|
|
322
|
+
"Tap to add files": "Appuyez pour ajouter des fichiers",
|
|
323
|
+
"Supported Formats:": "Formats pris en charge :",
|
|
324
324
|
"Upload files.": "Upload files.",
|
|
325
325
|
"File upload area": "File upload area",
|
|
326
|
-
"Uploaded": "Uploaded"
|
|
326
|
+
"Uploaded": "Uploaded",
|
|
327
|
+
"Ascending": "Croissant",
|
|
328
|
+
"Descending": "Descendant",
|
|
329
|
+
"Scroll to start": "Faites défiler pour démarrer",
|
|
330
|
+
"Scroll to end": "Faites défiler jusqu’à la fin"
|
|
327
331
|
}
|
|
@@ -317,11 +317,15 @@
|
|
|
317
317
|
"Exit full screen table view": "Exit full screen table view",
|
|
318
318
|
"Close search": "Close search",
|
|
319
319
|
"Has additional actions. Use right arrow to access button, left arrow to return.": "Has additional actions. Use right arrow to access button, left arrow to return.",
|
|
320
|
-
"Drag & drop files or": "
|
|
321
|
-
"Browse": "
|
|
322
|
-
"Tap to add files": "
|
|
323
|
-
"Supported Formats:": "
|
|
320
|
+
"Drag & drop files or": "Glisser-déposer des fichiers ou",
|
|
321
|
+
"Browse": "Parcourir",
|
|
322
|
+
"Tap to add files": "Appuyez pour ajouter des fichiers",
|
|
323
|
+
"Supported Formats:": "Formats pris en charge :",
|
|
324
324
|
"Upload files.": "Upload files.",
|
|
325
325
|
"File upload area": "File upload area",
|
|
326
|
-
"Uploaded": "Uploaded"
|
|
326
|
+
"Uploaded": "Uploaded",
|
|
327
|
+
"Ascending": "Croissant",
|
|
328
|
+
"Descending": "Décroissant",
|
|
329
|
+
"Scroll to start": "Défilement au début",
|
|
330
|
+
"Scroll to end": "Défilement à la fin"
|
|
327
331
|
}
|
|
@@ -317,11 +317,15 @@
|
|
|
317
317
|
"Exit full screen table view": "Exit full screen table view",
|
|
318
318
|
"Close search": "Close search",
|
|
319
319
|
"Has additional actions. Use right arrow to access button, left arrow to return.": "Has additional actions. Use right arrow to access button, left arrow to return.",
|
|
320
|
-
"Drag & drop files or": "
|
|
321
|
-
"Browse": "
|
|
322
|
-
"Tap to add files": "
|
|
323
|
-
"Supported Formats:": "
|
|
320
|
+
"Drag & drop files or": "Húzza ide a fájlokat, vagy",
|
|
321
|
+
"Browse": "Tallózás",
|
|
322
|
+
"Tap to add files": "Fájlok hozzáadásához koppintson",
|
|
323
|
+
"Supported Formats:": "Támogatott formátumok:",
|
|
324
324
|
"Upload files.": "Upload files.",
|
|
325
325
|
"File upload area": "File upload area",
|
|
326
|
-
"Uploaded": "Uploaded"
|
|
326
|
+
"Uploaded": "Uploaded",
|
|
327
|
+
"Ascending": "Növekvő",
|
|
328
|
+
"Descending": "Csökkenő",
|
|
329
|
+
"Scroll to start": "Görgetés az elejére",
|
|
330
|
+
"Scroll to end": "Görgetés a végére"
|
|
327
331
|
}
|
|
@@ -317,11 +317,15 @@
|
|
|
317
317
|
"Exit full screen table view": "Exit full screen table view",
|
|
318
318
|
"Close search": "Close search",
|
|
319
319
|
"Has additional actions. Use right arrow to access button, left arrow to return.": "Has additional actions. Use right arrow to access button, left arrow to return.",
|
|
320
|
-
"Drag & drop files or": "
|
|
321
|
-
"Browse": "
|
|
322
|
-
"Tap to add files": "
|
|
323
|
-
"Supported Formats:": "
|
|
320
|
+
"Drag & drop files or": "Seret & lepas file atau",
|
|
321
|
+
"Browse": "Jelajahi",
|
|
322
|
+
"Tap to add files": "Ketuk untuk menambahkan file",
|
|
323
|
+
"Supported Formats:": "Format yang Didukung:",
|
|
324
324
|
"Upload files.": "Upload files.",
|
|
325
325
|
"File upload area": "File upload area",
|
|
326
|
-
"Uploaded": "Uploaded"
|
|
326
|
+
"Uploaded": "Uploaded",
|
|
327
|
+
"Ascending": "Naik",
|
|
328
|
+
"Descending": "Menurun",
|
|
329
|
+
"Scroll to start": "Gulirkan untuk memulai",
|
|
330
|
+
"Scroll to end": "Gulirkan ke akhir"
|
|
327
331
|
}
|
|
@@ -317,11 +317,15 @@
|
|
|
317
317
|
"Exit full screen table view": "Exit full screen table view",
|
|
318
318
|
"Close search": "Close search",
|
|
319
319
|
"Has additional actions. Use right arrow to access button, left arrow to return.": "Has additional actions. Use right arrow to access button, left arrow to return.",
|
|
320
|
-
"Drag & drop files or": "
|
|
321
|
-
"Browse": "
|
|
322
|
-
"Tap to add files": "
|
|
323
|
-
"Supported Formats:": "
|
|
320
|
+
"Drag & drop files or": "Trascina e rilascia i file o",
|
|
321
|
+
"Browse": "Sfoglia",
|
|
322
|
+
"Tap to add files": "Tocca per aggiungere file",
|
|
323
|
+
"Supported Formats:": "Formati supportati:",
|
|
324
324
|
"Upload files.": "Upload files.",
|
|
325
325
|
"File upload area": "File upload area",
|
|
326
|
-
"Uploaded": "Uploaded"
|
|
326
|
+
"Uploaded": "Uploaded",
|
|
327
|
+
"Ascending": "Crescente",
|
|
328
|
+
"Descending": "Decrescente",
|
|
329
|
+
"Scroll to start": "Scorrere fino all'inizio",
|
|
330
|
+
"Scroll to end": "Scorrere fino alla fine"
|
|
327
331
|
}
|
|
@@ -317,11 +317,15 @@
|
|
|
317
317
|
"Exit full screen table view": "Exit full screen table view",
|
|
318
318
|
"Close search": "Close search",
|
|
319
319
|
"Has additional actions. Use right arrow to access button, left arrow to return.": "Has additional actions. Use right arrow to access button, left arrow to return.",
|
|
320
|
-
"Drag & drop files or": "
|
|
321
|
-
"Browse": "
|
|
322
|
-
"Tap to add files": "
|
|
323
|
-
"Supported Formats:": "
|
|
320
|
+
"Drag & drop files or": "ファイルをドラッグ&ドロップするか、",
|
|
321
|
+
"Browse": "参照",
|
|
322
|
+
"Tap to add files": "タップしてファイルを追加",
|
|
323
|
+
"Supported Formats:": "対応フォーマット:",
|
|
324
324
|
"Upload files.": "Upload files.",
|
|
325
325
|
"File upload area": "File upload area",
|
|
326
|
-
"Uploaded": "Uploaded"
|
|
326
|
+
"Uploaded": "Uploaded",
|
|
327
|
+
"Ascending": "昇順",
|
|
328
|
+
"Descending": "降順",
|
|
329
|
+
"Scroll to start": "一番上にスクロール",
|
|
330
|
+
"Scroll to end": "一番下までスクロール"
|
|
327
331
|
}
|