@m4l/components 7.2.0 → 7.2.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/@types/export.d.js +1 -0
- package/@types/export.d.ts +260 -0
- package/@types/types.d.js +1 -0
- package/@types/types.d.ts +161 -0
- package/components/AccountPopover/AccountPopover.js +69 -0
- package/components/AccountPopover/classes/constants.js +4 -0
- package/components/AccountPopover/classes/index.js +59 -0
- package/components/AccountPopover/dictionary.js +6 -0
- package/components/AccountPopover/index.js +1 -0
- package/components/AccountPopover/style.js +7 -0
- package/components/AccountPopover/subcomponents/MyAvatar/index.js +21 -0
- package/components/AccountPopover/subcomponents/PopOver/index.js +207 -0
- package/components/AppBar/AppBar.js +57 -0
- package/components/AppBar/classes/constants.js +4 -0
- package/components/AppBar/classes/index.js +33 -0
- package/components/AppBar/dictionary.js +6 -0
- package/components/AppBar/index.js +1 -0
- package/components/AppBar/styles.js +7 -0
- package/components/AppBar/tests/constants.js +4 -0
- package/components/AppBar/tests/utils.js +7 -0
- package/components/BaseModule/BaseModule.js +30 -0
- package/components/BaseModule/index.js +1 -0
- package/components/CommonActions/classes/constants.js +4 -0
- package/components/CommonActions/classes/index.js +33 -0
- package/components/CommonActions/components/ActionCancel/index.js +12 -0
- package/components/CommonActions/components/ActionFormCancel/index.js +56 -0
- package/components/CommonActions/components/ActionFormIntro/index.js +33 -0
- package/components/CommonActions/components/ActionIntro/index.js +25 -0
- package/components/CommonActions/components/ActionIntro/test/contants.js +4 -0
- package/components/CommonActions/components/Actions/index.js +24 -0
- package/components/CommonActions/components/Actions/styles.js +14 -0
- package/components/CommonActions/dictionary.js +15 -0
- package/components/CommonActions/index.js +1 -0
- package/components/CommonActions/tests/constants.js +4 -0
- package/components/CommonActions/tests/utils.js +7 -0
- package/components/DataGrid/assets/icons/datagrid.svg +4 -0
- package/components/DataGrid/classes/constants.js +4 -0
- package/components/DataGrid/classes/index.js +71 -0
- package/components/DataGrid/constants.js +8 -0
- package/components/DataGrid/contexts/DataGridContext/index.js +230 -0
- package/components/DataGrid/contexts/FilterContext/index.js +47 -0
- package/components/DataGrid/dictionary.js +14 -0
- package/components/DataGrid/formatters/ColumnBooleanFormatter/index.js +26 -0
- package/components/DataGrid/formatters/ColumnConcatenatedValueFormatter/index.js +22 -0
- package/components/DataGrid/formatters/ColumnDateFormatter/index.js +19 -0
- package/components/DataGrid/formatters/ColumnIconFormatter/index.js +13 -0
- package/components/DataGrid/formatters/ColumnInteractiveCheckFormatter/index.js +23 -0
- package/components/DataGrid/formatters/ColumnNestedValueFormatter/index.js +14 -0
- package/components/DataGrid/formatters/ColumnPointsFormatter/index.js +10 -0
- package/components/DataGrid/formatters/ColumnPriceFormatter/index.js +10 -0
- package/components/DataGrid/formatters/ColumnSetCheckFormatter/index.js +36 -0
- package/components/DataGrid/formatters/ColumnUncertaintyFormatter/index.js +10 -0
- package/components/DataGrid/formatters/index.js +1 -0
- package/components/DataGrid/hooks/useDataGrid.js +12 -0
- package/components/DataGrid/hooks/useFilters.js +6 -0
- package/components/DataGrid/index.js +87 -0
- package/components/DataGrid/styles.js +13 -0
- package/components/DataGrid/subcomponents/Actions/index.js +48 -0
- package/components/DataGrid/subcomponents/Actions/subcomponents/Density/index.js +71 -0
- package/components/DataGrid/subcomponents/Actions/subcomponents/Filter/index.js +26 -0
- package/components/DataGrid/subcomponents/Actions/subcomponents/MobileMenuActions/index.js +59 -0
- package/components/DataGrid/subcomponents/Actions/subcomponents/RowsCount/index.js +19 -0
- package/components/DataGrid/subcomponents/Actions/subcomponents/Settings/index.js +23 -0
- package/components/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/index.js +270 -0
- package/components/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/styles.js +50 -0
- package/components/DataGrid/subcomponents/Actions/subcomponents/hooks/useModalSettings/index.js +63 -0
- package/components/DataGrid/subcomponents/Table/hooks/getDragHeaderRenderer.js +11 -0
- package/components/DataGrid/subcomponents/Table/hooks/useFocusRef.js +17 -0
- package/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.js +191 -0
- package/components/DataGrid/subcomponents/Table/index.js +77 -0
- package/components/DataGrid/subcomponents/Table/subcomponents/ActionsColumn.js +46 -0
- package/components/DataGrid/subcomponents/Table/subcomponents/CheckboxFormatter.js +26 -0
- package/components/DataGrid/subcomponents/Table/subcomponents/CustomIcons.js +16 -0
- package/components/DataGrid/subcomponents/Table/subcomponents/DraggableHeaderRenderer.js +113 -0
- package/components/DataGrid/subcomponents/Table/subcomponents/SelectColumn.js +79 -0
- package/components/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/index.js +11 -0
- package/components/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/styles.js +10 -0
- package/components/DataGrid/subcomponents/editors/TextEditor/index.js +80 -0
- package/components/DataGrid/types.js +6 -0
- package/components/DataGrid/utils/getDataGridRowsFromSet.js +21 -0
- package/components/DragResizeWindow/DragResizeWindow.js +167 -0
- package/components/DragResizeWindow/DragResizeWindow.styles.js +40 -0
- package/components/DragResizeWindow/classes/index.js +16 -0
- package/components/DragResizeWindow/constants.js +6 -0
- package/components/DragResizeWindow/helpers/index.js +39 -0
- package/components/DragResizeWindow/hooks/useDimensionEffects.js +212 -0
- package/components/DragResizeWindow/hooks/useDragOptions.js +88 -0
- package/components/DragResizeWindow/hooks/useResizeOptions.js +62 -0
- package/components/DragResizeWindow/index.js +1 -0
- package/components/DragResizeWindow/slots/DragResizeWindowSlots.js +14 -0
- package/components/DragResizeWindow/slots/slots.js +8 -0
- package/components/DragResizeWindow/utils.js +17 -0
- package/components/DynamicFilter/DynamicFIlter.styles.js +379 -0
- package/components/DynamicFilter/DynamicFilter.js +14 -0
- package/components/DynamicFilter/constants.js +31 -0
- package/components/DynamicFilter/dictionary.js +51 -0
- package/components/DynamicFilter/helpers/formatToInitialFilters.js +31 -0
- package/components/DynamicFilter/helpers/formatToRowFilter.js +18 -0
- package/components/DynamicFilter/helpers/getPurgedInitialFiltersApplied.js +61 -0
- package/components/DynamicFilter/index.js +1 -0
- package/components/DynamicFilter/slots/SlotsEnum.js +34 -0
- package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +86 -0
- package/components/DynamicFilter/slots/dynamicFilterSlots.js +151 -0
- package/components/DynamicFilter/slots/index.js +1 -0
- package/components/DynamicFilter/store/DynamicFilterContext.js +84 -0
- package/components/DynamicFilter/store/DynamicFilterStore.js +219 -0
- package/components/DynamicFilter/store/useDynamicFilterStore.js +14 -0
- package/components/DynamicFilter/subcomponents/AppliedFilterChip/AppliedFilterChip.js +28 -0
- package/components/DynamicFilter/subcomponents/AppliedFilterChip/index.js +1 -0
- package/components/DynamicFilter/subcomponents/AppliedFilterChip/useAppliedFilterChip.js +36 -0
- package/components/DynamicFilter/subcomponents/AppliedFilters/AppliedFilters.js +15 -0
- package/components/DynamicFilter/subcomponents/AppliedFilters/index.js +1 -0
- package/components/DynamicFilter/subcomponents/AppliedFilters/useAppliedFilters.js +15 -0
- package/components/DynamicFilter/subcomponents/DynamicFilterBase/DynamicFilterBase.js +35 -0
- package/components/DynamicFilter/subcomponents/DynamicFilterBase/index.js +1 -0
- package/components/DynamicFilter/subcomponents/DynamicFilterBase/useDynamicFilterBase.js +9 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/BooleanFilter/helpers.js +94 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/BooleanFilter/index.js +58 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/DataTypeComponent.js +16 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/helpers.js +140 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/index.js +54 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/NumberFilter/helpers.js +120 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/NumberFilter/index.js +56 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/helpers.js +121 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/index.js +49 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/helpers.js +96 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/index.js +41 -0
- package/components/DynamicFilter/subcomponents/FieldTypes/fieldFactory.js +25 -0
- package/components/DynamicFilter/subcomponents/FilterActions/FilterActions.js +43 -0
- package/components/DynamicFilter/subcomponents/FilterActions/FilterActionsSkeleton.js +12 -0
- package/components/DynamicFilter/subcomponents/FilterActions/index.js +1 -0
- package/components/DynamicFilter/subcomponents/FilterActions/useFilterActions.js +43 -0
- package/components/DynamicFilter/subcomponents/InputFilter/InputFilter.js +40 -0
- package/components/DynamicFilter/subcomponents/InputFilter/InputFilterSkeleton.js +19 -0
- package/components/DynamicFilter/subcomponents/InputFilter/index.js +1 -0
- package/components/DynamicFilter/subcomponents/InputFilter/useInputFilter.js +153 -0
- package/components/DynamicFilter/subcomponents/PopoverFilter/PopoverFilter.js +64 -0
- package/components/DynamicFilter/subcomponents/PopoverFilter/index.js +1 -0
- package/components/DynamicFilter/subcomponents/PopoverFilter/usePopoverFilter.js +99 -0
- package/components/DynamicFilter/subcomponents/PopoverMenuFields/PopoverMenuFields.js +38 -0
- package/components/DynamicFilter/subcomponents/PopoverMenuFields/index.js +1 -0
- package/components/DynamicFilter/subcomponents/PopoverMenuFields/usePopoverMenuFields.js +29 -0
- package/components/DynamicSort/slots/DynamicSortSlots.d.ts +83 -0
- package/components/GridLayout/GridLayout.js +563 -0
- package/components/GridLayout/calculateUtils.js +73 -0
- package/components/GridLayout/classes/index.js +24 -0
- package/components/GridLayout/constants.js +26 -0
- package/components/GridLayout/index.js +1 -0
- package/components/GridLayout/styles.js +163 -0
- package/components/GridLayout/subcomponents/GridItem/index.js +412 -0
- package/components/GridLayout/subcomponents/Responsive/helper.js +62 -0
- package/components/GridLayout/subcomponents/Responsive/index.js +161 -0
- package/components/GridLayout/subcomponents/Responsive/responsiveUtils.js +150 -0
- package/components/GridLayout/subcomponents/withSizeProvider/index.js +72 -0
- package/components/GridLayout/utils.js +450 -0
- package/components/HelmetPage/index.js +21 -0
- package/components/HelperError/HelperError.js +18 -0
- package/components/HelperError/HelperError.styles.js +13 -0
- package/components/HelperError/constant.js +4 -0
- package/components/HelperError/index.js +1 -0
- package/components/HelperError/slots/HelperErrorEnum.js +7 -0
- package/components/HelperError/slots/HelperErrorSlots.js +12 -0
- package/components/HelperError/slots/index.js +1 -0
- package/components/Icon/Icon.js +91 -0
- package/components/Icon/Icon.styles.js +55 -0
- package/components/Icon/constants.js +6 -0
- package/components/Icon/index.js +1 -0
- package/components/Icon/slots/IconEnum.js +9 -0
- package/components/Icon/slots/IconSlots.js +22 -0
- package/components/Icon/slots/index.js +1 -0
- package/components/Icon/types.js +1 -0
- package/components/Image/Image.js +38 -0
- package/components/Image/classes/constant.js +4 -0
- package/components/Image/classes/index.js +25 -0
- package/components/Image/index.js +1 -0
- package/components/Image/styles.js +7 -0
- package/components/Image/tests/constants.js +4 -0
- package/components/Image/tests/utils.js +7 -0
- package/components/Image/types.js +49 -0
- package/components/Image/utils/getRatioValues.js +19 -0
- package/components/Label/Label.js +24 -0
- package/components/Label/Label.styles.js +78 -0
- package/components/Label/constants.js +4 -0
- package/components/Label/index.js +1 -0
- package/components/Label/slots/LabelEnum.js +11 -0
- package/components/Label/slots/LabelSlots.d.ts +17 -0
- package/components/Label/slots/LabelSlots.js +34 -0
- package/components/Label/slots/index.js +1 -0
- package/components/LanguagePopover/LanguagePopover.js +149 -0
- package/components/LanguagePopover/classes/constants.js +4 -0
- package/components/LanguagePopover/classes/index.js +33 -0
- package/components/LanguagePopover/index.js +1 -0
- package/components/LanguagePopover/styles.js +30 -0
- package/components/LanguagePopover/tests/constants.js +4 -0
- package/components/LanguagePopover/types.js +1 -0
- package/components/LinearProgressIndeterminate/LinearProgressIndeterminate.js +28 -0
- package/components/LinearProgressIndeterminate/classes/constants.js +4 -0
- package/components/LinearProgressIndeterminate/classes/index.js +28 -0
- package/components/LinearProgressIndeterminate/index.js +1 -0
- package/components/LinearProgressIndeterminate/styles.js +7 -0
- package/components/LinearProgressIndeterminate/tests/constants.js +4 -0
- package/components/LinearProgressIndeterminate/tests/utils.js +7 -0
- package/components/Loadable/index.js +9 -0
- package/components/LoadingError/LoadingError.js +50 -0
- package/components/LoadingError/classes/constants.js +4 -0
- package/components/LoadingError/classes/index.js +39 -0
- package/components/LoadingError/dictionary.js +6 -0
- package/components/LoadingError/index.js +1 -0
- package/components/LoadingError/styles.js +7 -0
- package/components/MFIsolationApp/MFIsolationApp.js +129 -0
- package/components/MFIsolationApp/constants.js +4 -0
- package/components/MFIsolationApp/index.js +1 -0
- package/components/MFIsolationApp/subcomponents/MFAuthApp/MFAuthApp.js +57 -0
- package/components/MFIsolationApp/subcomponents/MFAuthApp/index.js +1 -0
- package/components/MFLoader/MFLoader.js +154 -0
- package/components/MFLoader/classes/constants.js +4 -0
- package/components/MFLoader/classes/index.js +26 -0
- package/components/MFLoader/dictionary.js +6 -0
- package/components/MFLoader/helper.js +135 -0
- package/components/MFLoader/index.js +1 -0
- package/components/MFLoader/styles.js +7 -0
- package/components/MFLoader/subcomponents/ProggessLoadingMF/index.js +16 -0
- package/components/NavLink/NavLink.js +33 -0
- package/components/NavLink/classes/constant.js +4 -0
- package/components/NavLink/classes/index.js +23 -0
- package/components/NavLink/index.js +1 -0
- package/components/NavLink/styles.js +7 -0
- package/components/NavLink/tests/constants.js +4 -0
- package/components/NavLink/tests/utils.js +7 -0
- package/components/NoItemSelected/classes/constants.js +4 -0
- package/components/NoItemSelected/classes/index.js +26 -0
- package/components/NoItemSelected/dictionary.js +12 -0
- package/components/NoItemSelected/index.js +23 -0
- package/components/NoItemSelected/styles.js +26 -0
- package/components/ObjectLogs/components/DetailDialog/index.js +42 -0
- package/components/ObjectLogs/components/DetailFormatter/index.js +32 -0
- package/components/ObjectLogs/dictionary.js +20 -0
- package/components/ObjectLogs/index.js +157 -0
- package/components/ObjectLogs/styles.js +35 -0
- package/components/PDFViewer/PDFViewer.js +30 -0
- package/components/PDFViewer/classes/constants.js +4 -0
- package/components/PDFViewer/classes/index.js +25 -0
- package/components/PDFViewer/index.js +1 -0
- package/components/PDFViewer/styles.js +7 -0
- package/components/PaperForm/PaperForm.js +18 -0
- package/components/PaperForm/classes/constants.js +4 -0
- package/components/PaperForm/classes/index.js +33 -0
- package/components/PaperForm/components/Header.js +19 -0
- package/components/PaperForm/styles.js +51 -0
- package/components/Period/Period.js +193 -0
- package/components/Period/classes/constants.js +4 -0
- package/components/Period/classes/index.js +53 -0
- package/components/Period/dictionary.js +13 -0
- package/components/Period/index.js +1 -0
- package/components/Period/styles.js +45 -0
- package/components/Period/subcomponents/SkeletonPeriod/index.js +12 -0
- package/components/Period/tests/constants.js +4 -0
- package/components/Period/tests/utils.js +7 -0
- package/components/Period/types.js +9 -0
- package/components/PrintingSystem/PrintingSystem.js +62 -0
- package/components/PrintingSystem/classes/constants.js +4 -0
- package/components/PrintingSystem/classes/index.js +76 -0
- package/components/PrintingSystem/index.js +1 -0
- package/components/PrintingSystem/styles.js +7 -0
- package/components/PrintingSystem/subcomponents/BodyNode/index.js +50 -0
- package/components/PrintingSystem/subcomponents/ChartNode/index.js +105 -0
- package/components/PrintingSystem/subcomponents/DividerNode/index.js +20 -0
- package/components/PrintingSystem/subcomponents/FooterNode/index.js +50 -0
- package/components/PrintingSystem/subcomponents/GridNode/index.js +75 -0
- package/components/PrintingSystem/subcomponents/HeaderNode/index.js +50 -0
- package/components/PrintingSystem/subcomponents/ImageNode/index.js +26 -0
- package/components/PrintingSystem/subcomponents/PageNode/index.js +42 -0
- package/components/PrintingSystem/subcomponents/Pager/index.js +22 -0
- package/components/PrintingSystem/subcomponents/PaperNode/index.js +30 -0
- package/components/PrintingSystem/subcomponents/PropertyValueNode/index.js +48 -0
- package/components/PrintingSystem/subcomponents/QRImageNode/index.js +33 -0
- package/components/PrintingSystem/subcomponents/SectionNode/index.js +50 -0
- package/components/PrintingSystem/subcomponents/TextBoxNode/index.js +24 -0
- package/components/PrintingSystem/utils/FactoryRender/index.js +54 -0
- package/components/PrintingSystem/utils/PageRender/index.js +47 -0
- package/components/PrintingSystem/utils/getSize/index.js +10 -0
- package/components/PropertyValue/PropertyValue.js +201 -0
- package/components/PropertyValue/classes/constants.js +4 -0
- package/components/PropertyValue/classes/index.js +40 -0
- package/components/PropertyValue/constants.js +6 -0
- package/components/PropertyValue/styles.js +7 -0
- package/components/ScrollBar/classes/constants.js +4 -0
- package/components/ScrollBar/classes/index.js +23 -0
- package/components/ScrollBar/index.js +17 -0
- package/components/ScrollBar/styles.js +46 -0
- package/components/ScrollToTop/index.js +12 -0
- package/components/SideBar/SideBar.js +78 -0
- package/components/SideBar/classes/constants.js +4 -0
- package/components/SideBar/classes/index.js +131 -0
- package/components/SideBar/constants.js +6 -0
- package/components/SideBar/context/sideBarContext/index.js +75 -0
- package/components/SideBar/hooks/useSideBar/index.js +6 -0
- package/components/SideBar/index.js +1 -0
- package/components/SideBar/styles.js +21 -0
- package/components/SideBar/subcomponents/ContentDesktop/index.js +12 -0
- package/components/SideBar/subcomponents/ContentDesktop/subcomponents/CollapseButton/index.js +29 -0
- package/components/SideBar/subcomponents/ContentDesktop/subcomponents/CollapseButton/styles.js +10 -0
- package/components/SideBar/subcomponents/ContentDesktop/subcomponents/ContentComponent/index.js +74 -0
- package/components/SideBar/subcomponents/ContentGroups/index.js +55 -0
- package/components/SideBar/subcomponents/ContentGroups/styles.js +29 -0
- package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/index.js +95 -0
- package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/styles.js +9 -0
- package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/ArrowIcon/index.js +29 -0
- package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/ArrowIcon/styles.js +9 -0
- package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/index.js +44 -0
- package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/styles.js +29 -0
- package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/subcomponents/NavItemRootContent/index.js +44 -0
- package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/index.js +78 -0
- package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/styles.js +8 -0
- package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/index.js +20 -0
- package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/subcomponents/NavItemSubContent/index.js +57 -0
- package/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/subcomponents/NavItemSubContent/styles.js +39 -0
- package/components/SideBar/subcomponents/ContentMobile/index.js +81 -0
- package/components/SideBar/subcomponents/ContentMobile/styles.js +18 -0
- package/components/SideBar/subcomponents/ContentMobile/subcomponents/Drawer.js +9 -0
- package/components/SideBar/tests/constants.js +4 -0
- package/components/SideBar/tests/utils.js +7 -0
- package/components/SplitLayout/SplitLayout.js +57 -0
- package/components/SplitLayout/classes/constants.js +4 -0
- package/components/SplitLayout/classes/index.js +33 -0
- package/components/SplitLayout/styles.js +29 -0
- package/components/SplitLayout/tests/constants.js +4 -0
- package/components/SplitLayout/tests/utils.js +7 -0
- package/components/ToastContainer/ToastContainer.js +36 -0
- package/components/ToastContainer/ToastContainer.styles.js +209 -0
- package/components/ToastContainer/constants.js +8 -0
- package/components/ToastContainer/helpers/toaster.js +47 -0
- package/components/ToastContainer/icons.js +12 -0
- package/components/ToastContainer/index.js +1 -0
- package/components/ToastContainer/slots/ToastContainerEnum.js +17 -0
- package/components/ToastContainer/slots/index.js +1 -0
- package/components/ToastContainer/slots/toastContainerSlots.js +62 -0
- package/components/ToastContainer/subcomponents/ToastMessage/ToastMessage.js +50 -0
- package/components/ToastContainer/subcomponents/ToastMessage/index.js +1 -0
- package/components/ToastContainer/subcomponents/ToastMessage/useToastMessage.js +42 -0
- package/components/WrapperComponent/index.js +14 -0
- package/components/animate/AnimatedScroll/animatedScroll.js +53 -0
- package/components/animate/AnimatedScroll/index.js +1 -0
- package/components/animate/AnimatedScroll/styles.js +43 -0
- package/components/animate/IconButtonAnimate/index.js +40 -0
- package/components/animate/LoadingScreen/index.js +70 -0
- package/components/animate/LoadingScreen/styles.js +22 -0
- package/components/animate/MotionContainer/index.js +34 -0
- package/components/animate/MotionLazyContainer/index.js +9 -0
- package/components/animate/PropagateLoader/index.js +11 -0
- package/components/animate/PropagateLoader/syles.js +16 -0
- package/components/animate/features.js +5 -0
- package/components/animate/index.js +1 -0
- package/components/animate/variants/bounce.js +101 -0
- package/components/animate/variants/container.js +22 -0
- package/components/animate/variants/fade.js +65 -0
- package/components/animate/variants/index.js +1 -0
- package/components/animate/variants/transition.js +20 -0
- package/components/areas/components/AreasAdmin/classes/index.js +70 -0
- package/components/areas/components/AreasAdmin/index.js +95 -0
- package/components/areas/components/AreasAdmin/styles.js +17 -0
- package/components/areas/components/AreasAdmin/subcomponents/AreaChip/index.js +211 -0
- package/components/areas/components/AreasAdmin/subcomponents/AreaChip/styles.js +29 -0
- package/components/areas/components/AreasAdmin/subcomponents/AreaChip/subcomponents/ChipActionsMobile/index.js +50 -0
- package/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/index.js +97 -0
- package/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/ChipMobile/ChipMobile.js +211 -0
- package/components/areas/components/AreasAdmin/subcomponents/PanelWindowPopUp/index.js +53 -0
- package/components/areas/components/AreasViewer/classes/index.js +91 -0
- package/components/areas/components/AreasViewer/index.js +46 -0
- package/components/areas/components/AreasViewer/styles.js +124 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/index.js +28 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/AreaGridLayout/index.js +62 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/InnerForHooks/index.js +30 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/PanelWindows/index.js +99 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/index.js +141 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/styles.js +69 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Component/index.js +13 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/helper.js +66 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/index.js +150 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/MainActions/index.js +44 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/WindowHeaderSkeleton/index.js +57 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/MicroFrontend/index.js +10 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/WindowModal/index.js +58 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/WindowModal/styles.js +26 -0
- package/components/areas/components/index.js +1 -0
- package/components/areas/constants.js +6 -0
- package/components/areas/contexts/AreasContext/helper.js +220 -0
- package/components/areas/contexts/AreasContext/index.js +84 -0
- package/components/areas/contexts/AreasContext/store.js +939 -0
- package/components/areas/contexts/DynamicMFParmsContext/index.js +13 -0
- package/components/areas/contexts/DynamicMFParmsContext/store.js +28 -0
- package/components/areas/contexts/WindowToolsMFContext/index.js +12 -0
- package/components/areas/contexts/index.js +1 -0
- package/components/areas/dictionary.js +36 -0
- package/components/areas/hooks/index.js +1 -0
- package/components/areas/hooks/useAreas/index.js +13 -0
- package/components/areas/hooks/useDynamicMFParameters/index.js +13 -0
- package/components/areas/hooks/useSetWindowsTitle/index.js +1 -0
- package/components/areas/hooks/useSetWindowsTitle/useSetWindowsTitle.js +31 -0
- package/components/areas/hooks/useWindowToolsMF/index.js +12 -0
- package/components/areas/icons.js +24 -0
- package/components/areas/index.js +1 -0
- package/components/areas/utils/useOnClickOutside/index.js +22 -0
- package/components/commercial/AppBarCommercial/classes/constants.js +4 -0
- package/components/commercial/AppBarCommercial/classes/index.js +21 -0
- package/components/commercial/AppBarCommercial/index.js +11 -0
- package/components/commercial/AppBarCommercial/styles.js +7 -0
- package/components/commercial/HamburgerMenu/HamburgerMenu.js +61 -0
- package/components/commercial/HamburgerMenu/classes/constants.js +4 -0
- package/components/commercial/HamburgerMenu/classes/index.js +20 -0
- package/components/commercial/HamburgerMenu/index.js +1 -0
- package/components/commercial/HamburgerMenu/styles.js +7 -0
- package/components/commercial/HamburgerMenu/test/constants.js +4 -0
- package/components/commercial/HamburgerMenu/test/utils.js +7 -0
- package/components/commercial/SectionCommercial/classes/constants.js +4 -0
- package/components/commercial/SectionCommercial/classes/index.js +29 -0
- package/components/commercial/SectionCommercial/index.js +31 -0
- package/components/commercial/SectionCommercial/styles.js +8 -0
- package/components/commercial/TopBar/TopBar.js +23 -0
- package/components/commercial/TopBar/classes/constants.js +4 -0
- package/components/commercial/TopBar/classes/index.js +37 -0
- package/components/commercial/TopBar/component/ConteinItem/index.js +21 -0
- package/components/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/index.js +136 -0
- package/components/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/subcomponents/ArrowIcon/index.js +19 -0
- package/components/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/subcomponents/ArrowIcon/styles.js +9 -0
- package/components/commercial/TopBar/context/index.js +24 -0
- package/components/commercial/TopBar/hook/topBarContext/index.js +6 -0
- package/components/commercial/TopBar/index.js +1 -0
- package/components/commercial/TopBar/style.js +7 -0
- package/components/commercial/TopBar/utils/isActive/index.js +13 -0
- package/components/commercial/index.js +1 -0
- package/components/extended/react-resizable/Resizable/Resizable.js +8 -0
- package/components/extended/react-resizable/Resizable/constants.js +4 -0
- package/components/extended/react-resizable/Resizable/index.js +1 -0
- package/components/extended/react-resizable/Resizable/slots/ResizableSlots.js +11 -0
- package/components/extended/react-resizable/Resizable/slots/slots.js +7 -0
- package/components/extended/react-resizable/ResizableBox/ResizableBox.js +29 -0
- package/components/extended/react-resizable/ResizableBox/ResizeableBox.styles.js +13 -0
- package/components/extended/react-resizable/ResizableBox/constants.js +4 -0
- package/components/extended/react-resizable/ResizableBox/index.js +1 -0
- package/components/extended/react-resizable/ResizableBox/slots/ResizableBoxSlots.js +11 -0
- package/components/extended/react-resizable/ResizableBox/slots/slots.js +7 -0
- package/components/extended/react-resizable/helpers.js +91 -0
- package/components/extended/react-resizable/index.js +1 -0
- package/components/formatters/BooleanFormatter/dictionary.js +12 -0
- package/components/formatters/BooleanFormatter/index.js +40 -0
- package/components/formatters/ConcatenatedFormatter/index.js +37 -0
- package/components/formatters/CourseFormatter/CourseFormatter.js +33 -0
- package/components/formatters/CourseFormatter/CourseFormatter.styles.js +6 -0
- package/components/formatters/CourseFormatter/constants.js +4 -0
- package/components/formatters/CourseFormatter/dictionary.js +18 -0
- package/components/formatters/CourseFormatter/index.js +1 -0
- package/components/formatters/CourseFormatter/slots/CourseFormatterSlots.js +11 -0
- package/components/formatters/CourseFormatter/slots/slots.js +7 -0
- package/components/formatters/DateFormatter/index.js +43 -0
- package/components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js +43 -0
- package/components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.styles.js +6 -0
- package/components/formatters/DistanceToNowFormatter/constants.js +4 -0
- package/components/formatters/DistanceToNowFormatter/dictionary.js +28 -0
- package/components/formatters/DistanceToNowFormatter/index.js +1 -0
- package/components/formatters/DistanceToNowFormatter/slots/DistanceToNowFormatterSlots.js +11 -0
- package/components/formatters/DistanceToNowFormatter/slots/slots.js +7 -0
- package/components/formatters/FormatterRoot/index.js +10 -0
- package/components/formatters/FormatterRoot/styles.js +7 -0
- package/components/formatters/PeriodFormatter/dictionary.js +13 -0
- package/components/formatters/PeriodFormatter/index.js +60 -0
- package/components/formatters/PointsFormatter/index.js +25 -0
- package/components/formatters/PriceFormatter/index.js +35 -0
- package/components/formatters/UncertaintyFormatter/index.js +29 -0
- package/components/formatters/classes/index.js +13 -0
- package/components/formatters/constants.js +4 -0
- package/components/formatters/dictionary.js +8 -0
- package/components/formatters/index.js +1 -0
- package/components/formatters/types.js +1 -0
- package/components/gclick/MyDevice/MyDevice.js +26 -0
- package/components/gclick/MyDevice/MyDevice.styles.js +22 -0
- package/components/gclick/MyDevice/constants.js +4 -0
- package/components/gclick/MyDevice/index.js +1 -0
- package/components/gclick/MyDevice/slots/MyDeviceSlots.js +22 -0
- package/components/gclick/MyDevice/slots/slots.js +9 -0
- package/components/gclick/MyDeviceStatus/MyDeviceStatus.js +68 -0
- package/components/gclick/MyDeviceStatus/MyDeviceStatus.styles.js +22 -0
- package/components/gclick/MyDeviceStatus/constants.js +17 -0
- package/components/gclick/MyDeviceStatus/dictionary.js +19 -0
- package/components/gclick/MyDeviceStatus/icons.js +14 -0
- package/components/gclick/MyDeviceStatus/index.js +1 -0
- package/components/gclick/MyDeviceStatus/slots/MyDeviceStatusSlots.js +22 -0
- package/components/gclick/MyDeviceStatus/slots/slots.js +9 -0
- package/components/gclick/constants.js +4 -0
- package/components/hook-form/RHFAutocomplete/RHFAutocomplete.js +9 -0
- package/components/hook-form/RHFAutocomplete/classes/constant.js +4 -0
- package/components/hook-form/RHFAutocomplete/classes/index.js +77 -0
- package/components/hook-form/RHFAutocomplete/dictionary.js +6 -0
- package/components/hook-form/RHFAutocomplete/index.js +1 -0
- package/components/hook-form/RHFAutocomplete/styles.js +7 -0
- package/components/hook-form/RHFAutocomplete/subcomponents/ComponentTypeImage/index.js +290 -0
- package/components/hook-form/RHFAutocomplete/subcomponents/ComponentTypeText/index.js +274 -0
- package/components/hook-form/RHFAutocomplete/subcomponents/RenderOption/index.js +25 -0
- package/components/hook-form/RHFAutocomplete/subcomponents/RenderOption/styles.js +9 -0
- package/components/hook-form/RHFAutocomplete/subcomponents/Skeleton/index.js +28 -0
- package/components/hook-form/RHFAutocomplete/test/constants.js +6 -0
- package/components/hook-form/RHFAutocomplete/test/utils.js +7 -0
- package/components/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.js +9 -0
- package/components/hook-form/RHFAutocompleteAsync/classes/constant.js +4 -0
- package/components/hook-form/RHFAutocompleteAsync/classes/index.js +26 -0
- package/components/hook-form/RHFAutocompleteAsync/dictionary.js +7 -0
- package/components/hook-form/RHFAutocompleteAsync/styles.js +34 -0
- package/components/hook-form/RHFAutocompleteAsync/subcomponents/ComponentTypeImage/index.js +103 -0
- package/components/hook-form/RHFAutocompleteAsync/subcomponents/ComponentTypeText/index.js +103 -0
- package/components/hook-form/RHFAutocompleteAsync/tests/constants.js +4 -0
- package/components/hook-form/RHFAutocompleteAsync/tests/utils.js +7 -0
- package/components/hook-form/RHFCheckbox/RHFCheckbox.js +89 -0
- package/components/hook-form/RHFCheckbox/classes/index.js +44 -0
- package/components/hook-form/RHFCheckbox/styles.js +24 -0
- package/components/hook-form/RHFCheckbox/test/constants.js +4 -0
- package/components/hook-form/RHFCheckbox/test/utils.js +7 -0
- package/components/hook-form/RHFColorPicker/RFHColorPicker.js +138 -0
- package/components/hook-form/RHFColorPicker/classes/constants.js +4 -0
- package/components/hook-form/RHFColorPicker/classes/index.js +44 -0
- package/components/hook-form/RHFColorPicker/dictionary.js +6 -0
- package/components/hook-form/RHFColorPicker/index.js +1 -0
- package/components/hook-form/RHFColorPicker/styles.js +7 -0
- package/components/hook-form/RHFColorPicker/subcomponents/Skeleton/indext.js +21 -0
- package/components/hook-form/RHFDateTime/RHFDateTime.js +137 -0
- package/components/hook-form/RHFDateTime/classes/constants.js +4 -0
- package/components/hook-form/RHFDateTime/classes/index.js +45 -0
- package/components/hook-form/RHFDateTime/index.js +1 -0
- package/components/hook-form/RHFDateTime/styles.js +7 -0
- package/components/hook-form/RHFDateTime/subcomponents/Skeleton/index.js +15 -0
- package/components/hook-form/RHFDateTime/test/constants.js +4 -0
- package/components/hook-form/RHFDateTime/test/utils.js +7 -0
- package/components/hook-form/RHFHelperError/index.js +19 -0
- package/components/hook-form/RHFInputNumberSpinner/slots/RHFInputNumberSpinnerSlots.d.ts +23 -0
- package/components/hook-form/RHFMultiCheckbox/index.js +34 -0
- package/components/hook-form/RHFPeriod/classes/constants.js +4 -0
- package/components/hook-form/RHFPeriod/classes/index.js +25 -0
- package/components/hook-form/RHFPeriod/index.js +77 -0
- package/components/hook-form/RHFPeriod/styles.js +13 -0
- package/components/hook-form/RHFRadioGroup/RHFRadioGroup.js +42 -0
- package/components/hook-form/RHFRadioGroup/formatters/OptionIconLabelFormatter/index.js +16 -0
- package/components/hook-form/RHFRadioGroup/index.js +1 -0
- package/components/hook-form/RHFSelect.js +29 -0
- package/components/hook-form/RHFTextField/RHFTextField.js +169 -0
- package/components/hook-form/RHFTextField/RHFTextField.styles.js +113 -0
- package/components/hook-form/RHFTextField/constant.js +4 -0
- package/components/hook-form/RHFTextField/index.js +1 -0
- package/components/hook-form/RHFTextField/slots/RHFTextFieldEnum.js +11 -0
- package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +17 -0
- package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.js +33 -0
- package/components/hook-form/RHFTextField/slots/index.js +1 -0
- package/components/hook-form/RHFTextField/subcomponents/Skeleton/index.js +29 -0
- package/components/hook-form/RHFTextField/types.js +1 -0
- package/components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js +68 -0
- package/components/hook-form/RHFTextFieldPassword/classes/index.js +25 -0
- package/components/hook-form/RHFTextFieldPassword/index.js +1 -0
- package/components/hook-form/RHFTextFieldPassword/styles.js +7 -0
- package/components/hook-form/RHFTextFieldPassword/tests/constants.js +4 -0
- package/components/hook-form/RHFTextFieldPassword/tests/utils.js +7 -0
- package/components/hook-form/RHFTextFieldPassword/types.js +1 -0
- package/components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js +41 -0
- package/components/hook-form/RHFUpload/RHFUploadImage/classes/constants.js +4 -0
- package/components/hook-form/RHFUpload/RHFUploadImage/classes/index.js +57 -0
- package/components/hook-form/RHFUpload/RHFUploadImage/styles.js +9 -0
- package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/index.js +148 -0
- package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/styles.js +7 -0
- package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/subcomponents/Skeleton/index.js +23 -0
- package/components/hook-form/RHFUpload/RHFUploadImage/tests/constants.js +4 -0
- package/components/hook-form/RHFUpload/RHFUploadImage/tests/utils.js +7 -0
- package/components/hook-form/RHFUpload/index.js +1 -0
- package/components/hook-form/RHFormContext/classes/constants.js +4 -0
- package/components/hook-form/RHFormContext/classes/index.js +29 -0
- package/components/hook-form/RHFormContext/dictionary.js +6 -0
- package/components/hook-form/RHFormContext/index.js +63 -0
- package/components/hook-form/RHFormContext/styles.js +7 -0
- package/components/hook-form/index.js +1 -0
- package/components/index.js +1 -0
- package/components/maps/components/Map/Map.js +34 -0
- package/components/maps/components/Map/Map.styles.js +227 -0
- package/components/maps/components/Map/classes/index.js +110 -0
- package/components/maps/components/Map/constants.js +49 -0
- package/components/maps/components/Map/contexts/MapContext/MapContext.js +58 -0
- package/components/maps/components/Map/contexts/MapContext/helper.js +1 -0
- package/components/maps/components/Map/contexts/MapContext/store.js +369 -0
- package/components/maps/components/Map/dictionary.js +38 -0
- package/components/maps/components/Map/external/Control/index.js +42 -0
- package/components/maps/components/Map/external/googleMutant/LRUMap.js +1 -0
- package/components/maps/components/Map/external/googleMutant/googleMutant.js +1 -0
- package/components/maps/components/Map/external/googleMutant/index.d.ts +157 -0
- package/components/maps/components/Map/external/googleMutant/index.js +1 -0
- package/components/maps/components/Map/featureRenders/CommonFeatureRender/index.js +257 -0
- package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/FeatureDivIconLabel/index.js +33 -0
- package/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/MarkerIconLabel/index.js +76 -0
- package/components/maps/components/Map/featureRenders/MarkerFeatureRender/index.js +79 -0
- package/components/maps/components/Map/featureRenders/index.js +1 -0
- package/components/maps/components/Map/hooks/useAutoFocus/index.js +78 -0
- package/components/maps/components/Map/hooks/useDisableZoomEvents/index.js +21 -0
- package/components/maps/components/Map/hooks/useMapStore/index.js +13 -0
- package/components/maps/components/Map/icons.js +61 -0
- package/components/maps/components/Map/index.js +1 -0
- package/components/maps/components/Map/pluginLayers/PolylineWithArrows/index.js +74 -0
- package/components/maps/components/Map/pluginLayers/index.js +1 -0
- package/components/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.js +97 -0
- package/components/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.styles.js +34 -0
- package/components/maps/components/Map/popups/MapPopupMyGps/constants.js +6 -0
- package/components/maps/components/Map/popups/MapPopupMyGps/dictionary.js +21 -0
- package/components/maps/components/Map/popups/MapPopupMyGps/index.js +1 -0
- package/components/maps/components/Map/popups/MapPopupMyGps/slots/ MapPopupMyGpsSlots.js +21 -0
- package/components/maps/components/Map/popups/MapPopupMyGps/slots/slots.js +9 -0
- package/components/maps/components/Map/popups/MapPopupMyGps/subcomponents/PropertyValue/index.js +14 -0
- package/components/maps/components/Map/popups/index.js +1 -0
- package/components/maps/components/Map/slots/MapSlots.js +24 -0
- package/components/maps/components/Map/slots/slots.js +10 -0
- package/components/maps/components/Map/subcomponents/Controls/index.js +31 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/index.js +13 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/index.js +59 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useCheckedLayers.js +17 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useColumns.js +140 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useMaster.js +52 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useRowActionsGetter.js +42 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/index.js +30 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/index.js +134 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/bing.js +39 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/google.js +73 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/osm.js +25 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/utils.js +19 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/index.js +101 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/constants.js +34 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/helpers.js +45 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/index.js +245 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useValidation.js +17 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/index.js +41 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/index.js +33 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/validations.js +6 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MyActions/index.js +26 -0
- package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/ZoomButtons/index.js +52 -0
- package/components/maps/components/Map/subcomponents/LayersContainer/index.js +33 -0
- package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/index.js +132 -0
- package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/MarkerClusterGroup/index.js +24 -0
- package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/RenderByEachFeatureComponent/index.js +13 -0
- package/components/maps/components/Map/subcomponents/TileLayers/index.js +13 -0
- package/components/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerGoogle/index.js +100 -0
- package/components/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerOthers/index.js +35 -0
- package/components/maps/components/MapGpsTools/MapGpsTools.js +10 -0
- package/components/maps/components/MapGpsTools/classes/index.js +21 -0
- package/components/maps/components/MapGpsTools/constants.js +71 -0
- package/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/index.js +48 -0
- package/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/store.js +155 -0
- package/components/maps/components/MapGpsTools/dictionary.js +73 -0
- package/components/maps/components/MapGpsTools/hooks/useLayers/index.js +57 -0
- package/components/maps/components/MapGpsTools/hooks/useMapGpsToolsStore/index.js +13 -0
- package/components/maps/components/MapGpsTools/icons.js +26 -0
- package/components/maps/components/MapGpsTools/index.js +1 -0
- package/components/maps/components/MapGpsTools/styles.js +21 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/index.js +90 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/constants.js +40 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/helpers.js +77 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useDrawing.js +216 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSubmit.js +63 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSumbitErrorsFocus.js +36 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useValidation.js +19 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/index.js +73 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/styles.js +8 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/index.js +52 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/validations.js +11 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/index.js +138 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/validations.js +12 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyActions/index.js +61 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyTabs/index.js +82 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/index.js +12 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/FillData/index.js +49 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/StrokeData/index.js +89 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedFeatures.js +86 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedGeofences.js +85 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useColumns.js +116 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useMaster.js +162 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useRowActionsGetter.js +111 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/index.js +75 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/styles.js +8 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/subcomponents/Filter/index.js +49 -0
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/constants.js +13 -0
- package/components/maps/index.js +1 -0
- package/components/maps/utils/courseToCartesianAngle.js +8 -0
- package/components/maps/utils/courseToCssAngle.js +13 -0
- package/components/maps/utils/index.js +1 -0
- package/components/maps/utils/isFeature.js +6 -0
- package/components/maps/utils/isFeatureCollection.js +6 -0
- package/components/maps/utils/isFeatureCollectionDraft.js +6 -0
- package/components/maps/utils/isGeometry.js +6 -0
- package/components/modal/ModalDialog/dictionary.js +11 -0
- package/components/modal/ModalDialog/index.js +60 -0
- package/components/modal/WindowBase/index.js +20 -0
- package/components/modal/WindowBase/subcomponents/Header/index.js +29 -0
- package/components/modal/WindowConfirm/dictionary.js +6 -0
- package/components/modal/WindowConfirm/index.js +43 -0
- package/components/modal/WindowConfirm/subcomponents/MessageIlustration/index.js +35 -0
- package/components/modal/classes/constants.js +4 -0
- package/components/modal/classes/index.js +61 -0
- package/components/modal/dictionary.js +6 -0
- package/components/modal/index.js +1 -0
- package/components/mui_extended/Accordion/Accordion.js +98 -0
- package/components/mui_extended/Accordion/classes/constants.js +4 -0
- package/components/mui_extended/Accordion/classes/index.js +31 -0
- package/components/mui_extended/Accordion/constants.js +4 -0
- package/components/mui_extended/Accordion/index.js +1 -0
- package/components/mui_extended/Accordion/styles.js +25 -0
- package/components/mui_extended/Avatar/Avatar.js +29 -0
- package/components/mui_extended/Avatar/classes/constants.js +4 -0
- package/components/mui_extended/Avatar/classes/index.js +25 -0
- package/components/mui_extended/Avatar/index.js +1 -0
- package/components/mui_extended/Avatar/styles.js +7 -0
- package/components/mui_extended/Avatar/subcomponents/SkeletonAvatar/index.js +20 -0
- package/components/mui_extended/Avatar/tests/constants.js +4 -0
- package/components/mui_extended/Avatar/tests/utils.js +7 -0
- package/components/mui_extended/Badge/Badge.js +18 -0
- package/components/mui_extended/Badge/Badge.styles.js +8 -0
- package/components/mui_extended/Badge/constants.js +4 -0
- package/components/mui_extended/Badge/index.js +1 -0
- package/components/mui_extended/Badge/slots/BadgeEnum.js +7 -0
- package/components/mui_extended/Badge/slots/BadgeSlots.d.ts +5 -0
- package/components/mui_extended/Badge/slots/BadgeSlots.js +12 -0
- package/components/mui_extended/BoxIcon/index.js +22 -0
- package/components/mui_extended/Breadcrumbs/components/LinkItem/index.js +31 -0
- package/components/mui_extended/Breadcrumbs/index.js +64 -0
- package/components/mui_extended/Button/Button.js +52 -0
- package/components/mui_extended/Button/classes/constants.js +4 -0
- package/components/mui_extended/Button/classes/index.js +49 -0
- package/components/mui_extended/Button/index.js +1 -0
- package/components/mui_extended/Button/styles.js +12 -0
- package/components/mui_extended/Button/types.js +1 -0
- package/components/mui_extended/CheckBox/CheckBox.js +46 -0
- package/components/mui_extended/CheckBox/classes/constants.js +4 -0
- package/components/mui_extended/CheckBox/classes/index.js +33 -0
- package/components/mui_extended/CheckBox/index.js +1 -0
- package/components/mui_extended/CheckBox/styles.js +7 -0
- package/components/mui_extended/CheckBox/subcomponents/Skeleton/index.js +9 -0
- package/components/mui_extended/CircularProgress/index.js +8 -0
- package/components/mui_extended/IconButton/IconButton.js +95 -0
- package/components/mui_extended/IconButton/IconButton.styles.js +299 -0
- package/components/mui_extended/IconButton/constants.js +4 -0
- package/components/mui_extended/IconButton/helpers/evalIconColor.js +27 -0
- package/components/mui_extended/IconButton/index.js +1 -0
- package/components/mui_extended/IconButton/slots/IconButtonEnum.js +9 -0
- package/components/mui_extended/IconButton/slots/IconButtonSlots.d.ts +13 -0
- package/components/mui_extended/IconButton/slots/IconButtonSlots.js +23 -0
- package/components/mui_extended/IconButton/slots/index.js +1 -0
- package/components/mui_extended/ImageButton/ImageButton.js +45 -0
- package/components/mui_extended/ImageButton/styles.js +7 -0
- package/components/mui_extended/ImageButton/tests/constants.js +4 -0
- package/components/mui_extended/ImageButton/utils/Clases/constants.js +4 -0
- package/components/mui_extended/ImageButton/utils/Clases/index.js +23 -0
- package/components/mui_extended/LinearProgress/index.js +9 -0
- package/components/mui_extended/LinkWithRoute/index.js +15 -0
- package/components/mui_extended/LoadingButton/classes/constants.js +4 -0
- package/components/mui_extended/LoadingButton/classes/index.js +42 -0
- package/components/mui_extended/LoadingButton/index.js +47 -0
- package/components/mui_extended/LoadingButton/styles.js +8 -0
- package/components/mui_extended/LoadingButton/tests/constants.js +4 -0
- package/components/mui_extended/LoadingButton/tests/utils.js +7 -0
- package/components/mui_extended/MenuActions/MenuActions.js +147 -0
- package/components/mui_extended/MenuActions/MenuActions.styles.js +50 -0
- package/components/mui_extended/MenuActions/constants.js +10 -0
- package/components/mui_extended/MenuActions/dictionary.js +15 -0
- package/components/mui_extended/MenuActions/index.js +1 -0
- package/components/mui_extended/MenuActions/slots/MenuActionsEnum.js +13 -0
- package/components/mui_extended/MenuActions/slots/MenuActionsSlots.d.ts +23 -0
- package/components/mui_extended/MenuActions/slots/MenuActionsSlots.js +46 -0
- package/components/mui_extended/MenuActions/slots/index.js +1 -0
- package/components/mui_extended/Pager/classes/constants.js +4 -0
- package/components/mui_extended/Pager/classes/index.js +55 -0
- package/components/mui_extended/Pager/dicctionary.js +6 -0
- package/components/mui_extended/Pager/index.js +49 -0
- package/components/mui_extended/Pager/styles.js +7 -0
- package/components/mui_extended/Pager/subcomponents/CustomTablePagination/index.js +96 -0
- package/components/mui_extended/Pager/subcomponents/PagerActions/index.js +68 -0
- package/components/mui_extended/Popover/Popover.js +49 -0
- package/components/mui_extended/Popover/classes/index.js +51 -0
- package/components/mui_extended/Popover/index.js +1 -0
- package/components/mui_extended/Popover/styles.js +8 -0
- package/components/mui_extended/Popover/subcomponts/ArrowIcon/index.js +61 -0
- package/components/mui_extended/Skeleton/Skeleton.js +20 -0
- package/components/mui_extended/Skeleton/Slots/skeletonEnum.js +7 -0
- package/components/mui_extended/Skeleton/Slots/skeletonSlots.d.ts +5 -0
- package/components/mui_extended/Skeleton/Slots/skeletonSlots.js +12 -0
- package/components/mui_extended/Skeleton/constants.js +6 -0
- package/components/mui_extended/Skeleton/index.js +1 -0
- package/components/mui_extended/Skeleton/skeleton.styles.js +37 -0
- package/components/mui_extended/Stack/Stack.js +12 -0
- package/components/mui_extended/Stack/classes/constants.js +4 -0
- package/components/mui_extended/Stack/classes/index.js +23 -0
- package/components/mui_extended/Stack/index.js +1 -0
- package/components/mui_extended/Stack/styles.js +7 -0
- package/components/mui_extended/Tab/classes/constants.js +4 -0
- package/components/mui_extended/Tab/classes/index.js +25 -0
- package/components/mui_extended/Tab/constant.js +4 -0
- package/components/mui_extended/Tab/index.js +40 -0
- package/components/mui_extended/Tab/styles.js +11 -0
- package/components/mui_extended/TabContent/TabContent.js +12 -0
- package/components/mui_extended/TabContent/classes/constants.js +4 -0
- package/components/mui_extended/TabContent/classes/index.js +23 -0
- package/components/mui_extended/TabContent/index.js +1 -0
- package/components/mui_extended/TabContent/styles.js +7 -0
- package/components/mui_extended/TabContext/index.js +24 -0
- package/components/mui_extended/Tabs/Tabs.js +12 -0
- package/components/mui_extended/Tabs/classes/constants.js +4 -0
- package/components/mui_extended/Tabs/classes/index.js +23 -0
- package/components/mui_extended/Tabs/index.js +1 -0
- package/components/mui_extended/Tabs/styles.js +7 -0
- package/components/mui_extended/ToggleButton/ToggleButton.js +19 -0
- package/components/mui_extended/ToggleButton/index.js +1 -0
- package/components/mui_extended/ToggleButton/types.js +1 -0
- package/components/mui_extended/ToggleIconButton/ToggleIconButton.js +20 -0
- package/components/mui_extended/ToggleIconButton/index.js +1 -0
- package/components/mui_extended/ToggleIconButton/types.js +1 -0
- package/components/mui_extended/Tooltip/Tooltip.js +25 -0
- package/components/mui_extended/Tooltip/Tooltip.styles.js +65 -0
- package/components/mui_extended/Tooltip/constants.js +4 -0
- package/components/mui_extended/Tooltip/index.js +1 -0
- package/components/mui_extended/Tooltip/slots/TooltipEnum.js +9 -0
- package/components/mui_extended/Tooltip/slots/TooltipSlots.js +22 -0
- package/components/mui_extended/Tooltip/slots/index.js +1 -0
- package/components/mui_extended/Typography/Typography.js +31 -0
- package/components/mui_extended/Typography/index.js +1 -0
- package/components/mui_extended/Typography/styles.js +7 -0
- package/components/mui_extended/Typography/subcomponents/index.js +9 -0
- package/components/mui_extended/Typography/tests/constants.js +4 -0
- package/components/mui_extended/Typography/tests/utils.js +7 -0
- package/components/mui_extended/Typography/utils/Clases/index.js +22 -0
- package/components/mui_extended/index.js +1 -0
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.js +38 -0
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/index.js +1 -0
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/store.js +160 -0
- package/components/popups/components/PopupsProvider/hooks/usePopupsStore/index.js +13 -0
- package/components/popups/components/PopupsProvider/index.js +1 -0
- package/components/popups/components/PopupsViewer/PopupsViewer.js +53 -0
- package/components/popups/components/PopupsViewer/PopupsViewer.styles.js +122 -0
- package/components/popups/components/PopupsViewer/constants.js +4 -0
- package/components/popups/components/PopupsViewer/icons.js +7 -0
- package/components/popups/components/PopupsViewer/index.js +1 -0
- package/components/popups/components/PopupsViewer/slots/popupsViewerSlots.js +46 -0
- package/components/popups/components/PopupsViewer/slots/slots.js +14 -0
- package/components/popups/components/PopupsViewer/subcomponents/Popup/index.js +68 -0
- package/components/popups/components/PopupsViewer/subcomponents/Popup/subcomponents/EditionInfo/index.js +22 -0
- package/components/popups/components/PopupsViewer/subcomponents/Popup/subcomponents/Header/index.js +53 -0
- package/components/popups/index.js +1 -0
- package/contexts/AppearanceComponentContext/AppearanceComponentContext.js +19 -0
- package/contexts/AppearanceComponentContext/AppearanceComponentStore.js +27 -0
- package/contexts/AppearanceComponentContext/index.js +1 -0
- package/contexts/AppearanceComponentContext/useAppearanceComponentStore.js +16 -0
- package/contexts/ModalContext/index.js +39 -0
- package/contexts/ModalContext/types.js +1 -0
- package/contexts/RealTimeContext/RealTimeContext.js +76 -0
- package/contexts/RealTimeContext/index.js +1 -0
- package/contexts/RealTimeContext/store.js +58 -0
- package/contexts/index.js +1 -0
- package/helpers/cookies/cookies.js +45 -0
- package/helpers/cookies/index.js +1 -0
- package/hocs/index.js +1 -0
- package/hocs/withToggle/index.js +14 -0
- package/hooks/index.js +1 -0
- package/hooks/useComponentSize/index.js +1 -0
- package/hooks/useComponentSize/useComponentSize.js +9 -0
- package/hooks/useFormAddEdit/dictionary.js +6 -0
- package/hooks/useFormAddEdit/index.js +86 -0
- package/hooks/useFormFocus/index.js +21 -0
- package/hooks/useFormReadyForUpdate/index.js +20 -0
- package/hooks/useInterval/index.js +22 -0
- package/hooks/useModal/index.js +12 -0
- package/hooks/useSizeContainer/contants.js +4 -0
- package/hooks/useSizeContainer/index.js +37 -0
- package/hooks/useStateRef/index.js +15 -0
- package/hooks/useSvgColor/constants.js +36 -0
- package/hooks/useSvgColor/helpers.js +30 -0
- package/hooks/useSvgColor/index.js +1 -0
- package/hooks/useSvgColor/types.js +1 -0
- package/hooks/useSvgColor/useSvgColor.js +60 -0
- package/hooks/useTab/index.js +12 -0
- package/index.js +404 -0
- package/package.json +115 -190
- package/test/constants_no_mock.js +4 -0
- package/test/getNameDataTestId.js +17 -0
- package/utils/capitalizeFirstLetter.js +1 -0
- package/utils/containerQuery.js +6 -0
- package/utils/formatDistanceToNow/formatDistanteToNow.js +82 -0
- package/utils/formatDistanceToNow/index.js +1 -0
- package/utils/index.js +11 -0
- package/vite-env.d.ts +4 -0
- package/.gitignore +0 -37
- package/.gitlab-ci.yml +0 -7
- package/.storybook/constants.ts +0 -40
- package/.storybook/decorators/WithContexts/WithContexts.tsx +0 -61
- package/.storybook/decorators/WithContexts/index.ts +0 -1
- package/.storybook/decorators/WithContexts/styles.tsx +0 -12
- package/.storybook/decorators/WithContexts/subcomponents/AppWithTheme.tsx +0 -40
- package/.storybook/decorators/WithContexts/types.ts +0 -9
- package/.storybook/decorators/WithForm/WithForm.tsx +0 -16
- package/.storybook/decorators/WithForm/index.ts +0 -1
- package/.storybook/decorators/WithFormAutoValidation/WithFormAutoValidation.tsx +0 -18
- package/.storybook/decorators/WithFormAutoValidation/index.ts +0 -1
- package/.storybook/decorators/WithMapProvider/WithMapProvider.tsx +0 -40
- package/.storybook/decorators/WithMapProvider/constants.ts +0 -206
- package/.storybook/decorators/WithMapProvider/index.ts +0 -1
- package/.storybook/decorators/WithPopupsProvider/WithPopupsProvider.tsx +0 -27
- package/.storybook/decorators/WithPopupsProvider/index.ts +0 -1
- package/.storybook/decorators/WithScaleIcons/WithScaleIcons.tsx +0 -16
- package/.storybook/decorators/WithScaleIcons/index.ts +0 -1
- package/.storybook/decorators/WithWindowsContainer/WithWindowsContainer.tsx +0 -15
- package/.storybook/decorators/WithWindowsContainer/index.ts +0 -1
- package/.storybook/decorators/WithWindowsContainer/subcomponents/WindowsContainer/WindowsContainer.tsx +0 -26
- package/.storybook/decorators/WithWindowsContainer/subcomponents/WindowsContainer/index.ts +0 -1
- package/.storybook/decorators/WithWindowsContainer/subcomponents/WindowsContainer/types.ts +0 -3
- package/.storybook/decorators/WithWrapper/WithWrapper.tsx +0 -31
- package/.storybook/decorators/WithWrapper/index.ts +0 -1
- package/.storybook/decorators/WithWrapper/types.ts +0 -11
- package/.storybook/decorators/index.tsx +0 -7
- package/.storybook/docs/Palette.mdx +0 -86
- package/.storybook/main.ts +0 -72
- package/.storybook/preview-head.html +0 -3
- package/.storybook/preview.tsx +0 -52
- package/.storybook/storybook.vite.ts +0 -5
- package/.storybook/utils/getGlobalsFromSearchParams.ts +0 -15
- package/.storybook/utils/getStylesColorsByMode.ts +0 -30
- package/.vscode/extensions.json +0 -3
- package/.vscode/settings.json +0 -21
- package/.yarnrc.yml +0 -39
- package/dist/components/DataGrid/assets/icons/datagrid.svg +0 -4
- package/dist/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +0 -86
- package/dist/components/DynamicSort/slots/DynamicSortSlots.d.ts +0 -83
- package/dist/components/Label/slots/LabelSlots.d.ts +0 -17
- package/dist/components/hook-form/RHFInputNumberSpinner/slots/RHFInputNumberSpinnerSlots.d.ts +0 -23
- package/dist/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +0 -17
- package/dist/components/maps/components/Map/external/googleMutant/index.d.ts +0 -0
- package/dist/components/mui_extended/Badge/slots/BadgeSlots.d.ts +0 -5
- package/dist/components/mui_extended/IconButton/slots/IconButtonSlots.d.ts +0 -13
- package/dist/components/mui_extended/MenuActions/slots/MenuActionsSlots.d.ts +0 -23
- package/dist/components/mui_extended/Skeleton/Slots/skeletonSlots.d.ts +0 -5
- package/dist/index.js +0 -220
- package/dist/vendor.js +0 -27215
- package/eslint.config.js +0 -3
- package/lefthook.yml +0 -59
- package/public/components/DataGrid/assets/icons/datagrid.svg +0 -4
- package/src/@types/augmentations.ts +0 -43
- package/src/@types/export.d.ts +0 -260
- package/src/@types/types.d.ts +0 -161
- package/src/components/AccountPopover/AccountPopover.tsx +0 -126
- package/src/components/AccountPopover/classes/constants.ts +0 -1
- package/src/components/AccountPopover/classes/index.ts +0 -76
- package/src/components/AccountPopover/classes/types.ts +0 -37
- package/src/components/AccountPopover/dictionary.ts +0 -3
- package/src/components/AccountPopover/index.ts +0 -4
- package/src/components/AccountPopover/style.ts +0 -5
- package/src/components/AccountPopover/subcomponents/MyAvatar/index.tsx +0 -33
- package/src/components/AccountPopover/subcomponents/MyAvatar/types.ts +0 -20
- package/src/components/AccountPopover/subcomponents/PopOver/index.tsx +0 -211
- package/src/components/AccountPopover/subcomponents/PopOver/tests/constants.ts +0 -1
- package/src/components/AccountPopover/subcomponents/PopOver/tests/index.test.txt +0 -250
- package/src/components/AccountPopover/subcomponents/PopOver/tests/utils.ts +0 -6
- package/src/components/AccountPopover/subcomponents/PopOver/types.ts +0 -25
- package/src/components/AccountPopover/tests/constants.ts +0 -1
- package/src/components/AccountPopover/tests/index.test.txt +0 -245
- package/src/components/AccountPopover/tests/utils.ts +0 -6
- package/src/components/AccountPopover/types.ts +0 -77
- package/src/components/AppBar/AppBar.tsx +0 -109
- package/src/components/AppBar/classes/constants.ts +0 -1
- package/src/components/AppBar/classes/index.tsx +0 -50
- package/src/components/AppBar/classes/types.ts +0 -17
- package/src/components/AppBar/dictionary.ts +0 -3
- package/src/components/AppBar/index.ts +0 -2
- package/src/components/AppBar/styles.tsx +0 -5
- package/src/components/AppBar/tests/constants.ts +0 -1
- package/src/components/AppBar/tests/index.test.tsx +0 -156
- package/src/components/AppBar/tests/utils.ts +0 -6
- package/src/components/AppBar/types.ts +0 -34
- package/src/components/BaseModule/BaseModule.tsx +0 -50
- package/src/components/BaseModule/index.ts +0 -2
- package/src/components/BaseModule/types.ts +0 -11
- package/src/components/CommonActions/classes/constants.ts +0 -1
- package/src/components/CommonActions/classes/index.tsx +0 -44
- package/src/components/CommonActions/classes/types.ts +0 -19
- package/src/components/CommonActions/components/ActionCancel/index.tsx +0 -23
- package/src/components/CommonActions/components/ActionFormCancel/index.tsx +0 -85
- package/src/components/CommonActions/components/ActionFormCancel/types.ts +0 -7
- package/src/components/CommonActions/components/ActionFormIntro/index.tsx +0 -52
- package/src/components/CommonActions/components/ActionIntro/index.tsx +0 -33
- package/src/components/CommonActions/components/ActionIntro/test/contants.ts +0 -1
- package/src/components/CommonActions/components/Actions/index.tsx +0 -36
- package/src/components/CommonActions/components/Actions/styles.tsx +0 -12
- package/src/components/CommonActions/components/Actions/types.ts +0 -6
- package/src/components/CommonActions/dictionary.ts +0 -14
- package/src/components/CommonActions/index.ts +0 -10
- package/src/components/CommonActions/tests/constants.ts +0 -1
- package/src/components/CommonActions/tests/index.test.tsx +0 -166
- package/src/components/CommonActions/tests/utils.ts +0 -6
- package/src/components/DataGrid/assets/icons/datagrid1.svg +0 -4
- package/src/components/DataGrid/assets/icons/datagrid2.svg +0 -4
- package/src/components/DataGrid/classes/constants.ts +0 -1
- package/src/components/DataGrid/classes/index.tsx +0 -80
- package/src/components/DataGrid/classes/types.ts +0 -36
- package/src/components/DataGrid/constants.ts +0 -4
- package/src/components/DataGrid/contexts/DataGridContext/index.tsx +0 -376
- package/src/components/DataGrid/contexts/DataGridContext/types.ts +0 -83
- package/src/components/DataGrid/contexts/FilterContext/index.tsx +0 -77
- package/src/components/DataGrid/contexts/FilterContext/types.ts +0 -18
- package/src/components/DataGrid/dictionary.ts +0 -24
- package/src/components/DataGrid/formatters/ColumnBooleanFormatter/index.tsx +0 -34
- package/src/components/DataGrid/formatters/ColumnBooleanFormatter/types.ts +0 -7
- package/src/components/DataGrid/formatters/ColumnConcatenatedValueFormatter/index.tsx +0 -32
- package/src/components/DataGrid/formatters/ColumnConcatenatedValueFormatter/types.ts +0 -7
- package/src/components/DataGrid/formatters/ColumnDateFormatter/index.tsx +0 -37
- package/src/components/DataGrid/formatters/ColumnDateFormatter/styles.tsx +0 -11
- package/src/components/DataGrid/formatters/ColumnDateFormatter/types.ts +0 -8
- package/src/components/DataGrid/formatters/ColumnIconFormatter/index.tsx +0 -25
- package/src/components/DataGrid/formatters/ColumnIconFormatter/types.ts +0 -7
- package/src/components/DataGrid/formatters/ColumnInteractiveCheckFormatter/index.tsx +0 -34
- package/src/components/DataGrid/formatters/ColumnInteractiveCheckFormatter/types.ts +0 -3
- package/src/components/DataGrid/formatters/ColumnNestedValueFormatter/index.tsx +0 -22
- package/src/components/DataGrid/formatters/ColumnNestedValueFormatter/types.ts +0 -4
- package/src/components/DataGrid/formatters/ColumnPointsFormatter/index.tsx +0 -16
- package/src/components/DataGrid/formatters/ColumnPointsFormatter/types.ts +0 -5
- package/src/components/DataGrid/formatters/ColumnPriceFormatter/index.tsx +0 -17
- package/src/components/DataGrid/formatters/ColumnPriceFormatter/types.ts +0 -4
- package/src/components/DataGrid/formatters/ColumnSetCheckFormatter/index.tsx +0 -57
- package/src/components/DataGrid/formatters/ColumnSetCheckFormatter/types.ts +0 -8
- package/src/components/DataGrid/formatters/ColumnUncertaintyFormatter/index.tsx +0 -16
- package/src/components/DataGrid/formatters/ColumnUncertaintyFormatter/types.ts +0 -6
- package/src/components/DataGrid/formatters/index.ts +0 -11
- package/src/components/DataGrid/hooks/useDataGrid.ts +0 -17
- package/src/components/DataGrid/hooks/useFilters.ts +0 -6
- package/src/components/DataGrid/index.tsx +0 -100
- package/src/components/DataGrid/styles.tsx +0 -18
- package/src/components/DataGrid/subcomponents/Actions/index.tsx +0 -66
- package/src/components/DataGrid/subcomponents/Actions/styles.ts +0 -29
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/Density/index.tsx +0 -87
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/Density/types.ts +0 -2
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/Filter/index.tsx +0 -40
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/Filter/types.ts +0 -2
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/MobileMenuActions/index.tsx +0 -64
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/RowsCount/index.tsx +0 -38
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/RowsCount/types.ts +0 -2
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/Settings/index.tsx +0 -39
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/index.tsx +0 -356
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/styles.ts +0 -50
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/types.ts +0 -33
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/Settings/types.ts +0 -2
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/hooks/useModalSettings/index.tsx +0 -73
- package/src/components/DataGrid/subcomponents/Actions/subcomponents/hooks/useModalSettings/types.ts +0 -4
- package/src/components/DataGrid/subcomponents/Actions/types.ts +0 -20
- package/src/components/DataGrid/subcomponents/Table/hooks/getDragHeaderRenderer.tsx +0 -24
- package/src/components/DataGrid/subcomponents/Table/hooks/useFocusRef.ts +0 -18
- package/src/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.ts +0 -343
- package/src/components/DataGrid/subcomponents/Table/index.tsx +0 -140
- package/src/components/DataGrid/subcomponents/Table/subcomponents/ActionsColumn.tsx +0 -69
- package/src/components/DataGrid/subcomponents/Table/subcomponents/CheckboxFormatter.tsx +0 -26
- package/src/components/DataGrid/subcomponents/Table/subcomponents/CustomIcons.tsx +0 -161
- package/src/components/DataGrid/subcomponents/Table/subcomponents/DraggableHeaderRenderer.tsx +0 -132
- package/src/components/DataGrid/subcomponents/Table/subcomponents/SelectColumn.tsx +0 -122
- package/src/components/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/index.tsx +0 -18
- package/src/components/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/styles.tsx +0 -8
- package/src/components/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/types.ts +0 -2
- package/src/components/DataGrid/subcomponents/editors/TextEditor/index.tsx +0 -101
- package/src/components/DataGrid/types.ts +0 -145
- package/src/components/DataGrid/utils/getDataGridRowsFromSet.ts +0 -25
- package/src/components/DragResizeWindow/DragResizeWindow.styles.tsx +0 -45
- package/src/components/DragResizeWindow/DragResizeWindow.tsx +0 -265
- package/src/components/DragResizeWindow/classes/index.tsx +0 -18
- package/src/components/DragResizeWindow/classes/types.ts +0 -11
- package/src/components/DragResizeWindow/constants.ts +0 -4
- package/src/components/DragResizeWindow/helpers/index.ts +0 -54
- package/src/components/DragResizeWindow/hooks/useDimensionEffects.tsx +0 -396
- package/src/components/DragResizeWindow/hooks/useDragOptions.tsx +0 -171
- package/src/components/DragResizeWindow/hooks/useResizeOptions.tsx +0 -116
- package/src/components/DragResizeWindow/icons.ts +0 -3
- package/src/components/DragResizeWindow/index.ts +0 -4
- package/src/components/DragResizeWindow/slots/DragResizeWindowSlots.ts +0 -14
- package/src/components/DragResizeWindow/slots/slots.ts +0 -4
- package/src/components/DragResizeWindow/stories/basic.stories.tsx +0 -72
- package/src/components/DragResizeWindow/stories/constants.ts +0 -3
- package/src/components/DragResizeWindow/stories/dictionary.ts +0 -0
- package/src/components/DragResizeWindow/stories/subcomponents/ContentExample.tsx +0 -28
- package/src/components/DragResizeWindow/stories/subcomponents/WithExtendedContainer.tsx +0 -33
- package/src/components/DragResizeWindow/stories/types.ts +0 -4
- package/src/components/DragResizeWindow/types.ts +0 -255
- package/src/components/DragResizeWindow/utils.ts +0 -20
- package/src/components/DynamicFilter/DynamicFIlter.styles.ts +0 -389
- package/src/components/DynamicFilter/DynamicFilter.stories.ts +0 -188
- package/src/components/DynamicFilter/DynamicFilter.tsx +0 -22
- package/src/components/DynamicFilter/__tests__/DynamicFilter.test.tsx +0 -72
- package/src/components/DynamicFilter/constants.ts +0 -33
- package/src/components/DynamicFilter/dictionary.ts +0 -64
- package/src/components/DynamicFilter/helpers/formatToInitialFilters.ts +0 -43
- package/src/components/DynamicFilter/helpers/formatToRowFilter.ts +0 -27
- package/src/components/DynamicFilter/helpers/getPurgedInitialFiltersApplied.ts +0 -74
- package/src/components/DynamicFilter/index.ts +0 -9
- package/src/components/DynamicFilter/slots/SlotsEnum.ts +0 -30
- package/src/components/DynamicFilter/slots/dynamicFilterSlots.ts +0 -149
- package/src/components/DynamicFilter/slots/index.ts +0 -2
- package/src/components/DynamicFilter/store/DynamicFilterContext.tsx +0 -120
- package/src/components/DynamicFilter/store/DynamicFilterStore.ts +0 -468
- package/src/components/DynamicFilter/store/useDynamicFilterStore.ts +0 -20
- package/src/components/DynamicFilter/subcomponents/AppliedFilterChip/AppliedFilterChip.tsx +0 -50
- package/src/components/DynamicFilter/subcomponents/AppliedFilterChip/index.ts +0 -1
- package/src/components/DynamicFilter/subcomponents/AppliedFilterChip/useAppliedFilterChip.ts +0 -55
- package/src/components/DynamicFilter/subcomponents/AppliedFilters/AppliedFilters.tsx +0 -29
- package/src/components/DynamicFilter/subcomponents/AppliedFilters/index.ts +0 -1
- package/src/components/DynamicFilter/subcomponents/AppliedFilters/useAppliedFilters.ts +0 -22
- package/src/components/DynamicFilter/subcomponents/DynamicFilterBase/DynamicFilterBase.tsx +0 -33
- package/src/components/DynamicFilter/subcomponents/DynamicFilterBase/index.ts +0 -1
- package/src/components/DynamicFilter/subcomponents/DynamicFilterBase/useDynamicFilterBase.ts +0 -11
- package/src/components/DynamicFilter/subcomponents/FieldTypes/BooleanFilter/helpers.ts +0 -152
- package/src/components/DynamicFilter/subcomponents/FieldTypes/BooleanFilter/index.tsx +0 -64
- package/src/components/DynamicFilter/subcomponents/FieldTypes/DataTypeComponent.tsx +0 -28
- package/src/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/helpers.ts +0 -217
- package/src/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/index.tsx +0 -65
- package/src/components/DynamicFilter/subcomponents/FieldTypes/FieldTypeInterface.ts +0 -33
- package/src/components/DynamicFilter/subcomponents/FieldTypes/NumberFilter/helpers.ts +0 -178
- package/src/components/DynamicFilter/subcomponents/FieldTypes/NumberFilter/index.tsx +0 -65
- package/src/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/helpers.ts +0 -195
- package/src/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/index.tsx +0 -59
- package/src/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/helpers.ts +0 -149
- package/src/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/index.tsx +0 -46
- package/src/components/DynamicFilter/subcomponents/FieldTypes/fieldFactory.ts +0 -30
- package/src/components/DynamicFilter/subcomponents/FilterActions/FilterActions.tsx +0 -49
- package/src/components/DynamicFilter/subcomponents/FilterActions/FilterActionsSkeleton.tsx +0 -21
- package/src/components/DynamicFilter/subcomponents/FilterActions/index.ts +0 -1
- package/src/components/DynamicFilter/subcomponents/FilterActions/useFilterActions.ts +0 -64
- package/src/components/DynamicFilter/subcomponents/InputFilter/InputFilter.tsx +0 -46
- package/src/components/DynamicFilter/subcomponents/InputFilter/InputFilterSkeleton.tsx +0 -20
- package/src/components/DynamicFilter/subcomponents/InputFilter/index.ts +0 -1
- package/src/components/DynamicFilter/subcomponents/InputFilter/useInputFilter.ts +0 -168
- package/src/components/DynamicFilter/subcomponents/PopoverFilter/PopoverFilter.tsx +0 -76
- package/src/components/DynamicFilter/subcomponents/PopoverFilter/index.ts +0 -1
- package/src/components/DynamicFilter/subcomponents/PopoverFilter/usePopoverFilter.ts +0 -130
- package/src/components/DynamicFilter/subcomponents/PopoverMenuFields/PopoverMenuFields.tsx +0 -51
- package/src/components/DynamicFilter/subcomponents/PopoverMenuFields/index.ts +0 -1
- package/src/components/DynamicFilter/subcomponents/PopoverMenuFields/usePopoverMenuFields.ts +0 -44
- package/src/components/DynamicFilter/types.ts +0 -374
- package/src/components/DynamicSort/DynamicSort.stories.ts +0 -115
- package/src/components/DynamicSort/DynamicSort.styles.ts +0 -375
- package/src/components/DynamicSort/DynamicSort.tsx +0 -23
- package/src/components/DynamicSort/constants.ts +0 -17
- package/src/components/DynamicSort/dictionary.ts +0 -33
- package/src/components/DynamicSort/helpers/formatToInitialSorts.ts +0 -19
- package/src/components/DynamicSort/helpers/formatToRowSort.ts +0 -17
- package/src/components/DynamicSort/helpers/getPurgedInitialSortApplyed.ts +0 -76
- package/src/components/DynamicSort/index.ts +0 -9
- package/src/components/DynamicSort/slots/DynamicSortSlots.ts +0 -145
- package/src/components/DynamicSort/slots/SlotsEnum.ts +0 -30
- package/src/components/DynamicSort/slots/index.ts +0 -2
- package/src/components/DynamicSort/store/DynamicSortContext.tsx +0 -120
- package/src/components/DynamicSort/store/DynamicSortStore.ts +0 -482
- package/src/components/DynamicSort/store/useDynamicSortStore.ts +0 -19
- package/src/components/DynamicSort/subcomponents/AppliedSortChip/AppliedSortChip.tsx +0 -45
- package/src/components/DynamicSort/subcomponents/AppliedSortChip/index.ts +0 -1
- package/src/components/DynamicSort/subcomponents/AppliedSortChip/useAppliedSortChip.ts +0 -56
- package/src/components/DynamicSort/subcomponents/AppliedSorts/AppliedSorts.tsx +0 -29
- package/src/components/DynamicSort/subcomponents/AppliedSorts/index.ts +0 -1
- package/src/components/DynamicSort/subcomponents/AppliedSorts/useAppliedSorts.ts +0 -20
- package/src/components/DynamicSort/subcomponents/DynamicSortBase/DynamicSortBase.tsx +0 -33
- package/src/components/DynamicSort/subcomponents/DynamicSortBase/index.ts +0 -1
- package/src/components/DynamicSort/subcomponents/DynamicSortBase/useDynamicSortBase.ts +0 -11
- package/src/components/DynamicSort/subcomponents/FieldTypes/DataTypeComponent.tsx +0 -25
- package/src/components/DynamicSort/subcomponents/FieldTypes/FieldTypeInterface.ts +0 -33
- package/src/components/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.ts +0 -130
- package/src/components/DynamicSort/subcomponents/FieldTypes/StringSort/index.tsx +0 -53
- package/src/components/DynamicSort/subcomponents/FieldTypes/fieldFactory.ts +0 -22
- package/src/components/DynamicSort/subcomponents/InputSort/InputSort.tsx +0 -43
- package/src/components/DynamicSort/subcomponents/InputSort/InputSortSkeleton.tsx +0 -20
- package/src/components/DynamicSort/subcomponents/InputSort/index.ts +0 -1
- package/src/components/DynamicSort/subcomponents/InputSort/useInputSort.ts +0 -149
- package/src/components/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.tsx +0 -51
- package/src/components/DynamicSort/subcomponents/PopoverMenuFields/index.ts +0 -1
- package/src/components/DynamicSort/subcomponents/PopoverMenuFields/usePopoverMenuFields.ts +0 -44
- package/src/components/DynamicSort/subcomponents/PopoverSort/PopoverSort.tsx +0 -76
- package/src/components/DynamicSort/subcomponents/PopoverSort/index.ts +0 -1
- package/src/components/DynamicSort/subcomponents/PopoverSort/usePopoverSort.ts +0 -129
- package/src/components/DynamicSort/subcomponents/SortActions/SortActions.tsx +0 -50
- package/src/components/DynamicSort/subcomponents/SortActions/SortActionsSkeleton.tsx +0 -21
- package/src/components/DynamicSort/subcomponents/SortActions/index.ts +0 -1
- package/src/components/DynamicSort/subcomponents/SortActions/useSortActions.ts +0 -58
- package/src/components/DynamicSort/types.ts +0 -214
- package/src/components/GridLayout/GridLayout.tsx +0 -923
- package/src/components/GridLayout/calculateUtils.ts +0 -182
- package/src/components/GridLayout/classes/index.tsx +0 -52
- package/src/components/GridLayout/classes/types.ts +0 -20
- package/src/components/GridLayout/constants.ts +0 -25
- package/src/components/GridLayout/index.ts +0 -20
- package/src/components/GridLayout/styles.tsx +0 -164
- package/src/components/GridLayout/subcomponents/GridItem/index.tsx +0 -742
- package/src/components/GridLayout/subcomponents/GridItem/types.ts +0 -145
- package/src/components/GridLayout/subcomponents/Responsive/helper.ts +0 -102
- package/src/components/GridLayout/subcomponents/Responsive/index.tsx +0 -263
- package/src/components/GridLayout/subcomponents/Responsive/responsiveUtils.ts +0 -294
- package/src/components/GridLayout/subcomponents/Responsive/types.ts +0 -214
- package/src/components/GridLayout/subcomponents/withSizeProvider/index.tsx +0 -144
- package/src/components/GridLayout/subcomponents/withSizeProvider/types.ts +0 -8
- package/src/components/GridLayout/types.ts +0 -480
- package/src/components/GridLayout/utils.ts +0 -774
- package/src/components/HelmetPage/index.tsx +0 -36
- package/src/components/HelmetPage/types.ts +0 -20
- package/src/components/HelperError/HelperError.stories.ts +0 -27
- package/src/components/HelperError/HelperError.styles.ts +0 -12
- package/src/components/HelperError/HelperError.tsx +0 -18
- package/src/components/HelperError/constant.ts +0 -1
- package/src/components/HelperError/index.ts +0 -2
- package/src/components/HelperError/slots/HelperErrorEnum.ts +0 -3
- package/src/components/HelperError/slots/HelperErrorSlots.ts +0 -11
- package/src/components/HelperError/slots/index.ts +0 -2
- package/src/components/HelperError/types.ts +0 -38
- package/src/components/Icon/Icon.stories.ts +0 -377
- package/src/components/Icon/Icon.styles.ts +0 -63
- package/src/components/Icon/Icon.tsx +0 -103
- package/src/components/Icon/constants.ts +0 -4
- package/src/components/Icon/index.tsx +0 -2
- package/src/components/Icon/slots/IconEnum.ts +0 -5
- package/src/components/Icon/slots/IconSlots.ts +0 -20
- package/src/components/Icon/slots/index.ts +0 -2
- package/src/components/Icon/types.ts +0 -79
- package/src/components/Image/Image.tsx +0 -59
- package/src/components/Image/classes/constant.ts +0 -1
- package/src/components/Image/classes/index.tsx +0 -32
- package/src/components/Image/classes/types.ts +0 -9
- package/src/components/Image/index.ts +0 -2
- package/src/components/Image/styles.tsx +0 -5
- package/src/components/Image/tests/constants.ts +0 -1
- package/src/components/Image/tests/index.test.tsx +0 -62
- package/src/components/Image/tests/utils.ts +0 -6
- package/src/components/Image/types.ts +0 -71
- package/src/components/Image/utils/getRatioValues.ts +0 -20
- package/src/components/Label/Label.stories.ts +0 -78
- package/src/components/Label/Label.styles.ts +0 -82
- package/src/components/Label/Label.tsx +0 -57
- package/src/components/Label/constants.ts +0 -1
- package/src/components/Label/index.ts +0 -2
- package/src/components/Label/slots/LabelEnum.ts +0 -7
- package/src/components/Label/slots/LabelSlots.ts +0 -34
- package/src/components/Label/slots/index.ts +0 -2
- package/src/components/Label/types.ts +0 -37
- package/src/components/LanguagePopover/LanguagePopover.tsx +0 -213
- package/src/components/LanguagePopover/classes/constants.ts +0 -1
- package/src/components/LanguagePopover/classes/index.tsx +0 -40
- package/src/components/LanguagePopover/classes/types.ts +0 -12
- package/src/components/LanguagePopover/index.ts +0 -2
- package/src/components/LanguagePopover/styles.tsx +0 -28
- package/src/components/LanguagePopover/tests/constants.ts +0 -1
- package/src/components/LanguagePopover/tests/index.test.tsx +0 -155
- package/src/components/LanguagePopover/types.ts +0 -11
- package/src/components/LinearProgressIndeterminate/LinearProgressIndeterminate.tsx +0 -41
- package/src/components/LinearProgressIndeterminate/classes/constants.ts +0 -1
- package/src/components/LinearProgressIndeterminate/classes/index.tsx +0 -34
- package/src/components/LinearProgressIndeterminate/classes/types.ts +0 -12
- package/src/components/LinearProgressIndeterminate/index.ts +0 -1
- package/src/components/LinearProgressIndeterminate/styles.ts +0 -5
- package/src/components/LinearProgressIndeterminate/tests/constants.ts +0 -1
- package/src/components/LinearProgressIndeterminate/tests/index.test.tsx +0 -35
- package/src/components/LinearProgressIndeterminate/tests/utils.ts +0 -11
- package/src/components/Loadable/index.tsx +0 -20
- package/src/components/LoadingError/LoadingError.tsx +0 -85
- package/src/components/LoadingError/classes/constants.ts +0 -1
- package/src/components/LoadingError/classes/index.tsx +0 -56
- package/src/components/LoadingError/classes/types.ts +0 -20
- package/src/components/LoadingError/dictionary.ts +0 -3
- package/src/components/LoadingError/index.ts +0 -2
- package/src/components/LoadingError/styles.ts +0 -5
- package/src/components/LoadingError/types.ts +0 -18
- package/src/components/MFIsolationApp/MFIsolationApp.tsx +0 -167
- package/src/components/MFIsolationApp/constants.ts +0 -1
- package/src/components/MFIsolationApp/index.ts +0 -1
- package/src/components/MFIsolationApp/subcomponents/MFAuthApp/MFAuthApp.tsx +0 -68
- package/src/components/MFIsolationApp/subcomponents/MFAuthApp/index.ts +0 -1
- package/src/components/MFIsolationApp/subcomponents/MFAuthApp/types.ts +0 -7
- package/src/components/MFIsolationApp/types.ts +0 -16
- package/src/components/MFLoader/MFLoader.tsx +0 -294
- package/src/components/MFLoader/classes/constants.ts +0 -1
- package/src/components/MFLoader/classes/index.tsx +0 -33
- package/src/components/MFLoader/classes/types.ts +0 -13
- package/src/components/MFLoader/dictionary.ts +0 -3
- package/src/components/MFLoader/helper.ts +0 -196
- package/src/components/MFLoader/index.ts +0 -2
- package/src/components/MFLoader/styles.ts +0 -5
- package/src/components/MFLoader/subcomponents/ProggessLoadingMF/index.tsx +0 -21
- package/src/components/MFLoader/subcomponents/ProggessLoadingMF/types.ts +0 -5
- package/src/components/MFLoader/types.ts +0 -20
- package/src/components/NavLink/NavLink.tsx +0 -38
- package/src/components/NavLink/classes/constant.ts +0 -1
- package/src/components/NavLink/classes/index.tsx +0 -30
- package/src/components/NavLink/classes/types.ts +0 -8
- package/src/components/NavLink/index.ts +0 -1
- package/src/components/NavLink/styles.ts +0 -5
- package/src/components/NavLink/tests/constants.ts +0 -1
- package/src/components/NavLink/tests/index.test.tsx +0 -25
- package/src/components/NavLink/tests/utils.ts +0 -6
- package/src/components/NavLink/types.ts +0 -8
- package/src/components/NoItemSelected/classes/constants.ts +0 -1
- package/src/components/NoItemSelected/classes/index.tsx +0 -33
- package/src/components/NoItemSelected/classes/types.ts +0 -12
- package/src/components/NoItemSelected/dictionary.ts +0 -11
- package/src/components/NoItemSelected/index.tsx +0 -58
- package/src/components/NoItemSelected/styles.tsx +0 -24
- package/src/components/NoItemSelected/types.ts +0 -4
- package/src/components/ObjectLogs/components/DetailDialog/index.tsx +0 -69
- package/src/components/ObjectLogs/components/DetailDialog/styles.ts +0 -17
- package/src/components/ObjectLogs/components/DetailDialog/types.ts +0 -3
- package/src/components/ObjectLogs/components/DetailFormatter/index.tsx +0 -54
- package/src/components/ObjectLogs/components/DetailFormatter/types.ts +0 -3
- package/src/components/ObjectLogs/dictionary.ts +0 -24
- package/src/components/ObjectLogs/index.tsx +0 -195
- package/src/components/ObjectLogs/styles.tsx +0 -44
- package/src/components/ObjectLogs/types.tsx +0 -19
- package/src/components/PDFViewer/PDFViewer.tsx +0 -45
- package/src/components/PDFViewer/classes/constants.ts +0 -1
- package/src/components/PDFViewer/classes/index.tsx +0 -33
- package/src/components/PDFViewer/classes/types.ts +0 -13
- package/src/components/PDFViewer/index.ts +0 -1
- package/src/components/PDFViewer/styles.ts +0 -5
- package/src/components/PDFViewer/types.ts +0 -3
- package/src/components/PaperForm/PaperForm.tsx +0 -37
- package/src/components/PaperForm/classes/constants.ts +0 -1
- package/src/components/PaperForm/classes/index.tsx +0 -43
- package/src/components/PaperForm/classes/types.ts +0 -17
- package/src/components/PaperForm/components/Header.tsx +0 -34
- package/src/components/PaperForm/index.ts +0 -2
- package/src/components/PaperForm/styles.tsx +0 -48
- package/src/components/PaperForm/types.ts +0 -15
- package/src/components/Period/Period.tsx +0 -231
- package/src/components/Period/classes/constants.ts +0 -1
- package/src/components/Period/classes/index.tsx +0 -61
- package/src/components/Period/classes/types.ts +0 -24
- package/src/components/Period/dictionary.ts +0 -26
- package/src/components/Period/index.tsx +0 -2
- package/src/components/Period/styles.tsx +0 -48
- package/src/components/Period/subcomponents/SkeletonPeriod/index.tsx +0 -19
- package/src/components/Period/subcomponents/SkeletonPeriod/types.ts +0 -5
- package/src/components/Period/tests/constants.ts +0 -1
- package/src/components/Period/tests/index.test.tsx +0 -122
- package/src/components/Period/tests/utils.ts +0 -6
- package/src/components/Period/types.ts +0 -67
- package/src/components/PrintingSystem/PrintingSystem.tsx +0 -81
- package/src/components/PrintingSystem/classes/constants.ts +0 -1
- package/src/components/PrintingSystem/classes/index.tsx +0 -81
- package/src/components/PrintingSystem/classes/types.ts +0 -40
- package/src/components/PrintingSystem/index.ts +0 -2
- package/src/components/PrintingSystem/styles.tsx +0 -5
- package/src/components/PrintingSystem/subcomponents/BodyNode/index.tsx +0 -54
- package/src/components/PrintingSystem/subcomponents/BodyNode/types.ts +0 -5
- package/src/components/PrintingSystem/subcomponents/ChartNode/index.tsx +0 -137
- package/src/components/PrintingSystem/subcomponents/ChartNode/types.ts +0 -3
- package/src/components/PrintingSystem/subcomponents/DividerNode/index.tsx +0 -21
- package/src/components/PrintingSystem/subcomponents/DividerNode/types.ts +0 -3
- package/src/components/PrintingSystem/subcomponents/FooterNode/index.tsx +0 -54
- package/src/components/PrintingSystem/subcomponents/FooterNode/types.ts +0 -5
- package/src/components/PrintingSystem/subcomponents/GridNode/index.tsx +0 -100
- package/src/components/PrintingSystem/subcomponents/GridNode/types.ts +0 -6
- package/src/components/PrintingSystem/subcomponents/HeaderNode/index.tsx +0 -54
- package/src/components/PrintingSystem/subcomponents/HeaderNode/types.ts +0 -5
- package/src/components/PrintingSystem/subcomponents/ImageNode/index.tsx +0 -31
- package/src/components/PrintingSystem/subcomponents/ImageNode/types.ts +0 -3
- package/src/components/PrintingSystem/subcomponents/PageNode/index.tsx +0 -48
- package/src/components/PrintingSystem/subcomponents/PageNode/types.ts +0 -6
- package/src/components/PrintingSystem/subcomponents/Pager/index.tsx +0 -26
- package/src/components/PrintingSystem/subcomponents/Pager/types.ts +0 -6
- package/src/components/PrintingSystem/subcomponents/PaperNode/index.tsx +0 -39
- package/src/components/PrintingSystem/subcomponents/PaperNode/types.ts +0 -6
- package/src/components/PrintingSystem/subcomponents/PropertyValueNode/index.tsx +0 -52
- package/src/components/PrintingSystem/subcomponents/PropertyValueNode/types.ts +0 -6
- package/src/components/PrintingSystem/subcomponents/QRImageNode/index.tsx +0 -55
- package/src/components/PrintingSystem/subcomponents/QRImageNode/types.ts +0 -3
- package/src/components/PrintingSystem/subcomponents/SectionNode/index.tsx +0 -54
- package/src/components/PrintingSystem/subcomponents/SectionNode/types.ts +0 -5
- package/src/components/PrintingSystem/subcomponents/TextBoxNode/index.tsx +0 -32
- package/src/components/PrintingSystem/subcomponents/TextBoxNode/types.ts +0 -3
- package/src/components/PrintingSystem/types.ts +0 -324
- package/src/components/PrintingSystem/utils/FactoryRender/index.tsx +0 -65
- package/src/components/PrintingSystem/utils/FactoryRender/types.ts +0 -5
- package/src/components/PrintingSystem/utils/PageRender/index.tsx +0 -70
- package/src/components/PrintingSystem/utils/PageRender/types.ts +0 -13
- package/src/components/PrintingSystem/utils/getEvalValue/index.ts +0 -54
- package/src/components/PrintingSystem/utils/getSize/index.ts +0 -10
- package/src/components/PropertyValue/PropertyValue.tsx +0 -225
- package/src/components/PropertyValue/classes/constants.ts +0 -1
- package/src/components/PropertyValue/classes/index.tsx +0 -48
- package/src/components/PropertyValue/classes/types.ts +0 -18
- package/src/components/PropertyValue/constants.ts +0 -5
- package/src/components/PropertyValue/index.ts +0 -1
- package/src/components/PropertyValue/styles.tsx +0 -5
- package/src/components/PropertyValue/tests/constants.ts +0 -1
- package/src/components/PropertyValue/tests/index.test.tsx +0 -101
- package/src/components/PropertyValue/tests/utils.ts +0 -12
- package/src/components/PropertyValue/types.ts +0 -29
- package/src/components/ScrollBar/classes/constants.ts +0 -1
- package/src/components/ScrollBar/classes/index.tsx +0 -30
- package/src/components/ScrollBar/classes/types.ts +0 -12
- package/src/components/ScrollBar/index.tsx +0 -35
- package/src/components/ScrollBar/styles.tsx +0 -47
- package/src/components/ScrollBar/types.tsx +0 -8
- package/src/components/ScrollToTop/index.ts +0 -17
- package/src/components/SideBar/SideBar.tsx +0 -133
- package/src/components/SideBar/classes/constants.ts +0 -1
- package/src/components/SideBar/classes/index.ts +0 -143
- package/src/components/SideBar/classes/types.ts +0 -46
- package/src/components/SideBar/constants.ts +0 -2
- package/src/components/SideBar/context/sideBarContext/index.tsx +0 -94
- package/src/components/SideBar/context/sideBarContext/types.tsx +0 -27
- package/src/components/SideBar/hooks/useSideBar/index.tsx +0 -10
- package/src/components/SideBar/index.ts +0 -2
- package/src/components/SideBar/styles.tsx +0 -36
- package/src/components/SideBar/subcomponents/ContentDesktop/index.tsx +0 -28
- package/src/components/SideBar/subcomponents/ContentDesktop/subcomponents/CollapseButton/index.tsx +0 -48
- package/src/components/SideBar/subcomponents/ContentDesktop/subcomponents/CollapseButton/styles.tsx +0 -8
- package/src/components/SideBar/subcomponents/ContentDesktop/subcomponents/CollapseButton/types.ts +0 -6
- package/src/components/SideBar/subcomponents/ContentDesktop/subcomponents/ContentComponent/index.tsx +0 -93
- package/src/components/SideBar/subcomponents/ContentGroups/index.tsx +0 -74
- package/src/components/SideBar/subcomponents/ContentGroups/styles.tsx +0 -27
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/index.tsx +0 -129
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/styles.tsx +0 -7
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/ArrowIcon/index.tsx +0 -31
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/ArrowIcon/styles.tsx +0 -7
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/ArrowIcon/types.ts +0 -3
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/index.tsx +0 -58
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/styles.tsx +0 -37
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/subcomponents/NavItemRootContent/index.tsx +0 -54
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/subcomponents/NavItemRootContent/type.ts +0 -10
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/type.ts +0 -36
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/index.tsx +0 -93
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/styles.tsx +0 -6
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/index.tsx +0 -21
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/styles.tsx +0 -17
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/subcomponents/NavItemSubContent/index.tsx +0 -69
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/subcomponents/NavItemSubContent/styles.tsx +0 -40
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/subcomponents/NavItemSubContent/types.tsx +0 -10
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/types.tsx +0 -18
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/type.ts +0 -13
- package/src/components/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/types.ts +0 -14
- package/src/components/SideBar/subcomponents/ContentGroups/type.ts +0 -6
- package/src/components/SideBar/subcomponents/ContentGroups/utils/index.tsx +0 -9
- package/src/components/SideBar/subcomponents/ContentMobile/index.tsx +0 -82
- package/src/components/SideBar/subcomponents/ContentMobile/styles.tsx +0 -17
- package/src/components/SideBar/subcomponents/ContentMobile/subcomponents/Drawer.tsx +0 -10
- package/src/components/SideBar/subcomponents/ContentMobile/subcomponents/types.ts +0 -9
- package/src/components/SideBar/tests/constants.ts +0 -81
- package/src/components/SideBar/tests/index.test.tsx.txt +0 -364
- package/src/components/SideBar/tests/utils.ts +0 -6
- package/src/components/SideBar/types.ts +0 -67
- package/src/components/SplitLayout/SplitLayout.tsx +0 -91
- package/src/components/SplitLayout/classes/constants.ts +0 -1
- package/src/components/SplitLayout/classes/index.tsx +0 -48
- package/src/components/SplitLayout/classes/types.ts +0 -17
- package/src/components/SplitLayout/index.ts +0 -2
- package/src/components/SplitLayout/styles.tsx +0 -32
- package/src/components/SplitLayout/tests/constants.ts +0 -1
- package/src/components/SplitLayout/tests/index.test.txt +0 -36
- package/src/components/SplitLayout/tests/utils.ts +0 -6
- package/src/components/SplitLayout/types.ts +0 -27
- package/src/components/StorybookTest/StorybookTest.tsx +0 -19
- package/src/components/StorybookTest/base.stories.ts +0 -36
- package/src/components/ToastContainer/ToastContainer.stories.tsx +0 -233
- package/src/components/ToastContainer/ToastContainer.styles.ts +0 -230
- package/src/components/ToastContainer/ToastContainer.tsx +0 -37
- package/src/components/ToastContainer/__tests__/ToastContainer.test.tsx +0 -101
- package/src/components/ToastContainer/constants.ts +0 -5
- package/src/components/ToastContainer/helpers/toaster.tsx +0 -81
- package/src/components/ToastContainer/icons.ts +0 -10
- package/src/components/ToastContainer/index.ts +0 -3
- package/src/components/ToastContainer/slots/ToastContainerEnum.ts +0 -13
- package/src/components/ToastContainer/slots/index.ts +0 -2
- package/src/components/ToastContainer/slots/toastContainerSlots.ts +0 -61
- package/src/components/ToastContainer/subcomponents/ToastMessage/ToastMessage.tsx +0 -67
- package/src/components/ToastContainer/subcomponents/ToastMessage/index.tsx +0 -1
- package/src/components/ToastContainer/subcomponents/ToastMessage/useToastMessage.ts +0 -56
- package/src/components/ToastContainer/types.ts +0 -63
- package/src/components/WrapperComponent/index.tsx +0 -13
- package/src/components/WrapperComponent/types.ts +0 -6
- package/src/components/animate/AnimatedScroll/animatedScroll.tsx +0 -114
- package/src/components/animate/AnimatedScroll/index.ts +0 -1
- package/src/components/animate/AnimatedScroll/styles.ts +0 -44
- package/src/components/animate/AnimatedScroll/types.ts +0 -17
- package/src/components/animate/DialogAnimate.tsx +0 -76
- package/src/components/animate/FabButtonAnimate.tsx +0 -134
- package/src/components/animate/IconButtonAnimate/index.tsx +0 -86
- package/src/components/animate/IconButtonAnimate/types.ts +0 -11
- package/src/components/animate/LoadingScreen/index.tsx +0 -84
- package/src/components/animate/LoadingScreen/styles.tsx +0 -25
- package/src/components/animate/LoadingScreen/types.ts +0 -18
- package/src/components/animate/MotionContainer/index.tsx +0 -63
- package/src/components/animate/MotionInView.tsx +0 -64
- package/src/components/animate/MotionLazyContainer/index.tsx +0 -29
- package/src/components/animate/PropagateLoader/index.tsx +0 -20
- package/src/components/animate/PropagateLoader/syles.tsx +0 -14
- package/src/components/animate/TextAnimate.tsx +0 -47
- package/src/components/animate/features.js +0 -3
- package/src/components/animate/index.ts +0 -16
- package/src/components/animate/type.ts +0 -75
- package/src/components/animate/variants/actions.ts +0 -10
- package/src/components/animate/variants/background.ts +0 -115
- package/src/components/animate/variants/bounce.ts +0 -109
- package/src/components/animate/variants/container.ts +0 -31
- package/src/components/animate/variants/fade.ts +0 -73
- package/src/components/animate/variants/flip.ts +0 -40
- package/src/components/animate/variants/index.ts +0 -13
- package/src/components/animate/variants/path.ts +0 -14
- package/src/components/animate/variants/rotate.ts +0 -35
- package/src/components/animate/variants/scale.ts +0 -40
- package/src/components/animate/variants/slide.ts +0 -63
- package/src/components/animate/variants/transition.ts +0 -34
- package/src/components/animate/variants/zoom.ts +0 -128
- package/src/components/areas/components/AreasAdmin/classes/index.tsx +0 -79
- package/src/components/areas/components/AreasAdmin/classes/types.ts +0 -65
- package/src/components/areas/components/AreasAdmin/helper.ts +0 -39
- package/src/components/areas/components/AreasAdmin/index.tsx +0 -205
- package/src/components/areas/components/AreasAdmin/styles.tsx +0 -27
- package/src/components/areas/components/AreasAdmin/subcomponents/AreaChip/index.tsx +0 -235
- package/src/components/areas/components/AreasAdmin/subcomponents/AreaChip/styles.tsx +0 -29
- package/src/components/areas/components/AreasAdmin/subcomponents/AreaChip/subcomponents/ChipActionsMobile/index.tsx +0 -54
- package/src/components/areas/components/AreasAdmin/subcomponents/AreaChip/subcomponents/ChipActionsMobile/types.ts +0 -6
- package/src/components/areas/components/AreasAdmin/subcomponents/AreaChip/types.ts +0 -15
- package/src/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/index.tsx +0 -113
- package/src/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/ChipMobile/ChipMobile.tsx +0 -226
- package/src/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/PanelWindowPopUp/index.tsx +0 -72
- package/src/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/PanelWindowPopUp/types.ts +0 -3
- package/src/components/areas/components/AreasAdmin/subcomponents/PanelWindowPopUp/index.tsx +0 -60
- package/src/components/areas/components/AreasAdmin/subcomponents/PanelWindowPopUp/types.ts +0 -3
- package/src/components/areas/components/AreasAdmin/test/utils.ts +0 -6
- package/src/components/areas/components/AreasViewer/classes/index.tsx +0 -99
- package/src/components/areas/components/AreasViewer/classes/types.ts +0 -47
- package/src/components/areas/components/AreasViewer/index.tsx +0 -78
- package/src/components/areas/components/AreasViewer/styles.tsx +0 -310
- package/src/components/areas/components/AreasViewer/subcomponents/Area/index.tsx +0 -40
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/AreaGridLayout/index.tsx +0 -115
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/AreaGridLayout/index.txt +0 -151
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/AreaGridLayout/types.ts +0 -3
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/InnerForHooks/index.tsx +0 -45
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/InnerForHooks/types.ts +0 -3
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/PanelWindows/index.tsx +0 -127
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/PanelWindows/styles.tsx +0 -34
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/PanelWindows/types.ts +0 -3
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/index.tsx +0 -196
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/styles.tsx +0 -67
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Component/index.tsx +0 -40
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Component/types.ts +0 -10
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/helper.ts +0 -97
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/index.tsx +0 -214
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/styles.tsx +0 -64
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/MainActions/index.tsx +0 -80
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/WindowHeaderSkeleton/index.tsx +0 -52
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/WindowHeaderSkeleton/types.ts +0 -3
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/WindowPopUpsList/index.tsx +0 -83
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/WindowPopUpsList/types.ts +0 -3
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/types.ts +0 -4
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/LinearProgress/LinearProgress.tsx +0 -13
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/MicroFrontend/index.tsx +0 -26
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/MicroFrontend/types.ts +0 -9
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/types.ts +0 -3
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/WindowModal/index.tsx +0 -98
- package/src/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/WindowModal/styles.ts +0 -27
- package/src/components/areas/components/AreasViewer/subcomponents/Area/types.ts +0 -4
- package/src/components/areas/components/AreasViewer/test/utils.ts +0 -6
- package/src/components/areas/components/index.ts +0 -4
- package/src/components/areas/constants.ts +0 -3
- package/src/components/areas/contexts/AreasContext/helper.ts +0 -326
- package/src/components/areas/contexts/AreasContext/index.test.tsx +0 -267
- package/src/components/areas/contexts/AreasContext/index.tsx +0 -156
- package/src/components/areas/contexts/AreasContext/store.ts +0 -1339
- package/src/components/areas/contexts/AreasContext/types.ts +0 -296
- package/src/components/areas/contexts/DynamicMFParmsContext/index.tsx +0 -33
- package/src/components/areas/contexts/DynamicMFParmsContext/store.ts +0 -55
- package/src/components/areas/contexts/DynamicMFParmsContext/types.ts +0 -22
- package/src/components/areas/contexts/WindowToolsMFContext/index.tsx +0 -36
- package/src/components/areas/contexts/WindowToolsMFContext/types.ts +0 -79
- package/src/components/areas/contexts/index.ts +0 -10
- package/src/components/areas/dictionary.ts +0 -35
- package/src/components/areas/hooks/index.ts +0 -3
- package/src/components/areas/hooks/useAreas/index.ts +0 -33
- package/src/components/areas/hooks/useDynamicMFParameters/index.ts +0 -31
- package/src/components/areas/hooks/useSetWindowsTitle/index.ts +0 -1
- package/src/components/areas/hooks/useSetWindowsTitle/useSetWindowsTitle.ts +0 -40
- package/src/components/areas/hooks/useWindowToolsMF/index.ts +0 -13
- package/src/components/areas/icons.ts +0 -25
- package/src/components/areas/index.ts +0 -6
- package/src/components/areas/types.ts +0 -238
- package/src/components/areas/utils/useOnClickOutside/index.tsx +0 -39
- package/src/components/commercial/AppBarCommercial/classes/constants.ts +0 -1
- package/src/components/commercial/AppBarCommercial/classes/index.tsx +0 -31
- package/src/components/commercial/AppBarCommercial/classes/types.ts +0 -12
- package/src/components/commercial/AppBarCommercial/index.tsx +0 -14
- package/src/components/commercial/AppBarCommercial/styles.ts +0 -5
- package/src/components/commercial/AppBarCommercial/types.ts +0 -5
- package/src/components/commercial/HamburgerMenu/HamburgerMenu.tsx +0 -100
- package/src/components/commercial/HamburgerMenu/classes/constants.ts +0 -1
- package/src/components/commercial/HamburgerMenu/classes/index.tsx +0 -25
- package/src/components/commercial/HamburgerMenu/classes/type.ts +0 -8
- package/src/components/commercial/HamburgerMenu/index.ts +0 -2
- package/src/components/commercial/HamburgerMenu/styles.tsx +0 -13
- package/src/components/commercial/HamburgerMenu/test/constants.ts +0 -1
- package/src/components/commercial/HamburgerMenu/test/index.test.tsx.txt +0 -70
- package/src/components/commercial/HamburgerMenu/test/utils.ts +0 -6
- package/src/components/commercial/HamburgerMenu/types.ts +0 -6
- package/src/components/commercial/SectionCommercial/classes/constants.ts +0 -1
- package/src/components/commercial/SectionCommercial/classes/index.tsx +0 -40
- package/src/components/commercial/SectionCommercial/classes/types.ts +0 -16
- package/src/components/commercial/SectionCommercial/index.tsx +0 -36
- package/src/components/commercial/SectionCommercial/styles.ts +0 -6
- package/src/components/commercial/SectionCommercial/types.ts +0 -10
- package/src/components/commercial/TopBar/TopBar.tsx +0 -37
- package/src/components/commercial/TopBar/classes/constants.ts +0 -1
- package/src/components/commercial/TopBar/classes/index.tsx +0 -42
- package/src/components/commercial/TopBar/classes/types.ts +0 -16
- package/src/components/commercial/TopBar/component/ConteinItem/index.tsx +0 -30
- package/src/components/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/index.tsx +0 -204
- package/src/components/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/subcomponents/ArrowIcon/index.tsx +0 -28
- package/src/components/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/subcomponents/ArrowIcon/styles.tsx +0 -7
- package/src/components/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/subcomponents/ArrowIcon/types.ts +0 -4
- package/src/components/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/types.ts +0 -5
- package/src/components/commercial/TopBar/context/index.tsx +0 -38
- package/src/components/commercial/TopBar/context/type.ts +0 -14
- package/src/components/commercial/TopBar/hook/topBarContext/index.ts +0 -9
- package/src/components/commercial/TopBar/index.ts +0 -1
- package/src/components/commercial/TopBar/style.ts +0 -5
- package/src/components/commercial/TopBar/test/constants.ts +0 -53
- package/src/components/commercial/TopBar/test/index.test.tsx.txt +0 -122
- package/src/components/commercial/TopBar/test/utils.ts +0 -6
- package/src/components/commercial/TopBar/type.ts +0 -17
- package/src/components/commercial/TopBar/utils/isActive/index.ts +0 -24
- package/src/components/commercial/index.ts +0 -4
- package/src/components/extended/react-resizable/Resizable/Resizable.tsx +0 -21
- package/src/components/extended/react-resizable/Resizable/Resizeable.styles.ts +0 -11
- package/src/components/extended/react-resizable/Resizable/constants.ts +0 -2
- package/src/components/extended/react-resizable/Resizable/index.ts +0 -1
- package/src/components/extended/react-resizable/Resizable/slots/ResizableSlots.ts +0 -10
- package/src/components/extended/react-resizable/Resizable/slots/slots.ts +0 -3
- package/src/components/extended/react-resizable/Resizable/stories/basic.stories.tsx +0 -74
- package/src/components/extended/react-resizable/Resizable/stories/constants.ts +0 -3
- package/src/components/extended/react-resizable/Resizable/stories/types.ts +0 -4
- package/src/components/extended/react-resizable/Resizable/types.ts +0 -14
- package/src/components/extended/react-resizable/ResizableBox/ResizableBox.tsx +0 -47
- package/src/components/extended/react-resizable/ResizableBox/ResizeableBox.styles.ts +0 -11
- package/src/components/extended/react-resizable/ResizableBox/constants.ts +0 -2
- package/src/components/extended/react-resizable/ResizableBox/index.ts +0 -1
- package/src/components/extended/react-resizable/ResizableBox/slots/ResizableBoxSlots.ts +0 -10
- package/src/components/extended/react-resizable/ResizableBox/slots/slots.ts +0 -3
- package/src/components/extended/react-resizable/ResizableBox/stories/basic.stories.tsx +0 -75
- package/src/components/extended/react-resizable/ResizableBox/stories/constants.ts +0 -3
- package/src/components/extended/react-resizable/ResizableBox/stories/types.ts +0 -4
- package/src/components/extended/react-resizable/ResizableBox/types.ts +0 -26
- package/src/components/extended/react-resizable/helpers.ts +0 -95
- package/src/components/extended/react-resizable/index.ts +0 -3
- package/src/components/formatters/BooleanFormatter/dictionary.ts +0 -17
- package/src/components/formatters/BooleanFormatter/index.tsx +0 -68
- package/src/components/formatters/BooleanFormatter/types.ts +0 -16
- package/src/components/formatters/ConcatenatedFormatter/index.test.tsx +0 -234
- package/src/components/formatters/ConcatenatedFormatter/index.tsx +0 -55
- package/src/components/formatters/ConcatenatedFormatter/types.ts +0 -21
- package/src/components/formatters/CourseFormatter/CourseFormatter.styles.ts +0 -5
- package/src/components/formatters/CourseFormatter/CourseFormatter.tsx +0 -66
- package/src/components/formatters/CourseFormatter/constants.ts +0 -2
- package/src/components/formatters/CourseFormatter/dictionary.ts +0 -17
- package/src/components/formatters/CourseFormatter/index.tsx +0 -3
- package/src/components/formatters/CourseFormatter/slots/CourseFormatterSlots.ts +0 -10
- package/src/components/formatters/CourseFormatter/slots/slots.ts +0 -3
- package/src/components/formatters/CourseFormatter/stories/basic.stories.tsx +0 -212
- package/src/components/formatters/CourseFormatter/stories/constants.ts +0 -3
- package/src/components/formatters/CourseFormatter/stories/dictionary.ts +0 -0
- package/src/components/formatters/CourseFormatter/stories/subcomponents/WithCFProvider.tsx +0 -26
- package/src/components/formatters/CourseFormatter/stories/types.ts +0 -4
- package/src/components/formatters/CourseFormatter/types.ts +0 -30
- package/src/components/formatters/DateFormatter/index.tsx +0 -113
- package/src/components/formatters/DateFormatter/types.ts +0 -12
- package/src/components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.styles.ts +0 -5
- package/src/components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.tsx +0 -72
- package/src/components/formatters/DistanceToNowFormatter/constants.ts +0 -2
- package/src/components/formatters/DistanceToNowFormatter/dictionary.ts +0 -34
- package/src/components/formatters/DistanceToNowFormatter/index.tsx +0 -3
- package/src/components/formatters/DistanceToNowFormatter/slots/DistanceToNowFormatterSlots.ts +0 -10
- package/src/components/formatters/DistanceToNowFormatter/slots/slots.ts +0 -3
- package/src/components/formatters/DistanceToNowFormatter/stories/basic.stories.tsx +0 -781
- package/src/components/formatters/DistanceToNowFormatter/stories/constants.ts +0 -3
- package/src/components/formatters/DistanceToNowFormatter/stories/dictionary.ts +0 -0
- package/src/components/formatters/DistanceToNowFormatter/stories/subcomponents/WithDTNFProvider.tsx +0 -31
- package/src/components/formatters/DistanceToNowFormatter/stories/types.ts +0 -4
- package/src/components/formatters/DistanceToNowFormatter/types.ts +0 -23
- package/src/components/formatters/FormatterRoot/index.tsx +0 -13
- package/src/components/formatters/FormatterRoot/styles.ts +0 -5
- package/src/components/formatters/FormatterRoot/types.ts +0 -5
- package/src/components/formatters/PeriodFormatter/dictionary.ts +0 -27
- package/src/components/formatters/PeriodFormatter/index.test.tsx +0 -134
- package/src/components/formatters/PeriodFormatter/index.tsx +0 -71
- package/src/components/formatters/PeriodFormatter/types.ts +0 -26
- package/src/components/formatters/PointsFormatter/index.tsx +0 -47
- package/src/components/formatters/PointsFormatter/types.ts +0 -20
- package/src/components/formatters/PriceFormatter/index.tsx +0 -58
- package/src/components/formatters/PriceFormatter/types.ts +0 -14
- package/src/components/formatters/UncertaintyFormatter/index.tsx +0 -72
- package/src/components/formatters/UncertaintyFormatter/types.ts +0 -30
- package/src/components/formatters/classes/index.tsx +0 -29
- package/src/components/formatters/classes/types.ts +0 -9
- package/src/components/formatters/constants.ts +0 -1
- package/src/components/formatters/dictionary.ts +0 -6
- package/src/components/formatters/index.ts +0 -11
- package/src/components/formatters/types.ts +0 -6
- package/src/components/gclick/MyDevice/MyDevice.styles.ts +0 -21
- package/src/components/gclick/MyDevice/MyDevice.tsx +0 -51
- package/src/components/gclick/MyDevice/constants.ts +0 -2
- package/src/components/gclick/MyDevice/index.ts +0 -1
- package/src/components/gclick/MyDevice/slots/MyDeviceSlots.ts +0 -21
- package/src/components/gclick/MyDevice/slots/slots.ts +0 -5
- package/src/components/gclick/MyDevice/stories/basic.stories.tsx +0 -66
- package/src/components/gclick/MyDevice/stories/constants.ts +0 -3
- package/src/components/gclick/MyDevice/stories/dictionary.ts +0 -0
- package/src/components/gclick/MyDevice/stories/subcomponents/WithMyDeviceProvider.tsx +0 -15
- package/src/components/gclick/MyDevice/stories/types.ts +0 -4
- package/src/components/gclick/MyDevice/subcomponents/PropertyValue/index.tsx +0 -29
- package/src/components/gclick/MyDevice/subcomponents/PropertyValue/types.ts +0 -6
- package/src/components/gclick/MyDevice/types.ts +0 -26
- package/src/components/gclick/MyDeviceStatus/MyDeviceStatus.styles.ts +0 -21
- package/src/components/gclick/MyDeviceStatus/MyDeviceStatus.tsx +0 -94
- package/src/components/gclick/MyDeviceStatus/constants.ts +0 -15
- package/src/components/gclick/MyDeviceStatus/dictionary.ts +0 -17
- package/src/components/gclick/MyDeviceStatus/icons.ts +0 -11
- package/src/components/gclick/MyDeviceStatus/index.ts +0 -1
- package/src/components/gclick/MyDeviceStatus/slots/MyDeviceStatusSlots.ts +0 -22
- package/src/components/gclick/MyDeviceStatus/slots/slots.ts +0 -5
- package/src/components/gclick/MyDeviceStatus/stories/basic.stories.tsx +0 -123
- package/src/components/gclick/MyDeviceStatus/stories/constants.ts +0 -3
- package/src/components/gclick/MyDeviceStatus/stories/dataMocks.ts +0 -197
- package/src/components/gclick/MyDeviceStatus/stories/subcomponents/WithMyDeviceProvider.tsx +0 -15
- package/src/components/gclick/MyDeviceStatus/stories/types.ts +0 -4
- package/src/components/gclick/MyDeviceStatus/subcomponents/PropertyValue/index.tsx +0 -29
- package/src/components/gclick/MyDeviceStatus/subcomponents/PropertyValue/types.ts +0 -6
- package/src/components/gclick/MyDeviceStatus/types.ts +0 -22
- package/src/components/gclick/constants.ts +0 -1
- package/src/components/gclick/types.ts +0 -49
- package/src/components/hook-form/RHFAutocomplete/RHFAutocomplete.tsx +0 -18
- package/src/components/hook-form/RHFAutocomplete/classes/constant.ts +0 -1
- package/src/components/hook-form/RHFAutocomplete/classes/index.tsx +0 -86
- package/src/components/hook-form/RHFAutocomplete/classes/types.ts +0 -32
- package/src/components/hook-form/RHFAutocomplete/dictionary.ts +0 -12
- package/src/components/hook-form/RHFAutocomplete/index.ts +0 -1
- package/src/components/hook-form/RHFAutocomplete/styles.tsx +0 -5
- package/src/components/hook-form/RHFAutocomplete/subcomponents/ComponentTypeImage/index.tsx +0 -363
- package/src/components/hook-form/RHFAutocomplete/subcomponents/ComponentTypeText/index.tsx +0 -334
- package/src/components/hook-form/RHFAutocomplete/subcomponents/RenderOption/index.tsx +0 -40
- package/src/components/hook-form/RHFAutocomplete/subcomponents/RenderOption/styles.tsx +0 -7
- package/src/components/hook-form/RHFAutocomplete/subcomponents/Skeleton/index.tsx +0 -42
- package/src/components/hook-form/RHFAutocomplete/subcomponents/Skeleton/types.tsx +0 -7
- package/src/components/hook-form/RHFAutocomplete/test/constants.ts +0 -2
- package/src/components/hook-form/RHFAutocomplete/test/index.test.tsx +0 -217
- package/src/components/hook-form/RHFAutocomplete/test/utils.ts +0 -6
- package/src/components/hook-form/RHFAutocomplete/types.ts +0 -75
- package/src/components/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.tsx +0 -33
- package/src/components/hook-form/RHFAutocompleteAsync/classes/constant.ts +0 -1
- package/src/components/hook-form/RHFAutocompleteAsync/classes/index.tsx +0 -33
- package/src/components/hook-form/RHFAutocompleteAsync/classes/types.ts +0 -8
- package/src/components/hook-form/RHFAutocompleteAsync/dictionary.ts +0 -10
- package/src/components/hook-form/RHFAutocompleteAsync/index.ts +0 -1
- package/src/components/hook-form/RHFAutocompleteAsync/styles.tsx +0 -46
- package/src/components/hook-form/RHFAutocompleteAsync/subcomponents/ComponentTypeImage/index.tsx +0 -141
- package/src/components/hook-form/RHFAutocompleteAsync/subcomponents/ComponentTypeText/index.tsx +0 -136
- package/src/components/hook-form/RHFAutocompleteAsync/tests/constants.ts +0 -1
- package/src/components/hook-form/RHFAutocompleteAsync/tests/utils.ts +0 -6
- package/src/components/hook-form/RHFAutocompleteAsync/types.ts +0 -15
- package/src/components/hook-form/RHFCheckbox/RHFCheckbox.tsx +0 -109
- package/src/components/hook-form/RHFCheckbox/classes/index.tsx +0 -52
- package/src/components/hook-form/RHFCheckbox/classes/types.ts +0 -16
- package/src/components/hook-form/RHFCheckbox/index.ts +0 -2
- package/src/components/hook-form/RHFCheckbox/styles.tsx +0 -24
- package/src/components/hook-form/RHFCheckbox/test/constants.ts +0 -4
- package/src/components/hook-form/RHFCheckbox/test/index.test.txt +0 -128
- package/src/components/hook-form/RHFCheckbox/test/utils.ts +0 -6
- package/src/components/hook-form/RHFCheckbox/types.ts +0 -21
- package/src/components/hook-form/RHFColorPicker/RFHColorPicker.tsx +0 -176
- package/src/components/hook-form/RHFColorPicker/classes/constants.ts +0 -1
- package/src/components/hook-form/RHFColorPicker/classes/index.tsx +0 -52
- package/src/components/hook-form/RHFColorPicker/classes/types.ts +0 -21
- package/src/components/hook-form/RHFColorPicker/dictionary.ts +0 -3
- package/src/components/hook-form/RHFColorPicker/index.tsx +0 -2
- package/src/components/hook-form/RHFColorPicker/styles.ts +0 -5
- package/src/components/hook-form/RHFColorPicker/subcomponents/Skeleton/indext.tsx +0 -22
- package/src/components/hook-form/RHFColorPicker/subcomponents/Skeleton/types.ts +0 -3
- package/src/components/hook-form/RHFColorPicker/types.ts +0 -21
- package/src/components/hook-form/RHFDateTime/RHFDateTime.tsx +0 -180
- package/src/components/hook-form/RHFDateTime/classes/constants.ts +0 -1
- package/src/components/hook-form/RHFDateTime/classes/index.tsx +0 -53
- package/src/components/hook-form/RHFDateTime/classes/types.ts +0 -22
- package/src/components/hook-form/RHFDateTime/index.ts +0 -1
- package/src/components/hook-form/RHFDateTime/styles.ts +0 -5
- package/src/components/hook-form/RHFDateTime/subcomponents/Skeleton/index.tsx +0 -19
- package/src/components/hook-form/RHFDateTime/subcomponents/Skeleton/types.ts +0 -7
- package/src/components/hook-form/RHFDateTime/test/constants.ts +0 -1
- package/src/components/hook-form/RHFDateTime/test/index.test.tsx +0 -101
- package/src/components/hook-form/RHFDateTime/test/utils.ts +0 -6
- package/src/components/hook-form/RHFDateTime/types.ts +0 -53
- package/src/components/hook-form/RHFHelperError/index.tsx +0 -25
- package/src/components/hook-form/RHFInputNumberSpinner/RHFInputNumberSpinner.stories.tsx +0 -77
- package/src/components/hook-form/RHFInputNumberSpinner/RHFInputNumberSpinner.styles.ts +0 -84
- package/src/components/hook-form/RHFInputNumberSpinner/RHFInputNumberSpinner.tsx +0 -89
- package/src/components/hook-form/RHFInputNumberSpinner/constants.ts +0 -1
- package/src/components/hook-form/RHFInputNumberSpinner/index.ts +0 -1
- package/src/components/hook-form/RHFInputNumberSpinner/slots/RHFInputNumberSpinnerSlots.ts +0 -42
- package/src/components/hook-form/RHFInputNumberSpinner/slots/RHFInputNumberSpinnnerEnum.ts +0 -9
- package/src/components/hook-form/RHFInputNumberSpinner/slots/index.ts +0 -2
- package/src/components/hook-form/RHFInputNumberSpinner/subcomponents/SkeletonSpinner/index.tsx +0 -24
- package/src/components/hook-form/RHFInputNumberSpinner/types.ts +0 -34
- package/src/components/hook-form/RHFInputNumberSpinner/useRHFInputNumberSpinner.tsx +0 -98
- package/src/components/hook-form/RHFMultiCheckbox/index.tsx +0 -50
- package/src/components/hook-form/RHFMultiCheckbox/styles.tsx +0 -5
- package/src/components/hook-form/RHFMultiCheckbox/types.ts +0 -12
- package/src/components/hook-form/RHFPeriod/classes/constants.ts +0 -1
- package/src/components/hook-form/RHFPeriod/classes/index.tsx +0 -33
- package/src/components/hook-form/RHFPeriod/classes/types.ts +0 -14
- package/src/components/hook-form/RHFPeriod/index.tsx +0 -80
- package/src/components/hook-form/RHFPeriod/styles.tsx +0 -11
- package/src/components/hook-form/RHFPeriod/types.ts +0 -28
- package/src/components/hook-form/RHFRadioGroup/RHFRadioGroup.tsx +0 -51
- package/src/components/hook-form/RHFRadioGroup/formatters/OptionIconLabelFormatter/index.tsx +0 -21
- package/src/components/hook-form/RHFRadioGroup/index.ts +0 -2
- package/src/components/hook-form/RHFRadioGroup/types.ts +0 -20
- package/src/components/hook-form/RHFSelect.tsx +0 -38
- package/src/components/hook-form/RHFSwitch.tsx +0 -32
- package/src/components/hook-form/RHFTextField/RHFTextField.stories.ts +0 -113
- package/src/components/hook-form/RHFTextField/RHFTextField.styles.ts +0 -128
- package/src/components/hook-form/RHFTextField/RHFTextField.tsx +0 -201
- package/src/components/hook-form/RHFTextField/constant.ts +0 -1
- package/src/components/hook-form/RHFTextField/index.ts +0 -2
- package/src/components/hook-form/RHFTextField/slots/RHFTextFieldEnum.ts +0 -7
- package/src/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.ts +0 -32
- package/src/components/hook-form/RHFTextField/slots/index.ts +0 -2
- package/src/components/hook-form/RHFTextField/subcomponents/Skeleton/index.tsx +0 -40
- package/src/components/hook-form/RHFTextField/subcomponents/Skeleton/types.tsx +0 -8
- package/src/components/hook-form/RHFTextField/types.ts +0 -60
- package/src/components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.tsx +0 -89
- package/src/components/hook-form/RHFTextFieldPassword/classes/index.tsx +0 -32
- package/src/components/hook-form/RHFTextFieldPassword/classes/types.ts +0 -7
- package/src/components/hook-form/RHFTextFieldPassword/index.ts +0 -2
- package/src/components/hook-form/RHFTextFieldPassword/styles.tsx +0 -5
- package/src/components/hook-form/RHFTextFieldPassword/tests/constants.ts +0 -2
- package/src/components/hook-form/RHFTextFieldPassword/tests/index.test.tsx +0 -75
- package/src/components/hook-form/RHFTextFieldPassword/tests/utils.ts +0 -6
- package/src/components/hook-form/RHFTextFieldPassword/types.ts +0 -3
- package/src/components/hook-form/RHFUpload/RHFUploaMultipleFile/components/UploadMultiple/index.txt +0 -71
- package/src/components/hook-form/RHFUpload/RHFUploaMultipleFile/index.txt +0 -35
- package/src/components/hook-form/RHFUpload/RHFUploaMultipleFile/types.ts +0 -14
- package/src/components/hook-form/RHFUpload/RHFUploadAvatar/index.txt +0 -131
- package/src/components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.tsx +0 -48
- package/src/components/hook-form/RHFUpload/RHFUploadImage/classes/constants.ts +0 -1
- package/src/components/hook-form/RHFUpload/RHFUploadImage/classes/index.tsx +0 -65
- package/src/components/hook-form/RHFUpload/RHFUploadImage/classes/types.ts +0 -24
- package/src/components/hook-form/RHFUpload/RHFUploadImage/index.ts +0 -1
- package/src/components/hook-form/RHFUpload/RHFUploadImage/styles.tsx +0 -7
- package/src/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/index.tsx +0 -167
- package/src/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/styles.tsx +0 -5
- package/src/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/subcomponents/Skeleton/index.tsx +0 -26
- package/src/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/subcomponents/Skeleton/types.ts +0 -3
- package/src/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/types.ts +0 -19
- package/src/components/hook-form/RHFUpload/RHFUploadImage/tests/constants.ts +0 -1
- package/src/components/hook-form/RHFUpload/RHFUploadImage/tests/index.test.tsx +0 -62
- package/src/components/hook-form/RHFUpload/RHFUploadImage/tests/utils.ts +0 -6
- package/src/components/hook-form/RHFUpload/RHFUploadImage/types.ts +0 -16
- package/src/components/hook-form/RHFUpload/RHFUploadSingleFile/components/UploadSingleFile/index.txt +0 -86
- package/src/components/hook-form/RHFUpload/RHFUploadSingleFile/index.txt +0 -31
- package/src/components/hook-form/RHFUpload/components/UploadComponents/BlockContent.txt +0 -39
- package/src/components/hook-form/RHFUpload/components/UploadComponents/MultiFilePreview.txt +0 -139
- package/src/components/hook-form/RHFUpload/components/UploadComponents/RejectionFiles.txt +0 -48
- package/src/components/hook-form/RHFUpload/index.tsx +0 -1
- package/src/components/hook-form/RHFUpload/types.ts +0 -4
- package/src/components/hook-form/RHFormContext/classes/constants.ts +0 -1
- package/src/components/hook-form/RHFormContext/classes/index.tsx +0 -37
- package/src/components/hook-form/RHFormContext/classes/types.ts +0 -12
- package/src/components/hook-form/RHFormContext/dictionary.ts +0 -12
- package/src/components/hook-form/RHFormContext/index.tsx +0 -93
- package/src/components/hook-form/RHFormContext/styles.tsx +0 -5
- package/src/components/hook-form/RHFormContext/subcomponents/FormActions/index.tsx +0 -80
- package/src/components/hook-form/RHFormContext/subcomponents/FormActions/skeleton.tsx +0 -14
- package/src/components/hook-form/RHFormContext/subcomponents/FormActions/styles.tsx +0 -28
- package/src/components/hook-form/RHFormContext/subcomponents/FormActions/types.tsx +0 -4
- package/src/components/hook-form/RHFormContext/types.ts +0 -29
- package/src/components/hook-form/index.ts +0 -17
- package/src/components/index.ts +0 -89
- package/src/components/maps/components/Map/Map.styles.ts +0 -266
- package/src/components/maps/components/Map/Map.tsx +0 -68
- package/src/components/maps/components/Map/assets/icons/bike.svg +0 -44
- package/src/components/maps/components/Map/assets/icons/boat.svg +0 -117
- package/src/components/maps/components/Map/assets/icons/bulldozer.svg +0 -131
- package/src/components/maps/components/Map/assets/icons/bus.svg +0 -63
- package/src/components/maps/components/Map/assets/icons/car.svg +0 -71
- package/src/components/maps/components/Map/assets/icons/dump.svg +0 -97
- package/src/components/maps/components/Map/assets/icons/excavator.svg +0 -175
- package/src/components/maps/components/Map/assets/icons/idle.svg +0 -8
- package/src/components/maps/components/Map/assets/icons/lbs.svg +0 -20
- package/src/components/maps/components/Map/assets/icons/lorry.svg +0 -89
- package/src/components/maps/components/Map/assets/icons/moving.svg +0 -6
- package/src/components/maps/components/Map/assets/icons/parked.svg +0 -20
- package/src/components/maps/components/Map/assets/icons/pickup.svg +0 -80
- package/src/components/maps/components/Map/assets/icons/stopped.svg +0 -9
- package/src/components/maps/components/Map/assets/icons/tractor.svg +0 -79
- package/src/components/maps/components/Map/assets/icons/truck.svg +0 -93
- package/src/components/maps/components/Map/assets/icons/van.svg +0 -63
- package/src/components/maps/components/Map/classes/index.tsx +0 -143
- package/src/components/maps/components/Map/classes/types.ts +0 -91
- package/src/components/maps/components/Map/constants.ts +0 -70
- package/src/components/maps/components/Map/contexts/MapContext/MapContext.tsx +0 -111
- package/src/components/maps/components/Map/contexts/MapContext/helper.ts +0 -25
- package/src/components/maps/components/Map/contexts/MapContext/index.ts +0 -10
- package/src/components/maps/components/Map/contexts/MapContext/store.ts +0 -616
- package/src/components/maps/components/Map/contexts/MapContext/types.ts +0 -772
- package/src/components/maps/components/Map/contexts/MapContext/types.txt +0 -462
- package/src/components/maps/components/Map/dictionary.ts +0 -51
- package/src/components/maps/components/Map/external/Control/index.tsx +0 -83
- package/src/components/maps/components/Map/external/Control/types.ts +0 -7
- package/src/components/maps/components/Map/external/Popup/component.js +0 -31
- package/src/components/maps/components/Map/external/Popup/div-overlay.js +0 -20
- package/src/components/maps/components/Map/external/Popup/element.js +0 -31
- package/src/components/maps/components/Map/external/Popup/generic.js +0 -44
- package/src/components/maps/components/Map/external/Popup/index.tsx +0 -67
- package/src/components/maps/components/Map/external/googleMutant/LRUMap.js +0 -388
- package/src/components/maps/components/Map/external/googleMutant/googleMutant.js +0 -553
- package/src/components/maps/components/Map/external/googleMutant/googleMutantNoDelete.ts +0 -959
- package/src/components/maps/components/Map/external/googleMutant/index.d.ts +0 -157
- package/src/components/maps/components/Map/external/googleMutant/index.ts +0 -1
- package/src/components/maps/components/Map/featureRenders/CommonFeatureRender/index.tsx +0 -370
- package/src/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/FeatureDivIconLabel/index.tsx +0 -53
- package/src/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/FeatureDivIconLabel/types.ts +0 -8
- package/src/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/MarkerIconLabel/index.tsx +0 -112
- package/src/components/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/MarkerIconLabel/types.ts +0 -16
- package/src/components/maps/components/Map/featureRenders/MarkerFeatureRender/IconMarker.tsx +0 -30
- package/src/components/maps/components/Map/featureRenders/MarkerFeatureRender/IconMarkerGrua.tsx +0 -14
- package/src/components/maps/components/Map/featureRenders/MarkerFeatureRender/IconMarkerTaxi.tsx +0 -14
- package/src/components/maps/components/Map/featureRenders/MarkerFeatureRender/index.tsx +0 -112
- package/src/components/maps/components/Map/featureRenders/index.ts +0 -3
- package/src/components/maps/components/Map/hooks/useAutoFocus/index.tsx +0 -124
- package/src/components/maps/components/Map/hooks/useAutoFocus/types.ts +0 -18
- package/src/components/maps/components/Map/hooks/useDisableClickEvents/index.tsx +0 -47
- package/src/components/maps/components/Map/hooks/useDisableZoomEvents/index.tsx +0 -38
- package/src/components/maps/components/Map/hooks/useMapStore/index.ts +0 -30
- package/src/components/maps/components/Map/icons.ts +0 -72
- package/src/components/maps/components/Map/index.ts +0 -25
- package/src/components/maps/components/Map/pluginLayers/PolylineWithArrows/index.tsx +0 -92
- package/src/components/maps/components/Map/pluginLayers/index.ts +0 -1
- package/src/components/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.styles.ts +0 -33
- package/src/components/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.tsx +0 -168
- package/src/components/maps/components/Map/popups/MapPopupMyGps/constants.ts +0 -4
- package/src/components/maps/components/Map/popups/MapPopupMyGps/dictionary.ts +0 -27
- package/src/components/maps/components/Map/popups/MapPopupMyGps/index.ts +0 -2
- package/src/components/maps/components/Map/popups/MapPopupMyGps/slots/ MapPopupMyGpsSlots.ts +0 -20
- package/src/components/maps/components/Map/popups/MapPopupMyGps/slots/slots.ts +0 -5
- package/src/components/maps/components/Map/popups/MapPopupMyGps/stories/basic.stories.tsx +0 -50
- package/src/components/maps/components/Map/popups/MapPopupMyGps/stories/constants.ts +0 -3
- package/src/components/maps/components/Map/popups/MapPopupMyGps/stories/dictionary.ts +0 -0
- package/src/components/maps/components/Map/popups/MapPopupMyGps/stories/subcomponents/WithMapOpenPopup.tsx +0 -60
- package/src/components/maps/components/Map/popups/MapPopupMyGps/stories/types.ts +0 -4
- package/src/components/maps/components/Map/popups/MapPopupMyGps/subcomponents/PropertyValue/index.tsx +0 -29
- package/src/components/maps/components/Map/popups/MapPopupMyGps/subcomponents/PropertyValue/types.ts +0 -6
- package/src/components/maps/components/Map/popups/MapPopupMyGps/types.ts +0 -14
- package/src/components/maps/components/Map/popups/index.ts +0 -1
- package/src/components/maps/components/Map/popups/types.ts +0 -12
- package/src/components/maps/components/Map/slots/MapSlots.ts +0 -26
- package/src/components/maps/components/Map/slots/slots.ts +0 -6
- package/src/components/maps/components/Map/stories/basic.stories.tsx +0 -71
- package/src/components/maps/components/Map/stories/constants.ts +0 -3
- package/src/components/maps/components/Map/stories/dictionary.ts +0 -0
- package/src/components/maps/components/Map/stories/subcomponents/ContentExample.tsx +0 -28
- package/src/components/maps/components/Map/stories/types.ts +0 -4
- package/src/components/maps/components/Map/subcomponents/Controls/index.tsx +0 -66
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/index.tsx +0 -15
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/index.tsx +0 -91
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useCheckedLayers.tsx +0 -28
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useColumns.tsx +0 -175
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useMaster.tsx +0 -85
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useRowActionsGetter.tsx +0 -63
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/index.tsx +0 -54
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/model.ts +0 -27
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/index.tsx +0 -165
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/bing.ts +0 -44
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/google.ts +0 -151
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/osm.ts +0 -23
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/utils.ts +0 -19
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/types.ts +0 -5
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/types.ts +0 -6
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/index.tsx +0 -154
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/constants.ts +0 -45
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/helpers.ts +0 -52
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/index.ts +0 -424
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/types.ts +0 -15
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useValidation.ts +0 -39
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/index.tsx +0 -61
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/model.ts +0 -17
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/index.tsx +0 -53
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/types.ts +0 -7
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/validations.ts +0 -5
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MyActions/index.tsx +0 -59
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/types.ts +0 -11
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/ZoomButtons/index.tsx +0 -63
- package/src/components/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/types.ts +0 -5
- package/src/components/maps/components/Map/subcomponents/Controls/types.ts +0 -27
- package/src/components/maps/components/Map/subcomponents/LayersContainer/index.tsx +0 -53
- package/src/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/index.tsx +0 -279
- package/src/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/MarkerClusterGroup/index.tsx +0 -61
- package/src/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/MarkerClusterGroup/types.ts +0 -13
- package/src/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/RenderByEachFeatureComponent/index.tsx +0 -29
- package/src/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/RenderByEachFeatureComponent/types.ts +0 -6
- package/src/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/types.ts +0 -7
- package/src/components/maps/components/Map/subcomponents/TileLayers/index.tsx +0 -17
- package/src/components/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerGoogle/index.tsx +0 -128
- package/src/components/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerOthers/index.tsx +0 -51
- package/src/components/maps/components/Map/subcomponents/_layerTypes/_LayerMultiLines/index.txt +0 -24
- package/src/components/maps/components/Map/subcomponents/_layerTypes/_LayerMultiLines/types.txt +0 -5
- package/src/components/maps/components/Map/subcomponents/_layerTypes/_LayerMultiPoints/index.txt +0 -64
- package/src/components/maps/components/Map/subcomponents/_layerTypes/_LayerMultiPoints/types.txt +0 -9
- package/src/components/maps/components/Map/subcomponents/_layerTypes/factory.txt +0 -65
- package/src/components/maps/components/Map/types.ts +0 -70
- package/src/components/maps/components/MapGpsTools/MapGpsTools.tsx +0 -22
- package/src/components/maps/components/MapGpsTools/classes/index.tsx +0 -52
- package/src/components/maps/components/MapGpsTools/classes/types.ts +0 -27
- package/src/components/maps/components/MapGpsTools/constants.ts +0 -72
- package/src/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/index.tsx +0 -104
- package/src/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/store.ts +0 -193
- package/src/components/maps/components/MapGpsTools/contexts/MapGpsToolsContext/types.ts +0 -217
- package/src/components/maps/components/MapGpsTools/dictionary.ts +0 -95
- package/src/components/maps/components/MapGpsTools/hooks/useLayers/index.tsx +0 -72
- package/src/components/maps/components/MapGpsTools/hooks/useMapGpsToolsStore/index.ts +0 -19
- package/src/components/maps/components/MapGpsTools/icons.ts +0 -32
- package/src/components/maps/components/MapGpsTools/index.ts +0 -6
- package/src/components/maps/components/MapGpsTools/styles.tsx +0 -27
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/index.tsx +0 -129
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/constants.ts +0 -40
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/helpers.ts +0 -134
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useDrawing.ts +0 -303
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSubmit.ts +0 -118
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSumbitErrorsFocus.ts +0 -57
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useValidation.ts +0 -41
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/index.tsx +0 -98
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/styles.tsx +0 -6
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/index.tsx +0 -55
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/types.ts +0 -6
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/validations.ts +0 -21
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/index.tsx +0 -145
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/types.ts +0 -8
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/validations.ts +0 -18
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyActions/index.tsx +0 -92
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyActions/types.ts +0 -3
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyTabs/index.tsx +0 -104
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyTabs/types.ts +0 -7
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/index.tsx +0 -14
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/FillData/index.tsx +0 -51
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/StrokeData/index.tsx +0 -84
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/types.ts +0 -12
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/types.ts +0 -31
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/_useCheckedInternalGeometries.txt +0 -107
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/_useCheckedTransitGeometries.txt +0 -107
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedFeatures.tsx +0 -133
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedGeofences.tsx +0 -112
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useColumns.tsx +0 -147
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useMaster.tsx +0 -311
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useRowActionsGetter.tsx +0 -227
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/index.tsx +0 -95
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/styles.tsx +0 -7
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/subcomponents/Filter/index.tsx +0 -117
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/constants.ts +0 -9
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/model.ts +0 -163
- package/src/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/types.ts +0 -7
- package/src/components/maps/components/MapGpsTools/types.ts +0 -41
- package/src/components/maps/index.ts +0 -24
- package/src/components/maps/leaflet-geoman.d.ts.txt +0 -1476
- package/src/components/maps/leaflet-polylineDecorator.txt +0 -30
- package/src/components/maps/utils/courseToCartesianAngle.ts +0 -25
- package/src/components/maps/utils/courseToCssAngle.ts +0 -53
- package/src/components/maps/utils/index.ts +0 -6
- package/src/components/maps/utils/isFeature.ts +0 -5
- package/src/components/maps/utils/isFeatureCollection.ts +0 -5
- package/src/components/maps/utils/isFeatureCollectionDraft.ts +0 -14
- package/src/components/maps/utils/isGeometry.ts +0 -5
- package/src/components/modal/ModalDialog/dictionary.ts +0 -11
- package/src/components/modal/ModalDialog/index.tsx +0 -102
- package/src/components/modal/ModalDialog/styles.ts +0 -50
- package/src/components/modal/ModalDialog/subcomponents/ResizeHandle/index.tsx +0 -31
- package/src/components/modal/ModalDialog/types.ts +0 -9
- package/src/components/modal/WindowBase/index.tsx +0 -53
- package/src/components/modal/WindowBase/styles.ts +0 -9
- package/src/components/modal/WindowBase/subcomponents/Header/index.tsx +0 -47
- package/src/components/modal/WindowBase/subcomponents/Header/styles.tsx +0 -11
- package/src/components/modal/WindowBase/subcomponents/Header/types.ts +0 -6
- package/src/components/modal/WindowBase/types.ts +0 -12
- package/src/components/modal/WindowConfirm/dictionary.ts +0 -15
- package/src/components/modal/WindowConfirm/index.tsx +0 -94
- package/src/components/modal/WindowConfirm/styles.ts +0 -9
- package/src/components/modal/WindowConfirm/subcomponents/MessageIlustration/index.tsx +0 -55
- package/src/components/modal/WindowConfirm/subcomponents/MessageIlustration/types.ts +0 -7
- package/src/components/modal/WindowConfirm/types.ts +0 -47
- package/src/components/modal/classes/constants.ts +0 -1
- package/src/components/modal/classes/index.tsx +0 -69
- package/src/components/modal/classes/types.ts +0 -30
- package/src/components/modal/dictionary.ts +0 -3
- package/src/components/modal/index.ts +0 -9
- package/src/components/mui_extended/Accordion/Accordion.tsx +0 -96
- package/src/components/mui_extended/Accordion/classes/constants.ts +0 -1
- package/src/components/mui_extended/Accordion/classes/index.tsx +0 -38
- package/src/components/mui_extended/Accordion/classes/types.ts +0 -16
- package/src/components/mui_extended/Accordion/constants.ts +0 -1
- package/src/components/mui_extended/Accordion/index.ts +0 -1
- package/src/components/mui_extended/Accordion/styles.tsx +0 -25
- package/src/components/mui_extended/Accordion/tests/constants.ts +0 -1
- package/src/components/mui_extended/Accordion/tests/index.test.tsx +0 -93
- package/src/components/mui_extended/Accordion/tests/utils.ts +0 -6
- package/src/components/mui_extended/Accordion/types.ts +0 -22
- package/src/components/mui_extended/Avatar/Avatar.tsx +0 -37
- package/src/components/mui_extended/Avatar/classes/constants.ts +0 -1
- package/src/components/mui_extended/Avatar/classes/index.tsx +0 -34
- package/src/components/mui_extended/Avatar/classes/types.ts +0 -13
- package/src/components/mui_extended/Avatar/index.ts +0 -2
- package/src/components/mui_extended/Avatar/styles.ts +0 -5
- package/src/components/mui_extended/Avatar/subcomponents/SkeletonAvatar/index.tsx +0 -23
- package/src/components/mui_extended/Avatar/subcomponents/SkeletonAvatar/types.ts +0 -3
- package/src/components/mui_extended/Avatar/tests/constants.ts +0 -1
- package/src/components/mui_extended/Avatar/tests/index.test.tsx +0 -65
- package/src/components/mui_extended/Avatar/tests/utils.ts +0 -6
- package/src/components/mui_extended/Avatar/types.ts +0 -7
- package/src/components/mui_extended/Badge/Badge.styles.ts +0 -7
- package/src/components/mui_extended/Badge/Badge.tsx +0 -27
- package/src/components/mui_extended/Badge/constants.ts +0 -1
- package/src/components/mui_extended/Badge/index.ts +0 -2
- package/src/components/mui_extended/Badge/slots/BadgeEnum.ts +0 -4
- package/src/components/mui_extended/Badge/slots/BadgeSlots.ts +0 -10
- package/src/components/mui_extended/Badge/slots/index.ts +0 -2
- package/src/components/mui_extended/Badge/styles.ts +0 -6
- package/src/components/mui_extended/Badge/tests/index.test.tsx.txt +0 -70
- package/src/components/mui_extended/Badge/types.ts +0 -21
- package/src/components/mui_extended/BoxIcon/index.tsx +0 -24
- package/src/components/mui_extended/BoxIcon/types.ts +0 -5
- package/src/components/mui_extended/Breadcrumbs/components/LinkItem/index.tsx +0 -39
- package/src/components/mui_extended/Breadcrumbs/components/LinkItem/types.ts +0 -5
- package/src/components/mui_extended/Breadcrumbs/index.tsx +0 -89
- package/src/components/mui_extended/Breadcrumbs/types.ts +0 -14
- package/src/components/mui_extended/Button/Button.tsx +0 -68
- package/src/components/mui_extended/Button/classes/constants.ts +0 -1
- package/src/components/mui_extended/Button/classes/index.tsx +0 -56
- package/src/components/mui_extended/Button/classes/types.ts +0 -25
- package/src/components/mui_extended/Button/index.test.tsx +0 -34
- package/src/components/mui_extended/Button/index.ts +0 -2
- package/src/components/mui_extended/Button/styles.tsx +0 -12
- package/src/components/mui_extended/Button/types.tsx +0 -12
- package/src/components/mui_extended/CheckBox/CheckBox.tsx +0 -54
- package/src/components/mui_extended/CheckBox/classes/constants.ts +0 -1
- package/src/components/mui_extended/CheckBox/classes/index.tsx +0 -41
- package/src/components/mui_extended/CheckBox/classes/types.ts +0 -16
- package/src/components/mui_extended/CheckBox/index.ts +0 -1
- package/src/components/mui_extended/CheckBox/styles.ts +0 -5
- package/src/components/mui_extended/CheckBox/subcomponents/Skeleton/index.tsx +0 -14
- package/src/components/mui_extended/CheckBox/subcomponents/Skeleton/types.ts +0 -5
- package/src/components/mui_extended/CheckBox/types.ts +0 -8
- package/src/components/mui_extended/CircularProgress/index.tsx +0 -5
- package/src/components/mui_extended/FormControlLabel/FormControlLabel.stories.tsx +0 -117
- package/src/components/mui_extended/FormControlLabel/FormControlLabel.styles.ts +0 -3
- package/src/components/mui_extended/FormControlLabel/FormControlLabel.tsx +0 -14
- package/src/components/mui_extended/FormControlLabel/constants.ts +0 -1
- package/src/components/mui_extended/FormControlLabel/slots/FormControlLabelEnum.ts +0 -3
- package/src/components/mui_extended/FormControlLabel/slots/FormControlLabelSlots.ts +0 -11
- package/src/components/mui_extended/FormControlLabel/slots/index.ts +0 -2
- package/src/components/mui_extended/FormControlLabel/types.ts +0 -19
- package/src/components/mui_extended/IconButton/IconButton.styles.ts +0 -334
- package/src/components/mui_extended/IconButton/IconButton.tsx +0 -114
- package/src/components/mui_extended/IconButton/constants.ts +0 -1
- package/src/components/mui_extended/IconButton/helpers/evalIconColor.ts +0 -39
- package/src/components/mui_extended/IconButton/index.test.tsx.txt +0 -57
- package/src/components/mui_extended/IconButton/index.ts +0 -1
- package/src/components/mui_extended/IconButton/slots/IconButtonEnum.ts +0 -5
- package/src/components/mui_extended/IconButton/slots/IconButtonSlots.ts +0 -24
- package/src/components/mui_extended/IconButton/slots/index.ts +0 -2
- package/src/components/mui_extended/IconButton/stories/DefaultIconButton/IconButton.containedDefault.stories.tsx +0 -125
- package/src/components/mui_extended/IconButton/stories/DefaultIconButton/IconButton.textDefault.stories.tsx +0 -126
- package/src/components/mui_extended/IconButton/stories/DefaultIconButton/iconButton.outlinedDefault.stories.tsx +0 -127
- package/src/components/mui_extended/IconButton/stories/DisableIconButton/IconButton.containedDisable.stories.tsx +0 -38
- package/src/components/mui_extended/IconButton/stories/DisableIconButton/IconButton.textDisable.stories.tsx +0 -44
- package/src/components/mui_extended/IconButton/stories/DisableIconButton/iconButton.outlinedDisable.stories.tsx +0 -43
- package/src/components/mui_extended/IconButton/stories/PrimaryIconButton/IconButton.containedPrimary.stories.tsx +0 -128
- package/src/components/mui_extended/IconButton/stories/PrimaryIconButton/IconButton.textPrimary.stories.tsx +0 -133
- package/src/components/mui_extended/IconButton/stories/PrimaryIconButton/iconButton.outlinedPrimary.stories.tsx +0 -132
- package/src/components/mui_extended/IconButton/stories/SemanticIconButton/ErrorIconButton/IconButton.containedError.stories.tsx +0 -125
- package/src/components/mui_extended/IconButton/stories/SemanticIconButton/ErrorIconButton/IconButton.textError.stories.tsx +0 -132
- package/src/components/mui_extended/IconButton/stories/SemanticIconButton/ErrorIconButton/iconButton.outlinedError.stories.tsx +0 -126
- package/src/components/mui_extended/IconButton/stories/SemanticIconButton/InfoIconButton/IconButton.containedInfo.stories.tsx +0 -125
- package/src/components/mui_extended/IconButton/stories/SemanticIconButton/InfoIconButton/IconButton.textInfo.stories.tsx +0 -126
- package/src/components/mui_extended/IconButton/stories/SemanticIconButton/InfoIconButton/iconButton.outlinedInfo.stories.tsx +0 -128
- package/src/components/mui_extended/IconButton/stories/SemanticIconButton/SuccesIconButton/IconButton.containedSuccess.stories.tsx +0 -125
- package/src/components/mui_extended/IconButton/stories/SemanticIconButton/SuccesIconButton/IconButton.textSucces.stories.tsx +0 -132
- package/src/components/mui_extended/IconButton/stories/SemanticIconButton/SuccesIconButton/iconButton.outlinedSucces.stories.tsx +0 -133
- package/src/components/mui_extended/IconButton/stories/SemanticIconButton/WarningIconButton/IconButton.containedWarning.stories.tsx +0 -125
- package/src/components/mui_extended/IconButton/stories/SemanticIconButton/WarningIconButton/IconButton.textWarning.stories.tsx +0 -126
- package/src/components/mui_extended/IconButton/stories/SemanticIconButton/WarningIconButton/iconButton.outlinedWarning.stories.tsx +0 -128
- package/src/components/mui_extended/IconButton/stories/SizesIconButton/IconButtonSizeMedium.stories.tsx +0 -61
- package/src/components/mui_extended/IconButton/types.ts +0 -58
- package/src/components/mui_extended/ImageButton/ImageButton.tsx +0 -63
- package/src/components/mui_extended/ImageButton/index.ts +0 -2
- package/src/components/mui_extended/ImageButton/styles.tsx +0 -5
- package/src/components/mui_extended/ImageButton/tests/constants.ts +0 -1
- package/src/components/mui_extended/ImageButton/tests/index.test.tsx +0 -28
- package/src/components/mui_extended/ImageButton/types.ts +0 -9
- package/src/components/mui_extended/ImageButton/utils/Clases/constants.ts +0 -1
- package/src/components/mui_extended/ImageButton/utils/Clases/index.tsx +0 -29
- package/src/components/mui_extended/ImageButton/utils/Clases/types.ts +0 -7
- package/src/components/mui_extended/LinearProgress/index.tsx +0 -9
- package/src/components/mui_extended/LinkWithRoute/index.tsx +0 -23
- package/src/components/mui_extended/LinkWithRoute/types.ts +0 -9
- package/src/components/mui_extended/LoadingButton/classes/constants.ts +0 -1
- package/src/components/mui_extended/LoadingButton/classes/index.tsx +0 -50
- package/src/components/mui_extended/LoadingButton/classes/types.ts +0 -15
- package/src/components/mui_extended/LoadingButton/index.tsx +0 -59
- package/src/components/mui_extended/LoadingButton/styles.ts +0 -7
- package/src/components/mui_extended/LoadingButton/tests/constants.ts +0 -1
- package/src/components/mui_extended/LoadingButton/tests/index.test.tsx +0 -67
- package/src/components/mui_extended/LoadingButton/tests/utils.ts +0 -6
- package/src/components/mui_extended/LoadingButton/types.ts +0 -12
- package/src/components/mui_extended/MenuActions/MenuActions.stories.tsx +0 -118
- package/src/components/mui_extended/MenuActions/MenuActions.styles.ts +0 -52
- package/src/components/mui_extended/MenuActions/MenuActions.tsx +0 -182
- package/src/components/mui_extended/MenuActions/constants.ts +0 -7
- package/src/components/mui_extended/MenuActions/dictionary.ts +0 -15
- package/src/components/mui_extended/MenuActions/index.ts +0 -2
- package/src/components/mui_extended/MenuActions/slots/MenuActionsEnum.ts +0 -9
- package/src/components/mui_extended/MenuActions/slots/MenuActionsSlots.ts +0 -46
- package/src/components/mui_extended/MenuActions/slots/index.ts +0 -2
- package/src/components/mui_extended/MenuActions/types.ts +0 -63
- package/src/components/mui_extended/Pager/classes/constants.ts +0 -1
- package/src/components/mui_extended/Pager/classes/index.tsx +0 -65
- package/src/components/mui_extended/Pager/classes/types.ts +0 -25
- package/src/components/mui_extended/Pager/dicctionary.ts +0 -15
- package/src/components/mui_extended/Pager/index.tsx +0 -65
- package/src/components/mui_extended/Pager/styles.ts +0 -51
- package/src/components/mui_extended/Pager/subcomponents/CustomTablePagination/index.tsx +0 -117
- package/src/components/mui_extended/Pager/subcomponents/CustomTablePagination/types.ts +0 -13
- package/src/components/mui_extended/Pager/subcomponents/PagerActions/index.tsx +0 -72
- package/src/components/mui_extended/Pager/subcomponents/PagerActions/types.ts +0 -9
- package/src/components/mui_extended/Pager/types.ts +0 -13
- package/src/components/mui_extended/Popover/Popover.tsx +0 -61
- package/src/components/mui_extended/Popover/classes/index.tsx +0 -59
- package/src/components/mui_extended/Popover/classes/types.ts +0 -21
- package/src/components/mui_extended/Popover/index.test.tsx +0 -224
- package/src/components/mui_extended/Popover/index.ts +0 -1
- package/src/components/mui_extended/Popover/styles.tsx +0 -6
- package/src/components/mui_extended/Popover/subcomponts/ArrowIcon/index.tsx +0 -64
- package/src/components/mui_extended/Popover/types.ts +0 -30
- package/src/components/mui_extended/Skeleton/Skeleton.tsx +0 -26
- package/src/components/mui_extended/Skeleton/Slots/skeletonEnum.ts +0 -3
- package/src/components/mui_extended/Skeleton/Slots/skeletonSlots.ts +0 -11
- package/src/components/mui_extended/Skeleton/constants.ts +0 -10
- package/src/components/mui_extended/Skeleton/index.ts +0 -1
- package/src/components/mui_extended/Skeleton/skeleton.styles.ts +0 -46
- package/src/components/mui_extended/Skeleton/types.ts +0 -29
- package/src/components/mui_extended/Stack/Stack.tsx +0 -19
- package/src/components/mui_extended/Stack/classes/constants.ts +0 -1
- package/src/components/mui_extended/Stack/classes/index.tsx +0 -30
- package/src/components/mui_extended/Stack/classes/types.ts +0 -12
- package/src/components/mui_extended/Stack/index.ts +0 -2
- package/src/components/mui_extended/Stack/styles.ts +0 -5
- package/src/components/mui_extended/Stack/types.ts +0 -3
- package/src/components/mui_extended/Tab/classes/constants.ts +0 -1
- package/src/components/mui_extended/Tab/classes/index.tsx +0 -32
- package/src/components/mui_extended/Tab/classes/types.ts +0 -13
- package/src/components/mui_extended/Tab/constant.ts +0 -1
- package/src/components/mui_extended/Tab/index.tsx +0 -52
- package/src/components/mui_extended/Tab/styles.tsx +0 -9
- package/src/components/mui_extended/Tab/tests/constants.ts +0 -1
- package/src/components/mui_extended/Tab/tests/index.test.tsx +0 -73
- package/src/components/mui_extended/Tab/tests/utils.ts +0 -6
- package/src/components/mui_extended/Tab/types.ts +0 -7
- package/src/components/mui_extended/TabContent/TabContent.tsx +0 -20
- package/src/components/mui_extended/TabContent/classes/constants.ts +0 -1
- package/src/components/mui_extended/TabContent/classes/index.tsx +0 -30
- package/src/components/mui_extended/TabContent/classes/types.ts +0 -12
- package/src/components/mui_extended/TabContent/index.ts +0 -2
- package/src/components/mui_extended/TabContent/styles.ts +0 -5
- package/src/components/mui_extended/TabContent/types.ts +0 -8
- package/src/components/mui_extended/TabContext/index.tsx +0 -34
- package/src/components/mui_extended/TabContext/types.ts +0 -12
- package/src/components/mui_extended/Tabs/Tabs.tsx +0 -20
- package/src/components/mui_extended/Tabs/classes/constants.ts +0 -1
- package/src/components/mui_extended/Tabs/classes/index.tsx +0 -30
- package/src/components/mui_extended/Tabs/classes/types.ts +0 -12
- package/src/components/mui_extended/Tabs/index.ts +0 -1
- package/src/components/mui_extended/Tabs/styles.ts +0 -5
- package/src/components/mui_extended/ToggleButton/ToggleButton.tsx +0 -25
- package/src/components/mui_extended/ToggleButton/index.ts +0 -2
- package/src/components/mui_extended/ToggleButton/types.ts +0 -8
- package/src/components/mui_extended/ToggleIconButton/ToggleIconButton.tsx +0 -30
- package/src/components/mui_extended/ToggleIconButton/index.ts +0 -2
- package/src/components/mui_extended/ToggleIconButton/types.ts +0 -9
- package/src/components/mui_extended/Tooltip/Tooltip.stories.tsx +0 -77
- package/src/components/mui_extended/Tooltip/Tooltip.styles.ts +0 -71
- package/src/components/mui_extended/Tooltip/Tooltip.tsx +0 -28
- package/src/components/mui_extended/Tooltip/constants.ts +0 -1
- package/src/components/mui_extended/Tooltip/index.ts +0 -2
- package/src/components/mui_extended/Tooltip/slots/TooltipEnum.ts +0 -5
- package/src/components/mui_extended/Tooltip/slots/TooltipSlots.ts +0 -20
- package/src/components/mui_extended/Tooltip/slots/index.tsx +0 -2
- package/src/components/mui_extended/Tooltip/types.ts +0 -22
- package/src/components/mui_extended/Typography/Typography.tsx +0 -41
- package/src/components/mui_extended/Typography/index.ts +0 -1
- package/src/components/mui_extended/Typography/styles.tsx +0 -5
- package/src/components/mui_extended/Typography/subcomponents/index.tsx +0 -10
- package/src/components/mui_extended/Typography/subcomponents/types.tsx +0 -3
- package/src/components/mui_extended/Typography/tests/constants.ts +0 -1
- package/src/components/mui_extended/Typography/tests/index.test.tsx +0 -21
- package/src/components/mui_extended/Typography/tests/utils.ts +0 -6
- package/src/components/mui_extended/Typography/types.ts +0 -8
- package/src/components/mui_extended/Typography/utils/Clases/index.tsx +0 -28
- package/src/components/mui_extended/Typography/utils/Clases/types.ts +0 -7
- package/src/components/mui_extended/index.ts +0 -50
- package/src/components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.tsx +0 -86
- package/src/components/popups/components/PopupsProvider/contexts/PopupsContext/index.ts +0 -1
- package/src/components/popups/components/PopupsProvider/contexts/PopupsContext/store.ts +0 -207
- package/src/components/popups/components/PopupsProvider/contexts/PopupsContext/types.ts +0 -188
- package/src/components/popups/components/PopupsProvider/hooks/usePopupsStore/index.ts +0 -30
- package/src/components/popups/components/PopupsProvider/index.ts +0 -2
- package/src/components/popups/components/PopupsViewer/PopupsViewer.styles.ts +0 -140
- package/src/components/popups/components/PopupsViewer/PopupsViewer.tsx +0 -75
- package/src/components/popups/components/PopupsViewer/constants.ts +0 -12
- package/src/components/popups/components/PopupsViewer/icons.ts +0 -4
- package/src/components/popups/components/PopupsViewer/index.tsx +0 -1
- package/src/components/popups/components/PopupsViewer/slots/popupsViewerSlots.ts +0 -40
- package/src/components/popups/components/PopupsViewer/slots/slots.ts +0 -12
- package/src/components/popups/components/PopupsViewer/stories/basic.stories.tsx +0 -72
- package/src/components/popups/components/PopupsViewer/stories/constants.ts +0 -106
- package/src/components/popups/components/PopupsViewer/stories/dictionary.ts +0 -6
- package/src/components/popups/components/PopupsViewer/stories/subcomponents/PopupContentExample.tsx +0 -10
- package/src/components/popups/components/PopupsViewer/stories/types.ts +0 -4
- package/src/components/popups/components/PopupsViewer/subcomponents/Popup/index.tsx +0 -102
- package/src/components/popups/components/PopupsViewer/subcomponents/Popup/subcomponents/EditionInfo/index.tsx +0 -35
- package/src/components/popups/components/PopupsViewer/subcomponents/Popup/subcomponents/EditionInfo/types.ts +0 -3
- package/src/components/popups/components/PopupsViewer/subcomponents/Popup/subcomponents/Header/index.tsx +0 -80
- package/src/components/popups/components/PopupsViewer/subcomponents/Popup/subcomponents/Header/types.ts +0 -3
- package/src/components/popups/components/PopupsViewer/subcomponents/Popup/types.ts +0 -23
- package/src/components/popups/components/PopupsViewer/types.ts +0 -27
- package/src/components/popups/index.ts +0 -2
- package/src/contexts/AppearanceComponentContext/AppearanceComponentContext.tsx +0 -36
- package/src/contexts/AppearanceComponentContext/AppearanceComponentStore.tsx +0 -46
- package/src/contexts/AppearanceComponentContext/index.ts +0 -6
- package/src/contexts/AppearanceComponentContext/useAppearanceComponentStore.tsx +0 -22
- package/src/contexts/ModalContext/index.tsx +0 -54
- package/src/contexts/ModalContext/types.ts +0 -36
- package/src/contexts/RealTimeContext/RealTimeContext.tsx +0 -133
- package/src/contexts/RealTimeContext/index.ts +0 -1
- package/src/contexts/RealTimeContext/store.ts +0 -89
- package/src/contexts/RealTimeContext/types.ts +0 -122
- package/src/contexts/index.ts +0 -26
- package/src/helpers/cookies/cookies.ts +0 -53
- package/src/helpers/cookies/index.ts +0 -1
- package/src/helpers/cookies/types.ts +0 -44
- package/src/hocs/index.ts +0 -2
- package/src/hocs/withSizeProvider/constants.ts +0 -2
- package/src/hocs/withSizeProvider/index.tsx +0 -149
- package/src/hocs/withSizeProvider/types.ts +0 -30
- package/src/hocs/withToggle/index.tsx +0 -40
- package/src/hocs/withToggle/types.ts +0 -15
- package/src/hooks/index.ts +0 -8
- package/src/hooks/useComponentSize/index.ts +0 -1
- package/src/hooks/useComponentSize/useComponentSize.stories.tsx +0 -104
- package/src/hooks/useComponentSize/useComponentSize.ts +0 -14
- package/src/hooks/useFormAddEdit/dictionary.ts +0 -3
- package/src/hooks/useFormAddEdit/index.tsx +0 -128
- package/src/hooks/useFormAddEdit/types.ts +0 -15
- package/src/hooks/useFormFocus/index.ts +0 -45
- package/src/hooks/useFormFocus/types.ts +0 -9
- package/src/hooks/useFormReadyForUpdate/index.ts +0 -27
- package/src/hooks/useFormReadyForUpdate/types.ts +0 -9
- package/src/hooks/useInterval/index.ts +0 -31
- package/src/hooks/useModal/index.ts +0 -17
- package/src/hooks/useRealTime/index.ts +0 -30
- package/src/hooks/useSizeContainer/contants.ts +0 -1
- package/src/hooks/useSizeContainer/index.tsx +0 -56
- package/src/hooks/useStateRef/index.ts +0 -26
- package/src/hooks/useSvgColor/constants.ts +0 -37
- package/src/hooks/useSvgColor/helpers.ts +0 -43
- package/src/hooks/useSvgColor/index.tsx +0 -4
- package/src/hooks/useSvgColor/types.ts +0 -13
- package/src/hooks/useSvgColor/useSvgColor.tsx +0 -89
- package/src/hooks/useTab/index.ts +0 -17
- package/src/index.ts +0 -6
- package/src/test/HostThemeProviderMock.tsx +0 -68
- package/src/test/constants.ts +0 -106
- package/src/test/constants_no_mock.ts +0 -2
- package/src/test/getNameDataTestId.ts +0 -32
- package/src/test/index.ts +0 -4
- package/src/test/mocks.ts +0 -67
- package/src/test/setup.ts +0 -36
- package/src/test/types.ts +0 -4
- package/src/test/utils.tsx +0 -76
- package/src/utils/capitalizeFirstLetter.ts +0 -12
- package/src/utils/containerQuery.ts +0 -12
- package/src/utils/formatDistanceToNow/formatDistanteToNow.ts +0 -108
- package/src/utils/formatDistanceToNow/index.ts +0 -2
- package/src/utils/formatDistanceToNow/types.ts +0 -24
- package/src/utils/getComponentUtilityClass.ts +0 -5
- package/src/utils/getPaletteColor.ts +0 -22
- package/src/utils/getThemeVariantColor.ts +0 -19
- package/src/utils/getTransformXY.ts +0 -16
- package/src/utils/index.tsx +0 -84
- package/src/utils/isValidDate.ts +0 -3
- package/src/utils/types.ts +0 -34
- package/src/vite-env.d.ts +0 -4
- package/storybook/components/extended/mui/Skeleton/Colors/Default/Variants/Circular/skeleton.defaultCircular.stories.tsx +0 -47
- package/storybook/components/extended/mui/Skeleton/Colors/Default/Variants/Rectangular/skeleton.defaultRectangular.stories.tsx +0 -47
- package/storybook/components/extended/mui/Skeleton/Colors/Default/Variants/Rounded/skeleton.defaultRounded.stories.tsx +0 -48
- package/storybook/components/extended/mui/Skeleton/Colors/Default/Variants/Text/skeleton.defaultText.stories.tsx +0 -49
- package/tsconfig.json +0 -36
- package/tsconfig.node.json +0 -8
- package/typedoc.json +0 -6
- package/vite/constants.ts +0 -65
- package/vite.config.ts +0 -67
- package/vitest.config.monorepo.ts +0 -48
- package/vitest.config.ts +0 -56
- /package/{dist/@types → @types}/augmentations.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/AccountPopover.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/classes/index.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/classes/types.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/dictionary.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/index.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/style.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/subcomponents/MyAvatar/index.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/subcomponents/MyAvatar/types.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/subcomponents/PopOver/index.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/subcomponents/PopOver/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/subcomponents/PopOver/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/subcomponents/PopOver/types.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/AccountPopover/types.d.ts +0 -0
- /package/{dist/components → components}/AppBar/AppBar.d.ts +0 -0
- /package/{dist/components → components}/AppBar/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/AppBar/classes/index.d.ts +0 -0
- /package/{dist/components → components}/AppBar/classes/types.d.ts +0 -0
- /package/{dist/components → components}/AppBar/dictionary.d.ts +0 -0
- /package/{dist/components → components}/AppBar/index.d.ts +0 -0
- /package/{dist/components → components}/AppBar/styles.d.ts +0 -0
- /package/{dist/components → components}/AppBar/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/AppBar/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/AppBar/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/AppBar/types.d.ts +0 -0
- /package/{dist/components → components}/BaseModule/BaseModule.d.ts +0 -0
- /package/{dist/components → components}/BaseModule/index.d.ts +0 -0
- /package/{dist/components → components}/BaseModule/types.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/classes/index.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/classes/types.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/components/ActionCancel/index.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/components/ActionFormCancel/index.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/components/ActionFormCancel/types.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/components/ActionFormIntro/index.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/components/ActionIntro/index.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/components/ActionIntro/test/contants.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/components/Actions/index.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/components/Actions/styles.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/components/Actions/types.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/dictionary.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/index.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/CommonActions/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/classes/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/classes/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/constants.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/contexts/DataGridContext/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/contexts/DataGridContext/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/contexts/FilterContext/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/contexts/FilterContext/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/dictionary.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnBooleanFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnBooleanFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnConcatenatedValueFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnConcatenatedValueFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnDateFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnDateFormatter/styles.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnDateFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnIconFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnIconFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnInteractiveCheckFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnInteractiveCheckFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnNestedValueFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnNestedValueFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnPointsFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnPointsFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnPriceFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnPriceFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnSetCheckFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnSetCheckFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnUncertaintyFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/ColumnUncertaintyFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/formatters/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/hooks/useDataGrid.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/hooks/useFilters.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/styles.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/styles.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/Density/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/Density/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/Filter/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/Filter/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/MobileMenuActions/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/RowsCount/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/RowsCount/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/Settings/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/styles.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/Settings/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/hooks/useModalSettings/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/subcomponents/hooks/useModalSettings/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Actions/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Table/hooks/getDragHeaderRenderer.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Table/hooks/useFocusRef.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Table/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Table/subcomponents/ActionsColumn.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Table/subcomponents/CheckboxFormatter.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Table/subcomponents/CustomIcons.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Table/subcomponents/DraggableHeaderRenderer.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Table/subcomponents/SelectColumn.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/styles.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/Table/subcomponents/SkeletonFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/subcomponents/editors/TextEditor/index.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/types.d.ts +0 -0
- /package/{dist/components → components}/DataGrid/utils/getDataGridRowsFromSet.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/DragResizeWindow.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/DragResizeWindow.styles.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/classes/index.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/classes/types.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/constants.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/helpers/index.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/hooks/useDimensionEffects.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/hooks/useDragOptions.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/hooks/useResizeOptions.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/icons.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/index.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/slots/DragResizeWindowSlots.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/slots/slots.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/stories/basic.stories.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/stories/constants.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/stories/dictionary.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/stories/subcomponents/ContentExample.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/stories/subcomponents/WithExtendedContainer.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/stories/types.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/types.d.ts +0 -0
- /package/{dist/components → components}/DragResizeWindow/utils.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/DynamicFIlter.styles.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/DynamicFilter.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/DynamicFilter.stories.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/__tests__/DynamicFilter.test.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/constants.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/dictionary.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/helpers/formatToInitialFilters.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/helpers/formatToRowFilter.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/helpers/getPurgedInitialFiltersApplied.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/slots/SlotsEnum.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/slots/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/store/DynamicFilterContext.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/store/DynamicFilterStore.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/store/useDynamicFilterStore.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/AppliedFilterChip/AppliedFilterChip.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/AppliedFilterChip/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/AppliedFilterChip/useAppliedFilterChip.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/AppliedFilters/AppliedFilters.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/AppliedFilters/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/AppliedFilters/useAppliedFilters.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/DynamicFilterBase/DynamicFilterBase.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/DynamicFilterBase/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/DynamicFilterBase/useDynamicFilterBase.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FieldTypes/BooleanFilter/helpers.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FieldTypes/BooleanFilter/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FieldTypes/DataTypeComponent.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/helpers.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FieldTypes/FieldTypeInterface.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FieldTypes/NumberFilter/helpers.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FieldTypes/NumberFilter/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FieldTypes/SelectFilter/helpers.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FieldTypes/SelectFilter/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FieldTypes/StringFilter/helpers.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FieldTypes/StringFilter/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FieldTypes/fieldFactory.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FilterActions/FilterActions.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FilterActions/FilterActionsSkeleton.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FilterActions/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/FilterActions/useFilterActions.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/InputFilter/InputFilter.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/InputFilter/InputFilterSkeleton.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/InputFilter/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/InputFilter/useInputFilter.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/PopoverFilter/PopoverFilter.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/PopoverFilter/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/PopoverFilter/usePopoverFilter.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/PopoverMenuFields/PopoverMenuFields.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/PopoverMenuFields/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/subcomponents/PopoverMenuFields/usePopoverMenuFields.d.ts +0 -0
- /package/{dist/components → components}/DynamicFilter/types.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/DynamicSort.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/DynamicSort.stories.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/DynamicSort.styles.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/constants.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/dictionary.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/helpers/formatToInitialSorts.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/helpers/formatToRowSort.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/helpers/getPurgedInitialSortApplyed.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/slots/SlotsEnum.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/slots/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/store/DynamicSortContext.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/store/DynamicSortStore.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/store/useDynamicSortStore.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/AppliedSortChip/AppliedSortChip.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/AppliedSortChip/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/AppliedSortChip/useAppliedSortChip.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/AppliedSorts/AppliedSorts.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/AppliedSorts/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/AppliedSorts/useAppliedSorts.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/DynamicSortBase/DynamicSortBase.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/DynamicSortBase/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/DynamicSortBase/useDynamicSortBase.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/FieldTypes/DataTypeComponent.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/FieldTypes/FieldTypeInterface.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/FieldTypes/StringSort/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/FieldTypes/fieldFactory.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/InputSort/InputSort.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/InputSort/InputSortSkeleton.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/InputSort/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/InputSort/useInputSort.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/PopoverMenuFields/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/PopoverMenuFields/usePopoverMenuFields.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/PopoverSort/PopoverSort.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/PopoverSort/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/PopoverSort/usePopoverSort.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/SortActions/SortActions.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/SortActions/SortActionsSkeleton.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/SortActions/index.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/subcomponents/SortActions/useSortActions.d.ts +0 -0
- /package/{dist/components → components}/DynamicSort/types.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/GridLayout.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/calculateUtils.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/classes/index.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/classes/types.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/constants.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/index.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/styles.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/subcomponents/GridItem/index.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/subcomponents/GridItem/types.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/subcomponents/Responsive/helper.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/subcomponents/Responsive/index.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/subcomponents/Responsive/responsiveUtils.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/subcomponents/Responsive/types.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/subcomponents/withSizeProvider/index.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/subcomponents/withSizeProvider/types.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/types.d.ts +0 -0
- /package/{dist/components → components}/GridLayout/utils.d.ts +0 -0
- /package/{dist/components → components}/HelmetPage/index.d.ts +0 -0
- /package/{dist/components → components}/HelmetPage/types.d.ts +0 -0
- /package/{dist/components → components}/HelperError/HelperError.d.ts +0 -0
- /package/{dist/components → components}/HelperError/HelperError.stories.d.ts +0 -0
- /package/{dist/components → components}/HelperError/HelperError.styles.d.ts +0 -0
- /package/{dist/components → components}/HelperError/constant.d.ts +0 -0
- /package/{dist/components → components}/HelperError/index.d.ts +0 -0
- /package/{dist/components → components}/HelperError/slots/HelperErrorEnum.d.ts +0 -0
- /package/{dist/components → components}/HelperError/slots/HelperErrorSlots.d.ts +0 -0
- /package/{dist/components → components}/HelperError/slots/index.d.ts +0 -0
- /package/{dist/components → components}/HelperError/types.d.ts +0 -0
- /package/{dist/components → components}/Icon/Icon.d.ts +0 -0
- /package/{dist/components → components}/Icon/Icon.stories.d.ts +0 -0
- /package/{dist/components → components}/Icon/Icon.styles.d.ts +0 -0
- /package/{dist/components → components}/Icon/constants.d.ts +0 -0
- /package/{dist/components → components}/Icon/index.d.ts +0 -0
- /package/{dist/components → components}/Icon/slots/IconEnum.d.ts +0 -0
- /package/{dist/components → components}/Icon/slots/IconSlots.d.ts +0 -0
- /package/{dist/components → components}/Icon/slots/index.d.ts +0 -0
- /package/{dist/components → components}/Icon/types.d.ts +0 -0
- /package/{dist/components → components}/Image/Image.d.ts +0 -0
- /package/{dist/components → components}/Image/classes/constant.d.ts +0 -0
- /package/{dist/components → components}/Image/classes/index.d.ts +0 -0
- /package/{dist/components → components}/Image/classes/types.d.ts +0 -0
- /package/{dist/components → components}/Image/index.d.ts +0 -0
- /package/{dist/components → components}/Image/styles.d.ts +0 -0
- /package/{dist/components → components}/Image/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/Image/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/Image/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/Image/types.d.ts +0 -0
- /package/{dist/components → components}/Image/utils/getRatioValues.d.ts +0 -0
- /package/{dist/components → components}/Label/Label.d.ts +0 -0
- /package/{dist/components → components}/Label/Label.stories.d.ts +0 -0
- /package/{dist/components → components}/Label/Label.styles.d.ts +0 -0
- /package/{dist/components → components}/Label/constants.d.ts +0 -0
- /package/{dist/components → components}/Label/index.d.ts +0 -0
- /package/{dist/components → components}/Label/slots/LabelEnum.d.ts +0 -0
- /package/{dist/components → components}/Label/slots/index.d.ts +0 -0
- /package/{dist/components → components}/Label/types.d.ts +0 -0
- /package/{dist/components → components}/LanguagePopover/LanguagePopover.d.ts +0 -0
- /package/{dist/components → components}/LanguagePopover/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/LanguagePopover/classes/index.d.ts +0 -0
- /package/{dist/components → components}/LanguagePopover/classes/types.d.ts +0 -0
- /package/{dist/components → components}/LanguagePopover/index.d.ts +0 -0
- /package/{dist/components → components}/LanguagePopover/styles.d.ts +0 -0
- /package/{dist/components → components}/LanguagePopover/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/LanguagePopover/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/LanguagePopover/types.d.ts +0 -0
- /package/{dist/components → components}/LinearProgressIndeterminate/LinearProgressIndeterminate.d.ts +0 -0
- /package/{dist/components → components}/LinearProgressIndeterminate/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/LinearProgressIndeterminate/classes/index.d.ts +0 -0
- /package/{dist/components → components}/LinearProgressIndeterminate/classes/types.d.ts +0 -0
- /package/{dist/components → components}/LinearProgressIndeterminate/index.d.ts +0 -0
- /package/{dist/components → components}/LinearProgressIndeterminate/styles.d.ts +0 -0
- /package/{dist/components → components}/LinearProgressIndeterminate/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/LinearProgressIndeterminate/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/LinearProgressIndeterminate/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/Loadable/index.d.ts +0 -0
- /package/{dist/components → components}/LoadingError/LoadingError.d.ts +0 -0
- /package/{dist/components → components}/LoadingError/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/LoadingError/classes/index.d.ts +0 -0
- /package/{dist/components → components}/LoadingError/classes/types.d.ts +0 -0
- /package/{dist/components → components}/LoadingError/dictionary.d.ts +0 -0
- /package/{dist/components → components}/LoadingError/index.d.ts +0 -0
- /package/{dist/components → components}/LoadingError/styles.d.ts +0 -0
- /package/{dist/components → components}/LoadingError/types.d.ts +0 -0
- /package/{dist/components → components}/MFIsolationApp/MFIsolationApp.d.ts +0 -0
- /package/{dist/components → components}/MFIsolationApp/constants.d.ts +0 -0
- /package/{dist/components → components}/MFIsolationApp/index.d.ts +0 -0
- /package/{dist/components → components}/MFIsolationApp/subcomponents/MFAuthApp/MFAuthApp.d.ts +0 -0
- /package/{dist/components → components}/MFIsolationApp/subcomponents/MFAuthApp/index.d.ts +0 -0
- /package/{dist/components → components}/MFIsolationApp/subcomponents/MFAuthApp/types.d.ts +0 -0
- /package/{dist/components → components}/MFIsolationApp/types.d.ts +0 -0
- /package/{dist/components → components}/MFLoader/MFLoader.d.ts +0 -0
- /package/{dist/components → components}/MFLoader/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/MFLoader/classes/index.d.ts +0 -0
- /package/{dist/components → components}/MFLoader/classes/types.d.ts +0 -0
- /package/{dist/components → components}/MFLoader/dictionary.d.ts +0 -0
- /package/{dist/components → components}/MFLoader/helper.d.ts +0 -0
- /package/{dist/components → components}/MFLoader/index.d.ts +0 -0
- /package/{dist/components → components}/MFLoader/styles.d.ts +0 -0
- /package/{dist/components → components}/MFLoader/subcomponents/ProggessLoadingMF/index.d.ts +0 -0
- /package/{dist/components → components}/MFLoader/subcomponents/ProggessLoadingMF/types.d.ts +0 -0
- /package/{dist/components → components}/MFLoader/types.d.ts +0 -0
- /package/{dist/components → components}/NavLink/NavLink.d.ts +0 -0
- /package/{dist/components → components}/NavLink/classes/constant.d.ts +0 -0
- /package/{dist/components → components}/NavLink/classes/index.d.ts +0 -0
- /package/{dist/components → components}/NavLink/classes/types.d.ts +0 -0
- /package/{dist/components → components}/NavLink/index.d.ts +0 -0
- /package/{dist/components → components}/NavLink/styles.d.ts +0 -0
- /package/{dist/components → components}/NavLink/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/NavLink/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/NavLink/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/NavLink/types.d.ts +0 -0
- /package/{dist/components → components}/NoItemSelected/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/NoItemSelected/classes/index.d.ts +0 -0
- /package/{dist/components → components}/NoItemSelected/classes/types.d.ts +0 -0
- /package/{dist/components → components}/NoItemSelected/dictionary.d.ts +0 -0
- /package/{dist/components → components}/NoItemSelected/index.d.ts +0 -0
- /package/{dist/components → components}/NoItemSelected/styles.d.ts +0 -0
- /package/{dist/components → components}/NoItemSelected/types.d.ts +0 -0
- /package/{dist/components → components}/ObjectLogs/components/DetailDialog/index.d.ts +0 -0
- /package/{dist/components → components}/ObjectLogs/components/DetailDialog/styles.d.ts +0 -0
- /package/{dist/components → components}/ObjectLogs/components/DetailDialog/types.d.ts +0 -0
- /package/{dist/components → components}/ObjectLogs/components/DetailFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/ObjectLogs/components/DetailFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/ObjectLogs/dictionary.d.ts +0 -0
- /package/{dist/components → components}/ObjectLogs/index.d.ts +0 -0
- /package/{dist/components → components}/ObjectLogs/styles.d.ts +0 -0
- /package/{dist/components → components}/ObjectLogs/types.d.ts +0 -0
- /package/{dist/components → components}/PDFViewer/PDFViewer.d.ts +0 -0
- /package/{dist/components → components}/PDFViewer/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/PDFViewer/classes/index.d.ts +0 -0
- /package/{dist/components → components}/PDFViewer/classes/types.d.ts +0 -0
- /package/{dist/components → components}/PDFViewer/index.d.ts +0 -0
- /package/{dist/components → components}/PDFViewer/styles.d.ts +0 -0
- /package/{dist/components → components}/PDFViewer/types.d.ts +0 -0
- /package/{dist/components → components}/PaperForm/PaperForm.d.ts +0 -0
- /package/{dist/components → components}/PaperForm/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/PaperForm/classes/index.d.ts +0 -0
- /package/{dist/components → components}/PaperForm/classes/types.d.ts +0 -0
- /package/{dist/components → components}/PaperForm/components/Header.d.ts +0 -0
- /package/{dist/components → components}/PaperForm/index.d.ts +0 -0
- /package/{dist/components → components}/PaperForm/styles.d.ts +0 -0
- /package/{dist/components → components}/PaperForm/types.d.ts +0 -0
- /package/{dist/components → components}/Period/Period.d.ts +0 -0
- /package/{dist/components → components}/Period/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/Period/classes/index.d.ts +0 -0
- /package/{dist/components → components}/Period/classes/types.d.ts +0 -0
- /package/{dist/components → components}/Period/dictionary.d.ts +0 -0
- /package/{dist/components → components}/Period/index.d.ts +0 -0
- /package/{dist/components → components}/Period/styles.d.ts +0 -0
- /package/{dist/components → components}/Period/subcomponents/SkeletonPeriod/index.d.ts +0 -0
- /package/{dist/components → components}/Period/subcomponents/SkeletonPeriod/types.d.ts +0 -0
- /package/{dist/components → components}/Period/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/Period/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/Period/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/Period/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/PrintingSystem.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/classes/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/classes/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/styles.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/BodyNode/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/BodyNode/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/ChartNode/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/ChartNode/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/DividerNode/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/DividerNode/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/FooterNode/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/FooterNode/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/GridNode/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/GridNode/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/HeaderNode/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/HeaderNode/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/ImageNode/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/ImageNode/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/PageNode/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/PageNode/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/Pager/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/Pager/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/PaperNode/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/PaperNode/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/PropertyValueNode/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/PropertyValueNode/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/QRImageNode/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/QRImageNode/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/SectionNode/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/SectionNode/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/TextBoxNode/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/subcomponents/TextBoxNode/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/utils/FactoryRender/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/utils/FactoryRender/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/utils/PageRender/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/utils/PageRender/types.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/utils/getEvalValue/index.d.ts +0 -0
- /package/{dist/components → components}/PrintingSystem/utils/getSize/index.d.ts +0 -0
- /package/{dist/components → components}/PropertyValue/PropertyValue.d.ts +0 -0
- /package/{dist/components → components}/PropertyValue/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/PropertyValue/classes/index.d.ts +0 -0
- /package/{dist/components → components}/PropertyValue/classes/types.d.ts +0 -0
- /package/{dist/components → components}/PropertyValue/constants.d.ts +0 -0
- /package/{dist/components → components}/PropertyValue/index.d.ts +0 -0
- /package/{dist/components → components}/PropertyValue/styles.d.ts +0 -0
- /package/{dist/components → components}/PropertyValue/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/PropertyValue/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/PropertyValue/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/PropertyValue/types.d.ts +0 -0
- /package/{dist/components → components}/ScrollBar/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/ScrollBar/classes/index.d.ts +0 -0
- /package/{dist/components → components}/ScrollBar/classes/types.d.ts +0 -0
- /package/{dist/components → components}/ScrollBar/index.d.ts +0 -0
- /package/{dist/components → components}/ScrollBar/styles.d.ts +0 -0
- /package/{dist/components → components}/ScrollBar/types.d.ts +0 -0
- /package/{dist/components → components}/ScrollToTop/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/SideBar.d.ts +0 -0
- /package/{dist/components → components}/SideBar/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/SideBar/classes/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/classes/types.d.ts +0 -0
- /package/{dist/components → components}/SideBar/constants.d.ts +0 -0
- /package/{dist/components → components}/SideBar/context/sideBarContext/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/context/sideBarContext/types.d.ts +0 -0
- /package/{dist/components → components}/SideBar/hooks/useSideBar/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/styles.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentDesktop/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentDesktop/subcomponents/CollapseButton/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentDesktop/subcomponents/CollapseButton/styles.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentDesktop/subcomponents/CollapseButton/types.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentDesktop/subcomponents/ContentComponent/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/styles.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/styles.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/ArrowIcon/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/ArrowIcon/styles.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/ArrowIcon/types.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/styles.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/subcomponents/NavItemRootContent/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/subcomponents/NavItemRootContent/type.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavItemRoot/type.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/styles.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/styles.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/subcomponents/NavItemSubContent/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/subcomponents/NavItemSubContent/styles.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/subcomponents/NavItemSubContent/types.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/subcomponents/NavItemSub/types.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/subcomponents/NavListSub/type.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/subcomponents/ItemListRoot/types.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/type.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentGroups/utils/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentMobile/index.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentMobile/styles.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentMobile/subcomponents/Drawer.d.ts +0 -0
- /package/{dist/components → components}/SideBar/subcomponents/ContentMobile/subcomponents/types.d.ts +0 -0
- /package/{dist/components → components}/SideBar/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/SideBar/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/SideBar/types.d.ts +0 -0
- /package/{dist/components → components}/SplitLayout/SplitLayout.d.ts +0 -0
- /package/{dist/components → components}/SplitLayout/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/SplitLayout/classes/index.d.ts +0 -0
- /package/{dist/components → components}/SplitLayout/classes/types.d.ts +0 -0
- /package/{dist/components → components}/SplitLayout/index.d.ts +0 -0
- /package/{dist/components → components}/SplitLayout/styles.d.ts +0 -0
- /package/{dist/components → components}/SplitLayout/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/SplitLayout/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/SplitLayout/types.d.ts +0 -0
- /package/{dist/components → components}/StorybookTest/StorybookTest.d.ts +0 -0
- /package/{dist/components → components}/StorybookTest/base.stories.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/ToastContainer.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/ToastContainer.stories.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/ToastContainer.styles.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/__tests__/ToastContainer.test.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/constants.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/helpers/toaster.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/icons.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/index.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/slots/ToastContainerEnum.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/slots/index.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/slots/toastContainerSlots.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/subcomponents/ToastMessage/ToastMessage.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/subcomponents/ToastMessage/index.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/subcomponents/ToastMessage/useToastMessage.d.ts +0 -0
- /package/{dist/components → components}/ToastContainer/types.d.ts +0 -0
- /package/{dist/components → components}/WrapperComponent/index.d.ts +0 -0
- /package/{dist/components → components}/WrapperComponent/types.d.ts +0 -0
- /package/{dist/components → components}/animate/AnimatedScroll/animatedScroll.d.ts +0 -0
- /package/{dist/components → components}/animate/AnimatedScroll/index.d.ts +0 -0
- /package/{dist/components → components}/animate/AnimatedScroll/styles.d.ts +0 -0
- /package/{dist/components → components}/animate/AnimatedScroll/types.d.ts +0 -0
- /package/{dist/components → components}/animate/DialogAnimate.d.ts +0 -0
- /package/{dist/components → components}/animate/FabButtonAnimate.d.ts +0 -0
- /package/{dist/components → components}/animate/IconButtonAnimate/index.d.ts +0 -0
- /package/{dist/components → components}/animate/IconButtonAnimate/types.d.ts +0 -0
- /package/{dist/components → components}/animate/LoadingScreen/index.d.ts +0 -0
- /package/{dist/components → components}/animate/LoadingScreen/styles.d.ts +0 -0
- /package/{dist/components → components}/animate/LoadingScreen/types.d.ts +0 -0
- /package/{dist/components → components}/animate/MotionContainer/index.d.ts +0 -0
- /package/{dist/components → components}/animate/MotionInView.d.ts +0 -0
- /package/{dist/components → components}/animate/MotionLazyContainer/index.d.ts +0 -0
- /package/{dist/components → components}/animate/PropagateLoader/index.d.ts +0 -0
- /package/{dist/components → components}/animate/PropagateLoader/syles.d.ts +0 -0
- /package/{dist/components → components}/animate/TextAnimate.d.ts +0 -0
- /package/{dist/components → components}/animate/features.d.ts +0 -0
- /package/{dist/components → components}/animate/index.d.ts +0 -0
- /package/{dist/components → components}/animate/type.d.ts +0 -0
- /package/{dist/components → components}/animate/variants/actions.d.ts +0 -0
- /package/{dist/components → components}/animate/variants/background.d.ts +0 -0
- /package/{dist/components → components}/animate/variants/bounce.d.ts +0 -0
- /package/{dist/components → components}/animate/variants/container.d.ts +0 -0
- /package/{dist/components → components}/animate/variants/fade.d.ts +0 -0
- /package/{dist/components → components}/animate/variants/flip.d.ts +0 -0
- /package/{dist/components → components}/animate/variants/index.d.ts +0 -0
- /package/{dist/components → components}/animate/variants/path.d.ts +0 -0
- /package/{dist/components → components}/animate/variants/rotate.d.ts +0 -0
- /package/{dist/components → components}/animate/variants/scale.d.ts +0 -0
- /package/{dist/components → components}/animate/variants/slide.d.ts +0 -0
- /package/{dist/components → components}/animate/variants/transition.d.ts +0 -0
- /package/{dist/components → components}/animate/variants/zoom.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/classes/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/classes/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/helper.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/styles.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/subcomponents/AreaChip/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/subcomponents/AreaChip/styles.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/subcomponents/AreaChip/subcomponents/ChipActionsMobile/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/subcomponents/AreaChip/subcomponents/ChipActionsMobile/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/subcomponents/AreaChip/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/subcomponents/AreaChipMobile/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/ChipMobile/ChipMobile.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/PanelWindowPopUp/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/PanelWindowPopUp/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/subcomponents/PanelWindowPopUp/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/subcomponents/PanelWindowPopUp/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasAdmin/test/utils.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/classes/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/classes/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/styles.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/AreaGridLayout/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/AreaGridLayout/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/InnerForHooks/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/InnerForHooks/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/PanelWindows/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/PanelWindows/styles.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/PanelWindows/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/styles.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Component/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Component/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/helper.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/styles.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/MainActions/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/WindowHeaderSkeleton/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/WindowHeaderSkeleton/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/WindowPopUpsList/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/WindowPopUpsList/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/LinearProgress/LinearProgress.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/MicroFrontend/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/MicroFrontend/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/WindowModal/index.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/subcomponents/WindowModal/styles.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/subcomponents/Area/types.d.ts +0 -0
- /package/{dist/components → components}/areas/components/AreasViewer/test/utils.d.ts +0 -0
- /package/{dist/components → components}/areas/components/index.d.ts +0 -0
- /package/{dist/components → components}/areas/constants.d.ts +0 -0
- /package/{dist/components → components}/areas/contexts/AreasContext/helper.d.ts +0 -0
- /package/{dist/components → components}/areas/contexts/AreasContext/index.d.ts +0 -0
- /package/{dist/components → components}/areas/contexts/AreasContext/index.test.d.ts +0 -0
- /package/{dist/components → components}/areas/contexts/AreasContext/store.d.ts +0 -0
- /package/{dist/components → components}/areas/contexts/AreasContext/types.d.ts +0 -0
- /package/{dist/components → components}/areas/contexts/DynamicMFParmsContext/index.d.ts +0 -0
- /package/{dist/components → components}/areas/contexts/DynamicMFParmsContext/store.d.ts +0 -0
- /package/{dist/components → components}/areas/contexts/DynamicMFParmsContext/types.d.ts +0 -0
- /package/{dist/components → components}/areas/contexts/WindowToolsMFContext/index.d.ts +0 -0
- /package/{dist/components → components}/areas/contexts/WindowToolsMFContext/types.d.ts +0 -0
- /package/{dist/components → components}/areas/contexts/index.d.ts +0 -0
- /package/{dist/components → components}/areas/dictionary.d.ts +0 -0
- /package/{dist/components → components}/areas/hooks/index.d.ts +0 -0
- /package/{dist/components → components}/areas/hooks/useAreas/index.d.ts +0 -0
- /package/{dist/components → components}/areas/hooks/useDynamicMFParameters/index.d.ts +0 -0
- /package/{dist/components → components}/areas/hooks/useSetWindowsTitle/index.d.ts +0 -0
- /package/{dist/components → components}/areas/hooks/useSetWindowsTitle/useSetWindowsTitle.d.ts +0 -0
- /package/{dist/components → components}/areas/hooks/useWindowToolsMF/index.d.ts +0 -0
- /package/{dist/components → components}/areas/icons.d.ts +0 -0
- /package/{dist/components → components}/areas/index.d.ts +0 -0
- /package/{dist/components → components}/areas/types.d.ts +0 -0
- /package/{dist/components → components}/areas/utils/useOnClickOutside/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/AppBarCommercial/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/commercial/AppBarCommercial/classes/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/AppBarCommercial/classes/types.d.ts +0 -0
- /package/{dist/components → components}/commercial/AppBarCommercial/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/AppBarCommercial/styles.d.ts +0 -0
- /package/{dist/components → components}/commercial/AppBarCommercial/types.d.ts +0 -0
- /package/{dist/components → components}/commercial/HamburgerMenu/HamburgerMenu.d.ts +0 -0
- /package/{dist/components → components}/commercial/HamburgerMenu/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/commercial/HamburgerMenu/classes/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/HamburgerMenu/classes/type.d.ts +0 -0
- /package/{dist/components → components}/commercial/HamburgerMenu/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/HamburgerMenu/styles.d.ts +0 -0
- /package/{dist/components → components}/commercial/HamburgerMenu/test/constants.d.ts +0 -0
- /package/{dist/components → components}/commercial/HamburgerMenu/test/utils.d.ts +0 -0
- /package/{dist/components → components}/commercial/HamburgerMenu/types.d.ts +0 -0
- /package/{dist/components → components}/commercial/SectionCommercial/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/commercial/SectionCommercial/classes/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/SectionCommercial/classes/types.d.ts +0 -0
- /package/{dist/components → components}/commercial/SectionCommercial/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/SectionCommercial/styles.d.ts +0 -0
- /package/{dist/components → components}/commercial/SectionCommercial/types.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/TopBar.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/classes/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/classes/types.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/component/ConteinItem/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/subcomponents/ArrowIcon/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/subcomponents/ArrowIcon/styles.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/subcomponents/ArrowIcon/types.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/types.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/context/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/context/type.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/hook/topBarContext/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/style.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/test/constants.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/test/utils.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/type.d.ts +0 -0
- /package/{dist/components → components}/commercial/TopBar/utils/isActive/index.d.ts +0 -0
- /package/{dist/components → components}/commercial/index.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/Resizable/Resizable.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/Resizable/Resizeable.styles.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/Resizable/constants.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/Resizable/index.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/Resizable/slots/ResizableSlots.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/Resizable/slots/slots.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/Resizable/stories/basic.stories.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/Resizable/stories/constants.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/Resizable/stories/types.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/Resizable/types.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/ResizableBox/ResizableBox.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/ResizableBox/ResizeableBox.styles.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/ResizableBox/constants.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/ResizableBox/index.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/ResizableBox/slots/ResizableBoxSlots.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/ResizableBox/slots/slots.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/ResizableBox/stories/basic.stories.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/ResizableBox/stories/constants.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/ResizableBox/stories/types.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/ResizableBox/types.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/helpers.d.ts +0 -0
- /package/{dist/components → components}/extended/react-resizable/index.d.ts +0 -0
- /package/{dist/components → components}/formatters/BooleanFormatter/dictionary.d.ts +0 -0
- /package/{dist/components → components}/formatters/BooleanFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/formatters/BooleanFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/formatters/ConcatenatedFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/formatters/ConcatenatedFormatter/index.test.d.ts +0 -0
- /package/{dist/components → components}/formatters/ConcatenatedFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/formatters/CourseFormatter/CourseFormatter.d.ts +0 -0
- /package/{dist/components → components}/formatters/CourseFormatter/CourseFormatter.styles.d.ts +0 -0
- /package/{dist/components → components}/formatters/CourseFormatter/constants.d.ts +0 -0
- /package/{dist/components → components}/formatters/CourseFormatter/dictionary.d.ts +0 -0
- /package/{dist/components → components}/formatters/CourseFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/formatters/CourseFormatter/slots/CourseFormatterSlots.d.ts +0 -0
- /package/{dist/components → components}/formatters/CourseFormatter/slots/slots.d.ts +0 -0
- /package/{dist/components → components}/formatters/CourseFormatter/stories/basic.stories.d.ts +0 -0
- /package/{dist/components → components}/formatters/CourseFormatter/stories/constants.d.ts +0 -0
- /package/{dist/components → components}/formatters/CourseFormatter/stories/dictionary.d.ts +0 -0
- /package/{dist/components → components}/formatters/CourseFormatter/stories/subcomponents/WithCFProvider.d.ts +0 -0
- /package/{dist/components → components}/formatters/CourseFormatter/stories/types.d.ts +0 -0
- /package/{dist/components → components}/formatters/CourseFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/formatters/DateFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/formatters/DateFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/formatters/DistanceToNowFormatter/DistanceToNowFormatter.d.ts +0 -0
- /package/{dist/components → components}/formatters/DistanceToNowFormatter/DistanceToNowFormatter.styles.d.ts +0 -0
- /package/{dist/components → components}/formatters/DistanceToNowFormatter/constants.d.ts +0 -0
- /package/{dist/components → components}/formatters/DistanceToNowFormatter/dictionary.d.ts +0 -0
- /package/{dist/components → components}/formatters/DistanceToNowFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/formatters/DistanceToNowFormatter/slots/DistanceToNowFormatterSlots.d.ts +0 -0
- /package/{dist/components → components}/formatters/DistanceToNowFormatter/slots/slots.d.ts +0 -0
- /package/{dist/components → components}/formatters/DistanceToNowFormatter/stories/basic.stories.d.ts +0 -0
- /package/{dist/components → components}/formatters/DistanceToNowFormatter/stories/constants.d.ts +0 -0
- /package/{dist/components → components}/formatters/DistanceToNowFormatter/stories/dictionary.d.ts +0 -0
- /package/{dist/components → components}/formatters/DistanceToNowFormatter/stories/subcomponents/WithDTNFProvider.d.ts +0 -0
- /package/{dist/components → components}/formatters/DistanceToNowFormatter/stories/types.d.ts +0 -0
- /package/{dist/components → components}/formatters/DistanceToNowFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/formatters/FormatterRoot/index.d.ts +0 -0
- /package/{dist/components → components}/formatters/FormatterRoot/styles.d.ts +0 -0
- /package/{dist/components → components}/formatters/FormatterRoot/types.d.ts +0 -0
- /package/{dist/components → components}/formatters/PeriodFormatter/dictionary.d.ts +0 -0
- /package/{dist/components → components}/formatters/PeriodFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/formatters/PeriodFormatter/index.test.d.ts +0 -0
- /package/{dist/components → components}/formatters/PeriodFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/formatters/PointsFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/formatters/PointsFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/formatters/PriceFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/formatters/PriceFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/formatters/UncertaintyFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/formatters/UncertaintyFormatter/types.d.ts +0 -0
- /package/{dist/components → components}/formatters/classes/index.d.ts +0 -0
- /package/{dist/components → components}/formatters/classes/types.d.ts +0 -0
- /package/{dist/components → components}/formatters/constants.d.ts +0 -0
- /package/{dist/components → components}/formatters/dictionary.d.ts +0 -0
- /package/{dist/components → components}/formatters/index.d.ts +0 -0
- /package/{dist/components → components}/formatters/types.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/MyDevice.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/MyDevice.styles.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/constants.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/index.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/slots/MyDeviceSlots.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/slots/slots.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/stories/basic.stories.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/stories/constants.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/stories/dictionary.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/stories/subcomponents/WithMyDeviceProvider.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/stories/types.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/subcomponents/PropertyValue/index.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/subcomponents/PropertyValue/types.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDevice/types.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/MyDeviceStatus.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/MyDeviceStatus.styles.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/constants.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/dictionary.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/icons.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/index.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/slots/MyDeviceStatusSlots.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/slots/slots.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/stories/basic.stories.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/stories/constants.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/stories/dataMocks.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/stories/subcomponents/WithMyDeviceProvider.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/stories/types.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/subcomponents/PropertyValue/index.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/subcomponents/PropertyValue/types.d.ts +0 -0
- /package/{dist/components → components}/gclick/MyDeviceStatus/types.d.ts +0 -0
- /package/{dist/components → components}/gclick/constants.d.ts +0 -0
- /package/{dist/components → components}/gclick/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/RHFAutocomplete.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/classes/constant.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/classes/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/classes/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/dictionary.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/subcomponents/ComponentTypeImage/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/subcomponents/ComponentTypeText/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/subcomponents/RenderOption/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/subcomponents/RenderOption/styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/subcomponents/Skeleton/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/subcomponents/Skeleton/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/test/constants.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/test/index.test.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/test/utils.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocomplete/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocompleteAsync/classes/constant.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocompleteAsync/classes/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocompleteAsync/classes/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocompleteAsync/dictionary.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocompleteAsync/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocompleteAsync/styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocompleteAsync/subcomponents/ComponentTypeImage/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocompleteAsync/subcomponents/ComponentTypeText/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocompleteAsync/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocompleteAsync/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFAutocompleteAsync/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFCheckbox/RHFCheckbox.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFCheckbox/classes/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFCheckbox/classes/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFCheckbox/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFCheckbox/styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFCheckbox/test/constants.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFCheckbox/test/utils.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFCheckbox/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFColorPicker/RFHColorPicker.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFColorPicker/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFColorPicker/classes/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFColorPicker/classes/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFColorPicker/dictionary.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFColorPicker/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFColorPicker/styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFColorPicker/subcomponents/Skeleton/indext.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFColorPicker/subcomponents/Skeleton/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFColorPicker/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFDateTime/RHFDateTime.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFDateTime/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFDateTime/classes/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFDateTime/classes/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFDateTime/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFDateTime/styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFDateTime/subcomponents/Skeleton/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFDateTime/subcomponents/Skeleton/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFDateTime/test/constants.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFDateTime/test/index.test.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFDateTime/test/utils.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFDateTime/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFHelperError/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFInputNumberSpinner/RHFInputNumberSpinner.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFInputNumberSpinner/RHFInputNumberSpinner.stories.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFInputNumberSpinner/RHFInputNumberSpinner.styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFInputNumberSpinner/constants.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFInputNumberSpinner/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFInputNumberSpinner/slots/RHFInputNumberSpinnnerEnum.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFInputNumberSpinner/slots/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFInputNumberSpinner/subcomponents/SkeletonSpinner/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFInputNumberSpinner/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFInputNumberSpinner/useRHFInputNumberSpinner.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFMultiCheckbox/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFMultiCheckbox/styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFMultiCheckbox/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFPeriod/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFPeriod/classes/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFPeriod/classes/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFPeriod/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFPeriod/styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFPeriod/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFRadioGroup/RHFRadioGroup.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFRadioGroup/formatters/OptionIconLabelFormatter/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFRadioGroup/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFRadioGroup/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFSelect.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFSwitch.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextField/RHFTextField.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextField/RHFTextField.stories.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextField/RHFTextField.styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextField/constant.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextField/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextField/slots/RHFTextFieldEnum.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextField/slots/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextField/subcomponents/Skeleton/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextField/subcomponents/Skeleton/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextField/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextFieldPassword/classes/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextFieldPassword/classes/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextFieldPassword/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextFieldPassword/styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextFieldPassword/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextFieldPassword/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextFieldPassword/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFTextFieldPassword/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploaMultipleFile/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/classes/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/classes/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/subcomponents/Skeleton/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/subcomponents/Skeleton/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/RHFUploadImage/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFUpload/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFormContext/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFormContext/classes/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFormContext/classes/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFormContext/dictionary.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFormContext/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFormContext/styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFormContext/subcomponents/FormActions/index.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFormContext/subcomponents/FormActions/skeleton.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFormContext/subcomponents/FormActions/styles.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFormContext/subcomponents/FormActions/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/RHFormContext/types.d.ts +0 -0
- /package/{dist/components → components}/hook-form/index.d.ts +0 -0
- /package/{dist/components → components}/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/Map.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/Map.styles.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/classes/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/classes/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/constants.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/contexts/MapContext/MapContext.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/contexts/MapContext/helper.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/contexts/MapContext/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/contexts/MapContext/store.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/contexts/MapContext/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/dictionary.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/external/Control/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/external/Control/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/external/Popup/component.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/external/Popup/div-overlay.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/external/Popup/element.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/external/Popup/generic.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/external/Popup/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/external/googleMutant/LRUMap.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/external/googleMutant/googleMutant.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/external/googleMutant/googleMutantNoDelete.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/featureRenders/CommonFeatureRender/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/FeatureDivIconLabel/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/FeatureDivIconLabel/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/MarkerIconLabel/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/featureRenders/CommonFeatureRender/subcomponents/MarkerIconLabel/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/featureRenders/MarkerFeatureRender/IconMarker.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/featureRenders/MarkerFeatureRender/IconMarkerGrua.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/featureRenders/MarkerFeatureRender/IconMarkerTaxi.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/featureRenders/MarkerFeatureRender/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/featureRenders/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/hooks/useAutoFocus/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/hooks/useAutoFocus/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/hooks/useDisableClickEvents/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/hooks/useDisableZoomEvents/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/hooks/useMapStore/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/icons.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/pluginLayers/PolylineWithArrows/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/pluginLayers/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/MapPopupMyGps.styles.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/constants.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/dictionary.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/slots/ MapPopupMyGpsSlots.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/slots/slots.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/stories/basic.stories.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/stories/constants.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/stories/dictionary.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/stories/subcomponents/WithMapOpenPopup.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/stories/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/subcomponents/PropertyValue/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/subcomponents/PropertyValue/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/MapPopupMyGps/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/popups/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/slots/MapSlots.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/slots/slots.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/stories/basic.stories.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/stories/constants.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/stories/dictionary.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/stories/subcomponents/ContentExample.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/stories/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useCheckedLayers.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useColumns.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useMaster.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useRowActionsGetter.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/model.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/bing.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/google.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/osm.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/MapSourcesTool/sourceTypes/utils.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/constants.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/helpers.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useMeasure/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/hooks/useValidation.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/model.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MeasureData/validations.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/subcomponents/MyActions/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/MeasureTool/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/subcomponents/ZoomButtons/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/subcomponents/TopRigthTools/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/Controls/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/LayersContainer/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/MarkerClusterGroup/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/MarkerClusterGroup/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/RenderByEachFeatureComponent/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/subcomponents/RenderByEachFeatureComponent/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/TileLayers/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerGoogle/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/subcomponents/TileLayers/subcomponents/TileLayerOthers/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/Map/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/MapGpsTools.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/classes/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/classes/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/constants.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/contexts/MapGpsToolsContext/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/contexts/MapGpsToolsContext/store.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/contexts/MapGpsToolsContext/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/dictionary.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/hooks/useLayers/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/hooks/useMapGpsToolsStore/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/icons.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/styles.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/constants.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/helpers.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useDrawing.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSubmit.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useSumbitErrorsFocus.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/hooks/useValidation.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/styles.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/ConfigData/validations.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/validations.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyActions/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyActions/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyTabs/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/MyTabs/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/FillData/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/subcomponents/StrokeData/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/StyleData/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedFeatures.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useCheckedGeofences.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useColumns.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useMaster.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useRowActionsGetter.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/styles.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/subcomponents/Filter/index.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/constants.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/model.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/subcomponents/TabsGpsTools/types.d.ts +0 -0
- /package/{dist/components → components}/maps/components/MapGpsTools/types.d.ts +0 -0
- /package/{dist/components → components}/maps/index.d.ts +0 -0
- /package/{dist/components → components}/maps/utils/courseToCartesianAngle.d.ts +0 -0
- /package/{dist/components → components}/maps/utils/courseToCssAngle.d.ts +0 -0
- /package/{dist/components → components}/maps/utils/index.d.ts +0 -0
- /package/{dist/components → components}/maps/utils/isFeature.d.ts +0 -0
- /package/{dist/components → components}/maps/utils/isFeatureCollection.d.ts +0 -0
- /package/{dist/components → components}/maps/utils/isFeatureCollectionDraft.d.ts +0 -0
- /package/{dist/components → components}/maps/utils/isGeometry.d.ts +0 -0
- /package/{dist/components → components}/modal/ModalDialog/dictionary.d.ts +0 -0
- /package/{dist/components → components}/modal/ModalDialog/index.d.ts +0 -0
- /package/{dist/components → components}/modal/ModalDialog/styles.d.ts +0 -0
- /package/{dist/components → components}/modal/ModalDialog/subcomponents/ResizeHandle/index.d.ts +0 -0
- /package/{dist/components → components}/modal/ModalDialog/types.d.ts +0 -0
- /package/{dist/components → components}/modal/WindowBase/index.d.ts +0 -0
- /package/{dist/components → components}/modal/WindowBase/styles.d.ts +0 -0
- /package/{dist/components → components}/modal/WindowBase/subcomponents/Header/index.d.ts +0 -0
- /package/{dist/components → components}/modal/WindowBase/subcomponents/Header/styles.d.ts +0 -0
- /package/{dist/components → components}/modal/WindowBase/subcomponents/Header/types.d.ts +0 -0
- /package/{dist/components → components}/modal/WindowBase/types.d.ts +0 -0
- /package/{dist/components → components}/modal/WindowConfirm/dictionary.d.ts +0 -0
- /package/{dist/components → components}/modal/WindowConfirm/index.d.ts +0 -0
- /package/{dist/components → components}/modal/WindowConfirm/styles.d.ts +0 -0
- /package/{dist/components → components}/modal/WindowConfirm/subcomponents/MessageIlustration/index.d.ts +0 -0
- /package/{dist/components → components}/modal/WindowConfirm/subcomponents/MessageIlustration/types.d.ts +0 -0
- /package/{dist/components → components}/modal/WindowConfirm/types.d.ts +0 -0
- /package/{dist/components → components}/modal/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/modal/classes/index.d.ts +0 -0
- /package/{dist/components → components}/modal/classes/types.d.ts +0 -0
- /package/{dist/components → components}/modal/dictionary.d.ts +0 -0
- /package/{dist/components → components}/modal/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Accordion/Accordion.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Accordion/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Accordion/classes/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Accordion/classes/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Accordion/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Accordion/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Accordion/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Accordion/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Accordion/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Accordion/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Accordion/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Avatar/Avatar.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Avatar/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Avatar/classes/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Avatar/classes/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Avatar/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Avatar/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Avatar/subcomponents/SkeletonAvatar/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Avatar/subcomponents/SkeletonAvatar/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Avatar/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Avatar/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Avatar/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Avatar/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Badge/Badge.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Badge/Badge.styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Badge/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Badge/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Badge/slots/BadgeEnum.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Badge/slots/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Badge/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Badge/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/BoxIcon/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/BoxIcon/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Breadcrumbs/components/LinkItem/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Breadcrumbs/components/LinkItem/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Breadcrumbs/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Breadcrumbs/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Button/Button.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Button/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Button/classes/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Button/classes/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Button/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Button/index.test.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Button/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Button/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/CheckBox/CheckBox.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/CheckBox/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/CheckBox/classes/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/CheckBox/classes/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/CheckBox/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/CheckBox/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/CheckBox/subcomponents/Skeleton/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/CheckBox/subcomponents/Skeleton/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/CheckBox/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/CircularProgress/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/FormControlLabel/FormControlLabel.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/FormControlLabel/FormControlLabel.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/FormControlLabel/FormControlLabel.styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/FormControlLabel/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/FormControlLabel/slots/FormControlLabelEnum.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/FormControlLabel/slots/FormControlLabelSlots.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/FormControlLabel/slots/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/FormControlLabel/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/IconButton.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/IconButton.styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/helpers/evalIconColor.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/slots/IconButtonEnum.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/slots/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/DefaultIconButton/IconButton.containedDefault.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/DefaultIconButton/IconButton.textDefault.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/DefaultIconButton/iconButton.outlinedDefault.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/DisableIconButton/IconButton.containedDisable.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/DisableIconButton/IconButton.textDisable.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/DisableIconButton/iconButton.outlinedDisable.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/PrimaryIconButton/IconButton.containedPrimary.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/PrimaryIconButton/IconButton.textPrimary.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/PrimaryIconButton/iconButton.outlinedPrimary.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/SemanticIconButton/ErrorIconButton/IconButton.containedError.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/SemanticIconButton/ErrorIconButton/IconButton.textError.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/SemanticIconButton/ErrorIconButton/iconButton.outlinedError.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/SemanticIconButton/InfoIconButton/IconButton.containedInfo.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/SemanticIconButton/InfoIconButton/IconButton.textInfo.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/SemanticIconButton/InfoIconButton/iconButton.outlinedInfo.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/SemanticIconButton/SuccesIconButton/IconButton.containedSuccess.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/SemanticIconButton/SuccesIconButton/IconButton.textSucces.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/SemanticIconButton/SuccesIconButton/iconButton.outlinedSucces.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/SemanticIconButton/WarningIconButton/IconButton.containedWarning.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/SemanticIconButton/WarningIconButton/IconButton.textWarning.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/SemanticIconButton/WarningIconButton/iconButton.outlinedWarning.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/stories/SizesIconButton/IconButtonSizeMedium.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/IconButton/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ImageButton/ImageButton.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ImageButton/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ImageButton/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ImageButton/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ImageButton/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ImageButton/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ImageButton/utils/Clases/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ImageButton/utils/Clases/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ImageButton/utils/Clases/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/LinearProgress/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/LinkWithRoute/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/LinkWithRoute/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/LoadingButton/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/LoadingButton/classes/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/LoadingButton/classes/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/LoadingButton/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/LoadingButton/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/LoadingButton/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/LoadingButton/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/LoadingButton/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/LoadingButton/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/MenuActions/MenuActions.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/MenuActions/MenuActions.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/MenuActions/MenuActions.styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/MenuActions/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/MenuActions/dictionary.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/MenuActions/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/MenuActions/slots/MenuActionsEnum.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/MenuActions/slots/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/MenuActions/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Pager/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Pager/classes/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Pager/classes/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Pager/dicctionary.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Pager/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Pager/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Pager/subcomponents/CustomTablePagination/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Pager/subcomponents/CustomTablePagination/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Pager/subcomponents/PagerActions/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Pager/subcomponents/PagerActions/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Pager/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Popover/Popover.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Popover/classes/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Popover/classes/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Popover/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Popover/index.test.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Popover/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Popover/subcomponts/ArrowIcon/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Popover/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Skeleton/Skeleton.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Skeleton/Slots/skeletonEnum.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Skeleton/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Skeleton/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Skeleton/skeleton.styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Skeleton/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Stack/Stack.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Stack/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Stack/classes/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Stack/classes/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Stack/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Stack/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Stack/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tab/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tab/classes/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tab/classes/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tab/constant.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tab/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tab/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tab/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tab/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tab/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tab/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/TabContent/TabContent.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/TabContent/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/TabContent/classes/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/TabContent/classes/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/TabContent/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/TabContent/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/TabContent/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/TabContext/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/TabContext/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tabs/Tabs.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tabs/classes/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tabs/classes/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tabs/classes/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tabs/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tabs/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ToggleButton/ToggleButton.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ToggleButton/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ToggleButton/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ToggleIconButton/ToggleIconButton.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ToggleIconButton/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/ToggleIconButton/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tooltip/Tooltip.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tooltip/Tooltip.stories.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tooltip/Tooltip.styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tooltip/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tooltip/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tooltip/slots/TooltipEnum.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tooltip/slots/TooltipSlots.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tooltip/slots/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Tooltip/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Typography/Typography.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Typography/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Typography/styles.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Typography/subcomponents/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Typography/subcomponents/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Typography/tests/constants.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Typography/tests/index.test.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Typography/tests/utils.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Typography/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Typography/utils/Clases/index.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/Typography/utils/Clases/types.d.ts +0 -0
- /package/{dist/components → components}/mui_extended/index.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsProvider/contexts/PopupsContext/index.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsProvider/contexts/PopupsContext/store.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsProvider/contexts/PopupsContext/types.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsProvider/hooks/usePopupsStore/index.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsProvider/index.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/PopupsViewer.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/PopupsViewer.styles.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/constants.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/icons.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/index.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/slots/popupsViewerSlots.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/slots/slots.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/stories/basic.stories.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/stories/constants.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/stories/dictionary.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/stories/subcomponents/PopupContentExample.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/stories/types.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/subcomponents/Popup/index.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/subcomponents/Popup/subcomponents/EditionInfo/index.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/subcomponents/Popup/subcomponents/EditionInfo/types.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/subcomponents/Popup/subcomponents/Header/index.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/subcomponents/Popup/subcomponents/Header/types.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/subcomponents/Popup/types.d.ts +0 -0
- /package/{dist/components → components}/popups/components/PopupsViewer/types.d.ts +0 -0
- /package/{dist/components → components}/popups/index.d.ts +0 -0
- /package/{dist/contexts → contexts}/AppearanceComponentContext/AppearanceComponentContext.d.ts +0 -0
- /package/{dist/contexts → contexts}/AppearanceComponentContext/AppearanceComponentStore.d.ts +0 -0
- /package/{dist/contexts → contexts}/AppearanceComponentContext/index.d.ts +0 -0
- /package/{dist/contexts → contexts}/AppearanceComponentContext/useAppearanceComponentStore.d.ts +0 -0
- /package/{dist/contexts → contexts}/ModalContext/index.d.ts +0 -0
- /package/{dist/contexts → contexts}/ModalContext/types.d.ts +0 -0
- /package/{dist/contexts → contexts}/RealTimeContext/RealTimeContext.d.ts +0 -0
- /package/{dist/contexts → contexts}/RealTimeContext/index.d.ts +0 -0
- /package/{dist/contexts → contexts}/RealTimeContext/store.d.ts +0 -0
- /package/{dist/contexts → contexts}/RealTimeContext/types.d.ts +0 -0
- /package/{dist/contexts → contexts}/index.d.ts +0 -0
- /package/{dist/helpers → helpers}/cookies/cookies.d.ts +0 -0
- /package/{dist/helpers → helpers}/cookies/index.d.ts +0 -0
- /package/{dist/helpers → helpers}/cookies/types.d.ts +0 -0
- /package/{dist/hocs → hocs}/index.d.ts +0 -0
- /package/{dist/hocs → hocs}/withSizeProvider/constants.d.ts +0 -0
- /package/{dist/hocs → hocs}/withSizeProvider/index.d.ts +0 -0
- /package/{dist/hocs → hocs}/withSizeProvider/types.d.ts +0 -0
- /package/{dist/hocs → hocs}/withToggle/index.d.ts +0 -0
- /package/{dist/hocs → hocs}/withToggle/types.d.ts +0 -0
- /package/{dist/hooks → hooks}/index.d.ts +0 -0
- /package/{dist/hooks → hooks}/useComponentSize/index.d.ts +0 -0
- /package/{dist/hooks → hooks}/useComponentSize/useComponentSize.d.ts +0 -0
- /package/{dist/hooks → hooks}/useComponentSize/useComponentSize.stories.d.ts +0 -0
- /package/{dist/hooks → hooks}/useFormAddEdit/dictionary.d.ts +0 -0
- /package/{dist/hooks → hooks}/useFormAddEdit/index.d.ts +0 -0
- /package/{dist/hooks → hooks}/useFormAddEdit/types.d.ts +0 -0
- /package/{dist/hooks → hooks}/useFormFocus/index.d.ts +0 -0
- /package/{dist/hooks → hooks}/useFormFocus/types.d.ts +0 -0
- /package/{dist/hooks → hooks}/useFormReadyForUpdate/index.d.ts +0 -0
- /package/{dist/hooks → hooks}/useFormReadyForUpdate/types.d.ts +0 -0
- /package/{dist/hooks → hooks}/useInterval/index.d.ts +0 -0
- /package/{dist/hooks → hooks}/useModal/index.d.ts +0 -0
- /package/{dist/hooks → hooks}/useRealTime/index.d.ts +0 -0
- /package/{dist/hooks → hooks}/useSizeContainer/contants.d.ts +0 -0
- /package/{dist/hooks → hooks}/useSizeContainer/index.d.ts +0 -0
- /package/{dist/hooks → hooks}/useStateRef/index.d.ts +0 -0
- /package/{dist/hooks → hooks}/useSvgColor/constants.d.ts +0 -0
- /package/{dist/hooks → hooks}/useSvgColor/helpers.d.ts +0 -0
- /package/{dist/hooks → hooks}/useSvgColor/index.d.ts +0 -0
- /package/{dist/hooks → hooks}/useSvgColor/types.d.ts +0 -0
- /package/{dist/hooks → hooks}/useSvgColor/useSvgColor.d.ts +0 -0
- /package/{dist/hooks → hooks}/useTab/index.d.ts +0 -0
- /package/{dist/index.d.ts → index.d.ts} +0 -0
- /package/{dist/style.css → style.css} +0 -0
- /package/{dist/test → test}/HostThemeProviderMock.d.ts +0 -0
- /package/{dist/test → test}/constants.d.ts +0 -0
- /package/{dist/test → test}/constants_no_mock.d.ts +0 -0
- /package/{dist/test → test}/getNameDataTestId.d.ts +0 -0
- /package/{dist/test → test}/index.d.ts +0 -0
- /package/{dist/test → test}/mocks.d.ts +0 -0
- /package/{dist/test → test}/setup.d.ts +0 -0
- /package/{dist/test → test}/types.d.ts +0 -0
- /package/{dist/test → test}/utils.d.ts +0 -0
- /package/{dist/utils → utils}/capitalizeFirstLetter.d.ts +0 -0
- /package/{dist/utils → utils}/containerQuery.d.ts +0 -0
- /package/{dist/utils → utils}/formatDistanceToNow/formatDistanteToNow.d.ts +0 -0
- /package/{dist/utils → utils}/formatDistanceToNow/index.d.ts +0 -0
- /package/{dist/utils → utils}/formatDistanceToNow/types.d.ts +0 -0
- /package/{dist/utils → utils}/getComponentUtilityClass.d.ts +0 -0
- /package/{dist/utils → utils}/getPaletteColor.d.ts +0 -0
- /package/{dist/utils → utils}/getThemeVariantColor.d.ts +0 -0
- /package/{dist/utils → utils}/getTransformXY.d.ts +0 -0
- /package/{dist/utils → utils}/index.d.ts +0 -0
- /package/{dist/utils → utils}/isValidDate.d.ts +0 -0
- /package/{dist/utils → utils}/types.d.ts +0 -0
|
@@ -1,1476 +0,0 @@
|
|
|
1
|
-
import * as L from 'leaflet';
|
|
2
|
-
|
|
3
|
-
// redeclare module, maintains compatibility with @types/leaflet
|
|
4
|
-
declare module 'leaflet' {
|
|
5
|
-
/**
|
|
6
|
-
* Extends built in leaflet Layer Options.
|
|
7
|
-
*/
|
|
8
|
-
interface LayerOptions {
|
|
9
|
-
pmIgnore?: boolean;
|
|
10
|
-
snapIgnore?: boolean;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* Extends built in leaflet Map Options.
|
|
15
|
-
*/
|
|
16
|
-
interface MapOptions {
|
|
17
|
-
pmIgnore?: boolean;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* Extends built in leaflet Map.
|
|
22
|
-
*/
|
|
23
|
-
interface Map {
|
|
24
|
-
pm: PM.PMMap;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
/**
|
|
28
|
-
* Extends built in leaflet Path.
|
|
29
|
-
*/
|
|
30
|
-
interface Path {
|
|
31
|
-
pm: PM.PMLayer;
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* Extends built in leaflet ImageOverlay.
|
|
35
|
-
*/
|
|
36
|
-
interface ImageOverlay {
|
|
37
|
-
pm: PM.PMLayer;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
/**
|
|
41
|
-
* Extends built in leaflet LayerGroup.
|
|
42
|
-
*/
|
|
43
|
-
interface LayerGroup {
|
|
44
|
-
pm: PM.PMLayerGroup;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
/**
|
|
48
|
-
* Extends built in leaflet MarkerOptions with options for Text-Layer
|
|
49
|
-
*/
|
|
50
|
-
interface MarkerOptions {
|
|
51
|
-
textMarker?: boolean;
|
|
52
|
-
text?: string;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
* Extends built in leaflet Marker.
|
|
57
|
-
*/
|
|
58
|
-
interface Marker {
|
|
59
|
-
pm: PM.PMLayer;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* Extends @types/leaflet events...
|
|
64
|
-
*
|
|
65
|
-
* Todo: This is kind of a mess, and it makes all these event handlers show
|
|
66
|
-
* up on Layers and Map. Leaflet itself is based around Evented, and @types/leaflet
|
|
67
|
-
* makes this very hard to work around.
|
|
68
|
-
*
|
|
69
|
-
*/
|
|
70
|
-
interface Evented {
|
|
71
|
-
/******************************************
|
|
72
|
-
*
|
|
73
|
-
* AVAILABLE ON MAP + LAYER, THESE ARE OK ON EVENTED.
|
|
74
|
-
*
|
|
75
|
-
********************************************/
|
|
76
|
-
|
|
77
|
-
/** Fired when a layer is removed via Removal Mode. */
|
|
78
|
-
on(type: 'pm:remove', fn: PM.RemoveEventHandler): this;
|
|
79
|
-
once(type: 'pm:remove', fn: PM.RemoveEventHandler): this;
|
|
80
|
-
off(type: 'pm:remove', fn?: PM.RemoveEventHandler): this;
|
|
81
|
-
|
|
82
|
-
/** Fired when the layer being cut. Draw+Edit Mode*/
|
|
83
|
-
on(type: 'pm:cut', fn: PM.CutEventHandler): this;
|
|
84
|
-
once(type: 'pm:cut', fn: PM.CutEventHandler): this;
|
|
85
|
-
off(type: 'pm:cut', fn?: PM.CutEventHandler): this;
|
|
86
|
-
|
|
87
|
-
/** Fired when rotation is enabled for a layer. */
|
|
88
|
-
on(type: 'pm:rotateenable', fn: PM.RotateEnableEventHandler): this;
|
|
89
|
-
once(type: 'pm:rotateenable', fn: PM.RotateEnableEventHandler): this;
|
|
90
|
-
off(type: 'pm:rotateenable', fn?: PM.RotateEnableEventHandler): this;
|
|
91
|
-
|
|
92
|
-
/** Fired when rotation is disabled for a layer. */
|
|
93
|
-
on(type: 'pm:rotatedisable', fn: PM.RotateDisableEventHandler): this;
|
|
94
|
-
once(type: 'pm:rotatedisable', fn: PM.RotateDisableEventHandler): this;
|
|
95
|
-
off(type: 'pm:rotatedisable', fn?: PM.RotateDisableEventHandler): this;
|
|
96
|
-
|
|
97
|
-
/** Fired when rotation starts on a layer. */
|
|
98
|
-
on(type: 'pm:rotatestart', fn: PM.RotateStartEventHandler): this;
|
|
99
|
-
once(type: 'pm:rotatestart', fn: PM.RotateStartEventHandler): this;
|
|
100
|
-
off(type: 'pm:rotatestart', fn?: PM.RotateStartEventHandler): this;
|
|
101
|
-
|
|
102
|
-
/** Fired when a layer is rotated. */
|
|
103
|
-
on(type: 'pm:rotate', fn: PM.RotateEventHandler): this;
|
|
104
|
-
once(type: 'pm:rotate', fn: PM.RotateEventHandler): this;
|
|
105
|
-
off(type: 'pm:rotate', fn?: PM.RotateEventHandler): this;
|
|
106
|
-
|
|
107
|
-
/** Fired when rotation ends on a layer. */
|
|
108
|
-
on(type: 'pm:rotateend', fn: PM.RotateEndEventHandler): this;
|
|
109
|
-
once(type: 'pm:rotateend', fn: PM.RotateEndEventHandler): this;
|
|
110
|
-
off(type: 'pm:rotateend', fn?: PM.RotateEndEventHandler): this;
|
|
111
|
-
|
|
112
|
-
/******************************************
|
|
113
|
-
*
|
|
114
|
-
* TODO: DRAW/EDIT MODE EVENTS LAYER ONLY
|
|
115
|
-
*
|
|
116
|
-
********************************************/
|
|
117
|
-
|
|
118
|
-
/** Fired during a marker move/drag. */
|
|
119
|
-
on(type: 'pm:snapdrag', fn: PM.SnapEventHandler): this;
|
|
120
|
-
once(type: 'pm:snapdrag', fn: PM.SnapEventHandler): this;
|
|
121
|
-
off(type: 'pm:snapdrag', fn?: PM.SnapEventHandler): this;
|
|
122
|
-
|
|
123
|
-
/** Fired when a vertex is snapped. */
|
|
124
|
-
on(type: 'pm:snap', fn: PM.SnapEventHandler): this;
|
|
125
|
-
once(type: 'pm:snap', fn: PM.SnapEventHandler): this;
|
|
126
|
-
off(type: 'pm:snap', fn?: PM.SnapEventHandler): this;
|
|
127
|
-
|
|
128
|
-
/** Fired when a vertex is unsnapped. */
|
|
129
|
-
on(type: 'pm:unsnap', fn: PM.SnapEventHandler): this;
|
|
130
|
-
once(type: 'pm:unsnap', fn: PM.SnapEventHandler): this;
|
|
131
|
-
off(type: 'pm:unsnap', fn?: PM.SnapEventHandler): this;
|
|
132
|
-
|
|
133
|
-
/** Called when the center of a circle is placed/moved. */
|
|
134
|
-
on(type: 'pm:centerplaced', fn: PM.CenterPlacedEventHandler): this;
|
|
135
|
-
once(type: 'pm:centerplaced', fn: PM.CenterPlacedEventHandler): this;
|
|
136
|
-
off(type: 'pm:centerplaced', fn?: PM.CenterPlacedEventHandler): this;
|
|
137
|
-
|
|
138
|
-
/******************************************
|
|
139
|
-
*
|
|
140
|
-
* TODO: CUT/EDIT MODE EVENTS LAYER ONLY
|
|
141
|
-
*
|
|
142
|
-
********************************************/
|
|
143
|
-
|
|
144
|
-
/** Fired when a layer is edited. */
|
|
145
|
-
on(type: 'pm:edit', fn: PM.EditEventHandler): this;
|
|
146
|
-
once(type: 'pm:edit', fn: PM.EditEventHandler): this;
|
|
147
|
-
off(type: 'pm:edit', fn?: PM.EditEventHandler): this;
|
|
148
|
-
|
|
149
|
-
/******************************************
|
|
150
|
-
*
|
|
151
|
-
* TODO: DRAW MODE EVENTS ON MAP ONLY
|
|
152
|
-
*
|
|
153
|
-
********************************************/
|
|
154
|
-
|
|
155
|
-
/** Fired when Drawing Mode is toggled. */
|
|
156
|
-
on(
|
|
157
|
-
type: 'pm:globaldrawmodetoggled',
|
|
158
|
-
fn: PM.GlobalDrawModeToggledEventHandler,
|
|
159
|
-
context?: any,
|
|
160
|
-
): L.Evented;
|
|
161
|
-
once(
|
|
162
|
-
type: 'pm:globaldrawmodetoggled',
|
|
163
|
-
fn: PM.GlobalDrawModeToggledEventHandler,
|
|
164
|
-
context?: any,
|
|
165
|
-
): L.Evented;
|
|
166
|
-
off(
|
|
167
|
-
type: 'pm:globaldrawmodetoggled',
|
|
168
|
-
fn?: PM.GlobalDrawModeToggledEventHandler,
|
|
169
|
-
context?: any,
|
|
170
|
-
): L.Evented;
|
|
171
|
-
|
|
172
|
-
/** Called when drawing mode is enabled. Payload includes the shape type and working layer. */
|
|
173
|
-
on(type: 'pm:drawstart', fn: PM.DrawStartEventHandler, context?: any): L.Evented;
|
|
174
|
-
once(type: 'pm:drawstart', fn: PM.DrawStartEventHandler, context?: any): L.Evented;
|
|
175
|
-
off(type: 'pm:drawstart', fn?: PM.DrawStartEventHandler, context?: any): L.Evented;
|
|
176
|
-
|
|
177
|
-
/** Called when drawing mode is disabled. Payload includes the shape type. */
|
|
178
|
-
on(type: 'pm:drawend', fn: PM.DrawEndEventHandler, context?: any): L.Evented;
|
|
179
|
-
once(type: 'pm:drawend', fn: PM.DrawEndEventHandler, context?: any): L.Evented;
|
|
180
|
-
off(type: 'pm:drawend', fn?: PM.DrawEndEventHandler, context?: any): L.Evented;
|
|
181
|
-
|
|
182
|
-
/** Called when drawing mode is disabled. Payload includes the shape type. */
|
|
183
|
-
on(type: 'pm:create', fn: PM.CreateEventHandler, context?: any): L.Evented;
|
|
184
|
-
once(type: 'pm:create', fn: PM.CreateEventHandler, context?: any): L.Evented;
|
|
185
|
-
off(type: 'pm:create', fn?: PM.CreateEventHandler, context?: any): L.Evented;
|
|
186
|
-
|
|
187
|
-
/******************************************
|
|
188
|
-
*
|
|
189
|
-
* TODO: DRAW MODE EVENTS ON LAYER ONLY
|
|
190
|
-
*
|
|
191
|
-
********************************************/
|
|
192
|
-
|
|
193
|
-
/** Called when a new vertex is added. */
|
|
194
|
-
on(type: 'pm:vertexadded', fn: PM.VertexAddedEventHandler): this;
|
|
195
|
-
once(type: 'pm:vertexadded', fn: PM.VertexAddedEventHandler): this;
|
|
196
|
-
off(type: 'pm:vertexadded', fn?: PM.VertexAddedEventHandler): this;
|
|
197
|
-
|
|
198
|
-
/******************************************
|
|
199
|
-
*
|
|
200
|
-
* TODO: EDIT MODE EVENTS ON LAYER ONLY
|
|
201
|
-
*
|
|
202
|
-
********************************************/
|
|
203
|
-
|
|
204
|
-
/** Fired when edit mode is disabled and a layer is edited and its coordinates have changed. */
|
|
205
|
-
on(type: 'pm:update', fn: PM.UpdateEventHandler): this;
|
|
206
|
-
once(type: 'pm:update', fn: PM.UpdateEventHandler): this;
|
|
207
|
-
off(type: 'pm:update', fn?: PM.UpdateEventHandler): this;
|
|
208
|
-
|
|
209
|
-
/** Fired when edit mode on a layer is enabled. */
|
|
210
|
-
on(type: 'pm:enable', fn: PM.EnableEventHandler): this;
|
|
211
|
-
once(type: 'pm:enable', fn: PM.EnableEventHandler): this;
|
|
212
|
-
off(type: 'pm:enable', fn?: PM.EnableEventHandler): this;
|
|
213
|
-
|
|
214
|
-
/** Fired when edit mode on a layer is disabled. */
|
|
215
|
-
on(type: 'pm:disable', fn: PM.DisableEventHandler): this;
|
|
216
|
-
once(type: 'pm:disable', fn: PM.DisableEventHandler): this;
|
|
217
|
-
off(type: 'pm:disable', fn?: PM.DisableEventHandler): this;
|
|
218
|
-
|
|
219
|
-
/** Fired when a vertex is added. */
|
|
220
|
-
on(type: 'pm:vertexadded', fn: PM.VertexAddedEventHandler2): this;
|
|
221
|
-
once(type: 'pm:vertexadded', fn: PM.VertexAddedEventHandler2): this;
|
|
222
|
-
off(type: 'pm:vertexadded', fn?: PM.VertexAddedEventHandler2): this;
|
|
223
|
-
|
|
224
|
-
/** Fired when a vertex is removed. */
|
|
225
|
-
on(type: 'pm:vertexremoved', fn: PM.VertexRemovedEventHandler): this;
|
|
226
|
-
once(type: 'pm:vertexremoved', fn: PM.VertexRemovedEventHandler): this;
|
|
227
|
-
off(type: 'pm:vertexremoved', fn?: PM.VertexRemovedEventHandler): this;
|
|
228
|
-
|
|
229
|
-
/** Fired when a vertex is clicked. */
|
|
230
|
-
on(type: 'pm:vertexclick', fn: PM.VertexClickEventHandler): this;
|
|
231
|
-
once(type: 'pm:vertexclick', fn: PM.VertexClickEventHandler): this;
|
|
232
|
-
off(type: 'pm:vertexclick', fn?: PM.VertexClickEventHandler): this;
|
|
233
|
-
|
|
234
|
-
/** Fired when dragging of a marker which corresponds to a vertex starts. */
|
|
235
|
-
on(type: 'pm:markerdragstart', fn: PM.MarkerDragStartEventHandler): this;
|
|
236
|
-
once(type: 'pm:markerdragstart', fn: PM.MarkerDragStartEventHandler): this;
|
|
237
|
-
off(type: 'pm:markerdragstart', fn?: PM.MarkerDragStartEventHandler): this;
|
|
238
|
-
|
|
239
|
-
/** Fired when dragging a vertex-marker. */
|
|
240
|
-
on(type: 'pm:markerdrag', fn: PM.MarkerDragEventHandler): this;
|
|
241
|
-
once(type: 'pm:markerdrag', fn: PM.MarkerDragEventHandler): this;
|
|
242
|
-
off(type: 'pm:markerdrag', fn?: PM.MarkerDragEventHandler): this;
|
|
243
|
-
|
|
244
|
-
/** Fired when dragging of a vertex-marker ends. */
|
|
245
|
-
on(type: 'pm:markerdragend', fn: PM.MarkerDragEndEventHandler): this;
|
|
246
|
-
once(type: 'pm:markerdragend', fn: PM.MarkerDragEndEventHandler): this;
|
|
247
|
-
off(type: 'pm:markerdragend', fn?: PM.MarkerDragEndEventHandler): this;
|
|
248
|
-
|
|
249
|
-
/** Fired when coords of a layer are reset. E.g. by self-intersection.. */
|
|
250
|
-
on(type: 'pm:layerreset', fn: PM.LayerResetEventHandler): this;
|
|
251
|
-
once(type: 'pm:layerreset', fn: PM.LayerResetEventHandler): this;
|
|
252
|
-
off(type: 'pm:layerreset', fn?: PM.LayerResetEventHandler): this;
|
|
253
|
-
|
|
254
|
-
/** When allowSelfIntersection: false, this event is fired as soon as a self-intersection is detected. */
|
|
255
|
-
on(type: 'pm:intersect', fn: PM.IntersectEventHandler): this;
|
|
256
|
-
once(type: 'pm:intersect', fn: PM.IntersectEventHandler): this;
|
|
257
|
-
off(type: 'pm:intersect', fn?: PM.IntersectEventHandler): this;
|
|
258
|
-
|
|
259
|
-
/** Fired coordinates of the layer changed. */
|
|
260
|
-
on(type: 'pm:change', fn: PM.ChangeEventHandler): this;
|
|
261
|
-
once(type: 'pm:change', fn: PM.ChangeEventHandler): this;
|
|
262
|
-
off(type: 'pm:change', fn?: PM.ChangeEventHandler): this;
|
|
263
|
-
|
|
264
|
-
/** Fired when the text of a layer is changed. */
|
|
265
|
-
on(type: 'pm:textchange', fn: PM.TextChangeEventHandler): this;
|
|
266
|
-
once(type: 'pm:textchange', fn: PM.TextChangeEventHandler): this;
|
|
267
|
-
off(type: 'pm:textchange', fn?: PM.TextChangeEventHandler): this;
|
|
268
|
-
|
|
269
|
-
/** Fired when the text layer is focused. */
|
|
270
|
-
on(type: 'pm:textfocus', fn: PM.TextFocusEventHandler): this;
|
|
271
|
-
once(type: 'pm:textfocus', fn: PM.TextFocusEventHandler): this;
|
|
272
|
-
off(type: 'pm:textfocus', fn?: PM.TextFocusEventHandler): this;
|
|
273
|
-
|
|
274
|
-
/** Fired when the text layer is blurred. */
|
|
275
|
-
on(type: 'pm:textblur', fn: PM.TextBlurEventHandler): this;
|
|
276
|
-
once(type: 'pm:textblur', fn: PM.TextBlurEventHandler): this;
|
|
277
|
-
off(type: 'pm:textblur', fn?: PM.TextBlurEventHandler): this;
|
|
278
|
-
|
|
279
|
-
/******************************************
|
|
280
|
-
*
|
|
281
|
-
* TODO: EDIT MODE EVENTS ON MAP ONLY
|
|
282
|
-
*
|
|
283
|
-
********************************************/
|
|
284
|
-
|
|
285
|
-
/** Fired when Edit Mode is toggled. */
|
|
286
|
-
on(type: 'pm:globaleditmodetoggled', fn: PM.GlobalEditModeToggledEventHandler): this;
|
|
287
|
-
once(type: 'pm:globaleditmodetoggled', fn: PM.GlobalEditModeToggledEventHandler): this;
|
|
288
|
-
off(type: 'pm:globaleditmodetoggled', fn?: PM.GlobalEditModeToggledEventHandler): this;
|
|
289
|
-
|
|
290
|
-
/******************************************
|
|
291
|
-
*
|
|
292
|
-
* TODO: DRAG MODE EVENTS ON MAP ONLY
|
|
293
|
-
*
|
|
294
|
-
********************************************/
|
|
295
|
-
|
|
296
|
-
/** Fired when Drag Mode is toggled. */
|
|
297
|
-
on(type: 'pm:globaldragmodetoggled', fn: PM.GlobalDragModeToggledEventHandler): this;
|
|
298
|
-
once(type: 'pm:globaldragmodetoggled', fn: PM.GlobalDragModeToggledEventHandler): this;
|
|
299
|
-
off(type: 'pm:globaldragmodetoggled', fn?: PM.GlobalDragModeToggledEventHandler): this;
|
|
300
|
-
|
|
301
|
-
/******************************************
|
|
302
|
-
*
|
|
303
|
-
* TODO: DRAG MODE EVENTS ON LAYER ONLY
|
|
304
|
-
*
|
|
305
|
-
********************************************/
|
|
306
|
-
|
|
307
|
-
/** Fired when a layer starts being dragged. */
|
|
308
|
-
on(type: 'pm:dragstart', fn: PM.DragStartEventHandler): this;
|
|
309
|
-
once(type: 'pm:dragstart', fn: PM.DragStartEventHandler): this;
|
|
310
|
-
off(type: 'pm:dragstart', fn?: PM.DragStartEventHandler): this;
|
|
311
|
-
|
|
312
|
-
/** Fired when a layer is dragged. */
|
|
313
|
-
on(type: 'pm:drag', fn: PM.DragEventHandler): this;
|
|
314
|
-
once(type: 'pm:drag', fn: PM.DragEventHandler): this;
|
|
315
|
-
off(type: 'pm:drag', fn?: PM.DragEventHandler): this;
|
|
316
|
-
|
|
317
|
-
/** Fired when a layer stops being dragged. */
|
|
318
|
-
on(type: 'pm:dragend', fn: PM.DragEndEventHandler): this;
|
|
319
|
-
once(type: 'pm:dragend', fn: PM.DragEndEventHandler): this;
|
|
320
|
-
off(type: 'pm:dragend', fn?: PM.DragEndEventHandler): this;
|
|
321
|
-
|
|
322
|
-
/** Fired when drag mode on a layer is enabled. */
|
|
323
|
-
on(type: 'pm:dragenable', fn: PM.DragEnableEventHandler): this;
|
|
324
|
-
once(type: 'pm:dragenable', fn: PM.DragEnableEventHandler): this;
|
|
325
|
-
off(type: 'pm:dragenable', fn?: PM.DragEnableEventHandler): this;
|
|
326
|
-
|
|
327
|
-
/** Fired when drag mode on a layer is disabled. */
|
|
328
|
-
on(type: 'pm:dragdisable', fn: PM.DragDisableEventHandler): this;
|
|
329
|
-
once(type: 'pm:dragdisable', fn: PM.DragDisableEventHandler): this;
|
|
330
|
-
off(type: 'pm:dragdisable', fn?: PM.DragDisableEventHandler): this;
|
|
331
|
-
|
|
332
|
-
/******************************************
|
|
333
|
-
*
|
|
334
|
-
* TODO: REMOVE MODE EVENTS ON MAP ONLY
|
|
335
|
-
*
|
|
336
|
-
********************************************/
|
|
337
|
-
|
|
338
|
-
/** Fired when Removal Mode is toggled. */
|
|
339
|
-
on(type: 'pm:globalremovalmodetoggled', fn: PM.GlobalRemovalModeToggledEventHandler): this;
|
|
340
|
-
once(type: 'pm:globalremovalmodetoggled', fn: PM.GlobalRemovalModeToggledEventHandler): this;
|
|
341
|
-
off(type: 'pm:globalremovalmodetoggled', fn?: PM.GlobalRemovalModeToggledEventHandler): this;
|
|
342
|
-
|
|
343
|
-
/******************************************
|
|
344
|
-
*
|
|
345
|
-
* TODO: CUT MODE EVENTS ON MAP ONLY
|
|
346
|
-
*
|
|
347
|
-
********************************************/
|
|
348
|
-
|
|
349
|
-
/** Fired when a layer is removed via Removal Mode. */
|
|
350
|
-
on(type: 'pm:globalcutmodetoggled', fn: PM.GlobalCutModeToggledEventHandler): this;
|
|
351
|
-
once(type: 'pm:globalcutmodetoggled', fn: PM.GlobalCutModeToggledEventHandler): this;
|
|
352
|
-
off(type: 'pm:globalcutmodetoggled', fn?: PM.GlobalCutModeToggledEventHandler): this;
|
|
353
|
-
|
|
354
|
-
/******************************************
|
|
355
|
-
*
|
|
356
|
-
* TODO: ROTATE MODE EVENTS ON MAP ONLY
|
|
357
|
-
*
|
|
358
|
-
********************************************/
|
|
359
|
-
|
|
360
|
-
/** Fired when Rotate Mode is toggled. */
|
|
361
|
-
on(type: 'pm:globalrotatemodetoggled', fn: PM.GlobalRotateModeToggledEventHandler): this;
|
|
362
|
-
once(type: 'pm:globalrotatemodetoggled', fn: PM.GlobalRotateModeToggledEventHandler): this;
|
|
363
|
-
off(type: 'pm:globalrotatemodetoggled', fn?: PM.GlobalRotateModeToggledEventHandler): this;
|
|
364
|
-
|
|
365
|
-
/******************************************
|
|
366
|
-
*
|
|
367
|
-
* TODO: TRANSLATION EVENTS ON MAP ONLY
|
|
368
|
-
*
|
|
369
|
-
********************************************/
|
|
370
|
-
|
|
371
|
-
/** Standard Leaflet event. Fired when any layer is removed. */
|
|
372
|
-
on(type: 'pm:langchange', fn: PM.LangChangeEventHandler): this;
|
|
373
|
-
once(type: 'pm:langchange', fn: PM.LangChangeEventHandler): this;
|
|
374
|
-
off(type: 'pm:langchange', fn?: PM.LangChangeEventHandler): this;
|
|
375
|
-
|
|
376
|
-
/******************************************
|
|
377
|
-
*
|
|
378
|
-
* TODO: CONTROL EVENTS ON MAP ONLY
|
|
379
|
-
*
|
|
380
|
-
********************************************/
|
|
381
|
-
|
|
382
|
-
/** Fired when a Toolbar button is clicked. */
|
|
383
|
-
on(type: 'pm:buttonclick', fn: PM.ButtonClickEventHandler): this;
|
|
384
|
-
once(type: 'pm:buttonclick', fn: PM.ButtonClickEventHandler): this;
|
|
385
|
-
off(type: 'pm:buttonclick', fn?: PM.ButtonClickEventHandler): this;
|
|
386
|
-
|
|
387
|
-
/** Fired when a Toolbar action is clicked. */
|
|
388
|
-
on(type: 'pm:actionclick', fn: PM.ActionClickEventHandler): this;
|
|
389
|
-
once(type: 'pm:actionclick', fn: PM.ActionClickEventHandler): this;
|
|
390
|
-
off(type: 'pm:actionclick', fn?: PM.ActionClickEventHandler): this;
|
|
391
|
-
|
|
392
|
-
/******************************************
|
|
393
|
-
*
|
|
394
|
-
* TODO: Keyboard EVENT ON MAP ONLY
|
|
395
|
-
*
|
|
396
|
-
********************************************/
|
|
397
|
-
|
|
398
|
-
/** Fired when `keydown` or `keyup` on the document is fired. */
|
|
399
|
-
on(type: 'pm:keyevent', fn: PM.KeyboardKeyEventHandler): this;
|
|
400
|
-
once(type: 'pm:keyevent', fn: PM.KeyboardKeyEventHandler): this;
|
|
401
|
-
off(type: 'pm:keyevent', fn?: PM.KeyboardKeyEventHandler): this;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
namespace PM {
|
|
405
|
-
export const version: string;
|
|
406
|
-
|
|
407
|
-
/** Supported shape names. 'ImageOverlay' is in Edit Mode only. Also accepts custom shape name. */
|
|
408
|
-
type SUPPORTED_SHAPES =
|
|
409
|
-
| 'Marker'
|
|
410
|
-
| 'Circle'
|
|
411
|
-
| 'Line'
|
|
412
|
-
| 'Rectangle'
|
|
413
|
-
| 'Polygon'
|
|
414
|
-
| 'Cut'
|
|
415
|
-
| 'CircleMarker'
|
|
416
|
-
| 'ImageOverlay'
|
|
417
|
-
| 'Text'
|
|
418
|
-
| string;
|
|
419
|
-
|
|
420
|
-
type SupportLocales =
|
|
421
|
-
| 'cz'
|
|
422
|
-
| 'da'
|
|
423
|
-
| 'de'
|
|
424
|
-
| 'el'
|
|
425
|
-
| 'en'
|
|
426
|
-
| 'es'
|
|
427
|
-
| 'fa'
|
|
428
|
-
| 'fi'
|
|
429
|
-
| 'fr'
|
|
430
|
-
| 'hu'
|
|
431
|
-
| 'id'
|
|
432
|
-
| 'it'
|
|
433
|
-
| 'ja'
|
|
434
|
-
| 'ko'
|
|
435
|
-
| 'nl'
|
|
436
|
-
| 'no'
|
|
437
|
-
| 'pl'
|
|
438
|
-
| 'pt_br'
|
|
439
|
-
| 'ro'
|
|
440
|
-
| 'ru'
|
|
441
|
-
| 'sv'
|
|
442
|
-
| 'tr'
|
|
443
|
-
| 'ua'
|
|
444
|
-
| 'zh'
|
|
445
|
-
| 'zh_tw';
|
|
446
|
-
|
|
447
|
-
/**
|
|
448
|
-
* Changes default registration of leaflet-geoman on leaflet layers.
|
|
449
|
-
*
|
|
450
|
-
* @param optIn - if true, a layers pmIgnore property has to be set to false to get initiated.
|
|
451
|
-
*/
|
|
452
|
-
function setOptIn(optIn: boolean): void;
|
|
453
|
-
|
|
454
|
-
/**
|
|
455
|
-
* Enable leaflet-geoman on an ignored layer.
|
|
456
|
-
*
|
|
457
|
-
* @param layer - re-reads layer.options.pmIgnore to initialize leaflet-geoman.
|
|
458
|
-
*/
|
|
459
|
-
function reInitLayer(layer: L.Layer): void;
|
|
460
|
-
|
|
461
|
-
/**
|
|
462
|
-
* PM map interface.
|
|
463
|
-
*/
|
|
464
|
-
interface PMMap extends PMDrawMap, PMEditMap, PMDragMap, PMRemoveMap, PMCutMap, PMRotateMap {
|
|
465
|
-
Toolbar: PMMapToolbar;
|
|
466
|
-
|
|
467
|
-
Keyboard: PMMapKeyboard;
|
|
468
|
-
|
|
469
|
-
/** Adds the Toolbar to the map. */
|
|
470
|
-
addControls(options?: ToolbarOptions): void;
|
|
471
|
-
|
|
472
|
-
/** Toggle the visiblity of the Toolbar. */
|
|
473
|
-
removeControls(): void;
|
|
474
|
-
|
|
475
|
-
/** Returns true if the Toolbar is visible on the map. */
|
|
476
|
-
controlsVisible(): boolean;
|
|
477
|
-
|
|
478
|
-
/** Toggle the visiblity of the Toolbar. */
|
|
479
|
-
toggleControls(): void;
|
|
480
|
-
|
|
481
|
-
setLang(
|
|
482
|
-
lang: SupportLocales,
|
|
483
|
-
customTranslations?: Translations,
|
|
484
|
-
fallbackLanguage?: string,
|
|
485
|
-
): void;
|
|
486
|
-
|
|
487
|
-
/** Set globalOptions and apply them. */
|
|
488
|
-
setGlobalOptions(options: GlobalOptions): void;
|
|
489
|
-
|
|
490
|
-
/** Apply the current globalOptions to all existing layers. */
|
|
491
|
-
applyGlobalOptions(): void;
|
|
492
|
-
|
|
493
|
-
/** Returns the globalOptions. */
|
|
494
|
-
getGlobalOptions(): GlobalOptions;
|
|
495
|
-
}
|
|
496
|
-
|
|
497
|
-
class Translations {
|
|
498
|
-
tooltips?: {
|
|
499
|
-
placeMarker?: string;
|
|
500
|
-
firstVertex?: string;
|
|
501
|
-
continueLine?: string;
|
|
502
|
-
finishLine?: string;
|
|
503
|
-
finishPoly?: string;
|
|
504
|
-
finishRect?: string;
|
|
505
|
-
startCircle?: string;
|
|
506
|
-
finishCircle?: string;
|
|
507
|
-
placeCircleMarker?: string;
|
|
508
|
-
placeText?: string;
|
|
509
|
-
};
|
|
510
|
-
|
|
511
|
-
actions?: {
|
|
512
|
-
finish?: string;
|
|
513
|
-
cancel?: string;
|
|
514
|
-
removeLastVertex?: string;
|
|
515
|
-
};
|
|
516
|
-
|
|
517
|
-
buttonTitles?: {
|
|
518
|
-
drawMarkerButton?: string;
|
|
519
|
-
drawPolyButton?: string;
|
|
520
|
-
drawLineButton?: string;
|
|
521
|
-
drawCircleButton?: string;
|
|
522
|
-
drawRectButton?: string;
|
|
523
|
-
editButton?: string;
|
|
524
|
-
dragButton?: string;
|
|
525
|
-
cutButton?: string;
|
|
526
|
-
deleteButton?: string;
|
|
527
|
-
drawCircleMarkerButton?: string;
|
|
528
|
-
snappingButton?: string;
|
|
529
|
-
pinningButton?: string;
|
|
530
|
-
rotateButton?: string;
|
|
531
|
-
drawTextButton?: string;
|
|
532
|
-
scaleButton?: string;
|
|
533
|
-
autoTracingButton?: string;
|
|
534
|
-
};
|
|
535
|
-
|
|
536
|
-
measurements?: {
|
|
537
|
-
totalLength?: string;
|
|
538
|
-
segmentLength?: string;
|
|
539
|
-
area?: string;
|
|
540
|
-
radius?: string;
|
|
541
|
-
perimeter?: string;
|
|
542
|
-
height?: string;
|
|
543
|
-
width?: string;
|
|
544
|
-
coordinates?: string;
|
|
545
|
-
coordinatesMarker?: string;
|
|
546
|
-
};
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
type ACTION_NAMES = 'cancel' | 'removeLastVertex' | 'finish' | 'finishMode';
|
|
550
|
-
|
|
551
|
-
class Action {
|
|
552
|
-
text: string;
|
|
553
|
-
onClick?: (e: any) => void;
|
|
554
|
-
}
|
|
555
|
-
|
|
556
|
-
type TOOLBAR_CONTROL_ORDER =
|
|
557
|
-
| 'drawMarker'
|
|
558
|
-
| 'drawCircleMarker'
|
|
559
|
-
| 'drawPolyline'
|
|
560
|
-
| 'drawRectangle'
|
|
561
|
-
| 'drawPolygon'
|
|
562
|
-
| 'drawCircle'
|
|
563
|
-
| 'editMode'
|
|
564
|
-
| 'dragMode'
|
|
565
|
-
| 'cutPolygon'
|
|
566
|
-
| 'removalMode'
|
|
567
|
-
| 'rotateMode'
|
|
568
|
-
| 'drawText'
|
|
569
|
-
| string;
|
|
570
|
-
|
|
571
|
-
interface PMMapToolbar {
|
|
572
|
-
/** Pass an array of button names to reorder the buttons in the Toolbar. */
|
|
573
|
-
changeControlOrder(order?: TOOLBAR_CONTROL_ORDER[]): void;
|
|
574
|
-
|
|
575
|
-
/** Receive the current order with. */
|
|
576
|
-
getControlOrder(): TOOLBAR_CONTROL_ORDER[];
|
|
577
|
-
|
|
578
|
-
/** The position of a block (draw, edit, custom, options⭐) in the Toolbar can be changed. If not set, the value from position of the Toolbar is taken. */
|
|
579
|
-
setBlockPosition(
|
|
580
|
-
block: 'draw' | 'edit' | 'custom' | 'options',
|
|
581
|
-
position: L.ControlPosition,
|
|
582
|
-
): void;
|
|
583
|
-
|
|
584
|
-
/** Returns a Object with the positions for all blocks */
|
|
585
|
-
getBlockPositions(): BlockPositions;
|
|
586
|
-
|
|
587
|
-
/** To add a custom Control to the Toolbar */
|
|
588
|
-
createCustomControl(options: CustomControlOptions): void;
|
|
589
|
-
|
|
590
|
-
/** Creates a copy of a draw Control. Returns the drawInstance and the control. */
|
|
591
|
-
copyDrawControl(copyInstance: string, options?: CustomControlOptions): void;
|
|
592
|
-
|
|
593
|
-
/** Change the actions of an existing button. */
|
|
594
|
-
changeActionsOfControl(name: string, actions: (ACTION_NAMES | Action)[]): void;
|
|
595
|
-
|
|
596
|
-
/** Disable button by control name */
|
|
597
|
-
setButtonDisabled(name: TOOLBAR_CONTROL_ORDER, state: boolean): void;
|
|
598
|
-
}
|
|
599
|
-
|
|
600
|
-
type KEYBOARD_EVENT_TYPE = 'current' | 'keydown' | 'keyup';
|
|
601
|
-
|
|
602
|
-
interface PMMapKeyboard {
|
|
603
|
-
/** Pass an array of button names to reorder the buttons in the Toolbar. */
|
|
604
|
-
getLastKeyEvent(type: KEYBOARD_EVENT_TYPE[]): KeyboardKeyEventHandler;
|
|
605
|
-
|
|
606
|
-
/** Returns the current pressed key. [KeyboardEvent.key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key). */
|
|
607
|
-
getPressedKey(): string;
|
|
608
|
-
|
|
609
|
-
/** Returns true if the `Shift` key is currently pressed. */
|
|
610
|
-
isShiftKeyPressed(): boolean;
|
|
611
|
-
|
|
612
|
-
/** Returns true if the `Alt` key is currently pressed. */
|
|
613
|
-
isAltKeyPressed(): boolean;
|
|
614
|
-
|
|
615
|
-
/** Returns true if the `Ctrl` key is currently pressed. */
|
|
616
|
-
isCtrlKeyPressed(): boolean;
|
|
617
|
-
|
|
618
|
-
/** Returns true if the `Meta` key is currently pressed. */
|
|
619
|
-
isMetaKeyPressed(): boolean;
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
interface Button {
|
|
623
|
-
/** Actions */
|
|
624
|
-
actions: (ACTION_NAMES | Action)[];
|
|
625
|
-
|
|
626
|
-
/** Function fired after clicking the control. */
|
|
627
|
-
afterClick: () => void;
|
|
628
|
-
|
|
629
|
-
/** CSS class with the Icon. */
|
|
630
|
-
className: string;
|
|
631
|
-
|
|
632
|
-
/** If true, other buttons will be disabled on click (default: true) */
|
|
633
|
-
disableOtherButtons: boolean;
|
|
634
|
-
|
|
635
|
-
/** Control can be toggled. */
|
|
636
|
-
doToggle: boolean;
|
|
637
|
-
|
|
638
|
-
/** Extending Class f. ex. Line, Polygon, ... L.PM.Draw.EXTENDINGCLASS */
|
|
639
|
-
jsClass: string;
|
|
640
|
-
|
|
641
|
-
/** Function fired when clicking the control. */
|
|
642
|
-
onClick: () => void;
|
|
643
|
-
|
|
644
|
-
position: L.ControlPosition;
|
|
645
|
-
|
|
646
|
-
/** Text showing when you hover the control. */
|
|
647
|
-
title: string;
|
|
648
|
-
|
|
649
|
-
/** Toggle state true -> enabled, false -> disabled (default: false) */
|
|
650
|
-
toggleStatus: boolean;
|
|
651
|
-
|
|
652
|
-
/** Block of the control. 'options' is ⭐ only. */
|
|
653
|
-
tool?: 'draw' | 'edit' | 'custom' | 'options';
|
|
654
|
-
}
|
|
655
|
-
|
|
656
|
-
interface CustomControlOptions {
|
|
657
|
-
/** Name of the control */
|
|
658
|
-
name: string;
|
|
659
|
-
|
|
660
|
-
/** Block of the control. 'options' is ⭐ only. */
|
|
661
|
-
block?: 'draw' | 'edit' | 'custom' | 'options';
|
|
662
|
-
|
|
663
|
-
/** Text showing when you hover the control. */
|
|
664
|
-
title?: string;
|
|
665
|
-
|
|
666
|
-
/** CSS class with the Icon. */
|
|
667
|
-
className?: string;
|
|
668
|
-
|
|
669
|
-
/** Function fired when clicking the control. */
|
|
670
|
-
onClick?: () => void;
|
|
671
|
-
|
|
672
|
-
/** Function fired after clicking the control. */
|
|
673
|
-
afterClick?: () => void;
|
|
674
|
-
|
|
675
|
-
/** Actions */
|
|
676
|
-
actions?: (ACTION_NAMES | Action)[];
|
|
677
|
-
|
|
678
|
-
/** Control can be toggled. */
|
|
679
|
-
toggle?: boolean;
|
|
680
|
-
|
|
681
|
-
/** Control is disabled. */
|
|
682
|
-
disabled?: boolean;
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
type PANE =
|
|
686
|
-
| 'mapPane'
|
|
687
|
-
| 'tilePane'
|
|
688
|
-
| 'overlayPane'
|
|
689
|
-
| 'shadowPane'
|
|
690
|
-
| 'markerPane'
|
|
691
|
-
| 'tooltipPane'
|
|
692
|
-
| 'popupPane'
|
|
693
|
-
| string;
|
|
694
|
-
|
|
695
|
-
interface GlobalOptions extends DrawModeOptions, EditModeOptions {
|
|
696
|
-
/** Add the created layers to a layergroup instead to the map. */
|
|
697
|
-
layerGroup?: L.Map | L.LayerGroup;
|
|
698
|
-
|
|
699
|
-
/** Prioritize the order of snapping. Default: ['Marker','CircleMarker','Circle','Line','Polygon','Rectangle']. */
|
|
700
|
-
snappingOrder?: SUPPORTED_SHAPES[];
|
|
701
|
-
|
|
702
|
-
/** Defines in which panes the layers and helper vertices are created. Default: { vertexPane: 'markerPane', layerPane: 'overlayPane', markerPane: 'markerPane' } */
|
|
703
|
-
panes?: { vertexPane?: PANE; layerPane?: PANE; markerPane?: PANE };
|
|
704
|
-
}
|
|
705
|
-
|
|
706
|
-
interface PMDrawMap {
|
|
707
|
-
/** Enable Draw Mode with the passed shape. */
|
|
708
|
-
enableDraw(shape: SUPPORTED_SHAPES, options?: DrawModeOptions): void;
|
|
709
|
-
|
|
710
|
-
/** Disable all drawing */
|
|
711
|
-
disableDraw(shape?: SUPPORTED_SHAPES): void;
|
|
712
|
-
|
|
713
|
-
/** Draw */
|
|
714
|
-
Draw: Draw;
|
|
715
|
-
|
|
716
|
-
/** Returns true if global Draw Mode is enabled. false when disabled. */
|
|
717
|
-
globalDrawModeEnabled(): boolean;
|
|
718
|
-
|
|
719
|
-
/** Customize the style of the drawn layer. Only for L.Path layers. Shapes can be excluded with a ignoreShapes array or merged with the current style with merge: true in optionsModifier. */
|
|
720
|
-
setPathOptions(
|
|
721
|
-
options: L.PathOptions,
|
|
722
|
-
optionsModifier?: { ignoreShapes?: SUPPORTED_SHAPES[]; merge?: boolean },
|
|
723
|
-
): void;
|
|
724
|
-
|
|
725
|
-
/** Returns all Geoman layers on the map as array. Pass true to get a L.FeatureGroup. */
|
|
726
|
-
getGeomanLayers(asFeatureGroup: true): L.FeatureGroup;
|
|
727
|
-
getGeomanLayers(asFeatureGroup?: false): L.Layer[];
|
|
728
|
-
|
|
729
|
-
/** Returns all Geoman draw layers on the map as array. Pass true to get a L.FeatureGroup. */
|
|
730
|
-
getGeomanDrawLayers(asFeatureGroup: true): L.FeatureGroup;
|
|
731
|
-
getGeomanDrawLayers(asFeatureGroup?: false): L.Layer[];
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
interface PMEditMap {
|
|
735
|
-
/** Enables edit mode. The passed options are preserved, even when the mode is enabled via the Toolbar */
|
|
736
|
-
enableGlobalEditMode(options?: EditModeOptions): void;
|
|
737
|
-
|
|
738
|
-
/** Disables global edit mode. */
|
|
739
|
-
disableGlobalEditMode(): void;
|
|
740
|
-
|
|
741
|
-
/** Toggles global edit mode. */
|
|
742
|
-
toggleGlobalEditMode(options?: EditModeOptions): void;
|
|
743
|
-
|
|
744
|
-
/** Returns true if global edit mode is enabled. false when disabled. */
|
|
745
|
-
globalEditModeEnabled(): boolean;
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
interface PMDragMap {
|
|
749
|
-
/** Enables global drag mode. */
|
|
750
|
-
enableGlobalDragMode(): void;
|
|
751
|
-
|
|
752
|
-
/** Disables global drag mode. */
|
|
753
|
-
disableGlobalDragMode(): void;
|
|
754
|
-
|
|
755
|
-
/** Toggles global drag mode. */
|
|
756
|
-
toggleGlobalDragMode(): void;
|
|
757
|
-
|
|
758
|
-
/** Returns true if global drag mode is enabled. false when disabled. */
|
|
759
|
-
globalDragModeEnabled(): boolean;
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
interface PMRemoveMap {
|
|
763
|
-
/** Enables global removal mode. */
|
|
764
|
-
enableGlobalRemovalMode(): void;
|
|
765
|
-
|
|
766
|
-
/** Disables global removal mode. */
|
|
767
|
-
disableGlobalRemovalMode(): void;
|
|
768
|
-
|
|
769
|
-
/** Toggles global removal mode. */
|
|
770
|
-
toggleGlobalRemovalMode(): void;
|
|
771
|
-
|
|
772
|
-
/** Returns true if global removal mode is enabled. false when disabled. */
|
|
773
|
-
globalRemovalModeEnabled(): boolean;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
interface PMCutMap {
|
|
777
|
-
/** Enables global cut mode. */
|
|
778
|
-
enableGlobalCutMode(options?: CutModeOptions): void;
|
|
779
|
-
|
|
780
|
-
/** Disables global cut mode. */
|
|
781
|
-
disableGlobalCutMode(): void;
|
|
782
|
-
|
|
783
|
-
/** Toggles global cut mode. */
|
|
784
|
-
toggleGlobalCutMode(options?: CutModeOptions): void;
|
|
785
|
-
|
|
786
|
-
/** Returns true if global cut mode is enabled. false when disabled. */
|
|
787
|
-
globalCutModeEnabled(): boolean;
|
|
788
|
-
}
|
|
789
|
-
|
|
790
|
-
interface PMRotateMap {
|
|
791
|
-
/** Enables global rotate mode. */
|
|
792
|
-
enableGlobalRotateMode(): void;
|
|
793
|
-
|
|
794
|
-
/** Disables global rotate mode. */
|
|
795
|
-
disableGlobalRotateMode(): void;
|
|
796
|
-
|
|
797
|
-
/** Toggles global rotate mode. */
|
|
798
|
-
toggleGlobalRotateMode(): void;
|
|
799
|
-
|
|
800
|
-
/** Returns true if global rotate mode is enabled. false when disabled. */
|
|
801
|
-
globalRotateModeEnabled(): boolean;
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
interface PMRotateLayer {
|
|
805
|
-
/** Enables rotate mode on the layer. */
|
|
806
|
-
enableRotate(): void;
|
|
807
|
-
|
|
808
|
-
/** Disables rotate mode on the layer. */
|
|
809
|
-
disableRotate(): void;
|
|
810
|
-
|
|
811
|
-
/** Returns if rotate mode is enabled for the layer. */
|
|
812
|
-
rotateEnabled(): boolean;
|
|
813
|
-
|
|
814
|
-
/** Rotates the layer by x degrees. */
|
|
815
|
-
rotateLayer(degrees: number): void;
|
|
816
|
-
|
|
817
|
-
/** Rotates the layer to x degrees. */
|
|
818
|
-
rotateLayerToAngle(degrees: number): void;
|
|
819
|
-
|
|
820
|
-
/** Returns the angle of the layer in degrees. */
|
|
821
|
-
getAngle(): number;
|
|
822
|
-
|
|
823
|
-
/** Set the initial angle of the layer in degrees. */
|
|
824
|
-
setInitAngle(degrees: number): void;
|
|
825
|
-
|
|
826
|
-
/** Returns the center of rotation. */
|
|
827
|
-
getRotationCenter(): L.LatLng;
|
|
828
|
-
|
|
829
|
-
/** Change the center of rotation. Pass null to use the shape's default center. */
|
|
830
|
-
setRotationCenter(center: L.LatLng | null): void;
|
|
831
|
-
}
|
|
832
|
-
|
|
833
|
-
interface Draw {
|
|
834
|
-
/** Array of available shapes. */
|
|
835
|
-
getShapes(): SUPPORTED_SHAPES[];
|
|
836
|
-
|
|
837
|
-
/** Returns the active shape. */
|
|
838
|
-
getActiveShape(): SUPPORTED_SHAPES;
|
|
839
|
-
|
|
840
|
-
/** Set path options */
|
|
841
|
-
setPathOptions(options: L.PathOptions): void;
|
|
842
|
-
|
|
843
|
-
/** Set options */
|
|
844
|
-
setOptions(options: DrawModeOptions): void;
|
|
845
|
-
|
|
846
|
-
/** Get options */
|
|
847
|
-
getOptions(): DrawModeOptions;
|
|
848
|
-
}
|
|
849
|
-
|
|
850
|
-
interface CutModeOptions {
|
|
851
|
-
allowSelfIntersection?: boolean;
|
|
852
|
-
}
|
|
853
|
-
|
|
854
|
-
type VertexValidationHandler = (e: { layer: L.Layer; marker: L.Marker; event: any }) => boolean;
|
|
855
|
-
|
|
856
|
-
interface EditModeOptions {
|
|
857
|
-
/** Enable snapping to other layers vertices for precision drawing. Can be disabled by holding the ALT key (default:true). */
|
|
858
|
-
snappable?: boolean;
|
|
859
|
-
|
|
860
|
-
/** The distance to another vertex when a snap should happen (default:20). */
|
|
861
|
-
snapDistance?: number;
|
|
862
|
-
|
|
863
|
-
/** Allow self intersections (default:true). */
|
|
864
|
-
allowSelfIntersection?: boolean;
|
|
865
|
-
|
|
866
|
-
/** Allow self intersections (default:true). */
|
|
867
|
-
allowSelfIntersectionEdit?: boolean;
|
|
868
|
-
|
|
869
|
-
/** Disable the removal of markers via right click / vertices via removeVertexOn. (default:false). */
|
|
870
|
-
preventMarkerRemoval?: boolean;
|
|
871
|
-
|
|
872
|
-
/** If true, vertex removal that cause a layer to fall below their minimum required vertices will remove the entire layer. If false, these vertices can't be removed. Minimum vertices are 2 for Lines and 3 for Polygons (default:true). */
|
|
873
|
-
removeLayerBelowMinVertexCount?: boolean;
|
|
874
|
-
|
|
875
|
-
/** Defines which layers should dragged with this layer together. true syncs all layers in the same LayerGroup(s) or you pass an `Array` of layers to sync. (default:false). */
|
|
876
|
-
syncLayersOnDrag?: L.Layer[] | boolean;
|
|
877
|
-
|
|
878
|
-
/** Edit-Mode for the layer can disabled (`pm.enable()`). (default:true). */
|
|
879
|
-
allowEditing?: boolean;
|
|
880
|
-
|
|
881
|
-
/** Removing can be disabled for the layer. (default:true). */
|
|
882
|
-
allowRemoval?: boolean;
|
|
883
|
-
|
|
884
|
-
/** Layer can be prevented from cutting. (default:true). */
|
|
885
|
-
allowCutting?: boolean;
|
|
886
|
-
|
|
887
|
-
/** Layer can be prevented from rotation. (default:true). */
|
|
888
|
-
allowRotation?: boolean;
|
|
889
|
-
|
|
890
|
-
/** Dragging can be disabled for the layer. (default:true). */
|
|
891
|
-
draggable?: boolean;
|
|
892
|
-
|
|
893
|
-
/** Leaflet layer event to add a vertex to a Line or Polygon, like dblclick. (default:click). */
|
|
894
|
-
addVertexOn?: 'click' | 'dblclick' | 'mousedown' | 'mouseover' | 'mouseout' | 'contextmenu';
|
|
895
|
-
|
|
896
|
-
/** A function for validation if a vertex (of a Line / Polygon) is allowed to add. It passes a object with `[layer, marker, event}`. For example to check if the layer has a certain property or if the `Ctrl` key is pressed. (default:undefined). */
|
|
897
|
-
addVertexValidation?: undefined | VertexValidationHandler;
|
|
898
|
-
|
|
899
|
-
/** Leaflet layer event to remove a vertex from a Line or Polygon, like dblclick. (default:contextmenu). */
|
|
900
|
-
removeVertexOn?:
|
|
901
|
-
| 'click'
|
|
902
|
-
| 'dblclick'
|
|
903
|
-
| 'mousedown'
|
|
904
|
-
| 'mouseover'
|
|
905
|
-
| 'mouseout'
|
|
906
|
-
| 'contextmenu';
|
|
907
|
-
|
|
908
|
-
/** A function for validation if a vertex (of a Line / Polygon) is allowed to remove. It passes a object with `[layer, marker, event}`. For example to check if the layer has a certain property or if the `Ctrl` key is pressed. */
|
|
909
|
-
removeVertexValidation?: undefined | VertexValidationHandler;
|
|
910
|
-
|
|
911
|
-
/** A function for validation if a vertex / helper-marker is allowed to move / drag. It passes a object with `[layer, marker, event}`. For example to check if the layer has a certain property or if the `Ctrl` key is pressed. */
|
|
912
|
-
moveVertexValidation?: undefined | VertexValidationHandler;
|
|
913
|
-
|
|
914
|
-
/** Shows only n markers closest to the cursor. Use -1 for no limit (default:-1). */
|
|
915
|
-
limitMarkersToCount?: number;
|
|
916
|
-
|
|
917
|
-
/** Shows markers when under the given zoom level ⭐ */
|
|
918
|
-
limitMarkersToZoom?: number;
|
|
919
|
-
|
|
920
|
-
/** Shows only markers in the viewport ⭐ */
|
|
921
|
-
limitMarkersToViewport?: boolean;
|
|
922
|
-
|
|
923
|
-
/** Shows markers only after the layer was clicked ⭐ */
|
|
924
|
-
limitMarkersToClick?: boolean;
|
|
925
|
-
|
|
926
|
-
/** Pin shared vertices/markers together during edit ⭐ */
|
|
927
|
-
pinning?: boolean;
|
|
928
|
-
|
|
929
|
-
/** Hide the middle Markers in edit mode from Polyline and Polygon. */
|
|
930
|
-
hideMiddleMarkers?: boolean;
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
interface TextOptions {
|
|
934
|
-
/** Predefined text for Text-Layer. */
|
|
935
|
-
text?: string;
|
|
936
|
-
|
|
937
|
-
/** Directly after placing the Text-Layer text editing is activated. */
|
|
938
|
-
focusAfterDraw?: boolean;
|
|
939
|
-
|
|
940
|
-
/** The text layer is removed if no text is written. */
|
|
941
|
-
removeIfEmpty?: boolean;
|
|
942
|
-
|
|
943
|
-
/** Custom CSS Classes for Text-Layer. Separated by a space. */
|
|
944
|
-
className?: string;
|
|
945
|
-
}
|
|
946
|
-
|
|
947
|
-
interface DrawModeOptions {
|
|
948
|
-
/** Enable snapping to other layers vertices for precision drawing. Can be disabled by holding the ALT key (default:true). */
|
|
949
|
-
snappable?: boolean;
|
|
950
|
-
|
|
951
|
-
/** The distance to another vertex when a snap should happen (default:20). */
|
|
952
|
-
snapDistance?: number;
|
|
953
|
-
|
|
954
|
-
/** Allow snapping in the middle of two vertices (middleMarker)(default:false). */
|
|
955
|
-
snapMiddle?: boolean;
|
|
956
|
-
|
|
957
|
-
/** Allow snapping between two vertices. (default: true)*/
|
|
958
|
-
snapSegment?: boolean;
|
|
959
|
-
|
|
960
|
-
/** Require the last point of a shape to be snapped. (default: false). */
|
|
961
|
-
requireSnapToFinish?: boolean;
|
|
962
|
-
|
|
963
|
-
/** Show helpful tooltips for your user (default:true). */
|
|
964
|
-
tooltips?: boolean;
|
|
965
|
-
|
|
966
|
-
/** Allow self intersections (default:true). */
|
|
967
|
-
allowSelfIntersection?: boolean;
|
|
968
|
-
|
|
969
|
-
/** Leaflet path options for the lines between drawn vertices/markers. (default:{color:'red'}). */
|
|
970
|
-
templineStyle?: L.CircleMarkerOptions;
|
|
971
|
-
|
|
972
|
-
/** Leaflet path options for the helper line between last drawn vertex and the cursor. (default:{color:'red',dashArray:[5,5]}). */
|
|
973
|
-
hintlineStyle?: L.PathOptions;
|
|
974
|
-
|
|
975
|
-
/** Leaflet path options for the drawn layer (Only for L.Path layers). (default:null). */
|
|
976
|
-
pathOptions?: L.PathOptions;
|
|
977
|
-
|
|
978
|
-
/** Leaflet marker options (only for drawing markers). (default:{draggable:true}). */
|
|
979
|
-
markerStyle?: L.MarkerOptions;
|
|
980
|
-
|
|
981
|
-
/** Show a marker at the cursor (default:true). */
|
|
982
|
-
cursorMarker?: boolean;
|
|
983
|
-
|
|
984
|
-
/** Leaflet layer event to finish the drawn shape (default:null). */
|
|
985
|
-
finishOn?:
|
|
986
|
-
| null
|
|
987
|
-
| 'click'
|
|
988
|
-
| 'dblclick'
|
|
989
|
-
| 'mousedown'
|
|
990
|
-
| 'mouseover'
|
|
991
|
-
| 'mouseout'
|
|
992
|
-
| 'contextmenu'
|
|
993
|
-
| 'snap';
|
|
994
|
-
|
|
995
|
-
/** Hide the middle Markers in edit mode from Polyline and Polygon. (default:false). */
|
|
996
|
-
hideMiddleMarkers?: boolean;
|
|
997
|
-
|
|
998
|
-
/** Set the min radius of a Circle. (default:null). */
|
|
999
|
-
minRadiusCircle?: number;
|
|
1000
|
-
|
|
1001
|
-
/** Set the max radius of a Circle. (default:null). */
|
|
1002
|
-
maxRadiusCircle?: number;
|
|
1003
|
-
|
|
1004
|
-
/** Set the min radius of a CircleMarker. (default:null). */
|
|
1005
|
-
minRadiusCircleMarker?: number;
|
|
1006
|
-
|
|
1007
|
-
/** Set the max radius of a CircleMarker. (default:null). */
|
|
1008
|
-
maxRadiusCircleMarker?: number;
|
|
1009
|
-
|
|
1010
|
-
/**
|
|
1011
|
-
* @deprecated Use resizeableCircleMarker instead
|
|
1012
|
-
*/
|
|
1013
|
-
editable?: boolean;
|
|
1014
|
-
|
|
1015
|
-
/** Enables radius editing while drawing a Circle (default:true). */
|
|
1016
|
-
resizableCircle?: boolean;
|
|
1017
|
-
|
|
1018
|
-
/** Enables radius editing while drawing a CircleMarker (default:false). */
|
|
1019
|
-
resizeableCircleMarker?: boolean;
|
|
1020
|
-
|
|
1021
|
-
/** Markers and CircleMarkers are editable during the draw-session (you can drag them around immediately after drawing them) (default:true). */
|
|
1022
|
-
markerEditable?: boolean;
|
|
1023
|
-
|
|
1024
|
-
/** Draw-Mode stays enabled after finishing a layer to immediately draw the next layer. Defaults to true for Markers and CircleMarkers and false for all other layers. */
|
|
1025
|
-
continueDrawing?: boolean;
|
|
1026
|
-
|
|
1027
|
-
/** Angel of rectangle. */
|
|
1028
|
-
rectangleAngle?: number;
|
|
1029
|
-
|
|
1030
|
-
/** Cut-Mode: Only the passed layers can be cut. Cutted layers are removed from the Array until no layers are left anymore and cutting is working on all layers again. (Default: []) */
|
|
1031
|
-
layersToCut?: L.Layer[];
|
|
1032
|
-
|
|
1033
|
-
textOptions?: TextOptions;
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
|
-
/**
|
|
1037
|
-
* PM toolbar options.
|
|
1038
|
-
*/
|
|
1039
|
-
interface ToolbarOptions {
|
|
1040
|
-
/** Toolbar position. */
|
|
1041
|
-
position?: L.ControlPosition;
|
|
1042
|
-
|
|
1043
|
-
/** The position of each block can be customized. If not set, the value from position is taken. */
|
|
1044
|
-
positions?: BlockPositions;
|
|
1045
|
-
|
|
1046
|
-
/** Adds button to draw Markers (default:true) */
|
|
1047
|
-
drawMarker?: boolean;
|
|
1048
|
-
|
|
1049
|
-
/** Adds button to draw CircleMarkers (default:true) */
|
|
1050
|
-
drawCircleMarker?: boolean;
|
|
1051
|
-
|
|
1052
|
-
/** Adds button to draw Line (default:true) */
|
|
1053
|
-
drawPolyline?: boolean;
|
|
1054
|
-
|
|
1055
|
-
/** Adds button to draw Rectangle (default:true) */
|
|
1056
|
-
drawRectangle?: boolean;
|
|
1057
|
-
|
|
1058
|
-
/** Adds button to draw Polygon (default:true) */
|
|
1059
|
-
drawPolygon?: boolean;
|
|
1060
|
-
|
|
1061
|
-
/** Adds button to draw Text (default:true) */
|
|
1062
|
-
drawText?: boolean;
|
|
1063
|
-
|
|
1064
|
-
/** Adds button to draw Circle (default:true) */
|
|
1065
|
-
drawCircle?: boolean;
|
|
1066
|
-
|
|
1067
|
-
/** Adds button to toggle edit mode for all layers (default:true) */
|
|
1068
|
-
editMode?: boolean;
|
|
1069
|
-
|
|
1070
|
-
/** Adds button to toggle drag mode for all layers (default:true) */
|
|
1071
|
-
dragMode?: boolean;
|
|
1072
|
-
|
|
1073
|
-
/** Adds button to cut a hole in a polygon or line (default:true) */
|
|
1074
|
-
cutPolygon?: boolean;
|
|
1075
|
-
|
|
1076
|
-
/** Adds a button to remove layers (default:true) */
|
|
1077
|
-
removalMode?: boolean;
|
|
1078
|
-
|
|
1079
|
-
/** Adds a button to rotate layers (default:true) */
|
|
1080
|
-
rotateMode?: boolean;
|
|
1081
|
-
|
|
1082
|
-
/** All buttons will be displayed as one block Customize Controls (default:false) */
|
|
1083
|
-
oneBlock?: boolean;
|
|
1084
|
-
|
|
1085
|
-
/** Shows all draw buttons / buttons in the draw block (default:true) */
|
|
1086
|
-
drawControls?: boolean;
|
|
1087
|
-
|
|
1088
|
-
/** Shows all edit buttons / buttons in the edit block (default:true) */
|
|
1089
|
-
editControls?: boolean;
|
|
1090
|
-
|
|
1091
|
-
/** Shows all buttons in the custom block (default:true) */
|
|
1092
|
-
customControls?: boolean;
|
|
1093
|
-
|
|
1094
|
-
/** Shows all options buttons / buttons in the option block ⭐ */
|
|
1095
|
-
optionsControls?: boolean;
|
|
1096
|
-
|
|
1097
|
-
/** Adds a button to toggle the Pinning Option ⭐ */
|
|
1098
|
-
pinningOption?: boolean;
|
|
1099
|
-
|
|
1100
|
-
/** Adds a button to toggle the Snapping Option ⭐ */
|
|
1101
|
-
snappingOption?: boolean;
|
|
1102
|
-
|
|
1103
|
-
/** Adds custom button (default:true) */
|
|
1104
|
-
// The type of custom buttons are always boolean but TS needs the other types defined too.
|
|
1105
|
-
[key: string]: L.ControlPosition | BlockPositions | boolean | undefined;
|
|
1106
|
-
}
|
|
1107
|
-
|
|
1108
|
-
/** the position of each block. */
|
|
1109
|
-
interface BlockPositions {
|
|
1110
|
-
/** Draw control position (default:''). '' also refers to this position. */
|
|
1111
|
-
draw?: L.ControlPosition;
|
|
1112
|
-
|
|
1113
|
-
/** Edit control position (default:''). */
|
|
1114
|
-
edit?: L.ControlPosition;
|
|
1115
|
-
|
|
1116
|
-
/** Custom control position (default:''). */
|
|
1117
|
-
custom?: L.ControlPosition;
|
|
1118
|
-
|
|
1119
|
-
/** Options control position (default:'') ⭐ */
|
|
1120
|
-
options?: L.ControlPosition;
|
|
1121
|
-
}
|
|
1122
|
-
|
|
1123
|
-
interface PMEditLayer extends PMEditTextLayer {
|
|
1124
|
-
/** Enables edit mode. The passed options are preserved, even when the mode is enabled via the Toolbar */
|
|
1125
|
-
enable(options?: EditModeOptions): void;
|
|
1126
|
-
|
|
1127
|
-
/** Sets layer options */
|
|
1128
|
-
setOptions(options?: EditModeOptions): void;
|
|
1129
|
-
|
|
1130
|
-
/** Gets layer options */
|
|
1131
|
-
getOptions(): EditModeOptions;
|
|
1132
|
-
|
|
1133
|
-
/** Disables edit mode. */
|
|
1134
|
-
disable(): void;
|
|
1135
|
-
|
|
1136
|
-
/** Toggles edit mode. Passed options are preserved. */
|
|
1137
|
-
toggleEdit(options?: EditModeOptions): void;
|
|
1138
|
-
|
|
1139
|
-
/** Returns true if edit mode is enabled. false when disabled. */
|
|
1140
|
-
enabled(): boolean;
|
|
1141
|
-
|
|
1142
|
-
/** Returns true if Line or Polygon has a self intersection. */
|
|
1143
|
-
hasSelfIntersection(): boolean;
|
|
1144
|
-
|
|
1145
|
-
/** Removes the layer with the same checks as GlobalRemovalMode. */
|
|
1146
|
-
remove(): void;
|
|
1147
|
-
}
|
|
1148
|
-
|
|
1149
|
-
interface PMEditTextLayer {
|
|
1150
|
-
/** Activate text editing of Text-Layer. */
|
|
1151
|
-
focus(): void;
|
|
1152
|
-
|
|
1153
|
-
/** Deactivate text editing of Text-Layer. */
|
|
1154
|
-
blur(): void;
|
|
1155
|
-
|
|
1156
|
-
/** Is text editing active on Text-Layer. */
|
|
1157
|
-
hasFocus(): boolean;
|
|
1158
|
-
|
|
1159
|
-
/** Returns the `<textarea>` DOM element of Text-Layer. */
|
|
1160
|
-
getElement(): HTMLElement;
|
|
1161
|
-
|
|
1162
|
-
/** Set text on Text-Layer. */
|
|
1163
|
-
setText(text: string): void;
|
|
1164
|
-
|
|
1165
|
-
/** Returns the text of Text-Layer. */
|
|
1166
|
-
getText(): string;
|
|
1167
|
-
}
|
|
1168
|
-
|
|
1169
|
-
interface PMDragLayer {
|
|
1170
|
-
/** Enables dragging for the layer. */
|
|
1171
|
-
enableLayerDrag(): void;
|
|
1172
|
-
|
|
1173
|
-
/** Disables dragging for the layer. */
|
|
1174
|
-
disableLayerDrag(): void;
|
|
1175
|
-
|
|
1176
|
-
/** Returns if the layer is currently dragging. */
|
|
1177
|
-
dragging(): boolean;
|
|
1178
|
-
|
|
1179
|
-
/** Returns if drag mode is enabled for the layer. */
|
|
1180
|
-
layerDragEnabled(): boolean;
|
|
1181
|
-
}
|
|
1182
|
-
|
|
1183
|
-
interface PMLayer extends PMRotateLayer, PMEditLayer, PMDragLayer {
|
|
1184
|
-
/** Get shape of the layer. */
|
|
1185
|
-
getShape(): SUPPORTED_SHAPES;
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
interface PMLayerGroup {
|
|
1189
|
-
/** Enables edit mode for all child layers. The passed options are preserved, even when the mode is enabled via the Toolbar */
|
|
1190
|
-
enable(options?: EditModeOptions): void;
|
|
1191
|
-
|
|
1192
|
-
/** Disable edit mode for all child layers.*/
|
|
1193
|
-
disable(): void;
|
|
1194
|
-
|
|
1195
|
-
/** Returns if minimum one layer is enabled. */
|
|
1196
|
-
enabled(): boolean;
|
|
1197
|
-
|
|
1198
|
-
/** Toggle enable / disable on all layers. */
|
|
1199
|
-
toggleEdit(options?: EditModeOptions): void;
|
|
1200
|
-
|
|
1201
|
-
/** Returns the layers of the LayerGroup. `deep=true` return also the children of LayerGroup children. `filterGeoman=true` filter out layers that don't have Leaflet-Geoman or temporary stuff. `filterGroupsOut=true` does not return the LayerGroup layers self. (Default: `deep=false`,`filterGeoman=true`, `filterGroupsOut=true` ) */
|
|
1202
|
-
getLayers(deep?: boolean, filterGeoman?: boolean, filterGroupsOut?: boolean): L.Layer[];
|
|
1203
|
-
|
|
1204
|
-
/** Apply Leaflet-Geoman options to all children. The passed options are preserved, even when the mode is enabled via the Toolbar */
|
|
1205
|
-
setOptions(options?: EditModeOptions): void;
|
|
1206
|
-
|
|
1207
|
-
/** Returns the options of the LayerGroup. */
|
|
1208
|
-
getOptions(): EditModeOptions;
|
|
1209
|
-
|
|
1210
|
-
/** Returns if currently a layer in the LayerGroup is dragging. */
|
|
1211
|
-
dragging(): boolean;
|
|
1212
|
-
}
|
|
1213
|
-
|
|
1214
|
-
namespace Utils {
|
|
1215
|
-
/** Returns the translation of the passed path. path = json-string f.ex. tooltips.placeMarker */
|
|
1216
|
-
function getTranslation(path: string): string;
|
|
1217
|
-
|
|
1218
|
-
/** Returns the middle LatLng between two LatLngs */
|
|
1219
|
-
function calcMiddleLatLng(map: L.Map, latlng1: L.LatLng, latlng2: L.LatLng): L.LatLng;
|
|
1220
|
-
|
|
1221
|
-
/** Returns all layers that are available for Geoman */
|
|
1222
|
-
function findLayers(map: L.Map): L.Layer[];
|
|
1223
|
-
|
|
1224
|
-
/** Converts a circle into a polygon with default 60 sides. For CRS.Simple maps `withBearing` needs to be false */
|
|
1225
|
-
function circleToPolygon(circle: L.Circle, sides?: number, withBearing?: boolean): L.Polygon;
|
|
1226
|
-
|
|
1227
|
-
/** Converts a px-radius (CircleMarker) to meter-radius (Circle). The center LatLng is needed because the earth has different projections on different places. **/
|
|
1228
|
-
function pxRadiusToMeterRadius(radiusInPx: number, map: L.Map, center: L.LatLng): number;
|
|
1229
|
-
}
|
|
1230
|
-
|
|
1231
|
-
/**
|
|
1232
|
-
* DRAW MODE MAP EVENT HANDLERS
|
|
1233
|
-
*/
|
|
1234
|
-
|
|
1235
|
-
export type GlobalDrawModeToggledEventHandler = (event: {
|
|
1236
|
-
enabled: boolean;
|
|
1237
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1238
|
-
map: L.Map;
|
|
1239
|
-
}) => void;
|
|
1240
|
-
export type DrawStartEventHandler = (e: {
|
|
1241
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1242
|
-
workingLayer: L.Layer;
|
|
1243
|
-
}) => void;
|
|
1244
|
-
export type DrawEndEventHandler = (e: { shape: PM.SUPPORTED_SHAPES }) => void;
|
|
1245
|
-
export type CreateEventHandler = (e: { shape: PM.SUPPORTED_SHAPES; layer: L.Layer }) => void;
|
|
1246
|
-
|
|
1247
|
-
/**
|
|
1248
|
-
* DRAW MODE LAYER EVENT HANDLERS
|
|
1249
|
-
*/
|
|
1250
|
-
|
|
1251
|
-
export type VertexAddedEventHandler = (e: {
|
|
1252
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1253
|
-
workingLayer: L.Layer;
|
|
1254
|
-
marker: L.Marker;
|
|
1255
|
-
latlng: L.LatLng;
|
|
1256
|
-
}) => void;
|
|
1257
|
-
export type SnapEventHandler = (e: {
|
|
1258
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1259
|
-
distance: number;
|
|
1260
|
-
layer: L.Layer;
|
|
1261
|
-
workingLayer: L.Layer;
|
|
1262
|
-
marker: L.Marker;
|
|
1263
|
-
layerInteractedWith: L.Layer;
|
|
1264
|
-
segement: any;
|
|
1265
|
-
snapLatLng: L.LatLng;
|
|
1266
|
-
}) => void;
|
|
1267
|
-
export type CenterPlacedEventHandler = (e: {
|
|
1268
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1269
|
-
workingLayer: L.Layer;
|
|
1270
|
-
latlng: L.LatLng;
|
|
1271
|
-
}) => void;
|
|
1272
|
-
|
|
1273
|
-
/**
|
|
1274
|
-
* EDIT MODE LAYER EVENT HANDLERS
|
|
1275
|
-
*/
|
|
1276
|
-
|
|
1277
|
-
export type EditEventHandler = (e: { shape: PM.SUPPORTED_SHAPES; layer: L.Layer }) => void;
|
|
1278
|
-
export type UpdateEventHandler = (e: { shape: PM.SUPPORTED_SHAPES; layer: L.Layer }) => void;
|
|
1279
|
-
export type EnableEventHandler = (e: { shape: PM.SUPPORTED_SHAPES; layer: L.Layer }) => void;
|
|
1280
|
-
export type DisableEventHandler = (e: { shape: PM.SUPPORTED_SHAPES; layer: L.Layer }) => void;
|
|
1281
|
-
export type VertexAddedEventHandler2 = (e: {
|
|
1282
|
-
layer: L.Layer;
|
|
1283
|
-
indexPath: number;
|
|
1284
|
-
latlng: L.LatLng;
|
|
1285
|
-
marker: L.Marker;
|
|
1286
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1287
|
-
}) => void;
|
|
1288
|
-
export type VertexRemovedEventHandler = (e: {
|
|
1289
|
-
layer: L.Layer;
|
|
1290
|
-
indexPath: number;
|
|
1291
|
-
marker: L.Marker;
|
|
1292
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1293
|
-
}) => void;
|
|
1294
|
-
export type VertexClickEventHandler = (e: {
|
|
1295
|
-
layer: L.Layer;
|
|
1296
|
-
indexPath: number;
|
|
1297
|
-
markerEvent: any;
|
|
1298
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1299
|
-
}) => void;
|
|
1300
|
-
export type MarkerDragStartEventHandler = (e: {
|
|
1301
|
-
layer: L.Layer;
|
|
1302
|
-
indexPath: number;
|
|
1303
|
-
markerEvent: any;
|
|
1304
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1305
|
-
}) => void;
|
|
1306
|
-
export type MarkerDragEventHandler = (e: {
|
|
1307
|
-
layer: L.Layer;
|
|
1308
|
-
indexPath: number;
|
|
1309
|
-
markerEvent: any;
|
|
1310
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1311
|
-
}) => void;
|
|
1312
|
-
export type MarkerDragEndEventHandler = (e: {
|
|
1313
|
-
layer: L.Layer;
|
|
1314
|
-
indexPath: number;
|
|
1315
|
-
markerEvent: any;
|
|
1316
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1317
|
-
intersectionRest: boolean;
|
|
1318
|
-
}) => void;
|
|
1319
|
-
export type LayerResetEventHandler = (e: {
|
|
1320
|
-
layer: L.Layer;
|
|
1321
|
-
indexPath: number;
|
|
1322
|
-
markerEvent: any;
|
|
1323
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1324
|
-
}) => void;
|
|
1325
|
-
export type IntersectEventHandler = (e: {
|
|
1326
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1327
|
-
layer: L.Layer;
|
|
1328
|
-
intersection: L.LatLng;
|
|
1329
|
-
}) => void;
|
|
1330
|
-
export type ChangeEventHandler = (e: {
|
|
1331
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1332
|
-
layer: L.Layer;
|
|
1333
|
-
latlngs: L.LatLng | L.LatLng[];
|
|
1334
|
-
}) => void;
|
|
1335
|
-
export type TextChangeEventHandler = (e: {
|
|
1336
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1337
|
-
layer: L.Layer;
|
|
1338
|
-
text: string;
|
|
1339
|
-
}) => void;
|
|
1340
|
-
export type TextFocusEventHandler = (e: { shape: PM.SUPPORTED_SHAPES; layer: L.Layer }) => void;
|
|
1341
|
-
export type TextBlurEventHandler = (e: { shape: PM.SUPPORTED_SHAPES; layer: L.Layer }) => void;
|
|
1342
|
-
|
|
1343
|
-
/**
|
|
1344
|
-
* EDIT MODE MAP EVENT HANDLERS
|
|
1345
|
-
*/
|
|
1346
|
-
export type GlobalEditModeToggledEventHandler = (event: {
|
|
1347
|
-
enabled: boolean;
|
|
1348
|
-
map: L.Map;
|
|
1349
|
-
}) => void;
|
|
1350
|
-
|
|
1351
|
-
/**
|
|
1352
|
-
* DRAG MODE MAP EVENT HANDLERS
|
|
1353
|
-
*/
|
|
1354
|
-
export type GlobalDragModeToggledEventHandler = (event: {
|
|
1355
|
-
enabled: boolean;
|
|
1356
|
-
map: L.Map;
|
|
1357
|
-
}) => void;
|
|
1358
|
-
|
|
1359
|
-
/**
|
|
1360
|
-
* DRAG MODE LAYER EVENT HANDLERS
|
|
1361
|
-
*/
|
|
1362
|
-
export type DragStartEventHandler = (e: { layer: L.Layer; shape: PM.SUPPORTED_SHAPES }) => void;
|
|
1363
|
-
export type DragEventHandler = (e: {
|
|
1364
|
-
layer: L.Layer;
|
|
1365
|
-
containerPoint: any;
|
|
1366
|
-
latlng: L.LatLng;
|
|
1367
|
-
layerPoint: L.Point;
|
|
1368
|
-
originalEvent: any;
|
|
1369
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1370
|
-
}) => void;
|
|
1371
|
-
export type DragEndEventHandler = (e: { layer: L.Layer; shape: PM.SUPPORTED_SHAPES }) => void;
|
|
1372
|
-
export type DragEnableEventHandler = (e: {
|
|
1373
|
-
layer: L.Layer;
|
|
1374
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1375
|
-
}) => void;
|
|
1376
|
-
export type DragDisableEventHandler = (e: {
|
|
1377
|
-
layer: L.Layer;
|
|
1378
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1379
|
-
}) => void;
|
|
1380
|
-
|
|
1381
|
-
/**
|
|
1382
|
-
* REMOVE MODE LAYER EVENT HANDLERS
|
|
1383
|
-
*/
|
|
1384
|
-
|
|
1385
|
-
export type RemoveEventHandler = (e: { layer: L.Layer; shape: PM.SUPPORTED_SHAPES }) => void;
|
|
1386
|
-
|
|
1387
|
-
/**
|
|
1388
|
-
* REMOVE MODE MAP EVENT HANDLERS
|
|
1389
|
-
*/
|
|
1390
|
-
export type GlobalRemovalModeToggledEventHandler = (e: {
|
|
1391
|
-
enabled: boolean;
|
|
1392
|
-
map: L.Map;
|
|
1393
|
-
}) => void;
|
|
1394
|
-
|
|
1395
|
-
/**
|
|
1396
|
-
* CUT MODE MAP EVENT HANDLERS
|
|
1397
|
-
*/
|
|
1398
|
-
export type GlobalCutModeToggledEventHandler = (e: { enabled: boolean; map: L.Map }) => void;
|
|
1399
|
-
export type CutEventHandler = (e: {
|
|
1400
|
-
layer: L.Layer;
|
|
1401
|
-
originalLayer: L.Layer;
|
|
1402
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1403
|
-
}) => void;
|
|
1404
|
-
|
|
1405
|
-
/**
|
|
1406
|
-
* ROTATE MODE LAYER EVENT HANDLERS
|
|
1407
|
-
*/
|
|
1408
|
-
export type RotateEnableEventHandler = (e: {
|
|
1409
|
-
layer: L.Layer;
|
|
1410
|
-
helpLayer: L.Layer;
|
|
1411
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1412
|
-
}) => void;
|
|
1413
|
-
export type RotateDisableEventHandler = (e: {
|
|
1414
|
-
layer: L.Layer;
|
|
1415
|
-
shape: PM.SUPPORTED_SHAPES;
|
|
1416
|
-
}) => void;
|
|
1417
|
-
export type RotateStartEventHandler = (e: {
|
|
1418
|
-
layer: L.Layer;
|
|
1419
|
-
helpLayer: L.Layer;
|
|
1420
|
-
startAngle: number;
|
|
1421
|
-
originLatLngs: L.LatLng[];
|
|
1422
|
-
}) => void;
|
|
1423
|
-
export type RotateEventHandler = (e: {
|
|
1424
|
-
layer: L.Layer;
|
|
1425
|
-
helpLayer: L.Layer;
|
|
1426
|
-
startAngle: number;
|
|
1427
|
-
angle: number;
|
|
1428
|
-
angleDiff: number;
|
|
1429
|
-
oldLatLngs: L.LatLng[];
|
|
1430
|
-
newLatLngs: L.LatLng[];
|
|
1431
|
-
}) => void;
|
|
1432
|
-
export type RotateEndEventHandler = (e: {
|
|
1433
|
-
layer: L.Layer;
|
|
1434
|
-
helpLayer: L.Layer;
|
|
1435
|
-
startAngle: number;
|
|
1436
|
-
angle: number;
|
|
1437
|
-
originLatLngs: L.LatLng[];
|
|
1438
|
-
newLatLngs: L.LatLng[];
|
|
1439
|
-
}) => void;
|
|
1440
|
-
|
|
1441
|
-
/**
|
|
1442
|
-
* ROTATE MODE MAP EVENT HANDLERS
|
|
1443
|
-
*/
|
|
1444
|
-
export type GlobalRotateModeToggledEventHandler = (e: { enabled: boolean; map: L.Map }) => void;
|
|
1445
|
-
|
|
1446
|
-
/**
|
|
1447
|
-
* TRANSLATION EVENT HANDLERS
|
|
1448
|
-
*/
|
|
1449
|
-
export type LangChangeEventHandler = (e: {
|
|
1450
|
-
activeLang: string;
|
|
1451
|
-
oldLang: string;
|
|
1452
|
-
fallback: string;
|
|
1453
|
-
translations: PM.Translations;
|
|
1454
|
-
}) => void;
|
|
1455
|
-
|
|
1456
|
-
/**
|
|
1457
|
-
* CONTROL MAP EVENT HANDLERS
|
|
1458
|
-
*/
|
|
1459
|
-
export type ButtonClickEventHandler = (e: { btnName: string; button: PM.Button }) => void;
|
|
1460
|
-
export type ActionClickEventHandler = (e: {
|
|
1461
|
-
text: string;
|
|
1462
|
-
action: string;
|
|
1463
|
-
btnName: string;
|
|
1464
|
-
button: PM.Button;
|
|
1465
|
-
}) => void;
|
|
1466
|
-
|
|
1467
|
-
/**
|
|
1468
|
-
* KEYBOARD EVENT HANDLERS
|
|
1469
|
-
*/
|
|
1470
|
-
export type KeyboardKeyEventHandler = (e: {
|
|
1471
|
-
focusOn: 'document' | 'map';
|
|
1472
|
-
eventType: 'keydown' | 'keyup';
|
|
1473
|
-
event: any;
|
|
1474
|
-
}) => void;
|
|
1475
|
-
}
|
|
1476
|
-
}
|