@canmingir/link 1.1.7 → 1.2.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/.eslintrc.json +13 -4
- package/.idea/codeStyles/Project.xml +84 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/copilot.data.migration.agent.xml +6 -0
- package/.idea/copilot.data.migration.ask.xml +6 -0
- package/.idea/copilot.data.migration.ask2agent.xml +6 -0
- package/.idea/copilot.data.migration.edit.xml +6 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/platform.iml +9 -0
- package/.idea/vcs.xml +6 -0
- package/.storybook/main.js +15 -0
- package/.storybook/preview.js +17 -0
- package/.storybook/vitest.setup.js +6 -0
- package/cypress.config.js +11 -0
- package/package.json +22 -8
- package/src/RouteManager/RouteManager.jsx +1 -0
- package/src/components/MiniTopBar/MiniTopBar.jsx +6 -1
- package/src/components/Sidebar/Sidebar.jsx +2 -2
- package/src/components/animate/index.js +0 -2
- package/src/components/animate/motion-container.jsx +0 -2
- package/src/components/animate/motion-lazy.jsx +0 -2
- package/src/components/animate/motion-viewport.jsx +0 -2
- package/src/components/animate/variants/actions.js +0 -2
- package/src/components/animate/variants/background.js +0 -6
- package/src/components/animate/variants/bounce.js +0 -4
- package/src/components/animate/variants/container.js +0 -2
- package/src/components/animate/variants/fade.js +0 -4
- package/src/components/animate/variants/flip.js +0 -4
- package/src/components/animate/variants/path.js +0 -2
- package/src/components/animate/variants/rotate.js +0 -4
- package/src/components/animate/variants/scale.js +0 -4
- package/src/components/animate/variants/slide.js +0 -4
- package/src/components/animate/variants/transition.js +0 -2
- package/src/components/animate/variants/zoom.js +0 -4
- package/src/components/custom-popover/custom-popover.jsx +0 -2
- package/src/components/file-thumbnail/download-button.jsx +0 -2
- package/src/components/file-thumbnail/file-thumbnail.jsx +0 -2
- package/src/components/image/image.jsx +0 -2
- package/src/components/label/label.jsx +0 -2
- package/src/components/loading-screen/loading-screen.jsx +0 -2
- package/src/components/loading-screen/splash-screen.jsx +0 -2
- package/src/components/logo/logo.jsx +15 -17
- package/src/components/nav-section/horizontal/nav-item.jsx +0 -6
- package/src/components/nav-section/horizontal/nav-list.jsx +0 -7
- package/src/components/nav-section/horizontal/nav-section-horizontal.jsx +0 -4
- package/src/components/nav-section/mini/nav-item.jsx +0 -7
- package/src/components/nav-section/mini/nav-list.jsx +0 -7
- package/src/components/nav-section/mini/nav-section-mini.jsx +0 -4
- package/src/components/nav-section/vertical/nav-item.jsx +0 -8
- package/src/components/nav-section/vertical/nav-list.jsx +0 -7
- package/src/components/nav-section/vertical/nav-section-vertical.jsx +0 -4
- package/src/components/scrollbar/scrollbar.jsx +0 -2
- package/src/components/search-not-found/search-not-found.jsx +0 -2
- package/src/components/settings/context/settings-provider.jsx +0 -6
- package/src/components/settings/drawer/base-option.jsx +0 -2
- package/src/components/settings/drawer/fullscreen-option.jsx +0 -2
- package/src/components/settings/drawer/layout-options.jsx +0 -2
- package/src/components/settings/drawer/presets-options.jsx +0 -2
- package/src/components/settings/drawer/settings-drawer.jsx +0 -2
- package/src/components/settings/drawer/stretch-options.jsx +0 -2
- package/src/components/svg-color/svg-color.jsx +0 -2
- package/src/config/schemas.js +8 -0
- package/src/http/user.js +21 -35
- package/src/layouts/DashboardLayout/header.jsx +3 -5
- package/{components → src/lib}/IconSelector/IconSelector.jsx +4 -3
- package/src/lib/Iconify/Iconify.jsx +17 -0
- package/src/lib/Iconify/index.js +1 -0
- package/{components → src/lib}/ItemSummary/ItemSummary.jsx +1 -1
- package/{components → src/lib}/ItemSummary/ItemsSummary.jsx +1 -1
- package/{components → src/lib}/ProjectWizard.jsx +6 -6
- package/{minimal/src/components/svg-color/svg-color.jsx → src/lib/SvgColor/SvgColor.jsx} +5 -8
- package/src/lib/SvgColor/index.js +1 -0
- package/src/lib/index.js +10 -0
- package/src/pages/Callback.jsx +63 -13
- package/src/stories/Iconify.stories.jsx +183 -0
- package/src/stories/Label.stories.jsx +447 -0
- package/src/stories/Navbar.stories.jsx +588 -0
- package/src/widgets/SettingsDialog.jsx +6 -6
- package/vite.config.js +7 -0
- package/vitest.config.js +32 -0
- package/commands/index.js +0 -111
- package/commands/user.json +0 -34
- package/components/index.js +0 -2
- package/cypress/cypress.js +0 -12
- package/minimal/.editorconfig +0 -9
- package/minimal/.eslintignore +0 -22
- package/minimal/.prettierignore +0 -9
- package/minimal/.prettierrc +0 -6
- package/minimal/README.md +0 -13
- package/minimal/index.html +0 -44
- package/minimal/jsconfig.json +0 -5
- package/minimal/package-lock.json +0 -20845
- package/minimal/package.json +0 -104
- package/minimal/public/_redirects +0 -1
- package/minimal/public/assets/background/overlay_1.svg +0 -1
- package/minimal/public/assets/background/overlay_2.jpg +0 -0
- package/minimal/public/assets/background/overlay_3.jpg +0 -0
- package/minimal/public/assets/background/overlay_4.jpg +0 -0
- package/minimal/public/assets/cyan-blur.png +0 -0
- package/minimal/public/assets/icons/app/ic_chrome.svg +0 -6
- package/minimal/public/assets/icons/app/ic_drive.svg +0 -5
- package/minimal/public/assets/icons/app/ic_dropbox.svg +0 -3
- package/minimal/public/assets/icons/app/ic_evernote.svg +0 -3
- package/minimal/public/assets/icons/app/ic_github.svg +0 -3
- package/minimal/public/assets/icons/app/ic_onedrive.svg +0 -4
- package/minimal/public/assets/icons/auth/ic_amplify.svg +0 -12
- package/minimal/public/assets/icons/auth/ic_auth0.svg +0 -5
- package/minimal/public/assets/icons/auth/ic_firebase.svg +0 -12
- package/minimal/public/assets/icons/auth/ic_jwt.svg +0 -15
- package/minimal/public/assets/icons/brands/ic_brand_amazon.svg +0 -3
- package/minimal/public/assets/icons/brands/ic_brand_hbo.svg +0 -3
- package/minimal/public/assets/icons/brands/ic_brand_ibm.svg +0 -3
- package/minimal/public/assets/icons/brands/ic_brand_lya.svg +0 -3
- package/minimal/public/assets/icons/brands/ic_brand_netflix.svg +0 -3
- package/minimal/public/assets/icons/brands/ic_brand_spotify.svg +0 -3
- package/minimal/public/assets/icons/components/ic_accordion.svg +0 -11
- package/minimal/public/assets/icons/components/ic_alert.svg +0 -6
- package/minimal/public/assets/icons/components/ic_autocomplete.svg +0 -8
- package/minimal/public/assets/icons/components/ic_avatar.svg +0 -4
- package/minimal/public/assets/icons/components/ic_badge.svg +0 -7
- package/minimal/public/assets/icons/components/ic_breadcrumbs.svg +0 -4
- package/minimal/public/assets/icons/components/ic_buttons.svg +0 -4
- package/minimal/public/assets/icons/components/ic_checkbox.svg +0 -4
- package/minimal/public/assets/icons/components/ic_chip.svg +0 -5
- package/minimal/public/assets/icons/components/ic_colors.svg +0 -5
- package/minimal/public/assets/icons/components/ic_data_grid.svg +0 -12
- package/minimal/public/assets/icons/components/ic_dialog.svg +0 -8
- package/minimal/public/assets/icons/components/ic_extra_animate.svg +0 -26
- package/minimal/public/assets/icons/components/ic_extra_carousel.svg +0 -98
- package/minimal/public/assets/icons/components/ic_extra_chart.svg +0 -60
- package/minimal/public/assets/icons/components/ic_extra_copy_to_clipboard.svg +0 -24
- package/minimal/public/assets/icons/components/ic_extra_editor.svg +0 -45
- package/minimal/public/assets/icons/components/ic_extra_form_validation.svg +0 -112
- package/minimal/public/assets/icons/components/ic_extra_image.svg +0 -59
- package/minimal/public/assets/icons/components/ic_extra_label.svg +0 -40
- package/minimal/public/assets/icons/components/ic_extra_lightbox.svg +0 -97
- package/minimal/public/assets/icons/components/ic_extra_map.svg +0 -60
- package/minimal/public/assets/icons/components/ic_extra_markdown.svg +0 -40
- package/minimal/public/assets/icons/components/ic_extra_mega_menu.svg +0 -120
- package/minimal/public/assets/icons/components/ic_extra_multi_language.svg +0 -59
- package/minimal/public/assets/icons/components/ic_extra_navigation_bar.svg +0 -122
- package/minimal/public/assets/icons/components/ic_extra_organization_chart.svg +0 -101
- package/minimal/public/assets/icons/components/ic_extra_scroll.svg +0 -67
- package/minimal/public/assets/icons/components/ic_extra_scroll_progress.svg +0 -46
- package/minimal/public/assets/icons/components/ic_extra_snackbar.svg +0 -47
- package/minimal/public/assets/icons/components/ic_extra_text_max_line.svg +0 -100
- package/minimal/public/assets/icons/components/ic_extra_upload.svg +0 -40
- package/minimal/public/assets/icons/components/ic_grid.svg +0 -8
- package/minimal/public/assets/icons/components/ic_icons.svg +0 -4
- package/minimal/public/assets/icons/components/ic_list.svg +0 -12
- package/minimal/public/assets/icons/components/ic_menu.svg +0 -7
- package/minimal/public/assets/icons/components/ic_pagination.svg +0 -6
- package/minimal/public/assets/icons/components/ic_pickers.svg +0 -18
- package/minimal/public/assets/icons/components/ic_popover.svg +0 -6
- package/minimal/public/assets/icons/components/ic_progress.svg +0 -4
- package/minimal/public/assets/icons/components/ic_radio_button.svg +0 -4
- package/minimal/public/assets/icons/components/ic_rating.svg +0 -9
- package/minimal/public/assets/icons/components/ic_shadows.svg +0 -4
- package/minimal/public/assets/icons/components/ic_slider.svg +0 -5
- package/minimal/public/assets/icons/components/ic_stepper.svg +0 -6
- package/minimal/public/assets/icons/components/ic_switch.svg +0 -4
- package/minimal/public/assets/icons/components/ic_table.svg +0 -10
- package/minimal/public/assets/icons/components/ic_tabs.svg +0 -5
- package/minimal/public/assets/icons/components/ic_textfield.svg +0 -5
- package/minimal/public/assets/icons/components/ic_timeline.svg +0 -12
- package/minimal/public/assets/icons/components/ic_tooltip.svg +0 -7
- package/minimal/public/assets/icons/components/ic_transfer_list.svg +0 -13
- package/minimal/public/assets/icons/components/ic_tree_view.svg +0 -11
- package/minimal/public/assets/icons/components/ic_typography.svg +0 -4
- package/minimal/public/assets/icons/empty/ic_cart.svg +0 -76
- package/minimal/public/assets/icons/empty/ic_content.svg +0 -57
- package/minimal/public/assets/icons/empty/ic_email_disabled.svg +0 -44
- package/minimal/public/assets/icons/empty/ic_email_selected.svg +0 -57
- package/minimal/public/assets/icons/empty/ic_folder_empty.svg +0 -32
- package/minimal/public/assets/icons/empty/ic_mail.svg +0 -56
- package/minimal/public/assets/icons/faqs/ic_account.svg +0 -34
- package/minimal/public/assets/icons/faqs/ic_assurances.svg +0 -33
- package/minimal/public/assets/icons/faqs/ic_delivery.svg +0 -30
- package/minimal/public/assets/icons/faqs/ic_package.svg +0 -29
- package/minimal/public/assets/icons/faqs/ic_payment.svg +0 -33
- package/minimal/public/assets/icons/faqs/ic_refund.svg +0 -31
- package/minimal/public/assets/icons/files/ic_ai.svg +0 -25
- package/minimal/public/assets/icons/files/ic_audio.svg +0 -24
- package/minimal/public/assets/icons/files/ic_document.svg +0 -19
- package/minimal/public/assets/icons/files/ic_excel.svg +0 -19
- package/minimal/public/assets/icons/files/ic_file.svg +0 -18
- package/minimal/public/assets/icons/files/ic_folder.svg +0 -5
- package/minimal/public/assets/icons/files/ic_img.svg +0 -26
- package/minimal/public/assets/icons/files/ic_js.svg +0 -12
- package/minimal/public/assets/icons/files/ic_pdf.svg +0 -19
- package/minimal/public/assets/icons/files/ic_power_point.svg +0 -20
- package/minimal/public/assets/icons/files/ic_pts.svg +0 -25
- package/minimal/public/assets/icons/files/ic_txt.svg +0 -26
- package/minimal/public/assets/icons/files/ic_video.svg +0 -20
- package/minimal/public/assets/icons/files/ic_word.svg +0 -19
- package/minimal/public/assets/icons/files/ic_zip.svg +0 -27
- package/minimal/public/assets/icons/glass/ic_glass_bag.png +0 -0
- package/minimal/public/assets/icons/glass/ic_glass_buy.png +0 -0
- package/minimal/public/assets/icons/glass/ic_glass_message.png +0 -0
- package/minimal/public/assets/icons/glass/ic_glass_users.png +0 -0
- package/minimal/public/assets/icons/home/ic_design.svg +0 -6
- package/minimal/public/assets/icons/home/ic_development.svg +0 -5
- package/minimal/public/assets/icons/home/ic_make_brand.svg +0 -6
- package/minimal/public/assets/icons/navbar/ic_analytics.svg +0 -8
- package/minimal/public/assets/icons/navbar/ic_banking.svg +0 -10
- package/minimal/public/assets/icons/navbar/ic_blank.svg +0 -4
- package/minimal/public/assets/icons/navbar/ic_blog.svg +0 -7
- package/minimal/public/assets/icons/navbar/ic_booking.svg +0 -4
- package/minimal/public/assets/icons/navbar/ic_calendar.svg +0 -5
- package/minimal/public/assets/icons/navbar/ic_chat.svg +0 -6
- package/minimal/public/assets/icons/navbar/ic_dashboard.svg +0 -4
- package/minimal/public/assets/icons/navbar/ic_disabled.svg +0 -4
- package/minimal/public/assets/icons/navbar/ic_ecommerce.svg +0 -5
- package/minimal/public/assets/icons/navbar/ic_external.svg +0 -4
- package/minimal/public/assets/icons/navbar/ic_file.svg +0 -6
- package/minimal/public/assets/icons/navbar/ic_folder.svg +0 -4
- package/minimal/public/assets/icons/navbar/ic_invoice.svg +0 -5
- package/minimal/public/assets/icons/navbar/ic_job.svg +0 -4
- package/minimal/public/assets/icons/navbar/ic_kanban.svg +0 -5
- package/minimal/public/assets/icons/navbar/ic_label.svg +0 -4
- package/minimal/public/assets/icons/navbar/ic_lock.svg +0 -4
- package/minimal/public/assets/icons/navbar/ic_mail.svg +0 -6
- package/minimal/public/assets/icons/navbar/ic_menu_item.svg +0 -5
- package/minimal/public/assets/icons/navbar/ic_order.svg +0 -7
- package/minimal/public/assets/icons/navbar/ic_product.svg +0 -4
- package/minimal/public/assets/icons/navbar/ic_tour.svg +0 -4
- package/minimal/public/assets/icons/navbar/ic_user.svg +0 -4
- package/minimal/public/assets/icons/notification/ic_chat.svg +0 -28
- package/minimal/public/assets/icons/notification/ic_delivery.svg +0 -20
- package/minimal/public/assets/icons/notification/ic_mail.svg +0 -15
- package/minimal/public/assets/icons/notification/ic_order.svg +0 -45
- package/minimal/public/assets/icons/platforms/ic_figma.svg +0 -7
- package/minimal/public/assets/icons/platforms/ic_js.svg +0 -4
- package/minimal/public/assets/icons/platforms/ic_nextjs.svg +0 -3
- package/minimal/public/assets/icons/platforms/ic_ts.svg +0 -4
- package/minimal/public/assets/icons/platforms/ic_vite.svg +0 -15
- package/minimal/public/assets/icons/setting/ic_align_left.svg +0 -7
- package/minimal/public/assets/icons/setting/ic_align_right.svg +0 -7
- package/minimal/public/assets/icons/setting/ic_collapse.svg +0 -4
- package/minimal/public/assets/icons/setting/ic_contrast.svg +0 -5
- package/minimal/public/assets/icons/setting/ic_contrast_bold.svg +0 -4
- package/minimal/public/assets/icons/setting/ic_exit_full_screen.svg +0 -6
- package/minimal/public/assets/icons/setting/ic_full_screen.svg +0 -6
- package/minimal/public/assets/icons/setting/ic_moon.svg +0 -4
- package/minimal/public/assets/icons/setting/ic_setting.svg +0 -6
- package/minimal/public/assets/icons/setting/ic_sun.svg +0 -13
- package/minimal/public/assets/illustrations/characters/character_1.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_10.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_11.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_2.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_3.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_4.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_5.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_6.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_7.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_8.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_9.png +0 -0
- package/minimal/public/assets/illustrations/illustration_dashboard.png +0 -0
- package/minimal/public/assets/images/about/hero.jpg +0 -0
- package/minimal/public/assets/images/about/testimonials.jpg +0 -0
- package/minimal/public/assets/images/about/vision.jpg +0 -0
- package/minimal/public/assets/images/about/what_1.png +0 -0
- package/minimal/public/assets/images/about/what_2.png +0 -0
- package/minimal/public/assets/images/contact/hero.jpg +0 -0
- package/minimal/public/assets/images/faqs/hero.jpg +0 -0
- package/minimal/public/assets/images/home/clean/page_1.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_10.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_2.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_3.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_4.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_5.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_6.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_7.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_8.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_9.webp +0 -0
- package/minimal/public/assets/images/home/darkmode.webp +0 -0
- package/minimal/public/assets/images/home/for_designer.webp +0 -0
- package/minimal/public/assets/images/home/hero/dark_1.webp +0 -0
- package/minimal/public/assets/images/home/hero/dark_2.webp +0 -0
- package/minimal/public/assets/images/home/hero/light_1.webp +0 -0
- package/minimal/public/assets/images/home/hero/light_2.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_blue.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_cyan.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_default.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_orange.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_purple.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_red.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_blue.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_cyan.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_default.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_orange.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_purple.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_red.webp +0 -0
- package/minimal/public/assets/images/home/presets/grid.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_blue.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_cyan.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_default.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_orange.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_purple.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_red.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_blue.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_cyan.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_default.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_orange.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_purple.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_red.webp +0 -0
- package/minimal/public/assets/images/home/rocket.webp +0 -0
- package/minimal/public/assets/images/home/zone_landing.webp +0 -0
- package/minimal/public/assets/placeholder.svg +0 -8
- package/minimal/public/assets/red-blur.png +0 -0
- package/minimal/public/assets/transparent.png +0 -0
- package/minimal/public/favicon/android-chrome-192x192.png +0 -0
- package/minimal/public/favicon/android-chrome-512x512.png +0 -0
- package/minimal/public/favicon/apple-touch-icon.png +0 -0
- package/minimal/public/favicon/favicon-16x16.png +0 -0
- package/minimal/public/favicon/favicon-32x32.png +0 -0
- package/minimal/public/favicon/favicon.ico +0 -0
- package/minimal/public/fonts/CircularStd-Bold.otf +0 -0
- package/minimal/public/fonts/CircularStd-Book.otf +0 -0
- package/minimal/public/fonts/CircularStd-Medium.otf +0 -0
- package/minimal/public/fonts/Roboto-Bold.ttf +0 -0
- package/minimal/public/fonts/Roboto-Regular.ttf +0 -0
- package/minimal/public/fonts/index.css +0 -22
- package/minimal/public/logo/logo_full.svg +0 -1
- package/minimal/public/logo/logo_single.png +0 -0
- package/minimal/public/logo/logo_single.svg +0 -1
- package/minimal/public/manifest.json +0 -20
- package/minimal/public/robots.txt +0 -3
- package/minimal/src/_mock/_blog.js +0 -16
- package/minimal/src/_mock/_calendar.js +0 -14
- package/minimal/src/_mock/_files.js +0 -123
- package/minimal/src/_mock/_invoice.js +0 -65
- package/minimal/src/_mock/_job.js +0 -172
- package/minimal/src/_mock/_mock.js +0 -75
- package/minimal/src/_mock/_order.js +0 -95
- package/minimal/src/_mock/_others.js +0 -253
- package/minimal/src/_mock/_overview.js +0 -330
- package/minimal/src/_mock/_product.js +0 -88
- package/minimal/src/_mock/_tour.js +0 -150
- package/minimal/src/_mock/_user.js +0 -157
- package/minimal/src/_mock/assets.js +0 -527
- package/minimal/src/_mock/index.js +0 -16
- package/minimal/src/_mock/map/cities.js +0 -182
- package/minimal/src/_mock/map/countries.js +0 -86
- package/minimal/src/_mock/map/map-style-basic-v8.json +0 -554
- package/minimal/src/api/blog.js +0 -89
- package/minimal/src/api/calendar.js +0 -115
- package/minimal/src/api/chat.js +0 -206
- package/minimal/src/api/kanban.js +0 -401
- package/minimal/src/api/mail.js +0 -72
- package/minimal/src/api/product.js +0 -68
- package/minimal/src/app.jsx +0 -74
- package/minimal/src/assets/data/countries.js +0 -425
- package/minimal/src/assets/data/index.js +0 -1
- package/minimal/src/assets/icons/email-inbox-icon.jsx +0 -140
- package/minimal/src/assets/icons/index.js +0 -6
- package/minimal/src/assets/icons/password-icon.jsx +0 -107
- package/minimal/src/assets/icons/plan-free-icon.jsx +0 -49
- package/minimal/src/assets/icons/plan-premium-icon.jsx +0 -86
- package/minimal/src/assets/icons/plan-starter-icon.jsx +0 -73
- package/minimal/src/assets/icons/sent-icon.jsx +0 -73
- package/minimal/src/assets/illustrations/avatar-shape.jsx +0 -36
- package/minimal/src/assets/illustrations/background-shape.jsx +0 -31
- package/minimal/src/assets/illustrations/booking-illustration.jsx +0 -307
- package/minimal/src/assets/illustrations/check-in-illustration.jsx +0 -96
- package/minimal/src/assets/illustrations/check-out-illustration.jsx +0 -69
- package/minimal/src/assets/illustrations/coming-soon-illustration.jsx +0 -118
- package/minimal/src/assets/illustrations/forbidden-illustration.jsx +0 -88
- package/minimal/src/assets/illustrations/index.js +0 -15
- package/minimal/src/assets/illustrations/maintenance-illustration.jsx +0 -215
- package/minimal/src/assets/illustrations/motivation-illustration.jsx +0 -70
- package/minimal/src/assets/illustrations/order-complete-illustration.jsx +0 -122
- package/minimal/src/assets/illustrations/page-not-found-illustration.jsx +0 -74
- package/minimal/src/assets/illustrations/seo-illustration.jsx +0 -234
- package/minimal/src/assets/illustrations/sever-error-illustration.jsx +0 -148
- package/minimal/src/assets/illustrations/upgrade-storage-illustration.jsx +0 -157
- package/minimal/src/assets/illustrations/upload-illustration.jsx +0 -617
- package/minimal/src/auth/context/amplify/auth-consumer.jsx +0 -19
- package/minimal/src/auth/context/amplify/auth-context.js +0 -5
- package/minimal/src/auth/context/amplify/auth-provider.jsx +0 -183
- package/minimal/src/auth/context/amplify/index.js +0 -3
- package/minimal/src/auth/context/auth0/auth-consumer.jsx +0 -19
- package/minimal/src/auth/context/auth0/auth-context.js +0 -5
- package/minimal/src/auth/context/auth0/auth-provider.jsx +0 -101
- package/minimal/src/auth/context/auth0/index.js +0 -3
- package/minimal/src/auth/context/firebase/auth-consumer.jsx +0 -19
- package/minimal/src/auth/context/firebase/auth-context.js +0 -5
- package/minimal/src/auth/context/firebase/auth-provider.jsx +0 -202
- package/minimal/src/auth/context/firebase/index.js +0 -3
- package/minimal/src/auth/context/jwt/auth-consumer.jsx +0 -19
- package/minimal/src/auth/context/jwt/auth-context.js +0 -5
- package/minimal/src/auth/context/jwt/auth-provider.jsx +0 -184
- package/minimal/src/auth/context/jwt/index.js +0 -3
- package/minimal/src/auth/context/jwt/utils.js +0 -74
- package/minimal/src/auth/guard/auth-guard.jsx +0 -71
- package/minimal/src/auth/guard/guest-guard.jsx +0 -49
- package/minimal/src/auth/guard/index.js +0 -3
- package/minimal/src/auth/guard/role-based-guard.jsx +0 -57
- package/minimal/src/auth/hooks/index.js +0 -1
- package/minimal/src/auth/hooks/use-auth-context.js +0 -16
- package/minimal/src/components/animate/index.js +0 -6
- package/minimal/src/components/animate/motion-container.jsx +0 -43
- package/minimal/src/components/animate/motion-lazy.jsx +0 -16
- package/minimal/src/components/animate/motion-viewport.jsx +0 -36
- package/minimal/src/components/animate/variants/actions.js +0 -6
- package/minimal/src/components/animate/variants/background.js +0 -103
- package/minimal/src/components/animate/variants/bounce.js +0 -111
- package/minimal/src/components/animate/variants/container.js +0 -22
- package/minimal/src/components/animate/variants/fade.js +0 -131
- package/minimal/src/components/animate/variants/flip.js +0 -58
- package/minimal/src/components/animate/variants/index.js +0 -12
- package/minimal/src/components/animate/variants/path.js +0 -14
- package/minimal/src/components/animate/variants/rotate.js +0 -37
- package/minimal/src/components/animate/variants/scale.js +0 -58
- package/minimal/src/components/animate/variants/slide.js +0 -69
- package/minimal/src/components/animate/variants/transition.js +0 -22
- package/minimal/src/components/animate/variants/zoom.js +0 -134
- package/minimal/src/components/carousel/arrow-icons.jsx +0 -42
- package/minimal/src/components/carousel/carousel-arrow-index.jsx +0 -69
- package/minimal/src/components/carousel/carousel-arrows.jsx +0 -127
- package/minimal/src/components/carousel/carousel-dots.jsx +0 -85
- package/minimal/src/components/carousel/index.js +0 -9
- package/minimal/src/components/carousel/use-carousel.js +0 -65
- package/minimal/src/components/chart/chart.js +0 -67
- package/minimal/src/components/chart/index.js +0 -5
- package/minimal/src/components/chart/use-chart.js +0 -216
- package/minimal/src/components/color-utils/color-picker.jsx +0 -111
- package/minimal/src/components/color-utils/color-preview.jsx +0 -42
- package/minimal/src/components/color-utils/index.js +0 -2
- package/minimal/src/components/custom-breadcrumbs/custom-breadcrumbs.jsx +0 -97
- package/minimal/src/components/custom-breadcrumbs/index.js +0 -1
- package/minimal/src/components/custom-breadcrumbs/link-item.jsx +0 -62
- package/minimal/src/components/custom-date-range-picker/custom-date-range-picker.jsx +0 -130
- package/minimal/src/components/custom-date-range-picker/index.js +0 -5
- package/minimal/src/components/custom-date-range-picker/use-date-range-picker.js +0 -65
- package/minimal/src/components/custom-date-range-picker/utils.js +0 -32
- package/minimal/src/components/custom-dialog/confirm-dialog.jsx +0 -35
- package/minimal/src/components/custom-dialog/index.js +0 -1
- package/minimal/src/components/custom-popover/custom-popover.jsx +0 -72
- package/minimal/src/components/custom-popover/index.js +0 -3
- package/minimal/src/components/custom-popover/styles.js +0 -82
- package/minimal/src/components/custom-popover/use-popover.js +0 -22
- package/minimal/src/components/custom-popover/utils.js +0 -100
- package/minimal/src/components/editor/editor.jsx +0 -71
- package/minimal/src/components/editor/index.js +0 -1
- package/minimal/src/components/editor/styles.js +0 -180
- package/minimal/src/components/editor/toolbar.jsx +0 -108
- package/minimal/src/components/empty-content/empty-content.jsx +0 -63
- package/minimal/src/components/empty-content/index.js +0 -1
- package/minimal/src/components/file-thumbnail/download-button.jsx +0 -49
- package/minimal/src/components/file-thumbnail/file-thumbnail.jsx +0 -78
- package/minimal/src/components/file-thumbnail/index.js +0 -5
- package/minimal/src/components/file-thumbnail/utils.js +0 -148
- package/minimal/src/components/hook-form/form-provider.jsx +0 -18
- package/minimal/src/components/hook-form/index.js +0 -13
- package/minimal/src/components/hook-form/rhf-autocomplete.jsx +0 -41
- package/minimal/src/components/hook-form/rhf-checkbox.jsx +0 -113
- package/minimal/src/components/hook-form/rhf-code.jsx +0 -43
- package/minimal/src/components/hook-form/rhf-editor.jsx +0 -56
- package/minimal/src/components/hook-form/rhf-radio-group.jsx +0 -78
- package/minimal/src/components/hook-form/rhf-select.jsx +0 -151
- package/minimal/src/components/hook-form/rhf-slider.jsx +0 -32
- package/minimal/src/components/hook-form/rhf-switch.jsx +0 -33
- package/minimal/src/components/hook-form/rhf-text-field.jsx +0 -41
- package/minimal/src/components/hook-form/rhf-upload.jsx +0 -105
- package/minimal/src/components/iconify/iconify.jsx +0 -26
- package/minimal/src/components/iconify/index.js +0 -1
- package/minimal/src/components/image/image.jsx +0 -141
- package/minimal/src/components/image/index.js +0 -1
- package/minimal/src/components/image/utils.js +0 -15
- package/minimal/src/components/index.js +0 -214
- package/minimal/src/components/label/index.js +0 -1
- package/minimal/src/components/label/label.jsx +0 -61
- package/minimal/src/components/label/styles.js +0 -77
- package/minimal/src/components/lightbox/index.js +0 -5
- package/minimal/src/components/lightbox/lightbox.jsx +0 -152
- package/minimal/src/components/lightbox/styles.jsx +0 -52
- package/minimal/src/components/lightbox/use-light-box.js +0 -30
- package/minimal/src/components/loading-screen/index.js +0 -2
- package/minimal/src/components/loading-screen/loading-screen.jsx +0 -30
- package/minimal/src/components/loading-screen/splash-screen.jsx +0 -100
- package/minimal/src/components/logo/index.js +0 -1
- package/minimal/src/components/logo/logo.jsx +0 -95
- package/minimal/src/components/map/index.js +0 -5
- package/minimal/src/components/map/map-control.jsx +0 -36
- package/minimal/src/components/map/map-marker.jsx +0 -33
- package/minimal/src/components/map/map-popup.jsx +0 -18
- package/minimal/src/components/map/styles.jsx +0 -107
- package/minimal/src/components/markdown/index.js +0 -1
- package/minimal/src/components/markdown/markdown.jsx +0 -51
- package/minimal/src/components/markdown/styles.js +0 -146
- package/minimal/src/components/mega-menu/common/menu-more-link.jsx +0 -33
- package/minimal/src/components/mega-menu/common/menu-products.jsx +0 -81
- package/minimal/src/components/mega-menu/common/menu-tags.jsx +0 -47
- package/minimal/src/components/mega-menu/common/nav-sub-list.jsx +0 -64
- package/minimal/src/components/mega-menu/horizontal/mega-menu-desktop-horizontal.jsx +0 -33
- package/minimal/src/components/mega-menu/horizontal/nav-item.jsx +0 -104
- package/minimal/src/components/mega-menu/horizontal/nav-list.jsx +0 -169
- package/minimal/src/components/mega-menu/index.js +0 -3
- package/minimal/src/components/mega-menu/mobile/mega-menu-mobile.jsx +0 -22
- package/minimal/src/components/mega-menu/mobile/nav-item.jsx +0 -95
- package/minimal/src/components/mega-menu/mobile/nav-list.jsx +0 -218
- package/minimal/src/components/mega-menu/vertical/mega-menu-desktop-vertical.jsx +0 -31
- package/minimal/src/components/mega-menu/vertical/nav-item.jsx +0 -99
- package/minimal/src/components/mega-menu/vertical/nav-list.jsx +0 -124
- package/minimal/src/components/nav-basic/desktop/nav-basic-desktop.jsx +0 -25
- package/minimal/src/components/nav-basic/desktop/nav-item.jsx +0 -166
- package/minimal/src/components/nav-basic/desktop/nav-list.jsx +0 -122
- package/minimal/src/components/nav-basic/index.js +0 -2
- package/minimal/src/components/nav-basic/mobile/nav-basic-mobile.jsx +0 -25
- package/minimal/src/components/nav-basic/mobile/nav-item.jsx +0 -171
- package/minimal/src/components/nav-basic/mobile/nav-list.jsx +0 -87
- package/minimal/src/components/nav-section/horizontal/index.js +0 -1
- package/minimal/src/components/nav-section/horizontal/nav-item.jsx +0 -246
- package/minimal/src/components/nav-section/horizontal/nav-list.jsx +0 -126
- package/minimal/src/components/nav-section/horizontal/nav-section-horizontal.jsx +0 -54
- package/minimal/src/components/nav-section/index.js +0 -3
- package/minimal/src/components/nav-section/mini/index.js +0 -1
- package/minimal/src/components/nav-section/mini/nav-item.jsx +0 -260
- package/minimal/src/components/nav-section/mini/nav-list.jsx +0 -119
- package/minimal/src/components/nav-section/mini/nav-section-mini.jsx +0 -42
- package/minimal/src/components/nav-section/vertical/index.js +0 -1
- package/minimal/src/components/nav-section/vertical/nav-item.jsx +0 -298
- package/minimal/src/components/nav-section/vertical/nav-list.jsx +0 -95
- package/minimal/src/components/nav-section/vertical/nav-section-vertical.jsx +0 -89
- package/minimal/src/components/organizational-chart/common/group-node.jsx +0 -115
- package/minimal/src/components/organizational-chart/common/simple-node.jsx +0 -32
- package/minimal/src/components/organizational-chart/common/standard-node.jsx +0 -95
- package/minimal/src/components/organizational-chart/index.js +0 -1
- package/minimal/src/components/organizational-chart/organizational-chart.jsx +0 -106
- package/minimal/src/components/progress-bar/index.js +0 -3
- package/minimal/src/components/progress-bar/progress-bar.jsx +0 -48
- package/minimal/src/components/progress-bar/styles.jsx +0 -40
- package/minimal/src/components/scroll-progress/index.js +0 -1
- package/minimal/src/components/scroll-progress/scroll-progress.jsx +0 -58
- package/minimal/src/components/scrollbar/index.js +0 -1
- package/minimal/src/components/scrollbar/scrollbar.jsx +0 -44
- package/minimal/src/components/scrollbar/styles.js +0 -26
- package/minimal/src/components/search-not-found/index.js +0 -1
- package/minimal/src/components/search-not-found/search-not-found.jsx +0 -38
- package/minimal/src/components/settings/context/index.js +0 -2
- package/minimal/src/components/settings/context/settings-context.js +0 -13
- package/minimal/src/components/settings/context/settings-provider.jsx +0 -80
- package/minimal/src/components/settings/drawer/base-option.jsx +0 -59
- package/minimal/src/components/settings/drawer/fullscreen-option.jsx +0 -57
- package/minimal/src/components/settings/drawer/index.js +0 -1
- package/minimal/src/components/settings/drawer/layout-options.jsx +0 -153
- package/minimal/src/components/settings/drawer/presets-options.jsx +0 -55
- package/minimal/src/components/settings/drawer/settings-drawer.jsx +0 -193
- package/minimal/src/components/settings/drawer/stretch-options.jsx +0 -70
- package/minimal/src/components/settings/index.js +0 -3
- package/minimal/src/components/snackbar/index.js +0 -3
- package/minimal/src/components/snackbar/snackbar-provider.jsx +0 -73
- package/minimal/src/components/snackbar/styles.js +0 -47
- package/minimal/src/components/svg-color/index.js +0 -1
- package/minimal/src/components/table/index.js +0 -10
- package/minimal/src/components/table/table-empty-rows.jsx +0 -29
- package/minimal/src/components/table/table-head-custom.jsx +0 -90
- package/minimal/src/components/table/table-no-data.jsx +0 -34
- package/minimal/src/components/table/table-pagination-custom.jsx +0 -51
- package/minimal/src/components/table/table-selected-action.jsx +0 -75
- package/minimal/src/components/table/table-skeleton.jsx +0 -23
- package/minimal/src/components/table/use-table.js +0 -123
- package/minimal/src/components/table/utils.js +0 -27
- package/minimal/src/components/text-max-line/index.js +0 -3
- package/minimal/src/components/text-max-line/text-max-line.jsx +0 -67
- package/minimal/src/components/text-max-line/use-typography.js +0 -38
- package/minimal/src/components/upload/errors-rejection-files.jsx +0 -55
- package/minimal/src/components/upload/index.js +0 -8
- package/minimal/src/components/upload/preview-multi-file.jsx +0 -121
- package/minimal/src/components/upload/preview-single-file.jsx +0 -36
- package/minimal/src/components/upload/upload-avatar.jsx +0 -151
- package/minimal/src/components/upload/upload-box.jsx +0 -65
- package/minimal/src/components/upload/upload.jsx +0 -186
- package/minimal/src/config-global.js +0 -34
- package/minimal/src/global.css +0 -20
- package/minimal/src/hooks/use-boolean.js +0 -27
- package/minimal/src/hooks/use-copy-to-clipboard.js +0 -27
- package/minimal/src/hooks/use-countdown.js +0 -78
- package/minimal/src/hooks/use-debounce.js +0 -19
- package/minimal/src/hooks/use-double-click.js +0 -29
- package/minimal/src/hooks/use-event-listener.js +0 -33
- package/minimal/src/hooks/use-local-storage.js +0 -89
- package/minimal/src/hooks/use-mocked-user.js +0 -34
- package/minimal/src/hooks/use-off-set-top.js +0 -36
- package/minimal/src/hooks/use-responsive.js +0 -47
- package/minimal/src/hooks/use-scroll-to-top.js +0 -14
- package/minimal/src/layouts/auth/classic.jsx +0 -158
- package/minimal/src/layouts/auth/modern-compact.jsx +0 -56
- package/minimal/src/layouts/auth/modern.jsx +0 -95
- package/minimal/src/layouts/common/account-popover.jsx +0 -132
- package/minimal/src/layouts/common/contacts-popover.jsx +0 -73
- package/minimal/src/layouts/common/header-shadow.jsx +0 -31
- package/minimal/src/layouts/common/header-simple.jsx +0 -69
- package/minimal/src/layouts/common/language-popover.jsx +0 -64
- package/minimal/src/layouts/common/login-button.jsx +0 -21
- package/minimal/src/layouts/common/nav-toggle-button.jsx +0 -63
- package/minimal/src/layouts/common/nav-upgrade.jsx +0 -61
- package/minimal/src/layouts/common/notifications-popover/index.jsx +0 -191
- package/minimal/src/layouts/common/notifications-popover/notification-item.jsx +0 -246
- package/minimal/src/layouts/common/searchbar/index.jsx +0 -171
- package/minimal/src/layouts/common/searchbar/result-item.jsx +0 -69
- package/minimal/src/layouts/common/searchbar/utils.js +0 -86
- package/minimal/src/layouts/common/settings-button.jsx +0 -62
- package/minimal/src/layouts/compact/index.jsx +0 -35
- package/minimal/src/layouts/config-layout.js +0 -12
- package/minimal/src/layouts/dashboard/config-navigation.jsx +0 -324
- package/minimal/src/layouts/dashboard/header.jsx +0 -118
- package/minimal/src/layouts/dashboard/index.jsx +0 -88
- package/minimal/src/layouts/dashboard/main.jsx +0 -74
- package/minimal/src/layouts/dashboard/nav-horizontal.jsx +0 -65
- package/minimal/src/layouts/dashboard/nav-mini.jsx +0 -57
- package/minimal/src/layouts/dashboard/nav-vertical.jsx +0 -106
- package/minimal/src/layouts/main/config-navigation.jsx +0 -90
- package/minimal/src/layouts/main/footer.jsx +0 -172
- package/minimal/src/layouts/main/header.jsx +0 -112
- package/minimal/src/layouts/main/index.jsx +0 -40
- package/minimal/src/layouts/main/nav/desktop/index.jsx +0 -21
- package/minimal/src/layouts/main/nav/desktop/nav-item.jsx +0 -184
- package/minimal/src/layouts/main/nav/desktop/nav-list.jsx +0 -158
- package/minimal/src/layouts/main/nav/mobile/index.jsx +0 -67
- package/minimal/src/layouts/main/nav/mobile/nav-item.jsx +0 -90
- package/minimal/src/layouts/main/nav/mobile/nav-list.jsx +0 -83
- package/minimal/src/layouts/simple/index.jsx +0 -19
- package/minimal/src/locales/config-lang.js +0 -79
- package/minimal/src/locales/i18n.js +0 -39
- package/minimal/src/locales/index.js +0 -5
- package/minimal/src/locales/langs/ar.json +0 -54
- package/minimal/src/locales/langs/cn.json +0 -54
- package/minimal/src/locales/langs/en.json +0 -54
- package/minimal/src/locales/langs/fr.json +0 -54
- package/minimal/src/locales/langs/vi.json +0 -54
- package/minimal/src/locales/localization-provider.jsx +0 -22
- package/minimal/src/locales/use-locales.js +0 -44
- package/minimal/src/main.jsx +0 -20
- package/minimal/src/pages/403.jsx +0 -17
- package/minimal/src/pages/404.jsx +0 -17
- package/minimal/src/pages/500.jsx +0 -17
- package/minimal/src/pages/about-us.jsx +0 -17
- package/minimal/src/pages/auth/amplify/forgot-password.jsx +0 -17
- package/minimal/src/pages/auth/amplify/login.jsx +0 -17
- package/minimal/src/pages/auth/amplify/new-password.jsx +0 -17
- package/minimal/src/pages/auth/amplify/register.jsx +0 -17
- package/minimal/src/pages/auth/amplify/verify.jsx +0 -17
- package/minimal/src/pages/auth/auth0/callback.js +0 -6
- package/minimal/src/pages/auth/auth0/login.jsx +0 -17
- package/minimal/src/pages/auth/firebase/forgot-password.jsx +0 -17
- package/minimal/src/pages/auth/firebase/login.jsx +0 -17
- package/minimal/src/pages/auth/firebase/register.jsx +0 -17
- package/minimal/src/pages/auth/firebase/verify.jsx +0 -17
- package/minimal/src/pages/auth/jwt/login.jsx +0 -17
- package/minimal/src/pages/auth/jwt/register.jsx +0 -17
- package/minimal/src/pages/auth-demo/classic/forgot-password.jsx +0 -17
- package/minimal/src/pages/auth-demo/classic/login.jsx +0 -17
- package/minimal/src/pages/auth-demo/classic/new-password.jsx +0 -17
- package/minimal/src/pages/auth-demo/classic/register.jsx +0 -17
- package/minimal/src/pages/auth-demo/classic/verify.jsx +0 -17
- package/minimal/src/pages/auth-demo/modern/forgot-password.jsx +0 -17
- package/minimal/src/pages/auth-demo/modern/login.jsx +0 -17
- package/minimal/src/pages/auth-demo/modern/new-password.jsx +0 -17
- package/minimal/src/pages/auth-demo/modern/register.jsx +0 -17
- package/minimal/src/pages/auth-demo/modern/verify.jsx +0 -17
- package/minimal/src/pages/coming-soon.jsx +0 -17
- package/minimal/src/pages/components/extra/animate.jsx +0 -17
- package/minimal/src/pages/components/extra/carousel.jsx +0 -17
- package/minimal/src/pages/components/extra/chart.jsx +0 -17
- package/minimal/src/pages/components/extra/copy-to-clipboard.jsx +0 -17
- package/minimal/src/pages/components/extra/editor.jsx +0 -17
- package/minimal/src/pages/components/extra/form-validation.jsx +0 -17
- package/minimal/src/pages/components/extra/image.jsx +0 -17
- package/minimal/src/pages/components/extra/label.jsx +0 -17
- package/minimal/src/pages/components/extra/lightbox.jsx +0 -17
- package/minimal/src/pages/components/extra/map.jsx +0 -17
- package/minimal/src/pages/components/extra/markdown.jsx +0 -17
- package/minimal/src/pages/components/extra/mega-menu.jsx +0 -17
- package/minimal/src/pages/components/extra/multi-language.jsx +0 -17
- package/minimal/src/pages/components/extra/navigation-bar.jsx +0 -17
- package/minimal/src/pages/components/extra/organization-chart.jsx +0 -17
- package/minimal/src/pages/components/extra/scroll-progress.jsx +0 -17
- package/minimal/src/pages/components/extra/scroll.jsx +0 -17
- package/minimal/src/pages/components/extra/snackbar.jsx +0 -17
- package/minimal/src/pages/components/extra/text-max-line.jsx +0 -17
- package/minimal/src/pages/components/extra/upload.jsx +0 -17
- package/minimal/src/pages/components/foundation/colors.jsx +0 -17
- package/minimal/src/pages/components/foundation/grid.jsx +0 -17
- package/minimal/src/pages/components/foundation/icons.jsx +0 -17
- package/minimal/src/pages/components/foundation/shadows.jsx +0 -17
- package/minimal/src/pages/components/foundation/typography.jsx +0 -17
- package/minimal/src/pages/components/index.jsx +0 -17
- package/minimal/src/pages/components/mui/accordion.jsx +0 -17
- package/minimal/src/pages/components/mui/alert.jsx +0 -17
- package/minimal/src/pages/components/mui/autocomplete.jsx +0 -17
- package/minimal/src/pages/components/mui/avatar.jsx +0 -17
- package/minimal/src/pages/components/mui/badge.jsx +0 -17
- package/minimal/src/pages/components/mui/breadcrumbs.jsx +0 -17
- package/minimal/src/pages/components/mui/buttons.jsx +0 -17
- package/minimal/src/pages/components/mui/checkbox.jsx +0 -17
- package/minimal/src/pages/components/mui/chip.jsx +0 -17
- package/minimal/src/pages/components/mui/data-grid.jsx +0 -17
- package/minimal/src/pages/components/mui/dialog.jsx +0 -17
- package/minimal/src/pages/components/mui/list.jsx +0 -17
- package/minimal/src/pages/components/mui/menu.jsx +0 -17
- package/minimal/src/pages/components/mui/pagination.jsx +0 -17
- package/minimal/src/pages/components/mui/pickers.jsx +0 -17
- package/minimal/src/pages/components/mui/popover.jsx +0 -17
- package/minimal/src/pages/components/mui/progress.jsx +0 -17
- package/minimal/src/pages/components/mui/radio-button.jsx +0 -17
- package/minimal/src/pages/components/mui/rating.jsx +0 -17
- package/minimal/src/pages/components/mui/slider.jsx +0 -17
- package/minimal/src/pages/components/mui/stepper.jsx +0 -17
- package/minimal/src/pages/components/mui/switch.jsx +0 -17
- package/minimal/src/pages/components/mui/table.jsx +0 -17
- package/minimal/src/pages/components/mui/tabs.jsx +0 -17
- package/minimal/src/pages/components/mui/textfield.jsx +0 -17
- package/minimal/src/pages/components/mui/timeline.jsx +0 -17
- package/minimal/src/pages/components/mui/tooltip.jsx +0 -17
- package/minimal/src/pages/components/mui/transfer-list.jsx +0 -17
- package/minimal/src/pages/contact-us.jsx +0 -17
- package/minimal/src/pages/dashboard/analytics.jsx +0 -17
- package/minimal/src/pages/dashboard/app.jsx +0 -17
- package/minimal/src/pages/dashboard/banking.jsx +0 -17
- package/minimal/src/pages/dashboard/blank.jsx +0 -17
- package/minimal/src/pages/dashboard/booking.jsx +0 -17
- package/minimal/src/pages/dashboard/calendar.jsx +0 -17
- package/minimal/src/pages/dashboard/chat.jsx +0 -17
- package/minimal/src/pages/dashboard/ecommerce.jsx +0 -17
- package/minimal/src/pages/dashboard/file-manager.jsx +0 -17
- package/minimal/src/pages/dashboard/file.jsx +0 -17
- package/minimal/src/pages/dashboard/invoice/details.jsx +0 -23
- package/minimal/src/pages/dashboard/invoice/edit.jsx +0 -23
- package/minimal/src/pages/dashboard/invoice/list.jsx +0 -17
- package/minimal/src/pages/dashboard/invoice/new.jsx +0 -17
- package/minimal/src/pages/dashboard/job/details.jsx +0 -23
- package/minimal/src/pages/dashboard/job/edit.jsx +0 -23
- package/minimal/src/pages/dashboard/job/list.jsx +0 -17
- package/minimal/src/pages/dashboard/job/new.jsx +0 -17
- package/minimal/src/pages/dashboard/kanban.jsx +0 -17
- package/minimal/src/pages/dashboard/mail.jsx +0 -17
- package/minimal/src/pages/dashboard/order/details.jsx +0 -23
- package/minimal/src/pages/dashboard/order/list.jsx +0 -17
- package/minimal/src/pages/dashboard/permission.jsx +0 -17
- package/minimal/src/pages/dashboard/post/details.jsx +0 -23
- package/minimal/src/pages/dashboard/post/edit.jsx +0 -23
- package/minimal/src/pages/dashboard/post/list.jsx +0 -17
- package/minimal/src/pages/dashboard/post/new.jsx +0 -17
- package/minimal/src/pages/dashboard/product/details.jsx +0 -23
- package/minimal/src/pages/dashboard/product/edit.jsx +0 -23
- package/minimal/src/pages/dashboard/product/list.jsx +0 -17
- package/minimal/src/pages/dashboard/product/new.jsx +0 -17
- package/minimal/src/pages/dashboard/tour/details.jsx +0 -23
- package/minimal/src/pages/dashboard/tour/edit.jsx +0 -23
- package/minimal/src/pages/dashboard/tour/list.jsx +0 -17
- package/minimal/src/pages/dashboard/tour/new.jsx +0 -17
- package/minimal/src/pages/dashboard/user/account.jsx +0 -17
- package/minimal/src/pages/dashboard/user/cards.jsx +0 -17
- package/minimal/src/pages/dashboard/user/edit.jsx +0 -23
- package/minimal/src/pages/dashboard/user/list.jsx +0 -17
- package/minimal/src/pages/dashboard/user/new.jsx +0 -17
- package/minimal/src/pages/dashboard/user/profile.jsx +0 -17
- package/minimal/src/pages/faqs.jsx +0 -17
- package/minimal/src/pages/home.jsx +0 -17
- package/minimal/src/pages/maintenance.jsx +0 -17
- package/minimal/src/pages/payment.jsx +0 -17
- package/minimal/src/pages/post/details.jsx +0 -23
- package/minimal/src/pages/post/list.jsx +0 -17
- package/minimal/src/pages/pricing.jsx +0 -17
- package/minimal/src/pages/product/checkout.jsx +0 -17
- package/minimal/src/pages/product/details.jsx +0 -23
- package/minimal/src/pages/product/list.jsx +0 -17
- package/minimal/src/routes/components/index.js +0 -1
- package/minimal/src/routes/components/router-link.jsx +0 -13
- package/minimal/src/routes/hooks/index.js +0 -6
- package/minimal/src/routes/hooks/use-active-link.js +0 -13
- package/minimal/src/routes/hooks/use-params.js +0 -10
- package/minimal/src/routes/hooks/use-pathname.js +0 -10
- package/minimal/src/routes/hooks/use-router.js +0 -21
- package/minimal/src/routes/hooks/use-search-params.js +0 -10
- package/minimal/src/routes/paths.js +0 -180
- package/minimal/src/routes/sections/auth-demo.jsx +0 -112
- package/minimal/src/routes/sections/auth.jsx +0 -175
- package/minimal/src/routes/sections/components.jsx +0 -173
- package/minimal/src/routes/sections/dashboard.jsx +0 -165
- package/minimal/src/routes/sections/index.jsx +0 -50
- package/minimal/src/routes/sections/main.jsx +0 -94
- package/minimal/src/sections/_examples/component-block.jsx +0 -45
- package/minimal/src/sections/_examples/component-card.jsx +0 -54
- package/minimal/src/sections/_examples/component-hero.jsx +0 -80
- package/minimal/src/sections/_examples/config-navigation.js +0 -73
- package/minimal/src/sections/_examples/extra/animate-view/background/container.jsx +0 -42
- package/minimal/src/sections/_examples/extra/animate-view/background/index.jsx +0 -61
- package/minimal/src/sections/_examples/extra/animate-view/background/toolbar.jsx +0 -22
- package/minimal/src/sections/_examples/extra/animate-view/control-panel.jsx +0 -58
- package/minimal/src/sections/_examples/extra/animate-view/dialog/container.jsx +0 -72
- package/minimal/src/sections/_examples/extra/animate-view/dialog/index.jsx +0 -76
- package/minimal/src/sections/_examples/extra/animate-view/get-variant.js +0 -91
- package/minimal/src/sections/_examples/extra/animate-view/index.jsx +0 -78
- package/minimal/src/sections/_examples/extra/animate-view/inview/container.jsx +0 -80
- package/minimal/src/sections/_examples/extra/animate-view/inview/index.jsx +0 -129
- package/minimal/src/sections/_examples/extra/animate-view/inview/toolbar.jsx +0 -57
- package/minimal/src/sections/_examples/extra/animate-view/other/buttons.jsx +0 -86
- package/minimal/src/sections/_examples/extra/animate-view/other/index.jsx +0 -48
- package/minimal/src/sections/_examples/extra/animate-view/other/logo.jsx +0 -60
- package/minimal/src/sections/_examples/extra/animate-view/scroll/container.jsx +0 -60
- package/minimal/src/sections/_examples/extra/animate-view/scroll/index.jsx +0 -80
- package/minimal/src/sections/_examples/extra/animate-view/scroll/toolbar.jsx +0 -29
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-animation.jsx +0 -113
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-1.jsx +0 -35
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-2.jsx +0 -53
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-3.jsx +0 -57
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-4.jsx +0 -89
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-center-mode.jsx +0 -125
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-thumbnail.jsx +0 -160
- package/minimal/src/sections/_examples/extra/carousel-view/index.jsx +0 -124
- package/minimal/src/sections/_examples/extra/chart-view/chart-area.jsx +0 -35
- package/minimal/src/sections/_examples/extra/chart-view/chart-bar.jsx +0 -43
- package/minimal/src/sections/_examples/extra/chart-view/chart-column-multiple.jsx +0 -32
- package/minimal/src/sections/_examples/extra/chart-view/chart-column-negative.jsx +0 -77
- package/minimal/src/sections/_examples/extra/chart-view/chart-column-single.jsx +0 -34
- package/minimal/src/sections/_examples/extra/chart-view/chart-column-stacked.jsx +0 -50
- package/minimal/src/sections/_examples/extra/chart-view/chart-donut.jsx +0 -42
- package/minimal/src/sections/_examples/extra/chart-view/chart-line.jsx +0 -27
- package/minimal/src/sections/_examples/extra/chart-view/chart-mixed.jsx +0 -59
- package/minimal/src/sections/_examples/extra/chart-view/chart-pie.jsx +0 -48
- package/minimal/src/sections/_examples/extra/chart-view/chart-radar-bar.jsx +0 -73
- package/minimal/src/sections/_examples/extra/chart-view/chart-radial-bar.jsx +0 -73
- package/minimal/src/sections/_examples/extra/chart-view/index.jsx +0 -234
- package/minimal/src/sections/_examples/extra/copy-to-clipboard-view.jsx +0 -115
- package/minimal/src/sections/_examples/extra/editor-view.jsx +0 -95
- package/minimal/src/sections/_examples/extra/form-validation-view/index.jsx +0 -59
- package/minimal/src/sections/_examples/extra/form-validation-view/react-hook-form.jsx +0 -405
- package/minimal/src/sections/_examples/extra/form-validation-view/schema.js +0 -50
- package/minimal/src/sections/_examples/extra/form-validation-view/values-preview.jsx +0 -87
- package/minimal/src/sections/_examples/extra/image-view.jsx +0 -94
- package/minimal/src/sections/_examples/extra/label-view.jsx +0 -116
- package/minimal/src/sections/_examples/extra/lightbox-view.jsx +0 -239
- package/minimal/src/sections/_examples/extra/map-view/change-theme/control-panel.jsx +0 -41
- package/minimal/src/sections/_examples/extra/map-view/change-theme/index.jsx +0 -41
- package/minimal/src/sections/_examples/extra/map-view/clusters/index.jsx +0 -61
- package/minimal/src/sections/_examples/extra/map-view/clusters/layers.js +0 -37
- package/minimal/src/sections/_examples/extra/map-view/draggable-markers/control-panel.jsx +0 -49
- package/minimal/src/sections/_examples/extra/map-view/draggable-markers/index.jsx +0 -56
- package/minimal/src/sections/_examples/extra/map-view/heatmap/control-panel.jsx +0 -91
- package/minimal/src/sections/_examples/extra/map-view/heatmap/index.jsx +0 -94
- package/minimal/src/sections/_examples/extra/map-view/heatmap/map-style.js +0 -40
- package/minimal/src/sections/_examples/extra/map-view/index.jsx +0 -183
- package/minimal/src/sections/_examples/extra/map-view/interaction/control-panel.jsx +0 -85
- package/minimal/src/sections/_examples/extra/map-view/interaction/index.jsx +0 -56
- package/minimal/src/sections/_examples/extra/map-view/map-geo-json-animation.jsx +0 -68
- package/minimal/src/sections/_examples/extra/map-view/map-highlight-by-filter.jsx +0 -83
- package/minimal/src/sections/_examples/extra/map-view/map-markers-popups.jsx +0 -95
- package/minimal/src/sections/_examples/extra/map-view/side-by-side/control-panel.jsx +0 -28
- package/minimal/src/sections/_examples/extra/map-view/side-by-side/index.jsx +0 -106
- package/minimal/src/sections/_examples/extra/map-view/viewport-animation/control-panel.jsx +0 -39
- package/minimal/src/sections/_examples/extra/map-view/viewport-animation/index.jsx +0 -44
- package/minimal/src/sections/_examples/extra/markdown-view.jsx +0 -204
- package/minimal/src/sections/_examples/extra/mega-menu-view.jsx +0 -318
- package/minimal/src/sections/_examples/extra/multi-language-view.jsx +0 -124
- package/minimal/src/sections/_examples/extra/navigation-bar-view.jsx +0 -564
- package/minimal/src/sections/_examples/extra/organizational-chart-view.jsx +0 -206
- package/minimal/src/sections/_examples/extra/scroll-progress-view.jsx +0 -136
- package/minimal/src/sections/_examples/extra/scroll-view.jsx +0 -113
- package/minimal/src/sections/_examples/extra/snackbar-view.jsx +0 -212
- package/minimal/src/sections/_examples/extra/text-max-line-view.jsx +0 -112
- package/minimal/src/sections/_examples/extra/upload-view.jsx +0 -190
- package/minimal/src/sections/_examples/foundation/colors-view.jsx +0 -181
- package/minimal/src/sections/_examples/foundation/grid-view.jsx +0 -154
- package/minimal/src/sections/_examples/foundation/icons-view.jsx +0 -95
- package/minimal/src/sections/_examples/foundation/index.js +0 -5
- package/minimal/src/sections/_examples/foundation/shadows-view.jsx +0 -122
- package/minimal/src/sections/_examples/foundation/typography-view.jsx +0 -153
- package/minimal/src/sections/_examples/mui/accordion-view.jsx +0 -101
- package/minimal/src/sections/_examples/mui/alert-view.jsx +0 -176
- package/minimal/src/sections/_examples/mui/autocomplete-view.jsx +0 -384
- package/minimal/src/sections/_examples/mui/avatar-view.jsx +0 -188
- package/minimal/src/sections/_examples/mui/badge-view.jsx +0 -139
- package/minimal/src/sections/_examples/mui/breadcrumbs-view.jsx +0 -158
- package/minimal/src/sections/_examples/mui/button-view/button-groups.jsx +0 -111
- package/minimal/src/sections/_examples/mui/button-view/button-variants.jsx +0 -144
- package/minimal/src/sections/_examples/mui/button-view/floating-action-button.jsx +0 -198
- package/minimal/src/sections/_examples/mui/button-view/icon-buttons.jsx +0 -90
- package/minimal/src/sections/_examples/mui/button-view/index.jsx +0 -102
- package/minimal/src/sections/_examples/mui/button-view/toggle-buttons.jsx +0 -183
- package/minimal/src/sections/_examples/mui/checkbox-view.jsx +0 -187
- package/minimal/src/sections/_examples/mui/chip-view/chip.jsx +0 -241
- package/minimal/src/sections/_examples/mui/chip-view/index.jsx +0 -72
- package/minimal/src/sections/_examples/mui/data-grid-view/data-grid-basic.jsx +0 -65
- package/minimal/src/sections/_examples/mui/data-grid-view/data-grid-custom.jsx +0 -236
- package/minimal/src/sections/_examples/mui/data-grid-view/index.jsx +0 -95
- package/minimal/src/sections/_examples/mui/dialog-view/alert-dialog.jsx +0 -39
- package/minimal/src/sections/_examples/mui/dialog-view/form-dialog.jsx +0 -52
- package/minimal/src/sections/_examples/mui/dialog-view/full-screen-dialog.jsx +0 -68
- package/minimal/src/sections/_examples/mui/dialog-view/index.jsx +0 -77
- package/minimal/src/sections/_examples/mui/dialog-view/max-width-dialog.jsx +0 -105
- package/minimal/src/sections/_examples/mui/dialog-view/scroll-dialog.jsx +0 -74
- package/minimal/src/sections/_examples/mui/dialog-view/simple-dialog.jsx +0 -69
- package/minimal/src/sections/_examples/mui/dialog-view/transitions-dialog.jsx +0 -49
- package/minimal/src/sections/_examples/mui/list-view.jsx +0 -324
- package/minimal/src/sections/_examples/mui/menu-view.jsx +0 -193
- package/minimal/src/sections/_examples/mui/pagination-view.jsx +0 -126
- package/minimal/src/sections/_examples/mui/picker-view/index.jsx +0 -76
- package/minimal/src/sections/_examples/mui/picker-view/picker-date-range.jsx +0 -91
- package/minimal/src/sections/_examples/mui/picker-view/picker-date-time.jsx +0 -74
- package/minimal/src/sections/_examples/mui/picker-view/picker-date.jsx +0 -140
- package/minimal/src/sections/_examples/mui/picker-view/picker-time.jsx +0 -115
- package/minimal/src/sections/_examples/mui/popover-view.jsx +0 -186
- package/minimal/src/sections/_examples/mui/progress-view/index.jsx +0 -99
- package/minimal/src/sections/_examples/mui/progress-view/progress-circular.jsx +0 -58
- package/minimal/src/sections/_examples/mui/progress-view/progress-linear.jsx +0 -86
- package/minimal/src/sections/_examples/mui/radio-button-view.jsx +0 -117
- package/minimal/src/sections/_examples/mui/rating-view.jsx +0 -184
- package/minimal/src/sections/_examples/mui/slider-view.jsx +0 -204
- package/minimal/src/sections/_examples/mui/stepper-view/customized-steppers.jsx +0 -260
- package/minimal/src/sections/_examples/mui/stepper-view/horizontal-linear-stepper.jsx +0 -125
- package/minimal/src/sections/_examples/mui/stepper-view/index.jsx +0 -95
- package/minimal/src/sections/_examples/mui/stepper-view/linear-alternative-label-stepper.jsx +0 -123
- package/minimal/src/sections/_examples/mui/stepper-view/vertical-linear-stepper.jsx +0 -89
- package/minimal/src/sections/_examples/mui/switch-view.jsx +0 -99
- package/minimal/src/sections/_examples/mui/table-view/basic-table.jsx +0 -56
- package/minimal/src/sections/_examples/mui/table-view/collapsible-table.jsx +0 -143
- package/minimal/src/sections/_examples/mui/table-view/grouping-fixed-header-table.jsx +0 -135
- package/minimal/src/sections/_examples/mui/table-view/index.jsx +0 -75
- package/minimal/src/sections/_examples/mui/table-view/sorting-selecting-table.jsx +0 -187
- package/minimal/src/sections/_examples/mui/table-view/utils.js +0 -24
- package/minimal/src/sections/_examples/mui/tabs-view.jsx +0 -211
- package/minimal/src/sections/_examples/mui/textfield-view/index.jsx +0 -86
- package/minimal/src/sections/_examples/mui/textfield-view/textfield.jsx +0 -278
- package/minimal/src/sections/_examples/mui/timeline-view.jsx +0 -237
- package/minimal/src/sections/_examples/mui/tooltip-view.jsx +0 -184
- package/minimal/src/sections/_examples/mui/transfer-list-view/enhanced-transfer-list.jsx +0 -159
- package/minimal/src/sections/_examples/mui/transfer-list-view/index.jsx +0 -52
- package/minimal/src/sections/_examples/mui/transfer-list-view/simple-transfer-list.jsx +0 -154
- package/minimal/src/sections/_examples/view.jsx +0 -120
- package/minimal/src/sections/about/about-hero.jsx +0 -93
- package/minimal/src/sections/about/about-team.jsx +0 -158
- package/minimal/src/sections/about/about-testimonials.jsx +0 -202
- package/minimal/src/sections/about/about-vision.jsx +0 -105
- package/minimal/src/sections/about/about-what.jsx +0 -133
- package/minimal/src/sections/about/view/about-view.jsx +0 -23
- package/minimal/src/sections/about/view/index.js +0 -1
- package/minimal/src/sections/account/account-billing-address.jsx +0 -130
- package/minimal/src/sections/account/account-billing-history.jsx +0 -78
- package/minimal/src/sections/account/account-billing-payment.jsx +0 -60
- package/minimal/src/sections/account/account-billing-plan.jsx +0 -225
- package/minimal/src/sections/account/account-billing.jsx +0 -35
- package/minimal/src/sections/account/account-change-password.jsx +0 -125
- package/minimal/src/sections/account/account-general.jsx +0 -201
- package/minimal/src/sections/account/account-notifications.jsx +0 -131
- package/minimal/src/sections/account/account-social-links.jsx +0 -87
- package/minimal/src/sections/account/view/index.js +0 -1
- package/minimal/src/sections/account/view/user-account-view.jsx +0 -106
- package/minimal/src/sections/address/address-item.jsx +0 -61
- package/minimal/src/sections/address/address-list-dialog.jsx +0 -165
- package/minimal/src/sections/address/address-new-form.jsx +0 -176
- package/minimal/src/sections/address/index.js +0 -3
- package/minimal/src/sections/auth/amplify/amplify-forgot-password-view.jsx +0 -112
- package/minimal/src/sections/auth/amplify/amplify-login-view.jsx +0 -140
- package/minimal/src/sections/auth/amplify/amplify-new-password-view.jsx +0 -199
- package/minimal/src/sections/auth/amplify/amplify-register-view.jsx +0 -163
- package/minimal/src/sections/auth/amplify/amplify-verify-view.jsx +0 -154
- package/minimal/src/sections/auth/amplify/index.js +0 -5
- package/minimal/src/sections/auth/auth0/auth0-login-view.jsx +0 -120
- package/minimal/src/sections/auth/auth0/index.js +0 -1
- package/minimal/src/sections/auth/firebase/firebase-forgot-password-view.jsx +0 -112
- package/minimal/src/sections/auth/firebase/firebase-login-view.jsx +0 -198
- package/minimal/src/sections/auth/firebase/firebase-register-view.jsx +0 -220
- package/minimal/src/sections/auth/firebase/firebase-verify-view.jsx +0 -56
- package/minimal/src/sections/auth/firebase/index.js +0 -4
- package/minimal/src/sections/auth/jwt/index.js +0 -2
- package/minimal/src/sections/auth/jwt/jwt-login-view.jsx +0 -137
- package/minimal/src/sections/auth/jwt/jwt-register-view.jsx +0 -164
- package/minimal/src/sections/auth-demo/classic/classic-forgot-password-view.jsx +0 -100
- package/minimal/src/sections/auth-demo/classic/classic-login-view.jsx +0 -118
- package/minimal/src/sections/auth-demo/classic/classic-new-password-view.jsx +0 -167
- package/minimal/src/sections/auth-demo/classic/classic-register-view.jsx +0 -140
- package/minimal/src/sections/auth-demo/classic/classic-verify-view.jsx +0 -122
- package/minimal/src/sections/auth-demo/classic/index.js +0 -5
- package/minimal/src/sections/auth-demo/modern/index.js +0 -5
- package/minimal/src/sections/auth-demo/modern/modern-forgot-password-view.jsx +0 -102
- package/minimal/src/sections/auth-demo/modern/modern-login-view.jsx +0 -120
- package/minimal/src/sections/auth-demo/modern/modern-new-password-view.jsx +0 -167
- package/minimal/src/sections/auth-demo/modern/modern-register-view.jsx +0 -142
- package/minimal/src/sections/auth-demo/modern/modern-verify-view.jsx +0 -122
- package/minimal/src/sections/blank/view.jsx +0 -29
- package/minimal/src/sections/blog/post-comment-form.jsx +0 -80
- package/minimal/src/sections/blog/post-comment-item.jsx +0 -88
- package/minimal/src/sections/blog/post-comment-list.jsx +0 -55
- package/minimal/src/sections/blog/post-details-hero.jsx +0 -124
- package/minimal/src/sections/blog/post-details-preview.jsx +0 -96
- package/minimal/src/sections/blog/post-details-toolbar.jsx +0 -111
- package/minimal/src/sections/blog/post-item-horizontal.jsx +0 -183
- package/minimal/src/sections/blog/post-item.jsx +0 -203
- package/minimal/src/sections/blog/post-list-horizontal.jsx +0 -59
- package/minimal/src/sections/blog/post-list.jsx +0 -66
- package/minimal/src/sections/blog/post-new-edit-form.jsx +0 -315
- package/minimal/src/sections/blog/post-search.jsx +0 -129
- package/minimal/src/sections/blog/post-skeleton.jsx +0 -94
- package/minimal/src/sections/blog/post-sort.jsx +0 -56
- package/minimal/src/sections/blog/view/index.js +0 -6
- package/minimal/src/sections/blog/view/post-create-view.jsx +0 -40
- package/minimal/src/sections/blog/view/post-details-home-view.jsx +0 -188
- package/minimal/src/sections/blog/view/post-details-view.jsx +0 -172
- package/minimal/src/sections/blog/view/post-edit-view.jsx +0 -50
- package/minimal/src/sections/blog/view/post-list-home-view.jsx +0 -99
- package/minimal/src/sections/blog/view/post-list-view.jsx +0 -187
- package/minimal/src/sections/calendar/calendar-filters-result.jsx +0 -132
- package/minimal/src/sections/calendar/calendar-filters.jsx +0 -217
- package/minimal/src/sections/calendar/calendar-form.jsx +0 -198
- package/minimal/src/sections/calendar/calendar-toolbar.jsx +0 -141
- package/minimal/src/sections/calendar/hooks/index.js +0 -2
- package/minimal/src/sections/calendar/hooks/use-calendar.js +0 -168
- package/minimal/src/sections/calendar/hooks/use-event.js +0 -33
- package/minimal/src/sections/calendar/styles.js +0 -163
- package/minimal/src/sections/calendar/view/calendar-view.jsx +0 -265
- package/minimal/src/sections/calendar/view/index.js +0 -1
- package/minimal/src/sections/chat/chat-header-compose.jsx +0 -112
- package/minimal/src/sections/chat/chat-header-detail.jsx +0 -84
- package/minimal/src/sections/chat/chat-message-input.jsx +0 -153
- package/minimal/src/sections/chat/chat-message-item.jsx +0 -153
- package/minimal/src/sections/chat/chat-message-list.jsx +0 -50
- package/minimal/src/sections/chat/chat-nav-account.jsx +0 -115
- package/minimal/src/sections/chat/chat-nav-item.jsx +0 -152
- package/minimal/src/sections/chat/chat-nav-search-results.jsx +0 -64
- package/minimal/src/sections/chat/chat-nav.jsx +0 -264
- package/minimal/src/sections/chat/chat-room-attachments.jsx +0 -125
- package/minimal/src/sections/chat/chat-room-group.jsx +0 -106
- package/minimal/src/sections/chat/chat-room-participant-dialog.jsx +0 -112
- package/minimal/src/sections/chat/chat-room-single.jsx +0 -102
- package/minimal/src/sections/chat/chat-room.jsx +0 -150
- package/minimal/src/sections/chat/chat-skeleton.jsx +0 -33
- package/minimal/src/sections/chat/hooks/index.js +0 -4
- package/minimal/src/sections/chat/hooks/use-collapse-nav.js +0 -35
- package/minimal/src/sections/chat/hooks/use-get-message.js +0 -25
- package/minimal/src/sections/chat/hooks/use-get-nav-item.js +0 -38
- package/minimal/src/sections/chat/hooks/use-messages-scroll.js +0 -33
- package/minimal/src/sections/chat/view/chat-view.jsx +0 -145
- package/minimal/src/sections/chat/view/index.js +0 -1
- package/minimal/src/sections/checkout/checkout-billing-address.jsx +0 -92
- package/minimal/src/sections/checkout/checkout-billing-info.jsx +0 -43
- package/minimal/src/sections/checkout/checkout-cart-product-list.jsx +0 -58
- package/minimal/src/sections/checkout/checkout-cart-product.jsx +0 -81
- package/minimal/src/sections/checkout/checkout-cart.jsx +0 -88
- package/minimal/src/sections/checkout/checkout-delivery.jsx +0 -103
- package/minimal/src/sections/checkout/checkout-order-complete.jsx +0 -116
- package/minimal/src/sections/checkout/checkout-payment-methods.jsx +0 -149
- package/minimal/src/sections/checkout/checkout-payment.jsx +0 -140
- package/minimal/src/sections/checkout/checkout-steps.jsx +0 -103
- package/minimal/src/sections/checkout/checkout-summary.jsx +0 -112
- package/minimal/src/sections/checkout/context/checkout-context.js +0 -13
- package/minimal/src/sections/checkout/context/checkout-provider.jsx +0 -219
- package/minimal/src/sections/checkout/context/index.js +0 -2
- package/minimal/src/sections/checkout/view/checkout-view.jsx +0 -52
- package/minimal/src/sections/checkout/view/index.js +0 -1
- package/minimal/src/sections/coming-soon/view.jsx +0 -113
- package/minimal/src/sections/contact/contact-form.jsx +0 -47
- package/minimal/src/sections/contact/contact-hero.jsx +0 -129
- package/minimal/src/sections/contact/contact-map.jsx +0 -100
- package/minimal/src/sections/contact/view/contact-view.jsx +0 -33
- package/minimal/src/sections/contact/view/index.js +0 -1
- package/minimal/src/sections/error/403-view.jsx +0 -43
- package/minimal/src/sections/error/500-view.jsx +0 -41
- package/minimal/src/sections/error/index.js +0 -3
- package/minimal/src/sections/error/not-found-view.jsx +0 -47
- package/minimal/src/sections/faqs/faqs-category.jsx +0 -172
- package/minimal/src/sections/faqs/faqs-form.jsx +0 -42
- package/minimal/src/sections/faqs/faqs-hero.jsx +0 -111
- package/minimal/src/sections/faqs/faqs-list.jsx +0 -28
- package/minimal/src/sections/faqs/view/faqs-view.jsx +0 -50
- package/minimal/src/sections/faqs/view/index.js +0 -1
- package/minimal/src/sections/file-manager/file-data-activity.jsx +0 -125
- package/minimal/src/sections/file-manager/file-manager-action-selected.jsx +0 -74
- package/minimal/src/sections/file-manager/file-manager-file-details.jsx +0 -281
- package/minimal/src/sections/file-manager/file-manager-file-item.jsx +0 -270
- package/minimal/src/sections/file-manager/file-manager-filters-result.jsx +0 -115
- package/minimal/src/sections/file-manager/file-manager-filters.jsx +0 -217
- package/minimal/src/sections/file-manager/file-manager-folder-item.jsx +0 -309
- package/minimal/src/sections/file-manager/file-manager-grid-view.jsx +0 -201
- package/minimal/src/sections/file-manager/file-manager-invited-item.jsx +0 -113
- package/minimal/src/sections/file-manager/file-manager-new-folder-dialog.jsx +0 -117
- package/minimal/src/sections/file-manager/file-manager-panel.jsx +0 -81
- package/minimal/src/sections/file-manager/file-manager-share-dialog.jsx +0 -95
- package/minimal/src/sections/file-manager/file-manager-table-row.jsx +0 -287
- package/minimal/src/sections/file-manager/file-manager-table.jsx +0 -208
- package/minimal/src/sections/file-manager/file-recent-item.jsx +0 -240
- package/minimal/src/sections/file-manager/file-storage-overview.jsx +0 -110
- package/minimal/src/sections/file-manager/file-upgrade.jsx +0 -60
- package/minimal/src/sections/file-manager/file-widget.jsx +0 -64
- package/minimal/src/sections/file-manager/view/file-manager-view.jsx +0 -284
- package/minimal/src/sections/file-manager/view/index.js +0 -1
- package/minimal/src/sections/home/home-advertisement.jsx +0 -118
- package/minimal/src/sections/home/home-clean-interfaces.jsx +0 -84
- package/minimal/src/sections/home/home-color-presets.jsx +0 -156
- package/minimal/src/sections/home/home-dark-mode.jsx +0 -80
- package/minimal/src/sections/home/home-for-designer.jsx +0 -114
- package/minimal/src/sections/home/home-hero.jsx +0 -425
- package/minimal/src/sections/home/home-hugepack-elements.jsx +0 -473
- package/minimal/src/sections/home/home-looking-for.jsx +0 -93
- package/minimal/src/sections/home/home-minimal.jsx +0 -109
- package/minimal/src/sections/home/home-pricing.jsx +0 -266
- package/minimal/src/sections/home/view/home-view.jsx +0 -83
- package/minimal/src/sections/home/view/index.js +0 -1
- package/minimal/src/sections/invoice/invoice-analytic.jsx +0 -70
- package/minimal/src/sections/invoice/invoice-details.jsx +0 -253
- package/minimal/src/sections/invoice/invoice-new-edit-address.jsx +0 -131
- package/minimal/src/sections/invoice/invoice-new-edit-details.jsx +0 -321
- package/minimal/src/sections/invoice/invoice-new-edit-form.jsx +0 -157
- package/minimal/src/sections/invoice/invoice-new-edit-status-date.jsx +0 -86
- package/minimal/src/sections/invoice/invoice-pdf.jsx +0 -278
- package/minimal/src/sections/invoice/invoice-table-filters-result.jsx +0 -126
- package/minimal/src/sections/invoice/invoice-table-row.jsx +0 -186
- package/minimal/src/sections/invoice/invoice-table-toolbar.jsx +0 -188
- package/minimal/src/sections/invoice/invoice-toolbar.jsx +0 -140
- package/minimal/src/sections/invoice/view/index.js +0 -4
- package/minimal/src/sections/invoice/view/invoice-create-view.jsx +0 -40
- package/minimal/src/sections/invoice/view/invoice-details-view.jsx +0 -46
- package/minimal/src/sections/invoice/view/invoice-edit-view.jsx +0 -48
- package/minimal/src/sections/invoice/view/invoice-list-view.jsx +0 -519
- package/minimal/src/sections/job/job-details-candidates.jsx +0 -114
- package/minimal/src/sections/job/job-details-content.jsx +0 -149
- package/minimal/src/sections/job/job-details-toolbar.jsx +0 -111
- package/minimal/src/sections/job/job-filters-result.jsx +0 -165
- package/minimal/src/sections/job/job-filters.jsx +0 -315
- package/minimal/src/sections/job/job-item.jsx +0 -160
- package/minimal/src/sections/job/job-list.jsx +0 -74
- package/minimal/src/sections/job/job-new-edit-form.jsx +0 -443
- package/minimal/src/sections/job/job-search.jsx +0 -93
- package/minimal/src/sections/job/job-sort.jsx +0 -63
- package/minimal/src/sections/job/view/index.js +0 -4
- package/minimal/src/sections/job/view/job-create-view.jsx +0 -38
- package/minimal/src/sections/job/view/job-details-view.jsx +0 -85
- package/minimal/src/sections/job/view/job-edit-view.jsx +0 -48
- package/minimal/src/sections/job/view/job-list-view.jsx +0 -244
- package/minimal/src/sections/kanban/kanban-column-add.jsx +0 -85
- package/minimal/src/sections/kanban/kanban-column-tool-bar.jsx +0 -149
- package/minimal/src/sections/kanban/kanban-column.jsx +0 -202
- package/minimal/src/sections/kanban/kanban-contacts-dialog.jsx +0 -138
- package/minimal/src/sections/kanban/kanban-details-attachments.jsx +0 -50
- package/minimal/src/sections/kanban/kanban-details-comment-input.jsx +0 -47
- package/minimal/src/sections/kanban/kanban-details-comment-list.jsx +0 -78
- package/minimal/src/sections/kanban/kanban-details-priority.jsx +0 -62
- package/minimal/src/sections/kanban/kanban-details-toolbar.jsx +0 -133
- package/minimal/src/sections/kanban/kanban-details.jsx +0 -303
- package/minimal/src/sections/kanban/kanban-input-name.jsx +0 -36
- package/minimal/src/sections/kanban/kanban-skeleton.jsx +0 -39
- package/minimal/src/sections/kanban/kanban-task-add.jsx +0 -94
- package/minimal/src/sections/kanban/kanban-task-item.jsx +0 -169
- package/minimal/src/sections/kanban/view/index.js +0 -1
- package/minimal/src/sections/kanban/view/kanban-view.jsx +0 -182
- package/minimal/src/sections/mail/mail-compose.jsx +0 -170
- package/minimal/src/sections/mail/mail-details.jsx +0 -335
- package/minimal/src/sections/mail/mail-header.jsx +0 -46
- package/minimal/src/sections/mail/mail-item.jsx +0 -87
- package/minimal/src/sections/mail/mail-list.jsx +0 -121
- package/minimal/src/sections/mail/mail-nav-item.jsx +0 -75
- package/minimal/src/sections/mail/mail-nav.jsx +0 -123
- package/minimal/src/sections/mail/mail-skeleton.jsx +0 -59
- package/minimal/src/sections/mail/view/index.js +0 -1
- package/minimal/src/sections/mail/view/mail-view.jsx +0 -237
- package/minimal/src/sections/maintenance/view.jsx +0 -29
- package/minimal/src/sections/order/order-details-history.jsx +0 -109
- package/minimal/src/sections/order/order-details-info.jsx +0 -169
- package/minimal/src/sections/order/order-details-item.jsx +0 -138
- package/minimal/src/sections/order/order-details-toolbar.jsx +0 -126
- package/minimal/src/sections/order/order-table-filters-result.jsx +0 -108
- package/minimal/src/sections/order/order-table-row.jsx +0 -229
- package/minimal/src/sections/order/order-table-toolbar.jsx +0 -159
- package/minimal/src/sections/order/view/index.js +0 -2
- package/minimal/src/sections/order/view/order-details-view.jsx +0 -74
- package/minimal/src/sections/order/view/order-list-view.jsx +0 -382
- package/minimal/src/sections/overview/analytics/analytics-conversion-rates.jsx +0 -64
- package/minimal/src/sections/overview/analytics/analytics-current-subject.jsx +0 -78
- package/minimal/src/sections/overview/analytics/analytics-current-visits.jsx +0 -101
- package/minimal/src/sections/overview/analytics/analytics-news.jsx +0 -95
- package/minimal/src/sections/overview/analytics/analytics-order-timeline.jsx +0 -79
- package/minimal/src/sections/overview/analytics/analytics-tasks.jsx +0 -135
- package/minimal/src/sections/overview/analytics/analytics-traffic-by-site.jsx +0 -53
- package/minimal/src/sections/overview/analytics/analytics-website-visits.jsx +0 -65
- package/minimal/src/sections/overview/analytics/analytics-widget-summary.jsx +0 -59
- package/minimal/src/sections/overview/analytics/view/index.js +0 -1
- package/minimal/src/sections/overview/analytics/view/overview-analytics-view.jsx +0 -185
- package/minimal/src/sections/overview/app/app-area-installed.jsx +0 -123
- package/minimal/src/sections/overview/app/app-current-download.jsx +0 -103
- package/minimal/src/sections/overview/app/app-featured.jsx +0 -118
- package/minimal/src/sections/overview/app/app-new-invoice.jsx +0 -155
- package/minimal/src/sections/overview/app/app-top-authors.jsx +0 -88
- package/minimal/src/sections/overview/app/app-top-installed-countries.jsx +0 -74
- package/minimal/src/sections/overview/app/app-top-related.jsx +0 -92
- package/minimal/src/sections/overview/app/app-welcome.jsx +0 -83
- package/minimal/src/sections/overview/app/app-widget-summary.jsx +0 -110
- package/minimal/src/sections/overview/app/app-widget.jsx +0 -120
- package/minimal/src/sections/overview/app/view/index.js +0 -1
- package/minimal/src/sections/overview/app/view/overview-app-view.jsx +0 -205
- package/minimal/src/sections/overview/banking/banking-balance-statistics.jsx +0 -113
- package/minimal/src/sections/overview/banking/banking-contacts.jsx +0 -56
- package/minimal/src/sections/overview/banking/banking-current-balance.jsx +0 -193
- package/minimal/src/sections/overview/banking/banking-expenses-categories.jsx +0 -115
- package/minimal/src/sections/overview/banking/banking-invite-friends.jsx +0 -78
- package/minimal/src/sections/overview/banking/banking-quick-transfer.jsx +0 -368
- package/minimal/src/sections/overview/banking/banking-recent-transitions.jsx +0 -223
- package/minimal/src/sections/overview/banking/banking-widget-summary.jsx +0 -144
- package/minimal/src/sections/overview/banking/view/index.js +0 -1
- package/minimal/src/sections/overview/banking/view/overview-banking-view.jsx +0 -202
- package/minimal/src/sections/overview/booking/booking-available.jsx +0 -109
- package/minimal/src/sections/overview/booking/booking-booked.jsx +0 -56
- package/minimal/src/sections/overview/booking/booking-check-in-widgets.jsx +0 -136
- package/minimal/src/sections/overview/booking/booking-customer-reviews.jsx +0 -115
- package/minimal/src/sections/overview/booking/booking-details.jsx +0 -204
- package/minimal/src/sections/overview/booking/booking-newest.jsx +0 -156
- package/minimal/src/sections/overview/booking/booking-statistics.jsx +0 -113
- package/minimal/src/sections/overview/booking/booking-total-incomes.jsx +0 -137
- package/minimal/src/sections/overview/booking/booking-widget-summary.jsx +0 -48
- package/minimal/src/sections/overview/booking/view/index.js +0 -1
- package/minimal/src/sections/overview/booking/view/overview-booking-view.jsx +0 -183
- package/minimal/src/sections/overview/e-commerce/ecommerce-best-salesman.jsx +0 -94
- package/minimal/src/sections/overview/e-commerce/ecommerce-current-balance.jsx +0 -70
- package/minimal/src/sections/overview/e-commerce/ecommerce-latest-products.jsx +0 -84
- package/minimal/src/sections/overview/e-commerce/ecommerce-new-products.jsx +0 -98
- package/minimal/src/sections/overview/e-commerce/ecommerce-sale-by-gender.jsx +0 -102
- package/minimal/src/sections/overview/e-commerce/ecommerce-sales-overview.jsx +0 -65
- package/minimal/src/sections/overview/e-commerce/ecommerce-welcome.jsx +0 -83
- package/minimal/src/sections/overview/e-commerce/ecommerce-widget-summary.jsx +0 -124
- package/minimal/src/sections/overview/e-commerce/ecommerce-yearly-sales.jsx +0 -107
- package/minimal/src/sections/overview/e-commerce/view/index.js +0 -1
- package/minimal/src/sections/overview/e-commerce/view/overview-ecommerce-view.jsx +0 -188
- package/minimal/src/sections/overview/file/view/index.js +0 -1
- package/minimal/src/sections/overview/file/view/overview-file-view.jsx +0 -285
- package/minimal/src/sections/payment/payment-billing-address.jsx +0 -20
- package/minimal/src/sections/payment/payment-card-item.jsx +0 -78
- package/minimal/src/sections/payment/payment-card-list-dialog.jsx +0 -116
- package/minimal/src/sections/payment/payment-methods.jsx +0 -165
- package/minimal/src/sections/payment/payment-new-card-dialog.jsx +0 -99
- package/minimal/src/sections/payment/payment-summary.jsx +0 -103
- package/minimal/src/sections/payment/view/index.js +0 -1
- package/minimal/src/sections/payment/view/payment-view.jsx +0 -58
- package/minimal/src/sections/permission/view.jsx +0 -82
- package/minimal/src/sections/pricing/pricing-card.jsx +0 -151
- package/minimal/src/sections/pricing/view.jsx +0 -84
- package/minimal/src/sections/product/common/cart-icon.jsx +0 -44
- package/minimal/src/sections/product/common/incrementer-button.jsx +0 -62
- package/minimal/src/sections/product/product-details-carousel.jsx +0 -191
- package/minimal/src/sections/product/product-details-description.jsx +0 -34
- package/minimal/src/sections/product/product-details-review.jsx +0 -137
- package/minimal/src/sections/product/product-details-summary.jsx +0 -355
- package/minimal/src/sections/product/product-details-toolbar.jsx +0 -111
- package/minimal/src/sections/product/product-filters-result.jsx +0 -170
- package/minimal/src/sections/product/product-filters.jsx +0 -365
- package/minimal/src/sections/product/product-item.jsx +0 -153
- package/minimal/src/sections/product/product-list.jsx +0 -62
- package/minimal/src/sections/product/product-new-edit-form.jsx +0 -452
- package/minimal/src/sections/product/product-review-item.jsx +0 -123
- package/minimal/src/sections/product/product-review-list.jsx +0 -33
- package/minimal/src/sections/product/product-review-new-form.jsx +0 -115
- package/minimal/src/sections/product/product-search.jsx +0 -131
- package/minimal/src/sections/product/product-skeleton.jsx +0 -81
- package/minimal/src/sections/product/product-sort.jsx +0 -58
- package/minimal/src/sections/product/product-table-filters-result.jsx +0 -115
- package/minimal/src/sections/product/product-table-row.jsx +0 -189
- package/minimal/src/sections/product/product-table-toolbar.jsx +0 -191
- package/minimal/src/sections/product/view/index.js +0 -6
- package/minimal/src/sections/product/view/product-create-view.jsx +0 -38
- package/minimal/src/sections/product/view/product-details-view.jsx +0 -193
- package/minimal/src/sections/product/view/product-edit-view.jsx +0 -45
- package/minimal/src/sections/product/view/product-list-view.jsx +0 -345
- package/minimal/src/sections/product/view/product-shop-details-view.jsx +0 -200
- package/minimal/src/sections/product/view/product-shop-view.jsx +0 -240
- package/minimal/src/sections/tour/tour-details-bookers.jsx +0 -145
- package/minimal/src/sections/tour/tour-details-content.jsx +0 -271
- package/minimal/src/sections/tour/tour-details-toolbar.jsx +0 -111
- package/minimal/src/sections/tour/tour-filters-result.jsx +0 -158
- package/minimal/src/sections/tour/tour-filters.jsx +0 -298
- package/minimal/src/sections/tour/tour-item.jsx +0 -227
- package/minimal/src/sections/tour/tour-list.jsx +0 -74
- package/minimal/src/sections/tour/tour-new-edit-form.jsx +0 -413
- package/minimal/src/sections/tour/tour-search.jsx +0 -123
- package/minimal/src/sections/tour/tour-sort.jsx +0 -63
- package/minimal/src/sections/tour/view/index.js +0 -4
- package/minimal/src/sections/tour/view/tour-create-view.jsx +0 -38
- package/minimal/src/sections/tour/view/tour-details-view.jsx +0 -85
- package/minimal/src/sections/tour/view/tour-edit-view.jsx +0 -48
- package/minimal/src/sections/tour/view/tour-list-view.jsx +0 -252
- package/minimal/src/sections/user/profile-cover.jsx +0 -77
- package/minimal/src/sections/user/profile-followers.jsx +0 -121
- package/minimal/src/sections/user/profile-friends.jsx +0 -180
- package/minimal/src/sections/user/profile-gallery.jsx +0 -97
- package/minimal/src/sections/user/profile-home.jsx +0 -201
- package/minimal/src/sections/user/profile-post-item.jsx +0 -226
- package/minimal/src/sections/user/user-card-list.jsx +0 -29
- package/minimal/src/sections/user/user-card.jsx +0 -124
- package/minimal/src/sections/user/user-new-edit-form.jsx +0 -285
- package/minimal/src/sections/user/user-quick-edit-form.jsx +0 -177
- package/minimal/src/sections/user/user-table-filters-result.jsx +0 -107
- package/minimal/src/sections/user/user-table-row.jsx +0 -138
- package/minimal/src/sections/user/user-table-toolbar.jsx +0 -150
- package/minimal/src/sections/user/view/index.js +0 -5
- package/minimal/src/sections/user/view/user-cards-view.jsx +0 -45
- package/minimal/src/sections/user/view/user-create-view.jsx +0 -38
- package/minimal/src/sections/user/view/user-edit-view.jsx +0 -48
- package/minimal/src/sections/user/view/user-list-view.jsx +0 -367
- package/minimal/src/sections/user/view/user-profile-view.jsx +0 -134
- package/minimal/src/theme/css.js +0 -152
- package/minimal/src/theme/custom-shadows.js +0 -32
- package/minimal/src/theme/index.jsx +0 -80
- package/minimal/src/theme/options/contrast.js +0 -34
- package/minimal/src/theme/options/presets.js +0 -89
- package/minimal/src/theme/options/right-to-left.jsx +0 -31
- package/minimal/src/theme/overrides/components/accordion.js +0 -43
- package/minimal/src/theme/overrides/components/alert.js +0 -68
- package/minimal/src/theme/overrides/components/appbar.js +0 -13
- package/minimal/src/theme/overrides/components/autocomplete.js +0 -44
- package/minimal/src/theme/overrides/components/avatar.js +0 -103
- package/minimal/src/theme/overrides/components/backdrop.js +0 -18
- package/minimal/src/theme/overrides/components/badge.js +0 -90
- package/minimal/src/theme/overrides/components/breadcrumbs.js +0 -21
- package/minimal/src/theme/overrides/components/button-group.js +0 -90
- package/minimal/src/theme/overrides/components/button.js +0 -139
- package/minimal/src/theme/overrides/components/card.js +0 -30
- package/minimal/src/theme/overrides/components/checkbox.js +0 -13
- package/minimal/src/theme/overrides/components/chip.js +0 -123
- package/minimal/src/theme/overrides/components/css-baseline.js +0 -48
- package/minimal/src/theme/overrides/components/data-grid.js +0 -95
- package/minimal/src/theme/overrides/components/date-picker.jsx +0 -83
- package/minimal/src/theme/overrides/components/dialog.js +0 -49
- package/minimal/src/theme/overrides/components/drawer.js +0 -36
- package/minimal/src/theme/overrides/components/fab.js +0 -159
- package/minimal/src/theme/overrides/components/list.js +0 -33
- package/minimal/src/theme/overrides/components/loading-button.js +0 -30
- package/minimal/src/theme/overrides/components/menu.js +0 -15
- package/minimal/src/theme/overrides/components/pagination.js +0 -77
- package/minimal/src/theme/overrides/components/paper.js +0 -18
- package/minimal/src/theme/overrides/components/popover.js +0 -21
- package/minimal/src/theme/overrides/components/progress.js +0 -40
- package/minimal/src/theme/overrides/components/radio.js +0 -22
- package/minimal/src/theme/overrides/components/rating.js +0 -40
- package/minimal/src/theme/overrides/components/select.js +0 -26
- package/minimal/src/theme/overrides/components/skeleton.js +0 -16
- package/minimal/src/theme/overrides/components/slider.js +0 -30
- package/minimal/src/theme/overrides/components/stepper.js +0 -13
- package/minimal/src/theme/overrides/components/svg-icon.js +0 -15
- package/minimal/src/theme/overrides/components/switch.js +0 -66
- package/minimal/src/theme/overrides/components/table.js +0 -79
- package/minimal/src/theme/overrides/components/tabs.js +0 -39
- package/minimal/src/theme/overrides/components/textfield.js +0 -146
- package/minimal/src/theme/overrides/components/timeline.js +0 -20
- package/minimal/src/theme/overrides/components/toggle-button.js +0 -67
- package/minimal/src/theme/overrides/components/tooltip.js +0 -18
- package/minimal/src/theme/overrides/components/tree-view.js +0 -16
- package/minimal/src/theme/overrides/components/typography.js +0 -16
- package/minimal/src/theme/overrides/default-props.jsx +0 -239
- package/minimal/src/theme/overrides/index.js +0 -98
- package/minimal/src/theme/palette.js +0 -144
- package/minimal/src/theme/shadows.js +0 -41
- package/minimal/src/theme/typography.js +0 -107
- package/minimal/src/utils/axios.js +0 -53
- package/minimal/src/utils/change-case.js +0 -13
- package/minimal/src/utils/flatten-array.js +0 -14
- package/minimal/src/utils/format-number.js +0 -37
- package/minimal/src/utils/format-time.js +0 -27
- package/minimal/src/utils/highlight.js +0 -12
- package/minimal/src/utils/storage-available.js +0 -24
- package/minimal/src/utils/uuidv4.js +0 -10
- package/minimal/vercel.json +0 -8
- package/minimal/vite.config.js +0 -35
- package/minimal/yarn.lock +0 -6748
- /package/{components → src/lib}/AddItemWizard/AddItemWizard.jsx +0 -0
- /package/{components → src/lib}/AddItemWizard/index.js +0 -0
- /package/{components → src/lib}/SparkleInput/SparkleInput.jsx +0 -0
- /package/{components → src/lib}/StepComponent/StepComponent.jsx +0 -0
- /package/{components → src/lib}/lib/Icons.js +0 -0
- /package/{components → src/lib}/lib/context.json +0 -0
package/minimal/src/api/mail.js
DELETED
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import useSWR from 'swr';
|
|
2
|
-
import { useMemo } from 'react';
|
|
3
|
-
import keyBy from 'lodash/keyBy';
|
|
4
|
-
|
|
5
|
-
import { fetcher, endpoints } from 'src/utils/axios';
|
|
6
|
-
|
|
7
|
-
// ----------------------------------------------------------------------
|
|
8
|
-
|
|
9
|
-
export function useGetLabels() {
|
|
10
|
-
const URL = endpoints.mail.labels;
|
|
11
|
-
|
|
12
|
-
const { data, isLoading, error, isValidating } = useSWR(URL, fetcher);
|
|
13
|
-
|
|
14
|
-
const memoizedValue = useMemo(
|
|
15
|
-
() => ({
|
|
16
|
-
labels: data?.labels || [],
|
|
17
|
-
labelsLoading: isLoading,
|
|
18
|
-
labelsError: error,
|
|
19
|
-
labelsValidating: isValidating,
|
|
20
|
-
labelsEmpty: !isLoading && !data?.labels.length,
|
|
21
|
-
}),
|
|
22
|
-
[data?.labels, error, isLoading, isValidating]
|
|
23
|
-
);
|
|
24
|
-
|
|
25
|
-
return memoizedValue;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// ----------------------------------------------------------------------
|
|
29
|
-
|
|
30
|
-
export function useGetMails(labelId) {
|
|
31
|
-
const URL = labelId ? [endpoints.mail.list, { params: { labelId } }] : '';
|
|
32
|
-
|
|
33
|
-
const { data, isLoading, error, isValidating } = useSWR(URL, fetcher);
|
|
34
|
-
|
|
35
|
-
const memoizedValue = useMemo(() => {
|
|
36
|
-
const byId = keyBy(data?.mails, 'id') || {};
|
|
37
|
-
const allIds = Object.keys(byId) || [];
|
|
38
|
-
|
|
39
|
-
return {
|
|
40
|
-
mails: {
|
|
41
|
-
byId,
|
|
42
|
-
allIds,
|
|
43
|
-
},
|
|
44
|
-
mailsLoading: isLoading,
|
|
45
|
-
mailsError: error,
|
|
46
|
-
mailsValidating: isValidating,
|
|
47
|
-
mailsEmpty: !isLoading && !allIds.length,
|
|
48
|
-
};
|
|
49
|
-
}, [data?.mails, error, isLoading, isValidating]);
|
|
50
|
-
|
|
51
|
-
return memoizedValue;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
// ----------------------------------------------------------------------
|
|
55
|
-
|
|
56
|
-
export function useGetMail(mailId) {
|
|
57
|
-
const URL = mailId ? [endpoints.mail.details, { params: { mailId } }] : '';
|
|
58
|
-
|
|
59
|
-
const { data, isLoading, error, isValidating } = useSWR(URL, fetcher);
|
|
60
|
-
|
|
61
|
-
const memoizedValue = useMemo(
|
|
62
|
-
() => ({
|
|
63
|
-
mail: data?.mail,
|
|
64
|
-
mailLoading: isLoading,
|
|
65
|
-
mailError: error,
|
|
66
|
-
mailValidating: isValidating,
|
|
67
|
-
}),
|
|
68
|
-
[data?.mail, error, isLoading, isValidating]
|
|
69
|
-
);
|
|
70
|
-
|
|
71
|
-
return memoizedValue;
|
|
72
|
-
}
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import useSWR from 'swr';
|
|
2
|
-
import { useMemo } from 'react';
|
|
3
|
-
|
|
4
|
-
import { fetcher, endpoints } from 'src/utils/axios';
|
|
5
|
-
|
|
6
|
-
// ----------------------------------------------------------------------
|
|
7
|
-
|
|
8
|
-
export function useGetProducts() {
|
|
9
|
-
const URL = endpoints.product.list;
|
|
10
|
-
|
|
11
|
-
const { data, isLoading, error, isValidating } = useSWR(URL, fetcher);
|
|
12
|
-
|
|
13
|
-
const memoizedValue = useMemo(
|
|
14
|
-
() => ({
|
|
15
|
-
products: data?.products || [],
|
|
16
|
-
productsLoading: isLoading,
|
|
17
|
-
productsError: error,
|
|
18
|
-
productsValidating: isValidating,
|
|
19
|
-
productsEmpty: !isLoading && !data?.products.length,
|
|
20
|
-
}),
|
|
21
|
-
[data?.products, error, isLoading, isValidating]
|
|
22
|
-
);
|
|
23
|
-
|
|
24
|
-
return memoizedValue;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
// ----------------------------------------------------------------------
|
|
28
|
-
|
|
29
|
-
export function useGetProduct(productId) {
|
|
30
|
-
const URL = productId ? [endpoints.product.details, { params: { productId } }] : '';
|
|
31
|
-
|
|
32
|
-
const { data, isLoading, error, isValidating } = useSWR(URL, fetcher);
|
|
33
|
-
|
|
34
|
-
const memoizedValue = useMemo(
|
|
35
|
-
() => ({
|
|
36
|
-
product: data?.product,
|
|
37
|
-
productLoading: isLoading,
|
|
38
|
-
productError: error,
|
|
39
|
-
productValidating: isValidating,
|
|
40
|
-
}),
|
|
41
|
-
[data?.product, error, isLoading, isValidating]
|
|
42
|
-
);
|
|
43
|
-
|
|
44
|
-
return memoizedValue;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
// ----------------------------------------------------------------------
|
|
48
|
-
|
|
49
|
-
export function useSearchProducts(query) {
|
|
50
|
-
const URL = query ? [endpoints.product.search, { params: { query } }] : '';
|
|
51
|
-
|
|
52
|
-
const { data, isLoading, error, isValidating } = useSWR(URL, fetcher, {
|
|
53
|
-
keepPreviousData: true,
|
|
54
|
-
});
|
|
55
|
-
|
|
56
|
-
const memoizedValue = useMemo(
|
|
57
|
-
() => ({
|
|
58
|
-
searchResults: data?.results || [],
|
|
59
|
-
searchLoading: isLoading,
|
|
60
|
-
searchError: error,
|
|
61
|
-
searchValidating: isValidating,
|
|
62
|
-
searchEmpty: !isLoading && !data?.results.length,
|
|
63
|
-
}),
|
|
64
|
-
[data?.results, error, isLoading, isValidating]
|
|
65
|
-
);
|
|
66
|
-
|
|
67
|
-
return memoizedValue;
|
|
68
|
-
}
|
package/minimal/src/app.jsx
DELETED
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
/* eslint-disable perfectionist/sort-imports */
|
|
2
|
-
import 'src/global.css';
|
|
3
|
-
|
|
4
|
-
// i18n
|
|
5
|
-
import 'src/locales/i18n';
|
|
6
|
-
|
|
7
|
-
// ----------------------------------------------------------------------
|
|
8
|
-
|
|
9
|
-
import Router from 'src/routes/sections';
|
|
10
|
-
|
|
11
|
-
import ThemeProvider from 'src/theme';
|
|
12
|
-
|
|
13
|
-
import { LocalizationProvider } from 'src/locales';
|
|
14
|
-
|
|
15
|
-
import { useScrollToTop } from 'src/hooks/use-scroll-to-top';
|
|
16
|
-
|
|
17
|
-
import ProgressBar from 'src/components/progress-bar';
|
|
18
|
-
import { MotionLazy } from 'src/components/animate/motion-lazy';
|
|
19
|
-
import SnackbarProvider from 'src/components/snackbar/snackbar-provider';
|
|
20
|
-
import { SettingsDrawer, SettingsProvider } from 'src/components/settings';
|
|
21
|
-
|
|
22
|
-
import { CheckoutProvider } from 'src/sections/checkout/context';
|
|
23
|
-
|
|
24
|
-
import { AuthProvider } from 'src/auth/context/jwt';
|
|
25
|
-
// import { AuthProvider } from 'src/auth/context/auth0';
|
|
26
|
-
// import { AuthProvider } from 'src/auth/context/amplify';
|
|
27
|
-
// import { AuthProvider } from 'src/auth/context/firebase';
|
|
28
|
-
|
|
29
|
-
// ----------------------------------------------------------------------
|
|
30
|
-
|
|
31
|
-
export default function App() {
|
|
32
|
-
const charAt = `
|
|
33
|
-
|
|
34
|
-
░░░ ░░░
|
|
35
|
-
▒▒▒▒ ▒▒▒▒
|
|
36
|
-
▒▒ ▒▒▒▒ ▒▒
|
|
37
|
-
▓▓ ▓▓ ▓▓
|
|
38
|
-
██ ██
|
|
39
|
-
|
|
40
|
-
`;
|
|
41
|
-
|
|
42
|
-
console.info(`%c${charAt}`, 'color: #5BE49B');
|
|
43
|
-
|
|
44
|
-
useScrollToTop();
|
|
45
|
-
|
|
46
|
-
return (
|
|
47
|
-
<AuthProvider>
|
|
48
|
-
<LocalizationProvider>
|
|
49
|
-
<SettingsProvider
|
|
50
|
-
defaultSettings={{
|
|
51
|
-
themeMode: 'light', // 'light' | 'dark'
|
|
52
|
-
themeDirection: 'ltr', // 'rtl' | 'ltr'
|
|
53
|
-
themeContrast: 'default', // 'default' | 'bold'
|
|
54
|
-
themeLayout: 'vertical', // 'vertical' | 'horizontal' | 'mini'
|
|
55
|
-
themeColorPresets: 'default', // 'default' | 'cyan' | 'purple' | 'blue' | 'orange' | 'red'
|
|
56
|
-
themeStretch: false,
|
|
57
|
-
}}
|
|
58
|
-
>
|
|
59
|
-
<ThemeProvider>
|
|
60
|
-
<MotionLazy>
|
|
61
|
-
<SnackbarProvider>
|
|
62
|
-
<CheckoutProvider>
|
|
63
|
-
<SettingsDrawer />
|
|
64
|
-
<ProgressBar />
|
|
65
|
-
<Router />
|
|
66
|
-
</CheckoutProvider>
|
|
67
|
-
</SnackbarProvider>
|
|
68
|
-
</MotionLazy>
|
|
69
|
-
</ThemeProvider>
|
|
70
|
-
</SettingsProvider>
|
|
71
|
-
</LocalizationProvider>
|
|
72
|
-
</AuthProvider>
|
|
73
|
-
);
|
|
74
|
-
}
|
|
@@ -1,425 +0,0 @@
|
|
|
1
|
-
export const countries = [
|
|
2
|
-
{ code: '', label: '', phone: '' },
|
|
3
|
-
{ code: 'AD', label: 'Andorra', phone: '376' },
|
|
4
|
-
{
|
|
5
|
-
code: 'AE',
|
|
6
|
-
label: 'United Arab Emirates',
|
|
7
|
-
phone: '971',
|
|
8
|
-
},
|
|
9
|
-
{ code: 'AF', label: 'Afghanistan', phone: '93' },
|
|
10
|
-
{
|
|
11
|
-
code: 'AG',
|
|
12
|
-
label: 'Antigua and Barbuda',
|
|
13
|
-
phone: '1-268',
|
|
14
|
-
},
|
|
15
|
-
{ code: 'AI', label: 'Anguilla', phone: '1-264' },
|
|
16
|
-
{ code: 'AL', label: 'Albania', phone: '355' },
|
|
17
|
-
{ code: 'AM', label: 'Armenia', phone: '374' },
|
|
18
|
-
{ code: 'AO', label: 'Angola', phone: '244' },
|
|
19
|
-
{ code: 'AQ', label: 'Antarctica', phone: '672' },
|
|
20
|
-
{ code: 'AR', label: 'Argentina', phone: '54' },
|
|
21
|
-
{ code: 'AS', label: 'American Samoa', phone: '1-684' },
|
|
22
|
-
{ code: 'AT', label: 'Austria', phone: '43' },
|
|
23
|
-
{
|
|
24
|
-
code: 'AU',
|
|
25
|
-
label: 'Australia',
|
|
26
|
-
phone: '61',
|
|
27
|
-
suggested: true,
|
|
28
|
-
},
|
|
29
|
-
{ code: 'AW', label: 'Aruba', phone: '297' },
|
|
30
|
-
{ code: 'AX', label: 'Alland Islands', phone: '358' },
|
|
31
|
-
{ code: 'AZ', label: 'Azerbaijan', phone: '994' },
|
|
32
|
-
{
|
|
33
|
-
code: 'BA',
|
|
34
|
-
label: 'Bosnia and Herzegovina',
|
|
35
|
-
phone: '387',
|
|
36
|
-
},
|
|
37
|
-
{ code: 'BB', label: 'Barbados', phone: '1-246' },
|
|
38
|
-
{ code: 'BD', label: 'Bangladesh', phone: '880' },
|
|
39
|
-
{ code: 'BE', label: 'Belgium', phone: '32' },
|
|
40
|
-
{ code: 'BF', label: 'Burkina Faso', phone: '226' },
|
|
41
|
-
{ code: 'BG', label: 'Bulgaria', phone: '359' },
|
|
42
|
-
{ code: 'BH', label: 'Bahrain', phone: '973' },
|
|
43
|
-
{ code: 'BI', label: 'Burundi', phone: '257' },
|
|
44
|
-
{ code: 'BJ', label: 'Benin', phone: '229' },
|
|
45
|
-
{ code: 'BL', label: 'Saint Barthelemy', phone: '590' },
|
|
46
|
-
{ code: 'BM', label: 'Bermuda', phone: '1-441' },
|
|
47
|
-
{ code: 'BN', label: 'Brunei Darussalam', phone: '673' },
|
|
48
|
-
{ code: 'BO', label: 'Bolivia', phone: '591' },
|
|
49
|
-
{ code: 'BR', label: 'Brazil', phone: '55' },
|
|
50
|
-
{ code: 'BS', label: 'Bahamas', phone: '1-242' },
|
|
51
|
-
{ code: 'BT', label: 'Bhutan', phone: '975' },
|
|
52
|
-
{ code: 'BV', label: 'Bouvet Island', phone: '47' },
|
|
53
|
-
{ code: 'BW', label: 'Botswana', phone: '267' },
|
|
54
|
-
{ code: 'BY', label: 'Belarus', phone: '375' },
|
|
55
|
-
{ code: 'BZ', label: 'Belize', phone: '501' },
|
|
56
|
-
{
|
|
57
|
-
code: 'CA',
|
|
58
|
-
label: 'Canada',
|
|
59
|
-
phone: '1',
|
|
60
|
-
suggested: true,
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
code: 'CC',
|
|
64
|
-
label: 'Cocos (Keeling) Islands',
|
|
65
|
-
phone: '61',
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
code: 'CD',
|
|
69
|
-
label: 'Congo, Democratic Republic of the',
|
|
70
|
-
phone: '243',
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
code: 'CF',
|
|
74
|
-
label: 'Central African Republic',
|
|
75
|
-
phone: '236',
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
code: 'CG',
|
|
79
|
-
label: 'Congo, Republic of the',
|
|
80
|
-
phone: '242',
|
|
81
|
-
},
|
|
82
|
-
{ code: 'CH', label: 'Switzerland', phone: '41' },
|
|
83
|
-
{ code: 'CI', label: "Cote d'Ivoire", phone: '225' },
|
|
84
|
-
{ code: 'CK', label: 'Cook Islands', phone: '682' },
|
|
85
|
-
{ code: 'CL', label: 'Chile', phone: '56' },
|
|
86
|
-
{ code: 'CM', label: 'Cameroon', phone: '237' },
|
|
87
|
-
{ code: 'CN', label: 'China', phone: '86' },
|
|
88
|
-
{ code: 'CO', label: 'Colombia', phone: '57' },
|
|
89
|
-
{ code: 'CR', label: 'Costa Rica', phone: '506' },
|
|
90
|
-
{ code: 'CU', label: 'Cuba', phone: '53' },
|
|
91
|
-
{ code: 'CV', label: 'Cape Verde', phone: '238' },
|
|
92
|
-
{ code: 'CW', label: 'Curacao', phone: '599' },
|
|
93
|
-
{ code: 'CX', label: 'Christmas Island', phone: '61' },
|
|
94
|
-
{ code: 'CY', label: 'Cyprus', phone: '357' },
|
|
95
|
-
{ code: 'CZ', label: 'Czech Republic', phone: '420' },
|
|
96
|
-
{
|
|
97
|
-
code: 'DE',
|
|
98
|
-
label: 'Germany',
|
|
99
|
-
phone: '49',
|
|
100
|
-
suggested: true,
|
|
101
|
-
},
|
|
102
|
-
{ code: 'DJ', label: 'Djibouti', phone: '253' },
|
|
103
|
-
{ code: 'DK', label: 'Denmark', phone: '45' },
|
|
104
|
-
{ code: 'DM', label: 'Dominica', phone: '1-767' },
|
|
105
|
-
{
|
|
106
|
-
code: 'DO',
|
|
107
|
-
label: 'Dominican Republic',
|
|
108
|
-
phone: '1-809',
|
|
109
|
-
},
|
|
110
|
-
{ code: 'DZ', label: 'Algeria', phone: '213' },
|
|
111
|
-
{ code: 'EC', label: 'Ecuador', phone: '593' },
|
|
112
|
-
{ code: 'EE', label: 'Estonia', phone: '372' },
|
|
113
|
-
{ code: 'EG', label: 'Egypt', phone: '20' },
|
|
114
|
-
{ code: 'EH', label: 'Western Sahara', phone: '212' },
|
|
115
|
-
{ code: 'ER', label: 'Eritrea', phone: '291' },
|
|
116
|
-
{ code: 'ES', label: 'Spain', phone: '34' },
|
|
117
|
-
{ code: 'ET', label: 'Ethiopia', phone: '251' },
|
|
118
|
-
{ code: 'FI', label: 'Finland', phone: '358' },
|
|
119
|
-
{ code: 'FJ', label: 'Fiji', phone: '679' },
|
|
120
|
-
{
|
|
121
|
-
code: 'FK',
|
|
122
|
-
label: 'Falkland Islands (Malvinas)',
|
|
123
|
-
phone: '500',
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
code: 'FM',
|
|
127
|
-
label: 'Micronesia, Federated States of',
|
|
128
|
-
phone: '691',
|
|
129
|
-
},
|
|
130
|
-
{ code: 'FO', label: 'Faroe Islands', phone: '298' },
|
|
131
|
-
{
|
|
132
|
-
code: 'FR',
|
|
133
|
-
label: 'France',
|
|
134
|
-
phone: '33',
|
|
135
|
-
suggested: true,
|
|
136
|
-
},
|
|
137
|
-
{ code: 'GA', label: 'Gabon', phone: '241' },
|
|
138
|
-
{ code: 'GB', label: 'United Kingdom', phone: '44' },
|
|
139
|
-
{ code: 'GD', label: 'Grenada', phone: '1-473' },
|
|
140
|
-
{ code: 'GE', label: 'Georgia', phone: '995' },
|
|
141
|
-
{ code: 'GF', label: 'French Guiana', phone: '594' },
|
|
142
|
-
{ code: 'GG', label: 'Guernsey', phone: '44' },
|
|
143
|
-
{ code: 'GH', label: 'Ghana', phone: '233' },
|
|
144
|
-
{ code: 'GI', label: 'Gibraltar', phone: '350' },
|
|
145
|
-
{ code: 'GL', label: 'Greenland', phone: '299' },
|
|
146
|
-
{ code: 'GM', label: 'Gambia', phone: '220' },
|
|
147
|
-
{ code: 'GN', label: 'Guinea', phone: '224' },
|
|
148
|
-
{ code: 'GP', label: 'Guadeloupe', phone: '590' },
|
|
149
|
-
{ code: 'GQ', label: 'Equatorial Guinea', phone: '240' },
|
|
150
|
-
{ code: 'GR', label: 'Greece', phone: '30' },
|
|
151
|
-
{
|
|
152
|
-
code: 'GS',
|
|
153
|
-
label: 'South Georgia and the South Sandwich Islands',
|
|
154
|
-
phone: '500',
|
|
155
|
-
},
|
|
156
|
-
{ code: 'GT', label: 'Guatemala', phone: '502' },
|
|
157
|
-
{ code: 'GU', label: 'Guam', phone: '1-671' },
|
|
158
|
-
{ code: 'GW', label: 'Guinea-Bissau', phone: '245' },
|
|
159
|
-
{ code: 'GY', label: 'Guyana', phone: '592' },
|
|
160
|
-
{ code: 'HK', label: 'Hong Kong', phone: '852' },
|
|
161
|
-
{
|
|
162
|
-
code: 'HM',
|
|
163
|
-
label: 'Heard Island and McDonald Islands',
|
|
164
|
-
phone: '672',
|
|
165
|
-
},
|
|
166
|
-
{ code: 'HN', label: 'Honduras', phone: '504' },
|
|
167
|
-
{ code: 'HR', label: 'Croatia', phone: '385' },
|
|
168
|
-
{ code: 'HT', label: 'Haiti', phone: '509' },
|
|
169
|
-
{ code: 'HU', label: 'Hungary', phone: '36' },
|
|
170
|
-
{ code: 'ID', label: 'Indonesia', phone: '62' },
|
|
171
|
-
{ code: 'IE', label: 'Ireland', phone: '353' },
|
|
172
|
-
{ code: 'IL', label: 'Israel', phone: '972' },
|
|
173
|
-
{ code: 'IM', label: 'Isle of Man', phone: '44' },
|
|
174
|
-
{ code: 'IN', label: 'India', phone: '91' },
|
|
175
|
-
{
|
|
176
|
-
code: 'IO',
|
|
177
|
-
label: 'British Indian Ocean Territory',
|
|
178
|
-
phone: '246',
|
|
179
|
-
},
|
|
180
|
-
{ code: 'IQ', label: 'Iraq', phone: '964' },
|
|
181
|
-
{
|
|
182
|
-
code: 'IR',
|
|
183
|
-
label: 'Iran, Islamic Republic of',
|
|
184
|
-
phone: '98',
|
|
185
|
-
},
|
|
186
|
-
{ code: 'IS', label: 'Iceland', phone: '354' },
|
|
187
|
-
{ code: 'IT', label: 'Italy', phone: '39' },
|
|
188
|
-
{ code: 'JE', label: 'Jersey', phone: '44' },
|
|
189
|
-
{ code: 'JM', label: 'Jamaica', phone: '1-876' },
|
|
190
|
-
{ code: 'JO', label: 'Jordan', phone: '962' },
|
|
191
|
-
{
|
|
192
|
-
code: 'JP',
|
|
193
|
-
label: 'Japan',
|
|
194
|
-
phone: '81',
|
|
195
|
-
suggested: true,
|
|
196
|
-
},
|
|
197
|
-
{ code: 'KE', label: 'Kenya', phone: '254' },
|
|
198
|
-
{ code: 'KG', label: 'Kyrgyzstan', phone: '996' },
|
|
199
|
-
{ code: 'KH', label: 'Cambodia', phone: '855' },
|
|
200
|
-
{ code: 'KI', label: 'Kiribati', phone: '686' },
|
|
201
|
-
{ code: 'KM', label: 'Comoros', phone: '269' },
|
|
202
|
-
{
|
|
203
|
-
code: 'KN',
|
|
204
|
-
label: 'Saint Kitts and Nevis',
|
|
205
|
-
phone: '1-869',
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
code: 'KP',
|
|
209
|
-
label: "Korea, Democratic People's Republic of",
|
|
210
|
-
phone: '850',
|
|
211
|
-
},
|
|
212
|
-
{ code: 'KR', label: 'Korea, Republic of', phone: '82' },
|
|
213
|
-
{ code: 'KW', label: 'Kuwait', phone: '965' },
|
|
214
|
-
{ code: 'KY', label: 'Cayman Islands', phone: '1-345' },
|
|
215
|
-
{ code: 'KZ', label: 'Kazakhstan', phone: '7' },
|
|
216
|
-
{
|
|
217
|
-
code: 'LA',
|
|
218
|
-
label: "Lao People's Democratic Republic",
|
|
219
|
-
phone: '856',
|
|
220
|
-
},
|
|
221
|
-
{ code: 'LB', label: 'Lebanon', phone: '961' },
|
|
222
|
-
{ code: 'LC', label: 'Saint Lucia', phone: '1-758' },
|
|
223
|
-
{ code: 'LI', label: 'Liechtenstein', phone: '423' },
|
|
224
|
-
{ code: 'LK', label: 'Sri Lanka', phone: '94' },
|
|
225
|
-
{ code: 'LR', label: 'Liberia', phone: '231' },
|
|
226
|
-
{ code: 'LS', label: 'Lesotho', phone: '266' },
|
|
227
|
-
{ code: 'LT', label: 'Lithuania', phone: '370' },
|
|
228
|
-
{ code: 'LU', label: 'Luxembourg', phone: '352' },
|
|
229
|
-
{ code: 'LV', label: 'Latvia', phone: '371' },
|
|
230
|
-
{ code: 'LY', label: 'Libya', phone: '218' },
|
|
231
|
-
{ code: 'MA', label: 'Morocco', phone: '212' },
|
|
232
|
-
{ code: 'MC', label: 'Monaco', phone: '377' },
|
|
233
|
-
{
|
|
234
|
-
code: 'MD',
|
|
235
|
-
label: 'Moldova, Republic of',
|
|
236
|
-
phone: '373',
|
|
237
|
-
},
|
|
238
|
-
{ code: 'ME', label: 'Montenegro', phone: '382' },
|
|
239
|
-
{
|
|
240
|
-
code: 'MF',
|
|
241
|
-
label: 'Saint Martin (French part)',
|
|
242
|
-
phone: '590',
|
|
243
|
-
},
|
|
244
|
-
{ code: 'MG', label: 'Madagascar', phone: '261' },
|
|
245
|
-
{ code: 'MH', label: 'Marshall Islands', phone: '692' },
|
|
246
|
-
{
|
|
247
|
-
code: 'MK',
|
|
248
|
-
label: 'Macedonia, the Former Yugoslav Republic of',
|
|
249
|
-
phone: '389',
|
|
250
|
-
},
|
|
251
|
-
{ code: 'ML', label: 'Mali', phone: '223' },
|
|
252
|
-
{ code: 'MM', label: 'Myanmar', phone: '95' },
|
|
253
|
-
{ code: 'MN', label: 'Mongolia', phone: '976' },
|
|
254
|
-
{ code: 'MO', label: 'Macao', phone: '853' },
|
|
255
|
-
{
|
|
256
|
-
code: 'MP',
|
|
257
|
-
label: 'Northern Mariana Islands',
|
|
258
|
-
phone: '1-670',
|
|
259
|
-
},
|
|
260
|
-
{ code: 'MQ', label: 'Martinique', phone: '596' },
|
|
261
|
-
{ code: 'MR', label: 'Mauritania', phone: '222' },
|
|
262
|
-
{ code: 'MS', label: 'Montserrat', phone: '1-664' },
|
|
263
|
-
{ code: 'MT', label: 'Malta', phone: '356' },
|
|
264
|
-
{ code: 'MU', label: 'Mauritius', phone: '230' },
|
|
265
|
-
{ code: 'MV', label: 'Maldives', phone: '960' },
|
|
266
|
-
{ code: 'MW', label: 'Malawi', phone: '265' },
|
|
267
|
-
{ code: 'MX', label: 'Mexico', phone: '52' },
|
|
268
|
-
{ code: 'MY', label: 'Malaysia', phone: '60' },
|
|
269
|
-
{ code: 'MZ', label: 'Mozambique', phone: '258' },
|
|
270
|
-
{ code: 'NA', label: 'Namibia', phone: '264' },
|
|
271
|
-
{ code: 'NC', label: 'New Caledonia', phone: '687' },
|
|
272
|
-
{ code: 'NE', label: 'Niger', phone: '227' },
|
|
273
|
-
{ code: 'NF', label: 'Norfolk Island', phone: '672' },
|
|
274
|
-
{ code: 'NG', label: 'Nigeria', phone: '234' },
|
|
275
|
-
{ code: 'NI', label: 'Nicaragua', phone: '505' },
|
|
276
|
-
{ code: 'NL', label: 'Netherlands', phone: '31' },
|
|
277
|
-
{ code: 'NO', label: 'Norway', phone: '47' },
|
|
278
|
-
{ code: 'NP', label: 'Nepal', phone: '977' },
|
|
279
|
-
{ code: 'NR', label: 'Nauru', phone: '674' },
|
|
280
|
-
{ code: 'NU', label: 'Niue', phone: '683' },
|
|
281
|
-
{ code: 'NZ', label: 'New Zealand', phone: '64' },
|
|
282
|
-
{ code: 'OM', label: 'Oman', phone: '968' },
|
|
283
|
-
{ code: 'PA', label: 'Panama', phone: '507' },
|
|
284
|
-
{ code: 'PE', label: 'Peru', phone: '51' },
|
|
285
|
-
{ code: 'PF', label: 'French Polynesia', phone: '689' },
|
|
286
|
-
{ code: 'PG', label: 'Papua New Guinea', phone: '675' },
|
|
287
|
-
{ code: 'PH', label: 'Philippines', phone: '63' },
|
|
288
|
-
{ code: 'PK', label: 'Pakistan', phone: '92' },
|
|
289
|
-
{ code: 'PL', label: 'Poland', phone: '48' },
|
|
290
|
-
{
|
|
291
|
-
code: 'PM',
|
|
292
|
-
label: 'Saint Pierre and Miquelon',
|
|
293
|
-
phone: '508',
|
|
294
|
-
},
|
|
295
|
-
{ code: 'PN', label: 'Pitcairn', phone: '870' },
|
|
296
|
-
{ code: 'PR', label: 'Puerto Rico', phone: '1' },
|
|
297
|
-
{
|
|
298
|
-
code: 'PS',
|
|
299
|
-
label: 'Palestine, State of',
|
|
300
|
-
phone: '970',
|
|
301
|
-
},
|
|
302
|
-
{ code: 'PT', label: 'Portugal', phone: '351' },
|
|
303
|
-
{ code: 'PW', label: 'Palau', phone: '680' },
|
|
304
|
-
{ code: 'PY', label: 'Paraguay', phone: '595' },
|
|
305
|
-
{ code: 'QA', label: 'Qatar', phone: '974' },
|
|
306
|
-
{ code: 'RE', label: 'Reunion', phone: '262' },
|
|
307
|
-
{ code: 'RO', label: 'Romania', phone: '40' },
|
|
308
|
-
{ code: 'RS', label: 'Serbia', phone: '381' },
|
|
309
|
-
{ code: 'RU', label: 'Russian Federation', phone: '7' },
|
|
310
|
-
{ code: 'RW', label: 'Rwanda', phone: '250' },
|
|
311
|
-
{ code: 'SA', label: 'Saudi Arabia', phone: '966' },
|
|
312
|
-
{ code: 'SB', label: 'Solomon Islands', phone: '677' },
|
|
313
|
-
{ code: 'SC', label: 'Seychelles', phone: '248' },
|
|
314
|
-
{ code: 'SD', label: 'Sudan', phone: '249' },
|
|
315
|
-
{ code: 'SE', label: 'Sweden', phone: '46' },
|
|
316
|
-
{ code: 'SG', label: 'Singapore', phone: '65' },
|
|
317
|
-
{ code: 'SH', label: 'Saint Helena', phone: '290' },
|
|
318
|
-
{ code: 'SI', label: 'Slovenia', phone: '386' },
|
|
319
|
-
{
|
|
320
|
-
code: 'SJ',
|
|
321
|
-
label: 'Svalbard and Jan Mayen',
|
|
322
|
-
phone: '47',
|
|
323
|
-
},
|
|
324
|
-
{ code: 'SK', label: 'Slovakia', phone: '421' },
|
|
325
|
-
{ code: 'SL', label: 'Sierra Leone', phone: '232' },
|
|
326
|
-
{ code: 'SM', label: 'San Marino', phone: '378' },
|
|
327
|
-
{ code: 'SN', label: 'Senegal', phone: '221' },
|
|
328
|
-
{ code: 'SO', label: 'Somalia', phone: '252' },
|
|
329
|
-
{ code: 'SR', label: 'Suriname', phone: '597' },
|
|
330
|
-
{ code: 'SS', label: 'South Sudan', phone: '211' },
|
|
331
|
-
{
|
|
332
|
-
code: 'ST',
|
|
333
|
-
label: 'Sao Tome and Principe',
|
|
334
|
-
phone: '239',
|
|
335
|
-
},
|
|
336
|
-
{ code: 'SV', label: 'El Salvador', phone: '503' },
|
|
337
|
-
{
|
|
338
|
-
code: 'SX',
|
|
339
|
-
label: 'Sint Maarten (Dutch part)',
|
|
340
|
-
phone: '1-721',
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
code: 'SY',
|
|
344
|
-
label: 'Syrian Arab Republic',
|
|
345
|
-
phone: '963',
|
|
346
|
-
},
|
|
347
|
-
{ code: 'SZ', label: 'Swaziland', phone: '268' },
|
|
348
|
-
{
|
|
349
|
-
code: 'TC',
|
|
350
|
-
label: 'Turks and Caicos Islands',
|
|
351
|
-
phone: '1-649',
|
|
352
|
-
},
|
|
353
|
-
{ code: 'TD', label: 'Chad', phone: '235' },
|
|
354
|
-
{
|
|
355
|
-
code: 'TF',
|
|
356
|
-
label: 'French Southern Territories',
|
|
357
|
-
phone: '262',
|
|
358
|
-
},
|
|
359
|
-
{ code: 'TG', label: 'Togo', phone: '228' },
|
|
360
|
-
{ code: 'TH', label: 'Thailand', phone: '66' },
|
|
361
|
-
{ code: 'TJ', label: 'Tajikistan', phone: '992' },
|
|
362
|
-
{ code: 'TK', label: 'Tokelau', phone: '690' },
|
|
363
|
-
{ code: 'TL', label: 'Timor-Leste', phone: '670' },
|
|
364
|
-
{ code: 'TM', label: 'Turkmenistan', phone: '993' },
|
|
365
|
-
{ code: 'TN', label: 'Tunisia', phone: '216' },
|
|
366
|
-
{ code: 'TO', label: 'Tonga', phone: '676' },
|
|
367
|
-
{ code: 'TR', label: 'Turkey', phone: '90' },
|
|
368
|
-
{
|
|
369
|
-
code: 'TT',
|
|
370
|
-
label: 'Trinidad and Tobago',
|
|
371
|
-
phone: '1-868',
|
|
372
|
-
},
|
|
373
|
-
{ code: 'TV', label: 'Tuvalu', phone: '688' },
|
|
374
|
-
{
|
|
375
|
-
code: 'TW',
|
|
376
|
-
label: 'Taiwan, Province of China',
|
|
377
|
-
phone: '886',
|
|
378
|
-
},
|
|
379
|
-
{
|
|
380
|
-
code: 'TZ',
|
|
381
|
-
label: 'United Republic of Tanzania',
|
|
382
|
-
phone: '255',
|
|
383
|
-
},
|
|
384
|
-
{ code: 'UA', label: 'Ukraine', phone: '380' },
|
|
385
|
-
{ code: 'UG', label: 'Uganda', phone: '256' },
|
|
386
|
-
{
|
|
387
|
-
code: 'US',
|
|
388
|
-
label: 'United States',
|
|
389
|
-
phone: '1',
|
|
390
|
-
suggested: true,
|
|
391
|
-
},
|
|
392
|
-
{ code: 'UY', label: 'Uruguay', phone: '598' },
|
|
393
|
-
{ code: 'UZ', label: 'Uzbekistan', phone: '998' },
|
|
394
|
-
{
|
|
395
|
-
code: 'VA',
|
|
396
|
-
label: 'Holy See (Vatican City State)',
|
|
397
|
-
phone: '379',
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
code: 'VC',
|
|
401
|
-
label: 'Saint Vincent and the Grenadines',
|
|
402
|
-
phone: '1-784',
|
|
403
|
-
},
|
|
404
|
-
{ code: 'VE', label: 'Venezuela', phone: '58' },
|
|
405
|
-
{
|
|
406
|
-
code: 'VG',
|
|
407
|
-
label: 'British Virgin Islands',
|
|
408
|
-
phone: '1-284',
|
|
409
|
-
},
|
|
410
|
-
{
|
|
411
|
-
code: 'VI',
|
|
412
|
-
label: 'US Virgin Islands',
|
|
413
|
-
phone: '1-340',
|
|
414
|
-
},
|
|
415
|
-
{ code: 'VN', label: 'Vietnam', phone: '84' },
|
|
416
|
-
{ code: 'VU', label: 'Vanuatu', phone: '678' },
|
|
417
|
-
{ code: 'WF', label: 'Wallis and Futuna', phone: '681' },
|
|
418
|
-
{ code: 'WS', label: 'Samoa', phone: '685' },
|
|
419
|
-
{ code: 'XK', label: 'Kosovo', phone: '383' },
|
|
420
|
-
{ code: 'YE', label: 'Yemen', phone: '967' },
|
|
421
|
-
{ code: 'YT', label: 'Mayotte', phone: '262' },
|
|
422
|
-
{ code: 'ZA', label: 'South Africa', phone: '27' },
|
|
423
|
-
{ code: 'ZM', label: 'Zambia', phone: '260' },
|
|
424
|
-
{ code: 'ZW', label: 'Zimbabwe', phone: '263' },
|
|
425
|
-
];
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './countries';
|