@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,36 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { useMobile } from "../../commonHelpers/hooks/useMobile";
|
|
4
|
+
import { FormSection } from "../../formSection/formSection";
|
|
5
|
+
import { getAllowedComponents } from "../utils/getAllowedComponents";
|
|
6
|
+
import { applyLayoutPosition as applyMobileLayoutPosition } from "../utils/applyLayoutPosition/applyLayoutPosition";
|
|
7
|
+
import { getFormSection } from "../utils/getFormSection";
|
|
8
|
+
import { FormSectionInner } from "../../formSection/components/formSectionInner";
|
|
9
|
+
import { getComponentsWithClasses } from "../utils/getComponentsWithClasses";
|
|
10
|
+
import { useColumns } from "./useColumns";
|
|
11
|
+
import { useSectionType } from "../../formGroup/hooks/useSectionType";
|
|
12
|
+
// 1. Check for FormStepper
|
|
13
|
+
// 2. Check for Banner
|
|
14
|
+
// 3. Rest logic
|
|
15
|
+
export const useComponents = ({ children, title, secondary, setCurrent, steps, isNextDisabled, onCancel, onContinue, onSubmit, onPrevious, current }) => {
|
|
16
|
+
const stepperProps = { setCurrent, steps, isNextDisabled, onCancel, onContinue, onSubmit, onPrevious, current };
|
|
17
|
+
const isMobile = useMobile();
|
|
18
|
+
const columns = useColumns();
|
|
19
|
+
const type = useSectionType();
|
|
20
|
+
let content = null;
|
|
21
|
+
if (!children) {
|
|
22
|
+
return [];
|
|
23
|
+
}
|
|
24
|
+
if (children.type === FormSectionInner || children.type === FormSection) {
|
|
25
|
+
content = getFormSection(children);
|
|
26
|
+
}
|
|
27
|
+
else {
|
|
28
|
+
content = children;
|
|
29
|
+
}
|
|
30
|
+
const components = getAllowedComponents(content, title || "", secondary || "", type, columns, stepperProps);
|
|
31
|
+
const componentsArr = isMobile ? new Array(React.Children.count(components)) : React.Children.toArray(components);
|
|
32
|
+
if (isMobile) {
|
|
33
|
+
applyMobileLayoutPosition(components, componentsArr);
|
|
34
|
+
}
|
|
35
|
+
return getComponentsWithClasses(componentsArr, columns);
|
|
36
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Banner } from "../../banner/banner";
|
|
3
|
+
import { hasErrorProps } from "../../commonHelpers/loading";
|
|
4
|
+
import { useLanguage } from "../../utils/localization/useLanguage";
|
|
5
|
+
export const useError = (props) => {
|
|
6
|
+
const { translate } = useLanguage();
|
|
7
|
+
if (!hasErrorProps(props)) {
|
|
8
|
+
return {
|
|
9
|
+
error: null
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
const action = props.retry ? {
|
|
13
|
+
text: translate("Reload"),
|
|
14
|
+
onClick: props.retry
|
|
15
|
+
} : undefined;
|
|
16
|
+
return {
|
|
17
|
+
// TODO: add translations
|
|
18
|
+
error: _jsx(Banner, { size: "XL", header: translate("Failed to load page"), action: action, type: "error", children: translate("Please refresh the page and try again. If the issue persists, contact Support.") })
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { TFormLayoutMode } from "../types";
|
|
2
|
+
export interface IUseFormButtonsProps {
|
|
3
|
+
mode?: TFormLayoutMode;
|
|
4
|
+
onEdit?: () => void;
|
|
5
|
+
onCancel?: () => void;
|
|
6
|
+
onSave?: (<T extends unknown[]>(...args: T) => void);
|
|
7
|
+
}
|
|
8
|
+
export declare const useFormButtons: (props?: IUseFormButtonsProps) => {
|
|
9
|
+
mode: TFormLayoutMode;
|
|
10
|
+
buttons: (import("react/jsx-runtime").JSX.Element | null)[];
|
|
11
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { useMemo, useState } from "react";
|
|
3
|
+
import { Header } from "../../header/header";
|
|
4
|
+
import { IconEdit } from "../../icons/iconEdit";
|
|
5
|
+
import { ButtonType } from "../../button/buttonType";
|
|
6
|
+
import { IconDisk } from "../../icons/iconDisk";
|
|
7
|
+
import { IconClose } from "../../icons/iconClose";
|
|
8
|
+
import { useLanguage } from "../../utils/localization/useLanguage";
|
|
9
|
+
export const useFormButtons = (props = {}) => {
|
|
10
|
+
const { onSave, onEdit, onCancel } = props;
|
|
11
|
+
const [mode, setMode] = useState(props.mode || "review");
|
|
12
|
+
const isReview = mode === "review";
|
|
13
|
+
const { translate } = useLanguage();
|
|
14
|
+
const saveButton = useMemo(() => _jsx(Header.Button, { important: true, icon: IconDisk, title: translate("Save"), onClick: (...args) => {
|
|
15
|
+
onSave === null || onSave === void 0 ? void 0 : onSave(...args);
|
|
16
|
+
setMode("review");
|
|
17
|
+
}, id: "form-save", type: ButtonType.Primary }, "form-save"), [onSave, translate]);
|
|
18
|
+
const editButton = useMemo(() => _jsx(Header.Button, { important: true, icon: IconEdit, title: translate("Edit"), onClick: () => {
|
|
19
|
+
onEdit === null || onEdit === void 0 ? void 0 : onEdit();
|
|
20
|
+
setMode("edit");
|
|
21
|
+
}, id: "form-edit", type: ButtonType.Primary }, "form-edit"), [onEdit, translate]);
|
|
22
|
+
const cancelButton = useMemo(() => _jsx(Header.Button, { important: true, icon: IconClose, title: translate("Cancel"), onClick: () => {
|
|
23
|
+
setMode("review");
|
|
24
|
+
onCancel === null || onCancel === void 0 ? void 0 : onCancel();
|
|
25
|
+
}, id: "form-cancel", type: ButtonType.Secondary }, "form-cancel"), [onCancel, translate]);
|
|
26
|
+
const buttons = useMemo(() => [
|
|
27
|
+
!isReview ? saveButton : null,
|
|
28
|
+
!isReview ? cancelButton : null,
|
|
29
|
+
isReview ? editButton : null
|
|
30
|
+
].filter(el => !!el), [cancelButton, editButton, isReview, saveButton]);
|
|
31
|
+
return {
|
|
32
|
+
mode,
|
|
33
|
+
buttons
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useLayoutColumns: () => boolean | undefined;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Waiting } from "../../waiting/waiting";
|
|
3
|
+
export const useLoading = (props) => {
|
|
4
|
+
if (!props.isLoading) {
|
|
5
|
+
return {
|
|
6
|
+
loadingContent: null
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
return {
|
|
10
|
+
loadingContent: _jsx(Waiting, { isLoading: true })
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ILoadingBase } from "../commonHelpers/loading";
|
|
3
|
+
import { Exclusive } from "../commonHelpers/types/exclusive";
|
|
4
|
+
import { IZenComponentProps } from "../commonHelpers/zenComponent";
|
|
5
|
+
import { TLabelAlign } from "../formField/formField";
|
|
6
|
+
import { TFormSectionType } from "../formSection/types";
|
|
7
|
+
import { IFormStepper } from "../formStepper/formStepper";
|
|
8
|
+
import { IFormStepperButtons } from "../formStepperButtons/formStepperButtons";
|
|
9
|
+
export type TFormLayoutColumns = 1 | 2;
|
|
10
|
+
export type TFormLayoutMode = "edit" | "review";
|
|
11
|
+
interface IFormLayoutBase extends IZenComponentProps, ILoadingBase {
|
|
12
|
+
columns?: TFormLayoutColumns;
|
|
13
|
+
title?: string;
|
|
14
|
+
secondary?: string;
|
|
15
|
+
mode?: TFormLayoutMode;
|
|
16
|
+
sectionType?: Extract<TFormSectionType, "card" | "inline">;
|
|
17
|
+
labelAlign?: TLabelAlign;
|
|
18
|
+
}
|
|
19
|
+
export interface IFormLayout extends IFormLayoutBase {
|
|
20
|
+
}
|
|
21
|
+
export interface IFormLayoutWithStepper extends IFormLayoutBase, Omit<IFormStepper, "mode">, IFormStepperButtons {
|
|
22
|
+
}
|
|
23
|
+
export type TFormLayout = Exclusive<IFormLayout, IFormLayoutWithStepper>;
|
|
24
|
+
export interface IDefaultColumns {
|
|
25
|
+
isMobile?: boolean;
|
|
26
|
+
className?: string;
|
|
27
|
+
components: React.ReactElement<{
|
|
28
|
+
column?: number;
|
|
29
|
+
value?: string;
|
|
30
|
+
} | undefined>[];
|
|
31
|
+
}
|
|
32
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const applyGridPropsOneColumn: (element: any, indx: any, result: any) => void;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { cloneElement } from "react";
|
|
2
|
+
export const applyGridPropsOneColumn = (element, indx, result) => {
|
|
3
|
+
const clone = cloneElement(element, {
|
|
4
|
+
gridLgStart: 3,
|
|
5
|
+
gridLg: 8,
|
|
6
|
+
gridMdStart: 2,
|
|
7
|
+
gridMd: 6,
|
|
8
|
+
gridSmStart: 1,
|
|
9
|
+
gridSm: 4,
|
|
10
|
+
key: indx
|
|
11
|
+
});
|
|
12
|
+
result.push(clone);
|
|
13
|
+
return;
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const applyGridPropsStatic: (element: any, indx: any, columns: any, result: any) => void;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
2
|
+
import { cloneElement } from "react";
|
|
3
|
+
import { FormStepper } from "../../formStepper/formStepper";
|
|
4
|
+
import { FormStepperButtons } from "../../formStepperButtons/formStepperButtons";
|
|
5
|
+
export const applyGridPropsStatic = (element, indx, columns, result) => {
|
|
6
|
+
if (element.type === FormStepper || element.type === FormStepperButtons) {
|
|
7
|
+
result.push(cloneElement(element, {
|
|
8
|
+
// @ts-ignore
|
|
9
|
+
gridLgStart: 1,
|
|
10
|
+
gridLg: 12,
|
|
11
|
+
gridMdStart: 1,
|
|
12
|
+
gridMd: 8,
|
|
13
|
+
gridSmStart: 1,
|
|
14
|
+
gridSm: 4,
|
|
15
|
+
key: indx
|
|
16
|
+
}));
|
|
17
|
+
return;
|
|
18
|
+
}
|
|
19
|
+
if (columns === 1) {
|
|
20
|
+
result.push(cloneElement(element, {
|
|
21
|
+
// @ts-ignore
|
|
22
|
+
gridLgStart: 3,
|
|
23
|
+
gridLg: 7,
|
|
24
|
+
gridMdStart: 2,
|
|
25
|
+
gridMd: 6,
|
|
26
|
+
gridSmStart: 1,
|
|
27
|
+
gridSm: 4,
|
|
28
|
+
key: indx
|
|
29
|
+
}));
|
|
30
|
+
return;
|
|
31
|
+
}
|
|
32
|
+
result.push(cloneElement(element, {
|
|
33
|
+
// @ts-ignore
|
|
34
|
+
gridLgStart: 1,
|
|
35
|
+
gridLg: 12,
|
|
36
|
+
gridMdStart: 1,
|
|
37
|
+
gridMd: 8,
|
|
38
|
+
gridSmStart: 1,
|
|
39
|
+
gridSm: 4,
|
|
40
|
+
key: indx
|
|
41
|
+
}));
|
|
42
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { cloneElement } from "react";
|
|
2
|
+
export const applyFirstColumn = (element, indx, result) => {
|
|
3
|
+
const clone = cloneElement(element, {
|
|
4
|
+
gridLgStart: 1,
|
|
5
|
+
gridLg: 6,
|
|
6
|
+
gridMdStart: 1,
|
|
7
|
+
gridMd: 4,
|
|
8
|
+
gridSmStart: 1,
|
|
9
|
+
gridSm: 4,
|
|
10
|
+
key: indx,
|
|
11
|
+
column: 1
|
|
12
|
+
});
|
|
13
|
+
result.push(clone);
|
|
14
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { applyFirstColumn } from "./applyFirstColumn";
|
|
2
|
+
import { applySecondColumn } from "./applySecondColumn";
|
|
3
|
+
export const applyGridPropsTwoColumns = (element, indx, result, nonStaticIndex) => {
|
|
4
|
+
const hasColumnProp = !!element.props.column;
|
|
5
|
+
if (hasColumnProp) {
|
|
6
|
+
if (element.props.column === 1) {
|
|
7
|
+
applyFirstColumn(element, indx, result);
|
|
8
|
+
}
|
|
9
|
+
if (element.props.column === 2) {
|
|
10
|
+
applySecondColumn(element, indx, result);
|
|
11
|
+
}
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
if (nonStaticIndex % 2 === 0) {
|
|
15
|
+
applyFirstColumn(element, indx, result);
|
|
16
|
+
}
|
|
17
|
+
else if (nonStaticIndex % 2 === 1) {
|
|
18
|
+
applySecondColumn(element, indx, result);
|
|
19
|
+
}
|
|
20
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
2
|
+
import { cloneElement } from "react";
|
|
3
|
+
export const applySecondColumn = (element, indx, result) => {
|
|
4
|
+
const clone = cloneElement(element, {
|
|
5
|
+
// @ts-ignore
|
|
6
|
+
gridLgStart: 7,
|
|
7
|
+
gridLg: 6,
|
|
8
|
+
gridMdStart: 5,
|
|
9
|
+
gridMd: 4,
|
|
10
|
+
gridSmStart: 1,
|
|
11
|
+
gridSm: 4,
|
|
12
|
+
key: indx,
|
|
13
|
+
column: 2
|
|
14
|
+
});
|
|
15
|
+
result.push(clone);
|
|
16
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const applyLayoutPosition: (components: any, result: any) => void;
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import { FormStepper } from "../../../formStepper/formStepper";
|
|
2
|
+
import { FormStepperButtons } from "../../../formStepperButtons/formStepperButtons";
|
|
3
|
+
import { Banner } from "../../../banner/banner";
|
|
4
|
+
import { FormLayoutTitle } from "../../components/formLayoutTitle";
|
|
5
|
+
import { FormLayoutColumnTitle } from "../../components/columnTitle/formLayoutColumnTitle";
|
|
6
|
+
const STATIC_COMPONENTS = [
|
|
7
|
+
FormStepper,
|
|
8
|
+
FormStepperButtons,
|
|
9
|
+
Banner,
|
|
10
|
+
FormLayoutTitle,
|
|
11
|
+
FormLayoutColumnTitle
|
|
12
|
+
];
|
|
13
|
+
const transform = (components) => {
|
|
14
|
+
const state = {};
|
|
15
|
+
// eslint-disable-next-line
|
|
16
|
+
// @ts-ignore
|
|
17
|
+
const movableComponents = components.filter((child) => !STATIC_COMPONENTS.includes(child.type));
|
|
18
|
+
// 1. Initialize state
|
|
19
|
+
components.forEach((child, index) => {
|
|
20
|
+
// eslint-disable-next-line
|
|
21
|
+
// @ts-ignore
|
|
22
|
+
if (STATIC_COMPONENTS.includes(child.type)) {
|
|
23
|
+
state[index] = {
|
|
24
|
+
value: child,
|
|
25
|
+
realPos: index,
|
|
26
|
+
oldPos: null,
|
|
27
|
+
newPos: null,
|
|
28
|
+
newRealPos: index
|
|
29
|
+
};
|
|
30
|
+
return;
|
|
31
|
+
}
|
|
32
|
+
// eslint-disable-next-line
|
|
33
|
+
// @ts-ignore
|
|
34
|
+
const layoutPosition = child.props.layoutPosition;
|
|
35
|
+
const newPositions = Object.values(state).map((field) => field.newPos);
|
|
36
|
+
let newPos;
|
|
37
|
+
if (layoutPosition !== undefined) {
|
|
38
|
+
newPos = layoutPosition < 0 ? 0 : layoutPosition > movableComponents.length - 1 ? movableComponents.length - 1 : layoutPosition;
|
|
39
|
+
// eslint-disable-next-line
|
|
40
|
+
if (newPositions.indexOf(newPos) !== -1) {
|
|
41
|
+
if (layoutPosition >= movableComponents.length - 1) {
|
|
42
|
+
newPos = 0;
|
|
43
|
+
}
|
|
44
|
+
// eslint-disable-next-line
|
|
45
|
+
while (newPositions.indexOf(newPos) !== -1) {
|
|
46
|
+
newPos++;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
else {
|
|
51
|
+
newPos = null;
|
|
52
|
+
}
|
|
53
|
+
state[index] = {
|
|
54
|
+
value: child,
|
|
55
|
+
realPos: index,
|
|
56
|
+
oldPos: movableComponents.indexOf(child),
|
|
57
|
+
newPos: newPos,
|
|
58
|
+
newRealPos: null
|
|
59
|
+
};
|
|
60
|
+
});
|
|
61
|
+
// 2. Adjust positions
|
|
62
|
+
components.sort((a, b) => a.props.layoutPosition - b.props.layoutPosition).forEach((child, index) => {
|
|
63
|
+
// eslint-disable-next-line
|
|
64
|
+
// @ts-ignore
|
|
65
|
+
if (STATIC_COMPONENTS.includes(child.type)) {
|
|
66
|
+
return;
|
|
67
|
+
}
|
|
68
|
+
if (state[index].newPos !== null) {
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
// eslint-disable-next-line
|
|
72
|
+
// @ts-ignore
|
|
73
|
+
const layoutPosition = child.props.layoutPosition;
|
|
74
|
+
const newPositions = Object.values(state).map((field) => field.newPos).filter((pos) => pos !== null);
|
|
75
|
+
let newPos = 0;
|
|
76
|
+
if (newPositions.indexOf(newPos) !== -1) {
|
|
77
|
+
if (layoutPosition >= movableComponents.length - 1) {
|
|
78
|
+
newPos = 0;
|
|
79
|
+
}
|
|
80
|
+
while (newPositions.indexOf(newPos) !== -1) {
|
|
81
|
+
newPos++;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
state[index] = {
|
|
85
|
+
value: child,
|
|
86
|
+
realPos: index,
|
|
87
|
+
oldPos: movableComponents.indexOf(child),
|
|
88
|
+
newPos: newPos,
|
|
89
|
+
newRealPos: null
|
|
90
|
+
};
|
|
91
|
+
});
|
|
92
|
+
// 3. Update newRealPos
|
|
93
|
+
components.forEach((child) => {
|
|
94
|
+
// eslint-disable-next-line
|
|
95
|
+
// @ts-ignore
|
|
96
|
+
if (STATIC_COMPONENTS.includes(child.type)) {
|
|
97
|
+
return;
|
|
98
|
+
}
|
|
99
|
+
const index = components.indexOf(child);
|
|
100
|
+
const newPos = state[index].newPos;
|
|
101
|
+
const withOldPos = Object.values(state).find((field) => field.oldPos === newPos);
|
|
102
|
+
if (withOldPos) {
|
|
103
|
+
state[index].newRealPos = withOldPos.realPos;
|
|
104
|
+
}
|
|
105
|
+
});
|
|
106
|
+
return Object.values(state).sort((a, b) => a.newRealPos - b.newRealPos).map((el) => el.value);
|
|
107
|
+
};
|
|
108
|
+
// TODO: test with titles
|
|
109
|
+
export const applyLayoutPosition = (components, result) => {
|
|
110
|
+
const state = transform(components);
|
|
111
|
+
result.length = 0;
|
|
112
|
+
result.push(...state);
|
|
113
|
+
return;
|
|
114
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const attachHeadings: (elements: React.ReactElement[], title?: string, secondary?: string) => (import("react/jsx-runtime").JSX.Element | null)[];
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Banner } from "../../banner/banner";
|
|
3
|
+
import { FormLayoutSecondary } from "../components/formLayoutSecondary";
|
|
4
|
+
import { FormLayoutTitle } from "../components/formLayoutTitle";
|
|
5
|
+
export const attachHeadings = (elements, title, secondary) => {
|
|
6
|
+
if (!title && !secondary) {
|
|
7
|
+
return elements;
|
|
8
|
+
}
|
|
9
|
+
const elementsClone = [...elements];
|
|
10
|
+
const titleElement = title ? _jsx(FormLayoutTitle, { value: title }) : null;
|
|
11
|
+
const secondaryElement = secondary ? _jsx(FormLayoutSecondary, { value: secondary }) : null;
|
|
12
|
+
const bannerElement = elementsClone.find((el) => el.type === Banner);
|
|
13
|
+
const bannerIndex = elementsClone.indexOf(bannerElement);
|
|
14
|
+
if (bannerElement && bannerIndex === 0) {
|
|
15
|
+
if (titleElement) {
|
|
16
|
+
elementsClone.splice(bannerIndex + 1, 0, titleElement);
|
|
17
|
+
}
|
|
18
|
+
if (secondaryElement && titleElement) {
|
|
19
|
+
elementsClone.splice(bannerIndex + 2, 0, secondaryElement);
|
|
20
|
+
}
|
|
21
|
+
else if (secondaryElement) {
|
|
22
|
+
elementsClone.splice(bannerIndex + 1, 0, secondaryElement);
|
|
23
|
+
}
|
|
24
|
+
return elementsClone;
|
|
25
|
+
}
|
|
26
|
+
return [titleElement, secondaryElement, ...elements].filter((el) => el !== null);
|
|
27
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TFormSectionType } from "../../formSection/types";
|
|
3
|
+
import { TFormLayoutColumns } from "../types";
|
|
4
|
+
export declare const attachSeparators: (components: React.ReactElement[], type: TFormSectionType, columns: TFormLayoutColumns) => import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>[];
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Divider } from "../../divider/divider";
|
|
3
|
+
import { FormSection } from "../../formSection/formSection";
|
|
4
|
+
import { isCustomFormSection } from "./isCustomFormSection";
|
|
5
|
+
export const attachSeparators = (components, type, columns) => {
|
|
6
|
+
if (type !== "inline" || columns !== 1) {
|
|
7
|
+
return components;
|
|
8
|
+
}
|
|
9
|
+
const isSection = (el) => el.type === FormSection || isCustomFormSection(el);
|
|
10
|
+
const elements = components.filter(isSection);
|
|
11
|
+
if (elements.length <= 1) {
|
|
12
|
+
return components;
|
|
13
|
+
}
|
|
14
|
+
const result = [];
|
|
15
|
+
components.forEach((el, indx, arr) => {
|
|
16
|
+
if (indx === arr.length - 1) {
|
|
17
|
+
result.push(el);
|
|
18
|
+
return;
|
|
19
|
+
}
|
|
20
|
+
if (!(isSection(el) && arr[indx + 1] && isSection(arr[indx + 1]))) {
|
|
21
|
+
result.push(el);
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
result.push(el);
|
|
25
|
+
result.push(_jsx(Divider, { className: "zen-form-separator" }));
|
|
26
|
+
});
|
|
27
|
+
return result;
|
|
28
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ReactElement } from "react";
|
|
2
|
+
import { IFormStepperButtons } from "../../formStepperButtons/formStepperButtons";
|
|
3
|
+
export declare const attachStepper: (components: ReactElement | ReactElement[], stepperProps: Partial<IFormStepperButtons>) => ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | (string | number | bigint | Iterable<import("react").ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element)[];
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Children } from "react";
|
|
3
|
+
import { FormStepper } from "../../formStepper/formStepper";
|
|
4
|
+
import { FormStepperButtons } from "../../formStepperButtons/formStepperButtons";
|
|
5
|
+
import { hasStepper } from "./hasStepper";
|
|
6
|
+
import { classNames } from "../../commonHelpers/classNames/classNames";
|
|
7
|
+
import { Banner } from "../../banner/banner";
|
|
8
|
+
export const attachStepper = (components, stepperProps) => {
|
|
9
|
+
var _a;
|
|
10
|
+
if (!hasStepper(stepperProps)) {
|
|
11
|
+
return components;
|
|
12
|
+
}
|
|
13
|
+
const isFirstComponentBanner = ((_a = components[0]) === null || _a === void 0 ? void 0 : _a.type) === Banner;
|
|
14
|
+
const stepperClasses = classNames([...stepperProps.className || [], "zen-form-layout-stepper", isFirstComponentBanner ? "zen-form-layout-stepper--with-banner" : ""]);
|
|
15
|
+
const stepperButtonsClasses = classNames([...stepperProps.className || [], "zen-form-layout-stepper-buttons"]);
|
|
16
|
+
const stepper = _jsx(FormStepper, Object.assign({}, stepperProps, { className: stepperClasses }));
|
|
17
|
+
const stepperButtons = _jsx(FormStepperButtons, Object.assign({}, stepperProps, { className: stepperButtonsClasses }));
|
|
18
|
+
return [stepper, ...Children.toArray(components), stepperButtons];
|
|
19
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FC, PropsWithChildren } from "react";
|
|
2
|
+
import { IFormLayout } from "../types";
|
|
3
|
+
export interface IFormLayoutProviderProps extends Pick<IFormLayout, "columns" | "mode" | "sectionType" | "labelAlign">, PropsWithChildren {
|
|
4
|
+
hasCustomColumns?: boolean;
|
|
5
|
+
}
|
|
6
|
+
export declare const FormLayoutContext: import("react").Context<IFormLayoutProviderProps>;
|
|
7
|
+
export declare const FormLayoutProvider: FC<IFormLayoutProviderProps>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { createContext } from "react";
|
|
3
|
+
export const FormLayoutContext = createContext({
|
|
4
|
+
columns: 1,
|
|
5
|
+
mode: undefined,
|
|
6
|
+
sectionType: undefined,
|
|
7
|
+
labelAlign: undefined,
|
|
8
|
+
hasCustomColumns: false
|
|
9
|
+
});
|
|
10
|
+
export const FormLayoutProvider = ({ children, columns, mode, sectionType, labelAlign, hasCustomColumns }) => (_jsx(FormLayoutContext.Provider, { value: { columns, mode, sectionType, labelAlign, hasCustomColumns }, children: children }));
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { IFormStepperButtons } from "../../formStepperButtons/formStepperButtons";
|
|
3
|
+
import { IFormStepper } from "../../formStepper/formStepper";
|
|
4
|
+
import { TFormSectionType } from "../../formSection/types";
|
|
5
|
+
import { TFormLayoutColumns } from "../types";
|
|
6
|
+
export declare const getAllowedComponents: (children: React.ReactNode, title: string, secondary: string, type: TFormSectionType, columns: TFormLayoutColumns, stepperProps: Partial<IFormStepperButtons> & Partial<IFormStepper>) => React.ReactElement<unknown, string | React.JSXElementConstructor<any>>[];
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { getFilteredComponents } from "./getFilteredComponents";
|
|
3
|
+
import { attachStepper } from "./attachStepper";
|
|
4
|
+
import { attachHeadings } from "./attachHeadings";
|
|
5
|
+
import { attachSeparators } from "./attachSeparators";
|
|
6
|
+
export const getAllowedComponents = (children, title, secondary, type, columns, stepperProps) => {
|
|
7
|
+
if (!children) {
|
|
8
|
+
return [];
|
|
9
|
+
}
|
|
10
|
+
let allowedComponents = React.Children.toArray(children).filter((child) => getFilteredComponents(child));
|
|
11
|
+
allowedComponents = attachSeparators(allowedComponents, type, columns);
|
|
12
|
+
allowedComponents = attachHeadings(allowedComponents, title, secondary);
|
|
13
|
+
allowedComponents = attachStepper(allowedComponents, stepperProps);
|
|
14
|
+
return allowedComponents;
|
|
15
|
+
};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Children, cloneElement, isValidElement } from "react";
|
|
3
|
+
import { FormSectionInner } from "../../formSection/components/formSectionInner";
|
|
4
|
+
import { FormSection } from "../../formSection/formSection";
|
|
5
|
+
import { LayoutColumn } from "../components/layoutColumn/layoutColum";
|
|
6
|
+
import { FormLayoutColumnTitle } from "../components/columnTitle/formLayoutColumnTitle";
|
|
7
|
+
// eslint-disable-next-line complexity
|
|
8
|
+
export const getChildrenWithCustomColumns = (children) => {
|
|
9
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
|
|
10
|
+
let numberOfColumns = 0;
|
|
11
|
+
if (!Array.isArray(children)) {
|
|
12
|
+
return (isValidElement(children) && children.type === LayoutColumn) ? [children.props.children] : [children];
|
|
13
|
+
}
|
|
14
|
+
let filtered = children.filter((child) => {
|
|
15
|
+
if (child.type !== LayoutColumn) {
|
|
16
|
+
return true;
|
|
17
|
+
}
|
|
18
|
+
if (child.type === LayoutColumn && !child.props.children) {
|
|
19
|
+
return false;
|
|
20
|
+
}
|
|
21
|
+
if (child.type === LayoutColumn && numberOfColumns < 2) {
|
|
22
|
+
numberOfColumns += 1;
|
|
23
|
+
return true;
|
|
24
|
+
}
|
|
25
|
+
return false;
|
|
26
|
+
});
|
|
27
|
+
if (numberOfColumns === 2) {
|
|
28
|
+
filtered = filtered.filter((child) => child.type !== FormSection && child.type !== FormSectionInner);
|
|
29
|
+
}
|
|
30
|
+
const indexOfFirstColumn = filtered.findIndex((child) => child.type === LayoutColumn);
|
|
31
|
+
let indexOfSecondColumn = filtered.findIndex((child, index) => child.type === LayoutColumn && index > indexOfFirstColumn);
|
|
32
|
+
const firstColumnTittle = indexOfFirstColumn !== -1 ? (_b = (_a = filtered[indexOfFirstColumn]) === null || _a === void 0 ? void 0 : _a.props) === null || _b === void 0 ? void 0 : _b.title : null;
|
|
33
|
+
const secondColumnTittle = indexOfSecondColumn !== -1 ? (_d = (_c = filtered[indexOfSecondColumn]) === null || _c === void 0 ? void 0 : _c.props) === null || _d === void 0 ? void 0 : _d.title : null;
|
|
34
|
+
let childrenOfFirstColumn = indexOfFirstColumn !== -1 ? (_f = (_e = filtered[indexOfFirstColumn]) === null || _e === void 0 ? void 0 : _e.props) === null || _f === void 0 ? void 0 : _f.children : null;
|
|
35
|
+
let childrenOfSecondColumn = indexOfSecondColumn !== -1 ? (_h = (_g = filtered[indexOfSecondColumn]) === null || _g === void 0 ? void 0 : _g.props) === null || _h === void 0 ? void 0 : _h.children : null;
|
|
36
|
+
if (childrenOfFirstColumn) {
|
|
37
|
+
childrenOfFirstColumn = Children.toArray(childrenOfFirstColumn).map((child) => {
|
|
38
|
+
const clone = cloneElement(child, {
|
|
39
|
+
key: child.key + "1",
|
|
40
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
41
|
+
// @ts-ignore
|
|
42
|
+
column: 1
|
|
43
|
+
});
|
|
44
|
+
return clone;
|
|
45
|
+
});
|
|
46
|
+
const title = ((_k = (_j = filtered[indexOfFirstColumn]) === null || _j === void 0 ? void 0 : _j.props) === null || _k === void 0 ? void 0 : _k.title) || "";
|
|
47
|
+
if ((firstColumnTittle || secondColumnTittle) && Array.isArray(childrenOfFirstColumn)) {
|
|
48
|
+
childrenOfFirstColumn.unshift(_jsx(FormLayoutColumnTitle, { column: 1, value: title }, "column-1-title"));
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
if (childrenOfSecondColumn) {
|
|
52
|
+
childrenOfSecondColumn = Children.toArray(childrenOfSecondColumn).map((child) => {
|
|
53
|
+
const clone = cloneElement(child, {
|
|
54
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
55
|
+
// @ts-ignore
|
|
56
|
+
column: 2,
|
|
57
|
+
key: child.key + "2"
|
|
58
|
+
});
|
|
59
|
+
return clone;
|
|
60
|
+
});
|
|
61
|
+
const title = ((_m = (_l = filtered[indexOfSecondColumn]) === null || _l === void 0 ? void 0 : _l.props) === null || _m === void 0 ? void 0 : _m.title) || "";
|
|
62
|
+
if ((firstColumnTittle || secondColumnTittle) && Array.isArray(childrenOfSecondColumn)) {
|
|
63
|
+
childrenOfSecondColumn.unshift(_jsx(FormLayoutColumnTitle, { column: 2, value: title }, "column-2-title"));
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
indexOfFirstColumn !== -1 && filtered.splice(indexOfFirstColumn, 1, ...childrenOfFirstColumn);
|
|
67
|
+
indexOfSecondColumn = filtered.findIndex((child) => child.type === LayoutColumn);
|
|
68
|
+
indexOfSecondColumn !== -1 && filtered.splice(indexOfSecondColumn, 1, ...childrenOfSecondColumn);
|
|
69
|
+
return filtered;
|
|
70
|
+
};
|