@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
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
<svg width="201" height="200" viewBox="0 0 201 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_1589_117916)">
|
|
3
|
-
<g filter="url(#filter0_di_1589_117916)">
|
|
4
|
-
<rect x="25.0137" y="76" width="152" height="80" rx="12" fill="white"/>
|
|
5
|
-
</g>
|
|
6
|
-
<rect opacity="0.4" x="42.0137" y="102" width="28" height="10" rx="5" fill="#007867"/>
|
|
7
|
-
<rect opacity="0.16" x="42.0137" y="120" width="64" height="10" rx="5" fill="#007867"/>
|
|
8
|
-
<g filter="url(#filter1_di_1589_117916)">
|
|
9
|
-
<path d="M20.0137 52C20.0137 47.5817 23.5954 44 28.0137 44H60.0137C64.4319 44 68.0137 47.5817 68.0137 52V60C68.0137 64.4183 64.4319 68 60.0137 68H28.0137C23.5954 68 20.0137 64.4183 20.0137 60V52Z" fill="#FFAB00"/>
|
|
10
|
-
</g>
|
|
11
|
-
<g filter="url(#filter2_di_1589_117916)">
|
|
12
|
-
<rect x="32.0137" y="52" width="24" height="8" rx="4" fill="white"/>
|
|
13
|
-
</g>
|
|
14
|
-
<g filter="url(#filter3_di_1589_117916)">
|
|
15
|
-
<path d="M76.0137 52C76.0137 47.5817 79.5954 44 84.0137 44H116.014C120.432 44 124.014 47.5817 124.014 52V60C124.014 64.4183 120.432 68 116.014 68H84.0137C79.5954 68 76.0137 64.4183 76.0137 60V52Z" fill="#00A76F"/>
|
|
16
|
-
</g>
|
|
17
|
-
<g filter="url(#filter4_di_1589_117916)">
|
|
18
|
-
<rect x="88.0137" y="52" width="24" height="8" rx="4" fill="white"/>
|
|
19
|
-
</g>
|
|
20
|
-
<g filter="url(#filter5_di_1589_117916)">
|
|
21
|
-
<path d="M132.014 52C132.014 47.5817 135.595 44 140.014 44H172.014C176.432 44 180.014 47.5817 180.014 52V60C180.014 64.4183 176.432 68 172.014 68H140.014C135.595 68 132.014 64.4183 132.014 60V52Z" fill="white"/>
|
|
22
|
-
</g>
|
|
23
|
-
<rect opacity="0.24" x="144.014" y="52" width="24" height="8" rx="4" fill="#007867"/>
|
|
24
|
-
</g>
|
|
25
|
-
<defs>
|
|
26
|
-
<filter id="filter0_di_1589_117916" x="17.0137" y="68" width="184" height="112" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
27
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
28
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
29
|
-
<feOffset dx="8" dy="8"/>
|
|
30
|
-
<feGaussianBlur stdDeviation="8"/>
|
|
31
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
|
|
32
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1589_117916"/>
|
|
33
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1589_117916" result="shape"/>
|
|
34
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
35
|
-
<feOffset dx="-2" dy="-2"/>
|
|
36
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
37
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
38
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
|
|
39
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1589_117916"/>
|
|
40
|
-
</filter>
|
|
41
|
-
<filter id="filter1_di_1589_117916" x="16.0137" y="40" width="64" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
42
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
43
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
44
|
-
<feOffset dx="4" dy="4"/>
|
|
45
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
46
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
|
|
47
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1589_117916"/>
|
|
48
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1589_117916" result="shape"/>
|
|
49
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
50
|
-
<feOffset dx="-1" dy="-1"/>
|
|
51
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
52
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
53
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
|
|
54
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1589_117916"/>
|
|
55
|
-
</filter>
|
|
56
|
-
<filter id="filter2_di_1589_117916" x="28.0137" y="48" width="40" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
57
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
58
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
59
|
-
<feOffset dx="4" dy="4"/>
|
|
60
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
61
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.568627 0 0 0 0 0.619608 0 0 0 0 0.670588 0 0 0 0.16 0"/>
|
|
62
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1589_117916"/>
|
|
63
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1589_117916" result="shape"/>
|
|
64
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
65
|
-
<feOffset dx="-1" dy="-1"/>
|
|
66
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
67
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
68
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.568627 0 0 0 0 0.619608 0 0 0 0 0.670588 0 0 0 0.48 0"/>
|
|
69
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1589_117916"/>
|
|
70
|
-
</filter>
|
|
71
|
-
<filter id="filter3_di_1589_117916" x="72.0137" y="40" width="64" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
72
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
73
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
74
|
-
<feOffset dx="4" dy="4"/>
|
|
75
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
76
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
|
|
77
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1589_117916"/>
|
|
78
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1589_117916" result="shape"/>
|
|
79
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
80
|
-
<feOffset dx="-1" dy="-1"/>
|
|
81
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
82
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
83
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
|
|
84
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1589_117916"/>
|
|
85
|
-
</filter>
|
|
86
|
-
<filter id="filter4_di_1589_117916" x="84.0137" y="48" width="40" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
87
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
88
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
89
|
-
<feOffset dx="4" dy="4"/>
|
|
90
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
91
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.568627 0 0 0 0 0.619608 0 0 0 0 0.670588 0 0 0 0.16 0"/>
|
|
92
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1589_117916"/>
|
|
93
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1589_117916" result="shape"/>
|
|
94
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
95
|
-
<feOffset dx="-1" dy="-1"/>
|
|
96
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
97
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
98
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.568627 0 0 0 0 0.619608 0 0 0 0 0.670588 0 0 0 0.48 0"/>
|
|
99
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1589_117916"/>
|
|
100
|
-
</filter>
|
|
101
|
-
<filter id="filter5_di_1589_117916" x="128.014" y="40" width="64" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
102
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
103
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
104
|
-
<feOffset dx="4" dy="4"/>
|
|
105
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
106
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.568627 0 0 0 0 0.619608 0 0 0 0 0.670588 0 0 0 0.16 0"/>
|
|
107
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1589_117916"/>
|
|
108
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1589_117916" result="shape"/>
|
|
109
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
110
|
-
<feOffset dx="-1" dy="-1"/>
|
|
111
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
112
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
113
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.568627 0 0 0 0 0.619608 0 0 0 0 0.670588 0 0 0 0.48 0"/>
|
|
114
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1589_117916"/>
|
|
115
|
-
</filter>
|
|
116
|
-
<clipPath id="clip0_1589_117916">
|
|
117
|
-
<rect width="200" height="200" fill="white" transform="translate(0.0136719)"/>
|
|
118
|
-
</clipPath>
|
|
119
|
-
</defs>
|
|
120
|
-
</svg>
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g filter="url(#filter0_di_1587_120559)">
|
|
3
|
-
<path d="M152.919 84.3223C158.484 84.3289 162.993 88.835 163 94.3955V138.718C162.993 144.278 158.484 148.784 152.919 148.791H150.903V157.52C150.901 158.262 150.493 158.942 149.839 159.292C149.186 159.642 148.392 159.606 147.774 159.197L132.153 148.791H104.532C98.9672 148.784 94.4578 144.278 94.4512 138.718V94.3955C94.4578 88.835 98.9672 84.3289 104.532 84.3223H152.919Z" fill="white"/>
|
|
4
|
-
<path d="M96.4677 40C102.032 40.0067 106.542 44.5127 106.548 50.0732V80.2929H104.532C96.7421 80.3029 90.4294 86.611 90.4194 94.3954V104.469H68.8468L53.2319 114.874C52.6132 115.287 51.8175 115.325 51.1618 114.975C50.506 114.624 50.0967 113.941 50.0968 113.198V104.469H48.0806C42.516 104.462 38.0067 99.956 38 94.3954V50.0732C38.0067 44.5127 42.516 40.0067 48.0806 40H96.4677Z" fill="white"/>
|
|
5
|
-
</g>
|
|
6
|
-
<g filter="url(#filter1_di_1587_120559)">
|
|
7
|
-
<path d="M132.625 100.333L143.331 130.659H136.428L134.234 123.471H123.218L121.026 130.659H114.121L124.788 100.333H132.625ZM128.738 105.023C128.281 106.787 126.978 111.146 124.829 118.1H132.708C130.68 111.585 129.537 107.9 129.28 107.046C129.024 106.192 128.843 105.517 128.738 105.023Z" fill="#00A76F"/>
|
|
8
|
-
</g>
|
|
9
|
-
<g filter="url(#filter2_di_1587_120559)">
|
|
10
|
-
<path d="M74.3466 55.8291C74.1973 56.6309 74.125 57.4452 74.1309 58.2608V60.6179H83.3144C84.9881 60.6382 86.6614 60.5534 88.3245 60.3641V65.989C86.7317 65.8356 85.1322 65.7637 83.5321 65.7734H82.6975C82.1386 68.2476 81.2574 70.6379 80.0765 72.8831C78.9383 75.043 77.5365 77.0535 75.9031 78.8686C79.8714 81.5171 84.3671 83.2746 89.0805 84.02C87.6969 85.7319 86.618 87.6686 85.891 89.7457C80.7608 88.32 75.9539 85.919 71.7337 82.6743C67.3774 85.9463 62.4372 88.3592 57.1773 89.7839C56.4699 87.8138 55.4398 85.9749 54.1289 84.3424C58.9358 83.4221 63.513 81.5604 67.5966 78.8646C65.8223 76.9404 64.2864 74.8097 63.0221 72.5184C61.8297 70.3854 60.8912 68.1203 60.2257 65.7694H59.4999C57.7579 65.7694 56.1249 65.8419 54.6733 65.9849V60.3641C56.3235 60.5535 57.9841 60.6383 59.645 60.6179H68.2841V58.297C68.2898 57.4695 68.2176 56.6432 68.0684 55.8291H74.3466ZM76.635 65.7673L66.1067 65.7694C66.6658 67.6967 67.4837 69.5394 68.5382 71.2472C69.3926 72.7155 70.4164 74.0786 71.5886 75.3087C72.7101 74.0911 73.674 72.7374 74.4575 71.2794C75.4444 69.556 76.1777 67.6996 76.635 65.7673Z" fill="#FFAB00"/>
|
|
11
|
-
</g>
|
|
12
|
-
<defs>
|
|
13
|
-
<filter id="filter0_di_1587_120559" x="30" y="32" width="157" height="151.531" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
14
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
15
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
-
<feOffset dx="8" dy="8"/>
|
|
17
|
-
<feGaussianBlur stdDeviation="8"/>
|
|
18
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
|
|
19
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120559"/>
|
|
20
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120559" result="shape"/>
|
|
21
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
22
|
-
<feOffset dx="-2" dy="-2"/>
|
|
23
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
24
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
25
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
|
|
26
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120559"/>
|
|
27
|
-
</filter>
|
|
28
|
-
<filter id="filter1_di_1587_120559" x="110.121" y="96.333" width="45.2097" height="46.3264" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
29
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
30
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
31
|
-
<feOffset dx="4" dy="4"/>
|
|
32
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
33
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
|
|
34
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120559"/>
|
|
35
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120559" result="shape"/>
|
|
36
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
37
|
-
<feOffset dx="-1" dy="-1"/>
|
|
38
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
39
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
40
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
|
|
41
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120559"/>
|
|
42
|
-
</filter>
|
|
43
|
-
<filter id="filter2_di_1587_120559" x="50.1289" y="51.8291" width="50.9517" height="49.9548" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
44
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
45
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
46
|
-
<feOffset dx="4" dy="4"/>
|
|
47
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
48
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
|
|
49
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120559"/>
|
|
50
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120559" result="shape"/>
|
|
51
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
52
|
-
<feOffset dx="-1" dy="-1"/>
|
|
53
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
54
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
55
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
|
|
56
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120559"/>
|
|
57
|
-
</filter>
|
|
58
|
-
</defs>
|
|
59
|
-
</svg>
|
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_1587_120557)">
|
|
3
|
-
<g filter="url(#filter0_di_1587_120557)">
|
|
4
|
-
<rect x="68" y="20" width="64" height="160" rx="12" fill="white"/>
|
|
5
|
-
</g>
|
|
6
|
-
<g filter="url(#filter1_di_1587_120557)">
|
|
7
|
-
<path d="M84 50C86.7614 50 89 47.7614 89 45C89 42.2386 86.7614 40 84 40C81.2386 40 79 42.2386 79 45C79 47.7614 81.2386 50 84 50Z" fill="#00A76F"/>
|
|
8
|
-
</g>
|
|
9
|
-
<path opacity="0.4" d="M116.333 40.5H97.6667C95.0893 40.5 93 42.5147 93 45C93 47.4853 95.0893 49.5 97.6667 49.5H116.333C118.911 49.5 121 47.4853 121 45C121 42.5147 118.911 40.5 116.333 40.5Z" fill="#007867"/>
|
|
10
|
-
<g filter="url(#filter2_di_1587_120557)">
|
|
11
|
-
<path d="M84 68C86.7614 68 89 65.7614 89 63C89 60.2386 86.7614 58 84 58C81.2386 58 79 60.2386 79 63C79 65.7614 81.2386 68 84 68Z" fill="#FFAB00"/>
|
|
12
|
-
</g>
|
|
13
|
-
<path opacity="0.16" d="M116.333 58.5H97.6667C95.0893 58.5 93 60.5147 93 63C93 65.4853 95.0893 67.5 97.6667 67.5H116.333C118.911 67.5 121 65.4853 121 63C121 60.5147 118.911 58.5 116.333 58.5Z" fill="#B76E00"/>
|
|
14
|
-
<g filter="url(#filter3_di_1587_120557)">
|
|
15
|
-
<path d="M84 86C86.7614 86 89 83.7614 89 81C89 78.2386 86.7614 76 84 76C81.2386 76 79 78.2386 79 81C79 83.7614 81.2386 86 84 86Z" fill="#00A76F"/>
|
|
16
|
-
</g>
|
|
17
|
-
<path opacity="0.12" d="M116.333 76.5H97.6667C95.0893 76.5 93 78.5147 93 81C93 83.4853 95.0893 85.5 97.6667 85.5H116.333C118.911 85.5 121 83.4853 121 81C121 78.5147 118.911 76.5 116.333 76.5Z" fill="#007867"/>
|
|
18
|
-
<g filter="url(#filter4_di_1587_120557)">
|
|
19
|
-
<path d="M84 104C86.7614 104 89 101.761 89 99C89 96.2386 86.7614 94 84 94C81.2386 94 79 96.2386 79 99C79 101.761 81.2386 104 84 104Z" fill="#00A76F"/>
|
|
20
|
-
</g>
|
|
21
|
-
<path opacity="0.12" d="M116.333 94.5H97.6667C95.0893 94.5 93 96.5147 93 99C93 101.485 95.0893 103.5 97.6667 103.5H116.333C118.911 103.5 121 101.485 121 99C121 96.5147 118.911 94.5 116.333 94.5Z" fill="#007867"/>
|
|
22
|
-
<g filter="url(#filter5_di_1587_120557)">
|
|
23
|
-
<path d="M84 122C86.7614 122 89 119.761 89 117C89 114.239 86.7614 112 84 112C81.2386 112 79 114.239 79 117C79 119.761 81.2386 122 84 122Z" fill="#00A76F"/>
|
|
24
|
-
</g>
|
|
25
|
-
<path opacity="0.12" d="M116.333 112.5H97.6667C95.0893 112.5 93 114.515 93 117C93 119.485 95.0893 121.5 97.6667 121.5H116.333C118.911 121.5 121 119.485 121 117C121 114.515 118.911 112.5 116.333 112.5Z" fill="#007867"/>
|
|
26
|
-
</g>
|
|
27
|
-
<defs>
|
|
28
|
-
<filter id="filter0_di_1587_120557" x="60" y="12" width="96" height="192" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
29
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
30
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
31
|
-
<feOffset dx="8" dy="8"/>
|
|
32
|
-
<feGaussianBlur stdDeviation="8"/>
|
|
33
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
|
|
34
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120557"/>
|
|
35
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120557" result="shape"/>
|
|
36
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
37
|
-
<feOffset dx="-2" dy="-2"/>
|
|
38
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
39
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
40
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
|
|
41
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120557"/>
|
|
42
|
-
</filter>
|
|
43
|
-
<filter id="filter1_di_1587_120557" x="75" y="36" width="26" height="26" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
44
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
45
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
46
|
-
<feOffset dx="4" dy="4"/>
|
|
47
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
48
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
|
|
49
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120557"/>
|
|
50
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120557" result="shape"/>
|
|
51
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
52
|
-
<feOffset dx="-1" dy="-1"/>
|
|
53
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
54
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
55
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
|
|
56
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120557"/>
|
|
57
|
-
</filter>
|
|
58
|
-
<filter id="filter2_di_1587_120557" x="75" y="54" width="26" height="26" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
59
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
60
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
61
|
-
<feOffset dx="4" dy="4"/>
|
|
62
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
63
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
|
|
64
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120557"/>
|
|
65
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120557" result="shape"/>
|
|
66
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
67
|
-
<feOffset dx="-1" dy="-1"/>
|
|
68
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
69
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
70
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
|
|
71
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120557"/>
|
|
72
|
-
</filter>
|
|
73
|
-
<filter id="filter3_di_1587_120557" x="75" y="72" width="26" height="26" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
74
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
75
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
76
|
-
<feOffset dx="4" dy="4"/>
|
|
77
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
78
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
|
|
79
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120557"/>
|
|
80
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120557" result="shape"/>
|
|
81
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
82
|
-
<feOffset dx="-1" dy="-1"/>
|
|
83
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
84
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
85
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
|
|
86
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120557"/>
|
|
87
|
-
</filter>
|
|
88
|
-
<filter id="filter4_di_1587_120557" x="75" y="90" width="26" height="26" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
89
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
90
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
91
|
-
<feOffset dx="4" dy="4"/>
|
|
92
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
93
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
|
|
94
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120557"/>
|
|
95
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120557" result="shape"/>
|
|
96
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
97
|
-
<feOffset dx="-1" dy="-1"/>
|
|
98
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
99
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
100
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
|
|
101
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120557"/>
|
|
102
|
-
</filter>
|
|
103
|
-
<filter id="filter5_di_1587_120557" x="75" y="108" width="26" height="26" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
104
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
105
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
106
|
-
<feOffset dx="4" dy="4"/>
|
|
107
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
108
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
|
|
109
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120557"/>
|
|
110
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120557" result="shape"/>
|
|
111
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
112
|
-
<feOffset dx="-1" dy="-1"/>
|
|
113
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
114
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
115
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
|
|
116
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120557"/>
|
|
117
|
-
</filter>
|
|
118
|
-
<clipPath id="clip0_1587_120557">
|
|
119
|
-
<rect width="200" height="200" fill="white"/>
|
|
120
|
-
</clipPath>
|
|
121
|
-
</defs>
|
|
122
|
-
</svg>
|
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_1587_120556)">
|
|
3
|
-
<g filter="url(#filter0_di_1587_120556)">
|
|
4
|
-
<rect x="78" y="39" width="44" height="44" rx="10" fill="#00A76F"/>
|
|
5
|
-
</g>
|
|
6
|
-
<g filter="url(#filter1_di_1587_120556)">
|
|
7
|
-
<path d="M99.9998 61.2128C102.992 61.2128 105.419 58.9266 105.419 56.1064C105.419 53.2862 102.992 51 99.9998 51C97.0071 51 94.5811 53.2862 94.5811 56.1064C94.5811 58.9266 97.0071 61.2128 99.9998 61.2128ZM96.2722 62.8019C98.6972 62.0449 101.302 62.0449 103.727 62.8019C106.111 63.546 108.087 65.2006 109.207 67.3909L109.819 68.5868C110.24 69.4097 109.9 70.4111 109.06 70.8234C108.823 70.9395 108.562 71 108.298 71H91.702C90.762 71 90 70.2538 90 69.3333C90 69.0741 90.0617 68.8185 90.1803 68.5868L90.7921 67.3909C91.9128 65.2006 93.8887 63.546 96.2722 62.8019Z" fill="white"/>
|
|
8
|
-
</g>
|
|
9
|
-
<path d="M161 117V100.717C161 98.8157 159.761 97.548 157.904 97.548H103.096V83H96.9036V97.548H42.0964C40.2386 97.548 39 98.8157 39 100.717V117H45.1929V103.886H96.9036V117H103.096V103.886H154.807V117H161Z" fill="white"/>
|
|
10
|
-
<path opacity="0.12" d="M161 117V100.717C161 98.8157 159.761 97.548 157.904 97.548H103.096V83H96.9036V97.548H42.0964C40.2386 97.548 39 98.8157 39 100.717V117H45.1929V103.886H96.9036V117H103.096V103.886H154.807V117H161Z" fill="#007867"/>
|
|
11
|
-
<g filter="url(#filter2_di_1587_120556)">
|
|
12
|
-
<rect x="19" y="117" width="44" height="44" rx="10" fill="white"/>
|
|
13
|
-
</g>
|
|
14
|
-
<g filter="url(#filter3_di_1587_120556)">
|
|
15
|
-
<rect x="78" y="117" width="44" height="44" rx="10" fill="#FFAB00"/>
|
|
16
|
-
</g>
|
|
17
|
-
<g filter="url(#filter4_di_1587_120556)">
|
|
18
|
-
<rect x="137" y="117" width="44" height="44" rx="10" fill="white"/>
|
|
19
|
-
</g>
|
|
20
|
-
</g>
|
|
21
|
-
<defs>
|
|
22
|
-
<filter id="filter0_di_1587_120556" x="70" y="31" width="76" height="76" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
23
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
24
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
25
|
-
<feOffset dx="8" dy="8"/>
|
|
26
|
-
<feGaussianBlur stdDeviation="8"/>
|
|
27
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
|
|
28
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120556"/>
|
|
29
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120556" result="shape"/>
|
|
30
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
31
|
-
<feOffset dx="-2" dy="-2"/>
|
|
32
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
33
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
34
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
|
|
35
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120556"/>
|
|
36
|
-
</filter>
|
|
37
|
-
<filter id="filter1_di_1587_120556" x="86" y="47" width="36" height="36" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
38
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
39
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
40
|
-
<feOffset dx="4" dy="4"/>
|
|
41
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
42
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.568627 0 0 0 0 0.619608 0 0 0 0 0.670588 0 0 0 0.16 0"/>
|
|
43
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120556"/>
|
|
44
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120556" result="shape"/>
|
|
45
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
46
|
-
<feOffset dx="-1" dy="-1"/>
|
|
47
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
48
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
49
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.568627 0 0 0 0 0.619608 0 0 0 0 0.670588 0 0 0 0.48 0"/>
|
|
50
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120556"/>
|
|
51
|
-
</filter>
|
|
52
|
-
<filter id="filter2_di_1587_120556" x="11" y="109" width="76" height="76" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
53
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
54
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
55
|
-
<feOffset dx="8" dy="8"/>
|
|
56
|
-
<feGaussianBlur stdDeviation="8"/>
|
|
57
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
|
|
58
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120556"/>
|
|
59
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120556" result="shape"/>
|
|
60
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
61
|
-
<feOffset dx="-2" dy="-2"/>
|
|
62
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
63
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
64
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
|
|
65
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120556"/>
|
|
66
|
-
</filter>
|
|
67
|
-
<filter id="filter3_di_1587_120556" x="70" y="109" width="76" height="76" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
68
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
69
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
70
|
-
<feOffset dx="8" dy="8"/>
|
|
71
|
-
<feGaussianBlur stdDeviation="8"/>
|
|
72
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
|
|
73
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120556"/>
|
|
74
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120556" result="shape"/>
|
|
75
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
76
|
-
<feOffset dx="-2" dy="-2"/>
|
|
77
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
78
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
79
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
|
|
80
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120556"/>
|
|
81
|
-
</filter>
|
|
82
|
-
<filter id="filter4_di_1587_120556" x="129" y="109" width="76" height="76" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
83
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
84
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
85
|
-
<feOffset dx="8" dy="8"/>
|
|
86
|
-
<feGaussianBlur stdDeviation="8"/>
|
|
87
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
|
|
88
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120556"/>
|
|
89
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120556" result="shape"/>
|
|
90
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
91
|
-
<feOffset dx="-2" dy="-2"/>
|
|
92
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
93
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
94
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
|
|
95
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120556"/>
|
|
96
|
-
</filter>
|
|
97
|
-
<clipPath id="clip0_1587_120556">
|
|
98
|
-
<rect width="200" height="200" fill="white"/>
|
|
99
|
-
</clipPath>
|
|
100
|
-
</defs>
|
|
101
|
-
</svg>
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
<svg width="201" height="200" viewBox="0 0 201 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_1587_120555)">
|
|
3
|
-
<g filter="url(#filter0_di_1587_120555)">
|
|
4
|
-
<rect x="24.0137" y="52" width="152" height="96" rx="12" fill="white"/>
|
|
5
|
-
</g>
|
|
6
|
-
<path d="M176.014 136V64C176.014 57.3726 170.641 52 164.014 52V148C170.641 148 176.014 142.627 176.014 136Z" fill="white"/>
|
|
7
|
-
<path opacity="0.16" d="M176.014 136V64C176.014 57.3726 170.641 52 164.014 52V148C170.641 148 176.014 142.627 176.014 136Z" fill="#007867"/>
|
|
8
|
-
<g filter="url(#filter1_di_1587_120555)">
|
|
9
|
-
<rect x="166.014" y="72" width="8" height="24" rx="4" fill="#FFAB00"/>
|
|
10
|
-
</g>
|
|
11
|
-
<g filter="url(#filter2_di_1587_120555)">
|
|
12
|
-
<rect x="40.0137" y="77" width="28" height="10" rx="5" fill="#00A76F"/>
|
|
13
|
-
</g>
|
|
14
|
-
<rect opacity="0.4" x="40.0137" y="95" width="64" height="10" rx="5" fill="#007867"/>
|
|
15
|
-
<rect opacity="0.16" x="40.0137" y="113" width="80" height="10" rx="5" fill="#007867"/>
|
|
16
|
-
</g>
|
|
17
|
-
<defs>
|
|
18
|
-
<filter id="filter0_di_1587_120555" x="16.0137" y="44" width="184" height="128" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
19
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
20
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
21
|
-
<feOffset dx="8" dy="8"/>
|
|
22
|
-
<feGaussianBlur stdDeviation="8"/>
|
|
23
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
|
|
24
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120555"/>
|
|
25
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120555" result="shape"/>
|
|
26
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
27
|
-
<feOffset dx="-2" dy="-2"/>
|
|
28
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
29
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
30
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
|
|
31
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120555"/>
|
|
32
|
-
</filter>
|
|
33
|
-
<filter id="filter1_di_1587_120555" x="162.014" y="68" width="24" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
34
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
35
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
36
|
-
<feOffset dx="4" dy="4"/>
|
|
37
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
38
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
|
|
39
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120555"/>
|
|
40
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120555" result="shape"/>
|
|
41
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
42
|
-
<feOffset dx="-1" dy="-1"/>
|
|
43
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
44
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
45
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
|
|
46
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120555"/>
|
|
47
|
-
</filter>
|
|
48
|
-
<filter id="filter2_di_1587_120555" x="36.0137" y="73" width="44" height="26" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
49
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
50
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
51
|
-
<feOffset dx="4" dy="4"/>
|
|
52
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
53
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
|
|
54
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120555"/>
|
|
55
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120555" result="shape"/>
|
|
56
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
57
|
-
<feOffset dx="-1" dy="-1"/>
|
|
58
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
59
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
60
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
|
|
61
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120555"/>
|
|
62
|
-
</filter>
|
|
63
|
-
<clipPath id="clip0_1587_120555">
|
|
64
|
-
<rect width="200" height="200" fill="white" transform="translate(0.0136719)"/>
|
|
65
|
-
</clipPath>
|
|
66
|
-
</defs>
|
|
67
|
-
</svg>
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
<svg width="201" height="200" viewBox="0 0 201 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g filter="url(#filter0_di_2701_141901)">
|
|
3
|
-
<rect x="24.0137" y="52" width="152" height="96" rx="12" fill="white"/>
|
|
4
|
-
</g>
|
|
5
|
-
<mask id="mask0_2701_141901" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="24" y="52" width="153" height="96">
|
|
6
|
-
<rect x="24.0137" y="52" width="152" height="96" rx="12" fill="white"/>
|
|
7
|
-
</mask>
|
|
8
|
-
<g mask="url(#mask0_2701_141901)">
|
|
9
|
-
<path opacity="0.16" d="M24.0137 52H176.014V62H24.0137V52Z" fill="#007867"/>
|
|
10
|
-
<g filter="url(#filter1_di_2701_141901)">
|
|
11
|
-
<path d="M24.0137 52H119.014C121.775 52 124.014 54.2386 124.014 57V57C124.014 59.7614 121.775 62 119.014 62H24.0137V52Z" fill="#00A76F"/>
|
|
12
|
-
</g>
|
|
13
|
-
</g>
|
|
14
|
-
<defs>
|
|
15
|
-
<filter id="filter0_di_2701_141901" x="16.0137" y="44" width="184" height="128" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
16
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
17
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
18
|
-
<feOffset dx="8" dy="8"/>
|
|
19
|
-
<feGaussianBlur stdDeviation="8"/>
|
|
20
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
|
|
21
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2701_141901"/>
|
|
22
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2701_141901" result="shape"/>
|
|
23
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
24
|
-
<feOffset dx="-2" dy="-2"/>
|
|
25
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
26
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
27
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
|
|
28
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_2701_141901"/>
|
|
29
|
-
</filter>
|
|
30
|
-
<filter id="filter1_di_2701_141901" x="20.0137" y="48" width="116" height="26" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
31
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
32
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
33
|
-
<feOffset dx="4" dy="4"/>
|
|
34
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
35
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
|
|
36
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2701_141901"/>
|
|
37
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2701_141901" result="shape"/>
|
|
38
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
39
|
-
<feOffset dx="-1" dy="-1"/>
|
|
40
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
41
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
42
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
|
|
43
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_2701_141901"/>
|
|
44
|
-
</filter>
|
|
45
|
-
</defs>
|
|
46
|
-
</svg>
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
<svg width="201" height="200" viewBox="0 0 201 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_1589_121148)">
|
|
3
|
-
<g filter="url(#filter0_di_1589_121148)">
|
|
4
|
-
<rect x="24.0137" y="64" width="152" height="72" rx="12" fill="white"/>
|
|
5
|
-
</g>
|
|
6
|
-
<rect opacity="0.4" x="36.0137" y="86" width="28" height="10" rx="5" fill="#007867"/>
|
|
7
|
-
<rect opacity="0.16" x="36.0137" y="104" width="64" height="10" rx="5" fill="#007867"/>
|
|
8
|
-
<g filter="url(#filter1_di_1589_121148)">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M164.014 100C164.014 107.732 157.746 114 150.014 114C142.282 114 136.014 107.732 136.014 100C136.014 92.268 142.282 86 150.014 86C157.746 86 164.014 92.268 164.014 100ZM152.794 100.16L156.63 103.997C157.354 104.72 157.354 105.893 156.631 106.617C156.269 106.979 155.795 107.16 155.32 107.16C154.846 107.16 154.372 106.979 154.01 106.617L150.173 102.78L146.337 106.617C145.975 106.978 145.5 107.159 145.026 107.159C144.552 107.159 144.078 106.979 143.716 106.617C142.992 105.893 142.992 104.72 143.716 103.996L147.553 100.159L143.716 96.3226C142.992 95.5993 142.992 94.4261 143.716 93.7022C144.439 92.9786 145.612 92.9786 146.336 93.7022L150.173 97.5393L154.01 93.7025C154.734 92.9789 155.907 92.9789 156.63 93.7025C157.354 94.4261 157.354 95.5993 156.63 96.3229L152.794 100.16Z" fill="#FFAB00"/>
|
|
10
|
-
</g>
|
|
11
|
-
</g>
|
|
12
|
-
<defs>
|
|
13
|
-
<filter id="filter0_di_1589_121148" x="16.0137" y="56" width="184" height="104" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
14
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
15
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
-
<feOffset dx="8" dy="8"/>
|
|
17
|
-
<feGaussianBlur stdDeviation="8"/>
|
|
18
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
|
|
19
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1589_121148"/>
|
|
20
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1589_121148" result="shape"/>
|
|
21
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
22
|
-
<feOffset dx="-2" dy="-2"/>
|
|
23
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
24
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
25
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
|
|
26
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1589_121148"/>
|
|
27
|
-
</filter>
|
|
28
|
-
<filter id="filter1_di_1589_121148" x="132.014" y="82" width="44" height="44" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
29
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
30
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
31
|
-
<feOffset dx="4" dy="4"/>
|
|
32
|
-
<feGaussianBlur stdDeviation="4"/>
|
|
33
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
|
|
34
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1589_121148"/>
|
|
35
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1589_121148" result="shape"/>
|
|
36
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
37
|
-
<feOffset dx="-1" dy="-1"/>
|
|
38
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
39
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
40
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
|
|
41
|
-
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_1589_121148"/>
|
|
42
|
-
</filter>
|
|
43
|
-
<clipPath id="clip0_1589_121148">
|
|
44
|
-
<rect width="200" height="200" fill="white" transform="translate(0.0136719)"/>
|
|
45
|
-
</clipPath>
|
|
46
|
-
</defs>
|
|
47
|
-
</svg>
|