UNPKG

ui-thing

Version:

CLI used to add Nuxt components to a project

1,355 lines (747 loc) 55.3 kB
# Changelog ## v0.3.1 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.3.0...v0.3.1) ### 🚀 Enhancements - **add:** Add --skip-config flag to install components without a config file ([70dcea2](https://github.com/BayBreezy/ui-thing-cli/commit/70dcea2)) ### 📖 Documentation - **readme:** Rewrite with full command reference for v0.3.0 ([ce3c6ba](https://github.com/BayBreezy/ui-thing-cli/commit/ce3c6ba)) ### 🤖 CI - Run test and build workflows across node 20, 22, and lts ([73e1c8d](https://github.com/BayBreezy/ui-thing-cli/commit/73e1c8d)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](https://github.com/BayBreezy)) ## v0.3.0 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.2.9...v0.3.0) ### 🚀 Enhancements - **Deno support:** Deno is now a valid package manager choice during `init`. The CLI uses `deno add npm:<pkg>` for dependencies, `--dev` instead of `-D` for dev dependencies, and `deno run -A npm:nuxt prepare` for the post-install step ([e94c67d](https://github.com/BayBreezy/ui-thing-cli/commit/e94c67d)) - **`list` command:** New `ui-thing list` command displays all available components. Pass `--installed` to filter to only components whose files are already present in your project ([fdf5784](https://github.com/BayBreezy/ui-thing-cli/commit/fdf5784)) - **`update` command:** New `ui-thing update [names...]` command re-fetches component files from the API and overwrites them in place. Omit names to pick from a list of installed components ([c1ee7ab](https://github.com/BayBreezy/ui-thing-cli/commit/c1ee7ab)) - **`remove` command:** New `ui-thing remove [names...]` command deletes installed component files (including utils and composables). Omit names to pick from a list of installed components. Prompts for confirmation before deleting ([653d897](https://github.com/BayBreezy/ui-thing-cli/commit/653d897)) - **Docs links after install:** After successfully installing a component via `add` or `prose`, the CLI now prints the documentation URL so you can jump straight to the component docs ([7f85822](https://github.com/BayBreezy/ui-thing-cli/commit/7f85822)) ### 🩹 Fixes - **`bun` and `pnpm` add command:** Both package managers were incorrectly using `install` instead of `add` when installing component dependencies. This is now fixed ([e94c67d](https://github.com/BayBreezy/ui-thing-cli/commit/e94c67d)) - **Exit codes:** Error paths (missing config file, incomplete configuration) now correctly exit with code `1` instead of `0`, making the CLI usable in CI pipelines ([dfea222](https://github.com/BayBreezy/ui-thing-cli/commit/dfea222)) - **`spawnSync` exit status:** The `prose` and `block` commands now check `result.status !== 0` in addition to `result.error`, so a failed component installer script no longer silently passes ([a9e92ff](https://github.com/BayBreezy/ui-thing-cli/commit/a9e92ff)) - **API error handling:** All four fetch utilities (`fetchComponents`, `fetchProseComponents`, `fetchBlocks`, `fetchBlockCategories`) now catch network errors and print a clear message instead of crashing with an unhandled rejection ([78b1070](https://github.com/BayBreezy/ui-thing-cli/commit/78b1070)) - **`.npmrc` safe merge (pnpm):** When using pnpm, the CLI previously overwrote `.npmrc` entirely. It now reads the existing file and only appends the lines that are not already present ([9a6af69](https://github.com/BayBreezy/ui-thing-cli/commit/9a6af69)) ### 💅 Refactors - **Centralized logger:** All ad-hoc `console.log(kleur...)` calls have been replaced with a new `logger` utility (`src/utils/logger.ts`) that wraps consola. This gives consistent formatting across every command and makes it easy to redirect output in the future ([748650b](https://github.com/BayBreezy/ui-thing-cli/commit/748650b)) ### 🏡 Chore - Update all dependencies to latest versions ([8799650](https://github.com/BayBreezy/ui-thing-cli/commit/8799650)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](https://github.com/BayBreezy)) ## v0.2.9 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.2.8...v0.2.9) ### 🚀 Enhancements - Enhance CSS styles with color-scheme support and scrollbar utility ([d61751c](https://github.com/BayBreezy/ui-thing-cli/commit/d61751c)) - Add additional regex patterns for Tailwind CSS class detection in VS Code settings ([7a2793e](https://github.com/BayBreezy/ui-thing-cli/commit/7a2793e)) - Add dark mode support for select background color in CSS ([1f10c63](https://github.com/BayBreezy/ui-thing-cli/commit/1f10c63)) - Remove unnecessary VS Code extension and simplify regex patterns for Tailwind CSS ([b4651e3](https://github.com/BayBreezy/ui-thing-cli/commit/b4651e3)) ### 🩹 Fixes - Remove unnecessary eslint directive for uiConfig initialization ([af23eb3](https://github.com/BayBreezy/ui-thing-cli/commit/af23eb3)) - Update dts configuration to include compiler options for deprecation handling ([28b31da](https://github.com/BayBreezy/ui-thing-cli/commit/28b31da)) ### 🏡 Chore - Update dependencies and devDependencies in package.json ([af6d501](https://github.com/BayBreezy/ui-thing-cli/commit/af6d501)) - **release:** V0.2.8 ([980fa78](https://github.com/BayBreezy/ui-thing-cli/commit/980fa78)) - Update deps and switch over to bun for pm ([4d88abc](https://github.com/BayBreezy/ui-thing-cli/commit/4d88abc)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](https://github.com/BayBreezy)) ## v0.2.8 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.2.7...v0.2.8) ### 🚀 Enhancements - Enhance CSS styles with color-scheme support and scrollbar utility ([d61751c](https://github.com/BayBreezy/ui-thing-cli/commit/d61751c)) - Add additional regex patterns for Tailwind CSS class detection in VS Code settings ([7a2793e](https://github.com/BayBreezy/ui-thing-cli/commit/7a2793e)) ### 🏡 Chore - **release:** V0.2.7 ([59f052e](https://github.com/BayBreezy/ui-thing-cli/commit/59f052e)) - Update dependencies and devDependencies in package.json ([af6d501](https://github.com/BayBreezy/ui-thing-cli/commit/af6d501)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](https://github.com/BayBreezy)) ## v0.2.7 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.2.6...v0.2.7) ### 🚀 Enhancements - Update tailwindFunctions in Prettier configuration to include 'tw' ([273f00a](https://github.com/BayBreezy/ui-thing-cli/commit/273f00a)) - Update VS Code recommendations ([898dc3d](https://github.com/BayBreezy/ui-thing-cli/commit/898dc3d)) - Add docsPath property to Component type ([7eb5fb4](https://github.com/BayBreezy/ui-thing-cli/commit/7eb5fb4)) - Simplify DEFINE_SHORTCUT import statement in shortcuts.ts ([2cb48c7](https://github.com/BayBreezy/ui-thing-cli/commit/2cb48c7)) - Add unit tests for various utility functions and components ([9b9067a](https://github.com/BayBreezy/ui-thing-cli/commit/9b9067a)) - Enhance test configuration in vite.config.ts for improved coverage reporting ([051541f](https://github.com/BayBreezy/ui-thing-cli/commit/051541f)) - Update dependencies in package.json and package-lock.json for improved functionality ([4b5a43c](https://github.com/BayBreezy/ui-thing-cli/commit/4b5a43c)) - Enhance promptUserForComponents to support ProseComponent type ([aa77801](https://github.com/BayBreezy/ui-thing-cli/commit/aa77801)) - Add fetchProseComponents utility to retrieve prose components from UI Thing API ([78acc6a](https://github.com/BayBreezy/ui-thing-cli/commit/78acc6a)) - Add fetchBlocks utility to retrieve block components from UI Thing API ([8bffb9e](https://github.com/BayBreezy/ui-thing-cli/commit/8bffb9e)) - Add fetchBlockCategories utility to retrieve block categories from UI Thing API ([cb5bde0](https://github.com/BayBreezy/ui-thing-cli/commit/cb5bde0)) - Implement prose command to add prose components to the project ([1f5c532](https://github.com/BayBreezy/ui-thing-cli/commit/1f5c532)) - Implement block command to add UI Thing blocks with category filtering ([23aa9e4](https://github.com/BayBreezy/ui-thing-cli/commit/23aa9e4)) - Update types to include TemplateFile and enhance ProseComponent and BlockComponent definitions ([1563080](https://github.com/BayBreezy/ui-thing-cli/commit/1563080)) - Add block and prose commands to the CLI ([d35e3b7](https://github.com/BayBreezy/ui-thing-cli/commit/d35e3b7)) ### 🩹 Fixes - Update test mocking for CI compatibility ([9bc7a32](https://github.com/BayBreezy/ui-thing-cli/commit/9bc7a32)) ### 🏡 Chore - Update dependencies to latest versions ([f70d2d5](https://github.com/BayBreezy/ui-thing-cli/commit/f70d2d5)) - Remove unused devDependencies from package.json and package-lock.json ([ba2d7cf](https://github.com/BayBreezy/ui-thing-cli/commit/ba2d7cf)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](https://github.com/BayBreezy)) ## v0.2.6 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.2.5...v0.2.6) ### 🚀 Enhancements - Add issue templates for bug reports and feature requests ([906dabc](https://github.com/BayBreezy/ui-thing-cli/commit/906dabc)) - Enhance Prettier integration by prompting user for configuration and updating dependencies ([5d9f7b0](https://github.com/BayBreezy/ui-thing-cli/commit/5d9f7b0)) ### 📖 Documentation - Update README to clarify `init` command functionality ([2353699](https://github.com/BayBreezy/ui-thing-cli/commit/2353699)) - Add CONTRIBUTING.md to guide new contributors ([3cfd3cd](https://github.com/BayBreezy/ui-thing-cli/commit/3cfd3cd)) - Add SECURITY.md to outline security policy and reporting procedures ([1213eef](https://github.com/BayBreezy/ui-thing-cli/commit/1213eef)) ### 🏡 Chore - Update dependencies to latest versions ([fbb17d0](https://github.com/BayBreezy/ui-thing-cli/commit/fbb17d0)) - Update dependencies and devDependencies ([a6793dd](https://github.com/BayBreezy/ui-thing-cli/commit/a6793dd)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](https://github.com/BayBreezy)) ## v0.2.5 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.2.4...v0.2.5) ### 🚀 Enhancements - **theme:** Add theme name validation and improve theme selection process ([737acaf](https://github.com/BayBreezy/ui-thing-cli/commit/737acaf)) ### 🏡 Chore - **deps-dev:** Bump @types/node from 24.2.1 to 24.3.0 ([858469e](https://github.com/BayBreezy/ui-thing-cli/commit/858469e)) - **deps-dev:** Bump knip from 5.62.0 to 5.63.0 ([0409d0f](https://github.com/BayBreezy/ui-thing-cli/commit/0409d0f)) - **deps-dev:** Bump @ianvs/prettier-plugin-sort-imports ([1dc849d](https://github.com/BayBreezy/ui-thing-cli/commit/1dc849d)) - Update package.json to add linting scripts and ESLint configuration ([f836ee1](https://github.com/BayBreezy/ui-thing-cli/commit/f836ee1)) - Update ESLint configuration to disable no-explicit-any rule ([112a5dd](https://github.com/BayBreezy/ui-thing-cli/commit/112a5dd)) ### 🎨 Styles - **eslint:** Fix eslint errors ([3972b3d](https://github.com/BayBreezy/ui-thing-cli/commit/3972b3d)) ### ❤️ Contributors - Behon Baker ## v0.2.4 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.2.3...v0.2.4) ### 🩹 Fixes - **init:** Add classSuffix to colorMode storageKey configuration ([d9869a9](https://github.com/BayBreezy/ui-thing-cli/commit/d9869a9)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](https://github.com/BayBreezy)) ## v0.2.3 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.2.2...v0.2.3) ### 🩹 Fixes - **init:** Ensure css path is added to config only if not already present ([89b2aae](https://github.com/BayBreezy/ui-thing-cli/commit/89b2aae)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](https://github.com/BayBreezy)) ## v0.2.2 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.2.1...v0.2.2) ### 🩹 Fixes - **init:** Prevent css from being added to config more than once ([9723898](https://github.com/BayBreezy/ui-thing-cli/commit/9723898)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](https://github.com/BayBreezy)) ## v0.2.1 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.2.0...v0.2.1) ### 🏡 Chore - Make magicast a dependency instead of a devDep ([a62cdf4](https://github.com/BayBreezy/ui-thing-cli/commit/a62cdf4)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](https://github.com/BayBreezy)) ## v0.2.0 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.56...v0.2.0) ### 🚀 Enhancements - **tw-helper:** Add helper function for Tailwind CSS class suggestions ([229f84e](https://github.com/BayBreezy/ui-thing-cli/commit/229f84e)) - **vscode:** Add VS Code recommendations and settings configuration ([6ca724c](https://github.com/BayBreezy/ui-thing-cli/commit/6ca724c)) - **tailwind:** Add function to integrate Tailwind CSS Vite plugin into Nuxt config ([ca20e72](https://github.com/BayBreezy/ui-thing-cli/commit/ca20e72)) - **mergeJsonFile:** Add function to merge JSON data into a file without overwriting existing keys ([891a79a](https://github.com/BayBreezy/ui-thing-cli/commit/891a79a)) - **init:** Add CSS path to configuration for Tailwind CSS integration ([750bf7f](https://github.com/BayBreezy/ui-thing-cli/commit/750bf7f)) ### 🩹 Fixes - **detectNuxtVersion:** Return default version 4 instead of null on error ([023e5fa](https://github.com/BayBreezy/ui-thing-cli/commit/023e5fa)) - **init:** Add type property to imports for tailwind-variants ([f014cd9](https://github.com/BayBreezy/ui-thing-cli/commit/f014cd9)) ### 💅 Refactors - Update structure of `printFancyBoxMessage` allowing the file to be more testable & flexible ([5853619](https://github.com/BayBreezy/ui-thing-cli/commit/5853619)) - **init:** Update the init command ([45ff68d](https://github.com/BayBreezy/ui-thing-cli/commit/45ff68d)) - **prettier:** Enhance config merging logic and user prompts for existing .prettierrc ([05b360c](https://github.com/BayBreezy/ui-thing-cli/commit/05b360c)) - **installPackages:** Remove package.json check and streamline postinstall execution ([d3a3167](https://github.com/BayBreezy/ui-thing-cli/commit/d3a3167)) - **uiConfigPrompt:** Remove Nuxt version prompt and streamline configuration logic ([d1d37eb](https://github.com/BayBreezy/ui-thing-cli/commit/d1d37eb)) - **addCommand:** Refactor add command to improve component handling and configuration updates ([838a59f](https://github.com/BayBreezy/ui-thing-cli/commit/838a59f)) - **shortcuts:** Simplify shortcuts command and update descriptions ([f3b9487](https://github.com/BayBreezy/ui-thing-cli/commit/f3b9487)) - **theme:** Replace consola with kleur for improved error messaging ([d35f04b](https://github.com/BayBreezy/ui-thing-cli/commit/d35f04b)) - **prettier:** Convert PRETTIER_CONFIG from string to object for improved readability ([cd393bb](https://github.com/BayBreezy/ui-thing-cli/commit/cd393bb)) - **shortcuts:** Enhance shortcut handling with improved key mapping and event management ([c74938a](https://github.com/BayBreezy/ui-thing-cli/commit/c74938a)) - **css:** Update css themes to match theming in Tailwind v4 ([77cd9c3](https://github.com/BayBreezy/ui-thing-cli/commit/77cd9c3)) - **shortcuts:** Remove unused useShortcuts composable and update file writing logic ([04b13e6](https://github.com/BayBreezy/ui-thing-cli/commit/04b13e6)) - **compareUIConfig:** Remove `tailwindConfigLocation` and adjust missing properties check ([e697309](https://github.com/BayBreezy/ui-thing-cli/commit/e697309)) - **config:** Update import paths and streamline UI config handling ([34c5291](https://github.com/BayBreezy/ui-thing-cli/commit/34c5291)) - **constants:** Update UI configuration and dependencies for Nuxt 3 and 4 ([e140d92](https://github.com/BayBreezy/ui-thing-cli/commit/e140d92)) - **fetchComponents:** Enhance component fetching with spinner and environment variable support ([658656d](https://github.com/BayBreezy/ui-thing-cli/commit/658656d)) - **promptForComponents:** Fetch components dynamically for user selection ([69b36ad](https://github.com/BayBreezy/ui-thing-cli/commit/69b36ad)) - **runAddCommand:** Pass allComponents to promptUserForComponents for improved user selection ([6b10c36](https://github.com/BayBreezy/ui-thing-cli/commit/6b10c36)) - **tailwind:** Remove deprecated Tailwind CSS configuration file ([fed7a46](https://github.com/BayBreezy/ui-thing-cli/commit/fed7a46)) - **fetchComponents:** Reorder dotenv import for consistency ([20577b7](https://github.com/BayBreezy/ui-thing-cli/commit/20577b7)) - **promptUserForComponents:** Allow passing allComponents as an argument for flexibility ([051d4e6](https://github.com/BayBreezy/ui-thing-cli/commit/051d4e6)) - **types:** Enhance UIConfig and InitOptions types with detailed comments and structure ([fa83270](https://github.com/BayBreezy/ui-thing-cli/commit/fa83270)) - **config:** Remove unused getNuxtConfig function and make createConfigPaths private ([d2c0bbc](https://github.com/BayBreezy/ui-thing-cli/commit/d2c0bbc)) - Change exported functions to local scope for better encapsulation ([3437c0e](https://github.com/BayBreezy/ui-thing-cli/commit/3437c0e)) - **prompt:** Simplify onRender message in component selection prompt ([0119278](https://github.com/BayBreezy/ui-thing-cli/commit/0119278)) - **prompt:** Remove unnecessary onRender function from component selection prompt ([d4de748](https://github.com/BayBreezy/ui-thing-cli/commit/d4de748)) ### 📖 Documentation - **prettier:** Update description to clarify purpose of the command ([d4aa3cf](https://github.com/BayBreezy/ui-thing-cli/commit/d4aa3cf)) - Update cover image URL and refine project description in README ([41a545d](https://github.com/BayBreezy/ui-thing-cli/commit/41a545d)) ### 🏡 Chore - Bump deps ([fbec408](https://github.com/BayBreezy/ui-thing-cli/commit/fbec408)) - Add lint-staged ([d804d18](https://github.com/BayBreezy/ui-thing-cli/commit/d804d18)) - Update dependencies and modify TypeScript configuration ([8145761](https://github.com/BayBreezy/ui-thing-cli/commit/8145761)) - Update dependencies and scripts in package.json ([2045df5](https://github.com/BayBreezy/ui-thing-cli/commit/2045df5)) - Remove unused comp file ([8864f56](https://github.com/BayBreezy/ui-thing-cli/commit/8864f56)) - Update description and upgrade prettier-plugin-sort-imports to version 4.6.2 ([5939aa9](https://github.com/BayBreezy/ui-thing-cli/commit/5939aa9)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](https://github.com/BayBreezy)) ## v0.1.56 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.55...v0.1.56) ### 🚀 Enhancements - Add timeline component ([ee8c46a](https://github.com/BayBreezy/ui-thing-cli/commit/ee8c46a)) ### 🏡 Chore - Bump deps ([7a6c05d](https://github.com/BayBreezy/ui-thing-cli/commit/7a6c05d)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](https://github.com/BayBreezy)) ## v0.1.55 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.54...v0.1.55) ### 🏡 Chore - Add new components: description list & native checkbox ([175003e](https://github.com/BayBreezy/ui-thing-cli/commit/175003e)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.54 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.53...v0.1.54) ### 🏡 Chore - Add dependencies & dev deps to the loader component ([ca53edd](https://github.com/BayBreezy/ui-thing-cli/commit/ca53edd)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.53 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.52...v0.1.53) ### 🏡 Chore - **release:** V0.1.52 ([c873055](https://github.com/BayBreezy/ui-thing-cli/commit/c873055)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.52 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.51...v0.1.52) ### 🚀 Enhancements - Add loader component ([15b26cf](https://github.com/BayBreezy/ui-thing-cli/commit/15b26cf)) ### 🏡 Chore - Bump deps ([e11ee22](https://github.com/BayBreezy/ui-thing-cli/commit/e11ee22)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.51 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.50...v0.1.51) ### 🚀 Enhancements - Add form-builder component ([f33bfc7](https://github.com/BayBreezy/ui-thing-cli/commit/f33bfc7)) ### 🏡 Chore - **release:** V0.1.50 ([6cb4bd5](https://github.com/BayBreezy/ui-thing-cli/commit/6cb4bd5)) - Bump deps ([a80a6b9](https://github.com/BayBreezy/ui-thing-cli/commit/a80a6b9)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.50 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.49...v0.1.50) ### 🏡 Chore - Update datatables.net component ([1b3e478](https://github.com/BayBreezy/ui-thing-cli/commit/1b3e478)) - Bump deps ([9e87d39](https://github.com/BayBreezy/ui-thing-cli/commit/9e87d39)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.49 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.48...v0.1.49) ### 🏡 Chore - Bump deps ([aa0ef8b](https://github.com/BayBreezy/ui-thing-cli/commit/aa0ef8b)) - Update components ([9172393](https://github.com/BayBreezy/ui-thing-cli/commit/9172393)) - Bump deps ([198d193](https://github.com/BayBreezy/ui-thing-cli/commit/198d193)) ### ❤️ Contributors - Behon Baker ## v0.1.48 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.47...v0.1.48) ### 🚀 Enhancements - Add `pattern` & `maxlength` props to `input` and `textarea` components. ([b8ff095](https://github.com/BayBreezy/ui-thing-cli/commit/b8ff095)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.47 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.46...v0.1.47) ### 🏡 Chore - Update `pagination` & `breadcrumbs` components ([3d1c515](https://github.com/BayBreezy/ui-thing-cli/commit/3d1c515)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.46 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.45...v0.1.46) ### 🏡 Chore - Update button loading state ([cf8e3a9](https://github.com/BayBreezy/ui-thing-cli/commit/cf8e3a9)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.45 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.44...v0.1.45) ### 🚀 Enhancements - Ask for validator when a component needs it ([57981da](https://github.com/BayBreezy/ui-thing-cli/commit/57981da)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.44 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.43...v0.1.44) ### 🚀 Enhancements - Add `carousel` component ([ed82caf](https://github.com/BayBreezy/ui-thing-cli/commit/ed82caf)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.43 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.42...v0.1.43) ### 🏡 Chore - **release:** V0.1.42 ([8b2b5ae](https://github.com/BayBreezy/ui-thing-cli/commit/8b2b5ae)) - Update the `alert` component ([7c3b19e](https://github.com/BayBreezy/ui-thing-cli/commit/7c3b19e)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.42 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.41...v0.1.42) ### 🏡 Chore - Update slider styles to accomodate vertical sliders ([9d6bf2d](https://github.com/BayBreezy/ui-thing-cli/commit/9d6bf2d)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.41 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.40...v0.1.41) ### 💅 Refactors - Update component file ([7f9a763](https://github.com/BayBreezy/ui-thing-cli/commit/7f9a763)) ### 📖 Documentation - Add buymeecoffee link to readme ([ec42cd7](https://github.com/BayBreezy/ui-thing-cli/commit/ec42cd7)) ### 🏡 Chore - **release:** V0.1.40 ([3cdacad](https://github.com/BayBreezy/ui-thing-cli/commit/3cdacad)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.40 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.39...v0.1.40) ### 🏡 Chore - **release:** V0.1.39 ([e11329a](https://github.com/BayBreezy/ui-thing-cli/commit/e11329a)) - Update styles on dialog components ([38f199a](https://github.com/BayBreezy/ui-thing-cli/commit/38f199a)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.39 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.38...v0.1.39) ### 🏡 Chore - Added the drawer heade and footer components ([00ea23d](https://github.com/BayBreezy/ui-thing-cli/commit/00ea23d)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.38 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.37...v0.1.38) ### 🏡 Chore - Bump deps ([ac59a0c](https://github.com/BayBreezy/ui-thing-cli/commit/ac59a0c)) - Updated comps ([e8e1a46](https://github.com/BayBreezy/ui-thing-cli/commit/e8e1a46)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.37 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.36...v0.1.37) ### 🏡 Chore - **deps-dev:** Bump @vitest/coverage-v8 from 2.1.6 to 2.1.8 ([4707300](https://github.com/BayBreezy/ui-thing-cli/commit/4707300)) - Bump deps ([1359f5a](https://github.com/BayBreezy/ui-thing-cli/commit/1359f5a)) - Move some initial packages to dependencies list instead of devDeps ([676c0fa](https://github.com/BayBreezy/ui-thing-cli/commit/676c0fa)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.36 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.35...v0.1.36) ### 🚀 Enhancements - Add slider component from vueform ([8c192e8](https://github.com/BayBreezy/ui-thing-cli/commit/8c192e8)) ### 🏡 Chore - **deps-dev:** Bump typescript from 5.6.3 to 5.7.2 ([5220a36](https://github.com/BayBreezy/ui-thing-cli/commit/5220a36)) - **deps-dev:** Bump @types/node from 22.9.1 to 22.9.3 ([adc38a1](https://github.com/BayBreezy/ui-thing-cli/commit/adc38a1)) - **deps-dev:** Bump @types/node from 22.9.3 to 22.10.1 ([c045189](https://github.com/BayBreezy/ui-thing-cli/commit/c045189)) - **deps-dev:** Bump @vitest/coverage-v8 from 2.1.5 to 2.1.6 ([f775ac2](https://github.com/BayBreezy/ui-thing-cli/commit/f775ac2)) - **deps-dev:** Bump vitest from 2.1.5 to 2.1.6 ([c4dea4e](https://github.com/BayBreezy/ui-thing-cli/commit/c4dea4e)) - Bump deps ([0935284](https://github.com/BayBreezy/ui-thing-cli/commit/0935284)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.35 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.34...v0.1.35) ### 🏡 Chore - Update Provider for sidebar ([ad591f2](https://github.com/BayBreezy/ui-thing-cli/commit/ad591f2)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.34 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.33...v0.1.34) ### 🏡 Chore - Update sidebar components themeing ([b01c9d5](https://github.com/BayBreezy/ui-thing-cli/commit/b01c9d5)) - Add sidebar css ([3789dab](https://github.com/BayBreezy/ui-thing-cli/commit/3789dab)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.33 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.32...v0.1.33) ### 🚀 Enhancements - Added sidebar & placeholder components ([2fab9df](https://github.com/BayBreezy/ui-thing-cli/commit/2fab9df)) ### 🏡 Chore - Bump deps ([2cf4cfc](https://github.com/BayBreezy/ui-thing-cli/commit/2cf4cfc)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.32 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.31...v0.1.32) ### 🏡 Chore - **release:** V0.1.31 ([2f5b36f](https://github.com/BayBreezy/ui-thing-cli/commit/2f5b36f)) - Update kbd component ([66b58f7](https://github.com/BayBreezy/ui-thing-cli/commit/66b58f7)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.31 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.30...v0.1.31) ### 🚀 Enhancements - Update table styles ([f3a697e](https://github.com/BayBreezy/ui-thing-cli/commit/f3a697e)) ### 🏡 Chore - Bump deps ([9ffc32d](https://github.com/BayBreezy/ui-thing-cli/commit/9ffc32d)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.30 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.29...v0.1.30) ### 🚀 Enhancements - Update vee-input component ([302c4fd](https://github.com/BayBreezy/ui-thing-cli/commit/302c4fd)) ### 🏡 Chore - Bump deps ([a4140b2](https://github.com/BayBreezy/ui-thing-cli/commit/a4140b2)) - Add dependabot config ([fae5b34](https://github.com/BayBreezy/ui-thing-cli/commit/fae5b34)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.29 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.28...v0.1.29) ### 🚀 Enhancements - **css:** Update font config for css file/themes ([a1c5bcc](https://github.com/BayBreezy/ui-thing-cli/commit/a1c5bcc)) - **shortcusts:** Update templates for shortcuts composable ([f527c26](https://github.com/BayBreezy/ui-thing-cli/commit/f527c26)) ### 🏡 Chore - **release:** V0.1.28 ([b870037](https://github.com/BayBreezy/ui-thing-cli/commit/b870037)) - Bump deps ([b74b527](https://github.com/BayBreezy/ui-thing-cli/commit/b74b527)) - **config:** Add `nuxtVersion` to initial config ([843eff0](https://github.com/BayBreezy/ui-thing-cli/commit/843eff0)) - **tsconfig:** Add `resolveJsonModule` to tsconfig ([ed955f5](https://github.com/BayBreezy/ui-thing-cli/commit/ed955f5)) - **components:** Update components list ([25ba2bf](https://github.com/BayBreezy/ui-thing-cli/commit/25ba2bf)) - Import cli version from `package.json` ([401f902](https://github.com/BayBreezy/ui-thing-cli/commit/401f902)) - Update project types ([e5ae1f8](https://github.com/BayBreezy/ui-thing-cli/commit/e5ae1f8)) - **add command:** Remove unused imports & update `pdfMake` version ([8364dba](https://github.com/BayBreezy/ui-thing-cli/commit/8364dba)) - **init command:** Allo user to enter their nuxt version when initializing ([76624ad](https://github.com/BayBreezy/ui-thing-cli/commit/76624ad)) - **init command:** Allo user to enter their nuxt version when initializing ([564a910](https://github.com/BayBreezy/ui-thing-cli/commit/564a910)) - **prettier command:** Import package manager options from constant file ([6da2b44](https://github.com/BayBreezy/ui-thing-cli/commit/6da2b44)) - **shortcuts command:** Import package manager options from constant file ([aa7f00b](https://github.com/BayBreezy/ui-thing-cli/commit/aa7f00b)) - **tailwind template:** Update default tailwind configuration ([b81c493](https://github.com/BayBreezy/ui-thing-cli/commit/b81c493)) - **config files:** Adjust how paths are created and export package array constant ([e7ea1e2](https://github.com/BayBreezy/ui-thing-cli/commit/e7ea1e2)) - **config files:** Adjust config type ([3beb3ad](https://github.com/BayBreezy/ui-thing-cli/commit/3beb3ad)) - **config files:** Add default nuxt 4 configuration ([050d798](https://github.com/BayBreezy/ui-thing-cli/commit/050d798)) - **config files:** Export `promptForNuxtVersion` function ([67a1b5b](https://github.com/BayBreezy/ui-thing-cli/commit/67a1b5b)) - Bump node types dep ([5ded5d2](https://github.com/BayBreezy/ui-thing-cli/commit/5ded5d2)) ### ✅ Tests - Update config test. added the `nuxtVersion` property ([557b181](https://github.com/BayBreezy/ui-thing-cli/commit/557b181)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.28 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.27...v0.1.28) ### 🏡 Chore - Add updated dialog content close button styles ([3583a9d](https://github.com/BayBreezy/ui-thing-cli/commit/3583a9d)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.27 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.26...v0.1.27) ### 🏡 Chore - Bump deps & pass slots from some radix components ([5caf188](https://github.com/BayBreezy/ui-thing-cli/commit/5caf188)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.26 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.25...v0.1.26) ### 🚀 Enhancements - Add `chart` component ([e153dcf](https://github.com/BayBreezy/ui-thing-cli/commit/e153dcf)) ### 🏡 Chore - Bump deps ([7bba4d8](https://github.com/BayBreezy/ui-thing-cli/commit/7bba4d8)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.25 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.24...v0.1.25) ### 🏡 Chore - Bump deps ([8d24f6c](https://github.com/BayBreezy/ui-thing-cli/commit/8d24f6c)) - Update input code ([f36e0cc](https://github.com/BayBreezy/ui-thing-cli/commit/f36e0cc)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.24 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.23...v0.1.24) ### 🏡 Chore - Bump deps ([1ba7fe7](https://github.com/BayBreezy/ui-thing-cli/commit/1ba7fe7)) - Use new version of nuxt icon ([507db3d](https://github.com/BayBreezy/ui-thing-cli/commit/507db3d)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.23 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.22...v0.1.23) ### 🏡 Chore - Bump deps ([f964b0a](https://github.com/BayBreezy/ui-thing-cli/commit/f964b0a)) - Move `reactiveOmit` from out of the template and add it to the script. ([3b8667b](https://github.com/BayBreezy/ui-thing-cli/commit/3b8667b)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.22 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.21...v0.1.22) ### 🚀 Enhancements - Add `Editable` component ([14d3446](https://github.com/BayBreezy/ui-thing-cli/commit/14d3446)) ### 🏡 Chore - Bump deps ([93a2392](https://github.com/BayBreezy/ui-thing-cli/commit/93a2392)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.21 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.20...v0.1.21) ### 🚀 Enhancements - Add stepper component ([00d02fa](https://github.com/BayBreezy/ui-thing-cli/commit/00d02fa)) ### 🏡 Chore - Update deps ([0f0f58b](https://github.com/BayBreezy/ui-thing-cli/commit/0f0f58b)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.20 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.19...v0.1.20) ### 🚀 Enhancements - Add tree component ([5cd5671](https://github.com/BayBreezy/ui-thing-cli/commit/5cd5671)) ### 🏡 Chore - Update deps ([c24ec88](https://github.com/BayBreezy/ui-thing-cli/commit/c24ec88)) - Add plugins location to the list of questions ([722d589](https://github.com/BayBreezy/ui-thing-cli/commit/722d589)) - Use plugin location when adding components ([7da57de](https://github.com/BayBreezy/ui-thing-cli/commit/7da57de)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.19 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.18...v0.1.19) ### 🚀 Enhancements - **Number Field:** Add number field component ([30745ec](https://github.com/BayBreezy/ui-thing-cli/commit/30745ec)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.18 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.17...v0.1.18) ### 🏡 Chore - Bump deps ([e453f74](https://github.com/BayBreezy/ui-thing-cli/commit/e453f74)) - **components:** Add new chip component and update other existing components ([7f4c4ef](https://github.com/BayBreezy/ui-thing-cli/commit/7f4c4ef)) - **init deps:** Add tailwindcss/forms to the list of initial dependencies ([a28f7da](https://github.com/BayBreezy/ui-thing-cli/commit/a28f7da)) - **tailwind config:** Add tailwindforms plugin to config ([7e3b706](https://github.com/BayBreezy/ui-thing-cli/commit/7e3b706)) - **nuxt config:** Remove shim = false from nuxt config ([2423a4e](https://github.com/BayBreezy/ui-thing-cli/commit/2423a4e)) - Bump deps ([56a4b29](https://github.com/BayBreezy/ui-thing-cli/commit/56a4b29)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.17 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.16...v0.1.17) ### 🏡 Chore - Bump deps ([56e6356](https://github.com/BayBreezy/ui-thing-cli/commit/56e6356)) - Bump deps ([0b34a64](https://github.com/BayBreezy/ui-thing-cli/commit/0b34a64)) ### ❤️ Contributors - Behon Baker ([@BayBreezy](http://github.com/BayBreezy)) ## v0.1.16 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.15...v0.1.16) ### 🚀 Enhancements - **component:** Add Listbox component ([46dc2b9](https://github.com/BayBreezy/ui-thing-cli/commit/46dc2b9)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.1.15 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.14...v0.1.15) ### 🏡 Chore - **release:** V0.1.14 ([16a8485](https://github.com/BayBreezy/ui-thing-cli/commit/16a8485)) - Update autocomplete component ([27f35dc](https://github.com/BayBreezy/ui-thing-cli/commit/27f35dc)) - Install packages ([17e6d8a](https://github.com/BayBreezy/ui-thing-cli/commit/17e6d8a)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.1.14 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.13...v0.1.14) ### 🚀 Enhancements - **fancy icon:** Add FancyIcon component ([e97adb0](https://github.com/BayBreezy/ui-thing-cli/commit/e97adb0)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.1.13 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.12...v0.1.13) ### 🏡 Chore - Bump deps ([5418dff](https://github.com/BayBreezy/ui-thing-cli/commit/5418dff)) - **components:** Update comps ([f7e1643](https://github.com/BayBreezy/ui-thing-cli/commit/f7e1643)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.1.12 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.11...v0.1.12) ### 🚀 Enhancements - Add toggle-group component ([c887563](https://github.com/BayBreezy/ui-thing-cli/commit/c887563)) ### 🏡 Chore - **release:** V0.1.11 ([df916e5](https://github.com/BayBreezy/ui-thing-cli/commit/df916e5)) - Update deps ([75f6473](https://github.com/BayBreezy/ui-thing-cli/commit/75f6473)) ### ❤️ Contributors - BayBreezy <behon.baker@yahoo.com> - Behon Baker <behon.baker@yahoo.com> ## v0.1.11 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.10...v0.1.11) ### 🏡 Chore - Update component array ([7e94f02](https://github.com/BayBreezy/ui-thing-cli/commit/7e94f02)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.1.10 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.9...v0.1.10) ### 🚀 Enhancements - Add currency-input component ([bc0f75b](https://github.com/BayBreezy/ui-thing-cli/commit/bc0f75b)) ### 🏡 Chore - Bump deps ([6e6dcf6](https://github.com/BayBreezy/ui-thing-cli/commit/6e6dcf6)) ### ❤️ Contributors - BayBreezy <behon.baker@yahoo.com> ## v0.1.9 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.8...v0.1.9) ### 🏡 Chore - **form-elements:** Use nuxt's `useId` composable instead of the one from radix-vue ([17a952e](https://github.com/BayBreezy/ui-thing-cli/commit/17a952e)) - Bump deps ([557e58c](https://github.com/BayBreezy/ui-thing-cli/commit/557e58c)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.1.8 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.7...v0.1.8) ### 🏡 Chore - Bump deps ([22f3b36](https://github.com/BayBreezy/ui-thing-cli/commit/22f3b36)) - Add slot for navigationmenu viewport & icon ([339656e](https://github.com/BayBreezy/ui-thing-cli/commit/339656e)) ### 🤖 CI - **test:** Update test github action ([6345fc6](https://github.com/BayBreezy/ui-thing-cli/commit/6345fc6)) - **build:** Update main github action ([9353995](https://github.com/BayBreezy/ui-thing-cli/commit/9353995)) ### ❤️ Contributors - BayBreezy <behon.baker@yahoo.com> - Behon Baker <behon.baker@yahoo.com> ## v0.1.7 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.6...v0.1.7) ### 🏡 Chore - Bump deps ([24db3af](https://github.com/BayBreezy/ui-thing-cli/commit/24db3af)) - **add:** Remove overrides addition logic ([86dcae6](https://github.com/BayBreezy/ui-thing-cli/commit/86dcae6)) - **datatables:** Update datatables comp ([ce0b4c4](https://github.com/BayBreezy/ui-thing-cli/commit/ce0b4c4)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.1.6 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.5...v0.1.6) ### 🚀 Enhancements - Update to latest version of datatables ([f973a89](https://github.com/BayBreezy/ui-thing-cli/commit/f973a89)) ### 🏡 Chore - Bump deps ([a2be074](https://github.com/BayBreezy/ui-thing-cli/commit/a2be074)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.1.5 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.4...v0.1.5) ### 🩹 Fixes - Dead loop caused by dropfile's change event ([b1e1ce1](https://github.com/BayBreezy/ui-thing-cli/commit/b1e1ce1)) ### 🏡 Chore - Bump deps ([d7a8e76](https://github.com/BayBreezy/ui-thing-cli/commit/d7a8e76)) ### ❤️ Contributors - BayBreezy <behon.baker@yahoo.com> ## v0.1.4 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.3...v0.1.4) ### 🏡 Chore - Remove datatable vue 3 version restriction ([eb54575](https://github.com/BayBreezy/ui-thing-cli/commit/eb54575)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.1.3 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.2...v0.1.3) ### 🚀 Enhancements - Add Date Field and Splitter components ([7985f19](https://github.com/BayBreezy/ui-thing-cli/commit/7985f19)) ### 🏡 Chore - Update deps ([1306af9](https://github.com/BayBreezy/ui-thing-cli/commit/1306af9)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.1.2 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.1...v0.1.2) ### 🏡 Chore - Update drawer component ([90e2518](https://github.com/BayBreezy/ui-thing-cli/commit/90e2518)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.1.1 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.30...v0.1.1) ### 🚀 Enhancements - Add splitpanes ([417ac8c](https://github.com/BayBreezy/ui-thing-cli/commit/417ac8c)) ### 🏡 Chore - Update deps ([f5a735e](https://github.com/BayBreezy/ui-thing-cli/commit/f5a735e)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.0.30 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.29...v0.0.30) ### 🚀 Enhancements - **init-command:** Add --yes option to skip questions and just use defaults values ([a030aa0](https://github.com/BayBreezy/ui-thing-cli/commit/a030aa0)) - **add-command:** Add -a `all` option to the add command. This will add all components to the project and install the deps ([83868ab](https://github.com/BayBreezy/ui-thing-cli/commit/83868ab)) ### ❤️ Contributors - BayBreezy <behon.baker@yahoo.com> ## v0.0.29 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.28...v0.0.29) ### 🚀 Enhancements - Add drawer component ([1c07ebd](https://github.com/BayBreezy/ui-thing-cli/commit/1c07ebd)) ### ❤️ Contributors - BayBreezy <behon.baker@yahoo.com> ## v0.0.28 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.27...v0.0.28) ### 🩹 Fixes - Update import ([ef37e4d](https://github.com/BayBreezy/ui-thing-cli/commit/ef37e4d)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.0.27 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.26...v0.0.27) ### 🩹 Fixes - **dattables:** Pin dt versions and add overrides to package.json file ([ccc295b](https://github.com/BayBreezy/ui-thing-cli/commit/ccc295b)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.0.26 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.25...v0.0.26) ### 🩹 Fixes - **multiselect:** Change the way css is imported ([c9c37a4](https://github.com/BayBreezy/ui-thing-cli/commit/c9c37a4)) ### 🏡 Chore - Update deps ([e1d6110](https://github.com/BayBreezy/ui-thing-cli/commit/e1d6110)) ### ❤️ Contributors - BayBreezy <behon.baker@yahoo.com> ## v0.0.25 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.24...v0.0.25) ### 🩹 Fixes - Update logic that determines if the deps should be installed ([ada954a](https://github.com/BayBreezy/ui-thing-cli/commit/ada954a)) ### ❤️ Contributors - BayBreezy <behon.baker@yahoo.com> ## v0.0.24 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.23...v0.0.24) ### 🩹 Fixes - Check for postinstall script before running it ([c9c5115](https://github.com/BayBreezy/ui-thing-cli/commit/c9c5115)) ### 🏡 Chore - Update deps ([5bf3eb2](https://github.com/BayBreezy/ui-thing-cli/commit/5bf3eb2)) - Update add command ([388bcb9](https://github.com/BayBreezy/ui-thing-cli/commit/388bcb9)) ### 🎨 Styles - Format codebase ([b95de27](https://github.com/BayBreezy/ui-thing-cli/commit/b95de27)) ### ❤️ Contributors - BayBreezy <behon.baker@yahoo.com> ## v0.0.23 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.22...v0.0.23) ### 🏡 Chore - Update deps ([113aee9](https://github.com/BayBreezy/ui-thing-cli/commit/113aee9)) - **add-command:** Update command to accomodate components with no deps or dev deps ([c856921](https://github.com/BayBreezy/ui-thing-cli/commit/c856921)) ### ❤️ Contributors - BayBreezy <behon.baker@yahoo.com> ## v0.0.22 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.21...v0.0.22) ### 🏡 Chore - Add colvis styles to datatable.net ([82995b3](https://github.com/BayBreezy/ui-thing-cli/commit/82995b3)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.0.21 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.20...v0.0.21) ### 🏡 Chore - Update deps & components ([ce7977d](https://github.com/BayBreezy/ui-thing-cli/commit/ce7977d)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.0.20 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.19...v0.0.20) ### 🏡 Chore - **components:** Add new components - navbar, container & divider ([fb970d5](https://github.com/BayBreezy/ui-thing-cli/commit/fb970d5)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.0.19 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.18...v0.0.19) ### 🏡 Chore - **components:** Update comp style for toast ([d78d6a0](https://github.com/BayBreezy/ui-thing-cli/commit/d78d6a0)) - Update deps ([62fa5ff](https://github.com/BayBreezy/ui-thing-cli/commit/62fa5ff)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.0.18 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.17...v0.0.18) ### 🏡 Chore - Update default component folder location ([1268f24](https://github.com/BayBreezy/ui-thing-cli/commit/1268f24)) ### ❤️ Contributors - BayBreezy <behon.baker@yahoo.com> ## v0.0.17 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.16...v0.0.17) ### 🏡 Chore - **prefix:** Update component prefix. Moved from UI to Ui ([e515ef7](https://github.com/BayBreezy/ui-thing-cli/commit/e515ef7)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.0.16 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.15...v0.0.16) ### 🚀 Enhancements - **pin-input:** Replace OTP with pin input ([7287b6f](https://github.com/BayBreezy/ui-thing-cli/commit/7287b6f)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.0.15 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.14...v0.0.15) ### 🚀 Enhancements - **components:** Add new components ([deed365](https://github.com/BayBreezy/ui-thing-cli/commit/deed365)) ### 🏡 Chore - **dependencies:** Update deps ([1ea8fb6](https://github.com/BayBreezy/ui-thing-cli/commit/1ea8fb6)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.0.14 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.13...v0.0.14) ### 🏡 Chore - Add vee-otp component to the updated list ([34f6791](https://github.com/BayBreezy/ui-thing-cli/commit/34f6791)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.0.13 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.12...v0.0.13) ### 🏡 Chore - Make call to api for compoinents again ([fbd4a78](https://github.com/BayBreezy/ui-thing-cli/commit/fbd4a78)) - Use local component file again ([eebf8cd](https://github.com/BayBreezy/ui-thing-cli/commit/eebf8cd)) ### ❤️ Contributors - Behon Baker <behon.baker@yahoo.com> ## v0.0.12 [compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.11...v0.0.12) ### 🏡 Chore - **add:** Revert to adding local components file. API call was too slow ([f77db79](https://github.com/BayBreezy/ui-thing-cli/commit/f77db79)) - Remove unused import ([be11d5d](https://github.