@shohojdhara/atomix 0.1.30 → 0.2.1
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/CHANGELOG.md +0 -0
- package/LICENSE +0 -0
- package/README.md +151 -39
- package/dist/atomix.css +13529 -0
- package/dist/atomix.min.css +15 -0
- package/dist/index.d.ts +6112 -1757
- package/dist/index.esm.js +16852 -8364
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +16892 -8369
- 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/boomdevs.css +13241 -0
- package/dist/themes/boomdevs.min.css +353 -0
- package/dist/themes/esrar.css +15374 -0
- package/dist/themes/esrar.min.css +189 -0
- package/dist/themes/mashroom.css +28079 -0
- package/dist/themes/mashroom.min.css +403 -0
- package/dist/themes/shaj-default.css +14203 -0
- package/dist/themes/shaj-default.min.css +500 -0
- package/dist/themes/yabai.css +13711 -0
- package/dist/themes/yabai.min.css +189 -0
- package/package.json +126 -99
- package/src/components/Accordion/Accordion.stories.tsx +271 -0
- package/src/components/Accordion/Accordion.tsx +131 -0
- package/src/components/Accordion/index.ts +3 -0
- package/src/components/AtomixLogo/AtomixLogo.tsx +36 -0
- package/src/components/AtomixLogo/index.ts +3 -0
- package/src/components/AtomixLogo.tsx +40 -0
- package/src/components/Avatar/Avatar.stories.tsx +257 -0
- package/src/components/Avatar/Avatar.tsx +68 -0
- package/src/components/Avatar/AvatarGroup.tsx +73 -0
- package/src/components/Avatar/index.ts +3 -0
- package/src/components/Badge/Badge.stories.tsx +371 -0
- package/src/components/Badge/Badge.tsx +39 -0
- package/src/components/Badge/index.ts +3 -0
- package/src/components/Block/Block.stories.tsx +408 -0
- package/src/components/Block/Block.tsx +137 -0
- package/src/components/Block/index.ts +1 -0
- package/src/components/Breadcrumb/Breadcrumb.stories.tsx +106 -0
- package/src/components/Breadcrumb/Breadcrumb.tsx +112 -0
- package/src/components/Breadcrumb/index.ts +3 -0
- package/src/components/Button/Button.stories.tsx +312 -0
- package/src/components/Button/Button.tsx +69 -0
- package/src/components/Button/index.ts +3 -0
- package/src/components/Callout/Callout.stories.tsx +588 -0
- package/src/components/Callout/Callout.tsx +78 -0
- package/src/components/Callout/index.ts +1 -0
- package/src/components/Card/Card.stories.tsx +105 -0
- package/src/components/Card/Card.tsx +69 -0
- package/src/components/Card/ElevationCard.tsx +47 -0
- package/src/components/Card/index.ts +15 -0
- package/src/components/Chart/AdvancedChart.tsx +624 -0
- package/src/components/Chart/AnimatedChart.tsx +206 -0
- package/src/components/Chart/AreaChart.tsx +27 -0
- package/src/components/Chart/BarChart.tsx +148 -0
- package/src/components/Chart/BubbleChart.tsx +411 -0
- package/src/components/Chart/CandlestickChart.tsx +765 -0
- package/src/components/Chart/Chart.stories.tsx +527 -0
- package/src/components/Chart/Chart.tsx +218 -0
- package/src/components/Chart/ChartRenderer.tsx +322 -0
- package/src/components/Chart/ChartToolbar.tsx +436 -0
- package/src/components/Chart/ChartTooltip.tsx +101 -0
- package/src/components/Chart/DonutChart.tsx +370 -0
- package/src/components/Chart/FunnelChart.tsx +393 -0
- package/src/components/Chart/GaugeChart.tsx +550 -0
- package/src/components/Chart/HeatmapChart.tsx +614 -0
- package/src/components/Chart/LineChart.tsx +172 -0
- package/src/components/Chart/LineChartNew.tsx +167 -0
- package/src/components/Chart/MultiAxisChart.tsx +498 -0
- package/src/components/Chart/PieChart.tsx +103 -0
- package/src/components/Chart/RadarChart.tsx +332 -0
- package/src/components/Chart/RealTimeChart.tsx +436 -0
- package/src/components/Chart/ScatterChart.tsx +152 -0
- package/src/components/Chart/TreemapChart.tsx +574 -0
- package/src/components/Chart/WaterfallChart.tsx +450 -0
- package/src/components/Chart/index.ts +119 -0
- package/src/components/Chart/types.ts +338 -0
- package/src/components/ColorModeToggle/ColorModeToggle.stories.tsx +44 -0
- package/src/components/ColorModeToggle/ColorModeToggle.tsx +85 -0
- package/src/components/ColorModeToggle/index.ts +2 -0
- package/src/components/Countdown/Countdown.stories.tsx +46 -0
- package/src/components/Countdown/Countdown.tsx +90 -0
- package/src/components/Countdown/index.ts +2 -0
- package/src/components/DataTable/DataTable.stories.tsx +248 -0
- package/src/components/DataTable/DataTable.tsx +213 -0
- package/src/components/DataTable/index.ts +3 -0
- package/src/components/DatePicker/DatePicker.stories.tsx +364 -0
- package/src/components/DatePicker/DatePicker.tsx +504 -0
- package/src/components/DatePicker/index.ts +4 -0
- package/src/components/DatePicker/readme.md +106 -0
- package/src/components/DatePicker/types.ts +167 -0
- package/src/components/DatePicker/utils.ts +185 -0
- package/src/components/Dropdown/Dropdown.stories.tsx +358 -0
- package/src/components/Dropdown/Dropdown.tsx +352 -0
- package/src/components/Dropdown/index.ts +14 -0
- package/src/components/Dropdown/readme.md +151 -0
- package/src/components/EdgePanel/EdgePanel.stories.tsx +266 -0
- package/src/components/EdgePanel/EdgePanel.tsx +73 -0
- package/src/components/EdgePanel/index.ts +1 -0
- package/src/components/Form/Checkbox.stories.tsx +76 -0
- package/src/components/Form/Checkbox.tsx +69 -0
- package/src/components/Form/Form.stories.tsx +497 -0
- package/src/components/Form/Form.tsx +46 -0
- package/src/components/Form/FormGroup.stories.tsx +162 -0
- package/src/components/Form/FormGroup.tsx +53 -0
- package/src/components/Form/Input.stories.tsx +106 -0
- package/src/components/Form/Input.tsx +87 -0
- package/src/components/Form/Radio.stories.tsx +94 -0
- package/src/components/Form/Radio.tsx +65 -0
- package/src/components/Form/Select.stories.tsx +151 -0
- package/src/components/Form/Select.tsx +191 -0
- package/src/components/Form/Textarea.stories.tsx +123 -0
- package/src/components/Form/Textarea.tsx +78 -0
- package/src/components/Form/index.ts +7 -0
- package/src/components/Hero/Hero.stories.tsx +295 -0
- package/src/components/Hero/Hero.tsx +175 -0
- package/src/components/Hero/index.ts +6 -0
- package/src/components/Icon/Icon.tsx +87 -0
- package/src/components/Icon/index.ts +2 -0
- package/src/components/List/List.stories.tsx +122 -0
- package/src/components/List/List.tsx +35 -0
- package/src/components/List/ListGroup.tsx +35 -0
- package/src/components/List/index.ts +2 -0
- package/src/components/Messages/Messages.stories.tsx +160 -0
- package/src/components/Messages/Messages.tsx +172 -0
- package/src/components/Messages/index.ts +3 -0
- package/src/components/Modal/Modal.stories.tsx +284 -0
- package/src/components/Modal/Modal.tsx +198 -0
- package/src/components/Modal/README.md +169 -0
- package/src/components/Modal/index.ts +1 -0
- package/src/components/Navigation/Menu/MegaMenu.tsx +109 -0
- package/src/components/Navigation/Menu/Menu.stories.tsx +339 -0
- package/src/components/Navigation/Menu/Menu.tsx +111 -0
- package/src/components/Navigation/Nav/Nav.stories.tsx +456 -0
- package/src/components/Navigation/Nav/Nav.tsx +51 -0
- package/src/components/Navigation/Nav/NavDropdown.tsx +105 -0
- package/src/components/Navigation/Nav/NavItem.tsx +168 -0
- package/src/components/Navigation/Navbar/Navbar.stories.tsx +569 -0
- package/src/components/Navigation/Navbar/Navbar.tsx +150 -0
- package/src/components/Navigation/README.md +314 -0
- package/src/components/Navigation/SideMenu/SideMenu.README.md +494 -0
- package/src/components/Navigation/SideMenu/SideMenu.stories.tsx +609 -0
- package/src/components/Navigation/SideMenu/SideMenu.tsx +101 -0
- package/src/components/Navigation/SideMenu/SideMenuItem.tsx +103 -0
- package/src/components/Navigation/SideMenu/SideMenuList.tsx +41 -0
- package/src/components/Navigation/index.ts +23 -0
- package/src/components/Pagination/Pagination.stories.tsx +188 -0
- package/src/components/Pagination/Pagination.tsx +162 -0
- package/src/components/Pagination/index.ts +1 -0
- package/src/components/PhotoViewer/PhotoViewer.stories.tsx +397 -0
- package/src/components/PhotoViewer/PhotoViewer.tsx +246 -0
- package/src/components/PhotoViewer/PhotoViewerHeader.tsx +184 -0
- package/src/components/PhotoViewer/PhotoViewerImage.tsx +173 -0
- package/src/components/PhotoViewer/PhotoViewerInfo.tsx +91 -0
- package/src/components/PhotoViewer/PhotoViewerNavigation.tsx +85 -0
- package/src/components/PhotoViewer/PhotoViewerThumbnails.tsx +63 -0
- package/src/components/PhotoViewer/README.md +358 -0
- package/src/components/PhotoViewer/examples/ImageGallery.tsx +187 -0
- package/src/components/PhotoViewer/examples/SimpleGallery.tsx +73 -0
- package/src/components/PhotoViewer/examples/index.ts +2 -0
- package/src/components/PhotoViewer/index.ts +14 -0
- package/src/components/Popover/Popover.stories.tsx +143 -0
- package/src/components/Popover/Popover.tsx +137 -0
- package/src/components/Popover/index.ts +5 -0
- package/src/components/Popover/readme.md +120 -0
- package/src/components/ProductReview/ProductReview.stories.tsx +88 -0
- package/src/components/ProductReview/ProductReview.tsx +169 -0
- package/src/components/ProductReview/index.ts +3 -0
- package/src/components/Progress/Progress.stories.tsx +75 -0
- package/src/components/Progress/Progress.tsx +45 -0
- package/src/components/Progress/index.ts +1 -0
- package/src/components/Rating/Rating.stories.tsx +109 -0
- package/src/components/Rating/Rating.tsx +286 -0
- package/src/components/Rating/index.ts +6 -0
- package/src/components/River/River.stories.tsx +230 -0
- package/src/components/River/River.tsx +134 -0
- package/src/components/River/index.ts +2 -0
- package/src/components/SectionIntro/SectionIntro.stories.tsx +143 -0
- package/src/components/SectionIntro/SectionIntro.tsx +184 -0
- package/src/components/SectionIntro/index.ts +3 -0
- package/src/components/Slider/Slider.stories.tsx +241 -0
- package/src/components/Slider/Slider.tsx +225 -0
- package/src/components/Slider/index.ts +24 -0
- package/src/components/Spinner/Spinner.stories.tsx +65 -0
- package/src/components/Spinner/Spinner.tsx +36 -0
- package/src/components/Spinner/index.ts +2 -0
- package/src/components/Steps/Steps.stories.tsx +158 -0
- package/src/components/Steps/Steps.tsx +115 -0
- package/src/components/Steps/index.ts +3 -0
- package/src/components/Tab/Tab.stories.tsx +129 -0
- package/src/components/Tab/Tab.tsx +111 -0
- package/src/components/Tab/index.ts +2 -0
- package/src/components/Testimonial/Testimonial.stories.tsx +180 -0
- package/src/components/Testimonial/Testimonial.tsx +138 -0
- package/src/components/Testimonial/index.ts +3 -0
- package/src/components/Todo/Todo.stories.tsx +103 -0
- package/src/components/Todo/Todo.tsx +158 -0
- package/src/components/Todo/index.ts +1 -0
- package/src/components/Toggle/Toggle.stories.tsx +49 -0
- package/src/components/Toggle/Toggle.tsx +84 -0
- package/src/components/Toggle/index.ts +2 -0
- package/src/components/Tooltip/Tooltip.stories.tsx +115 -0
- package/src/components/Tooltip/Tooltip.tsx +150 -0
- package/src/components/Tooltip/index.ts +3 -0
- package/src/components/Upload/Upload.stories.tsx +220 -0
- package/src/components/Upload/Upload.tsx +354 -0
- package/src/components/Upload/index.ts +3 -0
- package/src/components/VideoPlayer/VideoPlayer.stories.tsx +484 -0
- package/src/components/VideoPlayer/VideoPlayer.tsx +574 -0
- package/src/components/VideoPlayer/index.ts +7 -0
- package/src/components/index.ts +111 -0
- package/src/layouts/Grid/Container.tsx +58 -0
- package/src/layouts/Grid/Grid.stories.tsx +861 -0
- package/src/layouts/Grid/Grid.tsx +68 -0
- package/src/layouts/Grid/GridCol.tsx +161 -0
- package/src/layouts/Grid/README.md +108 -0
- package/src/layouts/Grid/Row.tsx +70 -0
- package/src/layouts/Grid/index.ts +8 -0
- package/src/layouts/MasonryGrid/MasonryGrid.stories.tsx +387 -0
- package/src/layouts/MasonryGrid/MasonryGrid.tsx +408 -0
- package/src/layouts/MasonryGrid/MasonryGridItem.tsx +44 -0
- package/src/layouts/MasonryGrid/README.md +117 -0
- package/src/layouts/MasonryGrid/index.ts +4 -0
- package/src/layouts/index.ts +7 -0
- package/src/lib/README.md +89 -0
- package/src/lib/composables/index.ts +63 -0
- package/src/lib/composables/useAccordion.ts +129 -0
- package/src/lib/composables/useAmbientMode.ts +90 -0
- package/src/lib/composables/useBadge.ts +42 -0
- package/src/lib/composables/useBarChart.ts +365 -0
- package/src/lib/composables/useBlock.ts +56 -0
- package/src/lib/composables/useBreadcrumb.ts +81 -0
- package/src/lib/composables/useButton.ts +59 -0
- package/src/lib/composables/useCallout.ts +55 -0
- package/src/lib/composables/useCard.ts +155 -0
- package/src/lib/composables/useChart.ts +1082 -0
- package/src/lib/composables/useChartAnalytics.ts +505 -0
- package/src/lib/composables/useChartData.ts +38 -0
- package/src/lib/composables/useChartExport.ts +392 -0
- package/src/lib/composables/useChartInteraction.ts +34 -0
- package/src/lib/composables/useChartInteractions.ts +123 -0
- package/src/lib/composables/useChartPerformance.ts +323 -0
- package/src/lib/composables/useChartScale.ts +48 -0
- package/src/lib/composables/useChartToolbar.ts +532 -0
- package/src/lib/composables/useCheckbox.ts +70 -0
- package/src/lib/composables/useDataTable.ts +208 -0
- package/src/lib/composables/useDatePicker.ts +564 -0
- package/src/lib/composables/useDropdown.ts +272 -0
- package/src/lib/composables/useEdgePanel.ts +261 -0
- package/src/lib/composables/useForm.ts +62 -0
- package/src/lib/composables/useFormGroup.ts +51 -0
- package/src/lib/composables/useHero.ts +250 -0
- package/src/lib/composables/useInput.ts +58 -0
- package/src/lib/composables/useLineChart.ts +319 -0
- package/src/lib/composables/useMessages.ts +77 -0
- package/src/lib/composables/useModal.ts +110 -0
- package/src/lib/composables/useNavbar.ts +288 -0
- package/src/lib/composables/usePagination.ts +101 -0
- package/src/lib/composables/usePhotoViewer.ts +937 -0
- package/src/lib/composables/usePieChart.ts +362 -0
- package/src/lib/composables/usePopover.ts +354 -0
- package/src/lib/composables/useProgress.ts +74 -0
- package/src/lib/composables/useRadio.ts +47 -0
- package/src/lib/composables/useRating.ts +174 -0
- package/src/lib/composables/useRiver.ts +205 -0
- package/src/lib/composables/useSelect.ts +52 -0
- package/src/lib/composables/useSideMenu.ts +197 -0
- package/src/lib/composables/useSlider.ts +339 -0
- package/src/lib/composables/useSpinner.ts +42 -0
- package/src/lib/composables/useTextarea.ts +55 -0
- package/src/lib/composables/useTodo.ts +141 -0
- package/src/lib/composables/useVideoPlayer.ts +398 -0
- package/src/lib/constants/components.ts +1433 -0
- package/src/lib/constants/index.ts +4 -0
- package/src/lib/index.ts +11 -0
- package/src/lib/types/components.ts +4750 -0
- package/src/lib/types/index.ts +2 -0
- package/src/lib/utils/dom.ts +41 -0
- package/src/lib/utils/icons.ts +74 -0
- package/src/lib/utils/index.ts +55 -0
- package/src/lib/utils/useForkRef.test.tsx +64 -0
- package/src/lib/utils/useForkRef.ts +36 -0
- package/src/lib/utils.test.ts +14 -0
- package/src/styles/01-settings/_index.scss +2 -0
- package/src/styles/01-settings/_settings.accordion.scss +7 -5
- package/src/styles/01-settings/_settings.animations.scss +0 -0
- package/src/styles/01-settings/_settings.avatar-group.scss +6 -3
- package/src/styles/01-settings/_settings.avatar.scss +2 -2
- package/src/styles/01-settings/_settings.badge.scss +15 -9
- package/src/styles/01-settings/_settings.block.scss +11 -0
- package/src/styles/01-settings/_settings.border-radius.scss +12 -9
- package/src/styles/01-settings/_settings.border.scss +4 -1
- package/src/styles/01-settings/_settings.box-shadow.scss +1 -1
- package/src/styles/01-settings/_settings.breadcrumb.scss +9 -8
- package/src/styles/01-settings/_settings.breakpoints.scss +0 -0
- package/src/styles/01-settings/_settings.btn-group.scss +4 -1
- package/src/styles/01-settings/_settings.button.scss +19 -21
- package/src/styles/01-settings/_settings.callout.scss +42 -24
- package/src/styles/01-settings/_settings.card.scss +12 -10
- package/src/styles/01-settings/_settings.chart.scss +199 -0
- package/src/styles/01-settings/_settings.checkbox-group.scss +0 -0
- package/src/styles/01-settings/_settings.checkbox.scss +0 -0
- package/src/styles/01-settings/_settings.color-mode.scss +0 -0
- package/src/styles/01-settings/_settings.colors.scss +20 -0
- package/src/styles/01-settings/_settings.config.scss +1 -1
- package/src/styles/01-settings/_settings.countdown.scss +0 -0
- package/src/styles/01-settings/_settings.data-table.scss +0 -0
- package/src/styles/01-settings/_settings.datepicker.scss +0 -0
- package/src/styles/01-settings/_settings.dropdown.scss +0 -0
- package/src/styles/01-settings/_settings.edge-panel.scss +0 -0
- package/src/styles/01-settings/_settings.fonts.scss +1 -1
- package/src/styles/01-settings/_settings.form-group.scss +0 -0
- package/src/styles/01-settings/_settings.form.scss +0 -0
- package/src/styles/01-settings/_settings.grid.scss +3 -3
- package/src/styles/01-settings/_settings.hero.scss +1 -1
- package/src/styles/01-settings/_settings.input.scss +1 -1
- package/src/styles/01-settings/_settings.link.scss +0 -0
- package/src/styles/01-settings/_settings.list-group.scss +0 -0
- package/src/styles/01-settings/_settings.list.scss +0 -0
- package/src/styles/01-settings/_settings.maps.scss +43 -8
- package/src/styles/01-settings/_settings.masonry-grid.scss +0 -0
- package/src/styles/01-settings/_settings.menu.scss +0 -0
- package/src/styles/01-settings/_settings.messages.scss +0 -0
- package/src/styles/01-settings/_settings.modal.scss +1 -1
- package/src/styles/01-settings/_settings.nav.scss +0 -0
- package/src/styles/01-settings/_settings.navbar.scss +0 -0
- package/src/styles/01-settings/_settings.pagination.scss +0 -0
- package/src/styles/01-settings/_settings.photoviewer.scss +89 -23
- package/src/styles/01-settings/_settings.popover.scss +0 -0
- package/src/styles/01-settings/_settings.position.scss +0 -0
- package/src/styles/01-settings/_settings.progress.scss +0 -0
- package/src/styles/01-settings/_settings.rating.scss +0 -0
- package/src/styles/01-settings/_settings.river.scss +0 -0
- package/src/styles/01-settings/_settings.sectionintro.scss +0 -0
- package/src/styles/01-settings/_settings.select.scss +0 -0
- package/src/styles/01-settings/_settings.side-menu.scss +0 -0
- package/src/styles/01-settings/_settings.skeleton.scss +0 -0
- package/src/styles/01-settings/_settings.slider.scss +59 -0
- package/src/styles/01-settings/_settings.spacing.scss +11 -3
- package/src/styles/01-settings/_settings.spinner.scss +0 -0
- package/src/styles/01-settings/_settings.steps.scss +1 -1
- package/src/styles/01-settings/_settings.tabs.scss +4 -4
- package/src/styles/01-settings/_settings.testimonials.scss +0 -0
- package/src/styles/01-settings/_settings.todo.scss +0 -0
- package/src/styles/01-settings/_settings.toggle.scss +1 -1
- package/src/styles/01-settings/_settings.tooltip.scss +0 -0
- package/src/styles/01-settings/_settings.typography.scss +2 -0
- package/src/styles/01-settings/_settings.upload.scss +0 -0
- package/src/styles/01-settings/_settings.video-player.scss +64 -0
- package/src/styles/01-settings/_settings.z-layers.scss +0 -0
- package/src/styles/02-tools/_index.scss +1 -0
- package/src/styles/02-tools/_tools.animations.scss +82 -0
- package/src/styles/02-tools/_tools.border-radius.scss +0 -0
- package/src/styles/02-tools/_tools.breakpoints.scss +0 -0
- package/src/styles/02-tools/_tools.button.scss +5 -0
- package/src/styles/02-tools/_tools.clearfix.scss +0 -0
- package/src/styles/02-tools/_tools.color-functions.scss +0 -0
- package/src/styles/02-tools/_tools.color-mode.scss +1 -1
- package/src/styles/02-tools/_tools.component.scss +479 -0
- package/src/styles/02-tools/_tools.event.scss +0 -0
- package/src/styles/02-tools/_tools.grid.scss +0 -0
- package/src/styles/02-tools/_tools.hidden-visually.scss +0 -0
- package/src/styles/02-tools/_tools.hidden.scss +0 -0
- package/src/styles/02-tools/_tools.map-loop.scss +0 -0
- package/src/styles/02-tools/_tools.media-queries.scss +0 -0
- package/src/styles/02-tools/_tools.object-fit.scss +0 -0
- package/src/styles/02-tools/_tools.placeholder.scss +0 -0
- package/src/styles/02-tools/_tools.rem.scss +5 -1
- package/src/styles/02-tools/_tools.size.scss +0 -0
- package/src/styles/02-tools/_tools.spacing.scss +0 -0
- package/src/styles/02-tools/_tools.to-rgb.scss +0 -0
- package/src/styles/02-tools/_tools.transition.scss +0 -0
- package/src/styles/02-tools/_tools.utilities.scss +0 -0
- package/src/styles/02-tools/_tools.utility-api.scss +23 -2
- package/src/styles/03-generic/_generic.fonts.scss +0 -0
- package/src/styles/03-generic/_generic.reset.scss +0 -0
- package/src/styles/03-generic/_generic.root.scss +5 -1
- package/src/styles/03-generic/_generic.selection.scss +0 -0
- package/src/styles/03-generic/_index.scss +0 -0
- package/src/styles/04-elements/_elements.all.scss +0 -0
- package/src/styles/04-elements/_elements.body.scss +0 -0
- package/src/styles/04-elements/_elements.heading.scss +0 -0
- package/src/styles/04-elements/_elements.html.scss +0 -0
- package/src/styles/04-elements/_elements.links.scss +0 -0
- package/src/styles/04-elements/_index.scss +0 -0
- package/src/styles/05-objects/_index.scss +1 -0
- package/src/styles/05-objects/_objects.block.scss +122 -0
- package/src/styles/05-objects/_objects.container.scss +14 -10
- package/src/styles/05-objects/_objects.grid.scss +0 -0
- package/src/styles/05-objects/_objects.masonry-grid.scss +0 -0
- package/src/styles/06-components/_components.accordion.scss +3 -1
- package/src/styles/06-components/_components.avatar-group.scss +0 -0
- package/src/styles/06-components/_components.avatar.scss +0 -0
- package/src/styles/06-components/_components.badge.scss +9 -9
- package/src/styles/06-components/_components.breadcrumb.scss +0 -0
- package/src/styles/06-components/_components.btn-group.scss +0 -0
- package/src/styles/06-components/_components.button.scss +0 -0
- package/src/styles/06-components/_components.callout.scss +2 -1
- package/src/styles/06-components/_components.card.scss +0 -1
- package/src/styles/06-components/_components.chart.scss +2102 -0
- package/src/styles/06-components/_components.checkbox-group.scss +0 -0
- package/src/styles/06-components/_components.checkbox.scss +0 -0
- package/src/styles/06-components/_components.color-mode-toggle.scss +0 -0
- package/src/styles/06-components/_components.countdown.scss +0 -0
- package/src/styles/06-components/_components.data-table.scss +0 -0
- package/src/styles/06-components/_components.datepicker.scss +0 -0
- package/src/styles/06-components/_components.dropdown.scss +0 -0
- package/src/styles/06-components/_components.edge-panel.scss +0 -0
- package/src/styles/06-components/_components.form-group.scss +0 -0
- package/src/styles/06-components/_components.form.scss +0 -0
- package/src/styles/06-components/_components.hero.scss +1 -0
- package/src/styles/06-components/_components.icon.scss +2 -2
- package/src/styles/06-components/_components.image-gallery.scss +0 -0
- package/src/styles/06-components/_components.input.scss +0 -0
- package/src/styles/06-components/_components.list-group.scss +0 -0
- package/src/styles/06-components/_components.list.scss +0 -0
- package/src/styles/06-components/_components.menu.scss +0 -0
- package/src/styles/06-components/_components.messages.scss +0 -0
- package/src/styles/06-components/_components.modal.scss +3 -0
- package/src/styles/06-components/_components.nav.scss +0 -0
- package/src/styles/06-components/_components.navbar.scss +0 -0
- package/src/styles/06-components/_components.pagination.scss +0 -0
- package/src/styles/06-components/_components.photoviewer.scss +603 -545
- package/src/styles/06-components/_components.popover.scss +0 -0
- package/src/styles/06-components/_components.product-review.scss +0 -0
- package/src/styles/06-components/_components.progress.scss +0 -0
- package/src/styles/06-components/_components.rating.scss +0 -0
- package/src/styles/06-components/_components.river.scss +0 -0
- package/src/styles/06-components/_components.sectionintro.scss +0 -0
- package/src/styles/06-components/_components.select.scss +0 -0
- package/src/styles/06-components/_components.side-menu.scss +0 -0
- package/src/styles/06-components/_components.skeleton.scss +0 -0
- package/src/styles/06-components/_components.slider.scss +273 -0
- package/src/styles/06-components/_components.spinner.scss +0 -0
- package/src/styles/06-components/_components.steps.scss +1 -0
- package/src/styles/06-components/_components.tabs.scss +0 -0
- package/src/styles/06-components/_components.testimonials.scss +0 -0
- package/src/styles/06-components/_components.todo.scss +0 -0
- package/src/styles/06-components/_components.toggle.scss +0 -0
- package/src/styles/06-components/_components.tooltip.scss +4 -9
- package/src/styles/06-components/_components.upload.scss +0 -0
- package/src/styles/06-components/_components.video-player.scss +623 -0
- package/src/styles/06-components/_index.scss +3 -0
- package/src/styles/06-components/old.chart.styles.scss +2819 -0
- package/src/styles/99-utilities/_index.scss +0 -0
- package/src/styles/99-utilities/_utilities.background.scss +0 -0
- package/src/styles/99-utilities/_utilities.border.scss +0 -0
- package/src/styles/99-utilities/_utilities.clearfix.scss +0 -0
- package/src/styles/99-utilities/_utilities.display.scss +0 -0
- package/src/styles/99-utilities/_utilities.flex.scss +0 -0
- package/src/styles/99-utilities/_utilities.link.scss +0 -0
- package/src/styles/99-utilities/_utilities.object-fit.scss +0 -0
- package/src/styles/99-utilities/_utilities.opacity.scss +0 -0
- package/src/styles/99-utilities/_utilities.overflow.scss +0 -0
- package/src/styles/99-utilities/_utilities.position.scss +0 -0
- package/src/styles/99-utilities/_utilities.scss +2 -1
- package/src/styles/99-utilities/_utilities.shadow.scss +0 -0
- package/src/styles/99-utilities/_utilities.sizes.scss +0 -0
- package/src/styles/99-utilities/_utilities.spacing.scss +0 -0
- package/src/styles/99-utilities/_utilities.text.scss +5 -0
- package/src/styles/99-utilities/_utilities.visibility.scss +0 -0
- package/src/styles/99-utilities/_utilities.visually-hidden.scss +0 -0
- package/src/styles/99-utilities/_utilities.z-index.scss +0 -0
- package/src/styles/css-modules.d.ts +0 -0
- package/src/styles/index.scss +0 -0
- package/dist/index.css +0 -15
- package/dist/index.esm.css +0 -15
- package/dist/index.min.css +0 -15
|
@@ -1,35 +1,101 @@
|
|
|
1
|
-
// src/styles/01-settings/_settings.photoviewer.scss
|
|
2
|
-
|
|
3
1
|
@use 'settings.config' as config;
|
|
2
|
+
@use 'settings.colors' as *;
|
|
3
|
+
@use 'settings.border-radius' as *;
|
|
4
|
+
@use 'settings.box-shadow' as *;
|
|
5
|
+
@use 'settings.typography' as *;
|
|
6
|
+
// Component spacing and layout
|
|
7
|
+
$photoviewer-component-spacing: 1.5rem !default;
|
|
8
|
+
$photoviewer-component-border-color: var(--#{config.$prefix}primary-border-subtle) !default;
|
|
9
|
+
$photoviewer-component-background-color: var(--#{config.$prefix}body-bg) !default;
|
|
10
|
+
$component-background-color: var(--#{config.$prefix}body-bg) !default;
|
|
4
11
|
|
|
5
|
-
//
|
|
6
|
-
$
|
|
7
|
-
$
|
|
8
|
-
$
|
|
9
|
-
|
|
10
|
-
// Modal specific variables
|
|
11
|
-
$modal-background-color: var(--#{config.$prefix}gradient) !default;
|
|
12
|
-
$modal-close-button-color: #fff !default;
|
|
12
|
+
// Modal/backdrop variables
|
|
13
|
+
$photoviewer-modal-background-color: rgba($gray-9, 0.8) !default;
|
|
14
|
+
$photoviewer-modal-backdrop-blur: 12px !default;
|
|
15
|
+
$photoviewer-modal-close-button-color: var(--#{config.$prefix}body-color) !default;
|
|
13
16
|
|
|
14
17
|
// Panel variables
|
|
15
|
-
$info-panel-width: 320px !default;
|
|
16
|
-
$info-panel-background: var(--#{config.$prefix}
|
|
18
|
+
$photoviewer-info-panel-width: 320px !default;
|
|
19
|
+
$photoviewer-info-panel-background: var(--#{config.$prefix}body-bg) !default;
|
|
20
|
+
$photoviewer-info-panel-border-color: var(--#{config.$prefix}primary-border-subtle) !default;
|
|
21
|
+
$photoviewer-info-panel-shadow: $box-shadow-lg !default;
|
|
17
22
|
|
|
18
23
|
// Thumbnail variables
|
|
19
|
-
$thumbnail-active-border-color: var(--#{config.$prefix}
|
|
20
|
-
$thumbnail-size:
|
|
21
|
-
$thumbnail-size-large:
|
|
22
|
-
$thumbnail-gap: 0.
|
|
24
|
+
$photoviewer-thumbnail-active-border-color: var(--#{config.$prefix}primary) !default;
|
|
25
|
+
$photoviewer-thumbnail-size: 64px !default;
|
|
26
|
+
$photoviewer-thumbnail-size-large: 80px !default;
|
|
27
|
+
$photoviewer-thumbnail-gap: 0.75rem !default;
|
|
28
|
+
$photoviewer-thumbnail-border-radius: $border-radius !default;
|
|
29
|
+
$photoviewer-thumbnail-shadow: $box-shadow-sm !default;
|
|
30
|
+
$photoviewer-thumbnail-hover-shadow: $box-shadow-md !default;
|
|
23
31
|
|
|
24
32
|
// Animation variables
|
|
25
33
|
$photoviewer-transition-duration: 0.3s !default;
|
|
26
34
|
$photoviewer-transition-timing: cubic-bezier(0.4, 0, 0.2, 1) !default;
|
|
35
|
+
$photoviewer-fast-transition: 0.15s !default;
|
|
27
36
|
|
|
28
37
|
// Control variables
|
|
29
|
-
$control-size: 2.75rem !default;
|
|
30
|
-
$control-size-small: 2.25rem !default;
|
|
31
|
-
$control-border-radius:
|
|
32
|
-
$control-background:
|
|
33
|
-
$control-background-hover: var(--#{config.$prefix}
|
|
34
|
-
$control-color: var(--#{config.$prefix}
|
|
35
|
-
$control-color-hover: var(--#{config.$prefix}
|
|
38
|
+
$photoviewer-control-size: 2.75rem !default;
|
|
39
|
+
$photoviewer-control-size-small: 2.25rem !default;
|
|
40
|
+
$photoviewer-control-border-radius: $border-radius-pill !default;
|
|
41
|
+
$photoviewer-control-background: var(--#{config.$prefix}body-bg) !default;
|
|
42
|
+
$photoviewer-control-background-hover: var(--#{config.$prefix}secondary-bg-subtle) !default;
|
|
43
|
+
$photoviewer-control-color: var(--#{config.$prefix}body-color) !default;
|
|
44
|
+
$photoviewer-control-color-hover: var(--#{config.$prefix}primary) !default;
|
|
45
|
+
$photoviewer-control-border-color: var(--#{config.$prefix}primary-border-subtle) !default;
|
|
46
|
+
$photoviewer-control-shadow: $box-shadow-sm !default;
|
|
47
|
+
$photoviewer-control-shadow-hover: $box-shadow-md !default;
|
|
48
|
+
|
|
49
|
+
// Header variables
|
|
50
|
+
$photoviewer-header-height: 4rem !default;
|
|
51
|
+
$photoviewer-header-padding: 1rem !default;
|
|
52
|
+
$photoviewer-header-background: var(--#{config.$prefix}body-bg) !default;
|
|
53
|
+
$photoviewer-header-border-color: var(--#{config.$prefix}primary-border-subtle) !default;
|
|
54
|
+
$photoviewer-header-shadow: $box-shadow-xs !default;
|
|
55
|
+
|
|
56
|
+
// Navigation variables
|
|
57
|
+
$photoviewer-nav-button-size: 3rem !default;
|
|
58
|
+
$photoviewer-nav-button-background: var(--#{config.$prefix}body-bg) !default;
|
|
59
|
+
$photoviewer-nav-button-color: var(--#{config.$prefix}body-color) !default;
|
|
60
|
+
$photoviewer-nav-button-hover-background: var(--#{config.$prefix}secondary-bg-subtle) !default;
|
|
61
|
+
$photoviewer-nav-button-hover-color: var(--#{config.$prefix}primary) !default;
|
|
62
|
+
$photoviewer-nav-button-shadow: $box-shadow-sm !default;
|
|
63
|
+
$photoviewer-nav-button-hover-shadow: $box-shadow-md !default;
|
|
64
|
+
|
|
65
|
+
// Counter badge variables
|
|
66
|
+
$photoviewer-counter-badge-background: var(--#{config.$prefix}primary) !default;
|
|
67
|
+
$photoviewer-counter-badge-color: var(--#{config.$prefix}white) !default;
|
|
68
|
+
$photoviewer-counter-badge-font-size: $font-size-sm !default;
|
|
69
|
+
$photoviewer-counter-badge-font-weight: $font-weight-medium !default;
|
|
70
|
+
$photoviewer-counter-badge-padding: 0.25rem 0.75rem !default;
|
|
71
|
+
$photoviewer-counter-badge-border-radius: $border-radius-pill !default;
|
|
72
|
+
|
|
73
|
+
// Image container variables
|
|
74
|
+
$photoviewer-image-container-background: var(--#{config.$prefix}body-bg) !default;
|
|
75
|
+
$photoviewer-image-container-border-radius: $border-radius-lg !default;
|
|
76
|
+
|
|
77
|
+
// Info panel content variables
|
|
78
|
+
$photoviewer-info-title-font-size: $font-size-lg !default;
|
|
79
|
+
$photoviewer-info-title-font-weight: $font-weight-semibold !default;
|
|
80
|
+
$photoviewer-info-title-color: var(--#{config.$prefix}body-color) !default;
|
|
81
|
+
$photoviewer-info-description-font-size: $font-size-base !default;
|
|
82
|
+
$photoviewer-info-description-color: var(--#{config.$prefix}secondary-text-emphasis) !default;
|
|
83
|
+
$photoviewer-info-meta-font-size: $font-size-sm !default;
|
|
84
|
+
$photoviewer-info-meta-color: var(--#{config.$prefix}tertiary-text-emphasis) !default;
|
|
85
|
+
$photoviewer-info-spacing: 1rem !default;
|
|
86
|
+
|
|
87
|
+
// Tag variables
|
|
88
|
+
$photoviewer-tag-background: var(--#{config.$prefix}secondary-bg-subtle) !default;
|
|
89
|
+
$photoviewer-tag-color: var(--#{config.$prefix}secondary-text-emphasis) !default;
|
|
90
|
+
$photoviewer-tag-hover-background: var(--#{config.$prefix}primary-bg-subtle) !default;
|
|
91
|
+
$photoviewer-tag-hover-color: var(--#{config.$prefix}primary) !default;
|
|
92
|
+
$photoviewer-tag-font-size: $font-size-xs !default;
|
|
93
|
+
$photoviewer-tag-font-weight: $font-weight-medium !default;
|
|
94
|
+
$photoviewer-tag-padding: 0.25rem 0.5rem !default;
|
|
95
|
+
$photoviewer-tag-border-radius: $border-radius-sm !default;
|
|
96
|
+
|
|
97
|
+
// Dark mode support
|
|
98
|
+
$photoviewer-component-background-color-dark: var(--#{config.$prefix}body-bg) !default;
|
|
99
|
+
$photoviewer-modal-background-color-dark: rgba($gray-1, 0.8) !default;
|
|
100
|
+
$photoviewer-control-background-dark: var(--#{config.$prefix}body-bg) !default;
|
|
101
|
+
$photoviewer-control-color-dark: var(--#{config.$prefix}body-color) !default;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
@use 'settings.config' as *;
|
|
2
|
+
@use 'settings.colors' as *;
|
|
3
|
+
@use 'settings.border-radius' as *;
|
|
4
|
+
@use 'settings.spacing' as *;
|
|
5
|
+
@use 'sass:map';
|
|
6
|
+
|
|
7
|
+
// ============================================================================
|
|
8
|
+
// SLIDER SETTINGS
|
|
9
|
+
// ============================================================================
|
|
10
|
+
|
|
11
|
+
// Base configuration
|
|
12
|
+
$slider-height: 300px !default;
|
|
13
|
+
$slider-width: 100% !default;
|
|
14
|
+
$slider-speed: 300ms !default;
|
|
15
|
+
$slider-easing: cubic-bezier(0.4, 0, 0.2, 1) !default;
|
|
16
|
+
|
|
17
|
+
// Navigation
|
|
18
|
+
$slider-nav-size: map.get($spacing-sizes, 11) !default; // 44px
|
|
19
|
+
$slider-nav-size-mobile: map.get($spacing-sizes, 9) !default; // 36px
|
|
20
|
+
$slider-nav-offset: map.get($spacing-sizes, 4) !default; // 16px
|
|
21
|
+
$slider-nav-offset-mobile: map.get($spacing-sizes, 2) !default; // 8px
|
|
22
|
+
$slider-nav-background: var(--#{$prefix}primary-bg-subtle) !default;
|
|
23
|
+
$slider-nav-background-hover: var(--#{$prefix}secondary-bg-subtle) !default;
|
|
24
|
+
$slider-nav-color: var(--#{$prefix}primary-text) !default;
|
|
25
|
+
$slider-nav-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !default;
|
|
26
|
+
$slider-nav-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.2) !default;
|
|
27
|
+
$slider-nav-border-radius: $border-radius-pill !default;
|
|
28
|
+
|
|
29
|
+
// Pagination
|
|
30
|
+
$slider-pagination-offset: map.get($spacing-sizes, 4) !default; // 16px
|
|
31
|
+
$slider-pagination-offset-mobile: map.get($spacing-sizes, 3) !default; // 12px
|
|
32
|
+
$slider-pagination-bullet-size: map.get($spacing-sizes, 2) !default; // 8px
|
|
33
|
+
$slider-pagination-bullet-gap: map.get($spacing-sizes, 2) !default; // 8px
|
|
34
|
+
$slider-pagination-bullet-background: var(--#{$prefix}tertiary-bg-subtle) !default;
|
|
35
|
+
$slider-pagination-bullet-background-active: var(--#{$prefix}primary) !default;
|
|
36
|
+
$slider-pagination-bullet-background-hover: var(--#{$prefix}secondary-bg-subtle) !default;
|
|
37
|
+
$slider-pagination-bullet-border-radius: $border-radius-pill !default;
|
|
38
|
+
|
|
39
|
+
// Slide content
|
|
40
|
+
$slider-content-padding: map.get($spacing-sizes, 4) !default; // 16px
|
|
41
|
+
$slider-content-padding-mobile: map.get($spacing-sizes, 3) !default; // 12px
|
|
42
|
+
$slider-content-background: linear-gradient(transparent, rgba(0, 0, 0, 0.7)) !default;
|
|
43
|
+
$slider-content-color: var(--#{$prefix}light-text) !default;
|
|
44
|
+
|
|
45
|
+
// Empty state
|
|
46
|
+
$slider-empty-background: var(--#{$prefix}secondary-bg-subtle) !default;
|
|
47
|
+
$slider-empty-border: 2px dashed var(--#{$prefix}primary-border-subtle) !default;
|
|
48
|
+
$slider-empty-message-color: var(--#{$prefix}tertiary-text) !default;
|
|
49
|
+
$slider-empty-border-radius: $border-radius-md !default;
|
|
50
|
+
|
|
51
|
+
// Transitions
|
|
52
|
+
$slider-transition: all 0.2s $slider-easing !default;
|
|
53
|
+
$slider-nav-transition: all 0.2s $slider-easing !default;
|
|
54
|
+
$slider-pagination-transition: all 0.2s $slider-easing !default;
|
|
55
|
+
|
|
56
|
+
// Z-index layers
|
|
57
|
+
$slider-z-index-base: 1 !default;
|
|
58
|
+
$slider-z-index-slide-active: 2 !default;
|
|
59
|
+
$slider-z-index-controls: 10 !default;
|
|
@@ -5,10 +5,16 @@ $spacing-sizes: (
|
|
|
5
5
|
//00px
|
|
6
6
|
1: 0.25rem,
|
|
7
7
|
//04px
|
|
8
|
+
1.5: 0.375rem,
|
|
9
|
+
//6px
|
|
8
10
|
2: 0.5rem,
|
|
9
11
|
//08px
|
|
12
|
+
2.5: 0.625rem,
|
|
13
|
+
//10px
|
|
10
14
|
3: 0.75rem,
|
|
11
15
|
//12px
|
|
16
|
+
3.5: 0.875rem,
|
|
17
|
+
//14px
|
|
12
18
|
4: 1rem,
|
|
13
19
|
//16px
|
|
14
20
|
5: 1.25rem,
|
|
@@ -59,10 +65,12 @@ $spacing-sizes: (
|
|
|
59
65
|
//288px
|
|
60
66
|
80: 20rem,
|
|
61
67
|
//320px
|
|
62
|
-
90: 22.5rem,
|
|
68
|
+
90: 22.5rem,
|
|
69
|
+
//360px
|
|
70
|
+
200: 50rem, //800px
|
|
63
71
|
) !default;
|
|
64
72
|
|
|
65
|
-
$spacing-important:
|
|
66
|
-
$enable-negative-margins: false;
|
|
73
|
+
$spacing-important: false !default;
|
|
74
|
+
$enable-negative-margins: false !default;
|
|
67
75
|
|
|
68
76
|
$negative-spacers: if($enable-negative-margins, negativify-map($spacing-sizes), null) !default;
|
|
File without changes
|
|
@@ -14,7 +14,7 @@ $steps-item-number-color: $steps-item-color !default;
|
|
|
14
14
|
$steps-item-number-active-color: var(--#{config.$prefix}gray-1) !default;
|
|
15
15
|
$steps-item-number-size: 28px !default;
|
|
16
16
|
$steps-item-number-font-size: typography.$font-size-sm !default;
|
|
17
|
-
$steps-item-number-border-radius: border-radius.$border-radius-pill;
|
|
17
|
+
$steps-item-number-border-radius: border-radius.$border-radius-pill !default;
|
|
18
18
|
$steps-item-font-size: typography.$font-size-sm !default;
|
|
19
19
|
$steps-item-content-gap: 8px !default;
|
|
20
20
|
|
|
@@ -11,10 +11,10 @@ $tabs-nav-btn-font-weight: typography.$font-weight-medium !default;
|
|
|
11
11
|
$tabs-nav-btn-color: var(--#{config.$prefix}tertiary-text-emphasis) !default;
|
|
12
12
|
$tabs-nav-btn-active-color: var(--#{config.$prefix}body-color) !default;
|
|
13
13
|
$tabs-nav-btn-disabled-color: var(--#{config.$prefix}disabled-text-emphasis) !default;
|
|
14
|
-
$tabs-nav-btn-bg: var(--#{config.$prefix}body-bg);
|
|
15
|
-
$tabs-nav-btn-bg-hover: var(--#{config.$prefix}secondary-bg-subtle);
|
|
16
|
-
$tabs-nav-btn-bg-active: var(--#{config.$prefix}body-bg);
|
|
17
|
-
$tabs-nav-btn-bg-disabled: var(--#{config.$prefix}body-bg);
|
|
14
|
+
$tabs-nav-btn-bg: var(--#{config.$prefix}body-bg) !default;
|
|
15
|
+
$tabs-nav-btn-bg-hover: var(--#{config.$prefix}secondary-bg-subtle) !default;
|
|
16
|
+
$tabs-nav-btn-bg-active: var(--#{config.$prefix}body-bg) !default;
|
|
17
|
+
$tabs-nav-btn-bg-disabled: var(--#{config.$prefix}body-bg) !default;
|
|
18
18
|
$tabs-nav-btn-border-radius: 0px !default;
|
|
19
19
|
$tabs-nav-btn-border-width: 2px !default;
|
|
20
20
|
$tabs-nav-btn-border-color: transparent !default;
|
|
File without changes
|
|
File without changes
|
|
@@ -31,4 +31,4 @@ $toggle-switch-handle-width: $toggle-switch-handle-width-md !default;
|
|
|
31
31
|
$toggle-switch-handle-height: $toggle-switch-handle-height-md !default;
|
|
32
32
|
|
|
33
33
|
$toggle-label-font-size: typography.$font-size-base !default;
|
|
34
|
-
$toggle-label-color: var(--#{config.$prefix}primary-text-emphasis);
|
|
34
|
+
$toggle-label-color: var(--#{config.$prefix}primary-text-emphasis) !default;
|
|
File without changes
|
|
@@ -49,6 +49,8 @@ $font-size-xs: $font-size-base * 0.75 !default; //12px
|
|
|
49
49
|
$font-size-sm: $font-size-base * 0.875 !default; //14px
|
|
50
50
|
$font-size-md: $font-size-base * 1.125 !default; //18px
|
|
51
51
|
$font-size-lg: $font-size-base * 1.25 !default; //20px
|
|
52
|
+
$font-size-xl: $font-size-base * 1.5 !default; //20px
|
|
53
|
+
$font-size-2xl: $font-size-base * 2 !default; //20px
|
|
52
54
|
|
|
53
55
|
$h1-font-size: $font-size-base * 2.5 !default; //40px
|
|
54
56
|
$h2-font-size: $font-size-base * 2 !default; //32px
|
|
File without changes
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
// ============================================================================
|
|
2
|
+
// VIDEO PLAYER SETTINGS
|
|
3
|
+
// ============================================================================
|
|
4
|
+
|
|
5
|
+
// Video Player Colors
|
|
6
|
+
$video-player-bg: #000 !default;
|
|
7
|
+
$video-player-controls-bg: linear-gradient(transparent, rgba(0, 0, 0, 0.8)) !default;
|
|
8
|
+
$video-player-progress-bg: rgba(255, 255, 255, 0.3) !default;
|
|
9
|
+
$video-player-progress-buffered: rgba(255, 255, 255, 0.5) !default;
|
|
10
|
+
$video-player-progress-played: var(--atomix-color-primary) !default;
|
|
11
|
+
$video-player-button-hover: rgba(255, 255, 255, 0.2) !default;
|
|
12
|
+
$video-player-settings-bg: rgba(0, 0, 0, 0.9) !default;
|
|
13
|
+
|
|
14
|
+
// Video Player Dimensions
|
|
15
|
+
$video-player-border-radius: 8px !default;
|
|
16
|
+
$video-player-controls-padding: 20px 16px 16px !default;
|
|
17
|
+
$video-player-progress-height: 4px !default;
|
|
18
|
+
$video-player-progress-height-hover: 6px !default;
|
|
19
|
+
$video-player-button-size: 40px !default;
|
|
20
|
+
$video-player-button-size-mobile: 36px !default;
|
|
21
|
+
$video-player-button-size-fullscreen: 48px !default;
|
|
22
|
+
$video-player-volume-width: 80px !default;
|
|
23
|
+
$video-player-volume-width-mobile: 60px !default;
|
|
24
|
+
$video-player-volume-height: 4px !default;
|
|
25
|
+
$video-player-volume-height-hover: 6px !default;
|
|
26
|
+
$video-player-volume-thumb-size: 12px !default;
|
|
27
|
+
$video-player-volume-bg: rgba(255, 255, 255, 0.3) !default;
|
|
28
|
+
$video-player-volume-bg-hover: rgba(255, 255, 255, 0.5) !default;
|
|
29
|
+
$video-player-volume-fill: var(--atomix-color-primary) !default;
|
|
30
|
+
$video-player-volume-fill-hover: var(--atomix-color-primary-light) !default;
|
|
31
|
+
$video-player-volume-fill-active: var(--atomix-color-primary-dark) !default;
|
|
32
|
+
|
|
33
|
+
// Video Player Typography
|
|
34
|
+
$video-player-font-size: 14px !default;
|
|
35
|
+
$video-player-font-size-mobile: 12px !default;
|
|
36
|
+
$video-player-font-size-fullscreen: 16px !default;
|
|
37
|
+
$video-player-font-weight: 500 !default;
|
|
38
|
+
|
|
39
|
+
// Video Player Transitions
|
|
40
|
+
$video-player-transition: all 0.3s ease !default;
|
|
41
|
+
$video-player-transition-fast: all 0.2s ease !default;
|
|
42
|
+
$video-player-transition-progress: width 0.1s ease !default;
|
|
43
|
+
|
|
44
|
+
// Video Player Subtitles
|
|
45
|
+
$video-player-subtitle-bg: rgba(0, 0, 0, 0.85) !default;
|
|
46
|
+
$video-player-subtitle-color: #ffffff !default;
|
|
47
|
+
$video-player-subtitle-font-size: 18px !default;
|
|
48
|
+
$video-player-subtitle-font-size-mobile: 16px !default;
|
|
49
|
+
$video-player-subtitle-font-size-fullscreen: 24px !default;
|
|
50
|
+
$video-player-subtitle-font-weight: 500 !default;
|
|
51
|
+
$video-player-subtitle-line-height: 1.5 !default;
|
|
52
|
+
$video-player-subtitle-padding-y: 6px !default;
|
|
53
|
+
$video-player-subtitle-padding-x: 12px !default;
|
|
54
|
+
$video-player-subtitle-border-radius: 6px !default;
|
|
55
|
+
$video-player-subtitle-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !default;
|
|
56
|
+
$video-player-subtitle-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !default;
|
|
57
|
+
|
|
58
|
+
// Video Player Z-Index
|
|
59
|
+
$video-player-loading-z: 2 !default;
|
|
60
|
+
$video-player-controls-z: 3 !default;
|
|
61
|
+
$video-player-subtitles-z: 4 !default;
|
|
62
|
+
|
|
63
|
+
// Video Player Breakpoints
|
|
64
|
+
$video-player-mobile-breakpoint: 768px !default;
|
|
File without changes
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use '../01-settings/settings.animations' as animations;
|
|
2
2
|
@use 'sass:list';
|
|
3
|
+
@use 'sass:meta';
|
|
3
4
|
@use 'tools.transition' as transition;
|
|
4
5
|
@use '../01-settings/settings.config' as config;
|
|
5
6
|
|
|
@@ -17,3 +18,84 @@
|
|
|
17
18
|
background-position: 0 50%;
|
|
18
19
|
}
|
|
19
20
|
}
|
|
21
|
+
|
|
22
|
+
@mixin animations(
|
|
23
|
+
$names,
|
|
24
|
+
$duration: 1.4s,
|
|
25
|
+
$timing: linear,
|
|
26
|
+
$delay: 0s,
|
|
27
|
+
$iteration-count: infinite,
|
|
28
|
+
$direction: normal,
|
|
29
|
+
$fill-mode: none,
|
|
30
|
+
$play-state: running
|
|
31
|
+
) {
|
|
32
|
+
$animations: ();
|
|
33
|
+
|
|
34
|
+
@if (meta.type-of($names) == 'list') {
|
|
35
|
+
@each $name in $names {
|
|
36
|
+
$animation: #{config.$prefix}#{$name}
|
|
37
|
+
$duration
|
|
38
|
+
$timing
|
|
39
|
+
$delay
|
|
40
|
+
$iteration-count
|
|
41
|
+
$direction
|
|
42
|
+
$fill-mode
|
|
43
|
+
$play-state;
|
|
44
|
+
$animations: list.append($animations, $animation, comma);
|
|
45
|
+
}
|
|
46
|
+
} @else {
|
|
47
|
+
$animations: #{config.$prefix}#{$names}
|
|
48
|
+
$duration
|
|
49
|
+
$timing
|
|
50
|
+
$delay
|
|
51
|
+
$iteration-count
|
|
52
|
+
$direction
|
|
53
|
+
$fill-mode
|
|
54
|
+
$play-state;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
animation: #{$animations};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@mixin transition-animation(
|
|
61
|
+
$properties: all,
|
|
62
|
+
$duration: animations.$transition-duration,
|
|
63
|
+
$timing: animations.$easing,
|
|
64
|
+
$delay: 0s
|
|
65
|
+
) {
|
|
66
|
+
@if (type-of($properties) == list) {
|
|
67
|
+
@each $property in $properties {
|
|
68
|
+
transition: $property $duration $timing $delay;
|
|
69
|
+
}
|
|
70
|
+
} @else {
|
|
71
|
+
transition: $properties $duration $timing $delay;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// Test case 1: Single animation (backward compatibility)
|
|
76
|
+
// .test-single {
|
|
77
|
+
// @include animations.animations(
|
|
78
|
+
// 'pulse-slow',
|
|
79
|
+
// $duration: 1.4s,
|
|
80
|
+
// $timing: linear
|
|
81
|
+
// );
|
|
82
|
+
// }
|
|
83
|
+
|
|
84
|
+
// Test case 2: Multiple animations
|
|
85
|
+
// .test-multiple {
|
|
86
|
+
// @include animations.animations(
|
|
87
|
+
// ('pulse-slow', 'fade-in'),
|
|
88
|
+
// $duration: 1.4s,
|
|
89
|
+
// $timing: linear
|
|
90
|
+
// );
|
|
91
|
+
// }
|
|
92
|
+
|
|
93
|
+
// Test case 3: Multiple animations with different parameters
|
|
94
|
+
// .test-multiple-different {
|
|
95
|
+
// @include animations.animations(
|
|
96
|
+
// 'pulse-slow' 'fade-in' 'slide-up',
|
|
97
|
+
// $duration: 2s,
|
|
98
|
+
// $timing: ease-in-out,
|
|
99
|
+
// $iteration-count: infinite
|
|
100
|
+
// );
|
|
101
|
+
// }
|
|
File without changes
|
|
File without changes
|
|
@@ -24,6 +24,11 @@
|
|
|
24
24
|
$btn-text-hover-color: var(--#{config.$prefix}dark-text-emphasis);
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
+
@if ($color == 'secondary') {
|
|
28
|
+
$btn-text-color: var(--#{config.$prefix}dark-text-emphasis);
|
|
29
|
+
$btn-text-hover-color: var(--#{config.$prefix}dark-text-emphasis);
|
|
30
|
+
}
|
|
31
|
+
|
|
27
32
|
--#{config.$prefix}btn-color: #{$btn-text-color};
|
|
28
33
|
--#{config.$prefix}btn-bg: #{$background};
|
|
29
34
|
--#{config.$prefix}btn-border-color: #{$border};
|
|
File without changes
|
|
File without changes
|