kigumi 0.19.1 → 0.20.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 +1 -1
- package/dist/bin.js.map +1 -1
- package/dist/chunk-F52T5BFP.js +260 -0
- package/dist/chunk-F52T5BFP.js.map +1 -0
- package/dist/chunk-L52LAS37.js +1978 -0
- package/dist/chunk-L52LAS37.js.map +1 -0
- package/dist/chunk-MIPVTLNR.js +260 -0
- package/dist/chunk-MIPVTLNR.js.map +1 -0
- package/dist/index.js +5540 -5383
- package/dist/index.js.map +1 -1
- package/dist/install-ATX2D4AO.js +114 -0
- package/dist/install-ATX2D4AO.js.map +1 -0
- package/dist/project-config-D3FYPYTX.js +16 -0
- package/dist/tier-W7HBBSNP.js +15 -0
- package/dist/tier-W7HBBSNP.js.map +1 -0
- package/package.json +54 -14
- 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/-AZG6WCTT.js +0 -9911
- package/dist/-AZG6WCTT.js.map +0 -1
- package/dist/chunk-IAHZV2WK.js +0 -1416
- package/dist/chunk-IAHZV2WK.js.map +0 -1
- package/dist/chunk-IBUJXZSQ.js +0 -251
- package/dist/chunk-IBUJXZSQ.js.map +0 -1
- package/dist/install-KQPNMCKO.js +0 -111
- package/dist/install-KQPNMCKO.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-WGCBYOUA.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-WGCBYOUA.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
package/README.md
CHANGED
|
@@ -345,19 +345,19 @@ git push # Push to GitHub — done!
|
|
|
345
345
|
}
|
|
346
346
|
```
|
|
347
347
|
|
|
348
|
-
| Field | Required | Description
|
|
349
|
-
| -------------------------------------- | -------- |
|
|
350
|
-
| `name` | Yes | Registry name
|
|
351
|
-
| `version` | Yes | Semver version (e.g. `1.0.0`)
|
|
352
|
-
| `frameworks` | Yes | Array: `react`, `vue`, `
|
|
353
|
-
| `components[slug].files[fw].component` | Yes | Main component file path
|
|
354
|
-
| `components[slug].files[fw].css` | No | CSS file path
|
|
355
|
-
| `components[slug].files[fw].test` | No | Test file path
|
|
356
|
-
| `components[slug].files[fw].extras` | No | Additional files (hooks, utils)
|
|
357
|
-
| `components[slug].dependencies` | No | Other component slugs in this registry
|
|
358
|
-
| `themes[slug].files.css` | Yes | Main theme CSS file
|
|
359
|
-
| `themes[slug].files.variables` | No | CSS variables file
|
|
360
|
-
| `themes[slug].extends` | No | Built-in theme to extend
|
|
348
|
+
| Field | Required | Description |
|
|
349
|
+
| -------------------------------------- | -------- | -------------------------------------- |
|
|
350
|
+
| `name` | Yes | Registry name |
|
|
351
|
+
| `version` | Yes | Semver version (e.g. `1.0.0`) |
|
|
352
|
+
| `frameworks` | Yes | Array: `react`, `vue`, `angular` |
|
|
353
|
+
| `components[slug].files[fw].component` | Yes | Main component file path |
|
|
354
|
+
| `components[slug].files[fw].css` | No | CSS file path |
|
|
355
|
+
| `components[slug].files[fw].test` | No | Test file path |
|
|
356
|
+
| `components[slug].files[fw].extras` | No | Additional files (hooks, utils) |
|
|
357
|
+
| `components[slug].dependencies` | No | Other component slugs in this registry |
|
|
358
|
+
| `themes[slug].files.css` | Yes | Main theme CSS file |
|
|
359
|
+
| `themes[slug].files.variables` | No | CSS variables file |
|
|
360
|
+
| `themes[slug].extends` | No | Built-in theme to extend |
|
|
361
361
|
|
|
362
362
|
## Global Options
|
|
363
363
|
|
package/dist/bin.js
CHANGED
package/dist/bin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/bin.ts"],"sourcesContent":["#!/usr/bin/env node\n\nexport {};\n\nconst major = parseInt(process.version.slice(1), 10);\n\nif (major < 20) {\n console.error(\n `kigumi requires Node.js 20 or later (detected ${process.version}).` +\n '\\nPlease upgrade: https://nodejs.org'\n );\n process.exit(1);\n}\n\nawait import('./index.js');\n"],"mappings":";;;AAIA,IAAM,QAAQ,SAAS,QAAQ,QAAQ,MAAM,CAAC,GAAG,EAAE;AAEnD,IAAI,QAAQ,IAAI;AACd,UAAQ;AAAA,IACN,iDAAiD,QAAQ,OAAO;AAAA;AAAA,EAElE;AACA,UAAQ,KAAK,CAAC;AAChB;AAEA,MAAM,OAAO,
|
|
1
|
+
{"version":3,"sources":["../src/bin.ts"],"sourcesContent":["#!/usr/bin/env node\n\nexport {};\n\nconst major = parseInt(process.version.slice(1), 10);\n\nif (major < 20) {\n console.error(\n `kigumi requires Node.js 20 or later (detected ${process.version}).` +\n '\\nPlease upgrade: https://nodejs.org'\n );\n process.exit(1);\n}\n\nawait import('./index.js');\n"],"mappings":";;;AAIA,IAAM,QAAQ,SAAS,QAAQ,QAAQ,MAAM,CAAC,GAAG,EAAE;AAEnD,IAAI,QAAQ,IAAI;AACd,UAAQ;AAAA,IACN,iDAAiD,QAAQ,OAAO;AAAA;AAAA,EAElE;AACA,UAAQ,KAAK,CAAC;AAChB;AAEA,MAAM,OAAO,YAAY;","names":[]}
|
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
// src/utils/tier.ts
|
|
2
|
+
import fs2 from "fs-extra";
|
|
3
|
+
import path2 from "path";
|
|
4
|
+
import { z } from "zod";
|
|
5
|
+
|
|
6
|
+
// src/constants.ts
|
|
7
|
+
import { readFileSync } from "fs";
|
|
8
|
+
import { dirname, join } from "path";
|
|
9
|
+
import { fileURLToPath } from "url";
|
|
10
|
+
var WEB_AWESOME_FREE_PACKAGE = "@awesome.me/webawesome";
|
|
11
|
+
var WEB_AWESOME_PRO_PACKAGE = "@awesome.me/webawesome-pro";
|
|
12
|
+
var WEB_AWESOME_SCOPE = "@awesome.me";
|
|
13
|
+
var ENV_TOKEN_KEY = "WEBAWESOME_NPM_TOKEN";
|
|
14
|
+
var MIN_TOKEN_LENGTH = 10;
|
|
15
|
+
var CONFIG_FILE_NAME = "kigumi.config.json";
|
|
16
|
+
var ENV_FILE_NAME = ".env";
|
|
17
|
+
var NPM_PUBLIC_REGISTRY = "https://registry.npmjs.org/";
|
|
18
|
+
var NPM_PRO_REGISTRY = "https://npm.cloudsmith.io/fortawesome/webawesome-pro";
|
|
19
|
+
var FREE_PACKAGE_REGEX = /@awesome\.me\/webawesome(?!-pro)/g;
|
|
20
|
+
var PRO_PACKAGE_REGEX = /@awesome\.me\/webawesome-pro/g;
|
|
21
|
+
var FREE_PACKAGE_PATTERN = /@awesome\.me\/webawesome(?!-pro)/;
|
|
22
|
+
var PRO_PACKAGE_PATTERN = /@awesome\.me\/webawesome-pro/;
|
|
23
|
+
var ENV_TOKEN_REGEX = /^\s*WEBAWESOME_NPM_TOKEN\s*=\s*(.+?)\s*$/m;
|
|
24
|
+
var DEFAULT_WEBAWESOME_VERSION = "^3.5.0";
|
|
25
|
+
var GITHUB_RAW_BASE_URL = "https://raw.githubusercontent.com";
|
|
26
|
+
var KIGUMI_CACHE_DIR = ".kigumi/cache";
|
|
27
|
+
var REGISTRY_CACHE_TTL_MS = 36e5;
|
|
28
|
+
var REGISTRY_FILE_NAME = "registry.json";
|
|
29
|
+
var NPM_REGISTRY_URL = "https://registry.npmjs.org/kigumi/latest";
|
|
30
|
+
var UPDATE_CHECK_CACHE_TTL_MS = 864e5;
|
|
31
|
+
var UPDATE_CHECK_TIMEOUT_MS = 3e3;
|
|
32
|
+
var UPDATE_CHECK_CACHE_FILE = "update-check.json";
|
|
33
|
+
var GITHUB_REPO_URL = "https://github.com/Siregar/kigumi-cli";
|
|
34
|
+
var GITHUB_ISSUES_URL = `${GITHUB_REPO_URL}/issues`;
|
|
35
|
+
var __constants_filename = fileURLToPath(import.meta.url);
|
|
36
|
+
var __constants_dirname = dirname(__constants_filename);
|
|
37
|
+
var __cliPackageJson = JSON.parse(
|
|
38
|
+
readFileSync(join(__constants_dirname, "..", "package.json"), "utf-8")
|
|
39
|
+
);
|
|
40
|
+
var CLI_VERSION = __cliPackageJson.version;
|
|
41
|
+
|
|
42
|
+
// src/utils/token.ts
|
|
43
|
+
import fs from "fs-extra";
|
|
44
|
+
import os from "os";
|
|
45
|
+
import path from "path";
|
|
46
|
+
async function detectProToken(cwd) {
|
|
47
|
+
const result = await detectProTokenWithSource(cwd);
|
|
48
|
+
return result.token;
|
|
49
|
+
}
|
|
50
|
+
function detectProTokenSync(cwd) {
|
|
51
|
+
const result = detectProTokenWithSourceSync(cwd);
|
|
52
|
+
return result.token;
|
|
53
|
+
}
|
|
54
|
+
function getTokenSourceSync(cwd) {
|
|
55
|
+
const result = detectProTokenWithSourceSync(cwd);
|
|
56
|
+
return result.source;
|
|
57
|
+
}
|
|
58
|
+
async function detectProTokenWithSource(cwd) {
|
|
59
|
+
const envToken = getTokenFromEnvVar();
|
|
60
|
+
if (envToken) {
|
|
61
|
+
return { token: envToken, source: "env" };
|
|
62
|
+
}
|
|
63
|
+
if (!process.env.KIGUMI_SKIP_GLOBAL_NPMRC) {
|
|
64
|
+
const npmrcToken = await getTokenFromGlobalNpmrc();
|
|
65
|
+
if (npmrcToken) {
|
|
66
|
+
return { token: npmrcToken, source: "npmrc" };
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
const dotenvToken = await getTokenFromDotenv(cwd);
|
|
70
|
+
if (dotenvToken) {
|
|
71
|
+
return { token: dotenvToken, source: "dotenv" };
|
|
72
|
+
}
|
|
73
|
+
return { token: null, source: null };
|
|
74
|
+
}
|
|
75
|
+
function detectProTokenWithSourceSync(cwd) {
|
|
76
|
+
const envToken = getTokenFromEnvVar();
|
|
77
|
+
if (envToken) {
|
|
78
|
+
return { token: envToken, source: "env" };
|
|
79
|
+
}
|
|
80
|
+
if (!process.env.KIGUMI_SKIP_GLOBAL_NPMRC) {
|
|
81
|
+
const npmrcToken = getTokenFromGlobalNpmrcSync();
|
|
82
|
+
if (npmrcToken) {
|
|
83
|
+
return { token: npmrcToken, source: "npmrc" };
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
const dotenvToken = getTokenFromDotenvSync(cwd);
|
|
87
|
+
if (dotenvToken) {
|
|
88
|
+
return { token: dotenvToken, source: "dotenv" };
|
|
89
|
+
}
|
|
90
|
+
return { token: null, source: null };
|
|
91
|
+
}
|
|
92
|
+
function getTokenFromEnvVar() {
|
|
93
|
+
const token = process.env[ENV_TOKEN_KEY];
|
|
94
|
+
if (token && token.length >= MIN_TOKEN_LENGTH) {
|
|
95
|
+
return token.trim();
|
|
96
|
+
}
|
|
97
|
+
return null;
|
|
98
|
+
}
|
|
99
|
+
async function getTokenFromGlobalNpmrc() {
|
|
100
|
+
const npmrcPath = path.join(os.homedir(), ".npmrc");
|
|
101
|
+
if (!await fs.pathExists(npmrcPath)) {
|
|
102
|
+
return null;
|
|
103
|
+
}
|
|
104
|
+
const content = await fs.readFile(npmrcPath, "utf-8");
|
|
105
|
+
return extractTokenFromNpmrc(content);
|
|
106
|
+
}
|
|
107
|
+
function getTokenFromGlobalNpmrcSync() {
|
|
108
|
+
const npmrcPath = path.join(os.homedir(), ".npmrc");
|
|
109
|
+
if (!fs.existsSync(npmrcPath)) {
|
|
110
|
+
return null;
|
|
111
|
+
}
|
|
112
|
+
const content = fs.readFileSync(npmrcPath, "utf-8");
|
|
113
|
+
return extractTokenFromNpmrc(content);
|
|
114
|
+
}
|
|
115
|
+
function extractTokenFromNpmrc(content) {
|
|
116
|
+
const registryHost = NPM_PRO_REGISTRY.replace("https://", "");
|
|
117
|
+
const patterns = [
|
|
118
|
+
new RegExp(`//${registryHost}/?:_authToken=(.+)`, "m"),
|
|
119
|
+
new RegExp(`${registryHost}/?:_authToken=(.+)`, "m")
|
|
120
|
+
];
|
|
121
|
+
for (const pattern of patterns) {
|
|
122
|
+
const match = content.match(pattern);
|
|
123
|
+
if (match && match[1]) {
|
|
124
|
+
const token = match[1].trim();
|
|
125
|
+
if (token.length >= MIN_TOKEN_LENGTH) {
|
|
126
|
+
return token;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
return null;
|
|
131
|
+
}
|
|
132
|
+
async function getTokenFromDotenv(cwd) {
|
|
133
|
+
const envPath = path.join(cwd, ENV_FILE_NAME);
|
|
134
|
+
if (!await fs.pathExists(envPath)) {
|
|
135
|
+
return null;
|
|
136
|
+
}
|
|
137
|
+
const content = await fs.readFile(envPath, "utf-8");
|
|
138
|
+
return extractTokenFromDotenv(content);
|
|
139
|
+
}
|
|
140
|
+
function getTokenFromDotenvSync(cwd) {
|
|
141
|
+
const envPath = path.join(cwd, ENV_FILE_NAME);
|
|
142
|
+
if (!fs.existsSync(envPath)) {
|
|
143
|
+
return null;
|
|
144
|
+
}
|
|
145
|
+
const content = fs.readFileSync(envPath, "utf-8");
|
|
146
|
+
return extractTokenFromDotenv(content);
|
|
147
|
+
}
|
|
148
|
+
function extractTokenFromDotenv(content) {
|
|
149
|
+
const match = content.match(ENV_TOKEN_REGEX);
|
|
150
|
+
if (match && match[1]) {
|
|
151
|
+
const token = match[1].trim();
|
|
152
|
+
if (token.length >= MIN_TOKEN_LENGTH) {
|
|
153
|
+
return token;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
return null;
|
|
157
|
+
}
|
|
158
|
+
function describeTokenSource(source) {
|
|
159
|
+
switch (source) {
|
|
160
|
+
case "env":
|
|
161
|
+
return `environment variable ($${ENV_TOKEN_KEY})`;
|
|
162
|
+
case "npmrc":
|
|
163
|
+
return "global ~/.npmrc";
|
|
164
|
+
case "dotenv":
|
|
165
|
+
return "project .env file";
|
|
166
|
+
default:
|
|
167
|
+
return "unknown";
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
// src/utils/tier.ts
|
|
172
|
+
var tierSchema = z.enum(["free", "pro"], {
|
|
173
|
+
error: () => 'Must be either "free" or "pro"'
|
|
174
|
+
});
|
|
175
|
+
async function detectTier(cwd) {
|
|
176
|
+
const packageJsonPath = path2.join(cwd, "package.json");
|
|
177
|
+
if (await fs2.pathExists(packageJsonPath)) {
|
|
178
|
+
try {
|
|
179
|
+
const packageJson = await fs2.readJson(packageJsonPath);
|
|
180
|
+
const deps = {
|
|
181
|
+
...packageJson.dependencies,
|
|
182
|
+
...packageJson.devDependencies
|
|
183
|
+
};
|
|
184
|
+
if (deps[WEB_AWESOME_PRO_PACKAGE]) {
|
|
185
|
+
return "pro";
|
|
186
|
+
}
|
|
187
|
+
if (deps[WEB_AWESOME_FREE_PACKAGE]) {
|
|
188
|
+
return "free";
|
|
189
|
+
}
|
|
190
|
+
} catch (_error) {
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
const token = await detectProToken(cwd);
|
|
194
|
+
return token ? "pro" : "free";
|
|
195
|
+
}
|
|
196
|
+
function detectTierSync(cwd) {
|
|
197
|
+
const packageJsonPath = path2.join(cwd, "package.json");
|
|
198
|
+
if (fs2.pathExistsSync(packageJsonPath)) {
|
|
199
|
+
try {
|
|
200
|
+
const packageJson = fs2.readJsonSync(packageJsonPath);
|
|
201
|
+
const deps = {
|
|
202
|
+
...packageJson.dependencies,
|
|
203
|
+
...packageJson.devDependencies
|
|
204
|
+
};
|
|
205
|
+
if (deps[WEB_AWESOME_PRO_PACKAGE]) {
|
|
206
|
+
return "pro";
|
|
207
|
+
}
|
|
208
|
+
if (deps[WEB_AWESOME_FREE_PACKAGE]) {
|
|
209
|
+
return "free";
|
|
210
|
+
}
|
|
211
|
+
} catch (_error) {
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
const token = detectProTokenSync(cwd);
|
|
215
|
+
return token ? "pro" : "free";
|
|
216
|
+
}
|
|
217
|
+
async function getProToken(cwd) {
|
|
218
|
+
return detectProToken(cwd);
|
|
219
|
+
}
|
|
220
|
+
function getWebAwesomePackage(tier) {
|
|
221
|
+
return tier === "pro" ? WEB_AWESOME_PRO_PACKAGE : WEB_AWESOME_FREE_PACKAGE;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
export {
|
|
225
|
+
WEB_AWESOME_FREE_PACKAGE,
|
|
226
|
+
WEB_AWESOME_PRO_PACKAGE,
|
|
227
|
+
WEB_AWESOME_SCOPE,
|
|
228
|
+
ENV_TOKEN_KEY,
|
|
229
|
+
MIN_TOKEN_LENGTH,
|
|
230
|
+
CONFIG_FILE_NAME,
|
|
231
|
+
ENV_FILE_NAME,
|
|
232
|
+
NPM_PUBLIC_REGISTRY,
|
|
233
|
+
NPM_PRO_REGISTRY,
|
|
234
|
+
FREE_PACKAGE_REGEX,
|
|
235
|
+
PRO_PACKAGE_REGEX,
|
|
236
|
+
FREE_PACKAGE_PATTERN,
|
|
237
|
+
PRO_PACKAGE_PATTERN,
|
|
238
|
+
ENV_TOKEN_REGEX,
|
|
239
|
+
DEFAULT_WEBAWESOME_VERSION,
|
|
240
|
+
GITHUB_RAW_BASE_URL,
|
|
241
|
+
KIGUMI_CACHE_DIR,
|
|
242
|
+
REGISTRY_CACHE_TTL_MS,
|
|
243
|
+
REGISTRY_FILE_NAME,
|
|
244
|
+
NPM_REGISTRY_URL,
|
|
245
|
+
UPDATE_CHECK_CACHE_TTL_MS,
|
|
246
|
+
UPDATE_CHECK_TIMEOUT_MS,
|
|
247
|
+
UPDATE_CHECK_CACHE_FILE,
|
|
248
|
+
GITHUB_REPO_URL,
|
|
249
|
+
GITHUB_ISSUES_URL,
|
|
250
|
+
CLI_VERSION,
|
|
251
|
+
detectProTokenSync,
|
|
252
|
+
getTokenSourceSync,
|
|
253
|
+
describeTokenSource,
|
|
254
|
+
tierSchema,
|
|
255
|
+
detectTier,
|
|
256
|
+
detectTierSync,
|
|
257
|
+
getProToken,
|
|
258
|
+
getWebAwesomePackage
|
|
259
|
+
};
|
|
260
|
+
//# sourceMappingURL=chunk-F52T5BFP.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/utils/tier.ts","../src/constants.ts","../src/utils/token.ts"],"sourcesContent":["/**\n * Tier Detection Utility\n *\n * PURPOSE: Determines Free vs Pro tier based on token availability.\n *\n * Token detection uses fallback chain (see src/utils/token.ts):\n * 1. $WEBAWESOME_NPM_TOKEN environment variable (CI/CD)\n * 2. Global ~/.npmrc (local development)\n * 3. Project .env file (backwards compatible)\n *\n * EXPORTS:\n * - detectTier() - Async tier detection (PREFERRED)\n * - detectTierSync() - Sync version (use only when absolutely necessary)\n * - getProToken() - Get token from any source\n * - getWebAwesomePackage() - Get npm package name for tier\n *\n * @see AGENTS.md Rule #8 for tier system architecture\n */\n\nimport fs from 'fs-extra';\nimport path from 'path';\nimport { z } from 'zod';\nimport {\n WEB_AWESOME_FREE_PACKAGE,\n WEB_AWESOME_PRO_PACKAGE,\n} from '../constants.js';\nimport { detectProToken, detectProTokenSync } from './token.js';\n\nexport const tierSchema = z.enum(['free', 'pro'], {\n error: () => 'Must be either \"free\" or \"pro\"',\n});\n\nexport type Tier = z.infer<typeof tierSchema>;\n\n/**\n * Detect tier based on installed package\n *\n * Checks package.json to see if @awesome.me/webawesome-pro is installed.\n * Falls back to token detection if package.json doesn't exist.\n *\n * @param cwd - Current working directory\n * @returns 'pro' if webawesome-pro is installed, 'free' otherwise\n */\nexport async function detectTier(cwd: string): Promise<Tier> {\n // First check package.json for installed package\n const packageJsonPath = path.join(cwd, 'package.json');\n if (await fs.pathExists(packageJsonPath)) {\n try {\n const packageJson = await fs.readJson(packageJsonPath);\n const deps = {\n ...packageJson.dependencies,\n ...packageJson.devDependencies,\n };\n\n // If webawesome-pro is installed, it's Pro tier\n if (deps[WEB_AWESOME_PRO_PACKAGE]) {\n return 'pro';\n }\n\n // If webawesome (free) is installed, it's Free tier\n if (deps[WEB_AWESOME_FREE_PACKAGE]) {\n return 'free';\n }\n } catch (_error) {\n // Ignore JSON parse errors, fall through to token detection\n }\n }\n\n // Fallback to token detection (for init command or if no package installed yet)\n const token = await detectProToken(cwd);\n return token ? 'pro' : 'free';\n}\n\n/**\n * Synchronous version of detectTier\n *\n * WHY: Some code paths (e.g., validators) need synchronous tier detection.\n * Prefer detectTier() when possible.\n */\nexport function detectTierSync(cwd: string): Tier {\n // First check package.json for installed package\n const packageJsonPath = path.join(cwd, 'package.json');\n if (fs.pathExistsSync(packageJsonPath)) {\n try {\n const packageJson = fs.readJsonSync(packageJsonPath);\n const deps = {\n ...packageJson.dependencies,\n ...packageJson.devDependencies,\n };\n\n // If webawesome-pro is installed, it's Pro tier\n if (deps[WEB_AWESOME_PRO_PACKAGE]) {\n return 'pro';\n }\n\n // If webawesome (free) is installed, it's Free tier\n if (deps[WEB_AWESOME_FREE_PACKAGE]) {\n return 'free';\n }\n } catch (_error) {\n // Ignore JSON parse errors, fall through to token detection\n }\n }\n\n // Fallback to token detection (for init command or if no package installed yet)\n const token = detectProTokenSync(cwd);\n return token ? 'pro' : 'free';\n}\n\n/**\n * Get Pro token from fallback chain\n *\n * @param cwd - Current working directory\n * @returns Token string if found, null otherwise\n */\nexport async function getProToken(cwd: string): Promise<string | null> {\n return detectProToken(cwd);\n}\n\n/**\n * Get package name based on tier\n *\n * @param tier - 'free' or 'pro'\n * @returns Full npm package name\n */\nexport function getWebAwesomePackage(tier: Tier): string {\n return tier === 'pro' ? WEB_AWESOME_PRO_PACKAGE : WEB_AWESOME_FREE_PACKAGE;\n}\n","/**\n * Central Constants for Kigumi CLI\n *\n * PURPOSE: Single source of truth for magic strings and configuration values.\n * Changes here propagate to the entire codebase.\n *\n * @see AGENTS.md for usage context\n */\n\n// =============================================================================\n// Package Names\n// =============================================================================\n\n/** Free tier npm package name */\nexport const WEB_AWESOME_FREE_PACKAGE = '@awesome.me/webawesome';\n\n/** Pro tier npm package name */\nexport const WEB_AWESOME_PRO_PACKAGE = '@awesome.me/webawesome-pro';\n\n/** Scope for Web Awesome packages */\nexport const WEB_AWESOME_SCOPE = '@awesome.me';\n\n// =============================================================================\n// Web Component Configuration\n// =============================================================================\n\n/** Prefix for all Web Awesome custom elements (e.g., wa-button, wa-card) */\nexport const WEB_COMPONENT_PREFIX = 'wa-';\n\n// =============================================================================\n// Environment Variables\n// =============================================================================\n\n/** Environment variable key for Pro tier authentication token */\nexport const ENV_TOKEN_KEY = 'WEBAWESOME_NPM_TOKEN';\n\n/**\n * Minimum valid token length for Pro tier\n *\n * WHY: Cloudsmith tokens are typically 40+ chars. 10 is a safety threshold\n * to avoid accepting malformed/empty values like \"=\" or \"token\".\n */\nexport const MIN_TOKEN_LENGTH = 10;\n\n// =============================================================================\n// File Names\n// =============================================================================\n\n/** Kigumi configuration file name */\nexport const CONFIG_FILE_NAME = 'kigumi.config.json';\n\n/** Environment variables file name */\nexport const ENV_FILE_NAME = '.env';\n\n/** NPM registry configuration file name */\nexport const NPMRC_FILE_NAME = '.npmrc';\n\n/** Kigumi setup file (generated) */\nexport const KIGUMI_SETUP_FILE = 'kigumi.ts';\n\n/** Theme CSS file (generated) */\nexport const THEME_CSS_FILE = 'theme.css';\n\n/** Vite environment types file */\nexport const VITE_ENV_DTS_FILE = 'vite-env.d.ts';\n\n// =============================================================================\n// NPM Registry URLs\n// =============================================================================\n\n/** Public npm registry for Free tier */\nexport const NPM_PUBLIC_REGISTRY = 'https://registry.npmjs.org/';\n\n/** Cloudsmith registry for Pro tier */\nexport const NPM_PRO_REGISTRY =\n 'https://npm.cloudsmith.io/fortawesome/webawesome-pro';\n\n// =============================================================================\n// Regex Patterns\n// =============================================================================\n\n/**\n * Regex to match Free package imports\n * WHY: Matches @awesome.me/webawesome but NOT @awesome.me/webawesome-pro\n */\nexport const FREE_PACKAGE_REGEX = /@awesome\\.me\\/webawesome(?!-pro)/g;\n\n/**\n * Regex to match Pro package imports\n */\nexport const PRO_PACKAGE_REGEX = /@awesome\\.me\\/webawesome-pro/g;\n\n/**\n * Non-global patterns for .test() usage in loops.\n * WHY: The /g flag on module-level singletons causes lastIndex state to\n * persist between calls, making every other file in a loop silently skip.\n * Use these for .test(); use FREE_PACKAGE_REGEX / PRO_PACKAGE_REGEX for .replace().\n */\nexport const FREE_PACKAGE_PATTERN = /@awesome\\.me\\/webawesome(?!-pro)/;\nexport const PRO_PACKAGE_PATTERN = /@awesome\\.me\\/webawesome-pro/;\n\n/**\n * Regex to extract token from .env file\n * WHY: Matches WEBAWESOME_NPM_TOKEN with optional whitespace around =\n */\nexport const ENV_TOKEN_REGEX = /^\\s*WEBAWESOME_NPM_TOKEN\\s*=\\s*(.+?)\\s*$/m;\n\n// =============================================================================\n// Default Paths\n// =============================================================================\n\n/** Default components directory */\nexport const DEFAULT_COMPONENTS_DIR = 'src/components/ui';\n\n/** Default utils/lib directory */\nexport const DEFAULT_UTILS_DIR = 'src/lib';\n\n/** Default styles directory */\nexport const DEFAULT_STYLES_DIR = 'src/styles';\n\n// =============================================================================\n// Exit Codes\n// =============================================================================\n\n/** Successful exit */\nexport const EXIT_SUCCESS = 0;\n\n/** Error exit */\nexport const EXIT_ERROR = 1;\n\n// =============================================================================\n// Timeouts\n// =============================================================================\n\n/** Install command timeout in milliseconds (5 minutes) */\nexport const INSTALL_TIMEOUT_MS = 300_000;\n\n// =============================================================================\n// Web Awesome Version\n// =============================================================================\n\n/** Default Web Awesome package version */\nexport const DEFAULT_WEBAWESOME_VERSION = '^3.5.0';\n\n// =============================================================================\n// Community Registry\n// =============================================================================\n\n/** GitHub raw content base URL */\nexport const GITHUB_RAW_BASE_URL = 'https://raw.githubusercontent.com';\n\n/** Kigumi cache directory (relative to home dir) */\nexport const KIGUMI_CACHE_DIR = '.kigumi/cache';\n\n/** Registry cache TTL in milliseconds (1 hour) */\nexport const REGISTRY_CACHE_TTL_MS = 3_600_000;\n\n/** Community registry file name */\nexport const REGISTRY_FILE_NAME = 'registry.json';\n\n// =============================================================================\n// Update Check\n// =============================================================================\n\n/** NPM registry URL for checking latest CLI version */\nexport const NPM_REGISTRY_URL = 'https://registry.npmjs.org/kigumi/latest';\n\n/** Update check cache TTL in milliseconds (24 hours) */\nexport const UPDATE_CHECK_CACHE_TTL_MS = 86_400_000;\n\n/** Update check fetch timeout in milliseconds (3 seconds) */\nexport const UPDATE_CHECK_TIMEOUT_MS = 3_000;\n\n/** Update check cache file name (within KIGUMI_CACHE_DIR) */\nexport const UPDATE_CHECK_CACHE_FILE = 'update-check.json';\n\n// =============================================================================\n// GitHub Repository\n// =============================================================================\n\n/** GitHub repository URL */\nexport const GITHUB_REPO_URL = 'https://github.com/Siregar/kigumi-cli';\n\n/** GitHub issues URL for bug reports */\nexport const GITHUB_ISSUES_URL = `${GITHUB_REPO_URL}/issues`;\n\n// =============================================================================\n// CLI Version\n// =============================================================================\n\nimport { readFileSync } from 'fs';\nimport { dirname, join } from 'path';\nimport { fileURLToPath } from 'url';\n\nconst __constants_filename = fileURLToPath(import.meta.url);\nconst __constants_dirname = dirname(__constants_filename);\nconst __cliPackageJson = JSON.parse(\n readFileSync(join(__constants_dirname, '..', 'package.json'), 'utf-8')\n);\n\n/** Current Kigumi CLI version (read from package.json) */\nexport const CLI_VERSION: string = __cliPackageJson.version;\n","/**\n * Token Detection Utility\n *\n * PURPOSE: Detects Web Awesome Pro token from multiple sources with fallback chain.\n *\n * FALLBACK CHAIN (in priority order):\n * 1. Environment Variable: $WEBAWESOME_NPM_TOKEN (for CI/CD)\n * 2. Global ~/.npmrc (recommended for local development)\n * 3. Project .env file (backwards compatible)\n *\n * EXPORTS:\n * - detectProToken() - Get token from any source\n * - detectProTokenSync() - Sync version\n * - getTokenSource() - Identify where token was found\n *\n * @see AGENTS.md for token handling architecture\n */\n\nimport fs from 'fs-extra';\nimport os from 'os';\nimport path from 'path';\nimport {\n ENV_FILE_NAME,\n ENV_TOKEN_KEY,\n ENV_TOKEN_REGEX,\n MIN_TOKEN_LENGTH,\n NPM_PRO_REGISTRY,\n} from '../constants.js';\n\nexport type TokenSource = 'env' | 'npmrc' | 'dotenv' | null;\n\ninterface TokenResult {\n token: string | null;\n source: TokenSource;\n}\n\n/**\n * Detect Pro token from fallback chain\n *\n * Priority:\n * 1. $WEBAWESOME_NPM_TOKEN environment variable\n * 2. Global ~/.npmrc (//npm.cloudsmith.io/.../webawesome-pro/:_authToken)\n * 3. Project .env file\n *\n * @param cwd - Current working directory (for .env lookup)\n * @returns Token string if found, null otherwise\n */\nexport async function detectProToken(cwd: string): Promise<string | null> {\n const result = await detectProTokenWithSource(cwd);\n return result.token;\n}\n\n/**\n * Synchronous version of detectProToken\n */\nexport function detectProTokenSync(cwd: string): string | null {\n const result = detectProTokenWithSourceSync(cwd);\n return result.token;\n}\n\n/**\n * Get token source without returning the actual token\n *\n * Useful for displaying where the token was found without exposing it.\n *\n * @param cwd - Current working directory\n * @returns Source identifier or null\n */\nexport async function getTokenSource(cwd: string): Promise<TokenSource> {\n const result = await detectProTokenWithSource(cwd);\n return result.source;\n}\n\n/**\n * Synchronous version of getTokenSource\n */\nexport function getTokenSourceSync(cwd: string): TokenSource {\n const result = detectProTokenWithSourceSync(cwd);\n return result.source;\n}\n\n/**\n * Internal: Detect token with source information (async)\n */\nasync function detectProTokenWithSource(cwd: string): Promise<TokenResult> {\n // 1. Check environment variable first (CI/CD priority)\n const envToken = getTokenFromEnvVar();\n if (envToken) {\n return { token: envToken, source: 'env' };\n }\n\n // 2. Check global ~/.npmrc (skip in tests if env var set)\n if (!process.env.KIGUMI_SKIP_GLOBAL_NPMRC) {\n const npmrcToken = await getTokenFromGlobalNpmrc();\n if (npmrcToken) {\n return { token: npmrcToken, source: 'npmrc' };\n }\n }\n\n // 3. Check project .env file (backwards compatible)\n const dotenvToken = await getTokenFromDotenv(cwd);\n if (dotenvToken) {\n return { token: dotenvToken, source: 'dotenv' };\n }\n\n return { token: null, source: null };\n}\n\n/**\n * Internal: Detect token with source information (sync)\n */\nfunction detectProTokenWithSourceSync(cwd: string): TokenResult {\n // 1. Check environment variable first\n const envToken = getTokenFromEnvVar();\n if (envToken) {\n return { token: envToken, source: 'env' };\n }\n\n // 2. Check global ~/.npmrc (skip in tests if env var set)\n if (!process.env.KIGUMI_SKIP_GLOBAL_NPMRC) {\n const npmrcToken = getTokenFromGlobalNpmrcSync();\n if (npmrcToken) {\n return { token: npmrcToken, source: 'npmrc' };\n }\n }\n\n // 3. Check project .env file\n const dotenvToken = getTokenFromDotenvSync(cwd);\n if (dotenvToken) {\n return { token: dotenvToken, source: 'dotenv' };\n }\n\n return { token: null, source: null };\n}\n\n/**\n * Get token from environment variable\n */\nfunction getTokenFromEnvVar(): string | null {\n const token = process.env[ENV_TOKEN_KEY];\n if (token && token.length >= MIN_TOKEN_LENGTH) {\n return token.trim();\n }\n return null;\n}\n\n/**\n * Get token from global ~/.npmrc (async)\n *\n * Looks for: //npm.cloudsmith.io/fortawesome/webawesome-pro/:_authToken=TOKEN\n */\nasync function getTokenFromGlobalNpmrc(): Promise<string | null> {\n const npmrcPath = path.join(os.homedir(), '.npmrc');\n\n if (!(await fs.pathExists(npmrcPath))) {\n return null;\n }\n\n const content = await fs.readFile(npmrcPath, 'utf-8');\n return extractTokenFromNpmrc(content);\n}\n\n/**\n * Get token from global ~/.npmrc (sync)\n */\nfunction getTokenFromGlobalNpmrcSync(): string | null {\n const npmrcPath = path.join(os.homedir(), '.npmrc');\n\n if (!fs.existsSync(npmrcPath)) {\n return null;\n }\n\n const content = fs.readFileSync(npmrcPath, 'utf-8');\n return extractTokenFromNpmrc(content);\n}\n\n/**\n * Extract auth token from npmrc content\n *\n * Matches patterns like:\n * - //npm.cloudsmith.io/fortawesome/webawesome-pro/:_authToken=TOKEN\n * - //npm.cloudsmith.io/fortawesome/webawesome-pro:_authToken=TOKEN\n */\nfunction extractTokenFromNpmrc(content: string): string | null {\n // Extract registry host from NPM_PRO_REGISTRY (remove https://)\n const registryHost = NPM_PRO_REGISTRY.replace('https://', '');\n\n // Match auth token for the Pro registry\n // Supports both //:_authToken and :_authToken patterns\n const patterns = [\n new RegExp(`//${registryHost}/?:_authToken=(.+)`, 'm'),\n new RegExp(`${registryHost}/?:_authToken=(.+)`, 'm'),\n ];\n\n for (const pattern of patterns) {\n const match = content.match(pattern);\n if (match && match[1]) {\n const token = match[1].trim();\n if (token.length >= MIN_TOKEN_LENGTH) {\n return token;\n }\n }\n }\n\n return null;\n}\n\n/**\n * Get token from project .env file (async)\n */\nasync function getTokenFromDotenv(cwd: string): Promise<string | null> {\n const envPath = path.join(cwd, ENV_FILE_NAME);\n\n if (!(await fs.pathExists(envPath))) {\n return null;\n }\n\n const content = await fs.readFile(envPath, 'utf-8');\n return extractTokenFromDotenv(content);\n}\n\n/**\n * Get token from project .env file (sync)\n */\nfunction getTokenFromDotenvSync(cwd: string): string | null {\n const envPath = path.join(cwd, ENV_FILE_NAME);\n\n if (!fs.existsSync(envPath)) {\n return null;\n }\n\n const content = fs.readFileSync(envPath, 'utf-8');\n return extractTokenFromDotenv(content);\n}\n\n/**\n * Extract token from .env content\n */\nfunction extractTokenFromDotenv(content: string): string | null {\n const match = content.match(ENV_TOKEN_REGEX);\n if (match && match[1]) {\n const token = match[1].trim();\n if (token.length >= MIN_TOKEN_LENGTH) {\n return token;\n }\n }\n return null;\n}\n\n/**\n * Get human-readable description of token source\n *\n * Useful for user-facing messages.\n */\nexport function describeTokenSource(source: TokenSource): string {\n switch (source) {\n case 'env':\n return `environment variable ($${ENV_TOKEN_KEY})`;\n case 'npmrc':\n return 'global ~/.npmrc';\n case 'dotenv':\n return 'project .env file';\n default:\n return 'unknown';\n }\n}\n"],"mappings":";AAmBA,OAAOA,SAAQ;AACf,OAAOC,WAAU;AACjB,SAAS,SAAS;;;ACyKlB,SAAS,oBAAoB;AAC7B,SAAS,SAAS,YAAY;AAC9B,SAAS,qBAAqB;AAlLvB,IAAM,2BAA2B;AAGjC,IAAM,0BAA0B;AAGhC,IAAM,oBAAoB;AAc1B,IAAM,gBAAgB;AAQtB,IAAM,mBAAmB;AAOzB,IAAM,mBAAmB;AAGzB,IAAM,gBAAgB;AAmBtB,IAAM,sBAAsB;AAG5B,IAAM,mBACX;AAUK,IAAM,qBAAqB;AAK3B,IAAM,oBAAoB;AAQ1B,IAAM,uBAAuB;AAC7B,IAAM,sBAAsB;AAM5B,IAAM,kBAAkB;AAqCxB,IAAM,6BAA6B;AAOnC,IAAM,sBAAsB;AAG5B,IAAM,mBAAmB;AAGzB,IAAM,wBAAwB;AAG9B,IAAM,qBAAqB;AAO3B,IAAM,mBAAmB;AAGzB,IAAM,4BAA4B;AAGlC,IAAM,0BAA0B;AAGhC,IAAM,0BAA0B;AAOhC,IAAM,kBAAkB;AAGxB,IAAM,oBAAoB,GAAG,eAAe;AAUnD,IAAM,uBAAuB,cAAc,YAAY,GAAG;AAC1D,IAAM,sBAAsB,QAAQ,oBAAoB;AACxD,IAAM,mBAAmB,KAAK;AAAA,EAC5B,aAAa,KAAK,qBAAqB,MAAM,cAAc,GAAG,OAAO;AACvE;AAGO,IAAM,cAAsB,iBAAiB;;;ACvLpD,OAAO,QAAQ;AACf,OAAO,QAAQ;AACf,OAAO,UAAU;AA2BjB,eAAsB,eAAe,KAAqC;AACxE,QAAM,SAAS,MAAM,yBAAyB,GAAG;AACjD,SAAO,OAAO;AAChB;AAKO,SAAS,mBAAmB,KAA4B;AAC7D,QAAM,SAAS,6BAA6B,GAAG;AAC/C,SAAO,OAAO;AAChB;AAkBO,SAAS,mBAAmB,KAA0B;AAC3D,QAAM,SAAS,6BAA6B,GAAG;AAC/C,SAAO,OAAO;AAChB;AAKA,eAAe,yBAAyB,KAAmC;AAEzE,QAAM,WAAW,mBAAmB;AACpC,MAAI,UAAU;AACZ,WAAO,EAAE,OAAO,UAAU,QAAQ,MAAM;AAAA,EAC1C;AAGA,MAAI,CAAC,QAAQ,IAAI,0BAA0B;AACzC,UAAM,aAAa,MAAM,wBAAwB;AACjD,QAAI,YAAY;AACd,aAAO,EAAE,OAAO,YAAY,QAAQ,QAAQ;AAAA,IAC9C;AAAA,EACF;AAGA,QAAM,cAAc,MAAM,mBAAmB,GAAG;AAChD,MAAI,aAAa;AACf,WAAO,EAAE,OAAO,aAAa,QAAQ,SAAS;AAAA,EAChD;AAEA,SAAO,EAAE,OAAO,MAAM,QAAQ,KAAK;AACrC;AAKA,SAAS,6BAA6B,KAA0B;AAE9D,QAAM,WAAW,mBAAmB;AACpC,MAAI,UAAU;AACZ,WAAO,EAAE,OAAO,UAAU,QAAQ,MAAM;AAAA,EAC1C;AAGA,MAAI,CAAC,QAAQ,IAAI,0BAA0B;AACzC,UAAM,aAAa,4BAA4B;AAC/C,QAAI,YAAY;AACd,aAAO,EAAE,OAAO,YAAY,QAAQ,QAAQ;AAAA,IAC9C;AAAA,EACF;AAGA,QAAM,cAAc,uBAAuB,GAAG;AAC9C,MAAI,aAAa;AACf,WAAO,EAAE,OAAO,aAAa,QAAQ,SAAS;AAAA,EAChD;AAEA,SAAO,EAAE,OAAO,MAAM,QAAQ,KAAK;AACrC;AAKA,SAAS,qBAAoC;AAC3C,QAAM,QAAQ,QAAQ,IAAI,aAAa;AACvC,MAAI,SAAS,MAAM,UAAU,kBAAkB;AAC7C,WAAO,MAAM,KAAK;AAAA,EACpB;AACA,SAAO;AACT;AAOA,eAAe,0BAAkD;AAC/D,QAAM,YAAY,KAAK,KAAK,GAAG,QAAQ,GAAG,QAAQ;AAElD,MAAI,CAAE,MAAM,GAAG,WAAW,SAAS,GAAI;AACrC,WAAO;AAAA,EACT;AAEA,QAAM,UAAU,MAAM,GAAG,SAAS,WAAW,OAAO;AACpD,SAAO,sBAAsB,OAAO;AACtC;AAKA,SAAS,8BAA6C;AACpD,QAAM,YAAY,KAAK,KAAK,GAAG,QAAQ,GAAG,QAAQ;AAElD,MAAI,CAAC,GAAG,WAAW,SAAS,GAAG;AAC7B,WAAO;AAAA,EACT;AAEA,QAAM,UAAU,GAAG,aAAa,WAAW,OAAO;AAClD,SAAO,sBAAsB,OAAO;AACtC;AASA,SAAS,sBAAsB,SAAgC;AAE7D,QAAM,eAAe,iBAAiB,QAAQ,YAAY,EAAE;AAI5D,QAAM,WAAW;AAAA,IACf,IAAI,OAAO,KAAK,YAAY,sBAAsB,GAAG;AAAA,IACrD,IAAI,OAAO,GAAG,YAAY,sBAAsB,GAAG;AAAA,EACrD;AAEA,aAAW,WAAW,UAAU;AAC9B,UAAM,QAAQ,QAAQ,MAAM,OAAO;AACnC,QAAI,SAAS,MAAM,CAAC,GAAG;AACrB,YAAM,QAAQ,MAAM,CAAC,EAAE,KAAK;AAC5B,UAAI,MAAM,UAAU,kBAAkB;AACpC,eAAO;AAAA,MACT;AAAA,IACF;AAAA,EACF;AAEA,SAAO;AACT;AAKA,eAAe,mBAAmB,KAAqC;AACrE,QAAM,UAAU,KAAK,KAAK,KAAK,aAAa;AAE5C,MAAI,CAAE,MAAM,GAAG,WAAW,OAAO,GAAI;AACnC,WAAO;AAAA,EACT;AAEA,QAAM,UAAU,MAAM,GAAG,SAAS,SAAS,OAAO;AAClD,SAAO,uBAAuB,OAAO;AACvC;AAKA,SAAS,uBAAuB,KAA4B;AAC1D,QAAM,UAAU,KAAK,KAAK,KAAK,aAAa;AAE5C,MAAI,CAAC,GAAG,WAAW,OAAO,GAAG;AAC3B,WAAO;AAAA,EACT;AAEA,QAAM,UAAU,GAAG,aAAa,SAAS,OAAO;AAChD,SAAO,uBAAuB,OAAO;AACvC;AAKA,SAAS,uBAAuB,SAAgC;AAC9D,QAAM,QAAQ,QAAQ,MAAM,eAAe;AAC3C,MAAI,SAAS,MAAM,CAAC,GAAG;AACrB,UAAM,QAAQ,MAAM,CAAC,EAAE,KAAK;AAC5B,QAAI,MAAM,UAAU,kBAAkB;AACpC,aAAO;AAAA,IACT;AAAA,EACF;AACA,SAAO;AACT;AAOO,SAAS,oBAAoB,QAA6B;AAC/D,UAAQ,QAAQ;AAAA,IACd,KAAK;AACH,aAAO,0BAA0B,aAAa;AAAA,IAChD,KAAK;AACH,aAAO;AAAA,IACT,KAAK;AACH,aAAO;AAAA,IACT;AACE,aAAO;AAAA,EACX;AACF;;;AF7OO,IAAM,aAAa,EAAE,KAAK,CAAC,QAAQ,KAAK,GAAG;AAAA,EAChD,OAAO,MAAM;AACf,CAAC;AAaD,eAAsB,WAAW,KAA4B;AAE3D,QAAM,kBAAkBC,MAAK,KAAK,KAAK,cAAc;AACrD,MAAI,MAAMC,IAAG,WAAW,eAAe,GAAG;AACxC,QAAI;AACF,YAAM,cAAc,MAAMA,IAAG,SAAS,eAAe;AACrD,YAAM,OAAO;AAAA,QACX,GAAG,YAAY;AAAA,QACf,GAAG,YAAY;AAAA,MACjB;AAGA,UAAI,KAAK,uBAAuB,GAAG;AACjC,eAAO;AAAA,MACT;AAGA,UAAI,KAAK,wBAAwB,GAAG;AAClC,eAAO;AAAA,MACT;AAAA,IACF,SAAS,QAAQ;AAAA,IAEjB;AAAA,EACF;AAGA,QAAM,QAAQ,MAAM,eAAe,GAAG;AACtC,SAAO,QAAQ,QAAQ;AACzB;AAQO,SAAS,eAAe,KAAmB;AAEhD,QAAM,kBAAkBD,MAAK,KAAK,KAAK,cAAc;AACrD,MAAIC,IAAG,eAAe,eAAe,GAAG;AACtC,QAAI;AACF,YAAM,cAAcA,IAAG,aAAa,eAAe;AACnD,YAAM,OAAO;AAAA,QACX,GAAG,YAAY;AAAA,QACf,GAAG,YAAY;AAAA,MACjB;AAGA,UAAI,KAAK,uBAAuB,GAAG;AACjC,eAAO;AAAA,MACT;AAGA,UAAI,KAAK,wBAAwB,GAAG;AAClC,eAAO;AAAA,MACT;AAAA,IACF,SAAS,QAAQ;AAAA,IAEjB;AAAA,EACF;AAGA,QAAM,QAAQ,mBAAmB,GAAG;AACpC,SAAO,QAAQ,QAAQ;AACzB;AAQA,eAAsB,YAAY,KAAqC;AACrE,SAAO,eAAe,GAAG;AAC3B;AAQO,SAAS,qBAAqB,MAAoB;AACvD,SAAO,SAAS,QAAQ,0BAA0B;AACpD;","names":["fs","path","path","fs"]}
|