@geotab/zenith 3.1.1-beta.0 → 3.1.1-beta.2
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/dist/advancedGroupsFilter/advancedGroupsFilter.d.ts +1 -1
- package/dist/advancedGroupsFilter/advancedGroupsFilterForm.js +2 -2
- package/dist/advancedGroupsFilter/advancedGroupsFilterFormHelper.d.ts +1 -1
- package/dist/advancedGroupsFilter/advancedGroupsFilterFormHelper.js +2 -2
- package/dist/advancedGroupsFilter/advancedGroupsFilterFormSection.d.ts +1 -1
- package/dist/advancedGroupsFilter/advancedGroupsFilterFormSection.js +2 -2
- package/dist/advancedGroupsFilter/advancedGroupsFilterHelper.d.ts +2 -2
- package/dist/advancedGroupsFilter/advancedGroupsFilterHelper.js +1 -1
- package/dist/banner/banner.d.ts +2 -1
- package/dist/banner/banner.js +5 -3
- package/dist/banner/bannerMultipLine.d.ts +2 -1
- package/dist/banner/bannerMultipLine.js +2 -2
- package/dist/banner/bannerSingleLine.d.ts +2 -1
- package/dist/banner/bannerSingleLine.js +2 -2
- package/dist/button/button.d.ts +5 -3
- package/dist/button/button.js +4 -3
- package/dist/card/card.d.ts +2 -2
- package/dist/card/card.js +3 -1
- package/dist/card/components/cardButton/cardButton.d.ts +4 -3
- package/dist/card/components/cardButton/cardButton.js +2 -2
- package/dist/checkboxListWithAction/checkboxListWithAction.d.ts +1 -1
- package/dist/comboboxSelected/comboboxSelected.js +1 -1
- package/dist/commonHelpers/getAriaAttributes.d.ts +1 -0
- package/dist/commonHelpers/getAriaAttributes.js +16 -0
- package/dist/commonHelpers/hooks/useFormField.d.ts +8 -0
- package/dist/commonHelpers/hooks/useFormField.js +19 -0
- package/dist/commonHelpers/hooks/useFormFieldValues/getRuleValue.d.ts +2 -0
- package/dist/commonHelpers/hooks/useFormFieldValues/getRuleValue.js +13 -0
- package/dist/commonHelpers/hooks/useFormFieldValues/useFormFieldValues.d.ts +13 -0
- package/dist/commonHelpers/hooks/useFormFieldValues/useFormFieldValues.js +52 -0
- package/dist/commonHelpers/isFormItem.d.ts +2 -0
- package/dist/commonHelpers/isFormItem.js +5 -0
- package/dist/commonHelpers/loading.d.ts +6 -0
- package/dist/commonHelpers/loading.js +5 -0
- package/dist/commonHelpers/types/exclusive.d.ts +3 -0
- package/dist/commonHelpers/types/without.d.ts +3 -0
- package/dist/commonHelpers/zenComponent.d.ts +17 -0
- package/dist/dateInput/dateInput.d.ts +8 -22
- package/dist/dateInput/dateInput.js +20 -113
- package/dist/dateInputInner/dateInputInnerControlBlock.js +4 -1
- package/dist/dateInputRaw/dateInputRaw.d.ts +9 -0
- package/dist/dateInputRaw/dateInputRaw.js +134 -0
- package/dist/dateInputRaw/types.d.ts +32 -0
- package/dist/{dateInput → dateInputRaw/utils}/getLabel.js +1 -1
- package/dist/dateRange/dateRange.d.ts +10 -41
- package/dist/dateRange/dateRange.js +19 -259
- package/dist/dateRange/dateRangeUtils.d.ts +1 -38
- package/dist/dateRange/dateRangeUtils.js +15 -293
- package/dist/dateRangeRaw/dateRangeRaw.d.ts +45 -0
- package/dist/dateRangeRaw/dateRangeRaw.js +276 -0
- package/dist/dateRangeRaw/types.d.ts +48 -0
- package/dist/dateRangeRaw/types.js +2 -0
- package/dist/{dateRange → dateRangeRaw}/utils/areMapsEqual.d.ts +1 -1
- package/dist/dateRangeRaw/utils/dateRangeUtils.d.ts +38 -0
- package/dist/dateRangeRaw/utils/dateRangeUtils.js +295 -0
- package/dist/dateRangeRaw/utils/parseLabel.d.ts +2 -0
- package/dist/dateRangeRaw/utils/parseLabel.js +15 -0
- package/dist/divider/divider.d.ts +7 -0
- package/dist/divider/divider.js +7 -0
- package/dist/dropdown/dropdown.d.ts +21 -108
- package/dist/dropdown/dropdown.js +27 -494
- package/dist/dropdown/dropdownPopup.d.ts +4 -34
- package/dist/dropdown/dropdownPopup.js +2 -32
- package/dist/dropdown/dropdownTrigger.d.ts +2 -25
- package/dist/dropdown/dropdownTrigger.js +3 -30
- package/dist/{dropdown → dropdownRaw}/dropdownHelper.d.ts +15 -14
- package/dist/{dropdown → dropdownRaw}/dropdownHelper.js +1 -1
- package/dist/dropdownRaw/dropdownPopup.d.ts +34 -0
- package/dist/dropdownRaw/dropdownPopup.js +35 -0
- package/dist/dropdownRaw/dropdownRaw.d.ts +6 -0
- package/dist/dropdownRaw/dropdownRaw.js +541 -0
- package/{esm/dropdown → dist/dropdownRaw}/dropdownSearchableTrigger.d.ts +3 -1
- package/dist/{dropdown → dropdownRaw}/dropdownSearchableTrigger.js +5 -2
- package/dist/dropdownRaw/dropdownTestData.d.ts +65 -0
- package/dist/dropdownRaw/dropdownTestData.js +1093 -0
- package/dist/dropdownRaw/dropdownTrigger.d.ts +27 -0
- package/dist/dropdownRaw/dropdownTrigger.js +31 -0
- package/{esm/dropdown → dist/dropdownRaw}/stateReducer/stateAction.d.ts +4 -4
- package/dist/dropdownRaw/stateReducer/stateAction.js +2 -0
- package/dist/{dropdown → dropdownRaw}/stateReducer/stateReducer.d.ts +5 -5
- package/dist/{dropdown → dropdownRaw}/stateReducer/stateReducer.js +2 -2
- package/dist/{dropdown → dropdownRaw}/stateReducer/stateReducerHelper.d.ts +2 -2
- package/dist/dropdownRaw/types.d.ts +133 -0
- package/dist/dropdownRaw/types.js +2 -0
- package/dist/dropdownRaw/utils/getSelectedValues.d.ts +2 -0
- package/dist/dropdownRaw/utils/getSelectedValues.js +5 -0
- package/dist/filterButton/filterButton.d.ts +3 -1
- package/dist/filterButton/filterButton.js +2 -2
- package/dist/filters/components/filtersDropdown.d.ts +4 -2
- package/dist/filters/components/filtersGroups.d.ts +1 -1
- package/dist/filters/components/filtersItem.d.ts +1 -1
- package/dist/filters/components/filtersSidePanelDropdown.js +2 -2
- package/dist/filters/components/filtersSidePanelRange.js +1 -1
- package/dist/filters/filtersHelper.js +3 -3
- package/dist/filtersBar/components/filtersBarDropdown/filtersBarDropdown.js +2 -2
- package/dist/filtersBar/components/filtersBarGroupsFilter/filtersBarGroupsFilter.d.ts +1 -1
- package/dist/filtersBar/components/filtersBarRange/filtersBarRange.js +1 -1
- package/dist/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelDropdownWithCheckbox/filtersBarSidePanelDropdownWithCheckbox.js +1 -1
- package/dist/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRange/filtersBarSidePanelRange.js +2 -2
- package/dist/formField/components/formFieldBanner.d.ts +6 -0
- package/dist/formField/components/formFieldBanner.js +9 -0
- package/dist/formField/components/formFieldSkeleton.d.ts +6 -0
- package/dist/formField/components/formFieldSkeleton.js +5 -0
- package/dist/formField/components/formFieldWithLabel.d.ts +10 -0
- package/dist/formField/components/formFieldWithLabel.js +12 -0
- package/dist/formField/components/formFieldWithoutLabel.d.ts +8 -0
- package/dist/formField/components/formFieldWithoutLabel.js +12 -0
- package/dist/formField/formField.d.ts +34 -6
- package/dist/formField/formField.js +60 -7
- package/dist/formField/hooks/useAssistive.d.ts +12 -0
- package/dist/formField/hooks/useAssistive.js +18 -0
- package/dist/formField/hooks/useBanner.d.ts +8 -0
- package/dist/formField/hooks/useBanner.js +27 -0
- package/dist/formField/hooks/useDisabled.d.ts +15 -0
- package/dist/formField/hooks/useDisabled.js +22 -0
- package/dist/formField/hooks/useError.d.ts +18 -0
- package/dist/formField/hooks/useError.js +49 -0
- package/dist/formField/hooks/useLoading.d.ts +2 -0
- package/dist/formField/hooks/useLoading.js +19 -0
- package/dist/formField/hooks/useReadonly.d.ts +1 -0
- package/dist/formField/hooks/useReadonly.js +10 -0
- package/dist/formField/hooks/useSkeleton.d.ts +3 -0
- package/dist/formField/hooks/useSkeleton.js +13 -0
- package/dist/formField/hooks/useTrailing.d.ts +12 -0
- package/dist/formField/hooks/useTrailing.js +18 -0
- package/dist/formField/hooks/useWidth.d.ts +8 -0
- package/dist/formField/hooks/useWidth.js +11 -0
- package/dist/formField/utils/getFormFieldBanner.d.ts +2 -0
- package/dist/formField/utils/getFormFieldBanner.js +20 -0
- package/dist/formField/utils/rangeRawLabelCheck.d.ts +1 -0
- package/dist/formField/utils/rangeRawLabelCheck.js +14 -0
- package/dist/formGroup/components/customRow/customRow.d.ts +7 -0
- package/dist/formGroup/components/customRow/customRow.js +7 -0
- package/dist/formGroup/components/formGroupList.d.ts +5 -0
- package/dist/formGroup/components/formGroupList.js +6 -0
- package/dist/formGroup/components/formGroupToggle.d.ts +15 -0
- package/dist/formGroup/components/formGroupToggle.js +6 -0
- package/dist/formGroup/components/list.d.ts +6 -0
- package/dist/formGroup/components/list.js +19 -0
- package/dist/formGroup/components/listToggle/listToggle.d.ts +1 -0
- package/dist/formGroup/components/listToggle/listToggle.js +29 -0
- package/dist/formGroup/components/oneRow.d.ts +6 -0
- package/dist/formGroup/components/oneRow.js +15 -0
- package/dist/formGroup/components/reviewListToggle/reviewListToggle.d.ts +8 -0
- package/dist/formGroup/components/reviewListToggle/reviewListToggle.js +16 -0
- package/dist/formGroup/components/reviewTextControl.d.ts +9 -0
- package/dist/formGroup/components/reviewTextControl.js +7 -0
- package/dist/formGroup/components/row.d.ts +5 -0
- package/dist/formGroup/components/row.js +38 -0
- package/dist/formGroup/components/twoRows.d.ts +6 -0
- package/dist/formGroup/components/twoRows.js +15 -0
- package/dist/formGroup/formGroup.d.ts +13 -0
- package/dist/formGroup/formGroup.js +72 -0
- package/dist/formGroup/hooks/listHooks/useControlClasses.d.ts +2 -0
- package/dist/formGroup/hooks/listHooks/useControlClasses.js +54 -0
- package/dist/formGroup/hooks/listHooks/useControls.d.ts +2 -0
- package/dist/formGroup/hooks/listHooks/useControls.js +17 -0
- package/dist/formGroup/hooks/listHooks/useElementsState.d.ts +3 -0
- package/dist/formGroup/hooks/listHooks/useElementsState.js +38 -0
- package/dist/formGroup/hooks/listHooks/useLabelClasses.d.ts +2 -0
- package/dist/formGroup/hooks/listHooks/useLabelClasses.js +38 -0
- package/dist/formGroup/hooks/listHooks/useStateToElements.d.ts +3 -0
- package/dist/formGroup/hooks/listHooks/useStateToElements.js +27 -0
- package/dist/formGroup/hooks/rowHooks/useControlClasses.d.ts +2 -0
- package/dist/formGroup/hooks/rowHooks/useControlClasses.js +31 -0
- package/dist/formGroup/hooks/rowHooks/useControls.d.ts +2 -0
- package/dist/formGroup/hooks/rowHooks/useControls.js +15 -0
- package/dist/formGroup/hooks/rowHooks/useInitializeState.d.ts +3 -0
- package/dist/formGroup/hooks/rowHooks/useInitializeState.js +15 -0
- package/dist/formGroup/hooks/rowHooks/useLabelClasses.d.ts +2 -0
- package/dist/formGroup/hooks/rowHooks/useLabelClasses.js +28 -0
- package/dist/formGroup/hooks/useCustomRow.d.ts +4 -0
- package/dist/formGroup/hooks/useCustomRow.js +92 -0
- package/dist/formGroup/hooks/useElements.d.ts +4 -0
- package/dist/formGroup/hooks/useElements.js +24 -0
- package/dist/formGroup/hooks/useLabelAlign.d.ts +2 -0
- package/dist/formGroup/hooks/useLabelAlign.js +14 -0
- package/dist/formGroup/hooks/useMode.d.ts +2 -0
- package/dist/formGroup/hooks/useMode.js +12 -0
- package/dist/formGroup/hooks/useRowElements.d.ts +14 -0
- package/dist/formGroup/hooks/useRowElements.js +24 -0
- package/dist/formGroup/hooks/useSectionType.d.ts +2 -0
- package/dist/formGroup/hooks/useSectionType.js +12 -0
- package/dist/formGroup/hooks/useToggle.d.ts +1 -0
- package/dist/formGroup/hooks/useToggle.js +25 -0
- package/dist/formGroup/hooks/useToggleList.d.ts +9 -0
- package/dist/formGroup/hooks/useToggleList.js +24 -0
- package/dist/formGroup/types.d.ts +53 -0
- package/dist/formGroup/types.js +2 -0
- package/dist/formGroup/utils/applyControlClasses.d.ts +2 -0
- package/dist/formGroup/utils/applyControlClasses.js +51 -0
- package/dist/formGroup/utils/applyCustomControlClasses.d.ts +12 -0
- package/dist/formGroup/utils/applyCustomControlClasses.js +31 -0
- package/dist/formGroup/utils/applyCustomLabelClasses.d.ts +12 -0
- package/dist/formGroup/utils/applyCustomLabelClasses.js +20 -0
- package/dist/formGroup/utils/formGroupProvider.d.ts +9 -0
- package/dist/formGroup/utils/formGroupProvider.js +8 -0
- package/dist/formGroup/utils/getControlClasses/getControlClasses.d.ts +6 -0
- package/dist/formGroup/utils/getControlClasses/getControlClasses.js +79 -0
- package/dist/formGroup/utils/getControlClasses/getModalSectionClasses.d.ts +2 -0
- package/dist/formGroup/utils/getControlClasses/getModalSectionClasses.js +8 -0
- package/dist/formGroup/utils/getControlClasses/getOneLabelOneControlClasses.d.ts +6 -0
- package/dist/formGroup/utils/getControlClasses/getOneLabelOneControlClasses.js +25 -0
- package/dist/formGroup/utils/getControlClasses/getOneLabelTwoControlsClasses.d.ts +7 -0
- package/dist/formGroup/utils/getControlClasses/getOneLabelTwoControlsClasses.js +53 -0
- package/dist/formGroup/utils/getControlClasses/getTwoLabelsOneControlClasses.d.ts +6 -0
- package/dist/formGroup/utils/getControlClasses/getTwoLabelsOneControlClasses.js +25 -0
- package/dist/formGroup/utils/getControlClasses/getTwoLabelsTwoControlsClasses.d.ts +6 -0
- package/dist/formGroup/utils/getControlClasses/getTwoLabelsTwoControlsClasses.js +28 -0
- package/dist/formGroup/utils/getControlClasses/getZeroLabelOneControlClasses.d.ts +3 -0
- package/dist/formGroup/utils/getControlClasses/getZeroLabelOneControlClasses.js +16 -0
- package/dist/formGroup/utils/getControlClasses/types.d.ts +4 -0
- package/dist/formGroup/utils/getControlClasses/types.js +2 -0
- package/dist/formGroup/utils/getControlListClasses/getControlListClasses.d.ts +4 -0
- package/dist/formGroup/utils/getControlListClasses/getControlListClasses.js +46 -0
- package/dist/formGroup/utils/getControlListClasses/getOneLabelOneControlClasses.d.ts +7 -0
- package/dist/formGroup/utils/getControlListClasses/getOneLabelOneControlClasses.js +64 -0
- package/dist/formGroup/utils/getControlListClasses/getOneLabelTwoControlsClasses.d.ts +7 -0
- package/dist/formGroup/utils/getControlListClasses/getOneLabelTwoControlsClasses.js +44 -0
- package/dist/formGroup/utils/getControlListClasses/getTwoLabelsTwoControlsClasses.d.ts +6 -0
- package/dist/formGroup/utils/getControlListClasses/getTwoLabelsTwoControlsClasses.js +39 -0
- package/dist/formGroup/utils/getControlListClasses/getZeroLabelOneControlClasses.d.ts +5 -0
- package/dist/formGroup/utils/getControlListClasses/getZeroLabelOneControlClasses.js +18 -0
- package/dist/formGroup/utils/getControlListClasses/getZeroLabelsTwoControls.d.ts +2 -0
- package/dist/formGroup/utils/getControlListClasses/getZeroLabelsTwoControls.js +17 -0
- package/dist/formGroup/utils/getControlNode.d.ts +1 -0
- package/dist/formGroup/utils/getControlNode.js +6 -0
- package/dist/formGroup/utils/getControls.d.ts +5 -0
- package/dist/formGroup/utils/getControls.js +26 -0
- package/dist/formGroup/utils/getElementsControl.d.ts +5 -0
- package/dist/formGroup/utils/getElementsControl.js +37 -0
- package/dist/formGroup/utils/getLabelClasses/getLabelClasses.d.ts +6 -0
- package/dist/formGroup/utils/getLabelClasses/getLabelClasses.js +65 -0
- package/dist/formGroup/utils/getLabelClasses/getModalSectionClasses.d.ts +2 -0
- package/dist/formGroup/utils/getLabelClasses/getModalSectionClasses.js +8 -0
- package/dist/formGroup/utils/getLabelClasses/getOneLabelOneControlClasses.d.ts +4 -0
- package/dist/formGroup/utils/getLabelClasses/getOneLabelOneControlClasses.js +24 -0
- package/dist/formGroup/utils/getLabelClasses/getOneLabelTwoControlsClasses.d.ts +4 -0
- package/dist/formGroup/utils/getLabelClasses/getOneLabelTwoControlsClasses.js +50 -0
- package/dist/formGroup/utils/getLabelClasses/getReviewOrInlineEditClasses.d.ts +2 -0
- package/dist/formGroup/utils/getLabelClasses/getReviewOrInlineEditClasses.js +31 -0
- package/dist/formGroup/utils/getLabelClasses/getTwoLabelsOneControlClasses.d.ts +4 -0
- package/dist/formGroup/utils/getLabelClasses/getTwoLabelsOneControlClasses.js +28 -0
- package/dist/formGroup/utils/getLabelClasses/getTwoLabelsTwoControlsClasses.d.ts +4 -0
- package/dist/formGroup/utils/getLabelClasses/getTwoLabelsTwoControlsClasses.js +28 -0
- package/dist/formGroup/utils/getLabelClasses/getZeroLabelClasses.d.ts +2 -0
- package/dist/formGroup/utils/getLabelClasses/getZeroLabelClasses.js +8 -0
- package/dist/formGroup/utils/getLabelClasses/types.d.ts +4 -0
- package/dist/formGroup/utils/getLabelClasses/types.js +2 -0
- package/dist/formGroup/utils/getLabelListClasses/getLabelListClasses.d.ts +7 -0
- package/dist/formGroup/utils/getLabelListClasses/getLabelListClasses.js +34 -0
- package/dist/formGroup/utils/getLabelListClasses/getOneLabelOneControlClasses.d.ts +6 -0
- package/dist/formGroup/utils/getLabelListClasses/getOneLabelOneControlClasses.js +48 -0
- package/dist/formGroup/utils/getLabelListClasses/getOneLabelTwoControlsClasses.d.ts +7 -0
- package/dist/formGroup/utils/getLabelListClasses/getOneLabelTwoControlsClasses.js +29 -0
- package/dist/formGroup/utils/getLabelListClasses/getOneLabelZeroControlsClasses.d.ts +4 -0
- package/dist/formGroup/utils/getLabelListClasses/getOneLabelZeroControlsClasses.js +17 -0
- package/dist/formGroup/utils/getLabelListClasses/getTwoLabelsTwoControlsClasses.d.ts +5 -0
- package/dist/formGroup/utils/getLabelListClasses/getTwoLabelsTwoControlsClasses.js +35 -0
- package/dist/formGroup/utils/getLabelNode.d.ts +1 -0
- package/dist/formGroup/utils/getLabelNode.js +6 -0
- package/dist/formGroup/utils/getListClasses.d.ts +3 -0
- package/dist/formGroup/utils/getListClasses.js +31 -0
- package/dist/formGroup/utils/getToggleClasses.d.ts +3 -0
- package/dist/formGroup/utils/getToggleClasses.js +17 -0
- package/dist/formGroup/utils/getTotalState.d.ts +2 -0
- package/dist/formGroup/utils/getTotalState.js +23 -0
- package/dist/formGroup/utils/hasCustomWidthControl.d.ts +2 -0
- package/dist/formGroup/utils/hasCustomWidthControl.js +11 -0
- package/dist/formGroup/utils/hasWidthProp.d.ts +2 -0
- package/dist/formGroup/utils/hasWidthProp.js +14 -0
- package/dist/formGroup/utils/initializeState.d.ts +12 -0
- package/dist/formGroup/utils/initializeState.js +43 -0
- package/dist/formGroup/utils/isFormLabel.d.ts +3 -0
- package/dist/formGroup/utils/isFormLabel.js +6 -0
- package/dist/formGroup/utils/isTopAlign.d.ts +3 -0
- package/dist/formGroup/utils/isTopAlign.js +9 -0
- package/dist/formGroup/utils/isTwoRowsStructure.d.ts +3 -0
- package/dist/formGroup/utils/isTwoRowsStructure.js +29 -0
- package/dist/formGroupItem/formGroupItem.d.ts +8 -0
- package/dist/formGroupItem/formGroupItem.js +13 -0
- package/dist/formLayout/components/column/column.d.ts +7 -0
- package/dist/formLayout/components/column/column.js +7 -0
- package/dist/formLayout/components/columnTitle/formLayoutColumnTitle.d.ts +9 -0
- package/dist/formLayout/components/columnTitle/formLayoutColumnTitle.js +7 -0
- package/dist/formLayout/components/customColumns.d.ts +9 -0
- package/dist/formLayout/components/customColumns.js +37 -0
- package/dist/formLayout/components/formLayoutSecondary.d.ts +7 -0
- package/dist/formLayout/components/formLayoutSecondary.js +7 -0
- package/dist/formLayout/components/formLayoutTitle.d.ts +7 -0
- package/dist/formLayout/components/formLayoutTitle.js +7 -0
- package/dist/formLayout/components/getLayoutColumns.d.ts +1 -0
- package/dist/formLayout/components/getLayoutColumns.js +39 -0
- package/dist/formLayout/components/layoutColumn/layoutColum.d.ts +6 -0
- package/dist/formLayout/components/layoutColumn/layoutColum.js +6 -0
- package/dist/formLayout/components/oneColumnGrid.d.ts +2 -0
- package/dist/formLayout/components/oneColumnGrid.js +28 -0
- package/dist/formLayout/components/twoColumnsGrid.d.ts +2 -0
- package/dist/formLayout/components/twoColumnsGrid.js +28 -0
- package/dist/formLayout/components/useCustomColumns.d.ts +11 -0
- package/dist/formLayout/components/useCustomColumns.js +60 -0
- package/dist/formLayout/formLayout.d.ts +7 -0
- package/dist/formLayout/formLayout.js +43 -0
- package/dist/formLayout/hooks/getStepperLayout.d.ts +2 -0
- package/dist/formLayout/hooks/getStepperLayout.js +23 -0
- package/dist/formLayout/hooks/useColumns.d.ts +1 -0
- package/dist/formLayout/hooks/useColumns.js +10 -0
- package/dist/formLayout/hooks/useComponents.d.ts +8 -0
- package/dist/formLayout/hooks/useComponents.js +43 -0
- package/dist/formLayout/hooks/useError.d.ts +6 -0
- package/dist/formLayout/hooks/useError.js +24 -0
- package/dist/formLayout/hooks/useFormButtons.d.ts +11 -0
- package/dist/formLayout/hooks/useFormButtons.js +39 -0
- package/dist/formLayout/hooks/useLayoutColumns.d.ts +1 -0
- package/dist/formLayout/hooks/useLayoutColumns.js +10 -0
- package/dist/formLayout/hooks/useLoading.d.ts +5 -0
- package/dist/formLayout/hooks/useLoading.js +16 -0
- package/dist/formLayout/types.d.ts +32 -0
- package/dist/formLayout/types.js +2 -0
- package/dist/formLayout/utils/applyGridPropsOneColumn.d.ts +1 -0
- package/dist/formLayout/utils/applyGridPropsOneColumn.js +18 -0
- package/dist/formLayout/utils/applyGridPropsStatic.d.ts +1 -0
- package/dist/formLayout/utils/applyGridPropsStatic.js +46 -0
- package/dist/formLayout/utils/applyGridPropsTwoColumns/applyFirstColumn.d.ts +2 -0
- package/dist/formLayout/utils/applyGridPropsTwoColumns/applyFirstColumn.js +18 -0
- package/dist/formLayout/utils/applyGridPropsTwoColumns/applyGridPropsTwoColumns.d.ts +2 -0
- package/dist/formLayout/utils/applyGridPropsTwoColumns/applyGridPropsTwoColumns.js +24 -0
- package/dist/formLayout/utils/applyGridPropsTwoColumns/applySecondColumn.d.ts +2 -0
- package/dist/formLayout/utils/applyGridPropsTwoColumns/applySecondColumn.js +20 -0
- package/dist/formLayout/utils/applyLayoutPosition/applyLayoutPosition.d.ts +1 -0
- package/dist/formLayout/utils/applyLayoutPosition/applyLayoutPosition.js +118 -0
- package/dist/formLayout/utils/attachHeadings.d.ts +1 -0
- package/dist/formLayout/utils/attachHeadings.js +31 -0
- package/dist/formLayout/utils/attachSeparators.d.ts +4 -0
- package/dist/formLayout/utils/attachSeparators.js +32 -0
- package/dist/formLayout/utils/attachStepper.d.ts +3 -0
- package/dist/formLayout/utils/attachStepper.js +23 -0
- package/dist/formLayout/utils/formLayoutProvider.d.ts +7 -0
- package/dist/formLayout/utils/formLayoutProvider.js +14 -0
- package/dist/formLayout/utils/getAllowedComponents.d.ts +6 -0
- package/dist/formLayout/utils/getAllowedComponents.js +22 -0
- package/dist/formLayout/utils/getChildrenWithCustomColumns.d.ts +2 -0
- package/dist/formLayout/utils/getChildrenWithCustomColumns.js +74 -0
- package/dist/formLayout/utils/getComponentsWithClasses.d.ts +3 -0
- package/dist/formLayout/utils/getComponentsWithClasses.js +27 -0
- package/dist/formLayout/utils/getFilteredComponents.d.ts +4 -0
- package/dist/formLayout/utils/getFilteredComponents.js +25 -0
- package/dist/formLayout/utils/getFormSection.d.ts +2 -0
- package/dist/formLayout/utils/getFormSection.js +25 -0
- package/dist/formLayout/utils/hasStepper.d.ts +2 -0
- package/dist/formLayout/utils/hasStepper.js +5 -0
- package/dist/formLayout/utils/isCustomFormSection.d.ts +3 -0
- package/dist/formLayout/utils/isCustomFormSection.js +6 -0
- package/dist/formLayout/utils/isStaticElement.d.ts +1 -0
- package/dist/formLayout/utils/isStaticElement.js +19 -0
- package/dist/formSection/components/actions.d.ts +5 -0
- package/dist/formSection/components/actions.js +5 -0
- package/dist/formSection/components/additional.d.ts +5 -0
- package/dist/formSection/components/additional.js +5 -0
- package/dist/formSection/components/additionalSection.d.ts +9 -0
- package/dist/formSection/components/additionalSection.js +32 -0
- package/dist/formSection/components/formSectionButton.d.ts +5 -0
- package/dist/formSection/components/formSectionButton.js +21 -0
- package/dist/formSection/components/formSectionCard.d.ts +4 -0
- package/dist/formSection/components/formSectionCard.js +53 -0
- package/dist/formSection/components/formSectionDefault.d.ts +3 -0
- package/dist/formSection/components/formSectionDefault.js +20 -0
- package/dist/formSection/components/formSectionDefaultTitle.d.ts +7 -0
- package/dist/formSection/components/formSectionDefaultTitle.js +7 -0
- package/dist/formSection/components/formSectionInner.d.ts +7 -0
- package/dist/formSection/components/formSectionInner.js +59 -0
- package/dist/formSection/components/formSectionModal.d.ts +3 -0
- package/dist/formSection/components/formSectionModal.js +9 -0
- package/dist/formSection/formSection.d.ts +12 -0
- package/dist/formSection/formSection.js +48 -0
- package/dist/formSection/hooks/useError.d.ts +7 -0
- package/dist/formSection/hooks/useError.js +32 -0
- package/dist/formSection/hooks/useLoading.d.ts +5 -0
- package/dist/formSection/hooks/useLoading.js +22 -0
- package/dist/formSection/types.d.ts +35 -0
- package/dist/formSection/types.js +4 -0
- package/dist/formSection/utils/formSectionProvider.d.ts +11 -0
- package/dist/formSection/utils/formSectionProvider.js +13 -0
- package/dist/formSection/utils/getClassName.d.ts +4 -0
- package/dist/formSection/utils/getClassName.js +12 -0
- package/dist/formSection/utils/isFormSection.d.ts +4 -0
- package/dist/formSection/utils/isFormSection.js +5 -0
- package/dist/formSection/utils/isModalSection.d.ts +2 -0
- package/dist/formSection/utils/isModalSection.js +8 -0
- package/dist/formStepper/formStepper.js +1 -1
- package/dist/formStepper/hooks/useFormStepper.d.ts +6 -0
- package/dist/formStepper/hooks/useFormStepper.js +24 -0
- package/dist/formStepperButtons/formStepperButtons.js +3 -1
- package/dist/gridLayout/gridLayout.js +2 -1
- package/dist/gridLayout/hooks/useGridClasses.d.ts +10 -1
- package/dist/gridLayout/hooks/useGridClasses.js +28 -9
- package/dist/gridLayout/utils/adaptGridState.d.ts +2 -2
- package/dist/gridLayout/utils/adaptGridState.js +7 -8
- package/dist/gridLayout/utils/adjustGridState.d.ts +2 -2
- package/dist/gridLayout/utils/adjustGridState.js +13 -14
- package/dist/gridLayout/utils/constants.d.ts +1 -0
- package/dist/gridLayout/utils/constants.js +2 -1
- package/dist/gridLayout/utils/convertClassesToState.d.ts +2 -0
- package/dist/gridLayout/utils/convertClassesToState.js +48 -0
- package/dist/gridLayout/utils/convertStateToClasses.d.ts +2 -1
- package/dist/gridLayout/utils/convertStateToClasses.js +3 -3
- package/dist/gridLayout/utils/fillGridState.d.ts +2 -2
- package/dist/gridLayout/utils/fillGridState.js +6 -7
- package/dist/gridLayout/utils/filterGridProps.d.ts +2 -0
- package/dist/gridLayout/utils/filterGridProps.js +19 -0
- package/dist/gridLayout/utils/getAllowedComponent.js +15 -1
- package/dist/gridLayout/utils/getGridPositionClasses.d.ts +1 -0
- package/dist/gridLayout/utils/getGridPositionClasses.js +12 -0
- package/dist/gridLayout/utils/getGridWidthClasses.d.ts +1 -0
- package/dist/gridLayout/utils/getGridWidthClasses.js +19 -0
- package/dist/gridLayout/utils/gridLayoutProvider.d.ts +9 -0
- package/dist/gridLayout/utils/gridLayoutProvider.js +16 -0
- package/dist/gridLayout/utils/hasGridClasses.d.ts +2 -0
- package/dist/gridLayout/utils/hasGridClasses.js +12 -0
- package/dist/gridLayout/utils/isGridItem.d.ts +1 -1
- package/dist/gridLayout/utils/isGridItem.js +3 -0
- package/dist/gridLayout/utils/removeSameTypeClasses.d.ts +1 -0
- package/dist/gridLayout/utils/removeSameTypeClasses.js +42 -0
- package/dist/gridLayout/utils/updateGridStateFromClassNames.d.ts +2 -2
- package/dist/gridLayout/utils/updateGridStateFromClassNames.js +13 -13
- package/dist/gridLayout/utils/updateGridStateFromProps.d.ts +2 -2
- package/dist/gridLayout/utils/updateGridStateFromProps.js +7 -8
- package/dist/gridLayout/utils/updateGridStateWithDefaultValues.js +4 -0
- package/dist/groupButton/groupButton.d.ts +8 -14
- package/dist/groupButton/groupButton.js +17 -36
- package/dist/groupButtonRaw/components/groupButtonOption.d.ts +11 -0
- package/dist/groupButtonRaw/components/groupButtonOption.js +12 -0
- package/dist/groupButtonRaw/groupButtonRaw.d.ts +7 -0
- package/dist/groupButtonRaw/groupButtonRaw.js +27 -0
- package/dist/groupButtonRaw/types.d.ts +26 -0
- package/dist/groupButtonRaw/types.js +2 -0
- package/dist/groupsFilter/groupsFilter.d.ts +7 -21
- package/dist/groupsFilter/groupsFilter.js +20 -327
- package/dist/groupsFilter/groupsFilterInterfaces.d.ts +16 -78
- package/dist/groupsFilter/groupsFilterInterfaces.js +3 -19
- package/{esm/groupsFilter → dist/groupsFilterRaw}/groupsFilterCommon.d.ts +1 -1
- package/{esm/groupsFilter → dist/groupsFilterRaw}/groupsFilterCounter.d.ts +1 -1
- package/dist/groupsFilterRaw/groupsFilterInterfaces.d.ts +91 -0
- package/dist/groupsFilterRaw/groupsFilterInterfaces.js +22 -0
- package/dist/groupsFilterRaw/groupsFilterRaw.d.ts +37 -0
- package/dist/groupsFilterRaw/groupsFilterRaw.js +356 -0
- package/dist/groupsFilterRaw/groupsFilterTestData.d.ts +37 -0
- package/dist/groupsFilterRaw/groupsFilterTestData.js +76 -0
- package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterTrigger.d.ts +3 -2
- package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterTrigger.js +2 -2
- package/dist/groupsFilterRaw/stateReducer/stateAction.js +2 -0
- package/dist/groupsFilterRaw/testData.d.ts +26 -0
- package/dist/groupsFilterRaw/testData.js +32995 -0
- package/dist/groupsFilterRaw/types.d.ts +37 -0
- package/dist/groupsFilterRaw/types.js +5 -0
- package/dist/groupsFilterRaw/uiStateReducer/uiStateAction.js +2 -0
- package/dist/index.css +6956 -6629
- package/dist/index.d.ts +77 -20
- package/dist/index.js +136 -22
- package/dist/inputAdornments/inputAdornments.d.ts +2 -1
- package/dist/inputAdornments/inputAdornments.js +2 -2
- package/dist/radioGroup/radioGroup.d.ts +8 -19
- package/dist/radioGroup/radioGroup.js +16 -73
- package/dist/radioGroupRaw/radioGroupRaw.d.ts +7 -0
- package/dist/radioGroupRaw/radioGroupRaw.js +91 -0
- package/dist/radioGroupRaw/types.d.ts +25 -0
- package/dist/radioGroupRaw/types.js +2 -0
- package/dist/range/range.d.ts +11 -27
- package/dist/range/range.js +19 -146
- package/{esm/range → dist/rangeRaw/components}/rangeField.d.ts +1 -1
- package/dist/{range → rangeRaw/components}/rangeField.js +3 -3
- package/dist/rangeRaw/rangeRaw.d.ts +10 -0
- package/dist/rangeRaw/rangeRaw.js +173 -0
- package/dist/rangeRaw/types.d.ts +35 -0
- package/dist/rangeRaw/types.js +2 -0
- package/dist/{range → rangeRaw/utils}/rangeHelper.d.ts +1 -1
- package/dist/searchInput/searchInput.d.ts +5 -4
- package/dist/searchInput/searchInput.js +5 -15
- package/dist/searchInputRaw/searchInputRaw.d.ts +3 -20
- package/dist/searchInputRaw/searchInputRaw.js +9 -2
- package/dist/searchInputRaw/types.d.ts +33 -0
- package/dist/searchInputRaw/types.js +2 -0
- package/dist/select/select.d.ts +9 -4
- package/dist/select/select.js +18 -2
- package/dist/selectField/selectField.d.ts +4 -4
- package/dist/selectRaw/selectRaw.d.ts +3 -16
- package/dist/selectRaw/selectRaw.js +18 -11
- package/dist/selectRaw/types.d.ts +30 -0
- package/dist/selectRaw/types.js +2 -0
- package/dist/stepper/stepper.d.ts +5 -4
- package/dist/stepperRaw/stepperRaw.d.ts +3 -17
- package/dist/stepperRaw/stepperRaw.js +17 -9
- package/dist/stepperRaw/types.d.ts +26 -0
- package/dist/stepperRaw/types.js +2 -0
- package/dist/textInput/textInput.d.ts +5 -4
- package/dist/textInput/textInput.js +5 -15
- package/dist/textInputRaw/textInputRaw.d.ts +3 -23
- package/dist/textInputRaw/textInputRaw.js +9 -1
- package/dist/textInputRaw/types.d.ts +36 -0
- package/dist/textInputRaw/types.js +2 -0
- package/dist/textarea/textarea.d.ts +5 -4
- package/dist/textarea/textarea.js +5 -3
- package/dist/textareaRaw/textareaRaw.d.ts +3 -22
- package/dist/textareaRaw/textareaRaw.js +10 -3
- package/dist/textareaRaw/types.d.ts +31 -0
- package/dist/textareaRaw/types.js +2 -0
- package/dist/timePicker/timePicker.d.ts +9 -13
- package/dist/timePicker/timePicker.js +20 -60
- package/dist/timePickerRaw/timePickerRaw.d.ts +10 -0
- package/dist/timePickerRaw/timePickerRaw.js +79 -0
- package/dist/timePickerRaw/types.d.ts +26 -0
- package/dist/timePickerRaw/types.js +2 -0
- package/dist/toggleButton/toggleButton.d.ts +8 -10
- package/dist/toggleButton/toggleButton.js +17 -11
- package/dist/toggleButtonRaw/toggleButtonRaw.d.ts +3 -0
- package/dist/toggleButtonRaw/toggleButtonRaw.js +54 -0
- package/dist/toggleButtonRaw/types.d.ts +26 -0
- package/dist/toggleButtonRaw/types.js +2 -0
- package/dist/tooltipInfo/tooltipInfo.d.ts +7 -0
- package/dist/tooltipInfo/tooltipInfo.js +15 -0
- package/dist/utils/formatDate.d.ts +1 -1
- package/dist/utils/localization/translations/cs-json.d.ts +3 -0
- package/dist/utils/localization/translations/cs-json.js +4 -1
- package/dist/utils/localization/translations/de-json.d.ts +3 -0
- package/dist/utils/localization/translations/de-json.js +4 -1
- package/dist/utils/localization/translations/en-json.d.ts +12 -0
- package/dist/utils/localization/translations/en-json.js +13 -1
- package/dist/utils/localization/translations/es-json.d.ts +3 -0
- package/dist/utils/localization/translations/es-json.js +4 -1
- package/dist/utils/localization/translations/fr-FR-json.d.ts +3 -0
- package/dist/utils/localization/translations/fr-FR-json.js +4 -1
- package/dist/utils/localization/translations/fr-json.d.ts +3 -0
- package/dist/utils/localization/translations/fr-json.js +4 -1
- package/dist/utils/localization/translations/id-json.d.ts +3 -0
- package/dist/utils/localization/translations/id-json.js +4 -1
- package/dist/utils/localization/translations/it-json.d.ts +3 -0
- package/dist/utils/localization/translations/it-json.js +4 -1
- package/dist/utils/localization/translations/ja-json.d.ts +3 -0
- package/dist/utils/localization/translations/ja-json.js +4 -1
- package/dist/utils/localization/translations/ko-KR-json.d.ts +3 -0
- package/dist/utils/localization/translations/ko-KR-json.js +4 -1
- package/dist/utils/localization/translations/ms-json.d.ts +3 -0
- package/dist/utils/localization/translations/ms-json.js +4 -1
- package/dist/utils/localization/translations/nl-json.d.ts +3 -0
- package/dist/utils/localization/translations/nl-json.js +4 -1
- package/dist/utils/localization/translations/pl-json.d.ts +3 -0
- package/dist/utils/localization/translations/pl-json.js +4 -1
- package/dist/utils/localization/translations/pt-BR-json.d.ts +3 -0
- package/dist/utils/localization/translations/pt-BR-json.js +4 -1
- package/dist/utils/localization/translations/sv-json.d.ts +3 -0
- package/dist/utils/localization/translations/sv-json.js +4 -1
- package/dist/utils/localization/translations/th-json.d.ts +3 -0
- package/dist/utils/localization/translations/th-json.js +4 -1
- package/dist/utils/localization/translations/tr-json.d.ts +3 -0
- package/dist/utils/localization/translations/tr-json.js +4 -1
- package/dist/utils/localization/translations/zh-Hans-json.d.ts +3 -0
- package/dist/utils/localization/translations/zh-Hans-json.js +4 -1
- package/dist/utils/localization/translations/zh-TW-json.d.ts +3 -0
- package/dist/utils/localization/translations/zh-TW-json.js +4 -1
- package/esm/advancedGroupsFilter/advancedGroupsFilter.d.ts +1 -1
- package/esm/advancedGroupsFilter/advancedGroupsFilterForm.js +2 -2
- package/esm/advancedGroupsFilter/advancedGroupsFilterFormHelper.d.ts +1 -1
- package/esm/advancedGroupsFilter/advancedGroupsFilterFormHelper.js +2 -2
- package/esm/advancedGroupsFilter/advancedGroupsFilterFormSection.d.ts +1 -1
- package/esm/advancedGroupsFilter/advancedGroupsFilterFormSection.js +2 -2
- package/esm/advancedGroupsFilter/advancedGroupsFilterHelper.d.ts +2 -2
- package/esm/advancedGroupsFilter/advancedGroupsFilterHelper.js +1 -1
- package/esm/banner/banner.d.ts +2 -1
- package/esm/banner/banner.js +5 -3
- package/esm/banner/bannerMultipLine.d.ts +2 -1
- package/esm/banner/bannerMultipLine.js +2 -2
- package/esm/banner/bannerSingleLine.d.ts +2 -1
- package/esm/banner/bannerSingleLine.js +2 -2
- package/esm/button/button.d.ts +5 -3
- package/esm/button/button.js +4 -3
- package/esm/card/card.d.ts +2 -2
- package/esm/card/card.js +3 -1
- package/esm/card/components/cardButton/cardButton.d.ts +4 -3
- package/esm/card/components/cardButton/cardButton.js +2 -2
- package/esm/checkboxListWithAction/checkboxListWithAction.d.ts +1 -1
- package/esm/comboboxSelected/comboboxSelected.js +1 -1
- package/esm/commonHelpers/getAriaAttributes.d.ts +1 -0
- package/esm/commonHelpers/getAriaAttributes.js +12 -0
- package/esm/commonHelpers/hooks/useFormField.d.ts +8 -0
- package/esm/commonHelpers/hooks/useFormField.js +15 -0
- package/esm/commonHelpers/hooks/useFormFieldValues/getRuleValue.d.ts +2 -0
- package/esm/commonHelpers/hooks/useFormFieldValues/getRuleValue.js +9 -0
- package/esm/commonHelpers/hooks/useFormFieldValues/useFormFieldValues.d.ts +13 -0
- package/esm/commonHelpers/hooks/useFormFieldValues/useFormFieldValues.js +48 -0
- package/esm/commonHelpers/isFormItem.d.ts +2 -0
- package/esm/commonHelpers/isFormItem.js +1 -0
- package/esm/commonHelpers/loading.d.ts +6 -0
- package/esm/commonHelpers/loading.js +1 -0
- package/esm/commonHelpers/types/exclusive.d.ts +3 -0
- package/esm/commonHelpers/types/without.d.ts +3 -0
- package/esm/commonHelpers/zenComponent.d.ts +17 -0
- package/esm/dateInput/dateInput.d.ts +8 -22
- package/esm/dateInput/dateInput.js +20 -113
- package/esm/dateInputInner/dateInputInnerControlBlock.js +4 -1
- package/esm/dateInputRaw/dateInputRaw.d.ts +9 -0
- package/esm/dateInputRaw/dateInputRaw.js +130 -0
- package/esm/dateInputRaw/types.d.ts +32 -0
- package/esm/{dateInput → dateInputRaw/utils}/getLabel.js +1 -1
- package/esm/dateRange/dateRange.d.ts +10 -41
- package/esm/dateRange/dateRange.js +18 -258
- package/esm/dateRange/dateRangeUtils.d.ts +1 -38
- package/esm/dateRange/dateRangeUtils.js +1 -275
- package/esm/dateRangeRaw/dateRangeRaw.d.ts +45 -0
- package/esm/dateRangeRaw/dateRangeRaw.js +272 -0
- package/esm/dateRangeRaw/types.d.ts +48 -0
- package/esm/dateRangeRaw/types.js +1 -0
- package/esm/{dateRange → dateRangeRaw}/utils/areMapsEqual.d.ts +1 -1
- package/esm/dateRangeRaw/utils/dateRangeUtils.d.ts +38 -0
- package/esm/dateRangeRaw/utils/dateRangeUtils.js +275 -0
- package/esm/dateRangeRaw/utils/parseLabel.d.ts +2 -0
- package/esm/dateRangeRaw/utils/parseLabel.js +11 -0
- package/esm/divider/divider.d.ts +7 -0
- package/esm/divider/divider.js +3 -0
- package/esm/dropdown/dropdown.d.ts +21 -108
- package/esm/dropdown/dropdown.js +28 -495
- package/esm/dropdown/dropdownPopup.d.ts +4 -34
- package/esm/dropdown/dropdownPopup.js +2 -31
- package/esm/dropdown/dropdownTrigger.d.ts +2 -25
- package/esm/dropdown/dropdownTrigger.js +2 -28
- package/esm/{dropdown → dropdownRaw}/dropdownHelper.d.ts +15 -14
- package/esm/{dropdown → dropdownRaw}/dropdownHelper.js +1 -1
- package/esm/dropdownRaw/dropdownPopup.d.ts +34 -0
- package/esm/dropdownRaw/dropdownPopup.js +31 -0
- package/esm/dropdownRaw/dropdownRaw.d.ts +6 -0
- package/esm/dropdownRaw/dropdownRaw.js +537 -0
- package/{dist/dropdown → esm/dropdownRaw}/dropdownSearchableTrigger.d.ts +3 -1
- package/esm/dropdownRaw/dropdownSearchableTrigger.js +59 -0
- package/esm/dropdownRaw/dropdownTestData.d.ts +65 -0
- package/esm/dropdownRaw/dropdownTestData.js +1090 -0
- package/esm/dropdownRaw/dropdownTrigger.d.ts +27 -0
- package/esm/dropdownRaw/dropdownTrigger.js +27 -0
- package/{dist/dropdown → esm/dropdownRaw}/stateReducer/stateAction.d.ts +4 -4
- package/esm/dropdownRaw/stateReducer/stateAction.js +1 -0
- package/esm/{dropdown → dropdownRaw}/stateReducer/stateReducer.d.ts +5 -5
- package/esm/{dropdown → dropdownRaw}/stateReducer/stateReducer.js +2 -2
- package/esm/{dropdown → dropdownRaw}/stateReducer/stateReducerHelper.d.ts +2 -2
- package/esm/dropdownRaw/types.d.ts +133 -0
- package/esm/dropdownRaw/types.js +1 -0
- package/esm/dropdownRaw/utils/getSelectedValues.d.ts +2 -0
- package/esm/dropdownRaw/utils/getSelectedValues.js +1 -0
- package/esm/filterButton/filterButton.d.ts +3 -1
- package/esm/filterButton/filterButton.js +2 -2
- package/esm/filters/components/filtersDropdown.d.ts +4 -2
- package/esm/filters/components/filtersGroups.d.ts +1 -1
- package/esm/filters/components/filtersItem.d.ts +1 -1
- package/esm/filters/components/filtersSidePanelDropdown.js +2 -2
- package/esm/filters/components/filtersSidePanelRange.js +1 -1
- package/esm/filters/filtersHelper.js +1 -1
- package/esm/filtersBar/components/filtersBarDropdown/filtersBarDropdown.js +2 -2
- package/esm/filtersBar/components/filtersBarGroupsFilter/filtersBarGroupsFilter.d.ts +1 -1
- package/esm/filtersBar/components/filtersBarRange/filtersBarRange.js +1 -1
- package/esm/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelDropdownWithCheckbox/filtersBarSidePanelDropdownWithCheckbox.js +1 -1
- package/esm/filtersBar/filtersBarSidePanel/components/filtersBarSidePanelRange/filtersBarSidePanelRange.js +2 -2
- package/esm/formField/components/formFieldBanner.d.ts +6 -0
- package/esm/formField/components/formFieldBanner.js +5 -0
- package/esm/formField/components/formFieldSkeleton.d.ts +6 -0
- package/esm/formField/components/formFieldSkeleton.js +1 -0
- package/esm/formField/components/formFieldWithLabel.d.ts +10 -0
- package/esm/formField/components/formFieldWithLabel.js +8 -0
- package/esm/formField/components/formFieldWithoutLabel.d.ts +8 -0
- package/esm/formField/components/formFieldWithoutLabel.js +8 -0
- package/esm/formField/formField.d.ts +34 -6
- package/esm/formField/formField.js +61 -8
- package/esm/formField/hooks/useAssistive.d.ts +12 -0
- package/esm/formField/hooks/useAssistive.js +14 -0
- package/esm/formField/hooks/useBanner.d.ts +8 -0
- package/esm/formField/hooks/useBanner.js +23 -0
- package/esm/formField/hooks/useDisabled.d.ts +15 -0
- package/esm/formField/hooks/useDisabled.js +18 -0
- package/esm/formField/hooks/useError.d.ts +18 -0
- package/esm/formField/hooks/useError.js +45 -0
- package/esm/formField/hooks/useLoading.d.ts +2 -0
- package/esm/formField/hooks/useLoading.js +15 -0
- package/esm/formField/hooks/useReadonly.d.ts +1 -0
- package/esm/formField/hooks/useReadonly.js +6 -0
- package/esm/formField/hooks/useSkeleton.d.ts +3 -0
- package/esm/formField/hooks/useSkeleton.js +9 -0
- package/esm/formField/hooks/useTrailing.d.ts +12 -0
- package/esm/formField/hooks/useTrailing.js +14 -0
- package/esm/formField/hooks/useWidth.d.ts +8 -0
- package/esm/formField/hooks/useWidth.js +7 -0
- package/esm/formField/utils/getFormFieldBanner.d.ts +2 -0
- package/esm/formField/utils/getFormFieldBanner.js +13 -0
- package/esm/formField/utils/rangeRawLabelCheck.d.ts +1 -0
- package/esm/formField/utils/rangeRawLabelCheck.js +10 -0
- package/esm/formGroup/components/customRow/customRow.d.ts +7 -0
- package/esm/formGroup/components/customRow/customRow.js +3 -0
- package/esm/formGroup/components/formGroupList.d.ts +5 -0
- package/esm/formGroup/components/formGroupList.js +2 -0
- package/esm/formGroup/components/formGroupToggle.d.ts +15 -0
- package/esm/formGroup/components/formGroupToggle.js +2 -0
- package/esm/formGroup/components/list.d.ts +6 -0
- package/esm/formGroup/components/list.js +15 -0
- package/esm/formGroup/components/listToggle/listToggle.d.ts +1 -0
- package/esm/formGroup/components/listToggle/listToggle.js +25 -0
- package/esm/formGroup/components/oneRow.d.ts +6 -0
- package/esm/formGroup/components/oneRow.js +11 -0
- package/esm/formGroup/components/reviewListToggle/reviewListToggle.d.ts +8 -0
- package/esm/formGroup/components/reviewListToggle/reviewListToggle.js +12 -0
- package/esm/formGroup/components/reviewTextControl.d.ts +9 -0
- package/esm/formGroup/components/reviewTextControl.js +3 -0
- package/esm/formGroup/components/row.d.ts +5 -0
- package/esm/formGroup/components/row.js +34 -0
- package/esm/formGroup/components/twoRows.d.ts +6 -0
- package/esm/formGroup/components/twoRows.js +11 -0
- package/esm/formGroup/formGroup.d.ts +13 -0
- package/esm/formGroup/formGroup.js +45 -0
- package/esm/formGroup/hooks/listHooks/useControlClasses.d.ts +2 -0
- package/esm/formGroup/hooks/listHooks/useControlClasses.js +50 -0
- package/esm/formGroup/hooks/listHooks/useControls.d.ts +2 -0
- package/esm/formGroup/hooks/listHooks/useControls.js +13 -0
- package/esm/formGroup/hooks/listHooks/useElementsState.d.ts +3 -0
- package/esm/formGroup/hooks/listHooks/useElementsState.js +31 -0
- package/esm/formGroup/hooks/listHooks/useLabelClasses.d.ts +2 -0
- package/esm/formGroup/hooks/listHooks/useLabelClasses.js +34 -0
- package/esm/formGroup/hooks/listHooks/useStateToElements.d.ts +3 -0
- package/esm/formGroup/hooks/listHooks/useStateToElements.js +23 -0
- package/esm/formGroup/hooks/rowHooks/useControlClasses.d.ts +2 -0
- package/esm/formGroup/hooks/rowHooks/useControlClasses.js +27 -0
- package/esm/formGroup/hooks/rowHooks/useControls.d.ts +2 -0
- package/esm/formGroup/hooks/rowHooks/useControls.js +11 -0
- package/esm/formGroup/hooks/rowHooks/useInitializeState.d.ts +3 -0
- package/esm/formGroup/hooks/rowHooks/useInitializeState.js +11 -0
- package/esm/formGroup/hooks/rowHooks/useLabelClasses.d.ts +2 -0
- package/esm/formGroup/hooks/rowHooks/useLabelClasses.js +24 -0
- package/esm/formGroup/hooks/useCustomRow.d.ts +4 -0
- package/esm/formGroup/hooks/useCustomRow.js +88 -0
- package/esm/formGroup/hooks/useElements.d.ts +4 -0
- package/esm/formGroup/hooks/useElements.js +19 -0
- package/esm/formGroup/hooks/useLabelAlign.d.ts +2 -0
- package/esm/formGroup/hooks/useLabelAlign.js +10 -0
- package/esm/formGroup/hooks/useMode.d.ts +2 -0
- package/esm/formGroup/hooks/useMode.js +8 -0
- package/esm/formGroup/hooks/useRowElements.d.ts +14 -0
- package/esm/formGroup/hooks/useRowElements.js +20 -0
- package/esm/formGroup/hooks/useSectionType.d.ts +2 -0
- package/esm/formGroup/hooks/useSectionType.js +8 -0
- package/esm/formGroup/hooks/useToggle.d.ts +1 -0
- package/esm/formGroup/hooks/useToggle.js +21 -0
- package/esm/formGroup/hooks/useToggleList.d.ts +9 -0
- package/esm/formGroup/hooks/useToggleList.js +20 -0
- package/esm/formGroup/types.d.ts +53 -0
- package/esm/formGroup/types.js +1 -0
- package/esm/formGroup/utils/applyControlClasses.d.ts +2 -0
- package/esm/formGroup/utils/applyControlClasses.js +47 -0
- package/esm/formGroup/utils/applyCustomControlClasses.d.ts +12 -0
- package/esm/formGroup/utils/applyCustomControlClasses.js +27 -0
- package/esm/formGroup/utils/applyCustomLabelClasses.d.ts +12 -0
- package/esm/formGroup/utils/applyCustomLabelClasses.js +16 -0
- package/esm/formGroup/utils/formGroupProvider.d.ts +9 -0
- package/esm/formGroup/utils/formGroupProvider.js +4 -0
- package/esm/formGroup/utils/getControlClasses/getControlClasses.d.ts +6 -0
- package/esm/formGroup/utils/getControlClasses/getControlClasses.js +75 -0
- package/esm/formGroup/utils/getControlClasses/getModalSectionClasses.d.ts +2 -0
- package/esm/formGroup/utils/getControlClasses/getModalSectionClasses.js +4 -0
- package/esm/formGroup/utils/getControlClasses/getOneLabelOneControlClasses.d.ts +6 -0
- package/esm/formGroup/utils/getControlClasses/getOneLabelOneControlClasses.js +21 -0
- package/esm/formGroup/utils/getControlClasses/getOneLabelTwoControlsClasses.d.ts +7 -0
- package/esm/formGroup/utils/getControlClasses/getOneLabelTwoControlsClasses.js +49 -0
- package/esm/formGroup/utils/getControlClasses/getTwoLabelsOneControlClasses.d.ts +6 -0
- package/esm/formGroup/utils/getControlClasses/getTwoLabelsOneControlClasses.js +21 -0
- package/esm/formGroup/utils/getControlClasses/getTwoLabelsTwoControlsClasses.d.ts +6 -0
- package/esm/formGroup/utils/getControlClasses/getTwoLabelsTwoControlsClasses.js +24 -0
- package/esm/formGroup/utils/getControlClasses/getZeroLabelOneControlClasses.d.ts +3 -0
- package/esm/formGroup/utils/getControlClasses/getZeroLabelOneControlClasses.js +12 -0
- package/esm/formGroup/utils/getControlClasses/types.d.ts +4 -0
- package/esm/formGroup/utils/getControlClasses/types.js +1 -0
- package/esm/formGroup/utils/getControlListClasses/getControlListClasses.d.ts +4 -0
- package/esm/formGroup/utils/getControlListClasses/getControlListClasses.js +42 -0
- package/esm/formGroup/utils/getControlListClasses/getOneLabelOneControlClasses.d.ts +7 -0
- package/esm/formGroup/utils/getControlListClasses/getOneLabelOneControlClasses.js +60 -0
- package/esm/formGroup/utils/getControlListClasses/getOneLabelTwoControlsClasses.d.ts +7 -0
- package/esm/formGroup/utils/getControlListClasses/getOneLabelTwoControlsClasses.js +40 -0
- package/esm/formGroup/utils/getControlListClasses/getTwoLabelsTwoControlsClasses.d.ts +6 -0
- package/esm/formGroup/utils/getControlListClasses/getTwoLabelsTwoControlsClasses.js +35 -0
- package/esm/formGroup/utils/getControlListClasses/getZeroLabelOneControlClasses.d.ts +5 -0
- package/esm/formGroup/utils/getControlListClasses/getZeroLabelOneControlClasses.js +14 -0
- package/esm/formGroup/utils/getControlListClasses/getZeroLabelsTwoControls.d.ts +2 -0
- package/esm/formGroup/utils/getControlListClasses/getZeroLabelsTwoControls.js +13 -0
- package/esm/formGroup/utils/getControlNode.d.ts +1 -0
- package/esm/formGroup/utils/getControlNode.js +2 -0
- package/esm/formGroup/utils/getControls.d.ts +5 -0
- package/esm/formGroup/utils/getControls.js +22 -0
- package/esm/formGroup/utils/getElementsControl.d.ts +5 -0
- package/esm/formGroup/utils/getElementsControl.js +33 -0
- package/esm/formGroup/utils/getLabelClasses/getLabelClasses.d.ts +6 -0
- package/esm/formGroup/utils/getLabelClasses/getLabelClasses.js +61 -0
- package/esm/formGroup/utils/getLabelClasses/getModalSectionClasses.d.ts +2 -0
- package/esm/formGroup/utils/getLabelClasses/getModalSectionClasses.js +4 -0
- package/esm/formGroup/utils/getLabelClasses/getOneLabelOneControlClasses.d.ts +4 -0
- package/esm/formGroup/utils/getLabelClasses/getOneLabelOneControlClasses.js +20 -0
- package/esm/formGroup/utils/getLabelClasses/getOneLabelTwoControlsClasses.d.ts +4 -0
- package/esm/formGroup/utils/getLabelClasses/getOneLabelTwoControlsClasses.js +46 -0
- package/esm/formGroup/utils/getLabelClasses/getReviewOrInlineEditClasses.d.ts +2 -0
- package/esm/formGroup/utils/getLabelClasses/getReviewOrInlineEditClasses.js +27 -0
- package/esm/formGroup/utils/getLabelClasses/getTwoLabelsOneControlClasses.d.ts +4 -0
- package/esm/formGroup/utils/getLabelClasses/getTwoLabelsOneControlClasses.js +24 -0
- package/esm/formGroup/utils/getLabelClasses/getTwoLabelsTwoControlsClasses.d.ts +4 -0
- package/esm/formGroup/utils/getLabelClasses/getTwoLabelsTwoControlsClasses.js +24 -0
- package/esm/formGroup/utils/getLabelClasses/getZeroLabelClasses.d.ts +2 -0
- package/esm/formGroup/utils/getLabelClasses/getZeroLabelClasses.js +4 -0
- package/esm/formGroup/utils/getLabelClasses/types.d.ts +4 -0
- package/esm/formGroup/utils/getLabelClasses/types.js +1 -0
- package/esm/formGroup/utils/getLabelListClasses/getLabelListClasses.d.ts +7 -0
- package/esm/formGroup/utils/getLabelListClasses/getLabelListClasses.js +30 -0
- package/esm/formGroup/utils/getLabelListClasses/getOneLabelOneControlClasses.d.ts +6 -0
- package/esm/formGroup/utils/getLabelListClasses/getOneLabelOneControlClasses.js +44 -0
- package/esm/formGroup/utils/getLabelListClasses/getOneLabelTwoControlsClasses.d.ts +7 -0
- package/esm/formGroup/utils/getLabelListClasses/getOneLabelTwoControlsClasses.js +25 -0
- package/esm/formGroup/utils/getLabelListClasses/getOneLabelZeroControlsClasses.d.ts +4 -0
- package/esm/formGroup/utils/getLabelListClasses/getOneLabelZeroControlsClasses.js +13 -0
- package/esm/formGroup/utils/getLabelListClasses/getTwoLabelsTwoControlsClasses.d.ts +5 -0
- package/esm/formGroup/utils/getLabelListClasses/getTwoLabelsTwoControlsClasses.js +31 -0
- package/esm/formGroup/utils/getLabelNode.d.ts +1 -0
- package/esm/formGroup/utils/getLabelNode.js +2 -0
- package/esm/formGroup/utils/getListClasses.d.ts +3 -0
- package/esm/formGroup/utils/getListClasses.js +27 -0
- package/esm/formGroup/utils/getToggleClasses.d.ts +3 -0
- package/esm/formGroup/utils/getToggleClasses.js +13 -0
- package/esm/formGroup/utils/getTotalState.d.ts +2 -0
- package/esm/formGroup/utils/getTotalState.js +19 -0
- package/esm/formGroup/utils/hasCustomWidthControl.d.ts +2 -0
- package/esm/formGroup/utils/hasCustomWidthControl.js +7 -0
- package/esm/formGroup/utils/hasWidthProp.d.ts +2 -0
- package/esm/formGroup/utils/hasWidthProp.js +7 -0
- package/esm/formGroup/utils/initializeState.d.ts +12 -0
- package/esm/formGroup/utils/initializeState.js +36 -0
- package/esm/formGroup/utils/isFormLabel.d.ts +3 -0
- package/esm/formGroup/utils/isFormLabel.js +2 -0
- package/esm/formGroup/utils/isTopAlign.d.ts +3 -0
- package/esm/formGroup/utils/isTopAlign.js +5 -0
- package/esm/formGroup/utils/isTwoRowsStructure.d.ts +3 -0
- package/esm/formGroup/utils/isTwoRowsStructure.js +25 -0
- package/esm/formGroupItem/formGroupItem.d.ts +8 -0
- package/esm/formGroupItem/formGroupItem.js +9 -0
- package/esm/formLayout/components/column/column.d.ts +7 -0
- package/esm/formLayout/components/column/column.js +3 -0
- package/esm/formLayout/components/columnTitle/formLayoutColumnTitle.d.ts +9 -0
- package/esm/formLayout/components/columnTitle/formLayoutColumnTitle.js +3 -0
- package/esm/formLayout/components/customColumns.d.ts +9 -0
- package/esm/formLayout/components/customColumns.js +33 -0
- package/esm/formLayout/components/formLayoutSecondary.d.ts +7 -0
- package/esm/formLayout/components/formLayoutSecondary.js +3 -0
- package/esm/formLayout/components/formLayoutTitle.d.ts +7 -0
- package/esm/formLayout/components/formLayoutTitle.js +3 -0
- package/esm/formLayout/components/getLayoutColumns.d.ts +1 -0
- package/esm/formLayout/components/getLayoutColumns.js +35 -0
- package/esm/formLayout/components/layoutColumn/layoutColum.d.ts +6 -0
- package/esm/formLayout/components/layoutColumn/layoutColum.js +2 -0
- package/esm/formLayout/components/oneColumnGrid.d.ts +2 -0
- package/esm/formLayout/components/oneColumnGrid.js +24 -0
- package/esm/formLayout/components/twoColumnsGrid.d.ts +2 -0
- package/esm/formLayout/components/twoColumnsGrid.js +24 -0
- package/esm/formLayout/components/useCustomColumns.d.ts +11 -0
- package/esm/formLayout/components/useCustomColumns.js +53 -0
- package/esm/formLayout/formLayout.d.ts +7 -0
- package/esm/formLayout/formLayout.js +39 -0
- package/esm/formLayout/hooks/getStepperLayout.d.ts +2 -0
- package/esm/formLayout/hooks/getStepperLayout.js +19 -0
- package/esm/formLayout/hooks/useColumns.d.ts +1 -0
- package/esm/formLayout/hooks/useColumns.js +6 -0
- package/esm/formLayout/hooks/useComponents.d.ts +8 -0
- package/esm/formLayout/hooks/useComponents.js +36 -0
- package/esm/formLayout/hooks/useError.d.ts +6 -0
- package/esm/formLayout/hooks/useError.js +20 -0
- package/esm/formLayout/hooks/useFormButtons.d.ts +11 -0
- package/esm/formLayout/hooks/useFormButtons.js +35 -0
- package/esm/formLayout/hooks/useLayoutColumns.d.ts +1 -0
- package/esm/formLayout/hooks/useLayoutColumns.js +6 -0
- package/esm/formLayout/hooks/useLoading.d.ts +5 -0
- package/esm/formLayout/hooks/useLoading.js +12 -0
- package/esm/formLayout/types.d.ts +32 -0
- package/esm/formLayout/types.js +1 -0
- package/esm/formLayout/utils/applyGridPropsOneColumn.d.ts +1 -0
- package/esm/formLayout/utils/applyGridPropsOneColumn.js +14 -0
- package/esm/formLayout/utils/applyGridPropsStatic.d.ts +1 -0
- package/esm/formLayout/utils/applyGridPropsStatic.js +42 -0
- package/esm/formLayout/utils/applyGridPropsTwoColumns/applyFirstColumn.d.ts +2 -0
- package/esm/formLayout/utils/applyGridPropsTwoColumns/applyFirstColumn.js +14 -0
- package/esm/formLayout/utils/applyGridPropsTwoColumns/applyGridPropsTwoColumns.d.ts +2 -0
- package/esm/formLayout/utils/applyGridPropsTwoColumns/applyGridPropsTwoColumns.js +20 -0
- package/esm/formLayout/utils/applyGridPropsTwoColumns/applySecondColumn.d.ts +2 -0
- package/esm/formLayout/utils/applyGridPropsTwoColumns/applySecondColumn.js +16 -0
- package/esm/formLayout/utils/applyLayoutPosition/applyLayoutPosition.d.ts +1 -0
- package/esm/formLayout/utils/applyLayoutPosition/applyLayoutPosition.js +114 -0
- package/esm/formLayout/utils/attachHeadings.d.ts +1 -0
- package/esm/formLayout/utils/attachHeadings.js +27 -0
- package/esm/formLayout/utils/attachSeparators.d.ts +4 -0
- package/esm/formLayout/utils/attachSeparators.js +28 -0
- package/esm/formLayout/utils/attachStepper.d.ts +3 -0
- package/esm/formLayout/utils/attachStepper.js +19 -0
- package/esm/formLayout/utils/formLayoutProvider.d.ts +7 -0
- package/esm/formLayout/utils/formLayoutProvider.js +10 -0
- package/esm/formLayout/utils/getAllowedComponents.d.ts +6 -0
- package/esm/formLayout/utils/getAllowedComponents.js +15 -0
- package/esm/formLayout/utils/getChildrenWithCustomColumns.d.ts +2 -0
- package/esm/formLayout/utils/getChildrenWithCustomColumns.js +70 -0
- package/esm/formLayout/utils/getComponentsWithClasses.d.ts +3 -0
- package/esm/formLayout/utils/getComponentsWithClasses.js +23 -0
- package/esm/formLayout/utils/getFilteredComponents.d.ts +4 -0
- package/esm/formLayout/utils/getFilteredComponents.js +21 -0
- package/esm/formLayout/utils/getFormSection.d.ts +2 -0
- package/esm/formLayout/utils/getFormSection.js +18 -0
- package/esm/formLayout/utils/hasStepper.d.ts +2 -0
- package/esm/formLayout/utils/hasStepper.js +1 -0
- package/esm/formLayout/utils/isCustomFormSection.d.ts +3 -0
- package/esm/formLayout/utils/isCustomFormSection.js +2 -0
- package/esm/formLayout/utils/isStaticElement.d.ts +1 -0
- package/esm/formLayout/utils/isStaticElement.js +15 -0
- package/esm/formSection/components/actions.d.ts +5 -0
- package/esm/formSection/components/actions.js +1 -0
- package/esm/formSection/components/additional.d.ts +5 -0
- package/esm/formSection/components/additional.js +1 -0
- package/esm/formSection/components/additionalSection.d.ts +9 -0
- package/esm/formSection/components/additionalSection.js +28 -0
- package/esm/formSection/components/formSectionButton.d.ts +5 -0
- package/esm/formSection/components/formSectionButton.js +17 -0
- package/esm/formSection/components/formSectionCard.d.ts +4 -0
- package/esm/formSection/components/formSectionCard.js +46 -0
- package/esm/formSection/components/formSectionDefault.d.ts +3 -0
- package/esm/formSection/components/formSectionDefault.js +13 -0
- package/esm/formSection/components/formSectionDefaultTitle.d.ts +7 -0
- package/esm/formSection/components/formSectionDefaultTitle.js +3 -0
- package/esm/formSection/components/formSectionInner.d.ts +7 -0
- package/esm/formSection/components/formSectionInner.js +55 -0
- package/esm/formSection/components/formSectionModal.d.ts +3 -0
- package/esm/formSection/components/formSectionModal.js +5 -0
- package/esm/formSection/formSection.d.ts +12 -0
- package/esm/formSection/formSection.js +44 -0
- package/esm/formSection/hooks/useError.d.ts +7 -0
- package/esm/formSection/hooks/useError.js +28 -0
- package/esm/formSection/hooks/useLoading.d.ts +5 -0
- package/esm/formSection/hooks/useLoading.js +18 -0
- package/esm/formSection/types.d.ts +35 -0
- package/esm/formSection/types.js +1 -0
- package/esm/formSection/utils/formSectionProvider.d.ts +11 -0
- package/esm/formSection/utils/formSectionProvider.js +9 -0
- package/esm/formSection/utils/getClassName.d.ts +4 -0
- package/esm/formSection/utils/getClassName.js +8 -0
- package/esm/formSection/utils/isFormSection.d.ts +4 -0
- package/esm/formSection/utils/isFormSection.js +1 -0
- package/esm/formSection/utils/isModalSection.d.ts +2 -0
- package/esm/formSection/utils/isModalSection.js +4 -0
- package/esm/formStepper/formStepper.js +1 -1
- package/esm/formStepper/hooks/useFormStepper.d.ts +6 -0
- package/esm/formStepper/hooks/useFormStepper.js +20 -0
- package/esm/formStepperButtons/formStepperButtons.js +3 -1
- package/esm/gridLayout/gridLayout.js +2 -1
- package/esm/gridLayout/hooks/useGridClasses.d.ts +10 -1
- package/esm/gridLayout/hooks/useGridClasses.js +28 -9
- package/esm/gridLayout/utils/adaptGridState.d.ts +2 -2
- package/esm/gridLayout/utils/adaptGridState.js +7 -8
- package/esm/gridLayout/utils/adjustGridState.d.ts +2 -2
- package/esm/gridLayout/utils/adjustGridState.js +13 -14
- package/esm/gridLayout/utils/constants.d.ts +1 -0
- package/esm/gridLayout/utils/constants.js +1 -0
- package/esm/gridLayout/utils/convertClassesToState.d.ts +2 -0
- package/esm/gridLayout/utils/convertClassesToState.js +44 -0
- package/esm/gridLayout/utils/convertStateToClasses.d.ts +2 -1
- package/esm/gridLayout/utils/convertStateToClasses.js +3 -3
- package/esm/gridLayout/utils/fillGridState.d.ts +2 -2
- package/esm/gridLayout/utils/fillGridState.js +6 -7
- package/esm/gridLayout/utils/filterGridProps.d.ts +2 -0
- package/esm/gridLayout/utils/filterGridProps.js +15 -0
- package/esm/gridLayout/utils/getAllowedComponent.js +15 -1
- package/esm/gridLayout/utils/getGridPositionClasses.d.ts +1 -0
- package/esm/gridLayout/utils/getGridPositionClasses.js +8 -0
- package/esm/gridLayout/utils/getGridWidthClasses.d.ts +1 -0
- package/esm/gridLayout/utils/getGridWidthClasses.js +15 -0
- package/esm/gridLayout/utils/gridLayoutProvider.d.ts +9 -0
- package/esm/gridLayout/utils/gridLayoutProvider.js +12 -0
- package/esm/gridLayout/utils/hasGridClasses.d.ts +2 -0
- package/esm/gridLayout/utils/hasGridClasses.js +8 -0
- package/esm/gridLayout/utils/isGridItem.d.ts +1 -1
- package/esm/gridLayout/utils/isGridItem.js +3 -0
- package/esm/gridLayout/utils/removeSameTypeClasses.d.ts +1 -0
- package/esm/gridLayout/utils/removeSameTypeClasses.js +38 -0
- package/esm/gridLayout/utils/updateGridStateFromClassNames.d.ts +2 -2
- package/esm/gridLayout/utils/updateGridStateFromClassNames.js +14 -14
- package/esm/gridLayout/utils/updateGridStateFromProps.d.ts +2 -2
- package/esm/gridLayout/utils/updateGridStateFromProps.js +7 -8
- package/esm/gridLayout/utils/updateGridStateWithDefaultValues.js +4 -0
- package/esm/groupButton/groupButton.d.ts +8 -14
- package/esm/groupButton/groupButton.js +18 -14
- package/esm/groupButtonRaw/components/groupButtonOption.d.ts +11 -0
- package/esm/groupButtonRaw/components/groupButtonOption.js +8 -0
- package/esm/groupButtonRaw/groupButtonRaw.d.ts +7 -0
- package/esm/groupButtonRaw/groupButtonRaw.js +23 -0
- package/esm/groupButtonRaw/types.d.ts +26 -0
- package/esm/groupButtonRaw/types.js +1 -0
- package/esm/groupsFilter/groupsFilter.d.ts +7 -21
- package/esm/groupsFilter/groupsFilter.js +20 -327
- package/esm/groupsFilter/groupsFilterInterfaces.d.ts +16 -78
- package/esm/groupsFilter/groupsFilterInterfaces.js +2 -20
- package/{dist/groupsFilter → esm/groupsFilterRaw}/groupsFilterCommon.d.ts +1 -1
- package/{dist/groupsFilter → esm/groupsFilterRaw}/groupsFilterCounter.d.ts +1 -1
- package/esm/groupsFilterRaw/groupsFilterInterfaces.d.ts +91 -0
- package/esm/groupsFilterRaw/groupsFilterInterfaces.js +20 -0
- package/esm/groupsFilterRaw/groupsFilterRaw.d.ts +37 -0
- package/esm/groupsFilterRaw/groupsFilterRaw.js +352 -0
- package/esm/groupsFilterRaw/groupsFilterTestData.d.ts +37 -0
- package/esm/groupsFilterRaw/groupsFilterTestData.js +73 -0
- package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterTrigger.d.ts +3 -2
- package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterTrigger.js +2 -2
- package/esm/groupsFilterRaw/stateReducer/stateAction.js +1 -0
- package/esm/groupsFilterRaw/testData.d.ts +26 -0
- package/esm/groupsFilterRaw/testData.js +32990 -0
- package/esm/groupsFilterRaw/types.d.ts +37 -0
- package/esm/groupsFilterRaw/types.js +2 -0
- package/esm/groupsFilterRaw/uiStateReducer/uiStateAction.js +1 -0
- package/esm/index.d.ts +77 -20
- package/esm/index.js +61 -7
- package/esm/inputAdornments/inputAdornments.d.ts +2 -1
- package/esm/inputAdornments/inputAdornments.js +2 -2
- package/esm/radioGroup/radioGroup.d.ts +8 -19
- package/esm/radioGroup/radioGroup.js +17 -51
- package/esm/radioGroupRaw/radioGroupRaw.d.ts +7 -0
- package/esm/radioGroupRaw/radioGroupRaw.js +64 -0
- package/esm/radioGroupRaw/types.d.ts +25 -0
- package/esm/radioGroupRaw/types.js +1 -0
- package/esm/range/range.d.ts +11 -27
- package/esm/range/range.js +19 -146
- package/{dist/range → esm/rangeRaw/components}/rangeField.d.ts +1 -1
- package/esm/{range → rangeRaw/components}/rangeField.js +3 -3
- package/esm/rangeRaw/rangeRaw.d.ts +10 -0
- package/esm/rangeRaw/rangeRaw.js +169 -0
- package/esm/rangeRaw/types.d.ts +35 -0
- package/esm/rangeRaw/types.js +1 -0
- package/esm/{range → rangeRaw/utils}/rangeHelper.d.ts +1 -1
- package/esm/searchInput/searchInput.d.ts +5 -4
- package/esm/searchInput/searchInput.js +5 -15
- package/esm/searchInputRaw/searchInputRaw.d.ts +3 -20
- package/esm/searchInputRaw/searchInputRaw.js +9 -2
- package/esm/searchInputRaw/types.d.ts +33 -0
- package/esm/searchInputRaw/types.js +1 -0
- package/esm/select/select.d.ts +9 -4
- package/esm/select/select.js +17 -2
- package/esm/selectField/selectField.d.ts +4 -4
- package/esm/selectRaw/selectRaw.d.ts +3 -16
- package/esm/selectRaw/selectRaw.js +18 -11
- package/esm/selectRaw/types.d.ts +30 -0
- package/esm/selectRaw/types.js +1 -0
- package/esm/stepper/stepper.d.ts +5 -4
- package/esm/stepperRaw/stepperRaw.d.ts +3 -17
- package/esm/stepperRaw/stepperRaw.js +17 -9
- package/esm/stepperRaw/types.d.ts +26 -0
- package/esm/stepperRaw/types.js +1 -0
- package/esm/textInput/textInput.d.ts +5 -4
- package/esm/textInput/textInput.js +5 -15
- package/esm/textInputRaw/textInputRaw.d.ts +3 -23
- package/esm/textInputRaw/textInputRaw.js +9 -1
- package/esm/textInputRaw/types.d.ts +36 -0
- package/esm/textInputRaw/types.js +1 -0
- package/esm/textarea/textarea.d.ts +5 -4
- package/esm/textarea/textarea.js +5 -3
- package/esm/textareaRaw/textareaRaw.d.ts +3 -22
- package/esm/textareaRaw/textareaRaw.js +10 -3
- package/esm/textareaRaw/types.d.ts +31 -0
- package/esm/textareaRaw/types.js +1 -0
- package/esm/timePicker/timePicker.d.ts +9 -13
- package/esm/timePicker/timePicker.js +20 -60
- package/esm/timePickerRaw/timePickerRaw.d.ts +10 -0
- package/esm/timePickerRaw/timePickerRaw.js +75 -0
- package/esm/timePickerRaw/types.d.ts +26 -0
- package/esm/timePickerRaw/types.js +1 -0
- package/esm/toggleButton/toggleButton.d.ts +8 -10
- package/esm/toggleButton/toggleButton.js +18 -12
- package/esm/toggleButtonRaw/toggleButtonRaw.d.ts +3 -0
- package/esm/toggleButtonRaw/toggleButtonRaw.js +27 -0
- package/esm/toggleButtonRaw/types.d.ts +26 -0
- package/esm/toggleButtonRaw/types.js +1 -0
- package/esm/tooltipInfo/tooltipInfo.d.ts +7 -0
- package/esm/tooltipInfo/tooltipInfo.js +11 -0
- package/esm/utils/formatDate.d.ts +1 -1
- package/esm/utils/localization/translations/cs-json.d.ts +3 -0
- package/esm/utils/localization/translations/cs-json.js +4 -1
- package/esm/utils/localization/translations/de-json.d.ts +3 -0
- package/esm/utils/localization/translations/de-json.js +4 -1
- package/esm/utils/localization/translations/en-json.d.ts +12 -0
- package/esm/utils/localization/translations/en-json.js +13 -1
- package/esm/utils/localization/translations/es-json.d.ts +3 -0
- package/esm/utils/localization/translations/es-json.js +4 -1
- package/esm/utils/localization/translations/fr-FR-json.d.ts +3 -0
- package/esm/utils/localization/translations/fr-FR-json.js +4 -1
- package/esm/utils/localization/translations/fr-json.d.ts +3 -0
- package/esm/utils/localization/translations/fr-json.js +4 -1
- package/esm/utils/localization/translations/id-json.d.ts +3 -0
- package/esm/utils/localization/translations/id-json.js +4 -1
- package/esm/utils/localization/translations/it-json.d.ts +3 -0
- package/esm/utils/localization/translations/it-json.js +4 -1
- package/esm/utils/localization/translations/ja-json.d.ts +3 -0
- package/esm/utils/localization/translations/ja-json.js +4 -1
- package/esm/utils/localization/translations/ko-KR-json.d.ts +3 -0
- package/esm/utils/localization/translations/ko-KR-json.js +4 -1
- package/esm/utils/localization/translations/ms-json.d.ts +3 -0
- package/esm/utils/localization/translations/ms-json.js +4 -1
- package/esm/utils/localization/translations/nl-json.d.ts +3 -0
- package/esm/utils/localization/translations/nl-json.js +4 -1
- package/esm/utils/localization/translations/pl-json.d.ts +3 -0
- package/esm/utils/localization/translations/pl-json.js +4 -1
- package/esm/utils/localization/translations/pt-BR-json.d.ts +3 -0
- package/esm/utils/localization/translations/pt-BR-json.js +4 -1
- package/esm/utils/localization/translations/sv-json.d.ts +3 -0
- package/esm/utils/localization/translations/sv-json.js +4 -1
- package/esm/utils/localization/translations/th-json.d.ts +3 -0
- package/esm/utils/localization/translations/th-json.js +4 -1
- package/esm/utils/localization/translations/tr-json.d.ts +3 -0
- package/esm/utils/localization/translations/tr-json.js +4 -1
- package/esm/utils/localization/translations/zh-Hans-json.d.ts +3 -0
- package/esm/utils/localization/translations/zh-Hans-json.js +4 -1
- package/esm/utils/localization/translations/zh-TW-json.d.ts +3 -0
- package/esm/utils/localization/translations/zh-TW-json.js +4 -1
- package/package.json +5 -4
- package/esm/dropdown/dropdownSearchableTrigger.js +0 -56
- /package/dist/{dropdown/stateReducer/stateAction.js → commonHelpers/types/exclusive.js} +0 -0
- /package/dist/{groupsFilter/stateReducer/stateAction.js → commonHelpers/types/without.js} +0 -0
- /package/dist/{groupsFilter/uiStateReducer/uiStateAction.js → dateInputRaw/types.js} +0 -0
- /package/dist/{dateInput → dateInputRaw/utils}/cutSeconds.d.ts +0 -0
- /package/dist/{dateInput → dateInputRaw/utils}/cutSeconds.js +0 -0
- /package/dist/{dateInput → dateInputRaw/utils}/getLabel.d.ts +0 -0
- /package/dist/{dateRange → dateRangeRaw}/utils/areMapsEqual.js +0 -0
- /package/dist/{dropdown → dropdownRaw}/dropdownList.d.ts +0 -0
- /package/dist/{dropdown → dropdownRaw}/dropdownList.js +0 -0
- /package/dist/{dropdown → dropdownRaw}/stateReducer/stateActionType.d.ts +0 -0
- /package/dist/{dropdown → dropdownRaw}/stateReducer/stateActionType.js +0 -0
- /package/dist/{dropdown → dropdownRaw}/stateReducer/stateReducerHelper.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterAdjustmentState.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterAdjustmentState.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterAdvancedValue.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterAdvancedValue.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterBox.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterBox.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterCommon.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterCounter.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterCurrentlySelectedState.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterCurrentlySelectedState.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterHelper.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterHelper.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterInitialState.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterInitialState.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterLabelBox.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterLabelBox.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterMenu.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterMenu.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterStatesHelper.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsFilterStatesHelper.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsHelper.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/groupsHelper.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/stateReducer/stateAction.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/stateReducer/stateActionType.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/stateReducer/stateActionType.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/stateReducer/stateReducer.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/stateReducer/stateReducer.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/stateReducer/stateReducerHelper.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/stateReducer/stateReducerHelper.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/uiStateReducer/uiStateAction.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/uiStateReducer/uiStateActionType.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/uiStateReducer/uiStateActionType.js +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/uiStateReducer/uiStateReducer.d.ts +0 -0
- /package/dist/{groupsFilter → groupsFilterRaw}/uiStateReducer/uiStateReducer.js +0 -0
- /package/dist/{range → rangeRaw/utils}/rangeHelper.js +0 -0
- /package/dist/{timePicker → timePickerRaw}/components/timeSelect/timeSelect.d.ts +0 -0
- /package/dist/{timePicker → timePickerRaw}/components/timeSelect/timeSelect.js +0 -0
- /package/dist/{timePicker → timePickerRaw}/timePickerUtils.d.ts +0 -0
- /package/dist/{timePicker → timePickerRaw}/timePickerUtils.js +0 -0
- /package/esm/{dropdown/stateReducer/stateAction.js → commonHelpers/types/exclusive.js} +0 -0
- /package/esm/{groupsFilter/stateReducer/stateAction.js → commonHelpers/types/without.js} +0 -0
- /package/esm/{groupsFilter/uiStateReducer/uiStateAction.js → dateInputRaw/types.js} +0 -0
- /package/esm/{dateInput → dateInputRaw/utils}/cutSeconds.d.ts +0 -0
- /package/esm/{dateInput → dateInputRaw/utils}/cutSeconds.js +0 -0
- /package/esm/{dateInput → dateInputRaw/utils}/getLabel.d.ts +0 -0
- /package/esm/{dateRange → dateRangeRaw}/utils/areMapsEqual.js +0 -0
- /package/esm/{dropdown → dropdownRaw}/dropdownList.d.ts +0 -0
- /package/esm/{dropdown → dropdownRaw}/dropdownList.js +0 -0
- /package/esm/{dropdown → dropdownRaw}/stateReducer/stateActionType.d.ts +0 -0
- /package/esm/{dropdown → dropdownRaw}/stateReducer/stateActionType.js +0 -0
- /package/esm/{dropdown → dropdownRaw}/stateReducer/stateReducerHelper.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterAdjustmentState.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterAdjustmentState.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterAdvancedValue.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterAdvancedValue.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterBox.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterBox.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterCommon.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterCounter.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterCurrentlySelectedState.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterCurrentlySelectedState.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterHelper.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterHelper.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterInitialState.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterInitialState.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterLabelBox.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterLabelBox.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterMenu.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterMenu.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterStatesHelper.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsFilterStatesHelper.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsHelper.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/groupsHelper.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/stateReducer/stateAction.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/stateReducer/stateActionType.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/stateReducer/stateActionType.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/stateReducer/stateReducer.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/stateReducer/stateReducer.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/stateReducer/stateReducerHelper.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/stateReducer/stateReducerHelper.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/uiStateReducer/uiStateAction.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/uiStateReducer/uiStateActionType.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/uiStateReducer/uiStateActionType.js +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/uiStateReducer/uiStateReducer.d.ts +0 -0
- /package/esm/{groupsFilter → groupsFilterRaw}/uiStateReducer/uiStateReducer.js +0 -0
- /package/esm/{range → rangeRaw/utils}/rangeHelper.js +0 -0
- /package/esm/{timePicker → timePickerRaw}/components/timeSelect/timeSelect.d.ts +0 -0
- /package/esm/{timePicker → timePickerRaw}/components/timeSelect/timeSelect.js +0 -0
- /package/esm/{timePicker → timePickerRaw}/timePickerUtils.d.ts +0 -0
- /package/esm/{timePicker → timePickerRaw}/timePickerUtils.js +0 -0
|
@@ -0,0 +1,1093 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.mockZonesArr = exports.mockUsersArr = void 0;
|
|
4
|
+
exports.mockUsersArr = [
|
|
5
|
+
{
|
|
6
|
+
"id": "b4",
|
|
7
|
+
"name": "a@gmail.com",
|
|
8
|
+
"firstName": "Administrator",
|
|
9
|
+
"lastName": "",
|
|
10
|
+
"comment": "",
|
|
11
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
12
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
13
|
+
"employeeNo": "",
|
|
14
|
+
"phoneNumber": "",
|
|
15
|
+
"phoneNumberExtension": "",
|
|
16
|
+
"countryCode": "",
|
|
17
|
+
"lastAccessDate": "2024-02-27T08:50:50.130Z",
|
|
18
|
+
"securityGroups": [
|
|
19
|
+
{
|
|
20
|
+
"id": "GroupEverythingSecurityId",
|
|
21
|
+
"name": "Administrator"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"companyGroups": [
|
|
25
|
+
{
|
|
26
|
+
"id": "GroupCompanyId",
|
|
27
|
+
"name": "Company group"
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"driverGroups": [],
|
|
31
|
+
"link": "#user,id:b4",
|
|
32
|
+
"keys": [],
|
|
33
|
+
"isDriver": false,
|
|
34
|
+
"isEditable": true,
|
|
35
|
+
"isExpired": false,
|
|
36
|
+
"isHistoric": false,
|
|
37
|
+
"isDriverOnly": false
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"id": "b6",
|
|
41
|
+
"name": "BobGoodman@example.com",
|
|
42
|
+
"firstName": "Bob",
|
|
43
|
+
"lastName": "Goodman",
|
|
44
|
+
"comment": "",
|
|
45
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
46
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
47
|
+
"employeeNo": "",
|
|
48
|
+
"phoneNumber": "",
|
|
49
|
+
"phoneNumberExtension": "",
|
|
50
|
+
"countryCode": "",
|
|
51
|
+
"lastAccessDate": "2024-01-23T11:18:30.691Z",
|
|
52
|
+
"securityGroups": [
|
|
53
|
+
{
|
|
54
|
+
"id": "GroupEverythingSecurityId",
|
|
55
|
+
"name": "Administrator"
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
"companyGroups": [
|
|
59
|
+
{
|
|
60
|
+
"id": "GroupCompanyId",
|
|
61
|
+
"name": "Company group"
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"driverGroups": [
|
|
65
|
+
{
|
|
66
|
+
"id": "b2F7E",
|
|
67
|
+
"name": "Delivery"
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"link": "#user,id:b6",
|
|
71
|
+
"keys": [
|
|
72
|
+
{
|
|
73
|
+
"driverKeyType": "Nfc",
|
|
74
|
+
"keyId": "0000000020c85582",
|
|
75
|
+
"serialNumber": "T00002",
|
|
76
|
+
"id": "abrWFzZ_iR0KaHocKHXmXqA"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"isDriver": true,
|
|
80
|
+
"isEditable": true,
|
|
81
|
+
"isExpired": false,
|
|
82
|
+
"isHistoric": false,
|
|
83
|
+
"isDriverOnly": false
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"id": "b7",
|
|
87
|
+
"name": "BobRichards@example.com",
|
|
88
|
+
"firstName": "Bob",
|
|
89
|
+
"lastName": "Richards",
|
|
90
|
+
"comment": "",
|
|
91
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
92
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
93
|
+
"employeeNo": "",
|
|
94
|
+
"phoneNumber": "",
|
|
95
|
+
"phoneNumberExtension": "",
|
|
96
|
+
"countryCode": "",
|
|
97
|
+
"lastAccessDate": "2024-01-23T11:18:30.721Z",
|
|
98
|
+
"securityGroups": [
|
|
99
|
+
{
|
|
100
|
+
"id": "GroupEverythingSecurityId",
|
|
101
|
+
"name": "Administrator"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"companyGroups": [
|
|
105
|
+
{
|
|
106
|
+
"id": "GroupCompanyId",
|
|
107
|
+
"name": "Company group"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"driverGroups": [
|
|
111
|
+
{
|
|
112
|
+
"id": "b2F7D",
|
|
113
|
+
"name": "Manager"
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"link": "#user,id:b7",
|
|
117
|
+
"keys": [
|
|
118
|
+
{
|
|
119
|
+
"driverKeyType": "Usb",
|
|
120
|
+
"keyId": "0000000005f5e101",
|
|
121
|
+
"serialNumber": "0000000005f5e101",
|
|
122
|
+
"id": "amhvWPlUwi0CbGz2iuQXsFg"
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"isDriver": true,
|
|
126
|
+
"isEditable": true,
|
|
127
|
+
"isExpired": false,
|
|
128
|
+
"isHistoric": false,
|
|
129
|
+
"isDriverOnly": false
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"id": "bD",
|
|
133
|
+
"name": "EdTaylor@example.com",
|
|
134
|
+
"firstName": "Ed",
|
|
135
|
+
"lastName": "Taylor",
|
|
136
|
+
"comment": "",
|
|
137
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
138
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
139
|
+
"employeeNo": "",
|
|
140
|
+
"phoneNumber": "",
|
|
141
|
+
"phoneNumberExtension": "",
|
|
142
|
+
"countryCode": "",
|
|
143
|
+
"lastAccessDate": "2024-01-23T11:18:31.013Z",
|
|
144
|
+
"securityGroups": [
|
|
145
|
+
{
|
|
146
|
+
"id": "GroupEverythingSecurityId",
|
|
147
|
+
"name": "Administrator"
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"companyGroups": [
|
|
151
|
+
{
|
|
152
|
+
"id": "GroupCompanyId",
|
|
153
|
+
"name": "Company group"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"driverGroups": [
|
|
157
|
+
{
|
|
158
|
+
"id": "b2F7D",
|
|
159
|
+
"name": "Manager"
|
|
160
|
+
}
|
|
161
|
+
],
|
|
162
|
+
"link": "#user,id:bD",
|
|
163
|
+
"keys": [
|
|
164
|
+
{
|
|
165
|
+
"driverKeyType": "Usb",
|
|
166
|
+
"keyId": "0000000005f5e107",
|
|
167
|
+
"serialNumber": "0000000005f5e107",
|
|
168
|
+
"id": "a58Z4gZ-hkkeBcN3C9YI67g"
|
|
169
|
+
}
|
|
170
|
+
],
|
|
171
|
+
"isDriver": true,
|
|
172
|
+
"isEditable": true,
|
|
173
|
+
"isExpired": false,
|
|
174
|
+
"isHistoric": false,
|
|
175
|
+
"isDriverOnly": false
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"id": "b9",
|
|
179
|
+
"name": "EricGriffin@example.com",
|
|
180
|
+
"firstName": "Eric",
|
|
181
|
+
"lastName": "Griffin",
|
|
182
|
+
"comment": "",
|
|
183
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
184
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
185
|
+
"employeeNo": "",
|
|
186
|
+
"phoneNumber": "",
|
|
187
|
+
"phoneNumberExtension": "",
|
|
188
|
+
"countryCode": "",
|
|
189
|
+
"lastAccessDate": "2024-01-23T11:18:30.773Z",
|
|
190
|
+
"securityGroups": [
|
|
191
|
+
{
|
|
192
|
+
"id": "GroupEverythingSecurityId",
|
|
193
|
+
"name": "Administrator"
|
|
194
|
+
}
|
|
195
|
+
],
|
|
196
|
+
"companyGroups": [
|
|
197
|
+
{
|
|
198
|
+
"id": "GroupCompanyId",
|
|
199
|
+
"name": "Company group"
|
|
200
|
+
}
|
|
201
|
+
],
|
|
202
|
+
"driverGroups": [
|
|
203
|
+
{
|
|
204
|
+
"id": "b2F7D",
|
|
205
|
+
"name": "Manager"
|
|
206
|
+
}
|
|
207
|
+
],
|
|
208
|
+
"link": "#user,id:b9",
|
|
209
|
+
"keys": [
|
|
210
|
+
{
|
|
211
|
+
"driverKeyType": "Usb",
|
|
212
|
+
"keyId": "0000000005f5e103",
|
|
213
|
+
"serialNumber": "0000000005f5e103",
|
|
214
|
+
"id": "al4JM64z5C0K_TLCZB5hG3w"
|
|
215
|
+
}
|
|
216
|
+
],
|
|
217
|
+
"isDriver": true,
|
|
218
|
+
"isEditable": true,
|
|
219
|
+
"isExpired": false,
|
|
220
|
+
"isHistoric": false,
|
|
221
|
+
"isDriverOnly": false
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"id": "bB",
|
|
225
|
+
"name": "HarrySmith@example.com",
|
|
226
|
+
"firstName": "Harry",
|
|
227
|
+
"lastName": "Smith",
|
|
228
|
+
"comment": "",
|
|
229
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
230
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
231
|
+
"employeeNo": "",
|
|
232
|
+
"phoneNumber": "",
|
|
233
|
+
"phoneNumberExtension": "",
|
|
234
|
+
"countryCode": "",
|
|
235
|
+
"lastAccessDate": "2024-01-23T11:18:30.823Z",
|
|
236
|
+
"securityGroups": [
|
|
237
|
+
{
|
|
238
|
+
"id": "GroupEverythingSecurityId",
|
|
239
|
+
"name": "Administrator"
|
|
240
|
+
}
|
|
241
|
+
],
|
|
242
|
+
"companyGroups": [
|
|
243
|
+
{
|
|
244
|
+
"id": "GroupCompanyId",
|
|
245
|
+
"name": "Company group"
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
"driverGroups": [
|
|
249
|
+
{
|
|
250
|
+
"id": "b2F7D",
|
|
251
|
+
"name": "Manager"
|
|
252
|
+
}
|
|
253
|
+
],
|
|
254
|
+
"link": "#user,id:bB",
|
|
255
|
+
"keys": [
|
|
256
|
+
{
|
|
257
|
+
"driverKeyType": "Usb",
|
|
258
|
+
"keyId": "0000000005f5e105",
|
|
259
|
+
"serialNumber": "0000000005f5e105",
|
|
260
|
+
"id": "a33YbS7RkEUizTUeuY3oZ3g"
|
|
261
|
+
}
|
|
262
|
+
],
|
|
263
|
+
"isDriver": true,
|
|
264
|
+
"isEditable": true,
|
|
265
|
+
"isExpired": false,
|
|
266
|
+
"isHistoric": false,
|
|
267
|
+
"isDriverOnly": false
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"id": "b5",
|
|
271
|
+
"name": "JohnMcGreggor@example.com",
|
|
272
|
+
"firstName": "John",
|
|
273
|
+
"lastName": "McGreggor",
|
|
274
|
+
"comment": "",
|
|
275
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
276
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
277
|
+
"employeeNo": "",
|
|
278
|
+
"phoneNumber": "",
|
|
279
|
+
"phoneNumberExtension": "",
|
|
280
|
+
"countryCode": "",
|
|
281
|
+
"lastAccessDate": "2024-01-23T11:18:30.655Z",
|
|
282
|
+
"securityGroups": [
|
|
283
|
+
{
|
|
284
|
+
"id": "GroupEverythingSecurityId",
|
|
285
|
+
"name": "Administrator"
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
"companyGroups": [
|
|
289
|
+
{
|
|
290
|
+
"id": "GroupCompanyId",
|
|
291
|
+
"name": "Company group"
|
|
292
|
+
}
|
|
293
|
+
],
|
|
294
|
+
"driverGroups": [
|
|
295
|
+
{
|
|
296
|
+
"id": "b2F7D",
|
|
297
|
+
"name": "Manager"
|
|
298
|
+
}
|
|
299
|
+
],
|
|
300
|
+
"link": "#user,id:b5",
|
|
301
|
+
"keys": [
|
|
302
|
+
{
|
|
303
|
+
"driverKeyType": "Usb",
|
|
304
|
+
"keyId": "0000000005f5e100",
|
|
305
|
+
"serialNumber": "0000000005f5e100",
|
|
306
|
+
"id": "aL96SGeM1_UK-U4FNVHo4Ig"
|
|
307
|
+
}
|
|
308
|
+
],
|
|
309
|
+
"isDriver": true,
|
|
310
|
+
"isEditable": true,
|
|
311
|
+
"isExpired": false,
|
|
312
|
+
"isHistoric": false,
|
|
313
|
+
"isDriverOnly": false
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"id": "b11",
|
|
317
|
+
"name": "SdkTestEmailDFVRK",
|
|
318
|
+
"firstName": "NTRUYQXGGJPCEYO",
|
|
319
|
+
"lastName": "GLTWSUAOAPUQXLU",
|
|
320
|
+
"comment": "SDK Compatibility Test User Data",
|
|
321
|
+
"activeFrom": "2011-01-04T10:20:36.212Z",
|
|
322
|
+
"activeTo": "2049-10-22T11:03:26.104Z",
|
|
323
|
+
"employeeNo": "RVIUMSIVGZODKQWVRXQWHWLKCRLSTPPCVYDKHWAZZNIRTTEKBA",
|
|
324
|
+
"phoneNumber": "",
|
|
325
|
+
"phoneNumberExtension": "",
|
|
326
|
+
"countryCode": "",
|
|
327
|
+
"lastAccessDate": "2024-01-23T11:18:57.158Z",
|
|
328
|
+
"securityGroups": [
|
|
329
|
+
{
|
|
330
|
+
"id": "GroupEverythingSecurityId",
|
|
331
|
+
"name": "Administrator"
|
|
332
|
+
}
|
|
333
|
+
],
|
|
334
|
+
"companyGroups": [
|
|
335
|
+
{
|
|
336
|
+
"id": "GroupCompanyId",
|
|
337
|
+
"name": "Company group"
|
|
338
|
+
}
|
|
339
|
+
],
|
|
340
|
+
"driverGroups": [],
|
|
341
|
+
"link": "#user,id:b11",
|
|
342
|
+
"keys": [],
|
|
343
|
+
"isDriver": false,
|
|
344
|
+
"isEditable": true,
|
|
345
|
+
"isExpired": false,
|
|
346
|
+
"isHistoric": false,
|
|
347
|
+
"isDriverOnly": false
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"id": "bF",
|
|
351
|
+
"name": "SdkTestEmailGQEXY",
|
|
352
|
+
"firstName": "ASWPIXEVIIDXAYP",
|
|
353
|
+
"lastName": "JUCNJYCZSLYBIEL",
|
|
354
|
+
"comment": "SDK Compatibility Test User Data",
|
|
355
|
+
"activeFrom": "2016-09-07T06:31:13.884Z",
|
|
356
|
+
"activeTo": "2049-03-04T19:49:56.261Z",
|
|
357
|
+
"employeeNo": "SJIJKJIMTVGTCHLFGZEHOSOBASCGIWIMMRXOLYBWICTUXXWQIB",
|
|
358
|
+
"phoneNumber": "",
|
|
359
|
+
"phoneNumberExtension": "",
|
|
360
|
+
"countryCode": "",
|
|
361
|
+
"lastAccessDate": "2024-01-23T11:18:56.244Z",
|
|
362
|
+
"securityGroups": [
|
|
363
|
+
{
|
|
364
|
+
"id": "GroupDriveUserSecurityId",
|
|
365
|
+
"name": "Drive App user"
|
|
366
|
+
}
|
|
367
|
+
],
|
|
368
|
+
"companyGroups": [
|
|
369
|
+
{
|
|
370
|
+
"id": "GroupCompanyId",
|
|
371
|
+
"name": "Company group"
|
|
372
|
+
}
|
|
373
|
+
],
|
|
374
|
+
"driverGroups": [
|
|
375
|
+
{
|
|
376
|
+
"id": "GroupCompanyId",
|
|
377
|
+
"name": "Company group"
|
|
378
|
+
}
|
|
379
|
+
],
|
|
380
|
+
"link": "#user,id:bF",
|
|
381
|
+
"keys": [
|
|
382
|
+
{
|
|
383
|
+
"driverKeyType": "Usb",
|
|
384
|
+
"keyId": "000000002a30ef53",
|
|
385
|
+
"serialNumber": "000000002a30ef53",
|
|
386
|
+
"id": "aYzIH6PgIbEeA-sCWy4sb0w"
|
|
387
|
+
}
|
|
388
|
+
],
|
|
389
|
+
"isDriver": true,
|
|
390
|
+
"isEditable": true,
|
|
391
|
+
"isExpired": false,
|
|
392
|
+
"isHistoric": false,
|
|
393
|
+
"isDriverOnly": false
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"id": "bE",
|
|
397
|
+
"name": "SdkTestEmailJECSV",
|
|
398
|
+
"firstName": "CNJHKLBRUFQTDFR",
|
|
399
|
+
"lastName": "FWKOVPSCTNHACVD",
|
|
400
|
+
"comment": "SDK Compatibility Test User Data",
|
|
401
|
+
"activeFrom": "2012-10-16T18:48:04.469Z",
|
|
402
|
+
"activeTo": "2030-08-01T06:44:47.977Z",
|
|
403
|
+
"employeeNo": "ZFHDCGKTEMTZRBSZBTCAPPOKKUTTIVZDPXMCYEMNACEJRCJIUB",
|
|
404
|
+
"phoneNumber": "",
|
|
405
|
+
"phoneNumberExtension": "",
|
|
406
|
+
"countryCode": "",
|
|
407
|
+
"lastAccessDate": "2024-01-23T11:18:56.203Z",
|
|
408
|
+
"securityGroups": [
|
|
409
|
+
{
|
|
410
|
+
"id": "GroupEverythingSecurityId",
|
|
411
|
+
"name": "Administrator"
|
|
412
|
+
}
|
|
413
|
+
],
|
|
414
|
+
"companyGroups": [
|
|
415
|
+
{
|
|
416
|
+
"id": "GroupCompanyId",
|
|
417
|
+
"name": "Company group"
|
|
418
|
+
}
|
|
419
|
+
],
|
|
420
|
+
"driverGroups": [],
|
|
421
|
+
"link": "#user,id:bE",
|
|
422
|
+
"keys": [],
|
|
423
|
+
"isDriver": false,
|
|
424
|
+
"isEditable": true,
|
|
425
|
+
"isExpired": false,
|
|
426
|
+
"isHistoric": false,
|
|
427
|
+
"isDriverOnly": false
|
|
428
|
+
}
|
|
429
|
+
];
|
|
430
|
+
exports.mockZonesArr = [
|
|
431
|
+
{
|
|
432
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
433
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
434
|
+
"comment": "",
|
|
435
|
+
"displayed": true,
|
|
436
|
+
"externalReference": "",
|
|
437
|
+
"fillColor": {
|
|
438
|
+
"a": 192,
|
|
439
|
+
"b": 0,
|
|
440
|
+
"g": 69,
|
|
441
|
+
"r": 255
|
|
442
|
+
},
|
|
443
|
+
"id": "b9",
|
|
444
|
+
"mustIdentifyStops": true,
|
|
445
|
+
"name": "Bronte harbor",
|
|
446
|
+
"points": [
|
|
447
|
+
{
|
|
448
|
+
"x": -79.70961,
|
|
449
|
+
"y": 43.39363
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"x": -79.70913,
|
|
453
|
+
"y": 43.39341
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"x": -79.70668,
|
|
457
|
+
"y": 43.39317
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"x": -79.70673,
|
|
461
|
+
"y": 43.39365
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"x": -79.70657,
|
|
465
|
+
"y": 43.39381
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"x": -79.70631,
|
|
469
|
+
"y": 43.39378
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"x": -79.70505,
|
|
473
|
+
"y": 43.39489
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"x": -79.70482,
|
|
477
|
+
"y": 43.39477
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"x": -79.70424,
|
|
481
|
+
"y": 43.39533
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"x": -79.70442,
|
|
485
|
+
"y": 43.39547
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"x": -79.70303,
|
|
489
|
+
"y": 43.39673
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"x": -79.7039,
|
|
493
|
+
"y": 43.39723
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"x": -79.70405,
|
|
497
|
+
"y": 43.39703
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"x": -79.70466,
|
|
501
|
+
"y": 43.39659
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"x": -79.70527,
|
|
505
|
+
"y": 43.3962
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"x": -79.70634,
|
|
509
|
+
"y": 43.39539
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"x": -79.707,
|
|
513
|
+
"y": 43.39479
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"x": -79.70801,
|
|
517
|
+
"y": 43.3938
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"x": -79.70949,
|
|
521
|
+
"y": 43.39394
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"x": -79.70961,
|
|
525
|
+
"y": 43.39363
|
|
526
|
+
}
|
|
527
|
+
],
|
|
528
|
+
"zoneTypes": [
|
|
529
|
+
"ZoneTypeCustomerId"
|
|
530
|
+
],
|
|
531
|
+
"groups": [
|
|
532
|
+
{
|
|
533
|
+
"id": "GroupCompanyId"
|
|
534
|
+
}
|
|
535
|
+
],
|
|
536
|
+
"geometryType": "Polygon"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
540
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
541
|
+
"comment": "",
|
|
542
|
+
"displayed": true,
|
|
543
|
+
"externalReference": "",
|
|
544
|
+
"fillColor": {
|
|
545
|
+
"a": 192,
|
|
546
|
+
"b": 0,
|
|
547
|
+
"g": 69,
|
|
548
|
+
"r": 255
|
|
549
|
+
},
|
|
550
|
+
"id": "b5",
|
|
551
|
+
"mustIdentifyStops": true,
|
|
552
|
+
"name": "Buffalo International",
|
|
553
|
+
"points": [
|
|
554
|
+
{
|
|
555
|
+
"x": -78.74408,
|
|
556
|
+
"y": 42.94906
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"x": -78.7373,
|
|
560
|
+
"y": 42.94888
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"x": -78.72742,
|
|
564
|
+
"y": 42.94423
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"x": -78.72056,
|
|
568
|
+
"y": 42.95044
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"x": -78.71404,
|
|
572
|
+
"y": 42.95044
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"x": -78.72339,
|
|
576
|
+
"y": 42.94196
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"x": -78.71661,
|
|
580
|
+
"y": 42.93725
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"x": -78.71575,
|
|
584
|
+
"y": 42.93474
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"x": -78.7439,
|
|
588
|
+
"y": 42.92952
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"x": -78.74365,
|
|
592
|
+
"y": 42.93342
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"x": -78.74322,
|
|
596
|
+
"y": 42.94146
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"x": -78.7391,
|
|
600
|
+
"y": 42.94171
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"x": -78.73918,
|
|
604
|
+
"y": 42.94391
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"x": -78.74425,
|
|
608
|
+
"y": 42.94636
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"x": -78.74408,
|
|
612
|
+
"y": 42.94906
|
|
613
|
+
}
|
|
614
|
+
],
|
|
615
|
+
"zoneTypes": [
|
|
616
|
+
"ZoneTypeCustomerId"
|
|
617
|
+
],
|
|
618
|
+
"groups": [
|
|
619
|
+
{
|
|
620
|
+
"id": "GroupCompanyId"
|
|
621
|
+
}
|
|
622
|
+
],
|
|
623
|
+
"geometryType": "Polygon"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
627
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
628
|
+
"comment": "",
|
|
629
|
+
"displayed": true,
|
|
630
|
+
"externalReference": "",
|
|
631
|
+
"fillColor": {
|
|
632
|
+
"a": 192,
|
|
633
|
+
"b": 0,
|
|
634
|
+
"g": 69,
|
|
635
|
+
"r": 255
|
|
636
|
+
},
|
|
637
|
+
"id": "bA",
|
|
638
|
+
"mustIdentifyStops": true,
|
|
639
|
+
"name": "Gas station",
|
|
640
|
+
"points": [
|
|
641
|
+
{
|
|
642
|
+
"x": -79.7047,
|
|
643
|
+
"y": 43.45
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"x": -79.705,
|
|
647
|
+
"y": 43.4498
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"x": -79.7044,
|
|
651
|
+
"y": 43.4494
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"x": -79.704,
|
|
655
|
+
"y": 43.4497
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"x": -79.7038,
|
|
659
|
+
"y": 43.4497
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"x": -79.7037,
|
|
663
|
+
"y": 43.4499
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"x": -79.7044,
|
|
667
|
+
"y": 43.4503
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"x": -79.7045,
|
|
671
|
+
"y": 43.4502
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"x": -79.7044,
|
|
675
|
+
"y": 43.4501
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"x": -79.7046,
|
|
679
|
+
"y": 43.45
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"x": -79.7047,
|
|
683
|
+
"y": 43.45
|
|
684
|
+
}
|
|
685
|
+
],
|
|
686
|
+
"zoneTypes": [
|
|
687
|
+
"ZoneTypeCustomerId"
|
|
688
|
+
],
|
|
689
|
+
"groups": [
|
|
690
|
+
{
|
|
691
|
+
"id": "GroupCompanyId"
|
|
692
|
+
}
|
|
693
|
+
],
|
|
694
|
+
"geometryType": "Polygon"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
698
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
699
|
+
"comment": "",
|
|
700
|
+
"displayed": true,
|
|
701
|
+
"externalReference": "",
|
|
702
|
+
"fillColor": {
|
|
703
|
+
"a": 192,
|
|
704
|
+
"b": 0,
|
|
705
|
+
"g": 69,
|
|
706
|
+
"r": 255
|
|
707
|
+
},
|
|
708
|
+
"id": "b7",
|
|
709
|
+
"mustIdentifyStops": true,
|
|
710
|
+
"name": "Geotab parking",
|
|
711
|
+
"points": [
|
|
712
|
+
{
|
|
713
|
+
"x": -79.71268,
|
|
714
|
+
"y": 43.43647
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"x": -79.71247,
|
|
718
|
+
"y": 43.43629
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"x": -79.71118,
|
|
722
|
+
"y": 43.43736
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"x": -79.71081,
|
|
726
|
+
"y": 43.43769
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"x": -79.7122,
|
|
730
|
+
"y": 43.43847
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"x": -79.71386,
|
|
734
|
+
"y": 43.43735
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"x": -79.71368,
|
|
738
|
+
"y": 43.43718
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"x": -79.71355,
|
|
742
|
+
"y": 43.43725
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"x": -79.71342,
|
|
746
|
+
"y": 43.43713
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"x": -79.71236,
|
|
750
|
+
"y": 43.43789
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"x": -79.71252,
|
|
754
|
+
"y": 43.43799
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"x": -79.71236,
|
|
758
|
+
"y": 43.43807
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"x": -79.71178,
|
|
762
|
+
"y": 43.43767
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"x": -79.71271,
|
|
766
|
+
"y": 43.43697
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"x": -79.71271,
|
|
770
|
+
"y": 43.43684
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"x": -79.71246,
|
|
774
|
+
"y": 43.43665
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"x": -79.71268,
|
|
778
|
+
"y": 43.43647
|
|
779
|
+
}
|
|
780
|
+
],
|
|
781
|
+
"zoneTypes": [
|
|
782
|
+
"ZoneTypeCustomerId"
|
|
783
|
+
],
|
|
784
|
+
"groups": [
|
|
785
|
+
{
|
|
786
|
+
"id": "GroupCompanyId"
|
|
787
|
+
}
|
|
788
|
+
],
|
|
789
|
+
"geometryType": "Polygon"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
793
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
794
|
+
"comment": "",
|
|
795
|
+
"displayed": true,
|
|
796
|
+
"externalReference": "",
|
|
797
|
+
"fillColor": {
|
|
798
|
+
"a": 192,
|
|
799
|
+
"b": 0,
|
|
800
|
+
"g": 69,
|
|
801
|
+
"r": 255
|
|
802
|
+
},
|
|
803
|
+
"id": "b3",
|
|
804
|
+
"mustIdentifyStops": true,
|
|
805
|
+
"name": "Joe's Electrics",
|
|
806
|
+
"points": [
|
|
807
|
+
{
|
|
808
|
+
"x": -79.69397,
|
|
809
|
+
"y": 43.70876
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"x": -79.69654,
|
|
813
|
+
"y": 43.70684
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"x": -79.69363,
|
|
817
|
+
"y": 43.7051
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"x": -79.69105,
|
|
821
|
+
"y": 43.7069
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"x": -79.69397,
|
|
825
|
+
"y": 43.70876
|
|
826
|
+
}
|
|
827
|
+
],
|
|
828
|
+
"zoneTypes": [
|
|
829
|
+
"ZoneTypeCustomerId"
|
|
830
|
+
],
|
|
831
|
+
"groups": [
|
|
832
|
+
{
|
|
833
|
+
"id": "GroupCompanyId"
|
|
834
|
+
}
|
|
835
|
+
],
|
|
836
|
+
"geometryType": "Polygon"
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
840
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
841
|
+
"comment": "",
|
|
842
|
+
"displayed": true,
|
|
843
|
+
"externalReference": "",
|
|
844
|
+
"fillColor": {
|
|
845
|
+
"a": 192,
|
|
846
|
+
"b": 0,
|
|
847
|
+
"g": 69,
|
|
848
|
+
"r": 255
|
|
849
|
+
},
|
|
850
|
+
"id": "b6",
|
|
851
|
+
"mustIdentifyStops": true,
|
|
852
|
+
"name": "Lakeshore Walker's Line",
|
|
853
|
+
"points": [
|
|
854
|
+
{
|
|
855
|
+
"x": -79.76201,
|
|
856
|
+
"y": 43.35065
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"x": -79.7637,
|
|
860
|
+
"y": 43.34886
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"x": -79.75952,
|
|
864
|
+
"y": 43.34711
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"x": -79.75662,
|
|
868
|
+
"y": 43.34976
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"x": -79.75851,
|
|
872
|
+
"y": 43.35095
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"x": -79.76201,
|
|
876
|
+
"y": 43.35065
|
|
877
|
+
}
|
|
878
|
+
],
|
|
879
|
+
"zoneTypes": [
|
|
880
|
+
"ZoneTypeCustomerId"
|
|
881
|
+
],
|
|
882
|
+
"groups": [
|
|
883
|
+
{
|
|
884
|
+
"id": "GroupCompanyId"
|
|
885
|
+
}
|
|
886
|
+
],
|
|
887
|
+
"geometryType": "Polygon"
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
891
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
892
|
+
"comment": "",
|
|
893
|
+
"displayed": true,
|
|
894
|
+
"externalReference": "",
|
|
895
|
+
"fillColor": {
|
|
896
|
+
"a": 192,
|
|
897
|
+
"b": 0,
|
|
898
|
+
"g": 69,
|
|
899
|
+
"r": 255
|
|
900
|
+
},
|
|
901
|
+
"id": "b8",
|
|
902
|
+
"mustIdentifyStops": true,
|
|
903
|
+
"name": "OPCC",
|
|
904
|
+
"points": [
|
|
905
|
+
{
|
|
906
|
+
"x": -79.70901,
|
|
907
|
+
"y": 43.44159
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"x": -79.7075,
|
|
911
|
+
"y": 43.44081
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"x": -79.70788,
|
|
915
|
+
"y": 43.44031
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"x": -79.70947,
|
|
919
|
+
"y": 43.44109
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"x": -79.70901,
|
|
923
|
+
"y": 43.44159
|
|
924
|
+
}
|
|
925
|
+
],
|
|
926
|
+
"zoneTypes": [
|
|
927
|
+
"ZoneTypeCustomerId"
|
|
928
|
+
],
|
|
929
|
+
"groups": [
|
|
930
|
+
{
|
|
931
|
+
"id": "GroupCompanyId"
|
|
932
|
+
}
|
|
933
|
+
],
|
|
934
|
+
"geometryType": "Polygon"
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"activeFrom": "1986-01-01T00:00:00.000Z",
|
|
938
|
+
"activeTo": "2050-01-01T00:00:00.000Z",
|
|
939
|
+
"comment": "",
|
|
940
|
+
"displayed": true,
|
|
941
|
+
"externalReference": "",
|
|
942
|
+
"fillColor": {
|
|
943
|
+
"a": 192,
|
|
944
|
+
"b": 0,
|
|
945
|
+
"g": 69,
|
|
946
|
+
"r": 255
|
|
947
|
+
},
|
|
948
|
+
"id": "b1",
|
|
949
|
+
"mustIdentifyStops": true,
|
|
950
|
+
"name": "Pearson International",
|
|
951
|
+
"points": [
|
|
952
|
+
{
|
|
953
|
+
"x": -79.64247,
|
|
954
|
+
"y": 43.70287
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"x": -79.6629,
|
|
958
|
+
"y": 43.68462
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"x": -79.65929,
|
|
962
|
+
"y": 43.68164
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"x": -79.67045,
|
|
966
|
+
"y": 43.6732
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"x": -79.66273,
|
|
970
|
+
"y": 43.66761
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"x": -79.65895,
|
|
974
|
+
"y": 43.67122
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"x": -79.6483,
|
|
978
|
+
"y": 43.67283
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"x": -79.63148,
|
|
982
|
+
"y": 43.66066
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"x": -79.63594,
|
|
986
|
+
"y": 43.65631
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"x": -79.63097,
|
|
990
|
+
"y": 43.65246
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"x": -79.62462,
|
|
994
|
+
"y": 43.65619
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"x": -79.59217,
|
|
998
|
+
"y": 43.66972
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"x": -79.59509,
|
|
1002
|
+
"y": 43.6763
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"x": -79.59372,
|
|
1006
|
+
"y": 43.67966
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
"x": -79.60281,
|
|
1010
|
+
"y": 43.68562
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"x": -79.62427,
|
|
1014
|
+
"y": 43.68934
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
"x": -79.64247,
|
|
1018
|
+
"y": 43.70287
|
|
1019
|
+
}
|
|
1020
|
+
],
|
|
1021
|
+
"zoneTypes": [
|
|
1022
|
+
"ZoneTypeCustomerId"
|
|
1023
|
+
],
|
|
1024
|
+
"groups": [
|
|
1025
|
+
{
|
|
1026
|
+
"id": "GroupCompanyId"
|
|
1027
|
+
}
|
|
1028
|
+
],
|
|
1029
|
+
"geometryType": "Polygon"
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"activeFrom": "2023-10-22T01:53:55.865Z",
|
|
1033
|
+
"activeTo": "2023-10-22T07:27:15.865Z",
|
|
1034
|
+
"comment": "Zone comment - SDK Compatibility Test Data",
|
|
1035
|
+
"displayed": true,
|
|
1036
|
+
"externalReference": "",
|
|
1037
|
+
"fillColor": {
|
|
1038
|
+
"a": 255,
|
|
1039
|
+
"b": 0,
|
|
1040
|
+
"g": 255,
|
|
1041
|
+
"r": 0
|
|
1042
|
+
},
|
|
1043
|
+
"id": "b7DB",
|
|
1044
|
+
"mustIdentifyStops": false,
|
|
1045
|
+
"name": "SDK Compatibility Test Zones Data",
|
|
1046
|
+
"points": [
|
|
1047
|
+
{
|
|
1048
|
+
"x": -63,
|
|
1049
|
+
"y": 82
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"x": -174,
|
|
1053
|
+
"y": 14
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"x": -56,
|
|
1057
|
+
"y": 29
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"x": -126,
|
|
1061
|
+
"y": 28
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"x": 60,
|
|
1065
|
+
"y": -34
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"x": 107,
|
|
1069
|
+
"y": 7
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"x": -40,
|
|
1073
|
+
"y": -4
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"x": -63,
|
|
1077
|
+
"y": 82
|
|
1078
|
+
}
|
|
1079
|
+
],
|
|
1080
|
+
"zoneTypes": [
|
|
1081
|
+
{
|
|
1082
|
+
"id": "b5"
|
|
1083
|
+
},
|
|
1084
|
+
"ZoneTypeCustomerId"
|
|
1085
|
+
],
|
|
1086
|
+
"groups": [
|
|
1087
|
+
{
|
|
1088
|
+
"id": "GroupCompanyId"
|
|
1089
|
+
}
|
|
1090
|
+
],
|
|
1091
|
+
"geometryType": "Polygon"
|
|
1092
|
+
}
|
|
1093
|
+
];
|