kigumi 0.19.2 → 0.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -13
- package/dist/bin.js +3 -3
- package/dist/bin.js.map +1 -1
- package/dist/chunk-5UMPF74B.js +1980 -0
- package/dist/chunk-5UMPF74B.js.map +1 -0
- package/dist/chunk-DBBI47V2.js +264 -0
- package/dist/chunk-DBBI47V2.js.map +1 -0
- package/dist/chunk-MIPVTLNR.js +260 -0
- package/dist/chunk-MIPVTLNR.js.map +1 -0
- package/dist/index.js +1335 -1307
- package/dist/index.js.map +1 -1
- package/dist/install-45GFS34A.js +114 -0
- package/dist/install-45GFS34A.js.map +1 -0
- package/dist/project-config-D3FYPYTX.js +16 -0
- package/dist/tier-SBP26D6M.js +15 -0
- package/dist/tier-SBP26D6M.js.map +1 -0
- package/package.json +72 -32
- package/templates/AGENTS.md +223 -89
- package/templates/angular/AnimatedImage/animated-image.component.css +14 -0
- package/templates/angular/AnimatedImage/animated-image.component.spec.ts +26 -0
- package/templates/angular/AnimatedImage/animated-image.component.ts +85 -0
- package/templates/angular/Animation/animation.component.spec.ts +26 -0
- package/templates/angular/Animation/animation.component.ts +130 -0
- package/templates/angular/Avatar/avatar.component.css +15 -0
- package/templates/angular/Avatar/avatar.component.spec.ts +26 -0
- package/templates/angular/Avatar/avatar.component.ts +87 -0
- package/templates/angular/Badge/badge.component.css +15 -0
- package/templates/angular/Badge/badge.component.spec.ts +26 -0
- package/templates/angular/Badge/badge.component.ts +69 -0
- package/templates/angular/BarChart/bar-chart.component.css +27 -0
- package/templates/angular/BarChart/bar-chart.component.spec.ts +26 -0
- package/templates/angular/BarChart/bar-chart.component.ts +105 -0
- package/templates/angular/Breadcrumb/breadcrumb.component.css +10 -0
- package/templates/angular/Breadcrumb/breadcrumb.component.spec.ts +26 -0
- package/templates/angular/Breadcrumb/breadcrumb.component.ts +57 -0
- package/templates/angular/BreadcrumbItem/breadcrumb-item.component.css +13 -0
- package/templates/angular/BreadcrumbItem/breadcrumb-item.component.spec.ts +26 -0
- package/templates/angular/BreadcrumbItem/breadcrumb-item.component.ts +66 -0
- package/templates/angular/BubbleChart/bubble-chart.component.css +27 -0
- package/templates/angular/BubbleChart/bubble-chart.component.spec.ts +26 -0
- package/templates/angular/BubbleChart/bubble-chart.component.ts +102 -0
- package/templates/angular/Button/button.component.css +15 -0
- package/templates/angular/Button/button.component.spec.ts +26 -0
- package/templates/angular/Button/button.component.ts +184 -0
- package/templates/angular/ButtonGroup/button-group.component.css +10 -0
- package/templates/angular/ButtonGroup/button-group.component.spec.ts +26 -0
- package/templates/angular/ButtonGroup/button-group.component.ts +63 -0
- package/templates/angular/Callout/callout.component.css +11 -0
- package/templates/angular/Callout/callout.component.spec.ts +26 -0
- package/templates/angular/Callout/callout.component.ts +71 -0
- package/templates/angular/Card/card.component.css +16 -0
- package/templates/angular/Card/card.component.spec.ts +26 -0
- package/templates/angular/Card/card.component.ts +77 -0
- package/templates/angular/Carousel/carousel.component.css +23 -0
- package/templates/angular/Carousel/carousel.component.spec.ts +26 -0
- package/templates/angular/Carousel/carousel.component.ts +124 -0
- package/templates/angular/CarouselItem/carousel-item.component.css +10 -0
- package/templates/angular/CarouselItem/carousel-item.component.spec.ts +26 -0
- package/templates/angular/CarouselItem/carousel-item.component.ts +53 -0
- package/templates/angular/Chart/chart.component.css +27 -0
- package/templates/angular/Chart/chart.component.spec.ts +26 -0
- package/templates/angular/Chart/chart.component.ts +113 -0
- package/templates/angular/Checkbox/checkbox.component.css +19 -0
- package/templates/angular/Checkbox/checkbox.component.spec.ts +26 -0
- package/templates/angular/Checkbox/checkbox.component.ts +203 -0
- package/templates/angular/ColorPicker/color-picker.component.css +42 -0
- package/templates/angular/ColorPicker/color-picker.component.spec.ts +26 -0
- package/templates/angular/ColorPicker/color-picker.component.ts +303 -0
- package/templates/angular/Combobox/combobox.component.css +30 -0
- package/templates/angular/Combobox/combobox.component.spec.ts +26 -0
- package/templates/angular/Combobox/combobox.component.ts +300 -0
- package/templates/angular/Comparison/comparison.component.css +18 -0
- package/templates/angular/Comparison/comparison.component.spec.ts +26 -0
- package/templates/angular/Comparison/comparison.component.ts +72 -0
- package/templates/angular/CopyButton/copy-button.component.css +17 -0
- package/templates/angular/CopyButton/copy-button.component.spec.ts +26 -0
- package/templates/angular/CopyButton/copy-button.component.ts +100 -0
- package/templates/angular/Details/details.component.css +19 -0
- package/templates/angular/Details/details.component.spec.ts +26 -0
- package/templates/angular/Details/details.component.ts +117 -0
- package/templates/angular/Dialog/dialog.component.css +23 -0
- package/templates/angular/Dialog/dialog.component.spec.ts +26 -0
- package/templates/angular/Dialog/dialog.component.ts +102 -0
- package/templates/angular/Divider/divider.component.css +12 -0
- package/templates/angular/Divider/divider.component.spec.ts +26 -0
- package/templates/angular/Divider/divider.component.ts +57 -0
- package/templates/angular/DoughnutChart/doughnut-chart.component.css +27 -0
- package/templates/angular/DoughnutChart/doughnut-chart.component.spec.ts +26 -0
- package/templates/angular/DoughnutChart/doughnut-chart.component.ts +81 -0
- package/templates/angular/Drawer/drawer.component.css +23 -0
- package/templates/angular/Drawer/drawer.component.spec.ts +26 -0
- package/templates/angular/Drawer/drawer.component.ts +105 -0
- package/templates/angular/Dropdown/dropdown.component.css +15 -0
- package/templates/angular/Dropdown/dropdown.component.spec.ts +26 -0
- package/templates/angular/Dropdown/dropdown.component.ts +128 -0
- package/templates/angular/DropdownItem/dropdown-item.component.css +15 -0
- package/templates/angular/DropdownItem/dropdown-item.component.spec.ts +26 -0
- package/templates/angular/DropdownItem/dropdown-item.component.ts +105 -0
- package/templates/angular/FileInput/file-input.component.css +24 -0
- package/templates/angular/FileInput/file-input.component.spec.ts +26 -0
- package/templates/angular/FileInput/file-input.component.ts +196 -0
- package/templates/angular/FormatBytes/format-bytes.component.spec.ts +26 -0
- package/templates/angular/FormatBytes/format-bytes.component.ts +69 -0
- package/templates/angular/FormatDate/format-date.component.spec.ts +26 -0
- package/templates/angular/FormatDate/format-date.component.ts +96 -0
- package/templates/angular/FormatNumber/format-number.component.spec.ts +26 -0
- package/templates/angular/FormatNumber/format-number.component.ts +90 -0
- package/templates/angular/Icon/icon.component.css +38 -0
- package/templates/angular/Icon/icon.component.spec.ts +26 -0
- package/templates/angular/Icon/icon.component.ts +109 -0
- package/templates/angular/Include/include.component.spec.ts +26 -0
- package/templates/angular/Include/include.component.ts +88 -0
- package/templates/angular/Input/input.component.css +17 -0
- package/templates/angular/Input/input.component.spec.ts +26 -0
- package/templates/angular/Input/input.component.ts +344 -0
- package/templates/angular/IntersectionObserver/intersection-observer.component.spec.ts +26 -0
- package/templates/angular/IntersectionObserver/intersection-observer.component.ts +89 -0
- package/templates/angular/LineChart/line-chart.component.css +27 -0
- package/templates/angular/LineChart/line-chart.component.spec.ts +26 -0
- package/templates/angular/LineChart/line-chart.component.ts +102 -0
- package/templates/angular/Markdown/markdown.component.spec.ts +26 -0
- package/templates/angular/Markdown/markdown.component.ts +65 -0
- package/templates/angular/MutationObserver/mutation-observer.component.spec.ts +26 -0
- package/templates/angular/MutationObserver/mutation-observer.component.ts +95 -0
- package/templates/angular/NumberInput/number-input.component.css +19 -0
- package/templates/angular/NumberInput/number-input.component.spec.ts +26 -0
- package/templates/angular/NumberInput/number-input.component.ts +226 -0
- package/templates/angular/Option/option.component.css +13 -0
- package/templates/angular/Option/option.component.spec.ts +26 -0
- package/templates/angular/Option/option.component.ts +69 -0
- package/templates/angular/Page/page.component.css +36 -0
- package/templates/angular/Page/page.component.spec.ts +26 -0
- package/templates/angular/Page/page.component.ts +97 -0
- package/templates/angular/PieChart/pie-chart.component.css +27 -0
- package/templates/angular/PieChart/pie-chart.component.spec.ts +26 -0
- package/templates/angular/PieChart/pie-chart.component.ts +81 -0
- package/templates/angular/PolarAreaChart/polar-area-chart.component.css +27 -0
- package/templates/angular/PolarAreaChart/polar-area-chart.component.spec.ts +26 -0
- package/templates/angular/PolarAreaChart/polar-area-chart.component.ts +81 -0
- package/templates/angular/Popover/popover.component.css +20 -0
- package/templates/angular/Popover/popover.component.spec.ts +26 -0
- package/templates/angular/Popover/popover.component.ts +138 -0
- package/templates/angular/Popup/popup.component.css +21 -0
- package/templates/angular/Popup/popup.component.spec.ts +26 -0
- package/templates/angular/Popup/popup.component.ts +147 -0
- package/templates/angular/ProgressBar/progress-bar.component.css +17 -0
- package/templates/angular/ProgressBar/progress-bar.component.spec.ts +26 -0
- package/templates/angular/ProgressBar/progress-bar.component.ts +66 -0
- package/templates/angular/ProgressRing/progress-ring.component.css +21 -0
- package/templates/angular/ProgressRing/progress-ring.component.spec.ts +26 -0
- package/templates/angular/ProgressRing/progress-ring.component.ts +59 -0
- package/templates/angular/QrCode/qr-code.component.css +10 -0
- package/templates/angular/QrCode/qr-code.component.spec.ts +26 -0
- package/templates/angular/QrCode/qr-code.component.ts +78 -0
- package/templates/angular/RadarChart/radar-chart.component.css +27 -0
- package/templates/angular/RadarChart/radar-chart.component.spec.ts +26 -0
- package/templates/angular/RadarChart/radar-chart.component.ts +93 -0
- package/templates/angular/Radio/radio.component.css +16 -0
- package/templates/angular/Radio/radio.component.spec.ts +26 -0
- package/templates/angular/Radio/radio.component.ts +114 -0
- package/templates/angular/RadioGroup/radio-group.component.css +14 -0
- package/templates/angular/RadioGroup/radio-group.component.spec.ts +26 -0
- package/templates/angular/RadioGroup/radio-group.component.ts +194 -0
- package/templates/angular/Rating/rating.component.css +15 -0
- package/templates/angular/Rating/rating.component.spec.ts +26 -0
- package/templates/angular/Rating/rating.component.ts +182 -0
- package/templates/angular/RelativeTime/relative-time.component.spec.ts +26 -0
- package/templates/angular/RelativeTime/relative-time.component.ts +72 -0
- package/templates/angular/ResizeObserver/resize-observer.component.spec.ts +26 -0
- package/templates/angular/ResizeObserver/resize-observer.component.ts +72 -0
- package/templates/angular/ScatterChart/scatter-chart.component.css +27 -0
- package/templates/angular/ScatterChart/scatter-chart.component.spec.ts +26 -0
- package/templates/angular/ScatterChart/scatter-chart.component.ts +96 -0
- package/templates/angular/Scroller/scroller.component.css +14 -0
- package/templates/angular/Scroller/scroller.component.spec.ts +26 -0
- package/templates/angular/Scroller/scroller.component.ts +69 -0
- package/templates/angular/Select/select.component.css +30 -0
- package/templates/angular/Select/select.component.spec.ts +26 -0
- package/templates/angular/Select/select.component.ts +264 -0
- package/templates/angular/Skeleton/skeleton.component.css +14 -0
- package/templates/angular/Skeleton/skeleton.component.spec.ts +26 -0
- package/templates/angular/Skeleton/skeleton.component.ts +57 -0
- package/templates/angular/Slider/slider.component.css +31 -0
- package/templates/angular/Slider/slider.component.spec.ts +26 -0
- package/templates/angular/Slider/slider.component.ts +226 -0
- package/templates/angular/Sparkline/sparkline.component.css +17 -0
- package/templates/angular/Sparkline/sparkline.component.spec.ts +26 -0
- package/templates/angular/Sparkline/sparkline.component.ts +72 -0
- package/templates/angular/Spinner/spinner.component.css +16 -0
- package/templates/angular/Spinner/spinner.component.spec.ts +26 -0
- package/templates/angular/Spinner/spinner.component.ts +53 -0
- package/templates/angular/SplitPanel/split-panel.component.css +19 -0
- package/templates/angular/SplitPanel/split-panel.component.spec.ts +26 -0
- package/templates/angular/SplitPanel/split-panel.component.ts +96 -0
- package/templates/angular/Switch/switch.component.css +19 -0
- package/templates/angular/Switch/switch.component.spec.ts +26 -0
- package/templates/angular/Switch/switch.component.ts +200 -0
- package/templates/angular/Tab/tab.component.css +10 -0
- package/templates/angular/Tab/tab.component.spec.ts +26 -0
- package/templates/angular/Tab/tab.component.ts +59 -0
- package/templates/angular/TabGroup/tab-group.component.css +22 -0
- package/templates/angular/TabGroup/tab-group.component.spec.ts +26 -0
- package/templates/angular/TabGroup/tab-group.component.ts +92 -0
- package/templates/angular/TabPanel/tab-panel.component.css +13 -0
- package/templates/angular/TabPanel/tab-panel.component.spec.ts +26 -0
- package/templates/angular/TabPanel/tab-panel.component.ts +59 -0
- package/templates/angular/Tag/tag.component.css +13 -0
- package/templates/angular/Tag/tag.component.spec.ts +26 -0
- package/templates/angular/Tag/tag.component.ts +87 -0
- package/templates/angular/Textarea/textarea.component.css +15 -0
- package/templates/angular/Textarea/textarea.component.spec.ts +26 -0
- package/templates/angular/Textarea/textarea.component.ts +267 -0
- package/templates/angular/Toast/toast.component.css +14 -0
- package/templates/angular/Toast/toast.component.spec.ts +26 -0
- package/templates/angular/Toast/toast.component.ts +72 -0
- package/templates/angular/ToastItem/toast-item.component.css +26 -0
- package/templates/angular/ToastItem/toast-item.component.spec.ts +26 -0
- package/templates/angular/ToastItem/toast-item.component.ts +103 -0
- package/templates/angular/Tooltip/tooltip.component.css +16 -0
- package/templates/angular/Tooltip/tooltip.component.spec.ts +26 -0
- package/templates/angular/Tooltip/tooltip.component.ts +141 -0
- package/templates/angular/Tree/tree.component.css +17 -0
- package/templates/angular/Tree/tree.component.spec.ts +26 -0
- package/templates/angular/Tree/tree.component.ts +75 -0
- package/templates/angular/TreeItem/tree-item.component.css +27 -0
- package/templates/angular/TreeItem/tree-item.component.spec.ts +26 -0
- package/templates/angular/TreeItem/tree-item.component.ts +125 -0
- package/templates/angular/ZoomableFrame/zoomable-frame.component.css +13 -0
- package/templates/angular/ZoomableFrame/zoomable-frame.component.spec.ts +26 -0
- package/templates/angular/ZoomableFrame/zoomable-frame.component.ts +117 -0
- package/templates/angular/tsconfig.json +23 -0
- package/templates/react/AnimatedImage/AnimatedImage.css +14 -0
- package/templates/react/AnimatedImage/AnimatedImage.jsx +70 -0
- package/templates/react/AnimatedImage/AnimatedImage.test.tsx +29 -0
- package/templates/react/AnimatedImage/AnimatedImage.tsx +112 -0
- package/templates/react/Animation/Animation.jsx +112 -0
- package/templates/react/Animation/Animation.test.tsx +16 -0
- package/templates/react/Animation/Animation.tsx +170 -0
- package/templates/react/Avatar/Avatar.css +15 -0
- package/templates/react/Avatar/Avatar.jsx +67 -0
- package/templates/react/Avatar/Avatar.test.tsx +24 -0
- package/templates/react/Avatar/Avatar.tsx +109 -0
- package/templates/react/Badge/Badge.css +15 -0
- package/templates/react/Badge/Badge.jsx +61 -0
- package/templates/react/Badge/Badge.test.tsx +16 -0
- package/templates/react/Badge/Badge.tsx +87 -0
- package/templates/react/BarChart/BarChart.css +28 -0
- package/templates/react/BarChart/BarChart.jsx +76 -0
- package/templates/react/BarChart/BarChart.test.tsx +16 -0
- package/templates/react/BarChart/BarChart.tsx +120 -0
- package/templates/react/Breadcrumb/Breadcrumb.css +13 -0
- package/templates/react/Breadcrumb/Breadcrumb.jsx +57 -0
- package/templates/react/Breadcrumb/Breadcrumb.test.tsx +16 -0
- package/templates/react/Breadcrumb/Breadcrumb.tsx +81 -0
- package/templates/react/BreadcrumbItem/BreadcrumbItem.css +16 -0
- package/templates/react/BreadcrumbItem/BreadcrumbItem.jsx +68 -0
- package/templates/react/BreadcrumbItem/BreadcrumbItem.test.tsx +16 -0
- package/templates/react/BreadcrumbItem/BreadcrumbItem.tsx +88 -0
- package/templates/react/BubbleChart/BubbleChart.css +28 -0
- package/templates/react/BubbleChart/BubbleChart.jsx +71 -0
- package/templates/react/BubbleChart/BubbleChart.test.tsx +16 -0
- package/templates/react/BubbleChart/BubbleChart.tsx +117 -0
- package/templates/react/Button/Button.css +18 -0
- package/templates/react/Button/Button.jsx +124 -0
- package/templates/react/Button/Button.test.tsx +16 -0
- package/templates/react/Button/Button.tsx +247 -0
- package/templates/react/ButtonGroup/ButtonGroup.css +13 -0
- package/templates/react/ButtonGroup/ButtonGroup.jsx +61 -0
- package/templates/react/ButtonGroup/ButtonGroup.test.tsx +16 -0
- package/templates/react/ButtonGroup/ButtonGroup.tsx +84 -0
- package/templates/react/Callout/Callout.css +14 -0
- package/templates/react/Callout/Callout.jsx +34 -0
- package/templates/react/Callout/Callout.test.jsx +27 -0
- package/templates/react/Callout/Callout.test.tsx +16 -0
- package/templates/react/Callout/Callout.tsx +84 -0
- package/templates/react/Card/Card.css +16 -0
- package/templates/react/Card/Card.jsx +44 -0
- package/templates/react/Card/Card.test.tsx +16 -0
- package/templates/react/Card/Card.tsx +90 -0
- package/templates/react/Carousel/Carousel.css +23 -0
- package/templates/react/Carousel/Carousel.jsx +87 -0
- package/templates/react/Carousel/Carousel.test.tsx +16 -0
- package/templates/react/Carousel/Carousel.tsx +157 -0
- package/templates/react/CarouselItem/CarouselItem.css +11 -0
- package/templates/react/CarouselItem/CarouselItem.jsx +41 -0
- package/templates/react/CarouselItem/CarouselItem.test.tsx +16 -0
- package/templates/react/CarouselItem/CarouselItem.tsx +78 -0
- package/templates/react/Chart/Chart.css +28 -0
- package/templates/react/Chart/Chart.jsx +73 -0
- package/templates/react/Chart/Chart.test.tsx +16 -0
- package/templates/react/Chart/Chart.tsx +125 -0
- package/templates/react/Checkbox/Checkbox.css +19 -0
- package/templates/react/Checkbox/Checkbox.jsx +86 -0
- package/templates/react/Checkbox/Checkbox.test.tsx +16 -0
- package/templates/react/Checkbox/Checkbox.tsx +244 -0
- package/templates/react/ColorPicker/ColorPicker.css +42 -0
- package/templates/react/ColorPicker/ColorPicker.jsx +91 -0
- package/templates/react/ColorPicker/ColorPicker.test.tsx +16 -0
- package/templates/react/ColorPicker/ColorPicker.tsx +404 -0
- package/templates/react/Combobox/Combobox.css +30 -0
- package/templates/react/Combobox/Combobox.jsx +118 -0
- package/templates/react/Combobox/Combobox.test.tsx +16 -0
- package/templates/react/Combobox/Combobox.tsx +395 -0
- package/templates/react/Comparison/Comparison.css +18 -0
- package/templates/react/Comparison/Comparison.jsx +36 -0
- package/templates/react/Comparison/Comparison.test.tsx +16 -0
- package/templates/react/Comparison/Comparison.tsx +97 -0
- package/templates/react/CopyButton/CopyButton.css +20 -0
- package/templates/react/CopyButton/CopyButton.jsx +59 -0
- package/templates/react/CopyButton/CopyButton.test.jsx +18 -0
- package/templates/react/CopyButton/CopyButton.test.tsx +16 -0
- package/templates/react/CopyButton/CopyButton.tsx +127 -0
- package/templates/react/Details/Details.css +19 -0
- package/templates/react/Details/Details.jsx +75 -0
- package/templates/react/Details/Details.test.jsx +25 -0
- package/templates/react/Details/Details.test.tsx +16 -0
- package/templates/react/Details/Details.tsx +167 -0
- package/templates/react/Dialog/Dialog.css +23 -0
- package/templates/react/Dialog/Dialog.jsx +120 -0
- package/templates/react/Dialog/Dialog.test.jsx +33 -0
- package/templates/react/Dialog/Dialog.test.tsx +24 -0
- package/templates/react/Dialog/Dialog.tsx +136 -0
- package/templates/react/Divider/Divider.css +13 -0
- package/templates/react/Divider/Divider.jsx +33 -0
- package/templates/react/Divider/Divider.test.jsx +19 -0
- package/templates/react/Divider/Divider.test.tsx +16 -0
- package/templates/react/Divider/Divider.tsx +78 -0
- package/templates/react/DoughnutChart/DoughnutChart.css +28 -0
- package/templates/react/DoughnutChart/DoughnutChart.jsx +65 -0
- package/templates/react/DoughnutChart/DoughnutChart.test.tsx +16 -0
- package/templates/react/DoughnutChart/DoughnutChart.tsx +96 -0
- package/templates/react/Drawer/Drawer.css +23 -0
- package/templates/react/Drawer/Drawer.jsx +124 -0
- package/templates/react/Drawer/Drawer.test.jsx +23 -0
- package/templates/react/Drawer/Drawer.test.tsx +16 -0
- package/templates/react/Drawer/Drawer.tsx +139 -0
- package/templates/react/Dropdown/Dropdown.css +15 -0
- package/templates/react/Dropdown/Dropdown.jsx +97 -0
- package/templates/react/Dropdown/Dropdown.test.tsx +16 -0
- package/templates/react/Dropdown/Dropdown.tsx +178 -0
- package/templates/react/DropdownItem/DropdownItem.css +18 -0
- package/templates/react/DropdownItem/DropdownItem.jsx +50 -0
- package/templates/react/DropdownItem/DropdownItem.test.tsx +16 -0
- package/templates/react/DropdownItem/DropdownItem.tsx +146 -0
- package/templates/react/FileInput/FileInput.css +27 -0
- package/templates/react/FileInput/FileInput.jsx +126 -0
- package/templates/react/FileInput/FileInput.test.tsx +16 -0
- package/templates/react/FileInput/FileInput.tsx +230 -0
- package/templates/react/FormatBytes/FormatBytes.jsx +32 -0
- package/templates/react/FormatBytes/FormatBytes.test.jsx +19 -0
- package/templates/react/FormatBytes/FormatBytes.test.tsx +16 -0
- package/templates/react/FormatBytes/FormatBytes.tsx +90 -0
- package/templates/react/FormatDate/FormatDate.jsx +25 -0
- package/templates/react/FormatDate/FormatDate.test.tsx +16 -0
- package/templates/react/FormatDate/FormatDate.tsx +117 -0
- package/templates/react/FormatNumber/FormatNumber.jsx +25 -0
- package/templates/react/FormatNumber/FormatNumber.test.jsx +19 -0
- package/templates/react/FormatNumber/FormatNumber.test.tsx +16 -0
- package/templates/react/FormatNumber/FormatNumber.tsx +111 -0
- package/templates/react/Icon/Icon.css +38 -0
- package/templates/react/Icon/Icon.jsx +88 -0
- package/templates/react/Icon/Icon.test.jsx +37 -0
- package/templates/react/Icon/Icon.test.tsx +16 -0
- package/templates/react/Icon/Icon.tsx +136 -0
- package/templates/react/Include/Include.jsx +46 -0
- package/templates/react/Include/Include.test.jsx +19 -0
- package/templates/react/Include/Include.test.tsx +16 -0
- package/templates/react/Include/Include.tsx +112 -0
- package/templates/react/Input/Input.css +20 -0
- package/templates/react/Input/Input.jsx +158 -0
- package/templates/react/Input/Input.test.tsx +16 -0
- package/templates/react/Input/Input.tsx +417 -0
- package/templates/react/IntersectionObserver/IntersectionObserver.jsx +44 -0
- package/templates/react/IntersectionObserver/IntersectionObserver.test.jsx +17 -0
- package/templates/react/IntersectionObserver/IntersectionObserver.test.tsx +18 -0
- package/templates/react/IntersectionObserver/IntersectionObserver.tsx +113 -0
- package/templates/react/LineChart/LineChart.css +28 -0
- package/templates/react/LineChart/LineChart.jsx +75 -0
- package/templates/react/LineChart/LineChart.test.tsx +16 -0
- package/templates/react/LineChart/LineChart.tsx +117 -0
- package/templates/react/Markdown/Markdown.css +11 -0
- package/templates/react/Markdown/Markdown.jsx +25 -0
- package/templates/react/Markdown/Markdown.test.tsx +16 -0
- package/templates/react/Markdown/Markdown.tsx +95 -0
- package/templates/react/MutationObserver/MutationObserver.jsx +44 -0
- package/templates/react/MutationObserver/MutationObserver.test.tsx +16 -0
- package/templates/react/MutationObserver/MutationObserver.tsx +119 -0
- package/templates/react/NumberInput/NumberInput.css +22 -0
- package/templates/react/NumberInput/NumberInput.jsx +148 -0
- package/templates/react/NumberInput/NumberInput.test.tsx +16 -0
- package/templates/react/NumberInput/NumberInput.tsx +279 -0
- package/templates/react/Option/Option.css +16 -0
- package/templates/react/Option/Option.jsx +25 -0
- package/templates/react/Option/Option.test.tsx +16 -0
- package/templates/react/Option/Option.tsx +87 -0
- package/templates/react/Page/Page.css +36 -0
- package/templates/react/Page/Page.jsx +133 -0
- package/templates/react/Page/Page.test.tsx +16 -0
- package/templates/react/Page/Page.tsx +138 -0
- package/templates/react/PieChart/PieChart.css +28 -0
- package/templates/react/PieChart/PieChart.jsx +65 -0
- package/templates/react/PieChart/PieChart.test.tsx +16 -0
- package/templates/react/PieChart/PieChart.tsx +96 -0
- package/templates/react/PolarAreaChart/PolarAreaChart.css +28 -0
- package/templates/react/PolarAreaChart/PolarAreaChart.jsx +65 -0
- package/templates/react/PolarAreaChart/PolarAreaChart.test.tsx +16 -0
- package/templates/react/PolarAreaChart/PolarAreaChart.tsx +97 -0
- package/templates/react/Popover/Popover.css +20 -0
- package/templates/react/Popover/Popover.jsx +86 -0
- package/templates/react/Popover/Popover.test.tsx +16 -0
- package/templates/react/Popover/Popover.tsx +188 -0
- package/templates/react/Popup/Popup.css +21 -0
- package/templates/react/Popup/Popup.jsx +47 -0
- package/templates/react/Popup/Popup.test.tsx +16 -0
- package/templates/react/Popup/Popup.tsx +174 -0
- package/templates/react/ProgressBar/ProgressBar.css +17 -0
- package/templates/react/ProgressBar/ProgressBar.jsx +29 -0
- package/templates/react/ProgressBar/ProgressBar.test.jsx +19 -0
- package/templates/react/ProgressBar/ProgressBar.test.tsx +16 -0
- package/templates/react/ProgressBar/ProgressBar.tsx +87 -0
- package/templates/react/ProgressRing/ProgressRing.css +21 -0
- package/templates/react/ProgressRing/ProgressRing.jsx +29 -0
- package/templates/react/ProgressRing/ProgressRing.test.jsx +19 -0
- package/templates/react/ProgressRing/ProgressRing.test.tsx +16 -0
- package/templates/react/ProgressRing/ProgressRing.tsx +84 -0
- package/templates/react/QrCode/QrCode.css +13 -0
- package/templates/react/QrCode/QrCode.jsx +19 -0
- package/templates/react/QrCode/QrCode.test.tsx +16 -0
- package/templates/react/QrCode/QrCode.tsx +96 -0
- package/templates/react/RadarChart/RadarChart.css +28 -0
- package/templates/react/RadarChart/RadarChart.jsx +72 -0
- package/templates/react/RadarChart/RadarChart.test.tsx +16 -0
- package/templates/react/RadarChart/RadarChart.tsx +108 -0
- package/templates/react/Radio/Radio.css +16 -0
- package/templates/react/Radio/Radio.jsx +25 -0
- package/templates/react/Radio/Radio.test.tsx +16 -0
- package/templates/react/Radio/Radio.tsx +160 -0
- package/templates/react/RadioGroup/RadioGroup.css +17 -0
- package/templates/react/RadioGroup/RadioGroup.jsx +55 -0
- package/templates/react/RadioGroup/RadioGroup.test.tsx +16 -0
- package/templates/react/RadioGroup/RadioGroup.tsx +198 -0
- package/templates/react/Rating/Rating.css +15 -0
- package/templates/react/Rating/Rating.jsx +50 -0
- package/templates/react/Rating/Rating.test.tsx +16 -0
- package/templates/react/Rating/Rating.tsx +184 -0
- package/templates/react/RelativeTime/RelativeTime.jsx +25 -0
- package/templates/react/RelativeTime/RelativeTime.test.tsx +16 -0
- package/templates/react/RelativeTime/RelativeTime.tsx +93 -0
- package/templates/react/ResizeObserver/ResizeObserver.jsx +44 -0
- package/templates/react/ResizeObserver/ResizeObserver.test.tsx +16 -0
- package/templates/react/ResizeObserver/ResizeObserver.tsx +98 -0
- package/templates/react/ScatterChart/ScatterChart.css +28 -0
- package/templates/react/ScatterChart/ScatterChart.jsx +69 -0
- package/templates/react/ScatterChart/ScatterChart.test.tsx +16 -0
- package/templates/react/ScatterChart/ScatterChart.tsx +111 -0
- package/templates/react/Scroller/Scroller.css +14 -0
- package/templates/react/Scroller/Scroller.jsx +25 -0
- package/templates/react/Scroller/Scroller.test.tsx +16 -0
- package/templates/react/Scroller/Scroller.tsx +90 -0
- package/templates/react/Select/Select.css +30 -0
- package/templates/react/Select/Select.jsx +104 -0
- package/templates/react/Select/Select.test.tsx +16 -0
- package/templates/react/Select/Select.tsx +356 -0
- package/templates/react/Skeleton/Skeleton.css +14 -0
- package/templates/react/Skeleton/Skeleton.jsx +21 -0
- package/templates/react/Skeleton/Skeleton.test.tsx +16 -0
- package/templates/react/Skeleton/Skeleton.tsx +81 -0
- package/templates/react/Slider/Slider.css +31 -0
- package/templates/react/Slider/Slider.jsx +52 -0
- package/templates/react/Slider/Slider.test.tsx +16 -0
- package/templates/react/Slider/Slider.tsx +278 -0
- package/templates/react/Sparkline/Sparkline.css +17 -0
- package/templates/react/Sparkline/Sparkline.jsx +70 -0
- package/templates/react/Sparkline/Sparkline.test.jsx +17 -0
- package/templates/react/Sparkline/Sparkline.test.tsx +16 -0
- package/templates/react/Sparkline/Sparkline.tsx +93 -0
- package/templates/react/Spinner/Spinner.css +16 -0
- package/templates/react/Spinner/Spinner.jsx +19 -0
- package/templates/react/Spinner/Spinner.test.tsx +16 -0
- package/templates/react/Spinner/Spinner.tsx +78 -0
- package/templates/react/SplitPanel/SplitPanel.css +19 -0
- package/templates/react/SplitPanel/SplitPanel.jsx +44 -0
- package/templates/react/SplitPanel/SplitPanel.test.tsx +16 -0
- package/templates/react/SplitPanel/SplitPanel.tsx +115 -0
- package/templates/react/Switch/Switch.css +19 -0
- package/templates/react/Switch/Switch.jsx +53 -0
- package/templates/react/Switch/Switch.test.tsx +16 -0
- package/templates/react/Switch/Switch.tsx +241 -0
- package/templates/react/Tab/Tab.css +13 -0
- package/templates/react/Tab/Tab.jsx +25 -0
- package/templates/react/Tab/Tab.test.tsx +16 -0
- package/templates/react/Tab/Tab.tsx +81 -0
- package/templates/react/TabGroup/TabGroup.css +22 -0
- package/templates/react/TabGroup/TabGroup.jsx +48 -0
- package/templates/react/TabGroup/TabGroup.test.tsx +16 -0
- package/templates/react/TabGroup/TabGroup.tsx +115 -0
- package/templates/react/TabPanel/TabPanel.css +13 -0
- package/templates/react/TabPanel/TabPanel.jsx +25 -0
- package/templates/react/TabPanel/TabPanel.test.tsx +16 -0
- package/templates/react/TabPanel/TabPanel.tsx +84 -0
- package/templates/react/Tag/Tag.css +16 -0
- package/templates/react/Tag/Tag.jsx +47 -0
- package/templates/react/Tag/Tag.test.tsx +16 -0
- package/templates/react/Tag/Tag.tsx +109 -0
- package/templates/react/Textarea/Textarea.css +18 -0
- package/templates/react/Textarea/Textarea.jsx +76 -0
- package/templates/react/Textarea/Textarea.test.tsx +16 -0
- package/templates/react/Textarea/Textarea.tsx +328 -0
- package/templates/react/Toast/Toast.css +14 -0
- package/templates/react/Toast/Toast.jsx +62 -0
- package/templates/react/Toast/Toast.test.tsx +16 -0
- package/templates/react/Toast/Toast.tsx +100 -0
- package/templates/react/ToastItem/ToastItem.css +26 -0
- package/templates/react/ToastItem/ToastItem.jsx +91 -0
- package/templates/react/ToastItem/ToastItem.test.jsx +17 -0
- package/templates/react/ToastItem/ToastItem.test.tsx +16 -0
- package/templates/react/ToastItem/ToastItem.tsx +147 -0
- package/templates/react/Tooltip/Tooltip.css +16 -0
- package/templates/react/Tooltip/Tooltip.jsx +85 -0
- package/templates/react/Tooltip/Tooltip.test.tsx +16 -0
- package/templates/react/Tooltip/Tooltip.tsx +191 -0
- package/templates/react/Tree/Tree.css +17 -0
- package/templates/react/Tree/Tree.jsx +47 -0
- package/templates/react/Tree/Tree.test.tsx +16 -0
- package/templates/react/Tree/Tree.tsx +97 -0
- package/templates/react/TreeItem/TreeItem.css +27 -0
- package/templates/react/TreeItem/TreeItem.jsx +88 -0
- package/templates/react/TreeItem/TreeItem.test.tsx +16 -0
- package/templates/react/TreeItem/TreeItem.tsx +191 -0
- package/templates/react/ZoomableFrame/ZoomableFrame.css +16 -0
- package/templates/react/ZoomableFrame/ZoomableFrame.jsx +62 -0
- package/templates/react/ZoomableFrame/ZoomableFrame.test.tsx +16 -0
- package/templates/react/ZoomableFrame/ZoomableFrame.tsx +158 -0
- package/templates/react/tsconfig.json +32 -0
- package/templates/vue/AnimatedImage/AnimatedImage.css +14 -0
- package/templates/vue/AnimatedImage/AnimatedImage.js.vue +72 -0
- package/templates/vue/AnimatedImage/AnimatedImage.test.js +10 -0
- package/templates/vue/AnimatedImage/AnimatedImage.test.ts +10 -0
- package/templates/vue/AnimatedImage/AnimatedImage.vue +77 -0
- package/templates/vue/Animation/Animation.js.vue +81 -0
- package/templates/vue/Animation/Animation.test.js +10 -0
- package/templates/vue/Animation/Animation.test.ts +10 -0
- package/templates/vue/Animation/Animation.vue +87 -0
- package/templates/vue/Avatar/Avatar.css +15 -0
- package/templates/vue/Avatar/Avatar.js.vue +67 -0
- package/templates/vue/Avatar/Avatar.test.js +10 -0
- package/templates/vue/Avatar/Avatar.test.ts +10 -0
- package/templates/vue/Avatar/Avatar.vue +71 -0
- package/templates/vue/Badge/Badge.css +15 -0
- package/templates/vue/Badge/Badge.js.vue +50 -0
- package/templates/vue/Badge/Badge.test.js +10 -0
- package/templates/vue/Badge/Badge.test.ts +10 -0
- package/templates/vue/Badge/Badge.vue +54 -0
- package/templates/vue/BarChart/BarChart.css +28 -0
- package/templates/vue/BarChart/BarChart.js.vue +60 -0
- package/templates/vue/BarChart/BarChart.test.js +10 -0
- package/templates/vue/BarChart/BarChart.test.ts +10 -0
- package/templates/vue/BarChart/BarChart.vue +64 -0
- package/templates/vue/Breadcrumb/Breadcrumb.css +13 -0
- package/templates/vue/Breadcrumb/Breadcrumb.js.vue +47 -0
- package/templates/vue/Breadcrumb/Breadcrumb.test.js +10 -0
- package/templates/vue/Breadcrumb/Breadcrumb.test.ts +10 -0
- package/templates/vue/Breadcrumb/Breadcrumb.vue +51 -0
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.css +16 -0
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.js.vue +53 -0
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.js +10 -0
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.ts +10 -0
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.vue +57 -0
- package/templates/vue/BubbleChart/BubbleChart.css +28 -0
- package/templates/vue/BubbleChart/BubbleChart.js.vue +59 -0
- package/templates/vue/BubbleChart/BubbleChart.test.js +10 -0
- package/templates/vue/BubbleChart/BubbleChart.test.ts +10 -0
- package/templates/vue/BubbleChart/BubbleChart.vue +63 -0
- package/templates/vue/Button/Button.css +18 -0
- package/templates/vue/Button/Button.js.vue +95 -0
- package/templates/vue/Button/Button.test.js +10 -0
- package/templates/vue/Button/Button.test.ts +10 -0
- package/templates/vue/Button/Button.vue +103 -0
- package/templates/vue/ButtonGroup/ButtonGroup.css +13 -0
- package/templates/vue/ButtonGroup/ButtonGroup.js.vue +48 -0
- package/templates/vue/ButtonGroup/ButtonGroup.test.js +10 -0
- package/templates/vue/ButtonGroup/ButtonGroup.test.ts +10 -0
- package/templates/vue/ButtonGroup/ButtonGroup.vue +52 -0
- package/templates/vue/Callout/Callout.css +14 -0
- package/templates/vue/Callout/Callout.js.vue +49 -0
- package/templates/vue/Callout/Callout.test.js +10 -0
- package/templates/vue/Callout/Callout.test.ts +10 -0
- package/templates/vue/Callout/Callout.vue +53 -0
- package/templates/vue/Card/Card.css +16 -0
- package/templates/vue/Card/Card.js.vue +51 -0
- package/templates/vue/Card/Card.test.js +10 -0
- package/templates/vue/Card/Card.test.ts +10 -0
- package/templates/vue/Card/Card.vue +55 -0
- package/templates/vue/Carousel/Carousel.css +23 -0
- package/templates/vue/Carousel/Carousel.js.vue +75 -0
- package/templates/vue/Carousel/Carousel.test.js +10 -0
- package/templates/vue/Carousel/Carousel.test.ts +10 -0
- package/templates/vue/Carousel/Carousel.vue +82 -0
- package/templates/vue/CarouselItem/CarouselItem.css +11 -0
- package/templates/vue/CarouselItem/CarouselItem.js.vue +49 -0
- package/templates/vue/CarouselItem/CarouselItem.test.js +10 -0
- package/templates/vue/CarouselItem/CarouselItem.test.ts +10 -0
- package/templates/vue/CarouselItem/CarouselItem.vue +53 -0
- package/templates/vue/Chart/Chart.css +28 -0
- package/templates/vue/Chart/Chart.js.vue +60 -0
- package/templates/vue/Chart/Chart.test.js +10 -0
- package/templates/vue/Chart/Chart.test.ts +10 -0
- package/templates/vue/Chart/Chart.vue +72 -0
- package/templates/vue/Checkbox/Checkbox.css +19 -0
- package/templates/vue/Checkbox/Checkbox.js.vue +104 -0
- package/templates/vue/Checkbox/Checkbox.test.js +10 -0
- package/templates/vue/Checkbox/Checkbox.test.ts +10 -0
- package/templates/vue/Checkbox/Checkbox.vue +114 -0
- package/templates/vue/ColorPicker/ColorPicker.css +42 -0
- package/templates/vue/ColorPicker/ColorPicker.js.vue +138 -0
- package/templates/vue/ColorPicker/ColorPicker.test.js +10 -0
- package/templates/vue/ColorPicker/ColorPicker.test.ts +10 -0
- package/templates/vue/ColorPicker/ColorPicker.vue +166 -0
- package/templates/vue/Combobox/Combobox.css +30 -0
- package/templates/vue/Combobox/Combobox.js.vue +149 -0
- package/templates/vue/Combobox/Combobox.test.js +10 -0
- package/templates/vue/Combobox/Combobox.test.ts +10 -0
- package/templates/vue/Combobox/Combobox.vue +168 -0
- package/templates/vue/Comparison/Comparison.css +18 -0
- package/templates/vue/Comparison/Comparison.js.vue +63 -0
- package/templates/vue/Comparison/Comparison.test.js +10 -0
- package/templates/vue/Comparison/Comparison.test.ts +10 -0
- package/templates/vue/Comparison/Comparison.vue +67 -0
- package/templates/vue/CopyButton/CopyButton.css +20 -0
- package/templates/vue/CopyButton/CopyButton.js.vue +73 -0
- package/templates/vue/CopyButton/CopyButton.test.js +10 -0
- package/templates/vue/CopyButton/CopyButton.test.ts +10 -0
- package/templates/vue/CopyButton/CopyButton.vue +78 -0
- package/templates/vue/Details/Details.css +19 -0
- package/templates/vue/Details/Details.js.vue +101 -0
- package/templates/vue/Details/Details.test.js +10 -0
- package/templates/vue/Details/Details.test.ts +10 -0
- package/templates/vue/Details/Details.vue +103 -0
- package/templates/vue/Dialog/Dialog.css +23 -0
- package/templates/vue/Dialog/Dialog.js.vue +99 -0
- package/templates/vue/Dialog/Dialog.test.js +10 -0
- package/templates/vue/Dialog/Dialog.test.ts +10 -0
- package/templates/vue/Dialog/Dialog.vue +101 -0
- package/templates/vue/Divider/Divider.css +13 -0
- package/templates/vue/Divider/Divider.js.vue +47 -0
- package/templates/vue/Divider/Divider.test.js +10 -0
- package/templates/vue/Divider/Divider.test.ts +10 -0
- package/templates/vue/Divider/Divider.vue +51 -0
- package/templates/vue/DoughnutChart/DoughnutChart.css +28 -0
- package/templates/vue/DoughnutChart/DoughnutChart.js.vue +56 -0
- package/templates/vue/DoughnutChart/DoughnutChart.test.js +10 -0
- package/templates/vue/DoughnutChart/DoughnutChart.test.ts +10 -0
- package/templates/vue/DoughnutChart/DoughnutChart.vue +60 -0
- package/templates/vue/Drawer/Drawer.css +23 -0
- package/templates/vue/Drawer/Drawer.js.vue +100 -0
- package/templates/vue/Drawer/Drawer.test.js +10 -0
- package/templates/vue/Drawer/Drawer.test.ts +10 -0
- package/templates/vue/Drawer/Drawer.vue +102 -0
- package/templates/vue/Dropdown/Dropdown.css +15 -0
- package/templates/vue/Dropdown/Dropdown.js.vue +105 -0
- package/templates/vue/Dropdown/Dropdown.test.js +10 -0
- package/templates/vue/Dropdown/Dropdown.test.ts +10 -0
- package/templates/vue/Dropdown/Dropdown.vue +119 -0
- package/templates/vue/DropdownItem/DropdownItem.css +18 -0
- package/templates/vue/DropdownItem/DropdownItem.js.vue +77 -0
- package/templates/vue/DropdownItem/DropdownItem.test.js +10 -0
- package/templates/vue/DropdownItem/DropdownItem.test.ts +10 -0
- package/templates/vue/DropdownItem/DropdownItem.vue +82 -0
- package/templates/vue/FileInput/FileInput.css +27 -0
- package/templates/vue/FileInput/FileInput.js.vue +88 -0
- package/templates/vue/FileInput/FileInput.test.js +10 -0
- package/templates/vue/FileInput/FileInput.test.ts +10 -0
- package/templates/vue/FileInput/FileInput.vue +98 -0
- package/templates/vue/FormatBytes/FormatBytes.js.vue +50 -0
- package/templates/vue/FormatBytes/FormatBytes.test.js +10 -0
- package/templates/vue/FormatBytes/FormatBytes.test.ts +10 -0
- package/templates/vue/FormatBytes/FormatBytes.vue +54 -0
- package/templates/vue/FormatDate/FormatDate.js.vue +59 -0
- package/templates/vue/FormatDate/FormatDate.test.js +10 -0
- package/templates/vue/FormatDate/FormatDate.test.ts +10 -0
- package/templates/vue/FormatDate/FormatDate.vue +63 -0
- package/templates/vue/FormatNumber/FormatNumber.js.vue +61 -0
- package/templates/vue/FormatNumber/FormatNumber.test.js +10 -0
- package/templates/vue/FormatNumber/FormatNumber.test.ts +10 -0
- package/templates/vue/FormatNumber/FormatNumber.vue +65 -0
- package/templates/vue/Icon/Icon.css +38 -0
- package/templates/vue/Icon/Icon.js.vue +76 -0
- package/templates/vue/Icon/Icon.test.js +10 -0
- package/templates/vue/Icon/Icon.test.ts +10 -0
- package/templates/vue/Icon/Icon.vue +81 -0
- package/templates/vue/Include/Include.js.vue +68 -0
- package/templates/vue/Include/Include.test.js +10 -0
- package/templates/vue/Include/Include.test.ts +10 -0
- package/templates/vue/Include/Include.vue +74 -0
- package/templates/vue/Input/Input.css +20 -0
- package/templates/vue/Input/Input.js.vue +145 -0
- package/templates/vue/Input/Input.test.js +10 -0
- package/templates/vue/Input/Input.test.ts +10 -0
- package/templates/vue/Input/Input.vue +186 -0
- package/templates/vue/IntersectionObserver/IntersectionObserver.js.vue +71 -0
- package/templates/vue/IntersectionObserver/IntersectionObserver.test.js +10 -0
- package/templates/vue/IntersectionObserver/IntersectionObserver.test.ts +10 -0
- package/templates/vue/IntersectionObserver/IntersectionObserver.vue +75 -0
- package/templates/vue/LineChart/LineChart.css +28 -0
- package/templates/vue/LineChart/LineChart.js.vue +59 -0
- package/templates/vue/LineChart/LineChart.test.js +10 -0
- package/templates/vue/LineChart/LineChart.test.ts +10 -0
- package/templates/vue/LineChart/LineChart.vue +63 -0
- package/templates/vue/Markdown/Markdown.css +11 -0
- package/templates/vue/Markdown/Markdown.js.vue +50 -0
- package/templates/vue/Markdown/Markdown.test.js +10 -0
- package/templates/vue/Markdown/Markdown.test.ts +10 -0
- package/templates/vue/Markdown/Markdown.vue +54 -0
- package/templates/vue/MutationObserver/MutationObserver.js.vue +73 -0
- package/templates/vue/MutationObserver/MutationObserver.test.js +10 -0
- package/templates/vue/MutationObserver/MutationObserver.test.ts +10 -0
- package/templates/vue/MutationObserver/MutationObserver.vue +77 -0
- package/templates/vue/NumberInput/NumberInput.css +22 -0
- package/templates/vue/NumberInput/NumberInput.js.vue +110 -0
- package/templates/vue/NumberInput/NumberInput.test.js +10 -0
- package/templates/vue/NumberInput/NumberInput.test.ts +10 -0
- package/templates/vue/NumberInput/NumberInput.vue +120 -0
- package/templates/vue/Option/Option.css +16 -0
- package/templates/vue/Option/Option.js.vue +50 -0
- package/templates/vue/Option/Option.test.js +10 -0
- package/templates/vue/Option/Option.test.ts +10 -0
- package/templates/vue/Option/Option.vue +54 -0
- package/templates/vue/Page/Page.css +36 -0
- package/templates/vue/Page/Page.js.vue +60 -0
- package/templates/vue/Page/Page.test.js +10 -0
- package/templates/vue/Page/Page.test.ts +10 -0
- package/templates/vue/Page/Page.vue +60 -0
- package/templates/vue/PieChart/PieChart.css +28 -0
- package/templates/vue/PieChart/PieChart.js.vue +52 -0
- package/templates/vue/PieChart/PieChart.test.js +10 -0
- package/templates/vue/PieChart/PieChart.test.ts +10 -0
- package/templates/vue/PieChart/PieChart.vue +56 -0
- package/templates/vue/PolarAreaChart/PolarAreaChart.css +28 -0
- package/templates/vue/PolarAreaChart/PolarAreaChart.js.vue +56 -0
- package/templates/vue/PolarAreaChart/PolarAreaChart.test.js +10 -0
- package/templates/vue/PolarAreaChart/PolarAreaChart.test.ts +10 -0
- package/templates/vue/PolarAreaChart/PolarAreaChart.vue +60 -0
- package/templates/vue/Popover/Popover.css +20 -0
- package/templates/vue/Popover/Popover.js.vue +104 -0
- package/templates/vue/Popover/Popover.test.js +10 -0
- package/templates/vue/Popover/Popover.test.ts +10 -0
- package/templates/vue/Popover/Popover.vue +118 -0
- package/templates/vue/Popup/Popup.css +21 -0
- package/templates/vue/Popup/Popup.js.vue +85 -0
- package/templates/vue/Popup/Popup.test.js +10 -0
- package/templates/vue/Popup/Popup.test.ts +10 -0
- package/templates/vue/Popup/Popup.vue +98 -0
- package/templates/vue/ProgressBar/ProgressBar.css +17 -0
- package/templates/vue/ProgressBar/ProgressBar.js.vue +49 -0
- package/templates/vue/ProgressBar/ProgressBar.test.js +10 -0
- package/templates/vue/ProgressBar/ProgressBar.test.ts +10 -0
- package/templates/vue/ProgressBar/ProgressBar.vue +53 -0
- package/templates/vue/ProgressRing/ProgressRing.css +21 -0
- package/templates/vue/ProgressRing/ProgressRing.js.vue +52 -0
- package/templates/vue/ProgressRing/ProgressRing.test.js +10 -0
- package/templates/vue/ProgressRing/ProgressRing.test.ts +10 -0
- package/templates/vue/ProgressRing/ProgressRing.vue +56 -0
- package/templates/vue/QrCode/QrCode.css +13 -0
- package/templates/vue/QrCode/QrCode.js.vue +53 -0
- package/templates/vue/QrCode/QrCode.test.js +10 -0
- package/templates/vue/QrCode/QrCode.test.ts +10 -0
- package/templates/vue/QrCode/QrCode.vue +57 -0
- package/templates/vue/RadarChart/RadarChart.css +28 -0
- package/templates/vue/RadarChart/RadarChart.js.vue +56 -0
- package/templates/vue/RadarChart/RadarChart.test.js +10 -0
- package/templates/vue/RadarChart/RadarChart.test.ts +10 -0
- package/templates/vue/RadarChart/RadarChart.vue +60 -0
- package/templates/vue/Radio/Radio.css +16 -0
- package/templates/vue/Radio/Radio.js.vue +74 -0
- package/templates/vue/Radio/Radio.test.js +10 -0
- package/templates/vue/Radio/Radio.test.ts +10 -0
- package/templates/vue/Radio/Radio.vue +81 -0
- package/templates/vue/RadioGroup/RadioGroup.css +17 -0
- package/templates/vue/RadioGroup/RadioGroup.js.vue +98 -0
- package/templates/vue/RadioGroup/RadioGroup.test.js +10 -0
- package/templates/vue/RadioGroup/RadioGroup.test.ts +10 -0
- package/templates/vue/RadioGroup/RadioGroup.vue +106 -0
- package/templates/vue/Rating/Rating.css +15 -0
- package/templates/vue/Rating/Rating.js.vue +96 -0
- package/templates/vue/Rating/Rating.test.js +10 -0
- package/templates/vue/Rating/Rating.test.ts +10 -0
- package/templates/vue/Rating/Rating.vue +104 -0
- package/templates/vue/RelativeTime/RelativeTime.js.vue +55 -0
- package/templates/vue/RelativeTime/RelativeTime.test.js +10 -0
- package/templates/vue/RelativeTime/RelativeTime.test.ts +10 -0
- package/templates/vue/RelativeTime/RelativeTime.vue +59 -0
- package/templates/vue/ResizeObserver/ResizeObserver.js.vue +67 -0
- package/templates/vue/ResizeObserver/ResizeObserver.test.js +10 -0
- package/templates/vue/ResizeObserver/ResizeObserver.test.ts +10 -0
- package/templates/vue/ResizeObserver/ResizeObserver.vue +71 -0
- package/templates/vue/ScatterChart/ScatterChart.css +28 -0
- package/templates/vue/ScatterChart/ScatterChart.js.vue +61 -0
- package/templates/vue/ScatterChart/ScatterChart.test.js +10 -0
- package/templates/vue/ScatterChart/ScatterChart.test.ts +10 -0
- package/templates/vue/ScatterChart/ScatterChart.vue +65 -0
- package/templates/vue/Scroller/Scroller.css +14 -0
- package/templates/vue/Scroller/Scroller.js.vue +50 -0
- package/templates/vue/Scroller/Scroller.test.js +10 -0
- package/templates/vue/Scroller/Scroller.test.ts +10 -0
- package/templates/vue/Scroller/Scroller.vue +54 -0
- package/templates/vue/Select/Select.css +30 -0
- package/templates/vue/Select/Select.js.vue +141 -0
- package/templates/vue/Select/Select.test.js +10 -0
- package/templates/vue/Select/Select.test.ts +10 -0
- package/templates/vue/Select/Select.vue +145 -0
- package/templates/vue/Skeleton/Skeleton.css +14 -0
- package/templates/vue/Skeleton/Skeleton.js.vue +47 -0
- package/templates/vue/Skeleton/Skeleton.test.js +10 -0
- package/templates/vue/Skeleton/Skeleton.test.ts +10 -0
- package/templates/vue/Skeleton/Skeleton.vue +51 -0
- package/templates/vue/Slider/Slider.css +31 -0
- package/templates/vue/Slider/Slider.js.vue +112 -0
- package/templates/vue/Slider/Slider.test.js +10 -0
- package/templates/vue/Slider/Slider.test.ts +10 -0
- package/templates/vue/Slider/Slider.vue +122 -0
- package/templates/vue/Sparkline/Sparkline.css +17 -0
- package/templates/vue/Sparkline/Sparkline.js.vue +51 -0
- package/templates/vue/Sparkline/Sparkline.test.js +10 -0
- package/templates/vue/Sparkline/Sparkline.test.ts +10 -0
- package/templates/vue/Sparkline/Sparkline.vue +55 -0
- package/templates/vue/Spinner/Spinner.css +16 -0
- package/templates/vue/Spinner/Spinner.js.vue +45 -0
- package/templates/vue/Spinner/Spinner.test.js +10 -0
- package/templates/vue/Spinner/Spinner.test.ts +10 -0
- package/templates/vue/Spinner/Spinner.vue +49 -0
- package/templates/vue/SplitPanel/SplitPanel.css +19 -0
- package/templates/vue/SplitPanel/SplitPanel.js.vue +69 -0
- package/templates/vue/SplitPanel/SplitPanel.test.js +10 -0
- package/templates/vue/SplitPanel/SplitPanel.test.ts +10 -0
- package/templates/vue/SplitPanel/SplitPanel.vue +74 -0
- package/templates/vue/Switch/Switch.css +19 -0
- package/templates/vue/Switch/Switch.js.vue +103 -0
- package/templates/vue/Switch/Switch.test.js +10 -0
- package/templates/vue/Switch/Switch.test.ts +10 -0
- package/templates/vue/Switch/Switch.vue +113 -0
- package/templates/vue/Tab/Tab.css +13 -0
- package/templates/vue/Tab/Tab.js.vue +48 -0
- package/templates/vue/Tab/Tab.test.js +10 -0
- package/templates/vue/Tab/Tab.test.ts +10 -0
- package/templates/vue/Tab/Tab.vue +52 -0
- package/templates/vue/TabGroup/TabGroup.css +22 -0
- package/templates/vue/TabGroup/TabGroup.js.vue +69 -0
- package/templates/vue/TabGroup/TabGroup.test.js +10 -0
- package/templates/vue/TabGroup/TabGroup.test.ts +10 -0
- package/templates/vue/TabGroup/TabGroup.vue +74 -0
- package/templates/vue/TabPanel/TabPanel.css +13 -0
- package/templates/vue/TabPanel/TabPanel.js.vue +48 -0
- package/templates/vue/TabPanel/TabPanel.test.js +10 -0
- package/templates/vue/TabPanel/TabPanel.test.ts +10 -0
- package/templates/vue/TabPanel/TabPanel.vue +52 -0
- package/templates/vue/Tag/Tag.css +16 -0
- package/templates/vue/Tag/Tag.js.vue +67 -0
- package/templates/vue/Tag/Tag.test.js +10 -0
- package/templates/vue/Tag/Tag.test.ts +10 -0
- package/templates/vue/Tag/Tag.vue +71 -0
- package/templates/vue/Textarea/Textarea.css +18 -0
- package/templates/vue/Textarea/Textarea.js.vue +121 -0
- package/templates/vue/Textarea/Textarea.test.js +10 -0
- package/templates/vue/Textarea/Textarea.test.ts +10 -0
- package/templates/vue/Textarea/Textarea.vue +146 -0
- package/templates/vue/Toast/Toast.css +14 -0
- package/templates/vue/Toast/Toast.js.vue +48 -0
- package/templates/vue/Toast/Toast.test.js +10 -0
- package/templates/vue/Toast/Toast.test.ts +10 -0
- package/templates/vue/Toast/Toast.vue +60 -0
- package/templates/vue/ToastItem/ToastItem.css +26 -0
- package/templates/vue/ToastItem/ToastItem.js.vue +80 -0
- package/templates/vue/ToastItem/ToastItem.test.js +10 -0
- package/templates/vue/ToastItem/ToastItem.test.ts +10 -0
- package/templates/vue/ToastItem/ToastItem.vue +82 -0
- package/templates/vue/Tooltip/Tooltip.css +16 -0
- package/templates/vue/Tooltip/Tooltip.js.vue +105 -0
- package/templates/vue/Tooltip/Tooltip.test.js +10 -0
- package/templates/vue/Tooltip/Tooltip.test.ts +10 -0
- package/templates/vue/Tooltip/Tooltip.vue +119 -0
- package/templates/vue/Tree/Tree.css +17 -0
- package/templates/vue/Tree/Tree.js.vue +63 -0
- package/templates/vue/Tree/Tree.test.js +10 -0
- package/templates/vue/Tree/Tree.test.ts +10 -0
- package/templates/vue/Tree/Tree.vue +68 -0
- package/templates/vue/TreeItem/TreeItem.css +27 -0
- package/templates/vue/TreeItem/TreeItem.js.vue +89 -0
- package/templates/vue/TreeItem/TreeItem.test.js +10 -0
- package/templates/vue/TreeItem/TreeItem.test.ts +10 -0
- package/templates/vue/TreeItem/TreeItem.vue +95 -0
- package/templates/vue/ZoomableFrame/ZoomableFrame.css +16 -0
- package/templates/vue/ZoomableFrame/ZoomableFrame.js.vue +85 -0
- package/templates/vue/ZoomableFrame/ZoomableFrame.test.js +10 -0
- package/templates/vue/ZoomableFrame/ZoomableFrame.test.ts +10 -0
- package/templates/vue/ZoomableFrame/ZoomableFrame.vue +86 -0
- package/templates/vue/tsconfig.json +25 -0
- package/dist/-KKAC4XOR.js +0 -10054
- package/dist/-KKAC4XOR.js.map +0 -1
- package/dist/chunk-M3CQQOFK.js +0 -1490
- package/dist/chunk-M3CQQOFK.js.map +0 -1
- package/dist/chunk-SV7IPLRK.js +0 -255
- package/dist/chunk-SV7IPLRK.js.map +0 -1
- package/dist/install-CA2HI23T.js +0 -111
- package/dist/install-CA2HI23T.js.map +0 -1
- package/dist/llms.txt +0 -2151
- package/dist/project-config-IZOQXACR.js +0 -249
- package/dist/project-config-IZOQXACR.js.map +0 -1
- package/dist/templates/AGENTS.md +0 -265
- package/dist/templates/angular/AnimatedImage/animated-image.component.css.hbs +0 -7
- package/dist/templates/angular/AnimatedImage/animated-image.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/AnimatedImage/animated-image.component.ts.hbs +0 -67
- package/dist/templates/angular/Animation/animation.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Animation/animation.component.ts.hbs +0 -102
- package/dist/templates/angular/Avatar/avatar.component.css.hbs +0 -7
- package/dist/templates/angular/Avatar/avatar.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Avatar/avatar.component.ts.hbs +0 -69
- package/dist/templates/angular/Badge/badge.component.css.hbs +0 -7
- package/dist/templates/angular/Badge/badge.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Badge/badge.component.ts.hbs +0 -54
- package/dist/templates/angular/BarChart/bar-chart.component.css.hbs +0 -7
- package/dist/templates/angular/BarChart/bar-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/BarChart/bar-chart.component.ts.hbs +0 -84
- package/dist/templates/angular/Breadcrumb/breadcrumb.component.css.hbs +0 -7
- package/dist/templates/angular/Breadcrumb/breadcrumb.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Breadcrumb/breadcrumb.component.ts.hbs +0 -45
- package/dist/templates/angular/BreadcrumbItem/breadcrumb-item.component.css.hbs +0 -7
- package/dist/templates/angular/BreadcrumbItem/breadcrumb-item.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/BreadcrumbItem/breadcrumb-item.component.ts.hbs +0 -51
- package/dist/templates/angular/BubbleChart/bubble-chart.component.css.hbs +0 -7
- package/dist/templates/angular/BubbleChart/bubble-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/BubbleChart/bubble-chart.component.ts.hbs +0 -81
- package/dist/templates/angular/Button/button.component.css.hbs +0 -7
- package/dist/templates/angular/Button/button.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Button/button.component.ts.hbs +0 -138
- package/dist/templates/angular/ButtonGroup/button-group.component.css.hbs +0 -7
- package/dist/templates/angular/ButtonGroup/button-group.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ButtonGroup/button-group.component.ts.hbs +0 -48
- package/dist/templates/angular/Callout/callout.component.css.hbs +0 -7
- package/dist/templates/angular/Callout/callout.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Callout/callout.component.ts.hbs +0 -51
- package/dist/templates/angular/Card/card.component.css.hbs +0 -7
- package/dist/templates/angular/Card/card.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Card/card.component.ts.hbs +0 -57
- package/dist/templates/angular/Carousel/carousel.component.css.hbs +0 -7
- package/dist/templates/angular/Carousel/carousel.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Carousel/carousel.component.ts.hbs +0 -91
- package/dist/templates/angular/CarouselItem/carousel-item.component.css.hbs +0 -7
- package/dist/templates/angular/CarouselItem/carousel-item.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/CarouselItem/carousel-item.component.ts.hbs +0 -42
- package/dist/templates/angular/Chart/chart.component.css.hbs +0 -7
- package/dist/templates/angular/Chart/chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Chart/chart.component.ts.hbs +0 -84
- package/dist/templates/angular/Checkbox/checkbox.component.css.hbs +0 -7
- package/dist/templates/angular/Checkbox/checkbox.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Checkbox/checkbox.component.ts.hbs +0 -151
- package/dist/templates/angular/ColorPicker/color-picker.component.css.hbs +0 -7
- package/dist/templates/angular/ColorPicker/color-picker.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ColorPicker/color-picker.component.ts.hbs +0 -200
- package/dist/templates/angular/Combobox/combobox.component.css.hbs +0 -7
- package/dist/templates/angular/Combobox/combobox.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Combobox/combobox.component.ts.hbs +0 -220
- package/dist/templates/angular/Comparison/comparison.component.css.hbs +0 -7
- package/dist/templates/angular/Comparison/comparison.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Comparison/comparison.component.ts.hbs +0 -57
- package/dist/templates/angular/CopyButton/copy-button.component.css.hbs +0 -7
- package/dist/templates/angular/CopyButton/copy-button.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/CopyButton/copy-button.component.ts.hbs +0 -82
- package/dist/templates/angular/Details/details.component.css.hbs +0 -7
- package/dist/templates/angular/Details/details.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Details/details.component.ts.hbs +0 -91
- package/dist/templates/angular/Dialog/dialog.component.css.hbs +0 -7
- package/dist/templates/angular/Dialog/dialog.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Dialog/dialog.component.ts.hbs +0 -85
- package/dist/templates/angular/Divider/divider.component.css.hbs +0 -7
- package/dist/templates/angular/Divider/divider.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Divider/divider.component.ts.hbs +0 -45
- package/dist/templates/angular/DoughnutChart/doughnut-chart.component.css.hbs +0 -7
- package/dist/templates/angular/DoughnutChart/doughnut-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/DoughnutChart/doughnut-chart.component.ts.hbs +0 -60
- package/dist/templates/angular/Drawer/drawer.component.css.hbs +0 -7
- package/dist/templates/angular/Drawer/drawer.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Drawer/drawer.component.ts.hbs +0 -88
- package/dist/templates/angular/Dropdown/dropdown.component.css.hbs +0 -7
- package/dist/templates/angular/Dropdown/dropdown.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Dropdown/dropdown.component.ts.hbs +0 -94
- package/dist/templates/angular/DropdownItem/dropdown-item.component.css.hbs +0 -7
- package/dist/templates/angular/DropdownItem/dropdown-item.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/DropdownItem/dropdown-item.component.ts.hbs +0 -83
- package/dist/templates/angular/FileInput/file-input.component.css.hbs +0 -7
- package/dist/templates/angular/FileInput/file-input.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/FileInput/file-input.component.ts.hbs +0 -145
- package/dist/templates/angular/FormatBytes/format-bytes.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/FormatBytes/format-bytes.component.ts.hbs +0 -54
- package/dist/templates/angular/FormatDate/format-date.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/FormatDate/format-date.component.ts.hbs +0 -81
- package/dist/templates/angular/FormatNumber/format-number.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/FormatNumber/format-number.component.ts.hbs +0 -75
- package/dist/templates/angular/Icon/icon.component.css.hbs +0 -7
- package/dist/templates/angular/Icon/icon.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Icon/icon.component.ts.hbs +0 -91
- package/dist/templates/angular/Include/include.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Include/include.component.ts.hbs +0 -67
- package/dist/templates/angular/Input/input.component.css.hbs +0 -7
- package/dist/templates/angular/Input/input.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Input/input.component.ts.hbs +0 -230
- package/dist/templates/angular/IntersectionObserver/intersection-observer.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/IntersectionObserver/intersection-observer.component.ts.hbs +0 -69
- package/dist/templates/angular/LineChart/line-chart.component.css.hbs +0 -7
- package/dist/templates/angular/LineChart/line-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/LineChart/line-chart.component.ts.hbs +0 -81
- package/dist/templates/angular/Markdown/markdown.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Markdown/markdown.component.ts.hbs +0 -61
- package/dist/templates/angular/MutationObserver/mutation-observer.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/MutationObserver/mutation-observer.component.ts.hbs +0 -75
- package/dist/templates/angular/NumberInput/number-input.component.css.hbs +0 -7
- package/dist/templates/angular/NumberInput/number-input.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/NumberInput/number-input.component.ts.hbs +0 -169
- package/dist/templates/angular/Option/option.component.css.hbs +0 -7
- package/dist/templates/angular/Option/option.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Option/option.component.ts.hbs +0 -54
- package/dist/templates/angular/Page/page.component.css.hbs +0 -7
- package/dist/templates/angular/Page/page.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Page/page.component.ts.hbs +0 -70
- package/dist/templates/angular/PieChart/pie-chart.component.css.hbs +0 -7
- package/dist/templates/angular/PieChart/pie-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/PieChart/pie-chart.component.ts.hbs +0 -60
- package/dist/templates/angular/PolarAreaChart/polar-area-chart.component.css.hbs +0 -7
- package/dist/templates/angular/PolarAreaChart/polar-area-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/PolarAreaChart/polar-area-chart.component.ts.hbs +0 -60
- package/dist/templates/angular/Popover/popover.component.css.hbs +0 -7
- package/dist/templates/angular/Popover/popover.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Popover/popover.component.ts.hbs +0 -100
- package/dist/templates/angular/Popup/popup.component.css.hbs +0 -7
- package/dist/templates/angular/Popup/popup.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Popup/popup.component.ts.hbs +0 -112
- package/dist/templates/angular/ProgressBar/progress-bar.component.css.hbs +0 -7
- package/dist/templates/angular/ProgressBar/progress-bar.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ProgressBar/progress-bar.component.ts.hbs +0 -51
- package/dist/templates/angular/ProgressRing/progress-ring.component.css.hbs +0 -7
- package/dist/templates/angular/ProgressRing/progress-ring.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ProgressRing/progress-ring.component.ts.hbs +0 -48
- package/dist/templates/angular/QrCode/qr-code.component.css.hbs +0 -7
- package/dist/templates/angular/QrCode/qr-code.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/QrCode/qr-code.component.ts.hbs +0 -63
- package/dist/templates/angular/RadarChart/radar-chart.component.css.hbs +0 -7
- package/dist/templates/angular/RadarChart/radar-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/RadarChart/radar-chart.component.ts.hbs +0 -72
- package/dist/templates/angular/Radio/radio.component.css.hbs +0 -7
- package/dist/templates/angular/Radio/radio.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Radio/radio.component.ts.hbs +0 -80
- package/dist/templates/angular/RadioGroup/radio-group.component.css.hbs +0 -7
- package/dist/templates/angular/RadioGroup/radio-group.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/RadioGroup/radio-group.component.ts.hbs +0 -143
- package/dist/templates/angular/Rating/rating.component.css.hbs +0 -7
- package/dist/templates/angular/Rating/rating.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Rating/rating.component.ts.hbs +0 -137
- package/dist/templates/angular/RelativeTime/relative-time.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/RelativeTime/relative-time.component.ts.hbs +0 -57
- package/dist/templates/angular/ResizeObserver/resize-observer.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ResizeObserver/resize-observer.component.ts.hbs +0 -57
- package/dist/templates/angular/ScatterChart/scatter-chart.component.css.hbs +0 -7
- package/dist/templates/angular/ScatterChart/scatter-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ScatterChart/scatter-chart.component.ts.hbs +0 -75
- package/dist/templates/angular/Scroller/scroller.component.css.hbs +0 -7
- package/dist/templates/angular/Scroller/scroller.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Scroller/scroller.component.ts.hbs +0 -54
- package/dist/templates/angular/Select/select.component.css.hbs +0 -7
- package/dist/templates/angular/Select/select.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Select/select.component.ts.hbs +0 -204
- package/dist/templates/angular/Skeleton/skeleton.component.css.hbs +0 -7
- package/dist/templates/angular/Skeleton/skeleton.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Skeleton/skeleton.component.ts.hbs +0 -45
- package/dist/templates/angular/Slider/slider.component.css.hbs +0 -7
- package/dist/templates/angular/Slider/slider.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Slider/slider.component.ts.hbs +0 -175
- package/dist/templates/angular/Sparkline/sparkline.component.css.hbs +0 -7
- package/dist/templates/angular/Sparkline/sparkline.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Sparkline/sparkline.component.ts.hbs +0 -57
- package/dist/templates/angular/Spinner/spinner.component.css.hbs +0 -7
- package/dist/templates/angular/Spinner/spinner.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Spinner/spinner.component.ts.hbs +0 -42
- package/dist/templates/angular/SplitPanel/split-panel.component.css.hbs +0 -7
- package/dist/templates/angular/SplitPanel/split-panel.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/SplitPanel/split-panel.component.ts.hbs +0 -75
- package/dist/templates/angular/Switch/switch.component.css.hbs +0 -7
- package/dist/templates/angular/Switch/switch.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Switch/switch.component.ts.hbs +0 -148
- package/dist/templates/angular/Tab/tab.component.css.hbs +0 -7
- package/dist/templates/angular/Tab/tab.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Tab/tab.component.ts.hbs +0 -48
- package/dist/templates/angular/TabGroup/tab-group.component.css.hbs +0 -7
- package/dist/templates/angular/TabGroup/tab-group.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/TabGroup/tab-group.component.ts.hbs +0 -70
- package/dist/templates/angular/TabPanel/tab-panel.component.css.hbs +0 -7
- package/dist/templates/angular/TabPanel/tab-panel.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/TabPanel/tab-panel.component.ts.hbs +0 -48
- package/dist/templates/angular/Tag/tag.component.css.hbs +0 -7
- package/dist/templates/angular/Tag/tag.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Tag/tag.component.ts.hbs +0 -69
- package/dist/templates/angular/Textarea/textarea.component.css.hbs +0 -7
- package/dist/templates/angular/Textarea/textarea.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Textarea/textarea.component.ts.hbs +0 -184
- package/dist/templates/angular/Toast/toast.component.css.hbs +0 -7
- package/dist/templates/angular/Toast/toast.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Toast/toast.component.ts.hbs +0 -49
- package/dist/templates/angular/ToastItem/toast-item.component.css.hbs +0 -7
- package/dist/templates/angular/ToastItem/toast-item.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ToastItem/toast-item.component.ts.hbs +0 -79
- package/dist/templates/angular/Tooltip/tooltip.component.css.hbs +0 -7
- package/dist/templates/angular/Tooltip/tooltip.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Tooltip/tooltip.component.ts.hbs +0 -103
- package/dist/templates/angular/Tree/tree.component.css.hbs +0 -7
- package/dist/templates/angular/Tree/tree.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Tree/tree.component.ts.hbs +0 -57
- package/dist/templates/angular/TreeItem/tree-item.component.css.hbs +0 -7
- package/dist/templates/angular/TreeItem/tree-item.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/TreeItem/tree-item.component.ts.hbs +0 -91
- package/dist/templates/angular/ZoomableFrame/zoomable-frame.component.css.hbs +0 -7
- package/dist/templates/angular/ZoomableFrame/zoomable-frame.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ZoomableFrame/zoomable-frame.component.ts.hbs +0 -95
- package/dist/templates/react/AnimatedImage/AnimatedImage.css.hbs +0 -14
- package/dist/templates/react/AnimatedImage/AnimatedImage.jsx.hbs +0 -64
- package/dist/templates/react/AnimatedImage/AnimatedImage.test.tsx.hbs +0 -10
- package/dist/templates/react/AnimatedImage/AnimatedImage.tsx.hbs +0 -91
- package/dist/templates/react/Animation/Animation.css.hbs +0 -7
- package/dist/templates/react/Animation/Animation.jsx.hbs +0 -100
- package/dist/templates/react/Animation/Animation.test.tsx.hbs +0 -10
- package/dist/templates/react/Animation/Animation.tsx.hbs +0 -144
- package/dist/templates/react/Avatar/Avatar.css.hbs +0 -15
- package/dist/templates/react/Avatar/Avatar.jsx.hbs +0 -65
- package/dist/templates/react/Avatar/Avatar.test.tsx.hbs +0 -10
- package/dist/templates/react/Avatar/Avatar.tsx.hbs +0 -88
- package/dist/templates/react/Badge/Badge.css.hbs +0 -13
- package/dist/templates/react/Badge/Badge.jsx.hbs +0 -52
- package/dist/templates/react/Badge/Badge.test.tsx.hbs +0 -10
- package/dist/templates/react/Badge/Badge.tsx.hbs +0 -71
- package/dist/templates/react/BarChart/BarChart.css.hbs +0 -15
- package/dist/templates/react/BarChart/BarChart.jsx.hbs +0 -67
- package/dist/templates/react/BarChart/BarChart.test.tsx.hbs +0 -10
- package/dist/templates/react/BarChart/BarChart.tsx.hbs +0 -101
- package/dist/templates/react/Breadcrumb/Breadcrumb.css.hbs +0 -10
- package/dist/templates/react/Breadcrumb/Breadcrumb.jsx.hbs +0 -48
- package/dist/templates/react/Breadcrumb/Breadcrumb.test.tsx.hbs +0 -10
- package/dist/templates/react/Breadcrumb/Breadcrumb.tsx.hbs +0 -57
- package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -13
- package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.jsx.hbs +0 -55
- package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.test.tsx.hbs +0 -10
- package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.tsx.hbs +0 -63
- package/dist/templates/react/BubbleChart/BubbleChart.css.hbs +0 -15
- package/dist/templates/react/BubbleChart/BubbleChart.jsx.hbs +0 -62
- package/dist/templates/react/BubbleChart/BubbleChart.test.tsx.hbs +0 -10
- package/dist/templates/react/BubbleChart/BubbleChart.tsx.hbs +0 -94
- package/dist/templates/react/Button/Button.css.hbs +0 -15
- package/dist/templates/react/Button/Button.jsx.hbs +0 -113
- package/dist/templates/react/Button/Button.test.tsx.hbs +0 -10
- package/dist/templates/react/Button/Button.tsx.hbs +0 -176
- package/dist/templates/react/ButtonGroup/ButtonGroup.css.hbs +0 -10
- package/dist/templates/react/ButtonGroup/ButtonGroup.jsx.hbs +0 -48
- package/dist/templates/react/ButtonGroup/ButtonGroup.test.tsx.hbs +0 -10
- package/dist/templates/react/ButtonGroup/ButtonGroup.tsx.hbs +0 -60
- package/dist/templates/react/Callout/Callout.css.hbs +0 -11
- package/dist/templates/react/Callout/Callout.jsx.hbs +0 -29
- package/dist/templates/react/Callout/Callout.test.jsx.hbs +0 -27
- package/dist/templates/react/Callout/Callout.test.tsx.hbs +0 -10
- package/dist/templates/react/Callout/Callout.tsx.hbs +0 -63
- package/dist/templates/react/Card/Card.css.hbs +0 -16
- package/dist/templates/react/Card/Card.jsx.hbs +0 -33
- package/dist/templates/react/Card/Card.test.tsx.hbs +0 -10
- package/dist/templates/react/Card/Card.tsx.hbs +0 -69
- package/dist/templates/react/Carousel/Carousel.css.hbs +0 -23
- package/dist/templates/react/Carousel/Carousel.jsx.hbs +0 -81
- package/dist/templates/react/Carousel/Carousel.test.tsx.hbs +0 -10
- package/dist/templates/react/Carousel/Carousel.tsx.hbs +0 -128
- package/dist/templates/react/CarouselItem/CarouselItem.css.hbs +0 -10
- package/dist/templates/react/CarouselItem/CarouselItem.jsx.hbs +0 -28
- package/dist/templates/react/CarouselItem/CarouselItem.test.tsx.hbs +0 -10
- package/dist/templates/react/CarouselItem/CarouselItem.tsx.hbs +0 -53
- package/dist/templates/react/Chart/Chart.css.hbs +0 -17
- package/dist/templates/react/Chart/Chart.jsx.hbs +0 -68
- package/dist/templates/react/Chart/Chart.test.tsx.hbs +0 -10
- package/dist/templates/react/Chart/Chart.tsx.hbs +0 -102
- package/dist/templates/react/Checkbox/Checkbox.css.hbs +0 -19
- package/dist/templates/react/Checkbox/Checkbox.jsx.hbs +0 -80
- package/dist/templates/react/Checkbox/Checkbox.test.tsx.hbs +0 -10
- package/dist/templates/react/Checkbox/Checkbox.tsx.hbs +0 -161
- package/dist/templates/react/ColorPicker/ColorPicker.css.hbs +0 -32
- package/dist/templates/react/ColorPicker/ColorPicker.jsx.hbs +0 -72
- package/dist/templates/react/ColorPicker/ColorPicker.test.tsx.hbs +0 -10
- package/dist/templates/react/ColorPicker/ColorPicker.tsx.hbs +0 -252
- package/dist/templates/react/Combobox/Combobox.css.hbs +0 -29
- package/dist/templates/react/Combobox/Combobox.jsx.hbs +0 -82
- package/dist/templates/react/Combobox/Combobox.test.tsx.hbs +0 -10
- package/dist/templates/react/Combobox/Combobox.tsx.hbs +0 -266
- package/dist/templates/react/Comparison/Comparison.css.hbs +0 -18
- package/dist/templates/react/Comparison/Comparison.jsx.hbs +0 -27
- package/dist/templates/react/Comparison/Comparison.test.tsx.hbs +0 -10
- package/dist/templates/react/Comparison/Comparison.tsx.hbs +0 -76
- package/dist/templates/react/CopyButton/CopyButton.css.hbs +0 -17
- package/dist/templates/react/CopyButton/CopyButton.jsx.hbs +0 -49
- package/dist/templates/react/CopyButton/CopyButton.test.jsx.hbs +0 -16
- package/dist/templates/react/CopyButton/CopyButton.test.tsx.hbs +0 -10
- package/dist/templates/react/CopyButton/CopyButton.tsx.hbs +0 -106
- package/dist/templates/react/Details/Details.css.hbs +0 -19
- package/dist/templates/react/Details/Details.jsx.hbs +0 -66
- package/dist/templates/react/Details/Details.test.jsx.hbs +0 -27
- package/dist/templates/react/Details/Details.test.tsx.hbs +0 -10
- package/dist/templates/react/Details/Details.tsx.hbs +0 -138
- package/dist/templates/react/Dialog/Dialog.css.hbs +0 -23
- package/dist/templates/react/Dialog/Dialog.jsx.hbs +0 -106
- package/dist/templates/react/Dialog/Dialog.test.jsx.hbs +0 -29
- package/dist/templates/react/Dialog/Dialog.test.tsx.hbs +0 -10
- package/dist/templates/react/Dialog/Dialog.tsx.hbs +0 -153
- package/dist/templates/react/Divider/Divider.css.hbs +0 -12
- package/dist/templates/react/Divider/Divider.jsx.hbs +0 -24
- package/dist/templates/react/Divider/Divider.test.jsx.hbs +0 -16
- package/dist/templates/react/Divider/Divider.test.tsx.hbs +0 -10
- package/dist/templates/react/Divider/Divider.tsx.hbs +0 -64
- package/dist/templates/react/DoughnutChart/DoughnutChart.css.hbs +0 -12
- package/dist/templates/react/DoughnutChart/DoughnutChart.jsx.hbs +0 -56
- package/dist/templates/react/DoughnutChart/DoughnutChart.test.tsx.hbs +0 -10
- package/dist/templates/react/DoughnutChart/DoughnutChart.tsx.hbs +0 -74
- package/dist/templates/react/Drawer/Drawer.css.hbs +0 -23
- package/dist/templates/react/Drawer/Drawer.jsx.hbs +0 -104
- package/dist/templates/react/Drawer/Drawer.test.jsx.hbs +0 -27
- package/dist/templates/react/Drawer/Drawer.test.tsx.hbs +0 -10
- package/dist/templates/react/Drawer/Drawer.tsx.hbs +0 -144
- package/dist/templates/react/Dropdown/Dropdown.css.hbs +0 -15
- package/dist/templates/react/Dropdown/Dropdown.jsx.hbs +0 -78
- package/dist/templates/react/Dropdown/Dropdown.test.tsx.hbs +0 -10
- package/dist/templates/react/Dropdown/Dropdown.tsx.hbs +0 -133
- package/dist/templates/react/DropdownItem/DropdownItem.css.hbs +0 -15
- package/dist/templates/react/DropdownItem/DropdownItem.jsx.hbs +0 -41
- package/dist/templates/react/DropdownItem/DropdownItem.test.tsx.hbs +0 -10
- package/dist/templates/react/DropdownItem/DropdownItem.tsx.hbs +0 -120
- package/dist/templates/react/FileInput/FileInput.css.hbs +0 -24
- package/dist/templates/react/FileInput/FileInput.jsx.hbs +0 -111
- package/dist/templates/react/FileInput/FileInput.test.tsx.hbs +0 -10
- package/dist/templates/react/FileInput/FileInput.tsx.hbs +0 -151
- package/dist/templates/react/FormatBytes/FormatBytes.css.hbs +0 -7
- package/dist/templates/react/FormatBytes/FormatBytes.jsx.hbs +0 -25
- package/dist/templates/react/FormatBytes/FormatBytes.test.jsx.hbs +0 -16
- package/dist/templates/react/FormatBytes/FormatBytes.test.tsx.hbs +0 -10
- package/dist/templates/react/FormatBytes/FormatBytes.tsx.hbs +0 -73
- package/dist/templates/react/FormatDate/FormatDate.css.hbs +0 -7
- package/dist/templates/react/FormatDate/FormatDate.jsx.hbs +0 -18
- package/dist/templates/react/FormatDate/FormatDate.test.tsx.hbs +0 -10
- package/dist/templates/react/FormatDate/FormatDate.tsx.hbs +0 -102
- package/dist/templates/react/FormatNumber/FormatNumber.css.hbs +0 -7
- package/dist/templates/react/FormatNumber/FormatNumber.jsx.hbs +0 -18
- package/dist/templates/react/FormatNumber/FormatNumber.test.jsx.hbs +0 -16
- package/dist/templates/react/FormatNumber/FormatNumber.test.tsx.hbs +0 -10
- package/dist/templates/react/FormatNumber/FormatNumber.tsx.hbs +0 -94
- package/dist/templates/react/Icon/Icon.css.hbs +0 -38
- package/dist/templates/react/Icon/Icon.jsx.hbs +0 -86
- package/dist/templates/react/Icon/Icon.test.jsx.hbs +0 -35
- package/dist/templates/react/Icon/Icon.test.tsx.hbs +0 -10
- package/dist/templates/react/Icon/Icon.tsx.hbs +0 -115
- package/dist/templates/react/Include/Include.css.hbs +0 -7
- package/dist/templates/react/Include/Include.jsx.hbs +0 -40
- package/dist/templates/react/Include/Include.test.jsx.hbs +0 -16
- package/dist/templates/react/Include/Include.test.tsx.hbs +0 -10
- package/dist/templates/react/Include/Include.tsx.hbs +0 -91
- package/dist/templates/react/Input/Input.css.hbs +0 -17
- package/dist/templates/react/Input/Input.jsx.hbs +0 -144
- package/dist/templates/react/Input/Input.test.tsx.hbs +0 -10
- package/dist/templates/react/Input/Input.tsx.hbs +0 -270
- package/dist/templates/react/IntersectionObserver/IntersectionObserver.css.hbs +0 -7
- package/dist/templates/react/IntersectionObserver/IntersectionObserver.jsx.hbs +0 -38
- package/dist/templates/react/IntersectionObserver/IntersectionObserver.test.jsx.hbs +0 -15
- package/dist/templates/react/IntersectionObserver/IntersectionObserver.test.tsx.hbs +0 -10
- package/dist/templates/react/IntersectionObserver/IntersectionObserver.tsx.hbs +0 -88
- package/dist/templates/react/LineChart/LineChart.css.hbs +0 -15
- package/dist/templates/react/LineChart/LineChart.jsx.hbs +0 -66
- package/dist/templates/react/LineChart/LineChart.test.tsx.hbs +0 -10
- package/dist/templates/react/LineChart/LineChart.tsx.hbs +0 -98
- package/dist/templates/react/Markdown/Markdown.css.hbs +0 -10
- package/dist/templates/react/Markdown/Markdown.jsx.hbs +0 -20
- package/dist/templates/react/Markdown/Markdown.test.tsx.hbs +0 -10
- package/dist/templates/react/Markdown/Markdown.tsx.hbs +0 -86
- package/dist/templates/react/MutationObserver/MutationObserver.css.hbs +0 -7
- package/dist/templates/react/MutationObserver/MutationObserver.jsx.hbs +0 -38
- package/dist/templates/react/MutationObserver/MutationObserver.test.tsx.hbs +0 -10
- package/dist/templates/react/MutationObserver/MutationObserver.tsx.hbs +0 -94
- package/dist/templates/react/NumberInput/NumberInput.css.hbs +0 -19
- package/dist/templates/react/NumberInput/NumberInput.jsx.hbs +0 -127
- package/dist/templates/react/NumberInput/NumberInput.test.tsx.hbs +0 -10
- package/dist/templates/react/NumberInput/NumberInput.tsx.hbs +0 -189
- package/dist/templates/react/Option/Option.css.hbs +0 -13
- package/dist/templates/react/Option/Option.jsx.hbs +0 -20
- package/dist/templates/react/Option/Option.test.tsx.hbs +0 -10
- package/dist/templates/react/Option/Option.tsx.hbs +0 -66
- package/dist/templates/react/Page/Page.css.hbs +0 -36
- package/dist/templates/react/Page/Page.jsx.hbs +0 -117
- package/dist/templates/react/Page/Page.test.tsx.hbs +0 -10
- package/dist/templates/react/Page/Page.tsx.hbs +0 -106
- package/dist/templates/react/PieChart/PieChart.css.hbs +0 -12
- package/dist/templates/react/PieChart/PieChart.jsx.hbs +0 -56
- package/dist/templates/react/PieChart/PieChart.test.tsx.hbs +0 -10
- package/dist/templates/react/PieChart/PieChart.tsx.hbs +0 -74
- package/dist/templates/react/PolarAreaChart/PolarAreaChart.css.hbs +0 -13
- package/dist/templates/react/PolarAreaChart/PolarAreaChart.jsx.hbs +0 -56
- package/dist/templates/react/PolarAreaChart/PolarAreaChart.test.tsx.hbs +0 -10
- package/dist/templates/react/PolarAreaChart/PolarAreaChart.tsx.hbs +0 -74
- package/dist/templates/react/Popover/Popover.css.hbs +0 -20
- package/dist/templates/react/Popover/Popover.jsx.hbs +0 -68
- package/dist/templates/react/Popover/Popover.test.tsx.hbs +0 -10
- package/dist/templates/react/Popover/Popover.tsx.hbs +0 -151
- package/dist/templates/react/Popup/Popup.css.hbs +0 -21
- package/dist/templates/react/Popup/Popup.jsx.hbs +0 -45
- package/dist/templates/react/Popup/Popup.test.tsx.hbs +0 -10
- package/dist/templates/react/Popup/Popup.tsx.hbs +0 -139
- package/dist/templates/react/ProgressBar/ProgressBar.css.hbs +0 -17
- package/dist/templates/react/ProgressBar/ProgressBar.jsx.hbs +0 -20
- package/dist/templates/react/ProgressBar/ProgressBar.test.jsx.hbs +0 -16
- package/dist/templates/react/ProgressBar/ProgressBar.test.tsx.hbs +0 -10
- package/dist/templates/react/ProgressBar/ProgressBar.tsx.hbs +0 -63
- package/dist/templates/react/ProgressRing/ProgressRing.css.hbs +0 -21
- package/dist/templates/react/ProgressRing/ProgressRing.jsx.hbs +0 -20
- package/dist/templates/react/ProgressRing/ProgressRing.test.jsx.hbs +0 -16
- package/dist/templates/react/ProgressRing/ProgressRing.test.tsx.hbs +0 -10
- package/dist/templates/react/ProgressRing/ProgressRing.tsx.hbs +0 -60
- package/dist/templates/react/QrCode/QrCode.css.hbs +0 -10
- package/dist/templates/react/QrCode/QrCode.jsx.hbs +0 -18
- package/dist/templates/react/QrCode/QrCode.test.tsx.hbs +0 -10
- package/dist/templates/react/QrCode/QrCode.tsx.hbs +0 -75
- package/dist/templates/react/RadarChart/RadarChart.css.hbs +0 -14
- package/dist/templates/react/RadarChart/RadarChart.jsx.hbs +0 -63
- package/dist/templates/react/RadarChart/RadarChart.test.tsx.hbs +0 -10
- package/dist/templates/react/RadarChart/RadarChart.tsx.hbs +0 -89
- package/dist/templates/react/Radio/Radio.css.hbs +0 -16
- package/dist/templates/react/Radio/Radio.jsx.hbs +0 -20
- package/dist/templates/react/Radio/Radio.test.tsx.hbs +0 -10
- package/dist/templates/react/Radio/Radio.tsx.hbs +0 -94
- package/dist/templates/react/RadioGroup/RadioGroup.css.hbs +0 -14
- package/dist/templates/react/RadioGroup/RadioGroup.jsx.hbs +0 -49
- package/dist/templates/react/RadioGroup/RadioGroup.test.tsx.hbs +0 -10
- package/dist/templates/react/RadioGroup/RadioGroup.tsx.hbs +0 -133
- package/dist/templates/react/Rating/Rating.css.hbs +0 -15
- package/dist/templates/react/Rating/Rating.jsx.hbs +0 -48
- package/dist/templates/react/Rating/Rating.test.tsx.hbs +0 -10
- package/dist/templates/react/Rating/Rating.tsx.hbs +0 -138
- package/dist/templates/react/RelativeTime/RelativeTime.css.hbs +0 -7
- package/dist/templates/react/RelativeTime/RelativeTime.jsx.hbs +0 -18
- package/dist/templates/react/RelativeTime/RelativeTime.test.tsx.hbs +0 -10
- package/dist/templates/react/RelativeTime/RelativeTime.tsx.hbs +0 -74
- package/dist/templates/react/ResizeObserver/ResizeObserver.css.hbs +0 -7
- package/dist/templates/react/ResizeObserver/ResizeObserver.jsx.hbs +0 -38
- package/dist/templates/react/ResizeObserver/ResizeObserver.test.tsx.hbs +0 -10
- package/dist/templates/react/ResizeObserver/ResizeObserver.tsx.hbs +0 -76
- package/dist/templates/react/ScatterChart/ScatterChart.css.hbs +0 -14
- package/dist/templates/react/ScatterChart/ScatterChart.jsx.hbs +0 -60
- package/dist/templates/react/ScatterChart/ScatterChart.test.tsx.hbs +0 -10
- package/dist/templates/react/ScatterChart/ScatterChart.tsx.hbs +0 -88
- package/dist/templates/react/Scroller/Scroller.css.hbs +0 -14
- package/dist/templates/react/Scroller/Scroller.jsx.hbs +0 -20
- package/dist/templates/react/Scroller/Scroller.test.tsx.hbs +0 -10
- package/dist/templates/react/Scroller/Scroller.tsx.hbs +0 -66
- package/dist/templates/react/Select/Select.css.hbs +0 -29
- package/dist/templates/react/Select/Select.jsx.hbs +0 -79
- package/dist/templates/react/Select/Select.test.tsx.hbs +0 -10
- package/dist/templates/react/Select/Select.tsx.hbs +0 -244
- package/dist/templates/react/Skeleton/Skeleton.css.hbs +0 -14
- package/dist/templates/react/Skeleton/Skeleton.jsx.hbs +0 -18
- package/dist/templates/react/Skeleton/Skeleton.test.tsx.hbs +0 -10
- package/dist/templates/react/Skeleton/Skeleton.tsx.hbs +0 -57
- package/dist/templates/react/Slider/Slider.css.hbs +0 -31
- package/dist/templates/react/Slider/Slider.jsx.hbs +0 -50
- package/dist/templates/react/Slider/Slider.test.tsx.hbs +0 -10
- package/dist/templates/react/Slider/Slider.tsx.hbs +0 -189
- package/dist/templates/react/Sparkline/Sparkline.css.hbs +0 -17
- package/dist/templates/react/Sparkline/Sparkline.jsx.hbs +0 -61
- package/dist/templates/react/Sparkline/Sparkline.test.jsx.hbs +0 -15
- package/dist/templates/react/Sparkline/Sparkline.test.tsx.hbs +0 -10
- package/dist/templates/react/Sparkline/Sparkline.tsx.hbs +0 -73
- package/dist/templates/react/Spinner/Spinner.css.hbs +0 -16
- package/dist/templates/react/Spinner/Spinner.jsx.hbs +0 -18
- package/dist/templates/react/Spinner/Spinner.test.tsx.hbs +0 -10
- package/dist/templates/react/Spinner/Spinner.tsx.hbs +0 -53
- package/dist/templates/react/SplitPanel/SplitPanel.css.hbs +0 -19
- package/dist/templates/react/SplitPanel/SplitPanel.jsx.hbs +0 -38
- package/dist/templates/react/SplitPanel/SplitPanel.test.tsx.hbs +0 -10
- package/dist/templates/react/SplitPanel/SplitPanel.tsx.hbs +0 -94
- package/dist/templates/react/Switch/Switch.css.hbs +0 -19
- package/dist/templates/react/Switch/Switch.jsx.hbs +0 -51
- package/dist/templates/react/Switch/Switch.test.tsx.hbs +0 -10
- package/dist/templates/react/Switch/Switch.tsx.hbs +0 -158
- package/dist/templates/react/Tab/Tab.css.hbs +0 -10
- package/dist/templates/react/Tab/Tab.jsx.hbs +0 -20
- package/dist/templates/react/Tab/Tab.test.tsx.hbs +0 -10
- package/dist/templates/react/Tab/Tab.tsx.hbs +0 -60
- package/dist/templates/react/TabGroup/TabGroup.css.hbs +0 -22
- package/dist/templates/react/TabGroup/TabGroup.jsx.hbs +0 -42
- package/dist/templates/react/TabGroup/TabGroup.test.tsx.hbs +0 -10
- package/dist/templates/react/TabGroup/TabGroup.tsx.hbs +0 -94
- package/dist/templates/react/TabPanel/TabPanel.css.hbs +0 -13
- package/dist/templates/react/TabPanel/TabPanel.jsx.hbs +0 -20
- package/dist/templates/react/TabPanel/TabPanel.test.tsx.hbs +0 -10
- package/dist/templates/react/TabPanel/TabPanel.tsx.hbs +0 -60
- package/dist/templates/react/Tag/Tag.css.hbs +0 -13
- package/dist/templates/react/Tag/Tag.jsx.hbs +0 -41
- package/dist/templates/react/Tag/Tag.test.tsx.hbs +0 -10
- package/dist/templates/react/Tag/Tag.tsx.hbs +0 -95
- package/dist/templates/react/Textarea/Textarea.css.hbs +0 -14
- package/dist/templates/react/Textarea/Textarea.jsx.hbs +0 -58
- package/dist/templates/react/Textarea/Textarea.test.tsx.hbs +0 -10
- package/dist/templates/react/Textarea/Textarea.tsx.hbs +0 -209
- package/dist/templates/react/Toast/Toast.css.hbs +0 -14
- package/dist/templates/react/Toast/Toast.jsx.hbs +0 -57
- package/dist/templates/react/Toast/Toast.test.tsx.hbs +0 -10
- package/dist/templates/react/Toast/Toast.tsx.hbs +0 -67
- package/dist/templates/react/ToastItem/ToastItem.css.hbs +0 -21
- package/dist/templates/react/ToastItem/ToastItem.jsx.hbs +0 -82
- package/dist/templates/react/ToastItem/ToastItem.test.jsx.hbs +0 -15
- package/dist/templates/react/ToastItem/ToastItem.test.tsx.hbs +0 -10
- package/dist/templates/react/ToastItem/ToastItem.tsx.hbs +0 -111
- package/dist/templates/react/Tooltip/Tooltip.css.hbs +0 -16
- package/dist/templates/react/Tooltip/Tooltip.jsx.hbs +0 -63
- package/dist/templates/react/Tooltip/Tooltip.test.tsx.hbs +0 -10
- package/dist/templates/react/Tooltip/Tooltip.tsx.hbs +0 -150
- package/dist/templates/react/Tree/Tree.css.hbs +0 -17
- package/dist/templates/react/Tree/Tree.jsx.hbs +0 -41
- package/dist/templates/react/Tree/Tree.test.tsx.hbs +0 -10
- package/dist/templates/react/Tree/Tree.tsx.hbs +0 -76
- package/dist/templates/react/TreeItem/TreeItem.css.hbs +0 -27
- package/dist/templates/react/TreeItem/TreeItem.jsx.hbs +0 -57
- package/dist/templates/react/TreeItem/TreeItem.test.tsx.hbs +0 -10
- package/dist/templates/react/TreeItem/TreeItem.tsx.hbs +0 -142
- package/dist/templates/react/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
- package/dist/templates/react/ZoomableFrame/ZoomableFrame.jsx.hbs +0 -52
- package/dist/templates/react/ZoomableFrame/ZoomableFrame.test.tsx.hbs +0 -10
- package/dist/templates/react/ZoomableFrame/ZoomableFrame.tsx.hbs +0 -147
- package/dist/templates/react/vite-env.d.ts.hbs +0 -21
- package/dist/templates/vue/AnimatedImage/AnimatedImage.css.hbs +0 -11
- package/dist/templates/vue/AnimatedImage/AnimatedImage.js.vue.hbs +0 -60
- package/dist/templates/vue/AnimatedImage/AnimatedImage.test.js.hbs +0 -10
- package/dist/templates/vue/AnimatedImage/AnimatedImage.test.ts.hbs +0 -10
- package/dist/templates/vue/AnimatedImage/AnimatedImage.vue.hbs +0 -66
- package/dist/templates/vue/Animation/Animation.js.vue.hbs +0 -73
- package/dist/templates/vue/Animation/Animation.test.js.hbs +0 -10
- package/dist/templates/vue/Animation/Animation.test.ts.hbs +0 -10
- package/dist/templates/vue/Animation/Animation.vue.hbs +0 -80
- package/dist/templates/vue/Avatar/Avatar.css.hbs +0 -11
- package/dist/templates/vue/Avatar/Avatar.js.vue.hbs +0 -59
- package/dist/templates/vue/Avatar/Avatar.test.js.hbs +0 -10
- package/dist/templates/vue/Avatar/Avatar.test.ts.hbs +0 -10
- package/dist/templates/vue/Avatar/Avatar.vue.hbs +0 -64
- package/dist/templates/vue/Badge/Badge.css.hbs +0 -11
- package/dist/templates/vue/Badge/Badge.js.vue.hbs +0 -42
- package/dist/templates/vue/Badge/Badge.test.js.hbs +0 -10
- package/dist/templates/vue/Badge/Badge.test.ts.hbs +0 -10
- package/dist/templates/vue/Badge/Badge.vue.hbs +0 -43
- package/dist/templates/vue/BarChart/BarChart.css.hbs +0 -11
- package/dist/templates/vue/BarChart/BarChart.js.vue.hbs +0 -52
- package/dist/templates/vue/BarChart/BarChart.test.js.hbs +0 -10
- package/dist/templates/vue/BarChart/BarChart.test.ts.hbs +0 -10
- package/dist/templates/vue/BarChart/BarChart.vue.hbs +0 -53
- package/dist/templates/vue/Breadcrumb/Breadcrumb.css.hbs +0 -11
- package/dist/templates/vue/Breadcrumb/Breadcrumb.js.vue.hbs +0 -39
- package/dist/templates/vue/Breadcrumb/Breadcrumb.test.js.hbs +0 -10
- package/dist/templates/vue/Breadcrumb/Breadcrumb.test.ts.hbs +0 -10
- package/dist/templates/vue/Breadcrumb/Breadcrumb.vue.hbs +0 -40
- package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -11
- package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.js.vue.hbs +0 -41
- package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.test.js.hbs +0 -10
- package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.test.ts.hbs +0 -10
- package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.vue.hbs +0 -42
- package/dist/templates/vue/BubbleChart/BubbleChart.css.hbs +0 -11
- package/dist/templates/vue/BubbleChart/BubbleChart.js.vue.hbs +0 -51
- package/dist/templates/vue/BubbleChart/BubbleChart.test.js.hbs +0 -10
- package/dist/templates/vue/BubbleChart/BubbleChart.test.ts.hbs +0 -10
- package/dist/templates/vue/BubbleChart/BubbleChart.vue.hbs +0 -52
- package/dist/templates/vue/Button/Button.css.hbs +0 -20
- package/dist/templates/vue/Button/Button.js.vue.hbs +0 -85
- package/dist/templates/vue/Button/Button.test.js.hbs +0 -10
- package/dist/templates/vue/Button/Button.test.ts.hbs +0 -10
- package/dist/templates/vue/Button/Button.vue.hbs +0 -92
- package/dist/templates/vue/ButtonGroup/ButtonGroup.css.hbs +0 -11
- package/dist/templates/vue/ButtonGroup/ButtonGroup.js.vue.hbs +0 -40
- package/dist/templates/vue/ButtonGroup/ButtonGroup.test.js.hbs +0 -10
- package/dist/templates/vue/ButtonGroup/ButtonGroup.test.ts.hbs +0 -10
- package/dist/templates/vue/ButtonGroup/ButtonGroup.vue.hbs +0 -41
- package/dist/templates/vue/Callout/Callout.css.hbs +0 -11
- package/dist/templates/vue/Callout/Callout.js.vue.hbs +0 -41
- package/dist/templates/vue/Callout/Callout.test.js.hbs +0 -10
- package/dist/templates/vue/Callout/Callout.test.ts.hbs +0 -10
- package/dist/templates/vue/Callout/Callout.vue.hbs +0 -42
- package/dist/templates/vue/Card/Card.css.hbs +0 -17
- package/dist/templates/vue/Card/Card.js.vue.hbs +0 -43
- package/dist/templates/vue/Card/Card.test.js.hbs +0 -10
- package/dist/templates/vue/Card/Card.test.ts.hbs +0 -10
- package/dist/templates/vue/Card/Card.vue.hbs +0 -44
- package/dist/templates/vue/Carousel/Carousel.css.hbs +0 -11
- package/dist/templates/vue/Carousel/Carousel.js.vue.hbs +0 -66
- package/dist/templates/vue/Carousel/Carousel.test.js.hbs +0 -10
- package/dist/templates/vue/Carousel/Carousel.test.ts.hbs +0 -10
- package/dist/templates/vue/Carousel/Carousel.vue.hbs +0 -71
- package/dist/templates/vue/CarouselItem/CarouselItem.css.hbs +0 -11
- package/dist/templates/vue/CarouselItem/CarouselItem.js.vue.hbs +0 -39
- package/dist/templates/vue/CarouselItem/CarouselItem.test.js.hbs +0 -10
- package/dist/templates/vue/CarouselItem/CarouselItem.test.ts.hbs +0 -10
- package/dist/templates/vue/CarouselItem/CarouselItem.vue.hbs +0 -40
- package/dist/templates/vue/Chart/Chart.css.hbs +0 -11
- package/dist/templates/vue/Chart/Chart.js.vue.hbs +0 -52
- package/dist/templates/vue/Chart/Chart.test.js.hbs +0 -10
- package/dist/templates/vue/Chart/Chart.test.ts.hbs +0 -10
- package/dist/templates/vue/Chart/Chart.vue.hbs +0 -53
- package/dist/templates/vue/Checkbox/Checkbox.css.hbs +0 -11
- package/dist/templates/vue/Checkbox/Checkbox.js.vue.hbs +0 -87
- package/dist/templates/vue/Checkbox/Checkbox.test.js.hbs +0 -10
- package/dist/templates/vue/Checkbox/Checkbox.test.ts.hbs +0 -10
- package/dist/templates/vue/Checkbox/Checkbox.vue.hbs +0 -96
- package/dist/templates/vue/ColorPicker/ColorPicker.css.hbs +0 -11
- package/dist/templates/vue/ColorPicker/ColorPicker.js.vue.hbs +0 -110
- package/dist/templates/vue/ColorPicker/ColorPicker.test.js.hbs +0 -10
- package/dist/templates/vue/ColorPicker/ColorPicker.test.ts.hbs +0 -10
- package/dist/templates/vue/ColorPicker/ColorPicker.vue.hbs +0 -123
- package/dist/templates/vue/Combobox/Combobox.css.hbs +0 -11
- package/dist/templates/vue/Combobox/Combobox.js.vue.hbs +0 -120
- package/dist/templates/vue/Combobox/Combobox.test.js.hbs +0 -10
- package/dist/templates/vue/Combobox/Combobox.test.ts.hbs +0 -10
- package/dist/templates/vue/Combobox/Combobox.vue.hbs +0 -136
- package/dist/templates/vue/Comparison/Comparison.css.hbs +0 -11
- package/dist/templates/vue/Comparison/Comparison.js.vue.hbs +0 -55
- package/dist/templates/vue/Comparison/Comparison.test.js.hbs +0 -10
- package/dist/templates/vue/Comparison/Comparison.test.ts.hbs +0 -10
- package/dist/templates/vue/Comparison/Comparison.vue.hbs +0 -60
- package/dist/templates/vue/CopyButton/CopyButton.css.hbs +0 -11
- package/dist/templates/vue/CopyButton/CopyButton.js.vue.hbs +0 -65
- package/dist/templates/vue/CopyButton/CopyButton.test.js.hbs +0 -10
- package/dist/templates/vue/CopyButton/CopyButton.test.ts.hbs +0 -10
- package/dist/templates/vue/CopyButton/CopyButton.vue.hbs +0 -71
- package/dist/templates/vue/Details/Details.css.hbs +0 -11
- package/dist/templates/vue/Details/Details.js.vue.hbs +0 -81
- package/dist/templates/vue/Details/Details.test.js.hbs +0 -10
- package/dist/templates/vue/Details/Details.test.ts.hbs +0 -10
- package/dist/templates/vue/Details/Details.vue.hbs +0 -89
- package/dist/templates/vue/Dialog/Dialog.css.hbs +0 -23
- package/dist/templates/vue/Dialog/Dialog.js.vue.hbs +0 -79
- package/dist/templates/vue/Dialog/Dialog.test.js.hbs +0 -10
- package/dist/templates/vue/Dialog/Dialog.test.ts.hbs +0 -10
- package/dist/templates/vue/Dialog/Dialog.vue.hbs +0 -94
- package/dist/templates/vue/Divider/Divider.css.hbs +0 -11
- package/dist/templates/vue/Divider/Divider.js.vue.hbs +0 -39
- package/dist/templates/vue/Divider/Divider.test.js.hbs +0 -10
- package/dist/templates/vue/Divider/Divider.test.ts.hbs +0 -10
- package/dist/templates/vue/Divider/Divider.vue.hbs +0 -40
- package/dist/templates/vue/DoughnutChart/DoughnutChart.css.hbs +0 -11
- package/dist/templates/vue/DoughnutChart/DoughnutChart.js.vue.hbs +0 -44
- package/dist/templates/vue/DoughnutChart/DoughnutChart.test.js.hbs +0 -10
- package/dist/templates/vue/DoughnutChart/DoughnutChart.test.ts.hbs +0 -10
- package/dist/templates/vue/DoughnutChart/DoughnutChart.vue.hbs +0 -45
- package/dist/templates/vue/Drawer/Drawer.css.hbs +0 -11
- package/dist/templates/vue/Drawer/Drawer.js.vue.hbs +0 -73
- package/dist/templates/vue/Drawer/Drawer.test.js.hbs +0 -10
- package/dist/templates/vue/Drawer/Drawer.test.ts.hbs +0 -10
- package/dist/templates/vue/Drawer/Drawer.vue.hbs +0 -81
- package/dist/templates/vue/Dropdown/Dropdown.css.hbs +0 -11
- package/dist/templates/vue/Dropdown/Dropdown.js.vue.hbs +0 -84
- package/dist/templates/vue/Dropdown/Dropdown.test.js.hbs +0 -10
- package/dist/templates/vue/Dropdown/Dropdown.test.ts.hbs +0 -10
- package/dist/templates/vue/Dropdown/Dropdown.vue.hbs +0 -98
- package/dist/templates/vue/DropdownItem/DropdownItem.css.hbs +0 -11
- package/dist/templates/vue/DropdownItem/DropdownItem.js.vue.hbs +0 -65
- package/dist/templates/vue/DropdownItem/DropdownItem.test.js.hbs +0 -10
- package/dist/templates/vue/DropdownItem/DropdownItem.test.ts.hbs +0 -10
- package/dist/templates/vue/DropdownItem/DropdownItem.vue.hbs +0 -71
- package/dist/templates/vue/FileInput/FileInput.css.hbs +0 -19
- package/dist/templates/vue/FileInput/FileInput.js.vue.hbs +0 -78
- package/dist/templates/vue/FileInput/FileInput.test.js.hbs +0 -10
- package/dist/templates/vue/FileInput/FileInput.test.ts.hbs +0 -10
- package/dist/templates/vue/FileInput/FileInput.vue.hbs +0 -88
- package/dist/templates/vue/FormatBytes/FormatBytes.js.vue.hbs +0 -42
- package/dist/templates/vue/FormatBytes/FormatBytes.test.js.hbs +0 -10
- package/dist/templates/vue/FormatBytes/FormatBytes.test.ts.hbs +0 -10
- package/dist/templates/vue/FormatBytes/FormatBytes.vue.hbs +0 -43
- package/dist/templates/vue/FormatDate/FormatDate.js.vue.hbs +0 -51
- package/dist/templates/vue/FormatDate/FormatDate.test.js.hbs +0 -10
- package/dist/templates/vue/FormatDate/FormatDate.test.ts.hbs +0 -10
- package/dist/templates/vue/FormatDate/FormatDate.vue.hbs +0 -52
- package/dist/templates/vue/FormatNumber/FormatNumber.js.vue.hbs +0 -49
- package/dist/templates/vue/FormatNumber/FormatNumber.test.js.hbs +0 -10
- package/dist/templates/vue/FormatNumber/FormatNumber.test.ts.hbs +0 -10
- package/dist/templates/vue/FormatNumber/FormatNumber.vue.hbs +0 -50
- package/dist/templates/vue/Icon/Icon.css.hbs +0 -11
- package/dist/templates/vue/Icon/Icon.js.vue.hbs +0 -68
- package/dist/templates/vue/Icon/Icon.test.js.hbs +0 -10
- package/dist/templates/vue/Icon/Icon.test.ts.hbs +0 -10
- package/dist/templates/vue/Icon/Icon.vue.hbs +0 -74
- package/dist/templates/vue/Include/Include.js.vue.hbs +0 -60
- package/dist/templates/vue/Include/Include.test.js.hbs +0 -10
- package/dist/templates/vue/Include/Include.test.ts.hbs +0 -10
- package/dist/templates/vue/Include/Include.vue.hbs +0 -66
- package/dist/templates/vue/Input/Input.css.hbs +0 -24
- package/dist/templates/vue/Input/Input.js.vue.hbs +0 -115
- package/dist/templates/vue/Input/Input.test.js.hbs +0 -10
- package/dist/templates/vue/Input/Input.test.ts.hbs +0 -10
- package/dist/templates/vue/Input/Input.vue.hbs +0 -125
- package/dist/templates/vue/IntersectionObserver/IntersectionObserver.js.vue.hbs +0 -59
- package/dist/templates/vue/IntersectionObserver/IntersectionObserver.test.js.hbs +0 -10
- package/dist/templates/vue/IntersectionObserver/IntersectionObserver.test.ts.hbs +0 -10
- package/dist/templates/vue/IntersectionObserver/IntersectionObserver.vue.hbs +0 -64
- package/dist/templates/vue/LineChart/LineChart.css.hbs +0 -11
- package/dist/templates/vue/LineChart/LineChart.js.vue.hbs +0 -51
- package/dist/templates/vue/LineChart/LineChart.test.js.hbs +0 -10
- package/dist/templates/vue/LineChart/LineChart.test.ts.hbs +0 -10
- package/dist/templates/vue/LineChart/LineChart.vue.hbs +0 -52
- package/dist/templates/vue/Markdown/Markdown.css.hbs +0 -10
- package/dist/templates/vue/Markdown/Markdown.js.vue.hbs +0 -40
- package/dist/templates/vue/Markdown/Markdown.test.js.hbs +0 -10
- package/dist/templates/vue/Markdown/Markdown.test.ts.hbs +0 -10
- package/dist/templates/vue/Markdown/Markdown.vue.hbs +0 -49
- package/dist/templates/vue/MutationObserver/MutationObserver.js.vue.hbs +0 -61
- package/dist/templates/vue/MutationObserver/MutationObserver.test.js.hbs +0 -10
- package/dist/templates/vue/MutationObserver/MutationObserver.test.ts.hbs +0 -10
- package/dist/templates/vue/MutationObserver/MutationObserver.vue.hbs +0 -66
- package/dist/templates/vue/NumberInput/NumberInput.css.hbs +0 -19
- package/dist/templates/vue/NumberInput/NumberInput.js.vue.hbs +0 -93
- package/dist/templates/vue/NumberInput/NumberInput.test.js.hbs +0 -10
- package/dist/templates/vue/NumberInput/NumberInput.test.ts.hbs +0 -10
- package/dist/templates/vue/NumberInput/NumberInput.vue.hbs +0 -102
- package/dist/templates/vue/Option/Option.css.hbs +0 -11
- package/dist/templates/vue/Option/Option.js.vue.hbs +0 -42
- package/dist/templates/vue/Option/Option.test.js.hbs +0 -10
- package/dist/templates/vue/Option/Option.test.ts.hbs +0 -10
- package/dist/templates/vue/Option/Option.vue.hbs +0 -43
- package/dist/templates/vue/Page/Page.css.hbs +0 -11
- package/dist/templates/vue/Page/Page.js.vue.hbs +0 -47
- package/dist/templates/vue/Page/Page.test.js.hbs +0 -10
- package/dist/templates/vue/Page/Page.test.ts.hbs +0 -10
- package/dist/templates/vue/Page/Page.vue.hbs +0 -48
- package/dist/templates/vue/PieChart/PieChart.css.hbs +0 -11
- package/dist/templates/vue/PieChart/PieChart.js.vue.hbs +0 -44
- package/dist/templates/vue/PieChart/PieChart.test.js.hbs +0 -10
- package/dist/templates/vue/PieChart/PieChart.test.ts.hbs +0 -10
- package/dist/templates/vue/PieChart/PieChart.vue.hbs +0 -45
- package/dist/templates/vue/PolarAreaChart/PolarAreaChart.css.hbs +0 -11
- package/dist/templates/vue/PolarAreaChart/PolarAreaChart.js.vue.hbs +0 -44
- package/dist/templates/vue/PolarAreaChart/PolarAreaChart.test.js.hbs +0 -10
- package/dist/templates/vue/PolarAreaChart/PolarAreaChart.test.ts.hbs +0 -10
- package/dist/templates/vue/PolarAreaChart/PolarAreaChart.vue.hbs +0 -45
- package/dist/templates/vue/Popover/Popover.css.hbs +0 -11
- package/dist/templates/vue/Popover/Popover.js.vue.hbs +0 -84
- package/dist/templates/vue/Popover/Popover.test.js.hbs +0 -10
- package/dist/templates/vue/Popover/Popover.test.ts.hbs +0 -10
- package/dist/templates/vue/Popover/Popover.vue.hbs +0 -92
- package/dist/templates/vue/Popup/Popup.css.hbs +0 -11
- package/dist/templates/vue/Popup/Popup.js.vue.hbs +0 -73
- package/dist/templates/vue/Popup/Popup.test.js.hbs +0 -10
- package/dist/templates/vue/Popup/Popup.test.ts.hbs +0 -10
- package/dist/templates/vue/Popup/Popup.vue.hbs +0 -78
- package/dist/templates/vue/ProgressBar/ProgressBar.css.hbs +0 -11
- package/dist/templates/vue/ProgressBar/ProgressBar.js.vue.hbs +0 -41
- package/dist/templates/vue/ProgressBar/ProgressBar.test.js.hbs +0 -10
- package/dist/templates/vue/ProgressBar/ProgressBar.test.ts.hbs +0 -10
- package/dist/templates/vue/ProgressBar/ProgressBar.vue.hbs +0 -42
- package/dist/templates/vue/ProgressRing/ProgressRing.css.hbs +0 -11
- package/dist/templates/vue/ProgressRing/ProgressRing.js.vue.hbs +0 -40
- package/dist/templates/vue/ProgressRing/ProgressRing.test.js.hbs +0 -10
- package/dist/templates/vue/ProgressRing/ProgressRing.test.ts.hbs +0 -10
- package/dist/templates/vue/ProgressRing/ProgressRing.vue.hbs +0 -41
- package/dist/templates/vue/QrCode/QrCode.css.hbs +0 -11
- package/dist/templates/vue/QrCode/QrCode.js.vue.hbs +0 -45
- package/dist/templates/vue/QrCode/QrCode.test.js.hbs +0 -10
- package/dist/templates/vue/QrCode/QrCode.test.ts.hbs +0 -10
- package/dist/templates/vue/QrCode/QrCode.vue.hbs +0 -46
- package/dist/templates/vue/RadarChart/RadarChart.css.hbs +0 -11
- package/dist/templates/vue/RadarChart/RadarChart.js.vue.hbs +0 -48
- package/dist/templates/vue/RadarChart/RadarChart.test.js.hbs +0 -10
- package/dist/templates/vue/RadarChart/RadarChart.test.ts.hbs +0 -10
- package/dist/templates/vue/RadarChart/RadarChart.vue.hbs +0 -49
- package/dist/templates/vue/Radio/Radio.css.hbs +0 -11
- package/dist/templates/vue/Radio/Radio.js.vue.hbs +0 -64
- package/dist/templates/vue/Radio/Radio.test.js.hbs +0 -10
- package/dist/templates/vue/Radio/Radio.test.ts.hbs +0 -10
- package/dist/templates/vue/Radio/Radio.vue.hbs +0 -70
- package/dist/templates/vue/RadioGroup/RadioGroup.css.hbs +0 -11
- package/dist/templates/vue/RadioGroup/RadioGroup.js.vue.hbs +0 -81
- package/dist/templates/vue/RadioGroup/RadioGroup.test.js.hbs +0 -10
- package/dist/templates/vue/RadioGroup/RadioGroup.test.ts.hbs +0 -10
- package/dist/templates/vue/RadioGroup/RadioGroup.vue.hbs +0 -88
- package/dist/templates/vue/Rating/Rating.css.hbs +0 -11
- package/dist/templates/vue/Rating/Rating.js.vue.hbs +0 -78
- package/dist/templates/vue/Rating/Rating.test.js.hbs +0 -10
- package/dist/templates/vue/Rating/Rating.test.ts.hbs +0 -10
- package/dist/templates/vue/Rating/Rating.vue.hbs +0 -85
- package/dist/templates/vue/RelativeTime/RelativeTime.js.vue.hbs +0 -43
- package/dist/templates/vue/RelativeTime/RelativeTime.test.js.hbs +0 -10
- package/dist/templates/vue/RelativeTime/RelativeTime.test.ts.hbs +0 -10
- package/dist/templates/vue/RelativeTime/RelativeTime.vue.hbs +0 -44
- package/dist/templates/vue/ResizeObserver/ResizeObserver.js.vue.hbs +0 -55
- package/dist/templates/vue/ResizeObserver/ResizeObserver.test.js.hbs +0 -10
- package/dist/templates/vue/ResizeObserver/ResizeObserver.test.ts.hbs +0 -10
- package/dist/templates/vue/ResizeObserver/ResizeObserver.vue.hbs +0 -60
- package/dist/templates/vue/ScatterChart/ScatterChart.css.hbs +0 -11
- package/dist/templates/vue/ScatterChart/ScatterChart.js.vue.hbs +0 -49
- package/dist/templates/vue/ScatterChart/ScatterChart.test.js.hbs +0 -10
- package/dist/templates/vue/ScatterChart/ScatterChart.test.ts.hbs +0 -10
- package/dist/templates/vue/ScatterChart/ScatterChart.vue.hbs +0 -50
- package/dist/templates/vue/Scroller/Scroller.css.hbs +0 -11
- package/dist/templates/vue/Scroller/Scroller.js.vue.hbs +0 -42
- package/dist/templates/vue/Scroller/Scroller.test.js.hbs +0 -10
- package/dist/templates/vue/Scroller/Scroller.test.ts.hbs +0 -10
- package/dist/templates/vue/Scroller/Scroller.vue.hbs +0 -43
- package/dist/templates/vue/Select/Select.css.hbs +0 -11
- package/dist/templates/vue/Select/Select.js.vue.hbs +0 -113
- package/dist/templates/vue/Select/Select.test.js.hbs +0 -10
- package/dist/templates/vue/Select/Select.test.ts.hbs +0 -10
- package/dist/templates/vue/Select/Select.vue.hbs +0 -127
- package/dist/templates/vue/Skeleton/Skeleton.css.hbs +0 -11
- package/dist/templates/vue/Skeleton/Skeleton.js.vue.hbs +0 -39
- package/dist/templates/vue/Skeleton/Skeleton.test.js.hbs +0 -10
- package/dist/templates/vue/Skeleton/Skeleton.test.ts.hbs +0 -10
- package/dist/templates/vue/Skeleton/Skeleton.vue.hbs +0 -40
- package/dist/templates/vue/Slider/Slider.css.hbs +0 -11
- package/dist/templates/vue/Slider/Slider.js.vue.hbs +0 -95
- package/dist/templates/vue/Slider/Slider.test.js.hbs +0 -10
- package/dist/templates/vue/Slider/Slider.test.ts.hbs +0 -10
- package/dist/templates/vue/Slider/Slider.vue.hbs +0 -104
- package/dist/templates/vue/Sparkline/Sparkline.css.hbs +0 -14
- package/dist/templates/vue/Sparkline/Sparkline.js.vue.hbs +0 -43
- package/dist/templates/vue/Sparkline/Sparkline.test.js.hbs +0 -10
- package/dist/templates/vue/Sparkline/Sparkline.test.ts.hbs +0 -10
- package/dist/templates/vue/Sparkline/Sparkline.vue.hbs +0 -44
- package/dist/templates/vue/Spinner/Spinner.css.hbs +0 -11
- package/dist/templates/vue/Spinner/Spinner.js.vue.hbs +0 -39
- package/dist/templates/vue/Spinner/Spinner.test.js.hbs +0 -10
- package/dist/templates/vue/Spinner/Spinner.test.ts.hbs +0 -10
- package/dist/templates/vue/Spinner/Spinner.vue.hbs +0 -40
- package/dist/templates/vue/SplitPanel/SplitPanel.css.hbs +0 -11
- package/dist/templates/vue/SplitPanel/SplitPanel.js.vue.hbs +0 -61
- package/dist/templates/vue/SplitPanel/SplitPanel.test.js.hbs +0 -10
- package/dist/templates/vue/SplitPanel/SplitPanel.test.ts.hbs +0 -10
- package/dist/templates/vue/SplitPanel/SplitPanel.vue.hbs +0 -66
- package/dist/templates/vue/Switch/Switch.css.hbs +0 -11
- package/dist/templates/vue/Switch/Switch.js.vue.hbs +0 -86
- package/dist/templates/vue/Switch/Switch.test.js.hbs +0 -10
- package/dist/templates/vue/Switch/Switch.test.ts.hbs +0 -10
- package/dist/templates/vue/Switch/Switch.vue.hbs +0 -95
- package/dist/templates/vue/Tab/Tab.css.hbs +0 -11
- package/dist/templates/vue/Tab/Tab.js.vue.hbs +0 -40
- package/dist/templates/vue/Tab/Tab.test.js.hbs +0 -10
- package/dist/templates/vue/Tab/Tab.test.ts.hbs +0 -10
- package/dist/templates/vue/Tab/Tab.vue.hbs +0 -41
- package/dist/templates/vue/TabGroup/TabGroup.css.hbs +0 -11
- package/dist/templates/vue/TabGroup/TabGroup.js.vue.hbs +0 -61
- package/dist/templates/vue/TabGroup/TabGroup.test.js.hbs +0 -10
- package/dist/templates/vue/TabGroup/TabGroup.test.ts.hbs +0 -10
- package/dist/templates/vue/TabGroup/TabGroup.vue.hbs +0 -67
- package/dist/templates/vue/TabPanel/TabPanel.css.hbs +0 -11
- package/dist/templates/vue/TabPanel/TabPanel.js.vue.hbs +0 -40
- package/dist/templates/vue/TabPanel/TabPanel.test.js.hbs +0 -10
- package/dist/templates/vue/TabPanel/TabPanel.test.ts.hbs +0 -10
- package/dist/templates/vue/TabPanel/TabPanel.vue.hbs +0 -41
- package/dist/templates/vue/Tag/Tag.css.hbs +0 -11
- package/dist/templates/vue/Tag/Tag.js.vue.hbs +0 -59
- package/dist/templates/vue/Tag/Tag.test.js.hbs +0 -10
- package/dist/templates/vue/Tag/Tag.test.ts.hbs +0 -10
- package/dist/templates/vue/Tag/Tag.vue.hbs +0 -64
- package/dist/templates/vue/Textarea/Textarea.css.hbs +0 -11
- package/dist/templates/vue/Textarea/Textarea.js.vue.hbs +0 -98
- package/dist/templates/vue/Textarea/Textarea.test.js.hbs +0 -10
- package/dist/templates/vue/Textarea/Textarea.test.ts.hbs +0 -10
- package/dist/templates/vue/Textarea/Textarea.vue.hbs +0 -107
- package/dist/templates/vue/Toast/Toast.css.hbs +0 -11
- package/dist/templates/vue/Toast/Toast.js.vue.hbs +0 -40
- package/dist/templates/vue/Toast/Toast.test.js.hbs +0 -10
- package/dist/templates/vue/Toast/Toast.test.ts.hbs +0 -10
- package/dist/templates/vue/Toast/Toast.vue.hbs +0 -41
- package/dist/templates/vue/ToastItem/ToastItem.css.hbs +0 -11
- package/dist/templates/vue/ToastItem/ToastItem.js.vue.hbs +0 -67
- package/dist/templates/vue/ToastItem/ToastItem.test.js.hbs +0 -10
- package/dist/templates/vue/ToastItem/ToastItem.test.ts.hbs +0 -10
- package/dist/templates/vue/ToastItem/ToastItem.vue.hbs +0 -75
- package/dist/templates/vue/Tooltip/Tooltip.css.hbs +0 -11
- package/dist/templates/vue/Tooltip/Tooltip.js.vue.hbs +0 -85
- package/dist/templates/vue/Tooltip/Tooltip.test.js.hbs +0 -10
- package/dist/templates/vue/Tooltip/Tooltip.test.ts.hbs +0 -10
- package/dist/templates/vue/Tooltip/Tooltip.vue.hbs +0 -93
- package/dist/templates/vue/Tree/Tree.css.hbs +0 -11
- package/dist/templates/vue/Tree/Tree.js.vue.hbs +0 -55
- package/dist/templates/vue/Tree/Tree.test.js.hbs +0 -10
- package/dist/templates/vue/Tree/Tree.test.ts.hbs +0 -10
- package/dist/templates/vue/Tree/Tree.vue.hbs +0 -60
- package/dist/templates/vue/TreeItem/TreeItem.css.hbs +0 -11
- package/dist/templates/vue/TreeItem/TreeItem.js.vue.hbs +0 -77
- package/dist/templates/vue/TreeItem/TreeItem.test.js.hbs +0 -10
- package/dist/templates/vue/TreeItem/TreeItem.test.ts.hbs +0 -10
- package/dist/templates/vue/TreeItem/TreeItem.vue.hbs +0 -87
- package/dist/templates/vue/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
- package/dist/templates/vue/ZoomableFrame/ZoomableFrame.js.vue.hbs +0 -69
- package/dist/templates/vue/ZoomableFrame/ZoomableFrame.test.js.hbs +0 -10
- package/dist/templates/vue/ZoomableFrame/ZoomableFrame.test.ts.hbs +0 -10
- package/dist/templates/vue/ZoomableFrame/ZoomableFrame.vue.hbs +0 -75
- package/dist/tier-4FZLELBX.js +0 -13
- package/templates/angular/AnimatedImage/animated-image.component.css.hbs +0 -7
- package/templates/angular/AnimatedImage/animated-image.component.spec.ts.hbs +0 -26
- package/templates/angular/AnimatedImage/animated-image.component.ts.hbs +0 -67
- package/templates/angular/Animation/animation.component.css.hbs +0 -7
- package/templates/angular/Animation/animation.component.spec.ts.hbs +0 -26
- package/templates/angular/Animation/animation.component.ts.hbs +0 -102
- package/templates/angular/Avatar/avatar.component.css.hbs +0 -7
- package/templates/angular/Avatar/avatar.component.spec.ts.hbs +0 -26
- package/templates/angular/Avatar/avatar.component.ts.hbs +0 -69
- package/templates/angular/Badge/badge.component.css.hbs +0 -7
- package/templates/angular/Badge/badge.component.spec.ts.hbs +0 -26
- package/templates/angular/Badge/badge.component.ts.hbs +0 -54
- package/templates/angular/BarChart/bar-chart.component.css.hbs +0 -7
- package/templates/angular/BarChart/bar-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/BarChart/bar-chart.component.ts.hbs +0 -84
- package/templates/angular/Breadcrumb/breadcrumb.component.css.hbs +0 -7
- package/templates/angular/Breadcrumb/breadcrumb.component.spec.ts.hbs +0 -26
- package/templates/angular/Breadcrumb/breadcrumb.component.ts.hbs +0 -45
- package/templates/angular/BreadcrumbItem/breadcrumb-item.component.css.hbs +0 -7
- package/templates/angular/BreadcrumbItem/breadcrumb-item.component.spec.ts.hbs +0 -26
- package/templates/angular/BreadcrumbItem/breadcrumb-item.component.ts.hbs +0 -51
- package/templates/angular/BubbleChart/bubble-chart.component.css.hbs +0 -7
- package/templates/angular/BubbleChart/bubble-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/BubbleChart/bubble-chart.component.ts.hbs +0 -81
- package/templates/angular/Button/button.component.css.hbs +0 -7
- package/templates/angular/Button/button.component.spec.ts.hbs +0 -26
- package/templates/angular/Button/button.component.ts.hbs +0 -138
- package/templates/angular/ButtonGroup/button-group.component.css.hbs +0 -7
- package/templates/angular/ButtonGroup/button-group.component.spec.ts.hbs +0 -26
- package/templates/angular/ButtonGroup/button-group.component.ts.hbs +0 -48
- package/templates/angular/Callout/callout.component.css.hbs +0 -7
- package/templates/angular/Callout/callout.component.spec.ts.hbs +0 -26
- package/templates/angular/Callout/callout.component.ts.hbs +0 -51
- package/templates/angular/Card/card.component.css.hbs +0 -7
- package/templates/angular/Card/card.component.spec.ts.hbs +0 -26
- package/templates/angular/Card/card.component.ts.hbs +0 -57
- package/templates/angular/Carousel/carousel.component.css.hbs +0 -7
- package/templates/angular/Carousel/carousel.component.spec.ts.hbs +0 -26
- package/templates/angular/Carousel/carousel.component.ts.hbs +0 -91
- package/templates/angular/CarouselItem/carousel-item.component.css.hbs +0 -7
- package/templates/angular/CarouselItem/carousel-item.component.spec.ts.hbs +0 -26
- package/templates/angular/CarouselItem/carousel-item.component.ts.hbs +0 -42
- package/templates/angular/Chart/chart.component.css.hbs +0 -7
- package/templates/angular/Chart/chart.component.spec.ts.hbs +0 -26
- package/templates/angular/Chart/chart.component.ts.hbs +0 -84
- package/templates/angular/Checkbox/checkbox.component.css.hbs +0 -7
- package/templates/angular/Checkbox/checkbox.component.spec.ts.hbs +0 -26
- package/templates/angular/Checkbox/checkbox.component.ts.hbs +0 -151
- package/templates/angular/ColorPicker/color-picker.component.css.hbs +0 -7
- package/templates/angular/ColorPicker/color-picker.component.spec.ts.hbs +0 -26
- package/templates/angular/ColorPicker/color-picker.component.ts.hbs +0 -200
- package/templates/angular/Combobox/combobox.component.css.hbs +0 -7
- package/templates/angular/Combobox/combobox.component.spec.ts.hbs +0 -26
- package/templates/angular/Combobox/combobox.component.ts.hbs +0 -220
- package/templates/angular/Comparison/comparison.component.css.hbs +0 -7
- package/templates/angular/Comparison/comparison.component.spec.ts.hbs +0 -26
- package/templates/angular/Comparison/comparison.component.ts.hbs +0 -57
- package/templates/angular/CopyButton/copy-button.component.css.hbs +0 -7
- package/templates/angular/CopyButton/copy-button.component.spec.ts.hbs +0 -26
- package/templates/angular/CopyButton/copy-button.component.ts.hbs +0 -82
- package/templates/angular/Details/details.component.css.hbs +0 -7
- package/templates/angular/Details/details.component.spec.ts.hbs +0 -26
- package/templates/angular/Details/details.component.ts.hbs +0 -91
- package/templates/angular/Dialog/dialog.component.css.hbs +0 -7
- package/templates/angular/Dialog/dialog.component.spec.ts.hbs +0 -26
- package/templates/angular/Dialog/dialog.component.ts.hbs +0 -85
- package/templates/angular/Divider/divider.component.css.hbs +0 -7
- package/templates/angular/Divider/divider.component.spec.ts.hbs +0 -26
- package/templates/angular/Divider/divider.component.ts.hbs +0 -45
- package/templates/angular/DoughnutChart/doughnut-chart.component.css.hbs +0 -7
- package/templates/angular/DoughnutChart/doughnut-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/DoughnutChart/doughnut-chart.component.ts.hbs +0 -60
- package/templates/angular/Drawer/drawer.component.css.hbs +0 -7
- package/templates/angular/Drawer/drawer.component.spec.ts.hbs +0 -26
- package/templates/angular/Drawer/drawer.component.ts.hbs +0 -88
- package/templates/angular/Dropdown/dropdown.component.css.hbs +0 -7
- package/templates/angular/Dropdown/dropdown.component.spec.ts.hbs +0 -26
- package/templates/angular/Dropdown/dropdown.component.ts.hbs +0 -94
- package/templates/angular/DropdownItem/dropdown-item.component.css.hbs +0 -7
- package/templates/angular/DropdownItem/dropdown-item.component.spec.ts.hbs +0 -26
- package/templates/angular/DropdownItem/dropdown-item.component.ts.hbs +0 -83
- package/templates/angular/FileInput/file-input.component.css.hbs +0 -7
- package/templates/angular/FileInput/file-input.component.spec.ts.hbs +0 -26
- package/templates/angular/FileInput/file-input.component.ts.hbs +0 -145
- package/templates/angular/FormatBytes/format-bytes.component.css.hbs +0 -7
- package/templates/angular/FormatBytes/format-bytes.component.spec.ts.hbs +0 -26
- package/templates/angular/FormatBytes/format-bytes.component.ts.hbs +0 -54
- package/templates/angular/FormatDate/format-date.component.css.hbs +0 -7
- package/templates/angular/FormatDate/format-date.component.spec.ts.hbs +0 -26
- package/templates/angular/FormatDate/format-date.component.ts.hbs +0 -81
- package/templates/angular/FormatNumber/format-number.component.css.hbs +0 -7
- package/templates/angular/FormatNumber/format-number.component.spec.ts.hbs +0 -26
- package/templates/angular/FormatNumber/format-number.component.ts.hbs +0 -75
- package/templates/angular/Icon/icon.component.css.hbs +0 -7
- package/templates/angular/Icon/icon.component.spec.ts.hbs +0 -26
- package/templates/angular/Icon/icon.component.ts.hbs +0 -91
- package/templates/angular/Include/include.component.css.hbs +0 -7
- package/templates/angular/Include/include.component.spec.ts.hbs +0 -26
- package/templates/angular/Include/include.component.ts.hbs +0 -67
- package/templates/angular/Input/input.component.css.hbs +0 -7
- package/templates/angular/Input/input.component.spec.ts.hbs +0 -26
- package/templates/angular/Input/input.component.ts.hbs +0 -230
- package/templates/angular/IntersectionObserver/intersection-observer.component.css.hbs +0 -7
- package/templates/angular/IntersectionObserver/intersection-observer.component.spec.ts.hbs +0 -26
- package/templates/angular/IntersectionObserver/intersection-observer.component.ts.hbs +0 -69
- package/templates/angular/LineChart/line-chart.component.css.hbs +0 -7
- package/templates/angular/LineChart/line-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/LineChart/line-chart.component.ts.hbs +0 -81
- package/templates/angular/Markdown/markdown.component.css.hbs +0 -7
- package/templates/angular/Markdown/markdown.component.spec.ts.hbs +0 -26
- package/templates/angular/Markdown/markdown.component.ts.hbs +0 -61
- package/templates/angular/MutationObserver/mutation-observer.component.css.hbs +0 -7
- package/templates/angular/MutationObserver/mutation-observer.component.spec.ts.hbs +0 -26
- package/templates/angular/MutationObserver/mutation-observer.component.ts.hbs +0 -75
- package/templates/angular/NumberInput/number-input.component.css.hbs +0 -7
- package/templates/angular/NumberInput/number-input.component.spec.ts.hbs +0 -26
- package/templates/angular/NumberInput/number-input.component.ts.hbs +0 -169
- package/templates/angular/Option/option.component.css.hbs +0 -7
- package/templates/angular/Option/option.component.spec.ts.hbs +0 -26
- package/templates/angular/Option/option.component.ts.hbs +0 -54
- package/templates/angular/Page/page.component.css.hbs +0 -7
- package/templates/angular/Page/page.component.spec.ts.hbs +0 -26
- package/templates/angular/Page/page.component.ts.hbs +0 -70
- package/templates/angular/PieChart/pie-chart.component.css.hbs +0 -7
- package/templates/angular/PieChart/pie-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/PieChart/pie-chart.component.ts.hbs +0 -60
- package/templates/angular/PolarAreaChart/polar-area-chart.component.css.hbs +0 -7
- package/templates/angular/PolarAreaChart/polar-area-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/PolarAreaChart/polar-area-chart.component.ts.hbs +0 -60
- package/templates/angular/Popover/popover.component.css.hbs +0 -7
- package/templates/angular/Popover/popover.component.spec.ts.hbs +0 -26
- package/templates/angular/Popover/popover.component.ts.hbs +0 -100
- package/templates/angular/Popup/popup.component.css.hbs +0 -7
- package/templates/angular/Popup/popup.component.spec.ts.hbs +0 -26
- package/templates/angular/Popup/popup.component.ts.hbs +0 -112
- package/templates/angular/ProgressBar/progress-bar.component.css.hbs +0 -7
- package/templates/angular/ProgressBar/progress-bar.component.spec.ts.hbs +0 -26
- package/templates/angular/ProgressBar/progress-bar.component.ts.hbs +0 -51
- package/templates/angular/ProgressRing/progress-ring.component.css.hbs +0 -7
- package/templates/angular/ProgressRing/progress-ring.component.spec.ts.hbs +0 -26
- package/templates/angular/ProgressRing/progress-ring.component.ts.hbs +0 -48
- package/templates/angular/QrCode/qr-code.component.css.hbs +0 -7
- package/templates/angular/QrCode/qr-code.component.spec.ts.hbs +0 -26
- package/templates/angular/QrCode/qr-code.component.ts.hbs +0 -63
- package/templates/angular/RadarChart/radar-chart.component.css.hbs +0 -7
- package/templates/angular/RadarChart/radar-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/RadarChart/radar-chart.component.ts.hbs +0 -72
- package/templates/angular/Radio/radio.component.css.hbs +0 -7
- package/templates/angular/Radio/radio.component.spec.ts.hbs +0 -26
- package/templates/angular/Radio/radio.component.ts.hbs +0 -80
- package/templates/angular/RadioGroup/radio-group.component.css.hbs +0 -7
- package/templates/angular/RadioGroup/radio-group.component.spec.ts.hbs +0 -26
- package/templates/angular/RadioGroup/radio-group.component.ts.hbs +0 -143
- package/templates/angular/Rating/rating.component.css.hbs +0 -7
- package/templates/angular/Rating/rating.component.spec.ts.hbs +0 -26
- package/templates/angular/Rating/rating.component.ts.hbs +0 -137
- package/templates/angular/RelativeTime/relative-time.component.css.hbs +0 -7
- package/templates/angular/RelativeTime/relative-time.component.spec.ts.hbs +0 -26
- package/templates/angular/RelativeTime/relative-time.component.ts.hbs +0 -57
- package/templates/angular/ResizeObserver/resize-observer.component.css.hbs +0 -7
- package/templates/angular/ResizeObserver/resize-observer.component.spec.ts.hbs +0 -26
- package/templates/angular/ResizeObserver/resize-observer.component.ts.hbs +0 -57
- package/templates/angular/ScatterChart/scatter-chart.component.css.hbs +0 -7
- package/templates/angular/ScatterChart/scatter-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/ScatterChart/scatter-chart.component.ts.hbs +0 -75
- package/templates/angular/Scroller/scroller.component.css.hbs +0 -7
- package/templates/angular/Scroller/scroller.component.spec.ts.hbs +0 -26
- package/templates/angular/Scroller/scroller.component.ts.hbs +0 -54
- package/templates/angular/Select/select.component.css.hbs +0 -7
- package/templates/angular/Select/select.component.spec.ts.hbs +0 -26
- package/templates/angular/Select/select.component.ts.hbs +0 -204
- package/templates/angular/Skeleton/skeleton.component.css.hbs +0 -7
- package/templates/angular/Skeleton/skeleton.component.spec.ts.hbs +0 -26
- package/templates/angular/Skeleton/skeleton.component.ts.hbs +0 -45
- package/templates/angular/Slider/slider.component.css.hbs +0 -7
- package/templates/angular/Slider/slider.component.spec.ts.hbs +0 -26
- package/templates/angular/Slider/slider.component.ts.hbs +0 -175
- package/templates/angular/Sparkline/sparkline.component.css.hbs +0 -7
- package/templates/angular/Sparkline/sparkline.component.spec.ts.hbs +0 -26
- package/templates/angular/Sparkline/sparkline.component.ts.hbs +0 -57
- package/templates/angular/Spinner/spinner.component.css.hbs +0 -7
- package/templates/angular/Spinner/spinner.component.spec.ts.hbs +0 -26
- package/templates/angular/Spinner/spinner.component.ts.hbs +0 -42
- package/templates/angular/SplitPanel/split-panel.component.css.hbs +0 -7
- package/templates/angular/SplitPanel/split-panel.component.spec.ts.hbs +0 -26
- package/templates/angular/SplitPanel/split-panel.component.ts.hbs +0 -75
- package/templates/angular/Switch/switch.component.css.hbs +0 -7
- package/templates/angular/Switch/switch.component.spec.ts.hbs +0 -26
- package/templates/angular/Switch/switch.component.ts.hbs +0 -148
- package/templates/angular/Tab/tab.component.css.hbs +0 -7
- package/templates/angular/Tab/tab.component.spec.ts.hbs +0 -26
- package/templates/angular/Tab/tab.component.ts.hbs +0 -48
- package/templates/angular/TabGroup/tab-group.component.css.hbs +0 -7
- package/templates/angular/TabGroup/tab-group.component.spec.ts.hbs +0 -26
- package/templates/angular/TabGroup/tab-group.component.ts.hbs +0 -70
- package/templates/angular/TabPanel/tab-panel.component.css.hbs +0 -7
- package/templates/angular/TabPanel/tab-panel.component.spec.ts.hbs +0 -26
- package/templates/angular/TabPanel/tab-panel.component.ts.hbs +0 -48
- package/templates/angular/Tag/tag.component.css.hbs +0 -7
- package/templates/angular/Tag/tag.component.spec.ts.hbs +0 -26
- package/templates/angular/Tag/tag.component.ts.hbs +0 -69
- package/templates/angular/Textarea/textarea.component.css.hbs +0 -7
- package/templates/angular/Textarea/textarea.component.spec.ts.hbs +0 -26
- package/templates/angular/Textarea/textarea.component.ts.hbs +0 -184
- package/templates/angular/Toast/toast.component.css.hbs +0 -7
- package/templates/angular/Toast/toast.component.spec.ts.hbs +0 -26
- package/templates/angular/Toast/toast.component.ts.hbs +0 -49
- package/templates/angular/ToastItem/toast-item.component.css.hbs +0 -7
- package/templates/angular/ToastItem/toast-item.component.spec.ts.hbs +0 -26
- package/templates/angular/ToastItem/toast-item.component.ts.hbs +0 -79
- package/templates/angular/Tooltip/tooltip.component.css.hbs +0 -7
- package/templates/angular/Tooltip/tooltip.component.spec.ts.hbs +0 -26
- package/templates/angular/Tooltip/tooltip.component.ts.hbs +0 -103
- package/templates/angular/Tree/tree.component.css.hbs +0 -7
- package/templates/angular/Tree/tree.component.spec.ts.hbs +0 -26
- package/templates/angular/Tree/tree.component.ts.hbs +0 -57
- package/templates/angular/TreeItem/tree-item.component.css.hbs +0 -7
- package/templates/angular/TreeItem/tree-item.component.spec.ts.hbs +0 -26
- package/templates/angular/TreeItem/tree-item.component.ts.hbs +0 -91
- package/templates/angular/ZoomableFrame/zoomable-frame.component.css.hbs +0 -7
- package/templates/angular/ZoomableFrame/zoomable-frame.component.spec.ts.hbs +0 -26
- package/templates/angular/ZoomableFrame/zoomable-frame.component.ts.hbs +0 -95
- package/templates/react/AnimatedImage/AnimatedImage.css.hbs +0 -14
- package/templates/react/AnimatedImage/AnimatedImage.jsx.hbs +0 -64
- package/templates/react/AnimatedImage/AnimatedImage.test.jsx.hbs +0 -29
- package/templates/react/AnimatedImage/AnimatedImage.test.tsx.hbs +0 -10
- package/templates/react/AnimatedImage/AnimatedImage.tsx.hbs +0 -91
- package/templates/react/Animation/Animation.css.hbs +0 -7
- package/templates/react/Animation/Animation.jsx.hbs +0 -100
- package/templates/react/Animation/Animation.test.jsx.hbs +0 -37
- package/templates/react/Animation/Animation.test.tsx.hbs +0 -10
- package/templates/react/Animation/Animation.tsx.hbs +0 -144
- package/templates/react/Avatar/Avatar.css.hbs +0 -15
- package/templates/react/Avatar/Avatar.jsx.hbs +0 -65
- package/templates/react/Avatar/Avatar.test.jsx.hbs +0 -33
- package/templates/react/Avatar/Avatar.test.tsx.hbs +0 -10
- package/templates/react/Avatar/Avatar.tsx.hbs +0 -88
- package/templates/react/Badge/Badge.css.hbs +0 -13
- package/templates/react/Badge/Badge.jsx.hbs +0 -52
- package/templates/react/Badge/Badge.test.jsx.hbs +0 -28
- package/templates/react/Badge/Badge.test.tsx.hbs +0 -10
- package/templates/react/Badge/Badge.tsx.hbs +0 -71
- package/templates/react/BarChart/BarChart.css.hbs +0 -15
- package/templates/react/BarChart/BarChart.jsx.hbs +0 -67
- package/templates/react/BarChart/BarChart.test.jsx.hbs +0 -15
- package/templates/react/BarChart/BarChart.test.tsx.hbs +0 -10
- package/templates/react/BarChart/BarChart.tsx.hbs +0 -101
- package/templates/react/Breadcrumb/Breadcrumb.css.hbs +0 -10
- package/templates/react/Breadcrumb/Breadcrumb.jsx.hbs +0 -48
- package/templates/react/Breadcrumb/Breadcrumb.test.jsx.hbs +0 -34
- package/templates/react/Breadcrumb/Breadcrumb.test.tsx.hbs +0 -10
- package/templates/react/Breadcrumb/Breadcrumb.tsx.hbs +0 -57
- package/templates/react/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -13
- package/templates/react/BreadcrumbItem/BreadcrumbItem.jsx.hbs +0 -55
- package/templates/react/BreadcrumbItem/BreadcrumbItem.test.jsx.hbs +0 -36
- package/templates/react/BreadcrumbItem/BreadcrumbItem.test.tsx.hbs +0 -10
- package/templates/react/BreadcrumbItem/BreadcrumbItem.tsx.hbs +0 -63
- package/templates/react/BubbleChart/BubbleChart.css.hbs +0 -15
- package/templates/react/BubbleChart/BubbleChart.jsx.hbs +0 -62
- package/templates/react/BubbleChart/BubbleChart.test.jsx.hbs +0 -15
- package/templates/react/BubbleChart/BubbleChart.test.tsx.hbs +0 -10
- package/templates/react/BubbleChart/BubbleChart.tsx.hbs +0 -94
- package/templates/react/Button/Button.css.hbs +0 -15
- package/templates/react/Button/Button.jsx.hbs +0 -113
- package/templates/react/Button/Button.test.jsx.hbs +0 -23
- package/templates/react/Button/Button.test.tsx.hbs +0 -10
- package/templates/react/Button/Button.tsx.hbs +0 -176
- package/templates/react/ButtonGroup/ButtonGroup.css.hbs +0 -10
- package/templates/react/ButtonGroup/ButtonGroup.jsx.hbs +0 -48
- package/templates/react/ButtonGroup/ButtonGroup.test.jsx.hbs +0 -44
- package/templates/react/ButtonGroup/ButtonGroup.test.tsx.hbs +0 -10
- package/templates/react/ButtonGroup/ButtonGroup.tsx.hbs +0 -60
- package/templates/react/Callout/Callout.css.hbs +0 -11
- package/templates/react/Callout/Callout.jsx.hbs +0 -29
- package/templates/react/Callout/Callout.test.jsx.hbs +0 -27
- package/templates/react/Callout/Callout.test.tsx.hbs +0 -10
- package/templates/react/Callout/Callout.tsx.hbs +0 -63
- package/templates/react/Card/Card.css.hbs +0 -16
- package/templates/react/Card/Card.jsx.hbs +0 -33
- package/templates/react/Card/Card.test.jsx.hbs +0 -23
- package/templates/react/Card/Card.test.tsx.hbs +0 -10
- package/templates/react/Card/Card.tsx.hbs +0 -69
- package/templates/react/Carousel/Carousel.css.hbs +0 -23
- package/templates/react/Carousel/Carousel.jsx.hbs +0 -81
- package/templates/react/Carousel/Carousel.test.jsx.hbs +0 -25
- package/templates/react/Carousel/Carousel.test.tsx.hbs +0 -10
- package/templates/react/Carousel/Carousel.tsx.hbs +0 -128
- package/templates/react/CarouselItem/CarouselItem.css.hbs +0 -10
- package/templates/react/CarouselItem/CarouselItem.jsx.hbs +0 -28
- package/templates/react/CarouselItem/CarouselItem.test.jsx.hbs +0 -21
- package/templates/react/CarouselItem/CarouselItem.test.tsx.hbs +0 -10
- package/templates/react/CarouselItem/CarouselItem.tsx.hbs +0 -53
- package/templates/react/Chart/Chart.css.hbs +0 -17
- package/templates/react/Chart/Chart.jsx.hbs +0 -68
- package/templates/react/Chart/Chart.test.jsx.hbs +0 -15
- package/templates/react/Chart/Chart.test.tsx.hbs +0 -10
- package/templates/react/Chart/Chart.tsx.hbs +0 -102
- package/templates/react/Checkbox/Checkbox.css.hbs +0 -19
- package/templates/react/Checkbox/Checkbox.jsx.hbs +0 -80
- package/templates/react/Checkbox/Checkbox.test.jsx.hbs +0 -25
- package/templates/react/Checkbox/Checkbox.test.tsx.hbs +0 -10
- package/templates/react/Checkbox/Checkbox.tsx.hbs +0 -161
- package/templates/react/ColorPicker/ColorPicker.css.hbs +0 -32
- package/templates/react/ColorPicker/ColorPicker.jsx.hbs +0 -72
- package/templates/react/ColorPicker/ColorPicker.test.jsx.hbs +0 -25
- package/templates/react/ColorPicker/ColorPicker.test.tsx.hbs +0 -10
- package/templates/react/ColorPicker/ColorPicker.tsx.hbs +0 -252
- package/templates/react/Combobox/Combobox.css.hbs +0 -29
- package/templates/react/Combobox/Combobox.jsx.hbs +0 -82
- package/templates/react/Combobox/Combobox.test.jsx.hbs +0 -19
- package/templates/react/Combobox/Combobox.test.tsx.hbs +0 -10
- package/templates/react/Combobox/Combobox.tsx.hbs +0 -266
- package/templates/react/Comparison/Comparison.css.hbs +0 -18
- package/templates/react/Comparison/Comparison.jsx.hbs +0 -27
- package/templates/react/Comparison/Comparison.test.jsx.hbs +0 -27
- package/templates/react/Comparison/Comparison.test.tsx.hbs +0 -10
- package/templates/react/Comparison/Comparison.tsx.hbs +0 -76
- package/templates/react/CopyButton/CopyButton.css.hbs +0 -17
- package/templates/react/CopyButton/CopyButton.jsx.hbs +0 -49
- package/templates/react/CopyButton/CopyButton.test.jsx.hbs +0 -16
- package/templates/react/CopyButton/CopyButton.test.tsx.hbs +0 -10
- package/templates/react/CopyButton/CopyButton.tsx.hbs +0 -106
- package/templates/react/Details/Details.css.hbs +0 -19
- package/templates/react/Details/Details.jsx.hbs +0 -66
- package/templates/react/Details/Details.test.jsx.hbs +0 -27
- package/templates/react/Details/Details.test.tsx.hbs +0 -10
- package/templates/react/Details/Details.tsx.hbs +0 -138
- package/templates/react/Dialog/Dialog.css.hbs +0 -23
- package/templates/react/Dialog/Dialog.jsx.hbs +0 -106
- package/templates/react/Dialog/Dialog.test.jsx.hbs +0 -29
- package/templates/react/Dialog/Dialog.test.tsx.hbs +0 -10
- package/templates/react/Dialog/Dialog.tsx.hbs +0 -153
- package/templates/react/Divider/Divider.css.hbs +0 -12
- package/templates/react/Divider/Divider.jsx.hbs +0 -24
- package/templates/react/Divider/Divider.test.jsx.hbs +0 -16
- package/templates/react/Divider/Divider.test.tsx.hbs +0 -10
- package/templates/react/Divider/Divider.tsx.hbs +0 -64
- package/templates/react/DoughnutChart/DoughnutChart.css.hbs +0 -12
- package/templates/react/DoughnutChart/DoughnutChart.jsx.hbs +0 -56
- package/templates/react/DoughnutChart/DoughnutChart.test.jsx.hbs +0 -15
- package/templates/react/DoughnutChart/DoughnutChart.test.tsx.hbs +0 -10
- package/templates/react/DoughnutChart/DoughnutChart.tsx.hbs +0 -74
- package/templates/react/Drawer/Drawer.css.hbs +0 -23
- package/templates/react/Drawer/Drawer.jsx.hbs +0 -104
- package/templates/react/Drawer/Drawer.test.jsx.hbs +0 -27
- package/templates/react/Drawer/Drawer.test.tsx.hbs +0 -10
- package/templates/react/Drawer/Drawer.tsx.hbs +0 -144
- package/templates/react/Dropdown/Dropdown.css.hbs +0 -15
- package/templates/react/Dropdown/Dropdown.jsx.hbs +0 -78
- package/templates/react/Dropdown/Dropdown.test.jsx.hbs +0 -18
- package/templates/react/Dropdown/Dropdown.test.tsx.hbs +0 -10
- package/templates/react/Dropdown/Dropdown.tsx.hbs +0 -133
- package/templates/react/DropdownItem/DropdownItem.css.hbs +0 -15
- package/templates/react/DropdownItem/DropdownItem.jsx.hbs +0 -41
- package/templates/react/DropdownItem/DropdownItem.test.jsx.hbs +0 -18
- package/templates/react/DropdownItem/DropdownItem.test.tsx.hbs +0 -10
- package/templates/react/DropdownItem/DropdownItem.tsx.hbs +0 -120
- package/templates/react/FileInput/FileInput.css.hbs +0 -24
- package/templates/react/FileInput/FileInput.jsx.hbs +0 -111
- package/templates/react/FileInput/FileInput.test.jsx.hbs +0 -15
- package/templates/react/FileInput/FileInput.test.tsx.hbs +0 -10
- package/templates/react/FileInput/FileInput.tsx.hbs +0 -151
- package/templates/react/FormatBytes/FormatBytes.css.hbs +0 -7
- package/templates/react/FormatBytes/FormatBytes.jsx.hbs +0 -25
- package/templates/react/FormatBytes/FormatBytes.test.jsx.hbs +0 -16
- package/templates/react/FormatBytes/FormatBytes.test.tsx.hbs +0 -10
- package/templates/react/FormatBytes/FormatBytes.tsx.hbs +0 -73
- package/templates/react/FormatDate/FormatDate.css.hbs +0 -7
- package/templates/react/FormatDate/FormatDate.jsx.hbs +0 -18
- package/templates/react/FormatDate/FormatDate.test.jsx.hbs +0 -11
- package/templates/react/FormatDate/FormatDate.test.tsx.hbs +0 -10
- package/templates/react/FormatDate/FormatDate.tsx.hbs +0 -102
- package/templates/react/FormatNumber/FormatNumber.css.hbs +0 -7
- package/templates/react/FormatNumber/FormatNumber.jsx.hbs +0 -18
- package/templates/react/FormatNumber/FormatNumber.test.jsx.hbs +0 -16
- package/templates/react/FormatNumber/FormatNumber.test.tsx.hbs +0 -10
- package/templates/react/FormatNumber/FormatNumber.tsx.hbs +0 -94
- package/templates/react/Icon/Icon.css.hbs +0 -38
- package/templates/react/Icon/Icon.jsx.hbs +0 -86
- package/templates/react/Icon/Icon.test.jsx.hbs +0 -35
- package/templates/react/Icon/Icon.test.tsx.hbs +0 -10
- package/templates/react/Icon/Icon.tsx.hbs +0 -115
- package/templates/react/Include/Include.css.hbs +0 -7
- package/templates/react/Include/Include.jsx.hbs +0 -40
- package/templates/react/Include/Include.test.jsx.hbs +0 -16
- package/templates/react/Include/Include.test.tsx.hbs +0 -10
- package/templates/react/Include/Include.tsx.hbs +0 -91
- package/templates/react/Input/Input.css.hbs +0 -17
- package/templates/react/Input/Input.jsx.hbs +0 -144
- package/templates/react/Input/Input.test.jsx.hbs +0 -23
- package/templates/react/Input/Input.test.tsx.hbs +0 -10
- package/templates/react/Input/Input.tsx.hbs +0 -270
- package/templates/react/IntersectionObserver/IntersectionObserver.css.hbs +0 -7
- package/templates/react/IntersectionObserver/IntersectionObserver.jsx.hbs +0 -38
- package/templates/react/IntersectionObserver/IntersectionObserver.test.jsx.hbs +0 -15
- package/templates/react/IntersectionObserver/IntersectionObserver.test.tsx.hbs +0 -10
- package/templates/react/IntersectionObserver/IntersectionObserver.tsx.hbs +0 -88
- package/templates/react/LineChart/LineChart.css.hbs +0 -15
- package/templates/react/LineChart/LineChart.jsx.hbs +0 -66
- package/templates/react/LineChart/LineChart.test.jsx.hbs +0 -15
- package/templates/react/LineChart/LineChart.test.tsx.hbs +0 -10
- package/templates/react/LineChart/LineChart.tsx.hbs +0 -98
- package/templates/react/Markdown/Markdown.css.hbs +0 -10
- package/templates/react/Markdown/Markdown.jsx.hbs +0 -20
- package/templates/react/Markdown/Markdown.test.jsx.hbs +0 -11
- package/templates/react/Markdown/Markdown.test.tsx.hbs +0 -10
- package/templates/react/Markdown/Markdown.tsx.hbs +0 -86
- package/templates/react/MutationObserver/MutationObserver.css.hbs +0 -7
- package/templates/react/MutationObserver/MutationObserver.jsx.hbs +0 -38
- package/templates/react/MutationObserver/MutationObserver.test.jsx.hbs +0 -15
- package/templates/react/MutationObserver/MutationObserver.test.tsx.hbs +0 -10
- package/templates/react/MutationObserver/MutationObserver.tsx.hbs +0 -94
- package/templates/react/NumberInput/NumberInput.css.hbs +0 -19
- package/templates/react/NumberInput/NumberInput.jsx.hbs +0 -127
- package/templates/react/NumberInput/NumberInput.test.jsx.hbs +0 -15
- package/templates/react/NumberInput/NumberInput.test.tsx.hbs +0 -10
- package/templates/react/NumberInput/NumberInput.tsx.hbs +0 -189
- package/templates/react/Option/Option.css.hbs +0 -13
- package/templates/react/Option/Option.jsx.hbs +0 -20
- package/templates/react/Option/Option.test.jsx.hbs +0 -11
- package/templates/react/Option/Option.test.tsx.hbs +0 -10
- package/templates/react/Option/Option.tsx.hbs +0 -66
- package/templates/react/Page/Page.css.hbs +0 -36
- package/templates/react/Page/Page.jsx.hbs +0 -117
- package/templates/react/Page/Page.test.jsx.hbs +0 -51
- package/templates/react/Page/Page.test.tsx.hbs +0 -10
- package/templates/react/Page/Page.tsx.hbs +0 -106
- package/templates/react/PieChart/PieChart.css.hbs +0 -12
- package/templates/react/PieChart/PieChart.jsx.hbs +0 -56
- package/templates/react/PieChart/PieChart.test.jsx.hbs +0 -15
- package/templates/react/PieChart/PieChart.test.tsx.hbs +0 -10
- package/templates/react/PieChart/PieChart.tsx.hbs +0 -74
- package/templates/react/PolarAreaChart/PolarAreaChart.css.hbs +0 -13
- package/templates/react/PolarAreaChart/PolarAreaChart.jsx.hbs +0 -56
- package/templates/react/PolarAreaChart/PolarAreaChart.test.jsx.hbs +0 -15
- package/templates/react/PolarAreaChart/PolarAreaChart.test.tsx.hbs +0 -10
- package/templates/react/PolarAreaChart/PolarAreaChart.tsx.hbs +0 -74
- package/templates/react/Popover/Popover.css.hbs +0 -20
- package/templates/react/Popover/Popover.jsx.hbs +0 -68
- package/templates/react/Popover/Popover.test.jsx.hbs +0 -18
- package/templates/react/Popover/Popover.test.tsx.hbs +0 -10
- package/templates/react/Popover/Popover.tsx.hbs +0 -151
- package/templates/react/Popup/Popup.css.hbs +0 -21
- package/templates/react/Popup/Popup.jsx.hbs +0 -45
- package/templates/react/Popup/Popup.test.jsx.hbs +0 -17
- package/templates/react/Popup/Popup.test.tsx.hbs +0 -10
- package/templates/react/Popup/Popup.tsx.hbs +0 -139
- package/templates/react/ProgressBar/ProgressBar.css.hbs +0 -17
- package/templates/react/ProgressBar/ProgressBar.jsx.hbs +0 -20
- package/templates/react/ProgressBar/ProgressBar.test.jsx.hbs +0 -16
- package/templates/react/ProgressBar/ProgressBar.test.tsx.hbs +0 -10
- package/templates/react/ProgressBar/ProgressBar.tsx.hbs +0 -63
- package/templates/react/ProgressRing/ProgressRing.css.hbs +0 -21
- package/templates/react/ProgressRing/ProgressRing.jsx.hbs +0 -20
- package/templates/react/ProgressRing/ProgressRing.test.jsx.hbs +0 -16
- package/templates/react/ProgressRing/ProgressRing.test.tsx.hbs +0 -10
- package/templates/react/ProgressRing/ProgressRing.tsx.hbs +0 -60
- package/templates/react/QrCode/QrCode.css.hbs +0 -10
- package/templates/react/QrCode/QrCode.jsx.hbs +0 -18
- package/templates/react/QrCode/QrCode.test.jsx.hbs +0 -11
- package/templates/react/QrCode/QrCode.test.tsx.hbs +0 -10
- package/templates/react/QrCode/QrCode.tsx.hbs +0 -75
- package/templates/react/RadarChart/RadarChart.css.hbs +0 -14
- package/templates/react/RadarChart/RadarChart.jsx.hbs +0 -63
- package/templates/react/RadarChart/RadarChart.test.jsx.hbs +0 -15
- package/templates/react/RadarChart/RadarChart.test.tsx.hbs +0 -10
- package/templates/react/RadarChart/RadarChart.tsx.hbs +0 -89
- package/templates/react/Radio/Radio.css.hbs +0 -16
- package/templates/react/Radio/Radio.jsx.hbs +0 -20
- package/templates/react/Radio/Radio.test.jsx.hbs +0 -11
- package/templates/react/Radio/Radio.test.tsx.hbs +0 -10
- package/templates/react/Radio/Radio.tsx.hbs +0 -94
- package/templates/react/RadioGroup/RadioGroup.css.hbs +0 -14
- package/templates/react/RadioGroup/RadioGroup.jsx.hbs +0 -49
- package/templates/react/RadioGroup/RadioGroup.test.jsx.hbs +0 -17
- package/templates/react/RadioGroup/RadioGroup.test.tsx.hbs +0 -10
- package/templates/react/RadioGroup/RadioGroup.tsx.hbs +0 -133
- package/templates/react/Rating/Rating.css.hbs +0 -15
- package/templates/react/Rating/Rating.jsx.hbs +0 -48
- package/templates/react/Rating/Rating.test.jsx.hbs +0 -18
- package/templates/react/Rating/Rating.test.tsx.hbs +0 -10
- package/templates/react/Rating/Rating.tsx.hbs +0 -138
- package/templates/react/RelativeTime/RelativeTime.css.hbs +0 -7
- package/templates/react/RelativeTime/RelativeTime.jsx.hbs +0 -18
- package/templates/react/RelativeTime/RelativeTime.test.jsx.hbs +0 -11
- package/templates/react/RelativeTime/RelativeTime.test.tsx.hbs +0 -10
- package/templates/react/RelativeTime/RelativeTime.tsx.hbs +0 -74
- package/templates/react/ResizeObserver/ResizeObserver.css.hbs +0 -7
- package/templates/react/ResizeObserver/ResizeObserver.jsx.hbs +0 -38
- package/templates/react/ResizeObserver/ResizeObserver.test.jsx.hbs +0 -15
- package/templates/react/ResizeObserver/ResizeObserver.test.tsx.hbs +0 -10
- package/templates/react/ResizeObserver/ResizeObserver.tsx.hbs +0 -76
- package/templates/react/ScatterChart/ScatterChart.css.hbs +0 -14
- package/templates/react/ScatterChart/ScatterChart.jsx.hbs +0 -60
- package/templates/react/ScatterChart/ScatterChart.test.jsx.hbs +0 -15
- package/templates/react/ScatterChart/ScatterChart.test.tsx.hbs +0 -10
- package/templates/react/ScatterChart/ScatterChart.tsx.hbs +0 -88
- package/templates/react/Scroller/Scroller.css.hbs +0 -14
- package/templates/react/Scroller/Scroller.jsx.hbs +0 -20
- package/templates/react/Scroller/Scroller.test.jsx.hbs +0 -11
- package/templates/react/Scroller/Scroller.test.tsx.hbs +0 -10
- package/templates/react/Scroller/Scroller.tsx.hbs +0 -66
- package/templates/react/Select/Select.css.hbs +0 -29
- package/templates/react/Select/Select.jsx.hbs +0 -79
- package/templates/react/Select/Select.test.jsx.hbs +0 -20
- package/templates/react/Select/Select.test.tsx.hbs +0 -10
- package/templates/react/Select/Select.tsx.hbs +0 -244
- package/templates/react/Skeleton/Skeleton.css.hbs +0 -14
- package/templates/react/Skeleton/Skeleton.jsx.hbs +0 -18
- package/templates/react/Skeleton/Skeleton.test.jsx.hbs +0 -11
- package/templates/react/Skeleton/Skeleton.test.tsx.hbs +0 -10
- package/templates/react/Skeleton/Skeleton.tsx.hbs +0 -57
- package/templates/react/Slider/Slider.css.hbs +0 -31
- package/templates/react/Slider/Slider.jsx.hbs +0 -50
- package/templates/react/Slider/Slider.test.jsx.hbs +0 -19
- package/templates/react/Slider/Slider.test.tsx.hbs +0 -10
- package/templates/react/Slider/Slider.tsx.hbs +0 -189
- package/templates/react/Sparkline/Sparkline.css.hbs +0 -17
- package/templates/react/Sparkline/Sparkline.jsx.hbs +0 -61
- package/templates/react/Sparkline/Sparkline.test.jsx.hbs +0 -15
- package/templates/react/Sparkline/Sparkline.test.tsx.hbs +0 -10
- package/templates/react/Sparkline/Sparkline.tsx.hbs +0 -73
- package/templates/react/Spinner/Spinner.css.hbs +0 -16
- package/templates/react/Spinner/Spinner.jsx.hbs +0 -18
- package/templates/react/Spinner/Spinner.test.jsx.hbs +0 -11
- package/templates/react/Spinner/Spinner.test.tsx.hbs +0 -10
- package/templates/react/Spinner/Spinner.tsx.hbs +0 -53
- package/templates/react/SplitPanel/SplitPanel.css.hbs +0 -19
- package/templates/react/SplitPanel/SplitPanel.jsx.hbs +0 -38
- package/templates/react/SplitPanel/SplitPanel.test.jsx.hbs +0 -16
- package/templates/react/SplitPanel/SplitPanel.test.tsx.hbs +0 -10
- package/templates/react/SplitPanel/SplitPanel.tsx.hbs +0 -94
- package/templates/react/Switch/Switch.css.hbs +0 -19
- package/templates/react/Switch/Switch.jsx.hbs +0 -51
- package/templates/react/Switch/Switch.test.jsx.hbs +0 -19
- package/templates/react/Switch/Switch.test.tsx.hbs +0 -10
- package/templates/react/Switch/Switch.tsx.hbs +0 -158
- package/templates/react/Tab/Tab.css.hbs +0 -10
- package/templates/react/Tab/Tab.jsx.hbs +0 -20
- package/templates/react/Tab/Tab.test.jsx.hbs +0 -11
- package/templates/react/Tab/Tab.test.tsx.hbs +0 -10
- package/templates/react/Tab/Tab.tsx.hbs +0 -60
- package/templates/react/TabGroup/TabGroup.css.hbs +0 -22
- package/templates/react/TabGroup/TabGroup.jsx.hbs +0 -42
- package/templates/react/TabGroup/TabGroup.test.jsx.hbs +0 -11
- package/templates/react/TabGroup/TabGroup.test.tsx.hbs +0 -10
- package/templates/react/TabGroup/TabGroup.tsx.hbs +0 -94
- package/templates/react/TabPanel/TabPanel.css.hbs +0 -13
- package/templates/react/TabPanel/TabPanel.jsx.hbs +0 -20
- package/templates/react/TabPanel/TabPanel.test.jsx.hbs +0 -11
- package/templates/react/TabPanel/TabPanel.test.tsx.hbs +0 -10
- package/templates/react/TabPanel/TabPanel.tsx.hbs +0 -60
- package/templates/react/Tag/Tag.css.hbs +0 -13
- package/templates/react/Tag/Tag.jsx.hbs +0 -41
- package/templates/react/Tag/Tag.test.jsx.hbs +0 -11
- package/templates/react/Tag/Tag.test.tsx.hbs +0 -10
- package/templates/react/Tag/Tag.tsx.hbs +0 -95
- package/templates/react/Textarea/Textarea.css.hbs +0 -14
- package/templates/react/Textarea/Textarea.jsx.hbs +0 -58
- package/templates/react/Textarea/Textarea.test.jsx.hbs +0 -11
- package/templates/react/Textarea/Textarea.test.tsx.hbs +0 -10
- package/templates/react/Textarea/Textarea.tsx.hbs +0 -209
- package/templates/react/Toast/Toast.css.hbs +0 -14
- package/templates/react/Toast/Toast.jsx.hbs +0 -57
- package/templates/react/Toast/Toast.test.jsx.hbs +0 -10
- package/templates/react/Toast/Toast.test.tsx.hbs +0 -10
- package/templates/react/Toast/Toast.tsx.hbs +0 -67
- package/templates/react/ToastItem/ToastItem.css.hbs +0 -21
- package/templates/react/ToastItem/ToastItem.jsx.hbs +0 -82
- package/templates/react/ToastItem/ToastItem.test.jsx.hbs +0 -15
- package/templates/react/ToastItem/ToastItem.test.tsx.hbs +0 -10
- package/templates/react/ToastItem/ToastItem.tsx.hbs +0 -111
- package/templates/react/Tooltip/Tooltip.css.hbs +0 -16
- package/templates/react/Tooltip/Tooltip.jsx.hbs +0 -63
- package/templates/react/Tooltip/Tooltip.test.jsx.hbs +0 -15
- package/templates/react/Tooltip/Tooltip.test.tsx.hbs +0 -10
- package/templates/react/Tooltip/Tooltip.tsx.hbs +0 -150
- package/templates/react/Tree/Tree.css.hbs +0 -17
- package/templates/react/Tree/Tree.jsx.hbs +0 -41
- package/templates/react/Tree/Tree.test.jsx.hbs +0 -11
- package/templates/react/Tree/Tree.test.tsx.hbs +0 -10
- package/templates/react/Tree/Tree.tsx.hbs +0 -76
- package/templates/react/TreeItem/TreeItem.css.hbs +0 -27
- package/templates/react/TreeItem/TreeItem.jsx.hbs +0 -57
- package/templates/react/TreeItem/TreeItem.test.jsx.hbs +0 -11
- package/templates/react/TreeItem/TreeItem.test.tsx.hbs +0 -10
- package/templates/react/TreeItem/TreeItem.tsx.hbs +0 -142
- package/templates/react/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
- package/templates/react/ZoomableFrame/ZoomableFrame.jsx.hbs +0 -52
- package/templates/react/ZoomableFrame/ZoomableFrame.test.jsx.hbs +0 -11
- package/templates/react/ZoomableFrame/ZoomableFrame.test.tsx.hbs +0 -10
- package/templates/react/ZoomableFrame/ZoomableFrame.tsx.hbs +0 -147
- package/templates/react/vite-env.d.ts.hbs +0 -21
- package/templates/vue/AnimatedImage/AnimatedImage.css.hbs +0 -11
- package/templates/vue/AnimatedImage/AnimatedImage.js.vue.hbs +0 -60
- package/templates/vue/AnimatedImage/AnimatedImage.test.js.hbs +0 -10
- package/templates/vue/AnimatedImage/AnimatedImage.test.ts.hbs +0 -10
- package/templates/vue/AnimatedImage/AnimatedImage.vue.hbs +0 -66
- package/templates/vue/Animation/Animation.js.vue.hbs +0 -73
- package/templates/vue/Animation/Animation.test.js.hbs +0 -10
- package/templates/vue/Animation/Animation.test.ts.hbs +0 -10
- package/templates/vue/Animation/Animation.vue.hbs +0 -80
- package/templates/vue/Avatar/Avatar.css.hbs +0 -11
- package/templates/vue/Avatar/Avatar.js.vue.hbs +0 -59
- package/templates/vue/Avatar/Avatar.test.js.hbs +0 -10
- package/templates/vue/Avatar/Avatar.test.ts.hbs +0 -10
- package/templates/vue/Avatar/Avatar.vue.hbs +0 -64
- package/templates/vue/Badge/Badge.css.hbs +0 -11
- package/templates/vue/Badge/Badge.js.vue.hbs +0 -42
- package/templates/vue/Badge/Badge.test.js.hbs +0 -10
- package/templates/vue/Badge/Badge.test.ts.hbs +0 -10
- package/templates/vue/Badge/Badge.vue.hbs +0 -43
- package/templates/vue/BarChart/BarChart.css.hbs +0 -11
- package/templates/vue/BarChart/BarChart.js.vue.hbs +0 -52
- package/templates/vue/BarChart/BarChart.test.js.hbs +0 -10
- package/templates/vue/BarChart/BarChart.test.ts.hbs +0 -10
- package/templates/vue/BarChart/BarChart.vue.hbs +0 -53
- package/templates/vue/Breadcrumb/Breadcrumb.css.hbs +0 -11
- package/templates/vue/Breadcrumb/Breadcrumb.js.vue.hbs +0 -39
- package/templates/vue/Breadcrumb/Breadcrumb.test.js.hbs +0 -10
- package/templates/vue/Breadcrumb/Breadcrumb.test.ts.hbs +0 -10
- package/templates/vue/Breadcrumb/Breadcrumb.vue.hbs +0 -40
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -11
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.js.vue.hbs +0 -41
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.js.hbs +0 -10
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.ts.hbs +0 -10
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.vue.hbs +0 -42
- package/templates/vue/BubbleChart/BubbleChart.css.hbs +0 -11
- package/templates/vue/BubbleChart/BubbleChart.js.vue.hbs +0 -51
- package/templates/vue/BubbleChart/BubbleChart.test.js.hbs +0 -10
- package/templates/vue/BubbleChart/BubbleChart.test.ts.hbs +0 -10
- package/templates/vue/BubbleChart/BubbleChart.vue.hbs +0 -52
- package/templates/vue/Button/Button.css.hbs +0 -20
- package/templates/vue/Button/Button.js.vue.hbs +0 -85
- package/templates/vue/Button/Button.test.js.hbs +0 -10
- package/templates/vue/Button/Button.test.ts.hbs +0 -10
- package/templates/vue/Button/Button.vue.hbs +0 -92
- package/templates/vue/ButtonGroup/ButtonGroup.css.hbs +0 -11
- package/templates/vue/ButtonGroup/ButtonGroup.js.vue.hbs +0 -40
- package/templates/vue/ButtonGroup/ButtonGroup.test.js.hbs +0 -10
- package/templates/vue/ButtonGroup/ButtonGroup.test.ts.hbs +0 -10
- package/templates/vue/ButtonGroup/ButtonGroup.vue.hbs +0 -41
- package/templates/vue/Callout/Callout.css.hbs +0 -11
- package/templates/vue/Callout/Callout.js.vue.hbs +0 -41
- package/templates/vue/Callout/Callout.test.js.hbs +0 -10
- package/templates/vue/Callout/Callout.test.ts.hbs +0 -10
- package/templates/vue/Callout/Callout.vue.hbs +0 -42
- package/templates/vue/Card/Card.css.hbs +0 -17
- package/templates/vue/Card/Card.js.vue.hbs +0 -43
- package/templates/vue/Card/Card.test.js.hbs +0 -10
- package/templates/vue/Card/Card.test.ts.hbs +0 -10
- package/templates/vue/Card/Card.vue.hbs +0 -44
- package/templates/vue/Carousel/Carousel.css.hbs +0 -11
- package/templates/vue/Carousel/Carousel.js.vue.hbs +0 -66
- package/templates/vue/Carousel/Carousel.test.js.hbs +0 -10
- package/templates/vue/Carousel/Carousel.test.ts.hbs +0 -10
- package/templates/vue/Carousel/Carousel.vue.hbs +0 -71
- package/templates/vue/CarouselItem/CarouselItem.css.hbs +0 -11
- package/templates/vue/CarouselItem/CarouselItem.js.vue.hbs +0 -39
- package/templates/vue/CarouselItem/CarouselItem.test.js.hbs +0 -10
- package/templates/vue/CarouselItem/CarouselItem.test.ts.hbs +0 -10
- package/templates/vue/CarouselItem/CarouselItem.vue.hbs +0 -40
- package/templates/vue/Chart/Chart.css.hbs +0 -11
- package/templates/vue/Chart/Chart.js.vue.hbs +0 -52
- package/templates/vue/Chart/Chart.test.js.hbs +0 -10
- package/templates/vue/Chart/Chart.test.ts.hbs +0 -10
- package/templates/vue/Chart/Chart.vue.hbs +0 -53
- package/templates/vue/Checkbox/Checkbox.css.hbs +0 -11
- package/templates/vue/Checkbox/Checkbox.js.vue.hbs +0 -87
- package/templates/vue/Checkbox/Checkbox.test.js.hbs +0 -10
- package/templates/vue/Checkbox/Checkbox.test.ts.hbs +0 -10
- package/templates/vue/Checkbox/Checkbox.vue.hbs +0 -96
- package/templates/vue/ColorPicker/ColorPicker.css.hbs +0 -11
- package/templates/vue/ColorPicker/ColorPicker.js.vue.hbs +0 -110
- package/templates/vue/ColorPicker/ColorPicker.test.js.hbs +0 -10
- package/templates/vue/ColorPicker/ColorPicker.test.ts.hbs +0 -10
- package/templates/vue/ColorPicker/ColorPicker.vue.hbs +0 -123
- package/templates/vue/Combobox/Combobox.css.hbs +0 -11
- package/templates/vue/Combobox/Combobox.js.vue.hbs +0 -120
- package/templates/vue/Combobox/Combobox.test.js.hbs +0 -10
- package/templates/vue/Combobox/Combobox.test.ts.hbs +0 -10
- package/templates/vue/Combobox/Combobox.vue.hbs +0 -136
- package/templates/vue/Comparison/Comparison.css.hbs +0 -11
- package/templates/vue/Comparison/Comparison.js.vue.hbs +0 -55
- package/templates/vue/Comparison/Comparison.test.js.hbs +0 -10
- package/templates/vue/Comparison/Comparison.test.ts.hbs +0 -10
- package/templates/vue/Comparison/Comparison.vue.hbs +0 -60
- package/templates/vue/CopyButton/CopyButton.css.hbs +0 -11
- package/templates/vue/CopyButton/CopyButton.js.vue.hbs +0 -65
- package/templates/vue/CopyButton/CopyButton.test.js.hbs +0 -10
- package/templates/vue/CopyButton/CopyButton.test.ts.hbs +0 -10
- package/templates/vue/CopyButton/CopyButton.vue.hbs +0 -71
- package/templates/vue/Details/Details.css.hbs +0 -11
- package/templates/vue/Details/Details.js.vue.hbs +0 -81
- package/templates/vue/Details/Details.test.js.hbs +0 -10
- package/templates/vue/Details/Details.test.ts.hbs +0 -10
- package/templates/vue/Details/Details.vue.hbs +0 -89
- package/templates/vue/Dialog/Dialog.css.hbs +0 -23
- package/templates/vue/Dialog/Dialog.js.vue.hbs +0 -79
- package/templates/vue/Dialog/Dialog.test.js.hbs +0 -10
- package/templates/vue/Dialog/Dialog.test.ts.hbs +0 -10
- package/templates/vue/Dialog/Dialog.vue.hbs +0 -94
- package/templates/vue/Divider/Divider.css.hbs +0 -11
- package/templates/vue/Divider/Divider.js.vue.hbs +0 -39
- package/templates/vue/Divider/Divider.test.js.hbs +0 -10
- package/templates/vue/Divider/Divider.test.ts.hbs +0 -10
- package/templates/vue/Divider/Divider.vue.hbs +0 -40
- package/templates/vue/DoughnutChart/DoughnutChart.css.hbs +0 -11
- package/templates/vue/DoughnutChart/DoughnutChart.js.vue.hbs +0 -44
- package/templates/vue/DoughnutChart/DoughnutChart.test.js.hbs +0 -10
- package/templates/vue/DoughnutChart/DoughnutChart.test.ts.hbs +0 -10
- package/templates/vue/DoughnutChart/DoughnutChart.vue.hbs +0 -45
- package/templates/vue/Drawer/Drawer.css.hbs +0 -11
- package/templates/vue/Drawer/Drawer.js.vue.hbs +0 -73
- package/templates/vue/Drawer/Drawer.test.js.hbs +0 -10
- package/templates/vue/Drawer/Drawer.test.ts.hbs +0 -10
- package/templates/vue/Drawer/Drawer.vue.hbs +0 -81
- package/templates/vue/Dropdown/Dropdown.css.hbs +0 -11
- package/templates/vue/Dropdown/Dropdown.js.vue.hbs +0 -84
- package/templates/vue/Dropdown/Dropdown.test.js.hbs +0 -10
- package/templates/vue/Dropdown/Dropdown.test.ts.hbs +0 -10
- package/templates/vue/Dropdown/Dropdown.vue.hbs +0 -98
- package/templates/vue/DropdownItem/DropdownItem.css.hbs +0 -11
- package/templates/vue/DropdownItem/DropdownItem.js.vue.hbs +0 -65
- package/templates/vue/DropdownItem/DropdownItem.test.js.hbs +0 -10
- package/templates/vue/DropdownItem/DropdownItem.test.ts.hbs +0 -10
- package/templates/vue/DropdownItem/DropdownItem.vue.hbs +0 -71
- package/templates/vue/FileInput/FileInput.css.hbs +0 -19
- package/templates/vue/FileInput/FileInput.js.vue.hbs +0 -78
- package/templates/vue/FileInput/FileInput.test.js.hbs +0 -10
- package/templates/vue/FileInput/FileInput.test.ts.hbs +0 -10
- package/templates/vue/FileInput/FileInput.vue.hbs +0 -88
- package/templates/vue/FormatBytes/FormatBytes.js.vue.hbs +0 -42
- package/templates/vue/FormatBytes/FormatBytes.test.js.hbs +0 -10
- package/templates/vue/FormatBytes/FormatBytes.test.ts.hbs +0 -10
- package/templates/vue/FormatBytes/FormatBytes.vue.hbs +0 -43
- package/templates/vue/FormatDate/FormatDate.js.vue.hbs +0 -51
- package/templates/vue/FormatDate/FormatDate.test.js.hbs +0 -10
- package/templates/vue/FormatDate/FormatDate.test.ts.hbs +0 -10
- package/templates/vue/FormatDate/FormatDate.vue.hbs +0 -52
- package/templates/vue/FormatNumber/FormatNumber.js.vue.hbs +0 -49
- package/templates/vue/FormatNumber/FormatNumber.test.js.hbs +0 -10
- package/templates/vue/FormatNumber/FormatNumber.test.ts.hbs +0 -10
- package/templates/vue/FormatNumber/FormatNumber.vue.hbs +0 -50
- package/templates/vue/Icon/Icon.css.hbs +0 -11
- package/templates/vue/Icon/Icon.js.vue.hbs +0 -68
- package/templates/vue/Icon/Icon.test.js.hbs +0 -10
- package/templates/vue/Icon/Icon.test.ts.hbs +0 -10
- package/templates/vue/Icon/Icon.vue.hbs +0 -74
- package/templates/vue/Include/Include.js.vue.hbs +0 -60
- package/templates/vue/Include/Include.test.js.hbs +0 -10
- package/templates/vue/Include/Include.test.ts.hbs +0 -10
- package/templates/vue/Include/Include.vue.hbs +0 -66
- package/templates/vue/Input/Input.css.hbs +0 -24
- package/templates/vue/Input/Input.js.vue.hbs +0 -115
- package/templates/vue/Input/Input.test.js.hbs +0 -10
- package/templates/vue/Input/Input.test.ts.hbs +0 -10
- package/templates/vue/Input/Input.vue.hbs +0 -125
- package/templates/vue/IntersectionObserver/IntersectionObserver.js.vue.hbs +0 -59
- package/templates/vue/IntersectionObserver/IntersectionObserver.test.js.hbs +0 -10
- package/templates/vue/IntersectionObserver/IntersectionObserver.test.ts.hbs +0 -10
- package/templates/vue/IntersectionObserver/IntersectionObserver.vue.hbs +0 -64
- package/templates/vue/LineChart/LineChart.css.hbs +0 -11
- package/templates/vue/LineChart/LineChart.js.vue.hbs +0 -51
- package/templates/vue/LineChart/LineChart.test.js.hbs +0 -10
- package/templates/vue/LineChart/LineChart.test.ts.hbs +0 -10
- package/templates/vue/LineChart/LineChart.vue.hbs +0 -52
- package/templates/vue/Markdown/Markdown.css.hbs +0 -10
- package/templates/vue/Markdown/Markdown.js.vue.hbs +0 -40
- package/templates/vue/Markdown/Markdown.test.js.hbs +0 -10
- package/templates/vue/Markdown/Markdown.test.ts.hbs +0 -10
- package/templates/vue/Markdown/Markdown.vue.hbs +0 -49
- package/templates/vue/MutationObserver/MutationObserver.js.vue.hbs +0 -61
- package/templates/vue/MutationObserver/MutationObserver.test.js.hbs +0 -10
- package/templates/vue/MutationObserver/MutationObserver.test.ts.hbs +0 -10
- package/templates/vue/MutationObserver/MutationObserver.vue.hbs +0 -66
- package/templates/vue/NumberInput/NumberInput.css.hbs +0 -19
- package/templates/vue/NumberInput/NumberInput.js.vue.hbs +0 -93
- package/templates/vue/NumberInput/NumberInput.test.js.hbs +0 -10
- package/templates/vue/NumberInput/NumberInput.test.ts.hbs +0 -10
- package/templates/vue/NumberInput/NumberInput.vue.hbs +0 -102
- package/templates/vue/Option/Option.css.hbs +0 -11
- package/templates/vue/Option/Option.js.vue.hbs +0 -42
- package/templates/vue/Option/Option.test.js.hbs +0 -10
- package/templates/vue/Option/Option.test.ts.hbs +0 -10
- package/templates/vue/Option/Option.vue.hbs +0 -43
- package/templates/vue/Page/Page.css.hbs +0 -11
- package/templates/vue/Page/Page.js.vue.hbs +0 -47
- package/templates/vue/Page/Page.test.js.hbs +0 -10
- package/templates/vue/Page/Page.test.ts.hbs +0 -10
- package/templates/vue/Page/Page.vue.hbs +0 -48
- package/templates/vue/PieChart/PieChart.css.hbs +0 -11
- package/templates/vue/PieChart/PieChart.js.vue.hbs +0 -44
- package/templates/vue/PieChart/PieChart.test.js.hbs +0 -10
- package/templates/vue/PieChart/PieChart.test.ts.hbs +0 -10
- package/templates/vue/PieChart/PieChart.vue.hbs +0 -45
- package/templates/vue/PolarAreaChart/PolarAreaChart.css.hbs +0 -11
- package/templates/vue/PolarAreaChart/PolarAreaChart.js.vue.hbs +0 -44
- package/templates/vue/PolarAreaChart/PolarAreaChart.test.js.hbs +0 -10
- package/templates/vue/PolarAreaChart/PolarAreaChart.test.ts.hbs +0 -10
- package/templates/vue/PolarAreaChart/PolarAreaChart.vue.hbs +0 -45
- package/templates/vue/Popover/Popover.css.hbs +0 -11
- package/templates/vue/Popover/Popover.js.vue.hbs +0 -84
- package/templates/vue/Popover/Popover.test.js.hbs +0 -10
- package/templates/vue/Popover/Popover.test.ts.hbs +0 -10
- package/templates/vue/Popover/Popover.vue.hbs +0 -92
- package/templates/vue/Popup/Popup.css.hbs +0 -11
- package/templates/vue/Popup/Popup.js.vue.hbs +0 -73
- package/templates/vue/Popup/Popup.test.js.hbs +0 -10
- package/templates/vue/Popup/Popup.test.ts.hbs +0 -10
- package/templates/vue/Popup/Popup.vue.hbs +0 -78
- package/templates/vue/ProgressBar/ProgressBar.css.hbs +0 -11
- package/templates/vue/ProgressBar/ProgressBar.js.vue.hbs +0 -41
- package/templates/vue/ProgressBar/ProgressBar.test.js.hbs +0 -10
- package/templates/vue/ProgressBar/ProgressBar.test.ts.hbs +0 -10
- package/templates/vue/ProgressBar/ProgressBar.vue.hbs +0 -42
- package/templates/vue/ProgressRing/ProgressRing.css.hbs +0 -11
- package/templates/vue/ProgressRing/ProgressRing.js.vue.hbs +0 -40
- package/templates/vue/ProgressRing/ProgressRing.test.js.hbs +0 -10
- package/templates/vue/ProgressRing/ProgressRing.test.ts.hbs +0 -10
- package/templates/vue/ProgressRing/ProgressRing.vue.hbs +0 -41
- package/templates/vue/QrCode/QrCode.css.hbs +0 -11
- package/templates/vue/QrCode/QrCode.js.vue.hbs +0 -45
- package/templates/vue/QrCode/QrCode.test.js.hbs +0 -10
- package/templates/vue/QrCode/QrCode.test.ts.hbs +0 -10
- package/templates/vue/QrCode/QrCode.vue.hbs +0 -46
- package/templates/vue/RadarChart/RadarChart.css.hbs +0 -11
- package/templates/vue/RadarChart/RadarChart.js.vue.hbs +0 -48
- package/templates/vue/RadarChart/RadarChart.test.js.hbs +0 -10
- package/templates/vue/RadarChart/RadarChart.test.ts.hbs +0 -10
- package/templates/vue/RadarChart/RadarChart.vue.hbs +0 -49
- package/templates/vue/Radio/Radio.css.hbs +0 -11
- package/templates/vue/Radio/Radio.js.vue.hbs +0 -64
- package/templates/vue/Radio/Radio.test.js.hbs +0 -10
- package/templates/vue/Radio/Radio.test.ts.hbs +0 -10
- package/templates/vue/Radio/Radio.vue.hbs +0 -70
- package/templates/vue/RadioGroup/RadioGroup.css.hbs +0 -11
- package/templates/vue/RadioGroup/RadioGroup.js.vue.hbs +0 -81
- package/templates/vue/RadioGroup/RadioGroup.test.js.hbs +0 -10
- package/templates/vue/RadioGroup/RadioGroup.test.ts.hbs +0 -10
- package/templates/vue/RadioGroup/RadioGroup.vue.hbs +0 -88
- package/templates/vue/Rating/Rating.css.hbs +0 -11
- package/templates/vue/Rating/Rating.js.vue.hbs +0 -78
- package/templates/vue/Rating/Rating.test.js.hbs +0 -10
- package/templates/vue/Rating/Rating.test.ts.hbs +0 -10
- package/templates/vue/Rating/Rating.vue.hbs +0 -85
- package/templates/vue/RelativeTime/RelativeTime.js.vue.hbs +0 -43
- package/templates/vue/RelativeTime/RelativeTime.test.js.hbs +0 -10
- package/templates/vue/RelativeTime/RelativeTime.test.ts.hbs +0 -10
- package/templates/vue/RelativeTime/RelativeTime.vue.hbs +0 -44
- package/templates/vue/ResizeObserver/ResizeObserver.js.vue.hbs +0 -55
- package/templates/vue/ResizeObserver/ResizeObserver.test.js.hbs +0 -10
- package/templates/vue/ResizeObserver/ResizeObserver.test.ts.hbs +0 -10
- package/templates/vue/ResizeObserver/ResizeObserver.vue.hbs +0 -60
- package/templates/vue/ScatterChart/ScatterChart.css.hbs +0 -11
- package/templates/vue/ScatterChart/ScatterChart.js.vue.hbs +0 -49
- package/templates/vue/ScatterChart/ScatterChart.test.js.hbs +0 -10
- package/templates/vue/ScatterChart/ScatterChart.test.ts.hbs +0 -10
- package/templates/vue/ScatterChart/ScatterChart.vue.hbs +0 -50
- package/templates/vue/Scroller/Scroller.css.hbs +0 -11
- package/templates/vue/Scroller/Scroller.js.vue.hbs +0 -42
- package/templates/vue/Scroller/Scroller.test.js.hbs +0 -10
- package/templates/vue/Scroller/Scroller.test.ts.hbs +0 -10
- package/templates/vue/Scroller/Scroller.vue.hbs +0 -43
- package/templates/vue/Select/Select.css.hbs +0 -11
- package/templates/vue/Select/Select.js.vue.hbs +0 -113
- package/templates/vue/Select/Select.test.js.hbs +0 -10
- package/templates/vue/Select/Select.test.ts.hbs +0 -10
- package/templates/vue/Select/Select.vue.hbs +0 -127
- package/templates/vue/Skeleton/Skeleton.css.hbs +0 -11
- package/templates/vue/Skeleton/Skeleton.js.vue.hbs +0 -39
- package/templates/vue/Skeleton/Skeleton.test.js.hbs +0 -10
- package/templates/vue/Skeleton/Skeleton.test.ts.hbs +0 -10
- package/templates/vue/Skeleton/Skeleton.vue.hbs +0 -40
- package/templates/vue/Slider/Slider.css.hbs +0 -11
- package/templates/vue/Slider/Slider.js.vue.hbs +0 -95
- package/templates/vue/Slider/Slider.test.js.hbs +0 -10
- package/templates/vue/Slider/Slider.test.ts.hbs +0 -10
- package/templates/vue/Slider/Slider.vue.hbs +0 -104
- package/templates/vue/Sparkline/Sparkline.css.hbs +0 -14
- package/templates/vue/Sparkline/Sparkline.js.vue.hbs +0 -43
- package/templates/vue/Sparkline/Sparkline.test.js.hbs +0 -10
- package/templates/vue/Sparkline/Sparkline.test.ts.hbs +0 -10
- package/templates/vue/Sparkline/Sparkline.vue.hbs +0 -44
- package/templates/vue/Spinner/Spinner.css.hbs +0 -11
- package/templates/vue/Spinner/Spinner.js.vue.hbs +0 -39
- package/templates/vue/Spinner/Spinner.test.js.hbs +0 -10
- package/templates/vue/Spinner/Spinner.test.ts.hbs +0 -10
- package/templates/vue/Spinner/Spinner.vue.hbs +0 -40
- package/templates/vue/SplitPanel/SplitPanel.css.hbs +0 -11
- package/templates/vue/SplitPanel/SplitPanel.js.vue.hbs +0 -61
- package/templates/vue/SplitPanel/SplitPanel.test.js.hbs +0 -10
- package/templates/vue/SplitPanel/SplitPanel.test.ts.hbs +0 -10
- package/templates/vue/SplitPanel/SplitPanel.vue.hbs +0 -66
- package/templates/vue/Switch/Switch.css.hbs +0 -11
- package/templates/vue/Switch/Switch.js.vue.hbs +0 -86
- package/templates/vue/Switch/Switch.test.js.hbs +0 -10
- package/templates/vue/Switch/Switch.test.ts.hbs +0 -10
- package/templates/vue/Switch/Switch.vue.hbs +0 -95
- package/templates/vue/Tab/Tab.css.hbs +0 -11
- package/templates/vue/Tab/Tab.js.vue.hbs +0 -40
- package/templates/vue/Tab/Tab.test.js.hbs +0 -10
- package/templates/vue/Tab/Tab.test.ts.hbs +0 -10
- package/templates/vue/Tab/Tab.vue.hbs +0 -41
- package/templates/vue/TabGroup/TabGroup.css.hbs +0 -11
- package/templates/vue/TabGroup/TabGroup.js.vue.hbs +0 -61
- package/templates/vue/TabGroup/TabGroup.test.js.hbs +0 -10
- package/templates/vue/TabGroup/TabGroup.test.ts.hbs +0 -10
- package/templates/vue/TabGroup/TabGroup.vue.hbs +0 -67
- package/templates/vue/TabPanel/TabPanel.css.hbs +0 -11
- package/templates/vue/TabPanel/TabPanel.js.vue.hbs +0 -40
- package/templates/vue/TabPanel/TabPanel.test.js.hbs +0 -10
- package/templates/vue/TabPanel/TabPanel.test.ts.hbs +0 -10
- package/templates/vue/TabPanel/TabPanel.vue.hbs +0 -41
- package/templates/vue/Tag/Tag.css.hbs +0 -11
- package/templates/vue/Tag/Tag.js.vue.hbs +0 -59
- package/templates/vue/Tag/Tag.test.js.hbs +0 -10
- package/templates/vue/Tag/Tag.test.ts.hbs +0 -10
- package/templates/vue/Tag/Tag.vue.hbs +0 -64
- package/templates/vue/Textarea/Textarea.css.hbs +0 -11
- package/templates/vue/Textarea/Textarea.js.vue.hbs +0 -98
- package/templates/vue/Textarea/Textarea.test.js.hbs +0 -10
- package/templates/vue/Textarea/Textarea.test.ts.hbs +0 -10
- package/templates/vue/Textarea/Textarea.vue.hbs +0 -107
- package/templates/vue/Toast/Toast.css.hbs +0 -11
- package/templates/vue/Toast/Toast.js.vue.hbs +0 -40
- package/templates/vue/Toast/Toast.test.js.hbs +0 -10
- package/templates/vue/Toast/Toast.test.ts.hbs +0 -10
- package/templates/vue/Toast/Toast.vue.hbs +0 -41
- package/templates/vue/ToastItem/ToastItem.css.hbs +0 -11
- package/templates/vue/ToastItem/ToastItem.js.vue.hbs +0 -67
- package/templates/vue/ToastItem/ToastItem.test.js.hbs +0 -10
- package/templates/vue/ToastItem/ToastItem.test.ts.hbs +0 -10
- package/templates/vue/ToastItem/ToastItem.vue.hbs +0 -75
- package/templates/vue/Tooltip/Tooltip.css.hbs +0 -11
- package/templates/vue/Tooltip/Tooltip.js.vue.hbs +0 -85
- package/templates/vue/Tooltip/Tooltip.test.js.hbs +0 -10
- package/templates/vue/Tooltip/Tooltip.test.ts.hbs +0 -10
- package/templates/vue/Tooltip/Tooltip.vue.hbs +0 -93
- package/templates/vue/Tree/Tree.css.hbs +0 -11
- package/templates/vue/Tree/Tree.js.vue.hbs +0 -55
- package/templates/vue/Tree/Tree.test.js.hbs +0 -10
- package/templates/vue/Tree/Tree.test.ts.hbs +0 -10
- package/templates/vue/Tree/Tree.vue.hbs +0 -60
- package/templates/vue/TreeItem/TreeItem.css.hbs +0 -11
- package/templates/vue/TreeItem/TreeItem.js.vue.hbs +0 -77
- package/templates/vue/TreeItem/TreeItem.test.js.hbs +0 -10
- package/templates/vue/TreeItem/TreeItem.test.ts.hbs +0 -10
- package/templates/vue/TreeItem/TreeItem.vue.hbs +0 -87
- package/templates/vue/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
- package/templates/vue/ZoomableFrame/ZoomableFrame.js.vue.hbs +0 -69
- package/templates/vue/ZoomableFrame/ZoomableFrame.test.js.hbs +0 -10
- package/templates/vue/ZoomableFrame/ZoomableFrame.test.ts.hbs +0 -10
- package/templates/vue/ZoomableFrame/ZoomableFrame.vue.hbs +0 -75
- /package/dist/{tier-4FZLELBX.js.map → project-config-D3FYPYTX.js.map} +0 -0
- /package/{dist/templates/angular/Animation/animation.component.css.hbs → templates/angular/Animation/animation.component.css} +0 -0
- /package/{dist/templates/angular/FormatBytes/format-bytes.component.css.hbs → templates/angular/FormatBytes/format-bytes.component.css} +0 -0
- /package/{dist/templates/angular/FormatDate/format-date.component.css.hbs → templates/angular/FormatDate/format-date.component.css} +0 -0
- /package/{dist/templates/angular/FormatNumber/format-number.component.css.hbs → templates/angular/FormatNumber/format-number.component.css} +0 -0
- /package/{dist/templates/angular/Include/include.component.css.hbs → templates/angular/Include/include.component.css} +0 -0
- /package/{dist/templates/angular/IntersectionObserver/intersection-observer.component.css.hbs → templates/angular/IntersectionObserver/intersection-observer.component.css} +0 -0
- /package/{dist/templates/angular/Markdown/markdown.component.css.hbs → templates/angular/Markdown/markdown.component.css} +0 -0
- /package/{dist/templates/angular/MutationObserver/mutation-observer.component.css.hbs → templates/angular/MutationObserver/mutation-observer.component.css} +0 -0
- /package/{dist/templates/angular/RelativeTime/relative-time.component.css.hbs → templates/angular/RelativeTime/relative-time.component.css} +0 -0
- /package/{dist/templates/angular/ResizeObserver/resize-observer.component.css.hbs → templates/angular/ResizeObserver/resize-observer.component.css} +0 -0
- /package/{dist/templates/react/AnimatedImage/AnimatedImage.test.jsx.hbs → templates/react/AnimatedImage/AnimatedImage.test.jsx} +0 -0
- /package/{dist/templates/vue/Animation/Animation.css.hbs → templates/react/Animation/Animation.css} +0 -0
- /package/{dist/templates/react/Animation/Animation.test.jsx.hbs → templates/react/Animation/Animation.test.jsx} +0 -0
- /package/{dist/templates/react/Avatar/Avatar.test.jsx.hbs → templates/react/Avatar/Avatar.test.jsx} +0 -0
- /package/{dist/templates/react/Badge/Badge.test.jsx.hbs → templates/react/Badge/Badge.test.jsx} +0 -0
- /package/{dist/templates/react/BarChart/BarChart.test.jsx.hbs → templates/react/BarChart/BarChart.test.jsx} +0 -0
- /package/{dist/templates/react/Breadcrumb/Breadcrumb.test.jsx.hbs → templates/react/Breadcrumb/Breadcrumb.test.jsx} +0 -0
- /package/{dist/templates/react/BreadcrumbItem/BreadcrumbItem.test.jsx.hbs → templates/react/BreadcrumbItem/BreadcrumbItem.test.jsx} +0 -0
- /package/{dist/templates/react/BubbleChart/BubbleChart.test.jsx.hbs → templates/react/BubbleChart/BubbleChart.test.jsx} +0 -0
- /package/{dist/templates/react/Button/Button.test.jsx.hbs → templates/react/Button/Button.test.jsx} +0 -0
- /package/{dist/templates/react/ButtonGroup/ButtonGroup.test.jsx.hbs → templates/react/ButtonGroup/ButtonGroup.test.jsx} +0 -0
- /package/{dist/templates/react/Card/Card.test.jsx.hbs → templates/react/Card/Card.test.jsx} +0 -0
- /package/{dist/templates/react/Carousel/Carousel.test.jsx.hbs → templates/react/Carousel/Carousel.test.jsx} +0 -0
- /package/{dist/templates/react/CarouselItem/CarouselItem.test.jsx.hbs → templates/react/CarouselItem/CarouselItem.test.jsx} +0 -0
- /package/{dist/templates/react/Chart/Chart.test.jsx.hbs → templates/react/Chart/Chart.test.jsx} +0 -0
- /package/{dist/templates/react/Checkbox/Checkbox.test.jsx.hbs → templates/react/Checkbox/Checkbox.test.jsx} +0 -0
- /package/{dist/templates/react/ColorPicker/ColorPicker.test.jsx.hbs → templates/react/ColorPicker/ColorPicker.test.jsx} +0 -0
- /package/{dist/templates/react/Combobox/Combobox.test.jsx.hbs → templates/react/Combobox/Combobox.test.jsx} +0 -0
- /package/{dist/templates/react/Comparison/Comparison.test.jsx.hbs → templates/react/Comparison/Comparison.test.jsx} +0 -0
- /package/{dist/templates/react/DoughnutChart/DoughnutChart.test.jsx.hbs → templates/react/DoughnutChart/DoughnutChart.test.jsx} +0 -0
- /package/{dist/templates/react/Dropdown/Dropdown.test.jsx.hbs → templates/react/Dropdown/Dropdown.test.jsx} +0 -0
- /package/{dist/templates/react/DropdownItem/DropdownItem.test.jsx.hbs → templates/react/DropdownItem/DropdownItem.test.jsx} +0 -0
- /package/{dist/templates/react/FileInput/FileInput.test.jsx.hbs → templates/react/FileInput/FileInput.test.jsx} +0 -0
- /package/{dist/templates/vue/FormatBytes/FormatBytes.css.hbs → templates/react/FormatBytes/FormatBytes.css} +0 -0
- /package/{dist/templates/vue/FormatDate/FormatDate.css.hbs → templates/react/FormatDate/FormatDate.css} +0 -0
- /package/{dist/templates/react/FormatDate/FormatDate.test.jsx.hbs → templates/react/FormatDate/FormatDate.test.jsx} +0 -0
- /package/{dist/templates/vue/FormatNumber/FormatNumber.css.hbs → templates/react/FormatNumber/FormatNumber.css} +0 -0
- /package/{dist/templates/vue/Include/Include.css.hbs → templates/react/Include/Include.css} +0 -0
- /package/{dist/templates/react/Input/Input.test.jsx.hbs → templates/react/Input/Input.test.jsx} +0 -0
- /package/{dist/templates/vue/IntersectionObserver/IntersectionObserver.css.hbs → templates/react/IntersectionObserver/IntersectionObserver.css} +0 -0
- /package/{dist/templates/react/LineChart/LineChart.test.jsx.hbs → templates/react/LineChart/LineChart.test.jsx} +0 -0
- /package/{dist/templates/react/Markdown/Markdown.test.jsx.hbs → templates/react/Markdown/Markdown.test.jsx} +0 -0
- /package/{dist/templates/vue/MutationObserver/MutationObserver.css.hbs → templates/react/MutationObserver/MutationObserver.css} +0 -0
- /package/{dist/templates/react/MutationObserver/MutationObserver.test.jsx.hbs → templates/react/MutationObserver/MutationObserver.test.jsx} +0 -0
- /package/{dist/templates/react/NumberInput/NumberInput.test.jsx.hbs → templates/react/NumberInput/NumberInput.test.jsx} +0 -0
- /package/{dist/templates/react/Option/Option.test.jsx.hbs → templates/react/Option/Option.test.jsx} +0 -0
- /package/{dist/templates/react/Page/Page.test.jsx.hbs → templates/react/Page/Page.test.jsx} +0 -0
- /package/{dist/templates/react/PieChart/PieChart.test.jsx.hbs → templates/react/PieChart/PieChart.test.jsx} +0 -0
- /package/{dist/templates/react/PolarAreaChart/PolarAreaChart.test.jsx.hbs → templates/react/PolarAreaChart/PolarAreaChart.test.jsx} +0 -0
- /package/{dist/templates/react/Popover/Popover.test.jsx.hbs → templates/react/Popover/Popover.test.jsx} +0 -0
- /package/{dist/templates/react/Popup/Popup.test.jsx.hbs → templates/react/Popup/Popup.test.jsx} +0 -0
- /package/{dist/templates/react/QrCode/QrCode.test.jsx.hbs → templates/react/QrCode/QrCode.test.jsx} +0 -0
- /package/{dist/templates/react/RadarChart/RadarChart.test.jsx.hbs → templates/react/RadarChart/RadarChart.test.jsx} +0 -0
- /package/{dist/templates/react/Radio/Radio.test.jsx.hbs → templates/react/Radio/Radio.test.jsx} +0 -0
- /package/{dist/templates/react/RadioGroup/RadioGroup.test.jsx.hbs → templates/react/RadioGroup/RadioGroup.test.jsx} +0 -0
- /package/{dist/templates/react/Rating/Rating.test.jsx.hbs → templates/react/Rating/Rating.test.jsx} +0 -0
- /package/{dist/templates/vue/RelativeTime/RelativeTime.css.hbs → templates/react/RelativeTime/RelativeTime.css} +0 -0
- /package/{dist/templates/react/RelativeTime/RelativeTime.test.jsx.hbs → templates/react/RelativeTime/RelativeTime.test.jsx} +0 -0
- /package/{dist/templates/vue/ResizeObserver/ResizeObserver.css.hbs → templates/react/ResizeObserver/ResizeObserver.css} +0 -0
- /package/{dist/templates/react/ResizeObserver/ResizeObserver.test.jsx.hbs → templates/react/ResizeObserver/ResizeObserver.test.jsx} +0 -0
- /package/{dist/templates/react/ScatterChart/ScatterChart.test.jsx.hbs → templates/react/ScatterChart/ScatterChart.test.jsx} +0 -0
- /package/{dist/templates/react/Scroller/Scroller.test.jsx.hbs → templates/react/Scroller/Scroller.test.jsx} +0 -0
- /package/{dist/templates/react/Select/Select.test.jsx.hbs → templates/react/Select/Select.test.jsx} +0 -0
- /package/{dist/templates/react/Skeleton/Skeleton.test.jsx.hbs → templates/react/Skeleton/Skeleton.test.jsx} +0 -0
- /package/{dist/templates/react/Slider/Slider.test.jsx.hbs → templates/react/Slider/Slider.test.jsx} +0 -0
- /package/{dist/templates/react/Spinner/Spinner.test.jsx.hbs → templates/react/Spinner/Spinner.test.jsx} +0 -0
- /package/{dist/templates/react/SplitPanel/SplitPanel.test.jsx.hbs → templates/react/SplitPanel/SplitPanel.test.jsx} +0 -0
- /package/{dist/templates/react/Switch/Switch.test.jsx.hbs → templates/react/Switch/Switch.test.jsx} +0 -0
- /package/{dist/templates/react/Tab/Tab.test.jsx.hbs → templates/react/Tab/Tab.test.jsx} +0 -0
- /package/{dist/templates/react/TabGroup/TabGroup.test.jsx.hbs → templates/react/TabGroup/TabGroup.test.jsx} +0 -0
- /package/{dist/templates/react/TabPanel/TabPanel.test.jsx.hbs → templates/react/TabPanel/TabPanel.test.jsx} +0 -0
- /package/{dist/templates/react/Tag/Tag.test.jsx.hbs → templates/react/Tag/Tag.test.jsx} +0 -0
- /package/{dist/templates/react/Textarea/Textarea.test.jsx.hbs → templates/react/Textarea/Textarea.test.jsx} +0 -0
- /package/{dist/templates/react/Toast/Toast.test.jsx.hbs → templates/react/Toast/Toast.test.jsx} +0 -0
- /package/{dist/templates/react/Tooltip/Tooltip.test.jsx.hbs → templates/react/Tooltip/Tooltip.test.jsx} +0 -0
- /package/{dist/templates/react/Tree/Tree.test.jsx.hbs → templates/react/Tree/Tree.test.jsx} +0 -0
- /package/{dist/templates/react/TreeItem/TreeItem.test.jsx.hbs → templates/react/TreeItem/TreeItem.test.jsx} +0 -0
- /package/{dist/templates/react/ZoomableFrame/ZoomableFrame.test.jsx.hbs → templates/react/ZoomableFrame/ZoomableFrame.test.jsx} +0 -0
- /package/templates/vue/Animation/{Animation.css.hbs → Animation.css} +0 -0
- /package/templates/vue/FormatBytes/{FormatBytes.css.hbs → FormatBytes.css} +0 -0
- /package/templates/vue/FormatDate/{FormatDate.css.hbs → FormatDate.css} +0 -0
- /package/templates/vue/FormatNumber/{FormatNumber.css.hbs → FormatNumber.css} +0 -0
- /package/templates/vue/Include/{Include.css.hbs → Include.css} +0 -0
- /package/templates/vue/IntersectionObserver/{IntersectionObserver.css.hbs → IntersectionObserver.css} +0 -0
- /package/templates/vue/MutationObserver/{MutationObserver.css.hbs → MutationObserver.css} +0 -0
- /package/templates/vue/RelativeTime/{RelativeTime.css.hbs → RelativeTime.css} +0 -0
- /package/templates/vue/ResizeObserver/{ResizeObserver.css.hbs → ResizeObserver.css} +0 -0
|
@@ -1,244 +0,0 @@
|
|
|
1
|
-
import { forwardRef, useRef, useImperativeHandle, useEffect, type HTMLAttributes } from 'react';
|
|
2
|
-
import clsx from 'clsx';
|
|
3
|
-
import '{{{importPath}}}';
|
|
4
|
-
import type WaElement from '{{{importPath}}}';
|
|
5
|
-
import './Select.css';
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* Selects allow you to choose items from a menu of predefined options
|
|
9
|
-
*
|
|
10
|
-
* @example
|
|
11
|
-
* ```tsx
|
|
12
|
-
* // Basic usage
|
|
13
|
-
* <Select />
|
|
14
|
-
*
|
|
15
|
-
* // With event handlers
|
|
16
|
-
* <Select
|
|
17
|
-
* onInput={(e) => console.log(e)} />
|
|
18
|
-
*
|
|
19
|
-
* // With ref methods
|
|
20
|
-
* const ref = useRef<SelectRef>(null);
|
|
21
|
-
* <button onClick={() => ref.current?.show()}>Call Method</button>
|
|
22
|
-
* <Select ref={ref} />
|
|
23
|
-
* ```
|
|
24
|
-
*/
|
|
25
|
-
export interface SelectProps extends Omit<HTMLAttributes<HTMLElement>, 'onInput' | 'onChange' | 'onFocus' | 'onBlur' | 'onClear' | 'onShow' | 'onAfterShow' | 'onHide' | 'onAfterHide' | 'onInvalid' | 'dir'> {
|
|
26
|
-
|
|
27
|
-
/** Form field name */
|
|
28
|
-
name?: string;
|
|
29
|
-
|
|
30
|
-
/** Selected value(s) */
|
|
31
|
-
value?: string;
|
|
32
|
-
|
|
33
|
-
/** Visual appearance */
|
|
34
|
-
appearance?: 'filled' | 'outlined' | 'filled-outlined';
|
|
35
|
-
|
|
36
|
-
/** Select size */
|
|
37
|
-
size?: 'small' | 'medium' | 'large';
|
|
38
|
-
|
|
39
|
-
/** Placeholder text */
|
|
40
|
-
placeholder?: string;
|
|
41
|
-
|
|
42
|
-
/** Allows multiple selections */
|
|
43
|
-
multiple?: boolean;
|
|
44
|
-
|
|
45
|
-
/** Max visible tags (multiple) */
|
|
46
|
-
'max-options-visible'?: number;
|
|
47
|
-
|
|
48
|
-
/** Disables the select */
|
|
49
|
-
disabled?: boolean;
|
|
50
|
-
|
|
51
|
-
/** Shows clear button */
|
|
52
|
-
'with-clear'?: boolean;
|
|
53
|
-
|
|
54
|
-
/** Whether listbox is open */
|
|
55
|
-
open?: boolean;
|
|
56
|
-
|
|
57
|
-
/** Hoists to body */
|
|
58
|
-
hoist?: boolean;
|
|
59
|
-
|
|
60
|
-
/** Listbox placement */
|
|
61
|
-
placement?: 'top' | 'bottom';
|
|
62
|
-
|
|
63
|
-
/** Rounded edges */
|
|
64
|
-
pill?: boolean;
|
|
65
|
-
|
|
66
|
-
/** Label text */
|
|
67
|
-
label?: string;
|
|
68
|
-
|
|
69
|
-
/** Hint text */
|
|
70
|
-
hint?: string;
|
|
71
|
-
|
|
72
|
-
/** Makes selection required */
|
|
73
|
-
required?: boolean;
|
|
74
|
-
|
|
75
|
-
/** Shows invalid/error state */
|
|
76
|
-
invalid?: boolean;
|
|
77
|
-
|
|
78
|
-
/** Help text below the control */
|
|
79
|
-
'help-text'?: string;
|
|
80
|
-
|
|
81
|
-
/** Emitted when the control receives input. */
|
|
82
|
-
onInput?: (event: CustomEvent) => void;
|
|
83
|
-
|
|
84
|
-
/** Emitted when the control's value changes. */
|
|
85
|
-
onChange?: (event: CustomEvent) => void;
|
|
86
|
-
|
|
87
|
-
/** Emitted when the control gains focus. */
|
|
88
|
-
onFocus?: (event: FocusEvent) => void;
|
|
89
|
-
|
|
90
|
-
/** Emitted when the control loses focus. */
|
|
91
|
-
onBlur?: (event: FocusEvent) => void;
|
|
92
|
-
|
|
93
|
-
/** Emitted when the control's value is cleared. */
|
|
94
|
-
onClear?: (event: CustomEvent) => void;
|
|
95
|
-
|
|
96
|
-
/** Emitted when the select's menu opens. */
|
|
97
|
-
onShow?: (event: CustomEvent) => void;
|
|
98
|
-
|
|
99
|
-
/** Emitted after the select's menu opens and all animations are complete. */
|
|
100
|
-
onAfterShow?: (event: CustomEvent) => void;
|
|
101
|
-
|
|
102
|
-
/** Emitted when the select's menu closes. */
|
|
103
|
-
onHide?: (event: CustomEvent) => void;
|
|
104
|
-
|
|
105
|
-
/** Emitted after the select's menu closes and all animations are complete. */
|
|
106
|
-
onAfterHide?: (event: CustomEvent) => void;
|
|
107
|
-
|
|
108
|
-
/** Emitted when the form control has been checked for validity and its constraints aren't satisfied. */
|
|
109
|
-
onInvalid?: (event: CustomEvent) => void;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
export interface SelectRef {
|
|
113
|
-
|
|
114
|
-
/** Shows the listbox. */
|
|
115
|
-
show: () => void;
|
|
116
|
-
|
|
117
|
-
/** Hides the listbox. */
|
|
118
|
-
hide: () => void;
|
|
119
|
-
|
|
120
|
-
/** Sets focus on the control. */
|
|
121
|
-
focus: (options: FocusOptions) => void;
|
|
122
|
-
|
|
123
|
-
/** Removes focus from the control. */
|
|
124
|
-
blur: () => void;
|
|
125
|
-
/** Reference to the underlying element */
|
|
126
|
-
element: WaElement | null;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
export const Select = forwardRef<SelectRef, SelectProps>(
|
|
130
|
-
({ children, className, onInput, onChange, onFocus, onBlur, onClear, onShow, onAfterShow, onHide, onAfterHide, onInvalid, ...props }, ref) => {
|
|
131
|
-
const selectRef = useRef<WaElement | null>(null);
|
|
132
|
-
|
|
133
|
-
useImperativeHandle(
|
|
134
|
-
ref,
|
|
135
|
-
() => ({
|
|
136
|
-
show: () => {
|
|
137
|
-
if (selectRef.current && typeof selectRef.current.show === 'function') {
|
|
138
|
-
selectRef.current.show();
|
|
139
|
-
}
|
|
140
|
-
},
|
|
141
|
-
hide: () => {
|
|
142
|
-
if (selectRef.current && typeof selectRef.current.hide === 'function') {
|
|
143
|
-
selectRef.current.hide();
|
|
144
|
-
}
|
|
145
|
-
},
|
|
146
|
-
focus: (options: FocusOptions) => {
|
|
147
|
-
if (selectRef.current && typeof selectRef.current.focus === 'function') {
|
|
148
|
-
selectRef.current.focus(options);
|
|
149
|
-
}
|
|
150
|
-
},
|
|
151
|
-
blur: () => {
|
|
152
|
-
if (selectRef.current && typeof selectRef.current.blur === 'function') {
|
|
153
|
-
selectRef.current.blur();
|
|
154
|
-
}
|
|
155
|
-
},
|
|
156
|
-
get element() {
|
|
157
|
-
return selectRef.current;
|
|
158
|
-
},
|
|
159
|
-
}),
|
|
160
|
-
[]
|
|
161
|
-
);
|
|
162
|
-
|
|
163
|
-
useEffect(() => {
|
|
164
|
-
const el = selectRef.current;
|
|
165
|
-
if (!el) return;
|
|
166
|
-
|
|
167
|
-
const handleInput = (e: Event) => {
|
|
168
|
-
if (onInput) onInput(e as CustomEvent);
|
|
169
|
-
};
|
|
170
|
-
|
|
171
|
-
const handleChange = (e: Event) => {
|
|
172
|
-
if (onChange) onChange(e as CustomEvent);
|
|
173
|
-
};
|
|
174
|
-
|
|
175
|
-
const handleFocus = (e: Event) => {
|
|
176
|
-
if (onFocus) onFocus(e as FocusEvent);
|
|
177
|
-
};
|
|
178
|
-
|
|
179
|
-
const handleBlur = (e: Event) => {
|
|
180
|
-
if (onBlur) onBlur(e as FocusEvent);
|
|
181
|
-
};
|
|
182
|
-
|
|
183
|
-
const handleClear = (e: Event) => {
|
|
184
|
-
if (onClear) onClear(e as CustomEvent);
|
|
185
|
-
};
|
|
186
|
-
|
|
187
|
-
const handleShow = (e: Event) => {
|
|
188
|
-
if (onShow) onShow(e as CustomEvent);
|
|
189
|
-
};
|
|
190
|
-
|
|
191
|
-
const handleAfterShow = (e: Event) => {
|
|
192
|
-
if (onAfterShow) onAfterShow(e as CustomEvent);
|
|
193
|
-
};
|
|
194
|
-
|
|
195
|
-
const handleHide = (e: Event) => {
|
|
196
|
-
if (onHide) onHide(e as CustomEvent);
|
|
197
|
-
};
|
|
198
|
-
|
|
199
|
-
const handleAfterHide = (e: Event) => {
|
|
200
|
-
if (onAfterHide) onAfterHide(e as CustomEvent);
|
|
201
|
-
};
|
|
202
|
-
|
|
203
|
-
const handleInvalid = (e: Event) => {
|
|
204
|
-
if (onInvalid) onInvalid(e as CustomEvent);
|
|
205
|
-
};
|
|
206
|
-
|
|
207
|
-
el.addEventListener('input', handleInput);
|
|
208
|
-
el.addEventListener('change', handleChange);
|
|
209
|
-
el.addEventListener('focus', handleFocus);
|
|
210
|
-
el.addEventListener('blur', handleBlur);
|
|
211
|
-
el.addEventListener('wa-clear', handleClear);
|
|
212
|
-
el.addEventListener('wa-show', handleShow);
|
|
213
|
-
el.addEventListener('wa-after-show', handleAfterShow);
|
|
214
|
-
el.addEventListener('wa-hide', handleHide);
|
|
215
|
-
el.addEventListener('wa-after-hide', handleAfterHide);
|
|
216
|
-
el.addEventListener('wa-invalid', handleInvalid);
|
|
217
|
-
|
|
218
|
-
return () => {
|
|
219
|
-
el.removeEventListener('input', handleInput);
|
|
220
|
-
el.removeEventListener('change', handleChange);
|
|
221
|
-
el.removeEventListener('focus', handleFocus);
|
|
222
|
-
el.removeEventListener('blur', handleBlur);
|
|
223
|
-
el.removeEventListener('wa-clear', handleClear);
|
|
224
|
-
el.removeEventListener('wa-show', handleShow);
|
|
225
|
-
el.removeEventListener('wa-after-show', handleAfterShow);
|
|
226
|
-
el.removeEventListener('wa-hide', handleHide);
|
|
227
|
-
el.removeEventListener('wa-after-hide', handleAfterHide);
|
|
228
|
-
el.removeEventListener('wa-invalid', handleInvalid);
|
|
229
|
-
};
|
|
230
|
-
}, [onInput, onChange, onFocus, onBlur, onClear, onShow, onAfterShow, onHide, onAfterHide, onInvalid]);
|
|
231
|
-
|
|
232
|
-
return (
|
|
233
|
-
<wa-select
|
|
234
|
-
ref={(el: WaElement | null) => { selectRef.current = el; }}
|
|
235
|
-
class={clsx('Select', className)}
|
|
236
|
-
{...(props as Record<string, unknown>)}
|
|
237
|
-
>
|
|
238
|
-
{children}
|
|
239
|
-
</wa-select>
|
|
240
|
-
);
|
|
241
|
-
}
|
|
242
|
-
);
|
|
243
|
-
|
|
244
|
-
Select.displayName = 'Select';
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Skeleton Component Styles
|
|
3
|
-
* Documentation: https://webawesome.com/docs/components/skeleton
|
|
4
|
-
*
|
|
5
|
-
* CSS Custom Properties:
|
|
6
|
-
* --color: Base fill color of the skeleton
|
|
7
|
-
* --sheen-color: Color of the animated sheen effect
|
|
8
|
-
*
|
|
9
|
-
* CSS Parts:
|
|
10
|
-
* indicator — Animated skeleton element
|
|
11
|
-
*/
|
|
12
|
-
.Skeleton {
|
|
13
|
-
/* Add your custom styles here */
|
|
14
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import clsx from 'clsx';
|
|
3
|
-
import '{{{importPath}}}';
|
|
4
|
-
import './Skeleton.css';
|
|
5
|
-
|
|
6
|
-
export const Skeleton = React.forwardRef(
|
|
7
|
-
({ className, ...props }, ref) => {
|
|
8
|
-
return (
|
|
9
|
-
<wa-skeleton
|
|
10
|
-
ref={ref}
|
|
11
|
-
class={clsx('Skeleton', className)}
|
|
12
|
-
{...props}
|
|
13
|
-
/>
|
|
14
|
-
);
|
|
15
|
-
}
|
|
16
|
-
);
|
|
17
|
-
|
|
18
|
-
Skeleton.displayName = 'Skeleton';
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { describe, it, expect } from 'vitest';
|
|
2
|
-
import { render } from '@testing-library/react';
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import { Skeleton } from './Skeleton';
|
|
5
|
-
|
|
6
|
-
describe('Skeleton', () => {
|
|
7
|
-
it('renders without crashing', () => {
|
|
8
|
-
const { container } = render(<Skeleton />);
|
|
9
|
-
expect(container.querySelector('wa-skeleton')).toBeInTheDocument();
|
|
10
|
-
});
|
|
11
|
-
});
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { describe, it, expect } from 'vitest';
|
|
2
|
-
import { render } from '@testing-library/react';
|
|
3
|
-
import { Skeleton } from './Skeleton';
|
|
4
|
-
|
|
5
|
-
describe('Skeleton', () => {
|
|
6
|
-
it('renders without crashing', () => {
|
|
7
|
-
const { container } = render(<Skeleton />);
|
|
8
|
-
expect(container.querySelector('wa-skeleton')).toBeTruthy();
|
|
9
|
-
});
|
|
10
|
-
});
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { forwardRef, useRef, useImperativeHandle, type HTMLAttributes } from 'react';
|
|
2
|
-
import clsx from 'clsx';
|
|
3
|
-
import '{{{importPath}}}';
|
|
4
|
-
import type WaElement from '{{{importPath}}}';
|
|
5
|
-
import './Skeleton.css';
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* Skeletons are used to provide a visual representation of where content will eventually load
|
|
9
|
-
*
|
|
10
|
-
* @example
|
|
11
|
-
* ```tsx
|
|
12
|
-
* // Basic usage
|
|
13
|
-
* <Skeleton />
|
|
14
|
-
*
|
|
15
|
-
* // With event handlers
|
|
16
|
-
* <Skeleton />
|
|
17
|
-
*
|
|
18
|
-
* ```
|
|
19
|
-
*/
|
|
20
|
-
export interface SkeletonProps extends Omit<HTMLAttributes<HTMLElement>, 'dir'> {
|
|
21
|
-
|
|
22
|
-
/** Animation effect */
|
|
23
|
-
effect?: 'pulse' | 'sheen' | 'none';
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export interface SkeletonRef {
|
|
27
|
-
/** Reference to the underlying element */
|
|
28
|
-
element: WaElement | null;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export const Skeleton = forwardRef<SkeletonRef, SkeletonProps>(
|
|
32
|
-
({ children, className, ...props }, ref) => {
|
|
33
|
-
const skeletonRef = useRef<WaElement | null>(null);
|
|
34
|
-
|
|
35
|
-
useImperativeHandle(
|
|
36
|
-
ref,
|
|
37
|
-
() => ({
|
|
38
|
-
get element() {
|
|
39
|
-
return skeletonRef.current;
|
|
40
|
-
},
|
|
41
|
-
}),
|
|
42
|
-
[]
|
|
43
|
-
);
|
|
44
|
-
|
|
45
|
-
return (
|
|
46
|
-
<wa-skeleton
|
|
47
|
-
ref={(el: WaElement | null) => { skeletonRef.current = el; }}
|
|
48
|
-
class={clsx('Skeleton', className)}
|
|
49
|
-
{...(props as Record<string, unknown>)}
|
|
50
|
-
>
|
|
51
|
-
{children}
|
|
52
|
-
</wa-skeleton>
|
|
53
|
-
);
|
|
54
|
-
}
|
|
55
|
-
);
|
|
56
|
-
|
|
57
|
-
Skeleton.displayName = 'Skeleton';
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Slider Component Styles
|
|
3
|
-
* Documentation: https://webawesome.com/docs/components/slider
|
|
4
|
-
*
|
|
5
|
-
* CSS Custom Properties:
|
|
6
|
-
* --track-size: Height or width of the slider track
|
|
7
|
-
* --marker-width: Width of each step marker
|
|
8
|
-
* --marker-height: Height of each step marker
|
|
9
|
-
* --thumb-width: Width of the slider thumb
|
|
10
|
-
* --thumb-height: Height of the slider thumb
|
|
11
|
-
*
|
|
12
|
-
* CSS Parts:
|
|
13
|
-
* label — Label text above the slider
|
|
14
|
-
* hint — Hint text below the slider
|
|
15
|
-
* slider — Focusable slider element with role="slider"
|
|
16
|
-
* track — Slider track bar
|
|
17
|
-
* indicator — Colored fill from start to current value
|
|
18
|
-
* markers — Container for step marker elements
|
|
19
|
-
* marker — Individual step marker
|
|
20
|
-
* reference — Reference slot area on the track
|
|
21
|
-
* thumb — Slider's draggable thumb
|
|
22
|
-
* thumb-min — Min-value thumb in range mode
|
|
23
|
-
* thumb-max — Max-value thumb in range mode
|
|
24
|
-
* tooltip — Thumb tooltip, a wa-tooltip element
|
|
25
|
-
* tooltip__tooltip — Tooltip's inner tooltip part
|
|
26
|
-
* tooltip__content — Tooltip's content area
|
|
27
|
-
* tooltip__arrow — Tooltip's arrow element
|
|
28
|
-
*/
|
|
29
|
-
.Slider {
|
|
30
|
-
/* Add your custom styles here */
|
|
31
|
-
}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import clsx from 'clsx';
|
|
3
|
-
import '{{{importPath}}}';
|
|
4
|
-
import './Slider.css';
|
|
5
|
-
|
|
6
|
-
export const Slider = React.forwardRef(
|
|
7
|
-
({ className, onChange, onInvalid, ...props }, ref) => {
|
|
8
|
-
const sliderRef = React.useRef(null);
|
|
9
|
-
|
|
10
|
-
React.useImperativeHandle(
|
|
11
|
-
ref,
|
|
12
|
-
() => ({
|
|
13
|
-
focus: (options) => sliderRef.current?.focus?.(options),
|
|
14
|
-
blur: () => sliderRef.current?.blur?.(),
|
|
15
|
-
stepUp: () => sliderRef.current?.stepUp?.(),
|
|
16
|
-
stepDown: () => sliderRef.current?.stepDown?.(),
|
|
17
|
-
get element() {
|
|
18
|
-
return sliderRef.current;
|
|
19
|
-
},
|
|
20
|
-
}),
|
|
21
|
-
[]
|
|
22
|
-
);
|
|
23
|
-
|
|
24
|
-
React.useEffect(() => {
|
|
25
|
-
const el = sliderRef.current;
|
|
26
|
-
if (!el) return;
|
|
27
|
-
|
|
28
|
-
const handleChange = (e) => onChange?.(e);
|
|
29
|
-
const handleInvalid = (e) => onInvalid?.(e);
|
|
30
|
-
|
|
31
|
-
el.addEventListener('change', handleChange);
|
|
32
|
-
el.addEventListener('wa-invalid', handleInvalid);
|
|
33
|
-
|
|
34
|
-
return () => {
|
|
35
|
-
el.removeEventListener('change', handleChange);
|
|
36
|
-
el.removeEventListener('wa-invalid', handleInvalid);
|
|
37
|
-
};
|
|
38
|
-
}, [onChange, onInvalid]);
|
|
39
|
-
|
|
40
|
-
return (
|
|
41
|
-
<wa-slider
|
|
42
|
-
ref={sliderRef}
|
|
43
|
-
class={clsx('Slider', className)}
|
|
44
|
-
{...props}
|
|
45
|
-
/>
|
|
46
|
-
);
|
|
47
|
-
}
|
|
48
|
-
);
|
|
49
|
-
|
|
50
|
-
Slider.displayName = 'Slider';
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { describe, it, expect } from 'vitest';
|
|
2
|
-
import { render } from '@testing-library/react';
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import { Slider } from './Slider';
|
|
5
|
-
|
|
6
|
-
describe('Slider', () => {
|
|
7
|
-
it('renders without crashing', () => {
|
|
8
|
-
const { container } = render(<Slider />);
|
|
9
|
-
expect(container.querySelector('wa-slider')).toBeInTheDocument();
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
it('exposes ref methods', () => {
|
|
13
|
-
const ref = React.createRef();
|
|
14
|
-
render(<Slider ref={ref} />);
|
|
15
|
-
expect(ref.current).toHaveProperty('focus');
|
|
16
|
-
expect(ref.current).toHaveProperty('stepUp');
|
|
17
|
-
expect(ref.current).toHaveProperty('stepDown');
|
|
18
|
-
});
|
|
19
|
-
});
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { describe, it, expect } from 'vitest';
|
|
2
|
-
import { render } from '@testing-library/react';
|
|
3
|
-
import { Slider } from './Slider';
|
|
4
|
-
|
|
5
|
-
describe('Slider', () => {
|
|
6
|
-
it('renders without crashing', () => {
|
|
7
|
-
const { container } = render(<Slider />);
|
|
8
|
-
expect(container.querySelector('wa-slider')).toBeTruthy();
|
|
9
|
-
});
|
|
10
|
-
});
|
|
@@ -1,189 +0,0 @@
|
|
|
1
|
-
import { forwardRef, useRef, useImperativeHandle, useEffect, type HTMLAttributes } from 'react';
|
|
2
|
-
import clsx from 'clsx';
|
|
3
|
-
import '{{{importPath}}}';
|
|
4
|
-
import type WaElement from '{{{importPath}}}';
|
|
5
|
-
import './Slider.css';
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* Sliders allow the user to select a value within a range
|
|
9
|
-
*
|
|
10
|
-
* @example
|
|
11
|
-
* ```tsx
|
|
12
|
-
* // Basic usage
|
|
13
|
-
* <Slider />
|
|
14
|
-
*
|
|
15
|
-
* // With event handlers
|
|
16
|
-
* <Slider
|
|
17
|
-
* onChange={(e) => console.log(e)} />
|
|
18
|
-
*
|
|
19
|
-
* // With ref methods
|
|
20
|
-
* const ref = useRef<SliderRef>(null);
|
|
21
|
-
* <button onClick={() => ref.current?.focus()}>Call Method</button>
|
|
22
|
-
* <Slider ref={ref} />
|
|
23
|
-
* ```
|
|
24
|
-
*/
|
|
25
|
-
export interface SliderProps extends Omit<HTMLAttributes<HTMLElement>, 'onChange' | 'onBlur' | 'onFocus' | 'onInput' | 'onInvalid' | 'dir'> {
|
|
26
|
-
|
|
27
|
-
/** Form field name */
|
|
28
|
-
name?: string;
|
|
29
|
-
|
|
30
|
-
/** Current value */
|
|
31
|
-
value?: number;
|
|
32
|
-
|
|
33
|
-
/** Accessible label */
|
|
34
|
-
label?: string;
|
|
35
|
-
|
|
36
|
-
/** Hint text */
|
|
37
|
-
hint?: string;
|
|
38
|
-
|
|
39
|
-
/** Slider size */
|
|
40
|
-
size?: 'small' | 'medium' | 'large';
|
|
41
|
-
|
|
42
|
-
/** Minimum value */
|
|
43
|
-
min?: number;
|
|
44
|
-
|
|
45
|
-
/** Maximum value */
|
|
46
|
-
max?: number;
|
|
47
|
-
|
|
48
|
-
/** Step increment */
|
|
49
|
-
step?: number;
|
|
50
|
-
|
|
51
|
-
/** The orientation of the slider */
|
|
52
|
-
orientation?: 'horizontal' | 'vertical';
|
|
53
|
-
|
|
54
|
-
/** Disables the slider */
|
|
55
|
-
disabled?: boolean;
|
|
56
|
-
|
|
57
|
-
/** Makes the slider readonly */
|
|
58
|
-
readonly?: boolean;
|
|
59
|
-
|
|
60
|
-
/** Converts to a range slider with two thumbs */
|
|
61
|
-
range?: boolean;
|
|
62
|
-
|
|
63
|
-
/** Draws markers at each step */
|
|
64
|
-
'with-markers'?: boolean;
|
|
65
|
-
|
|
66
|
-
/** Draws a tooltip above the thumb */
|
|
67
|
-
'with-tooltip'?: boolean;
|
|
68
|
-
|
|
69
|
-
/** Emitted when an alteration to the control's value is committed by the user. */
|
|
70
|
-
onChange?: (event: CustomEvent) => void;
|
|
71
|
-
|
|
72
|
-
/** Emitted when the control loses focus. */
|
|
73
|
-
onBlur?: (event: FocusEvent) => void;
|
|
74
|
-
|
|
75
|
-
/** Emitted when the control gains focus. */
|
|
76
|
-
onFocus?: (event: FocusEvent) => void;
|
|
77
|
-
|
|
78
|
-
/** Emitted when the control receives input. */
|
|
79
|
-
onInput?: (event: CustomEvent) => void;
|
|
80
|
-
|
|
81
|
-
/** Emitted when the form control has been checked for validity and its constraints aren't satisfied. */
|
|
82
|
-
onInvalid?: (event: CustomEvent) => void;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
export interface SliderRef {
|
|
86
|
-
|
|
87
|
-
/** Sets focus to the slider. */
|
|
88
|
-
focus: () => void;
|
|
89
|
-
|
|
90
|
-
/** Removes focus from the slider. */
|
|
91
|
-
blur: () => void;
|
|
92
|
-
|
|
93
|
-
/** Decreases the slider's value by `step`. This is a programmatic change, so `input` and `change` events will not be
|
|
94
|
-
emitted when this is called. */
|
|
95
|
-
stepDown: () => void;
|
|
96
|
-
|
|
97
|
-
/** Increases the slider's value by `step`. This is a programmatic change, so `input` and `change` events will not be
|
|
98
|
-
emitted when this is called. */
|
|
99
|
-
stepUp: () => void;
|
|
100
|
-
/** Reference to the underlying element */
|
|
101
|
-
element: WaElement | null;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
export const Slider = forwardRef<SliderRef, SliderProps>(
|
|
105
|
-
({ children, className, onChange, onBlur, onFocus, onInput, onInvalid, ...props }, ref) => {
|
|
106
|
-
const sliderRef = useRef<WaElement | null>(null);
|
|
107
|
-
|
|
108
|
-
useImperativeHandle(
|
|
109
|
-
ref,
|
|
110
|
-
() => ({
|
|
111
|
-
focus: () => {
|
|
112
|
-
if (sliderRef.current && typeof sliderRef.current.focus === 'function') {
|
|
113
|
-
sliderRef.current.focus();
|
|
114
|
-
}
|
|
115
|
-
},
|
|
116
|
-
blur: () => {
|
|
117
|
-
if (sliderRef.current && typeof sliderRef.current.blur === 'function') {
|
|
118
|
-
sliderRef.current.blur();
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
|
-
stepDown: () => {
|
|
122
|
-
if (sliderRef.current && typeof sliderRef.current.stepDown === 'function') {
|
|
123
|
-
sliderRef.current.stepDown();
|
|
124
|
-
}
|
|
125
|
-
},
|
|
126
|
-
stepUp: () => {
|
|
127
|
-
if (sliderRef.current && typeof sliderRef.current.stepUp === 'function') {
|
|
128
|
-
sliderRef.current.stepUp();
|
|
129
|
-
}
|
|
130
|
-
},
|
|
131
|
-
get element() {
|
|
132
|
-
return sliderRef.current;
|
|
133
|
-
},
|
|
134
|
-
}),
|
|
135
|
-
[]
|
|
136
|
-
);
|
|
137
|
-
|
|
138
|
-
useEffect(() => {
|
|
139
|
-
const el = sliderRef.current;
|
|
140
|
-
if (!el) return;
|
|
141
|
-
|
|
142
|
-
const handleChange = (e: Event) => {
|
|
143
|
-
if (onChange) onChange(e as CustomEvent);
|
|
144
|
-
};
|
|
145
|
-
|
|
146
|
-
const handleBlur = (e: Event) => {
|
|
147
|
-
if (onBlur) onBlur(e as FocusEvent);
|
|
148
|
-
};
|
|
149
|
-
|
|
150
|
-
const handleFocus = (e: Event) => {
|
|
151
|
-
if (onFocus) onFocus(e as FocusEvent);
|
|
152
|
-
};
|
|
153
|
-
|
|
154
|
-
const handleInput = (e: Event) => {
|
|
155
|
-
if (onInput) onInput(e as CustomEvent);
|
|
156
|
-
};
|
|
157
|
-
|
|
158
|
-
const handleInvalid = (e: Event) => {
|
|
159
|
-
if (onInvalid) onInvalid(e as CustomEvent);
|
|
160
|
-
};
|
|
161
|
-
|
|
162
|
-
el.addEventListener('change', handleChange);
|
|
163
|
-
el.addEventListener('blur', handleBlur);
|
|
164
|
-
el.addEventListener('focus', handleFocus);
|
|
165
|
-
el.addEventListener('input', handleInput);
|
|
166
|
-
el.addEventListener('wa-invalid', handleInvalid);
|
|
167
|
-
|
|
168
|
-
return () => {
|
|
169
|
-
el.removeEventListener('change', handleChange);
|
|
170
|
-
el.removeEventListener('blur', handleBlur);
|
|
171
|
-
el.removeEventListener('focus', handleFocus);
|
|
172
|
-
el.removeEventListener('input', handleInput);
|
|
173
|
-
el.removeEventListener('wa-invalid', handleInvalid);
|
|
174
|
-
};
|
|
175
|
-
}, [onChange, onBlur, onFocus, onInput, onInvalid]);
|
|
176
|
-
|
|
177
|
-
return (
|
|
178
|
-
<wa-slider
|
|
179
|
-
ref={(el: WaElement | null) => { sliderRef.current = el; }}
|
|
180
|
-
class={clsx('Slider', className)}
|
|
181
|
-
{...(props as Record<string, unknown>)}
|
|
182
|
-
>
|
|
183
|
-
{children}
|
|
184
|
-
</wa-slider>
|
|
185
|
-
);
|
|
186
|
-
}
|
|
187
|
-
);
|
|
188
|
-
|
|
189
|
-
Slider.displayName = 'Slider';
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Sparkline Component Styles
|
|
3
|
-
* Documentation: https://webawesome.com/docs/components/sparkline
|
|
4
|
-
*
|
|
5
|
-
* CSS Custom Properties:
|
|
6
|
-
* --fill-color: Fill color below the sparkline
|
|
7
|
-
* --line-color: Stroke color of the sparkline
|
|
8
|
-
* --line-width: Stroke width of the sparkline
|
|
9
|
-
*
|
|
10
|
-
* CSS Parts:
|
|
11
|
-
* base — Root SVG wrapper element
|
|
12
|
-
* line — Sparkline path element
|
|
13
|
-
* fill — Fill area below the line
|
|
14
|
-
*/
|
|
15
|
-
.Sparkline {
|
|
16
|
-
/* Add your custom styles here */
|
|
17
|
-
}
|