@shohojdhara/atomix 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +39 -20
- package/dist/atomix.css +83 -115
- package/dist/atomix.min.css +3 -3
- package/dist/index.d.ts +7049 -7284
- package/dist/index.esm.js +3529 -4674
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3208 -4315
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/themes/applemix.css +16576 -0
- package/dist/themes/applemix.css.map +1 -0
- package/dist/themes/applemix.min.css +73 -0
- package/dist/themes/boomdevs.css +16007 -0
- package/dist/themes/boomdevs.css.map +1 -0
- package/dist/themes/boomdevs.min.css +406 -0
- package/dist/themes/esrar.css +18424 -0
- package/dist/themes/esrar.css.map +1 -0
- package/dist/themes/esrar.min.css +221 -0
- package/dist/themes/flashtrade.css +17596 -0
- package/dist/themes/flashtrade.css.map +1 -0
- package/dist/themes/flashtrade.min.css +196 -0
- package/dist/themes/mashroom.css +31082 -0
- package/dist/themes/mashroom.css.map +1 -0
- package/dist/themes/mashroom.min.css +450 -0
- package/dist/themes/shaj-default.css +17200 -0
- package/dist/themes/shaj-default.css.map +1 -0
- package/dist/themes/shaj-default.min.css +502 -0
- package/package.json +96 -17
- package/scripts/atomix-cli.js +1428 -0
- package/scripts/build-themes.js +208 -0
- package/scripts/cli/interactive-init.js +528 -0
- package/scripts/cli/migration-tools.js +603 -0
- package/scripts/cli/token-manager.js +519 -0
- package/scripts/sync-theme-config.js +309 -0
- package/src/components/List/ListGroup.tsx +1 -2
- package/src/components/Popover/Popover.tsx +2 -2
- package/src/components/Tooltip/Tooltip.stories.tsx +49 -12
- package/src/components/Tooltip/Tooltip.tsx +32 -58
- package/src/lib/composables/useTooltip.ts +285 -0
- package/src/lib/constants/cssVariables.ts +390 -0
- package/src/lib/hooks/__tests__/useComponentCustomization.test.ts +151 -0
- package/src/lib/hooks/index.ts +19 -0
- package/src/lib/hooks/useComponentCustomization.ts +175 -0
- package/src/lib/index.ts +13 -1
- package/src/lib/patterns/__tests__/slots.test.ts +108 -0
- package/src/lib/patterns/index.ts +35 -0
- package/src/lib/patterns/slots.tsx +421 -0
- package/src/lib/theme/__tests__/ThemeBuilder.test.ts +223 -0
- package/src/lib/theme/builders/ThemeBuilder.ts +372 -0
- package/src/lib/theme/createTheme.ts +2 -134
- package/src/lib/theme/cssVariableMapper.ts +261 -0
- package/src/lib/theme/index.ts +33 -250
- package/src/lib/theme/runtime/ThemeApplicator.ts +252 -0
- package/src/lib/theme/themeUtils.ts +27 -5
- package/src/lib/theme/types.ts +59 -0
- package/src/lib/theme-tools.ts +185 -0
- package/src/lib/types/components.ts +194 -0
- package/src/lib/types/partProps.ts +426 -0
- package/src/lib/utils/__tests__/componentUtils.test.ts +144 -0
- package/src/lib/utils/componentUtils.ts +163 -0
- package/src/lib/utils/index.ts +17 -57
- package/src/styles/01-settings/_settings.colors.scss +10 -10
- package/src/styles/01-settings/_settings.tooltip.scss +1 -1
- package/src/styles/06-components/_components.tooltip.scss +31 -81
- package/src/themes/README.md +443 -0
- package/src/themes/THEME_CHECKLIST.md +74 -0
- package/src/themes/applemix/01-settings/_index.scss +24 -0
- package/src/themes/applemix/01-settings/_settings.animations.scss +0 -0
- package/src/themes/applemix/01-settings/_settings.background.scss +6 -0
- package/src/themes/applemix/01-settings/_settings.colors.scss +75 -0
- package/src/themes/applemix/01-settings/_settings.config.scss +15 -0
- package/src/themes/applemix/01-settings/_settings.typography.scss +30 -0
- package/src/themes/applemix/02-tools/_index.scss +4 -0
- package/src/themes/applemix/03-generic/_index.scss +7 -0
- package/src/themes/applemix/04-elements/_index.scss +7 -0
- package/src/themes/applemix/05-objects/_index.scss +7 -0
- package/src/themes/applemix/06-components/_index.scss +15 -0
- package/src/themes/applemix/99-utilities/_index.scss +7 -0
- package/src/themes/applemix/README.md +378 -0
- package/src/themes/applemix/index.scss +33 -0
- package/src/themes/boomdevs/01-settings/_index.scss +38 -0
- package/src/themes/boomdevs/01-settings/_settings.accordion.scss +12 -0
- package/src/themes/boomdevs/01-settings/_settings.animations.scss +11 -0
- package/src/themes/boomdevs/01-settings/_settings.avatar.scss +9 -0
- package/src/themes/boomdevs/01-settings/_settings.badge.scss +11 -0
- package/src/themes/boomdevs/01-settings/_settings.border-radius.scss +16 -0
- package/src/themes/boomdevs/01-settings/_settings.border.scss +10 -0
- package/src/themes/boomdevs/01-settings/_settings.box-shadow.scss +14 -0
- package/src/themes/boomdevs/01-settings/_settings.breadcrumb.scss +13 -0
- package/src/themes/boomdevs/01-settings/_settings.breakpoints.scss +15 -0
- package/src/themes/boomdevs/01-settings/_settings.button.scss +9 -0
- package/src/themes/boomdevs/01-settings/_settings.callout.scss +9 -0
- package/src/themes/boomdevs/01-settings/_settings.card.scss +11 -0
- package/src/themes/boomdevs/01-settings/_settings.checkbox.scss +9 -0
- package/src/themes/boomdevs/01-settings/_settings.colors.scss +145 -0
- package/src/themes/boomdevs/01-settings/_settings.dropdown.scss +11 -0
- package/src/themes/boomdevs/01-settings/_settings.grid.scss +16 -0
- package/src/themes/boomdevs/01-settings/_settings.input.scss +14 -0
- package/src/themes/boomdevs/01-settings/_settings.link.scss +11 -0
- package/src/themes/boomdevs/01-settings/_settings.list.scss +10 -0
- package/src/themes/boomdevs/01-settings/_settings.modal.scss +16 -0
- package/src/themes/boomdevs/01-settings/_settings.navbar.scss +16 -0
- package/src/themes/boomdevs/01-settings/_settings.pagination.scss +13 -0
- package/src/themes/boomdevs/01-settings/_settings.progress.scss +11 -0
- package/src/themes/boomdevs/01-settings/_settings.rating.scss +10 -0
- package/src/themes/boomdevs/01-settings/_settings.spacing.scss +33 -0
- package/src/themes/boomdevs/01-settings/_settings.spinner.scss +11 -0
- package/src/themes/boomdevs/01-settings/_settings.steps.scss +12 -0
- package/src/themes/boomdevs/01-settings/_settings.tabs.scss +12 -0
- package/src/themes/boomdevs/01-settings/_settings.todo.scss +15 -0
- package/src/themes/boomdevs/01-settings/_settings.toggle.scss +14 -0
- package/src/themes/boomdevs/01-settings/_settings.tooltip.scss +13 -0
- package/src/themes/boomdevs/01-settings/_settings.typography.scss +58 -0
- package/src/themes/boomdevs/01-settings/_settings.video-player.scss +12 -0
- package/src/themes/boomdevs/02-tools/_index.scss +7 -0
- package/src/themes/boomdevs/03-generic/_index.scss +7 -0
- package/src/themes/boomdevs/04-elements/_index.scss +7 -0
- package/src/themes/boomdevs/05-objects/_index.scss +7 -0
- package/src/themes/boomdevs/06-components/_components.button.scss +11 -0
- package/src/themes/boomdevs/06-components/_index.scss +11 -0
- package/src/themes/boomdevs/99-utilities/_index.scss +7 -0
- package/src/themes/boomdevs/index.scss +26 -0
- package/src/themes/esrar/01-settings/_index.scss +15 -0
- package/src/themes/esrar/01-settings/_settings.colors.scss +91 -0
- package/src/themes/esrar/02-tools/_index.scss +8 -0
- package/src/themes/esrar/02-tools/_tools.animations.scss +342 -0
- package/src/themes/esrar/06-components/_components.accordion.scss +49 -0
- package/src/themes/esrar/06-components/_components.avatar-group.scss +14 -0
- package/src/themes/esrar/06-components/_components.avatar.scss +61 -0
- package/src/themes/esrar/06-components/_components.badge.scss +117 -0
- package/src/themes/esrar/06-components/_components.breadcrumb.scss +65 -0
- package/src/themes/esrar/06-components/_components.btn-group.scss +19 -0
- package/src/themes/esrar/06-components/_components.button.scss +224 -0
- package/src/themes/esrar/06-components/_components.callout.scss +51 -0
- package/src/themes/esrar/06-components/_components.card.scss +134 -0
- package/src/themes/esrar/06-components/_components.chart.scss +24 -0
- package/src/themes/esrar/06-components/_components.checkbox-group.scss +26 -0
- package/src/themes/esrar/06-components/_components.checkbox.scss +71 -0
- package/src/themes/esrar/06-components/_components.color-mode-toggle.scss +29 -0
- package/src/themes/esrar/06-components/_components.countdown.scss +67 -0
- package/src/themes/esrar/06-components/_components.data-table.scss +22 -0
- package/src/themes/esrar/06-components/_components.datepicker.scss +20 -0
- package/src/themes/esrar/06-components/_components.dropdown.scss +272 -0
- package/src/themes/esrar/06-components/_components.edge-panel.scss +10 -0
- package/src/themes/esrar/06-components/_components.form-group.scss +15 -0
- package/src/themes/esrar/06-components/_components.form.scss +66 -0
- package/src/themes/esrar/06-components/_components.hero.scss +251 -0
- package/src/themes/esrar/06-components/_components.icon.scss +33 -0
- package/src/themes/esrar/06-components/_components.image-gallery.scss +29 -0
- package/src/themes/esrar/06-components/_components.input.scss +91 -0
- package/src/themes/esrar/06-components/_components.list-group.scss +26 -0
- package/src/themes/esrar/06-components/_components.modal.scss +148 -0
- package/src/themes/esrar/06-components/_components.notification.scss +80 -0
- package/src/themes/esrar/06-components/_components.pagination.scss +84 -0
- package/src/themes/esrar/06-components/_components.popover.scss +10 -0
- package/src/themes/esrar/06-components/_components.progress.scss +64 -0
- package/src/themes/esrar/06-components/_components.rating.scss +26 -0
- package/src/themes/esrar/06-components/_components.skeleton.scss +15 -0
- package/src/themes/esrar/06-components/_components.slider.scss +90 -0
- package/src/themes/esrar/06-components/_components.spinner.scss +71 -0
- package/src/themes/esrar/06-components/_components.steps.scss +76 -0
- package/src/themes/esrar/06-components/_components.tab.scss +58 -0
- package/src/themes/esrar/06-components/_components.tag.scss +21 -0
- package/src/themes/esrar/06-components/_components.timeline.scss +19 -0
- package/src/themes/esrar/06-components/_components.toast.scss +91 -0
- package/src/themes/esrar/06-components/_components.toggle.scss +74 -0
- package/src/themes/esrar/06-components/_components.tooltip.scss +45 -0
- package/src/themes/esrar/06-components/_components.upload.scss +102 -0
- package/src/themes/esrar/06-components/_index.scss +42 -0
- package/src/themes/esrar/index.scss +30 -0
- package/src/themes/flashtrade/01-settings/_index.scss +19 -0
- package/src/themes/flashtrade/01-settings/_settings.animations.scss +11 -0
- package/src/themes/flashtrade/01-settings/_settings.background.scss +9 -0
- package/src/themes/flashtrade/01-settings/_settings.colors.scss +79 -0
- package/src/themes/flashtrade/01-settings/_settings.config.scss +16 -0
- package/src/themes/flashtrade/01-settings/_settings.typography.scss +35 -0
- package/src/themes/flashtrade/02-tools/_index.scss +8 -0
- package/src/themes/flashtrade/03-generic/_index.scss +8 -0
- package/src/themes/flashtrade/04-elements/_index.scss +12 -0
- package/src/themes/flashtrade/05-objects/_index.scss +8 -0
- package/src/themes/flashtrade/06-components/_components.badge.scss +156 -0
- package/src/themes/flashtrade/06-components/_components.button.scss +135 -0
- package/src/themes/flashtrade/06-components/_components.card.scss +214 -0
- package/src/themes/flashtrade/06-components/_components.navbar.scss +227 -0
- package/src/themes/flashtrade/06-components/_index.scss +13 -0
- package/src/themes/flashtrade/99-utilities/_index.scss +9 -0
- package/src/themes/flashtrade/99-utilities/_utilities.trading.scss +187 -0
- package/src/themes/flashtrade/README.md +386 -0
- package/src/themes/flashtrade/demo.html +272 -0
- package/src/themes/flashtrade/index.scss +36 -0
- package/src/themes/mashroom/01-settings/_index.scss +69 -0
- package/src/themes/mashroom/01-settings/_settings.accordion.scss +32 -0
- package/src/themes/mashroom/01-settings/_settings.animations.scss +26 -0
- package/src/themes/mashroom/01-settings/_settings.avatar-group.scss +22 -0
- package/src/themes/mashroom/01-settings/_settings.avatar.scss +57 -0
- package/src/themes/mashroom/01-settings/_settings.badge.scss +19 -0
- package/src/themes/mashroom/01-settings/_settings.border-radius.scss +24 -0
- package/src/themes/mashroom/01-settings/_settings.border.scss +14 -0
- package/src/themes/mashroom/01-settings/_settings.box-shadow.scss +40 -0
- package/src/themes/mashroom/01-settings/_settings.breadcrumb.scss +0 -0
- package/src/themes/mashroom/01-settings/_settings.breakpoints.scss +17 -0
- package/src/themes/mashroom/01-settings/_settings.btn-group.scss +5 -0
- package/src/themes/mashroom/01-settings/_settings.button.scss +50 -0
- package/src/themes/mashroom/01-settings/_settings.callout.scss +81 -0
- package/src/themes/mashroom/01-settings/_settings.card.scss +52 -0
- package/src/themes/mashroom/01-settings/_settings.checkbox-group.scss +5 -0
- package/src/themes/mashroom/01-settings/_settings.checkbox.scss +23 -0
- package/src/themes/mashroom/01-settings/_settings.color-mode.scss +7 -0
- package/src/themes/mashroom/01-settings/_settings.colors.scss +180 -0
- package/src/themes/mashroom/01-settings/_settings.config.scss +4 -0
- package/src/themes/mashroom/01-settings/_settings.countdown.scss +20 -0
- package/src/themes/mashroom/01-settings/_settings.data-table.scss +56 -0
- package/src/themes/mashroom/01-settings/_settings.datepicker.scss +45 -0
- package/src/themes/mashroom/01-settings/_settings.design-tokens.scss +3 -0
- package/src/themes/mashroom/01-settings/_settings.dropdown.scss +45 -0
- package/src/themes/mashroom/01-settings/_settings.edge-panel.scss +24 -0
- package/src/themes/mashroom/01-settings/_settings.fonts.scss +8 -0
- package/src/themes/mashroom/01-settings/_settings.form-group.scss +14 -0
- package/src/themes/mashroom/01-settings/_settings.form.scss +6 -0
- package/src/themes/mashroom/01-settings/_settings.grid.scss +23 -0
- package/src/themes/mashroom/01-settings/_settings.hero.scss +41 -0
- package/src/themes/mashroom/01-settings/_settings.input.scss +51 -0
- package/src/themes/mashroom/01-settings/_settings.link.scss +13 -0
- package/src/themes/mashroom/01-settings/_settings.list-group.scss +16 -0
- package/src/themes/mashroom/01-settings/_settings.list.scss +13 -0
- package/src/themes/mashroom/01-settings/_settings.masonry-grid.scss +23 -0
- package/src/themes/mashroom/01-settings/_settings.menu.scss +50 -0
- package/src/themes/mashroom/01-settings/_settings.messages.scss +98 -0
- package/src/themes/mashroom/01-settings/_settings.modal.scss +41 -0
- package/src/themes/mashroom/01-settings/_settings.nav.scss +20 -0
- package/src/themes/mashroom/01-settings/_settings.navbar.scss +54 -0
- package/src/themes/mashroom/01-settings/_settings.pagination.scss +30 -0
- package/src/themes/mashroom/01-settings/_settings.photoviewer.scss +45 -0
- package/src/themes/mashroom/01-settings/_settings.popover.scss +20 -0
- package/src/themes/mashroom/01-settings/_settings.position.scss +9 -0
- package/src/themes/mashroom/01-settings/_settings.progress.scss +17 -0
- package/src/themes/mashroom/01-settings/_settings.rating.scss +11 -0
- package/src/themes/mashroom/01-settings/_settings.river.scss +50 -0
- package/src/themes/mashroom/01-settings/_settings.sectionintro.scss +31 -0
- package/src/themes/mashroom/01-settings/_settings.select.scss +47 -0
- package/src/themes/mashroom/01-settings/_settings.side-menu.scss +79 -0
- package/src/themes/mashroom/01-settings/_settings.skeleton.scss +24 -0
- package/src/themes/mashroom/01-settings/_settings.spacing.scss +66 -0
- package/src/themes/mashroom/01-settings/_settings.spinner.scss +34 -0
- package/src/themes/mashroom/01-settings/_settings.steps.scss +33 -0
- package/src/themes/mashroom/01-settings/_settings.tabs.scss +33 -0
- package/src/themes/mashroom/01-settings/_settings.testimonials.scss +24 -0
- package/src/themes/mashroom/01-settings/_settings.todo.scss +52 -0
- package/src/themes/mashroom/01-settings/_settings.toggle.scss +49 -0
- package/src/themes/mashroom/01-settings/_settings.tooltip.scss +20 -0
- package/src/themes/mashroom/01-settings/_settings.typography.scss +95 -0
- package/src/themes/mashroom/01-settings/_settings.upload.scss +96 -0
- package/src/themes/mashroom/01-settings/_settings.z-layers.scss +19 -0
- package/src/themes/mashroom/02-tools/_index.scss +8 -0
- package/src/themes/mashroom/02-tools/_tools.psychedelic-gradients.scss +78 -0
- package/src/themes/mashroom/02-tools/_tools.trippy-effects.scss +114 -0
- package/src/themes/mashroom/03-generic/_index.scss +6 -0
- package/src/themes/mashroom/04-elements/_index.scss +6 -0
- package/src/themes/mashroom/05-objects/_index.scss +6 -0
- package/src/themes/mashroom/06-components/_components.accordion.scss +187 -0
- package/src/themes/mashroom/06-components/_components.avatar-group.scss +276 -0
- package/src/themes/mashroom/06-components/_components.avatar.scss +114 -0
- package/src/themes/mashroom/06-components/_components.badge.scss +152 -0
- package/src/themes/mashroom/06-components/_components.breadcrumb.scss +162 -0
- package/src/themes/mashroom/06-components/_components.btn-group.scss +404 -0
- package/src/themes/mashroom/06-components/_components.button.scss +160 -0
- package/src/themes/mashroom/06-components/_components.callout.scss +140 -0
- package/src/themes/mashroom/06-components/_components.card.scss +225 -0
- package/src/themes/mashroom/06-components/_components.checkbox.scss +186 -0
- package/src/themes/mashroom/06-components/_components.color-mode-toggle.scss +308 -0
- package/src/themes/mashroom/06-components/_components.countdown.scss +402 -0
- package/src/themes/mashroom/06-components/_components.data-table.scss +354 -0
- package/src/themes/mashroom/06-components/_components.datepicker.scss +349 -0
- package/src/themes/mashroom/06-components/_components.dropdown.scss +334 -0
- package/src/themes/mashroom/06-components/_components.edge-panel.scss +413 -0
- package/src/themes/mashroom/06-components/_components.form-group.scss +433 -0
- package/src/themes/mashroom/06-components/_components.form.scss +358 -0
- package/src/themes/mashroom/06-components/_components.hero.scss +151 -0
- package/src/themes/mashroom/06-components/_components.input.scss +147 -0
- package/src/themes/mashroom/06-components/_components.list-group.scss +456 -0
- package/src/themes/mashroom/06-components/_components.list.scss +145 -0
- package/src/themes/mashroom/06-components/_components.menu.scss +497 -0
- package/src/themes/mashroom/06-components/_components.messages.scss +277 -0
- package/src/themes/mashroom/06-components/_components.modal.scss +264 -0
- package/src/themes/mashroom/06-components/_components.nav.scss +181 -0
- package/src/themes/mashroom/06-components/_components.navbar.scss +538 -0
- package/src/themes/mashroom/06-components/_components.pagination.scss +400 -0
- package/src/themes/mashroom/06-components/_components.photoviewer.scss +498 -0
- package/src/themes/mashroom/06-components/_components.popover.scss +383 -0
- package/src/themes/mashroom/06-components/_components.product-review.scss +408 -0
- package/src/themes/mashroom/06-components/_components.progress.scss +249 -0
- package/src/themes/mashroom/06-components/_components.rating.scss +300 -0
- package/src/themes/mashroom/06-components/_components.river.scss +570 -0
- package/src/themes/mashroom/06-components/_components.sectionintro.scss +546 -0
- package/src/themes/mashroom/06-components/_components.select.scss +455 -0
- package/src/themes/mashroom/06-components/_components.side-menu.scss +635 -0
- package/src/themes/mashroom/06-components/_components.skeleton.scss +447 -0
- package/src/themes/mashroom/06-components/_components.slider.scss +414 -0
- package/src/themes/mashroom/06-components/_components.spinner.scss +198 -0
- package/src/themes/mashroom/06-components/_components.steps.scss +350 -0
- package/src/themes/mashroom/06-components/_components.tabs.scss +269 -0
- package/src/themes/mashroom/06-components/_components.testimonials.scss +561 -0
- package/src/themes/mashroom/06-components/_components.toggle.scss +231 -0
- package/src/themes/mashroom/06-components/_components.tooltip.scss +167 -0
- package/src/themes/mashroom/06-components/_components.upload.scss +537 -0
- package/src/themes/mashroom/06-components/_components.video-player.scss +560 -0
- package/src/themes/mashroom/06-components/_index.scss +55 -0
- package/src/themes/mashroom/99-utilities/_index.scss +6 -0
- package/src/themes/mashroom/index.scss +26 -0
- package/src/themes/shaj-default/01-settings/_index.scss +69 -0
- package/src/themes/shaj-default/01-settings/_settings.accordion.scss +38 -0
- package/src/themes/shaj-default/01-settings/_settings.animations.scss +32 -0
- package/src/themes/shaj-default/01-settings/_settings.avatar-group.scss +28 -0
- package/src/themes/shaj-default/01-settings/_settings.avatar.scss +63 -0
- package/src/themes/shaj-default/01-settings/_settings.badge.scss +25 -0
- package/src/themes/shaj-default/01-settings/_settings.border-radius.scss +24 -0
- package/src/themes/shaj-default/01-settings/_settings.border.scss +20 -0
- package/src/themes/shaj-default/01-settings/_settings.box-shadow.scss +46 -0
- package/src/themes/shaj-default/01-settings/_settings.breadcrumb.scss +0 -0
- package/src/themes/shaj-default/01-settings/_settings.breakpoints.scss +23 -0
- package/src/themes/shaj-default/01-settings/_settings.btn-group.scss +11 -0
- package/src/themes/shaj-default/01-settings/_settings.button.scss +56 -0
- package/src/themes/shaj-default/01-settings/_settings.callout.scss +87 -0
- package/src/themes/shaj-default/01-settings/_settings.card.scss +52 -0
- package/src/themes/shaj-default/01-settings/_settings.checkbox-group.scss +11 -0
- package/src/themes/shaj-default/01-settings/_settings.checkbox.scss +29 -0
- package/src/themes/shaj-default/01-settings/_settings.color-mode.scss +13 -0
- package/src/themes/shaj-default/01-settings/_settings.colors.scss +91 -0
- package/src/themes/shaj-default/01-settings/_settings.config.scss +4 -0
- package/src/themes/shaj-default/01-settings/_settings.countdown.scss +26 -0
- package/src/themes/shaj-default/01-settings/_settings.data-table.scss +62 -0
- package/src/themes/shaj-default/01-settings/_settings.datepicker.scss +51 -0
- package/src/themes/shaj-default/01-settings/_settings.design-tokens.scss +9 -0
- package/src/themes/shaj-default/01-settings/_settings.dropdown.scss +51 -0
- package/src/themes/shaj-default/01-settings/_settings.edge-panel.scss +30 -0
- package/src/themes/shaj-default/01-settings/_settings.fonts.scss +13 -0
- package/src/themes/shaj-default/01-settings/_settings.form-group.scss +20 -0
- package/src/themes/shaj-default/01-settings/_settings.form.scss +12 -0
- package/src/themes/shaj-default/01-settings/_settings.grid.scss +29 -0
- package/src/themes/shaj-default/01-settings/_settings.hero.scss +47 -0
- package/src/themes/shaj-default/01-settings/_settings.input.scss +57 -0
- package/src/themes/shaj-default/01-settings/_settings.link.scss +19 -0
- package/src/themes/shaj-default/01-settings/_settings.list-group.scss +22 -0
- package/src/themes/shaj-default/01-settings/_settings.list.scss +19 -0
- package/src/themes/shaj-default/01-settings/_settings.masonry-grid.scss +29 -0
- package/src/themes/shaj-default/01-settings/_settings.menu.scss +56 -0
- package/src/themes/shaj-default/01-settings/_settings.messages.scss +104 -0
- package/src/themes/shaj-default/01-settings/_settings.modal.scss +47 -0
- package/src/themes/shaj-default/01-settings/_settings.nav.scss +26 -0
- package/src/themes/shaj-default/01-settings/_settings.navbar.scss +60 -0
- package/src/themes/shaj-default/01-settings/_settings.pagination.scss +36 -0
- package/src/themes/shaj-default/01-settings/_settings.photoviewer.scss +51 -0
- package/src/themes/shaj-default/01-settings/_settings.popover.scss +26 -0
- package/src/themes/shaj-default/01-settings/_settings.position.scss +15 -0
- package/src/themes/shaj-default/01-settings/_settings.progress.scss +23 -0
- package/src/themes/shaj-default/01-settings/_settings.rating.scss +17 -0
- package/src/themes/shaj-default/01-settings/_settings.river.scss +56 -0
- package/src/themes/shaj-default/01-settings/_settings.sectionintro.scss +37 -0
- package/src/themes/shaj-default/01-settings/_settings.select.scss +53 -0
- package/src/themes/shaj-default/01-settings/_settings.side-menu.scss +85 -0
- package/src/themes/shaj-default/01-settings/_settings.skeleton.scss +30 -0
- package/src/themes/shaj-default/01-settings/_settings.spacing.scss +72 -0
- package/src/themes/shaj-default/01-settings/_settings.spinner.scss +24 -0
- package/src/themes/shaj-default/01-settings/_settings.steps.scss +39 -0
- package/src/themes/shaj-default/01-settings/_settings.tabs.scss +39 -0
- package/src/themes/shaj-default/01-settings/_settings.testimonials.scss +30 -0
- package/src/themes/shaj-default/01-settings/_settings.todo.scss +58 -0
- package/src/themes/shaj-default/01-settings/_settings.toggle.scss +55 -0
- package/src/themes/shaj-default/01-settings/_settings.tooltip.scss +26 -0
- package/src/themes/shaj-default/01-settings/_settings.typography.scss +101 -0
- package/src/themes/shaj-default/01-settings/_settings.upload.scss +102 -0
- package/src/themes/shaj-default/01-settings/_settings.z-layers.scss +25 -0
- package/src/themes/shaj-default/02-tools/_index.scss +0 -0
- package/src/themes/shaj-default/03-generic/_generic.root.scss +0 -0
- package/src/themes/shaj-default/03-generic/_index.scss +2 -0
- package/src/themes/shaj-default/04-elements/_index.scss +0 -0
- package/src/themes/shaj-default/05-objects/_index.scss +0 -0
- package/src/themes/shaj-default/06-components/_components.button.scss +55 -0
- package/src/themes/shaj-default/06-components/_components.card.scss +57 -0
- package/src/themes/shaj-default/06-components/_components.input.scss +58 -0
- package/src/themes/shaj-default/06-components/_components.navbar.scss +99 -0
- package/src/themes/shaj-default/06-components/_components.tooltip.scss +0 -0
- package/src/themes/shaj-default/06-components/_index.scss +13 -0
- package/src/themes/shaj-default/99-utilities/_index.scss +0 -0
- package/src/themes/shaj-default/index.scss +25 -0
- package/src/themes/themes.config.js +219 -0
- package/theme.config.ts +360 -0
- package/src/lib/theme/studio/ThemeStudio.tsx +0 -312
- package/src/lib/theme/studio/index.ts +0 -8
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Shaj Default Theme Steps Settings
|
|
3
|
+
* Modern step indicator styling with clean aesthetics
|
|
4
|
+
* Overrides Atomix default steps settings
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@use '../../../styles/01-settings/settings.steps' with (
|
|
8
|
+
$steps-padding-x: 0px,
|
|
9
|
+
$steps-padding-y: 0px,
|
|
10
|
+
|
|
11
|
+
$steps-item-color: var(--atomix-tertiary-text-emphasis),
|
|
12
|
+
$steps-item-bg: var(--atomix-secondary-bg-subtle),
|
|
13
|
+
$steps-item-active-color: var(--atomix-brand-text-emphasis),
|
|
14
|
+
$steps-item-active-bg: var(--atomix-primary),
|
|
15
|
+
$steps-item-number-bg: var(--atomix-secondary-bg-subtle),
|
|
16
|
+
$steps-item-number-color: var(--atomix-tertiary-text-emphasis),
|
|
17
|
+
$steps-item-number-active-color: var(--atomix-gray-1),
|
|
18
|
+
$steps-item-number-size: 32px,
|
|
19
|
+
// 32px - larger for better visibility
|
|
20
|
+
$steps-item-number-font-size: 14px,
|
|
21
|
+
// 14px
|
|
22
|
+
$steps-item-number-border-radius: 800px,
|
|
23
|
+
// pill shape
|
|
24
|
+
$steps-item-font-size: 16px,
|
|
25
|
+
// 16px - better readability
|
|
26
|
+
$steps-item-content-gap: 12px,
|
|
27
|
+
|
|
28
|
+
// 12px
|
|
29
|
+
$steps-line-height: 2px,
|
|
30
|
+
// 2px - thicker line
|
|
31
|
+
$steps-line-width: 48px,
|
|
32
|
+
// 48px - longer connecting lines
|
|
33
|
+
$steps-gap: 16px,
|
|
34
|
+
|
|
35
|
+
// 16px - more spacing
|
|
36
|
+
$steps-line-height-vertical: 48px,
|
|
37
|
+
// 48px
|
|
38
|
+
$steps-line-width-vertical: 2px // 2px
|
|
39
|
+
);
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Shaj Default Theme Tabs Settings
|
|
3
|
+
* Modern tabs styling with clean aesthetics
|
|
4
|
+
* Overrides Atomix default tabs settings
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@use '../../../styles/01-settings/settings.tabs' with (
|
|
8
|
+
$tabs-width: 100%,
|
|
9
|
+
$tabs-nav-btn-padding-x: 16px,
|
|
10
|
+
// 16px - more padding
|
|
11
|
+
$tabs-nav-btn-padding-y: 12px,
|
|
12
|
+
// 12px
|
|
13
|
+
$tabs-nav-btn-font-size: 16px,
|
|
14
|
+
// 16px
|
|
15
|
+
$tabs-nav-btn-font-weight: 500,
|
|
16
|
+
$tabs-nav-btn-color: var(--atomix-tertiary-text-emphasis),
|
|
17
|
+
$tabs-nav-btn-active-color: var(--atomix-body-color),
|
|
18
|
+
$tabs-nav-btn-disabled-color: var(--atomix-disabled-text-emphasis),
|
|
19
|
+
$tabs-nav-btn-bg: var(--atomix-body-bg),
|
|
20
|
+
$tabs-nav-btn-bg-hover: var(--atomix-secondary-bg-subtle),
|
|
21
|
+
$tabs-nav-btn-bg-active: var(--atomix-body-bg),
|
|
22
|
+
$tabs-nav-btn-bg-disabled: var(--atomix-body-bg),
|
|
23
|
+
$tabs-nav-btn-border-radius: 6px,
|
|
24
|
+
// 6px - softer corners
|
|
25
|
+
$tabs-nav-btn-border-width: 2px,
|
|
26
|
+
$tabs-nav-btn-border-color: transparent,
|
|
27
|
+
$tabs-nav-btn-border-active-color: var(--atomix-brand-border-subtle),
|
|
28
|
+
$tabs-nav-btn-border-disabled-color: var(--atomix-primary-border-subtle),
|
|
29
|
+
$tabs-nav-btns-gap: 4px,
|
|
30
|
+
// 4px - small gap between tabs
|
|
31
|
+
$tabs-nav-btn-inner-gap: 8px,
|
|
32
|
+
// 8px
|
|
33
|
+
$tab-nav-btn-icon-size: 18px,
|
|
34
|
+
|
|
35
|
+
// 18px
|
|
36
|
+
$tabs-panel-padding-x: 16px,
|
|
37
|
+
// 16px
|
|
38
|
+
$tabs-panel-padding-y: 16px // 16px
|
|
39
|
+
);
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Shaj Default Theme Testimonials Settings
|
|
3
|
+
* Modern testimonial styling with clean aesthetics
|
|
4
|
+
* Overrides Atomix default testimonials settings
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@use '../../../styles/01-settings/settings.testimonials' with (
|
|
8
|
+
$testimonial-width: 100%,
|
|
9
|
+
$testimonial-padding-x: 0px,
|
|
10
|
+
$testimonial-padding-y: 0px,
|
|
11
|
+
$testimonial-inner-spacer: 24px,
|
|
12
|
+
// 24px - more generous spacing
|
|
13
|
+
$testimonial-bg: null,
|
|
14
|
+
$testimonial-quote-font-size: 24px,
|
|
15
|
+
// 24px - impactful quotes
|
|
16
|
+
$testimonial-quote-font-size-sm: 18px,
|
|
17
|
+
// 18px
|
|
18
|
+
$testimonial-quote-font-size-lg: 32px,
|
|
19
|
+
// 32px
|
|
20
|
+
$testimonial-quote-font-weight: 500,
|
|
21
|
+
// medium weight for readability
|
|
22
|
+
$testimonial-quote-color: var(--atomix-body-color),
|
|
23
|
+
$testimonial-author-font-size: 16px,
|
|
24
|
+
// 16px
|
|
25
|
+
$testimonial-author-color: var(--atomix-body-color),
|
|
26
|
+
$testimonial-author-role-font-size: 14px,
|
|
27
|
+
// 14px - larger role text
|
|
28
|
+
$testimonial-author-role-color: var(--atomix-tertiary-text-emphasis),
|
|
29
|
+
$testimonial-author-inner-spacer: 8px // 8px - tighter author spacing
|
|
30
|
+
);
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Shaj Default Theme Todo Settings
|
|
3
|
+
* Modern todo/task list styling with clean aesthetics
|
|
4
|
+
* Overrides Atomix default todo settings
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@use '../../../styles/01-settings/settings.todo' with (
|
|
8
|
+
// Base styles
|
|
9
|
+
$todo-bg: #ffffff,
|
|
10
|
+
$todo-color: var(--atomix-gray-9),
|
|
11
|
+
$todo-border-color: var(--atomix-gray-3),
|
|
12
|
+
$todo-border-radius: 8px,
|
|
13
|
+
// softer corners
|
|
14
|
+
$todo-padding: 1.5rem,
|
|
15
|
+
// more generous padding
|
|
16
|
+
$todo-margin-bottom: 1.5rem,
|
|
17
|
+
|
|
18
|
+
// Title
|
|
19
|
+
$todo-title-font-size: 1.375rem,
|
|
20
|
+
// larger title
|
|
21
|
+
$todo-title-font-weight: 600,
|
|
22
|
+
// medium bold
|
|
23
|
+
$todo-title-margin-bottom: 1.25rem,
|
|
24
|
+
|
|
25
|
+
// Form
|
|
26
|
+
$todo-form-margin-bottom: 1.25rem,
|
|
27
|
+
$todo-form-gap: 0.75rem,
|
|
28
|
+
|
|
29
|
+
// more spacing
|
|
30
|
+
// Item
|
|
31
|
+
$todo-item-padding: 1rem,
|
|
32
|
+
// more padding
|
|
33
|
+
$todo-item-border-color: var(--atomix-gray-3),
|
|
34
|
+
$todo-item-hover-bg: var(--atomix-gray-2),
|
|
35
|
+
// Completed item
|
|
36
|
+
$todo-completed-color: var(--atomix-gray-6),
|
|
37
|
+
$todo-completed-text-decoration: line-through,
|
|
38
|
+
|
|
39
|
+
// Empty state
|
|
40
|
+
$todo-empty-color: var(--atomix-gray-6),
|
|
41
|
+
// Small size
|
|
42
|
+
$todo-padding-sm: 1rem,
|
|
43
|
+
$todo-font-size-sm: 0.875rem,
|
|
44
|
+
$todo-title-font-size-sm: 1.125rem,
|
|
45
|
+
$todo-title-margin-bottom-sm: 1rem,
|
|
46
|
+
$todo-item-padding-sm: 0.75rem,
|
|
47
|
+
|
|
48
|
+
// Large size
|
|
49
|
+
$todo-padding-lg: 2rem,
|
|
50
|
+
// more generous large padding
|
|
51
|
+
$todo-title-font-size-lg: 1.625rem,
|
|
52
|
+
// larger title
|
|
53
|
+
$todo-title-margin-bottom-lg: 1.5rem,
|
|
54
|
+
$todo-item-padding-lg: 1.25rem,
|
|
55
|
+
|
|
56
|
+
// Disabled state
|
|
57
|
+
$todo-disabled-opacity: 0.6
|
|
58
|
+
);
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Shaj Default Theme Toggle Settings
|
|
3
|
+
* Modern toggle/switch styling with clean aesthetics
|
|
4
|
+
* Overrides Atomix default toggle settings
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@use '../../../styles/01-settings/settings.toggle' with (
|
|
8
|
+
$toggle-gap: 12px,
|
|
9
|
+
|
|
10
|
+
// 12px
|
|
11
|
+
$toggle-switch-on-bg: var(--atomix-primary),
|
|
12
|
+
$toggle-switch-off-bg: var(--atomix-tertiary-bg-subtle),
|
|
13
|
+
$toggle-switch-disabled-bg: var(--atomix-secondary-bg-subtle),
|
|
14
|
+
$toggle-switch-border-radius: 12px,
|
|
15
|
+
// 12px - softer corners
|
|
16
|
+
$toggle-switch-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
|
|
17
|
+
// subtle shadow
|
|
18
|
+
$toggle-switch-width-sm: 52px,
|
|
19
|
+
// 52px - slightly larger
|
|
20
|
+
$toggle-switch-height-sm: 28px,
|
|
21
|
+
// 28px
|
|
22
|
+
$toggle-switch-width-md: 40px,
|
|
23
|
+
// 40px
|
|
24
|
+
$toggle-switch-height-md: 24px,
|
|
25
|
+
|
|
26
|
+
// 24px
|
|
27
|
+
$toggle-switch-width: 40px,
|
|
28
|
+
// 40px
|
|
29
|
+
$toggle-switch-height: 24px,
|
|
30
|
+
|
|
31
|
+
// 24px
|
|
32
|
+
$toggle-switch-handle-bg: var(--atomix-primary-bg-subtle),
|
|
33
|
+
$toggle-switch-handle-border-radius: 800px,
|
|
34
|
+
// pill shape
|
|
35
|
+
$toggle-switch-handle-margin: 2px,
|
|
36
|
+
|
|
37
|
+
// 2px - tighter margin
|
|
38
|
+
$toggle-switch-handle-width-sm: 24px,
|
|
39
|
+
// 24px
|
|
40
|
+
$toggle-switch-handle-width-md: 20px,
|
|
41
|
+
// 20px
|
|
42
|
+
$toggle-switch-handle-height-sm: 24px,
|
|
43
|
+
// 24px
|
|
44
|
+
$toggle-switch-handle-height-md: 20px,
|
|
45
|
+
|
|
46
|
+
// 20px
|
|
47
|
+
$toggle-switch-handle-width: 20px,
|
|
48
|
+
// 20px
|
|
49
|
+
$toggle-switch-handle-height: 20px,
|
|
50
|
+
|
|
51
|
+
// 20px
|
|
52
|
+
$toggle-label-font-size: 16px,
|
|
53
|
+
// 16px
|
|
54
|
+
$toggle-label-color: var(--atomix-primary-text-emphasis)
|
|
55
|
+
);
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Shaj Default Theme Tooltip Settings
|
|
3
|
+
* Modern tooltip styling with clean aesthetics
|
|
4
|
+
* Overrides Atomix default tooltip settings
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@use '../../../styles/01-settings/settings.tooltip' with (
|
|
8
|
+
$tooltip-max-width: 280px,
|
|
9
|
+
// 280px - wider for better content
|
|
10
|
+
$tooltip-padding-x: 12px,
|
|
11
|
+
// 12px
|
|
12
|
+
$tooltip-padding-y: 8px,
|
|
13
|
+
// 8px
|
|
14
|
+
$tooltip-bg: var(--atomix-invert-bg-subtle),
|
|
15
|
+
$tooltip-font-size: 14px,
|
|
16
|
+
// 14px - better readability
|
|
17
|
+
$tooltip-font-weight: 400,
|
|
18
|
+
$tooltip-color: var(--atomix-invert-text-emphasis),
|
|
19
|
+
$tooltip-border-radius: 6px,
|
|
20
|
+
// 6px - softer corners
|
|
21
|
+
$tooltip-border-width: null,
|
|
22
|
+
$tooltip-border-color: null,
|
|
23
|
+
$tooltip-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15),
|
|
24
|
+
// subtle shadow
|
|
25
|
+
$tooltip-arrow-size: 8px // 8px - smaller arrow
|
|
26
|
+
);
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Shaj Default Theme Typography Settings
|
|
3
|
+
* Modern typography with improved readability
|
|
4
|
+
* Overrides Atomix default typography settings
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@use '../../../styles/01-settings/settings.typography' with (
|
|
8
|
+
// Font families - using system fonts for better performance
|
|
9
|
+
$font-family-base: (
|
|
10
|
+
system-ui,
|
|
11
|
+
-apple-system,
|
|
12
|
+
BlinkMacSystemFont,
|
|
13
|
+
'Segoe UI',
|
|
14
|
+
Roboto,
|
|
15
|
+
'Helvetica Neue',
|
|
16
|
+
Arial,
|
|
17
|
+
sans-serif
|
|
18
|
+
),
|
|
19
|
+
$font-family-sans-serif: (
|
|
20
|
+
system-ui,
|
|
21
|
+
-apple-system,
|
|
22
|
+
BlinkMacSystemFont,
|
|
23
|
+
'Segoe UI',
|
|
24
|
+
Roboto,
|
|
25
|
+
'Helvetica Neue',
|
|
26
|
+
Arial,
|
|
27
|
+
sans-serif
|
|
28
|
+
),
|
|
29
|
+
$headings-font-family: (
|
|
30
|
+
system-ui,
|
|
31
|
+
-apple-system,
|
|
32
|
+
BlinkMacSystemFont,
|
|
33
|
+
'Segoe UI',
|
|
34
|
+
Roboto,
|
|
35
|
+
'Helvetica Neue',
|
|
36
|
+
Arial,
|
|
37
|
+
sans-serif
|
|
38
|
+
),
|
|
39
|
+
// Font weights
|
|
40
|
+
$font-weight-light: 300,
|
|
41
|
+
$font-weight-normal: 400,
|
|
42
|
+
$font-weight-medium: 500,
|
|
43
|
+
$font-weight-semibold: 600,
|
|
44
|
+
$font-weight-bold: 700,
|
|
45
|
+
$font-weight-heavy: 800,
|
|
46
|
+
$font-weight-black: 900,
|
|
47
|
+
$font-weight-base: 400,
|
|
48
|
+
|
|
49
|
+
// Font sizes - slightly larger for better readability
|
|
50
|
+
$font-size-base: 1rem,
|
|
51
|
+
// 16px
|
|
52
|
+
$font-size-xs: 0.75rem,
|
|
53
|
+
// 12px
|
|
54
|
+
$font-size-sm: 0.875rem,
|
|
55
|
+
// 14px
|
|
56
|
+
$font-size-md: 1.125rem,
|
|
57
|
+
// 18px
|
|
58
|
+
$font-size-lg: 1.25rem,
|
|
59
|
+
|
|
60
|
+
// 20px
|
|
61
|
+
// Heading sizes - more pronounced scale
|
|
62
|
+
$h1-font-size: 2.75rem,
|
|
63
|
+
// 44px
|
|
64
|
+
$h2-font-size: 2.25rem,
|
|
65
|
+
// 36px
|
|
66
|
+
$h3-font-size: 1.75rem,
|
|
67
|
+
// 28px
|
|
68
|
+
$h4-font-size: 1.375rem,
|
|
69
|
+
// 22px
|
|
70
|
+
$h5-font-size: 1.125rem,
|
|
71
|
+
// 18px
|
|
72
|
+
$h6-font-size: 1rem,
|
|
73
|
+
|
|
74
|
+
// 16px
|
|
75
|
+
$display-1: 4.5rem,
|
|
76
|
+
|
|
77
|
+
// 72px - larger display text
|
|
78
|
+
// Line heights - improved readability
|
|
79
|
+
$line-height-base: 1.6,
|
|
80
|
+
// better for body text
|
|
81
|
+
$line-height-sm: 1.4,
|
|
82
|
+
$line-height-lg: 1.8,
|
|
83
|
+
|
|
84
|
+
// Heading styles
|
|
85
|
+
$headings-margin-bottom: 0,
|
|
86
|
+
$headings-font-weight: 600,
|
|
87
|
+
// slightly lighter than bold
|
|
88
|
+
$headings-line-height: 1.2,
|
|
89
|
+
|
|
90
|
+
// tighter for headings
|
|
91
|
+
// Letter spacing for better typography
|
|
92
|
+
$h1-letter-spaceing: -1.5px,
|
|
93
|
+
$h2-letter-spaceing: -1px,
|
|
94
|
+
$h3-letter-spaceing: -0.75px,
|
|
95
|
+
$h4-letter-spaceing: -0.5px,
|
|
96
|
+
$h5-letter-spaceing: -0.25px,
|
|
97
|
+
$h6-letter-spaceing: 0px,
|
|
98
|
+
|
|
99
|
+
$paragraph-margin-bottom: 0,
|
|
100
|
+
$body-text-align: null
|
|
101
|
+
);
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Shaj Default Theme Upload Settings
|
|
3
|
+
* Modern file upload styling with clean aesthetics
|
|
4
|
+
* Overrides Atomix default upload settings
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@use '../../../styles/01-settings/settings.upload' with (
|
|
8
|
+
$upload-width: 600px,
|
|
9
|
+
// 600px - wider for modern screens
|
|
10
|
+
$upload-width-sm: 480px,
|
|
11
|
+
// 480px
|
|
12
|
+
$upload-width-large: 800px,
|
|
13
|
+
|
|
14
|
+
// 800px
|
|
15
|
+
$upload-padding-x: 0px,
|
|
16
|
+
$upload-padding-y: 0px,
|
|
17
|
+
|
|
18
|
+
$upload-inner-padding-x: 24px,
|
|
19
|
+
// 24px - more generous padding
|
|
20
|
+
$upload-inner-padding-y: 32px,
|
|
21
|
+
|
|
22
|
+
// 32px
|
|
23
|
+
$upload-large-inner-padding-x: 32px,
|
|
24
|
+
// 32px
|
|
25
|
+
$upload-large-inner-padding-y: 40px,
|
|
26
|
+
|
|
27
|
+
// 40px
|
|
28
|
+
$upload-border-radius: 8px,
|
|
29
|
+
// 8px - softer corners
|
|
30
|
+
$upload-border-width: 2px,
|
|
31
|
+
// 2px - more prominent border
|
|
32
|
+
$upload-border-color: var(--atomix-primary-border-subtle),
|
|
33
|
+
$upload-bg: var(--atomix-body-bg),
|
|
34
|
+
$upload-hover-bg: var(--atomix-secondary-bg-subtle),
|
|
35
|
+
// hover state
|
|
36
|
+
$upload-icon-size: 48px,
|
|
37
|
+
// 48px - larger icon
|
|
38
|
+
$upload-icon-padding: 0px,
|
|
39
|
+
$upload-icon-bg: var(--atomix-body-bg),
|
|
40
|
+
$upload-title-font-size: 20px,
|
|
41
|
+
// 20px - larger title
|
|
42
|
+
$upload-title-font-weight: 600,
|
|
43
|
+
$upload-title-color: var(--atomix-body-color),
|
|
44
|
+
$upload-title-margin-top: 16px,
|
|
45
|
+
|
|
46
|
+
// 16px
|
|
47
|
+
$upload-text-font-size: 16px,
|
|
48
|
+
// 16px - better readability
|
|
49
|
+
$upload-text-font-weight: 400,
|
|
50
|
+
$upload-text-color: var(--atomix-body-color),
|
|
51
|
+
$upload-text-margin-top: 8px,
|
|
52
|
+
|
|
53
|
+
// 8px
|
|
54
|
+
$upload-btn-margin-top: 24px,
|
|
55
|
+
// 24px
|
|
56
|
+
$upload-btn-margin-left: 16px,
|
|
57
|
+
|
|
58
|
+
// 16px
|
|
59
|
+
$upload-content-margin-left: 20px,
|
|
60
|
+
|
|
61
|
+
// 20px
|
|
62
|
+
$upload-helper-text-font-size: 14px,
|
|
63
|
+
// 14px
|
|
64
|
+
$upload-helper-text-font-weight: 400,
|
|
65
|
+
$upload-helper-text-color: var(--atomix-body-color),
|
|
66
|
+
$upload-helper-text-margin-top: 12px,
|
|
67
|
+
|
|
68
|
+
// 12px
|
|
69
|
+
$upload-disabled-opacity: 0.6,
|
|
70
|
+
|
|
71
|
+
// slightly more visible when disabled
|
|
72
|
+
$upload-loader-padding-x: 16px,
|
|
73
|
+
// 16px
|
|
74
|
+
$upload-loader-padding-y: 16px,
|
|
75
|
+
// 16px
|
|
76
|
+
$upload-loader-bg-opacity: 1,
|
|
77
|
+
$upload-loader-border-radius: 8px,
|
|
78
|
+
// 8px
|
|
79
|
+
$upload-loader-border-width: 1px,
|
|
80
|
+
$upload-loader-border-color: var(--atomix-primary-border-subtle),
|
|
81
|
+
$upload-loader-margin-top: 16px,
|
|
82
|
+
// 16px
|
|
83
|
+
$upload-loader-title-color: var(--atomix-body-color),
|
|
84
|
+
$upload-loader-title-font-size: 16px,
|
|
85
|
+
// 16px
|
|
86
|
+
$upload-loader-title-font-weight: 500,
|
|
87
|
+
$upload-loader-text-color: var(--atomix-tertiary-text-emphasis),
|
|
88
|
+
$upload-loader-text-font-size: 14px,
|
|
89
|
+
// 14px
|
|
90
|
+
$upload-loader-text-margin-top: 6px,
|
|
91
|
+
// 6px
|
|
92
|
+
$upload-loader-bar-height: 8px,
|
|
93
|
+
// 8px - thinner progress bar
|
|
94
|
+
$upload-loader-bar-margin-top: 12px,
|
|
95
|
+
// 12px
|
|
96
|
+
$upload-loader-control-icon-size: 18px,
|
|
97
|
+
// 18px
|
|
98
|
+
$upload-loader-contorl-color: var(--atomix-body-color),
|
|
99
|
+
$upload-loader-progress-color: var(--atomix-primary),
|
|
100
|
+
$upload-loader-success-color: var(--atomix-success),
|
|
101
|
+
$upload-loader-error-color: var(--atomix-error)
|
|
102
|
+
);
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Shaj Default Theme Z-Index Layers
|
|
3
|
+
* Standard z-index values for UI component layering
|
|
4
|
+
* Ensures proper stacking order for overlays and modals
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Z-index layer definitions
|
|
8
|
+
$z-index-dropdown: 1000 !default;
|
|
9
|
+
$z-index-sticky: 1020 !default;
|
|
10
|
+
$z-index-fixed: 1030 !default;
|
|
11
|
+
$z-index-modal: 1040 !default;
|
|
12
|
+
$z-index-popover: 1050 !default;
|
|
13
|
+
$z-index-tooltip: 1060 !default;
|
|
14
|
+
$z-index-toast: 1070 !default;
|
|
15
|
+
|
|
16
|
+
// Z-index map for utilities
|
|
17
|
+
$z-index-layers: (
|
|
18
|
+
dropdown: $z-index-dropdown,
|
|
19
|
+
sticky: $z-index-sticky,
|
|
20
|
+
fixed: $z-index-fixed,
|
|
21
|
+
modal: $z-index-modal,
|
|
22
|
+
popover: $z-index-popover,
|
|
23
|
+
tooltip: $z-index-tooltip,
|
|
24
|
+
toast: $z-index-toast,
|
|
25
|
+
) !default;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Shaj Default Theme Button Component Overrides
|
|
3
|
+
* Additional styling for modern button aesthetics
|
|
4
|
+
*/
|
|
5
|
+
@use '../01-settings/settings.config' as *;
|
|
6
|
+
|
|
7
|
+
.c-btn {
|
|
8
|
+
// Enhanced shadow and hover effects
|
|
9
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
10
|
+
transition: all 200ms ease-in-out;
|
|
11
|
+
|
|
12
|
+
&:hover {
|
|
13
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
14
|
+
transform: translateY(-1px);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&:active {
|
|
18
|
+
transform: translateY(0);
|
|
19
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Primary button enhancements
|
|
23
|
+
&.c-btn-primary {
|
|
24
|
+
background: linear-gradient(135deg, var(--#{$prefix}primary-6), var(--#{$prefix}primary-7));
|
|
25
|
+
border-color: var(--#{$prefix}primary-6);
|
|
26
|
+
|
|
27
|
+
&:hover {
|
|
28
|
+
background: linear-gradient(135deg, var(--#{$prefix}primary-7), var(--#{$prefix}primary-8));
|
|
29
|
+
border-color: var(--#{$prefix}primary-7);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// Secondary button with subtle styling
|
|
34
|
+
&.c-btn-secondary {
|
|
35
|
+
background: var(--#{$prefix}gray-1);
|
|
36
|
+
border-color: var(--#{$prefix}gray-3);
|
|
37
|
+
color: var(--#{$prefix}gray-8);
|
|
38
|
+
|
|
39
|
+
&:hover {
|
|
40
|
+
background: var(--#{$prefix}gray-2);
|
|
41
|
+
border-color: var(--#{$prefix}gray-4);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// Outline buttons with modern styling
|
|
46
|
+
&.c-btn-outline-primary {
|
|
47
|
+
border-width: 1px;
|
|
48
|
+
background: transparent;
|
|
49
|
+
|
|
50
|
+
&:hover {
|
|
51
|
+
background: var(--#{$prefix}primary-1);
|
|
52
|
+
border-color: var(--#{$prefix}primary-6);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Shaj Default Theme Card Component Overrides
|
|
3
|
+
* Additional styling for modern card aesthetics
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
@use '../01-settings/settings.config' as *;
|
|
7
|
+
|
|
8
|
+
.c-card {
|
|
9
|
+
// Enhanced shadow and hover effects
|
|
10
|
+
transition: all 300ms ease-in-out;
|
|
11
|
+
border: 1px solid var(--#{$prefix}gray-2);
|
|
12
|
+
|
|
13
|
+
&:hover {
|
|
14
|
+
transform: translateY(-2px);
|
|
15
|
+
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
|
|
16
|
+
border-color: var(--#{$prefix}gray-3);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Card header styling
|
|
20
|
+
.c-card-header {
|
|
21
|
+
background: var(--#{$prefix}gray-1);
|
|
22
|
+
border-bottom: 1px solid var(--#{$prefix}gray-2);
|
|
23
|
+
font-weight: 600;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// Card title enhancements
|
|
27
|
+
.c-card-title {
|
|
28
|
+
font-weight: 600;
|
|
29
|
+
color: var(--#{$prefix}gray-9);
|
|
30
|
+
line-height: 1.3;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// Card text styling
|
|
34
|
+
.c-card-text {
|
|
35
|
+
color: var(--#{$prefix}gray-7);
|
|
36
|
+
line-height: 1.6;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// Card footer styling
|
|
40
|
+
.c-card-footer {
|
|
41
|
+
background: var(--#{$prefix}gray-1);
|
|
42
|
+
border-top: 1px solid var(--#{$prefix}gray-2);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// Image cards
|
|
46
|
+
&.c-card-image {
|
|
47
|
+
overflow: hidden;
|
|
48
|
+
|
|
49
|
+
img {
|
|
50
|
+
transition: transform 300ms ease-in-out;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&:hover img {
|
|
54
|
+
transform: scale(1.02);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Shaj Default Theme Input Component Overrides
|
|
3
|
+
* Additional styling for modern input aesthetics
|
|
4
|
+
*/
|
|
5
|
+
@use '../01-settings/settings.config' as *;
|
|
6
|
+
|
|
7
|
+
.c-form-control {
|
|
8
|
+
// Enhanced focus states
|
|
9
|
+
transition: all 200ms ease-in-out;
|
|
10
|
+
border: 1px solid var(--#{$prefix}gray-3);
|
|
11
|
+
|
|
12
|
+
&:focus {
|
|
13
|
+
border-color: var(--#{$prefix}primary-6);
|
|
14
|
+
box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
|
|
15
|
+
outline: none;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&:hover:not(:focus) {
|
|
19
|
+
border-color: var(--#{$prefix}gray-4);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Placeholder styling
|
|
23
|
+
&::placeholder {
|
|
24
|
+
color: var(--#{$prefix}gray-5);
|
|
25
|
+
font-style: italic;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// Error state
|
|
29
|
+
&.c-is-invalid {
|
|
30
|
+
border-color: var(--#{$prefix}red-6);
|
|
31
|
+
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// Success state
|
|
35
|
+
&.c-is-valid {
|
|
36
|
+
border-color: var(--#{$prefix}green-6);
|
|
37
|
+
box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// Input group styling
|
|
42
|
+
.c-input-group {
|
|
43
|
+
.c-input-group-text {
|
|
44
|
+
background: var(--#{$prefix}gray-1);
|
|
45
|
+
border-color: var(--#{$prefix}gray-3);
|
|
46
|
+
color: var(--#{$prefix}gray-6);
|
|
47
|
+
font-weight: 500;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// Floating labels
|
|
52
|
+
.c-form-floating {
|
|
53
|
+
.c-form-control:focus ~ label,
|
|
54
|
+
.c-form-control:not(:placeholder-shown) ~ label {
|
|
55
|
+
color: var(--#{$prefix}primary-6);
|
|
56
|
+
font-weight: 500;
|
|
57
|
+
}
|
|
58
|
+
}
|