@m4l/components 9.1.124 → 9.1.126
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/@types/types.d.ts +19 -9
- package/components/Chip/Chip.js +1 -2
- package/components/Chip/ChipStyles.js +49 -35
- package/components/Chip/types.d.ts +0 -4
- package/components/CommonActions/classes/index.js +1 -1
- package/components/DataGrid/formatters/index.d.ts +1 -0
- package/components/DragResizeWindow/index.d.ts +1 -2
- package/components/DynamicFilter/DynamicFIlter.styles.js +1 -1
- package/components/DynamicFilter/constants.d.ts +3 -2
- package/components/DynamicFilter/constants.js +4 -2
- package/components/DynamicFilter/helpers/formatToInitialFilters.js +3 -3
- package/components/DynamicFilter/helpers/formatToRowFilter.js +6 -2
- package/components/DynamicFilter/helpers/getPurgedInitialFiltersApplied.d.ts +2 -2
- package/components/DynamicFilter/index.d.ts +1 -1
- package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +28 -28
- package/components/DynamicFilter/store/DynamicFilterContext.d.ts +1 -9
- package/components/DynamicFilter/store/DynamicFilterContext.js +7 -4
- package/components/DynamicFilter/store/DynamicFilterStore.d.ts +3 -199
- package/components/DynamicFilter/store/DynamicFilterStore.js +28 -14
- package/components/DynamicFilter/store/DynamicFilterStoreTypes.d.ts +200 -0
- package/components/DynamicFilter/store/useDynamicFilterStore.d.ts +1 -1
- package/components/DynamicFilter/store/useDynamicFilterStore.js +1 -1
- package/components/DynamicFilter/subcomponents/AppliedFilterChip/AppliedFilterChip.js +2 -2
- package/components/DynamicFilter/subcomponents/AppliedFilterChip/useAppliedFilterChip.js +4 -3
- package/components/DynamicFilter/subcomponents/AppliedFilters/AppliedFilters.js +1 -1
- package/components/DynamicFilter/subcomponents/FieldTypes/BooleanFilter/helpers.d.ts +5 -5
- package/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/helpers.d.ts +5 -5
- package/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/helpers.js +2 -2
- package/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/index.js +1 -1
- package/components/DynamicFilter/subcomponents/FieldTypes/FieldTypeInterface.d.ts +5 -5
- package/components/DynamicFilter/subcomponents/FieldTypes/NumberFilter/helpers.d.ts +5 -5
- package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/helpers.d.ts +42 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/helpers.js +121 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/index.d.ts +5 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/index.js +49 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/helpers.d.ts +7 -7
- package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/helpers.js +8 -12
- package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/index.js +5 -8
- package/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/helpers.d.ts +5 -5
- package/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/helpers.js +1 -1
- package/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/index.js +1 -1
- package/components/DynamicFilter/subcomponents/FieldTypes/fieldFactory.d.ts +2 -1
- package/components/DynamicFilter/subcomponents/FieldTypes/fieldFactory.js +2 -0
- package/components/DynamicFilter/subcomponents/InputFilter/InputFilter.js +8 -1
- package/components/DynamicFilter/subcomponents/InputFilter/useInputFilter.d.ts +7 -3
- package/components/DynamicFilter/subcomponents/InputFilter/useInputFilter.js +15 -14
- package/components/DynamicFilter/subcomponents/PopoverFilter/usePopoverFilter.d.ts +4 -3
- package/components/DynamicFilter/subcomponents/PopoverFilter/usePopoverFilter.js +3 -2
- package/components/DynamicFilter/subcomponents/PopoverMenuFields/PopoverMenuFields.d.ts +2 -2
- package/components/DynamicFilter/subcomponents/PopoverMenuFields/PopoverMenuFields.js +5 -4
- package/components/DynamicFilter/subcomponents/PopoverMenuFields/usePopoverMenuFields.d.ts +6 -4
- package/components/DynamicFilter/subcomponents/PopoverMenuFields/usePopoverMenuFields.js +8 -5
- package/components/DynamicFilter/types.d.ts +52 -25
- package/components/DynamicSort/DynamicSort.js +14 -0
- package/components/DynamicSort/DynamicSort.styles.js +365 -0
- package/components/DynamicSort/constants.js +16 -0
- package/components/DynamicSort/dictionary.js +28 -0
- package/components/DynamicSort/helpers/formatToInitialSorts.js +12 -0
- package/components/DynamicSort/helpers/formatToRowSort.js +10 -0
- package/components/DynamicSort/helpers/getPurgedInitialSortApplyed.d.ts +2 -2
- package/components/DynamicSort/helpers/getPurgedInitialSortApplyed.js +55 -0
- package/components/DynamicSort/index.d.ts +1 -1
- package/components/DynamicSort/slots/DynamicSortSlots.js +146 -0
- package/components/DynamicSort/slots/SlotsEnum.js +34 -0
- package/components/DynamicSort/store/DynamicSortContext.js +76 -0
- package/components/DynamicSort/store/DynamicSortStore.d.ts +6 -6
- package/components/DynamicSort/store/DynamicSortStore.js +227 -0
- package/components/DynamicSort/store/useDynamicSortStore.js +14 -0
- package/components/DynamicSort/subcomponents/AppliedSortChip/AppliedSortChip.js +27 -0
- package/components/DynamicSort/subcomponents/AppliedSortChip/useAppliedSortChip.js +37 -0
- package/components/DynamicSort/subcomponents/AppliedSorts/AppliedSorts.js +15 -0
- package/components/DynamicSort/subcomponents/AppliedSorts/useAppliedSorts.js +15 -0
- package/components/DynamicSort/subcomponents/DynamicSortBase/DynamicSortBase.js +35 -0
- package/components/DynamicSort/subcomponents/DynamicSortBase/useDynamicSortBase.js +9 -0
- package/components/DynamicSort/subcomponents/FieldTypes/DataTypeComponent.js +16 -0
- package/components/DynamicSort/subcomponents/FieldTypes/FieldTypeInterface.d.ts +5 -5
- package/components/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.d.ts +5 -5
- package/components/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.js +84 -0
- package/components/DynamicSort/subcomponents/FieldTypes/StringSort/index.js +36 -0
- package/components/DynamicSort/subcomponents/FieldTypes/fieldFactory.js +17 -0
- package/components/DynamicSort/subcomponents/InputSort/InputSort.js +36 -0
- package/components/DynamicSort/subcomponents/InputSort/InputSortSkeleton.js +19 -0
- package/components/DynamicSort/subcomponents/InputSort/useInputSort.d.ts +2 -2
- package/components/DynamicSort/subcomponents/InputSort/useInputSort.js +132 -0
- package/components/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.d.ts +2 -2
- package/components/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.js +38 -0
- package/components/DynamicSort/subcomponents/PopoverMenuFields/usePopoverMenuFields.d.ts +3 -3
- package/components/DynamicSort/subcomponents/PopoverMenuFields/usePopoverMenuFields.js +29 -0
- package/components/DynamicSort/subcomponents/PopoverSort/PopoverSort.js +64 -0
- package/components/DynamicSort/subcomponents/PopoverSort/usePopoverSort.d.ts +2 -2
- package/components/DynamicSort/subcomponents/PopoverSort/usePopoverSort.js +99 -0
- package/components/DynamicSort/subcomponents/SortActions/SortActions.js +44 -0
- package/components/DynamicSort/subcomponents/SortActions/SortActionsSkeleton.js +12 -0
- package/components/DynamicSort/subcomponents/SortActions/useSortActions.js +39 -0
- package/components/DynamicSort/types.d.ts +3 -3
- package/components/Icon/Icon.js +1 -1
- package/components/Icon/constants.js +2 -2
- package/components/Icon/slots/IconSlots.js +1 -1
- package/components/LoadingError/LoadingError.d.ts +37 -12
- package/components/LoadingError/LoadingError.js +82 -44
- package/components/LoadingError/LoadingError.styles.d.ts +2 -0
- package/components/LoadingError/LoadingError.styles.js +121 -0
- package/components/LoadingError/constants.d.ts +1 -0
- package/components/LoadingError/constants.js +4 -0
- package/components/LoadingError/dictionary.d.ts +7 -0
- package/components/LoadingError/dictionary.js +9 -1
- package/components/LoadingError/slots/LoadingErrorEnum.d.ts +13 -0
- package/components/LoadingError/slots/LoadingErrorEnum.js +17 -0
- package/components/LoadingError/slots/LoadingErrorSlots.d.ts +14 -0
- package/components/LoadingError/slots/LoadingErrorSlots.js +64 -0
- package/components/LoadingError/slots/index.d.ts +2 -0
- package/components/LoadingError/types.d.ts +16 -0
- package/components/MenuActions/MenuActions.js +21 -25
- package/components/ModalDialog/ModalDialog.js +21 -27
- package/components/ModalDialog/slots/ModalDialogSlots.d.ts +1 -1
- package/components/PrintingSystem/classes/index.js +1 -1
- package/components/PropertyValue/PropertyValue.js +7 -4
- package/components/PropertyValue/PropertyValue.styles.js +6 -6
- package/components/PropertyValue/slots/PropertyValueEnum.d.ts +1 -1
- package/components/PropertyValue/slots/PropertyValueEnum.js +1 -1
- package/components/PropertyValue/slots/PropertyValueSlots.d.ts +3 -3
- package/components/PropertyValue/slots/PropertyValueSlots.js +6 -6
- package/components/PropertyValue/types.d.ts +4 -4
- package/components/ScrollBar/ScrollBar.js +3 -1
- package/components/animate/index.d.ts +0 -1
- package/components/areas/components/AreasAdmin/subcomponents/AreaChip/AreaChip.js +1 -2
- package/components/areas/components/AreasViewer/types.d.ts +1 -1
- package/components/commercial/AppBarCommercial/classes/index.js +1 -1
- package/components/commercial/SectionCommercial/classes/index.js +1 -1
- package/components/commercial/TopBar/classes/index.js +1 -1
- package/components/extended/React-Spinners/PropagateLoaderSpinner/index.d.ts +1 -0
- package/components/extended/React-Spinners/index.d.ts +1 -0
- package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/SplitLayout.js +3 -3
- package/components/extended/React-Splitter-Layout/index.d.ts +1 -0
- package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/types.d.ts +1 -1
- package/components/extended/React-Window/FixedSizeList/FixedSizeList.d.ts +6 -0
- package/components/extended/React-Window/FixedSizeList/FixedSizeList.js +11 -0
- package/components/extended/React-Window/FixedSizeList/FixedSizeList.styles.d.ts +2 -0
- package/components/extended/React-Window/FixedSizeList/FixedSizeList.styles.js +6 -0
- package/components/extended/React-Window/FixedSizeList/constants.d.ts +2 -0
- package/components/extended/React-Window/FixedSizeList/constants.js +7 -0
- package/components/extended/React-Window/FixedSizeList/index.d.ts +1 -0
- package/components/extended/React-Window/FixedSizeList/slots/FixedSizeListSlots.d.ts +4 -0
- package/components/extended/React-Window/FixedSizeList/slots/FixedSizeListSlots.js +14 -0
- package/components/extended/React-Window/FixedSizeList/slots/slots.d.ts +3 -0
- package/components/extended/React-Window/FixedSizeList/slots/slots.js +7 -0
- package/components/extended/React-Window/FixedSizeList/types.d.ts +9 -0
- package/components/extended/React-Window/VariableSizeList/VariableSizeList.d.ts +7 -0
- package/components/extended/React-Window/VariableSizeList/VariableSizeList.js +14 -0
- package/components/extended/React-Window/VariableSizeList/VariableSizeList.styles.d.ts +2 -0
- package/components/extended/React-Window/VariableSizeList/constants.d.ts +2 -0
- package/components/extended/React-Window/VariableSizeList/constants.js +6 -0
- package/components/extended/React-Window/VariableSizeList/index.d.ts +2 -0
- package/components/extended/React-Window/VariableSizeList/slots/VariableSizeListSlots.d.ts +4 -0
- package/components/extended/React-Window/VariableSizeList/slots/slots.d.ts +3 -0
- package/components/extended/React-Window/VariableSizeList/types.d.ts +9 -0
- package/components/extended/React-Window/index.d.ts +2 -0
- package/components/extended/index.d.ts +4 -0
- package/components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.d.ts +2 -1
- package/components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js +22 -6
- package/components/formatters/DistanceToNowFormatter/slots/DistanceToNowFormatterSlots.d.ts +1 -1
- package/components/formatters/DistanceToNowFormatter/slots/DistanceToNowFormatterSlots.js +3 -2
- package/components/formatters/DistanceToNowFormatter/types.d.ts +11 -3
- package/components/index.d.ts +5 -6
- package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +1 -1
- package/components/mui_extended/MenuItem/MenuItem.js +2 -1
- package/components/mui_extended/MenuItem/MenuItem.styles.js +28 -21
- package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +6 -6
- package/components/mui_extended/MenuItem/types.d.ts +2 -2
- package/components/mui_extended/Popover/Popover.js +3 -0
- package/components/mui_extended/TabContext/index.js +2 -2
- package/components/mui_extended/Typography/typography.styles.js +1 -0
- package/components/mui_extended/index.d.ts +1 -0
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.js +4 -4
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/store.js +1 -1
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/types.d.ts +2 -2
- package/components/popups/components/PopupsProvider/hooks/usePopupsStore/index.js +1 -1
- package/contexts/index.d.ts +0 -1
- package/hooks/index.d.ts +3 -1
- package/hooks/useSvgColor/constants.d.ts +2 -1
- package/hooks/useSvgColor/constants.js +7 -5
- package/hooks/useSvgColor/helpers.js +3 -3
- package/hooks/useSvgColor/types.d.ts +3 -1
- package/hooks/useSvgColor/useSvgColor.js +10 -9
- package/hooks/useTab/index.js +1 -1
- package/index.d.ts +2 -0
- package/index.js +177 -174
- package/not_recognized/index.js +23261 -0
- package/package.json +4 -3
- package/patchLibErrors/defaultPropsError.d.ts +3 -0
- package/test/TestAppWrapper.d.ts +1 -1
- package/utils/ObjectQueue.d.ts +18 -0
- package/utils/ObjectQueue.js +33 -0
- package/utils/capitalizeFirstLetter.js +10 -1
- package/utils/getComponentUtilityClass.js +7 -0
- package/utils/getPaletteColor.js +18 -0
- package/utils/index.d.ts +8 -16
- package/utils/index.js +1 -11
- package/utils/isValidDate.js +6 -0
- package/vendor.js +171 -0
- package/.storybook/decorators/WithMapProvider/constants.d.ts +0 -2
- package/.storybook/decorators/WithMapProvider/index.d.ts +0 -1
- package/components/DynamicFilter/DynamicFilter.stories.d.ts +0 -29
- package/components/LoadingError/classes/constants.d.ts +0 -1
- package/components/LoadingError/classes/constants.js +0 -4
- package/components/LoadingError/classes/index.d.ts +0 -26
- package/components/LoadingError/classes/index.js +0 -39
- package/components/LoadingError/classes/types.d.ts +0 -14
- package/components/LoadingError/styles.d.ts +0 -1
- package/components/LoadingError/styles.js +0 -7
- package/components/formatters/CourseFormatter/CourseFormatter.d.ts +0 -14
- package/components/formatters/CourseFormatter/CourseFormatter.js +0 -33
- package/components/formatters/CourseFormatter/CourseFormatter.styles.d.ts +0 -2
- package/components/formatters/CourseFormatter/CourseFormatter.styles.js +0 -23
- package/components/formatters/CourseFormatter/constants.d.ts +0 -3
- package/components/formatters/CourseFormatter/constants.js +0 -6
- package/components/formatters/CourseFormatter/dictionary.d.ts +0 -12
- package/components/formatters/CourseFormatter/dictionary.js +0 -18
- package/components/formatters/CourseFormatter/helper.d.ts +0 -4
- package/components/formatters/CourseFormatter/helper.js +0 -28
- package/components/formatters/CourseFormatter/index.d.ts +0 -2
- package/components/formatters/CourseFormatter/slots/CourseFormatterEnum.d.ts +0 -3
- package/components/formatters/CourseFormatter/slots/CourseFormatterEnum.js +0 -7
- package/components/formatters/CourseFormatter/slots/CourseFormatterSlots.d.ts +0 -3
- package/components/formatters/CourseFormatter/slots/CourseFormatterSlots.js +0 -12
- package/components/formatters/CourseFormatter/types.d.ts +0 -24
- package/components/formatters/DistanceToNowFormatter/stories/basic.stories.d.ts +0 -157
- package/components/formatters/DistanceToNowFormatter/stories/constants.d.ts +0 -3
- package/components/formatters/DistanceToNowFormatter/stories/dictionary.d.ts +0 -0
- package/components/formatters/DistanceToNowFormatter/stories/subcomponents/WithDTNFProvider.d.ts +0 -6
- package/components/formatters/DistanceToNowFormatter/stories/types.d.ts +0 -3
- package/components/gclick/MyDevice/MyDevice.d.ts +0 -6
- package/components/gclick/MyDevice/MyDevice.js +0 -26
- package/components/gclick/MyDevice/MyDevice.styles.d.ts +0 -2
- package/components/gclick/MyDevice/MyDevice.styles.js +0 -22
- package/components/gclick/MyDevice/constants.d.ts +0 -2
- package/components/gclick/MyDevice/constants.js +0 -4
- package/components/gclick/MyDevice/index.d.ts +0 -1
- package/components/gclick/MyDevice/slots/MyDeviceSlots.d.ts +0 -3
- package/components/gclick/MyDevice/slots/MyDeviceSlots.js +0 -22
- package/components/gclick/MyDevice/slots/slots.d.ts +0 -5
- package/components/gclick/MyDevice/slots/slots.js +0 -9
- package/components/gclick/MyDevice/stories/basic.stories.d.ts +0 -9
- package/components/gclick/MyDevice/stories/constants.d.ts +0 -3
- package/components/gclick/MyDevice/stories/dictionary.d.ts +0 -0
- package/components/gclick/MyDevice/stories/subcomponents/WithMyDeviceProvider.d.ts +0 -2
- package/components/gclick/MyDevice/stories/types.d.ts +0 -3
- package/components/gclick/MyDevice/subcomponents/PropertyValue/index.d.ts +0 -5
- package/components/gclick/MyDevice/subcomponents/PropertyValue/types.d.ts +0 -5
- package/components/gclick/MyDevice/types.d.ts +0 -18
- package/components/gclick/MyDeviceStatus/MyDeviceStatus.d.ts +0 -6
- package/components/gclick/MyDeviceStatus/MyDeviceStatus.js +0 -68
- package/components/gclick/MyDeviceStatus/MyDeviceStatus.styles.d.ts +0 -2
- package/components/gclick/MyDeviceStatus/MyDeviceStatus.styles.js +0 -22
- package/components/gclick/MyDeviceStatus/constants.d.ts +0 -13
- package/components/gclick/MyDeviceStatus/constants.js +0 -17
- package/components/gclick/MyDeviceStatus/dictionary.d.ts +0 -13
- package/components/gclick/MyDeviceStatus/dictionary.js +0 -19
- package/components/gclick/MyDeviceStatus/icons.d.ts +0 -11
- package/components/gclick/MyDeviceStatus/icons.js +0 -14
- package/components/gclick/MyDeviceStatus/index.d.ts +0 -1
- package/components/gclick/MyDeviceStatus/slots/MyDeviceStatusSlots.d.ts +0 -3
- package/components/gclick/MyDeviceStatus/slots/MyDeviceStatusSlots.js +0 -22
- package/components/gclick/MyDeviceStatus/slots/slots.d.ts +0 -5
- package/components/gclick/MyDeviceStatus/slots/slots.js +0 -9
- package/components/gclick/MyDeviceStatus/stories/basic.stories.d.ts +0 -41
- package/components/gclick/MyDeviceStatus/stories/constants.d.ts +0 -3
- package/components/gclick/MyDeviceStatus/stories/dataMocks.d.ts +0 -55
- package/components/gclick/MyDeviceStatus/stories/subcomponents/WithMyDeviceProvider.d.ts +0 -2
- package/components/gclick/MyDeviceStatus/stories/types.d.ts +0 -3
- package/components/gclick/MyDeviceStatus/subcomponents/PropertyValue/index.d.ts +0 -5
- package/components/gclick/MyDeviceStatus/subcomponents/PropertyValue/types.d.ts +0 -5
- package/components/gclick/MyDeviceStatus/types.d.ts +0 -14
- package/components/gclick/constants.d.ts +0 -1
- package/components/gclick/constants.js +0 -4
- package/components/gclick/types.d.ts +0 -60
- package/components/maps/components/Map/Map.d.ts +0 -8
- package/components/maps/components/Map/Map.js +0 -34
- package/components/maps/components/Map/Map.styles.d.ts +0 -2
- package/components/maps/components/Map/Map.styles.js +0 -227
- package/components/maps/components/Map/classes/index.d.ts +0 -8
- package/components/maps/components/Map/classes/index.js +0 -110
- package/components/maps/components/Map/classes/types.d.ts +0 -69
- package/components/maps/components/Map/constants.d.ts +0 -36
- package/components/maps/components/Map/constants.js +0 -49
- package/components/maps/components/Map/contexts/MapContext/MapContext.d.ts +0 -21
- package/components/maps/components/Map/contexts/MapContext/MapContext.js +0 -58
- package/components/maps/components/Map/contexts/MapContext/helper.d.ts +0 -8
- package/components/maps/components/Map/contexts/MapContext/index.d.ts +0 -2
- package/components/maps/components/Map/contexts/MapContext/store.d.ts +0 -19
- package/components/maps/components/Map/contexts/MapContext/store.js +0 -369
- package/components/maps/components/Map/contexts/MapContext/types.d.ts +0 -597
- package/components/maps/components/Map/dictionary.d.ts +0 -32
- package/components/maps/components/Map/dictionary.js +0 -38
- package/components/maps/components/Map/external/Control/index.d.ts +0 -9
- package/components/maps/components/Map/external/Control/index.js +0 -42
- package/components/maps/components/Map/external/Control/types.d.ts +0 -7
- package/components/maps/components/Map/external/Popup/component.d.ts +0 -4
- package/components/maps/components/Map/external/Popup/div-overlay.d.ts +0 -4
- package/components/maps/components/Map/external/Popup/element.d.ts +0 -4
- package/components/maps/components/Map/external/Popup/generic.d.ts +0 -4
- package/components/maps/components/Map/external/Popup/index.d.ts +0 -4
- package/components/maps/components/Map/external/googleMutant/LRUMap.d.ts +0 -99
- package/components/maps/components/Map/external/googleMutant/googleMutant.d.ts +0 -1
- package/components/maps/components/Map/external/googleMutant/googleMutantNoDelete.d.ts +0 -1
- package/components/maps/components/Map/external/googleMutant/index.d.ts +0 -132
- package/components/maps/components/Map/featureRenders/CommonFeatureRender/index.d.ts +0 -8
- package/components/maps/components/Map/featureRenders/CommonFeatureRender/index.js +0 -257
- package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/FeatureDivIconLabel/index.d.ts +0 -6
- package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/FeatureDivIconLabel/index.js +0 -33
- package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/FeatureDivIconLabel/types.d.ts +0 -7
- package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/MarkerIconLabel/index.d.ts +0 -5
- package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/MarkerIconLabel/index.js +0 -76
- package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/MarkerIconLabel/types.d.ts +0 -12
- package/components/maps/components/Map/featureRenders/MarkerFeatureRender/IconMarker.d.ts +0 -9
- package/components/maps/components/Map/featureRenders/MarkerFeatureRender/IconMarkerGrua.d.ts +0 -4
- package/components/maps/components/Map/featureRenders/MarkerFeatureRender/IconMarkerTaxi.d.ts +0 -4
- package/components/maps/components/Map/featureRenders/MarkerFeatureRender/index.d.ts +0 -5
- package/components/maps/components/Map/featureRenders/MarkerFeatureRender/index.js +0 -79
- package/components/maps/components/Map/featureRenders/index.d.ts +0 -2
- package/components/maps/components/Map/hooks/useAutoFocus/index.d.ts +0 -6
- package/components/maps/components/Map/hooks/useAutoFocus/index.js +0 -78
- package/components/maps/components/Map/hooks/useAutoFocus/types.d.ts +0 -15
- package/components/maps/components/Map/hooks/useDisableClickEvents/index.d.ts +0 -6
- package/components/maps/components/Map/hooks/useDisableZoomEvents/index.d.ts +0 -6
- package/components/maps/components/Map/hooks/useDisableZoomEvents/index.js +0 -21
- package/components/maps/components/Map/hooks/useMapStore/index.d.ts +0 -6
- package/components/maps/components/Map/hooks/useMapStore/index.js +0 -13
- package/components/maps/components/Map/icons.d.ts +0 -45
- package/components/maps/components/Map/icons.js +0 -61
- package/components/maps/components/Map/index.d.ts +0 -9
- package/components/maps/components/Map/pluginLayers/PolylineWithArrows/index.d.ts +0 -11
- package/components/maps/components/Map/pluginLayers/PolylineWithArrows/index.js +0 -74
- package/components/maps/components/Map/pluginLayers/index.d.ts +0 -1
- package/components/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.d.ts +0 -7
- package/components/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.js +0 -97
- package/components/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.styles.d.ts +0 -2
- package/components/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.styles.js +0 -34
- package/components/maps/components/Map/popups/MapPopupMyGps/constants.d.ts +0 -3
- package/components/maps/components/Map/popups/MapPopupMyGps/constants.js +0 -6
- package/components/maps/components/Map/popups/MapPopupMyGps/dictionary.d.ts +0 -15
- package/components/maps/components/Map/popups/MapPopupMyGps/dictionary.js +0 -21
- package/components/maps/components/Map/popups/MapPopupMyGps/index.d.ts +0 -2
- package/components/maps/components/Map/popups/MapPopupMyGps/slots/ MapPopupMyGpsSlots.d.ts +0 -3
- package/components/maps/components/Map/popups/MapPopupMyGps/slots/ MapPopupMyGpsSlots.js +0 -21
- package/components/maps/components/Map/popups/MapPopupMyGps/slots/slots.d.ts +0 -5
- package/components/maps/components/Map/popups/MapPopupMyGps/slots/slots.js +0 -9
- package/components/maps/components/Map/popups/MapPopupMyGps/stories/basic.stories.d.ts +0 -9
- package/components/maps/components/Map/popups/MapPopupMyGps/stories/constants.d.ts +0 -3
- package/components/maps/components/Map/popups/MapPopupMyGps/stories/dictionary.d.ts +0 -0
- package/components/maps/components/Map/popups/MapPopupMyGps/stories/subcomponents/WithMapOpenPopup.d.ts +0 -5
- package/components/maps/components/Map/popups/MapPopupMyGps/stories/types.d.ts +0 -3
- package/components/maps/components/Map/popups/MapPopupMyGps/subcomponents/PropertyValue/index.d.ts +0 -5
- package/components/maps/components/Map/popups/MapPopupMyGps/subcomponents/PropertyValue/index.js +0 -14
- package/components/maps/components/Map/popups/MapPopupMyGps/subcomponents/PropertyValue/types.d.ts +0 -5
- package/components/maps/components/Map/popups/MapPopupMyGps/types.d.ts +0 -7
- package/components/maps/components/Map/popups/index.d.ts +0 -1
- package/components/maps/components/Map/popups/types.d.ts +0 -10
- package/components/maps/components/Map/slots/MapSlots.d.ts +0 -4
- package/components/maps/components/Map/slots/MapSlots.js +0 -24
- package/components/maps/components/Map/slots/slots.d.ts +0 -6
- package/components/maps/components/Map/slots/slots.js +0 -10
- package/components/maps/components/Map/stories/basic.stories.d.ts +0 -13
- package/components/maps/components/Map/stories/constants.d.ts +0 -3
- package/components/maps/components/Map/stories/dictionary.d.ts +0 -0
- package/components/maps/components/Map/stories/subcomponents/ContentExample.d.ts +0 -4
- package/components/maps/components/Map/stories/types.d.ts +0 -3
- package/components/maps/components/Map/subcomponents/Controls/index.d.ts +0 -17
- package/components/maps/components/Map/subcomponents/Controls/index.js +0 -31
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/index.d.ts +0 -4
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/index.js +0 -13
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/index.d.ts +0 -10
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/index.js +0 -59
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useCheckedLayers.d.ts +0 -9
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useCheckedLayers.js +0 -17
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useColumns.d.ts +0 -18
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useColumns.js +0 -140
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useMaster.d.ts +0 -12
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useMaster.js +0 -52
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useRowActionsGetter.d.ts +0 -8
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useRowActionsGetter.js +0 -43
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/index.d.ts +0 -4
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/index.js +0 -30
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/model.d.ts +0 -26
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/index.d.ts +0 -4
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/index.js +0 -134
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/bing.d.ts +0 -2
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/bing.js +0 -39
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/google.d.ts +0 -4
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/google.js +0 -73
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/osm.d.ts +0 -2
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/osm.js +0 -25
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/utils.d.ts +0 -4
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/utils.js +0 -19
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/types.d.ts +0 -4
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/types.d.ts +0 -5
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/index.d.ts +0 -11
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/index.js +0 -101
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/constants.d.ts +0 -30
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/constants.js +0 -34
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/helpers.d.ts +0 -11
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/helpers.js +0 -45
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/index.d.ts +0 -13
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/index.js +0 -245
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/types.d.ts +0 -13
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useValidation.d.ts +0 -13
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useValidation.js +0 -17
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/index.d.ts +0 -4
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/index.js +0 -41
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/model.d.ts +0 -17
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/index.d.ts +0 -5
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/index.js +0 -33
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/types.d.ts +0 -6
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/validations.d.ts +0 -2
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/validations.js +0 -6
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MyActions/index.d.ts +0 -4
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MyActions/index.js +0 -32
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/types.d.ts +0 -9
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/ZoomButtons/index.d.ts +0 -4
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/ZoomButtons/index.js +0 -52
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/types.d.ts +0 -4
- package/components/maps/components/Map/subcomponents/Controls/types.d.ts +0 -22
- package/components/maps/components/Map/subcomponents/LayersContainer/index.d.ts +0 -5
- package/components/maps/components/Map/subcomponents/LayersContainer/index.js +0 -33
- package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/index.d.ts +0 -14
- package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/index.js +0 -132
- package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/MarkerClusterGroup/index.d.ts +0 -9
- package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/MarkerClusterGroup/index.js +0 -24
- package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/MarkerClusterGroup/types.d.ts +0 -11
- package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/RenderByEachFeatureComponent/index.d.ts +0 -11
- package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/RenderByEachFeatureComponent/index.js +0 -13
- package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/RenderByEachFeatureComponent/types.d.ts +0 -5
- package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/types.d.ts +0 -2
- package/components/maps/components/Map/subcomponents/TileLayers/index.d.ts +0 -6
- package/components/maps/components/Map/subcomponents/TileLayers/index.js +0 -13
- package/components/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerGoogle/index.d.ts +0 -4
- package/components/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerGoogle/index.js +0 -100
- package/components/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerOthers/index.d.ts +0 -6
- package/components/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerOthers/index.js +0 -35
- package/components/maps/components/Map/types.d.ts +0 -56
- package/components/maps/components/MapGpsTools/MapGpsTools.d.ts +0 -4
- package/components/maps/components/MapGpsTools/MapGpsTools.js +0 -10
- package/components/maps/components/MapGpsTools/classes/index.d.ts +0 -7
- package/components/maps/components/MapGpsTools/classes/index.js +0 -21
- package/components/maps/components/MapGpsTools/classes/types.d.ts +0 -14
- package/components/maps/components/MapGpsTools/constants.d.ts +0 -8
- package/components/maps/components/MapGpsTools/constants.js +0 -71
- package/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/index.d.ts +0 -21
- package/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/index.js +0 -48
- package/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/store.d.ts +0 -19
- package/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/store.js +0 -155
- package/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/types.d.ts +0 -160
- package/components/maps/components/MapGpsTools/dictionary.d.ts +0 -62
- package/components/maps/components/MapGpsTools/dictionary.js +0 -73
- package/components/maps/components/MapGpsTools/hooks/useLayers/index.d.ts +0 -4
- package/components/maps/components/MapGpsTools/hooks/useLayers/index.js +0 -57
- package/components/maps/components/MapGpsTools/hooks/useMapGpsToolsStore/index.d.ts +0 -5
- package/components/maps/components/MapGpsTools/hooks/useMapGpsToolsStore/index.js +0 -13
- package/components/maps/components/MapGpsTools/icons.d.ts +0 -23
- package/components/maps/components/MapGpsTools/icons.js +0 -26
- package/components/maps/components/MapGpsTools/index.d.ts +0 -4
- package/components/maps/components/MapGpsTools/styles.d.ts +0 -1
- package/components/maps/components/MapGpsTools/styles.js +0 -18
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/index.d.ts +0 -9
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/index.js +0 -88
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/constants.d.ts +0 -20
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/constants.js +0 -40
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/helpers.d.ts +0 -34
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/helpers.js +0 -77
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useDrawing.d.ts +0 -14
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useDrawing.js +0 -216
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSubmit.d.ts +0 -11
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSubmit.js +0 -63
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSumbitErrorsFocus.d.ts +0 -5
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSumbitErrorsFocus.js +0 -36
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useValidation.d.ts +0 -25
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useValidation.js +0 -19
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/index.d.ts +0 -5
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/index.js +0 -73
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/styles.d.ts +0 -1
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/styles.js +0 -8
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/index.d.ts +0 -4
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/index.js +0 -52
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/types.d.ts +0 -6
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/validations.d.ts +0 -8
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/validations.js +0 -11
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/index.d.ts +0 -4
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/index.js +0 -132
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/types.d.ts +0 -7
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/validations.d.ts +0 -9
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/validations.js +0 -12
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyActions/index.d.ts +0 -5
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyActions/index.js +0 -61
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyActions/types.d.ts +0 -2
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyTabs/index.d.ts +0 -4
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyTabs/index.js +0 -80
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyTabs/types.d.ts +0 -7
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/index.d.ts +0 -4
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/index.js +0 -12
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/FillData/index.d.ts +0 -4
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/FillData/index.js +0 -49
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/StrokeData/index.d.ts +0 -4
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/StrokeData/index.js +0 -89
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/types.d.ts +0 -10
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/types.d.ts +0 -27
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedFeatures.d.ts +0 -9
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedFeatures.js +0 -86
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedGeofences.d.ts +0 -7
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedGeofences.js +0 -85
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useColumns.d.ts +0 -12
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useColumns.js +0 -116
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useMaster.d.ts +0 -22
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useMaster.js +0 -162
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useRowActionsGetter.d.ts +0 -12
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useRowActionsGetter.js +0 -113
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/index.d.ts +0 -4
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/index.js +0 -75
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/styles.d.ts +0 -1
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/styles.js +0 -8
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/subcomponents/Filter/index.d.ts +0 -9
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/subcomponents/Filter/index.js +0 -49
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/constants.d.ts +0 -7
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/constants.js +0 -13
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/model.d.ts +0 -114
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/types.d.ts +0 -7
- package/components/maps/components/MapGpsTools/types.d.ts +0 -34
- package/components/maps/index.d.ts +0 -4
- package/components/maps/utils/courseToCartesianAngle.d.ts +0 -6
- package/components/maps/utils/courseToCartesianAngle.js +0 -8
- package/components/maps/utils/courseToCssAngle.d.ts +0 -9
- package/components/maps/utils/courseToCssAngle.js +0 -13
- package/components/maps/utils/index.d.ts +0 -6
- package/components/maps/utils/isFeature.d.ts +0 -2
- package/components/maps/utils/isFeature.js +0 -6
- package/components/maps/utils/isFeatureCollection.d.ts +0 -2
- package/components/maps/utils/isFeatureCollection.js +0 -6
- package/components/maps/utils/isFeatureCollectionDraft.d.ts +0 -6
- package/components/maps/utils/isFeatureCollectionDraft.js +0 -6
- package/components/maps/utils/isGeometry.d.ts +0 -2
- package/components/maps/utils/isGeometry.js +0 -6
- package/contexts/RealTimeContext/RealTimeContext.d.ts +0 -19
- package/contexts/RealTimeContext/RealTimeContext.js +0 -76
- package/contexts/RealTimeContext/index.d.ts +0 -1
- package/contexts/RealTimeContext/store.d.ts +0 -19
- package/contexts/RealTimeContext/store.js +0 -58
- package/contexts/RealTimeContext/types.d.ts +0 -96
- package/hooks/useRealTime/index.d.ts +0 -6
- /package/components/{PaperForm → DynamicSort}/index.js +0 -0
- /package/components/{formatters/CourseFormatter → DynamicSort/slots}/index.js +0 -0
- /package/components/{gclick/MyDevice → DynamicSort/subcomponents/AppliedSortChip}/index.js +0 -0
- /package/components/{gclick/MyDeviceStatus → DynamicSort/subcomponents/AppliedSorts}/index.js +0 -0
- /package/components/{maps/components/Map/external/googleMutant → DynamicSort/subcomponents/DynamicSortBase}/index.js +0 -0
- /package/components/{maps/components/Map/featureRenders → DynamicSort/subcomponents/InputSort}/index.js +0 -0
- /package/components/{maps/components/Map → DynamicSort/subcomponents/PopoverMenuFields}/index.js +0 -0
- /package/components/{maps/components/Map/pluginLayers → DynamicSort/subcomponents/PopoverSort}/index.js +0 -0
- /package/components/{maps/components/Map/popups/MapPopupMyGps → DynamicSort/subcomponents/SortActions}/index.js +0 -0
- /package/components/{maps/components/Map/popups → LoadingError/slots}/index.js +0 -0
- /package/components/{extended/React-Splitter/SplitLayout/tests/SplitLayout.test.d.ts → LoadingError/tests/LoadingError.test.d.ts} +0 -0
- /package/components/{maps/components/MapGpsTools → extended/React-Spinners/PropagateLoaderSpinner}/index.js +0 -0
- /package/components/{maps → extended/React-Spinners}/index.js +0 -0
- /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/SplitLayout.d.ts +0 -0
- /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/SplitLayout.styles.d.ts +0 -0
- /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/SplitLayout.styles.js +0 -0
- /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/constants.d.ts +0 -0
- /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/constants.js +0 -0
- /package/components/{maps/utils → extended/React-Splitter-Layout}/index.js +0 -0
- /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/slots/SplitLayoutEnum.d.ts +0 -0
- /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/slots/SplitLayoutEnum.js +0 -0
- /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/slots/SplitLayoutSlots.d.ts +0 -0
- /package/components/extended/{React-Splitter/SplitLayout → React-Splitter-Layout}/slots/SplitLayoutSlots.js +0 -0
- /package/components/{formatters/CourseFormatter/test/CourserFormatter.test.d.ts → extended/React-Splitter-Layout/tests/SplitLayout.test.d.ts} +0 -0
- /package/{contexts/RealTimeContext → components/extended/React-Window/FixedSizeList}/index.js +0 -0
- /package/components/{maps/components/Map/contexts/MapContext/helper.js → extended/React-Window/VariableSizeList/index.js} +0 -0
- /package/components/{maps/components/Map/external/googleMutant/LRUMap.js → extended/React-Window/index.js} +0 -0
- /package/components/{maps/components/Map/external/googleMutant/googleMutant.js → extended/index.js} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SortField, SortFieldApplied, InitialSortApplied } from '../types';
|
|
2
2
|
/**
|
|
3
3
|
* Función encargada de purgar cualquier error que pueda venir del endpoint, por algun cambio de versión
|
|
4
4
|
* @param fields todos los campos que pueden aparecer en el sort
|
|
@@ -6,4 +6,4 @@ import { Field, SortFieldApplied, InitialSortApplied } from '../types';
|
|
|
6
6
|
* @param getFieldByName Funcion para obtener el Field a través del nombre
|
|
7
7
|
* @returns Array de filtros aplicados excluyendo los que tengan errores
|
|
8
8
|
*/
|
|
9
|
-
export declare const getPurgedInitialSortApplied: (fields: Array<
|
|
9
|
+
export declare const getPurgedInitialSortApplied: (fields: Array<SortField>, initialSort: Array<InitialSortApplied>, getFieldByName: (name: string) => SortField) => Array<SortFieldApplied>;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { f as fieldFactory } from "../subcomponents/FieldTypes/fieldFactory.js";
|
|
2
|
+
const getPurgedInitialSortApplied = (fields, initialSort, getFieldByName) => {
|
|
3
|
+
const newSorts = [];
|
|
4
|
+
const fixedFields = [];
|
|
5
|
+
for (let index = 0; index < initialSort.length; index++) {
|
|
6
|
+
try {
|
|
7
|
+
const initialSortData = initialSort[index];
|
|
8
|
+
const field = getFieldByName(initialSortData.name);
|
|
9
|
+
const sort = {
|
|
10
|
+
id: 0,
|
|
11
|
+
isSet: true,
|
|
12
|
+
fixed: false,
|
|
13
|
+
field,
|
|
14
|
+
fieldType: field.type,
|
|
15
|
+
operator: initialSort[index].operator
|
|
16
|
+
// operator
|
|
17
|
+
};
|
|
18
|
+
if (!field) {
|
|
19
|
+
continue;
|
|
20
|
+
}
|
|
21
|
+
const add = fieldFactory(field.type).verifySort(initialSortData, field);
|
|
22
|
+
if (add === true) {
|
|
23
|
+
if (field.presence === "fixed") {
|
|
24
|
+
if (fixedFields.findIndex((f) => f === field.name) === -1) {
|
|
25
|
+
sort.fixed = true;
|
|
26
|
+
fixedFields.push(field.name);
|
|
27
|
+
} else {
|
|
28
|
+
sort.fixed = false;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
sort.isSet = true;
|
|
32
|
+
sort.id = newSorts.length + 1;
|
|
33
|
+
newSorts.push(sort);
|
|
34
|
+
}
|
|
35
|
+
} catch (_e) {
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
for (let index = 0; index < fields.length; index++) {
|
|
39
|
+
const field = fields[index];
|
|
40
|
+
if (field.presence === "initialized" || field.presence === "fixed") {
|
|
41
|
+
if (!initialSort.find((f) => f.name === field.name)) {
|
|
42
|
+
const newFilter = fieldFactory(field.type).getDefaultSort(
|
|
43
|
+
field,
|
|
44
|
+
field.presence === "fixed"
|
|
45
|
+
);
|
|
46
|
+
newFilter.id = newSorts.length + 1;
|
|
47
|
+
newSorts.push(newFilter);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
return newSorts;
|
|
52
|
+
};
|
|
53
|
+
export {
|
|
54
|
+
getPurgedInitialSortApplied as g
|
|
55
|
+
};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export * from './DynamicSort';
|
|
2
2
|
export { getDynamicSortComponentsDictionary } from './dictionary';
|
|
3
|
-
export type { SortFieldApplied as SortFieldApply, RawSortFieldApply, InitialSortApplied,
|
|
3
|
+
export type { SortFieldApplied as SortFieldApply, RawSortFieldApply, InitialSortApplied, SortField, } from './types';
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import { styled } from "@mui/material/styles";
|
|
2
|
+
import { MenuItem } from "@mui/material";
|
|
3
|
+
import { D as DYNAMIC_SORT_KEY_COMPONENT } from "../constants.js";
|
|
4
|
+
import { d as dynamicSortStyles } from "../DynamicSort.styles.js";
|
|
5
|
+
import { D as DynamicSortSlots } from "./SlotsEnum.js";
|
|
6
|
+
import { I as IconButton } from "../../mui_extended/IconButton/IconButton.js";
|
|
7
|
+
import { T as Typography } from "../../mui_extended/Typography/Typography.js";
|
|
8
|
+
import { A as ActionsContainer } from "../../CommonActions/components/ActionsContainer/ActionsContainer.js";
|
|
9
|
+
import { I as Icon } from "../../Icon/Icon.js";
|
|
10
|
+
import { P as Popover } from "../../mui_extended/Popover/Popover.js";
|
|
11
|
+
const RootStyled = styled("div", { name: DYNAMIC_SORT_KEY_COMPONENT, slot: DynamicSortSlots.root })(
|
|
12
|
+
dynamicSortStyles?.root
|
|
13
|
+
);
|
|
14
|
+
const InnerContainerStyled = styled("div", {
|
|
15
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
16
|
+
slot: DynamicSortSlots.innerContainer
|
|
17
|
+
})(dynamicSortStyles?.innerContainer);
|
|
18
|
+
const InputSortStyled = styled("div", {
|
|
19
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
20
|
+
slot: DynamicSortSlots.inputSort
|
|
21
|
+
})(dynamicSortStyles?.inputSort);
|
|
22
|
+
const InputSortInputStyled = styled("input", {
|
|
23
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
24
|
+
slot: DynamicSortSlots.inputSortInput
|
|
25
|
+
})(dynamicSortStyles?.inputSortInput);
|
|
26
|
+
const InputSortIconStyled = styled(Icon, {
|
|
27
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
28
|
+
slot: DynamicSortSlots.inputSortIcon
|
|
29
|
+
})(dynamicSortStyles?.inputSortIcon);
|
|
30
|
+
const AppliedSortsStyled = styled("div", {
|
|
31
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
32
|
+
slot: DynamicSortSlots.appliedSorts
|
|
33
|
+
})(dynamicSortStyles?.appliedSorts);
|
|
34
|
+
const AppliedSortInnerContainerStyled = styled("div", {
|
|
35
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
36
|
+
slot: DynamicSortSlots.appliedSortInnerContainer
|
|
37
|
+
})(dynamicSortStyles?.appliedSortInnerContainer);
|
|
38
|
+
const AppliedSortChipStyled = styled("div", {
|
|
39
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
40
|
+
slot: DynamicSortSlots.appliedSortChip
|
|
41
|
+
})(dynamicSortStyles?.appliedSortChip);
|
|
42
|
+
const AppliedSortChipIconStyled = styled(IconButton, {
|
|
43
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
44
|
+
slot: DynamicSortSlots.appliedSortChipIcon
|
|
45
|
+
})(dynamicSortStyles?.appliedSortChipIcon);
|
|
46
|
+
const AppliedSortChipInfoStyled = styled("button", {
|
|
47
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
48
|
+
slot: DynamicSortSlots.appliedSortChipInfo
|
|
49
|
+
})(dynamicSortStyles?.appliedSortChipInfo);
|
|
50
|
+
const AppliedSortChipInfoFieldNameStyled = styled("span", {
|
|
51
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
52
|
+
slot: DynamicSortSlots.appliedSortChipInfoFieldName
|
|
53
|
+
})(dynamicSortStyles?.appliedSortChipInfoFieldName);
|
|
54
|
+
const AppliedSortChipInfoOperatorStyled = styled("span", {
|
|
55
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
56
|
+
slot: DynamicSortSlots.appliedSortChipInfoOperator
|
|
57
|
+
})(dynamicSortStyles?.appliedSortChipInfoOperator);
|
|
58
|
+
const AppliedSortChipRemoveButtonStyled = styled(IconButton, {
|
|
59
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
60
|
+
slot: DynamicSortSlots.appliedSortChipRemoveButton
|
|
61
|
+
})(dynamicSortStyles?.appliedSortChipRemoveButton);
|
|
62
|
+
const ActionsStyled = styled("div", {
|
|
63
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
64
|
+
slot: DynamicSortSlots.actions
|
|
65
|
+
})(dynamicSortStyles?.actions);
|
|
66
|
+
const ActionsSkeletonButtonStyled = styled("div", {
|
|
67
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
68
|
+
slot: DynamicSortSlots.actionsSkeletonButton
|
|
69
|
+
})(dynamicSortStyles?.actionsSkeletonButton);
|
|
70
|
+
const ActionsClearButtonStyled = styled(IconButton, {
|
|
71
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
72
|
+
slot: DynamicSortSlots.actionsClearButton
|
|
73
|
+
})(dynamicSortStyles?.actionsClearButton);
|
|
74
|
+
const ActionsSubmitButtonStyled = styled(IconButton, {
|
|
75
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
76
|
+
slot: DynamicSortSlots.actionsSubmitButton
|
|
77
|
+
})(dynamicSortStyles?.actionsSubmitButton);
|
|
78
|
+
const PopoverMenuStyled = styled(Popover, {
|
|
79
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
80
|
+
slot: DynamicSortSlots.popoverMenu
|
|
81
|
+
})(dynamicSortStyles?.popoverMenu);
|
|
82
|
+
const PopoverMenuItemStyled = styled(MenuItem, {
|
|
83
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
84
|
+
slot: DynamicSortSlots.popoverMenuItem
|
|
85
|
+
})(dynamicSortStyles?.popoverMenuItem);
|
|
86
|
+
const PopoverMenuItemIconStyled = styled(Icon, {
|
|
87
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
88
|
+
slot: DynamicSortSlots.popoverMenuItemIcon
|
|
89
|
+
})(dynamicSortStyles?.popoverMenuItemIcon);
|
|
90
|
+
const PopoverMenuItemLabelStyled = styled("div", {
|
|
91
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
92
|
+
slot: DynamicSortSlots.popoverMenuItemLabel
|
|
93
|
+
})(dynamicSortStyles?.popoverMenuItemLabel);
|
|
94
|
+
const PopoverStyled = styled(Popover, {
|
|
95
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
96
|
+
slot: DynamicSortSlots.popoverSort
|
|
97
|
+
})(dynamicSortStyles?.popoverSort);
|
|
98
|
+
const PopoverContainerFieldsStyled = styled("div", {
|
|
99
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
100
|
+
slot: DynamicSortSlots.popoverSortContainerFields
|
|
101
|
+
})(dynamicSortStyles?.popoverSortContainerFields);
|
|
102
|
+
const PopoverHeaderStyled = styled("div", {
|
|
103
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
104
|
+
slot: DynamicSortSlots.popoverSortHeader
|
|
105
|
+
})(dynamicSortStyles?.popoverSortHeader);
|
|
106
|
+
const PopoverHeaderIconStyled = styled(Icon, {
|
|
107
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
108
|
+
slot: DynamicSortSlots.popoverSortHeaderIcon
|
|
109
|
+
})(dynamicSortStyles?.popoverSortHeaderIcon);
|
|
110
|
+
const PopoverHeaderTitleStyled = styled(Typography, {
|
|
111
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
112
|
+
slot: DynamicSortSlots.popoverSortHeaderTitle
|
|
113
|
+
})(dynamicSortStyles?.popoverSortHeaderTitle);
|
|
114
|
+
const PopoverHeaderActionsStyled = styled(ActionsContainer, {
|
|
115
|
+
name: DYNAMIC_SORT_KEY_COMPONENT,
|
|
116
|
+
slot: DynamicSortSlots.popoverSortActions
|
|
117
|
+
})(dynamicSortStyles?.popoverSortActions);
|
|
118
|
+
export {
|
|
119
|
+
AppliedSortChipStyled as A,
|
|
120
|
+
InnerContainerStyled as I,
|
|
121
|
+
PopoverMenuStyled as P,
|
|
122
|
+
RootStyled as R,
|
|
123
|
+
AppliedSortChipIconStyled as a,
|
|
124
|
+
AppliedSortChipInfoStyled as b,
|
|
125
|
+
AppliedSortChipInfoFieldNameStyled as c,
|
|
126
|
+
AppliedSortChipInfoOperatorStyled as d,
|
|
127
|
+
AppliedSortChipRemoveButtonStyled as e,
|
|
128
|
+
AppliedSortsStyled as f,
|
|
129
|
+
AppliedSortInnerContainerStyled as g,
|
|
130
|
+
InputSortStyled as h,
|
|
131
|
+
InputSortIconStyled as i,
|
|
132
|
+
InputSortInputStyled as j,
|
|
133
|
+
PopoverMenuItemStyled as k,
|
|
134
|
+
PopoverMenuItemIconStyled as l,
|
|
135
|
+
PopoverMenuItemLabelStyled as m,
|
|
136
|
+
PopoverStyled as n,
|
|
137
|
+
PopoverHeaderStyled as o,
|
|
138
|
+
PopoverHeaderIconStyled as p,
|
|
139
|
+
PopoverHeaderTitleStyled as q,
|
|
140
|
+
PopoverContainerFieldsStyled as r,
|
|
141
|
+
PopoverHeaderActionsStyled as s,
|
|
142
|
+
ActionsStyled as t,
|
|
143
|
+
ActionsClearButtonStyled as u,
|
|
144
|
+
ActionsSubmitButtonStyled as v,
|
|
145
|
+
ActionsSkeletonButtonStyled as w
|
|
146
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
var DynamicSortSlots = /* @__PURE__ */ ((DynamicSortSlots2) => {
|
|
2
|
+
DynamicSortSlots2["root"] = "root";
|
|
3
|
+
DynamicSortSlots2["innerContainer"] = "innerContainer";
|
|
4
|
+
DynamicSortSlots2["inputSort"] = "inputSort";
|
|
5
|
+
DynamicSortSlots2["inputSortInput"] = "inputSortInput";
|
|
6
|
+
DynamicSortSlots2["inputSortIcon"] = "inputSortIcon";
|
|
7
|
+
DynamicSortSlots2["appliedSorts"] = "appliedSorts";
|
|
8
|
+
DynamicSortSlots2["appliedSortInnerContainer"] = "appliedSortInnerContainer";
|
|
9
|
+
DynamicSortSlots2["appliedSortChip"] = "appliedSortChip";
|
|
10
|
+
DynamicSortSlots2["appliedSortChipIcon"] = "appliedSortChipIcon";
|
|
11
|
+
DynamicSortSlots2["appliedSortChipInfo"] = "appliedSortChipInfo";
|
|
12
|
+
DynamicSortSlots2["appliedSortChipInfoFieldName"] = "appliedSortChipInfoFieldName";
|
|
13
|
+
DynamicSortSlots2["appliedSortChipInfoOperator"] = "appliedSortChipInfoOperator";
|
|
14
|
+
DynamicSortSlots2["appliedSortChipInfoOperands"] = "appliedSortChipInfoOperands";
|
|
15
|
+
DynamicSortSlots2["appliedSortChipRemoveButton"] = "appliedSortChipRemoveButton";
|
|
16
|
+
DynamicSortSlots2["actions"] = "actions";
|
|
17
|
+
DynamicSortSlots2["actionsSkeletonButton"] = "actionsSkeletonButton";
|
|
18
|
+
DynamicSortSlots2["actionsClearButton"] = "actionsClearButton";
|
|
19
|
+
DynamicSortSlots2["actionsSubmitButton"] = "actionsSubmitButton";
|
|
20
|
+
DynamicSortSlots2["popoverMenu"] = "popoverMenu";
|
|
21
|
+
DynamicSortSlots2["popoverMenuItem"] = "popoverMenuItem";
|
|
22
|
+
DynamicSortSlots2["popoverMenuItemIcon"] = "popoverMenuItemIcon";
|
|
23
|
+
DynamicSortSlots2["popoverMenuItemLabel"] = "popoverMenuItemLabel";
|
|
24
|
+
DynamicSortSlots2["popoverSort"] = "popoverSort";
|
|
25
|
+
DynamicSortSlots2["popoverSortContainerFields"] = "popoverSortContainerFields";
|
|
26
|
+
DynamicSortSlots2["popoverSortHeader"] = "popoverSortHeader";
|
|
27
|
+
DynamicSortSlots2["popoverSortHeaderIcon"] = "popoverSortHeaderIcon";
|
|
28
|
+
DynamicSortSlots2["popoverSortHeaderTitle"] = "popoverSortHeaderTitle";
|
|
29
|
+
DynamicSortSlots2["popoverSortActions"] = "popoverSortActions";
|
|
30
|
+
return DynamicSortSlots2;
|
|
31
|
+
})(DynamicSortSlots || {});
|
|
32
|
+
export {
|
|
33
|
+
DynamicSortSlots as D
|
|
34
|
+
};
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { createContext, useRef, useEffect } from "react";
|
|
3
|
+
import { useStore } from "zustand";
|
|
4
|
+
import { shallow } from "zustand/shallow";
|
|
5
|
+
import { useModuleDictionary, useModuleSkeleton } from "@m4l/core";
|
|
6
|
+
import { useResponsiveDesktop, useFirstRender } from "@m4l/graphics";
|
|
7
|
+
import { c as createAreaStore } from "./DynamicSortStore.js";
|
|
8
|
+
import { f as formatToInitialSorts } from "../helpers/formatToInitialSorts.js";
|
|
9
|
+
import { f as formatToRowSort } from "../helpers/formatToRowSort.js";
|
|
10
|
+
const DynamicSortContext = createContext(null);
|
|
11
|
+
function DynamicSortProvider(props) {
|
|
12
|
+
const {
|
|
13
|
+
automatic = true,
|
|
14
|
+
fields,
|
|
15
|
+
initialAppliedSorts = [],
|
|
16
|
+
onChangeSorts,
|
|
17
|
+
dataTestId = "",
|
|
18
|
+
children
|
|
19
|
+
} = props;
|
|
20
|
+
const { getLabel } = useModuleDictionary();
|
|
21
|
+
const dynamicSortStoreRef = useRef();
|
|
22
|
+
const isDesktop = useResponsiveDesktop();
|
|
23
|
+
const isSkeleton = useModuleSkeleton();
|
|
24
|
+
const isFirstRender = useFirstRender([isDesktop, isSkeleton]);
|
|
25
|
+
if (!dynamicSortStoreRef.current) {
|
|
26
|
+
dynamicSortStoreRef.current = createAreaStore({
|
|
27
|
+
fields,
|
|
28
|
+
automatic,
|
|
29
|
+
getLabel,
|
|
30
|
+
dataTestId,
|
|
31
|
+
ownerState: {
|
|
32
|
+
isSkeleton,
|
|
33
|
+
isDirty: !automatic,
|
|
34
|
+
inEdition: false,
|
|
35
|
+
isValid: true,
|
|
36
|
+
isMobile: !isDesktop,
|
|
37
|
+
isEmpty: true
|
|
38
|
+
}
|
|
39
|
+
});
|
|
40
|
+
dynamicSortStoreRef.current.getState().actions.init(initialAppliedSorts);
|
|
41
|
+
}
|
|
42
|
+
const countOnChangeSortsApplyed = useStore(
|
|
43
|
+
dynamicSortStoreRef.current,
|
|
44
|
+
(state) => state.countOnChangeSortsApplyed,
|
|
45
|
+
shallow
|
|
46
|
+
);
|
|
47
|
+
useEffect(() => {
|
|
48
|
+
if (countOnChangeSortsApplyed === 0) {
|
|
49
|
+
return;
|
|
50
|
+
}
|
|
51
|
+
const state = dynamicSortStoreRef.current?.getState();
|
|
52
|
+
if (state) {
|
|
53
|
+
onChangeSorts?.(
|
|
54
|
+
formatToInitialSorts(state.appliedSorts),
|
|
55
|
+
formatToRowSort(state.appliedSorts)
|
|
56
|
+
);
|
|
57
|
+
}
|
|
58
|
+
}, [countOnChangeSortsApplyed]);
|
|
59
|
+
useEffect(() => {
|
|
60
|
+
if (isFirstRender) {
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
dynamicSortStoreRef.current?.getState().actions.setExternalState({ isMobile: !isDesktop, isSkeleton });
|
|
64
|
+
}, [isDesktop, isSkeleton]);
|
|
65
|
+
useEffect(() => {
|
|
66
|
+
if (automatic) {
|
|
67
|
+
dynamicSortStoreRef.current?.getState().actions.fireOnChangeSorts();
|
|
68
|
+
return;
|
|
69
|
+
}
|
|
70
|
+
}, []);
|
|
71
|
+
return /* @__PURE__ */ jsx(DynamicSortContext.Provider, { value: dynamicSortStoreRef.current, children });
|
|
72
|
+
}
|
|
73
|
+
export {
|
|
74
|
+
DynamicSortProvider as D,
|
|
75
|
+
DynamicSortContext as a
|
|
76
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { GetLabelType } from '@m4l/core';
|
|
2
2
|
import { WritableDraft } from 'immer/dist/internal';
|
|
3
|
-
import {
|
|
3
|
+
import { SortField, SortFieldApplied, SortToEditApply, InitialSortApplied, OwnerState } from '../types';
|
|
4
4
|
export type OpenFor = 'add' | 'edit';
|
|
5
5
|
export interface PopoverSortDataBase {
|
|
6
6
|
/**
|
|
@@ -17,7 +17,7 @@ export interface PopoverSortDataAdd extends PopoverSortDataBase {
|
|
|
17
17
|
/**
|
|
18
18
|
* "field" Campo por el cual se va a filtrar
|
|
19
19
|
*/
|
|
20
|
-
field:
|
|
20
|
+
field: SortField;
|
|
21
21
|
}
|
|
22
22
|
export interface PopoverSortDataEdit extends PopoverSortDataBase {
|
|
23
23
|
openFor: 'edit';
|
|
@@ -42,7 +42,7 @@ export interface DynamicSortState {
|
|
|
42
42
|
/**
|
|
43
43
|
* "fields" Campos por los que se puede filtrar
|
|
44
44
|
*/
|
|
45
|
-
fields: Array<
|
|
45
|
+
fields: Array<SortField>;
|
|
46
46
|
/**
|
|
47
47
|
* "ownerState" estado a nivel de clases del componente
|
|
48
48
|
*/
|
|
@@ -64,7 +64,7 @@ export interface DynamicSortState {
|
|
|
64
64
|
/**
|
|
65
65
|
* Campos disponibles para filtrar
|
|
66
66
|
*/
|
|
67
|
-
availableFields: Array<
|
|
67
|
+
availableFields: Array<SortField>;
|
|
68
68
|
/**
|
|
69
69
|
* "applyedFilters" sorts aplicados actualmente
|
|
70
70
|
*/
|
|
@@ -95,7 +95,7 @@ export interface DynamicSortStateWithActions extends DynamicSortState {
|
|
|
95
95
|
* @param name
|
|
96
96
|
* @returns Field o undefined si no se encuentra
|
|
97
97
|
*/
|
|
98
|
-
getFieldByName: (name: string) =>
|
|
98
|
+
getFieldByName: (name: string) => SortField;
|
|
99
99
|
/**
|
|
100
100
|
* remueve un sort si existe, y dispara el trigger de onChangeSorts
|
|
101
101
|
* @param id //identificador unico de un sort
|
|
@@ -107,7 +107,7 @@ export interface DynamicSortStateWithActions extends DynamicSortState {
|
|
|
107
107
|
* @param field Campo por el cual se va filtrar
|
|
108
108
|
* @returns
|
|
109
109
|
*/
|
|
110
|
-
showPopoverSortForAdd: (anchorEl: Element, field:
|
|
110
|
+
showPopoverSortForAdd: (anchorEl: Element, field: SortField) => void;
|
|
111
111
|
/**
|
|
112
112
|
* Muestra la ventan de edición de un sort aplicado
|
|
113
113
|
* @param anchorEl Anchor de elemento desde donde debe emerger
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
import { createStore } from "zustand";
|
|
2
|
+
import { devtools } from "zustand/middleware";
|
|
3
|
+
import { immer } from "zustand/middleware/immer";
|
|
4
|
+
import { g as getPurgedInitialSortApplied } from "../helpers/getPurgedInitialSortApplyed.js";
|
|
5
|
+
const updateAvailableFields = (state) => {
|
|
6
|
+
const newFields = [];
|
|
7
|
+
for (let index = 0; index < state.fields.length; index++) {
|
|
8
|
+
let add;
|
|
9
|
+
const field = state.fields[index];
|
|
10
|
+
add = true;
|
|
11
|
+
const fIndx = state.appliedSorts.findIndex((f) => f.field.name === field.name);
|
|
12
|
+
if (fIndx > -1) {
|
|
13
|
+
add = false;
|
|
14
|
+
}
|
|
15
|
+
if (add) {
|
|
16
|
+
newFields.push(field);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
state.availableFields = newFields;
|
|
20
|
+
};
|
|
21
|
+
const updateOwnerStateIsValid = (state) => {
|
|
22
|
+
state.ownerState.isValid = true;
|
|
23
|
+
for (let index = 0; index < state.appliedSorts.length; index++) {
|
|
24
|
+
const element = state.appliedSorts[index];
|
|
25
|
+
if (!element.isSet) {
|
|
26
|
+
state.ownerState.isValid = false;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
const updateAutomatic = (state) => {
|
|
31
|
+
updateOwnerStateIsValid(state);
|
|
32
|
+
updateAvailableFields(state);
|
|
33
|
+
if (state.ownerState.isValid) {
|
|
34
|
+
if (state.automatic) {
|
|
35
|
+
state.ownerState.isDirty = false;
|
|
36
|
+
state.countOnChangeSortsApplyed++;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
const createAreaStore = (initProps) => {
|
|
41
|
+
const startProps = {
|
|
42
|
+
countOnChangeSortsApplyed: 0,
|
|
43
|
+
appliedSorts: [],
|
|
44
|
+
availableFields: [],
|
|
45
|
+
fnAnchorEl: void 0,
|
|
46
|
+
popoverSortData: void 0,
|
|
47
|
+
inputData: "",
|
|
48
|
+
...initProps
|
|
49
|
+
};
|
|
50
|
+
return createStore(
|
|
51
|
+
devtools(
|
|
52
|
+
immer((set, get) => ({
|
|
53
|
+
...startProps,
|
|
54
|
+
actions: {
|
|
55
|
+
/**
|
|
56
|
+
* TODO: Documentar
|
|
57
|
+
*/
|
|
58
|
+
init: (initialSortApplyed) => {
|
|
59
|
+
set((state) => {
|
|
60
|
+
state.appliedSorts = getPurgedInitialSortApplied(
|
|
61
|
+
state.fields,
|
|
62
|
+
initialSortApplyed,
|
|
63
|
+
state.actions.getFieldByName
|
|
64
|
+
);
|
|
65
|
+
updateAutomatic(state);
|
|
66
|
+
});
|
|
67
|
+
},
|
|
68
|
+
/**
|
|
69
|
+
* TODO: Documentar
|
|
70
|
+
*/
|
|
71
|
+
getFieldByName: (name) => {
|
|
72
|
+
const field = get().fields.find((f) => {
|
|
73
|
+
return f.name === name;
|
|
74
|
+
});
|
|
75
|
+
if (field) {
|
|
76
|
+
return field;
|
|
77
|
+
}
|
|
78
|
+
throw new Error("Field does not exist");
|
|
79
|
+
},
|
|
80
|
+
/**
|
|
81
|
+
* TODO: Documentar
|
|
82
|
+
*/
|
|
83
|
+
removeSort: (id) => {
|
|
84
|
+
set((state) => {
|
|
85
|
+
const index_to_remove = state.appliedSorts.findIndex((f) => id === f.id && !f.fixed);
|
|
86
|
+
if (index_to_remove > -1) {
|
|
87
|
+
state.appliedSorts.splice(index_to_remove, 1);
|
|
88
|
+
updateAutomatic(state);
|
|
89
|
+
}
|
|
90
|
+
});
|
|
91
|
+
},
|
|
92
|
+
/**
|
|
93
|
+
* TODO: Documentar
|
|
94
|
+
*/
|
|
95
|
+
showPopoverSortForAdd: (anchorEl, field) => {
|
|
96
|
+
set((state) => {
|
|
97
|
+
state.fnAnchorEl = void 0;
|
|
98
|
+
state.inputData = "";
|
|
99
|
+
state.popoverSortData = {
|
|
100
|
+
openFor: "add",
|
|
101
|
+
fnAnchorEl: () => anchorEl,
|
|
102
|
+
field
|
|
103
|
+
};
|
|
104
|
+
});
|
|
105
|
+
get().actions.setInEdition(true);
|
|
106
|
+
},
|
|
107
|
+
/**
|
|
108
|
+
* TODO: Documentar
|
|
109
|
+
*/
|
|
110
|
+
showPopoverSortForEdit: (anchorEl, sortToEdit) => {
|
|
111
|
+
set((state) => {
|
|
112
|
+
state.popoverSortData = {
|
|
113
|
+
openFor: "edit",
|
|
114
|
+
fnAnchorEl: () => anchorEl,
|
|
115
|
+
sort: sortToEdit
|
|
116
|
+
};
|
|
117
|
+
});
|
|
118
|
+
get().actions.setInEdition(true);
|
|
119
|
+
},
|
|
120
|
+
/**
|
|
121
|
+
* TODO: Documentar
|
|
122
|
+
*/
|
|
123
|
+
hidePopoverSort: (stayInEditon) => {
|
|
124
|
+
set((state) => {
|
|
125
|
+
state.popoverSortData = void 0;
|
|
126
|
+
});
|
|
127
|
+
get().actions.setInEdition(stayInEditon);
|
|
128
|
+
},
|
|
129
|
+
/**
|
|
130
|
+
* TODO: Documentar
|
|
131
|
+
*/
|
|
132
|
+
clearSorts: () => {
|
|
133
|
+
set((state) => {
|
|
134
|
+
state.appliedSorts = state.appliedSorts.filter((f) => f.fixed);
|
|
135
|
+
updateAvailableFields(state);
|
|
136
|
+
});
|
|
137
|
+
},
|
|
138
|
+
/**
|
|
139
|
+
* TODO: Documentar
|
|
140
|
+
*/
|
|
141
|
+
fireOnChangeSorts: () => {
|
|
142
|
+
set((state) => {
|
|
143
|
+
if (state.ownerState.isValid) {
|
|
144
|
+
state.ownerState.isDirty = false;
|
|
145
|
+
state.countOnChangeSortsApplyed++;
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
},
|
|
149
|
+
/**
|
|
150
|
+
* TODO: Documentar
|
|
151
|
+
*/
|
|
152
|
+
getNewId: () => {
|
|
153
|
+
return get().appliedSorts.reduce((prev, n) => {
|
|
154
|
+
return n.id > prev ? n.id : prev;
|
|
155
|
+
}, 0) + 1;
|
|
156
|
+
},
|
|
157
|
+
/**
|
|
158
|
+
* TODO: Documentar
|
|
159
|
+
*/
|
|
160
|
+
addSort: (newSort) => {
|
|
161
|
+
set((state) => {
|
|
162
|
+
state.appliedSorts.push(newSort);
|
|
163
|
+
updateAutomatic(state);
|
|
164
|
+
});
|
|
165
|
+
},
|
|
166
|
+
/**
|
|
167
|
+
* TODO: Documentar
|
|
168
|
+
*/
|
|
169
|
+
updateSort: (editSort) => {
|
|
170
|
+
set((state) => {
|
|
171
|
+
const index = state.appliedSorts.findIndex((ap) => ap.id === editSort.id);
|
|
172
|
+
if (index > -1) {
|
|
173
|
+
state.appliedSorts[index] = editSort;
|
|
174
|
+
}
|
|
175
|
+
updateAutomatic(state);
|
|
176
|
+
});
|
|
177
|
+
},
|
|
178
|
+
/**
|
|
179
|
+
* TODO: Documentar
|
|
180
|
+
*/
|
|
181
|
+
setInputData: (inputData) => {
|
|
182
|
+
set((state) => {
|
|
183
|
+
state.inputData = inputData;
|
|
184
|
+
});
|
|
185
|
+
},
|
|
186
|
+
/**
|
|
187
|
+
* TODO: Documentar
|
|
188
|
+
*/
|
|
189
|
+
setInEdition: (newInEdition) => {
|
|
190
|
+
set((state) => {
|
|
191
|
+
state.ownerState.inEdition = newInEdition;
|
|
192
|
+
});
|
|
193
|
+
},
|
|
194
|
+
/**
|
|
195
|
+
* TODO: Documentar
|
|
196
|
+
*/
|
|
197
|
+
setExternalState: (newExternalState) => {
|
|
198
|
+
set((state) => {
|
|
199
|
+
state.ownerState = { ...state.ownerState, ...newExternalState };
|
|
200
|
+
});
|
|
201
|
+
},
|
|
202
|
+
/**
|
|
203
|
+
* TODO: Documentar
|
|
204
|
+
*/
|
|
205
|
+
openPopoverMenuFields: (anchorEl) => {
|
|
206
|
+
set((state) => {
|
|
207
|
+
state.fnAnchorEl = () => anchorEl;
|
|
208
|
+
});
|
|
209
|
+
},
|
|
210
|
+
/**
|
|
211
|
+
* TODO: Documentar
|
|
212
|
+
*/
|
|
213
|
+
closePopoverMenuFields: (newInEdition) => {
|
|
214
|
+
set((state) => {
|
|
215
|
+
state.fnAnchorEl = void 0;
|
|
216
|
+
state.ownerState.inEdition = newInEdition || false;
|
|
217
|
+
});
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
})),
|
|
221
|
+
{ name: "Dynamic Sort" }
|
|
222
|
+
)
|
|
223
|
+
);
|
|
224
|
+
};
|
|
225
|
+
export {
|
|
226
|
+
createAreaStore as c
|
|
227
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { useContext } from "react";
|
|
2
|
+
import { useStore } from "zustand";
|
|
3
|
+
import { shallow } from "zustand/shallow";
|
|
4
|
+
import { a as DynamicSortContext } from "./DynamicSortContext.js";
|
|
5
|
+
function useDynamicSortStore(selector, equalityFn) {
|
|
6
|
+
const store = useContext(DynamicSortContext);
|
|
7
|
+
if (!store) {
|
|
8
|
+
throw new Error("useDynamicSortStore context must be use inside DynamicSortContext");
|
|
9
|
+
}
|
|
10
|
+
return useStore(store, selector, shallow);
|
|
11
|
+
}
|
|
12
|
+
export {
|
|
13
|
+
useDynamicSortStore as u
|
|
14
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import { u as useAppliedSortChip } from "./useAppliedSortChip.js";
|
|
3
|
+
import { A as AppliedSortChipStyled, a as AppliedSortChipIconStyled, b as AppliedSortChipInfoStyled, c as AppliedSortChipInfoFieldNameStyled, d as AppliedSortChipInfoOperatorStyled, e as AppliedSortChipRemoveButtonStyled } from "../../slots/DynamicSortSlots.js";
|
|
4
|
+
function AppliedSortChip(props) {
|
|
5
|
+
const { fixed } = props;
|
|
6
|
+
const { onEditSort, onDelete, iconFieldUrl, removeIconUrl, labels } = useAppliedSortChip(props);
|
|
7
|
+
return /* @__PURE__ */ jsxs(AppliedSortChipStyled, { ownerState: {}, children: [
|
|
8
|
+
iconFieldUrl && /* @__PURE__ */ jsx(AppliedSortChipIconStyled, { onClick: onEditSort, src: iconFieldUrl, ownerState: {} }),
|
|
9
|
+
/* @__PURE__ */ jsxs(AppliedSortChipInfoStyled, { onClick: onEditSort, ownerState: {}, children: [
|
|
10
|
+
/* @__PURE__ */ jsx(AppliedSortChipInfoFieldNameStyled, { ownerState: {}, children: labels.labelField }),
|
|
11
|
+
/* @__PURE__ */ jsx(AppliedSortChipInfoOperatorStyled, { ownerState: {}, children: labels.labelOperator })
|
|
12
|
+
] }),
|
|
13
|
+
!fixed && /* @__PURE__ */ jsx(
|
|
14
|
+
AppliedSortChipRemoveButtonStyled,
|
|
15
|
+
{
|
|
16
|
+
src: removeIconUrl,
|
|
17
|
+
size: "small",
|
|
18
|
+
dictionaryTooltipId: "dynamic_sort.tooltip_clear_sort",
|
|
19
|
+
onClick: onDelete,
|
|
20
|
+
ownerState: {}
|
|
21
|
+
}
|
|
22
|
+
)
|
|
23
|
+
] });
|
|
24
|
+
}
|
|
25
|
+
export {
|
|
26
|
+
AppliedSortChip as A
|
|
27
|
+
};
|