@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,7 @@
|
|
|
1
|
+
import { PropsWithChildren } from "react";
|
|
2
|
+
import { IZenGridItem } from "../../../commonHelpers/zenComponent";
|
|
3
|
+
import "./column.less";
|
|
4
|
+
interface IColumnProps extends IZenGridItem, PropsWithChildren {
|
|
5
|
+
}
|
|
6
|
+
export declare const Column: ({ className, children }: IColumnProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Column = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const classNames_1 = require("../../../commonHelpers/classNames/classNames");
|
|
6
|
+
const Column = ({ className = "", children }) => ((0, jsx_runtime_1.jsx)("div", { className: (0, classNames_1.classNames)(["zen-form-layout-column", className]), children: children }));
|
|
7
|
+
exports.Column = Column;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FC } from "react";
|
|
2
|
+
import { TFormLayoutColumns } from "../../types";
|
|
3
|
+
import "./formLayoutColumnTitle.less";
|
|
4
|
+
export interface IFormLayoutColumnTitleProps {
|
|
5
|
+
value: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
column?: TFormLayoutColumns;
|
|
8
|
+
}
|
|
9
|
+
export declare const FormLayoutColumnTitle: FC<IFormLayoutColumnTitleProps>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FormLayoutColumnTitle = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const classNames_1 = require("../../../commonHelpers/classNames/classNames");
|
|
6
|
+
const FormLayoutColumnTitle = ({ value, className = "" }) => (0, jsx_runtime_1.jsx)("span", { className: (0, classNames_1.classNames)(["zen-form-layout-column-title", className]), children: value });
|
|
7
|
+
exports.FormLayoutColumnTitle = FormLayoutColumnTitle;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PropsWithChildren } from "react";
|
|
2
|
+
interface ICustomColumnsProps extends PropsWithChildren {
|
|
3
|
+
className?: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
secondary?: string;
|
|
6
|
+
[key: string]: unknown;
|
|
7
|
+
}
|
|
8
|
+
export declare const CustomColumns: React.FC<ICustomColumnsProps>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
3
|
+
var t = {};
|
|
4
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
5
|
+
t[p] = s[p];
|
|
6
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
7
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
8
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
9
|
+
t[p[i]] = s[p[i]];
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.CustomColumns = void 0;
|
|
15
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
const oneColumnGrid_1 = require("./oneColumnGrid");
|
|
17
|
+
const twoColumnsGrid_1 = require("./twoColumnsGrid");
|
|
18
|
+
const useComponents_1 = require("../hooks/useComponents");
|
|
19
|
+
const getChildrenWithCustomColumns_1 = require("../utils/getChildrenWithCustomColumns");
|
|
20
|
+
const useColumns_1 = require("../hooks/useColumns");
|
|
21
|
+
const useMobile_1 = require("../../commonHelpers/hooks/useMobile");
|
|
22
|
+
// 1. Check if columns exists
|
|
23
|
+
// 2. If yes -> has more priority than columns
|
|
24
|
+
// 3. FormSections outside of LayoutColumns are ignored
|
|
25
|
+
const CustomColumns = (_a) => {
|
|
26
|
+
var { children, className, title, secondary } = _a, stepperProps = __rest(_a, ["children", "className", "title", "secondary"]);
|
|
27
|
+
const columns = (0, useColumns_1.useColumns)();
|
|
28
|
+
const isMobile = (0, useMobile_1.useMobile)();
|
|
29
|
+
const ch = (0, getChildrenWithCustomColumns_1.getChildrenWithCustomColumns)(children);
|
|
30
|
+
const components = (0, useComponents_1.useComponents)(Object.assign({ children: ch, title, secondary }, stepperProps));
|
|
31
|
+
const columnOne = Array.isArray(components[0]);
|
|
32
|
+
const columnTwo = Array.isArray(components[1]);
|
|
33
|
+
const isOneColumn = (columns === 1 || isMobile && !columnOne && !columnTwo);
|
|
34
|
+
const isTwoColumns = columns === 2 && !isMobile;
|
|
35
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [isOneColumn && (0, jsx_runtime_1.jsx)(oneColumnGrid_1.OneColumnGrid, { className: className, components: components }), isTwoColumns && (0, jsx_runtime_1.jsx)(twoColumnsGrid_1.TwoColumnsGrid, { className: className, components: components })] });
|
|
36
|
+
};
|
|
37
|
+
exports.CustomColumns = CustomColumns;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FormLayoutSecondary = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const classNames_1 = require("../../commonHelpers/classNames/classNames");
|
|
6
|
+
const FormLayoutSecondary = ({ value, className = "" }) => (0, jsx_runtime_1.jsx)("span", { className: (0, classNames_1.classNames)(["zen-form-layout-secondary", className]), children: value });
|
|
7
|
+
exports.FormLayoutSecondary = FormLayoutSecondary;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FormLayoutTitle = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const classNames_1 = require("../../commonHelpers/classNames/classNames");
|
|
6
|
+
const FormLayoutTitle = ({ value, className = "" }) => (0, jsx_runtime_1.jsx)("span", { className: (0, classNames_1.classNames)(["zen-form-layout-title", className]), children: value });
|
|
7
|
+
exports.FormLayoutTitle = FormLayoutTitle;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getLayoutColumns: (children?: React.ReactElement) => React.ReactElement[];
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getLayoutColumns = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const react_1 = require("react");
|
|
6
|
+
const formSection_1 = require("../../formSection/formSection");
|
|
7
|
+
const isCustomFormSection_1 = require("../utils/isCustomFormSection");
|
|
8
|
+
const layoutColum_1 = require("./layoutColumn/layoutColum");
|
|
9
|
+
const getLayoutColumns = (children) => {
|
|
10
|
+
if (!children) {
|
|
11
|
+
return [];
|
|
12
|
+
}
|
|
13
|
+
if (!Array.isArray(children)) {
|
|
14
|
+
return ((0, react_1.isValidElement)(children) && children.type === layoutColum_1.LayoutColumn) ? [children] : [(0, jsx_runtime_1.jsx)(layoutColum_1.LayoutColumn, { children: children }, "column1")];
|
|
15
|
+
}
|
|
16
|
+
const layoutColumns = children.filter((child) => child.type === layoutColum_1.LayoutColumn && child.props.children).slice(0, 2);
|
|
17
|
+
if (layoutColumns.length) {
|
|
18
|
+
return layoutColumns;
|
|
19
|
+
}
|
|
20
|
+
const sections = children.filter((el) => el.type === formSection_1.FormSection || (0, isCustomFormSection_1.isCustomFormSection)(el));
|
|
21
|
+
if (sections.length === 1) {
|
|
22
|
+
return [(0, jsx_runtime_1.jsx)(layoutColum_1.LayoutColumn, { children: sections }, "column1")];
|
|
23
|
+
}
|
|
24
|
+
const columnOne = [];
|
|
25
|
+
const columnTwo = [];
|
|
26
|
+
sections.forEach((child, index) => {
|
|
27
|
+
if (index % 2 === 0) {
|
|
28
|
+
columnOne.push(child);
|
|
29
|
+
}
|
|
30
|
+
else {
|
|
31
|
+
columnTwo.push(child);
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
return [
|
|
35
|
+
(0, jsx_runtime_1.jsx)(layoutColum_1.LayoutColumn, { children: columnOne }, "column1"),
|
|
36
|
+
(0, jsx_runtime_1.jsx)(layoutColum_1.LayoutColumn, { children: columnTwo }, "column2")
|
|
37
|
+
];
|
|
38
|
+
};
|
|
39
|
+
exports.getLayoutColumns = getLayoutColumns;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LayoutColumn = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const LayoutColumn = ({ children }) => (0, jsx_runtime_1.jsx)("div", { children: children });
|
|
6
|
+
exports.LayoutColumn = LayoutColumn;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OneColumnGrid = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const classNames_1 = require("../../commonHelpers/classNames/classNames");
|
|
6
|
+
const useMobile_1 = require("../../commonHelpers/hooks/useMobile");
|
|
7
|
+
const gridLayout_1 = require("../../gridLayout/gridLayout");
|
|
8
|
+
const getStepperLayout_1 = require("../hooks/getStepperLayout");
|
|
9
|
+
const useColumns_1 = require("../hooks/useColumns");
|
|
10
|
+
const formLayoutColumnTitle_1 = require("./columnTitle/formLayoutColumnTitle");
|
|
11
|
+
const OneColumnGrid = ({ className, components }) => {
|
|
12
|
+
const isMobile = (0, useMobile_1.useMobile)();
|
|
13
|
+
const columns = (0, useColumns_1.useColumns)();
|
|
14
|
+
const columnOne = Array.isArray(components[0]);
|
|
15
|
+
const columnTwo = Array.isArray(components[1]);
|
|
16
|
+
const isOneColumn = (columns === 1 || isMobile && !columnOne && !columnTwo);
|
|
17
|
+
const emptyColumnTitleIndx = components.findIndex((el) => { var _a; return el.type === formLayoutColumnTitle_1.FormLayoutColumnTitle && !((_a = el.props) === null || _a === void 0 ? void 0 : _a.value); });
|
|
18
|
+
if (isOneColumn && emptyColumnTitleIndx !== -1) {
|
|
19
|
+
components.splice(emptyColumnTitleIndx, 1);
|
|
20
|
+
}
|
|
21
|
+
const classes = (0, classNames_1.classNames)([className || "", isOneColumn ? "zen-form-layout--one-column" : ""]);
|
|
22
|
+
const stepperLayout = (0, getStepperLayout_1.getStepperLayout)({ components, className: classes, isMobile });
|
|
23
|
+
if (stepperLayout) {
|
|
24
|
+
return isOneColumn ? stepperLayout : null;
|
|
25
|
+
}
|
|
26
|
+
return isOneColumn ? (0, jsx_runtime_1.jsx)(gridLayout_1.GridLayout, { className: classes, children: components }) : null;
|
|
27
|
+
};
|
|
28
|
+
exports.OneColumnGrid = OneColumnGrid;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TwoColumnsGrid = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const classNames_1 = require("../../commonHelpers/classNames/classNames");
|
|
6
|
+
const useMobile_1 = require("../../commonHelpers/hooks/useMobile");
|
|
7
|
+
const gridLayout_1 = require("../../gridLayout/gridLayout");
|
|
8
|
+
const getStepperLayout_1 = require("../hooks/getStepperLayout");
|
|
9
|
+
const useColumns_1 = require("../hooks/useColumns");
|
|
10
|
+
const useCustomColumns_1 = require("./useCustomColumns");
|
|
11
|
+
const TwoColumnsGrid = ({ className, components }) => {
|
|
12
|
+
const isMobile = (0, useMobile_1.useMobile)();
|
|
13
|
+
const columns = (0, useColumns_1.useColumns)();
|
|
14
|
+
const firstColIndx = components.findIndex(item => { var _a; return ((_a = item.props) === null || _a === void 0 ? void 0 : _a.column) === 1; });
|
|
15
|
+
const secondColIndx = firstColIndx + 1;
|
|
16
|
+
const customColumns = (0, useCustomColumns_1.useCustomColumns)({ components, firstColIndx, secondColIndx, className });
|
|
17
|
+
if (customColumns) {
|
|
18
|
+
return customColumns;
|
|
19
|
+
}
|
|
20
|
+
const isTwoColumns = columns === 2 && !isMobile;
|
|
21
|
+
const classes = (0, classNames_1.classNames)([className || "", isTwoColumns ? "zen-form-layout--two-columns" : ""]);
|
|
22
|
+
const stepperLayout = (0, getStepperLayout_1.getStepperLayout)({ components, className: classes, isMobile });
|
|
23
|
+
if (stepperLayout) {
|
|
24
|
+
return isTwoColumns ? stepperLayout : null;
|
|
25
|
+
}
|
|
26
|
+
return isTwoColumns ? (0, jsx_runtime_1.jsx)(gridLayout_1.GridLayout, { className: classes, children: components }) : null;
|
|
27
|
+
};
|
|
28
|
+
exports.TwoColumnsGrid = TwoColumnsGrid;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface IUseCustomColumns {
|
|
3
|
+
components: React.ReactElement<{
|
|
4
|
+
column?: number;
|
|
5
|
+
} | undefined>[];
|
|
6
|
+
firstColIndx: number;
|
|
7
|
+
secondColIndx: number;
|
|
8
|
+
className?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare const useCustomColumns: ({ components, firstColIndx, secondColIndx, className }: IUseCustomColumns) => import("react/jsx-runtime").JSX.Element | null;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.useCustomColumns = void 0;
|
|
7
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
8
|
+
const react_1 = __importDefault(require("react"));
|
|
9
|
+
const useMobile_1 = require("../../commonHelpers/hooks/useMobile");
|
|
10
|
+
const formSection_1 = require("../../formSection/formSection");
|
|
11
|
+
const gridLayout_1 = require("../../gridLayout/gridLayout");
|
|
12
|
+
const getStepperLayout_1 = require("../hooks/getStepperLayout");
|
|
13
|
+
const useColumns_1 = require("../hooks/useColumns");
|
|
14
|
+
const column_1 = require("./column/column");
|
|
15
|
+
const formLayoutColumnTitle_1 = require("./columnTitle/formLayoutColumnTitle");
|
|
16
|
+
const isCustomFormSection_1 = require("../utils/isCustomFormSection");
|
|
17
|
+
const useCustomColumns = ({ components, firstColIndx, secondColIndx, className }) => {
|
|
18
|
+
const isMobile = (0, useMobile_1.useMobile)();
|
|
19
|
+
const columns = (0, useColumns_1.useColumns)();
|
|
20
|
+
const colOne = [];
|
|
21
|
+
const colTwo = [];
|
|
22
|
+
const result = components.filter((el) => el.type !== formSection_1.FormSection && !(0, isCustomFormSection_1.isCustomFormSection)(el));
|
|
23
|
+
components.forEach((el) => {
|
|
24
|
+
var _a, _b;
|
|
25
|
+
if (((_a = el.props) === null || _a === void 0 ? void 0 : _a.column) === 1) {
|
|
26
|
+
colOne.push(el);
|
|
27
|
+
}
|
|
28
|
+
else if (((_b = el.props) === null || _b === void 0 ? void 0 : _b.column) === 2) {
|
|
29
|
+
colTwo.push(el);
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
result.splice(firstColIndx, 0, colOne);
|
|
33
|
+
result.splice(secondColIndx, 0, colTwo);
|
|
34
|
+
// eslint-disable-next-line
|
|
35
|
+
// @ts-ignore
|
|
36
|
+
const columnTitleOneIndex = result.findIndex((item) => { var _a; return react_1.default.isValidElement(item) && item.type === formLayoutColumnTitle_1.FormLayoutColumnTitle && ((_a = item.props) === null || _a === void 0 ? void 0 : _a.column) === 1; });
|
|
37
|
+
if (columnTitleOneIndex !== -1) {
|
|
38
|
+
result.splice(columnTitleOneIndex, 1);
|
|
39
|
+
}
|
|
40
|
+
// eslint-disable-next-line
|
|
41
|
+
// @ts-ignore
|
|
42
|
+
const columnTitleTwoIndex = result.findIndex(item => { var _a; return react_1.default.isValidElement(item) && item.type === formLayoutColumnTitle_1.FormLayoutColumnTitle && ((_a = item.props) === null || _a === void 0 ? void 0 : _a.column) === 2; });
|
|
43
|
+
if (columnTitleTwoIndex !== -1) {
|
|
44
|
+
result.splice(columnTitleTwoIndex, 1);
|
|
45
|
+
}
|
|
46
|
+
const componentsArr = result.map(((el, indx) => {
|
|
47
|
+
if (Array.isArray(el)) {
|
|
48
|
+
return (0, jsx_runtime_1.jsx)(column_1.Column, { grid: 644, children: el }, indx);
|
|
49
|
+
}
|
|
50
|
+
return el;
|
|
51
|
+
}));
|
|
52
|
+
const isTwoColumns = columns === 2 && !isMobile;
|
|
53
|
+
const stepperLayout = (0, getStepperLayout_1.getStepperLayout)({ components: componentsArr, className, isMobile });
|
|
54
|
+
if (stepperLayout) {
|
|
55
|
+
return isTwoColumns ? stepperLayout : null;
|
|
56
|
+
}
|
|
57
|
+
const isShown = columns === 2 && firstColIndx !== -1 && !isMobile;
|
|
58
|
+
return isShown ? (0, jsx_runtime_1.jsx)(gridLayout_1.GridLayout, { className: className, children: componentsArr }) : null;
|
|
59
|
+
};
|
|
60
|
+
exports.useCustomColumns = useCustomColumns;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FC } from "react";
|
|
2
|
+
import { TFormLayout } from "./types";
|
|
3
|
+
import { ILayoutColumnProps } from "./components/layoutColumn/layoutColum";
|
|
4
|
+
import "./formLayout.less";
|
|
5
|
+
export declare const FormLayout: React.FC<TFormLayout> & {
|
|
6
|
+
Column: FC<ILayoutColumnProps>;
|
|
7
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
3
|
+
var t = {};
|
|
4
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
5
|
+
t[p] = s[p];
|
|
6
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
7
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
8
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
9
|
+
t[p[i]] = s[p[i]];
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.FormLayout = void 0;
|
|
15
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
const react_1 = require("react");
|
|
17
|
+
const formLayoutProvider_1 = require("./utils/formLayoutProvider");
|
|
18
|
+
const getLayoutColumns_1 = require("./components/getLayoutColumns");
|
|
19
|
+
const customColumns_1 = require("./components/customColumns");
|
|
20
|
+
const layoutColum_1 = require("./components/layoutColumn/layoutColum");
|
|
21
|
+
const classNames_1 = require("../commonHelpers/classNames/classNames");
|
|
22
|
+
const useLoading_1 = require("./hooks/useLoading");
|
|
23
|
+
const useError_1 = require("./hooks/useError");
|
|
24
|
+
const hasCustomColumnsFn = (children) => {
|
|
25
|
+
if (!Array.isArray(children)) {
|
|
26
|
+
return (0, react_1.isValidElement)(children) && children.type === layoutColum_1.LayoutColumn;
|
|
27
|
+
}
|
|
28
|
+
return children.some((child) => (0, react_1.isValidElement)(child) && child.type === layoutColum_1.LayoutColumn);
|
|
29
|
+
};
|
|
30
|
+
// TODO: Margins/paddings/gaps and etc.
|
|
31
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
32
|
+
const FormLayout = (_a) => {
|
|
33
|
+
var { children, className, columns = 1, title, secondary, mode, sectionType, labelAlign, isLoading, isError, retry } = _a, stepperProps = __rest(_a, ["children", "className", "columns", "title", "secondary", "mode", "sectionType", "labelAlign", "isLoading", "isError", "retry"]);
|
|
34
|
+
const hasCustomColumns = hasCustomColumnsFn(children);
|
|
35
|
+
const layoutColumns = (0, getLayoutColumns_1.getLayoutColumns)(children);
|
|
36
|
+
const classes = (0, classNames_1.classNames)([className || "", "zen-form-layout"]);
|
|
37
|
+
const { loadingContent } = (0, useLoading_1.useLoading)({ isLoading });
|
|
38
|
+
const { error } = (0, useError_1.useError)({ isError, retry, isLoading });
|
|
39
|
+
const content = loadingContent ? loadingContent : error ? error : (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, jsx_runtime_1.jsx)(customColumns_1.CustomColumns, Object.assign({ className: classes, title: title, secondary: secondary }, stepperProps, { children: children }), "custom") });
|
|
40
|
+
return (0, jsx_runtime_1.jsx)(formLayoutProvider_1.FormLayoutProvider, { columns: hasCustomColumns ? layoutColumns.length : columns, mode: mode, sectionType: sectionType, labelAlign: labelAlign, hasCustomColumns: hasCustomColumns, children: content });
|
|
41
|
+
};
|
|
42
|
+
exports.FormLayout = FormLayout;
|
|
43
|
+
exports.FormLayout.Column = layoutColum_1.LayoutColumn;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getStepperLayout = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const classNames_1 = require("../../commonHelpers/classNames/classNames");
|
|
6
|
+
const formStepper_1 = require("../../formStepper/formStepper");
|
|
7
|
+
const formStepperButtons_1 = require("../../formStepperButtons/formStepperButtons");
|
|
8
|
+
const gridLayout_1 = require("../../gridLayout/gridLayout");
|
|
9
|
+
const getStepperLayout = (props) => {
|
|
10
|
+
var _a, _b;
|
|
11
|
+
const { components, className } = props;
|
|
12
|
+
const hasStepper = ((_a = components[0]) === null || _a === void 0 ? void 0 : _a.type) === formStepper_1.FormStepper && ((_b = components[components.length - 1]) === null || _b === void 0 ? void 0 : _b.type) === formStepperButtons_1.FormStepperButtons;
|
|
13
|
+
if (!hasStepper) {
|
|
14
|
+
return null;
|
|
15
|
+
}
|
|
16
|
+
const stepper = components[0];
|
|
17
|
+
const stepperButtons = components[components.length - 1];
|
|
18
|
+
const restComponents = components.slice(1, components.length - 1);
|
|
19
|
+
const gridLayoutClasses = (0, classNames_1.classNames)([className || "", "zen-form-layout--has-wrapper"]);
|
|
20
|
+
const wrapperClasses = (0, classNames_1.classNames)(["zen-form-layout-wrapper", props.isMobile ? "zen-form-layout-wrapper--mobile" : ""]);
|
|
21
|
+
return (0, jsx_runtime_1.jsxs)("div", { className: wrapperClasses, children: [stepper, (0, jsx_runtime_1.jsx)(gridLayout_1.GridLayout, { className: gridLayoutClasses, children: restComponents }), stepperButtons] });
|
|
22
|
+
};
|
|
23
|
+
exports.getStepperLayout = getStepperLayout;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useColumns: () => import("../types").TFormLayoutColumns;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useColumns = void 0;
|
|
4
|
+
const react_1 = require("react");
|
|
5
|
+
const formLayoutProvider_1 = require("../utils/formLayoutProvider");
|
|
6
|
+
const useColumns = () => {
|
|
7
|
+
const { columns = 1 } = (0, react_1.useContext)(formLayoutProvider_1.FormLayoutContext);
|
|
8
|
+
return columns;
|
|
9
|
+
};
|
|
10
|
+
exports.useColumns = useColumns;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { IFormStepperButtons } from "../../formStepperButtons/formStepperButtons";
|
|
3
|
+
import { IFormLayout } from "../types";
|
|
4
|
+
interface IUseComponents extends IFormLayout, Partial<IFormStepperButtons> {
|
|
5
|
+
children: React.ReactNode | React.ReactNode[];
|
|
6
|
+
}
|
|
7
|
+
export declare const useComponents: ({ children, title, secondary, setCurrent, steps, isNextDisabled, onCancel, onContinue, onSubmit, onPrevious, current }: IUseComponents) => React.ReactElement<unknown, string | React.JSXElementConstructor<any>>[];
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.useComponents = void 0;
|
|
7
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
8
|
+
const react_1 = __importDefault(require("react"));
|
|
9
|
+
const useMobile_1 = require("../../commonHelpers/hooks/useMobile");
|
|
10
|
+
const formSection_1 = require("../../formSection/formSection");
|
|
11
|
+
const getAllowedComponents_1 = require("../utils/getAllowedComponents");
|
|
12
|
+
const applyLayoutPosition_1 = require("../utils/applyLayoutPosition/applyLayoutPosition");
|
|
13
|
+
const getFormSection_1 = require("../utils/getFormSection");
|
|
14
|
+
const formSectionInner_1 = require("../../formSection/components/formSectionInner");
|
|
15
|
+
const getComponentsWithClasses_1 = require("../utils/getComponentsWithClasses");
|
|
16
|
+
const useColumns_1 = require("./useColumns");
|
|
17
|
+
const useSectionType_1 = require("../../formGroup/hooks/useSectionType");
|
|
18
|
+
// 1. Check for FormStepper
|
|
19
|
+
// 2. Check for Banner
|
|
20
|
+
// 3. Rest logic
|
|
21
|
+
const useComponents = ({ children, title, secondary, setCurrent, steps, isNextDisabled, onCancel, onContinue, onSubmit, onPrevious, current }) => {
|
|
22
|
+
const stepperProps = { setCurrent, steps, isNextDisabled, onCancel, onContinue, onSubmit, onPrevious, current };
|
|
23
|
+
const isMobile = (0, useMobile_1.useMobile)();
|
|
24
|
+
const columns = (0, useColumns_1.useColumns)();
|
|
25
|
+
const type = (0, useSectionType_1.useSectionType)();
|
|
26
|
+
let content = null;
|
|
27
|
+
if (!children) {
|
|
28
|
+
return [];
|
|
29
|
+
}
|
|
30
|
+
if (children.type === formSectionInner_1.FormSectionInner || children.type === formSection_1.FormSection) {
|
|
31
|
+
content = (0, getFormSection_1.getFormSection)(children);
|
|
32
|
+
}
|
|
33
|
+
else {
|
|
34
|
+
content = children;
|
|
35
|
+
}
|
|
36
|
+
const components = (0, getAllowedComponents_1.getAllowedComponents)(content, title || "", secondary || "", type, columns, stepperProps);
|
|
37
|
+
const componentsArr = isMobile ? new Array(react_1.default.Children.count(components)) : react_1.default.Children.toArray(components);
|
|
38
|
+
if (isMobile) {
|
|
39
|
+
(0, applyLayoutPosition_1.applyLayoutPosition)(components, componentsArr);
|
|
40
|
+
}
|
|
41
|
+
return (0, getComponentsWithClasses_1.getComponentsWithClasses)(componentsArr, columns);
|
|
42
|
+
};
|
|
43
|
+
exports.useComponents = useComponents;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useError = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const banner_1 = require("../../banner/banner");
|
|
6
|
+
const loading_1 = require("../../commonHelpers/loading");
|
|
7
|
+
const useLanguage_1 = require("../../utils/localization/useLanguage");
|
|
8
|
+
const useError = (props) => {
|
|
9
|
+
const { translate } = (0, useLanguage_1.useLanguage)();
|
|
10
|
+
if (!(0, loading_1.hasErrorProps)(props)) {
|
|
11
|
+
return {
|
|
12
|
+
error: null
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
const action = props.retry ? {
|
|
16
|
+
text: translate("Reload"),
|
|
17
|
+
onClick: props.retry
|
|
18
|
+
} : undefined;
|
|
19
|
+
return {
|
|
20
|
+
// TODO: add translations
|
|
21
|
+
error: (0, jsx_runtime_1.jsx)(banner_1.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.") })
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
exports.useError = useError;
|
|
@@ -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,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useFormButtons = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const react_1 = require("react");
|
|
6
|
+
const header_1 = require("../../header/header");
|
|
7
|
+
const iconEdit_1 = require("../../icons/iconEdit");
|
|
8
|
+
const buttonType_1 = require("../../button/buttonType");
|
|
9
|
+
const iconDisk_1 = require("../../icons/iconDisk");
|
|
10
|
+
const iconClose_1 = require("../../icons/iconClose");
|
|
11
|
+
const useLanguage_1 = require("../../utils/localization/useLanguage");
|
|
12
|
+
const useFormButtons = (props = {}) => {
|
|
13
|
+
const { onSave, onEdit, onCancel } = props;
|
|
14
|
+
const [mode, setMode] = (0, react_1.useState)(props.mode || "review");
|
|
15
|
+
const isReview = mode === "review";
|
|
16
|
+
const { translate } = (0, useLanguage_1.useLanguage)();
|
|
17
|
+
const saveButton = (0, react_1.useMemo)(() => (0, jsx_runtime_1.jsx)(header_1.Header.Button, { important: true, icon: iconDisk_1.IconDisk, title: translate("Save"), onClick: (...args) => {
|
|
18
|
+
onSave === null || onSave === void 0 ? void 0 : onSave(...args);
|
|
19
|
+
setMode("review");
|
|
20
|
+
}, id: "form-save", type: buttonType_1.ButtonType.Primary }, "form-save"), [onSave, translate]);
|
|
21
|
+
const editButton = (0, react_1.useMemo)(() => (0, jsx_runtime_1.jsx)(header_1.Header.Button, { important: true, icon: iconEdit_1.IconEdit, title: translate("Edit"), onClick: () => {
|
|
22
|
+
onEdit === null || onEdit === void 0 ? void 0 : onEdit();
|
|
23
|
+
setMode("edit");
|
|
24
|
+
}, id: "form-edit", type: buttonType_1.ButtonType.Primary }, "form-edit"), [onEdit, translate]);
|
|
25
|
+
const cancelButton = (0, react_1.useMemo)(() => (0, jsx_runtime_1.jsx)(header_1.Header.Button, { important: true, icon: iconClose_1.IconClose, title: translate("Cancel"), onClick: () => {
|
|
26
|
+
setMode("review");
|
|
27
|
+
onCancel === null || onCancel === void 0 ? void 0 : onCancel();
|
|
28
|
+
}, id: "form-cancel", type: buttonType_1.ButtonType.Secondary }, "form-cancel"), [onCancel, translate]);
|
|
29
|
+
const buttons = (0, react_1.useMemo)(() => [
|
|
30
|
+
!isReview ? saveButton : null,
|
|
31
|
+
!isReview ? cancelButton : null,
|
|
32
|
+
isReview ? editButton : null
|
|
33
|
+
].filter(el => !!el), [cancelButton, editButton, isReview, saveButton]);
|
|
34
|
+
return {
|
|
35
|
+
mode,
|
|
36
|
+
buttons
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
exports.useFormButtons = useFormButtons;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useLayoutColumns: () => boolean | undefined;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useLayoutColumns = void 0;
|
|
4
|
+
const react_1 = require("react");
|
|
5
|
+
const formLayoutProvider_1 = require("../utils/formLayoutProvider");
|
|
6
|
+
const useLayoutColumns = () => {
|
|
7
|
+
const { hasCustomColumns } = (0, react_1.useContext)(formLayoutProvider_1.FormLayoutContext);
|
|
8
|
+
return hasCustomColumns;
|
|
9
|
+
};
|
|
10
|
+
exports.useLayoutColumns = useLayoutColumns;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useLoading = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const waiting_1 = require("../../waiting/waiting");
|
|
6
|
+
const useLoading = (props) => {
|
|
7
|
+
if (!props.isLoading) {
|
|
8
|
+
return {
|
|
9
|
+
loadingContent: null
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
return {
|
|
13
|
+
loadingContent: (0, jsx_runtime_1.jsx)(waiting_1.Waiting, { isLoading: true })
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
exports.useLoading = useLoading;
|
|
@@ -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 {};
|