├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation.yml │ ├── feature_request.yml │ └── support.yml ├── pull_request_template.md └── workflows │ └── checks.yml ├── .gitignore ├── .husky └── pre-commit ├── .vscode ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── astro.config.mjs ├── eslint.config.js ├── package.json ├── playwright.config.ts ├── public ├── fonts │ ├── Inter-Bold.woff2 │ └── Inter-Regular.woff2 └── img │ ├── avatar0-hd.png │ ├── avatar0.png │ ├── avatar1.png │ ├── avatar2.png │ ├── avatar3.png │ ├── avatar4.png │ ├── avatar5.png │ ├── banner.png │ ├── logo-light.png │ ├── logo.png │ ├── logo.svg │ ├── placeholder-hd1.png │ ├── placeholder-hd2.png │ ├── placeholder-hd3.png │ ├── placeholder1.png │ ├── placeholder10.png │ ├── placeholder11.png │ ├── placeholder2.png │ ├── placeholder3.png │ ├── placeholder4.png │ ├── placeholder5.png │ ├── placeholder6.png │ ├── placeholder7.png │ ├── placeholder8.png │ ├── placeholder9.png │ └── templates │ ├── authentication.png │ ├── blog.png │ ├── portfolio.png │ └── product-page.png ├── scripts ├── additionalTypes.js ├── build.js ├── buildImports.js ├── buildTypes.js ├── createComponent.js ├── integrationTypes.js ├── sass.js └── utilityTypes.js ├── src ├── assets │ └── img │ │ └── logo.svg ├── blocks │ ├── Author │ │ ├── Author.astro │ │ ├── Author.svelte │ │ ├── Author.tsx │ │ ├── author.module.scss │ │ └── author.ts │ ├── AvatarWithRating │ │ ├── AvatarWithRating.astro │ │ ├── AvatarWithRating.svelte │ │ ├── AvatarWithRating.tsx │ │ ├── avatar-with-rating.module.scss │ │ └── avatarWithRating.ts │ ├── BlogCard │ │ ├── BlogCard.astro │ │ ├── BlogCard.svelte │ │ ├── BlogCard.tsx │ │ ├── blog-card.module.scss │ │ └── blogCard.ts │ ├── Button │ │ ├── Button.astro │ │ ├── Button.svelte │ │ ├── Button.tsx │ │ ├── button.module.scss │ │ └── button.ts │ ├── ComponentMap │ │ ├── ComponentMap.astro │ │ ├── ComponentMap.svelte │ │ ├── ComponentMap.tsx │ │ └── componentMap.ts │ ├── Deployments │ │ ├── Deployments.astro │ │ ├── Deployments.svelte │ │ ├── Deployments.tsx │ │ └── deployments.module.scss │ ├── DeviceMockup │ │ ├── DeviceMockup.astro │ │ ├── DeviceMockup.svelte │ │ ├── DeviceMockup.tsx │ │ ├── device-mockup.module.scss │ │ └── deviceMockup.ts │ ├── Empty │ │ ├── Empty.astro │ │ ├── Empty.svelte │ │ ├── Empty.tsx │ │ ├── empty.module.scss │ │ └── empty.ts │ ├── ErrorPage │ │ ├── ErrorPage.astro │ │ ├── ErrorPage.svelte │ │ ├── ErrorPage.tsx │ │ ├── error-page.module.scss │ │ └── errorPage.ts │ ├── ExpandableTable │ │ ├── ExpandableTable.astro │ │ ├── ExpandableTable.svelte │ │ ├── ExpandableTable.tsx │ │ ├── expandable-table.module.scss │ │ └── expandableTable.ts │ ├── FAQ │ │ ├── FAQ.astro │ │ ├── FAQ.svelte │ │ ├── FAQ.tsx │ │ ├── faq.module.scss │ │ └── faq.ts │ ├── Form │ │ ├── Form.astro │ │ ├── Form.svelte │ │ ├── Form.tsx │ │ ├── form.ts │ │ └── useForm.ts │ ├── GridWithIcons │ │ ├── GridWithIcons.astro │ │ ├── GridWithIcons.svelte │ │ ├── GridWithIcons.tsx │ │ ├── grid-with-icons.module.scss │ │ └── gridWithIcons.ts │ ├── Hero │ │ ├── Hero.astro │ │ ├── Hero.svelte │ │ ├── Hero.tsx │ │ ├── hero.module.scss │ │ └── hero.ts │ ├── Icon │ │ ├── Icon.astro │ │ ├── Icon.svelte │ │ ├── Icon.tsx │ │ ├── icon.ts │ │ ├── iconSet.ts │ │ └── icons │ │ │ ├── astro.svg │ │ │ ├── components.svg │ │ │ ├── config.svg │ │ │ ├── cookie.svg │ │ │ ├── discord.svg │ │ │ ├── drag.svg │ │ │ ├── edit.svg │ │ │ ├── file.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── react.svg │ │ │ ├── rocket.svg │ │ │ ├── svelte.svg │ │ │ ├── swatches.svg │ │ │ └── terminal.svg │ ├── IconList │ │ ├── IconList.astro │ │ ├── IconList.svelte │ │ ├── IconList.tsx │ │ ├── icon-list.module.scss │ │ └── iconList.ts │ ├── Layout │ │ ├── Layout.astro │ │ ├── Layout.svelte │ │ ├── Layout.tsx │ │ ├── layout.scss │ │ └── layout.ts │ ├── Maintenance │ │ ├── Maintenance.astro │ │ ├── Maintenance.svelte │ │ ├── Maintenance.tsx │ │ ├── cog.svg │ │ ├── maintenance.module.scss │ │ └── maintenance.ts │ ├── Profile │ │ ├── Profile.astro │ │ ├── Profile.svelte │ │ ├── Profile.tsx │ │ └── profile.module.scss │ ├── SEO │ │ ├── SEO.astro │ │ ├── SEO.svelte │ │ ├── SEO.ts │ │ ├── SEO.tsx │ │ └── getStructuredContent.ts │ ├── SEOPerformance │ │ ├── SEOPerformance.astro │ │ ├── SEOPerformance.svelte │ │ ├── SEOPerformance.tsx │ │ └── seo-performance.module.scss │ ├── Seller │ │ ├── Seller.astro │ │ ├── Seller.svelte │ │ ├── Seller.tsx │ │ └── seller.module.scss │ ├── SettingCard │ │ ├── SettingCard.astro │ │ ├── SettingCard.svelte │ │ ├── SettingCard.tsx │ │ ├── setting-card.module.scss │ │ └── settingCard.ts │ ├── Settings │ │ ├── Settings.astro │ │ ├── Settings.svelte │ │ └── Settings.tsx │ ├── SignUp │ │ ├── SignUp.astro │ │ ├── SignUp.svelte │ │ ├── SignUp.tsx │ │ └── signup.ts │ ├── SocialProof │ │ ├── SocialProof.astro │ │ ├── SocialProof.svelte │ │ ├── SocialProof.tsx │ │ ├── social-proof.module.scss │ │ └── socialProof.ts │ ├── Socials │ │ ├── Socials.astro │ │ ├── Socials.svelte │ │ ├── Socials.tsx │ │ ├── iconMap.ts │ │ ├── icons │ │ │ ├── behance.svg │ │ │ ├── deviantart.svg │ │ │ ├── discord.svg │ │ │ ├── dribbble.svg │ │ │ ├── facebook.svg │ │ │ ├── flickr.svg │ │ │ ├── github.svg │ │ │ ├── instagram.svg │ │ │ ├── linkedin.svg │ │ │ ├── medium.svg │ │ │ ├── pinterest.svg │ │ │ ├── reddit.svg │ │ │ ├── stackexchange.svg │ │ │ ├── stackoverflow.svg │ │ │ ├── tiktok.svg │ │ │ ├── website.svg │ │ │ ├── x.svg │ │ │ └── youtube.svg │ │ ├── socials.module.scss │ │ └── socials.ts │ ├── Team │ │ ├── Team.astro │ │ ├── Team.svelte │ │ ├── Team.tsx │ │ ├── team.module.scss │ │ ├── team.ts │ │ └── user.svg │ ├── Tiles │ │ ├── Tiles.astro │ │ ├── Tiles.svelte │ │ ├── Tiles.tsx │ │ ├── tiles.module.scss │ │ └── tiles.ts │ ├── Timeline │ │ ├── Timeline.astro │ │ ├── Timeline.svelte │ │ └── Timeline.tsx │ ├── User │ │ ├── User.astro │ │ ├── User.svelte │ │ ├── User.tsx │ │ └── user.ts │ ├── astro.ts │ ├── react.ts │ └── svelte.ts ├── components │ ├── Accordion │ │ ├── Accordion.astro │ │ ├── Accordion.svelte │ │ ├── Accordion.tsx │ │ ├── accordion.module.scss │ │ └── accordion.ts │ ├── Alert │ │ ├── Alert.astro │ │ ├── Alert.svelte │ │ ├── Alert.tsx │ │ ├── alert.module.scss │ │ └── alert.ts │ ├── AspectRatio │ │ ├── AspectRatio.astro │ │ ├── AspectRatio.svelte │ │ ├── AspectRatio.tsx │ │ ├── aspect-ratio.module.scss │ │ └── aspectratio.ts │ ├── Avatar │ │ ├── Avatar.astro │ │ ├── Avatar.svelte │ │ ├── Avatar.tsx │ │ ├── avatar.module.scss │ │ └── avatar.ts │ ├── Badge │ │ ├── Badge.astro │ │ ├── Badge.svelte │ │ ├── Badge.tsx │ │ ├── badge.module.scss │ │ └── badge.ts │ ├── Banner │ │ ├── Banner.astro │ │ ├── Banner.svelte │ │ ├── Banner.tsx │ │ ├── banner.module.scss │ │ └── banner.ts │ ├── BottomNavigation │ │ ├── BottomNavigation.astro │ │ ├── BottomNavigation.svelte │ │ ├── BottomNavigation.tsx │ │ ├── bottomnavigation.module.scss │ │ └── bottomnavigation.ts │ ├── Breadcrumb │ │ ├── Breadcrumb.astro │ │ ├── Breadcrumb.svelte │ │ ├── Breadcrumb.tsx │ │ ├── breadcrumb.module.scss │ │ └── breadcrumb.ts │ ├── Button │ │ ├── Button.astro │ │ ├── Button.svelte │ │ ├── Button.tsx │ │ ├── button.module.scss │ │ └── button.ts │ ├── Card │ │ ├── Card.astro │ │ ├── Card.svelte │ │ ├── Card.tsx │ │ ├── card.module.scss │ │ └── card.ts │ ├── Carousel │ │ ├── Carousel.astro │ │ ├── Carousel.svelte │ │ ├── Carousel.tsx │ │ ├── carousel.module.scss │ │ └── carousel.ts │ ├── Checkbox │ │ ├── Checkbox.astro │ │ ├── Checkbox.svelte │ │ ├── Checkbox.tsx │ │ ├── checkbox.module.scss │ │ └── checkbox.ts │ ├── Collapsible │ │ ├── Collapsible.astro │ │ ├── Collapsible.svelte │ │ ├── Collapsible.tsx │ │ ├── collapsible.module.scss │ │ └── collapsible.ts │ ├── ConditionalWrapper │ │ ├── ConditionalWrapper.astro │ │ ├── ConditionalWrapper.svelte │ │ ├── ConditionalWrapper.tsx │ │ └── conditionalwrapper.ts │ ├── ContextMenu │ │ ├── ContextMenu.astro │ │ ├── ContextMenu.svelte │ │ ├── ContextMenu.tsx │ │ ├── contextmenu.module.scss │ │ └── contextmenu.ts │ ├── Copy │ │ ├── Copy.astro │ │ ├── Copy.svelte │ │ ├── Copy.tsx │ │ ├── copy.module.scss │ │ └── copy.ts │ ├── Counter │ │ ├── Counter.astro │ │ ├── Counter.svelte │ │ ├── Counter.tsx │ │ ├── counter.module.scss │ │ └── counter.ts │ ├── DataTable │ │ ├── DataTable.astro │ │ ├── DataTable.svelte │ │ ├── DataTable.tsx │ │ ├── datatable.module.scss │ │ └── datatable.ts │ ├── Flex │ │ ├── Flex.astro │ │ ├── Flex.svelte │ │ ├── Flex.tsx │ │ └── flex.ts │ ├── Footer │ │ ├── Footer.astro │ │ ├── Footer.svelte │ │ ├── Footer.tsx │ │ ├── footer.module.scss │ │ └── footer.ts │ ├── Grid │ │ ├── Grid.astro │ │ ├── Grid.svelte │ │ ├── Grid.tsx │ │ └── grid.ts │ ├── Group │ │ ├── Group.astro │ │ ├── Group.svelte │ │ ├── Group.tsx │ │ ├── group.module.scss │ │ └── group.ts │ ├── Icon │ │ ├── Icon.astro │ │ ├── Icon.svelte │ │ ├── Icon.tsx │ │ ├── icon.ts │ │ └── map.ts │ ├── Input │ │ ├── Input.astro │ │ ├── Input.svelte │ │ ├── Input.tsx │ │ ├── input.module.scss │ │ └── input.ts │ ├── Kbd │ │ ├── Kbd.astro │ │ ├── Kbd.svelte │ │ ├── Kbd.tsx │ │ ├── kbd.module.scss │ │ ├── kbd.ts │ │ └── keyMap.ts │ ├── List │ │ ├── List.astro │ │ ├── List.svelte │ │ ├── List.tsx │ │ ├── list.module.scss │ │ └── list.ts │ ├── Masonry │ │ ├── Masonry.astro │ │ ├── Masonry.svelte │ │ ├── Masonry.tsx │ │ ├── masonry.module.scss │ │ └── masonry.ts │ ├── Menu │ │ ├── Menu.astro │ │ ├── Menu.svelte │ │ ├── Menu.tsx │ │ ├── menu.module.scss │ │ └── menu.ts │ ├── Modal │ │ ├── Modal.astro │ │ ├── Modal.svelte │ │ ├── Modal.tsx │ │ ├── modal.module.scss │ │ └── modal.ts │ ├── OTPInput │ │ ├── OTPInput.astro │ │ ├── OTPInput.svelte │ │ ├── OTPInput.tsx │ │ ├── otpinput.module.scss │ │ └── otpinput.ts │ ├── Pagination │ │ ├── Pagination.astro │ │ ├── Pagination.svelte │ │ ├── Pagination.tsx │ │ ├── pagination.module.scss │ │ └── pagination.ts │ ├── Popover │ │ ├── Popover.astro │ │ ├── Popover.svelte │ │ ├── Popover.tsx │ │ ├── popover.module.scss │ │ └── popover.ts │ ├── Progress │ │ ├── Progress.astro │ │ ├── Progress.svelte │ │ ├── Progress.tsx │ │ ├── progress.module.scss │ │ └── progress.ts │ ├── Radio │ │ ├── Radio.astro │ │ ├── Radio.svelte │ │ ├── Radio.tsx │ │ ├── radio.module.scss │ │ └── radio.ts │ ├── RangeSlider │ │ ├── RangeSlider.astro │ │ ├── RangeSlider.svelte │ │ ├── RangeSlider.tsx │ │ ├── rangeslider.module.scss │ │ └── rangeslider.ts │ ├── Rating │ │ ├── Rating.astro │ │ ├── Rating.svelte │ │ ├── Rating.tsx │ │ ├── rating.module.scss │ │ └── rating.ts │ ├── Ribbon │ │ ├── Ribbon.astro │ │ ├── Ribbon.svelte │ │ ├── Ribbon.tsx │ │ ├── ribbon.module.scss │ │ └── ribbon.ts │ ├── Select │ │ ├── Select.astro │ │ ├── Select.svelte │ │ ├── Select.tsx │ │ ├── select.module.scss │ │ └── select.ts │ ├── Sheet │ │ ├── Sheet.astro │ │ ├── Sheet.svelte │ │ ├── Sheet.tsx │ │ ├── sheet.module.scss │ │ └── sheet.ts │ ├── Sidebar │ │ ├── Sidebar.astro │ │ ├── Sidebar.svelte │ │ ├── Sidebar.tsx │ │ ├── sidebar.module.scss │ │ └── sidebar.ts │ ├── Skeleton │ │ ├── Skeleton.astro │ │ ├── Skeleton.svelte │ │ ├── Skeleton.tsx │ │ ├── skeleton.module.scss │ │ └── skeleton.ts │ ├── Slider │ │ ├── Slider.astro │ │ ├── Slider.svelte │ │ ├── Slider.tsx │ │ ├── slider.module.scss │ │ └── slider.ts │ ├── SpeedDial │ │ ├── SpeedDial.astro │ │ ├── SpeedDial.svelte │ │ ├── SpeedDial.tsx │ │ ├── speeddial.module.scss │ │ └── speeddial.ts │ ├── Spinner │ │ ├── Spinner.astro │ │ ├── Spinner.svelte │ │ ├── Spinner.tsx │ │ ├── spinner.module.scss │ │ └── spinner.ts │ ├── Spoiler │ │ ├── Spoiler.astro │ │ ├── Spoiler.svelte │ │ ├── Spoiler.tsx │ │ ├── spoiler.module.scss │ │ └── spoiler.ts │ ├── Stepper │ │ ├── Stepper.astro │ │ ├── Stepper.svelte │ │ ├── Stepper.tsx │ │ ├── stepper.module.scss │ │ └── stepper.ts │ ├── Switch │ │ ├── Switch.astro │ │ ├── Switch.svelte │ │ ├── Switch.tsx │ │ ├── switch.module.scss │ │ └── switch.ts │ ├── Table │ │ ├── Table.astro │ │ ├── Table.svelte │ │ ├── Table.tsx │ │ ├── table.module.scss │ │ └── table.ts │ ├── Tabs │ │ ├── Tabs.astro │ │ ├── Tabs.svelte │ │ ├── Tabs.tsx │ │ ├── tabs.module.scss │ │ └── tabs.ts │ ├── Textarea │ │ ├── Textarea.astro │ │ ├── Textarea.svelte │ │ ├── Textarea.tsx │ │ ├── textarea.module.scss │ │ └── textarea.ts │ ├── ThemeSwitcher │ │ ├── ThemeSwitcher.astro │ │ ├── ThemeSwitcher.svelte │ │ ├── ThemeSwitcher.tsx │ │ ├── themeswitcher.module.scss │ │ └── themeswitcher.ts │ ├── Timeline │ │ ├── Timeline.astro │ │ ├── Timeline.svelte │ │ ├── Timeline.tsx │ │ ├── timeline.module.scss │ │ └── timeline.ts │ ├── TimelineItem │ │ ├── TimelineItem.astro │ │ ├── TimelineItem.svelte │ │ ├── TimelineItem.tsx │ │ ├── timelineitem.module.scss │ │ └── timelineitem.ts │ └── Toast │ │ ├── Toast.astro │ │ ├── Toast.svelte │ │ ├── Toast.tsx │ │ ├── toast.module.scss │ │ └── toast.ts ├── data.ts ├── env.d.ts ├── helpers.js ├── icons │ ├── alert.svg │ ├── check.svg │ ├── chevron-down.svg │ ├── chevron-left.svg │ ├── chevron-right.svg │ ├── chevron-up.svg │ ├── circle-check.svg │ ├── circle-close.svg │ ├── close.svg │ ├── copy.svg │ ├── github.svg │ ├── home.svg │ ├── info.svg │ ├── minus.svg │ ├── moon.svg │ ├── order.svg │ ├── plus.svg │ ├── search.svg │ ├── sun.svg │ └── warning.svg ├── integration.js ├── pages │ ├── blocks │ │ ├── author.astro │ │ ├── avatar-with-rating.astro │ │ ├── blog-card.astro │ │ ├── component-map.astro │ │ ├── device-mockup.astro │ │ ├── empty.astro │ │ ├── error-page.astro │ │ ├── expandable-tables.astro │ │ ├── faq.astro │ │ ├── form.astro │ │ ├── grid-with-icons.astro │ │ ├── hero.astro │ │ ├── icon-list.astro │ │ ├── icon.astro │ │ ├── index.astro │ │ ├── maintenance.astro │ │ ├── setting-card.astro │ │ ├── sign-up.astro │ │ ├── social-proof.astro │ │ ├── socials.astro │ │ ├── team.astro │ │ ├── tiles.astro │ │ └── user.astro │ ├── components │ │ ├── accordion.astro │ │ ├── alert.astro │ │ ├── aspect-ratio.astro │ │ ├── avatar.astro │ │ ├── badge.astro │ │ ├── banner.astro │ │ ├── bottom-navigation.astro │ │ ├── breadcrumb.astro │ │ ├── button.astro │ │ ├── card.astro │ │ ├── carousel.astro │ │ ├── checkbox.astro │ │ ├── collapsible.astro │ │ ├── context-menu.astro │ │ ├── copy.astro │ │ ├── counter.astro │ │ ├── data-table.astro │ │ ├── flex.astro │ │ ├── footer.astro │ │ ├── grid.astro │ │ ├── group.astro │ │ ├── icon.astro │ │ ├── input.astro │ │ ├── kbd.astro │ │ ├── list.astro │ │ ├── masonry.astro │ │ ├── menu.astro │ │ ├── modal.astro │ │ ├── otp-input.astro │ │ ├── pagination.astro │ │ ├── popover.astro │ │ ├── progress.astro │ │ ├── radio.astro │ │ ├── range-slider.astro │ │ ├── rating.astro │ │ ├── ribbon.astro │ │ ├── select.astro │ │ ├── sheet.astro │ │ ├── sidebar.astro │ │ ├── skeleton.astro │ │ ├── slider.astro │ │ ├── speed-dial.astro │ │ ├── spinner.astro │ │ ├── spoiler.astro │ │ ├── stepper.astro │ │ ├── switch.astro │ │ ├── table.astro │ │ ├── tabs.astro │ │ ├── textarea.astro │ │ ├── theme-switcher.astro │ │ ├── timeline.astro │ │ ├── toast.astro │ │ └── tooltip.astro │ ├── css │ │ ├── resets.astro │ │ ├── themes.astro │ │ └── utilities.astro │ ├── examples │ │ ├── astro.astro │ │ ├── react.astro │ │ └── svelte.astro │ ├── index.astro │ ├── react.astro │ ├── svelte.astro │ └── templates │ │ ├── authentication │ │ ├── astro.astro │ │ ├── example.astro │ │ ├── react.astro │ │ └── svelte.astro │ │ ├── blog │ │ ├── astro.astro │ │ ├── example.astro │ │ ├── react.astro │ │ └── svelte.astro │ │ ├── index.astro │ │ ├── portfolio │ │ ├── astro.astro │ │ ├── example.astro │ │ ├── react.astro │ │ └── svelte.astro │ │ └── product-page │ │ ├── astro.astro │ │ ├── example.astro │ │ ├── react.astro │ │ └── svelte.astro ├── playground │ ├── ReactPlayground.tsx │ ├── SveltePlayground.svelte │ └── playground.module.scss ├── scss │ ├── config.scss │ ├── config │ │ ├── color-palette.scss │ │ ├── css-values.scss │ │ ├── layout.scss │ │ ├── mixins.scss │ │ ├── typography.scss │ │ └── variables.scss │ ├── global.scss │ ├── global │ │ ├── breakpoints.scss │ │ ├── scrollbar.scss │ │ ├── theme.scss │ │ ├── tooltip.scss │ │ └── utility.scss │ ├── index.scss │ ├── resets.scss │ └── setup.scss ├── static │ ├── Box.astro │ ├── Box.svelte │ ├── Box.tsx │ ├── CardWrapper.astro │ ├── CollapsibleTable.astro │ ├── ComponentWrapper.astro │ ├── Examples.astro │ ├── Layout.astro │ ├── Link.astro │ ├── PlaceholderText.astro │ └── box.module.scss ├── templates │ ├── Authentication │ │ ├── Authentication.astro │ │ ├── Authentication.svelte │ │ ├── Authentication.tsx │ │ ├── authentication.module.scss │ │ └── authentication.ts │ ├── Blog │ │ ├── Blog.astro │ │ ├── Blog.svelte │ │ ├── Blog.tsx │ │ ├── blog.module.scss │ │ └── blog.ts │ ├── Portfolio │ │ ├── Portfolio.astro │ │ ├── Portfolio.svelte │ │ ├── Portfolio.tsx │ │ ├── portfolio.module.scss │ │ └── portfolio.ts │ └── ProductPage │ │ ├── ProductPage.astro │ │ ├── ProductPage.svelte │ │ ├── ProductPage.tsx │ │ ├── product-page.module.scss │ │ └── productPage.ts ├── tests │ ├── e2e │ │ ├── Playwright.ts │ │ ├── blocks │ │ │ ├── author.test.ts │ │ │ ├── avatarWithRating.test.ts │ │ │ ├── blogCard.test.ts │ │ │ ├── customIcon.test.ts │ │ │ ├── deviceMockup.test.ts │ │ │ ├── errorPage.test.ts │ │ │ ├── expandableTable.test.ts │ │ │ ├── faq.test.ts │ │ │ ├── form.test.ts │ │ │ ├── gridWithIcons.test.ts │ │ │ ├── hero.test.ts │ │ │ ├── iconList.test.ts │ │ │ ├── maintenance.test.ts │ │ │ ├── settingCard.test.ts │ │ │ ├── signUp.test.ts │ │ │ ├── socialProof.test.ts │ │ │ ├── socials.test.ts │ │ │ ├── team.test.ts │ │ │ ├── tiles.test.ts │ │ │ └── userWithRating.test.ts │ │ ├── components │ │ │ ├── accordion.test.ts │ │ │ ├── alert.test.ts │ │ │ ├── aspectRatio.test.ts │ │ │ ├── avatar.test.ts │ │ │ ├── badge.test.ts │ │ │ ├── banner.test.ts │ │ │ ├── bottomNavigation.test.ts │ │ │ ├── breadcrumb.test.ts │ │ │ ├── button.test.ts │ │ │ ├── card.test.ts │ │ │ ├── carousel.test.ts │ │ │ ├── checkbox.test.ts │ │ │ ├── collapsible.test.ts │ │ │ ├── copy.test.ts │ │ │ ├── counter.test.ts │ │ │ ├── dataTable.test.ts │ │ │ ├── flex.test.ts │ │ │ ├── footer.test.ts │ │ │ ├── grid.test.ts │ │ │ ├── group.test.ts │ │ │ ├── icon.test.ts │ │ │ ├── input.test.ts │ │ │ ├── kbd.test.ts │ │ │ ├── list.test.ts │ │ │ ├── masonry.test.ts │ │ │ ├── menu.test.ts │ │ │ ├── otpInput.test.ts │ │ │ ├── pagination.test.ts │ │ │ ├── progress.test.ts │ │ │ ├── radio.test.ts │ │ │ ├── rating.test.ts │ │ │ ├── ribbon.test.ts │ │ │ ├── select.test.ts │ │ │ ├── sidebar.test.ts │ │ │ ├── skeleton.test.ts │ │ │ ├── slider.test.ts │ │ │ ├── speedDial.test.ts │ │ │ ├── spinner.test.ts │ │ │ ├── spoiler.test.ts │ │ │ ├── stepper.test.ts │ │ │ ├── switch.test.ts │ │ │ ├── table.test.ts │ │ │ ├── tabs.test.ts │ │ │ ├── textarea.test.ts │ │ │ ├── themeSwitcher.test.ts │ │ │ └── timeline.test.ts │ │ ├── pages │ │ │ ├── blocks.test.ts │ │ │ ├── home.test.ts │ │ │ ├── reactPlayground.test.ts │ │ │ ├── resets.test.ts │ │ │ ├── sveltePlayground.test.ts │ │ │ └── utilities.test.ts │ │ ├── snapshots │ │ │ ├── accordion.test.ts.png │ │ │ ├── alert.test.ts.png │ │ │ ├── aspectRatio.test.ts.png │ │ │ ├── authentication.test.ts.png │ │ │ ├── author.test.ts.png │ │ │ ├── avatar.test.ts.png │ │ │ ├── avatarWithRating.test.ts.png │ │ │ ├── badge.test.ts.png │ │ │ ├── banner.test.ts.png │ │ │ ├── blocks.test.ts.png │ │ │ ├── blog.test.ts.png │ │ │ ├── blogCard.test.ts.png │ │ │ ├── bottomNavigation.test.ts.png │ │ │ ├── breadcrumb.test.ts.png │ │ │ ├── button.test.ts.png │ │ │ ├── card.test.ts.png │ │ │ ├── carousel.test.ts.png │ │ │ ├── checkbox.test.ts.png │ │ │ ├── collapsible.test.ts.png │ │ │ ├── copy.test.ts.png │ │ │ ├── counter.test.ts.png │ │ │ ├── customIcon.test.ts.png │ │ │ ├── dataTable.test.ts.png │ │ │ ├── deviceMockup.test.ts.png │ │ │ ├── errorPage.test.ts.png │ │ │ ├── expandableTable.test.ts.png │ │ │ ├── faq.test.ts.png │ │ │ ├── flex.test.ts.png │ │ │ ├── footer.test.ts.png │ │ │ ├── form.test.ts.png │ │ │ ├── grid.test.ts.png │ │ │ ├── gridWithIcons.test.ts.png │ │ │ ├── group.test.ts.png │ │ │ ├── hero.test.ts.png │ │ │ ├── home.test.ts.png │ │ │ ├── icon.test.ts.png │ │ │ ├── iconList.test.ts.png │ │ │ ├── input.test.ts.png │ │ │ ├── kbd.test.ts.png │ │ │ ├── list.test.ts.png │ │ │ ├── maintenance.test.ts.png │ │ │ ├── masonry.test.ts.png │ │ │ ├── menu.test.ts.png │ │ │ ├── otpInput.test.ts.png │ │ │ ├── pagination.test.ts.png │ │ │ ├── portfolio.test.ts.png │ │ │ ├── productPage.test.ts.png │ │ │ ├── progress.test.ts.png │ │ │ ├── radio.test.ts.png │ │ │ ├── rating.test.ts.png │ │ │ ├── reactPlayground.test.ts.png │ │ │ ├── resets.test.ts.png │ │ │ ├── ribbon.test.ts.png │ │ │ ├── select.test.ts.png │ │ │ ├── settingCard.test.ts.png │ │ │ ├── sidebar.test.ts.png │ │ │ ├── signUp.test.ts.png │ │ │ ├── skeleton.test.ts.png │ │ │ ├── slider.test.ts.png │ │ │ ├── socialProof.test.ts.png │ │ │ ├── socials.test.ts.png │ │ │ ├── speedDial.test.ts.png │ │ │ ├── spinner.test.ts.png │ │ │ ├── spoiler.test.ts.png │ │ │ ├── stepper.test.ts.png │ │ │ ├── sveltePlayground.test.ts.png │ │ │ ├── switch.test.ts.png │ │ │ ├── table.test.ts.png │ │ │ ├── tabs.test.ts.png │ │ │ ├── team.test.ts.png │ │ │ ├── textarea.test.ts.png │ │ │ ├── themeSwitcher.test.ts.png │ │ │ ├── tiles.test.ts.png │ │ │ ├── timeline.test.ts.png │ │ │ ├── userWithRating.test.ts.png │ │ │ └── utilities.test.ts.png │ │ └── templates │ │ │ ├── authentication.test.ts │ │ │ ├── blog.test.ts │ │ │ ├── portfolio.test.ts │ │ │ └── productPage.test.ts │ └── unit │ │ ├── DOMUtils.test.ts │ │ ├── bodyFreeze.test.ts │ │ ├── classNames.test.ts │ │ ├── context.test.ts │ │ ├── cookies.test.ts │ │ ├── debounce.test.ts │ │ ├── event.test.ts │ │ ├── getBreakpoint.test.ts │ │ ├── getLayoutClasses.test.ts │ │ ├── interpolate.test.ts │ │ ├── isOneOf.test.ts │ │ ├── modal.test.ts │ │ ├── popover.test.ts │ │ ├── scss.test.js │ │ ├── scss │ │ ├── background.test.scss │ │ ├── border-radius.test.scss │ │ ├── border.test.scss │ │ ├── layer.test.scss │ │ ├── layout.test.scss │ │ ├── media.test.scss │ │ ├── position.test.scss │ │ ├── size.test.scss │ │ ├── transition.test.scss │ │ ├── typography.test.scss │ │ ├── utility.test.scss │ │ └── visibility.test.scss │ │ ├── toast.test.ts │ │ └── useForm.test.ts └── utils │ ├── DOMUtils.ts │ ├── bodyFreeze.ts │ ├── classNames.ts │ ├── context.ts │ ├── cookies.ts │ ├── debounce.ts │ ├── event.ts │ ├── getBreakpoint.ts │ ├── getLayoutClasses.ts │ ├── interpolate.ts │ ├── isOneOf.ts │ ├── modal.ts │ ├── popover.ts │ └── toast.ts ├── svelte.config.js ├── tsconfig.json ├── vite.config.ts ├── vitest.setup.ts └── webcore.config.scss /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: Frontendland 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/.github/ISSUE_TEMPLATE/support.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npm run pre-commit 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /public/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /public/img/avatar0-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/avatar0-hd.png -------------------------------------------------------------------------------- /public/img/avatar0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/avatar0.png -------------------------------------------------------------------------------- /public/img/avatar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/avatar1.png -------------------------------------------------------------------------------- /public/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/avatar2.png -------------------------------------------------------------------------------- /public/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/avatar3.png -------------------------------------------------------------------------------- /public/img/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/avatar4.png -------------------------------------------------------------------------------- /public/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/avatar5.png -------------------------------------------------------------------------------- /public/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/banner.png -------------------------------------------------------------------------------- /public/img/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/logo-light.png -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/logo.png -------------------------------------------------------------------------------- /public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/logo.svg -------------------------------------------------------------------------------- /public/img/placeholder-hd1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder-hd1.png -------------------------------------------------------------------------------- /public/img/placeholder-hd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder-hd2.png -------------------------------------------------------------------------------- /public/img/placeholder-hd3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder-hd3.png -------------------------------------------------------------------------------- /public/img/placeholder1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder1.png -------------------------------------------------------------------------------- /public/img/placeholder10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder10.png -------------------------------------------------------------------------------- /public/img/placeholder11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder11.png -------------------------------------------------------------------------------- /public/img/placeholder2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder2.png -------------------------------------------------------------------------------- /public/img/placeholder3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder3.png -------------------------------------------------------------------------------- /public/img/placeholder4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder4.png -------------------------------------------------------------------------------- /public/img/placeholder5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder5.png -------------------------------------------------------------------------------- /public/img/placeholder6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder6.png -------------------------------------------------------------------------------- /public/img/placeholder7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder7.png -------------------------------------------------------------------------------- /public/img/placeholder8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder8.png -------------------------------------------------------------------------------- /public/img/placeholder9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/placeholder9.png -------------------------------------------------------------------------------- /public/img/templates/authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/templates/authentication.png -------------------------------------------------------------------------------- /public/img/templates/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/templates/blog.png -------------------------------------------------------------------------------- /public/img/templates/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/templates/portfolio.png -------------------------------------------------------------------------------- /public/img/templates/product-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/public/img/templates/product-page.png -------------------------------------------------------------------------------- /scripts/additionalTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/scripts/additionalTypes.js -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/buildImports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/scripts/buildImports.js -------------------------------------------------------------------------------- /scripts/buildTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/scripts/buildTypes.js -------------------------------------------------------------------------------- /scripts/createComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/scripts/createComponent.js -------------------------------------------------------------------------------- /scripts/integrationTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/scripts/integrationTypes.js -------------------------------------------------------------------------------- /scripts/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/scripts/sass.js -------------------------------------------------------------------------------- /scripts/utilityTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/scripts/utilityTypes.js -------------------------------------------------------------------------------- /src/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/assets/img/logo.svg -------------------------------------------------------------------------------- /src/blocks/Author/Author.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Author/Author.astro -------------------------------------------------------------------------------- /src/blocks/Author/Author.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Author/Author.svelte -------------------------------------------------------------------------------- /src/blocks/Author/Author.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Author/Author.tsx -------------------------------------------------------------------------------- /src/blocks/Author/author.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Author/author.module.scss -------------------------------------------------------------------------------- /src/blocks/Author/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Author/author.ts -------------------------------------------------------------------------------- /src/blocks/AvatarWithRating/avatarWithRating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/AvatarWithRating/avatarWithRating.ts -------------------------------------------------------------------------------- /src/blocks/BlogCard/BlogCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/BlogCard/BlogCard.astro -------------------------------------------------------------------------------- /src/blocks/BlogCard/BlogCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/BlogCard/BlogCard.svelte -------------------------------------------------------------------------------- /src/blocks/BlogCard/BlogCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/BlogCard/BlogCard.tsx -------------------------------------------------------------------------------- /src/blocks/BlogCard/blog-card.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/BlogCard/blog-card.module.scss -------------------------------------------------------------------------------- /src/blocks/BlogCard/blogCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/BlogCard/blogCard.ts -------------------------------------------------------------------------------- /src/blocks/Button/Button.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Button/Button.astro -------------------------------------------------------------------------------- /src/blocks/Button/Button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Button/Button.svelte -------------------------------------------------------------------------------- /src/blocks/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Button/Button.tsx -------------------------------------------------------------------------------- /src/blocks/Button/button.module.scss: -------------------------------------------------------------------------------- 1 | @use 'webcoreui/config' as *; 2 | 3 | .button svg { 4 | @include size(18px); 5 | } 6 | -------------------------------------------------------------------------------- /src/blocks/Button/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Button/button.ts -------------------------------------------------------------------------------- /src/blocks/ComponentMap/ComponentMap.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/ComponentMap/ComponentMap.astro -------------------------------------------------------------------------------- /src/blocks/ComponentMap/ComponentMap.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/ComponentMap/ComponentMap.svelte -------------------------------------------------------------------------------- /src/blocks/ComponentMap/ComponentMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/ComponentMap/ComponentMap.tsx -------------------------------------------------------------------------------- /src/blocks/ComponentMap/componentMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/ComponentMap/componentMap.ts -------------------------------------------------------------------------------- /src/blocks/Deployments/Deployments.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Deployments/Deployments.astro -------------------------------------------------------------------------------- /src/blocks/Deployments/Deployments.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Deployments/Deployments.svelte -------------------------------------------------------------------------------- /src/blocks/Deployments/Deployments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Deployments/Deployments.tsx -------------------------------------------------------------------------------- /src/blocks/Deployments/deployments.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Deployments/deployments.module.scss -------------------------------------------------------------------------------- /src/blocks/DeviceMockup/DeviceMockup.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/DeviceMockup/DeviceMockup.astro -------------------------------------------------------------------------------- /src/blocks/DeviceMockup/DeviceMockup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/DeviceMockup/DeviceMockup.svelte -------------------------------------------------------------------------------- /src/blocks/DeviceMockup/DeviceMockup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/DeviceMockup/DeviceMockup.tsx -------------------------------------------------------------------------------- /src/blocks/DeviceMockup/deviceMockup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/DeviceMockup/deviceMockup.ts -------------------------------------------------------------------------------- /src/blocks/Empty/Empty.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Empty/Empty.astro -------------------------------------------------------------------------------- /src/blocks/Empty/Empty.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Empty/Empty.svelte -------------------------------------------------------------------------------- /src/blocks/Empty/Empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Empty/Empty.tsx -------------------------------------------------------------------------------- /src/blocks/Empty/empty.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Empty/empty.module.scss -------------------------------------------------------------------------------- /src/blocks/Empty/empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Empty/empty.ts -------------------------------------------------------------------------------- /src/blocks/ErrorPage/ErrorPage.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/ErrorPage/ErrorPage.astro -------------------------------------------------------------------------------- /src/blocks/ErrorPage/ErrorPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/ErrorPage/ErrorPage.svelte -------------------------------------------------------------------------------- /src/blocks/ErrorPage/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/ErrorPage/ErrorPage.tsx -------------------------------------------------------------------------------- /src/blocks/ErrorPage/error-page.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/ErrorPage/error-page.module.scss -------------------------------------------------------------------------------- /src/blocks/ErrorPage/errorPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/ErrorPage/errorPage.ts -------------------------------------------------------------------------------- /src/blocks/ExpandableTable/ExpandableTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/ExpandableTable/ExpandableTable.tsx -------------------------------------------------------------------------------- /src/blocks/ExpandableTable/expandableTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/ExpandableTable/expandableTable.ts -------------------------------------------------------------------------------- /src/blocks/FAQ/FAQ.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/FAQ/FAQ.astro -------------------------------------------------------------------------------- /src/blocks/FAQ/FAQ.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/FAQ/FAQ.svelte -------------------------------------------------------------------------------- /src/blocks/FAQ/FAQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/FAQ/FAQ.tsx -------------------------------------------------------------------------------- /src/blocks/FAQ/faq.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/FAQ/faq.module.scss -------------------------------------------------------------------------------- /src/blocks/FAQ/faq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/FAQ/faq.ts -------------------------------------------------------------------------------- /src/blocks/Form/Form.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Form/Form.astro -------------------------------------------------------------------------------- /src/blocks/Form/Form.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Form/Form.svelte -------------------------------------------------------------------------------- /src/blocks/Form/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Form/Form.tsx -------------------------------------------------------------------------------- /src/blocks/Form/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Form/form.ts -------------------------------------------------------------------------------- /src/blocks/Form/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Form/useForm.ts -------------------------------------------------------------------------------- /src/blocks/GridWithIcons/GridWithIcons.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/GridWithIcons/GridWithIcons.astro -------------------------------------------------------------------------------- /src/blocks/GridWithIcons/GridWithIcons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/GridWithIcons/GridWithIcons.svelte -------------------------------------------------------------------------------- /src/blocks/GridWithIcons/GridWithIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/GridWithIcons/GridWithIcons.tsx -------------------------------------------------------------------------------- /src/blocks/GridWithIcons/gridWithIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/GridWithIcons/gridWithIcons.ts -------------------------------------------------------------------------------- /src/blocks/Hero/Hero.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Hero/Hero.astro -------------------------------------------------------------------------------- /src/blocks/Hero/Hero.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Hero/Hero.svelte -------------------------------------------------------------------------------- /src/blocks/Hero/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Hero/Hero.tsx -------------------------------------------------------------------------------- /src/blocks/Hero/hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Hero/hero.module.scss -------------------------------------------------------------------------------- /src/blocks/Hero/hero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Hero/hero.ts -------------------------------------------------------------------------------- /src/blocks/Icon/Icon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/Icon.astro -------------------------------------------------------------------------------- /src/blocks/Icon/Icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/Icon.svelte -------------------------------------------------------------------------------- /src/blocks/Icon/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/Icon.tsx -------------------------------------------------------------------------------- /src/blocks/Icon/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icon.ts -------------------------------------------------------------------------------- /src/blocks/Icon/iconSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/iconSet.ts -------------------------------------------------------------------------------- /src/blocks/Icon/icons/astro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/astro.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/components.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/components.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/config.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/cookie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/cookie.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/discord.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/drag.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/edit.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/file.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/lock-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/lock-open.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/lock.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/react.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/rocket.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/svelte.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/swatches.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/swatches.svg -------------------------------------------------------------------------------- /src/blocks/Icon/icons/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Icon/icons/terminal.svg -------------------------------------------------------------------------------- /src/blocks/IconList/IconList.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/IconList/IconList.astro -------------------------------------------------------------------------------- /src/blocks/IconList/IconList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/IconList/IconList.svelte -------------------------------------------------------------------------------- /src/blocks/IconList/IconList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/IconList/IconList.tsx -------------------------------------------------------------------------------- /src/blocks/IconList/icon-list.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/IconList/icon-list.module.scss -------------------------------------------------------------------------------- /src/blocks/IconList/iconList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/IconList/iconList.ts -------------------------------------------------------------------------------- /src/blocks/Layout/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Layout/Layout.astro -------------------------------------------------------------------------------- /src/blocks/Layout/Layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Layout/Layout.svelte -------------------------------------------------------------------------------- /src/blocks/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Layout/Layout.tsx -------------------------------------------------------------------------------- /src/blocks/Layout/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Layout/layout.scss -------------------------------------------------------------------------------- /src/blocks/Layout/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Layout/layout.ts -------------------------------------------------------------------------------- /src/blocks/Maintenance/Maintenance.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Maintenance/Maintenance.astro -------------------------------------------------------------------------------- /src/blocks/Maintenance/Maintenance.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Maintenance/Maintenance.svelte -------------------------------------------------------------------------------- /src/blocks/Maintenance/Maintenance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Maintenance/Maintenance.tsx -------------------------------------------------------------------------------- /src/blocks/Maintenance/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Maintenance/cog.svg -------------------------------------------------------------------------------- /src/blocks/Maintenance/maintenance.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Maintenance/maintenance.module.scss -------------------------------------------------------------------------------- /src/blocks/Maintenance/maintenance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Maintenance/maintenance.ts -------------------------------------------------------------------------------- /src/blocks/Profile/Profile.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Profile/Profile.astro -------------------------------------------------------------------------------- /src/blocks/Profile/Profile.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Profile/Profile.svelte -------------------------------------------------------------------------------- /src/blocks/Profile/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Profile/Profile.tsx -------------------------------------------------------------------------------- /src/blocks/Profile/profile.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Profile/profile.module.scss -------------------------------------------------------------------------------- /src/blocks/SEO/SEO.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SEO/SEO.astro -------------------------------------------------------------------------------- /src/blocks/SEO/SEO.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SEO/SEO.svelte -------------------------------------------------------------------------------- /src/blocks/SEO/SEO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SEO/SEO.ts -------------------------------------------------------------------------------- /src/blocks/SEO/SEO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SEO/SEO.tsx -------------------------------------------------------------------------------- /src/blocks/SEO/getStructuredContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SEO/getStructuredContent.ts -------------------------------------------------------------------------------- /src/blocks/SEOPerformance/SEOPerformance.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SEOPerformance/SEOPerformance.astro -------------------------------------------------------------------------------- /src/blocks/SEOPerformance/SEOPerformance.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SEOPerformance/SEOPerformance.svelte -------------------------------------------------------------------------------- /src/blocks/SEOPerformance/SEOPerformance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SEOPerformance/SEOPerformance.tsx -------------------------------------------------------------------------------- /src/blocks/Seller/Seller.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Seller/Seller.astro -------------------------------------------------------------------------------- /src/blocks/Seller/Seller.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Seller/Seller.svelte -------------------------------------------------------------------------------- /src/blocks/Seller/Seller.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Seller/Seller.tsx -------------------------------------------------------------------------------- /src/blocks/Seller/seller.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Seller/seller.module.scss -------------------------------------------------------------------------------- /src/blocks/SettingCard/SettingCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SettingCard/SettingCard.astro -------------------------------------------------------------------------------- /src/blocks/SettingCard/SettingCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SettingCard/SettingCard.svelte -------------------------------------------------------------------------------- /src/blocks/SettingCard/SettingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SettingCard/SettingCard.tsx -------------------------------------------------------------------------------- /src/blocks/SettingCard/setting-card.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SettingCard/setting-card.module.scss -------------------------------------------------------------------------------- /src/blocks/SettingCard/settingCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SettingCard/settingCard.ts -------------------------------------------------------------------------------- /src/blocks/Settings/Settings.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Settings/Settings.astro -------------------------------------------------------------------------------- /src/blocks/Settings/Settings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Settings/Settings.svelte -------------------------------------------------------------------------------- /src/blocks/Settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Settings/Settings.tsx -------------------------------------------------------------------------------- /src/blocks/SignUp/SignUp.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SignUp/SignUp.astro -------------------------------------------------------------------------------- /src/blocks/SignUp/SignUp.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SignUp/SignUp.svelte -------------------------------------------------------------------------------- /src/blocks/SignUp/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SignUp/SignUp.tsx -------------------------------------------------------------------------------- /src/blocks/SignUp/signup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SignUp/signup.ts -------------------------------------------------------------------------------- /src/blocks/SocialProof/SocialProof.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SocialProof/SocialProof.astro -------------------------------------------------------------------------------- /src/blocks/SocialProof/SocialProof.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SocialProof/SocialProof.svelte -------------------------------------------------------------------------------- /src/blocks/SocialProof/SocialProof.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SocialProof/SocialProof.tsx -------------------------------------------------------------------------------- /src/blocks/SocialProof/social-proof.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SocialProof/social-proof.module.scss -------------------------------------------------------------------------------- /src/blocks/SocialProof/socialProof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/SocialProof/socialProof.ts -------------------------------------------------------------------------------- /src/blocks/Socials/Socials.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/Socials.astro -------------------------------------------------------------------------------- /src/blocks/Socials/Socials.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/Socials.svelte -------------------------------------------------------------------------------- /src/blocks/Socials/Socials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/Socials.tsx -------------------------------------------------------------------------------- /src/blocks/Socials/iconMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/iconMap.ts -------------------------------------------------------------------------------- /src/blocks/Socials/icons/behance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/behance.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/deviantart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/deviantart.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/discord.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/dribbble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/dribbble.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/facebook.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/flickr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/flickr.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/github.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/instagram.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/linkedin.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/medium.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/pinterest.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/reddit.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/stackexchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/stackexchange.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/stackoverflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/stackoverflow.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/tiktok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/tiktok.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/website.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/website.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/x.svg -------------------------------------------------------------------------------- /src/blocks/Socials/icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/icons/youtube.svg -------------------------------------------------------------------------------- /src/blocks/Socials/socials.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/socials.module.scss -------------------------------------------------------------------------------- /src/blocks/Socials/socials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Socials/socials.ts -------------------------------------------------------------------------------- /src/blocks/Team/Team.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Team/Team.astro -------------------------------------------------------------------------------- /src/blocks/Team/Team.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Team/Team.svelte -------------------------------------------------------------------------------- /src/blocks/Team/Team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Team/Team.tsx -------------------------------------------------------------------------------- /src/blocks/Team/team.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Team/team.module.scss -------------------------------------------------------------------------------- /src/blocks/Team/team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Team/team.ts -------------------------------------------------------------------------------- /src/blocks/Team/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Team/user.svg -------------------------------------------------------------------------------- /src/blocks/Tiles/Tiles.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Tiles/Tiles.astro -------------------------------------------------------------------------------- /src/blocks/Tiles/Tiles.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Tiles/Tiles.svelte -------------------------------------------------------------------------------- /src/blocks/Tiles/Tiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Tiles/Tiles.tsx -------------------------------------------------------------------------------- /src/blocks/Tiles/tiles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Tiles/tiles.module.scss -------------------------------------------------------------------------------- /src/blocks/Tiles/tiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Tiles/tiles.ts -------------------------------------------------------------------------------- /src/blocks/Timeline/Timeline.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Timeline/Timeline.astro -------------------------------------------------------------------------------- /src/blocks/Timeline/Timeline.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Timeline/Timeline.svelte -------------------------------------------------------------------------------- /src/blocks/Timeline/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/Timeline/Timeline.tsx -------------------------------------------------------------------------------- /src/blocks/User/User.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/User/User.astro -------------------------------------------------------------------------------- /src/blocks/User/User.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/User/User.svelte -------------------------------------------------------------------------------- /src/blocks/User/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/User/User.tsx -------------------------------------------------------------------------------- /src/blocks/User/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/User/user.ts -------------------------------------------------------------------------------- /src/blocks/astro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/astro.ts -------------------------------------------------------------------------------- /src/blocks/react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/react.ts -------------------------------------------------------------------------------- /src/blocks/svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/blocks/svelte.ts -------------------------------------------------------------------------------- /src/components/Accordion/Accordion.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Accordion/Accordion.astro -------------------------------------------------------------------------------- /src/components/Accordion/Accordion.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Accordion/Accordion.svelte -------------------------------------------------------------------------------- /src/components/Accordion/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Accordion/Accordion.tsx -------------------------------------------------------------------------------- /src/components/Accordion/accordion.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Accordion/accordion.module.scss -------------------------------------------------------------------------------- /src/components/Accordion/accordion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Accordion/accordion.ts -------------------------------------------------------------------------------- /src/components/Alert/Alert.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Alert/Alert.astro -------------------------------------------------------------------------------- /src/components/Alert/Alert.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Alert/Alert.svelte -------------------------------------------------------------------------------- /src/components/Alert/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Alert/Alert.tsx -------------------------------------------------------------------------------- /src/components/Alert/alert.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Alert/alert.module.scss -------------------------------------------------------------------------------- /src/components/Alert/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Alert/alert.ts -------------------------------------------------------------------------------- /src/components/AspectRatio/AspectRatio.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/AspectRatio/AspectRatio.astro -------------------------------------------------------------------------------- /src/components/AspectRatio/AspectRatio.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/AspectRatio/AspectRatio.svelte -------------------------------------------------------------------------------- /src/components/AspectRatio/AspectRatio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/AspectRatio/AspectRatio.tsx -------------------------------------------------------------------------------- /src/components/AspectRatio/aspectratio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/AspectRatio/aspectratio.ts -------------------------------------------------------------------------------- /src/components/Avatar/Avatar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Avatar/Avatar.astro -------------------------------------------------------------------------------- /src/components/Avatar/Avatar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Avatar/Avatar.svelte -------------------------------------------------------------------------------- /src/components/Avatar/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Avatar/Avatar.tsx -------------------------------------------------------------------------------- /src/components/Avatar/avatar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Avatar/avatar.module.scss -------------------------------------------------------------------------------- /src/components/Avatar/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Avatar/avatar.ts -------------------------------------------------------------------------------- /src/components/Badge/Badge.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Badge/Badge.astro -------------------------------------------------------------------------------- /src/components/Badge/Badge.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Badge/Badge.svelte -------------------------------------------------------------------------------- /src/components/Badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Badge/Badge.tsx -------------------------------------------------------------------------------- /src/components/Badge/badge.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Badge/badge.module.scss -------------------------------------------------------------------------------- /src/components/Badge/badge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Badge/badge.ts -------------------------------------------------------------------------------- /src/components/Banner/Banner.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Banner/Banner.astro -------------------------------------------------------------------------------- /src/components/Banner/Banner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Banner/Banner.svelte -------------------------------------------------------------------------------- /src/components/Banner/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Banner/Banner.tsx -------------------------------------------------------------------------------- /src/components/Banner/banner.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Banner/banner.module.scss -------------------------------------------------------------------------------- /src/components/Banner/banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Banner/banner.ts -------------------------------------------------------------------------------- /src/components/Breadcrumb/Breadcrumb.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Breadcrumb/Breadcrumb.astro -------------------------------------------------------------------------------- /src/components/Breadcrumb/Breadcrumb.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Breadcrumb/Breadcrumb.svelte -------------------------------------------------------------------------------- /src/components/Breadcrumb/Breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Breadcrumb/Breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/Breadcrumb/breadcrumb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Breadcrumb/breadcrumb.ts -------------------------------------------------------------------------------- /src/components/Button/Button.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Button/Button.astro -------------------------------------------------------------------------------- /src/components/Button/Button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Button/Button.svelte -------------------------------------------------------------------------------- /src/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Button/Button.tsx -------------------------------------------------------------------------------- /src/components/Button/button.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Button/button.module.scss -------------------------------------------------------------------------------- /src/components/Button/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Button/button.ts -------------------------------------------------------------------------------- /src/components/Card/Card.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Card/Card.astro -------------------------------------------------------------------------------- /src/components/Card/Card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Card/Card.svelte -------------------------------------------------------------------------------- /src/components/Card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Card/Card.tsx -------------------------------------------------------------------------------- /src/components/Card/card.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Card/card.module.scss -------------------------------------------------------------------------------- /src/components/Card/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Card/card.ts -------------------------------------------------------------------------------- /src/components/Carousel/Carousel.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Carousel/Carousel.astro -------------------------------------------------------------------------------- /src/components/Carousel/Carousel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Carousel/Carousel.svelte -------------------------------------------------------------------------------- /src/components/Carousel/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Carousel/Carousel.tsx -------------------------------------------------------------------------------- /src/components/Carousel/carousel.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Carousel/carousel.module.scss -------------------------------------------------------------------------------- /src/components/Carousel/carousel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Carousel/carousel.ts -------------------------------------------------------------------------------- /src/components/Checkbox/Checkbox.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Checkbox/Checkbox.astro -------------------------------------------------------------------------------- /src/components/Checkbox/Checkbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Checkbox/Checkbox.svelte -------------------------------------------------------------------------------- /src/components/Checkbox/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Checkbox/Checkbox.tsx -------------------------------------------------------------------------------- /src/components/Checkbox/checkbox.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Checkbox/checkbox.module.scss -------------------------------------------------------------------------------- /src/components/Checkbox/checkbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Checkbox/checkbox.ts -------------------------------------------------------------------------------- /src/components/Collapsible/Collapsible.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Collapsible/Collapsible.astro -------------------------------------------------------------------------------- /src/components/Collapsible/Collapsible.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Collapsible/Collapsible.svelte -------------------------------------------------------------------------------- /src/components/Collapsible/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Collapsible/Collapsible.tsx -------------------------------------------------------------------------------- /src/components/Collapsible/collapsible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Collapsible/collapsible.ts -------------------------------------------------------------------------------- /src/components/ContextMenu/ContextMenu.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/ContextMenu/ContextMenu.astro -------------------------------------------------------------------------------- /src/components/ContextMenu/ContextMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/ContextMenu/ContextMenu.svelte -------------------------------------------------------------------------------- /src/components/ContextMenu/ContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/ContextMenu/ContextMenu.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/contextmenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/ContextMenu/contextmenu.ts -------------------------------------------------------------------------------- /src/components/Copy/Copy.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Copy/Copy.astro -------------------------------------------------------------------------------- /src/components/Copy/Copy.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Copy/Copy.svelte -------------------------------------------------------------------------------- /src/components/Copy/Copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Copy/Copy.tsx -------------------------------------------------------------------------------- /src/components/Copy/copy.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Copy/copy.module.scss -------------------------------------------------------------------------------- /src/components/Copy/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Copy/copy.ts -------------------------------------------------------------------------------- /src/components/Counter/Counter.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Counter/Counter.astro -------------------------------------------------------------------------------- /src/components/Counter/Counter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Counter/Counter.svelte -------------------------------------------------------------------------------- /src/components/Counter/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Counter/Counter.tsx -------------------------------------------------------------------------------- /src/components/Counter/counter.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Counter/counter.module.scss -------------------------------------------------------------------------------- /src/components/Counter/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Counter/counter.ts -------------------------------------------------------------------------------- /src/components/DataTable/DataTable.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/DataTable/DataTable.astro -------------------------------------------------------------------------------- /src/components/DataTable/DataTable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/DataTable/DataTable.svelte -------------------------------------------------------------------------------- /src/components/DataTable/DataTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/DataTable/DataTable.tsx -------------------------------------------------------------------------------- /src/components/DataTable/datatable.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/DataTable/datatable.module.scss -------------------------------------------------------------------------------- /src/components/DataTable/datatable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/DataTable/datatable.ts -------------------------------------------------------------------------------- /src/components/Flex/Flex.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Flex/Flex.astro -------------------------------------------------------------------------------- /src/components/Flex/Flex.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Flex/Flex.svelte -------------------------------------------------------------------------------- /src/components/Flex/Flex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Flex/Flex.tsx -------------------------------------------------------------------------------- /src/components/Flex/flex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Flex/flex.ts -------------------------------------------------------------------------------- /src/components/Footer/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Footer/Footer.astro -------------------------------------------------------------------------------- /src/components/Footer/Footer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Footer/Footer.svelte -------------------------------------------------------------------------------- /src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/Footer/footer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Footer/footer.module.scss -------------------------------------------------------------------------------- /src/components/Footer/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Footer/footer.ts -------------------------------------------------------------------------------- /src/components/Grid/Grid.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Grid/Grid.astro -------------------------------------------------------------------------------- /src/components/Grid/Grid.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Grid/Grid.svelte -------------------------------------------------------------------------------- /src/components/Grid/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Grid/Grid.tsx -------------------------------------------------------------------------------- /src/components/Grid/grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Grid/grid.ts -------------------------------------------------------------------------------- /src/components/Group/Group.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Group/Group.astro -------------------------------------------------------------------------------- /src/components/Group/Group.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Group/Group.svelte -------------------------------------------------------------------------------- /src/components/Group/Group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Group/Group.tsx -------------------------------------------------------------------------------- /src/components/Group/group.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Group/group.module.scss -------------------------------------------------------------------------------- /src/components/Group/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Group/group.ts -------------------------------------------------------------------------------- /src/components/Icon/Icon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Icon/Icon.astro -------------------------------------------------------------------------------- /src/components/Icon/Icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Icon/Icon.svelte -------------------------------------------------------------------------------- /src/components/Icon/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Icon/Icon.tsx -------------------------------------------------------------------------------- /src/components/Icon/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Icon/icon.ts -------------------------------------------------------------------------------- /src/components/Icon/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Icon/map.ts -------------------------------------------------------------------------------- /src/components/Input/Input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Input/Input.astro -------------------------------------------------------------------------------- /src/components/Input/Input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Input/Input.svelte -------------------------------------------------------------------------------- /src/components/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Input/Input.tsx -------------------------------------------------------------------------------- /src/components/Input/input.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Input/input.module.scss -------------------------------------------------------------------------------- /src/components/Input/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Input/input.ts -------------------------------------------------------------------------------- /src/components/Kbd/Kbd.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Kbd/Kbd.astro -------------------------------------------------------------------------------- /src/components/Kbd/Kbd.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Kbd/Kbd.svelte -------------------------------------------------------------------------------- /src/components/Kbd/Kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Kbd/Kbd.tsx -------------------------------------------------------------------------------- /src/components/Kbd/kbd.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Kbd/kbd.module.scss -------------------------------------------------------------------------------- /src/components/Kbd/kbd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Kbd/kbd.ts -------------------------------------------------------------------------------- /src/components/Kbd/keyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Kbd/keyMap.ts -------------------------------------------------------------------------------- /src/components/List/List.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/List/List.astro -------------------------------------------------------------------------------- /src/components/List/List.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/List/List.svelte -------------------------------------------------------------------------------- /src/components/List/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/List/List.tsx -------------------------------------------------------------------------------- /src/components/List/list.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/List/list.module.scss -------------------------------------------------------------------------------- /src/components/List/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/List/list.ts -------------------------------------------------------------------------------- /src/components/Masonry/Masonry.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Masonry/Masonry.astro -------------------------------------------------------------------------------- /src/components/Masonry/Masonry.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Masonry/Masonry.svelte -------------------------------------------------------------------------------- /src/components/Masonry/Masonry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Masonry/Masonry.tsx -------------------------------------------------------------------------------- /src/components/Masonry/masonry.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Masonry/masonry.module.scss -------------------------------------------------------------------------------- /src/components/Masonry/masonry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Masonry/masonry.ts -------------------------------------------------------------------------------- /src/components/Menu/Menu.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Menu/Menu.astro -------------------------------------------------------------------------------- /src/components/Menu/Menu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Menu/Menu.svelte -------------------------------------------------------------------------------- /src/components/Menu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Menu/Menu.tsx -------------------------------------------------------------------------------- /src/components/Menu/menu.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Menu/menu.module.scss -------------------------------------------------------------------------------- /src/components/Menu/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Menu/menu.ts -------------------------------------------------------------------------------- /src/components/Modal/Modal.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Modal/Modal.astro -------------------------------------------------------------------------------- /src/components/Modal/Modal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Modal/Modal.svelte -------------------------------------------------------------------------------- /src/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/components/Modal/modal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Modal/modal.module.scss -------------------------------------------------------------------------------- /src/components/Modal/modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Modal/modal.ts -------------------------------------------------------------------------------- /src/components/OTPInput/OTPInput.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/OTPInput/OTPInput.astro -------------------------------------------------------------------------------- /src/components/OTPInput/OTPInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/OTPInput/OTPInput.svelte -------------------------------------------------------------------------------- /src/components/OTPInput/OTPInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/OTPInput/OTPInput.tsx -------------------------------------------------------------------------------- /src/components/OTPInput/otpinput.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/OTPInput/otpinput.module.scss -------------------------------------------------------------------------------- /src/components/OTPInput/otpinput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/OTPInput/otpinput.ts -------------------------------------------------------------------------------- /src/components/Pagination/Pagination.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Pagination/Pagination.astro -------------------------------------------------------------------------------- /src/components/Pagination/Pagination.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Pagination/Pagination.svelte -------------------------------------------------------------------------------- /src/components/Pagination/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Pagination/Pagination.tsx -------------------------------------------------------------------------------- /src/components/Pagination/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Pagination/pagination.ts -------------------------------------------------------------------------------- /src/components/Popover/Popover.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Popover/Popover.astro -------------------------------------------------------------------------------- /src/components/Popover/Popover.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Popover/Popover.svelte -------------------------------------------------------------------------------- /src/components/Popover/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Popover/Popover.tsx -------------------------------------------------------------------------------- /src/components/Popover/popover.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Popover/popover.module.scss -------------------------------------------------------------------------------- /src/components/Popover/popover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Popover/popover.ts -------------------------------------------------------------------------------- /src/components/Progress/Progress.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Progress/Progress.astro -------------------------------------------------------------------------------- /src/components/Progress/Progress.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Progress/Progress.svelte -------------------------------------------------------------------------------- /src/components/Progress/Progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Progress/Progress.tsx -------------------------------------------------------------------------------- /src/components/Progress/progress.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Progress/progress.module.scss -------------------------------------------------------------------------------- /src/components/Progress/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Progress/progress.ts -------------------------------------------------------------------------------- /src/components/Radio/Radio.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Radio/Radio.astro -------------------------------------------------------------------------------- /src/components/Radio/Radio.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Radio/Radio.svelte -------------------------------------------------------------------------------- /src/components/Radio/Radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Radio/Radio.tsx -------------------------------------------------------------------------------- /src/components/Radio/radio.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Radio/radio.module.scss -------------------------------------------------------------------------------- /src/components/Radio/radio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Radio/radio.ts -------------------------------------------------------------------------------- /src/components/RangeSlider/RangeSlider.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/RangeSlider/RangeSlider.astro -------------------------------------------------------------------------------- /src/components/RangeSlider/RangeSlider.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/RangeSlider/RangeSlider.svelte -------------------------------------------------------------------------------- /src/components/RangeSlider/RangeSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/RangeSlider/RangeSlider.tsx -------------------------------------------------------------------------------- /src/components/RangeSlider/rangeslider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/RangeSlider/rangeslider.ts -------------------------------------------------------------------------------- /src/components/Rating/Rating.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Rating/Rating.astro -------------------------------------------------------------------------------- /src/components/Rating/Rating.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Rating/Rating.svelte -------------------------------------------------------------------------------- /src/components/Rating/Rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Rating/Rating.tsx -------------------------------------------------------------------------------- /src/components/Rating/rating.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Rating/rating.module.scss -------------------------------------------------------------------------------- /src/components/Rating/rating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Rating/rating.ts -------------------------------------------------------------------------------- /src/components/Ribbon/Ribbon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Ribbon/Ribbon.astro -------------------------------------------------------------------------------- /src/components/Ribbon/Ribbon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Ribbon/Ribbon.svelte -------------------------------------------------------------------------------- /src/components/Ribbon/Ribbon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Ribbon/Ribbon.tsx -------------------------------------------------------------------------------- /src/components/Ribbon/ribbon.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Ribbon/ribbon.module.scss -------------------------------------------------------------------------------- /src/components/Ribbon/ribbon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Ribbon/ribbon.ts -------------------------------------------------------------------------------- /src/components/Select/Select.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Select/Select.astro -------------------------------------------------------------------------------- /src/components/Select/Select.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Select/Select.svelte -------------------------------------------------------------------------------- /src/components/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Select/Select.tsx -------------------------------------------------------------------------------- /src/components/Select/select.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Select/select.module.scss -------------------------------------------------------------------------------- /src/components/Select/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Select/select.ts -------------------------------------------------------------------------------- /src/components/Sheet/Sheet.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Sheet/Sheet.astro -------------------------------------------------------------------------------- /src/components/Sheet/Sheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Sheet/Sheet.svelte -------------------------------------------------------------------------------- /src/components/Sheet/Sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Sheet/Sheet.tsx -------------------------------------------------------------------------------- /src/components/Sheet/sheet.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Sheet/sheet.module.scss -------------------------------------------------------------------------------- /src/components/Sheet/sheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Sheet/sheet.ts -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Sidebar/Sidebar.astro -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Sidebar/Sidebar.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/sidebar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Sidebar/sidebar.module.scss -------------------------------------------------------------------------------- /src/components/Sidebar/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Sidebar/sidebar.ts -------------------------------------------------------------------------------- /src/components/Skeleton/Skeleton.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Skeleton/Skeleton.astro -------------------------------------------------------------------------------- /src/components/Skeleton/Skeleton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Skeleton/Skeleton.svelte -------------------------------------------------------------------------------- /src/components/Skeleton/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Skeleton/Skeleton.tsx -------------------------------------------------------------------------------- /src/components/Skeleton/skeleton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Skeleton/skeleton.module.scss -------------------------------------------------------------------------------- /src/components/Skeleton/skeleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Skeleton/skeleton.ts -------------------------------------------------------------------------------- /src/components/Slider/Slider.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Slider/Slider.astro -------------------------------------------------------------------------------- /src/components/Slider/Slider.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Slider/Slider.svelte -------------------------------------------------------------------------------- /src/components/Slider/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Slider/Slider.tsx -------------------------------------------------------------------------------- /src/components/Slider/slider.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Slider/slider.module.scss -------------------------------------------------------------------------------- /src/components/Slider/slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Slider/slider.ts -------------------------------------------------------------------------------- /src/components/SpeedDial/SpeedDial.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/SpeedDial/SpeedDial.astro -------------------------------------------------------------------------------- /src/components/SpeedDial/SpeedDial.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/SpeedDial/SpeedDial.svelte -------------------------------------------------------------------------------- /src/components/SpeedDial/SpeedDial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/SpeedDial/SpeedDial.tsx -------------------------------------------------------------------------------- /src/components/SpeedDial/speeddial.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/SpeedDial/speeddial.module.scss -------------------------------------------------------------------------------- /src/components/SpeedDial/speeddial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/SpeedDial/speeddial.ts -------------------------------------------------------------------------------- /src/components/Spinner/Spinner.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Spinner/Spinner.astro -------------------------------------------------------------------------------- /src/components/Spinner/Spinner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Spinner/Spinner.svelte -------------------------------------------------------------------------------- /src/components/Spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Spinner/Spinner.tsx -------------------------------------------------------------------------------- /src/components/Spinner/spinner.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Spinner/spinner.module.scss -------------------------------------------------------------------------------- /src/components/Spinner/spinner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Spinner/spinner.ts -------------------------------------------------------------------------------- /src/components/Spoiler/Spoiler.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Spoiler/Spoiler.astro -------------------------------------------------------------------------------- /src/components/Spoiler/Spoiler.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Spoiler/Spoiler.svelte -------------------------------------------------------------------------------- /src/components/Spoiler/Spoiler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Spoiler/Spoiler.tsx -------------------------------------------------------------------------------- /src/components/Spoiler/spoiler.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Spoiler/spoiler.module.scss -------------------------------------------------------------------------------- /src/components/Spoiler/spoiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Spoiler/spoiler.ts -------------------------------------------------------------------------------- /src/components/Stepper/Stepper.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Stepper/Stepper.astro -------------------------------------------------------------------------------- /src/components/Stepper/Stepper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Stepper/Stepper.svelte -------------------------------------------------------------------------------- /src/components/Stepper/Stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Stepper/Stepper.tsx -------------------------------------------------------------------------------- /src/components/Stepper/stepper.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Stepper/stepper.module.scss -------------------------------------------------------------------------------- /src/components/Stepper/stepper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Stepper/stepper.ts -------------------------------------------------------------------------------- /src/components/Switch/Switch.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Switch/Switch.astro -------------------------------------------------------------------------------- /src/components/Switch/Switch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Switch/Switch.svelte -------------------------------------------------------------------------------- /src/components/Switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Switch/Switch.tsx -------------------------------------------------------------------------------- /src/components/Switch/switch.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Switch/switch.module.scss -------------------------------------------------------------------------------- /src/components/Switch/switch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Switch/switch.ts -------------------------------------------------------------------------------- /src/components/Table/Table.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Table/Table.astro -------------------------------------------------------------------------------- /src/components/Table/Table.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Table/Table.svelte -------------------------------------------------------------------------------- /src/components/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Table/Table.tsx -------------------------------------------------------------------------------- /src/components/Table/table.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Table/table.module.scss -------------------------------------------------------------------------------- /src/components/Table/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Table/table.ts -------------------------------------------------------------------------------- /src/components/Tabs/Tabs.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Tabs/Tabs.astro -------------------------------------------------------------------------------- /src/components/Tabs/Tabs.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Tabs/Tabs.svelte -------------------------------------------------------------------------------- /src/components/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/components/Tabs/tabs.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Tabs/tabs.module.scss -------------------------------------------------------------------------------- /src/components/Tabs/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Tabs/tabs.ts -------------------------------------------------------------------------------- /src/components/Textarea/Textarea.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Textarea/Textarea.astro -------------------------------------------------------------------------------- /src/components/Textarea/Textarea.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Textarea/Textarea.svelte -------------------------------------------------------------------------------- /src/components/Textarea/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Textarea/Textarea.tsx -------------------------------------------------------------------------------- /src/components/Textarea/textarea.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Textarea/textarea.module.scss -------------------------------------------------------------------------------- /src/components/Textarea/textarea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Textarea/textarea.ts -------------------------------------------------------------------------------- /src/components/ThemeSwitcher/ThemeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/ThemeSwitcher/ThemeSwitcher.tsx -------------------------------------------------------------------------------- /src/components/ThemeSwitcher/themeswitcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/ThemeSwitcher/themeswitcher.ts -------------------------------------------------------------------------------- /src/components/Timeline/Timeline.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Timeline/Timeline.astro -------------------------------------------------------------------------------- /src/components/Timeline/Timeline.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Timeline/Timeline.svelte -------------------------------------------------------------------------------- /src/components/Timeline/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Timeline/Timeline.tsx -------------------------------------------------------------------------------- /src/components/Timeline/timeline.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Timeline/timeline.module.scss -------------------------------------------------------------------------------- /src/components/Timeline/timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Timeline/timeline.ts -------------------------------------------------------------------------------- /src/components/TimelineItem/TimelineItem.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/TimelineItem/TimelineItem.astro -------------------------------------------------------------------------------- /src/components/TimelineItem/TimelineItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/TimelineItem/TimelineItem.svelte -------------------------------------------------------------------------------- /src/components/TimelineItem/TimelineItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/TimelineItem/TimelineItem.tsx -------------------------------------------------------------------------------- /src/components/TimelineItem/timelineitem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/TimelineItem/timelineitem.ts -------------------------------------------------------------------------------- /src/components/Toast/Toast.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Toast/Toast.astro -------------------------------------------------------------------------------- /src/components/Toast/Toast.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Toast/Toast.svelte -------------------------------------------------------------------------------- /src/components/Toast/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Toast/Toast.tsx -------------------------------------------------------------------------------- /src/components/Toast/toast.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Toast/toast.module.scss -------------------------------------------------------------------------------- /src/components/Toast/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/components/Toast/toast.ts -------------------------------------------------------------------------------- /src/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/data.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/helpers.js -------------------------------------------------------------------------------- /src/icons/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/alert.svg -------------------------------------------------------------------------------- /src/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/check.svg -------------------------------------------------------------------------------- /src/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/chevron-down.svg -------------------------------------------------------------------------------- /src/icons/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/chevron-left.svg -------------------------------------------------------------------------------- /src/icons/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/chevron-right.svg -------------------------------------------------------------------------------- /src/icons/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/chevron-up.svg -------------------------------------------------------------------------------- /src/icons/circle-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/circle-check.svg -------------------------------------------------------------------------------- /src/icons/circle-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/circle-close.svg -------------------------------------------------------------------------------- /src/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/close.svg -------------------------------------------------------------------------------- /src/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/copy.svg -------------------------------------------------------------------------------- /src/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/github.svg -------------------------------------------------------------------------------- /src/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/home.svg -------------------------------------------------------------------------------- /src/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/info.svg -------------------------------------------------------------------------------- /src/icons/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/minus.svg -------------------------------------------------------------------------------- /src/icons/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/moon.svg -------------------------------------------------------------------------------- /src/icons/order.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/order.svg -------------------------------------------------------------------------------- /src/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/plus.svg -------------------------------------------------------------------------------- /src/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/search.svg -------------------------------------------------------------------------------- /src/icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/sun.svg -------------------------------------------------------------------------------- /src/icons/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/icons/warning.svg -------------------------------------------------------------------------------- /src/integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/integration.js -------------------------------------------------------------------------------- /src/pages/blocks/author.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/author.astro -------------------------------------------------------------------------------- /src/pages/blocks/avatar-with-rating.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/avatar-with-rating.astro -------------------------------------------------------------------------------- /src/pages/blocks/blog-card.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/blog-card.astro -------------------------------------------------------------------------------- /src/pages/blocks/component-map.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/component-map.astro -------------------------------------------------------------------------------- /src/pages/blocks/device-mockup.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/device-mockup.astro -------------------------------------------------------------------------------- /src/pages/blocks/empty.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/empty.astro -------------------------------------------------------------------------------- /src/pages/blocks/error-page.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/error-page.astro -------------------------------------------------------------------------------- /src/pages/blocks/expandable-tables.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/expandable-tables.astro -------------------------------------------------------------------------------- /src/pages/blocks/faq.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/faq.astro -------------------------------------------------------------------------------- /src/pages/blocks/form.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/form.astro -------------------------------------------------------------------------------- /src/pages/blocks/grid-with-icons.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/grid-with-icons.astro -------------------------------------------------------------------------------- /src/pages/blocks/hero.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/hero.astro -------------------------------------------------------------------------------- /src/pages/blocks/icon-list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/icon-list.astro -------------------------------------------------------------------------------- /src/pages/blocks/icon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/icon.astro -------------------------------------------------------------------------------- /src/pages/blocks/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/index.astro -------------------------------------------------------------------------------- /src/pages/blocks/maintenance.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/maintenance.astro -------------------------------------------------------------------------------- /src/pages/blocks/setting-card.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/setting-card.astro -------------------------------------------------------------------------------- /src/pages/blocks/sign-up.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/sign-up.astro -------------------------------------------------------------------------------- /src/pages/blocks/social-proof.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/social-proof.astro -------------------------------------------------------------------------------- /src/pages/blocks/socials.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/socials.astro -------------------------------------------------------------------------------- /src/pages/blocks/team.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/team.astro -------------------------------------------------------------------------------- /src/pages/blocks/tiles.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/tiles.astro -------------------------------------------------------------------------------- /src/pages/blocks/user.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/blocks/user.astro -------------------------------------------------------------------------------- /src/pages/components/accordion.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/accordion.astro -------------------------------------------------------------------------------- /src/pages/components/alert.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/alert.astro -------------------------------------------------------------------------------- /src/pages/components/aspect-ratio.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/aspect-ratio.astro -------------------------------------------------------------------------------- /src/pages/components/avatar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/avatar.astro -------------------------------------------------------------------------------- /src/pages/components/badge.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/badge.astro -------------------------------------------------------------------------------- /src/pages/components/banner.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/banner.astro -------------------------------------------------------------------------------- /src/pages/components/bottom-navigation.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/bottom-navigation.astro -------------------------------------------------------------------------------- /src/pages/components/breadcrumb.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/breadcrumb.astro -------------------------------------------------------------------------------- /src/pages/components/button.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/button.astro -------------------------------------------------------------------------------- /src/pages/components/card.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/card.astro -------------------------------------------------------------------------------- /src/pages/components/carousel.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/carousel.astro -------------------------------------------------------------------------------- /src/pages/components/checkbox.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/checkbox.astro -------------------------------------------------------------------------------- /src/pages/components/collapsible.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/collapsible.astro -------------------------------------------------------------------------------- /src/pages/components/context-menu.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/context-menu.astro -------------------------------------------------------------------------------- /src/pages/components/copy.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/copy.astro -------------------------------------------------------------------------------- /src/pages/components/counter.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/counter.astro -------------------------------------------------------------------------------- /src/pages/components/data-table.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/data-table.astro -------------------------------------------------------------------------------- /src/pages/components/flex.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/flex.astro -------------------------------------------------------------------------------- /src/pages/components/footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/footer.astro -------------------------------------------------------------------------------- /src/pages/components/grid.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/grid.astro -------------------------------------------------------------------------------- /src/pages/components/group.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/group.astro -------------------------------------------------------------------------------- /src/pages/components/icon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/icon.astro -------------------------------------------------------------------------------- /src/pages/components/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/input.astro -------------------------------------------------------------------------------- /src/pages/components/kbd.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/kbd.astro -------------------------------------------------------------------------------- /src/pages/components/list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/list.astro -------------------------------------------------------------------------------- /src/pages/components/masonry.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/masonry.astro -------------------------------------------------------------------------------- /src/pages/components/menu.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/menu.astro -------------------------------------------------------------------------------- /src/pages/components/modal.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/modal.astro -------------------------------------------------------------------------------- /src/pages/components/otp-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/otp-input.astro -------------------------------------------------------------------------------- /src/pages/components/pagination.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/pagination.astro -------------------------------------------------------------------------------- /src/pages/components/popover.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/popover.astro -------------------------------------------------------------------------------- /src/pages/components/progress.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/progress.astro -------------------------------------------------------------------------------- /src/pages/components/radio.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/radio.astro -------------------------------------------------------------------------------- /src/pages/components/range-slider.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/range-slider.astro -------------------------------------------------------------------------------- /src/pages/components/rating.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/rating.astro -------------------------------------------------------------------------------- /src/pages/components/ribbon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/ribbon.astro -------------------------------------------------------------------------------- /src/pages/components/select.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/select.astro -------------------------------------------------------------------------------- /src/pages/components/sheet.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/sheet.astro -------------------------------------------------------------------------------- /src/pages/components/sidebar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/sidebar.astro -------------------------------------------------------------------------------- /src/pages/components/skeleton.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/skeleton.astro -------------------------------------------------------------------------------- /src/pages/components/slider.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/slider.astro -------------------------------------------------------------------------------- /src/pages/components/speed-dial.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/speed-dial.astro -------------------------------------------------------------------------------- /src/pages/components/spinner.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/spinner.astro -------------------------------------------------------------------------------- /src/pages/components/spoiler.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/spoiler.astro -------------------------------------------------------------------------------- /src/pages/components/stepper.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/stepper.astro -------------------------------------------------------------------------------- /src/pages/components/switch.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/switch.astro -------------------------------------------------------------------------------- /src/pages/components/table.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/table.astro -------------------------------------------------------------------------------- /src/pages/components/tabs.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/tabs.astro -------------------------------------------------------------------------------- /src/pages/components/textarea.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/textarea.astro -------------------------------------------------------------------------------- /src/pages/components/theme-switcher.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/theme-switcher.astro -------------------------------------------------------------------------------- /src/pages/components/timeline.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/timeline.astro -------------------------------------------------------------------------------- /src/pages/components/toast.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/toast.astro -------------------------------------------------------------------------------- /src/pages/components/tooltip.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/components/tooltip.astro -------------------------------------------------------------------------------- /src/pages/css/resets.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/css/resets.astro -------------------------------------------------------------------------------- /src/pages/css/themes.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/css/themes.astro -------------------------------------------------------------------------------- /src/pages/css/utilities.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/css/utilities.astro -------------------------------------------------------------------------------- /src/pages/examples/astro.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/examples/astro.astro -------------------------------------------------------------------------------- /src/pages/examples/react.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/examples/react.astro -------------------------------------------------------------------------------- /src/pages/examples/svelte.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/examples/svelte.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/react.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/react.astro -------------------------------------------------------------------------------- /src/pages/svelte.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/svelte.astro -------------------------------------------------------------------------------- /src/pages/templates/authentication/astro.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/authentication/astro.astro -------------------------------------------------------------------------------- /src/pages/templates/authentication/react.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/authentication/react.astro -------------------------------------------------------------------------------- /src/pages/templates/authentication/svelte.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/authentication/svelte.astro -------------------------------------------------------------------------------- /src/pages/templates/blog/astro.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/blog/astro.astro -------------------------------------------------------------------------------- /src/pages/templates/blog/example.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/blog/example.astro -------------------------------------------------------------------------------- /src/pages/templates/blog/react.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/blog/react.astro -------------------------------------------------------------------------------- /src/pages/templates/blog/svelte.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/blog/svelte.astro -------------------------------------------------------------------------------- /src/pages/templates/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/index.astro -------------------------------------------------------------------------------- /src/pages/templates/portfolio/astro.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/portfolio/astro.astro -------------------------------------------------------------------------------- /src/pages/templates/portfolio/example.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/portfolio/example.astro -------------------------------------------------------------------------------- /src/pages/templates/portfolio/react.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/portfolio/react.astro -------------------------------------------------------------------------------- /src/pages/templates/portfolio/svelte.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/portfolio/svelte.astro -------------------------------------------------------------------------------- /src/pages/templates/product-page/astro.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/product-page/astro.astro -------------------------------------------------------------------------------- /src/pages/templates/product-page/example.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/product-page/example.astro -------------------------------------------------------------------------------- /src/pages/templates/product-page/react.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/product-page/react.astro -------------------------------------------------------------------------------- /src/pages/templates/product-page/svelte.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/pages/templates/product-page/svelte.astro -------------------------------------------------------------------------------- /src/playground/ReactPlayground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/playground/ReactPlayground.tsx -------------------------------------------------------------------------------- /src/playground/SveltePlayground.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/playground/SveltePlayground.svelte -------------------------------------------------------------------------------- /src/playground/playground.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/playground/playground.module.scss -------------------------------------------------------------------------------- /src/scss/config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/config.scss -------------------------------------------------------------------------------- /src/scss/config/color-palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/config/color-palette.scss -------------------------------------------------------------------------------- /src/scss/config/css-values.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/config/css-values.scss -------------------------------------------------------------------------------- /src/scss/config/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/config/layout.scss -------------------------------------------------------------------------------- /src/scss/config/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/config/mixins.scss -------------------------------------------------------------------------------- /src/scss/config/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/config/typography.scss -------------------------------------------------------------------------------- /src/scss/config/variables.scss: -------------------------------------------------------------------------------- 1 | @use 'webcore.config.scss' as *; 2 | 3 | $disableAnimations: false !default; 4 | -------------------------------------------------------------------------------- /src/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/global.scss -------------------------------------------------------------------------------- /src/scss/global/breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/global/breakpoints.scss -------------------------------------------------------------------------------- /src/scss/global/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/global/scrollbar.scss -------------------------------------------------------------------------------- /src/scss/global/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/global/theme.scss -------------------------------------------------------------------------------- /src/scss/global/tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/global/tooltip.scss -------------------------------------------------------------------------------- /src/scss/global/utility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/global/utility.scss -------------------------------------------------------------------------------- /src/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/index.scss -------------------------------------------------------------------------------- /src/scss/resets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/resets.scss -------------------------------------------------------------------------------- /src/scss/setup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/scss/setup.scss -------------------------------------------------------------------------------- /src/static/Box.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/static/Box.astro -------------------------------------------------------------------------------- /src/static/Box.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/static/Box.svelte -------------------------------------------------------------------------------- /src/static/Box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/static/Box.tsx -------------------------------------------------------------------------------- /src/static/CardWrapper.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/static/CardWrapper.astro -------------------------------------------------------------------------------- /src/static/CollapsibleTable.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/static/CollapsibleTable.astro -------------------------------------------------------------------------------- /src/static/ComponentWrapper.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/static/ComponentWrapper.astro -------------------------------------------------------------------------------- /src/static/Examples.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/static/Examples.astro -------------------------------------------------------------------------------- /src/static/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/static/Layout.astro -------------------------------------------------------------------------------- /src/static/Link.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/static/Link.astro -------------------------------------------------------------------------------- /src/static/PlaceholderText.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/static/PlaceholderText.astro -------------------------------------------------------------------------------- /src/static/box.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/static/box.module.scss -------------------------------------------------------------------------------- /src/templates/Authentication/Authentication.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/Authentication/Authentication.tsx -------------------------------------------------------------------------------- /src/templates/Authentication/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/Authentication/authentication.ts -------------------------------------------------------------------------------- /src/templates/Blog/Blog.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/Blog/Blog.astro -------------------------------------------------------------------------------- /src/templates/Blog/Blog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/Blog/Blog.svelte -------------------------------------------------------------------------------- /src/templates/Blog/Blog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/Blog/Blog.tsx -------------------------------------------------------------------------------- /src/templates/Blog/blog.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/Blog/blog.module.scss -------------------------------------------------------------------------------- /src/templates/Blog/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/Blog/blog.ts -------------------------------------------------------------------------------- /src/templates/Portfolio/Portfolio.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/Portfolio/Portfolio.astro -------------------------------------------------------------------------------- /src/templates/Portfolio/Portfolio.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/Portfolio/Portfolio.svelte -------------------------------------------------------------------------------- /src/templates/Portfolio/Portfolio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/Portfolio/Portfolio.tsx -------------------------------------------------------------------------------- /src/templates/Portfolio/portfolio.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/Portfolio/portfolio.module.scss -------------------------------------------------------------------------------- /src/templates/Portfolio/portfolio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/Portfolio/portfolio.ts -------------------------------------------------------------------------------- /src/templates/ProductPage/ProductPage.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/ProductPage/ProductPage.astro -------------------------------------------------------------------------------- /src/templates/ProductPage/ProductPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/ProductPage/ProductPage.svelte -------------------------------------------------------------------------------- /src/templates/ProductPage/ProductPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/ProductPage/ProductPage.tsx -------------------------------------------------------------------------------- /src/templates/ProductPage/productPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/templates/ProductPage/productPage.ts -------------------------------------------------------------------------------- /src/tests/e2e/Playwright.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/Playwright.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/author.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/author.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/avatarWithRating.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/avatarWithRating.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/blogCard.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/blogCard.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/customIcon.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/customIcon.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/deviceMockup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/deviceMockup.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/errorPage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/errorPage.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/expandableTable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/expandableTable.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/faq.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/faq.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/form.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/form.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/gridWithIcons.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/gridWithIcons.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/hero.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/hero.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/iconList.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/iconList.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/maintenance.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/maintenance.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/settingCard.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/settingCard.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/signUp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/signUp.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/socialProof.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/socialProof.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/socials.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/socials.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/team.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/team.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/tiles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/tiles.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/blocks/userWithRating.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/blocks/userWithRating.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/accordion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/accordion.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/alert.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/alert.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/aspectRatio.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/aspectRatio.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/avatar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/avatar.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/badge.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/badge.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/banner.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/banner.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/breadcrumb.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/breadcrumb.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/button.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/button.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/card.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/card.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/carousel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/carousel.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/checkbox.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/checkbox.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/collapsible.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/collapsible.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/copy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/copy.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/counter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/counter.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/dataTable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/dataTable.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/flex.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/flex.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/footer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/footer.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/grid.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/grid.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/group.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/group.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/icon.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/icon.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/input.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/input.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/kbd.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/kbd.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/list.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/list.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/masonry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/masonry.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/menu.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/menu.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/otpInput.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/otpInput.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/pagination.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/pagination.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/progress.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/progress.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/radio.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/radio.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/rating.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/rating.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/ribbon.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/ribbon.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/select.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/select.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/sidebar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/sidebar.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/skeleton.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/skeleton.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/slider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/slider.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/speedDial.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/speedDial.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/spinner.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/spinner.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/spoiler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/spoiler.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/stepper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/stepper.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/switch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/switch.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/table.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/table.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/tabs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/tabs.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/textarea.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/textarea.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/themeSwitcher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/themeSwitcher.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/components/timeline.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/components/timeline.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/pages/blocks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/pages/blocks.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/pages/home.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/pages/home.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/pages/reactPlayground.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/pages/reactPlayground.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/pages/resets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/pages/resets.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/pages/sveltePlayground.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/pages/sveltePlayground.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/pages/utilities.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/pages/utilities.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/accordion.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/accordion.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/alert.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/alert.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/aspectRatio.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/aspectRatio.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/author.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/author.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/avatar.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/avatar.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/badge.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/badge.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/banner.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/banner.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/blocks.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/blocks.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/blog.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/blog.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/blogCard.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/blogCard.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/breadcrumb.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/breadcrumb.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/button.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/button.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/card.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/card.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/carousel.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/carousel.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/checkbox.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/checkbox.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/collapsible.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/collapsible.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/copy.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/copy.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/counter.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/counter.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/customIcon.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/customIcon.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/dataTable.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/dataTable.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/errorPage.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/errorPage.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/faq.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/faq.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/flex.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/flex.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/footer.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/footer.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/form.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/form.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/grid.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/grid.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/group.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/group.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/hero.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/hero.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/home.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/home.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/icon.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/icon.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/iconList.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/iconList.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/input.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/input.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/kbd.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/kbd.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/list.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/list.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/masonry.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/masonry.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/menu.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/menu.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/otpInput.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/otpInput.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/portfolio.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/portfolio.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/progress.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/progress.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/radio.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/radio.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/rating.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/rating.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/resets.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/resets.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/ribbon.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/ribbon.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/select.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/select.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/sidebar.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/sidebar.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/signUp.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/signUp.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/skeleton.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/skeleton.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/slider.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/slider.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/socials.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/socials.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/speedDial.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/speedDial.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/spinner.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/spinner.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/spoiler.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/spoiler.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/stepper.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/stepper.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/switch.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/switch.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/table.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/table.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/tabs.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/tabs.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/team.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/team.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/textarea.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/textarea.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/tiles.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/tiles.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/timeline.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/timeline.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/snapshots/utilities.test.ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/snapshots/utilities.test.ts.png -------------------------------------------------------------------------------- /src/tests/e2e/templates/blog.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/templates/blog.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/templates/portfolio.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/templates/portfolio.test.ts -------------------------------------------------------------------------------- /src/tests/e2e/templates/productPage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/e2e/templates/productPage.test.ts -------------------------------------------------------------------------------- /src/tests/unit/DOMUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/DOMUtils.test.ts -------------------------------------------------------------------------------- /src/tests/unit/bodyFreeze.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/bodyFreeze.test.ts -------------------------------------------------------------------------------- /src/tests/unit/classNames.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/classNames.test.ts -------------------------------------------------------------------------------- /src/tests/unit/context.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/context.test.ts -------------------------------------------------------------------------------- /src/tests/unit/cookies.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/cookies.test.ts -------------------------------------------------------------------------------- /src/tests/unit/debounce.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/debounce.test.ts -------------------------------------------------------------------------------- /src/tests/unit/event.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/event.test.ts -------------------------------------------------------------------------------- /src/tests/unit/getBreakpoint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/getBreakpoint.test.ts -------------------------------------------------------------------------------- /src/tests/unit/getLayoutClasses.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/getLayoutClasses.test.ts -------------------------------------------------------------------------------- /src/tests/unit/interpolate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/interpolate.test.ts -------------------------------------------------------------------------------- /src/tests/unit/isOneOf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/isOneOf.test.ts -------------------------------------------------------------------------------- /src/tests/unit/modal.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/modal.test.ts -------------------------------------------------------------------------------- /src/tests/unit/popover.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/popover.test.ts -------------------------------------------------------------------------------- /src/tests/unit/scss.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/scss.test.js -------------------------------------------------------------------------------- /src/tests/unit/scss/background.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/scss/background.test.scss -------------------------------------------------------------------------------- /src/tests/unit/scss/border-radius.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/scss/border-radius.test.scss -------------------------------------------------------------------------------- /src/tests/unit/scss/border.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/scss/border.test.scss -------------------------------------------------------------------------------- /src/tests/unit/scss/layer.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/scss/layer.test.scss -------------------------------------------------------------------------------- /src/tests/unit/scss/layout.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/scss/layout.test.scss -------------------------------------------------------------------------------- /src/tests/unit/scss/media.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/scss/media.test.scss -------------------------------------------------------------------------------- /src/tests/unit/scss/position.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/scss/position.test.scss -------------------------------------------------------------------------------- /src/tests/unit/scss/size.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/scss/size.test.scss -------------------------------------------------------------------------------- /src/tests/unit/scss/transition.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/scss/transition.test.scss -------------------------------------------------------------------------------- /src/tests/unit/scss/typography.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/scss/typography.test.scss -------------------------------------------------------------------------------- /src/tests/unit/scss/utility.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/scss/utility.test.scss -------------------------------------------------------------------------------- /src/tests/unit/scss/visibility.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/scss/visibility.test.scss -------------------------------------------------------------------------------- /src/tests/unit/toast.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/toast.test.ts -------------------------------------------------------------------------------- /src/tests/unit/useForm.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/tests/unit/useForm.test.ts -------------------------------------------------------------------------------- /src/utils/DOMUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/DOMUtils.ts -------------------------------------------------------------------------------- /src/utils/bodyFreeze.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/bodyFreeze.ts -------------------------------------------------------------------------------- /src/utils/classNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/classNames.ts -------------------------------------------------------------------------------- /src/utils/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/context.ts -------------------------------------------------------------------------------- /src/utils/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/cookies.ts -------------------------------------------------------------------------------- /src/utils/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/debounce.ts -------------------------------------------------------------------------------- /src/utils/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/event.ts -------------------------------------------------------------------------------- /src/utils/getBreakpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/getBreakpoint.ts -------------------------------------------------------------------------------- /src/utils/getLayoutClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/getLayoutClasses.ts -------------------------------------------------------------------------------- /src/utils/interpolate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/interpolate.ts -------------------------------------------------------------------------------- /src/utils/isOneOf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/isOneOf.ts -------------------------------------------------------------------------------- /src/utils/modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/modal.ts -------------------------------------------------------------------------------- /src/utils/popover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/popover.ts -------------------------------------------------------------------------------- /src/utils/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/src/utils/toast.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontendland/webcoreui/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest.setup.ts: -------------------------------------------------------------------------------- 1 | import { vi } from 'vitest' 2 | 3 | vi.useFakeTimers() 4 | -------------------------------------------------------------------------------- /webcore.config.scss: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------