@hardimpactdev/craft-ui 0.0.17 → 0.0.23

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.
Files changed (35) hide show
  1. package/README.md +6 -5
  2. package/dist/craft-ui.css +1 -1
  3. package/dist/craft-ui.js +39330 -20498
  4. package/dist/index.d.ts +4 -1
  5. package/dist/src/components/PlaceholderPattern.vue.d.ts +2 -0
  6. package/dist/src/components/ai/index.d.ts +1 -0
  7. package/dist/src/components/ai/prompt-input/PromptInput.vue.d.ts +69 -0
  8. package/dist/src/components/ai/prompt-input/PromptInputActionAddAttachments.vue.d.ts +9 -0
  9. package/dist/src/components/ai/prompt-input/PromptInputActionMenu.vue.d.ts +17 -0
  10. package/dist/src/components/ai/prompt-input/PromptInputActionMenuContent.vue.d.ts +21 -0
  11. package/dist/src/components/ai/prompt-input/PromptInputActionMenuItem.vue.d.ts +25 -0
  12. package/dist/src/components/ai/prompt-input/PromptInputActionMenuTrigger.vue.d.ts +21 -0
  13. package/dist/src/components/ai/prompt-input/PromptInputAddAttachment.vue.d.ts +30 -0
  14. package/dist/src/components/ai/prompt-input/PromptInputAttachments.vue.d.ts +6 -0
  15. package/dist/src/components/ai/prompt-input/PromptInputButton.vue.d.ts +27 -0
  16. package/dist/src/components/ai/prompt-input/PromptInputFooter.vue.d.ts +21 -0
  17. package/dist/src/components/ai/prompt-input/PromptInputHeader.vue.d.ts +21 -0
  18. package/dist/src/components/ai/prompt-input/PromptInputSelect.vue.d.ts +27 -0
  19. package/dist/src/components/ai/prompt-input/PromptInputSelectContent.vue.d.ts +21 -0
  20. package/dist/src/components/ai/prompt-input/PromptInputSelectItem.vue.d.ts +22 -0
  21. package/dist/src/components/ai/prompt-input/PromptInputSelectTrigger.vue.d.ts +21 -0
  22. package/dist/src/components/ai/prompt-input/PromptInputSubmit.vue.d.ts +33 -0
  23. package/dist/src/components/ai/prompt-input/PromptInputTextarea.vue.d.ts +10 -0
  24. package/dist/src/components/ai/prompt-input/PromptInputTools.vue.d.ts +21 -0
  25. package/dist/src/components/ai/prompt-input/index.d.ts +21 -0
  26. package/dist/src/components/ai/prompt-input/types.d.ts +27 -0
  27. package/dist/src/components/ai/prompt-input/usePromptInput.d.ts +5 -0
  28. package/dist/src/components/editor/Editor.vue.d.ts +20 -0
  29. package/dist/src/components/editor/EditorBubbleMenu.vue.d.ts +8 -0
  30. package/dist/src/components/editor/EditorToolbar.vue.d.ts +8 -0
  31. package/dist/src/components/editor/__tests__/Editor.test.d.ts +1 -0
  32. package/dist/src/components/editor/index.d.ts +3 -0
  33. package/dist/src/components/input-group/InputGroupTextarea.vue.d.ts +1 -1
  34. package/dist/src/components/textarea/Textarea.vue.d.ts +1 -1
  35. package/package.json +12 -4
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Craft UI
2
2
 
3
- A Vue 3 component library for building clean, calm user interfaces. Built on top of [Nuxt UI](https://ui.nuxt.com) with additional layout, navigation, and data visualization components.
3
+ A Vue 3 component library for building clean, calm user interfaces. Built with [Reka UI](https://reka-ui.com) primitives and shadcn-vue styling patterns, with additional layout, navigation, and data visualization components.
4
4
 
5
5
  ## Features
6
6
 
@@ -39,7 +39,6 @@ export default defineCraftConfig({
39
39
 
40
40
  This includes:
41
41
  - Laravel Vite plugin
42
- - Nuxt UI (components without U prefix)
43
42
  - TailwindCSS v4
44
43
  - Vue dev tools
45
44
  - i18n support
@@ -243,10 +242,12 @@ function showToast() {
243
242
  - `__` - Translation helper (from laravel-vue-i18n)
244
243
  - `can` - Permission check utility
245
244
 
246
- ## Nuxt UI Re-exports
245
+ ## Component Library
247
246
 
248
- The library re-exports commonly used Nuxt UI components:
249
- - `Button`, `Input`, `Checkbox`, `Select`, `Textarea`, `FormField`
247
+ The library provides shadcn-vue style components built on Reka UI primitives:
248
+ - `Button`, `Input`, `Checkbox`, `Select`, `Textarea`
249
+ - Layout components: `AppShell`, `AppSidebar`, `NavMain`, etc.
250
+ - Advanced components: `Kanban`, `Command`, `Chart`
250
251
 
251
252
  ## Development
252
253