@geotab/zenith 3.14.0 → 3.15.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -3
- package/dist/advancedGroupsFilter/advancedGroupsFilter.js +19 -1
- package/dist/advancedGroupsFilter/advancedGroupsFilterForm.js +13 -1
- package/dist/advancedGroupsFilter/advancedGroupsFilterFormSection.js +60 -8
- package/dist/advancedGroupsFilter/advancedGroupsFilterSectionTooltip.js +7 -1
- package/dist/alert/banner.d.ts +2 -3
- package/dist/alert/hooks/useAlertState.d.ts +0 -1
- package/dist/alertRaw/alertRaw.js +6 -0
- package/dist/banner/bannerMultipLine.d.ts +0 -1
- package/dist/banner/bannerMultipLine.js +6 -0
- package/dist/banner/bannerSingleLine.d.ts +0 -1
- package/dist/banner/bannerSingleLine.js +6 -0
- package/dist/banner/utils/isSummaryErrorElement.d.ts +1 -2
- package/dist/banner/utils/useSummaryBannerProp.js +32 -0
- package/dist/betaPill/betaPill.js +34 -10
- package/dist/bookmark/bookmark.js +14 -2
- package/dist/bulkEditControl/bulkEditControl.js +32 -2
- package/dist/calendar/calendar.js +182 -2
- package/dist/calendar/calendarUtils.js +107 -19
- package/dist/calendar/dateUtils.js +2 -2
- package/dist/card/card.js +23 -7
- package/dist/card/components/content.d.ts +0 -1
- package/dist/cardContainer/helpers/getSizeClass.js +1 -2
- package/dist/chart/accessibleChart/accessibleChart.js +1 -1
- package/dist/chart/accessibleChart/accessibleChartNarrative.d.ts +1 -1
- package/dist/chart/accessibleChart/accessibleChartNarrative.js +189 -105
- package/dist/chart/accessibleChart/accessibleChartTable.js +42 -12
- package/dist/chart/accessibleChart/generatePieNarrative.d.ts +7 -0
- package/dist/chart/accessibleChart/generatePieNarrative.js +179 -0
- package/dist/chart/accessibleChart/interfaces.d.ts +1 -0
- package/dist/chart/barChart/getDefaultOptions.js +5 -6
- package/dist/chart/barChart.js +152 -50
- package/dist/chart/chart.js +15 -9
- package/dist/chart/chartAxis/chartAxis.js +14 -2
- package/dist/chart/interfaces.d.ts +0 -1
- package/dist/chart/lineChart/getDefaultOptions.js +5 -6
- package/dist/chart/lineChart/useChartTicks.d.ts +0 -1
- package/dist/chart/lineChart/useSummary.d.ts +7 -8
- package/dist/chart/lineChart.js +167 -59
- package/dist/chart/pieChart.js +174 -76
- package/dist/chart/plugins/linePlugin/getInterpolatedValue.js +1 -2
- package/dist/chart/plugins/linePlugin/linePlugin.js +29 -7
- package/dist/chart/utils/convertDates.d.ts +1 -1
- package/dist/chart/utils/getFormattedLabel.js +1 -2
- package/dist/chart/utils/getNiceAxisRange.d.ts +21 -0
- package/dist/chart/utils/getNiceAxisRange.js +76 -0
- package/dist/chart/utils/getRange.js +2 -2
- package/dist/chart/utils/getYAxisMeta.d.ts +2 -5
- package/dist/chart/utils/getYAxisMeta.js +17 -2
- package/dist/chart/utils/getYAxisTickCount.d.ts +15 -0
- package/dist/chart/utils/getYAxisTickCount.js +19 -0
- package/dist/chart/utils/resampleArrayEvenly.js +1 -2
- package/dist/checkbox/checkbox.js +17 -7
- package/dist/checkboxListWithAction/checkboxListWithAction.d.ts +0 -1
- package/dist/checkboxListWithAction/checkboxListWithAction.js +36 -12
- package/dist/chip/chip.d.ts +0 -1
- package/dist/chip/chip.js +6 -0
- package/dist/chip/utils/useChip.d.ts +0 -1
- package/dist/columnsSelector/columnsSelector.js +13 -1
- package/dist/columnsSelector/columnsTab/columnsTab.js +6 -0
- package/dist/columnsSelector/columnsTabGroup/columnsTabGroup.js +6 -0
- package/dist/commonHelpers/HOC/reducerLogger/reducerLogger.d.ts +1 -1
- package/dist/commonHelpers/arrowNavigation/components/arrowButton/arrowButton.d.ts +0 -1
- package/dist/commonHelpers/arrowNavigation/hooks/useHoldOnScroll.d.ts +0 -1
- package/dist/commonHelpers/generateId.js +1 -2
- package/dist/commonHelpers/hooks/breakpoints.d.ts +4 -0
- package/dist/commonHelpers/hooks/breakpoints.js +7 -0
- package/dist/commonHelpers/hooks/fetch.reducer.d.ts +1 -1
- package/dist/commonHelpers/hooks/fetch.reducer.js +1 -2
- package/dist/commonHelpers/hooks/useDebouncedMemo.d.ts +0 -1
- package/dist/commonHelpers/hooks/useDebouncedMemo.js +1 -2
- package/dist/commonHelpers/hooks/useDeviceType.js +2 -2
- package/dist/commonHelpers/hooks/useEscape.d.ts +1 -1
- package/dist/commonHelpers/hooks/useGridSize.d.ts +0 -1
- package/dist/commonHelpers/hooks/useMobileOrTablet.d.ts +1 -0
- package/dist/commonHelpers/hooks/useMobileOrTablet.js +21 -0
- package/dist/commonHelpers/hooks/usePillSize.d.ts +0 -1
- package/dist/{gridLayout → commonHelpers}/hooks/useTablet.js +8 -11
- package/dist/commonHelpers/utils.js +3 -3
- package/dist/commonStyles/colors/colors.less +1 -0
- package/dist/dataFeed/dataFeed.d.ts +1 -1
- package/dist/dataFeed/dataFeed.js +2 -2
- package/dist/dataFeed/dataFeedCell/dataFeedCell.d.ts +3 -1
- package/dist/dataFeed/dataFeedColumnsItems.d.ts +2 -2
- package/dist/dataFeed/feedExpandControl/feedExpandControl.js +64 -0
- package/dist/dataGrid/cell/cell.d.ts +3 -1
- package/dist/dataGrid/columns/actionsColumn/actionsButton.js +1 -2
- package/dist/dataGrid/columns/actionsColumn/actionsColumn.d.ts +3 -3
- package/dist/dataGrid/columns/checkboxColumn/checkboxHeaderCell.js +7 -1
- package/dist/dataGrid/dataGrid.d.ts +13 -1
- package/dist/dataGrid/dataGrid.js +54 -3
- package/dist/dataGrid/emptySearchList/emptySearchList.d.ts +0 -1
- package/dist/dataGrid/emptySearchList/emptySearchList.js +7 -1
- package/dist/dataGrid/entitiesListActions/actions/columnsListButton.js +7 -1
- package/dist/dataGrid/entitiesListActions/actions/fullscreenButton.js +22 -10
- package/dist/dataGrid/row/row.d.ts +3 -1
- package/dist/dataGrid/withActions/withActions.d.ts +1 -1
- package/dist/dataGrid/withFlexibleColumns/components/columnSettings.js +13 -1
- package/dist/dataGrid/withFlexibleColumns/components/columnSettingsList.js +1 -2
- package/dist/dataGrid/withFlexibleColumns/components/columnSettingsSidePanel.js +32 -0
- package/dist/dataGrid/withFlexibleColumns/withFlexibleColumns.d.ts +1 -1
- package/dist/dataGrid/withFlexibleColumns/withFlexibleColumns.js +6 -0
- package/dist/dataGrid/withLoading/withLoading.d.ts +1 -1
- package/dist/dataGrid/withSelectableRows/components/bulkActions/bulkActions.js +31 -1
- package/dist/dataGrid/withSelectableRows/withLimitedSelectableRows.d.ts +1 -1
- package/dist/dataGrid/withSelectableRows/withSelectableRows.d.ts +1 -1
- package/dist/dataGrid/withSelectableRows/withSelectableRows.js +50 -0
- package/dist/dataGrid/withSortableColumns/columns/sortableColumnWrapper.js +14 -2
- package/dist/dataGrid/withSortableColumns/withSortableColumns.d.ts +1 -1
- package/dist/dateInputInner/dateInputInner.js +62 -20
- package/dist/dateInputInner/dateInputInnerControlBlock.js +12 -0
- package/dist/dateInputInner/dateInputInnerReducer.js +2 -2
- package/dist/dateInputRaw/dateInputRaw.js +18 -0
- package/dist/dateInputRaw/utils/getLabel.js +21 -9
- package/dist/dateRangeInner/dateRangeInner.js +6 -0
- package/dist/dateRangeRaw/dateRangeRaw.js +121 -9
- package/dist/dateRangeRaw/utils/areMapsEqual.js +1 -2
- package/dist/dateRangeRaw/utils/dateRangeUtils.js +108 -6
- package/dist/dateSelectionWrapper/dateSelectionWrapper.js +24 -0
- package/dist/dialog/dialog.d.ts +0 -1
- package/dist/dialog/dialogContent.js +6 -0
- package/dist/dropdown/dropdown.js +1 -1
- package/dist/dropdown/useDropdownState.d.ts +0 -1
- package/dist/dropdownRaw/dropdownHelper.js +2 -2
- package/dist/dropdownRaw/dropdownList.d.ts +3 -2
- package/dist/dropdownRaw/dropdownList.js +84 -48
- package/dist/dropdownRaw/dropdownPopup.js +19 -1
- package/dist/dropdownRaw/dropdownRaw.js +41 -14
- package/dist/dropdownRaw/dropdownSearchableTrigger.js +27 -3
- package/dist/dropdownRaw/stateReducer/stateReducer.d.ts +4 -1
- package/dist/dropdownRaw/stateReducer/stateReducer.js +33 -23
- package/dist/dropdownRaw/stateReducer/stateReducerHelper.d.ts +1 -2
- package/dist/dropdownRaw/stateReducer/stateReducerHelper.js +8 -13
- package/dist/dropdownRaw/types.d.ts +20 -0
- package/dist/favoriteButton/favoriteButton.js +7 -1
- package/dist/feedbackContainer/feedbackContainer.js +17 -7
- package/dist/feedbackContainer/hooks/useFeedbackAlert.d.ts +0 -1
- package/dist/feedbackContainer/hooks/useFeedbackToast.d.ts +0 -1
- package/dist/fileUpload/components/dropZoneContent.js +25 -1
- package/dist/fileUpload/components/templateDownloadSection.js +6 -0
- package/dist/fileUpload/components/uploadedFilesSection.js +21 -9
- package/dist/fileUpload/fileUpload.js +55 -19
- package/dist/filters/components/filtersContainer.js +19 -1
- package/dist/filters/components/filtersDropdown.js +2 -2
- package/dist/filters/components/filtersEmptyState.js +30 -18
- package/dist/filters/components/filtersItem.d.ts +2 -2
- package/dist/filters/components/filtersSaveModal.js +57 -27
- package/dist/filters/components/filtersSavedChipComponent.js +113 -47
- package/dist/filters/components/filtersSearchItemData.js +6 -0
- package/dist/filters/components/filtersSearchList.d.ts +0 -1
- package/dist/filters/components/filtersSearchList.js +83 -29
- package/dist/filters/components/filtersSelect.d.ts +0 -1
- package/dist/filters/components/filtersSelect.js +6 -0
- package/dist/filters/components/filtersSelectCompact.d.ts +0 -1
- package/dist/filters/components/filtersSelectListItem.d.ts +0 -1
- package/dist/filters/components/filtersSelectListItem.js +12 -0
- package/dist/filters/components/filtersSelectUnfoldingPill.d.ts +0 -1
- package/dist/filters/components/filtersSidePanel.js +58 -10
- package/dist/filters/components/filtersSidePanelItem.js +17 -7
- package/dist/filters/filters.js +45 -27
- package/dist/filters/filtersHelper.d.ts +1 -1
- package/dist/filters/filtersHelper.js +5 -5
- package/dist/filters/filtersHooks.d.ts +0 -1
- package/dist/filtersBar/components/filtersBarDropdownWithCheckbox/filtersBarDropdownWithCheckbox.js +1 -1
- package/dist/filtersBar/components/filtersBarPeriodPicker/getRangeOption.js +116 -8
- package/dist/filtersBar/components/resetComponentButton.js +6 -0
- package/dist/filtersBar/filtersBar.js +2 -2
- package/dist/filtersBar/filtersBarActions/filtersBarActions.d.ts +0 -1
- package/dist/filtersBar/filtersBarActions/filtersBarActions.js +50 -0
- package/dist/filtersBar/filtersBarInterfaces.d.ts +0 -1
- package/dist/filtersBar/filtersBarReducer.js +2 -2
- package/dist/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelDropdownWithCheckbox/filtersBarSidePanelDropdownWithCheckbox.d.ts +4 -10
- package/dist/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRange/filtersBarSidePanelRange.js +12 -0
- package/dist/filtersBar/filtersBarSidePanel/filtersBarSidePanel.js +31 -1
- package/dist/filtersBar/filtersBarSidePanel/sidePanelReducer.js +2 -2
- package/dist/filtersBar/filtersContainer/filtersContainer.js +20 -6
- package/dist/filtersBar/utils/getNumberOfChangedFilters.js +1 -2
- package/dist/footerButtons/footerButtons.js +17 -7
- package/dist/formField/components/formFieldAdditionalInfo.d.ts +0 -1
- package/dist/formField/components/formFieldCounter.d.ts +0 -1
- package/dist/formField/components/formFieldLoading.d.ts +0 -1
- package/dist/formField/components/formFieldSkeleton.d.ts +0 -1
- package/dist/formField/components/formFieldWithLabel.d.ts +0 -1
- package/dist/formField/components/formFieldWithoutLabel.d.ts +0 -1
- package/dist/formField/formField.d.ts +1 -1
- package/dist/formField/hooks/useBanner.d.ts +0 -1
- package/dist/formField/hooks/useDisabled.d.ts +1 -1
- package/dist/formField/hooks/useError.js +27 -9
- package/dist/formGroup/components/customRow/customRow.d.ts +0 -1
- package/dist/formGroup/components/reviewListToggle/reviewListToggle.js +12 -0
- package/dist/formGroup/formGroup.js +17 -7
- package/dist/formGroup/hooks/listHooks/useStateToElements.d.ts +0 -1
- package/dist/formGroup/hooks/listHooks/useStateToElements.js +1 -1
- package/dist/formGroup/hooks/useToggle.js +15 -9
- package/dist/formGroup/utils/formGroupProvider.d.ts +0 -1
- package/dist/formGroup/utils/isFormLabel.d.ts +1 -1
- package/dist/formGroupItem/formGroupItem.d.ts +0 -1
- package/dist/formLayout/components/layoutColumn/layoutColum.d.ts +0 -1
- package/dist/formLayout/hooks/useError.js +36 -18
- package/dist/formLayout/hooks/useFormButtons.d.ts +1 -1
- package/dist/formLayout/hooks/useFormButtons.js +18 -0
- package/dist/formLayout/types.d.ts +0 -1
- package/dist/formLayout/utils/attachHeadings.d.ts +1 -1
- package/dist/formLayout/utils/attachSeparators.d.ts +0 -1
- package/dist/formLayout/utils/getChildrenWithCustomColumns.d.ts +1 -2
- package/dist/formLayout/utils/getChildrenWithCustomColumns.js +2 -2
- package/dist/formLayout/utils/getFieldLabel.js +5 -5
- package/dist/formSection/components/actions.d.ts +0 -1
- package/dist/formSection/components/additional.d.ts +0 -1
- package/dist/formSection/hooks/useError.js +36 -18
- package/dist/formSection/utils/isFormSection.d.ts +2 -4
- package/dist/formStepper/components/formStep.js +6 -0
- package/dist/formStepper/components/formStepRaw.d.ts +0 -1
- package/dist/formStepper/formStepper.d.ts +0 -1
- package/dist/formStepper/formStepper.js +17 -5
- package/dist/formStepperButtons/formStepperButtons.js +27 -3
- package/dist/gridLayout/hooks/useStretch.js +1 -1
- package/dist/gridLayout/utils/convertStateToClasses.js +1 -2
- package/dist/gridLayout/utils/gridLayoutProvider.d.ts +0 -1
- package/dist/gridLayout/utils/gridLayoutProvider.js +1 -1
- package/dist/gridLayout/utils/isGridItem.d.ts +1 -1
- package/dist/groupsFilter/groupsHelper.d.ts +5 -5
- package/dist/groupsFilterRaw/groupsFilterAdjustmentState.js +24 -0
- package/dist/groupsFilterRaw/groupsFilterBox.js +20 -2
- package/dist/groupsFilterRaw/groupsFilterCommon.js +14 -2
- package/dist/groupsFilterRaw/groupsFilterCurrentlySelectedState.js +30 -0
- package/dist/groupsFilterRaw/groupsFilterHelper.js +28 -16
- package/dist/groupsFilterRaw/groupsFilterInitialState.js +52 -4
- package/dist/groupsFilterRaw/groupsFilterMenu.js +18 -0
- package/dist/groupsFilterRaw/groupsFilterRaw.js +50 -2
- package/dist/groupsFilterRaw/groupsFilterTrigger.js +14 -2
- package/dist/groupsFilterRaw/groupsHelper.d.ts +1 -1
- package/dist/groupsFilterRaw/groupsHelper.js +136 -4
- package/dist/groupsFilterRaw/stateReducer/stateReducer.d.ts +1 -1
- package/dist/groupsFilterRaw/stateReducer/stateReducer.js +2 -2
- package/dist/groupsFilterRaw/testData.js +3 -4
- package/dist/groupsFilterRaw/uiStateReducer/uiStateReducer.js +2 -2
- package/dist/header/components/collapsedItemsControl/collapsedItemsControl.js +6 -0
- package/dist/header/components/collapsedItemsControl/utils/handleCustomMenuWrapper.js +5 -0
- package/dist/header/components/mobileFilterControl/mobileFilterControl.d.ts +0 -1
- package/dist/header/components/mobileFilterControl/mobileFilterControl.js +7 -1
- package/dist/header/components/mobileSearchControl/mobileSearchControl.d.ts +0 -1
- package/dist/header/components/mobileSearchControl/mobileSearchControl.js +19 -1
- package/dist/header/header.js +17 -7
- package/dist/header/headerBack.js +6 -0
- package/dist/header/headerButton.d.ts +0 -1
- package/dist/header/headerContext.d.ts +1 -2
- package/dist/header/headerHelpers.d.ts +5 -5
- package/dist/header/headerHelpers.js +17 -7
- package/dist/header/hooks/useNonFittingElements.d.ts +3 -4
- package/dist/headerTitle/headerTitle.d.ts +0 -1
- package/dist/icons/iconAce.d.ts +3 -0
- package/dist/icons/iconAce.js +12 -0
- package/dist/icons/iconBreak.d.ts +3 -0
- package/dist/icons/iconBreak.js +12 -0
- package/dist/icons/iconChevronStepper.d.ts +3 -0
- package/dist/icons/iconChevronStepper.js +12 -0
- package/dist/icons/iconPotato.d.ts +3 -0
- package/dist/icons/iconPotato.js +12 -0
- package/dist/icons/iconToggleLarge.d.ts +3 -0
- package/dist/icons/iconToggleLarge.js +12 -0
- package/dist/icons/iconToggleSmall.d.ts +3 -0
- package/dist/icons/iconToggleSmall.js +12 -0
- package/dist/icons/iconTrendNeutral.d.ts +3 -0
- package/dist/icons/iconTrendNeutral.js +12 -0
- package/dist/icons/iconTruck.d.ts +3 -0
- package/dist/icons/iconTruck.js +12 -0
- package/dist/index.css +219 -169
- package/dist/index.d.ts +8 -0
- package/dist/index.js +30 -13
- package/dist/layout/layout.d.ts +2 -1
- package/dist/layout/layout.js +17 -7
- package/dist/layout/layoutBanner.d.ts +0 -1
- package/dist/lineChart/lineChart.d.ts +1 -0
- package/dist/lineChart/lineChart.js +135 -70
- package/dist/lineChartMini/lineChartMini.d.ts +1 -0
- package/dist/lineChartMini/lineChartMini.js +141 -73
- package/dist/list/itemData/itemData.d.ts +2 -1
- package/dist/list/itemData/itemDataInternal.d.ts +2 -1
- package/dist/list/itemData/itemDataInternal.js +12 -0
- package/dist/list/list.d.ts +0 -1
- package/dist/list/listItem/listItem.js +12 -0
- package/dist/list/utils/changeOrder.js +1 -2
- package/dist/list/utils/isDataListitem.d.ts +1 -1
- package/dist/list/viewportProvider/viewportContext.d.ts +0 -1
- package/dist/menu/components/controlledMenuList/controlledMenuList.d.ts +2 -4
- package/dist/menu/components/controlledMenuList/controlledMenuList.js +3 -1
- package/dist/menu/components/createControlledMenuList.js +1 -2
- package/dist/menu/components/createMenuItem.js +1 -2
- package/dist/menu/components/menuErrorItem.js +30 -18
- package/dist/menu/contexts/usePathContext.js +1 -2
- package/dist/menu/utils/buildMenuContent.js +1 -2
- package/dist/menu/utils/findPrevFocusable.js +1 -2
- package/dist/menu/utils/useDisplayContent.d.ts +21 -0
- package/dist/menu/utils/useDisplayContent.js +35 -0
- package/dist/menu/utils/useMenuItemKeyboardNav.js +1 -2
- package/dist/miniTabs/miniTabsHelper.js +17 -7
- package/dist/mobileSheet/components/mobileSheetTitle.d.ts +0 -1
- package/dist/mobileSheet/mobileSheet.js +12 -0
- package/dist/modal/modal.js +23 -7
- package/dist/nav/context/nav.context.d.ts +0 -1
- package/dist/nav/navFooter/navEditFooter/navEditFooter.d.ts +0 -1
- package/dist/nav/navFooter/navEditFooter/navEditFooter.js +12 -0
- package/dist/nav/navFooter/navFooter.d.ts +1 -1
- package/dist/nav/navFooter/navFooter.js +15 -9
- package/dist/nav/navFooter/navFooterAction/navFooterAction.d.ts +2 -1
- package/dist/nav/navFooter/navFooterAction/navFooterAction.js +9 -1
- package/dist/nav/navHeader/navHeader.js +30 -18
- package/dist/nav/navHeader/navHeaderSearch/navHeaderSearch.js +21 -9
- package/dist/nav/navItem/navItem.d.ts +2 -0
- package/dist/nav/navItem/navItem.js +56 -47
- package/dist/nav/navItem/navItemContent.d.ts +19 -0
- package/dist/nav/navItem/navItemContent.js +21 -0
- package/dist/nav/navItem/navItemType.d.ts +7 -0
- package/dist/nav/navItem/navItemType.js +9 -0
- package/dist/nav/navMobileBar/navMobileBar.js +6 -0
- package/dist/nav/utils/navUtils.d.ts +2 -4
- package/dist/nav/utils/navUtils.js +2 -2
- package/dist/notification/notification.js +6 -0
- package/dist/overview/overview.d.ts +0 -1
- package/dist/pageHeader/pageHeader.d.ts +1 -1
- package/dist/pageHeader/pageHeaderButton.d.ts +0 -1
- package/dist/pageHeader/pageHeaderHelpers.d.ts +1 -1
- package/dist/pageHeader/pageHeaderMenu.d.ts +0 -1
- package/dist/pagination/paginationArrow.d.ts +0 -1
- package/dist/pagination/paginationArrow.js +12 -0
- package/dist/pagination/paginationText/paginationText.js +6 -0
- package/dist/pill/components/pillNonActionable/pillNonActionable.js +6 -0
- package/dist/pill/interfaces/pill.interface.d.ts +0 -1
- package/dist/pillBox/components/pillBoxItem.d.ts +1 -2
- package/dist/pillBox/components/pillBoxItem.js +6 -0
- package/dist/pillBox/pillBox.js +19 -1
- package/dist/pillExpandable/pillExpandable.js +6 -0
- package/dist/popup/popup.js +17 -7
- package/dist/progressIndicator/progressIndicator.d.ts +39 -0
- package/dist/progressIndicator/progressIndicator.js +30 -0
- package/dist/progressIndicator/progressIndicatorUtils.d.ts +12 -0
- package/dist/progressIndicator/progressIndicatorUtils.js +30 -0
- package/dist/radioGroupRaw/radioGroupRaw.js +17 -7
- package/dist/radioGroupRaw/types.d.ts +0 -1
- package/dist/rangeRaw/rangeRaw.js +44 -2
- package/dist/rangeRaw/utils/rangeHelper.js +45 -3
- package/dist/react-chartjs/dateFns/dateFns.js +10 -11
- package/dist/react-chartjs/utils.d.ts +3 -3
- package/dist/react-chartjs/utils.js +8 -9
- package/dist/searchInputRaw/searchInputRaw.js +29 -7
- package/dist/searchInputRaw/types.d.ts +0 -1
- package/dist/selectField/selectField.d.ts +2 -3
- package/dist/selectList/selectList.d.ts +0 -1
- package/dist/selectList/selectList.js +12 -0
- package/dist/selectRaw/hooks/usePopupWidth.js +17 -7
- package/dist/selectRaw/selectRaw.js +20 -7
- package/dist/sidePanel/sidePanelCell/sidePanelCell.d.ts +0 -1
- package/dist/skeleton/skeleton.js +6 -0
- package/dist/sortControl/sortControl.js +36 -6
- package/dist/stepperRaw/stepperRaw.js +64 -0
- package/dist/summaries/utils/splitIntoPairs.js +1 -2
- package/dist/summary/summary.js +12 -0
- package/dist/summaryTile/summaryTile.js +23 -7
- package/dist/summaryTile/summaryTileTrigger.js +17 -7
- package/dist/table/actions/actionsMenu.d.ts +0 -1
- package/dist/table/actions/actionsMenu.js +12 -0
- package/dist/table/children/useTableChildren.d.ts +7 -7
- package/dist/table/detailPanel/detailPanel.js +6 -0
- package/dist/table/detailPanel/detailPanelHeader.js +12 -0
- package/dist/table/detailPanel/interfaces.d.ts +0 -1
- package/dist/table/flexible/columnSettings.js +13 -1
- package/dist/table/flexible/columnsList.js +1 -2
- package/dist/table/flexible/columnsPopup.js +7 -1
- package/dist/table/loading/useLoading.d.ts +10 -10
- package/dist/table/nested/nestedData.d.ts +3 -1
- package/dist/table/nested/useNestedRows.d.ts +2 -2
- package/dist/table/nested/useNestedRows.js +12 -0
- package/dist/table/selectable/selectableHeader.d.ts +2 -1
- package/dist/table/selectable/selectableHeader.js +61 -4
- package/dist/table/selectable/useSelectableRows.d.ts +1 -1
- package/dist/table/selectable/useSelectableRows.js +19 -4
- package/dist/table/sortable/mobileSortControl.js +71 -1
- package/dist/table/sortable/sortableHeader.js +14 -2
- package/dist/table/table.d.ts +16 -1
- package/dist/table/table.js +131 -23
- package/dist/tabs/tabs.js +20 -6
- package/dist/tag/tag.d.ts +19 -0
- package/dist/tag/tag.js +14 -0
- package/dist/textIconButton/textIconButton.js +17 -7
- package/dist/timePickerRaw/timePickerRaw.js +47 -5
- package/dist/toastRaw/toastRaw.d.ts +1 -1
- package/dist/toastRaw/toastRaw.js +9 -1
- package/dist/toggleButtonRaw/toggleButtonRaw.js +29 -7
- package/dist/toggleButtonRaw/types.d.ts +0 -1
- package/dist/tooltip/tooltip.js +29 -7
- package/dist/tooltipInfo/tooltipInfo.d.ts +0 -1
- package/dist/tsconfig.cjs.tsbuildinfo +1 -0
- package/dist/utils/compareElementsUtils/isArraysEqualDeeply.js +1 -2
- package/dist/utils/compareElementsUtils/isElementsEqual.js +2 -2
- package/dist/utils/escapeHtml.js +1 -2
- package/dist/utils/formatDate.js +228 -6
- package/dist/utils/localization/directionContext.d.ts +0 -1
- package/dist/utils/localization/getSupportedLanguage.d.ts +1 -1
- package/dist/utils/localization/getSupportedLanguage.js +7 -1
- package/dist/utils/localization/languageContext.d.ts +1 -2
- package/dist/utils/localization/translations/ar.json +110 -83
- package/dist/utils/localization/translations/bg-BG.json +358 -0
- package/dist/utils/localization/translations/cs.json +18 -1
- package/dist/utils/localization/translations/da-DK.json +84 -59
- package/dist/utils/localization/translations/de.json +18 -1
- package/dist/utils/localization/translations/el-GR.json +358 -0
- package/dist/utils/localization/translations/en.json +12 -1
- package/dist/utils/localization/translations/es.json +18 -1
- package/dist/utils/localization/translations/et-EE.json +358 -0
- package/dist/utils/localization/translations/fi-FI.json +84 -59
- package/dist/utils/localization/translations/fr-FR.json +18 -1
- package/dist/utils/localization/translations/fr.json +18 -1
- package/dist/utils/localization/translations/hu-HU.json +84 -59
- package/dist/utils/localization/translations/id.json +18 -1
- package/dist/utils/localization/translations/it.json +18 -1
- package/dist/utils/localization/translations/ja.json +18 -1
- package/dist/utils/localization/translations/ka-GE.json +358 -0
- package/dist/utils/localization/translations/ko-KR.json +18 -1
- package/dist/utils/localization/translations/lt-LT.json +358 -0
- package/dist/utils/localization/translations/lv-LV.json +358 -0
- package/dist/utils/localization/translations/ms.json +92 -67
- package/dist/utils/localization/translations/nb-NO.json +84 -59
- package/dist/utils/localization/translations/nl.json +94 -69
- package/dist/utils/localization/translations/pl.json +18 -1
- package/dist/utils/localization/translations/pt-BR.json +94 -69
- package/dist/utils/localization/translations/pt-PT.json +18 -1
- package/dist/utils/localization/translations/ro-RO.json +18 -1
- package/dist/utils/localization/translations/sk-SK.json +85 -60
- package/dist/utils/localization/translations/sv.json +94 -69
- package/dist/utils/localization/translations/th.json +18 -1
- package/dist/utils/localization/translations/tr.json +18 -1
- package/dist/utils/localization/translations/zh-Hans.json +18 -1
- package/dist/utils/localization/translations/zh-TW.json +18 -1
- package/dist/utils/localization/translationsDictionary.js +7 -1
- package/dist/utils/theme/themeContext.d.ts +0 -1
- package/dist/utils/topWindow/topWindowContext.d.ts +0 -1
- package/dist/utils/useFadeComponent.d.ts +0 -1
- package/dist/utils/userFormat/userFormatContext.d.ts +0 -1
- package/dist/waiting/waiting.d.ts +2 -1
- package/dist/waiting/waiting.js +23 -6
- package/esm/advancedGroupsFilter/advancedGroupsFilter.js +19 -1
- package/esm/advancedGroupsFilter/advancedGroupsFilterForm.js +13 -1
- package/esm/advancedGroupsFilter/advancedGroupsFilterFormSection.js +43 -1
- package/esm/advancedGroupsFilter/advancedGroupsFilterSectionTooltip.js +7 -1
- package/esm/alert/banner.d.ts +2 -3
- package/esm/alert/hooks/useAlertState.d.ts +0 -1
- package/esm/alertRaw/alertRaw.js +6 -0
- package/esm/banner/bannerMultipLine.d.ts +0 -1
- package/esm/banner/bannerMultipLine.js +6 -0
- package/esm/banner/bannerSingleLine.d.ts +0 -1
- package/esm/banner/bannerSingleLine.js +6 -0
- package/esm/banner/utils/isSummaryErrorElement.d.ts +1 -2
- package/esm/banner/utils/useSummaryBannerProp.js +32 -0
- package/esm/betaPill/betaPill.js +34 -10
- package/esm/bookmark/bookmark.js +14 -2
- package/esm/bulkEditControl/bulkEditControl.js +32 -2
- package/esm/calendar/calendar.js +182 -2
- package/esm/calendar/calendarUtils.js +107 -19
- package/esm/card/card.js +6 -0
- package/esm/card/components/content.d.ts +0 -1
- package/esm/chart/accessibleChart/accessibleChart.js +1 -1
- package/esm/chart/accessibleChart/accessibleChartNarrative.d.ts +1 -1
- package/esm/chart/accessibleChart/accessibleChartNarrative.js +186 -102
- package/esm/chart/accessibleChart/accessibleChartTable.js +42 -12
- package/esm/chart/accessibleChart/generatePieNarrative.d.ts +7 -0
- package/esm/chart/accessibleChart/generatePieNarrative.js +167 -0
- package/esm/chart/accessibleChart/interfaces.d.ts +1 -0
- package/esm/chart/barChart/getDefaultOptions.js +5 -6
- package/esm/chart/barChart.js +147 -50
- package/esm/chart/chart.js +15 -9
- package/esm/chart/chartAxis/chartAxis.js +14 -2
- package/esm/chart/interfaces.d.ts +0 -1
- package/esm/chart/lineChart/getDefaultOptions.js +5 -6
- package/esm/chart/lineChart/useChartTicks.d.ts +0 -1
- package/esm/chart/lineChart/useSummary.d.ts +7 -8
- package/esm/chart/lineChart.js +162 -59
- package/esm/chart/pieChart.js +169 -76
- package/esm/chart/plugins/linePlugin/linePlugin.js +29 -7
- package/esm/chart/utils/convertDates.d.ts +1 -1
- package/esm/chart/utils/getNiceAxisRange.d.ts +21 -0
- package/esm/chart/utils/getNiceAxisRange.js +72 -0
- package/esm/chart/utils/getRange.js +2 -2
- package/esm/chart/utils/getYAxisMeta.d.ts +2 -5
- package/esm/chart/utils/getYAxisMeta.js +17 -2
- package/esm/chart/utils/getYAxisTickCount.d.ts +15 -0
- package/esm/chart/utils/getYAxisTickCount.js +15 -0
- package/esm/checkboxListWithAction/checkboxListWithAction.d.ts +0 -1
- package/esm/checkboxListWithAction/checkboxListWithAction.js +36 -12
- package/esm/chip/chip.d.ts +0 -1
- package/esm/chip/chip.js +6 -0
- package/esm/chip/utils/useChip.d.ts +0 -1
- package/esm/columnsSelector/columnsSelector.js +13 -1
- package/esm/columnsSelector/columnsTab/columnsTab.js +6 -0
- package/esm/columnsSelector/columnsTabGroup/columnsTabGroup.js +6 -0
- package/esm/commonHelpers/HOC/reducerLogger/reducerLogger.d.ts +1 -1
- package/esm/commonHelpers/arrowNavigation/components/arrowButton/arrowButton.d.ts +0 -1
- package/esm/commonHelpers/arrowNavigation/hooks/useHoldOnScroll.d.ts +0 -1
- package/esm/commonHelpers/hooks/breakpoints.d.ts +4 -0
- package/esm/commonHelpers/hooks/breakpoints.js +4 -0
- package/esm/commonHelpers/hooks/fetch.reducer.d.ts +1 -1
- package/esm/commonHelpers/hooks/useDebouncedMemo.d.ts +0 -1
- package/esm/commonHelpers/hooks/useDeviceType.js +2 -2
- package/esm/commonHelpers/hooks/useEscape.d.ts +1 -1
- package/esm/commonHelpers/hooks/useGridSize.d.ts +0 -1
- package/esm/commonHelpers/hooks/useMobileOrTablet.d.ts +1 -0
- package/esm/commonHelpers/hooks/useMobileOrTablet.js +17 -0
- package/esm/commonHelpers/hooks/usePillSize.d.ts +0 -1
- package/esm/commonHelpers/hooks/useTablet.js +17 -0
- package/esm/dataFeed/dataFeed.d.ts +1 -1
- package/esm/dataFeed/dataFeed.js +2 -2
- package/esm/dataFeed/dataFeedCell/dataFeedCell.d.ts +3 -1
- package/esm/dataFeed/dataFeedColumnsItems.d.ts +2 -2
- package/esm/dataFeed/feedExpandControl/feedExpandControl.js +64 -0
- package/esm/dataGrid/cell/cell.d.ts +3 -1
- package/esm/dataGrid/columns/actionsColumn/actionsColumn.d.ts +3 -3
- package/esm/dataGrid/columns/checkboxColumn/checkboxHeaderCell.js +7 -1
- package/esm/dataGrid/dataGrid.d.ts +13 -1
- package/esm/dataGrid/dataGrid.js +54 -3
- package/esm/dataGrid/emptySearchList/emptySearchList.d.ts +0 -1
- package/esm/dataGrid/emptySearchList/emptySearchList.js +7 -1
- package/esm/dataGrid/entitiesListActions/actions/columnsListButton.js +7 -1
- package/esm/dataGrid/entitiesListActions/actions/fullscreenButton.js +22 -10
- package/esm/dataGrid/row/row.d.ts +3 -1
- package/esm/dataGrid/withActions/withActions.d.ts +1 -1
- package/esm/dataGrid/withFlexibleColumns/components/columnSettings.js +13 -1
- package/esm/dataGrid/withFlexibleColumns/components/columnSettingsSidePanel.js +32 -0
- package/esm/dataGrid/withFlexibleColumns/withFlexibleColumns.d.ts +1 -1
- package/esm/dataGrid/withFlexibleColumns/withFlexibleColumns.js +6 -0
- package/esm/dataGrid/withLoading/withLoading.d.ts +1 -1
- package/esm/dataGrid/withSelectableRows/components/bulkActions/bulkActions.js +31 -1
- package/esm/dataGrid/withSelectableRows/withLimitedSelectableRows.d.ts +1 -1
- package/esm/dataGrid/withSelectableRows/withSelectableRows.d.ts +1 -1
- package/esm/dataGrid/withSelectableRows/withSelectableRows.js +50 -0
- package/esm/dataGrid/withSortableColumns/columns/sortableColumnWrapper.js +14 -2
- package/esm/dataGrid/withSortableColumns/withSortableColumns.d.ts +1 -1
- package/esm/dateInputInner/dateInputInner.js +62 -20
- package/esm/dateInputInner/dateInputInnerControlBlock.js +12 -0
- package/esm/dateInputRaw/dateInputRaw.js +18 -0
- package/esm/dateInputRaw/utils/getLabel.js +21 -9
- package/esm/dateRangeInner/dateRangeInner.js +6 -0
- package/esm/dateRangeRaw/dateRangeRaw.js +121 -9
- package/esm/dateRangeRaw/utils/dateRangeUtils.js +108 -6
- package/esm/dateSelectionWrapper/dateSelectionWrapper.js +24 -0
- package/esm/dialog/dialog.d.ts +0 -1
- package/esm/dialog/dialogContent.js +6 -0
- package/esm/dropdown/dropdown.js +1 -1
- package/esm/dropdown/useDropdownState.d.ts +0 -1
- package/esm/dropdownRaw/dropdownList.d.ts +3 -2
- package/esm/dropdownRaw/dropdownList.js +67 -41
- package/esm/dropdownRaw/dropdownPopup.js +19 -1
- package/esm/dropdownRaw/dropdownRaw.js +42 -15
- package/esm/dropdownRaw/dropdownSearchableTrigger.js +27 -3
- package/esm/dropdownRaw/stateReducer/stateReducer.d.ts +4 -1
- package/esm/dropdownRaw/stateReducer/stateReducer.js +32 -22
- package/esm/dropdownRaw/stateReducer/stateReducerHelper.d.ts +1 -2
- package/esm/dropdownRaw/stateReducer/stateReducerHelper.js +5 -10
- package/esm/dropdownRaw/types.d.ts +20 -0
- package/esm/favoriteButton/favoriteButton.js +7 -1
- package/esm/feedbackContainer/hooks/useFeedbackAlert.d.ts +0 -1
- package/esm/feedbackContainer/hooks/useFeedbackToast.d.ts +0 -1
- package/esm/fileUpload/components/dropZoneContent.js +25 -1
- package/esm/fileUpload/components/templateDownloadSection.js +6 -0
- package/esm/fileUpload/components/uploadedFilesSection.js +21 -9
- package/esm/fileUpload/fileUpload.js +55 -19
- package/esm/filters/components/filtersContainer.js +19 -1
- package/esm/filters/components/filtersEmptyState.js +30 -18
- package/esm/filters/components/filtersItem.d.ts +2 -2
- package/esm/filters/components/filtersSaveModal.js +57 -27
- package/esm/filters/components/filtersSavedChipComponent.js +113 -47
- package/esm/filters/components/filtersSearchItemData.js +6 -0
- package/esm/filters/components/filtersSearchList.d.ts +0 -1
- package/esm/filters/components/filtersSearchList.js +83 -29
- package/esm/filters/components/filtersSelect.d.ts +0 -1
- package/esm/filters/components/filtersSelect.js +6 -0
- package/esm/filters/components/filtersSelectCompact.d.ts +0 -1
- package/esm/filters/components/filtersSelectListItem.d.ts +0 -1
- package/esm/filters/components/filtersSelectListItem.js +12 -0
- package/esm/filters/components/filtersSelectUnfoldingPill.d.ts +0 -1
- package/esm/filters/components/filtersSidePanel.js +58 -10
- package/esm/filters/filters.js +45 -27
- package/esm/filters/filtersHelper.d.ts +1 -1
- package/esm/filters/filtersHooks.d.ts +0 -1
- package/esm/filtersBar/components/filtersBarDropdownWithCheckbox/filtersBarDropdownWithCheckbox.js +1 -1
- package/esm/filtersBar/components/filtersBarPeriodPicker/getRangeOption.js +114 -6
- package/esm/filtersBar/components/resetComponentButton.js +6 -0
- package/esm/filtersBar/filtersBar.js +2 -2
- package/esm/filtersBar/filtersBarActions/filtersBarActions.d.ts +0 -1
- package/esm/filtersBar/filtersBarActions/filtersBarActions.js +50 -0
- package/esm/filtersBar/filtersBarInterfaces.d.ts +0 -1
- package/esm/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelDropdownWithCheckbox/filtersBarSidePanelDropdownWithCheckbox.d.ts +4 -10
- package/esm/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRange/filtersBarSidePanelRange.js +12 -0
- package/esm/filtersBar/filtersBarSidePanel/filtersBarSidePanel.js +31 -1
- package/esm/filtersBar/filtersContainer/filtersContainer.js +20 -6
- package/esm/formField/components/formFieldAdditionalInfo.d.ts +0 -1
- package/esm/formField/components/formFieldCounter.d.ts +0 -1
- package/esm/formField/components/formFieldLoading.d.ts +0 -1
- package/esm/formField/components/formFieldSkeleton.d.ts +0 -1
- package/esm/formField/components/formFieldWithLabel.d.ts +0 -1
- package/esm/formField/components/formFieldWithoutLabel.d.ts +0 -1
- package/esm/formField/formField.d.ts +1 -1
- package/esm/formField/hooks/useBanner.d.ts +0 -1
- package/esm/formField/hooks/useDisabled.d.ts +1 -1
- package/esm/formField/hooks/useError.js +27 -9
- package/esm/formGroup/components/customRow/customRow.d.ts +0 -1
- package/esm/formGroup/components/reviewListToggle/reviewListToggle.js +12 -0
- package/esm/formGroup/hooks/listHooks/useStateToElements.d.ts +0 -1
- package/esm/formGroup/hooks/listHooks/useStateToElements.js +1 -1
- package/esm/formGroup/hooks/useToggle.js +15 -9
- package/esm/formGroup/utils/formGroupProvider.d.ts +0 -1
- package/esm/formGroup/utils/isFormLabel.d.ts +1 -1
- package/esm/formGroupItem/formGroupItem.d.ts +0 -1
- package/esm/formLayout/components/layoutColumn/layoutColum.d.ts +0 -1
- package/esm/formLayout/hooks/useError.js +36 -18
- package/esm/formLayout/hooks/useFormButtons.d.ts +1 -1
- package/esm/formLayout/hooks/useFormButtons.js +18 -0
- package/esm/formLayout/types.d.ts +0 -1
- package/esm/formLayout/utils/attachHeadings.d.ts +1 -1
- package/esm/formLayout/utils/attachSeparators.d.ts +0 -1
- package/esm/formLayout/utils/getChildrenWithCustomColumns.d.ts +1 -2
- package/esm/formLayout/utils/getChildrenWithCustomColumns.js +2 -2
- package/esm/formLayout/utils/getFieldLabel.js +5 -5
- package/esm/formSection/components/actions.d.ts +0 -1
- package/esm/formSection/components/additional.d.ts +0 -1
- package/esm/formSection/hooks/useError.js +36 -18
- package/esm/formSection/utils/isFormSection.d.ts +2 -4
- package/esm/formStepper/components/formStep.js +6 -0
- package/esm/formStepper/components/formStepRaw.d.ts +0 -1
- package/esm/formStepper/formStepper.d.ts +0 -1
- package/esm/formStepper/formStepper.js +17 -5
- package/esm/formStepperButtons/formStepperButtons.js +27 -3
- package/esm/gridLayout/hooks/useStretch.js +1 -1
- package/esm/gridLayout/utils/gridLayoutProvider.d.ts +0 -1
- package/esm/gridLayout/utils/gridLayoutProvider.js +1 -1
- package/esm/gridLayout/utils/isGridItem.d.ts +1 -1
- package/esm/groupsFilter/groupsHelper.d.ts +5 -5
- package/esm/groupsFilterRaw/groupsFilterAdjustmentState.js +24 -0
- package/esm/groupsFilterRaw/groupsFilterBox.js +20 -2
- package/esm/groupsFilterRaw/groupsFilterCommon.js +14 -2
- package/esm/groupsFilterRaw/groupsFilterCurrentlySelectedState.js +30 -0
- package/esm/groupsFilterRaw/groupsFilterHelper.js +12 -0
- package/esm/groupsFilterRaw/groupsFilterInitialState.js +52 -4
- package/esm/groupsFilterRaw/groupsFilterMenu.js +18 -0
- package/esm/groupsFilterRaw/groupsFilterRaw.js +50 -2
- package/esm/groupsFilterRaw/groupsFilterTrigger.js +14 -2
- package/esm/groupsFilterRaw/groupsHelper.d.ts +1 -1
- package/esm/groupsFilterRaw/groupsHelper.js +132 -0
- package/esm/groupsFilterRaw/stateReducer/stateReducer.d.ts +1 -1
- package/esm/groupsFilterRaw/testData.js +1 -2
- package/esm/header/components/collapsedItemsControl/collapsedItemsControl.js +6 -0
- package/esm/header/components/collapsedItemsControl/utils/handleCustomMenuWrapper.js +5 -0
- package/esm/header/components/mobileFilterControl/mobileFilterControl.d.ts +0 -1
- package/esm/header/components/mobileFilterControl/mobileFilterControl.js +7 -1
- package/esm/header/components/mobileSearchControl/mobileSearchControl.d.ts +0 -1
- package/esm/header/components/mobileSearchControl/mobileSearchControl.js +19 -1
- package/esm/header/headerBack.js +6 -0
- package/esm/header/headerButton.d.ts +0 -1
- package/esm/header/headerContext.d.ts +1 -2
- package/esm/header/headerHelpers.d.ts +5 -5
- package/esm/header/hooks/useNonFittingElements.d.ts +3 -4
- package/esm/headerTitle/headerTitle.d.ts +0 -1
- package/esm/icons/iconAce.d.ts +3 -0
- package/esm/icons/iconAce.js +8 -0
- package/esm/icons/iconBreak.d.ts +3 -0
- package/esm/icons/iconBreak.js +8 -0
- package/esm/icons/iconChevronStepper.d.ts +3 -0
- package/esm/icons/iconChevronStepper.js +8 -0
- package/esm/icons/iconPotato.d.ts +3 -0
- package/esm/icons/iconPotato.js +8 -0
- package/esm/icons/iconToggleLarge.d.ts +3 -0
- package/esm/icons/iconToggleLarge.js +8 -0
- package/esm/icons/iconToggleSmall.d.ts +3 -0
- package/esm/icons/iconToggleSmall.js +8 -0
- package/esm/icons/iconTrendNeutral.d.ts +3 -0
- package/esm/icons/iconTrendNeutral.js +8 -0
- package/esm/icons/iconTruck.d.ts +3 -0
- package/esm/icons/iconTruck.js +8 -0
- package/esm/index.d.ts +8 -0
- package/esm/index.js +8 -0
- package/esm/layout/layout.d.ts +2 -1
- package/esm/layout/layoutBanner.d.ts +0 -1
- package/esm/lineChart/lineChart.d.ts +1 -0
- package/esm/lineChart/lineChart.js +129 -69
- package/esm/lineChartMini/lineChartMini.d.ts +1 -0
- package/esm/lineChartMini/lineChartMini.js +136 -73
- package/esm/list/itemData/itemData.d.ts +2 -1
- package/esm/list/itemData/itemDataInternal.d.ts +2 -1
- package/esm/list/itemData/itemDataInternal.js +12 -0
- package/esm/list/list.d.ts +0 -1
- package/esm/list/listItem/listItem.js +12 -0
- package/esm/list/utils/isDataListitem.d.ts +1 -1
- package/esm/list/viewportProvider/viewportContext.d.ts +0 -1
- package/esm/menu/components/controlledMenuList/controlledMenuList.d.ts +2 -4
- package/esm/menu/components/controlledMenuList/controlledMenuList.js +3 -1
- package/esm/menu/components/menuErrorItem.js +30 -18
- package/esm/menu/utils/useDisplayContent.d.ts +21 -0
- package/esm/menu/utils/useDisplayContent.js +31 -0
- package/esm/mobileSheet/components/mobileSheetTitle.d.ts +0 -1
- package/esm/mobileSheet/mobileSheet.js +12 -0
- package/esm/modal/modal.js +6 -0
- package/esm/nav/context/nav.context.d.ts +0 -1
- package/esm/nav/navFooter/navEditFooter/navEditFooter.d.ts +0 -1
- package/esm/nav/navFooter/navEditFooter/navEditFooter.js +12 -0
- package/esm/nav/navFooter/navFooter.d.ts +1 -1
- package/esm/nav/navFooter/navFooter.js +15 -9
- package/esm/nav/navFooter/navFooterAction/navFooterAction.d.ts +2 -1
- package/esm/nav/navFooter/navFooterAction/navFooterAction.js +9 -1
- package/esm/nav/navHeader/navHeader.js +30 -18
- package/esm/nav/navHeader/navHeaderSearch/navHeaderSearch.js +21 -9
- package/esm/nav/navItem/navItem.d.ts +2 -0
- package/esm/nav/navItem/navItem.js +57 -48
- package/esm/nav/navItem/navItemContent.d.ts +19 -0
- package/esm/nav/navItem/navItemContent.js +17 -0
- package/esm/nav/navItem/navItemType.d.ts +7 -0
- package/esm/nav/navItem/navItemType.js +6 -0
- package/esm/nav/navMobileBar/navMobileBar.js +6 -0
- package/esm/nav/utils/navUtils.d.ts +2 -4
- package/esm/notification/notification.js +6 -0
- package/esm/overview/overview.d.ts +0 -1
- package/esm/pageHeader/pageHeader.d.ts +1 -1
- package/esm/pageHeader/pageHeaderButton.d.ts +0 -1
- package/esm/pageHeader/pageHeaderHelpers.d.ts +1 -1
- package/esm/pageHeader/pageHeaderMenu.d.ts +0 -1
- package/esm/pagination/paginationArrow.d.ts +0 -1
- package/esm/pagination/paginationArrow.js +12 -0
- package/esm/pagination/paginationText/paginationText.js +6 -0
- package/esm/pill/components/pillNonActionable/pillNonActionable.js +6 -0
- package/esm/pill/interfaces/pill.interface.d.ts +0 -1
- package/esm/pillBox/components/pillBoxItem.d.ts +1 -2
- package/esm/pillBox/components/pillBoxItem.js +6 -0
- package/esm/pillBox/pillBox.js +19 -1
- package/esm/pillExpandable/pillExpandable.js +6 -0
- package/esm/progressIndicator/progressIndicator.d.ts +39 -0
- package/esm/progressIndicator/progressIndicator.js +26 -0
- package/esm/progressIndicator/progressIndicatorUtils.d.ts +12 -0
- package/esm/progressIndicator/progressIndicatorUtils.js +25 -0
- package/esm/radioGroupRaw/types.d.ts +0 -1
- package/esm/rangeRaw/rangeRaw.js +44 -2
- package/esm/rangeRaw/utils/rangeHelper.js +45 -3
- package/esm/react-chartjs/utils.d.ts +3 -3
- package/esm/searchInputRaw/searchInputRaw.js +12 -0
- package/esm/searchInputRaw/types.d.ts +0 -1
- package/esm/selectField/selectField.d.ts +2 -3
- package/esm/selectList/selectList.d.ts +0 -1
- package/esm/selectList/selectList.js +12 -0
- package/esm/selectRaw/selectRaw.js +3 -0
- package/esm/sidePanel/sidePanelCell/sidePanelCell.d.ts +0 -1
- package/esm/skeleton/skeleton.js +6 -0
- package/esm/sortControl/sortControl.js +36 -6
- package/esm/stepperRaw/stepperRaw.js +64 -0
- package/esm/summary/summary.js +12 -0
- package/esm/summaryTile/summaryTile.js +6 -0
- package/esm/table/actions/actionsMenu.d.ts +0 -1
- package/esm/table/actions/actionsMenu.js +12 -0
- package/esm/table/children/useTableChildren.d.ts +7 -7
- package/esm/table/detailPanel/detailPanel.js +6 -0
- package/esm/table/detailPanel/detailPanelHeader.js +12 -0
- package/esm/table/detailPanel/interfaces.d.ts +0 -1
- package/esm/table/flexible/columnSettings.js +13 -1
- package/esm/table/flexible/columnsPopup.js +7 -1
- package/esm/table/loading/useLoading.d.ts +10 -10
- package/esm/table/nested/nestedData.d.ts +3 -1
- package/esm/table/nested/useNestedRows.d.ts +2 -2
- package/esm/table/nested/useNestedRows.js +12 -0
- package/esm/table/selectable/selectableHeader.d.ts +2 -1
- package/esm/table/selectable/selectableHeader.js +61 -4
- package/esm/table/selectable/useSelectableRows.d.ts +1 -1
- package/esm/table/selectable/useSelectableRows.js +19 -4
- package/esm/table/sortable/mobileSortControl.js +71 -1
- package/esm/table/sortable/sortableHeader.js +14 -2
- package/esm/table/table.d.ts +16 -1
- package/esm/table/table.js +132 -24
- package/esm/tabs/tabs.js +20 -6
- package/esm/tag/tag.d.ts +19 -0
- package/esm/tag/tag.js +10 -0
- package/esm/testHelpers/geotab-axe/index.d.ts +0 -1
- package/esm/timePickerRaw/timePickerRaw.js +47 -5
- package/esm/toastRaw/toastRaw.d.ts +1 -1
- package/esm/toastRaw/toastRaw.js +9 -1
- package/esm/toggleButtonRaw/toggleButtonRaw.js +12 -0
- package/esm/toggleButtonRaw/types.d.ts +0 -1
- package/esm/tooltip/tooltip.js +12 -0
- package/esm/tooltipInfo/tooltipInfo.d.ts +0 -1
- package/esm/tsconfig.esm.tsbuildinfo +1 -0
- package/esm/utils/formatDate.js +228 -6
- package/esm/utils/localization/directionContext.d.ts +0 -1
- package/esm/utils/localization/getSupportedLanguage.d.ts +1 -1
- package/esm/utils/localization/getSupportedLanguage.js +7 -1
- package/esm/utils/localization/languageContext.d.ts +1 -2
- package/esm/utils/localization/translations/ar.json +110 -83
- package/esm/utils/localization/translations/bg-BG.json +358 -0
- package/esm/utils/localization/translations/cs.json +18 -1
- package/esm/utils/localization/translations/da-DK.json +84 -59
- package/esm/utils/localization/translations/de.json +18 -1
- package/esm/utils/localization/translations/el-GR.json +358 -0
- package/esm/utils/localization/translations/en.json +12 -1
- package/esm/utils/localization/translations/es.json +18 -1
- package/esm/utils/localization/translations/et-EE.json +358 -0
- package/esm/utils/localization/translations/fi-FI.json +84 -59
- package/esm/utils/localization/translations/fr-FR.json +18 -1
- package/esm/utils/localization/translations/fr.json +18 -1
- package/esm/utils/localization/translations/hu-HU.json +84 -59
- package/esm/utils/localization/translations/id.json +18 -1
- package/esm/utils/localization/translations/it.json +18 -1
- package/esm/utils/localization/translations/ja.json +18 -1
- package/esm/utils/localization/translations/ka-GE.json +358 -0
- package/esm/utils/localization/translations/ko-KR.json +18 -1
- package/esm/utils/localization/translations/lt-LT.json +358 -0
- package/esm/utils/localization/translations/lv-LV.json +358 -0
- package/esm/utils/localization/translations/ms.json +92 -67
- package/esm/utils/localization/translations/nb-NO.json +84 -59
- package/esm/utils/localization/translations/nl.json +94 -69
- package/esm/utils/localization/translations/pl.json +18 -1
- package/esm/utils/localization/translations/pt-BR.json +94 -69
- package/esm/utils/localization/translations/pt-PT.json +18 -1
- package/esm/utils/localization/translations/ro-RO.json +18 -1
- package/esm/utils/localization/translations/sk-SK.json +85 -60
- package/esm/utils/localization/translations/sv.json +94 -69
- package/esm/utils/localization/translations/th.json +18 -1
- package/esm/utils/localization/translations/tr.json +18 -1
- package/esm/utils/localization/translations/zh-Hans.json +18 -1
- package/esm/utils/localization/translations/zh-TW.json +18 -1
- package/esm/utils/localization/translationsDictionary.js +7 -1
- package/esm/utils/theme/themeContext.d.ts +0 -1
- package/esm/utils/topWindow/topWindowContext.d.ts +0 -1
- package/esm/utils/useFadeComponent.d.ts +0 -1
- package/esm/utils/userFormat/userFormatContext.d.ts +0 -1
- package/esm/waiting/waiting.d.ts +2 -1
- package/esm/waiting/waiting.js +24 -7
- package/package.json +13 -6
- package/esm/gridLayout/hooks/useTablet.js +0 -20
- /package/dist/{gridLayout → commonHelpers}/hooks/useTablet.d.ts +0 -0
- /package/esm/{gridLayout → commonHelpers}/hooks/useTablet.d.ts +0 -0
package/README.md
CHANGED
|
@@ -45,10 +45,39 @@ Now components are ready for usage.
|
|
|
45
45
|
|
|
46
46
|
Zenith library provides components defined in Zenith Design System. It includes very basic blocks like colors, icons, font presets, atom components like buttons, checkboxes etc and high order components - header, table, filters bar etc. List of existing components can be found in [Storybook](https://developers.geotab.com/zenith-storybook/index.html).
|
|
47
47
|
|
|
48
|
-
Markdown reference for each component (used by AI tooling and IRIS) lives in [`documentation/components/`](./documentation/components/). These are kept in sync with the source via the [`/zenith-doc-sync`](https://git.geotab.com/ai-hub/skill-playground/skill-workflow-zenith-doc-sync) skill when component code changes.
|
|
49
|
-
|
|
50
48
|
## Change log
|
|
51
49
|
|
|
50
|
+
### 3.15.0
|
|
51
|
+
|
|
52
|
+
- Add infinite scroll support for desktop `DataGrid`
|
|
53
|
+
- Add `tabIndex` support for keyboard and screen reader accessibility in `Chart`
|
|
54
|
+
- Add customization for `Toggle` component in toolbar
|
|
55
|
+
- Update `Nav` CSS styling
|
|
56
|
+
- Add `active` property support to `Footer.Action` component
|
|
57
|
+
- Add native accessible loading-status support (`isLoading` prop with live-region) to `Waiting`
|
|
58
|
+
- Add status dot and label support to `Tag` component
|
|
59
|
+
- Add "trend, neutral" icon to icon library
|
|
60
|
+
- Improve select-all behavior in search for `Dropdown`
|
|
61
|
+
- Add new icons (`IconAce`, `IconBreak`, `IconChevronStepper` and more)
|
|
62
|
+
- Add `ProgressIndicator` — new table-cell progress component
|
|
63
|
+
- Fix `DropdownRaw` single-select mode not auto-closing after leaf node selection
|
|
64
|
+
- Fix second Y-axis chart increments not aligning with first Y-axis
|
|
65
|
+
- Fix `EmptyState` component not adapting to dark mode in Drive app
|
|
66
|
+
- Fix `Chart` Y-axis showing negative floor for all-positive data
|
|
67
|
+
- Fix `Tabs` active tab underline gap with bottom divider
|
|
68
|
+
- Fix icons not adapting to dark mode in Drive app
|
|
69
|
+
- Fix `Chart` line tooltip showing interpolated value instead of actual data point
|
|
70
|
+
- Fix `TabBar` content not adapting to dark theme
|
|
71
|
+
- Fix dropdown height inconsistency
|
|
72
|
+
- Fix full selection mode bug in `Dropdown`
|
|
73
|
+
- Fix icon fill overriding parent colour in primary buttons and nav
|
|
74
|
+
- Fix `GroupsFilter` input padding
|
|
75
|
+
- Fix `Toast` progress bar border radius in RTL layouts
|
|
76
|
+
|
|
77
|
+
### 3.14.1
|
|
78
|
+
|
|
79
|
+
- Add new languages support: Bulgarian, Greek, Estonian, Georgian, Lithuanian, and Latvian
|
|
80
|
+
|
|
52
81
|
### 3.14.0
|
|
53
82
|
|
|
54
83
|
- Add `prefix` prop to `Summary` component for mixed-color value styling
|
|
@@ -66,7 +95,7 @@ Markdown reference for each component (used by AI tooling and IRIS) lives in [`d
|
|
|
66
95
|
|
|
67
96
|
### 3.12.3
|
|
68
97
|
|
|
69
|
-
- Fix
|
|
98
|
+
- Fix: line chart crash when timed chart has no data
|
|
70
99
|
|
|
71
100
|
### 3.12.1
|
|
72
101
|
|
|
@@ -35,7 +35,13 @@ injectString("tr", "Advanced groups filter", "Geli\u015Fmi\u015F grup filtresi")
|
|
|
35
35
|
injectString("zh-Hans", "Advanced groups filter", "\u9AD8\u7EA7\u7EC4\u7B5B\u9009\u5668");
|
|
36
36
|
injectString("zh-TW", "Advanced groups filter", "\u9032\u968E\u7FA4\u7D44\u7BE9\u9078");
|
|
37
37
|
injectString("ro-RO", "Advanced groups filter", "Filtru de grupuri avansat");
|
|
38
|
-
injectString("ar", "Advanced groups filter", "\u062A\u0635\u0641\u064A\u0629 \u0627\u0644\u0645\u062C\u0645\u0648\u0639\u0627\u062A \u0627\u0644\u0645\u062A\u0642\u062F\u0645
|
|
38
|
+
injectString("ar", "Advanced groups filter", "\u0639\u0627\u0645\u0644 \u062A\u0635\u0641\u064A\u0629 \u0627\u0644\u0645\u062C\u0645\u0648\u0639\u0627\u062A \u0627\u0644\u0645\u062A\u0642\u062F\u0645");
|
|
39
|
+
injectString("lt-LT", "Advanced groups filter", "I\u0161pl\u0117stinis grupi\u0173 filtras");
|
|
40
|
+
injectString("lv-LV", "Advanced groups filter", "Papildu grupu filtrs");
|
|
41
|
+
injectString("ka-GE", "Advanced groups filter", "\u10EF\u10D2\u10E3\u10E4\u10D4\u10D1\u10D8\u10E1 \u10D2\u10D0\u10E4\u10D0\u10E0\u10D7\u10DD\u10D4\u10D1\u10E3\u10DA\u10D8 \u10E4\u10D8\u10DA\u10E2\u10E0\u10D8");
|
|
42
|
+
injectString("el-GR", "Advanced groups filter", "\u03A3\u03CD\u03BD\u03B8\u03B5\u03C4\u03BF \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF \u03BF\u03BC\u03AC\u03B4\u03C9\u03BD");
|
|
43
|
+
injectString("et-EE", "Advanced groups filter", "T\xE4psem grupifilter");
|
|
44
|
+
injectString("bg-BG", "Advanced groups filter", "\u0420\u0430\u0437\u0448\u0438\u0440\u0435\u043D \u0444\u0438\u043B\u0442\u044A\u0440 \u0437\u0430 \u0433\u0440\u0443\u043F\u0438");
|
|
39
45
|
injectString("cs", "Cancel", "Zru\u0161it");
|
|
40
46
|
injectString("da-DK", "Cancel", "Annuller");
|
|
41
47
|
injectString("de", "Cancel", "Abbrechen");
|
|
@@ -63,6 +69,12 @@ injectString("zh-Hans", "Cancel", "\u53D6\u6D88");
|
|
|
63
69
|
injectString("zh-TW", "Cancel", "\u53D6\u6D88");
|
|
64
70
|
injectString("ro-RO", "Cancel", "Anula\u021Bi");
|
|
65
71
|
injectString("ar", "Cancel", "\u0625\u0644\u063A\u0627\u0621");
|
|
72
|
+
injectString("lt-LT", "Cancel", "At\u0161aukti");
|
|
73
|
+
injectString("lv-LV", "Cancel", "Atcelt");
|
|
74
|
+
injectString("ka-GE", "Cancel", "\u10D2\u10D0\u10E3\u10E5\u10DB\u10D4\u10D1\u10D0");
|
|
75
|
+
injectString("el-GR", "Cancel", "\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7");
|
|
76
|
+
injectString("et-EE", "Cancel", "T\xFChista");
|
|
77
|
+
injectString("bg-BG", "Cancel", "\u041E\u0442\u043A\u0430\u0437");
|
|
66
78
|
injectString("cs", "Apply", "Pou\u017E\xEDt");
|
|
67
79
|
injectString("da-DK", "Apply", "Anvend");
|
|
68
80
|
injectString("de", "Apply", "Anwenden");
|
|
@@ -90,6 +102,12 @@ injectString("zh-Hans", "Apply", "\u5E94\u7528");
|
|
|
90
102
|
injectString("zh-TW", "Apply", "\u5957\u7528");
|
|
91
103
|
injectString("ro-RO", "Apply", "Aplica\u021Bi");
|
|
92
104
|
injectString("ar", "Apply", "\u062A\u0637\u0628\u064A\u0642");
|
|
105
|
+
injectString("lt-LT", "Apply", "Taikyti");
|
|
106
|
+
injectString("lv-LV", "Apply", "Lietot");
|
|
107
|
+
injectString("ka-GE", "Apply", "\u10D2\u10D0\u10DB\u10DD\u10E7\u10D4\u10DC\u10D4\u10D1\u10D0");
|
|
108
|
+
injectString("el-GR", "Apply", "\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE");
|
|
109
|
+
injectString("et-EE", "Apply", "Rakenda");
|
|
110
|
+
injectString("bg-BG", "Apply", "\u041F\u0440\u0438\u043B\u0430\u0433\u0430\u043D\u0435");
|
|
93
111
|
const advancedGroupsFilterFormHelper_1 = require("./advancedGroupsFilterFormHelper");
|
|
94
112
|
const advancedGroupsFilterForm_1 = require("./advancedGroupsFilterForm");
|
|
95
113
|
const classNames_1 = require("../commonHelpers/classNames/classNames");
|
|
@@ -34,7 +34,13 @@ injectString("tr", "Create conditions below to filter the entire system.", "T\xF
|
|
|
34
34
|
injectString("zh-Hans", "Create conditions below to filter the entire system.", "\u5728\u4E0B\u9762\u521B\u5EFA\u6761\u4EF6\u4EE5\u7B5B\u9009\u6574\u4E2A\u7CFB\u7EDF\u3002");
|
|
35
35
|
injectString("zh-TW", "Create conditions below to filter the entire system.", "\u5728\u4E0B\u65B9\u5EFA\u7ACB\u689D\u4EF6\u4EE5\u7BE9\u9078\u6574\u500B\u7CFB\u7D71\u3002");
|
|
36
36
|
injectString("ro-RO", "Create conditions below to filter the entire system.", "Crea\u021Bi condi\u021Biile de mai jos pentru a filtra \xEEntregul sistem.");
|
|
37
|
-
injectString("ar", "Create conditions below to filter the entire system.", "\
|
|
37
|
+
injectString("ar", "Create conditions below to filter the entire system.", "\u0642\u0645 \u0628\u0625\u0646\u0634\u0627\u0621 \u0634\u0631\u0648\u0637 \u0623\u062F\u0646\u0627\u0647 \u0644\u062A\u0635\u0641\u064A\u0629 \u0627\u0644\u0646\u0638\u0627\u0645 \u0628\u0623\u0643\u0645\u0644\u0647.");
|
|
38
|
+
injectString("lt-LT", "Create conditions below to filter the entire system.", "Sukurkite s\u0105lygas \u017Eemiau, kad filtruotum\u0117te vis\u0105 sistem\u0105.");
|
|
39
|
+
injectString("lv-LV", "Create conditions below to filter the entire system.", "Izveidojiet nosac\u012Bjumus zem\u0101k, lai filtr\u0113tu visu sist\u0113mu.");
|
|
40
|
+
injectString("ka-GE", "Create conditions below to filter the entire system.", "\u10E8\u10D4\u10E5\u10DB\u10D4\u10DC\u10D8\u10D7 \u10DE\u10D8\u10E0\u10DD\u10D1\u10D4\u10D1\u10D8 \u10E5\u10D5\u10D4\u10DB\u10DD\u10D7 \u10DB\u10D7\u10D4\u10DA\u10D8 \u10E1\u10D8\u10E1\u10E2\u10D4\u10DB\u10D8\u10E1 \u10D2\u10D0\u10E1\u10D0\u10E4\u10D8\u10DA\u10E2\u10E0\u10D0\u10D3.");
|
|
41
|
+
injectString("el-GR", "Create conditions below to filter the entire system.", "\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03C3\u03C4\u03B5 \u03C3\u03C5\u03BD\u03B8\u03AE\u03BA\u03B5\u03C2 \u03C0\u03B1\u03C1\u03B1\u03BA\u03AC\u03C4\u03C9 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03B5\u03C4\u03B5 \u03BF\u03BB\u03CC\u03BA\u03BB\u03B7\u03C1\u03BF \u03C4\u03BF \u03C3\u03CD\u03C3\u03C4\u03B7\u03BC\u03B1.");
|
|
42
|
+
injectString("et-EE", "Create conditions below to filter the entire system.", "Looge allpool tingimused kogu s\xFCsteemi filtreerimiseks.");
|
|
43
|
+
injectString("bg-BG", "Create conditions below to filter the entire system.", "\u0421\u044A\u0437\u0434\u0430\u0439\u0442\u0435 \u0443\u0441\u043B\u043E\u0432\u0438\u044F \u043F\u043E-\u0434\u043E\u043B\u0443, \u0437\u0430 \u0434\u0430 \u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u0442\u0435 \u0446\u044F\u043B\u0430\u0442\u0430 \u0441\u0438\u0441\u0442\u0435\u043C\u0430.");
|
|
38
44
|
injectString("cs", "Add new condition", "P\u0159idat novou podm\xEDnku");
|
|
39
45
|
injectString("da-DK", "Add new condition", "Tilf\xF8j ny betingelse");
|
|
40
46
|
injectString("de", "Add new condition", "Neue Bedingung hinzuf\xFCgen");
|
|
@@ -62,6 +68,12 @@ injectString("zh-Hans", "Add new condition", "\u6DFB\u52A0\u65B0\u6761\u4EF6");
|
|
|
62
68
|
injectString("zh-TW", "Add new condition", "\u65B0\u589E\u689D\u4EF6");
|
|
63
69
|
injectString("ro-RO", "Add new condition", "Ad\u0103uga\u021Bi o condi\u021Bie nou\u0103");
|
|
64
70
|
injectString("ar", "Add new condition", "\u0625\u0636\u0627\u0641\u0629 \u0634\u0631\u0637 \u062C\u062F\u064A\u062F");
|
|
71
|
+
injectString("lt-LT", "Add new condition", "Prid\u0117ti nauj\u0105 s\u0105lyg\u0105");
|
|
72
|
+
injectString("lv-LV", "Add new condition", "Pievienot jaunu nosac\u012Bjumu");
|
|
73
|
+
injectString("ka-GE", "Add new condition", "\u10D0\u10EE\u10D0\u10DA\u10D8 \u10DE\u10D8\u10E0\u10DD\u10D1\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0");
|
|
74
|
+
injectString("el-GR", "Add new condition", "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03BD\u03AD\u03B1\u03C2 \u03C3\u03C5\u03BD\u03B8\u03AE\u03BA\u03B7\u03C2");
|
|
75
|
+
injectString("et-EE", "Add new condition", "Lisa uus tingimus");
|
|
76
|
+
injectString("bg-BG", "Add new condition", "\u0414\u043E\u0431\u0430\u0432\u044F\u043D\u0435 \u043D\u0430 \u043D\u043E\u0432\u043E \u0443\u0441\u043B\u043E\u0432\u0438\u0435");
|
|
65
77
|
const textIconButton_1 = require("../textIconButton/textIconButton");
|
|
66
78
|
const advancedGroupsFilterFormSection_1 = require("./advancedGroupsFilterFormSection");
|
|
67
79
|
const groupsHelper_1 = require("../groupsFilterRaw/groupsHelper");
|
|
@@ -27,13 +27,23 @@ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? fun
|
|
|
27
27
|
} : function (o, v) {
|
|
28
28
|
o["default"] = v;
|
|
29
29
|
});
|
|
30
|
-
var __importStar = this && this.__importStar || function (
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
};
|
|
30
|
+
var __importStar = this && this.__importStar || function () {
|
|
31
|
+
var ownKeys = function (o) {
|
|
32
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
33
|
+
var ar = [];
|
|
34
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
35
|
+
return ar;
|
|
36
|
+
};
|
|
37
|
+
return ownKeys(o);
|
|
38
|
+
};
|
|
39
|
+
return function (mod) {
|
|
40
|
+
if (mod && mod.__esModule) return mod;
|
|
41
|
+
var result = {};
|
|
42
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
43
|
+
__setModuleDefault(result, mod);
|
|
44
|
+
return result;
|
|
45
|
+
};
|
|
46
|
+
}();
|
|
37
47
|
Object.defineProperty(exports, "__esModule", {
|
|
38
48
|
value: true
|
|
39
49
|
});
|
|
@@ -66,6 +76,12 @@ injectString("zh-Hans", "And", "\u548C");
|
|
|
66
76
|
injectString("zh-TW", "And", "\u548C");
|
|
67
77
|
injectString("ro-RO", "And", "\u0218i");
|
|
68
78
|
injectString("ar", "And", "\u0648");
|
|
79
|
+
injectString("lt-LT", "And", "Ir");
|
|
80
|
+
injectString("lv-LV", "And", "Un");
|
|
81
|
+
injectString("ka-GE", "And", "\u10D3\u10D0");
|
|
82
|
+
injectString("el-GR", "And", "\u039A\u03B1\u03B9");
|
|
83
|
+
injectString("et-EE", "And", "Ja");
|
|
84
|
+
injectString("bg-BG", "And", "\u0418");
|
|
69
85
|
injectString("cs", "Or", "Nebo");
|
|
70
86
|
injectString("da-DK", "Or", "Eller");
|
|
71
87
|
injectString("de", "Or", "Oder");
|
|
@@ -93,6 +109,12 @@ injectString("zh-Hans", "Or", "\u6216");
|
|
|
93
109
|
injectString("zh-TW", "Or", "\u6216");
|
|
94
110
|
injectString("ro-RO", "Or", "Sau");
|
|
95
111
|
injectString("ar", "Or", "\u0623\u0648");
|
|
112
|
+
injectString("lt-LT", "Or", "Arba");
|
|
113
|
+
injectString("lv-LV", "Or", "Vai");
|
|
114
|
+
injectString("ka-GE", "Or", "\u10D0\u10DC");
|
|
115
|
+
injectString("el-GR", "Or", "\u0389");
|
|
116
|
+
injectString("et-EE", "Or", "V\xF5i");
|
|
117
|
+
injectString("bg-BG", "Or", "\u0418\u043B\u0438");
|
|
96
118
|
injectString("cs", "Operator", "Oper\xE1tor");
|
|
97
119
|
injectString("da-DK", "Operator", "Operat\xF8r");
|
|
98
120
|
injectString("de", "Operator", "Operator");
|
|
@@ -120,6 +142,12 @@ injectString("zh-Hans", "Operator", "\u64CD\u4F5C\u5458");
|
|
|
120
142
|
injectString("zh-TW", "Operator", "\u904B\u7B97\u5B50");
|
|
121
143
|
injectString("ro-RO", "Operator", "Operator");
|
|
122
144
|
injectString("ar", "Operator", "\u0639\u0627\u0645\u0644 \u0627\u0644\u062A\u0634\u063A\u064A\u0644");
|
|
145
|
+
injectString("lt-LT", "Operator", "Operatorius");
|
|
146
|
+
injectString("lv-LV", "Operator", "Operators");
|
|
147
|
+
injectString("ka-GE", "Operator", "\u10DD\u10DE\u10D4\u10E0\u10D0\u10E2\u10DD\u10E0\u10D8");
|
|
148
|
+
injectString("el-GR", "Operator", "\u03A4\u03B5\u03BB\u03B5\u03C3\u03C4\u03AE\u03C2");
|
|
149
|
+
injectString("et-EE", "Operator", "Operaator");
|
|
150
|
+
injectString("bg-BG", "Operator", "\u041E\u043F\u0435\u0440\u0430\u0442\u043E\u0440");
|
|
123
151
|
injectString("cs", "Groups", "Skupiny");
|
|
124
152
|
injectString("da-DK", "Groups", "Grupper");
|
|
125
153
|
injectString("de", "Groups", "Gruppen");
|
|
@@ -147,6 +175,12 @@ injectString("zh-Hans", "Groups", "\u7EC4");
|
|
|
147
175
|
injectString("zh-TW", "Groups", "\u7FA4\u7D44");
|
|
148
176
|
injectString("ro-RO", "Groups", "Grupuri");
|
|
149
177
|
injectString("ar", "Groups", "\u0627\u0644\u0645\u062C\u0645\u0648\u0639\u0627\u062A");
|
|
178
|
+
injectString("lt-LT", "Groups", "Grup\u0117s");
|
|
179
|
+
injectString("lv-LV", "Groups", "Grupas");
|
|
180
|
+
injectString("ka-GE", "Groups", "\u10EF\u10D2\u10E3\u10E4\u10D4\u10D1\u10D8");
|
|
181
|
+
injectString("el-GR", "Groups", "\u039F\u03BC\u03AC\u03B4\u03B5\u03C2");
|
|
182
|
+
injectString("et-EE", "Groups", "Grupid");
|
|
183
|
+
injectString("bg-BG", "Groups", "\u0413\u0440\u0443\u043F\u0438");
|
|
150
184
|
injectString("cs", "Remove condition", "Odebrat podm\xEDnku");
|
|
151
185
|
injectString("da-DK", "Remove condition", "Fjern betingelse");
|
|
152
186
|
injectString("de", "Remove condition", "Bedingung entfernen");
|
|
@@ -174,6 +208,12 @@ injectString("zh-Hans", "Remove condition", "\u5220\u9664\u6761\u4EF6");
|
|
|
174
208
|
injectString("zh-TW", "Remove condition", "\u79FB\u9664\u689D\u4EF6");
|
|
175
209
|
injectString("ro-RO", "Remove condition", "Elimina\u021Bi condi\u021Bia");
|
|
176
210
|
injectString("ar", "Remove condition", "\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0634\u0631\u0637");
|
|
211
|
+
injectString("lt-LT", "Remove condition", "Pa\u0161alinti s\u0105lyg\u0105");
|
|
212
|
+
injectString("lv-LV", "Remove condition", "No\u0146emt nosac\u012Bjumu");
|
|
213
|
+
injectString("ka-GE", "Remove condition", "\u10DE\u10D8\u10E0\u10DD\u10D1\u10D8\u10E1 \u10EC\u10D0\u10E8\u10DA\u10D0");
|
|
214
|
+
injectString("el-GR", "Remove condition", "\u039A\u03B1\u03C4\u03AC\u03C1\u03B3\u03B7\u03C3\u03B7 \u03C3\u03C5\u03BD\u03B8\u03AE\u03BA\u03B7\u03C2");
|
|
215
|
+
injectString("et-EE", "Remove condition", "Eemalda tingimus");
|
|
216
|
+
injectString("bg-BG", "Remove condition", "\u041F\u0440\u0435\u043C\u0430\u0445\u0432\u0430\u043D\u0435 \u043D\u0430 \u0443\u0441\u043B\u043E\u0432\u0438\u0435");
|
|
177
217
|
injectString("cs", "Select groups\u2026", "Vybrat skupiny\u2026");
|
|
178
218
|
injectString("da-DK", "Select groups\u2026", "V\xE6lg grupper...");
|
|
179
219
|
injectString("de", "Select groups\u2026", "Gruppen ausw\xE4hlen\xA0\u2026");
|
|
@@ -200,7 +240,13 @@ injectString("tr", "Select groups\u2026", "Gruplar\u0131 se\xE7\u2026");
|
|
|
200
240
|
injectString("zh-Hans", "Select groups\u2026", "\u9009\u62E9\u7EC4\u2026");
|
|
201
241
|
injectString("zh-TW", "Select groups\u2026", "\u9078\u53D6\u7FA4\u7D44...");
|
|
202
242
|
injectString("ro-RO", "Select groups\u2026", "Selecta\u021Bi grupurile\u2026");
|
|
203
|
-
injectString("ar", "Select groups\u2026", "\
|
|
243
|
+
injectString("ar", "Select groups\u2026", "\u062A\u062D\u062F\u064A\u062F \u0645\u062C\u0645\u0648\u0639\u0627\u062A...");
|
|
244
|
+
injectString("lt-LT", "Select groups\u2026", "Pasirinkti grupes\u2026");
|
|
245
|
+
injectString("lv-LV", "Select groups\u2026", "Atlas\u012Bt grupas\u2026");
|
|
246
|
+
injectString("ka-GE", "Select groups\u2026", "\u10EF\u10D2\u10E3\u10E4\u10D4\u10D1\u10D8\u10E1 \u10D0\u10E0\u10E9\u10D4\u10D5\u10D0\u2026");
|
|
247
|
+
injectString("el-GR", "Select groups\u2026", "\u0395\u03C0\u03B9\u03BB\u03AD\u03BE\u03C4\u03B5 \u03BF\u03BC\u03AC\u03B4\u03B5\u03C2\u2026");
|
|
248
|
+
injectString("et-EE", "Select groups\u2026", "Vali grupid\u2026");
|
|
249
|
+
injectString("bg-BG", "Select groups\u2026", "\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0433\u0440\u0443\u043F\u0438\u2026");
|
|
204
250
|
injectString("cs", "GroupCompanyId", "Skupina spole\u010Dnosti");
|
|
205
251
|
injectString("da-DK", "GroupCompanyId", "Virksomhedsgruppe");
|
|
206
252
|
injectString("de", "GroupCompanyId", "Unternehmensgruppe");
|
|
@@ -228,6 +274,12 @@ injectString("zh-Hans", "GroupCompanyId", "\u516C\u53F8\u7EC4");
|
|
|
228
274
|
injectString("zh-TW", "GroupCompanyId", "\u516C\u53F8\u7FA4\u7D44");
|
|
229
275
|
injectString("ro-RO", "GroupCompanyId", "Grup de companii");
|
|
230
276
|
injectString("ar", "GroupCompanyId", "\u0645\u062C\u0645\u0648\u0639\u0629 \u0627\u0644\u0634\u0631\u0643\u0629");
|
|
277
|
+
injectString("lt-LT", "GroupCompanyId", "\u012Emon\u0117s grup\u0117");
|
|
278
|
+
injectString("lv-LV", "GroupCompanyId", "Uz\u0146\u0113muma grupa");
|
|
279
|
+
injectString("ka-GE", "GroupCompanyId", "\u10D9\u10DD\u10DB\u10DE\u10D0\u10DC\u10D8\u10D8\u10E1 \u10EF\u10D2\u10E3\u10E4\u10D8");
|
|
280
|
+
injectString("el-GR", "GroupCompanyId", "\u039F\u03BC\u03AC\u03B4\u03B1 \u03B5\u03C4\u03B1\u03B9\u03C1\u03B5\u03AF\u03B1\u03C2");
|
|
281
|
+
injectString("et-EE", "GroupCompanyId", "Ettev\xF5tte grupp");
|
|
282
|
+
injectString("bg-BG", "GroupCompanyId", "\u0424\u0438\u0440\u043C\u0435\u043D\u0430 \u0433\u0440\u0443\u043F\u0430");
|
|
231
283
|
const react_1 = __importStar(require("react"));
|
|
232
284
|
const groupButton_1 = require("../groupButton/groupButton");
|
|
233
285
|
const groupsFilterInterfaces_1 = require("../groupsFilterRaw/groupsFilterInterfaces");
|
|
@@ -35,7 +35,13 @@ injectString("tr", "Use multiple Operators when searching for a specific group.
|
|
|
35
35
|
injectString("zh-Hans", "Use multiple Operators when searching for a specific group. For example, filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.", "\u641C\u7D22\u7279\u5B9A\u7EC4\u65F6\uFF0C\u53EF\u4EE5\u4F7F\u7528\u591A\u4E2A\u8FD0\u7B97\u7B26\u3002\u4F8B\u5982\uFF0C\u7B5B\u9009\u5C5E\u4E8E\u201C\u7275\u5F15\u8F66\u201D\u7EC4\u548C\u201C\u591A\u4F26\u591A\u201D\u7EC4\u7684\u8D44\u4EA7\uFF0C\u5C31\u4F1A\u663E\u793A\u5C5E\u4E8E\u591A\u4F26\u591A\u5206\u652F\u7684\u7275\u5F15\u8F66\u5217\u8868\u3002");
|
|
36
36
|
injectString("zh-TW", "Use multiple Operators when searching for a specific group. For example, filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.", "\u641C\u5C0B\u7279\u5B9A\u7FA4\u7D44\u6642\uFF0C\u8ACB\u4F7F\u7528\u591A\u500B\u904B\u7B97\u5B50\u3002\u4F8B\u5982\uFF0C\u82E5\u7BE9\u9078\u5C6C\u65BC\u727D\u5F15\u6A5F\u7FA4\u7D44\u548C\u591A\u502B\u591A\u7FA4\u7D44\u7684\u8CC7\u7522\uFF0C\u5247\u6703\u986F\u793A\u5C6C\u65BC\u591A\u502B\u591A\u5206\u516C\u53F8\u7684\u727D\u5F15\u6A5F\u6E05\u55AE\u3002");
|
|
37
37
|
injectString("ro-RO", "Use multiple Operators when searching for a specific group. For example, filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.", "Utiliza\u021Bi mai mul\u021Bi operatori c\xE2nd c\u0103uta\u021Bi un anumit grup. De exemplu, prin filtrarea activelor care apar\u021Bin grupului Tractor \u0219i grupului Toronto, se afi\u0219eaz\u0103 o list\u0103 de tractoare care apar\u021Bin filialei Toronto.");
|
|
38
|
-
injectString("ar", "Use multiple Operators when searching for a specific group. For example, filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.", "\u0627\u0633\u062A\u062E\u062F\u0645 \u0639\u0648\u0627\u0645\u0644 \u062A\u0634\u063A\u064A\u0644 \
|
|
38
|
+
injectString("ar", "Use multiple Operators when searching for a specific group. For example, filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.", "\u0627\u0633\u062A\u062E\u062F\u0645 \u0639\u062F\u0629 \u0639\u0648\u0627\u0645\u0644 \u062A\u0634\u063A\u064A\u0644 \u0639\u0646\u062F \u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0645\u062C\u0645\u0648\u0639\u0629 \u0645\u062D\u062F\u062F\u0629. \u0639\u0644\u0649 \u0633\u0628\u064A\u0644 \u0627\u0644\u0645\u062B\u0627\u0644\u060C \u064A\u0624\u062F\u064A \u0627\u0644\u062A\u0635\u0641\u064A\u0629 \u0628\u062D\u062B\u064B\u0627 \u0639\u0646 \u0627\u0644\u0623\u0635\u0648\u0644 \u0627\u0644\u062A\u064A \u062A\u0646\u062A\u0645\u064A \u0625\u0644\u0649 \u0645\u062C\u0645\u0648\u0639\u0629 Tractor \u0648\u0645\u062C\u0645\u0648\u0639\u0629 Toronto \u0625\u0644\u0649 \u0639\u0631\u0636 \u0642\u0627\u0626\u0645\u0629 \u0628\u0627\u0644\u062C\u0631\u0627\u0631\u0627\u062A \u0627\u0644\u062A\u0627\u0628\u0639\u0629 \u0644\u0641\u0631\u0639 Toronto.");
|
|
39
|
+
injectString("lt-LT", "Use multiple Operators when searching for a specific group. For example, filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.", "Naudokite kelis operatorius ie\u0161kodami konkre\u010Dios grup\u0117s. Pvz., filtruojant turt\u0105, priklausant\u012F grup\u0117ms Traktorius ir Torantas, rodomas Toranto filialo traktori\u0173 s\u0105ra\u0161as.");
|
|
40
|
+
injectString("lv-LV", "Use multiple Operators when searching for a specific group. For example, filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.", "Izmantojiet vair\u0101kus operatorus, mekl\u0113jot konkr\u0113tu grupu. Piem\u0113ram, filtr\u0113jot akt\u012Bvus, kas pieder grupai Traktors un Toronto, tiek par\u0101d\u012Bts Toronto fili\u0101les traktoru saraksts.");
|
|
41
|
+
injectString("ka-GE", "Use multiple Operators when searching for a specific group. For example, filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.", "\u10D2\u10D0\u10DB\u10DD\u10D8\u10E7\u10D4\u10DC\u10D4\u10D7 \u10DB\u10E0\u10D0\u10D5\u10D0\u10DA\u10D8 \u10DD\u10DE\u10D4\u10E0\u10D0\u10E2\u10DD\u10E0\u10D8 \u10D9\u10DD\u10DC\u10D9\u10E0\u10D4\u10E2\u10E3\u10DA\u10D8 \u10EF\u10D2\u10E3\u10E4\u10D8\u10E1 \u10EB\u10D8\u10D4\u10D1\u10D8\u10E1\u10D0\u10E1. \u10DB\u10D0\u10D2\u10D0\u10DA\u10D8\u10D7\u10D0\u10D3, Tractor \u10D3\u10D0 Toronto \u10EF\u10D2\u10E3\u10E4\u10D4\u10D1\u10D8\u10E1 \u10E4\u10D8\u10DA\u10E2\u10E0\u10D0\u10EA\u10D8\u10D0 \u10D0\u10E9\u10D5\u10D4\u10DC\u10D4\u10D1\u10E1 Toronto \u10E4\u10D8\u10DA\u10D8\u10D0\u10DA\u10D8\u10E1 \u10E2\u10E0\u10D0\u10E5\u10E2\u10DD\u10E0\u10D4\u10D1\u10D8\u10E1 \u10E1\u10D8\u10D0\u10E1.");
|
|
42
|
+
injectString("el-GR", "Use multiple Operators when searching for a specific group. For example, filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.", "\u03A7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03C4\u03B5 \u03C0\u03BF\u03BB\u03BB\u03B1\u03C0\u03BB\u03BF\u03CD\u03C2 \u03C4\u03B5\u03BB\u03B5\u03C3\u03C4\u03AD\u03C2 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03B7\u03C2 \u03BF\u03BC\u03AC\u03B4\u03B1\u03C2. \u0393\u03B9\u03B1 \u03C0\u03B1\u03C1\u03AC\u03B4\u03B5\u03B9\u03B3\u03BC\u03B1, \u03C4\u03BF \u03C6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03B9\u03C3\u03BC\u03B1 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C5\u03C3\u03B9\u03B1\u03BA\u03CE\u03BD \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B1\u03BD\u03AE\u03BA\u03BF\u03C5\u03BD \u03C3\u03C4\u03B7\u03BD \u03BF\u03BC\u03AC\u03B4\u03B1 \u03A4\u03C1\u03B1\u03BA\u03C4\u03AD\u03C1 \u03BA\u03B1\u03B9 \u03A4\u03BF\u03C1\u03CC\u03BD\u03C4\u03BF \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03C1\u03B1\u03BA\u03C4\u03AD\u03C1 \u03C4\u03BF\u03C5 \u03BA\u03BB\u03AC\u03B4\u03BF\u03C5 \u03A4\u03BF\u03C1\u03CC\u03BD\u03C4\u03BF.");
|
|
43
|
+
injectString("et-EE", "Use multiple Operators when searching for a specific group. For example, filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.", "Kasutage mitut operaatorit konkreetse grupi otsimisel. N\xE4iteks Traktor ja Toronto gruppi kuuluvate varade filtreerimine kuvab Toronto harule kuuluvate traktorite loendi.");
|
|
44
|
+
injectString("bg-BG", "Use multiple Operators when searching for a specific group. For example, filtering for assets that belong to the Tractor group and the Toronto group displays a list of tractors that belong to the Toronto branch.", "\u0418\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0439\u0442\u0435 \u043C\u043D\u043E\u0436\u0435\u0441\u0442\u0432\u043E \u043E\u043F\u0435\u0440\u0430\u0442\u043E\u0440\u0438 \u043F\u0440\u0438 \u0442\u044A\u0440\u0441\u0435\u043D\u0435 \u043D\u0430 \u043A\u043E\u043D\u043A\u0440\u0435\u0442\u043D\u0430 \u0433\u0440\u0443\u043F\u0430. \u041D\u0430\u043F\u0440\u0438\u043C\u0435\u0440, \u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u043D\u0435\u0442\u043E \u043D\u0430 \u0430\u043A\u0442\u0438\u0432\u0438, \u043F\u0440\u0438\u043D\u0430\u0434\u043B\u0435\u0436\u0430\u0449\u0438 \u043D\u0430 \u0433\u0440\u0443\u043F\u0430\u0442\u0430 \u0422\u0440\u0430\u043A\u0442\u043E\u0440 \u0438 \u0433\u0440\u0443\u043F\u0430\u0442\u0430 \u0422\u043E\u0440\u043E\u043D\u0442\u043E, \u043F\u043E\u043A\u0430\u0437\u0432\u0430 \u0441\u043F\u0438\u0441\u044A\u043A \u0441 \u0442\u0440\u0430\u043A\u0442\u043E\u0440\u0438 \u043E\u0442 \u043A\u043B\u043E\u043D\u0430 \u0432 \u0422\u043E\u0440\u043E\u043D\u0442\u043E.");
|
|
39
45
|
const useLanguage_1 = require("../utils/localization/useLanguage");
|
|
40
46
|
const classNames_1 = require("../commonHelpers/classNames/classNames");
|
|
41
47
|
const AdvancedGroupsFilterSectionTooltip = ({
|
package/dist/alert/banner.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
ErrorSummary: import("react").FC<import("../banner/bannerErrorSummary").IBannerErrorSummary>;
|
|
1
|
+
export declare const Banner: import("react").FC<import("..").IBanner> & {
|
|
2
|
+
ErrorSummary: typeof import("../banner/bannerErrorSummary").BannerErrorSummary;
|
|
4
3
|
};
|
|
@@ -41,6 +41,12 @@ injectString("zh-Hans", "Close", "\u5173\u95ED");
|
|
|
41
41
|
injectString("zh-TW", "Close", "\u95DC\u9589");
|
|
42
42
|
injectString("ro-RO", "Close", "\xCEnchide");
|
|
43
43
|
injectString("ar", "Close", "\u0625\u063A\u0644\u0627\u0642");
|
|
44
|
+
injectString("lt-LT", "Close", "U\u017Edaryti");
|
|
45
|
+
injectString("lv-LV", "Close", "Aizv\u0113rt");
|
|
46
|
+
injectString("ka-GE", "Close", "\u10D3\u10D0\u10EE\u10E3\u10E0\u10D5\u10D0");
|
|
47
|
+
injectString("el-GR", "Close", "\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF");
|
|
48
|
+
injectString("et-EE", "Close", "Sulge");
|
|
49
|
+
injectString("bg-BG", "Close", "\u0417\u0430\u0442\u0432\u0430\u0440\u044F\u043D\u0435");
|
|
44
50
|
const alertAnimation_1 = __importDefault(require("./components/alertAnimation"));
|
|
45
51
|
const classNames_1 = require("../commonHelpers/classNames/classNames");
|
|
46
52
|
const buttonType_1 = require("../button/buttonType");
|
|
@@ -41,6 +41,12 @@ injectString("zh-Hans", "Close", "\u5173\u95ED");
|
|
|
41
41
|
injectString("zh-TW", "Close", "\u95DC\u9589");
|
|
42
42
|
injectString("ro-RO", "Close", "\xCEnchide");
|
|
43
43
|
injectString("ar", "Close", "\u0625\u063A\u0644\u0627\u0642");
|
|
44
|
+
injectString("lt-LT", "Close", "U\u017Edaryti");
|
|
45
|
+
injectString("lv-LV", "Close", "Aizv\u0113rt");
|
|
46
|
+
injectString("ka-GE", "Close", "\u10D3\u10D0\u10EE\u10E3\u10E0\u10D5\u10D0");
|
|
47
|
+
injectString("el-GR", "Close", "\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF");
|
|
48
|
+
injectString("et-EE", "Close", "Sulge");
|
|
49
|
+
injectString("bg-BG", "Close", "\u0417\u0430\u0442\u0432\u0430\u0440\u044F\u043D\u0435");
|
|
44
50
|
const bannerUtils_1 = require("./bannerUtils");
|
|
45
51
|
const useLanguage_1 = require("../utils/localization/useLanguage");
|
|
46
52
|
const typeIcon_1 = __importDefault(require("./typeIcon"));
|
|
@@ -41,6 +41,12 @@ injectString("zh-Hans", "Close", "\u5173\u95ED");
|
|
|
41
41
|
injectString("zh-TW", "Close", "\u95DC\u9589");
|
|
42
42
|
injectString("ro-RO", "Close", "\xCEnchide");
|
|
43
43
|
injectString("ar", "Close", "\u0625\u063A\u0644\u0627\u0642");
|
|
44
|
+
injectString("lt-LT", "Close", "U\u017Edaryti");
|
|
45
|
+
injectString("lv-LV", "Close", "Aizv\u0113rt");
|
|
46
|
+
injectString("ka-GE", "Close", "\u10D3\u10D0\u10EE\u10E3\u10E0\u10D5\u10D0");
|
|
47
|
+
injectString("el-GR", "Close", "\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF");
|
|
48
|
+
injectString("et-EE", "Close", "Sulge");
|
|
49
|
+
injectString("bg-BG", "Close", "\u0417\u0430\u0442\u0432\u0430\u0440\u044F\u043D\u0435");
|
|
44
50
|
const button_1 = require("../button/button");
|
|
45
51
|
const buttonType_1 = require("../button/buttonType");
|
|
46
52
|
const typeIcon_1 = __importDefault(require("./typeIcon"));
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { IBannerErrorSummary } from "../bannerErrorSummary";
|
|
3
|
-
export declare const isSummaryErrorElement: (child: React.ReactNode) => child is
|
|
2
|
+
export declare const isSummaryErrorElement: (child: React.ReactNode) => child is React.ReactElement<IBannerErrorSummary>;
|
|
@@ -10,7 +10,39 @@ exports.useSummaryBannerProp = void 0;
|
|
|
10
10
|
const useLanguage_1 = require("../../utils/localization/useLanguage");
|
|
11
11
|
const hasSummaryErrorChild_1 = require("./hasSummaryErrorChild");
|
|
12
12
|
const buildSummaryErrorList_1 = require("./buildSummaryErrorList");
|
|
13
|
+
injectString("cs", "Please correct the following errors.", "Opravte pros\xEDm n\xE1sleduj\xEDc\xED chyby.");
|
|
14
|
+
injectString("da-DK", "Please correct the following errors.", "Ret venligst f\xF8lgende fejl.");
|
|
15
|
+
injectString("de", "Please correct the following errors.", "Bitte korrigieren Sie die folgenden Fehler.");
|
|
13
16
|
injectString("en", "Please correct the following errors.", "Please correct the following errors.");
|
|
17
|
+
injectString("es", "Please correct the following errors.", "Corrija los siguientes errores.");
|
|
18
|
+
injectString("fi-FI", "Please correct the following errors.", "Korjaa seuraavat virheet.");
|
|
19
|
+
injectString("fr", "Please correct the following errors.", "Veuillez corriger les erreurs suivantes.");
|
|
20
|
+
injectString("fr-FR", "Please correct the following errors.", "Veuillez corriger les erreurs suivantes.");
|
|
21
|
+
injectString("hu-HU", "Please correct the following errors.", "K\xE9rj\xFCk, jav\xEDtsa a k\xF6vetkez\u0151 hib\xE1kat.");
|
|
22
|
+
injectString("id", "Please correct the following errors.", "Harap perbaiki kesalahan berikut.");
|
|
23
|
+
injectString("it", "Please correct the following errors.", "Correggere i seguenti errori.");
|
|
24
|
+
injectString("ja", "Please correct the following errors.", "\u6B21\u306E\u30A8\u30E9\u30FC\u3092\u4FEE\u6B63\u3057\u3066\u304F\u3060\u3055\u3044\u3002");
|
|
25
|
+
injectString("ko-KR", "Please correct the following errors.", "\uB2E4\uC74C \uC624\uB958\uB97C \uC218\uC815\uD558\uC138\uC694.");
|
|
26
|
+
injectString("ms", "Please correct the following errors.", "Sila betulkan ralat berikut.");
|
|
27
|
+
injectString("nb-NO", "Please correct the following errors.", "Vennligst rett opp f\xF8lgende feil.");
|
|
28
|
+
injectString("nl", "Please correct the following errors.", "Corrigeer de volgende fouten.");
|
|
29
|
+
injectString("pl", "Please correct the following errors.", "Prosz\u0119 poprawi\u0107 nast\u0119puj\u0105ce b\u0142\u0119dy.");
|
|
30
|
+
injectString("pt-BR", "Please correct the following errors.", "Corrija os seguintes erros.");
|
|
31
|
+
injectString("pt-PT", "Please correct the following errors.", "Corrija os seguintes erros.");
|
|
32
|
+
injectString("sk-SK", "Please correct the following errors.", "Opravte nasleduj\xFAce chyby.");
|
|
33
|
+
injectString("sv", "Please correct the following errors.", "R\xE4tta till f\xF6ljande fel.");
|
|
34
|
+
injectString("th", "Please correct the following errors.", "\u0E01\u0E23\u0E38\u0E13\u0E32\u0E41\u0E01\u0E49\u0E44\u0E02\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E15\u0E48\u0E2D\u0E44\u0E1B\u0E19\u0E35\u0E49");
|
|
35
|
+
injectString("tr", "Please correct the following errors.", "L\xFCtfen a\u015Fa\u011F\u0131daki hatalar\u0131 d\xFCzeltin.");
|
|
36
|
+
injectString("zh-Hans", "Please correct the following errors.", "\u8BF7\u66F4\u6B63\u4EE5\u4E0B\u9519\u8BEF\u3002");
|
|
37
|
+
injectString("zh-TW", "Please correct the following errors.", "\u8ACB\u66F4\u6B63\u4EE5\u4E0B\u932F\u8AA4\u3002");
|
|
38
|
+
injectString("ro-RO", "Please correct the following errors.", "V\u0103 rug\u0103m s\u0103 corecta\u021Bi urm\u0103toarele erori.");
|
|
39
|
+
injectString("ar", "Please correct the following errors.", "\u064A\u0631\u062C\u0649 \u062A\u0635\u062D\u064A\u062D \u0627\u0644\u0623\u062E\u0637\u0627\u0621 \u0627\u0644\u062A\u0627\u0644\u064A\u0629.");
|
|
40
|
+
injectString("lt-LT", "Please correct the following errors.", "Taisykite \u0161ias klaidas.");
|
|
41
|
+
injectString("lv-LV", "Please correct the following errors.", "L\u016Bdzu labojiet \u0161\u0101das k\u013C\u016Bdas.");
|
|
42
|
+
injectString("ka-GE", "Please correct the following errors.", "\u10D2\u10D7\u10EE\u10DD\u10D5\u10D7, \u10D2\u10D0\u10DB\u10DD\u10D0\u10E1\u10EC\u10DD\u10E0\u10DD\u10D7 \u10E8\u10D4\u10DB\u10D3\u10D4\u10D2\u10D8 \u10E8\u10D4\u10EA\u10D3\u10DD\u10DB\u10D4\u10D1\u10D8.");
|
|
43
|
+
injectString("el-GR", "Please correct the following errors.", "\u0394\u03B9\u03BF\u03C1\u03B8\u03CE\u03C3\u03C4\u03B5 \u03C4\u03B1 \u03C0\u03B1\u03C1\u03B1\u03BA\u03AC\u03C4\u03C9 \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1\u03C4\u03B1.");
|
|
44
|
+
injectString("et-EE", "Please correct the following errors.", "Parandage j\xE4rgmised vead.");
|
|
45
|
+
injectString("bg-BG", "Please correct the following errors.", "\u041C\u043E\u043B\u044F, \u043A\u043E\u0440\u0438\u0433\u0438\u0440\u0430\u0439\u0442\u0435 \u0441\u043B\u0435\u0434\u043D\u0438\u0442\u0435 \u0433\u0440\u0435\u0448\u043A\u0438.");
|
|
14
46
|
const useSummaryBannerProp = props => {
|
|
15
47
|
const {
|
|
16
48
|
children,
|
|
@@ -42,7 +42,13 @@ injectString("tr", "Send feedback", "Geri bildirim g\xF6nder");
|
|
|
42
42
|
injectString("zh-Hans", "Send feedback", "\u53D1\u9001\u53CD\u9988");
|
|
43
43
|
injectString("zh-TW", "Send feedback", "\u50B3\u9001\u610F\u898B\u56DE\u994B");
|
|
44
44
|
injectString("ro-RO", "Send feedback", "Trimite\u021Bi feedback");
|
|
45
|
-
injectString("ar", "Send feedback", "\u0625\u0631\u0633\u0627\u0644 \
|
|
45
|
+
injectString("ar", "Send feedback", "\u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u062A\u0639\u0644\u064A\u0642\u0627\u062A");
|
|
46
|
+
injectString("lt-LT", "Send feedback", "Si\u0173sti atsiliepim\u0105");
|
|
47
|
+
injectString("lv-LV", "Send feedback", "Nos\u016Bt\u012Bt atsauksmi");
|
|
48
|
+
injectString("ka-GE", "Send feedback", "\u10D2\u10D0\u10DB\u10DD\u10EE\u10DB\u10D0\u10E3\u10E0\u10D4\u10D1\u10D8\u10E1 \u10D2\u10D0\u10D2\u10D6\u10D0\u10D5\u10DC\u10D0");
|
|
49
|
+
injectString("el-GR", "Send feedback", "\u0391\u03C0\u03BF\u03C3\u03C4\u03BF\u03BB\u03AE \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD");
|
|
50
|
+
injectString("et-EE", "Send feedback", "Saada tagasiside");
|
|
51
|
+
injectString("bg-BG", "Send feedback", "\u0418\u0437\u043F\u0440\u0430\u0449\u0430\u043D\u0435 \u043D\u0430 \u043E\u0431\u0440\u0430\u0442\u043D\u0430 \u0432\u0440\u044A\u0437\u043A\u0430");
|
|
46
52
|
injectString("cs", "Manage beta option", "Manage beta option");
|
|
47
53
|
injectString("da-DK", "Manage beta option", "Styr beta-indstillingen");
|
|
48
54
|
injectString("de", "Manage beta option", "Manage beta option");
|
|
@@ -56,20 +62,26 @@ injectString("id", "Manage beta option", "Manage beta option");
|
|
|
56
62
|
injectString("it", "Manage beta option", "Manage beta option");
|
|
57
63
|
injectString("ja", "Manage beta option", "Manage beta option");
|
|
58
64
|
injectString("ko-KR", "Manage beta option", "\uBCA0\uD0C0 \uC635\uC158 \uAD00\uB9AC");
|
|
59
|
-
injectString("ms", "Manage beta option", "
|
|
65
|
+
injectString("ms", "Manage beta option", "Urus pilihan beta");
|
|
60
66
|
injectString("nb-NO", "Manage beta option", "Administrer beta-alternativ");
|
|
61
|
-
injectString("nl", "Manage beta option", "
|
|
67
|
+
injectString("nl", "Manage beta option", "Betaoptie beheren");
|
|
62
68
|
injectString("pl", "Manage beta option", "Manage beta option");
|
|
63
|
-
injectString("pt-BR", "Manage beta option", "
|
|
69
|
+
injectString("pt-BR", "Manage beta option", "Gerenciar op\xE7\xE3o beta");
|
|
64
70
|
injectString("pt-PT", "Manage beta option", "Gerenciar op\xE7\xE3o beta");
|
|
65
71
|
injectString("sk-SK", "Manage beta option", "Spravuj beta mo\u017Enos\u0165");
|
|
66
|
-
injectString("sv", "Manage beta option", "
|
|
72
|
+
injectString("sv", "Manage beta option", "Hantera betaalternativ");
|
|
67
73
|
injectString("th", "Manage beta option", "Manage beta option");
|
|
68
74
|
injectString("tr", "Manage beta option", "Manage beta option");
|
|
69
75
|
injectString("zh-Hans", "Manage beta option", "Manage beta option");
|
|
70
76
|
injectString("zh-TW", "Manage beta option", "\u7BA1\u7406\u6E2C\u8A66\u7248\u9078\u9805");
|
|
71
77
|
injectString("ro-RO", "Manage beta option", "Administra\u021Bi op\u021Biunea beta");
|
|
72
78
|
injectString("ar", "Manage beta option", "\u0625\u062F\u0627\u0631\u0629 \u0627\u0644\u062E\u064A\u0627\u0631 \u0627\u0644\u062A\u062C\u0631\u064A\u0628\u064A");
|
|
79
|
+
injectString("lt-LT", "Manage beta option", "Tvarkyti beta parinkt\u012F");
|
|
80
|
+
injectString("lv-LV", "Manage beta option", "P\u0101rvald\u012Bt beta opciju");
|
|
81
|
+
injectString("ka-GE", "Manage beta option", "\u10D1\u10D4\u10E2\u10D0 \u10DE\u10D0\u10E0\u10D0\u10DB\u10D4\u10E2\u10E0\u10D8\u10E1 \u10DB\u10D0\u10E0\u10D7\u10D5\u10D0");
|
|
82
|
+
injectString("el-GR", "Manage beta option", "\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 \u03B2\u03AE\u03C4\u03B1");
|
|
83
|
+
injectString("et-EE", "Manage beta option", "Halda beeta valikut");
|
|
84
|
+
injectString("bg-BG", "Manage beta option", "\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u0431\u0435\u0442\u0430 \u043E\u043F\u0446\u0438\u044F\u0442\u0430");
|
|
73
85
|
injectString("cs", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.");
|
|
74
86
|
injectString("da-DK", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "Funktionen er stadig under test og virker ikke helt endnu. Din feedback er guld v\xE6rd og hj\xE6lper os med fremtidige forbedringer.");
|
|
75
87
|
injectString("de", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.");
|
|
@@ -83,20 +95,26 @@ injectString("id", "This feature is still in testing, and is not fully supported
|
|
|
83
95
|
injectString("it", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.");
|
|
84
96
|
injectString("ja", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.");
|
|
85
97
|
injectString("ko-KR", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "\uC774 \uAE30\uB2A5\uC740 \uC5EC\uC804\uD788 \uD14C\uC2A4\uD2B8 \uC911\uC774\uBA70 \uC544\uC9C1 \uC644\uC804\uD788 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. \uADC0\uD558\uC758 \uD53C\uB4DC\uBC31\uC740 \uD5A5\uD6C4 \uAC1C\uC120 \uBC29\uD5A5\uC744 \uC81C\uC2DC\uD558\uB294 \uB370 \uB9E4\uC6B0 \uC911\uC694\uD569\uB2C8\uB2E4.");
|
|
86
|
-
injectString("ms", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "
|
|
98
|
+
injectString("ms", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "Ciri ini masih dalam pengujian dan belum disokong sepenuhnya. Maklum balas anda sangat berharga untuk membantu membimbing penambahbaikan pada masa hadapan.");
|
|
87
99
|
injectString("nb-NO", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "Denne funksjonen er fortsatt under testing, og st\xF8ttes ikke fullt ut enn\xE5. Tilbakemeldingen din er viktig for at vi skal kunne forbedre tjenesten.");
|
|
88
|
-
injectString("nl", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "
|
|
100
|
+
injectString("nl", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "Deze functie wordt nog getest en wordt nog niet volledig ondersteund. Uw feedback is waardevol om toekomstige verbeteringen te sturen.");
|
|
89
101
|
injectString("pl", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.");
|
|
90
|
-
injectString("pt-BR", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "
|
|
102
|
+
injectString("pt-BR", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "Este recurso ainda est\xE1 em fase de testes e ainda n\xE3o tem suporte completo. Seu feedback \xE9 valioso para orientar melhorias futuras.");
|
|
91
103
|
injectString("pt-PT", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "Esta funcionalidade ainda est\xE1 em testes e ainda n\xE3o \xE9 totalmente suportada. O seu feedback \xE9 valioso para ajudar a orientar melhorias futuras.");
|
|
92
|
-
injectString("sk-SK", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "
|
|
93
|
-
injectString("sv", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "
|
|
104
|
+
injectString("sk-SK", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "T\xE1to funkcia je st\xE1le v testovacej f\xE1ze a zatia\u013E nie je plne podporovan\xE1. Va\u0161a sp\xE4tn\xE1 v\xE4zba je cenn\xE1 a pom\xE1ha usmer\u0148ova\u0165 bud\xFAce vylep\u0161enia.");
|
|
105
|
+
injectString("sv", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "Den h\xE4r funktionen testas fortfarande och st\xF6ds inte fullt ut \xE4nnu. Din feedback \xE4r v\xE4rdefull f\xF6r att v\xE4gleda framtida f\xF6rb\xE4ttringar.");
|
|
94
106
|
injectString("th", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.");
|
|
95
107
|
injectString("tr", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.");
|
|
96
108
|
injectString("zh-Hans", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.");
|
|
97
109
|
injectString("zh-TW", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "\u6B64\u529F\u80FD\u4ECD\u5728\u6E2C\u8A66\u968E\u6BB5\uFF0C\u5C1A\u672A\u5B8C\u5168\u652F\u63F4\u3002\u60A8\u7684\u610F\u898B\u56DE\u994B\u5C0D\u6211\u5011\u4F86\u8AAA\u975E\u5E38\u91CD\u8981\uFF0C\u80FD\u5354\u52A9\u6211\u5011\u78BA\u8A8D\u672A\u4F86\u6539\u9032\u7684\u65B9\u5411\u3002");
|
|
98
110
|
injectString("ro-RO", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "Aceast\u0103 func\u021Bie este \xEEn testare \u0219i \xEEnc\u0103 nu este complet compatibil\u0103. Feedbackul dvs. este important \u0219i ne va ajuta la \xEEmbun\u0103t\u0103\u021Birile viitoare.");
|
|
99
111
|
injectString("ar", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "\u0647\u0630\u0647 \u0627\u0644\u0645\u064A\u0632\u0629 \u0644\u0627 \u062A\u0632\u0627\u0644 \u0642\u064A\u062F \u0627\u0644\u0627\u062E\u062A\u0628\u0627\u0631 \u0648\u063A\u064A\u0631 \u0645\u062F\u0639\u0648\u0645\u0629 \u0628\u0627\u0644\u0643\u0627\u0645\u0644 \u0628\u0639\u062F. \u0645\u0644\u0627\u062D\u0638\u0627\u062A\u0643 \u0642\u064A\u0645\u0629 \u0644\u0644\u0645\u0633\u0627\u0639\u062F\u0629 \u0641\u064A \u062A\u0648\u062C\u064A\u0647 \u0627\u0644\u062A\u062D\u0633\u064A\u0646\u0627\u062A \u0627\u0644\u0645\u0633\u062A\u0642\u0628\u0644\u064A\u0629.");
|
|
112
|
+
injectString("lt-LT", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "\u0160i funkcija dar testuojama ir n\u0117ra visi\u0161kai palaikoma. J\u016Bs\u0173 atsiliepimai vertingi tobulinant produkt\u0105.");
|
|
113
|
+
injectString("lv-LV", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "\u0160\u012B funkcija v\u0113l ir test\u0113\u0161anas stadij\u0101 un nav piln\u012Bb\u0101 atbalst\u012Bta. J\u016Bsu atsauksmes ir v\u0113rt\u012Bgas turpm\u0101kajiem uzlabojumiem.");
|
|
114
|
+
injectString("ka-GE", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "\u10D4\u10E1 \u10E4\u10E3\u10DC\u10E5\u10EA\u10D8\u10D0 \u10EF\u10D4\u10E0 \u10D9\u10D8\u10D3\u10D4\u10D5 \u10E2\u10D4\u10E1\u10E2\u10D8\u10E0\u10D4\u10D1\u10D0\u10E8\u10D8\u10D0 \u10D3\u10D0 \u10E1\u10E0\u10E3\u10DA\u10D0\u10D3 \u10D0\u10E0 \u10D0\u10E0\u10D8\u10E1 \u10DB\u10EE\u10D0\u10E0\u10D3\u10D0\u10ED\u10D4\u10E0\u10D8\u10DA\u10D8. \u10D7\u10E5\u10D5\u10D4\u10DC\u10D8 \u10D2\u10D0\u10DB\u10DD\u10EE\u10DB\u10D0\u10E3\u10E0\u10D4\u10D1\u10D0 \u10DB\u10DD\u10DB\u10D0\u10D5\u10D0\u10DA\u10D8 \u10D2\u10D0\u10E3\u10DB\u10EF\u10DD\u10D1\u10D4\u10E1\u10D4\u10D1\u10D8\u10E1\u10D7\u10D5\u10D8\u10E1 \u10E6\u10D8\u10E0\u10D4\u10D1\u10E3\u10DA\u10D8\u10D0.");
|
|
115
|
+
injectString("el-GR", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "\u0391\u03C5\u03C4\u03AE \u03B7 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03B2\u03C1\u03AF\u03C3\u03BA\u03B5\u03C4\u03B1\u03B9 \u03B1\u03BA\u03CC\u03BC\u03B1 \u03C3\u03B5 \u03B4\u03BF\u03BA\u03B9\u03BC\u03AE \u03BA\u03B1\u03B9 \u03B4\u03B5\u03BD \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C0\u03BB\u03AE\u03C1\u03C9\u03C2. \u03A4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03AC \u03C3\u03B1\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD\u03C4\u03B9\u03BC\u03B1 \u03B3\u03B9\u03B1 \u03BC\u03B5\u03BB\u03BB\u03BF\u03BD\u03C4\u03B9\u03BA\u03AD\u03C2 \u03B2\u03B5\u03BB\u03C4\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2.");
|
|
116
|
+
injectString("et-EE", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "See funktsioon on veel testfaasis ja pole t\xE4ielikult toetatud. Teie tagasiside on tulevaste t\xE4iustuste jaoks v\xE4\xE4rtuslik.");
|
|
117
|
+
injectString("bg-BG", "This feature is still in testing, and is not fully supported yet. Your feedback is valuable to help guide future enhancements.", "\u0422\u0430\u0437\u0438 \u0444\u0443\u043D\u043A\u0446\u0438\u044F \u0432\u0441\u0435 \u043E\u0449\u0435 \u0435 \u0432 \u043F\u0440\u043E\u0446\u0435\u0441 \u043D\u0430 \u0442\u0435\u0441\u0442\u0432\u0430\u043D\u0435 \u0438 \u043D\u0435 \u0435 \u043D\u0430\u043F\u044A\u043B\u043D\u043E \u043F\u043E\u0434\u0434\u044A\u0440\u0436\u0430\u043D\u0430. \u0412\u0430\u0448\u0430\u0442\u0430 \u043E\u0431\u0440\u0430\u0442\u043D\u0430 \u0432\u0440\u044A\u0437\u043A\u0430 \u0435 \u0446\u0435\u043D\u043D\u0430 \u0437\u0430 \u0431\u044A\u0434\u0435\u0449\u043E\u0442\u043E \u0439 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435.");
|
|
100
118
|
injectString("cs", "Beta", "Beta");
|
|
101
119
|
injectString("da-DK", "Beta", "Beta");
|
|
102
120
|
injectString("de", "Beta", "Beta");
|
|
@@ -124,6 +142,12 @@ injectString("zh-Hans", "Beta", "\u6D4B\u8BD5\u7248");
|
|
|
124
142
|
injectString("zh-TW", "Beta", "\u6E2C\u8A66\u7248");
|
|
125
143
|
injectString("ro-RO", "Beta", "Beta");
|
|
126
144
|
injectString("ar", "Beta", "\u062A\u062C\u0631\u064A\u0628\u064A");
|
|
145
|
+
injectString("lt-LT", "Beta", "Beta");
|
|
146
|
+
injectString("lv-LV", "Beta", "Beta");
|
|
147
|
+
injectString("ka-GE", "Beta", "\u10D1\u10D4\u10E2\u10D0");
|
|
148
|
+
injectString("el-GR", "Beta", "\u0392\u03AE\u03C4\u03B1");
|
|
149
|
+
injectString("et-EE", "Beta", "Beeta");
|
|
150
|
+
injectString("bg-BG", "Beta", "\u0411\u0435\u0442\u0430");
|
|
127
151
|
const BetaPill = props => {
|
|
128
152
|
const {
|
|
129
153
|
className,
|
|
@@ -34,7 +34,13 @@ injectString("tr", "Remove page from bookmarks", "Sayfay\u0131 yer imlerinden ka
|
|
|
34
34
|
injectString("zh-Hans", "Remove page from bookmarks", "\u5220\u9664\u6B64\u9875\u9762\u7684\u4E66\u7B7E");
|
|
35
35
|
injectString("zh-TW", "Remove page from bookmarks", "\u5F9E\u66F8\u7C64\u79FB\u9664\u9801\u9762");
|
|
36
36
|
injectString("ro-RO", "Remove page from bookmarks", "Elimina\u021Bi pagina din marcaje");
|
|
37
|
-
injectString("ar", "Remove page from bookmarks", "\u0625\u0632\u0627\u0644\u0629 \
|
|
37
|
+
injectString("ar", "Remove page from bookmarks", "\u0625\u0632\u0627\u0644\u0629 \u0635\u0641\u062D\u0629 \u0645\u0646 \u0627\u0644\u0625\u0634\u0627\u0631\u0627\u062A \u0627\u0644\u0645\u0631\u062C\u0639\u064A\u0629");
|
|
38
|
+
injectString("lt-LT", "Remove page from bookmarks", "Pa\u0161alinti puslap\u012F i\u0161 \u017Eymi\u0173");
|
|
39
|
+
injectString("lv-LV", "Remove page from bookmarks", "No\u0146emt lapu no gr\u0101matz\u012Bm\u0113m");
|
|
40
|
+
injectString("ka-GE", "Remove page from bookmarks", "\u10D2\u10D5\u10D4\u10E0\u10D3\u10D8\u10E1 \u10E1\u10D0\u10DC\u10D8\u10E8\u10DC\u10D4\u10D4\u10D1\u10D8\u10D3\u10D0\u10DC \u10EC\u10D0\u10E8\u10DA\u10D0");
|
|
41
|
+
injectString("el-GR", "Remove page from bookmarks", "\u039A\u03B1\u03C4\u03AC\u03C1\u03B3\u03B7\u03C3\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2 \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03C3\u03B5\u03BB\u03B9\u03B4\u03BF\u03B4\u03B5\u03AF\u03BA\u03C4\u03B5\u03C2");
|
|
42
|
+
injectString("et-EE", "Remove page from bookmarks", "Eemalda leht j\xE4rjehoidjatest");
|
|
43
|
+
injectString("bg-BG", "Remove page from bookmarks", "\u041F\u0440\u0435\u043C\u0430\u0445\u0432\u0430\u043D\u0435 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u043E\u0442 \u043E\u0442\u043C\u0435\u0442\u043A\u0438\u0442\u0435");
|
|
38
44
|
injectString("cs", "Add page to bookmarks", "P\u0159idat str\xE1nku do z\xE1lo\u017Eek");
|
|
39
45
|
injectString("da-DK", "Add page to bookmarks", "F\xF8j side til bogm\xE6rker");
|
|
40
46
|
injectString("de", "Add page to bookmarks", "Seite zu Lesezeichen hinzuf\xFCgen");
|
|
@@ -61,7 +67,13 @@ injectString("tr", "Add page to bookmarks", "Sayfay\u0131 yer imlerine ekle");
|
|
|
61
67
|
injectString("zh-Hans", "Add page to bookmarks", "\u5C06\u9875\u9762\u6DFB\u52A0\u5230\u4E66\u7B7E");
|
|
62
68
|
injectString("zh-TW", "Add page to bookmarks", "\u65B0\u589E\u9801\u9762\u81F3\u66F8\u7C64");
|
|
63
69
|
injectString("ro-RO", "Add page to bookmarks", "Ad\u0103uga\u021Bi pagina la marcaje");
|
|
64
|
-
injectString("ar", "Add page to bookmarks", "\u0625\u0636\u0627\u0641\u0629 \
|
|
70
|
+
injectString("ar", "Add page to bookmarks", "\u0625\u0636\u0627\u0641\u0629 \u0635\u0641\u062D\u0629 \u0625\u0644\u0649 \u0627\u0644\u0625\u0634\u0627\u0631\u0627\u062A \u0627\u0644\u0645\u0631\u062C\u0639\u064A\u0629");
|
|
71
|
+
injectString("lt-LT", "Add page to bookmarks", "\u012Etraukti puslap\u012F \u012F \u017Eymes");
|
|
72
|
+
injectString("lv-LV", "Add page to bookmarks", "Pievienot lapu gr\u0101matz\u012Bm\u0113m");
|
|
73
|
+
injectString("ka-GE", "Add page to bookmarks", "\u10D2\u10D5\u10D4\u10E0\u10D3\u10D8\u10E1 \u10E1\u10D0\u10DC\u10D8\u10E8\u10DC\u10D4\u10D4\u10D1\u10E8\u10D8 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0");
|
|
74
|
+
injectString("el-GR", "Add page to bookmarks", "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2 \u03C3\u03C4\u03BF\u03C5\u03C2 \u03C3\u03B5\u03BB\u03B9\u03B4\u03BF\u03B4\u03B5\u03AF\u03BA\u03C4\u03B5\u03C2");
|
|
75
|
+
injectString("et-EE", "Add page to bookmarks", "Lisa leht j\xE4rjehoidjatesse");
|
|
76
|
+
injectString("bg-BG", "Add page to bookmarks", "\u0414\u043E\u0431\u0430\u0432\u044F\u043D\u0435 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u043A\u044A\u043C \u043E\u0442\u043C\u0435\u0442\u043A\u0438\u0442\u0435");
|
|
65
77
|
const classNames_1 = require("../commonHelpers/classNames/classNames");
|
|
66
78
|
const textIconButton_1 = require("../textIconButton/textIconButton");
|
|
67
79
|
const svgIconSize_1 = require("../svgIcon/svgIconSize");
|