@soyfri/template 1.0.0
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/README.md +39 -0
- package/dist/assets/ts/_utils/DomHelpers.d.ts +29 -0
- package/dist/assets/ts/_utils/DomHelpers.js +380 -0
- package/dist/assets/ts/_utils/ElementAnimateUtil.d.ts +10 -0
- package/dist/assets/ts/_utils/ElementAnimateUtil.js +90 -0
- package/dist/assets/ts/_utils/EventHandlerUtil.d.ts +24 -0
- package/dist/assets/ts/_utils/EventHandlerUtil.js +105 -0
- package/dist/assets/ts/_utils/_DOMEventHandlerUtil.d.ts +6 -0
- package/dist/assets/ts/_utils/_DOMEventHandlerUtil.js +55 -0
- package/dist/assets/ts/_utils/_DataUtil.d.ts +9 -0
- package/dist/assets/ts/_utils/_DataUtil.js +66 -0
- package/dist/assets/ts/_utils/_ElementStyleUtil.d.ts +5 -0
- package/dist/assets/ts/_utils/_ElementStyleUtil.js +23 -0
- package/dist/assets/ts/_utils/_TypesHelpers.d.ts +10 -0
- package/dist/assets/ts/_utils/_TypesHelpers.js +54 -0
- package/dist/assets/ts/_utils/index.d.ts +9 -0
- package/dist/assets/ts/_utils/index.js +28 -0
- package/dist/assets/ts/_utils/models/OffsetModel.d.ts +4 -0
- package/dist/assets/ts/_utils/models/OffsetModel.js +2 -0
- package/dist/assets/ts/_utils/models/ViewPortModel.d.ts +4 -0
- package/dist/assets/ts/_utils/models/ViewPortModel.js +2 -0
- package/dist/assets/ts/components/MenuComponent.d.ts +88 -0
- package/dist/assets/ts/components/MenuComponent.js +857 -0
- package/dist/assets/ts/components/SearchComponent.d.ts +66 -0
- package/dist/assets/ts/components/SearchComponent.js +362 -0
- package/dist/assets/ts/components/_CookieComponent.d.ts +25 -0
- package/dist/assets/ts/components/_CookieComponent.js +66 -0
- package/dist/assets/ts/components/_DrawerComponent.d.ts +57 -0
- package/dist/assets/ts/components/_DrawerComponent.js +325 -0
- package/dist/assets/ts/components/_FeedbackComponent.d.ts +32 -0
- package/dist/assets/ts/components/_FeedbackComponent.js +113 -0
- package/dist/assets/ts/components/_ImageInputComponent.d.ts +43 -0
- package/dist/assets/ts/components/_ImageInputComponent.js +176 -0
- package/dist/assets/ts/components/_PasswordMeterComponent.d.ts +54 -0
- package/dist/assets/ts/components/_PasswordMeterComponent.js +206 -0
- package/dist/assets/ts/components/_ScrollComponent.d.ts +32 -0
- package/dist/assets/ts/components/_ScrollComponent.js +262 -0
- package/dist/assets/ts/components/_ScrollTopComponent.d.ts +24 -0
- package/dist/assets/ts/components/_ScrollTopComponent.js +115 -0
- package/dist/assets/ts/components/_StepperComponent.d.ts +52 -0
- package/dist/assets/ts/components/_StepperComponent.js +256 -0
- package/dist/assets/ts/components/_StickyComponent.d.ts +35 -0
- package/dist/assets/ts/components/_StickyComponent.js +239 -0
- package/dist/assets/ts/components/_SwapperComponent.d.ts +36 -0
- package/dist/assets/ts/components/_SwapperComponent.js +173 -0
- package/dist/assets/ts/components/_ToggleComponent.d.ts +36 -0
- package/dist/assets/ts/components/_ToggleComponent.js +161 -0
- package/dist/assets/ts/components/index.d.ts +13 -0
- package/dist/assets/ts/components/index.js +30 -0
- package/dist/assets/ts/index.d.ts +2 -0
- package/dist/assets/ts/index.js +68 -0
- package/dist/assets/ts/layout/ThemeMode.d.ts +20 -0
- package/dist/assets/ts/layout/ThemeMode.js +182 -0
- package/dist/assets/ts/layout/index.d.ts +1 -0
- package/dist/assets/ts/layout/index.js +17 -0
- package/dist/helpers/AssetHelpers.d.ts +2 -0
- package/dist/helpers/AssetHelpers.js +19 -0
- package/dist/helpers/RouterHelpers.d.ts +2 -0
- package/dist/helpers/RouterHelpers.js +21 -0
- package/dist/helpers/components/KTCard.d.ts +17 -0
- package/dist/helpers/components/KTCard.js +19 -0
- package/dist/helpers/components/KTCardBody.d.ts +9 -0
- package/dist/helpers/components/KTCardBody.js +15 -0
- package/dist/helpers/components/KTIcon.d.ts +8 -0
- package/dist/helpers/components/KTIcon.js +30 -0
- package/dist/helpers/components/KTSVG.d.ts +8 -0
- package/dist/helpers/components/KTSVG.js +12 -0
- package/dist/helpers/crud-helper/consts.d.ts +4 -0
- package/dist/helpers/crud-helper/consts.js +7 -0
- package/dist/helpers/crud-helper/helpers.d.ts +14 -0
- package/dist/helpers/crud-helper/helpers.js +110 -0
- package/dist/helpers/crud-helper/models.d.ts +61 -0
- package/dist/helpers/crud-helper/models.js +21 -0
- package/dist/helpers/dataExamples.d.ts +37 -0
- package/dist/helpers/dataExamples.js +251 -0
- package/dist/helpers/icons-config/icons.d.ts +5 -0
- package/dist/helpers/icons-config/icons.js +578 -0
- package/dist/helpers/index.d.ts +11 -0
- package/dist/helpers/index.js +27 -0
- package/dist/helpers/react18MigrationHelpers.d.ts +6 -0
- package/dist/helpers/react18MigrationHelpers.js +10 -0
- package/dist/i18n/Metronici18n.d.ts +6 -0
- package/dist/i18n/Metronici18n.js +62 -0
- package/dist/i18n/i18nProvider.d.ts +11 -0
- package/dist/i18n/i18nProvider.js +31 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +24 -0
- package/dist/layout/MasterInit.d.ts +2 -0
- package/dist/layout/MasterInit.js +39 -0
- package/dist/layout/MasterLayout.d.ts +3 -0
- package/dist/layout/MasterLayout.js +40 -0
- package/dist/layout/components/content/Content.d.ts +4 -0
- package/dist/layout/components/content/Content.js +27 -0
- package/dist/layout/components/content/index.d.ts +1 -0
- package/dist/layout/components/content/index.js +17 -0
- package/dist/layout/components/footer/Footer.d.ts +3 -0
- package/dist/layout/components/footer/Footer.js +38 -0
- package/dist/layout/components/footer/FooterWrapper.d.ts +3 -0
- package/dist/layout/components/footer/FooterWrapper.js +20 -0
- package/dist/layout/components/footer/index.d.ts +1 -0
- package/dist/layout/components/footer/index.js +17 -0
- package/dist/layout/components/header/Header.d.ts +3 -0
- package/dist/layout/components/header/Header.js +86 -0
- package/dist/layout/components/header/HeaderWrapper.d.ts +2 -0
- package/dist/layout/components/header/HeaderWrapper.js +44 -0
- package/dist/layout/components/header/Navbar.d.ts +3 -0
- package/dist/layout/components/header/Navbar.js +43 -0
- package/dist/layout/components/header/header-menus/MegaMenu.d.ts +3 -0
- package/dist/layout/components/header/header-menus/MegaMenu.js +74 -0
- package/dist/layout/components/header/header-menus/MenuInner.d.ts +2 -0
- package/dist/layout/components/header/header-menus/MenuInner.js +50 -0
- package/dist/layout/components/header/header-menus/MenuInnerWithSub.d.ts +15 -0
- package/dist/layout/components/header/header-menus/MenuInnerWithSub.js +58 -0
- package/dist/layout/components/header/header-menus/MenuItem.d.ts +11 -0
- package/dist/layout/components/header/header-menus/MenuItem.js +28 -0
- package/dist/layout/components/header/header-menus/index.d.ts +1 -0
- package/dist/layout/components/header/header-menus/index.js +17 -0
- package/dist/layout/components/header/index.d.ts +1 -0
- package/dist/layout/components/header/index.js +17 -0
- package/dist/layout/components/scroll-top/ScrollTop.d.ts +2 -0
- package/dist/layout/components/scroll-top/ScrollTop.js +51 -0
- package/dist/layout/components/scroll-top/index.d.ts +1 -0
- package/dist/layout/components/scroll-top/index.js +17 -0
- package/dist/layout/components/sidebar/Sidebar.d.ts +3 -0
- package/dist/layout/components/sidebar/Sidebar.js +133 -0
- package/dist/layout/components/sidebar/SidebarFooter.d.ts +3 -0
- package/dist/layout/components/sidebar/SidebarFooter.js +18 -0
- package/dist/layout/components/sidebar/SidebarLogo.d.ts +7 -0
- package/dist/layout/components/sidebar/SidebarLogo.js +54 -0
- package/dist/layout/components/sidebar/index.d.ts +1 -0
- package/dist/layout/components/sidebar/index.js +17 -0
- package/dist/layout/components/sidebar/sidebar-menu/SidebarMenu.d.ts +3 -0
- package/dist/layout/components/sidebar/sidebar-menu/SidebarMenu.js +15 -0
- package/dist/layout/components/sidebar/sidebar-menu/SidebarMenuItem.d.ts +11 -0
- package/dist/layout/components/sidebar/sidebar-menu/SidebarMenuItem.js +31 -0
- package/dist/layout/components/sidebar/sidebar-menu/SidebarMenuItemWithSub.d.ts +11 -0
- package/dist/layout/components/sidebar/sidebar-menu/SidebarMenuItemWithSub.js +30 -0
- package/dist/layout/components/sidebar/sidebar-menu/SidebarMenuMain.d.ts +3 -0
- package/dist/layout/components/sidebar/sidebar-menu/SidebarMenuMain.js +63 -0
- package/dist/layout/components/toolbar/Toolbar.d.ts +3 -0
- package/dist/layout/components/toolbar/Toolbar.js +88 -0
- package/dist/layout/components/toolbar/ToolbarWrapper.d.ts +3 -0
- package/dist/layout/components/toolbar/ToolbarWrapper.js +34 -0
- package/dist/layout/components/toolbar/index.d.ts +1 -0
- package/dist/layout/components/toolbar/index.js +17 -0
- package/dist/layout/components/toolbar/page-title/PageTitle.d.ts +3 -0
- package/dist/layout/components/toolbar/page-title/PageTitle.js +44 -0
- package/dist/layout/components/toolbar/page-title/PageTitleWrapper.d.ts +3 -0
- package/dist/layout/components/toolbar/page-title/PageTitleWrapper.js +18 -0
- package/dist/layout/components/toolbar/page-title/index.d.ts +1 -0
- package/dist/layout/components/toolbar/page-title/index.js +17 -0
- package/dist/layout/components/toolbar/toolbars/ToolbarAccounting.d.ts +3 -0
- package/dist/layout/components/toolbar/toolbars/ToolbarAccounting.js +68 -0
- package/dist/layout/components/toolbar/toolbars/ToolbarClassic.d.ts +3 -0
- package/dist/layout/components/toolbar/toolbars/ToolbarClassic.js +33 -0
- package/dist/layout/components/toolbar/toolbars/ToolbarExtended.d.ts +3 -0
- package/dist/layout/components/toolbar/toolbars/ToolbarExtended.js +73 -0
- package/dist/layout/components/toolbar/toolbars/ToolbarReports.d.ts +3 -0
- package/dist/layout/components/toolbar/toolbars/ToolbarReports.js +59 -0
- package/dist/layout/components/toolbar/toolbars/ToolbarSaas.d.ts +3 -0
- package/dist/layout/components/toolbar/toolbars/ToolbarSaas.js +59 -0
- package/dist/layout/components/toolbar/toolbars/index.d.ts +5 -0
- package/dist/layout/components/toolbar/toolbars/index.js +21 -0
- package/dist/layout/core/MetronicSplashScreen.d.ts +7 -0
- package/dist/layout/core/MetronicSplashScreen.js +78 -0
- package/dist/layout/core/PageData.d.ts +25 -0
- package/dist/layout/core/PageData.js +96 -0
- package/dist/layout/core/_LayoutConfig.d.ts +2 -0
- package/dist/layout/core/_LayoutConfig.js +140 -0
- package/dist/layout/core/_LayoutProvider.d.ts +17 -0
- package/dist/layout/core/_LayoutProvider.js +114 -0
- package/dist/layout/core/_LayoutSetup.d.ts +33 -0
- package/dist/layout/core/_LayoutSetup.js +218 -0
- package/dist/layout/core/_Models.d.ts +247 -0
- package/dist/layout/core/_Models.js +2 -0
- package/dist/layout/core/index.d.ts +6 -0
- package/dist/layout/core/index.js +22 -0
- package/dist/layout/index.d.ts +12 -0
- package/dist/layout/index.js +33 -0
- package/dist/partials/chat/ChatInner.d.ts +6 -0
- package/dist/partials/chat/ChatInner.js +114 -0
- package/dist/partials/content/activity/Item1.d.ts +3 -0
- package/dist/partials/content/activity/Item1.js +50 -0
- package/dist/partials/content/activity/Item2.d.ts +3 -0
- package/dist/partials/content/activity/Item2.js +23 -0
- package/dist/partials/content/activity/Item3.d.ts +3 -0
- package/dist/partials/content/activity/Item3.js +40 -0
- package/dist/partials/content/activity/Item4.d.ts +3 -0
- package/dist/partials/content/activity/Item4.js +31 -0
- package/dist/partials/content/activity/Item5.d.ts +3 -0
- package/dist/partials/content/activity/Item5.js +40 -0
- package/dist/partials/content/activity/Item6.d.ts +3 -0
- package/dist/partials/content/activity/Item6.js +27 -0
- package/dist/partials/content/activity/Item7.d.ts +3 -0
- package/dist/partials/content/activity/Item7.js +31 -0
- package/dist/partials/content/activity/Item8.d.ts +3 -0
- package/dist/partials/content/activity/Item8.js +26 -0
- package/dist/partials/content/activity/index.d.ts +8 -0
- package/dist/partials/content/activity/index.js +24 -0
- package/dist/partials/content/cards/Card1.d.ts +12 -0
- package/dist/partials/content/cards/Card1.js +28 -0
- package/dist/partials/content/cards/Card2.d.ts +14 -0
- package/dist/partials/content/cards/Card2.js +32 -0
- package/dist/partials/content/cards/Card3.d.ts +12 -0
- package/dist/partials/content/cards/Card3.js +30 -0
- package/dist/partials/content/cards/Card4.d.ts +8 -0
- package/dist/partials/content/cards/Card4.js +19 -0
- package/dist/partials/content/cards/Card5.d.ts +13 -0
- package/dist/partials/content/cards/Card5.js +38 -0
- package/dist/partials/content/code-highlight/CodeBlock.d.ts +7 -0
- package/dist/partials/content/code-highlight/CodeBlock.js +75 -0
- package/dist/partials/content/dropdown/Dropdown1.d.ts +2 -0
- package/dist/partials/content/dropdown/Dropdown1.js +41 -0
- package/dist/partials/content/dropdown/Dropdown2.d.ts +3 -0
- package/dist/partials/content/dropdown/Dropdown2.js +35 -0
- package/dist/partials/content/dropdown/Dropdown3.d.ts +3 -0
- package/dist/partials/content/dropdown/Dropdown3.js +40 -0
- package/dist/partials/content/editor/EditorToolbar.d.ts +58 -0
- package/dist/partials/content/editor/EditorToolbar.js +54 -0
- package/dist/partials/content/portal/Portal.d.ts +12 -0
- package/dist/partials/content/portal/Portal.js +25 -0
- package/dist/partials/index.d.ts +22 -0
- package/dist/partials/index.js +42 -0
- package/dist/partials/layout/InboxCompose.d.ts +7 -0
- package/dist/partials/layout/InboxCompose.js +98 -0
- package/dist/partials/layout/RightToolbar.d.ts +3 -0
- package/dist/partials/layout/RightToolbar.js +18 -0
- package/dist/partials/layout/SearchModal.d.ts +7 -0
- package/dist/partials/layout/SearchModal.js +62 -0
- package/dist/partials/layout/activity-drawer/ActivityDrawer.d.ts +3 -0
- package/dist/partials/layout/activity-drawer/ActivityDrawer.js +40 -0
- package/dist/partials/layout/create-app/CreateApp.d.ts +3 -0
- package/dist/partials/layout/create-app/CreateApp.js +11 -0
- package/dist/partials/layout/drawer-messenger/DrawerMessenger.d.ts +3 -0
- package/dist/partials/layout/drawer-messenger/DrawerMessenger.js +26 -0
- package/dist/partials/layout/header-menus/HeaderNotificationsMenu.d.ts +3 -0
- package/dist/partials/layout/header-menus/HeaderNotificationsMenu.js +58 -0
- package/dist/partials/layout/header-menus/HeaderUserMenu.d.ts +3 -0
- package/dist/partials/layout/header-menus/HeaderUserMenu.js +58 -0
- package/dist/partials/layout/header-menus/Languages.d.ts +3 -0
- package/dist/partials/layout/header-menus/Languages.js +62 -0
- package/dist/partials/layout/help-drawer/HelpDrawer.d.ts +3 -0
- package/dist/partials/layout/help-drawer/HelpDrawer.js +62 -0
- package/dist/partials/layout/help-drawer/ToggleHelpDrawer.d.ts +3 -0
- package/dist/partials/layout/help-drawer/ToggleHelpDrawer.js +9 -0
- package/dist/partials/layout/purchase/PurchaseButton.d.ts +3 -0
- package/dist/partials/layout/purchase/PurchaseButton.js +12 -0
- package/dist/partials/layout/quick-links/QuicLinks.d.ts +3 -0
- package/dist/partials/layout/quick-links/QuicLinks.js +39 -0
- package/dist/partials/layout/search/Search.d.ts +3 -0
- package/dist/partials/layout/search/Search.js +334 -0
- package/dist/partials/layout/search/SearchInner.d.ts +3 -0
- package/dist/partials/layout/search/SearchInner.js +37 -0
- package/dist/partials/layout/theme-mode/ThemeModeProvider.d.ts +17 -0
- package/dist/partials/layout/theme-mode/ThemeModeProvider.js +102 -0
- package/dist/partials/layout/theme-mode/ThemeModeSwitcher.d.ts +9 -0
- package/dist/partials/layout/theme-mode/ThemeModeSwitcher.js +42 -0
- package/dist/partials/modals/create-app-stepper/CreateAppModal.d.ts +7 -0
- package/dist/partials/modals/create-app-stepper/CreateAppModal.js +176 -0
- package/dist/partials/modals/create-app-stepper/IAppModels.d.ts +22 -0
- package/dist/partials/modals/create-app-stepper/IAppModels.js +9 -0
- package/dist/partials/modals/create-app-stepper/steps/Step1.d.ts +4 -0
- package/dist/partials/modals/create-app-stepper/steps/Step1.js +84 -0
- package/dist/partials/modals/create-app-stepper/steps/Step2.d.ts +4 -0
- package/dist/partials/modals/create-app-stepper/steps/Step2.js +57 -0
- package/dist/partials/modals/create-app-stepper/steps/Step3.d.ts +4 -0
- package/dist/partials/modals/create-app-stepper/steps/Step3.js +81 -0
- package/dist/partials/modals/create-app-stepper/steps/Step4.d.ts +4 -0
- package/dist/partials/modals/create-app-stepper/steps/Step4.js +47 -0
- package/dist/partials/modals/create-app-stepper/steps/Step5.d.ts +3 -0
- package/dist/partials/modals/create-app-stepper/steps/Step5.js +18 -0
- package/dist/partials/modals/invite-users/InviteUsers.d.ts +3 -0
- package/dist/partials/modals/invite-users/InviteUsers.js +161 -0
- package/dist/partials/modals/select-location/SelectLocationModal.d.ts +11 -0
- package/dist/partials/modals/select-location/SelectLocationModal.js +58 -0
- package/dist/partials/modals/upgrade-plan/UpgradePlan.d.ts +3 -0
- package/dist/partials/modals/upgrade-plan/UpgradePlan.js +230 -0
- package/dist/partials/widgets/_new/cards/CardsWidget17.d.ts +9 -0
- package/dist/partials/widgets/_new/cards/CardsWidget17.js +122 -0
- package/dist/partials/widgets/_new/cards/CardsWidget20.d.ts +9 -0
- package/dist/partials/widgets/_new/cards/CardsWidget20.js +26 -0
- package/dist/partials/widgets/_new/cards/CardsWidget7.d.ts +11 -0
- package/dist/partials/widgets/_new/cards/CardsWidget7.js +35 -0
- package/dist/partials/widgets/_new/engage/EngageWidget10.d.ts +6 -0
- package/dist/partials/widgets/_new/engage/EngageWidget10.js +31 -0
- package/dist/partials/widgets/_new/lists/ListsWidget26.d.ts +6 -0
- package/dist/partials/widgets/_new/lists/ListsWidget26.js +47 -0
- package/dist/partials/widgets/charts/ChartsWidget1.d.ts +6 -0
- package/dist/partials/widgets/charts/ChartsWidget1.js +182 -0
- package/dist/partials/widgets/charts/ChartsWidget2.d.ts +6 -0
- package/dist/partials/widgets/charts/ChartsWidget2.js +180 -0
- package/dist/partials/widgets/charts/ChartsWidget3.d.ts +6 -0
- package/dist/partials/widgets/charts/ChartsWidget3.js +191 -0
- package/dist/partials/widgets/charts/ChartsWidget4.d.ts +6 -0
- package/dist/partials/widgets/charts/ChartsWidget4.js +196 -0
- package/dist/partials/widgets/charts/ChartsWidget5.d.ts +6 -0
- package/dist/partials/widgets/charts/ChartsWidget5.js +183 -0
- package/dist/partials/widgets/charts/ChartsWidget6.d.ts +6 -0
- package/dist/partials/widgets/charts/ChartsWidget6.js +195 -0
- package/dist/partials/widgets/charts/ChartsWidget7.d.ts +6 -0
- package/dist/partials/widgets/charts/ChartsWidget7.js +215 -0
- package/dist/partials/widgets/charts/ChartsWidget8.d.ts +6 -0
- package/dist/partials/widgets/charts/ChartsWidget8.js +218 -0
- package/dist/partials/widgets/engage/EngageWidget1.d.ts +11 -0
- package/dist/partials/widgets/engage/EngageWidget1.js +25 -0
- package/dist/partials/widgets/engage/EngageWidget2.d.ts +9 -0
- package/dist/partials/widgets/engage/EngageWidget2.js +22 -0
- package/dist/partials/widgets/engage/EngageWidget3.d.ts +9 -0
- package/dist/partials/widgets/engage/EngageWidget3.js +40 -0
- package/dist/partials/widgets/feeds/FeedsWidget2.d.ts +6 -0
- package/dist/partials/widgets/feeds/FeedsWidget2.js +43 -0
- package/dist/partials/widgets/feeds/FeedsWidget3.d.ts +6 -0
- package/dist/partials/widgets/feeds/FeedsWidget3.js +62 -0
- package/dist/partials/widgets/feeds/FeedsWidget4.d.ts +6 -0
- package/dist/partials/widgets/feeds/FeedsWidget4.js +43 -0
- package/dist/partials/widgets/feeds/FeedsWidget5.d.ts +6 -0
- package/dist/partials/widgets/feeds/FeedsWidget5.js +46 -0
- package/dist/partials/widgets/feeds/FeedsWidget6.d.ts +6 -0
- package/dist/partials/widgets/feeds/FeedsWidget6.js +45 -0
- package/dist/partials/widgets/index.d.ts +71 -0
- package/dist/partials/widgets/index.js +97 -0
- package/dist/partials/widgets/lists/ListsWidget1.d.ts +6 -0
- package/dist/partials/widgets/lists/ListsWidget1.js +58 -0
- package/dist/partials/widgets/lists/ListsWidget2.d.ts +6 -0
- package/dist/partials/widgets/lists/ListsWidget2.js +51 -0
- package/dist/partials/widgets/lists/ListsWidget3.d.ts +6 -0
- package/dist/partials/widgets/lists/ListsWidget3.js +69 -0
- package/dist/partials/widgets/lists/ListsWidget4.d.ts +7 -0
- package/dist/partials/widgets/lists/ListsWidget4.js +77 -0
- package/dist/partials/widgets/lists/ListsWidget5.d.ts +6 -0
- package/dist/partials/widgets/lists/ListsWidget5.js +74 -0
- package/dist/partials/widgets/lists/ListsWidget6.d.ts +6 -0
- package/dist/partials/widgets/lists/ListsWidget6.js +48 -0
- package/dist/partials/widgets/lists/ListsWidget7.d.ts +6 -0
- package/dist/partials/widgets/lists/ListsWidget7.js +54 -0
- package/dist/partials/widgets/lists/ListsWidget8.d.ts +6 -0
- package/dist/partials/widgets/lists/ListsWidget8.js +74 -0
- package/dist/partials/widgets/lists/ListsWidget9.d.ts +6 -0
- package/dist/partials/widgets/lists/ListsWidget9.js +89 -0
- package/dist/partials/widgets/mixed/MixedWidget1.d.ts +7 -0
- package/dist/partials/widgets/mixed/MixedWidget1.js +70 -0
- package/dist/partials/widgets/mixed/MixedWidget10.d.ts +8 -0
- package/dist/partials/widgets/mixed/MixedWidget10.js +188 -0
- package/dist/partials/widgets/mixed/MixedWidget11.d.ts +8 -0
- package/dist/partials/widgets/mixed/MixedWidget11.js +180 -0
- package/dist/partials/widgets/mixed/MixedWidget13.d.ts +8 -0
- package/dist/partials/widgets/mixed/MixedWidget13.js +204 -0
- package/dist/partials/widgets/mixed/MixedWidget14.d.ts +8 -0
- package/dist/partials/widgets/mixed/MixedWidget14.js +166 -0
- package/dist/partials/widgets/mixed/MixedWidget15.d.ts +7 -0
- package/dist/partials/widgets/mixed/MixedWidget15.js +49 -0
- package/dist/partials/widgets/mixed/MixedWidget2.d.ts +9 -0
- package/dist/partials/widgets/mixed/MixedWidget2.js +213 -0
- package/dist/partials/widgets/mixed/MixedWidget3.d.ts +8 -0
- package/dist/partials/widgets/mixed/MixedWidget3.js +207 -0
- package/dist/partials/widgets/mixed/MixedWidget4.d.ts +11 -0
- package/dist/partials/widgets/mixed/MixedWidget4.js +43 -0
- package/dist/partials/widgets/mixed/MixedWidget5.d.ts +10 -0
- package/dist/partials/widgets/mixed/MixedWidget5.js +29 -0
- package/dist/partials/widgets/mixed/MixedWidget6.d.ts +8 -0
- package/dist/partials/widgets/mixed/MixedWidget6.js +211 -0
- package/dist/partials/widgets/mixed/MixedWidget7.d.ts +8 -0
- package/dist/partials/widgets/mixed/MixedWidget7.js +125 -0
- package/dist/partials/widgets/mixed/MixedWidget8.d.ts +8 -0
- package/dist/partials/widgets/mixed/MixedWidget8.js +239 -0
- package/dist/partials/widgets/mixed/MixedWidget9.d.ts +8 -0
- package/dist/partials/widgets/mixed/MixedWidget9.js +227 -0
- package/dist/partials/widgets/statistics/StatisticsWidget1.d.ts +10 -0
- package/dist/partials/widgets/statistics/StatisticsWidget1.js +21 -0
- package/dist/partials/widgets/statistics/StatisticsWidget2.d.ts +9 -0
- package/dist/partials/widgets/statistics/StatisticsWidget2.js +18 -0
- package/dist/partials/widgets/statistics/StatisticsWidget3.d.ts +10 -0
- package/dist/partials/widgets/statistics/StatisticsWidget3.js +189 -0
- package/dist/partials/widgets/statistics/StatisticsWidget4.d.ts +10 -0
- package/dist/partials/widgets/statistics/StatisticsWidget4.js +191 -0
- package/dist/partials/widgets/statistics/StatisticsWidget5.d.ts +13 -0
- package/dist/partials/widgets/statistics/StatisticsWidget5.js +17 -0
- package/dist/partials/widgets/statistics/StatisticsWidget6.d.ts +10 -0
- package/dist/partials/widgets/statistics/StatisticsWidget6.js +19 -0
- package/dist/partials/widgets/tables/TablesWidget1.d.ts +6 -0
- package/dist/partials/widgets/tables/TablesWidget1.js +117 -0
- package/dist/partials/widgets/tables/TablesWidget10.d.ts +6 -0
- package/dist/partials/widgets/tables/TablesWidget10.js +174 -0
- package/dist/partials/widgets/tables/TablesWidget11.d.ts +6 -0
- package/dist/partials/widgets/tables/TablesWidget11.js +163 -0
- package/dist/partials/widgets/tables/TablesWidget12.d.ts +6 -0
- package/dist/partials/widgets/tables/TablesWidget12.js +227 -0
- package/dist/partials/widgets/tables/TablesWidget13.d.ts +6 -0
- package/dist/partials/widgets/tables/TablesWidget13.js +186 -0
- package/dist/partials/widgets/tables/TablesWidget2.d.ts +6 -0
- package/dist/partials/widgets/tables/TablesWidget2.js +113 -0
- package/dist/partials/widgets/tables/TablesWidget3.d.ts +6 -0
- package/dist/partials/widgets/tables/TablesWidget3.js +83 -0
- package/dist/partials/widgets/tables/TablesWidget4.d.ts +6 -0
- package/dist/partials/widgets/tables/TablesWidget4.js +357 -0
- package/dist/partials/widgets/tables/TablesWidget5.d.ts +6 -0
- package/dist/partials/widgets/tables/TablesWidget5.js +228 -0
- package/dist/partials/widgets/tables/TablesWidget6.d.ts +6 -0
- package/dist/partials/widgets/tables/TablesWidget6.js +249 -0
- package/dist/partials/widgets/tables/TablesWidget7.d.ts +6 -0
- package/dist/partials/widgets/tables/TablesWidget7.js +249 -0
- package/dist/partials/widgets/tables/TablesWidget8.d.ts +6 -0
- package/dist/partials/widgets/tables/TablesWidget8.js +222 -0
- package/dist/partials/widgets/tables/TablesWidget9.d.ts +6 -0
- package/dist/partials/widgets/tables/TablesWidget9.js +174 -0
- package/dist/partials/widgets/tiles/TilesWidget1.d.ts +8 -0
- package/dist/partials/widgets/tiles/TilesWidget1.js +18 -0
- package/dist/partials/widgets/tiles/TilesWidget2.d.ts +9 -0
- package/dist/partials/widgets/tiles/TilesWidget2.js +28 -0
- package/dist/partials/widgets/tiles/TilesWidget3.d.ts +9 -0
- package/dist/partials/widgets/tiles/TilesWidget3.js +21 -0
- package/dist/partials/widgets/tiles/TilesWidget4.d.ts +6 -0
- package/dist/partials/widgets/tiles/TilesWidget4.js +18 -0
- package/dist/partials/widgets/tiles/TilesWidget5.d.ts +12 -0
- package/dist/partials/widgets/tiles/TilesWidget5.js +19 -0
- package/package.json +73 -0
|
@@ -0,0 +1,578 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var icons = {
|
|
4
|
+
'abstract-33': 2,
|
|
5
|
+
'abstract-27': 2,
|
|
6
|
+
'abstract-26': 2,
|
|
7
|
+
'abstract-32': 2,
|
|
8
|
+
'abstract-18': 2,
|
|
9
|
+
'abstract-24': 2,
|
|
10
|
+
'abstract-30': 2,
|
|
11
|
+
'abstract-8': 2,
|
|
12
|
+
'abstract-9': 2,
|
|
13
|
+
'abstract-31': 2,
|
|
14
|
+
'abstract-25': 2,
|
|
15
|
+
'abstract-19': 2,
|
|
16
|
+
'abstract-21': 2,
|
|
17
|
+
'abstract-35': 2,
|
|
18
|
+
'abstract-34': 2,
|
|
19
|
+
'abstract-20': 2,
|
|
20
|
+
'abstract-36': 2,
|
|
21
|
+
'abstract-22': 2,
|
|
22
|
+
'abstract-23': 2,
|
|
23
|
+
'abstract-37': 2,
|
|
24
|
+
'abstract-44': 2,
|
|
25
|
+
abstract: 2,
|
|
26
|
+
'abstract-45': 2,
|
|
27
|
+
'abstract-47': 2,
|
|
28
|
+
'abstract-46': 2,
|
|
29
|
+
'abstract-42': 2,
|
|
30
|
+
'abstract-43': 2,
|
|
31
|
+
'abstract-41': 2,
|
|
32
|
+
'abstract-40': 2,
|
|
33
|
+
'abstract-48': 3,
|
|
34
|
+
'abstract-49': 3,
|
|
35
|
+
'abstract-12': 2,
|
|
36
|
+
'abstract-2': 2,
|
|
37
|
+
'abstract-3': 2,
|
|
38
|
+
'abstract-13': 2,
|
|
39
|
+
'abstract-39': 2,
|
|
40
|
+
'abstract-11': 2,
|
|
41
|
+
'abstract-1': 2,
|
|
42
|
+
'abstract-10': 2,
|
|
43
|
+
'abstract-38': 2,
|
|
44
|
+
'abstract-14': 2,
|
|
45
|
+
'abstract-28': 2,
|
|
46
|
+
'abstract-4': 2,
|
|
47
|
+
'abstract-5': 2,
|
|
48
|
+
'abstract-29': 2,
|
|
49
|
+
'abstract-15': 2,
|
|
50
|
+
'abstract-17': 2,
|
|
51
|
+
'abstract-7': 2,
|
|
52
|
+
'abstract-6': 0,
|
|
53
|
+
'abstract-16': 2,
|
|
54
|
+
'toggle-on': 2,
|
|
55
|
+
'toggle-on-circle': 2,
|
|
56
|
+
'toggle-off': 2,
|
|
57
|
+
category: 4,
|
|
58
|
+
setting: 2,
|
|
59
|
+
'toggle-off-circle': 2,
|
|
60
|
+
'more-2': 4,
|
|
61
|
+
'setting-4': 0,
|
|
62
|
+
'setting-2': 2,
|
|
63
|
+
'setting-3': 5,
|
|
64
|
+
eraser: 3,
|
|
65
|
+
paintbucket: 3,
|
|
66
|
+
'add-item': 3,
|
|
67
|
+
'design-2': 2,
|
|
68
|
+
brush: 2,
|
|
69
|
+
size: 2,
|
|
70
|
+
design: 2,
|
|
71
|
+
copy: 0,
|
|
72
|
+
text: 0,
|
|
73
|
+
'design-frame': 2,
|
|
74
|
+
bucket: 4,
|
|
75
|
+
glass: 3,
|
|
76
|
+
feather: 2,
|
|
77
|
+
pencil: 2,
|
|
78
|
+
'colors-square': 4,
|
|
79
|
+
'design-mask': 2,
|
|
80
|
+
'bucket-square': 3,
|
|
81
|
+
'copy-success': 2,
|
|
82
|
+
'color-swatch': 21,
|
|
83
|
+
instagram: 2,
|
|
84
|
+
snapchat: 2,
|
|
85
|
+
classmates: 2,
|
|
86
|
+
facebook: 2,
|
|
87
|
+
whatsapp: 2,
|
|
88
|
+
'social-media': 2,
|
|
89
|
+
youtube: 2,
|
|
90
|
+
dribbble: 6,
|
|
91
|
+
twitter: 2,
|
|
92
|
+
tiktok: 2,
|
|
93
|
+
behance: 2,
|
|
94
|
+
underlining: 3,
|
|
95
|
+
disconnect: 5,
|
|
96
|
+
code: 4,
|
|
97
|
+
gear: 2,
|
|
98
|
+
loading: 2,
|
|
99
|
+
scroll: 3,
|
|
100
|
+
wrench: 2,
|
|
101
|
+
'square-brackets': 4,
|
|
102
|
+
frame: 4,
|
|
103
|
+
'message-programming': 4,
|
|
104
|
+
data: 5,
|
|
105
|
+
fasten: 2,
|
|
106
|
+
click: 5,
|
|
107
|
+
'tech-wifi': 2,
|
|
108
|
+
joystick: 4,
|
|
109
|
+
faceid: 6,
|
|
110
|
+
'technology-3': 4,
|
|
111
|
+
'technology-2': 2,
|
|
112
|
+
electricity: 10,
|
|
113
|
+
'fingerprint-scanning': 5,
|
|
114
|
+
'technology-4': 7,
|
|
115
|
+
'artificial-intelligence': 8,
|
|
116
|
+
technology: 9,
|
|
117
|
+
'basket-ok': 4,
|
|
118
|
+
cheque: 7,
|
|
119
|
+
handcart: 0,
|
|
120
|
+
shop: 5,
|
|
121
|
+
tag: 3,
|
|
122
|
+
purchase: 2,
|
|
123
|
+
discount: 2,
|
|
124
|
+
package: 3,
|
|
125
|
+
percentage: 2,
|
|
126
|
+
barcode: 8,
|
|
127
|
+
'lots-shopping': 8,
|
|
128
|
+
basket: 4,
|
|
129
|
+
'book-square': 3,
|
|
130
|
+
'receipt-square': 2,
|
|
131
|
+
'save-2': 2,
|
|
132
|
+
'archive-tick': 2,
|
|
133
|
+
'shield-search': 3,
|
|
134
|
+
'password-check': 5,
|
|
135
|
+
'shield-tick': 2,
|
|
136
|
+
lock: 3,
|
|
137
|
+
key: 2,
|
|
138
|
+
shield: 2,
|
|
139
|
+
'shield-cross': 3,
|
|
140
|
+
'key-square': 2,
|
|
141
|
+
'eye-slash': 4,
|
|
142
|
+
'security-check': 4,
|
|
143
|
+
'lock-3': 3,
|
|
144
|
+
'scan-barcode': 8,
|
|
145
|
+
'lock-2': 5,
|
|
146
|
+
eye: 3,
|
|
147
|
+
'shield-slash': 3,
|
|
148
|
+
'security-user': 2,
|
|
149
|
+
triangle: 3,
|
|
150
|
+
subtitle: 5,
|
|
151
|
+
ghost: 3,
|
|
152
|
+
information: 3,
|
|
153
|
+
milk: 3,
|
|
154
|
+
home: 0,
|
|
155
|
+
'happy-emoji': 2,
|
|
156
|
+
'mouse-square': 2,
|
|
157
|
+
'filter-tick': 2,
|
|
158
|
+
'filter-search': 3,
|
|
159
|
+
'wifi-home': 4,
|
|
160
|
+
'trash-square': 4,
|
|
161
|
+
'paper-clip': 0,
|
|
162
|
+
archive: 3,
|
|
163
|
+
pin: 2,
|
|
164
|
+
'wifi-square': 4,
|
|
165
|
+
'auto-brightness': 3,
|
|
166
|
+
coffee: 6,
|
|
167
|
+
icon: 3,
|
|
168
|
+
'emoji-happy': 4,
|
|
169
|
+
'general-mouse': 2,
|
|
170
|
+
ranking: 4,
|
|
171
|
+
slider: 4,
|
|
172
|
+
'crown-2': 3,
|
|
173
|
+
rescue: 2,
|
|
174
|
+
'flash-circle': 2,
|
|
175
|
+
'safe-home': 2,
|
|
176
|
+
'cloud-change': 3,
|
|
177
|
+
crown: 2,
|
|
178
|
+
'filter-edit': 2,
|
|
179
|
+
picture: 2,
|
|
180
|
+
verify: 2,
|
|
181
|
+
send: 2,
|
|
182
|
+
'tag-cross': 3,
|
|
183
|
+
'cloud-add': 2,
|
|
184
|
+
'home-3': 2,
|
|
185
|
+
disk: 2,
|
|
186
|
+
trash: 5,
|
|
187
|
+
star: 0,
|
|
188
|
+
cd: 2,
|
|
189
|
+
'home-2': 2,
|
|
190
|
+
'mouse-circle': 2,
|
|
191
|
+
'home-1': 2,
|
|
192
|
+
call: 8,
|
|
193
|
+
gift: 4,
|
|
194
|
+
share: 6,
|
|
195
|
+
sort: 4,
|
|
196
|
+
magnifier: 2,
|
|
197
|
+
'filter-square': 2,
|
|
198
|
+
tree: 3,
|
|
199
|
+
filter: 2,
|
|
200
|
+
switch: 2,
|
|
201
|
+
cloud: 0,
|
|
202
|
+
cup: 2,
|
|
203
|
+
diamonds: 2,
|
|
204
|
+
status: 3,
|
|
205
|
+
rocket: 2,
|
|
206
|
+
'cloud-download': 2,
|
|
207
|
+
menu: 4,
|
|
208
|
+
chrome: 2,
|
|
209
|
+
'geolocation-home': 2,
|
|
210
|
+
map: 3,
|
|
211
|
+
'telephone-geolocation': 3,
|
|
212
|
+
satellite: 6,
|
|
213
|
+
flag: 2,
|
|
214
|
+
focus: 2,
|
|
215
|
+
pointers: 3,
|
|
216
|
+
compass: 2,
|
|
217
|
+
route: 4,
|
|
218
|
+
geolocation: 2,
|
|
219
|
+
'brifecase-timer': 3,
|
|
220
|
+
briefcase: 2,
|
|
221
|
+
clipboard: 3,
|
|
222
|
+
'bookmark-2': 2,
|
|
223
|
+
note: 2,
|
|
224
|
+
'note-2': 4,
|
|
225
|
+
'book-open': 4,
|
|
226
|
+
book: 4,
|
|
227
|
+
teacher: 2,
|
|
228
|
+
award: 3,
|
|
229
|
+
'brifecase-tick': 3,
|
|
230
|
+
'brifecase-cros': 3,
|
|
231
|
+
bookmark: 2,
|
|
232
|
+
'chart-line': 2,
|
|
233
|
+
chart: 2,
|
|
234
|
+
'graph-3': 2,
|
|
235
|
+
'chart-pie-3': 3,
|
|
236
|
+
'graph-2': 3,
|
|
237
|
+
'chart-line-down': 2,
|
|
238
|
+
'chart-pie-too': 2,
|
|
239
|
+
'chart-pie-4': 3,
|
|
240
|
+
'chart-line-down-2': 3,
|
|
241
|
+
'graph-4': 2,
|
|
242
|
+
'chart-line-up-2': 2,
|
|
243
|
+
badge: 5,
|
|
244
|
+
'chart-line-up': 2,
|
|
245
|
+
'chart-simple-3': 4,
|
|
246
|
+
'chart-pie-simple': 2,
|
|
247
|
+
'chart-simple-2': 4,
|
|
248
|
+
'graph-up': 6,
|
|
249
|
+
'chart-line-star': 3,
|
|
250
|
+
graph: 4,
|
|
251
|
+
'chart-simple': 4,
|
|
252
|
+
'tablet-delete': 3,
|
|
253
|
+
'file-added': 2,
|
|
254
|
+
'file-up': 2,
|
|
255
|
+
'minus-folder': 2,
|
|
256
|
+
file: 2,
|
|
257
|
+
'delete-files': 2,
|
|
258
|
+
'add-folder': 2,
|
|
259
|
+
'file-left': 2,
|
|
260
|
+
'file-deleted': 2,
|
|
261
|
+
'some-files': 2,
|
|
262
|
+
'file-right': 2,
|
|
263
|
+
notepad: 5,
|
|
264
|
+
'notepad-bookmark': 6,
|
|
265
|
+
document: 2,
|
|
266
|
+
'like-folder': 2,
|
|
267
|
+
'folder-up': 2,
|
|
268
|
+
'folder-added': 2,
|
|
269
|
+
'file-down': 2,
|
|
270
|
+
'filter-tablet': 2,
|
|
271
|
+
'tablet-book': 2,
|
|
272
|
+
'update-file': 4,
|
|
273
|
+
'add-notepad': 4,
|
|
274
|
+
'questionnaire-tablet': 2,
|
|
275
|
+
'tablet-up': 3,
|
|
276
|
+
'tablet-ok': 3,
|
|
277
|
+
'update-folder': 2,
|
|
278
|
+
'files-tablet': 2,
|
|
279
|
+
'folder-down': 2,
|
|
280
|
+
'notepad-edit': 2,
|
|
281
|
+
'tablet-text-up': 2,
|
|
282
|
+
'search-list': 3,
|
|
283
|
+
'tablet-text-down': 4,
|
|
284
|
+
'add-files': 3,
|
|
285
|
+
'tablet-down': 3,
|
|
286
|
+
'delete-folder': 2,
|
|
287
|
+
folder: 2,
|
|
288
|
+
'file-sheet': 2,
|
|
289
|
+
bootstrap: 3,
|
|
290
|
+
figma: 5,
|
|
291
|
+
dropbox: 5,
|
|
292
|
+
xaomi: 2,
|
|
293
|
+
microsoft: 4,
|
|
294
|
+
android: 6,
|
|
295
|
+
vue: 2,
|
|
296
|
+
js: 2,
|
|
297
|
+
'spring-framework': 0,
|
|
298
|
+
github: 2,
|
|
299
|
+
dj: 0,
|
|
300
|
+
'google-play': 2,
|
|
301
|
+
angular: 3,
|
|
302
|
+
'soft-3': 2,
|
|
303
|
+
python: 2,
|
|
304
|
+
'soft-2': 2,
|
|
305
|
+
ts: 3,
|
|
306
|
+
xd: 3,
|
|
307
|
+
spotify: 2,
|
|
308
|
+
'js-2': 2,
|
|
309
|
+
laravel: 7,
|
|
310
|
+
css: 2,
|
|
311
|
+
google: 2,
|
|
312
|
+
photoshop: 2,
|
|
313
|
+
twitch: 3,
|
|
314
|
+
illustrator: 4,
|
|
315
|
+
pails: 9,
|
|
316
|
+
react: 2,
|
|
317
|
+
html: 2,
|
|
318
|
+
slack: 8,
|
|
319
|
+
soft: 6,
|
|
320
|
+
yii: 3,
|
|
321
|
+
apple: 2,
|
|
322
|
+
vuesax: 3,
|
|
323
|
+
'calendar-add': 6,
|
|
324
|
+
'calendar-search': 4,
|
|
325
|
+
'calendar-2': 5,
|
|
326
|
+
'calendar-tick': 6,
|
|
327
|
+
time: 2,
|
|
328
|
+
watch: 2,
|
|
329
|
+
'calendar-edit': 3,
|
|
330
|
+
calendar: 2,
|
|
331
|
+
'calendar-8': 6,
|
|
332
|
+
timer: 3,
|
|
333
|
+
'calendar-remove': 6,
|
|
334
|
+
'heart-circle': 2,
|
|
335
|
+
like: 2,
|
|
336
|
+
'information-4': 3,
|
|
337
|
+
'information-5': 3,
|
|
338
|
+
'information-2': 3,
|
|
339
|
+
'information-3': 3,
|
|
340
|
+
question: 3,
|
|
341
|
+
dislike: 2,
|
|
342
|
+
'message-question': 3,
|
|
343
|
+
'medal-star': 4,
|
|
344
|
+
'like-tag': 2,
|
|
345
|
+
'like-2': 2,
|
|
346
|
+
'support-24': 3,
|
|
347
|
+
'question-2': 3,
|
|
348
|
+
lovely: 2,
|
|
349
|
+
'like-shapes': 2,
|
|
350
|
+
heart: 2,
|
|
351
|
+
user: 2,
|
|
352
|
+
'user-square': 3,
|
|
353
|
+
'user-tick': 3,
|
|
354
|
+
people: 5,
|
|
355
|
+
'user-edit': 3,
|
|
356
|
+
'profile-user': 4,
|
|
357
|
+
'profile-circle': 3,
|
|
358
|
+
capsule: 2,
|
|
359
|
+
virus: 3,
|
|
360
|
+
bandage: 2,
|
|
361
|
+
thermometer: 2,
|
|
362
|
+
flask: 2,
|
|
363
|
+
'test-tubes': 2,
|
|
364
|
+
syringe: 3,
|
|
365
|
+
mask: 3,
|
|
366
|
+
pill: 0,
|
|
367
|
+
pulse: 2,
|
|
368
|
+
'burger-menu': 4,
|
|
369
|
+
'burger-menu-6': 0,
|
|
370
|
+
'burger-menu-5': 0,
|
|
371
|
+
'burger-menu-4': 0,
|
|
372
|
+
'burger-menu-1': 4,
|
|
373
|
+
'burger-menu-3': 9,
|
|
374
|
+
'burger-menu-2': 10,
|
|
375
|
+
'text-align-center': 4,
|
|
376
|
+
'text-italic': 4,
|
|
377
|
+
'text-bold': 3,
|
|
378
|
+
'text-strikethrough': 3,
|
|
379
|
+
'text-underline': 3,
|
|
380
|
+
'text-number': 6,
|
|
381
|
+
'text-align-left': 4,
|
|
382
|
+
'text-align-right': 4,
|
|
383
|
+
'text-circle': 6,
|
|
384
|
+
'text-align-justify-center': 4,
|
|
385
|
+
theta: 2,
|
|
386
|
+
dollar: 3,
|
|
387
|
+
binance: 5,
|
|
388
|
+
nexo: 2,
|
|
389
|
+
euro: 3,
|
|
390
|
+
avalanche: 2,
|
|
391
|
+
bitcoin: 2,
|
|
392
|
+
wallet: 4,
|
|
393
|
+
'price-tag': 3,
|
|
394
|
+
'finance-calculator': 7,
|
|
395
|
+
dash: 2,
|
|
396
|
+
lts: 2,
|
|
397
|
+
vibe: 2,
|
|
398
|
+
'credit-cart': 2,
|
|
399
|
+
paypal: 2,
|
|
400
|
+
bill: 6,
|
|
401
|
+
ocean: 19,
|
|
402
|
+
celsius: 2,
|
|
403
|
+
educare: 4,
|
|
404
|
+
'enjin-coin': 2,
|
|
405
|
+
'two-credit-cart': 5,
|
|
406
|
+
bank: 2,
|
|
407
|
+
'binance-usd': 4,
|
|
408
|
+
wanchain: 2,
|
|
409
|
+
trello: 3,
|
|
410
|
+
'save-deposit': 4,
|
|
411
|
+
xmr: 2,
|
|
412
|
+
'financial-schedule': 4,
|
|
413
|
+
'office-bag': 4,
|
|
414
|
+
'night-day': 10,
|
|
415
|
+
sun: 9,
|
|
416
|
+
drop: 2,
|
|
417
|
+
moon: 2,
|
|
418
|
+
'exit-right-corner': 2,
|
|
419
|
+
'dots-circle-vertical': 4,
|
|
420
|
+
'check-square': 2,
|
|
421
|
+
'right-left': 3,
|
|
422
|
+
'arrow-down': 2,
|
|
423
|
+
'dots-horizontal': 3,
|
|
424
|
+
'arrow-right-left': 2,
|
|
425
|
+
'up-down': 3,
|
|
426
|
+
'double-check': 2,
|
|
427
|
+
'arrow-up-left': 2,
|
|
428
|
+
down: 0,
|
|
429
|
+
'exit-up': 2,
|
|
430
|
+
'up-square': 2,
|
|
431
|
+
'down-square': 2,
|
|
432
|
+
'plus-square': 3,
|
|
433
|
+
'dots-circle': 4,
|
|
434
|
+
'arrow-down-left': 2,
|
|
435
|
+
'double-check-circle': 3,
|
|
436
|
+
up: 0,
|
|
437
|
+
'entrance-right': 2,
|
|
438
|
+
'arrow-right': 2,
|
|
439
|
+
'arrow-two-diagonals': 5,
|
|
440
|
+
'minus-square': 2,
|
|
441
|
+
'arrow-diagonal': 3,
|
|
442
|
+
'black-left': 0,
|
|
443
|
+
'arrow-down-refraction': 2,
|
|
444
|
+
'black-right': 0,
|
|
445
|
+
'double-left': 2,
|
|
446
|
+
'arrow-circle-left': 2,
|
|
447
|
+
'arrow-zigzag': 2,
|
|
448
|
+
plus: 0,
|
|
449
|
+
check: 0,
|
|
450
|
+
'exit-left': 2,
|
|
451
|
+
'arrow-circle-right': 2,
|
|
452
|
+
'cross-square': 2,
|
|
453
|
+
'entrance-left': 2,
|
|
454
|
+
'left-square': 2,
|
|
455
|
+
'arrows-loop': 2,
|
|
456
|
+
'black-left-line': 2,
|
|
457
|
+
'double-left-arrow': 2,
|
|
458
|
+
'check-circle': 2,
|
|
459
|
+
right: 0,
|
|
460
|
+
'dots-square-vertical': 4,
|
|
461
|
+
'arrow-up-right': 2,
|
|
462
|
+
'exit-down': 2,
|
|
463
|
+
'dots-square': 4,
|
|
464
|
+
'to-left': 0,
|
|
465
|
+
'double-down': 3,
|
|
466
|
+
'plus-circle': 2,
|
|
467
|
+
'black-down': 0,
|
|
468
|
+
'double-up': 3,
|
|
469
|
+
'black-up': 0,
|
|
470
|
+
'double-right-arrow': 2,
|
|
471
|
+
'arrow-up': 2,
|
|
472
|
+
'black-right-line': 2,
|
|
473
|
+
'arrow-up-refraction': 2,
|
|
474
|
+
'arrow-left': 2,
|
|
475
|
+
cross: 2,
|
|
476
|
+
'minus-circle': 2,
|
|
477
|
+
'arrow-down-right': 2,
|
|
478
|
+
'exit-right': 2,
|
|
479
|
+
'to-right': 0,
|
|
480
|
+
'double-right': 2,
|
|
481
|
+
'arrow-mix': 2,
|
|
482
|
+
'right-square': 2,
|
|
483
|
+
'arrows-circle': 2,
|
|
484
|
+
'cross-circle': 2,
|
|
485
|
+
left: 0,
|
|
486
|
+
minus: 0,
|
|
487
|
+
'dots-vertical': 3,
|
|
488
|
+
'arrow-up-down': 2,
|
|
489
|
+
'message-text-2': 3,
|
|
490
|
+
'message-notif': 5,
|
|
491
|
+
'message-add': 3,
|
|
492
|
+
sms: 2,
|
|
493
|
+
'directbox-default': 4,
|
|
494
|
+
'message-text': 3,
|
|
495
|
+
messages: 5,
|
|
496
|
+
'address-book': 3,
|
|
497
|
+
'message-edit': 2,
|
|
498
|
+
'message-minus': 2,
|
|
499
|
+
'notification-circle': 2,
|
|
500
|
+
'notification-favorite': 3,
|
|
501
|
+
'notification-2': 2,
|
|
502
|
+
notification: 3,
|
|
503
|
+
'notification-bing': 3,
|
|
504
|
+
'notification-status': 4,
|
|
505
|
+
'notification-on': 5,
|
|
506
|
+
'scooter-2': 0,
|
|
507
|
+
parcel: 5,
|
|
508
|
+
'delivery-time': 5,
|
|
509
|
+
delivery: 5,
|
|
510
|
+
'delivery-24': 4,
|
|
511
|
+
ship: 3,
|
|
512
|
+
courier: 3,
|
|
513
|
+
logistic: 7,
|
|
514
|
+
trailer: 5,
|
|
515
|
+
'car-2': 6,
|
|
516
|
+
'car-3': 3,
|
|
517
|
+
'airplane-square': 2,
|
|
518
|
+
scooter: 7,
|
|
519
|
+
truck: 5,
|
|
520
|
+
'cube-3': 2,
|
|
521
|
+
bus: 5,
|
|
522
|
+
'cube-2': 3,
|
|
523
|
+
'delivery-door': 4,
|
|
524
|
+
'delivery-3': 3,
|
|
525
|
+
'delivery-2': 9,
|
|
526
|
+
car: 5,
|
|
527
|
+
'courier-express': 7,
|
|
528
|
+
airplane: 2,
|
|
529
|
+
'delivery-geolocation': 5,
|
|
530
|
+
'parcel-tracking': 3,
|
|
531
|
+
'monitor-mobile': 2,
|
|
532
|
+
devices: 5,
|
|
533
|
+
keyboard: 2,
|
|
534
|
+
'devices-2': 3,
|
|
535
|
+
bluetooth: 2,
|
|
536
|
+
wifi: 4,
|
|
537
|
+
airpod: 3,
|
|
538
|
+
'simcard-2': 2,
|
|
539
|
+
speaker: 3,
|
|
540
|
+
printer: 5,
|
|
541
|
+
simcard: 5,
|
|
542
|
+
router: 2,
|
|
543
|
+
phone: 2,
|
|
544
|
+
'electronic-clock': 4,
|
|
545
|
+
'external-drive': 5,
|
|
546
|
+
laptop: 2,
|
|
547
|
+
tablet: 3,
|
|
548
|
+
screen: 4,
|
|
549
|
+
calculator: 6,
|
|
550
|
+
mouse: 2,
|
|
551
|
+
grid: 2,
|
|
552
|
+
'slider-vertical-2': 3,
|
|
553
|
+
maximize: 5,
|
|
554
|
+
'slider-vertical': 3,
|
|
555
|
+
'row-horizontal': 2,
|
|
556
|
+
kanban: 2,
|
|
557
|
+
'row-vertical': 2,
|
|
558
|
+
'fat-rows': 2,
|
|
559
|
+
'grid-2': 2,
|
|
560
|
+
'element-8': 2,
|
|
561
|
+
'element-9': 2,
|
|
562
|
+
'element-12': 3,
|
|
563
|
+
'element-4': 2,
|
|
564
|
+
'element-5': 2,
|
|
565
|
+
'grid-frame': 3,
|
|
566
|
+
'element-11': 4,
|
|
567
|
+
'element-7': 2,
|
|
568
|
+
'element-6': 2,
|
|
569
|
+
'element-10': 3,
|
|
570
|
+
'element-2': 2,
|
|
571
|
+
'element-3': 2,
|
|
572
|
+
'element-equal': 5,
|
|
573
|
+
'element-1': 4,
|
|
574
|
+
'slider-horizontal-2': 3,
|
|
575
|
+
'slider-horizontal': 3,
|
|
576
|
+
'element-plus': 5,
|
|
577
|
+
};
|
|
578
|
+
exports.default = icons;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from './AssetHelpers';
|
|
2
|
+
export * from './RouterHelpers';
|
|
3
|
+
export * from './components/KTSVG';
|
|
4
|
+
export * from './components/KTIcon';
|
|
5
|
+
export * from './components/KTCard';
|
|
6
|
+
export * from './components/KTCardBody';
|
|
7
|
+
export * from './dataExamples';
|
|
8
|
+
export * from './crud-helper/helpers';
|
|
9
|
+
export * from './crud-helper/models';
|
|
10
|
+
export * from './crud-helper/consts';
|
|
11
|
+
export * from './react18MigrationHelpers';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./AssetHelpers"), exports);
|
|
18
|
+
__exportStar(require("./RouterHelpers"), exports);
|
|
19
|
+
__exportStar(require("./components/KTSVG"), exports);
|
|
20
|
+
__exportStar(require("./components/KTIcon"), exports);
|
|
21
|
+
__exportStar(require("./components/KTCard"), exports);
|
|
22
|
+
__exportStar(require("./components/KTCardBody"), exports);
|
|
23
|
+
__exportStar(require("./dataExamples"), exports);
|
|
24
|
+
__exportStar(require("./crud-helper/helpers"), exports);
|
|
25
|
+
__exportStar(require("./crud-helper/models"), exports);
|
|
26
|
+
__exportStar(require("./crud-helper/consts"), exports);
|
|
27
|
+
__exportStar(require("./react18MigrationHelpers"), exports);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.reInitMenu = void 0;
|
|
4
|
+
var components_1 = require("../assets/ts/components");
|
|
5
|
+
var reInitMenu = function () {
|
|
6
|
+
setTimeout(function () {
|
|
7
|
+
components_1.MenuComponent.reinitialization();
|
|
8
|
+
}, 500);
|
|
9
|
+
};
|
|
10
|
+
exports.reInitMenu = reInitMenu;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { WithChildren } from '../helpers';
|
|
3
|
+
export declare function setLanguage(lang: string): void;
|
|
4
|
+
declare const useLang: () => "fr" | "de" | "en" | "es" | "ja" | "zh";
|
|
5
|
+
declare const MetronicI18nProvider: FC<WithChildren>;
|
|
6
|
+
export { MetronicI18nProvider, useLang };
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.useLang = exports.MetronicI18nProvider = exports.setLanguage = void 0;
|
|
27
|
+
var react_1 = __importStar(require("react"));
|
|
28
|
+
//Get config from token injection
|
|
29
|
+
var fromVariable = 'i18nConfig';
|
|
30
|
+
var I18N_CONFIG_KEY = fromVariable || 'i18nConfig';
|
|
31
|
+
var initialState = {
|
|
32
|
+
selectedLang: 'es',
|
|
33
|
+
};
|
|
34
|
+
function getConfig() {
|
|
35
|
+
var ls = localStorage.getItem(I18N_CONFIG_KEY);
|
|
36
|
+
if (ls) {
|
|
37
|
+
try {
|
|
38
|
+
return JSON.parse(ls);
|
|
39
|
+
}
|
|
40
|
+
catch (er) {
|
|
41
|
+
console.error(er);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
return initialState;
|
|
45
|
+
}
|
|
46
|
+
// Side effect
|
|
47
|
+
function setLanguage(lang) {
|
|
48
|
+
localStorage.setItem(I18N_CONFIG_KEY, JSON.stringify({ selectedLang: lang }));
|
|
49
|
+
window.location.reload();
|
|
50
|
+
}
|
|
51
|
+
exports.setLanguage = setLanguage;
|
|
52
|
+
var I18nContext = (0, react_1.createContext)(initialState);
|
|
53
|
+
var useLang = function () {
|
|
54
|
+
return (0, react_1.useContext)(I18nContext).selectedLang;
|
|
55
|
+
};
|
|
56
|
+
exports.useLang = useLang;
|
|
57
|
+
var MetronicI18nProvider = function (_a) {
|
|
58
|
+
var children = _a.children;
|
|
59
|
+
var lang = getConfig();
|
|
60
|
+
return react_1.default.createElement(I18nContext.Provider, { value: lang }, children);
|
|
61
|
+
};
|
|
62
|
+
exports.MetronicI18nProvider = MetronicI18nProvider;
|