@kala-ui/react 0.0.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +110 -0
- package/LICENSE +21 -0
- package/README.md +336 -0
- package/dist/src/__tests__/button.test.d.ts +2 -0
- package/dist/src/__tests__/button.test.d.ts.map +1 -0
- package/dist/src/__tests__/button.test.js +66 -0
- package/dist/src/__tests__/button.test.js.map +1 -0
- package/dist/src/__tests__/setup.d.ts +2 -0
- package/dist/src/__tests__/setup.d.ts.map +1 -0
- package/dist/src/__tests__/setup.js +34 -0
- package/dist/src/__tests__/setup.js.map +1 -0
- package/dist/src/__tests__/utils.test.d.ts +2 -0
- package/dist/src/__tests__/utils.test.d.ts.map +1 -0
- package/dist/src/__tests__/utils.test.js +38 -0
- package/dist/src/__tests__/utils.test.js.map +1 -0
- package/dist/src/components/accordion/accordion-skeleton.d.ts +45 -0
- package/dist/src/components/accordion/accordion-skeleton.d.ts.map +1 -0
- package/dist/src/components/accordion/accordion-skeleton.js +25 -0
- package/dist/src/components/accordion/accordion-skeleton.js.map +1 -0
- package/dist/src/components/accordion/accordion-skeleton.test.d.ts +2 -0
- package/dist/src/components/accordion/accordion-skeleton.test.d.ts.map +1 -0
- package/dist/src/components/accordion/accordion-skeleton.test.js +62 -0
- package/dist/src/components/accordion/accordion-skeleton.test.js.map +1 -0
- package/dist/src/components/accordion/accordion.d.ts +12 -0
- package/dist/src/components/accordion/accordion.d.ts.map +1 -0
- package/dist/src/components/accordion/accordion.js +43 -0
- package/dist/src/components/accordion/accordion.js.map +1 -0
- package/dist/src/components/accordion/accordion.stories.d.ts +19 -0
- package/dist/src/components/accordion/accordion.stories.d.ts.map +1 -0
- package/dist/src/components/accordion/accordion.stories.js +52 -0
- package/dist/src/components/accordion/accordion.stories.js.map +1 -0
- package/dist/src/components/accordion/accordion.test.d.ts +2 -0
- package/dist/src/components/accordion/accordion.test.d.ts.map +1 -0
- package/dist/src/components/accordion/accordion.test.js +39 -0
- package/dist/src/components/accordion/accordion.test.js.map +1 -0
- package/dist/src/components/accordion/index.d.ts +4 -0
- package/dist/src/components/accordion/index.d.ts.map +1 -0
- package/dist/src/components/accordion/index.js +3 -0
- package/dist/src/components/accordion/index.js.map +1 -0
- package/dist/src/components/alert/alert-skeleton.d.ts +32 -0
- package/dist/src/components/alert/alert-skeleton.d.ts.map +1 -0
- package/dist/src/components/alert/alert-skeleton.js +29 -0
- package/dist/src/components/alert/alert-skeleton.js.map +1 -0
- package/dist/src/components/alert/alert.d.ts +11 -0
- package/dist/src/components/alert/alert.d.ts.map +1 -0
- package/dist/src/components/alert/alert.js +65 -0
- package/dist/src/components/alert/alert.js.map +1 -0
- package/dist/src/components/alert/alert.stories.d.ts +22 -0
- package/dist/src/components/alert/alert.stories.d.ts.map +1 -0
- package/dist/src/components/alert/alert.stories.js +56 -0
- package/dist/src/components/alert/alert.stories.js.map +1 -0
- package/dist/src/components/alert/alert.test.d.ts +2 -0
- package/dist/src/components/alert/alert.test.d.ts.map +1 -0
- package/dist/src/components/alert/alert.test.js +44 -0
- package/dist/src/components/alert/alert.test.js.map +1 -0
- package/dist/src/components/alert/alert.types.d.ts +13 -0
- package/dist/src/components/alert/alert.types.d.ts.map +1 -0
- package/dist/src/components/alert/alert.types.js +2 -0
- package/dist/src/components/alert/alert.types.js.map +1 -0
- package/dist/src/components/alert/index.d.ts +4 -0
- package/dist/src/components/alert/index.d.ts.map +1 -0
- package/dist/src/components/alert/index.js +3 -0
- package/dist/src/components/alert/index.js.map +1 -0
- package/dist/src/components/alert-dialog/alert-dialog.d.ts +18 -0
- package/dist/src/components/alert-dialog/alert-dialog.d.ts.map +1 -0
- package/dist/src/components/alert-dialog/alert-dialog.js +43 -0
- package/dist/src/components/alert-dialog/alert-dialog.js.map +1 -0
- package/dist/src/components/alert-dialog/alert-dialog.stories.d.ts +16 -0
- package/dist/src/components/alert-dialog/alert-dialog.stories.d.ts.map +1 -0
- package/dist/src/components/alert-dialog/alert-dialog.stories.js +22 -0
- package/dist/src/components/alert-dialog/alert-dialog.stories.js.map +1 -0
- package/dist/src/components/alert-dialog/alert-dialog.test.d.ts +2 -0
- package/dist/src/components/alert-dialog/alert-dialog.test.d.ts.map +1 -0
- package/dist/src/components/alert-dialog/alert-dialog.test.js +55 -0
- package/dist/src/components/alert-dialog/alert-dialog.test.js.map +1 -0
- package/dist/src/components/alert-dialog/index.d.ts +2 -0
- package/dist/src/components/alert-dialog/index.d.ts.map +1 -0
- package/dist/src/components/alert-dialog/index.js +2 -0
- package/dist/src/components/alert-dialog/index.js.map +1 -0
- package/dist/src/components/aspect-ratio/aspect-ratio.d.ts +14 -0
- package/dist/src/components/aspect-ratio/aspect-ratio.d.ts.map +1 -0
- package/dist/src/components/aspect-ratio/aspect-ratio.js +15 -0
- package/dist/src/components/aspect-ratio/aspect-ratio.js.map +1 -0
- package/dist/src/components/aspect-ratio/aspect-ratio.stories.d.ts +22 -0
- package/dist/src/components/aspect-ratio/aspect-ratio.stories.d.ts.map +1 -0
- package/dist/src/components/aspect-ratio/aspect-ratio.stories.js +48 -0
- package/dist/src/components/aspect-ratio/aspect-ratio.stories.js.map +1 -0
- package/dist/src/components/aspect-ratio/aspect-ratio.test.d.ts +2 -0
- package/dist/src/components/aspect-ratio/aspect-ratio.test.d.ts.map +1 -0
- package/dist/src/components/aspect-ratio/aspect-ratio.test.js +47 -0
- package/dist/src/components/aspect-ratio/aspect-ratio.test.js.map +1 -0
- package/dist/src/components/aspect-ratio/index.d.ts +2 -0
- package/dist/src/components/aspect-ratio/index.d.ts.map +1 -0
- package/dist/src/components/aspect-ratio/index.js +2 -0
- package/dist/src/components/aspect-ratio/index.js.map +1 -0
- package/dist/src/components/avatar/avatar.d.ts +28 -0
- package/dist/src/components/avatar/avatar.d.ts.map +1 -0
- package/dist/src/components/avatar/avatar.js +54 -0
- package/dist/src/components/avatar/avatar.js.map +1 -0
- package/dist/src/components/avatar/avatar.stories.d.ts +20 -0
- package/dist/src/components/avatar/avatar.stories.d.ts.map +1 -0
- package/dist/src/components/avatar/avatar.stories.js +47 -0
- package/dist/src/components/avatar/avatar.stories.js.map +1 -0
- package/dist/src/components/avatar/avatar.test.d.ts +2 -0
- package/dist/src/components/avatar/avatar.test.d.ts.map +1 -0
- package/dist/src/components/avatar/avatar.test.js +39 -0
- package/dist/src/components/avatar/avatar.test.js.map +1 -0
- package/dist/src/components/avatar/index.d.ts +2 -0
- package/dist/src/components/avatar/index.d.ts.map +1 -0
- package/dist/src/components/avatar/index.js +2 -0
- package/dist/src/components/avatar/index.js.map +1 -0
- package/dist/src/components/badge/badge.d.ts +12 -0
- package/dist/src/components/badge/badge.d.ts.map +1 -0
- package/dist/src/components/badge/badge.js +19 -0
- package/dist/src/components/badge/badge.js.map +1 -0
- package/dist/src/components/badge/badge.stories.d.ts +27 -0
- package/dist/src/components/badge/badge.stories.d.ts.map +1 -0
- package/dist/src/components/badge/badge.stories.js +54 -0
- package/dist/src/components/badge/badge.stories.js.map +1 -0
- package/dist/src/components/badge/badge.test.d.ts +2 -0
- package/dist/src/components/badge/badge.test.d.ts.map +1 -0
- package/dist/src/components/badge/badge.test.js +68 -0
- package/dist/src/components/badge/badge.test.js.map +1 -0
- package/dist/src/components/badge/index.d.ts +2 -0
- package/dist/src/components/badge/index.d.ts.map +1 -0
- package/dist/src/components/badge/index.js +2 -0
- package/dist/src/components/badge/index.js.map +1 -0
- package/dist/src/components/banner/__tests__/banner.test.d.ts +5 -0
- package/dist/src/components/banner/__tests__/banner.test.d.ts.map +1 -0
- package/dist/src/components/banner/__tests__/banner.test.js +62 -0
- package/dist/src/components/banner/__tests__/banner.test.js.map +1 -0
- package/dist/src/components/banner/banner-skeleton.d.ts +32 -0
- package/dist/src/components/banner/banner-skeleton.d.ts.map +1 -0
- package/dist/src/components/banner/banner-skeleton.js +28 -0
- package/dist/src/components/banner/banner-skeleton.js.map +1 -0
- package/dist/src/components/banner/banner.d.ts +36 -0
- package/dist/src/components/banner/banner.d.ts.map +1 -0
- package/dist/src/components/banner/banner.js +44 -0
- package/dist/src/components/banner/banner.js.map +1 -0
- package/dist/src/components/banner/banner.stories.d.ts +35 -0
- package/dist/src/components/banner/banner.stories.d.ts.map +1 -0
- package/dist/src/components/banner/banner.stories.js +95 -0
- package/dist/src/components/banner/banner.stories.js.map +1 -0
- package/dist/src/components/banner/banner.test.d.ts +2 -0
- package/dist/src/components/banner/banner.test.d.ts.map +1 -0
- package/dist/src/components/banner/banner.test.js +86 -0
- package/dist/src/components/banner/banner.test.js.map +1 -0
- package/dist/src/components/banner/banner.types.d.ts +21 -0
- package/dist/src/components/banner/banner.types.d.ts.map +1 -0
- package/dist/src/components/banner/banner.types.js +2 -0
- package/dist/src/components/banner/banner.types.js.map +1 -0
- package/dist/src/components/banner/index.d.ts +4 -0
- package/dist/src/components/banner/index.d.ts.map +1 -0
- package/dist/src/components/banner/index.js +3 -0
- package/dist/src/components/banner/index.js.map +1 -0
- package/dist/src/components/breadcrumbs/__tests__/breadcrumbs.test.d.ts +2 -0
- package/dist/src/components/breadcrumbs/__tests__/breadcrumbs.test.d.ts.map +1 -0
- package/dist/src/components/breadcrumbs/__tests__/breadcrumbs.test.js +119 -0
- package/dist/src/components/breadcrumbs/__tests__/breadcrumbs.test.js.map +1 -0
- package/dist/src/components/breadcrumbs/breadcrumbs-skeleton.d.ts +45 -0
- package/dist/src/components/breadcrumbs/breadcrumbs-skeleton.d.ts.map +1 -0
- package/dist/src/components/breadcrumbs/breadcrumbs-skeleton.js +24 -0
- package/dist/src/components/breadcrumbs/breadcrumbs-skeleton.js.map +1 -0
- package/dist/src/components/breadcrumbs/breadcrumbs-skeleton.test.d.ts +2 -0
- package/dist/src/components/breadcrumbs/breadcrumbs-skeleton.test.d.ts.map +1 -0
- package/dist/src/components/breadcrumbs/breadcrumbs-skeleton.test.js +55 -0
- package/dist/src/components/breadcrumbs/breadcrumbs-skeleton.test.js.map +1 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.d.ts +13 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.d.ts.map +1 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.js +26 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.js.map +1 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.stories.d.ts +14 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.stories.d.ts.map +1 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.stories.js +103 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.stories.js.map +1 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.test.d.ts +2 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.test.d.ts.map +1 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.test.js +112 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.test.js.map +1 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.types.d.ts +12 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.types.d.ts.map +1 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.types.js +2 -0
- package/dist/src/components/breadcrumbs/breadcrumbs.types.js.map +1 -0
- package/dist/src/components/breadcrumbs/index.d.ts +4 -0
- package/dist/src/components/breadcrumbs/index.d.ts.map +1 -0
- package/dist/src/components/breadcrumbs/index.js +3 -0
- package/dist/src/components/breadcrumbs/index.js.map +1 -0
- package/dist/src/components/button/button.d.ts +15 -0
- package/dist/src/components/button/button.d.ts.map +1 -0
- package/dist/src/components/button/button.js +21 -0
- package/dist/src/components/button/button.js.map +1 -0
- package/dist/src/components/button/button.stories.d.ts +14 -0
- package/dist/src/components/button/button.stories.d.ts.map +1 -0
- package/dist/src/components/button/button.stories.js +99 -0
- package/dist/src/components/button/button.stories.js.map +1 -0
- package/dist/src/components/button/button.test.d.ts +2 -0
- package/dist/src/components/button/button.test.d.ts.map +1 -0
- package/dist/src/components/button/button.test.js +90 -0
- package/dist/src/components/button/button.test.js.map +1 -0
- package/dist/src/components/button/button.types.d.ts +15 -0
- package/dist/src/components/button/button.types.d.ts.map +1 -0
- package/dist/src/components/button/button.types.js +2 -0
- package/dist/src/components/button/button.types.js.map +1 -0
- package/dist/src/components/button/index.d.ts +3 -0
- package/dist/src/components/button/index.d.ts.map +1 -0
- package/dist/src/components/button/index.js +2 -0
- package/dist/src/components/button/index.js.map +1 -0
- package/dist/src/components/button-group/button-group.d.ts +30 -0
- package/dist/src/components/button-group/button-group.d.ts.map +1 -0
- package/dist/src/components/button-group/button-group.js +48 -0
- package/dist/src/components/button-group/button-group.js.map +1 -0
- package/dist/src/components/button-group/button-group.stories.d.ts +20 -0
- package/dist/src/components/button-group/button-group.stories.d.ts.map +1 -0
- package/dist/src/components/button-group/button-group.stories.js +83 -0
- package/dist/src/components/button-group/button-group.stories.js.map +1 -0
- package/dist/src/components/button-group/button-group.test.d.ts +2 -0
- package/dist/src/components/button-group/button-group.test.d.ts.map +1 -0
- package/dist/src/components/button-group/button-group.test.js +180 -0
- package/dist/src/components/button-group/button-group.test.js.map +1 -0
- package/dist/src/components/button-group/index.d.ts +2 -0
- package/dist/src/components/button-group/index.d.ts.map +1 -0
- package/dist/src/components/button-group/index.js +2 -0
- package/dist/src/components/button-group/index.js.map +1 -0
- package/dist/src/components/calendar/calendar-skeleton.d.ts +45 -0
- package/dist/src/components/calendar/calendar-skeleton.d.ts.map +1 -0
- package/dist/src/components/calendar/calendar-skeleton.js +24 -0
- package/dist/src/components/calendar/calendar-skeleton.js.map +1 -0
- package/dist/src/components/calendar/calendar-skeleton.test.d.ts +2 -0
- package/dist/src/components/calendar/calendar-skeleton.test.d.ts.map +1 -0
- package/dist/src/components/calendar/calendar-skeleton.test.js +64 -0
- package/dist/src/components/calendar/calendar-skeleton.test.js.map +1 -0
- package/dist/src/components/calendar/calendar.d.ts +13 -0
- package/dist/src/components/calendar/calendar.d.ts.map +1 -0
- package/dist/src/components/calendar/calendar.js +84 -0
- package/dist/src/components/calendar/calendar.js.map +1 -0
- package/dist/src/components/calendar/calendar.stories.d.ts +41 -0
- package/dist/src/components/calendar/calendar.stories.d.ts.map +1 -0
- package/dist/src/components/calendar/calendar.stories.js +112 -0
- package/dist/src/components/calendar/calendar.stories.js.map +1 -0
- package/dist/src/components/calendar/calendar.test.d.ts +2 -0
- package/dist/src/components/calendar/calendar.test.d.ts.map +1 -0
- package/dist/src/components/calendar/calendar.test.js +240 -0
- package/dist/src/components/calendar/calendar.test.js.map +1 -0
- package/dist/src/components/calendar/calendar.types.d.ts +11 -0
- package/dist/src/components/calendar/calendar.types.d.ts.map +1 -0
- package/dist/src/components/calendar/calendar.types.js +2 -0
- package/dist/src/components/calendar/calendar.types.js.map +1 -0
- package/dist/src/components/calendar/index.d.ts +4 -0
- package/dist/src/components/calendar/index.d.ts.map +1 -0
- package/dist/src/components/calendar/index.js +3 -0
- package/dist/src/components/calendar/index.js.map +1 -0
- package/dist/src/components/card/card-skeleton.d.ts +32 -0
- package/dist/src/components/card/card-skeleton.d.ts.map +1 -0
- package/dist/src/components/card/card-skeleton.js +64 -0
- package/dist/src/components/card/card-skeleton.js.map +1 -0
- package/dist/src/components/card/card.d.ts +37 -0
- package/dist/src/components/card/card.d.ts.map +1 -0
- package/dist/src/components/card/card.js +86 -0
- package/dist/src/components/card/card.js.map +1 -0
- package/dist/src/components/card/card.stories.d.ts +27 -0
- package/dist/src/components/card/card.stories.d.ts.map +1 -0
- package/dist/src/components/card/card.stories.js +81 -0
- package/dist/src/components/card/card.stories.js.map +1 -0
- package/dist/src/components/card/card.test.d.ts +2 -0
- package/dist/src/components/card/card.test.d.ts.map +1 -0
- package/dist/src/components/card/card.test.js +26 -0
- package/dist/src/components/card/card.test.js.map +1 -0
- package/dist/src/components/card/card.types.d.ts +11 -0
- package/dist/src/components/card/card.types.d.ts.map +1 -0
- package/dist/src/components/card/card.types.js +2 -0
- package/dist/src/components/card/card.types.js.map +1 -0
- package/dist/src/components/card/index.d.ts +3 -0
- package/dist/src/components/card/index.d.ts.map +1 -0
- package/dist/src/components/card/index.js +3 -0
- package/dist/src/components/card/index.js.map +1 -0
- package/dist/src/components/charts/area-chart.d.ts +7 -0
- package/dist/src/components/charts/area-chart.d.ts.map +1 -0
- package/dist/src/components/charts/area-chart.js +165 -0
- package/dist/src/components/charts/area-chart.js.map +1 -0
- package/dist/src/components/charts/bar-chart.d.ts +7 -0
- package/dist/src/components/charts/bar-chart.d.ts.map +1 -0
- package/dist/src/components/charts/bar-chart.js +146 -0
- package/dist/src/components/charts/bar-chart.js.map +1 -0
- package/dist/src/components/charts/chart-skeleton.d.ts +37 -0
- package/dist/src/components/charts/chart-skeleton.d.ts.map +1 -0
- package/dist/src/components/charts/chart-skeleton.js +13 -0
- package/dist/src/components/charts/chart-skeleton.js.map +1 -0
- package/dist/src/components/charts/chart.d.ts +19 -0
- package/dist/src/components/charts/chart.d.ts.map +1 -0
- package/dist/src/components/charts/chart.js +21 -0
- package/dist/src/components/charts/chart.js.map +1 -0
- package/dist/src/components/charts/chart.stories.d.ts +62 -0
- package/dist/src/components/charts/chart.stories.d.ts.map +1 -0
- package/dist/src/components/charts/chart.stories.js +412 -0
- package/dist/src/components/charts/chart.stories.js.map +1 -0
- package/dist/src/components/charts/chart.test.d.ts +2 -0
- package/dist/src/components/charts/chart.test.d.ts.map +1 -0
- package/dist/src/components/charts/chart.test.js +83 -0
- package/dist/src/components/charts/chart.test.js.map +1 -0
- package/dist/src/components/charts/chart.types.d.ts +193 -0
- package/dist/src/components/charts/chart.types.d.ts.map +1 -0
- package/dist/src/components/charts/chart.types.js +6 -0
- package/dist/src/components/charts/chart.types.js.map +1 -0
- package/dist/src/components/charts/donut-chart.d.ts +8 -0
- package/dist/src/components/charts/donut-chart.d.ts.map +1 -0
- package/dist/src/components/charts/donut-chart.js +147 -0
- package/dist/src/components/charts/donut-chart.js.map +1 -0
- package/dist/src/components/charts/index.d.ts +15 -0
- package/dist/src/components/charts/index.d.ts.map +1 -0
- package/dist/src/components/charts/index.js +15 -0
- package/dist/src/components/charts/index.js.map +1 -0
- package/dist/src/components/charts/line-chart.d.ts +7 -0
- package/dist/src/components/charts/line-chart.d.ts.map +1 -0
- package/dist/src/components/charts/line-chart.js +151 -0
- package/dist/src/components/charts/line-chart.js.map +1 -0
- package/dist/src/components/charts/radial-bar-chart.d.ts +7 -0
- package/dist/src/components/charts/radial-bar-chart.d.ts.map +1 -0
- package/dist/src/components/charts/radial-bar-chart.js +111 -0
- package/dist/src/components/charts/radial-bar-chart.js.map +1 -0
- package/dist/src/components/charts/theme-utils.d.ts +71 -0
- package/dist/src/components/charts/theme-utils.d.ts.map +1 -0
- package/dist/src/components/charts/theme-utils.js +166 -0
- package/dist/src/components/charts/theme-utils.js.map +1 -0
- package/dist/src/components/charts/types.d.ts +193 -0
- package/dist/src/components/charts/types.d.ts.map +1 -0
- package/dist/src/components/charts/types.js +6 -0
- package/dist/src/components/charts/types.js.map +1 -0
- package/dist/src/components/charts/use-theme-aware-chart.d.ts +13 -0
- package/dist/src/components/charts/use-theme-aware-chart.d.ts.map +1 -0
- package/dist/src/components/charts/use-theme-aware-chart.js +67 -0
- package/dist/src/components/charts/use-theme-aware-chart.js.map +1 -0
- package/dist/src/components/charts/utils.d.ts +57 -0
- package/dist/src/components/charts/utils.d.ts.map +1 -0
- package/dist/src/components/charts/utils.js +135 -0
- package/dist/src/components/charts/utils.js.map +1 -0
- package/dist/src/components/checkbox/checkbox.d.ts +4 -0
- package/dist/src/components/checkbox/checkbox.d.ts.map +1 -0
- package/dist/src/components/checkbox/checkbox.js +15 -0
- package/dist/src/components/checkbox/checkbox.js.map +1 -0
- package/dist/src/components/checkbox/checkbox.stories.d.ts +28 -0
- package/dist/src/components/checkbox/checkbox.stories.d.ts.map +1 -0
- package/dist/src/components/checkbox/checkbox.stories.js +75 -0
- package/dist/src/components/checkbox/checkbox.stories.js.map +1 -0
- package/dist/src/components/checkbox/checkbox.test.d.ts +2 -0
- package/dist/src/components/checkbox/checkbox.test.d.ts.map +1 -0
- package/dist/src/components/checkbox/checkbox.test.js +51 -0
- package/dist/src/components/checkbox/checkbox.test.js.map +1 -0
- package/dist/src/components/checkbox/checkbox.types.d.ts +7 -0
- package/dist/src/components/checkbox/checkbox.types.d.ts.map +1 -0
- package/dist/src/components/checkbox/checkbox.types.js +2 -0
- package/dist/src/components/checkbox/checkbox.types.js.map +1 -0
- package/dist/src/components/checkbox/index.d.ts +3 -0
- package/dist/src/components/checkbox/index.d.ts.map +1 -0
- package/dist/src/components/checkbox/index.js +2 -0
- package/dist/src/components/checkbox/index.js.map +1 -0
- package/dist/src/components/combobox/combobox-skeleton.d.ts +42 -0
- package/dist/src/components/combobox/combobox-skeleton.d.ts.map +1 -0
- package/dist/src/components/combobox/combobox-skeleton.js +24 -0
- package/dist/src/components/combobox/combobox-skeleton.js.map +1 -0
- package/dist/src/components/combobox/combobox.d.ts +57 -0
- package/dist/src/components/combobox/combobox.d.ts.map +1 -0
- package/dist/src/components/combobox/combobox.js +26 -0
- package/dist/src/components/combobox/combobox.js.map +1 -0
- package/dist/src/components/combobox/combobox.stories.d.ts +31 -0
- package/dist/src/components/combobox/combobox.stories.d.ts.map +1 -0
- package/dist/src/components/combobox/combobox.stories.js +194 -0
- package/dist/src/components/combobox/combobox.stories.js.map +1 -0
- package/dist/src/components/combobox/combobox.test.d.ts +2 -0
- package/dist/src/components/combobox/combobox.test.d.ts.map +1 -0
- package/dist/src/components/combobox/combobox.test.js +132 -0
- package/dist/src/components/combobox/combobox.test.js.map +1 -0
- package/dist/src/components/combobox/combobox.types.d.ts +53 -0
- package/dist/src/components/combobox/combobox.types.d.ts.map +1 -0
- package/dist/src/components/combobox/combobox.types.js +2 -0
- package/dist/src/components/combobox/combobox.types.js.map +1 -0
- package/dist/src/components/combobox/index.d.ts +4 -0
- package/dist/src/components/combobox/index.d.ts.map +1 -0
- package/dist/src/components/combobox/index.js +3 -0
- package/dist/src/components/combobox/index.js.map +1 -0
- package/dist/src/components/command/command.d.ts +83 -0
- package/dist/src/components/command/command.d.ts.map +1 -0
- package/dist/src/components/command/command.js +30 -0
- package/dist/src/components/command/command.js.map +1 -0
- package/dist/src/components/command/command.stories.d.ts +43 -0
- package/dist/src/components/command/command.stories.d.ts.map +1 -0
- package/dist/src/components/command/command.stories.js +85 -0
- package/dist/src/components/command/command.stories.js.map +1 -0
- package/dist/src/components/command/command.test.d.ts +2 -0
- package/dist/src/components/command/command.test.d.ts.map +1 -0
- package/dist/src/components/command/command.test.js +139 -0
- package/dist/src/components/command/command.test.js.map +1 -0
- package/dist/src/components/command/index.d.ts +2 -0
- package/dist/src/components/command/index.d.ts.map +1 -0
- package/dist/src/components/command/index.js +2 -0
- package/dist/src/components/command/index.js.map +1 -0
- package/dist/src/components/data-table/column-filters.d.ts +15 -0
- package/dist/src/components/data-table/column-filters.d.ts.map +1 -0
- package/dist/src/components/data-table/column-filters.js +51 -0
- package/dist/src/components/data-table/column-filters.js.map +1 -0
- package/dist/src/components/data-table/column-header-filter.d.ts +14 -0
- package/dist/src/components/data-table/column-header-filter.d.ts.map +1 -0
- package/dist/src/components/data-table/column-header-filter.js +70 -0
- package/dist/src/components/data-table/column-header-filter.js.map +1 -0
- package/dist/src/components/data-table/data-table-skeleton.d.ts +50 -0
- package/dist/src/components/data-table/data-table-skeleton.d.ts.map +1 -0
- package/dist/src/components/data-table/data-table-skeleton.js +42 -0
- package/dist/src/components/data-table/data-table-skeleton.js.map +1 -0
- package/dist/src/components/data-table/data-table.d.ts +24 -0
- package/dist/src/components/data-table/data-table.d.ts.map +1 -0
- package/dist/src/components/data-table/data-table.js +311 -0
- package/dist/src/components/data-table/data-table.js.map +1 -0
- package/dist/src/components/data-table/data-table.stories.d.ts +123 -0
- package/dist/src/components/data-table/data-table.stories.d.ts.map +1 -0
- package/dist/src/components/data-table/data-table.stories.js +806 -0
- package/dist/src/components/data-table/data-table.stories.js.map +1 -0
- package/dist/src/components/data-table/data-table.test.d.ts +6 -0
- package/dist/src/components/data-table/data-table.test.d.ts.map +1 -0
- package/dist/src/components/data-table/data-table.test.js +335 -0
- package/dist/src/components/data-table/data-table.test.js.map +1 -0
- package/dist/src/components/data-table/data-table.types.d.ts +304 -0
- package/dist/src/components/data-table/data-table.types.d.ts.map +1 -0
- package/dist/src/components/data-table/data-table.types.js +6 -0
- package/dist/src/components/data-table/data-table.types.js.map +1 -0
- package/dist/src/components/data-table/index.d.ts +7 -0
- package/dist/src/components/data-table/index.d.ts.map +1 -0
- package/dist/src/components/data-table/index.js +6 -0
- package/dist/src/components/data-table/index.js.map +1 -0
- package/dist/src/components/data-table/types.d.ts +296 -0
- package/dist/src/components/data-table/types.d.ts.map +1 -0
- package/dist/src/components/data-table/types.js +6 -0
- package/dist/src/components/data-table/types.js.map +1 -0
- package/dist/src/components/data-table/useTableState.d.ts +28 -0
- package/dist/src/components/data-table/useTableState.d.ts.map +1 -0
- package/dist/src/components/data-table/useTableState.js +223 -0
- package/dist/src/components/data-table/useTableState.js.map +1 -0
- package/dist/src/components/date-picker/date-picker.d.ts +27 -0
- package/dist/src/components/date-picker/date-picker.d.ts.map +1 -0
- package/dist/src/components/date-picker/date-picker.js +22 -0
- package/dist/src/components/date-picker/date-picker.js.map +1 -0
- package/dist/src/components/date-picker/date-picker.stories.d.ts +44 -0
- package/dist/src/components/date-picker/date-picker.stories.d.ts.map +1 -0
- package/dist/src/components/date-picker/date-picker.stories.js +165 -0
- package/dist/src/components/date-picker/date-picker.stories.js.map +1 -0
- package/dist/src/components/date-picker/date-picker.test.d.ts +2 -0
- package/dist/src/components/date-picker/date-picker.test.d.ts.map +1 -0
- package/dist/src/components/date-picker/date-picker.test.js +247 -0
- package/dist/src/components/date-picker/date-picker.test.js.map +1 -0
- package/dist/src/components/date-picker/date-picker.types.d.ts +25 -0
- package/dist/src/components/date-picker/date-picker.types.d.ts.map +1 -0
- package/dist/src/components/date-picker/date-picker.types.js +2 -0
- package/dist/src/components/date-picker/date-picker.types.js.map +1 -0
- package/dist/src/components/date-picker/index.d.ts +3 -0
- package/dist/src/components/date-picker/index.d.ts.map +1 -0
- package/dist/src/components/date-picker/index.js +2 -0
- package/dist/src/components/date-picker/index.js.map +1 -0
- package/dist/src/components/design-system/category-section.d.ts +8 -0
- package/dist/src/components/design-system/category-section.d.ts.map +1 -0
- package/dist/src/components/design-system/category-section.js +7 -0
- package/dist/src/components/design-system/category-section.js.map +1 -0
- package/dist/src/components/design-system/component-preview-card.d.ts +8 -0
- package/dist/src/components/design-system/component-preview-card.d.ts.map +1 -0
- package/dist/src/components/design-system/component-preview-card.js +6 -0
- package/dist/src/components/design-system/component-preview-card.js.map +1 -0
- package/dist/src/components/design-system/design-system-utils.d.ts +15 -0
- package/dist/src/components/design-system/design-system-utils.d.ts.map +1 -0
- package/dist/src/components/design-system/design-system-utils.js +103 -0
- package/dist/src/components/design-system/design-system-utils.js.map +1 -0
- package/dist/src/components/design-system/overview.d.ts +2 -0
- package/dist/src/components/design-system/overview.d.ts.map +1 -0
- package/dist/src/components/design-system/overview.js +173 -0
- package/dist/src/components/design-system/overview.js.map +1 -0
- package/dist/src/components/design-system/phase-5-skeletons.stories.d.ts +29 -0
- package/dist/src/components/design-system/phase-5-skeletons.stories.d.ts.map +1 -0
- package/dist/src/components/design-system/phase-5-skeletons.stories.js +76 -0
- package/dist/src/components/design-system/phase-5-skeletons.stories.js.map +1 -0
- package/dist/src/components/design-system.stories.d.ts +15 -0
- package/dist/src/components/design-system.stories.d.ts.map +1 -0
- package/dist/src/components/design-system.stories.js +17 -0
- package/dist/src/components/design-system.stories.js.map +1 -0
- package/dist/src/components/dialog/dialog-skeleton.d.ts +45 -0
- package/dist/src/components/dialog/dialog-skeleton.d.ts.map +1 -0
- package/dist/src/components/dialog/dialog-skeleton.js +29 -0
- package/dist/src/components/dialog/dialog-skeleton.js.map +1 -0
- package/dist/src/components/dialog/dialog-skeleton.test.d.ts +2 -0
- package/dist/src/components/dialog/dialog-skeleton.test.d.ts.map +1 -0
- package/dist/src/components/dialog/dialog-skeleton.test.js +58 -0
- package/dist/src/components/dialog/dialog-skeleton.test.js.map +1 -0
- package/dist/src/components/dialog/dialog.d.ts +24 -0
- package/dist/src/components/dialog/dialog.d.ts.map +1 -0
- package/dist/src/components/dialog/dialog.js +46 -0
- package/dist/src/components/dialog/dialog.js.map +1 -0
- package/dist/src/components/dialog/dialog.stories.d.ts +18 -0
- package/dist/src/components/dialog/dialog.stories.d.ts.map +1 -0
- package/dist/src/components/dialog/dialog.stories.js +42 -0
- package/dist/src/components/dialog/dialog.stories.js.map +1 -0
- package/dist/src/components/dialog/dialog.test.d.ts +2 -0
- package/dist/src/components/dialog/dialog.test.d.ts.map +1 -0
- package/dist/src/components/dialog/dialog.test.js +45 -0
- package/dist/src/components/dialog/dialog.test.js.map +1 -0
- package/dist/src/components/dialog/index.d.ts +4 -0
- package/dist/src/components/dialog/index.d.ts.map +1 -0
- package/dist/src/components/dialog/index.js +3 -0
- package/dist/src/components/dialog/index.js.map +1 -0
- package/dist/src/components/dnd/dnd.d.ts +116 -0
- package/dist/src/components/dnd/dnd.d.ts.map +1 -0
- package/dist/src/components/dnd/dnd.js +157 -0
- package/dist/src/components/dnd/dnd.js.map +1 -0
- package/dist/src/components/dnd/dnd.stories.d.ts +27 -0
- package/dist/src/components/dnd/dnd.stories.d.ts.map +1 -0
- package/dist/src/components/dnd/dnd.stories.js +513 -0
- package/dist/src/components/dnd/dnd.stories.js.map +1 -0
- package/dist/src/components/dnd/dnd.test.d.ts +2 -0
- package/dist/src/components/dnd/dnd.test.d.ts.map +1 -0
- package/dist/src/components/dnd/dnd.test.js +142 -0
- package/dist/src/components/dnd/dnd.test.js.map +1 -0
- package/dist/src/components/dnd/index.d.ts +2 -0
- package/dist/src/components/dnd/index.d.ts.map +1 -0
- package/dist/src/components/dnd/index.js +2 -0
- package/dist/src/components/dnd/index.js.map +1 -0
- package/dist/src/components/drawer/drawer-skeleton.d.ts +33 -0
- package/dist/src/components/drawer/drawer-skeleton.d.ts.map +1 -0
- package/dist/src/components/drawer/drawer-skeleton.js +25 -0
- package/dist/src/components/drawer/drawer-skeleton.js.map +1 -0
- package/dist/src/components/drawer/drawer-skeleton.test.d.ts +2 -0
- package/dist/src/components/drawer/drawer-skeleton.test.d.ts.map +1 -0
- package/dist/src/components/drawer/drawer-skeleton.test.js +59 -0
- package/dist/src/components/drawer/drawer-skeleton.test.js.map +1 -0
- package/dist/src/components/drawer/drawer.d.ts +14 -0
- package/dist/src/components/drawer/drawer.d.ts.map +1 -0
- package/dist/src/components/drawer/drawer.js +45 -0
- package/dist/src/components/drawer/drawer.js.map +1 -0
- package/dist/src/components/drawer/drawer.stories.d.ts +16 -0
- package/dist/src/components/drawer/drawer.stories.d.ts.map +1 -0
- package/dist/src/components/drawer/drawer.stories.js +44 -0
- package/dist/src/components/drawer/drawer.stories.js.map +1 -0
- package/dist/src/components/drawer/drawer.test.d.ts +2 -0
- package/dist/src/components/drawer/drawer.test.d.ts.map +1 -0
- package/dist/src/components/drawer/drawer.test.js +11 -0
- package/dist/src/components/drawer/drawer.test.js.map +1 -0
- package/dist/src/components/drawer/index.d.ts +4 -0
- package/dist/src/components/drawer/index.d.ts.map +1 -0
- package/dist/src/components/drawer/index.js +3 -0
- package/dist/src/components/drawer/index.js.map +1 -0
- package/dist/src/components/dropdown-menu/dropdown-menu.d.ts +26 -0
- package/dist/src/components/dropdown-menu/dropdown-menu.d.ts.map +1 -0
- package/dist/src/components/dropdown-menu/dropdown-menu.js +53 -0
- package/dist/src/components/dropdown-menu/dropdown-menu.js.map +1 -0
- package/dist/src/components/dropdown-menu/dropdown-menu.stories.d.ts +19 -0
- package/dist/src/components/dropdown-menu/dropdown-menu.stories.d.ts.map +1 -0
- package/dist/src/components/dropdown-menu/dropdown-menu.stories.js +47 -0
- package/dist/src/components/dropdown-menu/dropdown-menu.stories.js.map +1 -0
- package/dist/src/components/dropdown-menu/dropdown-menu.test.d.ts +2 -0
- package/dist/src/components/dropdown-menu/dropdown-menu.test.d.ts.map +1 -0
- package/dist/src/components/dropdown-menu/dropdown-menu.test.js +47 -0
- package/dist/src/components/dropdown-menu/dropdown-menu.test.js.map +1 -0
- package/dist/src/components/dropdown-menu/index.d.ts +2 -0
- package/dist/src/components/dropdown-menu/index.d.ts.map +1 -0
- package/dist/src/components/dropdown-menu/index.js +2 -0
- package/dist/src/components/dropdown-menu/index.js.map +1 -0
- package/dist/src/components/empty-state/empty-state-skeleton.d.ts +32 -0
- package/dist/src/components/empty-state/empty-state-skeleton.d.ts.map +1 -0
- package/dist/src/components/empty-state/empty-state-skeleton.js +29 -0
- package/dist/src/components/empty-state/empty-state-skeleton.js.map +1 -0
- package/dist/src/components/empty-state/empty-state.d.ts +25 -0
- package/dist/src/components/empty-state/empty-state.d.ts.map +1 -0
- package/dist/src/components/empty-state/empty-state.js +36 -0
- package/dist/src/components/empty-state/empty-state.js.map +1 -0
- package/dist/src/components/empty-state/empty-state.stories.d.ts +16 -0
- package/dist/src/components/empty-state/empty-state.stories.d.ts.map +1 -0
- package/dist/src/components/empty-state/empty-state.stories.js +46 -0
- package/dist/src/components/empty-state/empty-state.stories.js.map +1 -0
- package/dist/src/components/empty-state/empty-state.test.d.ts +2 -0
- package/dist/src/components/empty-state/empty-state.test.d.ts.map +1 -0
- package/dist/src/components/empty-state/empty-state.test.js +51 -0
- package/dist/src/components/empty-state/empty-state.test.js.map +1 -0
- package/dist/src/components/empty-state/empty-state.types.d.ts +20 -0
- package/dist/src/components/empty-state/empty-state.types.d.ts.map +1 -0
- package/dist/src/components/empty-state/empty-state.types.js +2 -0
- package/dist/src/components/empty-state/empty-state.types.js.map +1 -0
- package/dist/src/components/empty-state/index.d.ts +3 -0
- package/dist/src/components/empty-state/index.d.ts.map +1 -0
- package/dist/src/components/empty-state/index.js +3 -0
- package/dist/src/components/empty-state/index.js.map +1 -0
- package/dist/src/components/error-boundary/error-boundary.d.ts +42 -0
- package/dist/src/components/error-boundary/error-boundary.d.ts.map +1 -0
- package/dist/src/components/error-boundary/error-boundary.js +55 -0
- package/dist/src/components/error-boundary/error-boundary.js.map +1 -0
- package/dist/src/components/error-boundary/error-boundary.stories.d.ts +16 -0
- package/dist/src/components/error-boundary/error-boundary.stories.d.ts.map +1 -0
- package/dist/src/components/error-boundary/error-boundary.stories.js +34 -0
- package/dist/src/components/error-boundary/error-boundary.stories.js.map +1 -0
- package/dist/src/components/error-boundary/error-boundary.test.d.ts +2 -0
- package/dist/src/components/error-boundary/error-boundary.test.d.ts.map +1 -0
- package/dist/src/components/error-boundary/error-boundary.test.js +182 -0
- package/dist/src/components/error-boundary/error-boundary.test.js.map +1 -0
- package/dist/src/components/error-boundary/error-fallback.d.ts +43 -0
- package/dist/src/components/error-boundary/error-fallback.d.ts.map +1 -0
- package/dist/src/components/error-boundary/error-fallback.js +36 -0
- package/dist/src/components/error-boundary/error-fallback.js.map +1 -0
- package/dist/src/components/error-boundary/index.d.ts +5 -0
- package/dist/src/components/error-boundary/index.d.ts.map +1 -0
- package/dist/src/components/error-boundary/index.js +3 -0
- package/dist/src/components/error-boundary/index.js.map +1 -0
- package/dist/src/components/field/field-skeleton.d.ts +29 -0
- package/dist/src/components/field/field-skeleton.d.ts.map +1 -0
- package/dist/src/components/field/field-skeleton.js +23 -0
- package/dist/src/components/field/field-skeleton.js.map +1 -0
- package/dist/src/components/field/field.d.ts +25 -0
- package/dist/src/components/field/field.d.ts.map +1 -0
- package/dist/src/components/field/field.js +77 -0
- package/dist/src/components/field/field.js.map +1 -0
- package/dist/src/components/field/field.stories.d.ts +19 -0
- package/dist/src/components/field/field.stories.d.ts.map +1 -0
- package/dist/src/components/field/field.stories.js +49 -0
- package/dist/src/components/field/field.stories.js.map +1 -0
- package/dist/src/components/field/field.test.d.ts +2 -0
- package/dist/src/components/field/field.test.d.ts.map +1 -0
- package/dist/src/components/field/field.test.js +42 -0
- package/dist/src/components/field/field.test.js.map +1 -0
- package/dist/src/components/field/index.d.ts +4 -0
- package/dist/src/components/field/index.d.ts.map +1 -0
- package/dist/src/components/field/index.js +3 -0
- package/dist/src/components/field/index.js.map +1 -0
- package/dist/src/components/file-upload/file-upload-skeleton.d.ts +38 -0
- package/dist/src/components/file-upload/file-upload-skeleton.d.ts.map +1 -0
- package/dist/src/components/file-upload/file-upload-skeleton.js +23 -0
- package/dist/src/components/file-upload/file-upload-skeleton.js.map +1 -0
- package/dist/src/components/file-upload/file-upload.d.ts +14 -0
- package/dist/src/components/file-upload/file-upload.d.ts.map +1 -0
- package/dist/src/components/file-upload/file-upload.js +62 -0
- package/dist/src/components/file-upload/file-upload.js.map +1 -0
- package/dist/src/components/file-upload/file-upload.stories.d.ts +12 -0
- package/dist/src/components/file-upload/file-upload.stories.d.ts.map +1 -0
- package/dist/src/components/file-upload/file-upload.stories.js +48 -0
- package/dist/src/components/file-upload/file-upload.stories.js.map +1 -0
- package/dist/src/components/file-upload/file-upload.test.d.ts +2 -0
- package/dist/src/components/file-upload/file-upload.test.d.ts.map +1 -0
- package/dist/src/components/file-upload/file-upload.test.js +59 -0
- package/dist/src/components/file-upload/file-upload.test.js.map +1 -0
- package/dist/src/components/file-upload/file-upload.types.d.ts +13 -0
- package/dist/src/components/file-upload/file-upload.types.d.ts.map +1 -0
- package/dist/src/components/file-upload/file-upload.types.js +2 -0
- package/dist/src/components/file-upload/file-upload.types.js.map +1 -0
- package/dist/src/components/file-upload/index.d.ts +4 -0
- package/dist/src/components/file-upload/index.d.ts.map +1 -0
- package/dist/src/components/file-upload/index.js +3 -0
- package/dist/src/components/file-upload/index.js.map +1 -0
- package/dist/src/components/footer/footer.d.ts +38 -0
- package/dist/src/components/footer/footer.d.ts.map +1 -0
- package/dist/src/components/footer/footer.js +11 -0
- package/dist/src/components/footer/footer.js.map +1 -0
- package/dist/src/components/footer/footer.stories.d.ts +14 -0
- package/dist/src/components/footer/footer.stories.d.ts.map +1 -0
- package/dist/src/components/footer/footer.stories.js +139 -0
- package/dist/src/components/footer/footer.stories.js.map +1 -0
- package/dist/src/components/footer/footer.test.d.ts +2 -0
- package/dist/src/components/footer/footer.test.d.ts.map +1 -0
- package/dist/src/components/footer/footer.test.js +147 -0
- package/dist/src/components/footer/footer.test.js.map +1 -0
- package/dist/src/components/footer/index.d.ts +3 -0
- package/dist/src/components/footer/index.d.ts.map +1 -0
- package/dist/src/components/footer/index.js +2 -0
- package/dist/src/components/footer/index.js.map +1 -0
- package/dist/src/components/header/header-skeleton.d.ts +55 -0
- package/dist/src/components/header/header-skeleton.d.ts.map +1 -0
- package/dist/src/components/header/header-skeleton.js +23 -0
- package/dist/src/components/header/header-skeleton.js.map +1 -0
- package/dist/src/components/header/header-skeleton.test.d.ts +2 -0
- package/dist/src/components/header/header-skeleton.test.d.ts.map +1 -0
- package/dist/src/components/header/header-skeleton.test.js +73 -0
- package/dist/src/components/header/header-skeleton.test.js.map +1 -0
- package/dist/src/components/header/header.d.ts +41 -0
- package/dist/src/components/header/header.d.ts.map +1 -0
- package/dist/src/components/header/header.js +77 -0
- package/dist/src/components/header/header.js.map +1 -0
- package/dist/src/components/header/header.stories.d.ts +10 -0
- package/dist/src/components/header/header.stories.d.ts.map +1 -0
- package/dist/src/components/header/header.stories.js +62 -0
- package/dist/src/components/header/header.stories.js.map +1 -0
- package/dist/src/components/header/header.test.d.ts +2 -0
- package/dist/src/components/header/header.test.d.ts.map +1 -0
- package/dist/src/components/header/header.test.js +80 -0
- package/dist/src/components/header/header.test.js.map +1 -0
- package/dist/src/components/header/header.types.d.ts +40 -0
- package/dist/src/components/header/header.types.d.ts.map +1 -0
- package/dist/src/components/header/header.types.js +2 -0
- package/dist/src/components/header/header.types.js.map +1 -0
- package/dist/src/components/header/index.d.ts +5 -0
- package/dist/src/components/header/index.d.ts.map +1 -0
- package/dist/src/components/header/index.js +3 -0
- package/dist/src/components/header/index.js.map +1 -0
- package/dist/src/components/input/index.d.ts +3 -0
- package/dist/src/components/input/index.d.ts.map +1 -0
- package/dist/src/components/input/index.js +2 -0
- package/dist/src/components/input/index.js.map +1 -0
- package/dist/src/components/input/input.d.ts +15 -0
- package/dist/src/components/input/input.d.ts.map +1 -0
- package/dist/src/components/input/input.js +44 -0
- package/dist/src/components/input/input.js.map +1 -0
- package/dist/src/components/input/input.stories.d.ts +42 -0
- package/dist/src/components/input/input.stories.d.ts.map +1 -0
- package/dist/src/components/input/input.stories.js +133 -0
- package/dist/src/components/input/input.stories.js.map +1 -0
- package/dist/src/components/input/input.test.d.ts +2 -0
- package/dist/src/components/input/input.test.d.ts.map +1 -0
- package/dist/src/components/input/input.test.js +191 -0
- package/dist/src/components/input/input.test.js.map +1 -0
- package/dist/src/components/input/input.types.d.ts +18 -0
- package/dist/src/components/input/input.types.d.ts.map +1 -0
- package/dist/src/components/input/input.types.js +2 -0
- package/dist/src/components/input/input.types.js.map +1 -0
- package/dist/src/components/input-group/index.d.ts +2 -0
- package/dist/src/components/input-group/index.d.ts.map +1 -0
- package/dist/src/components/input-group/index.js +2 -0
- package/dist/src/components/input-group/index.js.map +1 -0
- package/dist/src/components/input-group/input-group.d.ts +11 -0
- package/dist/src/components/input-group/input-group.d.ts.map +1 -0
- package/dist/src/components/input-group/input-group.js +25 -0
- package/dist/src/components/input-group/input-group.js.map +1 -0
- package/dist/src/components/input-group/input-group.stories.d.ts +14 -0
- package/dist/src/components/input-group/input-group.stories.d.ts.map +1 -0
- package/dist/src/components/input-group/input-group.stories.js +52 -0
- package/dist/src/components/input-group/input-group.stories.js.map +1 -0
- package/dist/src/components/input-group/input-group.test.d.ts +2 -0
- package/dist/src/components/input-group/input-group.test.d.ts.map +1 -0
- package/dist/src/components/input-group/input-group.test.js +26 -0
- package/dist/src/components/input-group/input-group.test.js.map +1 -0
- package/dist/src/components/input-otp/index.d.ts +2 -0
- package/dist/src/components/input-otp/index.d.ts.map +1 -0
- package/dist/src/components/input-otp/index.js +2 -0
- package/dist/src/components/input-otp/index.js.map +1 -0
- package/dist/src/components/input-otp/input-otp.d.ts +9 -0
- package/dist/src/components/input-otp/input-otp.d.ts.map +1 -0
- package/dist/src/components/input-otp/input-otp.js +24 -0
- package/dist/src/components/input-otp/input-otp.js.map +1 -0
- package/dist/src/components/input-otp/input-otp.stories.d.ts +10 -0
- package/dist/src/components/input-otp/input-otp.stories.d.ts.map +1 -0
- package/dist/src/components/input-otp/input-otp.stories.js +39 -0
- package/dist/src/components/input-otp/input-otp.stories.js.map +1 -0
- package/dist/src/components/input-otp/input-otp.test.d.ts +2 -0
- package/dist/src/components/input-otp/input-otp.test.d.ts.map +1 -0
- package/dist/src/components/input-otp/input-otp.test.js +34 -0
- package/dist/src/components/input-otp/input-otp.test.js.map +1 -0
- package/dist/src/components/label/index.d.ts +3 -0
- package/dist/src/components/label/index.d.ts.map +1 -0
- package/dist/src/components/label/index.js +2 -0
- package/dist/src/components/label/index.js.map +1 -0
- package/dist/src/components/label/label.d.ts +6 -0
- package/dist/src/components/label/label.d.ts.map +1 -0
- package/dist/src/components/label/label.js +11 -0
- package/dist/src/components/label/label.js.map +1 -0
- package/dist/src/components/label/label.stories.d.ts +10 -0
- package/dist/src/components/label/label.stories.d.ts.map +1 -0
- package/dist/src/components/label/label.stories.js +40 -0
- package/dist/src/components/label/label.stories.js.map +1 -0
- package/dist/src/components/label/label.test.d.ts +2 -0
- package/dist/src/components/label/label.test.d.ts.map +1 -0
- package/dist/src/components/label/label.test.js +44 -0
- package/dist/src/components/label/label.test.js.map +1 -0
- package/dist/src/components/label/label.types.d.ts +8 -0
- package/dist/src/components/label/label.types.d.ts.map +1 -0
- package/dist/src/components/label/label.types.js +2 -0
- package/dist/src/components/label/label.types.js.map +1 -0
- package/dist/src/components/list/index.d.ts +4 -0
- package/dist/src/components/list/index.d.ts.map +1 -0
- package/dist/src/components/list/index.js +3 -0
- package/dist/src/components/list/index.js.map +1 -0
- package/dist/src/components/list/list-skeleton.d.ts +32 -0
- package/dist/src/components/list/list-skeleton.d.ts.map +1 -0
- package/dist/src/components/list/list-skeleton.js +60 -0
- package/dist/src/components/list/list-skeleton.js.map +1 -0
- package/dist/src/components/list/list.d.ts +123 -0
- package/dist/src/components/list/list.d.ts.map +1 -0
- package/dist/src/components/list/list.js +65 -0
- package/dist/src/components/list/list.js.map +1 -0
- package/dist/src/components/list/list.stories.d.ts +26 -0
- package/dist/src/components/list/list.stories.d.ts.map +1 -0
- package/dist/src/components/list/list.stories.js +61 -0
- package/dist/src/components/list/list.stories.js.map +1 -0
- package/dist/src/components/list/list.test.d.ts +2 -0
- package/dist/src/components/list/list.test.d.ts.map +1 -0
- package/dist/src/components/list/list.test.js +224 -0
- package/dist/src/components/list/list.test.js.map +1 -0
- package/dist/src/components/list/list.types.d.ts +76 -0
- package/dist/src/components/list/list.types.d.ts.map +1 -0
- package/dist/src/components/list/list.types.js +2 -0
- package/dist/src/components/list/list.types.js.map +1 -0
- package/dist/src/components/loading/index.d.ts +5 -0
- package/dist/src/components/loading/index.d.ts.map +1 -0
- package/dist/src/components/loading/index.js +3 -0
- package/dist/src/components/loading/index.js.map +1 -0
- package/dist/src/components/loading/loading.stories.d.ts +15 -0
- package/dist/src/components/loading/loading.stories.d.ts.map +1 -0
- package/dist/src/components/loading/loading.stories.js +49 -0
- package/dist/src/components/loading/loading.stories.js.map +1 -0
- package/dist/src/components/loading/loading.test.d.ts +2 -0
- package/dist/src/components/loading/loading.test.d.ts.map +1 -0
- package/dist/src/components/loading/loading.test.js +65 -0
- package/dist/src/components/loading/loading.test.js.map +1 -0
- package/dist/src/components/loading/page-loader.d.ts +20 -0
- package/dist/src/components/loading/page-loader.d.ts.map +1 -0
- package/dist/src/components/loading/page-loader.js +18 -0
- package/dist/src/components/loading/page-loader.js.map +1 -0
- package/dist/src/components/loading/section-loader.d.ts +24 -0
- package/dist/src/components/loading/section-loader.d.ts.map +1 -0
- package/dist/src/components/loading/section-loader.js +18 -0
- package/dist/src/components/loading/section-loader.js.map +1 -0
- package/dist/src/components/loading/skeleton-card.d.ts +24 -0
- package/dist/src/components/loading/skeleton-card.d.ts.map +1 -0
- package/dist/src/components/loading/skeleton-card.js +21 -0
- package/dist/src/components/loading/skeleton-card.js.map +1 -0
- package/dist/src/components/loading/skeleton-text.d.ts +24 -0
- package/dist/src/components/loading/skeleton-text.d.ts.map +1 -0
- package/dist/src/components/loading/skeleton-text.js +23 -0
- package/dist/src/components/loading/skeleton-text.js.map +1 -0
- package/dist/src/components/menubar/index.d.ts +2 -0
- package/dist/src/components/menubar/index.d.ts.map +1 -0
- package/dist/src/components/menubar/index.js +2 -0
- package/dist/src/components/menubar/index.js.map +1 -0
- package/dist/src/components/menubar/menubar.d.ts +27 -0
- package/dist/src/components/menubar/menubar.d.ts.map +1 -0
- package/dist/src/components/menubar/menubar.js +55 -0
- package/dist/src/components/menubar/menubar.js.map +1 -0
- package/dist/src/components/menubar/menubar.stories.d.ts +22 -0
- package/dist/src/components/menubar/menubar.stories.d.ts.map +1 -0
- package/dist/src/components/menubar/menubar.stories.js +61 -0
- package/dist/src/components/menubar/menubar.stories.js.map +1 -0
- package/dist/src/components/menubar/menubar.test.d.ts +2 -0
- package/dist/src/components/menubar/menubar.test.d.ts.map +1 -0
- package/dist/src/components/menubar/menubar.test.js +219 -0
- package/dist/src/components/menubar/menubar.test.js.map +1 -0
- package/dist/src/components/metric-card/__tests__/metric-card.test.d.ts +2 -0
- package/dist/src/components/metric-card/__tests__/metric-card.test.d.ts.map +1 -0
- package/dist/src/components/metric-card/__tests__/metric-card.test.js +173 -0
- package/dist/src/components/metric-card/__tests__/metric-card.test.js.map +1 -0
- package/dist/src/components/metric-card/index.d.ts +3 -0
- package/dist/src/components/metric-card/index.d.ts.map +1 -0
- package/dist/src/components/metric-card/index.js +3 -0
- package/dist/src/components/metric-card/index.js.map +1 -0
- package/dist/src/components/metric-card/metric-card-skeleton.d.ts +32 -0
- package/dist/src/components/metric-card/metric-card-skeleton.d.ts.map +1 -0
- package/dist/src/components/metric-card/metric-card-skeleton.js +30 -0
- package/dist/src/components/metric-card/metric-card-skeleton.js.map +1 -0
- package/dist/src/components/metric-card/metric-card.d.ts +17 -0
- package/dist/src/components/metric-card/metric-card.d.ts.map +1 -0
- package/dist/src/components/metric-card/metric-card.js +57 -0
- package/dist/src/components/metric-card/metric-card.js.map +1 -0
- package/dist/src/components/metric-card/metric-card.stories.d.ts +56 -0
- package/dist/src/components/metric-card/metric-card.stories.d.ts.map +1 -0
- package/dist/src/components/metric-card/metric-card.stories.js +184 -0
- package/dist/src/components/metric-card/metric-card.stories.js.map +1 -0
- package/dist/src/components/metric-card/metric-card.test.d.ts +2 -0
- package/dist/src/components/metric-card/metric-card.test.d.ts.map +1 -0
- package/dist/src/components/metric-card/metric-card.test.js +129 -0
- package/dist/src/components/metric-card/metric-card.test.js.map +1 -0
- package/dist/src/components/metric-card/metric-card.types.d.ts +15 -0
- package/dist/src/components/metric-card/metric-card.types.d.ts.map +1 -0
- package/dist/src/components/metric-card/metric-card.types.js +2 -0
- package/dist/src/components/metric-card/metric-card.types.js.map +1 -0
- package/dist/src/components/multi-select/index.d.ts +4 -0
- package/dist/src/components/multi-select/index.d.ts.map +1 -0
- package/dist/src/components/multi-select/index.js +3 -0
- package/dist/src/components/multi-select/index.js.map +1 -0
- package/dist/src/components/multi-select/multi-select-skeleton.d.ts +38 -0
- package/dist/src/components/multi-select/multi-select-skeleton.d.ts.map +1 -0
- package/dist/src/components/multi-select/multi-select-skeleton.js +24 -0
- package/dist/src/components/multi-select/multi-select-skeleton.js.map +1 -0
- package/dist/src/components/multi-select/multi-select.d.ts +89 -0
- package/dist/src/components/multi-select/multi-select.d.ts.map +1 -0
- package/dist/src/components/multi-select/multi-select.js +94 -0
- package/dist/src/components/multi-select/multi-select.js.map +1 -0
- package/dist/src/components/multi-select/multi-select.stories.d.ts +36 -0
- package/dist/src/components/multi-select/multi-select.stories.d.ts.map +1 -0
- package/dist/src/components/multi-select/multi-select.stories.js +291 -0
- package/dist/src/components/multi-select/multi-select.stories.js.map +1 -0
- package/dist/src/components/multi-select/multi-select.test.d.ts +2 -0
- package/dist/src/components/multi-select/multi-select.test.d.ts.map +1 -0
- package/dist/src/components/multi-select/multi-select.test.js +139 -0
- package/dist/src/components/multi-select/multi-select.test.js.map +1 -0
- package/dist/src/components/multi-select/multi-select.types.d.ts +75 -0
- package/dist/src/components/multi-select/multi-select.types.d.ts.map +1 -0
- package/dist/src/components/multi-select/multi-select.types.js +2 -0
- package/dist/src/components/multi-select/multi-select.types.js.map +1 -0
- package/dist/src/components/navigation/index.d.ts +5 -0
- package/dist/src/components/navigation/index.d.ts.map +1 -0
- package/dist/src/components/navigation/index.js +3 -0
- package/dist/src/components/navigation/index.js.map +1 -0
- package/dist/src/components/navigation/navigation-skeleton.d.ts +55 -0
- package/dist/src/components/navigation/navigation-skeleton.d.ts.map +1 -0
- package/dist/src/components/navigation/navigation-skeleton.js +23 -0
- package/dist/src/components/navigation/navigation-skeleton.js.map +1 -0
- package/dist/src/components/navigation/navigation-skeleton.test.d.ts +2 -0
- package/dist/src/components/navigation/navigation-skeleton.test.d.ts.map +1 -0
- package/dist/src/components/navigation/navigation-skeleton.test.js +64 -0
- package/dist/src/components/navigation/navigation-skeleton.test.js.map +1 -0
- package/dist/src/components/navigation/navigation.d.ts +27 -0
- package/dist/src/components/navigation/navigation.d.ts.map +1 -0
- package/dist/src/components/navigation/navigation.js +46 -0
- package/dist/src/components/navigation/navigation.js.map +1 -0
- package/dist/src/components/navigation/navigation.stories.d.ts +12 -0
- package/dist/src/components/navigation/navigation.stories.d.ts.map +1 -0
- package/dist/src/components/navigation/navigation.stories.js +89 -0
- package/dist/src/components/navigation/navigation.stories.js.map +1 -0
- package/dist/src/components/navigation/navigation.test.d.ts +2 -0
- package/dist/src/components/navigation/navigation.test.d.ts.map +1 -0
- package/dist/src/components/navigation/navigation.test.js +104 -0
- package/dist/src/components/navigation/navigation.test.js.map +1 -0
- package/dist/src/components/navigation-menu/index.d.ts +2 -0
- package/dist/src/components/navigation-menu/index.d.ts.map +1 -0
- package/dist/src/components/navigation-menu/index.js +2 -0
- package/dist/src/components/navigation-menu/index.js.map +1 -0
- package/dist/src/components/navigation-menu/navigation-menu.d.ts +39 -0
- package/dist/src/components/navigation-menu/navigation-menu.d.ts.map +1 -0
- package/dist/src/components/navigation-menu/navigation-menu.js +40 -0
- package/dist/src/components/navigation-menu/navigation-menu.js.map +1 -0
- package/dist/src/components/navigation-menu/navigation-menu.stories.d.ts +23 -0
- package/dist/src/components/navigation-menu/navigation-menu.stories.d.ts.map +1 -0
- package/dist/src/components/navigation-menu/navigation-menu.stories.js +94 -0
- package/dist/src/components/navigation-menu/navigation-menu.stories.js.map +1 -0
- package/dist/src/components/navigation-menu/navigation-menu.test.d.ts +2 -0
- package/dist/src/components/navigation-menu/navigation-menu.test.d.ts.map +1 -0
- package/dist/src/components/navigation-menu/navigation-menu.test.js +179 -0
- package/dist/src/components/navigation-menu/navigation-menu.test.js.map +1 -0
- package/dist/src/components/page-transition/index.d.ts +3 -0
- package/dist/src/components/page-transition/index.d.ts.map +1 -0
- package/dist/src/components/page-transition/index.js +2 -0
- package/dist/src/components/page-transition/index.js.map +1 -0
- package/dist/src/components/page-transition/page-transition.d.ts +39 -0
- package/dist/src/components/page-transition/page-transition.d.ts.map +1 -0
- package/dist/src/components/page-transition/page-transition.js +35 -0
- package/dist/src/components/page-transition/page-transition.js.map +1 -0
- package/dist/src/components/page-transition/page-transition.stories.d.ts +39 -0
- package/dist/src/components/page-transition/page-transition.stories.d.ts.map +1 -0
- package/dist/src/components/page-transition/page-transition.stories.js +95 -0
- package/dist/src/components/page-transition/page-transition.stories.js.map +1 -0
- package/dist/src/components/page-transition/page-transition.test.d.ts +2 -0
- package/dist/src/components/page-transition/page-transition.test.d.ts.map +1 -0
- package/dist/src/components/page-transition/page-transition.test.js +121 -0
- package/dist/src/components/page-transition/page-transition.test.js.map +1 -0
- package/dist/src/components/page-transition/page-transition.types.d.ts +21 -0
- package/dist/src/components/page-transition/page-transition.types.d.ts.map +1 -0
- package/dist/src/components/page-transition/page-transition.types.js +2 -0
- package/dist/src/components/page-transition/page-transition.types.js.map +1 -0
- package/dist/src/components/pagination/index.d.ts +4 -0
- package/dist/src/components/pagination/index.d.ts.map +1 -0
- package/dist/src/components/pagination/index.js +3 -0
- package/dist/src/components/pagination/index.js.map +1 -0
- package/dist/src/components/pagination/pagination-skeleton.d.ts +45 -0
- package/dist/src/components/pagination/pagination-skeleton.d.ts.map +1 -0
- package/dist/src/components/pagination/pagination-skeleton.js +23 -0
- package/dist/src/components/pagination/pagination-skeleton.js.map +1 -0
- package/dist/src/components/pagination/pagination-skeleton.test.d.ts +2 -0
- package/dist/src/components/pagination/pagination-skeleton.test.d.ts.map +1 -0
- package/dist/src/components/pagination/pagination-skeleton.test.js +58 -0
- package/dist/src/components/pagination/pagination-skeleton.test.js.map +1 -0
- package/dist/src/components/pagination/pagination.d.ts +80 -0
- package/dist/src/components/pagination/pagination.d.ts.map +1 -0
- package/dist/src/components/pagination/pagination.js +121 -0
- package/dist/src/components/pagination/pagination.js.map +1 -0
- package/dist/src/components/pagination/pagination.stories.d.ts +22 -0
- package/dist/src/components/pagination/pagination.stories.d.ts.map +1 -0
- package/dist/src/components/pagination/pagination.stories.js +110 -0
- package/dist/src/components/pagination/pagination.stories.js.map +1 -0
- package/dist/src/components/pagination/pagination.test.d.ts +2 -0
- package/dist/src/components/pagination/pagination.test.d.ts.map +1 -0
- package/dist/src/components/pagination/pagination.test.js +97 -0
- package/dist/src/components/pagination/pagination.test.js.map +1 -0
- package/dist/src/components/pagination/pagination.types.d.ts +58 -0
- package/dist/src/components/pagination/pagination.types.d.ts.map +1 -0
- package/dist/src/components/pagination/pagination.types.js +2 -0
- package/dist/src/components/pagination/pagination.types.js.map +1 -0
- package/dist/src/components/password-strength-indicator/index.d.ts +2 -0
- package/dist/src/components/password-strength-indicator/index.d.ts.map +1 -0
- package/dist/src/components/password-strength-indicator/index.js +2 -0
- package/dist/src/components/password-strength-indicator/index.js.map +1 -0
- package/dist/src/components/password-strength-indicator/password-strength-indicator.d.ts +7 -0
- package/dist/src/components/password-strength-indicator/password-strength-indicator.d.ts.map +1 -0
- package/dist/src/components/password-strength-indicator/password-strength-indicator.js +54 -0
- package/dist/src/components/password-strength-indicator/password-strength-indicator.js.map +1 -0
- package/dist/src/components/password-strength-indicator/password-strength-indicator.stories.d.ts +21 -0
- package/dist/src/components/password-strength-indicator/password-strength-indicator.stories.d.ts.map +1 -0
- package/dist/src/components/password-strength-indicator/password-strength-indicator.stories.js +60 -0
- package/dist/src/components/password-strength-indicator/password-strength-indicator.stories.js.map +1 -0
- package/dist/src/components/password-strength-indicator/password-strength-indicator.test.d.ts +2 -0
- package/dist/src/components/password-strength-indicator/password-strength-indicator.test.d.ts.map +1 -0
- package/dist/src/components/password-strength-indicator/password-strength-indicator.test.js +276 -0
- package/dist/src/components/password-strength-indicator/password-strength-indicator.test.js.map +1 -0
- package/dist/src/components/popover/index.d.ts +4 -0
- package/dist/src/components/popover/index.d.ts.map +1 -0
- package/dist/src/components/popover/index.js +3 -0
- package/dist/src/components/popover/index.js.map +1 -0
- package/dist/src/components/popover/popover-skeleton.d.ts +40 -0
- package/dist/src/components/popover/popover-skeleton.d.ts.map +1 -0
- package/dist/src/components/popover/popover-skeleton.js +23 -0
- package/dist/src/components/popover/popover-skeleton.js.map +1 -0
- package/dist/src/components/popover/popover-skeleton.test.d.ts +2 -0
- package/dist/src/components/popover/popover-skeleton.test.d.ts.map +1 -0
- package/dist/src/components/popover/popover-skeleton.test.js +44 -0
- package/dist/src/components/popover/popover-skeleton.test.js.map +1 -0
- package/dist/src/components/popover/popover.d.ts +26 -0
- package/dist/src/components/popover/popover.d.ts.map +1 -0
- package/dist/src/components/popover/popover.js +73 -0
- package/dist/src/components/popover/popover.js.map +1 -0
- package/dist/src/components/popover/popover.stories.d.ts +22 -0
- package/dist/src/components/popover/popover.stories.d.ts.map +1 -0
- package/dist/src/components/popover/popover.stories.js +79 -0
- package/dist/src/components/popover/popover.stories.js.map +1 -0
- package/dist/src/components/popover/popover.test.d.ts +2 -0
- package/dist/src/components/popover/popover.test.d.ts.map +1 -0
- package/dist/src/components/popover/popover.test.js +90 -0
- package/dist/src/components/popover/popover.test.js.map +1 -0
- package/dist/src/components/progress/index.d.ts +3 -0
- package/dist/src/components/progress/index.d.ts.map +1 -0
- package/dist/src/components/progress/index.js +2 -0
- package/dist/src/components/progress/index.js.map +1 -0
- package/dist/src/components/progress/progress.d.ts +16 -0
- package/dist/src/components/progress/progress.d.ts.map +1 -0
- package/dist/src/components/progress/progress.js +43 -0
- package/dist/src/components/progress/progress.js.map +1 -0
- package/dist/src/components/progress/progress.stories.d.ts +99 -0
- package/dist/src/components/progress/progress.stories.d.ts.map +1 -0
- package/dist/src/components/progress/progress.stories.js +174 -0
- package/dist/src/components/progress/progress.stories.js.map +1 -0
- package/dist/src/components/progress/progress.test.d.ts +2 -0
- package/dist/src/components/progress/progress.test.d.ts.map +1 -0
- package/dist/src/components/progress/progress.test.js +193 -0
- package/dist/src/components/progress/progress.test.js.map +1 -0
- package/dist/src/components/progress/progress.types.d.ts +59 -0
- package/dist/src/components/progress/progress.types.d.ts.map +1 -0
- package/dist/src/components/progress/progress.types.js +2 -0
- package/dist/src/components/progress/progress.types.js.map +1 -0
- package/dist/src/components/radio-group/index.d.ts +5 -0
- package/dist/src/components/radio-group/index.d.ts.map +1 -0
- package/dist/src/components/radio-group/index.js +3 -0
- package/dist/src/components/radio-group/index.js.map +1 -0
- package/dist/src/components/radio-group/radio-group-skeleton.d.ts +42 -0
- package/dist/src/components/radio-group/radio-group-skeleton.d.ts.map +1 -0
- package/dist/src/components/radio-group/radio-group-skeleton.js +23 -0
- package/dist/src/components/radio-group/radio-group-skeleton.js.map +1 -0
- package/dist/src/components/radio-group/radio-group.d.ts +32 -0
- package/dist/src/components/radio-group/radio-group.d.ts.map +1 -0
- package/dist/src/components/radio-group/radio-group.js +46 -0
- package/dist/src/components/radio-group/radio-group.js.map +1 -0
- package/dist/src/components/radio-group/radio-group.stories.d.ts +70 -0
- package/dist/src/components/radio-group/radio-group.stories.d.ts.map +1 -0
- package/dist/src/components/radio-group/radio-group.stories.js +103 -0
- package/dist/src/components/radio-group/radio-group.stories.js.map +1 -0
- package/dist/src/components/radio-group/radio-group.test.d.ts +2 -0
- package/dist/src/components/radio-group/radio-group.test.d.ts.map +1 -0
- package/dist/src/components/radio-group/radio-group.test.js +122 -0
- package/dist/src/components/radio-group/radio-group.test.js.map +1 -0
- package/dist/src/components/radio-group/radio-group.types.d.ts +29 -0
- package/dist/src/components/radio-group/radio-group.types.d.ts.map +1 -0
- package/dist/src/components/radio-group/radio-group.types.js +2 -0
- package/dist/src/components/radio-group/radio-group.types.js.map +1 -0
- package/dist/src/components/resizable/index.d.ts +2 -0
- package/dist/src/components/resizable/index.d.ts.map +1 -0
- package/dist/src/components/resizable/index.js +2 -0
- package/dist/src/components/resizable/index.js.map +1 -0
- package/dist/src/components/resizable/resizable.d.ts +12 -0
- package/dist/src/components/resizable/resizable.d.ts.map +1 -0
- package/dist/src/components/resizable/resizable.js +9 -0
- package/dist/src/components/resizable/resizable.js.map +1 -0
- package/dist/src/components/resizable/resizable.stories.d.ts +72 -0
- package/dist/src/components/resizable/resizable.stories.d.ts.map +1 -0
- package/dist/src/components/resizable/resizable.stories.js +150 -0
- package/dist/src/components/resizable/resizable.stories.js.map +1 -0
- package/dist/src/components/resizable/resizable.test.d.ts +2 -0
- package/dist/src/components/resizable/resizable.test.d.ts.map +1 -0
- package/dist/src/components/resizable/resizable.test.js +147 -0
- package/dist/src/components/resizable/resizable.test.js.map +1 -0
- package/dist/src/components/scroll-area/index.d.ts +2 -0
- package/dist/src/components/scroll-area/index.d.ts.map +1 -0
- package/dist/src/components/scroll-area/index.js +2 -0
- package/dist/src/components/scroll-area/index.js.map +1 -0
- package/dist/src/components/scroll-area/scroll-area.d.ts +6 -0
- package/dist/src/components/scroll-area/scroll-area.d.ts.map +1 -0
- package/dist/src/components/scroll-area/scroll-area.js +13 -0
- package/dist/src/components/scroll-area/scroll-area.js.map +1 -0
- package/dist/src/components/scroll-area/scroll-area.stories.d.ts +66 -0
- package/dist/src/components/scroll-area/scroll-area.stories.d.ts.map +1 -0
- package/dist/src/components/scroll-area/scroll-area.stories.js +157 -0
- package/dist/src/components/scroll-area/scroll-area.stories.js.map +1 -0
- package/dist/src/components/scroll-area/scroll-area.test.d.ts +2 -0
- package/dist/src/components/scroll-area/scroll-area.test.d.ts.map +1 -0
- package/dist/src/components/scroll-area/scroll-area.test.js +130 -0
- package/dist/src/components/scroll-area/scroll-area.test.js.map +1 -0
- package/dist/src/components/select/index.d.ts +3 -0
- package/dist/src/components/select/index.d.ts.map +1 -0
- package/dist/src/components/select/index.js +3 -0
- package/dist/src/components/select/index.js.map +1 -0
- package/dist/src/components/select/native-select.d.ts +21 -0
- package/dist/src/components/select/native-select.d.ts.map +1 -0
- package/dist/src/components/select/native-select.js +23 -0
- package/dist/src/components/select/native-select.js.map +1 -0
- package/dist/src/components/select/native-select.stories.d.ts +32 -0
- package/dist/src/components/select/native-select.stories.d.ts.map +1 -0
- package/dist/src/components/select/native-select.stories.js +96 -0
- package/dist/src/components/select/native-select.stories.js.map +1 -0
- package/dist/src/components/select/native-select.test.d.ts +2 -0
- package/dist/src/components/select/native-select.test.d.ts.map +1 -0
- package/dist/src/components/select/native-select.test.js +76 -0
- package/dist/src/components/select/native-select.test.js.map +1 -0
- package/dist/src/components/select/select.d.ts +22 -0
- package/dist/src/components/select/select.d.ts.map +1 -0
- package/dist/src/components/select/select.js +48 -0
- package/dist/src/components/select/select.js.map +1 -0
- package/dist/src/components/select/select.stories.d.ts +20 -0
- package/dist/src/components/select/select.stories.d.ts.map +1 -0
- package/dist/src/components/select/select.stories.js +88 -0
- package/dist/src/components/select/select.stories.js.map +1 -0
- package/dist/src/components/select/select.test.d.ts +2 -0
- package/dist/src/components/select/select.test.d.ts.map +1 -0
- package/dist/src/components/select/select.test.js +42 -0
- package/dist/src/components/select/select.test.js.map +1 -0
- package/dist/src/components/separator/index.d.ts +2 -0
- package/dist/src/components/separator/index.d.ts.map +1 -0
- package/dist/src/components/separator/index.js +2 -0
- package/dist/src/components/separator/index.js.map +1 -0
- package/dist/src/components/separator/separator.d.ts +5 -0
- package/dist/src/components/separator/separator.d.ts.map +1 -0
- package/dist/src/components/separator/separator.js +9 -0
- package/dist/src/components/separator/separator.js.map +1 -0
- package/dist/src/components/separator/separator.stories.d.ts +22 -0
- package/dist/src/components/separator/separator.stories.d.ts.map +1 -0
- package/dist/src/components/separator/separator.stories.js +39 -0
- package/dist/src/components/separator/separator.stories.js.map +1 -0
- package/dist/src/components/separator/separator.test.d.ts +2 -0
- package/dist/src/components/separator/separator.test.d.ts.map +1 -0
- package/dist/src/components/separator/separator.test.js +33 -0
- package/dist/src/components/separator/separator.test.js.map +1 -0
- package/dist/src/components/session-card/index.d.ts +3 -0
- package/dist/src/components/session-card/index.d.ts.map +1 -0
- package/dist/src/components/session-card/index.js +3 -0
- package/dist/src/components/session-card/index.js.map +1 -0
- package/dist/src/components/session-card/session-card-skeleton.d.ts +32 -0
- package/dist/src/components/session-card/session-card-skeleton.d.ts.map +1 -0
- package/dist/src/components/session-card/session-card-skeleton.js +29 -0
- package/dist/src/components/session-card/session-card-skeleton.js.map +1 -0
- package/dist/src/components/session-card/session-card.d.ts +27 -0
- package/dist/src/components/session-card/session-card.d.ts.map +1 -0
- package/dist/src/components/session-card/session-card.js +67 -0
- package/dist/src/components/session-card/session-card.js.map +1 -0
- package/dist/src/components/session-card/session-card.stories.d.ts +25 -0
- package/dist/src/components/session-card/session-card.stories.d.ts.map +1 -0
- package/dist/src/components/session-card/session-card.stories.js +108 -0
- package/dist/src/components/session-card/session-card.stories.js.map +1 -0
- package/dist/src/components/session-card/session-card.test.d.ts +2 -0
- package/dist/src/components/session-card/session-card.test.d.ts.map +1 -0
- package/dist/src/components/session-card/session-card.test.js +56 -0
- package/dist/src/components/session-card/session-card.test.js.map +1 -0
- package/dist/src/components/sidebar/__tests__/sidebar.test.d.ts +2 -0
- package/dist/src/components/sidebar/__tests__/sidebar.test.d.ts.map +1 -0
- package/dist/src/components/sidebar/__tests__/sidebar.test.js +135 -0
- package/dist/src/components/sidebar/__tests__/sidebar.test.js.map +1 -0
- package/dist/src/components/sidebar/index.d.ts +4 -0
- package/dist/src/components/sidebar/index.d.ts.map +1 -0
- package/dist/src/components/sidebar/index.js +3 -0
- package/dist/src/components/sidebar/index.js.map +1 -0
- package/dist/src/components/sidebar/sidebar-skeleton.d.ts +55 -0
- package/dist/src/components/sidebar/sidebar-skeleton.d.ts.map +1 -0
- package/dist/src/components/sidebar/sidebar-skeleton.js +23 -0
- package/dist/src/components/sidebar/sidebar-skeleton.js.map +1 -0
- package/dist/src/components/sidebar/sidebar-skeleton.test.d.ts +2 -0
- package/dist/src/components/sidebar/sidebar-skeleton.test.d.ts.map +1 -0
- package/dist/src/components/sidebar/sidebar-skeleton.test.js +83 -0
- package/dist/src/components/sidebar/sidebar-skeleton.test.js.map +1 -0
- package/dist/src/components/sidebar/sidebar.d.ts +45 -0
- package/dist/src/components/sidebar/sidebar.d.ts.map +1 -0
- package/dist/src/components/sidebar/sidebar.js +46 -0
- package/dist/src/components/sidebar/sidebar.js.map +1 -0
- package/dist/src/components/sidebar/sidebar.stories.d.ts +19 -0
- package/dist/src/components/sidebar/sidebar.stories.d.ts.map +1 -0
- package/dist/src/components/sidebar/sidebar.stories.js +175 -0
- package/dist/src/components/sidebar/sidebar.stories.js.map +1 -0
- package/dist/src/components/sidebar/sidebar.test.d.ts +2 -0
- package/dist/src/components/sidebar/sidebar.test.d.ts.map +1 -0
- package/dist/src/components/sidebar/sidebar.test.js +221 -0
- package/dist/src/components/sidebar/sidebar.test.js.map +1 -0
- package/dist/src/components/skeleton/form-skeleton.d.ts +100 -0
- package/dist/src/components/skeleton/form-skeleton.d.ts.map +1 -0
- package/dist/src/components/skeleton/form-skeleton.js +65 -0
- package/dist/src/components/skeleton/form-skeleton.js.map +1 -0
- package/dist/src/components/skeleton/index.d.ts +10 -0
- package/dist/src/components/skeleton/index.d.ts.map +1 -0
- package/dist/src/components/skeleton/index.js +5 -0
- package/dist/src/components/skeleton/index.js.map +1 -0
- package/dist/src/components/skeleton/skeleton-patterns.d.ts +179 -0
- package/dist/src/components/skeleton/skeleton-patterns.d.ts.map +1 -0
- package/dist/src/components/skeleton/skeleton-patterns.js +86 -0
- package/dist/src/components/skeleton/skeleton-patterns.js.map +1 -0
- package/dist/src/components/skeleton/skeleton-patterns.test.d.ts +2 -0
- package/dist/src/components/skeleton/skeleton-patterns.test.d.ts.map +1 -0
- package/dist/src/components/skeleton/skeleton-patterns.test.js +248 -0
- package/dist/src/components/skeleton/skeleton-patterns.test.js.map +1 -0
- package/dist/src/components/skeleton/skeleton-wrapper.d.ts +48 -0
- package/dist/src/components/skeleton/skeleton-wrapper.d.ts.map +1 -0
- package/dist/src/components/skeleton/skeleton-wrapper.js +43 -0
- package/dist/src/components/skeleton/skeleton-wrapper.js.map +1 -0
- package/dist/src/components/skeleton/skeleton-wrapper.test.d.ts +2 -0
- package/dist/src/components/skeleton/skeleton-wrapper.test.d.ts.map +1 -0
- package/dist/src/components/skeleton/skeleton-wrapper.test.js +141 -0
- package/dist/src/components/skeleton/skeleton-wrapper.test.js.map +1 -0
- package/dist/src/components/skeleton/skeleton.d.ts +23 -0
- package/dist/src/components/skeleton/skeleton.d.ts.map +1 -0
- package/dist/src/components/skeleton/skeleton.js +19 -0
- package/dist/src/components/skeleton/skeleton.js.map +1 -0
- package/dist/src/components/skeleton/skeleton.stories.d.ts +17 -0
- package/dist/src/components/skeleton/skeleton.stories.d.ts.map +1 -0
- package/dist/src/components/skeleton/skeleton.stories.js +78 -0
- package/dist/src/components/skeleton/skeleton.stories.js.map +1 -0
- package/dist/src/components/skeleton/skeleton.test.d.ts +2 -0
- package/dist/src/components/skeleton/skeleton.test.d.ts.map +1 -0
- package/dist/src/components/skeleton/skeleton.test.js +86 -0
- package/dist/src/components/skeleton/skeleton.test.js.map +1 -0
- package/dist/src/components/skeleton/skeleton.types.d.ts +491 -0
- package/dist/src/components/skeleton/skeleton.types.d.ts.map +1 -0
- package/dist/src/components/skeleton/skeleton.types.js +7 -0
- package/dist/src/components/skeleton/skeleton.types.js.map +1 -0
- package/dist/src/components/skeleton/types.d.ts +491 -0
- package/dist/src/components/skeleton/types.d.ts.map +1 -0
- package/dist/src/components/skeleton/types.js +7 -0
- package/dist/src/components/skeleton/types.js.map +1 -0
- package/dist/src/components/skeleton-fade/index.d.ts +3 -0
- package/dist/src/components/skeleton-fade/index.d.ts.map +1 -0
- package/dist/src/components/skeleton-fade/index.js +2 -0
- package/dist/src/components/skeleton-fade/index.js.map +1 -0
- package/dist/src/components/skeleton-fade/skeleton-fade.d.ts +44 -0
- package/dist/src/components/skeleton-fade/skeleton-fade.d.ts.map +1 -0
- package/dist/src/components/skeleton-fade/skeleton-fade.js +40 -0
- package/dist/src/components/skeleton-fade/skeleton-fade.js.map +1 -0
- package/dist/src/components/skeleton-fade/skeleton-fade.stories.d.ts +40 -0
- package/dist/src/components/skeleton-fade/skeleton-fade.stories.d.ts.map +1 -0
- package/dist/src/components/skeleton-fade/skeleton-fade.stories.js +106 -0
- package/dist/src/components/skeleton-fade/skeleton-fade.stories.js.map +1 -0
- package/dist/src/components/skeleton-fade/skeleton-fade.test.d.ts +2 -0
- package/dist/src/components/skeleton-fade/skeleton-fade.test.d.ts.map +1 -0
- package/dist/src/components/skeleton-fade/skeleton-fade.test.js +124 -0
- package/dist/src/components/skeleton-fade/skeleton-fade.test.js.map +1 -0
- package/dist/src/components/skip-to-content/index.d.ts +2 -0
- package/dist/src/components/skip-to-content/index.d.ts.map +1 -0
- package/dist/src/components/skip-to-content/index.js +2 -0
- package/dist/src/components/skip-to-content/index.js.map +1 -0
- package/dist/src/components/skip-to-content/skip-to-content.d.ts +15 -0
- package/dist/src/components/skip-to-content/skip-to-content.d.ts.map +1 -0
- package/dist/src/components/skip-to-content/skip-to-content.js +15 -0
- package/dist/src/components/skip-to-content/skip-to-content.js.map +1 -0
- package/dist/src/components/skip-to-content/skip-to-content.stories.d.ts +33 -0
- package/dist/src/components/skip-to-content/skip-to-content.stories.d.ts.map +1 -0
- package/dist/src/components/skip-to-content/skip-to-content.stories.js +42 -0
- package/dist/src/components/skip-to-content/skip-to-content.stories.js.map +1 -0
- package/dist/src/components/skip-to-content/skip-to-content.test.d.ts +2 -0
- package/dist/src/components/skip-to-content/skip-to-content.test.d.ts.map +1 -0
- package/dist/src/components/skip-to-content/skip-to-content.test.js +38 -0
- package/dist/src/components/skip-to-content/skip-to-content.test.js.map +1 -0
- package/dist/src/components/skip-to-content/skip-to-content.types.d.ts +9 -0
- package/dist/src/components/skip-to-content/skip-to-content.types.d.ts.map +1 -0
- package/dist/src/components/skip-to-content/skip-to-content.types.js +2 -0
- package/dist/src/components/skip-to-content/skip-to-content.types.js.map +1 -0
- package/dist/src/components/slider/index.d.ts +3 -0
- package/dist/src/components/slider/index.d.ts.map +1 -0
- package/dist/src/components/slider/index.js +2 -0
- package/dist/src/components/slider/index.js.map +1 -0
- package/dist/src/components/slider/slider.d.ts +5 -0
- package/dist/src/components/slider/slider.d.ts.map +1 -0
- package/dist/src/components/slider/slider.js +18 -0
- package/dist/src/components/slider/slider.js.map +1 -0
- package/dist/src/components/slider/slider.stories.d.ts +9 -0
- package/dist/src/components/slider/slider.stories.d.ts.map +1 -0
- package/dist/src/components/slider/slider.stories.js +39 -0
- package/dist/src/components/slider/slider.stories.js.map +1 -0
- package/dist/src/components/slider/slider.test.d.ts +2 -0
- package/dist/src/components/slider/slider.test.d.ts.map +1 -0
- package/dist/src/components/slider/slider.test.js +266 -0
- package/dist/src/components/slider/slider.test.js.map +1 -0
- package/dist/src/components/slider/slider.types.d.ts +7 -0
- package/dist/src/components/slider/slider.types.d.ts.map +1 -0
- package/dist/src/components/slider/slider.types.js +2 -0
- package/dist/src/components/slider/slider.types.js.map +1 -0
- package/dist/src/components/social-login-button/index.d.ts +2 -0
- package/dist/src/components/social-login-button/index.d.ts.map +1 -0
- package/dist/src/components/social-login-button/index.js +2 -0
- package/dist/src/components/social-login-button/index.js.map +1 -0
- package/dist/src/components/social-login-button/social-login-button.d.ts +22 -0
- package/dist/src/components/social-login-button/social-login-button.d.ts.map +1 -0
- package/dist/src/components/social-login-button/social-login-button.js +59 -0
- package/dist/src/components/social-login-button/social-login-button.js.map +1 -0
- package/dist/src/components/social-login-button/social-login-button.stories.d.ts +31 -0
- package/dist/src/components/social-login-button/social-login-button.stories.d.ts.map +1 -0
- package/dist/src/components/social-login-button/social-login-button.stories.js +76 -0
- package/dist/src/components/social-login-button/social-login-button.stories.js.map +1 -0
- package/dist/src/components/social-login-button/social-login-button.test.d.ts +5 -0
- package/dist/src/components/social-login-button/social-login-button.test.d.ts.map +1 -0
- package/dist/src/components/social-login-button/social-login-button.test.js +71 -0
- package/dist/src/components/social-login-button/social-login-button.test.js.map +1 -0
- package/dist/src/components/social-login-buttons/index.d.ts +2 -0
- package/dist/src/components/social-login-buttons/index.d.ts.map +1 -0
- package/dist/src/components/social-login-buttons/index.js +2 -0
- package/dist/src/components/social-login-buttons/index.js.map +1 -0
- package/dist/src/components/social-login-buttons/social-login-buttons.d.ts +35 -0
- package/dist/src/components/social-login-buttons/social-login-buttons.d.ts.map +1 -0
- package/dist/src/components/social-login-buttons/social-login-buttons.js +14 -0
- package/dist/src/components/social-login-buttons/social-login-buttons.js.map +1 -0
- package/dist/src/components/social-login-buttons/social-login-buttons.stories.d.ts +28 -0
- package/dist/src/components/social-login-buttons/social-login-buttons.stories.d.ts.map +1 -0
- package/dist/src/components/social-login-buttons/social-login-buttons.stories.js +90 -0
- package/dist/src/components/social-login-buttons/social-login-buttons.stories.js.map +1 -0
- package/dist/src/components/social-login-buttons/social-login-buttons.test.d.ts +5 -0
- package/dist/src/components/social-login-buttons/social-login-buttons.test.d.ts.map +1 -0
- package/dist/src/components/social-login-buttons/social-login-buttons.test.js +62 -0
- package/dist/src/components/social-login-buttons/social-login-buttons.test.js.map +1 -0
- package/dist/src/components/sparkline-chart/index.d.ts +3 -0
- package/dist/src/components/sparkline-chart/index.d.ts.map +1 -0
- package/dist/src/components/sparkline-chart/index.js +2 -0
- package/dist/src/components/sparkline-chart/index.js.map +1 -0
- package/dist/src/components/sparkline-chart/sparkline-chart.d.ts +52 -0
- package/dist/src/components/sparkline-chart/sparkline-chart.d.ts.map +1 -0
- package/dist/src/components/sparkline-chart/sparkline-chart.js +131 -0
- package/dist/src/components/sparkline-chart/sparkline-chart.js.map +1 -0
- package/dist/src/components/sparkline-chart/sparkline-chart.stories.d.ts +16 -0
- package/dist/src/components/sparkline-chart/sparkline-chart.stories.d.ts.map +1 -0
- package/dist/src/components/sparkline-chart/sparkline-chart.stories.js +113 -0
- package/dist/src/components/sparkline-chart/sparkline-chart.stories.js.map +1 -0
- package/dist/src/components/sparkline-chart/sparkline-chart.test.d.ts +2 -0
- package/dist/src/components/sparkline-chart/sparkline-chart.test.d.ts.map +1 -0
- package/dist/src/components/sparkline-chart/sparkline-chart.test.js +169 -0
- package/dist/src/components/sparkline-chart/sparkline-chart.test.js.map +1 -0
- package/dist/src/components/spinner/index.d.ts +2 -0
- package/dist/src/components/spinner/index.d.ts.map +1 -0
- package/dist/src/components/spinner/index.js +2 -0
- package/dist/src/components/spinner/index.js.map +1 -0
- package/dist/src/components/spinner/spinner.d.ts +12 -0
- package/dist/src/components/spinner/spinner.d.ts.map +1 -0
- package/dist/src/components/spinner/spinner.js +32 -0
- package/dist/src/components/spinner/spinner.js.map +1 -0
- package/dist/src/components/spinner/spinner.stories.d.ts +29 -0
- package/dist/src/components/spinner/spinner.stories.d.ts.map +1 -0
- package/dist/src/components/spinner/spinner.stories.js +51 -0
- package/dist/src/components/spinner/spinner.stories.js.map +1 -0
- package/dist/src/components/spinner/spinner.test.d.ts +2 -0
- package/dist/src/components/spinner/spinner.test.d.ts.map +1 -0
- package/dist/src/components/spinner/spinner.test.js +50 -0
- package/dist/src/components/spinner/spinner.test.js.map +1 -0
- package/dist/src/components/spinner/spinner.types.d.ts +7 -0
- package/dist/src/components/spinner/spinner.types.d.ts.map +1 -0
- package/dist/src/components/spinner/spinner.types.js +2 -0
- package/dist/src/components/spinner/spinner.types.js.map +1 -0
- package/dist/src/components/steps/index.d.ts +4 -0
- package/dist/src/components/steps/index.d.ts.map +1 -0
- package/dist/src/components/steps/index.js +3 -0
- package/dist/src/components/steps/index.js.map +1 -0
- package/dist/src/components/steps/steps-skeleton.d.ts +45 -0
- package/dist/src/components/steps/steps-skeleton.d.ts.map +1 -0
- package/dist/src/components/steps/steps-skeleton.js +26 -0
- package/dist/src/components/steps/steps-skeleton.js.map +1 -0
- package/dist/src/components/steps/steps-skeleton.test.d.ts +2 -0
- package/dist/src/components/steps/steps-skeleton.test.d.ts.map +1 -0
- package/dist/src/components/steps/steps-skeleton.test.js +65 -0
- package/dist/src/components/steps/steps-skeleton.test.js.map +1 -0
- package/dist/src/components/steps/steps.d.ts +23 -0
- package/dist/src/components/steps/steps.d.ts.map +1 -0
- package/dist/src/components/steps/steps.js +37 -0
- package/dist/src/components/steps/steps.js.map +1 -0
- package/dist/src/components/steps/steps.stories.d.ts +15 -0
- package/dist/src/components/steps/steps.stories.d.ts.map +1 -0
- package/dist/src/components/steps/steps.stories.js +172 -0
- package/dist/src/components/steps/steps.stories.js.map +1 -0
- package/dist/src/components/steps/steps.test.d.ts +2 -0
- package/dist/src/components/steps/steps.test.d.ts.map +1 -0
- package/dist/src/components/steps/steps.test.js +286 -0
- package/dist/src/components/steps/steps.test.js.map +1 -0
- package/dist/src/components/switch/index.d.ts +3 -0
- package/dist/src/components/switch/index.d.ts.map +1 -0
- package/dist/src/components/switch/index.js +2 -0
- package/dist/src/components/switch/index.js.map +1 -0
- package/dist/src/components/switch/switch.d.ts +4 -0
- package/dist/src/components/switch/switch.d.ts.map +1 -0
- package/dist/src/components/switch/switch.js +14 -0
- package/dist/src/components/switch/switch.js.map +1 -0
- package/dist/src/components/switch/switch.stories.d.ts +27 -0
- package/dist/src/components/switch/switch.stories.d.ts.map +1 -0
- package/dist/src/components/switch/switch.stories.js +59 -0
- package/dist/src/components/switch/switch.stories.js.map +1 -0
- package/dist/src/components/switch/switch.test.d.ts +2 -0
- package/dist/src/components/switch/switch.test.d.ts.map +1 -0
- package/dist/src/components/switch/switch.test.js +48 -0
- package/dist/src/components/switch/switch.test.js.map +1 -0
- package/dist/src/components/switch/switch.types.d.ts +7 -0
- package/dist/src/components/switch/switch.types.d.ts.map +1 -0
- package/dist/src/components/switch/switch.types.js +2 -0
- package/dist/src/components/switch/switch.types.js.map +1 -0
- package/dist/src/components/table/index.d.ts +4 -0
- package/dist/src/components/table/index.d.ts.map +1 -0
- package/dist/src/components/table/index.js +3 -0
- package/dist/src/components/table/index.js.map +1 -0
- package/dist/src/components/table/table-skeleton.d.ts +37 -0
- package/dist/src/components/table/table-skeleton.d.ts.map +1 -0
- package/dist/src/components/table/table-skeleton.js +29 -0
- package/dist/src/components/table/table-skeleton.js.map +1 -0
- package/dist/src/components/table/table.d.ts +54 -0
- package/dist/src/components/table/table.d.ts.map +1 -0
- package/dist/src/components/table/table.js +58 -0
- package/dist/src/components/table/table.js.map +1 -0
- package/dist/src/components/table/table.stories.d.ts +83 -0
- package/dist/src/components/table/table.stories.d.ts.map +1 -0
- package/dist/src/components/table/table.stories.js +244 -0
- package/dist/src/components/table/table.stories.js.map +1 -0
- package/dist/src/components/table/table.test.d.ts +2 -0
- package/dist/src/components/table/table.test.d.ts.map +1 -0
- package/dist/src/components/table/table.test.js +161 -0
- package/dist/src/components/table/table.test.js.map +1 -0
- package/dist/src/components/table/table.types.d.ts +62 -0
- package/dist/src/components/table/table.types.d.ts.map +1 -0
- package/dist/src/components/table/table.types.js +2 -0
- package/dist/src/components/table/table.types.js.map +1 -0
- package/dist/src/components/table-skeleton/index.d.ts +3 -0
- package/dist/src/components/table-skeleton/index.d.ts.map +1 -0
- package/dist/src/components/table-skeleton/index.js +2 -0
- package/dist/src/components/table-skeleton/index.js.map +1 -0
- package/dist/src/components/table-skeleton/table-skeleton.d.ts +20 -0
- package/dist/src/components/table-skeleton/table-skeleton.d.ts.map +1 -0
- package/dist/src/components/table-skeleton/table-skeleton.js +15 -0
- package/dist/src/components/table-skeleton/table-skeleton.js.map +1 -0
- package/dist/src/components/table-skeleton/table-skeleton.stories.d.ts +49 -0
- package/dist/src/components/table-skeleton/table-skeleton.stories.d.ts.map +1 -0
- package/dist/src/components/table-skeleton/table-skeleton.stories.js +101 -0
- package/dist/src/components/table-skeleton/table-skeleton.stories.js.map +1 -0
- package/dist/src/components/table-skeleton/table-skeleton.test.d.ts +2 -0
- package/dist/src/components/table-skeleton/table-skeleton.test.d.ts.map +1 -0
- package/dist/src/components/table-skeleton/table-skeleton.test.js +130 -0
- package/dist/src/components/table-skeleton/table-skeleton.test.js.map +1 -0
- package/dist/src/components/tabs/index.d.ts +4 -0
- package/dist/src/components/tabs/index.d.ts.map +1 -0
- package/dist/src/components/tabs/index.js +3 -0
- package/dist/src/components/tabs/index.js.map +1 -0
- package/dist/src/components/tabs/tabs-skeleton.d.ts +50 -0
- package/dist/src/components/tabs/tabs-skeleton.d.ts.map +1 -0
- package/dist/src/components/tabs/tabs-skeleton.js +29 -0
- package/dist/src/components/tabs/tabs-skeleton.js.map +1 -0
- package/dist/src/components/tabs/tabs-skeleton.test.d.ts +2 -0
- package/dist/src/components/tabs/tabs-skeleton.test.d.ts.map +1 -0
- package/dist/src/components/tabs/tabs-skeleton.test.js +69 -0
- package/dist/src/components/tabs/tabs-skeleton.test.js.map +1 -0
- package/dist/src/components/tabs/tabs.d.ts +14 -0
- package/dist/src/components/tabs/tabs.d.ts.map +1 -0
- package/dist/src/components/tabs/tabs.js +51 -0
- package/dist/src/components/tabs/tabs.js.map +1 -0
- package/dist/src/components/tabs/tabs.stories.d.ts +16 -0
- package/dist/src/components/tabs/tabs.stories.d.ts.map +1 -0
- package/dist/src/components/tabs/tabs.stories.js +36 -0
- package/dist/src/components/tabs/tabs.stories.js.map +1 -0
- package/dist/src/components/tabs/tabs.test.d.ts +2 -0
- package/dist/src/components/tabs/tabs.test.d.ts.map +1 -0
- package/dist/src/components/tabs/tabs.test.js +37 -0
- package/dist/src/components/tabs/tabs.test.js.map +1 -0
- package/dist/src/components/tag-input/index.d.ts +3 -0
- package/dist/src/components/tag-input/index.d.ts.map +1 -0
- package/dist/src/components/tag-input/index.js +2 -0
- package/dist/src/components/tag-input/index.js.map +1 -0
- package/dist/src/components/tag-input/tag-input.d.ts +43 -0
- package/dist/src/components/tag-input/tag-input.d.ts.map +1 -0
- package/dist/src/components/tag-input/tag-input.js +94 -0
- package/dist/src/components/tag-input/tag-input.js.map +1 -0
- package/dist/src/components/tag-input/tag-input.stories.d.ts +20 -0
- package/dist/src/components/tag-input/tag-input.stories.d.ts.map +1 -0
- package/dist/src/components/tag-input/tag-input.stories.js +65 -0
- package/dist/src/components/tag-input/tag-input.stories.js.map +1 -0
- package/dist/src/components/tag-input/tag-input.test.d.ts +2 -0
- package/dist/src/components/tag-input/tag-input.test.d.ts.map +1 -0
- package/dist/src/components/tag-input/tag-input.test.js +218 -0
- package/dist/src/components/tag-input/tag-input.test.js.map +1 -0
- package/dist/src/components/tag-input/tag-input.types.d.ts +42 -0
- package/dist/src/components/tag-input/tag-input.types.d.ts.map +1 -0
- package/dist/src/components/tag-input/tag-input.types.js +2 -0
- package/dist/src/components/tag-input/tag-input.types.js.map +1 -0
- package/dist/src/components/textarea/index.d.ts +3 -0
- package/dist/src/components/textarea/index.d.ts.map +1 -0
- package/dist/src/components/textarea/index.js +2 -0
- package/dist/src/components/textarea/index.js.map +1 -0
- package/dist/src/components/textarea/textarea.d.ts +4 -0
- package/dist/src/components/textarea/textarea.d.ts.map +1 -0
- package/dist/src/components/textarea/textarea.js +11 -0
- package/dist/src/components/textarea/textarea.js.map +1 -0
- package/dist/src/components/textarea/textarea.stories.d.ts +26 -0
- package/dist/src/components/textarea/textarea.stories.d.ts.map +1 -0
- package/dist/src/components/textarea/textarea.stories.js +53 -0
- package/dist/src/components/textarea/textarea.stories.js.map +1 -0
- package/dist/src/components/textarea/textarea.test.d.ts +2 -0
- package/dist/src/components/textarea/textarea.test.d.ts.map +1 -0
- package/dist/src/components/textarea/textarea.test.js +49 -0
- package/dist/src/components/textarea/textarea.test.js.map +1 -0
- package/dist/src/components/textarea/textarea.types.d.ts +6 -0
- package/dist/src/components/textarea/textarea.types.d.ts.map +1 -0
- package/dist/src/components/textarea/textarea.types.js +2 -0
- package/dist/src/components/textarea/textarea.types.js.map +1 -0
- package/dist/src/components/toast/index.d.ts +13 -0
- package/dist/src/components/toast/index.d.ts.map +1 -0
- package/dist/src/components/toast/index.js +24 -0
- package/dist/src/components/toast/index.js.map +1 -0
- package/dist/src/components/toast/toaster.d.ts +5 -0
- package/dist/src/components/toast/toaster.d.ts.map +1 -0
- package/dist/src/components/toast/toaster.js +16 -0
- package/dist/src/components/toast/toaster.js.map +1 -0
- package/dist/src/components/toast/toaster.stories.d.ts +10 -0
- package/dist/src/components/toast/toaster.stories.d.ts.map +1 -0
- package/dist/src/components/toast/toaster.stories.js +60 -0
- package/dist/src/components/toast/toaster.stories.js.map +1 -0
- package/dist/src/components/toast/toaster.test.d.ts +2 -0
- package/dist/src/components/toast/toaster.test.d.ts.map +1 -0
- package/dist/src/components/toast/toaster.test.js +467 -0
- package/dist/src/components/toast/toaster.test.js.map +1 -0
- package/dist/src/components/toggle/index.d.ts +2 -0
- package/dist/src/components/toggle/index.d.ts.map +1 -0
- package/dist/src/components/toggle/index.js +2 -0
- package/dist/src/components/toggle/index.js.map +1 -0
- package/dist/src/components/toggle/toggle.d.ts +13 -0
- package/dist/src/components/toggle/toggle.d.ts.map +1 -0
- package/dist/src/components/toggle/toggle.js +27 -0
- package/dist/src/components/toggle/toggle.js.map +1 -0
- package/dist/src/components/toggle/toggle.stories.d.ts +23 -0
- package/dist/src/components/toggle/toggle.stories.d.ts.map +1 -0
- package/dist/src/components/toggle/toggle.stories.js +45 -0
- package/dist/src/components/toggle/toggle.stories.js.map +1 -0
- package/dist/src/components/toggle/toggle.test.d.ts +2 -0
- package/dist/src/components/toggle/toggle.test.d.ts.map +1 -0
- package/dist/src/components/toggle/toggle.test.js +60 -0
- package/dist/src/components/toggle/toggle.test.js.map +1 -0
- package/dist/src/components/tooltip/index.d.ts +2 -0
- package/dist/src/components/tooltip/index.d.ts.map +1 -0
- package/dist/src/components/tooltip/index.js +2 -0
- package/dist/src/components/tooltip/index.js.map +1 -0
- package/dist/src/components/tooltip/tooltip.d.ts +8 -0
- package/dist/src/components/tooltip/tooltip.d.ts.map +1 -0
- package/dist/src/components/tooltip/tooltip.js +18 -0
- package/dist/src/components/tooltip/tooltip.js.map +1 -0
- package/dist/src/components/tooltip/tooltip.stories.d.ts +25 -0
- package/dist/src/components/tooltip/tooltip.stories.d.ts.map +1 -0
- package/dist/src/components/tooltip/tooltip.stories.js +39 -0
- package/dist/src/components/tooltip/tooltip.stories.js.map +1 -0
- package/dist/src/components/tooltip/tooltip.test.d.ts +2 -0
- package/dist/src/components/tooltip/tooltip.test.d.ts.map +1 -0
- package/dist/src/components/tooltip/tooltip.test.js +28 -0
- package/dist/src/components/tooltip/tooltip.test.js.map +1 -0
- package/dist/src/components/user-menu-dropdown/__tests__/user-menu-dropdown.test.d.ts +2 -0
- package/dist/src/components/user-menu-dropdown/__tests__/user-menu-dropdown.test.d.ts.map +1 -0
- package/dist/src/components/user-menu-dropdown/__tests__/user-menu-dropdown.test.js +73 -0
- package/dist/src/components/user-menu-dropdown/__tests__/user-menu-dropdown.test.js.map +1 -0
- package/dist/src/components/user-menu-dropdown/index.d.ts +2 -0
- package/dist/src/components/user-menu-dropdown/index.d.ts.map +1 -0
- package/dist/src/components/user-menu-dropdown/index.js +2 -0
- package/dist/src/components/user-menu-dropdown/index.js.map +1 -0
- package/dist/src/components/user-menu-dropdown/user-menu-dropdown.d.ts +32 -0
- package/dist/src/components/user-menu-dropdown/user-menu-dropdown.d.ts.map +1 -0
- package/dist/src/components/user-menu-dropdown/user-menu-dropdown.js +28 -0
- package/dist/src/components/user-menu-dropdown/user-menu-dropdown.js.map +1 -0
- package/dist/src/components/user-menu-dropdown/user-menu-dropdown.stories.d.ts +12 -0
- package/dist/src/components/user-menu-dropdown/user-menu-dropdown.stories.d.ts.map +1 -0
- package/dist/src/components/user-menu-dropdown/user-menu-dropdown.stories.js +68 -0
- package/dist/src/components/user-menu-dropdown/user-menu-dropdown.stories.js.map +1 -0
- package/dist/src/components/user-menu-dropdown/user-menu-dropdown.test.d.ts +2 -0
- package/dist/src/components/user-menu-dropdown/user-menu-dropdown.test.d.ts.map +1 -0
- package/dist/src/components/user-menu-dropdown/user-menu-dropdown.test.js +210 -0
- package/dist/src/components/user-menu-dropdown/user-menu-dropdown.test.js.map +1 -0
- package/dist/src/config/alert.d.ts +109 -0
- package/dist/src/config/alert.d.ts.map +1 -0
- package/dist/src/config/alert.js +134 -0
- package/dist/src/config/alert.js.map +1 -0
- package/dist/src/config/aspect-ratio.d.ts +22 -0
- package/dist/src/config/aspect-ratio.d.ts.map +1 -0
- package/dist/src/config/aspect-ratio.js +22 -0
- package/dist/src/config/aspect-ratio.js.map +1 -0
- package/dist/src/config/avatar.d.ts +73 -0
- package/dist/src/config/avatar.d.ts.map +1 -0
- package/dist/src/config/avatar.js +142 -0
- package/dist/src/config/avatar.js.map +1 -0
- package/dist/src/config/badge.d.ts +29 -0
- package/dist/src/config/badge.d.ts.map +1 -0
- package/dist/src/config/badge.js +29 -0
- package/dist/src/config/badge.js.map +1 -0
- package/dist/src/config/button.d.ts +50 -0
- package/dist/src/config/button.d.ts.map +1 -0
- package/dist/src/config/button.js +50 -0
- package/dist/src/config/button.js.map +1 -0
- package/dist/src/config/card.d.ts +12 -0
- package/dist/src/config/card.d.ts.map +1 -0
- package/dist/src/config/card.js +12 -0
- package/dist/src/config/card.js.map +1 -0
- package/dist/src/config/checkbox.d.ts +7 -0
- package/dist/src/config/checkbox.d.ts.map +1 -0
- package/dist/src/config/checkbox.js +7 -0
- package/dist/src/config/checkbox.js.map +1 -0
- package/dist/src/config/dropdown-menu.d.ts +15 -0
- package/dist/src/config/dropdown-menu.d.ts.map +1 -0
- package/dist/src/config/dropdown-menu.js +15 -0
- package/dist/src/config/dropdown-menu.js.map +1 -0
- package/dist/src/config/input.d.ts +7 -0
- package/dist/src/config/input.d.ts.map +1 -0
- package/dist/src/config/input.js +7 -0
- package/dist/src/config/input.js.map +1 -0
- package/dist/src/config/navigation-menu.d.ts +15 -0
- package/dist/src/config/navigation-menu.d.ts.map +1 -0
- package/dist/src/config/navigation-menu.js +15 -0
- package/dist/src/config/navigation-menu.js.map +1 -0
- package/dist/src/config/popover.d.ts +75 -0
- package/dist/src/config/popover.d.ts.map +1 -0
- package/dist/src/config/popover.js +75 -0
- package/dist/src/config/popover.js.map +1 -0
- package/dist/src/config/radio-group.d.ts +55 -0
- package/dist/src/config/radio-group.d.ts.map +1 -0
- package/dist/src/config/radio-group.js +55 -0
- package/dist/src/config/radio-group.js.map +1 -0
- package/dist/src/config/select.d.ts +30 -0
- package/dist/src/config/select.d.ts.map +1 -0
- package/dist/src/config/select.js +30 -0
- package/dist/src/config/select.js.map +1 -0
- package/dist/src/config/switch.d.ts +7 -0
- package/dist/src/config/switch.d.ts.map +1 -0
- package/dist/src/config/switch.js +7 -0
- package/dist/src/config/switch.js.map +1 -0
- package/dist/src/config/table.d.ts +22 -0
- package/dist/src/config/table.d.ts.map +1 -0
- package/dist/src/config/table.js +22 -0
- package/dist/src/config/table.js.map +1 -0
- package/dist/src/config/tabs.d.ts +36 -0
- package/dist/src/config/tabs.d.ts.map +1 -0
- package/dist/src/config/tabs.js +36 -0
- package/dist/src/config/tabs.js.map +1 -0
- package/dist/src/config/tailwind-base.d.ts +469 -0
- package/dist/src/config/tailwind-base.d.ts.map +1 -0
- package/dist/src/config/tailwind-base.js +132 -0
- package/dist/src/config/tailwind-base.js.map +1 -0
- package/dist/src/lib/__tests__/animations.test.d.ts +2 -0
- package/dist/src/lib/__tests__/animations.test.d.ts.map +1 -0
- package/dist/src/lib/__tests__/animations.test.js +60 -0
- package/dist/src/lib/__tests__/animations.test.js.map +1 -0
- package/dist/src/lib/animations.d.ts +180 -0
- package/dist/src/lib/animations.d.ts.map +1 -0
- package/dist/src/lib/animations.js +293 -0
- package/dist/src/lib/animations.js.map +1 -0
- package/dist/src/lib/use-mobile.d.ts +2 -0
- package/dist/src/lib/use-mobile.d.ts.map +1 -0
- package/dist/src/lib/use-mobile.js +14 -0
- package/dist/src/lib/use-mobile.js.map +1 -0
- package/dist/src/lib/utils.d.ts +7 -0
- package/dist/src/lib/utils.d.ts.map +1 -0
- package/dist/src/lib/utils.js +10 -0
- package/dist/src/lib/utils.js.map +1 -0
- package/dist/src/primitives/command/Command.d.ts +84 -0
- package/dist/src/primitives/command/Command.d.ts.map +1 -0
- package/dist/src/primitives/command/Command.js +54 -0
- package/dist/src/primitives/command/Command.js.map +1 -0
- package/dist/src/primitives/command/index.d.ts +2 -0
- package/dist/src/primitives/command/index.d.ts.map +1 -0
- package/dist/src/primitives/command/index.js +2 -0
- package/dist/src/primitives/command/index.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +414 -0
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { render, screen } from "@testing-library/react";
|
|
3
|
+
import userEvent from "@testing-library/user-event";
|
|
4
|
+
import { describe, expect, it, vi } from "vitest";
|
|
5
|
+
import { Steps } from "./steps";
|
|
6
|
+
const mockSteps = [
|
|
7
|
+
{ title: "Step 1", description: "First step description" },
|
|
8
|
+
{ title: "Step 2", description: "Second step description" },
|
|
9
|
+
{ title: "Step 3", description: "Third step description" },
|
|
10
|
+
];
|
|
11
|
+
describe("Steps", () => {
|
|
12
|
+
describe("Basic Rendering", () => {
|
|
13
|
+
it("renders all steps", () => {
|
|
14
|
+
render(_jsx(Steps, { currentStep: 1, items: mockSteps }));
|
|
15
|
+
expect(screen.getByText("Step 1")).toBeInTheDocument();
|
|
16
|
+
expect(screen.getByText("Step 2")).toBeInTheDocument();
|
|
17
|
+
expect(screen.getByText("Step 3")).toBeInTheDocument();
|
|
18
|
+
});
|
|
19
|
+
it("renders step descriptions", () => {
|
|
20
|
+
render(_jsx(Steps, { currentStep: 1, items: mockSteps }));
|
|
21
|
+
expect(screen.getByText("First step description")).toBeInTheDocument();
|
|
22
|
+
expect(screen.getByText("Second step description")).toBeInTheDocument();
|
|
23
|
+
expect(screen.getByText("Third step description")).toBeInTheDocument();
|
|
24
|
+
});
|
|
25
|
+
it("renders without descriptions", () => {
|
|
26
|
+
const stepsWithoutDesc = [
|
|
27
|
+
{ title: "Step 1" },
|
|
28
|
+
{ title: "Step 2" },
|
|
29
|
+
];
|
|
30
|
+
render(_jsx(Steps, { currentStep: 1, items: stepsWithoutDesc }));
|
|
31
|
+
expect(screen.getByText("Step 1")).toBeInTheDocument();
|
|
32
|
+
expect(screen.getByText("Step 2")).toBeInTheDocument();
|
|
33
|
+
});
|
|
34
|
+
it("renders step numbers by default", () => {
|
|
35
|
+
render(_jsx(Steps, { currentStep: 1, items: mockSteps }));
|
|
36
|
+
expect(screen.getByText("1")).toBeInTheDocument();
|
|
37
|
+
expect(screen.getByText("2")).toBeInTheDocument();
|
|
38
|
+
expect(screen.getByText("3")).toBeInTheDocument();
|
|
39
|
+
});
|
|
40
|
+
it("accepts custom className", () => {
|
|
41
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps, className: "custom-class" }));
|
|
42
|
+
expect(container.firstChild).toHaveClass("custom-class");
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
describe("Current Step", () => {
|
|
46
|
+
it("highlights current step", () => {
|
|
47
|
+
render(_jsx(Steps, { currentStep: 2, items: mockSteps }));
|
|
48
|
+
const step2 = screen.getByText("Step 2").closest("div");
|
|
49
|
+
expect(step2).not.toBeNull();
|
|
50
|
+
expect(step2).toHaveClass("text-primary");
|
|
51
|
+
});
|
|
52
|
+
it("shows check icon for completed steps", () => {
|
|
53
|
+
const { container } = render(_jsx(Steps, { currentStep: 3, items: mockSteps }));
|
|
54
|
+
const checkIcons = container.querySelectorAll("svg");
|
|
55
|
+
expect(checkIcons.length).toBeGreaterThan(0);
|
|
56
|
+
});
|
|
57
|
+
it("shows numbers for upcoming steps", () => {
|
|
58
|
+
render(_jsx(Steps, { currentStep: 1, items: mockSteps }));
|
|
59
|
+
expect(screen.getByText("2")).toBeInTheDocument();
|
|
60
|
+
expect(screen.getByText("3")).toBeInTheDocument();
|
|
61
|
+
});
|
|
62
|
+
it("applies scale to active step", () => {
|
|
63
|
+
const { container } = render(_jsx(Steps, { currentStep: 2, items: mockSteps }));
|
|
64
|
+
const indicators = container.querySelectorAll('[class*="rounded-full"]');
|
|
65
|
+
const activeIndicator = indicators[1]; // Second step (index 1)
|
|
66
|
+
expect(activeIndicator).toBeDefined();
|
|
67
|
+
expect(activeIndicator).toHaveClass("scale-110");
|
|
68
|
+
});
|
|
69
|
+
});
|
|
70
|
+
describe("Completed Steps", () => {
|
|
71
|
+
it("marks previous steps as completed", () => {
|
|
72
|
+
const { container } = render(_jsx(Steps, { currentStep: 3, items: mockSteps }));
|
|
73
|
+
const checkIcons = container.querySelectorAll("svg");
|
|
74
|
+
expect(checkIcons.length).toBeGreaterThanOrEqual(2);
|
|
75
|
+
});
|
|
76
|
+
it("applies completed styling to finished steps", () => {
|
|
77
|
+
const { container } = render(_jsx(Steps, { currentStep: 3, items: mockSteps }));
|
|
78
|
+
const indicators = container.querySelectorAll('[class*="rounded-full"]');
|
|
79
|
+
const firstIndicator = indicators[0];
|
|
80
|
+
expect(firstIndicator).toBeDefined();
|
|
81
|
+
expect(firstIndicator).toHaveClass("bg-primary");
|
|
82
|
+
});
|
|
83
|
+
it("shows progress line for completed steps", () => {
|
|
84
|
+
const { container } = render(_jsx(Steps, { currentStep: 3, items: mockSteps }));
|
|
85
|
+
const progressLines = container.querySelectorAll('[class*="bg-primary"]');
|
|
86
|
+
expect(progressLines.length).toBeGreaterThan(0);
|
|
87
|
+
});
|
|
88
|
+
});
|
|
89
|
+
describe("Orientation", () => {
|
|
90
|
+
it("renders horizontal by default", () => {
|
|
91
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps }));
|
|
92
|
+
expect(container.firstChild).toHaveClass("flex-row");
|
|
93
|
+
});
|
|
94
|
+
it("renders vertical when specified", () => {
|
|
95
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps, orientation: "vertical" }));
|
|
96
|
+
expect(container.firstChild).toHaveClass("flex-col");
|
|
97
|
+
});
|
|
98
|
+
it("applies correct horizontal styling", () => {
|
|
99
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps, orientation: "horizontal" }));
|
|
100
|
+
expect(container.firstChild).toHaveClass("items-start");
|
|
101
|
+
});
|
|
102
|
+
it("applies correct vertical styling", () => {
|
|
103
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps, orientation: "vertical" }));
|
|
104
|
+
expect(container.firstChild).toHaveClass("flex-col");
|
|
105
|
+
});
|
|
106
|
+
});
|
|
107
|
+
describe("Click Interactions", () => {
|
|
108
|
+
it("calls onStepClick when step is clicked", async () => {
|
|
109
|
+
const user = userEvent.setup();
|
|
110
|
+
const onStepClick = vi.fn();
|
|
111
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps, onStepClick: onStepClick }));
|
|
112
|
+
const indicators = container.querySelectorAll('[class*="rounded-full"]');
|
|
113
|
+
const secondIndicator = indicators[1];
|
|
114
|
+
expect(secondIndicator).toBeDefined();
|
|
115
|
+
await user.click(secondIndicator); // Click second step
|
|
116
|
+
expect(onStepClick).toHaveBeenCalledWith(2);
|
|
117
|
+
});
|
|
118
|
+
it("does not call onStepClick when not provided", async () => {
|
|
119
|
+
const user = userEvent.setup();
|
|
120
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps }));
|
|
121
|
+
const indicators = container.querySelectorAll('[class*="rounded-full"]');
|
|
122
|
+
const secondIndicator = indicators[1];
|
|
123
|
+
expect(secondIndicator).toBeDefined();
|
|
124
|
+
await user.click(secondIndicator);
|
|
125
|
+
// Should not throw error
|
|
126
|
+
expect(true).toBe(true);
|
|
127
|
+
});
|
|
128
|
+
it("makes steps clickable when onStepClick is provided", () => {
|
|
129
|
+
const onStepClick = vi.fn();
|
|
130
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps, onStepClick: onStepClick }));
|
|
131
|
+
const indicators = container.querySelectorAll('[class*="cursor-pointer"]');
|
|
132
|
+
expect(indicators.length).toBeGreaterThan(0);
|
|
133
|
+
});
|
|
134
|
+
it("does not make current step clickable", () => {
|
|
135
|
+
const onStepClick = vi.fn();
|
|
136
|
+
const { container } = render(_jsx(Steps, { currentStep: 2, items: mockSteps, onStepClick: onStepClick }));
|
|
137
|
+
const indicators = container.querySelectorAll('[class*="rounded-full"]');
|
|
138
|
+
const activeIndicator = indicators[1]; // Second step (current)
|
|
139
|
+
// Current step should not have cursor-pointer
|
|
140
|
+
expect(activeIndicator).toBeDefined();
|
|
141
|
+
expect(activeIndicator?.className).not.toContain("cursor-pointer");
|
|
142
|
+
});
|
|
143
|
+
it("allows clicking on completed steps", async () => {
|
|
144
|
+
const user = userEvent.setup();
|
|
145
|
+
const onStepClick = vi.fn();
|
|
146
|
+
const { container } = render(_jsx(Steps, { currentStep: 3, items: mockSteps, onStepClick: onStepClick }));
|
|
147
|
+
const indicators = container.querySelectorAll('[class*="rounded-full"]');
|
|
148
|
+
const firstIndicator = indicators[0];
|
|
149
|
+
expect(firstIndicator).toBeDefined();
|
|
150
|
+
await user.click(firstIndicator); // Click first (completed) step
|
|
151
|
+
expect(onStepClick).toHaveBeenCalledWith(1);
|
|
152
|
+
});
|
|
153
|
+
it("allows clicking on future steps", async () => {
|
|
154
|
+
const user = userEvent.setup();
|
|
155
|
+
const onStepClick = vi.fn();
|
|
156
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps, onStepClick: onStepClick }));
|
|
157
|
+
const indicators = container.querySelectorAll('[class*="rounded-full"]');
|
|
158
|
+
const thirdIndicator = indicators[2];
|
|
159
|
+
expect(thirdIndicator).toBeDefined();
|
|
160
|
+
await user.click(thirdIndicator); // Click third (future) step
|
|
161
|
+
expect(onStepClick).toHaveBeenCalledWith(3);
|
|
162
|
+
});
|
|
163
|
+
});
|
|
164
|
+
describe("Custom Icons", () => {
|
|
165
|
+
it("renders custom icons", () => {
|
|
166
|
+
const stepsWithIcons = [
|
|
167
|
+
{ title: "Step 1", icon: _jsx("span", { "data-testid": "icon-1", children: "\uD83D\uDCDD" }) },
|
|
168
|
+
{ title: "Step 2", icon: _jsx("span", { "data-testid": "icon-2", children: "\u2705" }) },
|
|
169
|
+
];
|
|
170
|
+
render(_jsx(Steps, { currentStep: 1, items: stepsWithIcons }));
|
|
171
|
+
expect(screen.getByTestId("icon-1")).toBeInTheDocument();
|
|
172
|
+
expect(screen.getByTestId("icon-2")).toBeInTheDocument();
|
|
173
|
+
});
|
|
174
|
+
it("replaces custom icons with check for completed steps", () => {
|
|
175
|
+
const stepsWithIcons = [
|
|
176
|
+
{ title: "Step 1", icon: _jsx("span", { "data-testid": "icon-1", children: "\uD83D\uDCDD" }) },
|
|
177
|
+
{ title: "Step 2", icon: _jsx("span", { "data-testid": "icon-2", children: "\u2705" }) },
|
|
178
|
+
];
|
|
179
|
+
const { container } = render(_jsx(Steps, { currentStep: 2, items: stepsWithIcons }));
|
|
180
|
+
// First step should show check icon instead of custom icon
|
|
181
|
+
const checkIcons = container.querySelectorAll("svg");
|
|
182
|
+
expect(checkIcons.length).toBeGreaterThan(0);
|
|
183
|
+
});
|
|
184
|
+
});
|
|
185
|
+
describe("Progress Lines", () => {
|
|
186
|
+
it("shows connecting lines between steps", () => {
|
|
187
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps, orientation: "horizontal" }));
|
|
188
|
+
// Check for horizontal connecting lines (have w-full class)
|
|
189
|
+
const horizontalLines = container.querySelectorAll('[class*="w-full"]');
|
|
190
|
+
expect(horizontalLines.length).toBeGreaterThan(0);
|
|
191
|
+
});
|
|
192
|
+
it("shows horizontal lines in horizontal orientation", () => {
|
|
193
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps, orientation: "horizontal" }));
|
|
194
|
+
const horizontalLines = container.querySelectorAll('[class*="w-full"]');
|
|
195
|
+
expect(horizontalLines.length).toBeGreaterThan(0);
|
|
196
|
+
});
|
|
197
|
+
it("shows vertical lines in vertical orientation", () => {
|
|
198
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps, orientation: "vertical" }));
|
|
199
|
+
const verticalLines = Array.from(container.querySelectorAll("div")).filter((el) => el.className.includes("h-[calc"));
|
|
200
|
+
expect(verticalLines.length).toBeGreaterThan(0);
|
|
201
|
+
});
|
|
202
|
+
it("animates progress lines with transitions", () => {
|
|
203
|
+
const { container } = render(_jsx(Steps, { currentStep: 2, items: mockSteps }));
|
|
204
|
+
const progressBars = container.querySelectorAll('[class*="transition-all"]');
|
|
205
|
+
expect(progressBars.length).toBeGreaterThan(0);
|
|
206
|
+
});
|
|
207
|
+
it("does not show line after last step", () => {
|
|
208
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps }));
|
|
209
|
+
const stepContainers = container.querySelectorAll('[class*="group relative flex"]');
|
|
210
|
+
const lastStep = stepContainers[stepContainers.length - 1];
|
|
211
|
+
// Last step should not contain connecting line
|
|
212
|
+
expect(lastStep).toBeDefined();
|
|
213
|
+
expect(lastStep?.querySelector('[class*="absolute"]')).toBeNull();
|
|
214
|
+
});
|
|
215
|
+
});
|
|
216
|
+
describe("Edge Cases", () => {
|
|
217
|
+
it("handles single step", () => {
|
|
218
|
+
const singleStep = [{ title: "Only Step" }];
|
|
219
|
+
render(_jsx(Steps, { currentStep: 1, items: singleStep }));
|
|
220
|
+
expect(screen.getByText("Only Step")).toBeInTheDocument();
|
|
221
|
+
});
|
|
222
|
+
it("handles empty items array gracefully", () => {
|
|
223
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: [] }));
|
|
224
|
+
expect(container.firstChild).toBeInTheDocument();
|
|
225
|
+
});
|
|
226
|
+
it("handles currentStep beyond items length", () => {
|
|
227
|
+
render(_jsx(Steps, { currentStep: 10, items: mockSteps }));
|
|
228
|
+
const { container } = render(_jsx(Steps, { currentStep: 10, items: mockSteps }));
|
|
229
|
+
// All steps should be completed
|
|
230
|
+
const checkIcons = container.querySelectorAll("svg");
|
|
231
|
+
expect(checkIcons.length).toBe(3);
|
|
232
|
+
});
|
|
233
|
+
it("handles currentStep of 0", () => {
|
|
234
|
+
render(_jsx(Steps, { currentStep: 0, items: mockSteps }));
|
|
235
|
+
// No steps should be completed
|
|
236
|
+
expect(screen.queryByText("1")).toBeInTheDocument();
|
|
237
|
+
});
|
|
238
|
+
it("handles many steps", () => {
|
|
239
|
+
const manySteps = Array.from({ length: 10 }, (_, i) => ({
|
|
240
|
+
title: `Step ${i + 1}`,
|
|
241
|
+
}));
|
|
242
|
+
render(_jsx(Steps, { currentStep: 5, items: manySteps }));
|
|
243
|
+
expect(screen.getByText("Step 1")).toBeInTheDocument();
|
|
244
|
+
expect(screen.getByText("Step 10")).toBeInTheDocument();
|
|
245
|
+
});
|
|
246
|
+
});
|
|
247
|
+
describe("Styling", () => {
|
|
248
|
+
it("applies transition classes", () => {
|
|
249
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps }));
|
|
250
|
+
const transitionElements = container.querySelectorAll('[class*="transition"]');
|
|
251
|
+
expect(transitionElements.length).toBeGreaterThan(0);
|
|
252
|
+
});
|
|
253
|
+
it("applies proper colors to active step", () => {
|
|
254
|
+
const { container } = render(_jsx(Steps, { currentStep: 2, items: mockSteps }));
|
|
255
|
+
const indicators = container.querySelectorAll('[class*="rounded-full"]');
|
|
256
|
+
const activeIndicator = indicators[1];
|
|
257
|
+
expect(activeIndicator).toHaveClass("bg-primary");
|
|
258
|
+
expect(activeIndicator).toHaveClass("text-primary-foreground");
|
|
259
|
+
});
|
|
260
|
+
it("applies proper colors to completed steps", () => {
|
|
261
|
+
const { container } = render(_jsx(Steps, { currentStep: 3, items: mockSteps }));
|
|
262
|
+
const indicators = container.querySelectorAll('[class*="rounded-full"]');
|
|
263
|
+
const completedIndicator = indicators[0];
|
|
264
|
+
expect(completedIndicator).toHaveClass("bg-primary");
|
|
265
|
+
});
|
|
266
|
+
it("applies proper colors to future steps", () => {
|
|
267
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps }));
|
|
268
|
+
const indicators = container.querySelectorAll('[class*="rounded-full"]');
|
|
269
|
+
const futureIndicator = indicators[2];
|
|
270
|
+
expect(futureIndicator).toHaveClass("border-border");
|
|
271
|
+
expect(futureIndicator).toHaveClass("bg-background");
|
|
272
|
+
});
|
|
273
|
+
});
|
|
274
|
+
describe("HTML Attributes", () => {
|
|
275
|
+
it("accepts standard div attributes", () => {
|
|
276
|
+
const { container } = render(_jsx(Steps, { currentStep: 1, items: mockSteps, id: "test-steps", "data-testid": "steps" }));
|
|
277
|
+
expect(container.firstChild).toHaveAttribute("id", "test-steps");
|
|
278
|
+
});
|
|
279
|
+
it("forwards ref correctly", () => {
|
|
280
|
+
const ref = vi.fn();
|
|
281
|
+
render(_jsx(Steps, { currentStep: 1, items: mockSteps, ref: ref }));
|
|
282
|
+
expect(ref).toHaveBeenCalled();
|
|
283
|
+
});
|
|
284
|
+
});
|
|
285
|
+
});
|
|
286
|
+
//# sourceMappingURL=steps.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"steps.test.js","sourceRoot":"","sources":["../../../../src/components/steps/steps.test.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/switch/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/switch/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"switch.d.ts","sourceRoot":"","sources":["../../../../src/components/switch/switch.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAElD,iBAAS,MAAM,CAAC,EAAE,SAAS,EAAE,SAAiB,EAAE,GAAG,KAAK,EAAE,EAAE,WAAW,2CAiBtE;AAED,OAAO,EAAE,MAAM,EAAE,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
import * as SwitchPrimitive from "@radix-ui/react-switch";
|
|
4
|
+
import { switchStyles, switchThumbStyles } from "../../config/switch";
|
|
5
|
+
import { cn } from "../../lib/utils";
|
|
6
|
+
import { Skeleton } from "../skeleton/skeleton";
|
|
7
|
+
function Switch({ className, isLoading = false, ...props }) {
|
|
8
|
+
if (isLoading) {
|
|
9
|
+
return _jsx(Skeleton, { className: cn("h-6 w-11 rounded-full", className) });
|
|
10
|
+
}
|
|
11
|
+
return (_jsx(SwitchPrimitive.Root, { "data-slot": "switch", className: cn(switchStyles.base, className), ...props, children: _jsx(SwitchPrimitive.Thumb, { "data-slot": "switch-thumb", className: cn(switchThumbStyles.base) }) }));
|
|
12
|
+
}
|
|
13
|
+
export { Switch };
|
|
14
|
+
//# sourceMappingURL=switch.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"switch.js","sourceRoot":"","sources":["../../../../src/components/switch/switch.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAE1D,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACtE,OAAO,EAAE,EAAE,EAAE,MAAM,iBAAiB,CAAC;AACrC,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAGhD,SAAS,MAAM,CAAC,EAAE,SAAS,EAAE,SAAS,GAAG,KAAK,EAAE,GAAG,KAAK,EAAe;IACtE,IAAI,SAAS,EAAE,CAAC;QACf,OAAO,KAAC,QAAQ,IAAC,SAAS,EAAE,EAAE,CAAC,uBAAuB,EAAE,SAAS,CAAC,GAAI,CAAC;IACxE,CAAC;IAED,OAAO,CACN,KAAC,eAAe,CAAC,IAAI,iBACV,QAAQ,EAClB,SAAS,EAAE,EAAE,CAAC,YAAY,CAAC,IAAI,EAAE,SAAS,CAAC,KACvC,KAAK,YAET,KAAC,eAAe,CAAC,KAAK,iBACX,cAAc,EACxB,SAAS,EAAE,EAAE,CAAC,iBAAiB,CAAC,IAAI,CAAC,GACpC,GACoB,CACvB,CAAC;AACH,CAAC;AAED,OAAO,EAAE,MAAM,EAAE,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { StoryObj } from "@storybook/react";
|
|
2
|
+
import { Switch } from "./switch";
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: typeof Switch;
|
|
6
|
+
parameters: {
|
|
7
|
+
layout: string;
|
|
8
|
+
};
|
|
9
|
+
tags: string[];
|
|
10
|
+
argTypes: {
|
|
11
|
+
checked: {
|
|
12
|
+
control: "boolean";
|
|
13
|
+
};
|
|
14
|
+
disabled: {
|
|
15
|
+
control: "boolean";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export default meta;
|
|
20
|
+
type Story = StoryObj<typeof meta>;
|
|
21
|
+
export declare const Default: Story;
|
|
22
|
+
export declare const Checked: Story;
|
|
23
|
+
export declare const Disabled: Story;
|
|
24
|
+
export declare const DisabledChecked: Story;
|
|
25
|
+
export declare const WithLabel: Story;
|
|
26
|
+
export declare const LoadingSkeleton: Story;
|
|
27
|
+
//# sourceMappingURL=switch.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"switch.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/switch/switch.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAIvD,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAElC,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;CAeqB,CAAC;AAEhC,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAIrB,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,KAKrB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAItB,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,KAK7B,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAQvB,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,KAoB7B,CAAC"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { fn } from "@storybook/test";
|
|
3
|
+
import { Label } from "../label";
|
|
4
|
+
import { Skeleton } from "../skeleton/skeleton";
|
|
5
|
+
import { Switch } from "./switch";
|
|
6
|
+
const meta = {
|
|
7
|
+
title: "Forms/Switch",
|
|
8
|
+
component: Switch,
|
|
9
|
+
parameters: {
|
|
10
|
+
layout: "centered",
|
|
11
|
+
},
|
|
12
|
+
tags: ["autodocs"],
|
|
13
|
+
argTypes: {
|
|
14
|
+
checked: {
|
|
15
|
+
control: "boolean",
|
|
16
|
+
},
|
|
17
|
+
disabled: {
|
|
18
|
+
control: "boolean",
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
};
|
|
22
|
+
export default meta;
|
|
23
|
+
export const Default = {
|
|
24
|
+
args: {
|
|
25
|
+
onCheckedChange: fn(),
|
|
26
|
+
},
|
|
27
|
+
};
|
|
28
|
+
export const Checked = {
|
|
29
|
+
args: {
|
|
30
|
+
checked: true,
|
|
31
|
+
onCheckedChange: fn(),
|
|
32
|
+
},
|
|
33
|
+
};
|
|
34
|
+
export const Disabled = {
|
|
35
|
+
args: {
|
|
36
|
+
disabled: true,
|
|
37
|
+
},
|
|
38
|
+
};
|
|
39
|
+
export const DisabledChecked = {
|
|
40
|
+
args: {
|
|
41
|
+
checked: true,
|
|
42
|
+
disabled: true,
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
export const WithLabel = {
|
|
46
|
+
args: {},
|
|
47
|
+
render: () => (_jsxs("div", { className: "flex items-center gap-2", children: [_jsx(Switch, { id: "airplane-mode", onCheckedChange: fn() }), _jsx(Label, { htmlFor: "airplane-mode", children: "Airplane Mode" })] })),
|
|
48
|
+
};
|
|
49
|
+
export const LoadingSkeleton = {
|
|
50
|
+
render: () => (_jsxs("div", { className: "space-y-3", children: [_jsxs("div", { className: "flex items-center gap-2", children: [_jsx(Skeleton, { className: "h-6 w-11 rounded-full" }), _jsx(Skeleton, { className: "h-4 w-32" })] }), _jsxs("div", { className: "flex items-center gap-2", children: [_jsx(Skeleton, { className: "h-6 w-11 rounded-full" }), _jsx(Skeleton, { className: "h-4 w-40" })] })] })),
|
|
51
|
+
parameters: {
|
|
52
|
+
docs: {
|
|
53
|
+
description: {
|
|
54
|
+
story: "Loading skeleton placeholders for switch toggles while loading.",
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
};
|
|
59
|
+
//# sourceMappingURL=switch.stories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"switch.stories.js","sourceRoot":"","sources":["../../../../src/components/switch/switch.stories.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,EAAE,EAAE,MAAM,iBAAiB,CAAC;AACrC,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACjC,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAElC,MAAM,IAAI,GAAG;IACZ,KAAK,EAAE,cAAc;IACrB,SAAS,EAAE,MAAM;IACjB,UAAU,EAAE;QACX,MAAM,EAAE,UAAU;KAClB;IACD,IAAI,EAAE,CAAC,UAAU,CAAC;IAClB,QAAQ,EAAE;QACT,OAAO,EAAE;YACR,OAAO,EAAE,SAAS;SAClB;QACD,QAAQ,EAAE;YACT,OAAO,EAAE,SAAS;SAClB;KACD;CAC6B,CAAC;AAEhC,eAAe,IAAI,CAAC;AAGpB,MAAM,CAAC,MAAM,OAAO,GAAU;IAC7B,IAAI,EAAE;QACL,eAAe,EAAE,EAAE,EAAE;KACrB;CACD,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAU;IAC7B,IAAI,EAAE;QACL,OAAO,EAAE,IAAI;QACb,eAAe,EAAE,EAAE,EAAE;KACrB;CACD,CAAC;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAU;IAC9B,IAAI,EAAE;QACL,QAAQ,EAAE,IAAI;KACd;CACD,CAAC;AAEF,MAAM,CAAC,MAAM,eAAe,GAAU;IACrC,IAAI,EAAE;QACL,OAAO,EAAE,IAAI;QACb,QAAQ,EAAE,IAAI;KACd;CACD,CAAC;AAEF,MAAM,CAAC,MAAM,SAAS,GAAU;IAC/B,IAAI,EAAE,EAAE;IACR,MAAM,EAAE,GAAG,EAAE,CAAC,CACb,eAAK,SAAS,EAAC,yBAAyB,aACvC,KAAC,MAAM,IAAC,EAAE,EAAC,eAAe,EAAC,eAAe,EAAE,EAAE,EAAE,GAAI,EACpD,KAAC,KAAK,IAAC,OAAO,EAAC,eAAe,8BAAsB,IAC/C,CACN;CACD,CAAC;AAEF,MAAM,CAAC,MAAM,eAAe,GAAU;IACrC,MAAM,EAAE,GAAG,EAAE,CAAC,CACb,eAAK,SAAS,EAAC,WAAW,aACzB,eAAK,SAAS,EAAC,yBAAyB,aACvC,KAAC,QAAQ,IAAC,SAAS,EAAC,uBAAuB,GAAG,EAC9C,KAAC,QAAQ,IAAC,SAAS,EAAC,UAAU,GAAG,IAC5B,EACN,eAAK,SAAS,EAAC,yBAAyB,aACvC,KAAC,QAAQ,IAAC,SAAS,EAAC,uBAAuB,GAAG,EAC9C,KAAC,QAAQ,IAAC,SAAS,EAAC,UAAU,GAAG,IAC5B,IACD,CACN;IACD,UAAU,EAAE;QACX,IAAI,EAAE;YACL,WAAW,EAAE;gBACZ,KAAK,EAAE,iEAAiE;aACxE;SACD;KACD;CACD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"switch.test.d.ts","sourceRoot":"","sources":["../../../../src/components/switch/switch.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { render } from "@testing-library/react";
|
|
3
|
+
import userEvent from "@testing-library/user-event";
|
|
4
|
+
import { describe, expect, it, vi } from "vitest";
|
|
5
|
+
import { Switch } from "./switch";
|
|
6
|
+
describe("Switch", () => {
|
|
7
|
+
it("should render switch", () => {
|
|
8
|
+
const { container } = render(_jsx(Switch, {}));
|
|
9
|
+
const switchElement = container.querySelector('[data-slot="switch"]');
|
|
10
|
+
expect(switchElement).toBeInTheDocument();
|
|
11
|
+
});
|
|
12
|
+
it("should be unchecked by default", () => {
|
|
13
|
+
const { container } = render(_jsx(Switch, {}));
|
|
14
|
+
const switchElement = container.querySelector('[data-slot="switch"]');
|
|
15
|
+
expect(switchElement).toHaveAttribute("data-state", "unchecked");
|
|
16
|
+
});
|
|
17
|
+
it("should toggle checked state when clicked", async () => {
|
|
18
|
+
const user = userEvent.setup();
|
|
19
|
+
const handleChange = vi.fn();
|
|
20
|
+
const { container } = render(_jsx(Switch, { onCheckedChange: handleChange }));
|
|
21
|
+
const switchElement = container.querySelector('[data-slot="switch"]');
|
|
22
|
+
if (!switchElement)
|
|
23
|
+
throw new Error("Switch element not found");
|
|
24
|
+
await user.click(switchElement);
|
|
25
|
+
expect(handleChange).toHaveBeenCalledWith(true);
|
|
26
|
+
});
|
|
27
|
+
it("should render as checked when checked prop is true", () => {
|
|
28
|
+
const { container } = render(_jsx(Switch, { checked: true }));
|
|
29
|
+
const switchElement = container.querySelector('[data-slot="switch"]');
|
|
30
|
+
expect(switchElement).toHaveAttribute("data-state", "checked");
|
|
31
|
+
});
|
|
32
|
+
it("should be disabled when disabled prop is true", () => {
|
|
33
|
+
const { container } = render(_jsx(Switch, { disabled: true }));
|
|
34
|
+
const switchElement = container.querySelector('[data-slot="switch"]');
|
|
35
|
+
expect(switchElement).toBeDisabled();
|
|
36
|
+
});
|
|
37
|
+
it("should apply custom className", () => {
|
|
38
|
+
const { container } = render(_jsx(Switch, { className: "custom-switch" }));
|
|
39
|
+
const switchElement = container.querySelector('[data-slot="switch"]');
|
|
40
|
+
expect(switchElement).toHaveClass("custom-switch");
|
|
41
|
+
});
|
|
42
|
+
it("should render thumb element", () => {
|
|
43
|
+
const { container } = render(_jsx(Switch, {}));
|
|
44
|
+
const thumb = container.querySelector('[data-slot="switch-thumb"]');
|
|
45
|
+
expect(thumb).toBeInTheDocument();
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
//# sourceMappingURL=switch.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"switch.test.js","sourceRoot":"","sources":["../../../../src/components/switch/switch.test.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type * as SwitchPrimitive from "@radix-ui/react-switch";
|
|
2
|
+
import type * as React from "react";
|
|
3
|
+
export interface SwitchProps extends React.ComponentProps<typeof SwitchPrimitive.Root> {
|
|
4
|
+
/** Show loading skeleton */
|
|
5
|
+
isLoading?: boolean;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=switch.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"switch.types.d.ts","sourceRoot":"","sources":["../../../../src/components/switch/switch.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAC/D,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;AAEpC,MAAM,WAAW,WAChB,SAAQ,KAAK,CAAC,cAAc,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC;IACzD,4BAA4B;IAC5B,SAAS,CAAC,EAAE,OAAO,CAAC;CACpB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"switch.types.js","sourceRoot":"","sources":["../../../../src/components/switch/switch.types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/table/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACN,KAAK,EACL,SAAS,EACT,YAAY,EACZ,SAAS,EACT,WAAW,EACX,SAAS,EACT,WAAW,EACX,QAAQ,GACR,MAAM,SAAS,CAAC;AACjB,YAAY,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAC3D,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/table/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACN,KAAK,EACL,SAAS,EACT,YAAY,EACZ,SAAS,EACT,WAAW,EACX,SAAS,EACT,WAAW,EACX,QAAQ,GACR,MAAM,SAAS,CAAC;AAEjB,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Table Skeleton Component
|
|
3
|
+
* Provides a loading placeholder that matches the actual Table component structure
|
|
4
|
+
* to prevent Cumulative Layout Shift (CLS)
|
|
5
|
+
*/
|
|
6
|
+
export interface TableSkeletonProps {
|
|
7
|
+
/**
|
|
8
|
+
* Number of rows to display (default: 5)
|
|
9
|
+
*/
|
|
10
|
+
rows?: number;
|
|
11
|
+
/**
|
|
12
|
+
* Number of columns to display (default: 4)
|
|
13
|
+
*/
|
|
14
|
+
columns?: number;
|
|
15
|
+
/**
|
|
16
|
+
* Column headers (optional - shows actual headers or skeletons)
|
|
17
|
+
*/
|
|
18
|
+
headers?: string[];
|
|
19
|
+
/**
|
|
20
|
+
* Column widths to match actual table layout (prevents CLS)
|
|
21
|
+
*/
|
|
22
|
+
columnWidths?: string[];
|
|
23
|
+
/**
|
|
24
|
+
* Whether to show action column
|
|
25
|
+
*/
|
|
26
|
+
showActions?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Whether to show selection checkboxes
|
|
29
|
+
*/
|
|
30
|
+
showCheckboxes?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Whether header should be sticky
|
|
33
|
+
*/
|
|
34
|
+
stickyHeader?: boolean;
|
|
35
|
+
}
|
|
36
|
+
export declare function TableSkeleton({ rows, columns, headers, columnWidths, showActions, showCheckboxes, stickyHeader, }: TableSkeletonProps): import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
//# sourceMappingURL=table-skeleton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table-skeleton.d.ts","sourceRoot":"","sources":["../../../../src/components/table/table-skeleton.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAYH,MAAM,WAAW,kBAAkB;IAClC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;CACvB;AAED,wBAAgB,aAAa,CAAC,EAC7B,IAAQ,EACR,OAAW,EACX,OAAO,EACP,YAAY,EACZ,WAAmB,EACnB,cAAsB,EACtB,YAAoB,GACpB,EAAE,kBAAkB,2CAoEpB"}
|