kigumi 0.19.2 → 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 +1190 -1176
- 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/-KKAC4XOR.js +0 -10054
- package/dist/-KKAC4XOR.js.map +0 -1
- package/dist/chunk-M3CQQOFK.js +0 -1490
- package/dist/chunk-M3CQQOFK.js.map +0 -1
- package/dist/chunk-SV7IPLRK.js +0 -255
- package/dist/chunk-SV7IPLRK.js.map +0 -1
- package/dist/install-CA2HI23T.js +0 -111
- package/dist/install-CA2HI23T.js.map +0 -1
- package/dist/llms.txt +0 -2151
- package/dist/project-config-IZOQXACR.js +0 -249
- package/dist/project-config-IZOQXACR.js.map +0 -1
- package/dist/templates/AGENTS.md +0 -265
- package/dist/templates/angular/AnimatedImage/animated-image.component.css.hbs +0 -7
- package/dist/templates/angular/AnimatedImage/animated-image.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/AnimatedImage/animated-image.component.ts.hbs +0 -67
- package/dist/templates/angular/Animation/animation.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Animation/animation.component.ts.hbs +0 -102
- package/dist/templates/angular/Avatar/avatar.component.css.hbs +0 -7
- package/dist/templates/angular/Avatar/avatar.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Avatar/avatar.component.ts.hbs +0 -69
- package/dist/templates/angular/Badge/badge.component.css.hbs +0 -7
- package/dist/templates/angular/Badge/badge.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Badge/badge.component.ts.hbs +0 -54
- package/dist/templates/angular/BarChart/bar-chart.component.css.hbs +0 -7
- package/dist/templates/angular/BarChart/bar-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/BarChart/bar-chart.component.ts.hbs +0 -84
- package/dist/templates/angular/Breadcrumb/breadcrumb.component.css.hbs +0 -7
- package/dist/templates/angular/Breadcrumb/breadcrumb.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Breadcrumb/breadcrumb.component.ts.hbs +0 -45
- package/dist/templates/angular/BreadcrumbItem/breadcrumb-item.component.css.hbs +0 -7
- package/dist/templates/angular/BreadcrumbItem/breadcrumb-item.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/BreadcrumbItem/breadcrumb-item.component.ts.hbs +0 -51
- package/dist/templates/angular/BubbleChart/bubble-chart.component.css.hbs +0 -7
- package/dist/templates/angular/BubbleChart/bubble-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/BubbleChart/bubble-chart.component.ts.hbs +0 -81
- package/dist/templates/angular/Button/button.component.css.hbs +0 -7
- package/dist/templates/angular/Button/button.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Button/button.component.ts.hbs +0 -138
- package/dist/templates/angular/ButtonGroup/button-group.component.css.hbs +0 -7
- package/dist/templates/angular/ButtonGroup/button-group.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ButtonGroup/button-group.component.ts.hbs +0 -48
- package/dist/templates/angular/Callout/callout.component.css.hbs +0 -7
- package/dist/templates/angular/Callout/callout.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Callout/callout.component.ts.hbs +0 -51
- package/dist/templates/angular/Card/card.component.css.hbs +0 -7
- package/dist/templates/angular/Card/card.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Card/card.component.ts.hbs +0 -57
- package/dist/templates/angular/Carousel/carousel.component.css.hbs +0 -7
- package/dist/templates/angular/Carousel/carousel.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Carousel/carousel.component.ts.hbs +0 -91
- package/dist/templates/angular/CarouselItem/carousel-item.component.css.hbs +0 -7
- package/dist/templates/angular/CarouselItem/carousel-item.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/CarouselItem/carousel-item.component.ts.hbs +0 -42
- package/dist/templates/angular/Chart/chart.component.css.hbs +0 -7
- package/dist/templates/angular/Chart/chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Chart/chart.component.ts.hbs +0 -84
- package/dist/templates/angular/Checkbox/checkbox.component.css.hbs +0 -7
- package/dist/templates/angular/Checkbox/checkbox.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Checkbox/checkbox.component.ts.hbs +0 -151
- package/dist/templates/angular/ColorPicker/color-picker.component.css.hbs +0 -7
- package/dist/templates/angular/ColorPicker/color-picker.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ColorPicker/color-picker.component.ts.hbs +0 -200
- package/dist/templates/angular/Combobox/combobox.component.css.hbs +0 -7
- package/dist/templates/angular/Combobox/combobox.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Combobox/combobox.component.ts.hbs +0 -220
- package/dist/templates/angular/Comparison/comparison.component.css.hbs +0 -7
- package/dist/templates/angular/Comparison/comparison.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Comparison/comparison.component.ts.hbs +0 -57
- package/dist/templates/angular/CopyButton/copy-button.component.css.hbs +0 -7
- package/dist/templates/angular/CopyButton/copy-button.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/CopyButton/copy-button.component.ts.hbs +0 -82
- package/dist/templates/angular/Details/details.component.css.hbs +0 -7
- package/dist/templates/angular/Details/details.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Details/details.component.ts.hbs +0 -91
- package/dist/templates/angular/Dialog/dialog.component.css.hbs +0 -7
- package/dist/templates/angular/Dialog/dialog.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Dialog/dialog.component.ts.hbs +0 -85
- package/dist/templates/angular/Divider/divider.component.css.hbs +0 -7
- package/dist/templates/angular/Divider/divider.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Divider/divider.component.ts.hbs +0 -45
- package/dist/templates/angular/DoughnutChart/doughnut-chart.component.css.hbs +0 -7
- package/dist/templates/angular/DoughnutChart/doughnut-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/DoughnutChart/doughnut-chart.component.ts.hbs +0 -60
- package/dist/templates/angular/Drawer/drawer.component.css.hbs +0 -7
- package/dist/templates/angular/Drawer/drawer.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Drawer/drawer.component.ts.hbs +0 -88
- package/dist/templates/angular/Dropdown/dropdown.component.css.hbs +0 -7
- package/dist/templates/angular/Dropdown/dropdown.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Dropdown/dropdown.component.ts.hbs +0 -94
- package/dist/templates/angular/DropdownItem/dropdown-item.component.css.hbs +0 -7
- package/dist/templates/angular/DropdownItem/dropdown-item.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/DropdownItem/dropdown-item.component.ts.hbs +0 -83
- package/dist/templates/angular/FileInput/file-input.component.css.hbs +0 -7
- package/dist/templates/angular/FileInput/file-input.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/FileInput/file-input.component.ts.hbs +0 -145
- package/dist/templates/angular/FormatBytes/format-bytes.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/FormatBytes/format-bytes.component.ts.hbs +0 -54
- package/dist/templates/angular/FormatDate/format-date.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/FormatDate/format-date.component.ts.hbs +0 -81
- package/dist/templates/angular/FormatNumber/format-number.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/FormatNumber/format-number.component.ts.hbs +0 -75
- package/dist/templates/angular/Icon/icon.component.css.hbs +0 -7
- package/dist/templates/angular/Icon/icon.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Icon/icon.component.ts.hbs +0 -91
- package/dist/templates/angular/Include/include.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Include/include.component.ts.hbs +0 -67
- package/dist/templates/angular/Input/input.component.css.hbs +0 -7
- package/dist/templates/angular/Input/input.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Input/input.component.ts.hbs +0 -230
- package/dist/templates/angular/IntersectionObserver/intersection-observer.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/IntersectionObserver/intersection-observer.component.ts.hbs +0 -69
- package/dist/templates/angular/LineChart/line-chart.component.css.hbs +0 -7
- package/dist/templates/angular/LineChart/line-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/LineChart/line-chart.component.ts.hbs +0 -81
- package/dist/templates/angular/Markdown/markdown.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Markdown/markdown.component.ts.hbs +0 -61
- package/dist/templates/angular/MutationObserver/mutation-observer.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/MutationObserver/mutation-observer.component.ts.hbs +0 -75
- package/dist/templates/angular/NumberInput/number-input.component.css.hbs +0 -7
- package/dist/templates/angular/NumberInput/number-input.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/NumberInput/number-input.component.ts.hbs +0 -169
- package/dist/templates/angular/Option/option.component.css.hbs +0 -7
- package/dist/templates/angular/Option/option.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Option/option.component.ts.hbs +0 -54
- package/dist/templates/angular/Page/page.component.css.hbs +0 -7
- package/dist/templates/angular/Page/page.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Page/page.component.ts.hbs +0 -70
- package/dist/templates/angular/PieChart/pie-chart.component.css.hbs +0 -7
- package/dist/templates/angular/PieChart/pie-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/PieChart/pie-chart.component.ts.hbs +0 -60
- package/dist/templates/angular/PolarAreaChart/polar-area-chart.component.css.hbs +0 -7
- package/dist/templates/angular/PolarAreaChart/polar-area-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/PolarAreaChart/polar-area-chart.component.ts.hbs +0 -60
- package/dist/templates/angular/Popover/popover.component.css.hbs +0 -7
- package/dist/templates/angular/Popover/popover.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Popover/popover.component.ts.hbs +0 -100
- package/dist/templates/angular/Popup/popup.component.css.hbs +0 -7
- package/dist/templates/angular/Popup/popup.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Popup/popup.component.ts.hbs +0 -112
- package/dist/templates/angular/ProgressBar/progress-bar.component.css.hbs +0 -7
- package/dist/templates/angular/ProgressBar/progress-bar.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ProgressBar/progress-bar.component.ts.hbs +0 -51
- package/dist/templates/angular/ProgressRing/progress-ring.component.css.hbs +0 -7
- package/dist/templates/angular/ProgressRing/progress-ring.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ProgressRing/progress-ring.component.ts.hbs +0 -48
- package/dist/templates/angular/QrCode/qr-code.component.css.hbs +0 -7
- package/dist/templates/angular/QrCode/qr-code.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/QrCode/qr-code.component.ts.hbs +0 -63
- package/dist/templates/angular/RadarChart/radar-chart.component.css.hbs +0 -7
- package/dist/templates/angular/RadarChart/radar-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/RadarChart/radar-chart.component.ts.hbs +0 -72
- package/dist/templates/angular/Radio/radio.component.css.hbs +0 -7
- package/dist/templates/angular/Radio/radio.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Radio/radio.component.ts.hbs +0 -80
- package/dist/templates/angular/RadioGroup/radio-group.component.css.hbs +0 -7
- package/dist/templates/angular/RadioGroup/radio-group.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/RadioGroup/radio-group.component.ts.hbs +0 -143
- package/dist/templates/angular/Rating/rating.component.css.hbs +0 -7
- package/dist/templates/angular/Rating/rating.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Rating/rating.component.ts.hbs +0 -137
- package/dist/templates/angular/RelativeTime/relative-time.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/RelativeTime/relative-time.component.ts.hbs +0 -57
- package/dist/templates/angular/ResizeObserver/resize-observer.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ResizeObserver/resize-observer.component.ts.hbs +0 -57
- package/dist/templates/angular/ScatterChart/scatter-chart.component.css.hbs +0 -7
- package/dist/templates/angular/ScatterChart/scatter-chart.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ScatterChart/scatter-chart.component.ts.hbs +0 -75
- package/dist/templates/angular/Scroller/scroller.component.css.hbs +0 -7
- package/dist/templates/angular/Scroller/scroller.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Scroller/scroller.component.ts.hbs +0 -54
- package/dist/templates/angular/Select/select.component.css.hbs +0 -7
- package/dist/templates/angular/Select/select.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Select/select.component.ts.hbs +0 -204
- package/dist/templates/angular/Skeleton/skeleton.component.css.hbs +0 -7
- package/dist/templates/angular/Skeleton/skeleton.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Skeleton/skeleton.component.ts.hbs +0 -45
- package/dist/templates/angular/Slider/slider.component.css.hbs +0 -7
- package/dist/templates/angular/Slider/slider.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Slider/slider.component.ts.hbs +0 -175
- package/dist/templates/angular/Sparkline/sparkline.component.css.hbs +0 -7
- package/dist/templates/angular/Sparkline/sparkline.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Sparkline/sparkline.component.ts.hbs +0 -57
- package/dist/templates/angular/Spinner/spinner.component.css.hbs +0 -7
- package/dist/templates/angular/Spinner/spinner.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Spinner/spinner.component.ts.hbs +0 -42
- package/dist/templates/angular/SplitPanel/split-panel.component.css.hbs +0 -7
- package/dist/templates/angular/SplitPanel/split-panel.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/SplitPanel/split-panel.component.ts.hbs +0 -75
- package/dist/templates/angular/Switch/switch.component.css.hbs +0 -7
- package/dist/templates/angular/Switch/switch.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Switch/switch.component.ts.hbs +0 -148
- package/dist/templates/angular/Tab/tab.component.css.hbs +0 -7
- package/dist/templates/angular/Tab/tab.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Tab/tab.component.ts.hbs +0 -48
- package/dist/templates/angular/TabGroup/tab-group.component.css.hbs +0 -7
- package/dist/templates/angular/TabGroup/tab-group.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/TabGroup/tab-group.component.ts.hbs +0 -70
- package/dist/templates/angular/TabPanel/tab-panel.component.css.hbs +0 -7
- package/dist/templates/angular/TabPanel/tab-panel.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/TabPanel/tab-panel.component.ts.hbs +0 -48
- package/dist/templates/angular/Tag/tag.component.css.hbs +0 -7
- package/dist/templates/angular/Tag/tag.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Tag/tag.component.ts.hbs +0 -69
- package/dist/templates/angular/Textarea/textarea.component.css.hbs +0 -7
- package/dist/templates/angular/Textarea/textarea.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Textarea/textarea.component.ts.hbs +0 -184
- package/dist/templates/angular/Toast/toast.component.css.hbs +0 -7
- package/dist/templates/angular/Toast/toast.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Toast/toast.component.ts.hbs +0 -49
- package/dist/templates/angular/ToastItem/toast-item.component.css.hbs +0 -7
- package/dist/templates/angular/ToastItem/toast-item.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ToastItem/toast-item.component.ts.hbs +0 -79
- package/dist/templates/angular/Tooltip/tooltip.component.css.hbs +0 -7
- package/dist/templates/angular/Tooltip/tooltip.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Tooltip/tooltip.component.ts.hbs +0 -103
- package/dist/templates/angular/Tree/tree.component.css.hbs +0 -7
- package/dist/templates/angular/Tree/tree.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/Tree/tree.component.ts.hbs +0 -57
- package/dist/templates/angular/TreeItem/tree-item.component.css.hbs +0 -7
- package/dist/templates/angular/TreeItem/tree-item.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/TreeItem/tree-item.component.ts.hbs +0 -91
- package/dist/templates/angular/ZoomableFrame/zoomable-frame.component.css.hbs +0 -7
- package/dist/templates/angular/ZoomableFrame/zoomable-frame.component.spec.ts.hbs +0 -26
- package/dist/templates/angular/ZoomableFrame/zoomable-frame.component.ts.hbs +0 -95
- package/dist/templates/react/AnimatedImage/AnimatedImage.css.hbs +0 -14
- package/dist/templates/react/AnimatedImage/AnimatedImage.jsx.hbs +0 -64
- package/dist/templates/react/AnimatedImage/AnimatedImage.test.tsx.hbs +0 -10
- package/dist/templates/react/AnimatedImage/AnimatedImage.tsx.hbs +0 -91
- package/dist/templates/react/Animation/Animation.css.hbs +0 -7
- package/dist/templates/react/Animation/Animation.jsx.hbs +0 -100
- package/dist/templates/react/Animation/Animation.test.tsx.hbs +0 -10
- package/dist/templates/react/Animation/Animation.tsx.hbs +0 -144
- package/dist/templates/react/Avatar/Avatar.css.hbs +0 -15
- package/dist/templates/react/Avatar/Avatar.jsx.hbs +0 -65
- package/dist/templates/react/Avatar/Avatar.test.tsx.hbs +0 -10
- package/dist/templates/react/Avatar/Avatar.tsx.hbs +0 -88
- package/dist/templates/react/Badge/Badge.css.hbs +0 -13
- package/dist/templates/react/Badge/Badge.jsx.hbs +0 -52
- package/dist/templates/react/Badge/Badge.test.tsx.hbs +0 -10
- package/dist/templates/react/Badge/Badge.tsx.hbs +0 -71
- package/dist/templates/react/BarChart/BarChart.css.hbs +0 -15
- package/dist/templates/react/BarChart/BarChart.jsx.hbs +0 -67
- package/dist/templates/react/BarChart/BarChart.test.tsx.hbs +0 -10
- package/dist/templates/react/BarChart/BarChart.tsx.hbs +0 -101
- package/dist/templates/react/Breadcrumb/Breadcrumb.css.hbs +0 -10
- package/dist/templates/react/Breadcrumb/Breadcrumb.jsx.hbs +0 -48
- package/dist/templates/react/Breadcrumb/Breadcrumb.test.tsx.hbs +0 -10
- package/dist/templates/react/Breadcrumb/Breadcrumb.tsx.hbs +0 -57
- package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -13
- package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.jsx.hbs +0 -55
- package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.test.tsx.hbs +0 -10
- package/dist/templates/react/BreadcrumbItem/BreadcrumbItem.tsx.hbs +0 -63
- package/dist/templates/react/BubbleChart/BubbleChart.css.hbs +0 -15
- package/dist/templates/react/BubbleChart/BubbleChart.jsx.hbs +0 -62
- package/dist/templates/react/BubbleChart/BubbleChart.test.tsx.hbs +0 -10
- package/dist/templates/react/BubbleChart/BubbleChart.tsx.hbs +0 -94
- package/dist/templates/react/Button/Button.css.hbs +0 -15
- package/dist/templates/react/Button/Button.jsx.hbs +0 -113
- package/dist/templates/react/Button/Button.test.tsx.hbs +0 -10
- package/dist/templates/react/Button/Button.tsx.hbs +0 -176
- package/dist/templates/react/ButtonGroup/ButtonGroup.css.hbs +0 -10
- package/dist/templates/react/ButtonGroup/ButtonGroup.jsx.hbs +0 -48
- package/dist/templates/react/ButtonGroup/ButtonGroup.test.tsx.hbs +0 -10
- package/dist/templates/react/ButtonGroup/ButtonGroup.tsx.hbs +0 -60
- package/dist/templates/react/Callout/Callout.css.hbs +0 -11
- package/dist/templates/react/Callout/Callout.jsx.hbs +0 -29
- package/dist/templates/react/Callout/Callout.test.jsx.hbs +0 -27
- package/dist/templates/react/Callout/Callout.test.tsx.hbs +0 -10
- package/dist/templates/react/Callout/Callout.tsx.hbs +0 -63
- package/dist/templates/react/Card/Card.css.hbs +0 -16
- package/dist/templates/react/Card/Card.jsx.hbs +0 -33
- package/dist/templates/react/Card/Card.test.tsx.hbs +0 -10
- package/dist/templates/react/Card/Card.tsx.hbs +0 -69
- package/dist/templates/react/Carousel/Carousel.css.hbs +0 -23
- package/dist/templates/react/Carousel/Carousel.jsx.hbs +0 -81
- package/dist/templates/react/Carousel/Carousel.test.tsx.hbs +0 -10
- package/dist/templates/react/Carousel/Carousel.tsx.hbs +0 -128
- package/dist/templates/react/CarouselItem/CarouselItem.css.hbs +0 -10
- package/dist/templates/react/CarouselItem/CarouselItem.jsx.hbs +0 -28
- package/dist/templates/react/CarouselItem/CarouselItem.test.tsx.hbs +0 -10
- package/dist/templates/react/CarouselItem/CarouselItem.tsx.hbs +0 -53
- package/dist/templates/react/Chart/Chart.css.hbs +0 -17
- package/dist/templates/react/Chart/Chart.jsx.hbs +0 -68
- package/dist/templates/react/Chart/Chart.test.tsx.hbs +0 -10
- package/dist/templates/react/Chart/Chart.tsx.hbs +0 -102
- package/dist/templates/react/Checkbox/Checkbox.css.hbs +0 -19
- package/dist/templates/react/Checkbox/Checkbox.jsx.hbs +0 -80
- package/dist/templates/react/Checkbox/Checkbox.test.tsx.hbs +0 -10
- package/dist/templates/react/Checkbox/Checkbox.tsx.hbs +0 -161
- package/dist/templates/react/ColorPicker/ColorPicker.css.hbs +0 -32
- package/dist/templates/react/ColorPicker/ColorPicker.jsx.hbs +0 -72
- package/dist/templates/react/ColorPicker/ColorPicker.test.tsx.hbs +0 -10
- package/dist/templates/react/ColorPicker/ColorPicker.tsx.hbs +0 -252
- package/dist/templates/react/Combobox/Combobox.css.hbs +0 -29
- package/dist/templates/react/Combobox/Combobox.jsx.hbs +0 -82
- package/dist/templates/react/Combobox/Combobox.test.tsx.hbs +0 -10
- package/dist/templates/react/Combobox/Combobox.tsx.hbs +0 -266
- package/dist/templates/react/Comparison/Comparison.css.hbs +0 -18
- package/dist/templates/react/Comparison/Comparison.jsx.hbs +0 -27
- package/dist/templates/react/Comparison/Comparison.test.tsx.hbs +0 -10
- package/dist/templates/react/Comparison/Comparison.tsx.hbs +0 -76
- package/dist/templates/react/CopyButton/CopyButton.css.hbs +0 -17
- package/dist/templates/react/CopyButton/CopyButton.jsx.hbs +0 -49
- package/dist/templates/react/CopyButton/CopyButton.test.jsx.hbs +0 -16
- package/dist/templates/react/CopyButton/CopyButton.test.tsx.hbs +0 -10
- package/dist/templates/react/CopyButton/CopyButton.tsx.hbs +0 -106
- package/dist/templates/react/Details/Details.css.hbs +0 -19
- package/dist/templates/react/Details/Details.jsx.hbs +0 -66
- package/dist/templates/react/Details/Details.test.jsx.hbs +0 -27
- package/dist/templates/react/Details/Details.test.tsx.hbs +0 -10
- package/dist/templates/react/Details/Details.tsx.hbs +0 -138
- package/dist/templates/react/Dialog/Dialog.css.hbs +0 -23
- package/dist/templates/react/Dialog/Dialog.jsx.hbs +0 -106
- package/dist/templates/react/Dialog/Dialog.test.jsx.hbs +0 -29
- package/dist/templates/react/Dialog/Dialog.test.tsx.hbs +0 -10
- package/dist/templates/react/Dialog/Dialog.tsx.hbs +0 -153
- package/dist/templates/react/Divider/Divider.css.hbs +0 -12
- package/dist/templates/react/Divider/Divider.jsx.hbs +0 -24
- package/dist/templates/react/Divider/Divider.test.jsx.hbs +0 -16
- package/dist/templates/react/Divider/Divider.test.tsx.hbs +0 -10
- package/dist/templates/react/Divider/Divider.tsx.hbs +0 -64
- package/dist/templates/react/DoughnutChart/DoughnutChart.css.hbs +0 -12
- package/dist/templates/react/DoughnutChart/DoughnutChart.jsx.hbs +0 -56
- package/dist/templates/react/DoughnutChart/DoughnutChart.test.tsx.hbs +0 -10
- package/dist/templates/react/DoughnutChart/DoughnutChart.tsx.hbs +0 -74
- package/dist/templates/react/Drawer/Drawer.css.hbs +0 -23
- package/dist/templates/react/Drawer/Drawer.jsx.hbs +0 -104
- package/dist/templates/react/Drawer/Drawer.test.jsx.hbs +0 -27
- package/dist/templates/react/Drawer/Drawer.test.tsx.hbs +0 -10
- package/dist/templates/react/Drawer/Drawer.tsx.hbs +0 -144
- package/dist/templates/react/Dropdown/Dropdown.css.hbs +0 -15
- package/dist/templates/react/Dropdown/Dropdown.jsx.hbs +0 -78
- package/dist/templates/react/Dropdown/Dropdown.test.tsx.hbs +0 -10
- package/dist/templates/react/Dropdown/Dropdown.tsx.hbs +0 -133
- package/dist/templates/react/DropdownItem/DropdownItem.css.hbs +0 -15
- package/dist/templates/react/DropdownItem/DropdownItem.jsx.hbs +0 -41
- package/dist/templates/react/DropdownItem/DropdownItem.test.tsx.hbs +0 -10
- package/dist/templates/react/DropdownItem/DropdownItem.tsx.hbs +0 -120
- package/dist/templates/react/FileInput/FileInput.css.hbs +0 -24
- package/dist/templates/react/FileInput/FileInput.jsx.hbs +0 -111
- package/dist/templates/react/FileInput/FileInput.test.tsx.hbs +0 -10
- package/dist/templates/react/FileInput/FileInput.tsx.hbs +0 -151
- package/dist/templates/react/FormatBytes/FormatBytes.css.hbs +0 -7
- package/dist/templates/react/FormatBytes/FormatBytes.jsx.hbs +0 -25
- package/dist/templates/react/FormatBytes/FormatBytes.test.jsx.hbs +0 -16
- package/dist/templates/react/FormatBytes/FormatBytes.test.tsx.hbs +0 -10
- package/dist/templates/react/FormatBytes/FormatBytes.tsx.hbs +0 -73
- package/dist/templates/react/FormatDate/FormatDate.css.hbs +0 -7
- package/dist/templates/react/FormatDate/FormatDate.jsx.hbs +0 -18
- package/dist/templates/react/FormatDate/FormatDate.test.tsx.hbs +0 -10
- package/dist/templates/react/FormatDate/FormatDate.tsx.hbs +0 -102
- package/dist/templates/react/FormatNumber/FormatNumber.css.hbs +0 -7
- package/dist/templates/react/FormatNumber/FormatNumber.jsx.hbs +0 -18
- package/dist/templates/react/FormatNumber/FormatNumber.test.jsx.hbs +0 -16
- package/dist/templates/react/FormatNumber/FormatNumber.test.tsx.hbs +0 -10
- package/dist/templates/react/FormatNumber/FormatNumber.tsx.hbs +0 -94
- package/dist/templates/react/Icon/Icon.css.hbs +0 -38
- package/dist/templates/react/Icon/Icon.jsx.hbs +0 -86
- package/dist/templates/react/Icon/Icon.test.jsx.hbs +0 -35
- package/dist/templates/react/Icon/Icon.test.tsx.hbs +0 -10
- package/dist/templates/react/Icon/Icon.tsx.hbs +0 -115
- package/dist/templates/react/Include/Include.css.hbs +0 -7
- package/dist/templates/react/Include/Include.jsx.hbs +0 -40
- package/dist/templates/react/Include/Include.test.jsx.hbs +0 -16
- package/dist/templates/react/Include/Include.test.tsx.hbs +0 -10
- package/dist/templates/react/Include/Include.tsx.hbs +0 -91
- package/dist/templates/react/Input/Input.css.hbs +0 -17
- package/dist/templates/react/Input/Input.jsx.hbs +0 -144
- package/dist/templates/react/Input/Input.test.tsx.hbs +0 -10
- package/dist/templates/react/Input/Input.tsx.hbs +0 -270
- package/dist/templates/react/IntersectionObserver/IntersectionObserver.css.hbs +0 -7
- package/dist/templates/react/IntersectionObserver/IntersectionObserver.jsx.hbs +0 -38
- package/dist/templates/react/IntersectionObserver/IntersectionObserver.test.jsx.hbs +0 -15
- package/dist/templates/react/IntersectionObserver/IntersectionObserver.test.tsx.hbs +0 -10
- package/dist/templates/react/IntersectionObserver/IntersectionObserver.tsx.hbs +0 -88
- package/dist/templates/react/LineChart/LineChart.css.hbs +0 -15
- package/dist/templates/react/LineChart/LineChart.jsx.hbs +0 -66
- package/dist/templates/react/LineChart/LineChart.test.tsx.hbs +0 -10
- package/dist/templates/react/LineChart/LineChart.tsx.hbs +0 -98
- package/dist/templates/react/Markdown/Markdown.css.hbs +0 -10
- package/dist/templates/react/Markdown/Markdown.jsx.hbs +0 -20
- package/dist/templates/react/Markdown/Markdown.test.tsx.hbs +0 -10
- package/dist/templates/react/Markdown/Markdown.tsx.hbs +0 -86
- package/dist/templates/react/MutationObserver/MutationObserver.css.hbs +0 -7
- package/dist/templates/react/MutationObserver/MutationObserver.jsx.hbs +0 -38
- package/dist/templates/react/MutationObserver/MutationObserver.test.tsx.hbs +0 -10
- package/dist/templates/react/MutationObserver/MutationObserver.tsx.hbs +0 -94
- package/dist/templates/react/NumberInput/NumberInput.css.hbs +0 -19
- package/dist/templates/react/NumberInput/NumberInput.jsx.hbs +0 -127
- package/dist/templates/react/NumberInput/NumberInput.test.tsx.hbs +0 -10
- package/dist/templates/react/NumberInput/NumberInput.tsx.hbs +0 -189
- package/dist/templates/react/Option/Option.css.hbs +0 -13
- package/dist/templates/react/Option/Option.jsx.hbs +0 -20
- package/dist/templates/react/Option/Option.test.tsx.hbs +0 -10
- package/dist/templates/react/Option/Option.tsx.hbs +0 -66
- package/dist/templates/react/Page/Page.css.hbs +0 -36
- package/dist/templates/react/Page/Page.jsx.hbs +0 -117
- package/dist/templates/react/Page/Page.test.tsx.hbs +0 -10
- package/dist/templates/react/Page/Page.tsx.hbs +0 -106
- package/dist/templates/react/PieChart/PieChart.css.hbs +0 -12
- package/dist/templates/react/PieChart/PieChart.jsx.hbs +0 -56
- package/dist/templates/react/PieChart/PieChart.test.tsx.hbs +0 -10
- package/dist/templates/react/PieChart/PieChart.tsx.hbs +0 -74
- package/dist/templates/react/PolarAreaChart/PolarAreaChart.css.hbs +0 -13
- package/dist/templates/react/PolarAreaChart/PolarAreaChart.jsx.hbs +0 -56
- package/dist/templates/react/PolarAreaChart/PolarAreaChart.test.tsx.hbs +0 -10
- package/dist/templates/react/PolarAreaChart/PolarAreaChart.tsx.hbs +0 -74
- package/dist/templates/react/Popover/Popover.css.hbs +0 -20
- package/dist/templates/react/Popover/Popover.jsx.hbs +0 -68
- package/dist/templates/react/Popover/Popover.test.tsx.hbs +0 -10
- package/dist/templates/react/Popover/Popover.tsx.hbs +0 -151
- package/dist/templates/react/Popup/Popup.css.hbs +0 -21
- package/dist/templates/react/Popup/Popup.jsx.hbs +0 -45
- package/dist/templates/react/Popup/Popup.test.tsx.hbs +0 -10
- package/dist/templates/react/Popup/Popup.tsx.hbs +0 -139
- package/dist/templates/react/ProgressBar/ProgressBar.css.hbs +0 -17
- package/dist/templates/react/ProgressBar/ProgressBar.jsx.hbs +0 -20
- package/dist/templates/react/ProgressBar/ProgressBar.test.jsx.hbs +0 -16
- package/dist/templates/react/ProgressBar/ProgressBar.test.tsx.hbs +0 -10
- package/dist/templates/react/ProgressBar/ProgressBar.tsx.hbs +0 -63
- package/dist/templates/react/ProgressRing/ProgressRing.css.hbs +0 -21
- package/dist/templates/react/ProgressRing/ProgressRing.jsx.hbs +0 -20
- package/dist/templates/react/ProgressRing/ProgressRing.test.jsx.hbs +0 -16
- package/dist/templates/react/ProgressRing/ProgressRing.test.tsx.hbs +0 -10
- package/dist/templates/react/ProgressRing/ProgressRing.tsx.hbs +0 -60
- package/dist/templates/react/QrCode/QrCode.css.hbs +0 -10
- package/dist/templates/react/QrCode/QrCode.jsx.hbs +0 -18
- package/dist/templates/react/QrCode/QrCode.test.tsx.hbs +0 -10
- package/dist/templates/react/QrCode/QrCode.tsx.hbs +0 -75
- package/dist/templates/react/RadarChart/RadarChart.css.hbs +0 -14
- package/dist/templates/react/RadarChart/RadarChart.jsx.hbs +0 -63
- package/dist/templates/react/RadarChart/RadarChart.test.tsx.hbs +0 -10
- package/dist/templates/react/RadarChart/RadarChart.tsx.hbs +0 -89
- package/dist/templates/react/Radio/Radio.css.hbs +0 -16
- package/dist/templates/react/Radio/Radio.jsx.hbs +0 -20
- package/dist/templates/react/Radio/Radio.test.tsx.hbs +0 -10
- package/dist/templates/react/Radio/Radio.tsx.hbs +0 -94
- package/dist/templates/react/RadioGroup/RadioGroup.css.hbs +0 -14
- package/dist/templates/react/RadioGroup/RadioGroup.jsx.hbs +0 -49
- package/dist/templates/react/RadioGroup/RadioGroup.test.tsx.hbs +0 -10
- package/dist/templates/react/RadioGroup/RadioGroup.tsx.hbs +0 -133
- package/dist/templates/react/Rating/Rating.css.hbs +0 -15
- package/dist/templates/react/Rating/Rating.jsx.hbs +0 -48
- package/dist/templates/react/Rating/Rating.test.tsx.hbs +0 -10
- package/dist/templates/react/Rating/Rating.tsx.hbs +0 -138
- package/dist/templates/react/RelativeTime/RelativeTime.css.hbs +0 -7
- package/dist/templates/react/RelativeTime/RelativeTime.jsx.hbs +0 -18
- package/dist/templates/react/RelativeTime/RelativeTime.test.tsx.hbs +0 -10
- package/dist/templates/react/RelativeTime/RelativeTime.tsx.hbs +0 -74
- package/dist/templates/react/ResizeObserver/ResizeObserver.css.hbs +0 -7
- package/dist/templates/react/ResizeObserver/ResizeObserver.jsx.hbs +0 -38
- package/dist/templates/react/ResizeObserver/ResizeObserver.test.tsx.hbs +0 -10
- package/dist/templates/react/ResizeObserver/ResizeObserver.tsx.hbs +0 -76
- package/dist/templates/react/ScatterChart/ScatterChart.css.hbs +0 -14
- package/dist/templates/react/ScatterChart/ScatterChart.jsx.hbs +0 -60
- package/dist/templates/react/ScatterChart/ScatterChart.test.tsx.hbs +0 -10
- package/dist/templates/react/ScatterChart/ScatterChart.tsx.hbs +0 -88
- package/dist/templates/react/Scroller/Scroller.css.hbs +0 -14
- package/dist/templates/react/Scroller/Scroller.jsx.hbs +0 -20
- package/dist/templates/react/Scroller/Scroller.test.tsx.hbs +0 -10
- package/dist/templates/react/Scroller/Scroller.tsx.hbs +0 -66
- package/dist/templates/react/Select/Select.css.hbs +0 -29
- package/dist/templates/react/Select/Select.jsx.hbs +0 -79
- package/dist/templates/react/Select/Select.test.tsx.hbs +0 -10
- package/dist/templates/react/Select/Select.tsx.hbs +0 -244
- package/dist/templates/react/Skeleton/Skeleton.css.hbs +0 -14
- package/dist/templates/react/Skeleton/Skeleton.jsx.hbs +0 -18
- package/dist/templates/react/Skeleton/Skeleton.test.tsx.hbs +0 -10
- package/dist/templates/react/Skeleton/Skeleton.tsx.hbs +0 -57
- package/dist/templates/react/Slider/Slider.css.hbs +0 -31
- package/dist/templates/react/Slider/Slider.jsx.hbs +0 -50
- package/dist/templates/react/Slider/Slider.test.tsx.hbs +0 -10
- package/dist/templates/react/Slider/Slider.tsx.hbs +0 -189
- package/dist/templates/react/Sparkline/Sparkline.css.hbs +0 -17
- package/dist/templates/react/Sparkline/Sparkline.jsx.hbs +0 -61
- package/dist/templates/react/Sparkline/Sparkline.test.jsx.hbs +0 -15
- package/dist/templates/react/Sparkline/Sparkline.test.tsx.hbs +0 -10
- package/dist/templates/react/Sparkline/Sparkline.tsx.hbs +0 -73
- package/dist/templates/react/Spinner/Spinner.css.hbs +0 -16
- package/dist/templates/react/Spinner/Spinner.jsx.hbs +0 -18
- package/dist/templates/react/Spinner/Spinner.test.tsx.hbs +0 -10
- package/dist/templates/react/Spinner/Spinner.tsx.hbs +0 -53
- package/dist/templates/react/SplitPanel/SplitPanel.css.hbs +0 -19
- package/dist/templates/react/SplitPanel/SplitPanel.jsx.hbs +0 -38
- package/dist/templates/react/SplitPanel/SplitPanel.test.tsx.hbs +0 -10
- package/dist/templates/react/SplitPanel/SplitPanel.tsx.hbs +0 -94
- package/dist/templates/react/Switch/Switch.css.hbs +0 -19
- package/dist/templates/react/Switch/Switch.jsx.hbs +0 -51
- package/dist/templates/react/Switch/Switch.test.tsx.hbs +0 -10
- package/dist/templates/react/Switch/Switch.tsx.hbs +0 -158
- package/dist/templates/react/Tab/Tab.css.hbs +0 -10
- package/dist/templates/react/Tab/Tab.jsx.hbs +0 -20
- package/dist/templates/react/Tab/Tab.test.tsx.hbs +0 -10
- package/dist/templates/react/Tab/Tab.tsx.hbs +0 -60
- package/dist/templates/react/TabGroup/TabGroup.css.hbs +0 -22
- package/dist/templates/react/TabGroup/TabGroup.jsx.hbs +0 -42
- package/dist/templates/react/TabGroup/TabGroup.test.tsx.hbs +0 -10
- package/dist/templates/react/TabGroup/TabGroup.tsx.hbs +0 -94
- package/dist/templates/react/TabPanel/TabPanel.css.hbs +0 -13
- package/dist/templates/react/TabPanel/TabPanel.jsx.hbs +0 -20
- package/dist/templates/react/TabPanel/TabPanel.test.tsx.hbs +0 -10
- package/dist/templates/react/TabPanel/TabPanel.tsx.hbs +0 -60
- package/dist/templates/react/Tag/Tag.css.hbs +0 -13
- package/dist/templates/react/Tag/Tag.jsx.hbs +0 -41
- package/dist/templates/react/Tag/Tag.test.tsx.hbs +0 -10
- package/dist/templates/react/Tag/Tag.tsx.hbs +0 -95
- package/dist/templates/react/Textarea/Textarea.css.hbs +0 -14
- package/dist/templates/react/Textarea/Textarea.jsx.hbs +0 -58
- package/dist/templates/react/Textarea/Textarea.test.tsx.hbs +0 -10
- package/dist/templates/react/Textarea/Textarea.tsx.hbs +0 -209
- package/dist/templates/react/Toast/Toast.css.hbs +0 -14
- package/dist/templates/react/Toast/Toast.jsx.hbs +0 -57
- package/dist/templates/react/Toast/Toast.test.tsx.hbs +0 -10
- package/dist/templates/react/Toast/Toast.tsx.hbs +0 -67
- package/dist/templates/react/ToastItem/ToastItem.css.hbs +0 -21
- package/dist/templates/react/ToastItem/ToastItem.jsx.hbs +0 -82
- package/dist/templates/react/ToastItem/ToastItem.test.jsx.hbs +0 -15
- package/dist/templates/react/ToastItem/ToastItem.test.tsx.hbs +0 -10
- package/dist/templates/react/ToastItem/ToastItem.tsx.hbs +0 -111
- package/dist/templates/react/Tooltip/Tooltip.css.hbs +0 -16
- package/dist/templates/react/Tooltip/Tooltip.jsx.hbs +0 -63
- package/dist/templates/react/Tooltip/Tooltip.test.tsx.hbs +0 -10
- package/dist/templates/react/Tooltip/Tooltip.tsx.hbs +0 -150
- package/dist/templates/react/Tree/Tree.css.hbs +0 -17
- package/dist/templates/react/Tree/Tree.jsx.hbs +0 -41
- package/dist/templates/react/Tree/Tree.test.tsx.hbs +0 -10
- package/dist/templates/react/Tree/Tree.tsx.hbs +0 -76
- package/dist/templates/react/TreeItem/TreeItem.css.hbs +0 -27
- package/dist/templates/react/TreeItem/TreeItem.jsx.hbs +0 -57
- package/dist/templates/react/TreeItem/TreeItem.test.tsx.hbs +0 -10
- package/dist/templates/react/TreeItem/TreeItem.tsx.hbs +0 -142
- package/dist/templates/react/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
- package/dist/templates/react/ZoomableFrame/ZoomableFrame.jsx.hbs +0 -52
- package/dist/templates/react/ZoomableFrame/ZoomableFrame.test.tsx.hbs +0 -10
- package/dist/templates/react/ZoomableFrame/ZoomableFrame.tsx.hbs +0 -147
- package/dist/templates/react/vite-env.d.ts.hbs +0 -21
- package/dist/templates/vue/AnimatedImage/AnimatedImage.css.hbs +0 -11
- package/dist/templates/vue/AnimatedImage/AnimatedImage.js.vue.hbs +0 -60
- package/dist/templates/vue/AnimatedImage/AnimatedImage.test.js.hbs +0 -10
- package/dist/templates/vue/AnimatedImage/AnimatedImage.test.ts.hbs +0 -10
- package/dist/templates/vue/AnimatedImage/AnimatedImage.vue.hbs +0 -66
- package/dist/templates/vue/Animation/Animation.js.vue.hbs +0 -73
- package/dist/templates/vue/Animation/Animation.test.js.hbs +0 -10
- package/dist/templates/vue/Animation/Animation.test.ts.hbs +0 -10
- package/dist/templates/vue/Animation/Animation.vue.hbs +0 -80
- package/dist/templates/vue/Avatar/Avatar.css.hbs +0 -11
- package/dist/templates/vue/Avatar/Avatar.js.vue.hbs +0 -59
- package/dist/templates/vue/Avatar/Avatar.test.js.hbs +0 -10
- package/dist/templates/vue/Avatar/Avatar.test.ts.hbs +0 -10
- package/dist/templates/vue/Avatar/Avatar.vue.hbs +0 -64
- package/dist/templates/vue/Badge/Badge.css.hbs +0 -11
- package/dist/templates/vue/Badge/Badge.js.vue.hbs +0 -42
- package/dist/templates/vue/Badge/Badge.test.js.hbs +0 -10
- package/dist/templates/vue/Badge/Badge.test.ts.hbs +0 -10
- package/dist/templates/vue/Badge/Badge.vue.hbs +0 -43
- package/dist/templates/vue/BarChart/BarChart.css.hbs +0 -11
- package/dist/templates/vue/BarChart/BarChart.js.vue.hbs +0 -52
- package/dist/templates/vue/BarChart/BarChart.test.js.hbs +0 -10
- package/dist/templates/vue/BarChart/BarChart.test.ts.hbs +0 -10
- package/dist/templates/vue/BarChart/BarChart.vue.hbs +0 -53
- package/dist/templates/vue/Breadcrumb/Breadcrumb.css.hbs +0 -11
- package/dist/templates/vue/Breadcrumb/Breadcrumb.js.vue.hbs +0 -39
- package/dist/templates/vue/Breadcrumb/Breadcrumb.test.js.hbs +0 -10
- package/dist/templates/vue/Breadcrumb/Breadcrumb.test.ts.hbs +0 -10
- package/dist/templates/vue/Breadcrumb/Breadcrumb.vue.hbs +0 -40
- package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -11
- package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.js.vue.hbs +0 -41
- package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.test.js.hbs +0 -10
- package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.test.ts.hbs +0 -10
- package/dist/templates/vue/BreadcrumbItem/BreadcrumbItem.vue.hbs +0 -42
- package/dist/templates/vue/BubbleChart/BubbleChart.css.hbs +0 -11
- package/dist/templates/vue/BubbleChart/BubbleChart.js.vue.hbs +0 -51
- package/dist/templates/vue/BubbleChart/BubbleChart.test.js.hbs +0 -10
- package/dist/templates/vue/BubbleChart/BubbleChart.test.ts.hbs +0 -10
- package/dist/templates/vue/BubbleChart/BubbleChart.vue.hbs +0 -52
- package/dist/templates/vue/Button/Button.css.hbs +0 -20
- package/dist/templates/vue/Button/Button.js.vue.hbs +0 -85
- package/dist/templates/vue/Button/Button.test.js.hbs +0 -10
- package/dist/templates/vue/Button/Button.test.ts.hbs +0 -10
- package/dist/templates/vue/Button/Button.vue.hbs +0 -92
- package/dist/templates/vue/ButtonGroup/ButtonGroup.css.hbs +0 -11
- package/dist/templates/vue/ButtonGroup/ButtonGroup.js.vue.hbs +0 -40
- package/dist/templates/vue/ButtonGroup/ButtonGroup.test.js.hbs +0 -10
- package/dist/templates/vue/ButtonGroup/ButtonGroup.test.ts.hbs +0 -10
- package/dist/templates/vue/ButtonGroup/ButtonGroup.vue.hbs +0 -41
- package/dist/templates/vue/Callout/Callout.css.hbs +0 -11
- package/dist/templates/vue/Callout/Callout.js.vue.hbs +0 -41
- package/dist/templates/vue/Callout/Callout.test.js.hbs +0 -10
- package/dist/templates/vue/Callout/Callout.test.ts.hbs +0 -10
- package/dist/templates/vue/Callout/Callout.vue.hbs +0 -42
- package/dist/templates/vue/Card/Card.css.hbs +0 -17
- package/dist/templates/vue/Card/Card.js.vue.hbs +0 -43
- package/dist/templates/vue/Card/Card.test.js.hbs +0 -10
- package/dist/templates/vue/Card/Card.test.ts.hbs +0 -10
- package/dist/templates/vue/Card/Card.vue.hbs +0 -44
- package/dist/templates/vue/Carousel/Carousel.css.hbs +0 -11
- package/dist/templates/vue/Carousel/Carousel.js.vue.hbs +0 -66
- package/dist/templates/vue/Carousel/Carousel.test.js.hbs +0 -10
- package/dist/templates/vue/Carousel/Carousel.test.ts.hbs +0 -10
- package/dist/templates/vue/Carousel/Carousel.vue.hbs +0 -71
- package/dist/templates/vue/CarouselItem/CarouselItem.css.hbs +0 -11
- package/dist/templates/vue/CarouselItem/CarouselItem.js.vue.hbs +0 -39
- package/dist/templates/vue/CarouselItem/CarouselItem.test.js.hbs +0 -10
- package/dist/templates/vue/CarouselItem/CarouselItem.test.ts.hbs +0 -10
- package/dist/templates/vue/CarouselItem/CarouselItem.vue.hbs +0 -40
- package/dist/templates/vue/Chart/Chart.css.hbs +0 -11
- package/dist/templates/vue/Chart/Chart.js.vue.hbs +0 -52
- package/dist/templates/vue/Chart/Chart.test.js.hbs +0 -10
- package/dist/templates/vue/Chart/Chart.test.ts.hbs +0 -10
- package/dist/templates/vue/Chart/Chart.vue.hbs +0 -53
- package/dist/templates/vue/Checkbox/Checkbox.css.hbs +0 -11
- package/dist/templates/vue/Checkbox/Checkbox.js.vue.hbs +0 -87
- package/dist/templates/vue/Checkbox/Checkbox.test.js.hbs +0 -10
- package/dist/templates/vue/Checkbox/Checkbox.test.ts.hbs +0 -10
- package/dist/templates/vue/Checkbox/Checkbox.vue.hbs +0 -96
- package/dist/templates/vue/ColorPicker/ColorPicker.css.hbs +0 -11
- package/dist/templates/vue/ColorPicker/ColorPicker.js.vue.hbs +0 -110
- package/dist/templates/vue/ColorPicker/ColorPicker.test.js.hbs +0 -10
- package/dist/templates/vue/ColorPicker/ColorPicker.test.ts.hbs +0 -10
- package/dist/templates/vue/ColorPicker/ColorPicker.vue.hbs +0 -123
- package/dist/templates/vue/Combobox/Combobox.css.hbs +0 -11
- package/dist/templates/vue/Combobox/Combobox.js.vue.hbs +0 -120
- package/dist/templates/vue/Combobox/Combobox.test.js.hbs +0 -10
- package/dist/templates/vue/Combobox/Combobox.test.ts.hbs +0 -10
- package/dist/templates/vue/Combobox/Combobox.vue.hbs +0 -136
- package/dist/templates/vue/Comparison/Comparison.css.hbs +0 -11
- package/dist/templates/vue/Comparison/Comparison.js.vue.hbs +0 -55
- package/dist/templates/vue/Comparison/Comparison.test.js.hbs +0 -10
- package/dist/templates/vue/Comparison/Comparison.test.ts.hbs +0 -10
- package/dist/templates/vue/Comparison/Comparison.vue.hbs +0 -60
- package/dist/templates/vue/CopyButton/CopyButton.css.hbs +0 -11
- package/dist/templates/vue/CopyButton/CopyButton.js.vue.hbs +0 -65
- package/dist/templates/vue/CopyButton/CopyButton.test.js.hbs +0 -10
- package/dist/templates/vue/CopyButton/CopyButton.test.ts.hbs +0 -10
- package/dist/templates/vue/CopyButton/CopyButton.vue.hbs +0 -71
- package/dist/templates/vue/Details/Details.css.hbs +0 -11
- package/dist/templates/vue/Details/Details.js.vue.hbs +0 -81
- package/dist/templates/vue/Details/Details.test.js.hbs +0 -10
- package/dist/templates/vue/Details/Details.test.ts.hbs +0 -10
- package/dist/templates/vue/Details/Details.vue.hbs +0 -89
- package/dist/templates/vue/Dialog/Dialog.css.hbs +0 -23
- package/dist/templates/vue/Dialog/Dialog.js.vue.hbs +0 -79
- package/dist/templates/vue/Dialog/Dialog.test.js.hbs +0 -10
- package/dist/templates/vue/Dialog/Dialog.test.ts.hbs +0 -10
- package/dist/templates/vue/Dialog/Dialog.vue.hbs +0 -94
- package/dist/templates/vue/Divider/Divider.css.hbs +0 -11
- package/dist/templates/vue/Divider/Divider.js.vue.hbs +0 -39
- package/dist/templates/vue/Divider/Divider.test.js.hbs +0 -10
- package/dist/templates/vue/Divider/Divider.test.ts.hbs +0 -10
- package/dist/templates/vue/Divider/Divider.vue.hbs +0 -40
- package/dist/templates/vue/DoughnutChart/DoughnutChart.css.hbs +0 -11
- package/dist/templates/vue/DoughnutChart/DoughnutChart.js.vue.hbs +0 -44
- package/dist/templates/vue/DoughnutChart/DoughnutChart.test.js.hbs +0 -10
- package/dist/templates/vue/DoughnutChart/DoughnutChart.test.ts.hbs +0 -10
- package/dist/templates/vue/DoughnutChart/DoughnutChart.vue.hbs +0 -45
- package/dist/templates/vue/Drawer/Drawer.css.hbs +0 -11
- package/dist/templates/vue/Drawer/Drawer.js.vue.hbs +0 -73
- package/dist/templates/vue/Drawer/Drawer.test.js.hbs +0 -10
- package/dist/templates/vue/Drawer/Drawer.test.ts.hbs +0 -10
- package/dist/templates/vue/Drawer/Drawer.vue.hbs +0 -81
- package/dist/templates/vue/Dropdown/Dropdown.css.hbs +0 -11
- package/dist/templates/vue/Dropdown/Dropdown.js.vue.hbs +0 -84
- package/dist/templates/vue/Dropdown/Dropdown.test.js.hbs +0 -10
- package/dist/templates/vue/Dropdown/Dropdown.test.ts.hbs +0 -10
- package/dist/templates/vue/Dropdown/Dropdown.vue.hbs +0 -98
- package/dist/templates/vue/DropdownItem/DropdownItem.css.hbs +0 -11
- package/dist/templates/vue/DropdownItem/DropdownItem.js.vue.hbs +0 -65
- package/dist/templates/vue/DropdownItem/DropdownItem.test.js.hbs +0 -10
- package/dist/templates/vue/DropdownItem/DropdownItem.test.ts.hbs +0 -10
- package/dist/templates/vue/DropdownItem/DropdownItem.vue.hbs +0 -71
- package/dist/templates/vue/FileInput/FileInput.css.hbs +0 -19
- package/dist/templates/vue/FileInput/FileInput.js.vue.hbs +0 -78
- package/dist/templates/vue/FileInput/FileInput.test.js.hbs +0 -10
- package/dist/templates/vue/FileInput/FileInput.test.ts.hbs +0 -10
- package/dist/templates/vue/FileInput/FileInput.vue.hbs +0 -88
- package/dist/templates/vue/FormatBytes/FormatBytes.js.vue.hbs +0 -42
- package/dist/templates/vue/FormatBytes/FormatBytes.test.js.hbs +0 -10
- package/dist/templates/vue/FormatBytes/FormatBytes.test.ts.hbs +0 -10
- package/dist/templates/vue/FormatBytes/FormatBytes.vue.hbs +0 -43
- package/dist/templates/vue/FormatDate/FormatDate.js.vue.hbs +0 -51
- package/dist/templates/vue/FormatDate/FormatDate.test.js.hbs +0 -10
- package/dist/templates/vue/FormatDate/FormatDate.test.ts.hbs +0 -10
- package/dist/templates/vue/FormatDate/FormatDate.vue.hbs +0 -52
- package/dist/templates/vue/FormatNumber/FormatNumber.js.vue.hbs +0 -49
- package/dist/templates/vue/FormatNumber/FormatNumber.test.js.hbs +0 -10
- package/dist/templates/vue/FormatNumber/FormatNumber.test.ts.hbs +0 -10
- package/dist/templates/vue/FormatNumber/FormatNumber.vue.hbs +0 -50
- package/dist/templates/vue/Icon/Icon.css.hbs +0 -11
- package/dist/templates/vue/Icon/Icon.js.vue.hbs +0 -68
- package/dist/templates/vue/Icon/Icon.test.js.hbs +0 -10
- package/dist/templates/vue/Icon/Icon.test.ts.hbs +0 -10
- package/dist/templates/vue/Icon/Icon.vue.hbs +0 -74
- package/dist/templates/vue/Include/Include.js.vue.hbs +0 -60
- package/dist/templates/vue/Include/Include.test.js.hbs +0 -10
- package/dist/templates/vue/Include/Include.test.ts.hbs +0 -10
- package/dist/templates/vue/Include/Include.vue.hbs +0 -66
- package/dist/templates/vue/Input/Input.css.hbs +0 -24
- package/dist/templates/vue/Input/Input.js.vue.hbs +0 -115
- package/dist/templates/vue/Input/Input.test.js.hbs +0 -10
- package/dist/templates/vue/Input/Input.test.ts.hbs +0 -10
- package/dist/templates/vue/Input/Input.vue.hbs +0 -125
- package/dist/templates/vue/IntersectionObserver/IntersectionObserver.js.vue.hbs +0 -59
- package/dist/templates/vue/IntersectionObserver/IntersectionObserver.test.js.hbs +0 -10
- package/dist/templates/vue/IntersectionObserver/IntersectionObserver.test.ts.hbs +0 -10
- package/dist/templates/vue/IntersectionObserver/IntersectionObserver.vue.hbs +0 -64
- package/dist/templates/vue/LineChart/LineChart.css.hbs +0 -11
- package/dist/templates/vue/LineChart/LineChart.js.vue.hbs +0 -51
- package/dist/templates/vue/LineChart/LineChart.test.js.hbs +0 -10
- package/dist/templates/vue/LineChart/LineChart.test.ts.hbs +0 -10
- package/dist/templates/vue/LineChart/LineChart.vue.hbs +0 -52
- package/dist/templates/vue/Markdown/Markdown.css.hbs +0 -10
- package/dist/templates/vue/Markdown/Markdown.js.vue.hbs +0 -40
- package/dist/templates/vue/Markdown/Markdown.test.js.hbs +0 -10
- package/dist/templates/vue/Markdown/Markdown.test.ts.hbs +0 -10
- package/dist/templates/vue/Markdown/Markdown.vue.hbs +0 -49
- package/dist/templates/vue/MutationObserver/MutationObserver.js.vue.hbs +0 -61
- package/dist/templates/vue/MutationObserver/MutationObserver.test.js.hbs +0 -10
- package/dist/templates/vue/MutationObserver/MutationObserver.test.ts.hbs +0 -10
- package/dist/templates/vue/MutationObserver/MutationObserver.vue.hbs +0 -66
- package/dist/templates/vue/NumberInput/NumberInput.css.hbs +0 -19
- package/dist/templates/vue/NumberInput/NumberInput.js.vue.hbs +0 -93
- package/dist/templates/vue/NumberInput/NumberInput.test.js.hbs +0 -10
- package/dist/templates/vue/NumberInput/NumberInput.test.ts.hbs +0 -10
- package/dist/templates/vue/NumberInput/NumberInput.vue.hbs +0 -102
- package/dist/templates/vue/Option/Option.css.hbs +0 -11
- package/dist/templates/vue/Option/Option.js.vue.hbs +0 -42
- package/dist/templates/vue/Option/Option.test.js.hbs +0 -10
- package/dist/templates/vue/Option/Option.test.ts.hbs +0 -10
- package/dist/templates/vue/Option/Option.vue.hbs +0 -43
- package/dist/templates/vue/Page/Page.css.hbs +0 -11
- package/dist/templates/vue/Page/Page.js.vue.hbs +0 -47
- package/dist/templates/vue/Page/Page.test.js.hbs +0 -10
- package/dist/templates/vue/Page/Page.test.ts.hbs +0 -10
- package/dist/templates/vue/Page/Page.vue.hbs +0 -48
- package/dist/templates/vue/PieChart/PieChart.css.hbs +0 -11
- package/dist/templates/vue/PieChart/PieChart.js.vue.hbs +0 -44
- package/dist/templates/vue/PieChart/PieChart.test.js.hbs +0 -10
- package/dist/templates/vue/PieChart/PieChart.test.ts.hbs +0 -10
- package/dist/templates/vue/PieChart/PieChart.vue.hbs +0 -45
- package/dist/templates/vue/PolarAreaChart/PolarAreaChart.css.hbs +0 -11
- package/dist/templates/vue/PolarAreaChart/PolarAreaChart.js.vue.hbs +0 -44
- package/dist/templates/vue/PolarAreaChart/PolarAreaChart.test.js.hbs +0 -10
- package/dist/templates/vue/PolarAreaChart/PolarAreaChart.test.ts.hbs +0 -10
- package/dist/templates/vue/PolarAreaChart/PolarAreaChart.vue.hbs +0 -45
- package/dist/templates/vue/Popover/Popover.css.hbs +0 -11
- package/dist/templates/vue/Popover/Popover.js.vue.hbs +0 -84
- package/dist/templates/vue/Popover/Popover.test.js.hbs +0 -10
- package/dist/templates/vue/Popover/Popover.test.ts.hbs +0 -10
- package/dist/templates/vue/Popover/Popover.vue.hbs +0 -92
- package/dist/templates/vue/Popup/Popup.css.hbs +0 -11
- package/dist/templates/vue/Popup/Popup.js.vue.hbs +0 -73
- package/dist/templates/vue/Popup/Popup.test.js.hbs +0 -10
- package/dist/templates/vue/Popup/Popup.test.ts.hbs +0 -10
- package/dist/templates/vue/Popup/Popup.vue.hbs +0 -78
- package/dist/templates/vue/ProgressBar/ProgressBar.css.hbs +0 -11
- package/dist/templates/vue/ProgressBar/ProgressBar.js.vue.hbs +0 -41
- package/dist/templates/vue/ProgressBar/ProgressBar.test.js.hbs +0 -10
- package/dist/templates/vue/ProgressBar/ProgressBar.test.ts.hbs +0 -10
- package/dist/templates/vue/ProgressBar/ProgressBar.vue.hbs +0 -42
- package/dist/templates/vue/ProgressRing/ProgressRing.css.hbs +0 -11
- package/dist/templates/vue/ProgressRing/ProgressRing.js.vue.hbs +0 -40
- package/dist/templates/vue/ProgressRing/ProgressRing.test.js.hbs +0 -10
- package/dist/templates/vue/ProgressRing/ProgressRing.test.ts.hbs +0 -10
- package/dist/templates/vue/ProgressRing/ProgressRing.vue.hbs +0 -41
- package/dist/templates/vue/QrCode/QrCode.css.hbs +0 -11
- package/dist/templates/vue/QrCode/QrCode.js.vue.hbs +0 -45
- package/dist/templates/vue/QrCode/QrCode.test.js.hbs +0 -10
- package/dist/templates/vue/QrCode/QrCode.test.ts.hbs +0 -10
- package/dist/templates/vue/QrCode/QrCode.vue.hbs +0 -46
- package/dist/templates/vue/RadarChart/RadarChart.css.hbs +0 -11
- package/dist/templates/vue/RadarChart/RadarChart.js.vue.hbs +0 -48
- package/dist/templates/vue/RadarChart/RadarChart.test.js.hbs +0 -10
- package/dist/templates/vue/RadarChart/RadarChart.test.ts.hbs +0 -10
- package/dist/templates/vue/RadarChart/RadarChart.vue.hbs +0 -49
- package/dist/templates/vue/Radio/Radio.css.hbs +0 -11
- package/dist/templates/vue/Radio/Radio.js.vue.hbs +0 -64
- package/dist/templates/vue/Radio/Radio.test.js.hbs +0 -10
- package/dist/templates/vue/Radio/Radio.test.ts.hbs +0 -10
- package/dist/templates/vue/Radio/Radio.vue.hbs +0 -70
- package/dist/templates/vue/RadioGroup/RadioGroup.css.hbs +0 -11
- package/dist/templates/vue/RadioGroup/RadioGroup.js.vue.hbs +0 -81
- package/dist/templates/vue/RadioGroup/RadioGroup.test.js.hbs +0 -10
- package/dist/templates/vue/RadioGroup/RadioGroup.test.ts.hbs +0 -10
- package/dist/templates/vue/RadioGroup/RadioGroup.vue.hbs +0 -88
- package/dist/templates/vue/Rating/Rating.css.hbs +0 -11
- package/dist/templates/vue/Rating/Rating.js.vue.hbs +0 -78
- package/dist/templates/vue/Rating/Rating.test.js.hbs +0 -10
- package/dist/templates/vue/Rating/Rating.test.ts.hbs +0 -10
- package/dist/templates/vue/Rating/Rating.vue.hbs +0 -85
- package/dist/templates/vue/RelativeTime/RelativeTime.js.vue.hbs +0 -43
- package/dist/templates/vue/RelativeTime/RelativeTime.test.js.hbs +0 -10
- package/dist/templates/vue/RelativeTime/RelativeTime.test.ts.hbs +0 -10
- package/dist/templates/vue/RelativeTime/RelativeTime.vue.hbs +0 -44
- package/dist/templates/vue/ResizeObserver/ResizeObserver.js.vue.hbs +0 -55
- package/dist/templates/vue/ResizeObserver/ResizeObserver.test.js.hbs +0 -10
- package/dist/templates/vue/ResizeObserver/ResizeObserver.test.ts.hbs +0 -10
- package/dist/templates/vue/ResizeObserver/ResizeObserver.vue.hbs +0 -60
- package/dist/templates/vue/ScatterChart/ScatterChart.css.hbs +0 -11
- package/dist/templates/vue/ScatterChart/ScatterChart.js.vue.hbs +0 -49
- package/dist/templates/vue/ScatterChart/ScatterChart.test.js.hbs +0 -10
- package/dist/templates/vue/ScatterChart/ScatterChart.test.ts.hbs +0 -10
- package/dist/templates/vue/ScatterChart/ScatterChart.vue.hbs +0 -50
- package/dist/templates/vue/Scroller/Scroller.css.hbs +0 -11
- package/dist/templates/vue/Scroller/Scroller.js.vue.hbs +0 -42
- package/dist/templates/vue/Scroller/Scroller.test.js.hbs +0 -10
- package/dist/templates/vue/Scroller/Scroller.test.ts.hbs +0 -10
- package/dist/templates/vue/Scroller/Scroller.vue.hbs +0 -43
- package/dist/templates/vue/Select/Select.css.hbs +0 -11
- package/dist/templates/vue/Select/Select.js.vue.hbs +0 -113
- package/dist/templates/vue/Select/Select.test.js.hbs +0 -10
- package/dist/templates/vue/Select/Select.test.ts.hbs +0 -10
- package/dist/templates/vue/Select/Select.vue.hbs +0 -127
- package/dist/templates/vue/Skeleton/Skeleton.css.hbs +0 -11
- package/dist/templates/vue/Skeleton/Skeleton.js.vue.hbs +0 -39
- package/dist/templates/vue/Skeleton/Skeleton.test.js.hbs +0 -10
- package/dist/templates/vue/Skeleton/Skeleton.test.ts.hbs +0 -10
- package/dist/templates/vue/Skeleton/Skeleton.vue.hbs +0 -40
- package/dist/templates/vue/Slider/Slider.css.hbs +0 -11
- package/dist/templates/vue/Slider/Slider.js.vue.hbs +0 -95
- package/dist/templates/vue/Slider/Slider.test.js.hbs +0 -10
- package/dist/templates/vue/Slider/Slider.test.ts.hbs +0 -10
- package/dist/templates/vue/Slider/Slider.vue.hbs +0 -104
- package/dist/templates/vue/Sparkline/Sparkline.css.hbs +0 -14
- package/dist/templates/vue/Sparkline/Sparkline.js.vue.hbs +0 -43
- package/dist/templates/vue/Sparkline/Sparkline.test.js.hbs +0 -10
- package/dist/templates/vue/Sparkline/Sparkline.test.ts.hbs +0 -10
- package/dist/templates/vue/Sparkline/Sparkline.vue.hbs +0 -44
- package/dist/templates/vue/Spinner/Spinner.css.hbs +0 -11
- package/dist/templates/vue/Spinner/Spinner.js.vue.hbs +0 -39
- package/dist/templates/vue/Spinner/Spinner.test.js.hbs +0 -10
- package/dist/templates/vue/Spinner/Spinner.test.ts.hbs +0 -10
- package/dist/templates/vue/Spinner/Spinner.vue.hbs +0 -40
- package/dist/templates/vue/SplitPanel/SplitPanel.css.hbs +0 -11
- package/dist/templates/vue/SplitPanel/SplitPanel.js.vue.hbs +0 -61
- package/dist/templates/vue/SplitPanel/SplitPanel.test.js.hbs +0 -10
- package/dist/templates/vue/SplitPanel/SplitPanel.test.ts.hbs +0 -10
- package/dist/templates/vue/SplitPanel/SplitPanel.vue.hbs +0 -66
- package/dist/templates/vue/Switch/Switch.css.hbs +0 -11
- package/dist/templates/vue/Switch/Switch.js.vue.hbs +0 -86
- package/dist/templates/vue/Switch/Switch.test.js.hbs +0 -10
- package/dist/templates/vue/Switch/Switch.test.ts.hbs +0 -10
- package/dist/templates/vue/Switch/Switch.vue.hbs +0 -95
- package/dist/templates/vue/Tab/Tab.css.hbs +0 -11
- package/dist/templates/vue/Tab/Tab.js.vue.hbs +0 -40
- package/dist/templates/vue/Tab/Tab.test.js.hbs +0 -10
- package/dist/templates/vue/Tab/Tab.test.ts.hbs +0 -10
- package/dist/templates/vue/Tab/Tab.vue.hbs +0 -41
- package/dist/templates/vue/TabGroup/TabGroup.css.hbs +0 -11
- package/dist/templates/vue/TabGroup/TabGroup.js.vue.hbs +0 -61
- package/dist/templates/vue/TabGroup/TabGroup.test.js.hbs +0 -10
- package/dist/templates/vue/TabGroup/TabGroup.test.ts.hbs +0 -10
- package/dist/templates/vue/TabGroup/TabGroup.vue.hbs +0 -67
- package/dist/templates/vue/TabPanel/TabPanel.css.hbs +0 -11
- package/dist/templates/vue/TabPanel/TabPanel.js.vue.hbs +0 -40
- package/dist/templates/vue/TabPanel/TabPanel.test.js.hbs +0 -10
- package/dist/templates/vue/TabPanel/TabPanel.test.ts.hbs +0 -10
- package/dist/templates/vue/TabPanel/TabPanel.vue.hbs +0 -41
- package/dist/templates/vue/Tag/Tag.css.hbs +0 -11
- package/dist/templates/vue/Tag/Tag.js.vue.hbs +0 -59
- package/dist/templates/vue/Tag/Tag.test.js.hbs +0 -10
- package/dist/templates/vue/Tag/Tag.test.ts.hbs +0 -10
- package/dist/templates/vue/Tag/Tag.vue.hbs +0 -64
- package/dist/templates/vue/Textarea/Textarea.css.hbs +0 -11
- package/dist/templates/vue/Textarea/Textarea.js.vue.hbs +0 -98
- package/dist/templates/vue/Textarea/Textarea.test.js.hbs +0 -10
- package/dist/templates/vue/Textarea/Textarea.test.ts.hbs +0 -10
- package/dist/templates/vue/Textarea/Textarea.vue.hbs +0 -107
- package/dist/templates/vue/Toast/Toast.css.hbs +0 -11
- package/dist/templates/vue/Toast/Toast.js.vue.hbs +0 -40
- package/dist/templates/vue/Toast/Toast.test.js.hbs +0 -10
- package/dist/templates/vue/Toast/Toast.test.ts.hbs +0 -10
- package/dist/templates/vue/Toast/Toast.vue.hbs +0 -41
- package/dist/templates/vue/ToastItem/ToastItem.css.hbs +0 -11
- package/dist/templates/vue/ToastItem/ToastItem.js.vue.hbs +0 -67
- package/dist/templates/vue/ToastItem/ToastItem.test.js.hbs +0 -10
- package/dist/templates/vue/ToastItem/ToastItem.test.ts.hbs +0 -10
- package/dist/templates/vue/ToastItem/ToastItem.vue.hbs +0 -75
- package/dist/templates/vue/Tooltip/Tooltip.css.hbs +0 -11
- package/dist/templates/vue/Tooltip/Tooltip.js.vue.hbs +0 -85
- package/dist/templates/vue/Tooltip/Tooltip.test.js.hbs +0 -10
- package/dist/templates/vue/Tooltip/Tooltip.test.ts.hbs +0 -10
- package/dist/templates/vue/Tooltip/Tooltip.vue.hbs +0 -93
- package/dist/templates/vue/Tree/Tree.css.hbs +0 -11
- package/dist/templates/vue/Tree/Tree.js.vue.hbs +0 -55
- package/dist/templates/vue/Tree/Tree.test.js.hbs +0 -10
- package/dist/templates/vue/Tree/Tree.test.ts.hbs +0 -10
- package/dist/templates/vue/Tree/Tree.vue.hbs +0 -60
- package/dist/templates/vue/TreeItem/TreeItem.css.hbs +0 -11
- package/dist/templates/vue/TreeItem/TreeItem.js.vue.hbs +0 -77
- package/dist/templates/vue/TreeItem/TreeItem.test.js.hbs +0 -10
- package/dist/templates/vue/TreeItem/TreeItem.test.ts.hbs +0 -10
- package/dist/templates/vue/TreeItem/TreeItem.vue.hbs +0 -87
- package/dist/templates/vue/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
- package/dist/templates/vue/ZoomableFrame/ZoomableFrame.js.vue.hbs +0 -69
- package/dist/templates/vue/ZoomableFrame/ZoomableFrame.test.js.hbs +0 -10
- package/dist/templates/vue/ZoomableFrame/ZoomableFrame.test.ts.hbs +0 -10
- package/dist/templates/vue/ZoomableFrame/ZoomableFrame.vue.hbs +0 -75
- package/dist/tier-4FZLELBX.js +0 -13
- package/templates/angular/AnimatedImage/animated-image.component.css.hbs +0 -7
- package/templates/angular/AnimatedImage/animated-image.component.spec.ts.hbs +0 -26
- package/templates/angular/AnimatedImage/animated-image.component.ts.hbs +0 -67
- package/templates/angular/Animation/animation.component.css.hbs +0 -7
- package/templates/angular/Animation/animation.component.spec.ts.hbs +0 -26
- package/templates/angular/Animation/animation.component.ts.hbs +0 -102
- package/templates/angular/Avatar/avatar.component.css.hbs +0 -7
- package/templates/angular/Avatar/avatar.component.spec.ts.hbs +0 -26
- package/templates/angular/Avatar/avatar.component.ts.hbs +0 -69
- package/templates/angular/Badge/badge.component.css.hbs +0 -7
- package/templates/angular/Badge/badge.component.spec.ts.hbs +0 -26
- package/templates/angular/Badge/badge.component.ts.hbs +0 -54
- package/templates/angular/BarChart/bar-chart.component.css.hbs +0 -7
- package/templates/angular/BarChart/bar-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/BarChart/bar-chart.component.ts.hbs +0 -84
- package/templates/angular/Breadcrumb/breadcrumb.component.css.hbs +0 -7
- package/templates/angular/Breadcrumb/breadcrumb.component.spec.ts.hbs +0 -26
- package/templates/angular/Breadcrumb/breadcrumb.component.ts.hbs +0 -45
- package/templates/angular/BreadcrumbItem/breadcrumb-item.component.css.hbs +0 -7
- package/templates/angular/BreadcrumbItem/breadcrumb-item.component.spec.ts.hbs +0 -26
- package/templates/angular/BreadcrumbItem/breadcrumb-item.component.ts.hbs +0 -51
- package/templates/angular/BubbleChart/bubble-chart.component.css.hbs +0 -7
- package/templates/angular/BubbleChart/bubble-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/BubbleChart/bubble-chart.component.ts.hbs +0 -81
- package/templates/angular/Button/button.component.css.hbs +0 -7
- package/templates/angular/Button/button.component.spec.ts.hbs +0 -26
- package/templates/angular/Button/button.component.ts.hbs +0 -138
- package/templates/angular/ButtonGroup/button-group.component.css.hbs +0 -7
- package/templates/angular/ButtonGroup/button-group.component.spec.ts.hbs +0 -26
- package/templates/angular/ButtonGroup/button-group.component.ts.hbs +0 -48
- package/templates/angular/Callout/callout.component.css.hbs +0 -7
- package/templates/angular/Callout/callout.component.spec.ts.hbs +0 -26
- package/templates/angular/Callout/callout.component.ts.hbs +0 -51
- package/templates/angular/Card/card.component.css.hbs +0 -7
- package/templates/angular/Card/card.component.spec.ts.hbs +0 -26
- package/templates/angular/Card/card.component.ts.hbs +0 -57
- package/templates/angular/Carousel/carousel.component.css.hbs +0 -7
- package/templates/angular/Carousel/carousel.component.spec.ts.hbs +0 -26
- package/templates/angular/Carousel/carousel.component.ts.hbs +0 -91
- package/templates/angular/CarouselItem/carousel-item.component.css.hbs +0 -7
- package/templates/angular/CarouselItem/carousel-item.component.spec.ts.hbs +0 -26
- package/templates/angular/CarouselItem/carousel-item.component.ts.hbs +0 -42
- package/templates/angular/Chart/chart.component.css.hbs +0 -7
- package/templates/angular/Chart/chart.component.spec.ts.hbs +0 -26
- package/templates/angular/Chart/chart.component.ts.hbs +0 -84
- package/templates/angular/Checkbox/checkbox.component.css.hbs +0 -7
- package/templates/angular/Checkbox/checkbox.component.spec.ts.hbs +0 -26
- package/templates/angular/Checkbox/checkbox.component.ts.hbs +0 -151
- package/templates/angular/ColorPicker/color-picker.component.css.hbs +0 -7
- package/templates/angular/ColorPicker/color-picker.component.spec.ts.hbs +0 -26
- package/templates/angular/ColorPicker/color-picker.component.ts.hbs +0 -200
- package/templates/angular/Combobox/combobox.component.css.hbs +0 -7
- package/templates/angular/Combobox/combobox.component.spec.ts.hbs +0 -26
- package/templates/angular/Combobox/combobox.component.ts.hbs +0 -220
- package/templates/angular/Comparison/comparison.component.css.hbs +0 -7
- package/templates/angular/Comparison/comparison.component.spec.ts.hbs +0 -26
- package/templates/angular/Comparison/comparison.component.ts.hbs +0 -57
- package/templates/angular/CopyButton/copy-button.component.css.hbs +0 -7
- package/templates/angular/CopyButton/copy-button.component.spec.ts.hbs +0 -26
- package/templates/angular/CopyButton/copy-button.component.ts.hbs +0 -82
- package/templates/angular/Details/details.component.css.hbs +0 -7
- package/templates/angular/Details/details.component.spec.ts.hbs +0 -26
- package/templates/angular/Details/details.component.ts.hbs +0 -91
- package/templates/angular/Dialog/dialog.component.css.hbs +0 -7
- package/templates/angular/Dialog/dialog.component.spec.ts.hbs +0 -26
- package/templates/angular/Dialog/dialog.component.ts.hbs +0 -85
- package/templates/angular/Divider/divider.component.css.hbs +0 -7
- package/templates/angular/Divider/divider.component.spec.ts.hbs +0 -26
- package/templates/angular/Divider/divider.component.ts.hbs +0 -45
- package/templates/angular/DoughnutChart/doughnut-chart.component.css.hbs +0 -7
- package/templates/angular/DoughnutChart/doughnut-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/DoughnutChart/doughnut-chart.component.ts.hbs +0 -60
- package/templates/angular/Drawer/drawer.component.css.hbs +0 -7
- package/templates/angular/Drawer/drawer.component.spec.ts.hbs +0 -26
- package/templates/angular/Drawer/drawer.component.ts.hbs +0 -88
- package/templates/angular/Dropdown/dropdown.component.css.hbs +0 -7
- package/templates/angular/Dropdown/dropdown.component.spec.ts.hbs +0 -26
- package/templates/angular/Dropdown/dropdown.component.ts.hbs +0 -94
- package/templates/angular/DropdownItem/dropdown-item.component.css.hbs +0 -7
- package/templates/angular/DropdownItem/dropdown-item.component.spec.ts.hbs +0 -26
- package/templates/angular/DropdownItem/dropdown-item.component.ts.hbs +0 -83
- package/templates/angular/FileInput/file-input.component.css.hbs +0 -7
- package/templates/angular/FileInput/file-input.component.spec.ts.hbs +0 -26
- package/templates/angular/FileInput/file-input.component.ts.hbs +0 -145
- package/templates/angular/FormatBytes/format-bytes.component.css.hbs +0 -7
- package/templates/angular/FormatBytes/format-bytes.component.spec.ts.hbs +0 -26
- package/templates/angular/FormatBytes/format-bytes.component.ts.hbs +0 -54
- package/templates/angular/FormatDate/format-date.component.css.hbs +0 -7
- package/templates/angular/FormatDate/format-date.component.spec.ts.hbs +0 -26
- package/templates/angular/FormatDate/format-date.component.ts.hbs +0 -81
- package/templates/angular/FormatNumber/format-number.component.css.hbs +0 -7
- package/templates/angular/FormatNumber/format-number.component.spec.ts.hbs +0 -26
- package/templates/angular/FormatNumber/format-number.component.ts.hbs +0 -75
- package/templates/angular/Icon/icon.component.css.hbs +0 -7
- package/templates/angular/Icon/icon.component.spec.ts.hbs +0 -26
- package/templates/angular/Icon/icon.component.ts.hbs +0 -91
- package/templates/angular/Include/include.component.css.hbs +0 -7
- package/templates/angular/Include/include.component.spec.ts.hbs +0 -26
- package/templates/angular/Include/include.component.ts.hbs +0 -67
- package/templates/angular/Input/input.component.css.hbs +0 -7
- package/templates/angular/Input/input.component.spec.ts.hbs +0 -26
- package/templates/angular/Input/input.component.ts.hbs +0 -230
- package/templates/angular/IntersectionObserver/intersection-observer.component.css.hbs +0 -7
- package/templates/angular/IntersectionObserver/intersection-observer.component.spec.ts.hbs +0 -26
- package/templates/angular/IntersectionObserver/intersection-observer.component.ts.hbs +0 -69
- package/templates/angular/LineChart/line-chart.component.css.hbs +0 -7
- package/templates/angular/LineChart/line-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/LineChart/line-chart.component.ts.hbs +0 -81
- package/templates/angular/Markdown/markdown.component.css.hbs +0 -7
- package/templates/angular/Markdown/markdown.component.spec.ts.hbs +0 -26
- package/templates/angular/Markdown/markdown.component.ts.hbs +0 -61
- package/templates/angular/MutationObserver/mutation-observer.component.css.hbs +0 -7
- package/templates/angular/MutationObserver/mutation-observer.component.spec.ts.hbs +0 -26
- package/templates/angular/MutationObserver/mutation-observer.component.ts.hbs +0 -75
- package/templates/angular/NumberInput/number-input.component.css.hbs +0 -7
- package/templates/angular/NumberInput/number-input.component.spec.ts.hbs +0 -26
- package/templates/angular/NumberInput/number-input.component.ts.hbs +0 -169
- package/templates/angular/Option/option.component.css.hbs +0 -7
- package/templates/angular/Option/option.component.spec.ts.hbs +0 -26
- package/templates/angular/Option/option.component.ts.hbs +0 -54
- package/templates/angular/Page/page.component.css.hbs +0 -7
- package/templates/angular/Page/page.component.spec.ts.hbs +0 -26
- package/templates/angular/Page/page.component.ts.hbs +0 -70
- package/templates/angular/PieChart/pie-chart.component.css.hbs +0 -7
- package/templates/angular/PieChart/pie-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/PieChart/pie-chart.component.ts.hbs +0 -60
- package/templates/angular/PolarAreaChart/polar-area-chart.component.css.hbs +0 -7
- package/templates/angular/PolarAreaChart/polar-area-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/PolarAreaChart/polar-area-chart.component.ts.hbs +0 -60
- package/templates/angular/Popover/popover.component.css.hbs +0 -7
- package/templates/angular/Popover/popover.component.spec.ts.hbs +0 -26
- package/templates/angular/Popover/popover.component.ts.hbs +0 -100
- package/templates/angular/Popup/popup.component.css.hbs +0 -7
- package/templates/angular/Popup/popup.component.spec.ts.hbs +0 -26
- package/templates/angular/Popup/popup.component.ts.hbs +0 -112
- package/templates/angular/ProgressBar/progress-bar.component.css.hbs +0 -7
- package/templates/angular/ProgressBar/progress-bar.component.spec.ts.hbs +0 -26
- package/templates/angular/ProgressBar/progress-bar.component.ts.hbs +0 -51
- package/templates/angular/ProgressRing/progress-ring.component.css.hbs +0 -7
- package/templates/angular/ProgressRing/progress-ring.component.spec.ts.hbs +0 -26
- package/templates/angular/ProgressRing/progress-ring.component.ts.hbs +0 -48
- package/templates/angular/QrCode/qr-code.component.css.hbs +0 -7
- package/templates/angular/QrCode/qr-code.component.spec.ts.hbs +0 -26
- package/templates/angular/QrCode/qr-code.component.ts.hbs +0 -63
- package/templates/angular/RadarChart/radar-chart.component.css.hbs +0 -7
- package/templates/angular/RadarChart/radar-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/RadarChart/radar-chart.component.ts.hbs +0 -72
- package/templates/angular/Radio/radio.component.css.hbs +0 -7
- package/templates/angular/Radio/radio.component.spec.ts.hbs +0 -26
- package/templates/angular/Radio/radio.component.ts.hbs +0 -80
- package/templates/angular/RadioGroup/radio-group.component.css.hbs +0 -7
- package/templates/angular/RadioGroup/radio-group.component.spec.ts.hbs +0 -26
- package/templates/angular/RadioGroup/radio-group.component.ts.hbs +0 -143
- package/templates/angular/Rating/rating.component.css.hbs +0 -7
- package/templates/angular/Rating/rating.component.spec.ts.hbs +0 -26
- package/templates/angular/Rating/rating.component.ts.hbs +0 -137
- package/templates/angular/RelativeTime/relative-time.component.css.hbs +0 -7
- package/templates/angular/RelativeTime/relative-time.component.spec.ts.hbs +0 -26
- package/templates/angular/RelativeTime/relative-time.component.ts.hbs +0 -57
- package/templates/angular/ResizeObserver/resize-observer.component.css.hbs +0 -7
- package/templates/angular/ResizeObserver/resize-observer.component.spec.ts.hbs +0 -26
- package/templates/angular/ResizeObserver/resize-observer.component.ts.hbs +0 -57
- package/templates/angular/ScatterChart/scatter-chart.component.css.hbs +0 -7
- package/templates/angular/ScatterChart/scatter-chart.component.spec.ts.hbs +0 -26
- package/templates/angular/ScatterChart/scatter-chart.component.ts.hbs +0 -75
- package/templates/angular/Scroller/scroller.component.css.hbs +0 -7
- package/templates/angular/Scroller/scroller.component.spec.ts.hbs +0 -26
- package/templates/angular/Scroller/scroller.component.ts.hbs +0 -54
- package/templates/angular/Select/select.component.css.hbs +0 -7
- package/templates/angular/Select/select.component.spec.ts.hbs +0 -26
- package/templates/angular/Select/select.component.ts.hbs +0 -204
- package/templates/angular/Skeleton/skeleton.component.css.hbs +0 -7
- package/templates/angular/Skeleton/skeleton.component.spec.ts.hbs +0 -26
- package/templates/angular/Skeleton/skeleton.component.ts.hbs +0 -45
- package/templates/angular/Slider/slider.component.css.hbs +0 -7
- package/templates/angular/Slider/slider.component.spec.ts.hbs +0 -26
- package/templates/angular/Slider/slider.component.ts.hbs +0 -175
- package/templates/angular/Sparkline/sparkline.component.css.hbs +0 -7
- package/templates/angular/Sparkline/sparkline.component.spec.ts.hbs +0 -26
- package/templates/angular/Sparkline/sparkline.component.ts.hbs +0 -57
- package/templates/angular/Spinner/spinner.component.css.hbs +0 -7
- package/templates/angular/Spinner/spinner.component.spec.ts.hbs +0 -26
- package/templates/angular/Spinner/spinner.component.ts.hbs +0 -42
- package/templates/angular/SplitPanel/split-panel.component.css.hbs +0 -7
- package/templates/angular/SplitPanel/split-panel.component.spec.ts.hbs +0 -26
- package/templates/angular/SplitPanel/split-panel.component.ts.hbs +0 -75
- package/templates/angular/Switch/switch.component.css.hbs +0 -7
- package/templates/angular/Switch/switch.component.spec.ts.hbs +0 -26
- package/templates/angular/Switch/switch.component.ts.hbs +0 -148
- package/templates/angular/Tab/tab.component.css.hbs +0 -7
- package/templates/angular/Tab/tab.component.spec.ts.hbs +0 -26
- package/templates/angular/Tab/tab.component.ts.hbs +0 -48
- package/templates/angular/TabGroup/tab-group.component.css.hbs +0 -7
- package/templates/angular/TabGroup/tab-group.component.spec.ts.hbs +0 -26
- package/templates/angular/TabGroup/tab-group.component.ts.hbs +0 -70
- package/templates/angular/TabPanel/tab-panel.component.css.hbs +0 -7
- package/templates/angular/TabPanel/tab-panel.component.spec.ts.hbs +0 -26
- package/templates/angular/TabPanel/tab-panel.component.ts.hbs +0 -48
- package/templates/angular/Tag/tag.component.css.hbs +0 -7
- package/templates/angular/Tag/tag.component.spec.ts.hbs +0 -26
- package/templates/angular/Tag/tag.component.ts.hbs +0 -69
- package/templates/angular/Textarea/textarea.component.css.hbs +0 -7
- package/templates/angular/Textarea/textarea.component.spec.ts.hbs +0 -26
- package/templates/angular/Textarea/textarea.component.ts.hbs +0 -184
- package/templates/angular/Toast/toast.component.css.hbs +0 -7
- package/templates/angular/Toast/toast.component.spec.ts.hbs +0 -26
- package/templates/angular/Toast/toast.component.ts.hbs +0 -49
- package/templates/angular/ToastItem/toast-item.component.css.hbs +0 -7
- package/templates/angular/ToastItem/toast-item.component.spec.ts.hbs +0 -26
- package/templates/angular/ToastItem/toast-item.component.ts.hbs +0 -79
- package/templates/angular/Tooltip/tooltip.component.css.hbs +0 -7
- package/templates/angular/Tooltip/tooltip.component.spec.ts.hbs +0 -26
- package/templates/angular/Tooltip/tooltip.component.ts.hbs +0 -103
- package/templates/angular/Tree/tree.component.css.hbs +0 -7
- package/templates/angular/Tree/tree.component.spec.ts.hbs +0 -26
- package/templates/angular/Tree/tree.component.ts.hbs +0 -57
- package/templates/angular/TreeItem/tree-item.component.css.hbs +0 -7
- package/templates/angular/TreeItem/tree-item.component.spec.ts.hbs +0 -26
- package/templates/angular/TreeItem/tree-item.component.ts.hbs +0 -91
- package/templates/angular/ZoomableFrame/zoomable-frame.component.css.hbs +0 -7
- package/templates/angular/ZoomableFrame/zoomable-frame.component.spec.ts.hbs +0 -26
- package/templates/angular/ZoomableFrame/zoomable-frame.component.ts.hbs +0 -95
- package/templates/react/AnimatedImage/AnimatedImage.css.hbs +0 -14
- package/templates/react/AnimatedImage/AnimatedImage.jsx.hbs +0 -64
- package/templates/react/AnimatedImage/AnimatedImage.test.jsx.hbs +0 -29
- package/templates/react/AnimatedImage/AnimatedImage.test.tsx.hbs +0 -10
- package/templates/react/AnimatedImage/AnimatedImage.tsx.hbs +0 -91
- package/templates/react/Animation/Animation.css.hbs +0 -7
- package/templates/react/Animation/Animation.jsx.hbs +0 -100
- package/templates/react/Animation/Animation.test.jsx.hbs +0 -37
- package/templates/react/Animation/Animation.test.tsx.hbs +0 -10
- package/templates/react/Animation/Animation.tsx.hbs +0 -144
- package/templates/react/Avatar/Avatar.css.hbs +0 -15
- package/templates/react/Avatar/Avatar.jsx.hbs +0 -65
- package/templates/react/Avatar/Avatar.test.jsx.hbs +0 -33
- package/templates/react/Avatar/Avatar.test.tsx.hbs +0 -10
- package/templates/react/Avatar/Avatar.tsx.hbs +0 -88
- package/templates/react/Badge/Badge.css.hbs +0 -13
- package/templates/react/Badge/Badge.jsx.hbs +0 -52
- package/templates/react/Badge/Badge.test.jsx.hbs +0 -28
- package/templates/react/Badge/Badge.test.tsx.hbs +0 -10
- package/templates/react/Badge/Badge.tsx.hbs +0 -71
- package/templates/react/BarChart/BarChart.css.hbs +0 -15
- package/templates/react/BarChart/BarChart.jsx.hbs +0 -67
- package/templates/react/BarChart/BarChart.test.jsx.hbs +0 -15
- package/templates/react/BarChart/BarChart.test.tsx.hbs +0 -10
- package/templates/react/BarChart/BarChart.tsx.hbs +0 -101
- package/templates/react/Breadcrumb/Breadcrumb.css.hbs +0 -10
- package/templates/react/Breadcrumb/Breadcrumb.jsx.hbs +0 -48
- package/templates/react/Breadcrumb/Breadcrumb.test.jsx.hbs +0 -34
- package/templates/react/Breadcrumb/Breadcrumb.test.tsx.hbs +0 -10
- package/templates/react/Breadcrumb/Breadcrumb.tsx.hbs +0 -57
- package/templates/react/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -13
- package/templates/react/BreadcrumbItem/BreadcrumbItem.jsx.hbs +0 -55
- package/templates/react/BreadcrumbItem/BreadcrumbItem.test.jsx.hbs +0 -36
- package/templates/react/BreadcrumbItem/BreadcrumbItem.test.tsx.hbs +0 -10
- package/templates/react/BreadcrumbItem/BreadcrumbItem.tsx.hbs +0 -63
- package/templates/react/BubbleChart/BubbleChart.css.hbs +0 -15
- package/templates/react/BubbleChart/BubbleChart.jsx.hbs +0 -62
- package/templates/react/BubbleChart/BubbleChart.test.jsx.hbs +0 -15
- package/templates/react/BubbleChart/BubbleChart.test.tsx.hbs +0 -10
- package/templates/react/BubbleChart/BubbleChart.tsx.hbs +0 -94
- package/templates/react/Button/Button.css.hbs +0 -15
- package/templates/react/Button/Button.jsx.hbs +0 -113
- package/templates/react/Button/Button.test.jsx.hbs +0 -23
- package/templates/react/Button/Button.test.tsx.hbs +0 -10
- package/templates/react/Button/Button.tsx.hbs +0 -176
- package/templates/react/ButtonGroup/ButtonGroup.css.hbs +0 -10
- package/templates/react/ButtonGroup/ButtonGroup.jsx.hbs +0 -48
- package/templates/react/ButtonGroup/ButtonGroup.test.jsx.hbs +0 -44
- package/templates/react/ButtonGroup/ButtonGroup.test.tsx.hbs +0 -10
- package/templates/react/ButtonGroup/ButtonGroup.tsx.hbs +0 -60
- package/templates/react/Callout/Callout.css.hbs +0 -11
- package/templates/react/Callout/Callout.jsx.hbs +0 -29
- package/templates/react/Callout/Callout.test.jsx.hbs +0 -27
- package/templates/react/Callout/Callout.test.tsx.hbs +0 -10
- package/templates/react/Callout/Callout.tsx.hbs +0 -63
- package/templates/react/Card/Card.css.hbs +0 -16
- package/templates/react/Card/Card.jsx.hbs +0 -33
- package/templates/react/Card/Card.test.jsx.hbs +0 -23
- package/templates/react/Card/Card.test.tsx.hbs +0 -10
- package/templates/react/Card/Card.tsx.hbs +0 -69
- package/templates/react/Carousel/Carousel.css.hbs +0 -23
- package/templates/react/Carousel/Carousel.jsx.hbs +0 -81
- package/templates/react/Carousel/Carousel.test.jsx.hbs +0 -25
- package/templates/react/Carousel/Carousel.test.tsx.hbs +0 -10
- package/templates/react/Carousel/Carousel.tsx.hbs +0 -128
- package/templates/react/CarouselItem/CarouselItem.css.hbs +0 -10
- package/templates/react/CarouselItem/CarouselItem.jsx.hbs +0 -28
- package/templates/react/CarouselItem/CarouselItem.test.jsx.hbs +0 -21
- package/templates/react/CarouselItem/CarouselItem.test.tsx.hbs +0 -10
- package/templates/react/CarouselItem/CarouselItem.tsx.hbs +0 -53
- package/templates/react/Chart/Chart.css.hbs +0 -17
- package/templates/react/Chart/Chart.jsx.hbs +0 -68
- package/templates/react/Chart/Chart.test.jsx.hbs +0 -15
- package/templates/react/Chart/Chart.test.tsx.hbs +0 -10
- package/templates/react/Chart/Chart.tsx.hbs +0 -102
- package/templates/react/Checkbox/Checkbox.css.hbs +0 -19
- package/templates/react/Checkbox/Checkbox.jsx.hbs +0 -80
- package/templates/react/Checkbox/Checkbox.test.jsx.hbs +0 -25
- package/templates/react/Checkbox/Checkbox.test.tsx.hbs +0 -10
- package/templates/react/Checkbox/Checkbox.tsx.hbs +0 -161
- package/templates/react/ColorPicker/ColorPicker.css.hbs +0 -32
- package/templates/react/ColorPicker/ColorPicker.jsx.hbs +0 -72
- package/templates/react/ColorPicker/ColorPicker.test.jsx.hbs +0 -25
- package/templates/react/ColorPicker/ColorPicker.test.tsx.hbs +0 -10
- package/templates/react/ColorPicker/ColorPicker.tsx.hbs +0 -252
- package/templates/react/Combobox/Combobox.css.hbs +0 -29
- package/templates/react/Combobox/Combobox.jsx.hbs +0 -82
- package/templates/react/Combobox/Combobox.test.jsx.hbs +0 -19
- package/templates/react/Combobox/Combobox.test.tsx.hbs +0 -10
- package/templates/react/Combobox/Combobox.tsx.hbs +0 -266
- package/templates/react/Comparison/Comparison.css.hbs +0 -18
- package/templates/react/Comparison/Comparison.jsx.hbs +0 -27
- package/templates/react/Comparison/Comparison.test.jsx.hbs +0 -27
- package/templates/react/Comparison/Comparison.test.tsx.hbs +0 -10
- package/templates/react/Comparison/Comparison.tsx.hbs +0 -76
- package/templates/react/CopyButton/CopyButton.css.hbs +0 -17
- package/templates/react/CopyButton/CopyButton.jsx.hbs +0 -49
- package/templates/react/CopyButton/CopyButton.test.jsx.hbs +0 -16
- package/templates/react/CopyButton/CopyButton.test.tsx.hbs +0 -10
- package/templates/react/CopyButton/CopyButton.tsx.hbs +0 -106
- package/templates/react/Details/Details.css.hbs +0 -19
- package/templates/react/Details/Details.jsx.hbs +0 -66
- package/templates/react/Details/Details.test.jsx.hbs +0 -27
- package/templates/react/Details/Details.test.tsx.hbs +0 -10
- package/templates/react/Details/Details.tsx.hbs +0 -138
- package/templates/react/Dialog/Dialog.css.hbs +0 -23
- package/templates/react/Dialog/Dialog.jsx.hbs +0 -106
- package/templates/react/Dialog/Dialog.test.jsx.hbs +0 -29
- package/templates/react/Dialog/Dialog.test.tsx.hbs +0 -10
- package/templates/react/Dialog/Dialog.tsx.hbs +0 -153
- package/templates/react/Divider/Divider.css.hbs +0 -12
- package/templates/react/Divider/Divider.jsx.hbs +0 -24
- package/templates/react/Divider/Divider.test.jsx.hbs +0 -16
- package/templates/react/Divider/Divider.test.tsx.hbs +0 -10
- package/templates/react/Divider/Divider.tsx.hbs +0 -64
- package/templates/react/DoughnutChart/DoughnutChart.css.hbs +0 -12
- package/templates/react/DoughnutChart/DoughnutChart.jsx.hbs +0 -56
- package/templates/react/DoughnutChart/DoughnutChart.test.jsx.hbs +0 -15
- package/templates/react/DoughnutChart/DoughnutChart.test.tsx.hbs +0 -10
- package/templates/react/DoughnutChart/DoughnutChart.tsx.hbs +0 -74
- package/templates/react/Drawer/Drawer.css.hbs +0 -23
- package/templates/react/Drawer/Drawer.jsx.hbs +0 -104
- package/templates/react/Drawer/Drawer.test.jsx.hbs +0 -27
- package/templates/react/Drawer/Drawer.test.tsx.hbs +0 -10
- package/templates/react/Drawer/Drawer.tsx.hbs +0 -144
- package/templates/react/Dropdown/Dropdown.css.hbs +0 -15
- package/templates/react/Dropdown/Dropdown.jsx.hbs +0 -78
- package/templates/react/Dropdown/Dropdown.test.jsx.hbs +0 -18
- package/templates/react/Dropdown/Dropdown.test.tsx.hbs +0 -10
- package/templates/react/Dropdown/Dropdown.tsx.hbs +0 -133
- package/templates/react/DropdownItem/DropdownItem.css.hbs +0 -15
- package/templates/react/DropdownItem/DropdownItem.jsx.hbs +0 -41
- package/templates/react/DropdownItem/DropdownItem.test.jsx.hbs +0 -18
- package/templates/react/DropdownItem/DropdownItem.test.tsx.hbs +0 -10
- package/templates/react/DropdownItem/DropdownItem.tsx.hbs +0 -120
- package/templates/react/FileInput/FileInput.css.hbs +0 -24
- package/templates/react/FileInput/FileInput.jsx.hbs +0 -111
- package/templates/react/FileInput/FileInput.test.jsx.hbs +0 -15
- package/templates/react/FileInput/FileInput.test.tsx.hbs +0 -10
- package/templates/react/FileInput/FileInput.tsx.hbs +0 -151
- package/templates/react/FormatBytes/FormatBytes.css.hbs +0 -7
- package/templates/react/FormatBytes/FormatBytes.jsx.hbs +0 -25
- package/templates/react/FormatBytes/FormatBytes.test.jsx.hbs +0 -16
- package/templates/react/FormatBytes/FormatBytes.test.tsx.hbs +0 -10
- package/templates/react/FormatBytes/FormatBytes.tsx.hbs +0 -73
- package/templates/react/FormatDate/FormatDate.css.hbs +0 -7
- package/templates/react/FormatDate/FormatDate.jsx.hbs +0 -18
- package/templates/react/FormatDate/FormatDate.test.jsx.hbs +0 -11
- package/templates/react/FormatDate/FormatDate.test.tsx.hbs +0 -10
- package/templates/react/FormatDate/FormatDate.tsx.hbs +0 -102
- package/templates/react/FormatNumber/FormatNumber.css.hbs +0 -7
- package/templates/react/FormatNumber/FormatNumber.jsx.hbs +0 -18
- package/templates/react/FormatNumber/FormatNumber.test.jsx.hbs +0 -16
- package/templates/react/FormatNumber/FormatNumber.test.tsx.hbs +0 -10
- package/templates/react/FormatNumber/FormatNumber.tsx.hbs +0 -94
- package/templates/react/Icon/Icon.css.hbs +0 -38
- package/templates/react/Icon/Icon.jsx.hbs +0 -86
- package/templates/react/Icon/Icon.test.jsx.hbs +0 -35
- package/templates/react/Icon/Icon.test.tsx.hbs +0 -10
- package/templates/react/Icon/Icon.tsx.hbs +0 -115
- package/templates/react/Include/Include.css.hbs +0 -7
- package/templates/react/Include/Include.jsx.hbs +0 -40
- package/templates/react/Include/Include.test.jsx.hbs +0 -16
- package/templates/react/Include/Include.test.tsx.hbs +0 -10
- package/templates/react/Include/Include.tsx.hbs +0 -91
- package/templates/react/Input/Input.css.hbs +0 -17
- package/templates/react/Input/Input.jsx.hbs +0 -144
- package/templates/react/Input/Input.test.jsx.hbs +0 -23
- package/templates/react/Input/Input.test.tsx.hbs +0 -10
- package/templates/react/Input/Input.tsx.hbs +0 -270
- package/templates/react/IntersectionObserver/IntersectionObserver.css.hbs +0 -7
- package/templates/react/IntersectionObserver/IntersectionObserver.jsx.hbs +0 -38
- package/templates/react/IntersectionObserver/IntersectionObserver.test.jsx.hbs +0 -15
- package/templates/react/IntersectionObserver/IntersectionObserver.test.tsx.hbs +0 -10
- package/templates/react/IntersectionObserver/IntersectionObserver.tsx.hbs +0 -88
- package/templates/react/LineChart/LineChart.css.hbs +0 -15
- package/templates/react/LineChart/LineChart.jsx.hbs +0 -66
- package/templates/react/LineChart/LineChart.test.jsx.hbs +0 -15
- package/templates/react/LineChart/LineChart.test.tsx.hbs +0 -10
- package/templates/react/LineChart/LineChart.tsx.hbs +0 -98
- package/templates/react/Markdown/Markdown.css.hbs +0 -10
- package/templates/react/Markdown/Markdown.jsx.hbs +0 -20
- package/templates/react/Markdown/Markdown.test.jsx.hbs +0 -11
- package/templates/react/Markdown/Markdown.test.tsx.hbs +0 -10
- package/templates/react/Markdown/Markdown.tsx.hbs +0 -86
- package/templates/react/MutationObserver/MutationObserver.css.hbs +0 -7
- package/templates/react/MutationObserver/MutationObserver.jsx.hbs +0 -38
- package/templates/react/MutationObserver/MutationObserver.test.jsx.hbs +0 -15
- package/templates/react/MutationObserver/MutationObserver.test.tsx.hbs +0 -10
- package/templates/react/MutationObserver/MutationObserver.tsx.hbs +0 -94
- package/templates/react/NumberInput/NumberInput.css.hbs +0 -19
- package/templates/react/NumberInput/NumberInput.jsx.hbs +0 -127
- package/templates/react/NumberInput/NumberInput.test.jsx.hbs +0 -15
- package/templates/react/NumberInput/NumberInput.test.tsx.hbs +0 -10
- package/templates/react/NumberInput/NumberInput.tsx.hbs +0 -189
- package/templates/react/Option/Option.css.hbs +0 -13
- package/templates/react/Option/Option.jsx.hbs +0 -20
- package/templates/react/Option/Option.test.jsx.hbs +0 -11
- package/templates/react/Option/Option.test.tsx.hbs +0 -10
- package/templates/react/Option/Option.tsx.hbs +0 -66
- package/templates/react/Page/Page.css.hbs +0 -36
- package/templates/react/Page/Page.jsx.hbs +0 -117
- package/templates/react/Page/Page.test.jsx.hbs +0 -51
- package/templates/react/Page/Page.test.tsx.hbs +0 -10
- package/templates/react/Page/Page.tsx.hbs +0 -106
- package/templates/react/PieChart/PieChart.css.hbs +0 -12
- package/templates/react/PieChart/PieChart.jsx.hbs +0 -56
- package/templates/react/PieChart/PieChart.test.jsx.hbs +0 -15
- package/templates/react/PieChart/PieChart.test.tsx.hbs +0 -10
- package/templates/react/PieChart/PieChart.tsx.hbs +0 -74
- package/templates/react/PolarAreaChart/PolarAreaChart.css.hbs +0 -13
- package/templates/react/PolarAreaChart/PolarAreaChart.jsx.hbs +0 -56
- package/templates/react/PolarAreaChart/PolarAreaChart.test.jsx.hbs +0 -15
- package/templates/react/PolarAreaChart/PolarAreaChart.test.tsx.hbs +0 -10
- package/templates/react/PolarAreaChart/PolarAreaChart.tsx.hbs +0 -74
- package/templates/react/Popover/Popover.css.hbs +0 -20
- package/templates/react/Popover/Popover.jsx.hbs +0 -68
- package/templates/react/Popover/Popover.test.jsx.hbs +0 -18
- package/templates/react/Popover/Popover.test.tsx.hbs +0 -10
- package/templates/react/Popover/Popover.tsx.hbs +0 -151
- package/templates/react/Popup/Popup.css.hbs +0 -21
- package/templates/react/Popup/Popup.jsx.hbs +0 -45
- package/templates/react/Popup/Popup.test.jsx.hbs +0 -17
- package/templates/react/Popup/Popup.test.tsx.hbs +0 -10
- package/templates/react/Popup/Popup.tsx.hbs +0 -139
- package/templates/react/ProgressBar/ProgressBar.css.hbs +0 -17
- package/templates/react/ProgressBar/ProgressBar.jsx.hbs +0 -20
- package/templates/react/ProgressBar/ProgressBar.test.jsx.hbs +0 -16
- package/templates/react/ProgressBar/ProgressBar.test.tsx.hbs +0 -10
- package/templates/react/ProgressBar/ProgressBar.tsx.hbs +0 -63
- package/templates/react/ProgressRing/ProgressRing.css.hbs +0 -21
- package/templates/react/ProgressRing/ProgressRing.jsx.hbs +0 -20
- package/templates/react/ProgressRing/ProgressRing.test.jsx.hbs +0 -16
- package/templates/react/ProgressRing/ProgressRing.test.tsx.hbs +0 -10
- package/templates/react/ProgressRing/ProgressRing.tsx.hbs +0 -60
- package/templates/react/QrCode/QrCode.css.hbs +0 -10
- package/templates/react/QrCode/QrCode.jsx.hbs +0 -18
- package/templates/react/QrCode/QrCode.test.jsx.hbs +0 -11
- package/templates/react/QrCode/QrCode.test.tsx.hbs +0 -10
- package/templates/react/QrCode/QrCode.tsx.hbs +0 -75
- package/templates/react/RadarChart/RadarChart.css.hbs +0 -14
- package/templates/react/RadarChart/RadarChart.jsx.hbs +0 -63
- package/templates/react/RadarChart/RadarChart.test.jsx.hbs +0 -15
- package/templates/react/RadarChart/RadarChart.test.tsx.hbs +0 -10
- package/templates/react/RadarChart/RadarChart.tsx.hbs +0 -89
- package/templates/react/Radio/Radio.css.hbs +0 -16
- package/templates/react/Radio/Radio.jsx.hbs +0 -20
- package/templates/react/Radio/Radio.test.jsx.hbs +0 -11
- package/templates/react/Radio/Radio.test.tsx.hbs +0 -10
- package/templates/react/Radio/Radio.tsx.hbs +0 -94
- package/templates/react/RadioGroup/RadioGroup.css.hbs +0 -14
- package/templates/react/RadioGroup/RadioGroup.jsx.hbs +0 -49
- package/templates/react/RadioGroup/RadioGroup.test.jsx.hbs +0 -17
- package/templates/react/RadioGroup/RadioGroup.test.tsx.hbs +0 -10
- package/templates/react/RadioGroup/RadioGroup.tsx.hbs +0 -133
- package/templates/react/Rating/Rating.css.hbs +0 -15
- package/templates/react/Rating/Rating.jsx.hbs +0 -48
- package/templates/react/Rating/Rating.test.jsx.hbs +0 -18
- package/templates/react/Rating/Rating.test.tsx.hbs +0 -10
- package/templates/react/Rating/Rating.tsx.hbs +0 -138
- package/templates/react/RelativeTime/RelativeTime.css.hbs +0 -7
- package/templates/react/RelativeTime/RelativeTime.jsx.hbs +0 -18
- package/templates/react/RelativeTime/RelativeTime.test.jsx.hbs +0 -11
- package/templates/react/RelativeTime/RelativeTime.test.tsx.hbs +0 -10
- package/templates/react/RelativeTime/RelativeTime.tsx.hbs +0 -74
- package/templates/react/ResizeObserver/ResizeObserver.css.hbs +0 -7
- package/templates/react/ResizeObserver/ResizeObserver.jsx.hbs +0 -38
- package/templates/react/ResizeObserver/ResizeObserver.test.jsx.hbs +0 -15
- package/templates/react/ResizeObserver/ResizeObserver.test.tsx.hbs +0 -10
- package/templates/react/ResizeObserver/ResizeObserver.tsx.hbs +0 -76
- package/templates/react/ScatterChart/ScatterChart.css.hbs +0 -14
- package/templates/react/ScatterChart/ScatterChart.jsx.hbs +0 -60
- package/templates/react/ScatterChart/ScatterChart.test.jsx.hbs +0 -15
- package/templates/react/ScatterChart/ScatterChart.test.tsx.hbs +0 -10
- package/templates/react/ScatterChart/ScatterChart.tsx.hbs +0 -88
- package/templates/react/Scroller/Scroller.css.hbs +0 -14
- package/templates/react/Scroller/Scroller.jsx.hbs +0 -20
- package/templates/react/Scroller/Scroller.test.jsx.hbs +0 -11
- package/templates/react/Scroller/Scroller.test.tsx.hbs +0 -10
- package/templates/react/Scroller/Scroller.tsx.hbs +0 -66
- package/templates/react/Select/Select.css.hbs +0 -29
- package/templates/react/Select/Select.jsx.hbs +0 -79
- package/templates/react/Select/Select.test.jsx.hbs +0 -20
- package/templates/react/Select/Select.test.tsx.hbs +0 -10
- package/templates/react/Select/Select.tsx.hbs +0 -244
- package/templates/react/Skeleton/Skeleton.css.hbs +0 -14
- package/templates/react/Skeleton/Skeleton.jsx.hbs +0 -18
- package/templates/react/Skeleton/Skeleton.test.jsx.hbs +0 -11
- package/templates/react/Skeleton/Skeleton.test.tsx.hbs +0 -10
- package/templates/react/Skeleton/Skeleton.tsx.hbs +0 -57
- package/templates/react/Slider/Slider.css.hbs +0 -31
- package/templates/react/Slider/Slider.jsx.hbs +0 -50
- package/templates/react/Slider/Slider.test.jsx.hbs +0 -19
- package/templates/react/Slider/Slider.test.tsx.hbs +0 -10
- package/templates/react/Slider/Slider.tsx.hbs +0 -189
- package/templates/react/Sparkline/Sparkline.css.hbs +0 -17
- package/templates/react/Sparkline/Sparkline.jsx.hbs +0 -61
- package/templates/react/Sparkline/Sparkline.test.jsx.hbs +0 -15
- package/templates/react/Sparkline/Sparkline.test.tsx.hbs +0 -10
- package/templates/react/Sparkline/Sparkline.tsx.hbs +0 -73
- package/templates/react/Spinner/Spinner.css.hbs +0 -16
- package/templates/react/Spinner/Spinner.jsx.hbs +0 -18
- package/templates/react/Spinner/Spinner.test.jsx.hbs +0 -11
- package/templates/react/Spinner/Spinner.test.tsx.hbs +0 -10
- package/templates/react/Spinner/Spinner.tsx.hbs +0 -53
- package/templates/react/SplitPanel/SplitPanel.css.hbs +0 -19
- package/templates/react/SplitPanel/SplitPanel.jsx.hbs +0 -38
- package/templates/react/SplitPanel/SplitPanel.test.jsx.hbs +0 -16
- package/templates/react/SplitPanel/SplitPanel.test.tsx.hbs +0 -10
- package/templates/react/SplitPanel/SplitPanel.tsx.hbs +0 -94
- package/templates/react/Switch/Switch.css.hbs +0 -19
- package/templates/react/Switch/Switch.jsx.hbs +0 -51
- package/templates/react/Switch/Switch.test.jsx.hbs +0 -19
- package/templates/react/Switch/Switch.test.tsx.hbs +0 -10
- package/templates/react/Switch/Switch.tsx.hbs +0 -158
- package/templates/react/Tab/Tab.css.hbs +0 -10
- package/templates/react/Tab/Tab.jsx.hbs +0 -20
- package/templates/react/Tab/Tab.test.jsx.hbs +0 -11
- package/templates/react/Tab/Tab.test.tsx.hbs +0 -10
- package/templates/react/Tab/Tab.tsx.hbs +0 -60
- package/templates/react/TabGroup/TabGroup.css.hbs +0 -22
- package/templates/react/TabGroup/TabGroup.jsx.hbs +0 -42
- package/templates/react/TabGroup/TabGroup.test.jsx.hbs +0 -11
- package/templates/react/TabGroup/TabGroup.test.tsx.hbs +0 -10
- package/templates/react/TabGroup/TabGroup.tsx.hbs +0 -94
- package/templates/react/TabPanel/TabPanel.css.hbs +0 -13
- package/templates/react/TabPanel/TabPanel.jsx.hbs +0 -20
- package/templates/react/TabPanel/TabPanel.test.jsx.hbs +0 -11
- package/templates/react/TabPanel/TabPanel.test.tsx.hbs +0 -10
- package/templates/react/TabPanel/TabPanel.tsx.hbs +0 -60
- package/templates/react/Tag/Tag.css.hbs +0 -13
- package/templates/react/Tag/Tag.jsx.hbs +0 -41
- package/templates/react/Tag/Tag.test.jsx.hbs +0 -11
- package/templates/react/Tag/Tag.test.tsx.hbs +0 -10
- package/templates/react/Tag/Tag.tsx.hbs +0 -95
- package/templates/react/Textarea/Textarea.css.hbs +0 -14
- package/templates/react/Textarea/Textarea.jsx.hbs +0 -58
- package/templates/react/Textarea/Textarea.test.jsx.hbs +0 -11
- package/templates/react/Textarea/Textarea.test.tsx.hbs +0 -10
- package/templates/react/Textarea/Textarea.tsx.hbs +0 -209
- package/templates/react/Toast/Toast.css.hbs +0 -14
- package/templates/react/Toast/Toast.jsx.hbs +0 -57
- package/templates/react/Toast/Toast.test.jsx.hbs +0 -10
- package/templates/react/Toast/Toast.test.tsx.hbs +0 -10
- package/templates/react/Toast/Toast.tsx.hbs +0 -67
- package/templates/react/ToastItem/ToastItem.css.hbs +0 -21
- package/templates/react/ToastItem/ToastItem.jsx.hbs +0 -82
- package/templates/react/ToastItem/ToastItem.test.jsx.hbs +0 -15
- package/templates/react/ToastItem/ToastItem.test.tsx.hbs +0 -10
- package/templates/react/ToastItem/ToastItem.tsx.hbs +0 -111
- package/templates/react/Tooltip/Tooltip.css.hbs +0 -16
- package/templates/react/Tooltip/Tooltip.jsx.hbs +0 -63
- package/templates/react/Tooltip/Tooltip.test.jsx.hbs +0 -15
- package/templates/react/Tooltip/Tooltip.test.tsx.hbs +0 -10
- package/templates/react/Tooltip/Tooltip.tsx.hbs +0 -150
- package/templates/react/Tree/Tree.css.hbs +0 -17
- package/templates/react/Tree/Tree.jsx.hbs +0 -41
- package/templates/react/Tree/Tree.test.jsx.hbs +0 -11
- package/templates/react/Tree/Tree.test.tsx.hbs +0 -10
- package/templates/react/Tree/Tree.tsx.hbs +0 -76
- package/templates/react/TreeItem/TreeItem.css.hbs +0 -27
- package/templates/react/TreeItem/TreeItem.jsx.hbs +0 -57
- package/templates/react/TreeItem/TreeItem.test.jsx.hbs +0 -11
- package/templates/react/TreeItem/TreeItem.test.tsx.hbs +0 -10
- package/templates/react/TreeItem/TreeItem.tsx.hbs +0 -142
- package/templates/react/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
- package/templates/react/ZoomableFrame/ZoomableFrame.jsx.hbs +0 -52
- package/templates/react/ZoomableFrame/ZoomableFrame.test.jsx.hbs +0 -11
- package/templates/react/ZoomableFrame/ZoomableFrame.test.tsx.hbs +0 -10
- package/templates/react/ZoomableFrame/ZoomableFrame.tsx.hbs +0 -147
- package/templates/react/vite-env.d.ts.hbs +0 -21
- package/templates/vue/AnimatedImage/AnimatedImage.css.hbs +0 -11
- package/templates/vue/AnimatedImage/AnimatedImage.js.vue.hbs +0 -60
- package/templates/vue/AnimatedImage/AnimatedImage.test.js.hbs +0 -10
- package/templates/vue/AnimatedImage/AnimatedImage.test.ts.hbs +0 -10
- package/templates/vue/AnimatedImage/AnimatedImage.vue.hbs +0 -66
- package/templates/vue/Animation/Animation.js.vue.hbs +0 -73
- package/templates/vue/Animation/Animation.test.js.hbs +0 -10
- package/templates/vue/Animation/Animation.test.ts.hbs +0 -10
- package/templates/vue/Animation/Animation.vue.hbs +0 -80
- package/templates/vue/Avatar/Avatar.css.hbs +0 -11
- package/templates/vue/Avatar/Avatar.js.vue.hbs +0 -59
- package/templates/vue/Avatar/Avatar.test.js.hbs +0 -10
- package/templates/vue/Avatar/Avatar.test.ts.hbs +0 -10
- package/templates/vue/Avatar/Avatar.vue.hbs +0 -64
- package/templates/vue/Badge/Badge.css.hbs +0 -11
- package/templates/vue/Badge/Badge.js.vue.hbs +0 -42
- package/templates/vue/Badge/Badge.test.js.hbs +0 -10
- package/templates/vue/Badge/Badge.test.ts.hbs +0 -10
- package/templates/vue/Badge/Badge.vue.hbs +0 -43
- package/templates/vue/BarChart/BarChart.css.hbs +0 -11
- package/templates/vue/BarChart/BarChart.js.vue.hbs +0 -52
- package/templates/vue/BarChart/BarChart.test.js.hbs +0 -10
- package/templates/vue/BarChart/BarChart.test.ts.hbs +0 -10
- package/templates/vue/BarChart/BarChart.vue.hbs +0 -53
- package/templates/vue/Breadcrumb/Breadcrumb.css.hbs +0 -11
- package/templates/vue/Breadcrumb/Breadcrumb.js.vue.hbs +0 -39
- package/templates/vue/Breadcrumb/Breadcrumb.test.js.hbs +0 -10
- package/templates/vue/Breadcrumb/Breadcrumb.test.ts.hbs +0 -10
- package/templates/vue/Breadcrumb/Breadcrumb.vue.hbs +0 -40
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.css.hbs +0 -11
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.js.vue.hbs +0 -41
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.js.hbs +0 -10
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.test.ts.hbs +0 -10
- package/templates/vue/BreadcrumbItem/BreadcrumbItem.vue.hbs +0 -42
- package/templates/vue/BubbleChart/BubbleChart.css.hbs +0 -11
- package/templates/vue/BubbleChart/BubbleChart.js.vue.hbs +0 -51
- package/templates/vue/BubbleChart/BubbleChart.test.js.hbs +0 -10
- package/templates/vue/BubbleChart/BubbleChart.test.ts.hbs +0 -10
- package/templates/vue/BubbleChart/BubbleChart.vue.hbs +0 -52
- package/templates/vue/Button/Button.css.hbs +0 -20
- package/templates/vue/Button/Button.js.vue.hbs +0 -85
- package/templates/vue/Button/Button.test.js.hbs +0 -10
- package/templates/vue/Button/Button.test.ts.hbs +0 -10
- package/templates/vue/Button/Button.vue.hbs +0 -92
- package/templates/vue/ButtonGroup/ButtonGroup.css.hbs +0 -11
- package/templates/vue/ButtonGroup/ButtonGroup.js.vue.hbs +0 -40
- package/templates/vue/ButtonGroup/ButtonGroup.test.js.hbs +0 -10
- package/templates/vue/ButtonGroup/ButtonGroup.test.ts.hbs +0 -10
- package/templates/vue/ButtonGroup/ButtonGroup.vue.hbs +0 -41
- package/templates/vue/Callout/Callout.css.hbs +0 -11
- package/templates/vue/Callout/Callout.js.vue.hbs +0 -41
- package/templates/vue/Callout/Callout.test.js.hbs +0 -10
- package/templates/vue/Callout/Callout.test.ts.hbs +0 -10
- package/templates/vue/Callout/Callout.vue.hbs +0 -42
- package/templates/vue/Card/Card.css.hbs +0 -17
- package/templates/vue/Card/Card.js.vue.hbs +0 -43
- package/templates/vue/Card/Card.test.js.hbs +0 -10
- package/templates/vue/Card/Card.test.ts.hbs +0 -10
- package/templates/vue/Card/Card.vue.hbs +0 -44
- package/templates/vue/Carousel/Carousel.css.hbs +0 -11
- package/templates/vue/Carousel/Carousel.js.vue.hbs +0 -66
- package/templates/vue/Carousel/Carousel.test.js.hbs +0 -10
- package/templates/vue/Carousel/Carousel.test.ts.hbs +0 -10
- package/templates/vue/Carousel/Carousel.vue.hbs +0 -71
- package/templates/vue/CarouselItem/CarouselItem.css.hbs +0 -11
- package/templates/vue/CarouselItem/CarouselItem.js.vue.hbs +0 -39
- package/templates/vue/CarouselItem/CarouselItem.test.js.hbs +0 -10
- package/templates/vue/CarouselItem/CarouselItem.test.ts.hbs +0 -10
- package/templates/vue/CarouselItem/CarouselItem.vue.hbs +0 -40
- package/templates/vue/Chart/Chart.css.hbs +0 -11
- package/templates/vue/Chart/Chart.js.vue.hbs +0 -52
- package/templates/vue/Chart/Chart.test.js.hbs +0 -10
- package/templates/vue/Chart/Chart.test.ts.hbs +0 -10
- package/templates/vue/Chart/Chart.vue.hbs +0 -53
- package/templates/vue/Checkbox/Checkbox.css.hbs +0 -11
- package/templates/vue/Checkbox/Checkbox.js.vue.hbs +0 -87
- package/templates/vue/Checkbox/Checkbox.test.js.hbs +0 -10
- package/templates/vue/Checkbox/Checkbox.test.ts.hbs +0 -10
- package/templates/vue/Checkbox/Checkbox.vue.hbs +0 -96
- package/templates/vue/ColorPicker/ColorPicker.css.hbs +0 -11
- package/templates/vue/ColorPicker/ColorPicker.js.vue.hbs +0 -110
- package/templates/vue/ColorPicker/ColorPicker.test.js.hbs +0 -10
- package/templates/vue/ColorPicker/ColorPicker.test.ts.hbs +0 -10
- package/templates/vue/ColorPicker/ColorPicker.vue.hbs +0 -123
- package/templates/vue/Combobox/Combobox.css.hbs +0 -11
- package/templates/vue/Combobox/Combobox.js.vue.hbs +0 -120
- package/templates/vue/Combobox/Combobox.test.js.hbs +0 -10
- package/templates/vue/Combobox/Combobox.test.ts.hbs +0 -10
- package/templates/vue/Combobox/Combobox.vue.hbs +0 -136
- package/templates/vue/Comparison/Comparison.css.hbs +0 -11
- package/templates/vue/Comparison/Comparison.js.vue.hbs +0 -55
- package/templates/vue/Comparison/Comparison.test.js.hbs +0 -10
- package/templates/vue/Comparison/Comparison.test.ts.hbs +0 -10
- package/templates/vue/Comparison/Comparison.vue.hbs +0 -60
- package/templates/vue/CopyButton/CopyButton.css.hbs +0 -11
- package/templates/vue/CopyButton/CopyButton.js.vue.hbs +0 -65
- package/templates/vue/CopyButton/CopyButton.test.js.hbs +0 -10
- package/templates/vue/CopyButton/CopyButton.test.ts.hbs +0 -10
- package/templates/vue/CopyButton/CopyButton.vue.hbs +0 -71
- package/templates/vue/Details/Details.css.hbs +0 -11
- package/templates/vue/Details/Details.js.vue.hbs +0 -81
- package/templates/vue/Details/Details.test.js.hbs +0 -10
- package/templates/vue/Details/Details.test.ts.hbs +0 -10
- package/templates/vue/Details/Details.vue.hbs +0 -89
- package/templates/vue/Dialog/Dialog.css.hbs +0 -23
- package/templates/vue/Dialog/Dialog.js.vue.hbs +0 -79
- package/templates/vue/Dialog/Dialog.test.js.hbs +0 -10
- package/templates/vue/Dialog/Dialog.test.ts.hbs +0 -10
- package/templates/vue/Dialog/Dialog.vue.hbs +0 -94
- package/templates/vue/Divider/Divider.css.hbs +0 -11
- package/templates/vue/Divider/Divider.js.vue.hbs +0 -39
- package/templates/vue/Divider/Divider.test.js.hbs +0 -10
- package/templates/vue/Divider/Divider.test.ts.hbs +0 -10
- package/templates/vue/Divider/Divider.vue.hbs +0 -40
- package/templates/vue/DoughnutChart/DoughnutChart.css.hbs +0 -11
- package/templates/vue/DoughnutChart/DoughnutChart.js.vue.hbs +0 -44
- package/templates/vue/DoughnutChart/DoughnutChart.test.js.hbs +0 -10
- package/templates/vue/DoughnutChart/DoughnutChart.test.ts.hbs +0 -10
- package/templates/vue/DoughnutChart/DoughnutChart.vue.hbs +0 -45
- package/templates/vue/Drawer/Drawer.css.hbs +0 -11
- package/templates/vue/Drawer/Drawer.js.vue.hbs +0 -73
- package/templates/vue/Drawer/Drawer.test.js.hbs +0 -10
- package/templates/vue/Drawer/Drawer.test.ts.hbs +0 -10
- package/templates/vue/Drawer/Drawer.vue.hbs +0 -81
- package/templates/vue/Dropdown/Dropdown.css.hbs +0 -11
- package/templates/vue/Dropdown/Dropdown.js.vue.hbs +0 -84
- package/templates/vue/Dropdown/Dropdown.test.js.hbs +0 -10
- package/templates/vue/Dropdown/Dropdown.test.ts.hbs +0 -10
- package/templates/vue/Dropdown/Dropdown.vue.hbs +0 -98
- package/templates/vue/DropdownItem/DropdownItem.css.hbs +0 -11
- package/templates/vue/DropdownItem/DropdownItem.js.vue.hbs +0 -65
- package/templates/vue/DropdownItem/DropdownItem.test.js.hbs +0 -10
- package/templates/vue/DropdownItem/DropdownItem.test.ts.hbs +0 -10
- package/templates/vue/DropdownItem/DropdownItem.vue.hbs +0 -71
- package/templates/vue/FileInput/FileInput.css.hbs +0 -19
- package/templates/vue/FileInput/FileInput.js.vue.hbs +0 -78
- package/templates/vue/FileInput/FileInput.test.js.hbs +0 -10
- package/templates/vue/FileInput/FileInput.test.ts.hbs +0 -10
- package/templates/vue/FileInput/FileInput.vue.hbs +0 -88
- package/templates/vue/FormatBytes/FormatBytes.js.vue.hbs +0 -42
- package/templates/vue/FormatBytes/FormatBytes.test.js.hbs +0 -10
- package/templates/vue/FormatBytes/FormatBytes.test.ts.hbs +0 -10
- package/templates/vue/FormatBytes/FormatBytes.vue.hbs +0 -43
- package/templates/vue/FormatDate/FormatDate.js.vue.hbs +0 -51
- package/templates/vue/FormatDate/FormatDate.test.js.hbs +0 -10
- package/templates/vue/FormatDate/FormatDate.test.ts.hbs +0 -10
- package/templates/vue/FormatDate/FormatDate.vue.hbs +0 -52
- package/templates/vue/FormatNumber/FormatNumber.js.vue.hbs +0 -49
- package/templates/vue/FormatNumber/FormatNumber.test.js.hbs +0 -10
- package/templates/vue/FormatNumber/FormatNumber.test.ts.hbs +0 -10
- package/templates/vue/FormatNumber/FormatNumber.vue.hbs +0 -50
- package/templates/vue/Icon/Icon.css.hbs +0 -11
- package/templates/vue/Icon/Icon.js.vue.hbs +0 -68
- package/templates/vue/Icon/Icon.test.js.hbs +0 -10
- package/templates/vue/Icon/Icon.test.ts.hbs +0 -10
- package/templates/vue/Icon/Icon.vue.hbs +0 -74
- package/templates/vue/Include/Include.js.vue.hbs +0 -60
- package/templates/vue/Include/Include.test.js.hbs +0 -10
- package/templates/vue/Include/Include.test.ts.hbs +0 -10
- package/templates/vue/Include/Include.vue.hbs +0 -66
- package/templates/vue/Input/Input.css.hbs +0 -24
- package/templates/vue/Input/Input.js.vue.hbs +0 -115
- package/templates/vue/Input/Input.test.js.hbs +0 -10
- package/templates/vue/Input/Input.test.ts.hbs +0 -10
- package/templates/vue/Input/Input.vue.hbs +0 -125
- package/templates/vue/IntersectionObserver/IntersectionObserver.js.vue.hbs +0 -59
- package/templates/vue/IntersectionObserver/IntersectionObserver.test.js.hbs +0 -10
- package/templates/vue/IntersectionObserver/IntersectionObserver.test.ts.hbs +0 -10
- package/templates/vue/IntersectionObserver/IntersectionObserver.vue.hbs +0 -64
- package/templates/vue/LineChart/LineChart.css.hbs +0 -11
- package/templates/vue/LineChart/LineChart.js.vue.hbs +0 -51
- package/templates/vue/LineChart/LineChart.test.js.hbs +0 -10
- package/templates/vue/LineChart/LineChart.test.ts.hbs +0 -10
- package/templates/vue/LineChart/LineChart.vue.hbs +0 -52
- package/templates/vue/Markdown/Markdown.css.hbs +0 -10
- package/templates/vue/Markdown/Markdown.js.vue.hbs +0 -40
- package/templates/vue/Markdown/Markdown.test.js.hbs +0 -10
- package/templates/vue/Markdown/Markdown.test.ts.hbs +0 -10
- package/templates/vue/Markdown/Markdown.vue.hbs +0 -49
- package/templates/vue/MutationObserver/MutationObserver.js.vue.hbs +0 -61
- package/templates/vue/MutationObserver/MutationObserver.test.js.hbs +0 -10
- package/templates/vue/MutationObserver/MutationObserver.test.ts.hbs +0 -10
- package/templates/vue/MutationObserver/MutationObserver.vue.hbs +0 -66
- package/templates/vue/NumberInput/NumberInput.css.hbs +0 -19
- package/templates/vue/NumberInput/NumberInput.js.vue.hbs +0 -93
- package/templates/vue/NumberInput/NumberInput.test.js.hbs +0 -10
- package/templates/vue/NumberInput/NumberInput.test.ts.hbs +0 -10
- package/templates/vue/NumberInput/NumberInput.vue.hbs +0 -102
- package/templates/vue/Option/Option.css.hbs +0 -11
- package/templates/vue/Option/Option.js.vue.hbs +0 -42
- package/templates/vue/Option/Option.test.js.hbs +0 -10
- package/templates/vue/Option/Option.test.ts.hbs +0 -10
- package/templates/vue/Option/Option.vue.hbs +0 -43
- package/templates/vue/Page/Page.css.hbs +0 -11
- package/templates/vue/Page/Page.js.vue.hbs +0 -47
- package/templates/vue/Page/Page.test.js.hbs +0 -10
- package/templates/vue/Page/Page.test.ts.hbs +0 -10
- package/templates/vue/Page/Page.vue.hbs +0 -48
- package/templates/vue/PieChart/PieChart.css.hbs +0 -11
- package/templates/vue/PieChart/PieChart.js.vue.hbs +0 -44
- package/templates/vue/PieChart/PieChart.test.js.hbs +0 -10
- package/templates/vue/PieChart/PieChart.test.ts.hbs +0 -10
- package/templates/vue/PieChart/PieChart.vue.hbs +0 -45
- package/templates/vue/PolarAreaChart/PolarAreaChart.css.hbs +0 -11
- package/templates/vue/PolarAreaChart/PolarAreaChart.js.vue.hbs +0 -44
- package/templates/vue/PolarAreaChart/PolarAreaChart.test.js.hbs +0 -10
- package/templates/vue/PolarAreaChart/PolarAreaChart.test.ts.hbs +0 -10
- package/templates/vue/PolarAreaChart/PolarAreaChart.vue.hbs +0 -45
- package/templates/vue/Popover/Popover.css.hbs +0 -11
- package/templates/vue/Popover/Popover.js.vue.hbs +0 -84
- package/templates/vue/Popover/Popover.test.js.hbs +0 -10
- package/templates/vue/Popover/Popover.test.ts.hbs +0 -10
- package/templates/vue/Popover/Popover.vue.hbs +0 -92
- package/templates/vue/Popup/Popup.css.hbs +0 -11
- package/templates/vue/Popup/Popup.js.vue.hbs +0 -73
- package/templates/vue/Popup/Popup.test.js.hbs +0 -10
- package/templates/vue/Popup/Popup.test.ts.hbs +0 -10
- package/templates/vue/Popup/Popup.vue.hbs +0 -78
- package/templates/vue/ProgressBar/ProgressBar.css.hbs +0 -11
- package/templates/vue/ProgressBar/ProgressBar.js.vue.hbs +0 -41
- package/templates/vue/ProgressBar/ProgressBar.test.js.hbs +0 -10
- package/templates/vue/ProgressBar/ProgressBar.test.ts.hbs +0 -10
- package/templates/vue/ProgressBar/ProgressBar.vue.hbs +0 -42
- package/templates/vue/ProgressRing/ProgressRing.css.hbs +0 -11
- package/templates/vue/ProgressRing/ProgressRing.js.vue.hbs +0 -40
- package/templates/vue/ProgressRing/ProgressRing.test.js.hbs +0 -10
- package/templates/vue/ProgressRing/ProgressRing.test.ts.hbs +0 -10
- package/templates/vue/ProgressRing/ProgressRing.vue.hbs +0 -41
- package/templates/vue/QrCode/QrCode.css.hbs +0 -11
- package/templates/vue/QrCode/QrCode.js.vue.hbs +0 -45
- package/templates/vue/QrCode/QrCode.test.js.hbs +0 -10
- package/templates/vue/QrCode/QrCode.test.ts.hbs +0 -10
- package/templates/vue/QrCode/QrCode.vue.hbs +0 -46
- package/templates/vue/RadarChart/RadarChart.css.hbs +0 -11
- package/templates/vue/RadarChart/RadarChart.js.vue.hbs +0 -48
- package/templates/vue/RadarChart/RadarChart.test.js.hbs +0 -10
- package/templates/vue/RadarChart/RadarChart.test.ts.hbs +0 -10
- package/templates/vue/RadarChart/RadarChart.vue.hbs +0 -49
- package/templates/vue/Radio/Radio.css.hbs +0 -11
- package/templates/vue/Radio/Radio.js.vue.hbs +0 -64
- package/templates/vue/Radio/Radio.test.js.hbs +0 -10
- package/templates/vue/Radio/Radio.test.ts.hbs +0 -10
- package/templates/vue/Radio/Radio.vue.hbs +0 -70
- package/templates/vue/RadioGroup/RadioGroup.css.hbs +0 -11
- package/templates/vue/RadioGroup/RadioGroup.js.vue.hbs +0 -81
- package/templates/vue/RadioGroup/RadioGroup.test.js.hbs +0 -10
- package/templates/vue/RadioGroup/RadioGroup.test.ts.hbs +0 -10
- package/templates/vue/RadioGroup/RadioGroup.vue.hbs +0 -88
- package/templates/vue/Rating/Rating.css.hbs +0 -11
- package/templates/vue/Rating/Rating.js.vue.hbs +0 -78
- package/templates/vue/Rating/Rating.test.js.hbs +0 -10
- package/templates/vue/Rating/Rating.test.ts.hbs +0 -10
- package/templates/vue/Rating/Rating.vue.hbs +0 -85
- package/templates/vue/RelativeTime/RelativeTime.js.vue.hbs +0 -43
- package/templates/vue/RelativeTime/RelativeTime.test.js.hbs +0 -10
- package/templates/vue/RelativeTime/RelativeTime.test.ts.hbs +0 -10
- package/templates/vue/RelativeTime/RelativeTime.vue.hbs +0 -44
- package/templates/vue/ResizeObserver/ResizeObserver.js.vue.hbs +0 -55
- package/templates/vue/ResizeObserver/ResizeObserver.test.js.hbs +0 -10
- package/templates/vue/ResizeObserver/ResizeObserver.test.ts.hbs +0 -10
- package/templates/vue/ResizeObserver/ResizeObserver.vue.hbs +0 -60
- package/templates/vue/ScatterChart/ScatterChart.css.hbs +0 -11
- package/templates/vue/ScatterChart/ScatterChart.js.vue.hbs +0 -49
- package/templates/vue/ScatterChart/ScatterChart.test.js.hbs +0 -10
- package/templates/vue/ScatterChart/ScatterChart.test.ts.hbs +0 -10
- package/templates/vue/ScatterChart/ScatterChart.vue.hbs +0 -50
- package/templates/vue/Scroller/Scroller.css.hbs +0 -11
- package/templates/vue/Scroller/Scroller.js.vue.hbs +0 -42
- package/templates/vue/Scroller/Scroller.test.js.hbs +0 -10
- package/templates/vue/Scroller/Scroller.test.ts.hbs +0 -10
- package/templates/vue/Scroller/Scroller.vue.hbs +0 -43
- package/templates/vue/Select/Select.css.hbs +0 -11
- package/templates/vue/Select/Select.js.vue.hbs +0 -113
- package/templates/vue/Select/Select.test.js.hbs +0 -10
- package/templates/vue/Select/Select.test.ts.hbs +0 -10
- package/templates/vue/Select/Select.vue.hbs +0 -127
- package/templates/vue/Skeleton/Skeleton.css.hbs +0 -11
- package/templates/vue/Skeleton/Skeleton.js.vue.hbs +0 -39
- package/templates/vue/Skeleton/Skeleton.test.js.hbs +0 -10
- package/templates/vue/Skeleton/Skeleton.test.ts.hbs +0 -10
- package/templates/vue/Skeleton/Skeleton.vue.hbs +0 -40
- package/templates/vue/Slider/Slider.css.hbs +0 -11
- package/templates/vue/Slider/Slider.js.vue.hbs +0 -95
- package/templates/vue/Slider/Slider.test.js.hbs +0 -10
- package/templates/vue/Slider/Slider.test.ts.hbs +0 -10
- package/templates/vue/Slider/Slider.vue.hbs +0 -104
- package/templates/vue/Sparkline/Sparkline.css.hbs +0 -14
- package/templates/vue/Sparkline/Sparkline.js.vue.hbs +0 -43
- package/templates/vue/Sparkline/Sparkline.test.js.hbs +0 -10
- package/templates/vue/Sparkline/Sparkline.test.ts.hbs +0 -10
- package/templates/vue/Sparkline/Sparkline.vue.hbs +0 -44
- package/templates/vue/Spinner/Spinner.css.hbs +0 -11
- package/templates/vue/Spinner/Spinner.js.vue.hbs +0 -39
- package/templates/vue/Spinner/Spinner.test.js.hbs +0 -10
- package/templates/vue/Spinner/Spinner.test.ts.hbs +0 -10
- package/templates/vue/Spinner/Spinner.vue.hbs +0 -40
- package/templates/vue/SplitPanel/SplitPanel.css.hbs +0 -11
- package/templates/vue/SplitPanel/SplitPanel.js.vue.hbs +0 -61
- package/templates/vue/SplitPanel/SplitPanel.test.js.hbs +0 -10
- package/templates/vue/SplitPanel/SplitPanel.test.ts.hbs +0 -10
- package/templates/vue/SplitPanel/SplitPanel.vue.hbs +0 -66
- package/templates/vue/Switch/Switch.css.hbs +0 -11
- package/templates/vue/Switch/Switch.js.vue.hbs +0 -86
- package/templates/vue/Switch/Switch.test.js.hbs +0 -10
- package/templates/vue/Switch/Switch.test.ts.hbs +0 -10
- package/templates/vue/Switch/Switch.vue.hbs +0 -95
- package/templates/vue/Tab/Tab.css.hbs +0 -11
- package/templates/vue/Tab/Tab.js.vue.hbs +0 -40
- package/templates/vue/Tab/Tab.test.js.hbs +0 -10
- package/templates/vue/Tab/Tab.test.ts.hbs +0 -10
- package/templates/vue/Tab/Tab.vue.hbs +0 -41
- package/templates/vue/TabGroup/TabGroup.css.hbs +0 -11
- package/templates/vue/TabGroup/TabGroup.js.vue.hbs +0 -61
- package/templates/vue/TabGroup/TabGroup.test.js.hbs +0 -10
- package/templates/vue/TabGroup/TabGroup.test.ts.hbs +0 -10
- package/templates/vue/TabGroup/TabGroup.vue.hbs +0 -67
- package/templates/vue/TabPanel/TabPanel.css.hbs +0 -11
- package/templates/vue/TabPanel/TabPanel.js.vue.hbs +0 -40
- package/templates/vue/TabPanel/TabPanel.test.js.hbs +0 -10
- package/templates/vue/TabPanel/TabPanel.test.ts.hbs +0 -10
- package/templates/vue/TabPanel/TabPanel.vue.hbs +0 -41
- package/templates/vue/Tag/Tag.css.hbs +0 -11
- package/templates/vue/Tag/Tag.js.vue.hbs +0 -59
- package/templates/vue/Tag/Tag.test.js.hbs +0 -10
- package/templates/vue/Tag/Tag.test.ts.hbs +0 -10
- package/templates/vue/Tag/Tag.vue.hbs +0 -64
- package/templates/vue/Textarea/Textarea.css.hbs +0 -11
- package/templates/vue/Textarea/Textarea.js.vue.hbs +0 -98
- package/templates/vue/Textarea/Textarea.test.js.hbs +0 -10
- package/templates/vue/Textarea/Textarea.test.ts.hbs +0 -10
- package/templates/vue/Textarea/Textarea.vue.hbs +0 -107
- package/templates/vue/Toast/Toast.css.hbs +0 -11
- package/templates/vue/Toast/Toast.js.vue.hbs +0 -40
- package/templates/vue/Toast/Toast.test.js.hbs +0 -10
- package/templates/vue/Toast/Toast.test.ts.hbs +0 -10
- package/templates/vue/Toast/Toast.vue.hbs +0 -41
- package/templates/vue/ToastItem/ToastItem.css.hbs +0 -11
- package/templates/vue/ToastItem/ToastItem.js.vue.hbs +0 -67
- package/templates/vue/ToastItem/ToastItem.test.js.hbs +0 -10
- package/templates/vue/ToastItem/ToastItem.test.ts.hbs +0 -10
- package/templates/vue/ToastItem/ToastItem.vue.hbs +0 -75
- package/templates/vue/Tooltip/Tooltip.css.hbs +0 -11
- package/templates/vue/Tooltip/Tooltip.js.vue.hbs +0 -85
- package/templates/vue/Tooltip/Tooltip.test.js.hbs +0 -10
- package/templates/vue/Tooltip/Tooltip.test.ts.hbs +0 -10
- package/templates/vue/Tooltip/Tooltip.vue.hbs +0 -93
- package/templates/vue/Tree/Tree.css.hbs +0 -11
- package/templates/vue/Tree/Tree.js.vue.hbs +0 -55
- package/templates/vue/Tree/Tree.test.js.hbs +0 -10
- package/templates/vue/Tree/Tree.test.ts.hbs +0 -10
- package/templates/vue/Tree/Tree.vue.hbs +0 -60
- package/templates/vue/TreeItem/TreeItem.css.hbs +0 -11
- package/templates/vue/TreeItem/TreeItem.js.vue.hbs +0 -77
- package/templates/vue/TreeItem/TreeItem.test.js.hbs +0 -10
- package/templates/vue/TreeItem/TreeItem.test.ts.hbs +0 -10
- package/templates/vue/TreeItem/TreeItem.vue.hbs +0 -87
- package/templates/vue/ZoomableFrame/ZoomableFrame.css.hbs +0 -11
- package/templates/vue/ZoomableFrame/ZoomableFrame.js.vue.hbs +0 -69
- package/templates/vue/ZoomableFrame/ZoomableFrame.test.js.hbs +0 -10
- package/templates/vue/ZoomableFrame/ZoomableFrame.test.ts.hbs +0 -10
- package/templates/vue/ZoomableFrame/ZoomableFrame.vue.hbs +0 -75
- /package/dist/{tier-4FZLELBX.js.map → project-config-D3FYPYTX.js.map} +0 -0
- /package/{dist/templates/angular/Animation/animation.component.css.hbs → templates/angular/Animation/animation.component.css} +0 -0
- /package/{dist/templates/angular/FormatBytes/format-bytes.component.css.hbs → templates/angular/FormatBytes/format-bytes.component.css} +0 -0
- /package/{dist/templates/angular/FormatDate/format-date.component.css.hbs → templates/angular/FormatDate/format-date.component.css} +0 -0
- /package/{dist/templates/angular/FormatNumber/format-number.component.css.hbs → templates/angular/FormatNumber/format-number.component.css} +0 -0
- /package/{dist/templates/angular/Include/include.component.css.hbs → templates/angular/Include/include.component.css} +0 -0
- /package/{dist/templates/angular/IntersectionObserver/intersection-observer.component.css.hbs → templates/angular/IntersectionObserver/intersection-observer.component.css} +0 -0
- /package/{dist/templates/angular/Markdown/markdown.component.css.hbs → templates/angular/Markdown/markdown.component.css} +0 -0
- /package/{dist/templates/angular/MutationObserver/mutation-observer.component.css.hbs → templates/angular/MutationObserver/mutation-observer.component.css} +0 -0
- /package/{dist/templates/angular/RelativeTime/relative-time.component.css.hbs → templates/angular/RelativeTime/relative-time.component.css} +0 -0
- /package/{dist/templates/angular/ResizeObserver/resize-observer.component.css.hbs → templates/angular/ResizeObserver/resize-observer.component.css} +0 -0
- /package/{dist/templates/react/AnimatedImage/AnimatedImage.test.jsx.hbs → templates/react/AnimatedImage/AnimatedImage.test.jsx} +0 -0
- /package/{dist/templates/vue/Animation/Animation.css.hbs → templates/react/Animation/Animation.css} +0 -0
- /package/{dist/templates/react/Animation/Animation.test.jsx.hbs → templates/react/Animation/Animation.test.jsx} +0 -0
- /package/{dist/templates/react/Avatar/Avatar.test.jsx.hbs → templates/react/Avatar/Avatar.test.jsx} +0 -0
- /package/{dist/templates/react/Badge/Badge.test.jsx.hbs → templates/react/Badge/Badge.test.jsx} +0 -0
- /package/{dist/templates/react/BarChart/BarChart.test.jsx.hbs → templates/react/BarChart/BarChart.test.jsx} +0 -0
- /package/{dist/templates/react/Breadcrumb/Breadcrumb.test.jsx.hbs → templates/react/Breadcrumb/Breadcrumb.test.jsx} +0 -0
- /package/{dist/templates/react/BreadcrumbItem/BreadcrumbItem.test.jsx.hbs → templates/react/BreadcrumbItem/BreadcrumbItem.test.jsx} +0 -0
- /package/{dist/templates/react/BubbleChart/BubbleChart.test.jsx.hbs → templates/react/BubbleChart/BubbleChart.test.jsx} +0 -0
- /package/{dist/templates/react/Button/Button.test.jsx.hbs → templates/react/Button/Button.test.jsx} +0 -0
- /package/{dist/templates/react/ButtonGroup/ButtonGroup.test.jsx.hbs → templates/react/ButtonGroup/ButtonGroup.test.jsx} +0 -0
- /package/{dist/templates/react/Card/Card.test.jsx.hbs → templates/react/Card/Card.test.jsx} +0 -0
- /package/{dist/templates/react/Carousel/Carousel.test.jsx.hbs → templates/react/Carousel/Carousel.test.jsx} +0 -0
- /package/{dist/templates/react/CarouselItem/CarouselItem.test.jsx.hbs → templates/react/CarouselItem/CarouselItem.test.jsx} +0 -0
- /package/{dist/templates/react/Chart/Chart.test.jsx.hbs → templates/react/Chart/Chart.test.jsx} +0 -0
- /package/{dist/templates/react/Checkbox/Checkbox.test.jsx.hbs → templates/react/Checkbox/Checkbox.test.jsx} +0 -0
- /package/{dist/templates/react/ColorPicker/ColorPicker.test.jsx.hbs → templates/react/ColorPicker/ColorPicker.test.jsx} +0 -0
- /package/{dist/templates/react/Combobox/Combobox.test.jsx.hbs → templates/react/Combobox/Combobox.test.jsx} +0 -0
- /package/{dist/templates/react/Comparison/Comparison.test.jsx.hbs → templates/react/Comparison/Comparison.test.jsx} +0 -0
- /package/{dist/templates/react/DoughnutChart/DoughnutChart.test.jsx.hbs → templates/react/DoughnutChart/DoughnutChart.test.jsx} +0 -0
- /package/{dist/templates/react/Dropdown/Dropdown.test.jsx.hbs → templates/react/Dropdown/Dropdown.test.jsx} +0 -0
- /package/{dist/templates/react/DropdownItem/DropdownItem.test.jsx.hbs → templates/react/DropdownItem/DropdownItem.test.jsx} +0 -0
- /package/{dist/templates/react/FileInput/FileInput.test.jsx.hbs → templates/react/FileInput/FileInput.test.jsx} +0 -0
- /package/{dist/templates/vue/FormatBytes/FormatBytes.css.hbs → templates/react/FormatBytes/FormatBytes.css} +0 -0
- /package/{dist/templates/vue/FormatDate/FormatDate.css.hbs → templates/react/FormatDate/FormatDate.css} +0 -0
- /package/{dist/templates/react/FormatDate/FormatDate.test.jsx.hbs → templates/react/FormatDate/FormatDate.test.jsx} +0 -0
- /package/{dist/templates/vue/FormatNumber/FormatNumber.css.hbs → templates/react/FormatNumber/FormatNumber.css} +0 -0
- /package/{dist/templates/vue/Include/Include.css.hbs → templates/react/Include/Include.css} +0 -0
- /package/{dist/templates/react/Input/Input.test.jsx.hbs → templates/react/Input/Input.test.jsx} +0 -0
- /package/{dist/templates/vue/IntersectionObserver/IntersectionObserver.css.hbs → templates/react/IntersectionObserver/IntersectionObserver.css} +0 -0
- /package/{dist/templates/react/LineChart/LineChart.test.jsx.hbs → templates/react/LineChart/LineChart.test.jsx} +0 -0
- /package/{dist/templates/react/Markdown/Markdown.test.jsx.hbs → templates/react/Markdown/Markdown.test.jsx} +0 -0
- /package/{dist/templates/vue/MutationObserver/MutationObserver.css.hbs → templates/react/MutationObserver/MutationObserver.css} +0 -0
- /package/{dist/templates/react/MutationObserver/MutationObserver.test.jsx.hbs → templates/react/MutationObserver/MutationObserver.test.jsx} +0 -0
- /package/{dist/templates/react/NumberInput/NumberInput.test.jsx.hbs → templates/react/NumberInput/NumberInput.test.jsx} +0 -0
- /package/{dist/templates/react/Option/Option.test.jsx.hbs → templates/react/Option/Option.test.jsx} +0 -0
- /package/{dist/templates/react/Page/Page.test.jsx.hbs → templates/react/Page/Page.test.jsx} +0 -0
- /package/{dist/templates/react/PieChart/PieChart.test.jsx.hbs → templates/react/PieChart/PieChart.test.jsx} +0 -0
- /package/{dist/templates/react/PolarAreaChart/PolarAreaChart.test.jsx.hbs → templates/react/PolarAreaChart/PolarAreaChart.test.jsx} +0 -0
- /package/{dist/templates/react/Popover/Popover.test.jsx.hbs → templates/react/Popover/Popover.test.jsx} +0 -0
- /package/{dist/templates/react/Popup/Popup.test.jsx.hbs → templates/react/Popup/Popup.test.jsx} +0 -0
- /package/{dist/templates/react/QrCode/QrCode.test.jsx.hbs → templates/react/QrCode/QrCode.test.jsx} +0 -0
- /package/{dist/templates/react/RadarChart/RadarChart.test.jsx.hbs → templates/react/RadarChart/RadarChart.test.jsx} +0 -0
- /package/{dist/templates/react/Radio/Radio.test.jsx.hbs → templates/react/Radio/Radio.test.jsx} +0 -0
- /package/{dist/templates/react/RadioGroup/RadioGroup.test.jsx.hbs → templates/react/RadioGroup/RadioGroup.test.jsx} +0 -0
- /package/{dist/templates/react/Rating/Rating.test.jsx.hbs → templates/react/Rating/Rating.test.jsx} +0 -0
- /package/{dist/templates/vue/RelativeTime/RelativeTime.css.hbs → templates/react/RelativeTime/RelativeTime.css} +0 -0
- /package/{dist/templates/react/RelativeTime/RelativeTime.test.jsx.hbs → templates/react/RelativeTime/RelativeTime.test.jsx} +0 -0
- /package/{dist/templates/vue/ResizeObserver/ResizeObserver.css.hbs → templates/react/ResizeObserver/ResizeObserver.css} +0 -0
- /package/{dist/templates/react/ResizeObserver/ResizeObserver.test.jsx.hbs → templates/react/ResizeObserver/ResizeObserver.test.jsx} +0 -0
- /package/{dist/templates/react/ScatterChart/ScatterChart.test.jsx.hbs → templates/react/ScatterChart/ScatterChart.test.jsx} +0 -0
- /package/{dist/templates/react/Scroller/Scroller.test.jsx.hbs → templates/react/Scroller/Scroller.test.jsx} +0 -0
- /package/{dist/templates/react/Select/Select.test.jsx.hbs → templates/react/Select/Select.test.jsx} +0 -0
- /package/{dist/templates/react/Skeleton/Skeleton.test.jsx.hbs → templates/react/Skeleton/Skeleton.test.jsx} +0 -0
- /package/{dist/templates/react/Slider/Slider.test.jsx.hbs → templates/react/Slider/Slider.test.jsx} +0 -0
- /package/{dist/templates/react/Spinner/Spinner.test.jsx.hbs → templates/react/Spinner/Spinner.test.jsx} +0 -0
- /package/{dist/templates/react/SplitPanel/SplitPanel.test.jsx.hbs → templates/react/SplitPanel/SplitPanel.test.jsx} +0 -0
- /package/{dist/templates/react/Switch/Switch.test.jsx.hbs → templates/react/Switch/Switch.test.jsx} +0 -0
- /package/{dist/templates/react/Tab/Tab.test.jsx.hbs → templates/react/Tab/Tab.test.jsx} +0 -0
- /package/{dist/templates/react/TabGroup/TabGroup.test.jsx.hbs → templates/react/TabGroup/TabGroup.test.jsx} +0 -0
- /package/{dist/templates/react/TabPanel/TabPanel.test.jsx.hbs → templates/react/TabPanel/TabPanel.test.jsx} +0 -0
- /package/{dist/templates/react/Tag/Tag.test.jsx.hbs → templates/react/Tag/Tag.test.jsx} +0 -0
- /package/{dist/templates/react/Textarea/Textarea.test.jsx.hbs → templates/react/Textarea/Textarea.test.jsx} +0 -0
- /package/{dist/templates/react/Toast/Toast.test.jsx.hbs → templates/react/Toast/Toast.test.jsx} +0 -0
- /package/{dist/templates/react/Tooltip/Tooltip.test.jsx.hbs → templates/react/Tooltip/Tooltip.test.jsx} +0 -0
- /package/{dist/templates/react/Tree/Tree.test.jsx.hbs → templates/react/Tree/Tree.test.jsx} +0 -0
- /package/{dist/templates/react/TreeItem/TreeItem.test.jsx.hbs → templates/react/TreeItem/TreeItem.test.jsx} +0 -0
- /package/{dist/templates/react/ZoomableFrame/ZoomableFrame.test.jsx.hbs → templates/react/ZoomableFrame/ZoomableFrame.test.jsx} +0 -0
- /package/templates/vue/Animation/{Animation.css.hbs → Animation.css} +0 -0
- /package/templates/vue/FormatBytes/{FormatBytes.css.hbs → FormatBytes.css} +0 -0
- /package/templates/vue/FormatDate/{FormatDate.css.hbs → FormatDate.css} +0 -0
- /package/templates/vue/FormatNumber/{FormatNumber.css.hbs → FormatNumber.css} +0 -0
- /package/templates/vue/Include/{Include.css.hbs → Include.css} +0 -0
- /package/templates/vue/IntersectionObserver/{IntersectionObserver.css.hbs → IntersectionObserver.css} +0 -0
- /package/templates/vue/MutationObserver/{MutationObserver.css.hbs → MutationObserver.css} +0 -0
- /package/templates/vue/RelativeTime/{RelativeTime.css.hbs → RelativeTime.css} +0 -0
- /package/templates/vue/ResizeObserver/{ResizeObserver.css.hbs → ResizeObserver.css} +0 -0
|
@@ -0,0 +1,1978 @@
|
|
|
1
|
+
import {
|
|
2
|
+
CLI_VERSION,
|
|
3
|
+
DEFAULT_WEBAWESOME_VERSION,
|
|
4
|
+
GITHUB_ISSUES_URL,
|
|
5
|
+
GITHUB_RAW_BASE_URL,
|
|
6
|
+
GITHUB_REPO_URL,
|
|
7
|
+
WEB_AWESOME_FREE_PACKAGE,
|
|
8
|
+
WEB_AWESOME_PRO_PACKAGE,
|
|
9
|
+
detectTierSync,
|
|
10
|
+
getWebAwesomePackage
|
|
11
|
+
} from "./chunk-F52T5BFP.js";
|
|
12
|
+
import {
|
|
13
|
+
toKigumiAlias
|
|
14
|
+
} from "./chunk-MIPVTLNR.js";
|
|
15
|
+
|
|
16
|
+
// src/prompts/index.ts
|
|
17
|
+
import * as clack from "@clack/prompts";
|
|
18
|
+
var registered = null;
|
|
19
|
+
function getPrompts() {
|
|
20
|
+
return registered ?? clack;
|
|
21
|
+
}
|
|
22
|
+
var confirm = (...args) => getPrompts().confirm(...args);
|
|
23
|
+
var intro = (...args) => getPrompts().intro(...args);
|
|
24
|
+
var outro = (...args) => getPrompts().outro(...args);
|
|
25
|
+
var note = (...args) => getPrompts().note(...args);
|
|
26
|
+
var select = (opts) => getPrompts().select(opts);
|
|
27
|
+
var text = (...args) => getPrompts().text(...args);
|
|
28
|
+
var multiselect = (opts) => getPrompts().multiselect(opts);
|
|
29
|
+
var spinner = (...args) => getPrompts().spinner(...args);
|
|
30
|
+
var isCancel = ((value) => getPrompts().isCancel(value));
|
|
31
|
+
var log = {
|
|
32
|
+
info: (...args) => getPrompts().log.info(...args),
|
|
33
|
+
success: (...args) => getPrompts().log.success(...args),
|
|
34
|
+
warning: (...args) => getPrompts().log.warning(...args),
|
|
35
|
+
warn: (...args) => getPrompts().log.warn(...args),
|
|
36
|
+
error: (...args) => getPrompts().log.error(...args),
|
|
37
|
+
message: (...args) => getPrompts().log.message(...args),
|
|
38
|
+
step: (...args) => getPrompts().log.step(...args)
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
// src/output/console.ts
|
|
42
|
+
import pc from "picocolors";
|
|
43
|
+
var ClackSpinner = class {
|
|
44
|
+
spinner;
|
|
45
|
+
constructor(message) {
|
|
46
|
+
this.spinner = spinner();
|
|
47
|
+
this.spinner.start(message);
|
|
48
|
+
}
|
|
49
|
+
start(message) {
|
|
50
|
+
if (message) {
|
|
51
|
+
this.spinner.start(message);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
message(text2) {
|
|
55
|
+
this.spinner.message(text2);
|
|
56
|
+
}
|
|
57
|
+
stop(message) {
|
|
58
|
+
this.spinner.stop(message || "Done");
|
|
59
|
+
}
|
|
60
|
+
error(message) {
|
|
61
|
+
this.spinner.stop(message || "Failed");
|
|
62
|
+
}
|
|
63
|
+
};
|
|
64
|
+
var ConsoleOutput = class {
|
|
65
|
+
intro(message) {
|
|
66
|
+
intro(pc.bgCyan(pc.black(` ${message} `)));
|
|
67
|
+
}
|
|
68
|
+
outro(message) {
|
|
69
|
+
outro(message);
|
|
70
|
+
}
|
|
71
|
+
info(message) {
|
|
72
|
+
log.info(message);
|
|
73
|
+
}
|
|
74
|
+
success(message) {
|
|
75
|
+
log.success(pc.green(message));
|
|
76
|
+
}
|
|
77
|
+
warning(message) {
|
|
78
|
+
log.warning(pc.yellow(message));
|
|
79
|
+
}
|
|
80
|
+
warn(message) {
|
|
81
|
+
this.warning(message);
|
|
82
|
+
}
|
|
83
|
+
error(message, error) {
|
|
84
|
+
if (error) {
|
|
85
|
+
if (error && typeof error === "object" && "format" in error && typeof error.format === "function") {
|
|
86
|
+
const formatted = error.format();
|
|
87
|
+
log.error(pc.red(formatted));
|
|
88
|
+
} else {
|
|
89
|
+
log.error(pc.red(message));
|
|
90
|
+
if (error.message) {
|
|
91
|
+
log.error(pc.dim(error.message));
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
} else {
|
|
95
|
+
log.error(pc.red(message));
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
note(title, message) {
|
|
99
|
+
note(message, title);
|
|
100
|
+
}
|
|
101
|
+
spinner(message) {
|
|
102
|
+
return new ClackSpinner(message);
|
|
103
|
+
}
|
|
104
|
+
log(message) {
|
|
105
|
+
if (process.env.DEBUG) {
|
|
106
|
+
log.message(message);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
};
|
|
110
|
+
function getOutput() {
|
|
111
|
+
return new ConsoleOutput();
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// src/output/index.ts
|
|
115
|
+
var registeredOutput = null;
|
|
116
|
+
function getOutput2() {
|
|
117
|
+
return registeredOutput ?? getOutput();
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
// src/checks/runner.ts
|
|
121
|
+
var CheckRunner = class {
|
|
122
|
+
checks = [];
|
|
123
|
+
options;
|
|
124
|
+
constructor(options = {}) {
|
|
125
|
+
this.options = {
|
|
126
|
+
stopOnError: options.stopOnError ?? true,
|
|
127
|
+
parallel: options.parallel ?? false
|
|
128
|
+
};
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* Add a check to the runner
|
|
132
|
+
*
|
|
133
|
+
* @param check - Check to add
|
|
134
|
+
* @returns This runner (for chaining)
|
|
135
|
+
*/
|
|
136
|
+
add(check) {
|
|
137
|
+
this.checks.push(check);
|
|
138
|
+
return this;
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* Add multiple checks
|
|
142
|
+
*
|
|
143
|
+
* @param checks - Checks to add
|
|
144
|
+
* @returns This runner (for chaining)
|
|
145
|
+
*/
|
|
146
|
+
addAll(checks) {
|
|
147
|
+
this.checks.push(...checks);
|
|
148
|
+
return this;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* Run all checks
|
|
152
|
+
*
|
|
153
|
+
* @param context - Check context
|
|
154
|
+
* @returns Array of check results
|
|
155
|
+
*/
|
|
156
|
+
async run(context) {
|
|
157
|
+
if (this.checks.length === 0) {
|
|
158
|
+
return [];
|
|
159
|
+
}
|
|
160
|
+
if (this.options.parallel) {
|
|
161
|
+
return this.runParallel(context);
|
|
162
|
+
}
|
|
163
|
+
return this.runSequential(context);
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* Run checks sequentially
|
|
167
|
+
*/
|
|
168
|
+
async runSequential(context) {
|
|
169
|
+
const results = [];
|
|
170
|
+
for (const check of this.checks) {
|
|
171
|
+
try {
|
|
172
|
+
const result = await check.run(context);
|
|
173
|
+
results.push(result);
|
|
174
|
+
if (this.options.stopOnError && !result.passed && result.severity === "error" /* ERROR */) {
|
|
175
|
+
break;
|
|
176
|
+
}
|
|
177
|
+
} catch (error) {
|
|
178
|
+
results.push({
|
|
179
|
+
passed: false,
|
|
180
|
+
severity: "error" /* ERROR */,
|
|
181
|
+
message: `Check "${check.name}" failed with error: ${error instanceof Error ? error.message : String(error)}`,
|
|
182
|
+
suggestion: ["Check the logs for more details"]
|
|
183
|
+
});
|
|
184
|
+
if (this.options.stopOnError) {
|
|
185
|
+
break;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
return results;
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
* Run checks in parallel
|
|
193
|
+
*/
|
|
194
|
+
async runParallel(context) {
|
|
195
|
+
const promises = this.checks.map(async (check) => {
|
|
196
|
+
try {
|
|
197
|
+
return await check.run(context);
|
|
198
|
+
} catch (error) {
|
|
199
|
+
return {
|
|
200
|
+
passed: false,
|
|
201
|
+
severity: "error" /* ERROR */,
|
|
202
|
+
message: `Check "${check.name}" failed with error: ${error instanceof Error ? error.message : String(error)}`,
|
|
203
|
+
suggestion: ["Check the logs for more details"]
|
|
204
|
+
};
|
|
205
|
+
}
|
|
206
|
+
});
|
|
207
|
+
return Promise.all(promises);
|
|
208
|
+
}
|
|
209
|
+
/**
|
|
210
|
+
* Check if there are any errors in results
|
|
211
|
+
*
|
|
212
|
+
* @param results - Check results
|
|
213
|
+
* @returns True if there are errors
|
|
214
|
+
*/
|
|
215
|
+
hasErrors(results) {
|
|
216
|
+
return results.some((r) => !r.passed && r.severity === "error" /* ERROR */);
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* Check if there are any warnings in results
|
|
220
|
+
*
|
|
221
|
+
* @param results - Check results
|
|
222
|
+
* @returns True if there are warnings
|
|
223
|
+
*/
|
|
224
|
+
hasWarnings(results) {
|
|
225
|
+
return results.some(
|
|
226
|
+
(r) => !r.passed && r.severity === "warning" /* WARNING */
|
|
227
|
+
);
|
|
228
|
+
}
|
|
229
|
+
/**
|
|
230
|
+
* Get all errors from results
|
|
231
|
+
*
|
|
232
|
+
* @param results - Check results
|
|
233
|
+
* @returns Array of error results
|
|
234
|
+
*/
|
|
235
|
+
getErrors(results) {
|
|
236
|
+
return results.filter(
|
|
237
|
+
(r) => !r.passed && r.severity === "error" /* ERROR */
|
|
238
|
+
);
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* Get all warnings from results
|
|
242
|
+
*
|
|
243
|
+
* @param results - Check results
|
|
244
|
+
* @returns Array of warning results
|
|
245
|
+
*/
|
|
246
|
+
getWarnings(results) {
|
|
247
|
+
return results.filter(
|
|
248
|
+
(r) => !r.passed && r.severity === "warning" /* WARNING */
|
|
249
|
+
);
|
|
250
|
+
}
|
|
251
|
+
/**
|
|
252
|
+
* Format results as string
|
|
253
|
+
*
|
|
254
|
+
* @param results - Check results
|
|
255
|
+
* @returns Formatted string
|
|
256
|
+
*/
|
|
257
|
+
formatResults(results) {
|
|
258
|
+
const errors = this.getErrors(results);
|
|
259
|
+
const warnings = this.getWarnings(results);
|
|
260
|
+
const parts = [];
|
|
261
|
+
if (errors.length > 0) {
|
|
262
|
+
parts.push(`Errors (${errors.length}):`);
|
|
263
|
+
errors.forEach((error) => {
|
|
264
|
+
parts.push(` \u2717 ${error.message}`);
|
|
265
|
+
});
|
|
266
|
+
}
|
|
267
|
+
if (warnings.length > 0) {
|
|
268
|
+
if (parts.length > 0) parts.push("");
|
|
269
|
+
parts.push(`Warnings (${warnings.length}):`);
|
|
270
|
+
warnings.forEach((warning) => {
|
|
271
|
+
parts.push(` \u26A0 ${warning.message}`);
|
|
272
|
+
});
|
|
273
|
+
}
|
|
274
|
+
return parts.join("\n");
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* Clear all checks
|
|
278
|
+
*/
|
|
279
|
+
clear() {
|
|
280
|
+
this.checks = [];
|
|
281
|
+
}
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
// src/errors/base.ts
|
|
285
|
+
var KigumiError = class extends Error {
|
|
286
|
+
code;
|
|
287
|
+
context;
|
|
288
|
+
suggestions;
|
|
289
|
+
exitCode;
|
|
290
|
+
constructor(code, message, details, suggestions = [], cause) {
|
|
291
|
+
super(message);
|
|
292
|
+
this.name = this.constructor.name;
|
|
293
|
+
this.code = code;
|
|
294
|
+
this.exitCode = this.getExitCode(code);
|
|
295
|
+
this.context = {
|
|
296
|
+
code,
|
|
297
|
+
message,
|
|
298
|
+
details,
|
|
299
|
+
cause
|
|
300
|
+
};
|
|
301
|
+
this.suggestions = suggestions;
|
|
302
|
+
if (Error.captureStackTrace) {
|
|
303
|
+
Error.captureStackTrace(this, this.constructor);
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
/**
|
|
307
|
+
* Map error code to semantic exit code
|
|
308
|
+
*
|
|
309
|
+
* Exit codes:
|
|
310
|
+
* - 0: User cancelled (not an error)
|
|
311
|
+
* - 1: Configuration error
|
|
312
|
+
* - 2: Validation error
|
|
313
|
+
* - 3: Tier restriction error
|
|
314
|
+
* - 4: File system error
|
|
315
|
+
* - 5: Network/dependency error
|
|
316
|
+
* - 6: Pre-flight check error
|
|
317
|
+
*/
|
|
318
|
+
getExitCode(code) {
|
|
319
|
+
if (code === 0 /* USER_CANCELLED */) return 0;
|
|
320
|
+
if (code >= 100 && code < 200) return 1;
|
|
321
|
+
if (code >= 200 && code < 300) return 2;
|
|
322
|
+
if (code >= 300 && code < 400) return 3;
|
|
323
|
+
if (code >= 400 && code < 500) return 4;
|
|
324
|
+
if (code >= 500 && code < 600) return 5;
|
|
325
|
+
if (code >= 600 && code < 700) return 6;
|
|
326
|
+
if (code >= 700 && code < 800) return 7;
|
|
327
|
+
return 1;
|
|
328
|
+
}
|
|
329
|
+
/**
|
|
330
|
+
* Format error for display to user
|
|
331
|
+
*
|
|
332
|
+
* Each error subclass can override this to provide custom formatting,
|
|
333
|
+
* but the default implementation provides a consistent format.
|
|
334
|
+
*/
|
|
335
|
+
format() {
|
|
336
|
+
const parts = [];
|
|
337
|
+
parts.push(this.message);
|
|
338
|
+
if (this.context.details && Object.keys(this.context.details).length > 0) {
|
|
339
|
+
parts.push("");
|
|
340
|
+
parts.push("Details:");
|
|
341
|
+
for (const [key, value] of Object.entries(this.context.details)) {
|
|
342
|
+
parts.push(` ${key}: ${JSON.stringify(value)}`);
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
if (this.context.cause) {
|
|
346
|
+
parts.push("");
|
|
347
|
+
parts.push(`Caused by: ${this.context.cause.message}`);
|
|
348
|
+
}
|
|
349
|
+
return parts.join("\n");
|
|
350
|
+
}
|
|
351
|
+
/**
|
|
352
|
+
* Get formatted suggestions
|
|
353
|
+
*/
|
|
354
|
+
formatSuggestions() {
|
|
355
|
+
if (this.suggestions.length === 0) {
|
|
356
|
+
return "";
|
|
357
|
+
}
|
|
358
|
+
return this.suggestions.map((suggestion) => {
|
|
359
|
+
const steps = suggestion.steps.map((step, i) => ` ${i + 1}. ${step}`).join("\n");
|
|
360
|
+
return `${suggestion.title}:
|
|
361
|
+
${steps}`;
|
|
362
|
+
}).join("\n\n");
|
|
363
|
+
}
|
|
364
|
+
/**
|
|
365
|
+
* Convert to JSON for logging/telemetry
|
|
366
|
+
*/
|
|
367
|
+
toJSON() {
|
|
368
|
+
return {
|
|
369
|
+
name: this.name,
|
|
370
|
+
code: this.code,
|
|
371
|
+
exitCode: this.exitCode,
|
|
372
|
+
message: this.message,
|
|
373
|
+
context: this.context,
|
|
374
|
+
suggestions: this.suggestions,
|
|
375
|
+
stack: this.stack
|
|
376
|
+
};
|
|
377
|
+
}
|
|
378
|
+
};
|
|
379
|
+
var UserCancelledError = class extends KigumiError {
|
|
380
|
+
constructor(message = "Operation cancelled by user") {
|
|
381
|
+
super(0 /* USER_CANCELLED */, message);
|
|
382
|
+
}
|
|
383
|
+
};
|
|
384
|
+
var UnknownError = class _UnknownError extends KigumiError {
|
|
385
|
+
constructor(message, cause) {
|
|
386
|
+
super(
|
|
387
|
+
999 /* UNKNOWN */,
|
|
388
|
+
message,
|
|
389
|
+
{ originalError: cause?.message },
|
|
390
|
+
[
|
|
391
|
+
{
|
|
392
|
+
title: "This is an unexpected error",
|
|
393
|
+
steps: [
|
|
394
|
+
`Please report this issue at: ${GITHUB_ISSUES_URL}`,
|
|
395
|
+
"Include the full error message and stack trace"
|
|
396
|
+
]
|
|
397
|
+
}
|
|
398
|
+
],
|
|
399
|
+
cause
|
|
400
|
+
);
|
|
401
|
+
}
|
|
402
|
+
/**
|
|
403
|
+
* Wrap any error with KigumiError structure
|
|
404
|
+
*/
|
|
405
|
+
static from(error) {
|
|
406
|
+
if (error instanceof KigumiError) {
|
|
407
|
+
return error;
|
|
408
|
+
}
|
|
409
|
+
if (error instanceof Error) {
|
|
410
|
+
return new _UnknownError(
|
|
411
|
+
`An unexpected error occurred: ${error.message}`,
|
|
412
|
+
error
|
|
413
|
+
);
|
|
414
|
+
}
|
|
415
|
+
return new _UnknownError(`An unexpected error occurred: ${String(error)}`);
|
|
416
|
+
}
|
|
417
|
+
};
|
|
418
|
+
|
|
419
|
+
// src/errors/config.ts
|
|
420
|
+
var ConfigNotFoundError = class extends KigumiError {
|
|
421
|
+
constructor(cwd) {
|
|
422
|
+
const suggestions = [
|
|
423
|
+
{
|
|
424
|
+
title: "Initialize kigumi in your project",
|
|
425
|
+
steps: [
|
|
426
|
+
"Run: kigumi init",
|
|
427
|
+
"Follow the prompts to configure your project",
|
|
428
|
+
"This will create kigumi.config.json"
|
|
429
|
+
]
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
title: "Or create the config file manually",
|
|
433
|
+
steps: [
|
|
434
|
+
"Create kigumi.config.json in your project root",
|
|
435
|
+
"Add the required configuration fields",
|
|
436
|
+
`See: ${GITHUB_REPO_URL}#configuration`
|
|
437
|
+
]
|
|
438
|
+
}
|
|
439
|
+
];
|
|
440
|
+
super(
|
|
441
|
+
100 /* CONFIG_NOT_FOUND */,
|
|
442
|
+
"Configuration file not found",
|
|
443
|
+
{ cwd, searchedFiles: ["kigumi.config.json", "kigumi.json"] },
|
|
444
|
+
suggestions
|
|
445
|
+
);
|
|
446
|
+
}
|
|
447
|
+
};
|
|
448
|
+
var ConfigInvalidError = class extends KigumiError {
|
|
449
|
+
constructor(errors, filePath) {
|
|
450
|
+
const suggestions = [
|
|
451
|
+
{
|
|
452
|
+
title: "Fix the configuration errors",
|
|
453
|
+
steps: [
|
|
454
|
+
...errors.map((err) => `Fix: ${err}`),
|
|
455
|
+
"Ensure all required fields are present",
|
|
456
|
+
"Check that values match the expected types"
|
|
457
|
+
]
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
title: "Or reinitialize the project",
|
|
461
|
+
steps: [
|
|
462
|
+
"Backup your current config",
|
|
463
|
+
"Run: kigumi init",
|
|
464
|
+
"Reconfigure with correct values"
|
|
465
|
+
]
|
|
466
|
+
}
|
|
467
|
+
];
|
|
468
|
+
super(
|
|
469
|
+
101 /* CONFIG_INVALID */,
|
|
470
|
+
"Configuration file is invalid",
|
|
471
|
+
{ errors, filePath },
|
|
472
|
+
suggestions
|
|
473
|
+
);
|
|
474
|
+
}
|
|
475
|
+
format() {
|
|
476
|
+
const errors = this.context.details?.errors || [];
|
|
477
|
+
return `Configuration file is invalid:
|
|
478
|
+
|
|
479
|
+
${errors.map((e) => ` - ${e}`).join("\n")}`;
|
|
480
|
+
}
|
|
481
|
+
};
|
|
482
|
+
|
|
483
|
+
// src/utils/config.ts
|
|
484
|
+
import { cosmiconfigSync } from "cosmiconfig";
|
|
485
|
+
import fs from "fs-extra";
|
|
486
|
+
import path from "path";
|
|
487
|
+
|
|
488
|
+
// src/schemas/config.ts
|
|
489
|
+
import { z } from "zod";
|
|
490
|
+
var FRAMEWORKS = ["react", "vue", "angular"];
|
|
491
|
+
var frameworkSchema = z.enum(FRAMEWORKS, {
|
|
492
|
+
error: () => `Must be one of: ${FRAMEWORKS.join(", ")}`
|
|
493
|
+
});
|
|
494
|
+
var themeConfigSchema = z.object({
|
|
495
|
+
selected: z.string().min(1, "Theme name cannot be empty"),
|
|
496
|
+
palette: z.string().min(1, "Palette name cannot be empty"),
|
|
497
|
+
brandColor: z.string().min(1, "Brand color cannot be empty")
|
|
498
|
+
}).strict();
|
|
499
|
+
var webAwesomeConfigSchema = z.object({
|
|
500
|
+
version: z.string().optional()
|
|
501
|
+
}).strict();
|
|
502
|
+
var registrySourceSchema = z.object({
|
|
503
|
+
/** GitHub URL of the registry */
|
|
504
|
+
url: z.string().url("Must be a valid URL"),
|
|
505
|
+
/** Friendly name (auto-derived from repo if not set) */
|
|
506
|
+
name: z.string().optional()
|
|
507
|
+
});
|
|
508
|
+
var installedComponentSchema = z.object({
|
|
509
|
+
source: z.enum(["builtin", "community"]),
|
|
510
|
+
registryUrl: z.string().optional(),
|
|
511
|
+
registryVersion: z.string().optional(),
|
|
512
|
+
installedAt: z.string().optional(),
|
|
513
|
+
/** Kigumi CLI version that generated this component */
|
|
514
|
+
kigumiVersion: z.string().optional()
|
|
515
|
+
});
|
|
516
|
+
var installedThemeSchema = z.object({
|
|
517
|
+
source: z.enum(["builtin", "community"]),
|
|
518
|
+
registryUrl: z.string().optional(),
|
|
519
|
+
registryVersion: z.string().optional()
|
|
520
|
+
});
|
|
521
|
+
var kigumiConfigSchema = z.object({
|
|
522
|
+
framework: frameworkSchema,
|
|
523
|
+
typescript: z.boolean({
|
|
524
|
+
error: () => "Must be a boolean (true or false)"
|
|
525
|
+
}),
|
|
526
|
+
componentsDir: z.string().min(1, "Components directory cannot be empty"),
|
|
527
|
+
utilsDir: z.string().min(1, "Utils directory cannot be empty"),
|
|
528
|
+
stylesDir: z.string().min(1, "Styles directory cannot be empty"),
|
|
529
|
+
theme: themeConfigSchema,
|
|
530
|
+
webAwesome: webAwesomeConfigSchema.optional(),
|
|
531
|
+
/** Community registry sources */
|
|
532
|
+
registries: z.array(registrySourceSchema).optional(),
|
|
533
|
+
/** Provenance tracking for installed components */
|
|
534
|
+
installedComponents: z.record(z.string(), installedComponentSchema).optional(),
|
|
535
|
+
/** Provenance tracking for installed themes */
|
|
536
|
+
installedThemes: z.record(z.string(), installedThemeSchema).optional(),
|
|
537
|
+
/** Kigumi CLI version that initialized/last upgraded this project */
|
|
538
|
+
kigumiVersion: z.string().optional()
|
|
539
|
+
}).strict();
|
|
540
|
+
var DEFAULT_CONFIG = {
|
|
541
|
+
framework: "react",
|
|
542
|
+
typescript: true,
|
|
543
|
+
componentsDir: "src/components/ui",
|
|
544
|
+
utilsDir: "src/lib",
|
|
545
|
+
stylesDir: "src/styles",
|
|
546
|
+
theme: {
|
|
547
|
+
selected: "default",
|
|
548
|
+
palette: "default",
|
|
549
|
+
brandColor: "blue"
|
|
550
|
+
},
|
|
551
|
+
webAwesome: {
|
|
552
|
+
version: DEFAULT_WEBAWESOME_VERSION
|
|
553
|
+
}
|
|
554
|
+
};
|
|
555
|
+
var LEGACY_TOP_LEVEL_KEYS = ["aliases"];
|
|
556
|
+
var LEGACY_WEB_AWESOME_KEYS = ["cdnUrl"];
|
|
557
|
+
function stripLegacyKeys(raw) {
|
|
558
|
+
const cleaned = { ...raw };
|
|
559
|
+
for (const key of LEGACY_TOP_LEVEL_KEYS) {
|
|
560
|
+
delete cleaned[key];
|
|
561
|
+
}
|
|
562
|
+
if (cleaned.webAwesome && typeof cleaned.webAwesome === "object") {
|
|
563
|
+
const wa = { ...cleaned.webAwesome };
|
|
564
|
+
for (const key of LEGACY_WEB_AWESOME_KEYS) {
|
|
565
|
+
delete wa[key];
|
|
566
|
+
}
|
|
567
|
+
cleaned.webAwesome = wa;
|
|
568
|
+
}
|
|
569
|
+
return cleaned;
|
|
570
|
+
}
|
|
571
|
+
function mergeWithDefaults(config) {
|
|
572
|
+
const stripped = stripLegacyKeys(
|
|
573
|
+
config
|
|
574
|
+
);
|
|
575
|
+
const merged = {
|
|
576
|
+
...DEFAULT_CONFIG,
|
|
577
|
+
...stripped,
|
|
578
|
+
theme: {
|
|
579
|
+
...DEFAULT_CONFIG.theme,
|
|
580
|
+
...stripped.theme
|
|
581
|
+
},
|
|
582
|
+
webAwesome: {
|
|
583
|
+
...DEFAULT_CONFIG.webAwesome,
|
|
584
|
+
...stripped.webAwesome
|
|
585
|
+
}
|
|
586
|
+
};
|
|
587
|
+
const result = kigumiConfigSchema.safeParse(merged);
|
|
588
|
+
if (!result.success) {
|
|
589
|
+
const errors = result.error.issues.map((err) => {
|
|
590
|
+
const issuePath = err.path.join(".");
|
|
591
|
+
return issuePath ? `${issuePath}: ${err.message}` : err.message;
|
|
592
|
+
});
|
|
593
|
+
throw new ConfigInvalidError(errors);
|
|
594
|
+
}
|
|
595
|
+
return result.data;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
// src/utils/config.ts
|
|
599
|
+
var SEARCH_PLACES = [
|
|
600
|
+
"kigumi.config.json",
|
|
601
|
+
"kigumi-components.json",
|
|
602
|
+
"kigumi.json",
|
|
603
|
+
".kigumirc",
|
|
604
|
+
".kigumirc.json",
|
|
605
|
+
"package.json"
|
|
606
|
+
];
|
|
607
|
+
function loadConfig(cwd = process.cwd()) {
|
|
608
|
+
const explorer = cosmiconfigSync("kigumi", {
|
|
609
|
+
searchPlaces: [...SEARCH_PLACES],
|
|
610
|
+
stopDir: cwd
|
|
611
|
+
});
|
|
612
|
+
const result = explorer.search(cwd);
|
|
613
|
+
if (!result) return null;
|
|
614
|
+
return { config: result.config, filepath: result.filepath };
|
|
615
|
+
}
|
|
616
|
+
function getSearchPlaces() {
|
|
617
|
+
return SEARCH_PLACES;
|
|
618
|
+
}
|
|
619
|
+
function getConfig(cwd = process.cwd()) {
|
|
620
|
+
const loaded = loadConfig(cwd);
|
|
621
|
+
if (!loaded) {
|
|
622
|
+
throw new ConfigNotFoundError(cwd);
|
|
623
|
+
}
|
|
624
|
+
return mergeWithDefaults(loaded.config);
|
|
625
|
+
}
|
|
626
|
+
function mergePatch(onDisk, patch) {
|
|
627
|
+
const next = { ...onDisk, ...patch };
|
|
628
|
+
if (patch.theme) {
|
|
629
|
+
const existingTheme = onDisk.theme ?? {};
|
|
630
|
+
next.theme = { ...existingTheme, ...patch.theme };
|
|
631
|
+
}
|
|
632
|
+
if (patch.webAwesome) {
|
|
633
|
+
const existingWa = onDisk.webAwesome ?? {};
|
|
634
|
+
next.webAwesome = { ...existingWa, ...patch.webAwesome };
|
|
635
|
+
}
|
|
636
|
+
return next;
|
|
637
|
+
}
|
|
638
|
+
async function writePackageJsonKey(filepath, key, value) {
|
|
639
|
+
const pkg = await fs.readJson(filepath);
|
|
640
|
+
pkg[key] = value;
|
|
641
|
+
await fs.writeJson(filepath, pkg, { spaces: 2 });
|
|
642
|
+
}
|
|
643
|
+
async function saveConfig(patch, cwd = process.cwd()) {
|
|
644
|
+
const loaded = loadConfig(cwd);
|
|
645
|
+
if (!loaded) {
|
|
646
|
+
throw new ConfigNotFoundError(cwd);
|
|
647
|
+
}
|
|
648
|
+
const onDisk = loaded.config ?? {};
|
|
649
|
+
const next = mergePatch(onDisk, patch);
|
|
650
|
+
if (path.basename(loaded.filepath) === "package.json") {
|
|
651
|
+
await writePackageJsonKey(loaded.filepath, "kigumi", next);
|
|
652
|
+
} else {
|
|
653
|
+
await fs.writeJson(loaded.filepath, next, { spaces: 2 });
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
// src/checks/config-checks.ts
|
|
658
|
+
import fs2 from "fs-extra";
|
|
659
|
+
import path2 from "path";
|
|
660
|
+
var ConfigExistsCheck = class {
|
|
661
|
+
id = "config-exists";
|
|
662
|
+
name = "Configuration File Exists";
|
|
663
|
+
description = "Check if a kigumi config file exists at any supported path";
|
|
664
|
+
async run(context) {
|
|
665
|
+
const loaded = loadConfig(context.cwd);
|
|
666
|
+
if (!loaded) {
|
|
667
|
+
return {
|
|
668
|
+
passed: false,
|
|
669
|
+
severity: "error" /* ERROR */,
|
|
670
|
+
message: "Configuration file not found",
|
|
671
|
+
suggestion: ["Run: kigumi init", "This will create kigumi.config.json"],
|
|
672
|
+
details: {
|
|
673
|
+
searched: [...getSearchPlaces()],
|
|
674
|
+
cwd: context.cwd
|
|
675
|
+
}
|
|
676
|
+
};
|
|
677
|
+
}
|
|
678
|
+
return {
|
|
679
|
+
passed: true,
|
|
680
|
+
severity: "info" /* INFO */,
|
|
681
|
+
message: `Configuration loaded from ${path2.basename(loaded.filepath)}`,
|
|
682
|
+
details: { filepath: loaded.filepath }
|
|
683
|
+
};
|
|
684
|
+
}
|
|
685
|
+
};
|
|
686
|
+
var PackageJsonExistsCheck = class {
|
|
687
|
+
id = "package-json-exists";
|
|
688
|
+
name = "Package.json Exists";
|
|
689
|
+
description = "Check if package.json exists in project";
|
|
690
|
+
async run(context) {
|
|
691
|
+
const packageJsonPath = path2.join(context.cwd, "package.json");
|
|
692
|
+
const exists = await fs2.pathExists(packageJsonPath);
|
|
693
|
+
if (!exists) {
|
|
694
|
+
return {
|
|
695
|
+
passed: false,
|
|
696
|
+
severity: "error" /* ERROR */,
|
|
697
|
+
message: "package.json not found",
|
|
698
|
+
suggestion: [
|
|
699
|
+
"Initialize npm project: npm init",
|
|
700
|
+
"Or ensure you are in the correct directory"
|
|
701
|
+
],
|
|
702
|
+
details: {
|
|
703
|
+
path: packageJsonPath
|
|
704
|
+
}
|
|
705
|
+
};
|
|
706
|
+
}
|
|
707
|
+
return {
|
|
708
|
+
passed: true,
|
|
709
|
+
severity: "info" /* INFO */,
|
|
710
|
+
message: "package.json exists"
|
|
711
|
+
};
|
|
712
|
+
}
|
|
713
|
+
};
|
|
714
|
+
|
|
715
|
+
// src/checks/dependency-checks.ts
|
|
716
|
+
import fs3 from "fs-extra";
|
|
717
|
+
|
|
718
|
+
// src/errors/community-registry.ts
|
|
719
|
+
var CommunityRegistryNotFoundError = class extends KigumiError {
|
|
720
|
+
constructor(url, cause) {
|
|
721
|
+
const suggestions = [
|
|
722
|
+
{
|
|
723
|
+
title: "Registry not found",
|
|
724
|
+
steps: [
|
|
725
|
+
`Could not find registry.json at: ${url}`,
|
|
726
|
+
"Verify the URL points to a valid GitHub repository",
|
|
727
|
+
"Check that the repository contains a registry.json file at its root",
|
|
728
|
+
"Ensure the repository is public or you have provided a GitHub token"
|
|
729
|
+
]
|
|
730
|
+
}
|
|
731
|
+
];
|
|
732
|
+
super(
|
|
733
|
+
504 /* REGISTRY_ERROR */,
|
|
734
|
+
`Community registry not found: ${url}`,
|
|
735
|
+
{ url, error: cause?.message },
|
|
736
|
+
suggestions,
|
|
737
|
+
cause
|
|
738
|
+
);
|
|
739
|
+
}
|
|
740
|
+
};
|
|
741
|
+
var CommunityRegistryInvalidError = class extends KigumiError {
|
|
742
|
+
constructor(url, errors) {
|
|
743
|
+
const suggestions = [
|
|
744
|
+
{
|
|
745
|
+
title: "Registry validation failed",
|
|
746
|
+
steps: [
|
|
747
|
+
"The registry.json file has validation errors:",
|
|
748
|
+
...errors.map((e) => ` - ${e}`),
|
|
749
|
+
'Run "kigumi registry validate" in the registry repo to fix'
|
|
750
|
+
]
|
|
751
|
+
}
|
|
752
|
+
];
|
|
753
|
+
super(
|
|
754
|
+
504 /* REGISTRY_ERROR */,
|
|
755
|
+
`Invalid community registry: ${url}`,
|
|
756
|
+
{ url, errors },
|
|
757
|
+
suggestions
|
|
758
|
+
);
|
|
759
|
+
}
|
|
760
|
+
};
|
|
761
|
+
var CommunityComponentNotFoundError = class extends KigumiError {
|
|
762
|
+
constructor(componentName, registryName, available) {
|
|
763
|
+
const suggestions = [
|
|
764
|
+
{
|
|
765
|
+
title: "Component not found",
|
|
766
|
+
steps: available.length > 0 ? [
|
|
767
|
+
`Component "${componentName}" is not in registry "${registryName}"`,
|
|
768
|
+
`Available components: ${available.join(", ")}`
|
|
769
|
+
] : [
|
|
770
|
+
`Component "${componentName}" is not in registry "${registryName}"`,
|
|
771
|
+
"This registry has no components"
|
|
772
|
+
]
|
|
773
|
+
}
|
|
774
|
+
];
|
|
775
|
+
super(
|
|
776
|
+
202 /* INVALID_COMPONENT */,
|
|
777
|
+
`Component "${componentName}" not found in registry "${registryName}"`,
|
|
778
|
+
{ componentName, registryName, available },
|
|
779
|
+
suggestions
|
|
780
|
+
);
|
|
781
|
+
}
|
|
782
|
+
};
|
|
783
|
+
var FrameworkMismatchError = class extends KigumiError {
|
|
784
|
+
constructor(registryName, registryFrameworks, userFramework) {
|
|
785
|
+
const suggestions = [
|
|
786
|
+
{
|
|
787
|
+
title: "Framework mismatch",
|
|
788
|
+
steps: [
|
|
789
|
+
`Your project uses: ${userFramework}`,
|
|
790
|
+
`This registry supports: ${registryFrameworks.join(", ")}`,
|
|
791
|
+
"Look for a registry that supports your framework",
|
|
792
|
+
"OR re-run with --cross-framework to fetch the source-framework files into .kigumi/foreign/ for an agent-driven conversion"
|
|
793
|
+
]
|
|
794
|
+
}
|
|
795
|
+
];
|
|
796
|
+
super(
|
|
797
|
+
201 /* INVALID_FRAMEWORK */,
|
|
798
|
+
`Registry "${registryName}" does not support ${userFramework}`,
|
|
799
|
+
{ registryName, registryFrameworks, userFramework },
|
|
800
|
+
suggestions
|
|
801
|
+
);
|
|
802
|
+
}
|
|
803
|
+
};
|
|
804
|
+
var CircularDependencyError = class extends KigumiError {
|
|
805
|
+
constructor(cycle) {
|
|
806
|
+
const cycleStr = cycle.join(" \u2192 ");
|
|
807
|
+
const suggestions = [
|
|
808
|
+
{
|
|
809
|
+
title: "Circular dependency",
|
|
810
|
+
steps: [
|
|
811
|
+
`Dependency cycle detected: ${cycleStr}`,
|
|
812
|
+
"Remove one of the dependencies to break the cycle",
|
|
813
|
+
'Run "kigumi registry validate" to check for issues'
|
|
814
|
+
]
|
|
815
|
+
}
|
|
816
|
+
];
|
|
817
|
+
super(
|
|
818
|
+
200 /* VALIDATION_FAILED */,
|
|
819
|
+
`Circular dependency detected: ${cycleStr}`,
|
|
820
|
+
{ cycle },
|
|
821
|
+
suggestions
|
|
822
|
+
);
|
|
823
|
+
}
|
|
824
|
+
};
|
|
825
|
+
var PathTraversalError = class extends KigumiError {
|
|
826
|
+
constructor(filePath, registryRoot, cause) {
|
|
827
|
+
const suggestions = [
|
|
828
|
+
{
|
|
829
|
+
title: "Path traversal blocked",
|
|
830
|
+
steps: [
|
|
831
|
+
`File path "${filePath}" resolves outside the registry root`,
|
|
832
|
+
"Only paths within the registry directory are permitted"
|
|
833
|
+
]
|
|
834
|
+
}
|
|
835
|
+
];
|
|
836
|
+
super(
|
|
837
|
+
504 /* REGISTRY_ERROR */,
|
|
838
|
+
`Path traversal attempt: "${filePath}" escapes registry root "${registryRoot}"`,
|
|
839
|
+
{ filePath, registryRoot },
|
|
840
|
+
suggestions,
|
|
841
|
+
cause
|
|
842
|
+
);
|
|
843
|
+
}
|
|
844
|
+
};
|
|
845
|
+
|
|
846
|
+
// src/errors/preflight.ts
|
|
847
|
+
var PreFlightCheckError = class extends KigumiError {
|
|
848
|
+
constructor(checkResults) {
|
|
849
|
+
const failedChecks = checkResults.filter((r) => !r.passed);
|
|
850
|
+
const errorChecks = failedChecks.filter(
|
|
851
|
+
(r) => r.severity === "error" /* ERROR */
|
|
852
|
+
);
|
|
853
|
+
const warningChecks = failedChecks.filter(
|
|
854
|
+
(r) => r.severity === "warning" /* WARNING */
|
|
855
|
+
);
|
|
856
|
+
const suggestions = [];
|
|
857
|
+
for (const check of errorChecks) {
|
|
858
|
+
if (check.suggestion && check.suggestion.length > 0) {
|
|
859
|
+
suggestions.push({
|
|
860
|
+
title: check.message,
|
|
861
|
+
steps: check.suggestion
|
|
862
|
+
});
|
|
863
|
+
}
|
|
864
|
+
}
|
|
865
|
+
if (suggestions.length === 0) {
|
|
866
|
+
suggestions.push({
|
|
867
|
+
title: "Fix the issues and try again",
|
|
868
|
+
steps: failedChecks.map((c) => c.message)
|
|
869
|
+
});
|
|
870
|
+
}
|
|
871
|
+
super(
|
|
872
|
+
600 /* PREFLIGHT_CHECK_FAILED */,
|
|
873
|
+
"Pre-flight checks failed",
|
|
874
|
+
{
|
|
875
|
+
totalChecks: checkResults.length,
|
|
876
|
+
failedChecks: failedChecks.length,
|
|
877
|
+
errors: errorChecks.length,
|
|
878
|
+
warnings: warningChecks.length,
|
|
879
|
+
checks: failedChecks
|
|
880
|
+
},
|
|
881
|
+
suggestions
|
|
882
|
+
);
|
|
883
|
+
}
|
|
884
|
+
format() {
|
|
885
|
+
const {
|
|
886
|
+
errors: _errors,
|
|
887
|
+
warnings: _warnings,
|
|
888
|
+
checks
|
|
889
|
+
} = this.context.details || {};
|
|
890
|
+
const failedChecks = checks || [];
|
|
891
|
+
const parts = ["Pre-flight checks failed:"];
|
|
892
|
+
parts.push("");
|
|
893
|
+
const errorChecks = failedChecks.filter(
|
|
894
|
+
(c) => c.severity === "error" /* ERROR */
|
|
895
|
+
);
|
|
896
|
+
if (errorChecks.length > 0) {
|
|
897
|
+
parts.push(`Errors (${errorChecks.length}):`);
|
|
898
|
+
errorChecks.forEach((check) => {
|
|
899
|
+
parts.push(` \u2717 ${check.message}`);
|
|
900
|
+
});
|
|
901
|
+
parts.push("");
|
|
902
|
+
}
|
|
903
|
+
const warningChecks = failedChecks.filter(
|
|
904
|
+
(c) => c.severity === "warning" /* WARNING */
|
|
905
|
+
);
|
|
906
|
+
if (warningChecks.length > 0) {
|
|
907
|
+
parts.push(`Warnings (${warningChecks.length}):`);
|
|
908
|
+
warningChecks.forEach((check) => {
|
|
909
|
+
parts.push(` \u26A0 ${check.message}`);
|
|
910
|
+
});
|
|
911
|
+
}
|
|
912
|
+
return parts.join("\n");
|
|
913
|
+
}
|
|
914
|
+
};
|
|
915
|
+
|
|
916
|
+
// src/errors/validation.ts
|
|
917
|
+
var ValidationError = class extends KigumiError {
|
|
918
|
+
constructor(field, value, validValues, zodError) {
|
|
919
|
+
const errorMessages = zodError?.issues.map((err) => {
|
|
920
|
+
return `${err.path.join(".")}: ${err.message}`;
|
|
921
|
+
}) || [];
|
|
922
|
+
const suggestions = [
|
|
923
|
+
{
|
|
924
|
+
title: "Provide a valid value",
|
|
925
|
+
steps: [
|
|
926
|
+
`The value "${value}" is not valid for: ${field}`,
|
|
927
|
+
...validValues ? [
|
|
928
|
+
`Valid values: ${validValues.map((v) => JSON.stringify(v)).join(", ")}`
|
|
929
|
+
] : [],
|
|
930
|
+
...errorMessages.map((msg) => `Error: ${msg}`),
|
|
931
|
+
"Check the command documentation for valid options"
|
|
932
|
+
]
|
|
933
|
+
}
|
|
934
|
+
];
|
|
935
|
+
super(
|
|
936
|
+
200 /* VALIDATION_FAILED */,
|
|
937
|
+
`Validation failed for: ${field}`,
|
|
938
|
+
{ field, value, validValues, zodErrors: errorMessages },
|
|
939
|
+
suggestions
|
|
940
|
+
);
|
|
941
|
+
}
|
|
942
|
+
format() {
|
|
943
|
+
const { field, value, validValues } = this.context.details || {};
|
|
944
|
+
const parts = [`Validation failed for: ${field}`];
|
|
945
|
+
parts.push(` Received: ${JSON.stringify(value)}`);
|
|
946
|
+
if (validValues && Array.isArray(validValues)) {
|
|
947
|
+
parts.push(
|
|
948
|
+
` Valid values: ${validValues.map((v) => JSON.stringify(v)).join(", ")}`
|
|
949
|
+
);
|
|
950
|
+
}
|
|
951
|
+
const zodErrors = this.context.details?.zodErrors;
|
|
952
|
+
if (zodErrors && zodErrors.length > 0) {
|
|
953
|
+
parts.push("");
|
|
954
|
+
parts.push("Validation errors:");
|
|
955
|
+
zodErrors.forEach((err) => parts.push(` - ${err}`));
|
|
956
|
+
}
|
|
957
|
+
return parts.join("\n");
|
|
958
|
+
}
|
|
959
|
+
};
|
|
960
|
+
|
|
961
|
+
// src/errors/tier.ts
|
|
962
|
+
var TierRestrictionError = class extends KigumiError {
|
|
963
|
+
constructor(feature, requiredTier, currentTier) {
|
|
964
|
+
const suggestions = [
|
|
965
|
+
{
|
|
966
|
+
title: "Upgrade to Pro tier",
|
|
967
|
+
steps: [
|
|
968
|
+
`"${feature}" requires Web Awesome Pro`,
|
|
969
|
+
"Visit: https://webawesome.com/pro",
|
|
970
|
+
"Sign up for a Pro account",
|
|
971
|
+
'Update your configuration: tier: "pro"',
|
|
972
|
+
"Add your Pro token to .env: WEBAWESOME_NPM_TOKEN=your-token"
|
|
973
|
+
]
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
title: "Or use a free alternative",
|
|
977
|
+
steps: [
|
|
978
|
+
"Check available free tier features",
|
|
979
|
+
"Run: kigumi list to see all components"
|
|
980
|
+
]
|
|
981
|
+
}
|
|
982
|
+
];
|
|
983
|
+
super(
|
|
984
|
+
300 /* TIER_RESTRICTION */,
|
|
985
|
+
`Feature requires Pro tier: ${feature}`,
|
|
986
|
+
{ feature, requiredTier, currentTier },
|
|
987
|
+
suggestions
|
|
988
|
+
);
|
|
989
|
+
}
|
|
990
|
+
};
|
|
991
|
+
var ProThemeRequiredError = class extends KigumiError {
|
|
992
|
+
constructor(themeName, freeThemes) {
|
|
993
|
+
const suggestions = [
|
|
994
|
+
{
|
|
995
|
+
title: "Upgrade to Pro tier",
|
|
996
|
+
steps: [
|
|
997
|
+
`Theme "${themeName}" requires Web Awesome Pro`,
|
|
998
|
+
"Visit: https://webawesome.com/pro",
|
|
999
|
+
"Sign up for a Pro account",
|
|
1000
|
+
'Update kigumi.config.json: "tier": "pro"',
|
|
1001
|
+
"Add your Pro token to .env: WEBAWESOME_NPM_TOKEN=your-token"
|
|
1002
|
+
]
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
title: "Or use a free theme",
|
|
1006
|
+
steps: ["Free tier themes:", ...freeThemes.map((t) => ` - ${t}`)]
|
|
1007
|
+
}
|
|
1008
|
+
];
|
|
1009
|
+
super(
|
|
1010
|
+
302 /* PRO_THEME_REQUIRED */,
|
|
1011
|
+
`Theme requires Pro tier: ${themeName}`,
|
|
1012
|
+
{ themeName, freeThemes },
|
|
1013
|
+
suggestions
|
|
1014
|
+
);
|
|
1015
|
+
}
|
|
1016
|
+
};
|
|
1017
|
+
|
|
1018
|
+
// src/errors/layers-css.ts
|
|
1019
|
+
var LayersCssRewriteError = class extends KigumiError {
|
|
1020
|
+
constructor(filePath, currentPackage, targetPackage, themeName) {
|
|
1021
|
+
const suggestions = [
|
|
1022
|
+
{
|
|
1023
|
+
title: "Update the imports manually",
|
|
1024
|
+
steps: [
|
|
1025
|
+
`Open ${filePath}`,
|
|
1026
|
+
`Replace: @import '${currentPackage}/dist/styles/webawesome.css' ...`,
|
|
1027
|
+
`With: @import '${targetPackage}/dist/styles/webawesome.css' ...`,
|
|
1028
|
+
`Replace: @import '${currentPackage}/dist/styles/themes/${themeName}.css' ...`,
|
|
1029
|
+
`With: @import '${targetPackage}/dist/styles/themes/${themeName}.css' ...`,
|
|
1030
|
+
"Save the file and restart your dev server"
|
|
1031
|
+
]
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
title: "Or restore the default layers.css",
|
|
1035
|
+
steps: [
|
|
1036
|
+
`See the reference implementation at:`,
|
|
1037
|
+
`${GITHUB_REPO_URL}/blob/main/src/utils/regenerate.ts`,
|
|
1038
|
+
`Look for the "generateLayersCSS" function`,
|
|
1039
|
+
"Copy its template output into your layers.css",
|
|
1040
|
+
"Then re-run migration"
|
|
1041
|
+
]
|
|
1042
|
+
}
|
|
1043
|
+
];
|
|
1044
|
+
super(
|
|
1045
|
+
405 /* MIGRATION_PARSE_ERROR */,
|
|
1046
|
+
`Cannot migrate layers.css automatically: expected @import pattern not found in ${filePath}`,
|
|
1047
|
+
{ filePath, currentPackage, targetPackage, themeName },
|
|
1048
|
+
suggestions
|
|
1049
|
+
);
|
|
1050
|
+
}
|
|
1051
|
+
};
|
|
1052
|
+
|
|
1053
|
+
// src/errors/network.ts
|
|
1054
|
+
var DependencyInstallError = class extends KigumiError {
|
|
1055
|
+
constructor(packageName, packageManager, cause, statusCode) {
|
|
1056
|
+
const isAuthError = statusCode === 401 || statusCode === 403;
|
|
1057
|
+
const isNotFoundError = statusCode === 404;
|
|
1058
|
+
const errorMessage = cause?.message || "";
|
|
1059
|
+
const isRegistryMismatch = errorMessage.includes("ERR_PNPM_REGISTRIES_MISMATCH") || errorMessage.includes("REGISTRIES_MISMATCH");
|
|
1060
|
+
const suggestions = [];
|
|
1061
|
+
if (isRegistryMismatch) {
|
|
1062
|
+
suggestions.push({
|
|
1063
|
+
title: "Registry configuration mismatch detected",
|
|
1064
|
+
steps: [
|
|
1065
|
+
"Your package manager detected a registry URL change",
|
|
1066
|
+
"This happens when .npmrc was updated after packages were installed",
|
|
1067
|
+
`Run: rm -rf node_modules ${packageManager === "pnpm" ? "pnpm-lock.yaml" : packageManager === "yarn" ? "yarn.lock" : "package-lock.json"}`,
|
|
1068
|
+
`Then run: ${packageManager} install`,
|
|
1069
|
+
"This will recreate the lockfile with the new registry configuration"
|
|
1070
|
+
]
|
|
1071
|
+
});
|
|
1072
|
+
} else if (isAuthError) {
|
|
1073
|
+
suggestions.push({
|
|
1074
|
+
title: "Authentication required",
|
|
1075
|
+
steps: [
|
|
1076
|
+
`Failed to install ${packageName} - authentication failed`,
|
|
1077
|
+
"This package requires a Pro tier token",
|
|
1078
|
+
"Get your token from: https://webawesome.com/pro",
|
|
1079
|
+
"Add to .env file: WEBAWESOME_NPM_TOKEN=your-token-here",
|
|
1080
|
+
"The .npmrc file is already configured for you"
|
|
1081
|
+
]
|
|
1082
|
+
});
|
|
1083
|
+
} else if (isNotFoundError) {
|
|
1084
|
+
suggestions.push({
|
|
1085
|
+
title: "Package not found",
|
|
1086
|
+
steps: [
|
|
1087
|
+
`Package "${packageName}" not found`,
|
|
1088
|
+
"Verify the package name is correct",
|
|
1089
|
+
"Check if the package exists in the registry",
|
|
1090
|
+
"Ensure you have access to the package"
|
|
1091
|
+
]
|
|
1092
|
+
});
|
|
1093
|
+
} else {
|
|
1094
|
+
suggestions.push({
|
|
1095
|
+
title: "Installation failed",
|
|
1096
|
+
steps: [
|
|
1097
|
+
`Failed to install: ${packageName}`,
|
|
1098
|
+
"Check the error message above for specific details",
|
|
1099
|
+
"Verify you have internet connectivity",
|
|
1100
|
+
"Try running the command again"
|
|
1101
|
+
]
|
|
1102
|
+
});
|
|
1103
|
+
suggestions.push({
|
|
1104
|
+
title: "Try manual installation",
|
|
1105
|
+
steps: [
|
|
1106
|
+
`Run: ${packageManager} ${packageManager === "npm" ? "install" : "add"} ${packageName}`,
|
|
1107
|
+
"Check the error output for specific issues",
|
|
1108
|
+
"Resolve any conflicts or version mismatches"
|
|
1109
|
+
]
|
|
1110
|
+
});
|
|
1111
|
+
}
|
|
1112
|
+
super(
|
|
1113
|
+
500 /* DEPENDENCY_INSTALL_FAILED */,
|
|
1114
|
+
`Failed to install dependency: ${packageName}`,
|
|
1115
|
+
{ packageName, packageManager, statusCode, error: cause?.message },
|
|
1116
|
+
suggestions,
|
|
1117
|
+
cause
|
|
1118
|
+
);
|
|
1119
|
+
}
|
|
1120
|
+
};
|
|
1121
|
+
|
|
1122
|
+
// src/errors/version.ts
|
|
1123
|
+
var VersionMismatchError = class extends KigumiError {
|
|
1124
|
+
constructor(configVersion, cliVersion) {
|
|
1125
|
+
super(
|
|
1126
|
+
700 /* VERSION_MISMATCH */,
|
|
1127
|
+
`CLI version ${cliVersion} does not match project version ${configVersion}`,
|
|
1128
|
+
{ configVersion, cliVersion },
|
|
1129
|
+
[
|
|
1130
|
+
{
|
|
1131
|
+
title: "Use the matching CLI version",
|
|
1132
|
+
steps: [`npx kigumi@${configVersion} add <component>`]
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
title: "Or upgrade your project to the current CLI version",
|
|
1136
|
+
steps: [`npx kigumi@${cliVersion} upgrade`]
|
|
1137
|
+
}
|
|
1138
|
+
]
|
|
1139
|
+
);
|
|
1140
|
+
this.configVersion = configVersion;
|
|
1141
|
+
this.cliVersion = cliVersion;
|
|
1142
|
+
}
|
|
1143
|
+
};
|
|
1144
|
+
|
|
1145
|
+
// src/errors/index.ts
|
|
1146
|
+
function handleError(error, output) {
|
|
1147
|
+
const kigumiError = error instanceof KigumiError ? error : UnknownError.from(error);
|
|
1148
|
+
if (output && typeof output.error === "function") {
|
|
1149
|
+
output.error(kigumiError.format(), kigumiError);
|
|
1150
|
+
const suggestions = kigumiError.formatSuggestions();
|
|
1151
|
+
if (suggestions) {
|
|
1152
|
+
output.note("How to fix", suggestions);
|
|
1153
|
+
}
|
|
1154
|
+
} else {
|
|
1155
|
+
console.error(kigumiError.format());
|
|
1156
|
+
const suggestions = kigumiError.formatSuggestions();
|
|
1157
|
+
if (suggestions) {
|
|
1158
|
+
console.error("\nHow to fix:");
|
|
1159
|
+
console.error(suggestions);
|
|
1160
|
+
}
|
|
1161
|
+
}
|
|
1162
|
+
process.exit(kigumiError.exitCode);
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
// src/utils/regenerate.ts
|
|
1166
|
+
import fs5 from "fs-extra";
|
|
1167
|
+
import path4 from "path";
|
|
1168
|
+
|
|
1169
|
+
// src/utils/detect-framework.ts
|
|
1170
|
+
import fs4 from "fs-extra";
|
|
1171
|
+
import path3 from "path";
|
|
1172
|
+
async function detectFramework(cwd = process.cwd()) {
|
|
1173
|
+
const packageJsonPath = path3.join(cwd, "package.json");
|
|
1174
|
+
if (!await fs4.pathExists(packageJsonPath)) {
|
|
1175
|
+
return "unknown";
|
|
1176
|
+
}
|
|
1177
|
+
const packageJson = await fs4.readJson(packageJsonPath);
|
|
1178
|
+
const deps = {
|
|
1179
|
+
...packageJson.dependencies,
|
|
1180
|
+
...packageJson.devDependencies
|
|
1181
|
+
};
|
|
1182
|
+
if (deps.react || deps["@types/react"]) {
|
|
1183
|
+
return "react";
|
|
1184
|
+
}
|
|
1185
|
+
if (deps.vue || deps["@vue/cli-service"]) {
|
|
1186
|
+
return "vue";
|
|
1187
|
+
}
|
|
1188
|
+
if (deps["@angular/core"]) {
|
|
1189
|
+
return "angular";
|
|
1190
|
+
}
|
|
1191
|
+
return "unknown";
|
|
1192
|
+
}
|
|
1193
|
+
async function detectTypeScript(cwd = process.cwd()) {
|
|
1194
|
+
const tsconfigPath = path3.join(cwd, "tsconfig.json");
|
|
1195
|
+
const packageJsonPath = path3.join(cwd, "package.json");
|
|
1196
|
+
if (await fs4.pathExists(tsconfigPath)) {
|
|
1197
|
+
return true;
|
|
1198
|
+
}
|
|
1199
|
+
if (await fs4.pathExists(packageJsonPath)) {
|
|
1200
|
+
const packageJson = await fs4.readJson(packageJsonPath);
|
|
1201
|
+
const deps = {
|
|
1202
|
+
...packageJson.dependencies,
|
|
1203
|
+
...packageJson.devDependencies
|
|
1204
|
+
};
|
|
1205
|
+
return !!deps.typescript;
|
|
1206
|
+
}
|
|
1207
|
+
return false;
|
|
1208
|
+
}
|
|
1209
|
+
async function detectPackageManager(cwd = process.cwd()) {
|
|
1210
|
+
if (await fs4.pathExists(path3.join(cwd, "pnpm-lock.yaml"))) {
|
|
1211
|
+
return "pnpm";
|
|
1212
|
+
}
|
|
1213
|
+
if (await fs4.pathExists(path3.join(cwd, "yarn.lock"))) {
|
|
1214
|
+
return "yarn";
|
|
1215
|
+
}
|
|
1216
|
+
if (await fs4.pathExists(path3.join(cwd, "bun.lockb"))) {
|
|
1217
|
+
return "bun";
|
|
1218
|
+
}
|
|
1219
|
+
return "npm";
|
|
1220
|
+
}
|
|
1221
|
+
async function isNextProject(cwd = process.cwd()) {
|
|
1222
|
+
const packageJsonPath = path3.join(cwd, "package.json");
|
|
1223
|
+
if (await fs4.pathExists(packageJsonPath)) {
|
|
1224
|
+
try {
|
|
1225
|
+
const packageJson = await fs4.readJson(packageJsonPath);
|
|
1226
|
+
const deps = {
|
|
1227
|
+
...packageJson.dependencies,
|
|
1228
|
+
...packageJson.devDependencies
|
|
1229
|
+
};
|
|
1230
|
+
if (deps.next) {
|
|
1231
|
+
return true;
|
|
1232
|
+
}
|
|
1233
|
+
} catch (_error) {
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
for (const name of [
|
|
1237
|
+
"next.config.js",
|
|
1238
|
+
"next.config.mjs",
|
|
1239
|
+
"next.config.ts",
|
|
1240
|
+
"next.config.cjs"
|
|
1241
|
+
]) {
|
|
1242
|
+
if (await fs4.pathExists(path3.join(cwd, name))) {
|
|
1243
|
+
return true;
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
return false;
|
|
1247
|
+
}
|
|
1248
|
+
async function detectNextRouter(cwd = process.cwd()) {
|
|
1249
|
+
for (const rel of ["src/app", "app"]) {
|
|
1250
|
+
if (await fs4.pathExists(path3.join(cwd, rel))) {
|
|
1251
|
+
return "app";
|
|
1252
|
+
}
|
|
1253
|
+
}
|
|
1254
|
+
for (const rel of ["src/pages", "pages"]) {
|
|
1255
|
+
if (await fs4.pathExists(path3.join(cwd, rel))) {
|
|
1256
|
+
return "pages";
|
|
1257
|
+
}
|
|
1258
|
+
}
|
|
1259
|
+
return "unknown";
|
|
1260
|
+
}
|
|
1261
|
+
async function detectSourceLayout(cwd = process.cwd()) {
|
|
1262
|
+
const srcMarkers = [
|
|
1263
|
+
"src/app",
|
|
1264
|
+
"src/pages",
|
|
1265
|
+
"src/main.ts",
|
|
1266
|
+
"src/main.tsx",
|
|
1267
|
+
"src/main.js",
|
|
1268
|
+
"src/main.jsx",
|
|
1269
|
+
"src/index.ts",
|
|
1270
|
+
"src/index.tsx"
|
|
1271
|
+
];
|
|
1272
|
+
for (const rel of srcMarkers) {
|
|
1273
|
+
if (await fs4.pathExists(path3.join(cwd, rel))) {
|
|
1274
|
+
return "src";
|
|
1275
|
+
}
|
|
1276
|
+
}
|
|
1277
|
+
return "root";
|
|
1278
|
+
}
|
|
1279
|
+
async function getProjectInfo(cwd = process.cwd()) {
|
|
1280
|
+
const framework = await detectFramework(cwd);
|
|
1281
|
+
const typescript = await detectTypeScript(cwd);
|
|
1282
|
+
const packageManager = await detectPackageManager(cwd);
|
|
1283
|
+
const isNext = await isNextProject(cwd);
|
|
1284
|
+
const nextRouter = isNext ? await detectNextRouter(cwd) : void 0;
|
|
1285
|
+
const sourceLayout = await detectSourceLayout(cwd);
|
|
1286
|
+
const packageJsonPath = path3.join(cwd, "package.json");
|
|
1287
|
+
let hasVite = false;
|
|
1288
|
+
if (await fs4.pathExists(packageJsonPath)) {
|
|
1289
|
+
const packageJson = await fs4.readJson(packageJsonPath);
|
|
1290
|
+
const deps = {
|
|
1291
|
+
...packageJson.dependencies,
|
|
1292
|
+
...packageJson.devDependencies
|
|
1293
|
+
};
|
|
1294
|
+
hasVite = !!deps.vite;
|
|
1295
|
+
}
|
|
1296
|
+
return {
|
|
1297
|
+
framework,
|
|
1298
|
+
typescript,
|
|
1299
|
+
packageManager,
|
|
1300
|
+
hasVite,
|
|
1301
|
+
isNext,
|
|
1302
|
+
nextRouter,
|
|
1303
|
+
sourceLayout
|
|
1304
|
+
};
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
// src/utils/regenerate.ts
|
|
1308
|
+
async function regenerateKigumiSetup(cwd, config, utilsDir, tierOverride, options, isNextOverride, nextRouterOverride) {
|
|
1309
|
+
const tier = tierOverride || detectTierSync(cwd);
|
|
1310
|
+
const packageName = getWebAwesomePackage(tier);
|
|
1311
|
+
const stylesDir = config.stylesDir;
|
|
1312
|
+
const stylesAlias = toKigumiAlias(stylesDir);
|
|
1313
|
+
const isNext = isNextOverride ?? await isNextProject(cwd);
|
|
1314
|
+
const nextRouter = isNext ? nextRouterOverride ?? await detectNextRouter(cwd) : void 0;
|
|
1315
|
+
const skipLayersImport = nextRouter === "pages";
|
|
1316
|
+
const layersPath = path4.join(cwd, stylesDir, "layers.css");
|
|
1317
|
+
const layersExists = await fs5.pathExists(layersPath);
|
|
1318
|
+
let layersPreserved = false;
|
|
1319
|
+
if (options?.preserveLayersCSS && layersExists) {
|
|
1320
|
+
layersPreserved = true;
|
|
1321
|
+
} else {
|
|
1322
|
+
const isCommunityTheme = config.installedThemes?.[config.theme.selected]?.source === "community";
|
|
1323
|
+
const layersContent = await generateLayersCSS(
|
|
1324
|
+
packageName,
|
|
1325
|
+
config.theme.selected,
|
|
1326
|
+
stylesDir,
|
|
1327
|
+
isCommunityTheme,
|
|
1328
|
+
nextRouter
|
|
1329
|
+
);
|
|
1330
|
+
await fs5.writeFile(layersPath, layersContent);
|
|
1331
|
+
}
|
|
1332
|
+
const themeClasses = config.theme.selected !== "none" ? generateThemeClassesScript(config) : "";
|
|
1333
|
+
const layersImportLine = skipLayersImport ? `// Pages Router: layers.css must be imported from pages/_app.tsx
|
|
1334
|
+
// directly \u2014 Next forbids global CSS imports from lib/.` : `import '${stylesAlias}/layers.css';`;
|
|
1335
|
+
const setupFileContent = `/**
|
|
1336
|
+
* Kigumi Setup
|
|
1337
|
+
*
|
|
1338
|
+
* This file is auto-generated by Kigumi CLI.
|
|
1339
|
+
* It imports Web Awesome styles with cascade layers and applies theme classes.
|
|
1340
|
+
*
|
|
1341
|
+
* Current theme: ${config.theme.selected}
|
|
1342
|
+
* Current palette: ${config.theme.palette}
|
|
1343
|
+
* Current brand: ${config.theme.brandColor}
|
|
1344
|
+
*
|
|
1345
|
+
* To change themes, use: kigumi theme <name>
|
|
1346
|
+
* To change brand color, use: kigumi brand <color>
|
|
1347
|
+
*/
|
|
1348
|
+
|
|
1349
|
+
// Prevent duplicate custom-element registrations when Web Awesome components
|
|
1350
|
+
// share internal dependencies (e.g. toast-item internally uses progress-ring)
|
|
1351
|
+
if (typeof customElements !== 'undefined') {
|
|
1352
|
+
const _ceDefine = customElements.define.bind(customElements);
|
|
1353
|
+
customElements.define = function (name: string, ctor: CustomElementConstructor, options?: ElementDefinitionOptions) {
|
|
1354
|
+
if (!customElements.get(name)) _ceDefine(name, ctor, options);
|
|
1355
|
+
};
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
// Import Web Awesome CSS with cascade layers for predictable specificity control
|
|
1359
|
+
${layersImportLine}
|
|
1360
|
+
${themeClasses}
|
|
1361
|
+
export {};
|
|
1362
|
+
`;
|
|
1363
|
+
const finalSetupFileContent = isNext ? `'use client';
|
|
1364
|
+
|
|
1365
|
+
${setupFileContent}` : setupFileContent;
|
|
1366
|
+
const setupFilePath = path4.join(cwd, utilsDir, "kigumi.ts");
|
|
1367
|
+
await fs5.writeFile(setupFilePath, finalSetupFileContent);
|
|
1368
|
+
return { layersPreserved };
|
|
1369
|
+
}
|
|
1370
|
+
function generateThemeClassesScript(config) {
|
|
1371
|
+
return `
|
|
1372
|
+
// Apply theme classes to <html> element
|
|
1373
|
+
if (typeof document !== 'undefined') {
|
|
1374
|
+
const html = document.documentElement;
|
|
1375
|
+
|
|
1376
|
+
// Remove old theme classes (for hot reload)
|
|
1377
|
+
html.className = html.className
|
|
1378
|
+
.replace(/\\bwa-theme-\\S+/g, '')
|
|
1379
|
+
.replace(/\\bwa-palette-\\S+/g, '')
|
|
1380
|
+
.replace(/\\bwa-brand-\\S+/g, '');
|
|
1381
|
+
|
|
1382
|
+
// Add new theme classes
|
|
1383
|
+
html.classList.add('wa-theme-${config.theme.selected}');
|
|
1384
|
+
html.classList.add('wa-palette-${config.theme.palette}');
|
|
1385
|
+
html.classList.add('wa-brand-${config.theme.brandColor}');
|
|
1386
|
+
}
|
|
1387
|
+
`;
|
|
1388
|
+
}
|
|
1389
|
+
async function generateLayersCSS(packageName, themeName, _stylesDir, isCommunityTheme = false, nextRouter) {
|
|
1390
|
+
const themeImport = isCommunityTheme ? `./community-themes/${themeName}.css` : `${packageName}/dist/styles/themes/${themeName}.css`;
|
|
1391
|
+
const usePlainImports = nextRouter === "pages";
|
|
1392
|
+
const baseLayer = usePlainImports ? "" : " layer(base)";
|
|
1393
|
+
const themeLayer = usePlainImports ? "" : " layer(theme)";
|
|
1394
|
+
return `/**
|
|
1395
|
+
* Web Awesome CSS Cascade Layers
|
|
1396
|
+
*
|
|
1397
|
+
* This file is auto-generated by Kigumi CLI.
|
|
1398
|
+
* It wraps Web Awesome CSS in cascade layers for predictable specificity control.
|
|
1399
|
+
*
|
|
1400
|
+
* Layer hierarchy (earlier = lower priority):
|
|
1401
|
+
* 1. base - Web Awesome foundation + theme styles
|
|
1402
|
+
* 2. theme - Your custom CSS overrides (theme.css)
|
|
1403
|
+
*
|
|
1404
|
+
* Learn more: https://developer.mozilla.org/en-US/docs/Web/CSS/@layer
|
|
1405
|
+
*/
|
|
1406
|
+
|
|
1407
|
+
/* Define layer order */
|
|
1408
|
+
@layer base, theme;
|
|
1409
|
+
|
|
1410
|
+
/* Layer 1: Web Awesome base styles */
|
|
1411
|
+
@import '${packageName}/dist/styles/webawesome.css'${baseLayer};
|
|
1412
|
+
|
|
1413
|
+
/* Layer 1: Web Awesome theme styles */
|
|
1414
|
+
@import '${themeImport}'${baseLayer};
|
|
1415
|
+
|
|
1416
|
+
/* Layer 2: Your custom CSS overrides (sibling of layers.css) */
|
|
1417
|
+
@import './theme.css'${themeLayer};
|
|
1418
|
+
`;
|
|
1419
|
+
}
|
|
1420
|
+
async function surgicalRewriteLayersCss(filePath, targetPackage, themeName) {
|
|
1421
|
+
const content = await fs5.readFile(filePath, "utf-8");
|
|
1422
|
+
const basePattern = /@import\s+['"](@awesome\.me\/webawesome(?:-pro)?)\/dist\/styles\/webawesome\.css['"]/;
|
|
1423
|
+
const basePatternGlobal = new RegExp(basePattern.source, "g");
|
|
1424
|
+
const themePattern = /@import\s+['"](@awesome\.me\/webawesome(?:-pro)?)\/dist\/styles\/themes\/([a-z][a-z0-9-]*)\.css['"]/;
|
|
1425
|
+
const themePatternGlobal = new RegExp(themePattern.source, "g");
|
|
1426
|
+
const hasBase = basePattern.test(content);
|
|
1427
|
+
const hasTheme = themePattern.test(content);
|
|
1428
|
+
if (!hasBase && !hasTheme) {
|
|
1429
|
+
const currentPackage = content.includes(WEB_AWESOME_PRO_PACKAGE) ? WEB_AWESOME_PRO_PACKAGE : WEB_AWESOME_FREE_PACKAGE;
|
|
1430
|
+
throw new LayersCssRewriteError(
|
|
1431
|
+
filePath,
|
|
1432
|
+
currentPackage,
|
|
1433
|
+
targetPackage,
|
|
1434
|
+
themeName
|
|
1435
|
+
);
|
|
1436
|
+
}
|
|
1437
|
+
let next = content;
|
|
1438
|
+
if (hasBase) {
|
|
1439
|
+
next = next.replace(
|
|
1440
|
+
basePatternGlobal,
|
|
1441
|
+
`@import '${targetPackage}/dist/styles/webawesome.css'`
|
|
1442
|
+
);
|
|
1443
|
+
}
|
|
1444
|
+
if (hasTheme) {
|
|
1445
|
+
next = next.replace(
|
|
1446
|
+
themePatternGlobal,
|
|
1447
|
+
(_match, _pkg, theme) => `@import '${targetPackage}/dist/styles/themes/${theme}.css'`
|
|
1448
|
+
);
|
|
1449
|
+
}
|
|
1450
|
+
if (next === content) {
|
|
1451
|
+
return { changed: false };
|
|
1452
|
+
}
|
|
1453
|
+
await fs5.writeFile(filePath, next);
|
|
1454
|
+
return { changed: true };
|
|
1455
|
+
}
|
|
1456
|
+
async function generateViteEnvDts(cwd, srcDir, waPackage = WEB_AWESOME_FREE_PACKAGE) {
|
|
1457
|
+
const viteEnvContent = `/// <reference types="vite/client" />
|
|
1458
|
+
|
|
1459
|
+
/**
|
|
1460
|
+
* Web Awesome JSX Types
|
|
1461
|
+
*
|
|
1462
|
+
* This extends React's JSX.IntrinsicElements with Web Awesome custom elements.
|
|
1463
|
+
* Uses the official types from the ${waPackage} package.
|
|
1464
|
+
*
|
|
1465
|
+
* IMPORTANT: Uses 'declare global' to extend JSX without overwriting React module.
|
|
1466
|
+
*
|
|
1467
|
+
* @see https://webawesome.com/docs/#react-users
|
|
1468
|
+
*/
|
|
1469
|
+
|
|
1470
|
+
import type {
|
|
1471
|
+
CustomElements,
|
|
1472
|
+
CustomCssProperties,
|
|
1473
|
+
} from '${waPackage}/dist/custom-elements-jsx.d.ts';
|
|
1474
|
+
|
|
1475
|
+
declare global {
|
|
1476
|
+
namespace JSX {
|
|
1477
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
1478
|
+
interface IntrinsicElements extends CustomElements {}
|
|
1479
|
+
}
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
declare module 'react' {
|
|
1483
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
1484
|
+
interface CSSProperties extends CustomCssProperties {}
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
export {};
|
|
1488
|
+
`;
|
|
1489
|
+
const viteEnvPath = path4.join(cwd, srcDir, "vite-env.d.ts");
|
|
1490
|
+
await fs5.writeFile(viteEnvPath, viteEnvContent);
|
|
1491
|
+
}
|
|
1492
|
+
async function generateNextEnvDts(cwd, srcDir, waPackage = WEB_AWESOME_FREE_PACKAGE) {
|
|
1493
|
+
const dtsContent = `/**
|
|
1494
|
+
* Web Awesome JSX Types
|
|
1495
|
+
*
|
|
1496
|
+
* This extends React's JSX.IntrinsicElements with Web Awesome custom elements.
|
|
1497
|
+
* Uses the official types from the ${waPackage} package.
|
|
1498
|
+
*
|
|
1499
|
+
* IMPORTANT: Uses 'declare global' to extend JSX without overwriting React module.
|
|
1500
|
+
*
|
|
1501
|
+
* @see https://webawesome.com/docs/#react-users
|
|
1502
|
+
*/
|
|
1503
|
+
|
|
1504
|
+
import type {
|
|
1505
|
+
CustomElements,
|
|
1506
|
+
CustomCssProperties,
|
|
1507
|
+
} from '${waPackage}/dist/custom-elements-jsx.d.ts';
|
|
1508
|
+
|
|
1509
|
+
declare global {
|
|
1510
|
+
namespace JSX {
|
|
1511
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
1512
|
+
interface IntrinsicElements extends CustomElements {}
|
|
1513
|
+
}
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
declare module 'react' {
|
|
1517
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
1518
|
+
interface CSSProperties extends CustomCssProperties {}
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
export {};
|
|
1522
|
+
`;
|
|
1523
|
+
const dtsPath = path4.join(cwd, srcDir, "web-awesome.d.ts");
|
|
1524
|
+
await fs5.writeFile(dtsPath, dtsContent);
|
|
1525
|
+
}
|
|
1526
|
+
async function generateThemeCSS() {
|
|
1527
|
+
return `/**
|
|
1528
|
+
* Web Awesome Theme Customization
|
|
1529
|
+
*
|
|
1530
|
+
* This file is for your custom CSS overrides.
|
|
1531
|
+
* Web Awesome base and theme imports are handled in layers.css.
|
|
1532
|
+
*
|
|
1533
|
+
* This file is imported into the 'theme' cascade layer,
|
|
1534
|
+
* which has higher priority than Web Awesome base styles.
|
|
1535
|
+
* This means your customizations will always override Web Awesome defaults.
|
|
1536
|
+
*
|
|
1537
|
+
* Learn more:
|
|
1538
|
+
* Customizing: https://webawesome.com/docs/customizing
|
|
1539
|
+
* Design Tokens: https://webawesome.com/docs/tokens
|
|
1540
|
+
* CSS Cascade Layers: https://developer.mozilla.org/en-US/docs/Web/CSS/@layer
|
|
1541
|
+
*/
|
|
1542
|
+
|
|
1543
|
+
:root {
|
|
1544
|
+
/* Your custom CSS variable overrides here */
|
|
1545
|
+
/* Example: --wa-color-brand-60: #6366f1; */
|
|
1546
|
+
}
|
|
1547
|
+
`;
|
|
1548
|
+
}
|
|
1549
|
+
async function generateGitIgnore(cwd) {
|
|
1550
|
+
const gitignorePath = path4.join(cwd, ".gitignore");
|
|
1551
|
+
const exists = await fs5.pathExists(gitignorePath);
|
|
1552
|
+
const essentialEntries = [
|
|
1553
|
+
"# Dependencies",
|
|
1554
|
+
"node_modules/",
|
|
1555
|
+
"",
|
|
1556
|
+
"# Environment variables",
|
|
1557
|
+
".env",
|
|
1558
|
+
".env.local",
|
|
1559
|
+
".env.*.local",
|
|
1560
|
+
"",
|
|
1561
|
+
"# Build outputs",
|
|
1562
|
+
"dist/",
|
|
1563
|
+
"build/",
|
|
1564
|
+
"",
|
|
1565
|
+
"# Kigumi cross-framework staging (transient cache for agent conversion)",
|
|
1566
|
+
".kigumi/foreign/",
|
|
1567
|
+
"",
|
|
1568
|
+
"# Kigumi registry cache (transient)",
|
|
1569
|
+
".kigumi/cache/"
|
|
1570
|
+
];
|
|
1571
|
+
if (!exists) {
|
|
1572
|
+
const content2 = essentialEntries.join("\n") + "\n";
|
|
1573
|
+
await fs5.writeFile(gitignorePath, content2);
|
|
1574
|
+
return;
|
|
1575
|
+
}
|
|
1576
|
+
let content = await fs5.readFile(gitignorePath, "utf-8");
|
|
1577
|
+
if (!content.includes(".env")) {
|
|
1578
|
+
content += "\n# Environment variables\n.env\n.env.local\n.env.*.local\n";
|
|
1579
|
+
}
|
|
1580
|
+
if (!/^\.kigumi\/foreign\/$/m.test(content)) {
|
|
1581
|
+
if (!content.endsWith("\n")) {
|
|
1582
|
+
content += "\n";
|
|
1583
|
+
}
|
|
1584
|
+
content += "\n# Kigumi cross-framework staging (transient cache for agent conversion)\n.kigumi/foreign/\n";
|
|
1585
|
+
}
|
|
1586
|
+
if (!/^\.kigumi\/cache\/$/m.test(content)) {
|
|
1587
|
+
if (!content.endsWith("\n")) {
|
|
1588
|
+
content += "\n";
|
|
1589
|
+
}
|
|
1590
|
+
content += "\n# Kigumi registry cache (transient)\n.kigumi/cache/\n";
|
|
1591
|
+
}
|
|
1592
|
+
await fs5.writeFile(gitignorePath, content);
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
// src/utils/github-fetcher.ts
|
|
1596
|
+
import os from "os";
|
|
1597
|
+
import path5 from "path";
|
|
1598
|
+
import fs6 from "fs-extra";
|
|
1599
|
+
|
|
1600
|
+
// src/schemas/community-registry.ts
|
|
1601
|
+
import semver from "semver";
|
|
1602
|
+
import { z as z2 } from "zod";
|
|
1603
|
+
var safePathSchema = z2.string().min(1).refine(
|
|
1604
|
+
(value) => {
|
|
1605
|
+
if (value.startsWith("/")) return false;
|
|
1606
|
+
if (value.includes("\\")) return false;
|
|
1607
|
+
return value.split("/").every(
|
|
1608
|
+
(segment) => segment !== ".." && segment !== "." && segment !== ""
|
|
1609
|
+
);
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
message: "Path may not be absolute, contain '.', '..', empty segments, or backslashes"
|
|
1613
|
+
}
|
|
1614
|
+
);
|
|
1615
|
+
var componentFilesSchema = z2.object({
|
|
1616
|
+
/** Path to main component file, relative to registry root */
|
|
1617
|
+
component: safePathSchema,
|
|
1618
|
+
/** Path to CSS file */
|
|
1619
|
+
css: safePathSchema.optional(),
|
|
1620
|
+
/** Path to test file */
|
|
1621
|
+
test: safePathSchema.optional(),
|
|
1622
|
+
/** Additional files (utils, hooks, types) */
|
|
1623
|
+
extras: z2.array(safePathSchema).default([])
|
|
1624
|
+
});
|
|
1625
|
+
var communityComponentSchema = z2.object({
|
|
1626
|
+
name: z2.string().min(1),
|
|
1627
|
+
description: z2.string().optional(),
|
|
1628
|
+
category: z2.string().optional(),
|
|
1629
|
+
/** Keys of other components in this registry that this component depends on */
|
|
1630
|
+
dependencies: z2.array(z2.string()).default([]),
|
|
1631
|
+
/** Framework-specific file paths (keyed by framework name) */
|
|
1632
|
+
files: z2.record(z2.string(), componentFilesSchema).refine(
|
|
1633
|
+
(files) => {
|
|
1634
|
+
const validFrameworks = ["react", "vue", "angular"];
|
|
1635
|
+
return Object.keys(files).every((k) => validFrameworks.includes(k));
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
message: "File keys must be valid framework names (react, vue, angular)"
|
|
1639
|
+
}
|
|
1640
|
+
),
|
|
1641
|
+
/** npm packages this component needs (not Web Awesome packages) */
|
|
1642
|
+
peerDependencies: z2.record(z2.string(), z2.string()).optional()
|
|
1643
|
+
});
|
|
1644
|
+
var communityThemeSchema = z2.object({
|
|
1645
|
+
name: z2.string().min(1),
|
|
1646
|
+
description: z2.string().optional(),
|
|
1647
|
+
/** URL to a preview screenshot */
|
|
1648
|
+
preview: z2.string().url().optional(),
|
|
1649
|
+
/** Theme files */
|
|
1650
|
+
files: z2.object({
|
|
1651
|
+
/** Main theme CSS file */
|
|
1652
|
+
css: z2.string().min(1),
|
|
1653
|
+
/** Optional CSS variables file */
|
|
1654
|
+
variables: z2.string().optional()
|
|
1655
|
+
}),
|
|
1656
|
+
/** Built-in theme this extends */
|
|
1657
|
+
extends: z2.string().optional()
|
|
1658
|
+
});
|
|
1659
|
+
var communityRegistrySchema = z2.object({
|
|
1660
|
+
/** JSON Schema URL for editor support */
|
|
1661
|
+
$schema: z2.string().optional(),
|
|
1662
|
+
/** Registry name */
|
|
1663
|
+
name: z2.string().min(1),
|
|
1664
|
+
/** Registry description */
|
|
1665
|
+
description: z2.string().optional(),
|
|
1666
|
+
/** Author name or handle */
|
|
1667
|
+
author: z2.string().optional(),
|
|
1668
|
+
/** License identifier */
|
|
1669
|
+
license: z2.string().optional(),
|
|
1670
|
+
/** Homepage URL */
|
|
1671
|
+
homepage: z2.string().url().optional(),
|
|
1672
|
+
/** Semver version (no ranges); pre-release and build metadata permitted */
|
|
1673
|
+
version: z2.string().refine((value) => semver.valid(value) !== null, {
|
|
1674
|
+
message: "Must be a valid semver version (e.g., 1.0.0 or 1.0.0-beta.1)"
|
|
1675
|
+
}),
|
|
1676
|
+
/** Frameworks this registry provides components for */
|
|
1677
|
+
frameworks: z2.array(frameworkSchema).min(1),
|
|
1678
|
+
/** Minimum Kigumi CLI version required (semver, no ranges) */
|
|
1679
|
+
kigumiVersion: z2.string().refine((value) => semver.valid(value) !== null, {
|
|
1680
|
+
message: "kigumiVersion must be a valid semver string (e.g., 0.19.0 or 1.0.0-beta.1)"
|
|
1681
|
+
}).optional(),
|
|
1682
|
+
/** Component definitions keyed by slug */
|
|
1683
|
+
components: z2.record(z2.string(), communityComponentSchema).optional().default({}),
|
|
1684
|
+
/** Theme definitions keyed by slug */
|
|
1685
|
+
themes: z2.record(z2.string(), communityThemeSchema).optional().default({})
|
|
1686
|
+
});
|
|
1687
|
+
function validateCommunityRegistry(data, url) {
|
|
1688
|
+
const result = communityRegistrySchema.safeParse(data);
|
|
1689
|
+
if (!result.success) {
|
|
1690
|
+
const errors = result.error.issues.map((issue) => {
|
|
1691
|
+
const path6 = issue.path.join(".");
|
|
1692
|
+
return path6 ? `${path6}: ${issue.message}` : issue.message;
|
|
1693
|
+
});
|
|
1694
|
+
throw new CommunityRegistryInvalidError(url, errors);
|
|
1695
|
+
}
|
|
1696
|
+
return result.data;
|
|
1697
|
+
}
|
|
1698
|
+
function validateRegistryDependencies(registry) {
|
|
1699
|
+
const errors = [];
|
|
1700
|
+
const componentKeys = new Set(Object.keys(registry.components));
|
|
1701
|
+
for (const [key, component] of Object.entries(registry.components)) {
|
|
1702
|
+
for (const dep of component.dependencies) {
|
|
1703
|
+
if (!componentKeys.has(dep)) {
|
|
1704
|
+
errors.push(
|
|
1705
|
+
`Component "${key}" depends on "${dep}" which is not defined in this registry`
|
|
1706
|
+
);
|
|
1707
|
+
}
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1710
|
+
return errors;
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
// src/utils/version-check.ts
|
|
1714
|
+
import semver2 from "semver";
|
|
1715
|
+
function parseSemver(version) {
|
|
1716
|
+
const match = version.match(/^(\d+)\.(\d+)\.(\d+)/);
|
|
1717
|
+
if (!match) return null;
|
|
1718
|
+
return {
|
|
1719
|
+
major: parseInt(match[1], 10),
|
|
1720
|
+
minor: parseInt(match[2], 10),
|
|
1721
|
+
patch: parseInt(match[3], 10)
|
|
1722
|
+
};
|
|
1723
|
+
}
|
|
1724
|
+
function checkVersionCompatibility(configVersion, cliVersion) {
|
|
1725
|
+
if (!configVersion) {
|
|
1726
|
+
return { status: "no-pin" };
|
|
1727
|
+
}
|
|
1728
|
+
const parsedConfig = parseSemver(configVersion);
|
|
1729
|
+
const parsedCli = parseSemver(cliVersion);
|
|
1730
|
+
if (!parsedConfig || !parsedCli) {
|
|
1731
|
+
return { status: "match" };
|
|
1732
|
+
}
|
|
1733
|
+
if (parsedConfig.major !== parsedCli.major) {
|
|
1734
|
+
return {
|
|
1735
|
+
status: "major-mismatch",
|
|
1736
|
+
configVersion,
|
|
1737
|
+
cliVersion
|
|
1738
|
+
};
|
|
1739
|
+
}
|
|
1740
|
+
if (parsedConfig.minor !== parsedCli.minor) {
|
|
1741
|
+
return {
|
|
1742
|
+
status: "minor-mismatch",
|
|
1743
|
+
configVersion,
|
|
1744
|
+
cliVersion
|
|
1745
|
+
};
|
|
1746
|
+
}
|
|
1747
|
+
return { status: "match" };
|
|
1748
|
+
}
|
|
1749
|
+
function satisfiesMinimum(version, minimum) {
|
|
1750
|
+
if (!semver2.valid(version) || !semver2.valid(minimum)) return false;
|
|
1751
|
+
return semver2.satisfies(version, `>=${minimum}`, { includePrerelease: true });
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
// src/utils/github-fetcher.ts
|
|
1755
|
+
function isLocalPathInput(input) {
|
|
1756
|
+
const trimmed = input.trim();
|
|
1757
|
+
return trimmed.startsWith("./") || trimmed.startsWith("../") || trimmed.startsWith("/") || trimmed === "." || trimmed === ".." || trimmed.startsWith("~/") || trimmed === "~";
|
|
1758
|
+
}
|
|
1759
|
+
function resolveLocalPath(input, baseDir) {
|
|
1760
|
+
const trimmed = input.trim();
|
|
1761
|
+
if (trimmed === "~" || trimmed.startsWith("~/")) {
|
|
1762
|
+
const rest = trimmed === "~" ? "" : trimmed.slice(2);
|
|
1763
|
+
return path5.join(os.homedir(), rest);
|
|
1764
|
+
}
|
|
1765
|
+
if (path5.isAbsolute(trimmed)) {
|
|
1766
|
+
return trimmed;
|
|
1767
|
+
}
|
|
1768
|
+
return path5.resolve(baseDir ?? process.cwd(), trimmed);
|
|
1769
|
+
}
|
|
1770
|
+
function parseRegistrySource(input, options) {
|
|
1771
|
+
if (isLocalPathInput(input)) {
|
|
1772
|
+
const absolutePath = resolveLocalPath(input, options?.baseDir);
|
|
1773
|
+
return {
|
|
1774
|
+
kind: "local",
|
|
1775
|
+
url: absolutePath,
|
|
1776
|
+
absolutePath
|
|
1777
|
+
};
|
|
1778
|
+
}
|
|
1779
|
+
return parseGitHubUrl(input);
|
|
1780
|
+
}
|
|
1781
|
+
function parseGitHubUrl(url) {
|
|
1782
|
+
let normalized = url.trim();
|
|
1783
|
+
if (!normalized.startsWith("http")) {
|
|
1784
|
+
normalized = `https://${normalized}`;
|
|
1785
|
+
}
|
|
1786
|
+
normalized = normalized.replace(/\/+$/, "");
|
|
1787
|
+
let parsed;
|
|
1788
|
+
try {
|
|
1789
|
+
parsed = new URL(normalized);
|
|
1790
|
+
} catch (error) {
|
|
1791
|
+
throw new Error(`Invalid URL: ${url}`, { cause: error });
|
|
1792
|
+
}
|
|
1793
|
+
if (parsed.hostname !== "github.com") {
|
|
1794
|
+
throw new Error(`Only GitHub URLs are supported. Got: ${parsed.hostname}`);
|
|
1795
|
+
}
|
|
1796
|
+
const pathParts = parsed.pathname.split("/").filter(Boolean);
|
|
1797
|
+
if (pathParts.length < 2) {
|
|
1798
|
+
throw new Error(
|
|
1799
|
+
`Invalid GitHub repository URL: ${url}. Expected format: https://github.com/owner/repo`
|
|
1800
|
+
);
|
|
1801
|
+
}
|
|
1802
|
+
const owner = pathParts[0];
|
|
1803
|
+
const repo = pathParts[1];
|
|
1804
|
+
let branch = "main";
|
|
1805
|
+
if (pathParts.length >= 4 && pathParts[2] === "tree") {
|
|
1806
|
+
branch = pathParts.slice(3).join("/");
|
|
1807
|
+
}
|
|
1808
|
+
return {
|
|
1809
|
+
kind: "github",
|
|
1810
|
+
url: `https://github.com/${owner}/${repo}`,
|
|
1811
|
+
owner,
|
|
1812
|
+
repo,
|
|
1813
|
+
branch
|
|
1814
|
+
};
|
|
1815
|
+
}
|
|
1816
|
+
function buildRawUrl(source, filePath) {
|
|
1817
|
+
const cleanPath = filePath.replace(/^\//, "");
|
|
1818
|
+
return `${GITHUB_RAW_BASE_URL}/${source.owner}/${source.repo}/${source.branch}/${cleanPath}`;
|
|
1819
|
+
}
|
|
1820
|
+
async function fetchFile(source, filePath) {
|
|
1821
|
+
if (source.kind === "local") {
|
|
1822
|
+
const cleanPath = filePath.replace(/^\//, "");
|
|
1823
|
+
const absoluteFilePath = path5.resolve(source.absolutePath, cleanPath);
|
|
1824
|
+
if (absoluteFilePath !== source.absolutePath && !absoluteFilePath.startsWith(source.absolutePath + path5.sep)) {
|
|
1825
|
+
throw new PathTraversalError(filePath, source.absolutePath);
|
|
1826
|
+
}
|
|
1827
|
+
try {
|
|
1828
|
+
return await fs6.readFile(absoluteFilePath, "utf-8");
|
|
1829
|
+
} catch (error) {
|
|
1830
|
+
const errno = error;
|
|
1831
|
+
if (errno.code === "ENOENT") {
|
|
1832
|
+
throw new Error(
|
|
1833
|
+
`File not found: ${filePath} in ${source.absolutePath}`,
|
|
1834
|
+
{ cause: error }
|
|
1835
|
+
);
|
|
1836
|
+
}
|
|
1837
|
+
throw new Error(
|
|
1838
|
+
`Failed to read ${filePath} from ${source.absolutePath}: ${errno.message}`,
|
|
1839
|
+
{ cause: error }
|
|
1840
|
+
);
|
|
1841
|
+
}
|
|
1842
|
+
}
|
|
1843
|
+
const url = buildRawUrl(source, filePath);
|
|
1844
|
+
const headers = {
|
|
1845
|
+
"User-Agent": "kigumi-cli"
|
|
1846
|
+
};
|
|
1847
|
+
if (source.token) {
|
|
1848
|
+
headers["Authorization"] = `token ${source.token}`;
|
|
1849
|
+
}
|
|
1850
|
+
const response = await fetch(url, { headers });
|
|
1851
|
+
if (!response.ok) {
|
|
1852
|
+
if (response.status === 404) {
|
|
1853
|
+
throw new Error(`File not found: ${filePath} in ${source.url}`);
|
|
1854
|
+
}
|
|
1855
|
+
if (response.status === 401 || response.status === 403) {
|
|
1856
|
+
throw new Error(
|
|
1857
|
+
`Authentication failed for ${source.url}. Provide a GitHub token for private repositories.`
|
|
1858
|
+
);
|
|
1859
|
+
}
|
|
1860
|
+
throw new Error(
|
|
1861
|
+
`Failed to fetch ${filePath} from ${source.url}: ${response.status} ${response.statusText}`
|
|
1862
|
+
);
|
|
1863
|
+
}
|
|
1864
|
+
return response.text();
|
|
1865
|
+
}
|
|
1866
|
+
async function fetchRegistryJson(source, output) {
|
|
1867
|
+
const content = await fetchFile(source, "registry.json");
|
|
1868
|
+
let data;
|
|
1869
|
+
try {
|
|
1870
|
+
data = JSON.parse(content);
|
|
1871
|
+
} catch (error) {
|
|
1872
|
+
throw new Error(`Invalid JSON in registry.json from ${source.url}`, {
|
|
1873
|
+
cause: error
|
|
1874
|
+
});
|
|
1875
|
+
}
|
|
1876
|
+
const registry = validateCommunityRegistry(data, source.url);
|
|
1877
|
+
if (registry.kigumiVersion && output) {
|
|
1878
|
+
if (!satisfiesMinimum(CLI_VERSION, registry.kigumiVersion)) {
|
|
1879
|
+
output.warn(
|
|
1880
|
+
`Registry "${registry.name}" requires kigumi >= ${registry.kigumiVersion}, you have ${CLI_VERSION}. Some features may not work correctly.`
|
|
1881
|
+
);
|
|
1882
|
+
}
|
|
1883
|
+
}
|
|
1884
|
+
return registry;
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1887
|
+
// src/utils/github-token.ts
|
|
1888
|
+
import { execa } from "execa";
|
|
1889
|
+
async function getGitHubToken() {
|
|
1890
|
+
const githubToken = process.env.GITHUB_TOKEN;
|
|
1891
|
+
if (githubToken?.trim()) {
|
|
1892
|
+
return githubToken.trim();
|
|
1893
|
+
}
|
|
1894
|
+
const kigumiToken = process.env.KIGUMI_GITHUB_TOKEN;
|
|
1895
|
+
if (kigumiToken?.trim()) {
|
|
1896
|
+
return kigumiToken.trim();
|
|
1897
|
+
}
|
|
1898
|
+
try {
|
|
1899
|
+
const { stdout } = await execa("gh", ["auth", "token"]);
|
|
1900
|
+
const token = stdout.trim();
|
|
1901
|
+
if (token) {
|
|
1902
|
+
return token;
|
|
1903
|
+
}
|
|
1904
|
+
} catch (_error) {
|
|
1905
|
+
}
|
|
1906
|
+
return void 0;
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
// src/utils/registry-resolver.ts
|
|
1910
|
+
function resolveRegistrySource(from, config) {
|
|
1911
|
+
if (from.includes("/") || from.includes(".")) {
|
|
1912
|
+
return from;
|
|
1913
|
+
}
|
|
1914
|
+
const registries = config.registries || [];
|
|
1915
|
+
const match = registries.find(
|
|
1916
|
+
(r) => r.name?.toLowerCase() === from.toLowerCase()
|
|
1917
|
+
);
|
|
1918
|
+
if (!match) {
|
|
1919
|
+
const available = registries.map((r) => r.name).filter(Boolean).join(", ");
|
|
1920
|
+
throw new Error(
|
|
1921
|
+
`Registry "${from}" not found.` + (available ? ` Connected registries: ${available}` : ' Run "kigumi registry connect <url>" to connect one.')
|
|
1922
|
+
);
|
|
1923
|
+
}
|
|
1924
|
+
return match.url;
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
export {
|
|
1928
|
+
confirm,
|
|
1929
|
+
select,
|
|
1930
|
+
text,
|
|
1931
|
+
multiselect,
|
|
1932
|
+
isCancel,
|
|
1933
|
+
getOutput2 as getOutput,
|
|
1934
|
+
CheckRunner,
|
|
1935
|
+
UserCancelledError,
|
|
1936
|
+
ConfigNotFoundError,
|
|
1937
|
+
ConfigInvalidError,
|
|
1938
|
+
FRAMEWORKS,
|
|
1939
|
+
frameworkSchema,
|
|
1940
|
+
kigumiConfigSchema,
|
|
1941
|
+
DEFAULT_CONFIG,
|
|
1942
|
+
loadConfig,
|
|
1943
|
+
getConfig,
|
|
1944
|
+
saveConfig,
|
|
1945
|
+
ConfigExistsCheck,
|
|
1946
|
+
PackageJsonExistsCheck,
|
|
1947
|
+
ValidationError,
|
|
1948
|
+
TierRestrictionError,
|
|
1949
|
+
ProThemeRequiredError,
|
|
1950
|
+
LayersCssRewriteError,
|
|
1951
|
+
DependencyInstallError,
|
|
1952
|
+
CommunityRegistryNotFoundError,
|
|
1953
|
+
CommunityComponentNotFoundError,
|
|
1954
|
+
FrameworkMismatchError,
|
|
1955
|
+
CircularDependencyError,
|
|
1956
|
+
PreFlightCheckError,
|
|
1957
|
+
VersionMismatchError,
|
|
1958
|
+
handleError,
|
|
1959
|
+
communityRegistrySchema,
|
|
1960
|
+
validateRegistryDependencies,
|
|
1961
|
+
isNextProject,
|
|
1962
|
+
detectNextRouter,
|
|
1963
|
+
getProjectInfo,
|
|
1964
|
+
regenerateKigumiSetup,
|
|
1965
|
+
surgicalRewriteLayersCss,
|
|
1966
|
+
generateViteEnvDts,
|
|
1967
|
+
generateNextEnvDts,
|
|
1968
|
+
generateThemeCSS,
|
|
1969
|
+
generateGitIgnore,
|
|
1970
|
+
checkVersionCompatibility,
|
|
1971
|
+
parseRegistrySource,
|
|
1972
|
+
parseGitHubUrl,
|
|
1973
|
+
fetchFile,
|
|
1974
|
+
fetchRegistryJson,
|
|
1975
|
+
getGitHubToken,
|
|
1976
|
+
resolveRegistrySource
|
|
1977
|
+
};
|
|
1978
|
+
//# sourceMappingURL=chunk-L52LAS37.js.map
|