@hardimpactdev/craft-ui 0.0.16 → 0.0.22
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 +6 -5
- package/dist/craft-ui.css +1 -1
- package/dist/craft-ui.js +39220 -20421
- package/dist/index.d.ts +2 -0
- package/dist/src/components/ai/index.d.ts +1 -0
- package/dist/src/components/ai/prompt-input/PromptInput.vue.d.ts +69 -0
- package/dist/src/components/ai/prompt-input/PromptInputActionAddAttachments.vue.d.ts +9 -0
- package/dist/src/components/ai/prompt-input/PromptInputActionMenu.vue.d.ts +17 -0
- package/dist/src/components/ai/prompt-input/PromptInputActionMenuContent.vue.d.ts +21 -0
- package/dist/src/components/ai/prompt-input/PromptInputActionMenuItem.vue.d.ts +25 -0
- package/dist/src/components/ai/prompt-input/PromptInputActionMenuTrigger.vue.d.ts +21 -0
- package/dist/src/components/ai/prompt-input/PromptInputAddAttachment.vue.d.ts +30 -0
- package/dist/src/components/ai/prompt-input/PromptInputAttachments.vue.d.ts +6 -0
- package/dist/src/components/ai/prompt-input/PromptInputButton.vue.d.ts +27 -0
- package/dist/src/components/ai/prompt-input/PromptInputFooter.vue.d.ts +21 -0
- package/dist/src/components/ai/prompt-input/PromptInputHeader.vue.d.ts +21 -0
- package/dist/src/components/ai/prompt-input/PromptInputSelect.vue.d.ts +27 -0
- package/dist/src/components/ai/prompt-input/PromptInputSelectContent.vue.d.ts +21 -0
- package/dist/src/components/ai/prompt-input/PromptInputSelectItem.vue.d.ts +22 -0
- package/dist/src/components/ai/prompt-input/PromptInputSelectTrigger.vue.d.ts +21 -0
- package/dist/src/components/ai/prompt-input/PromptInputSubmit.vue.d.ts +33 -0
- package/dist/src/components/ai/prompt-input/PromptInputTextarea.vue.d.ts +10 -0
- package/dist/src/components/ai/prompt-input/PromptInputTools.vue.d.ts +21 -0
- package/dist/src/components/ai/prompt-input/index.d.ts +21 -0
- package/dist/src/components/ai/prompt-input/types.d.ts +27 -0
- package/dist/src/components/ai/prompt-input/usePromptInput.d.ts +5 -0
- package/dist/src/components/editor/Editor.vue.d.ts +20 -0
- package/dist/src/components/editor/EditorBubbleMenu.vue.d.ts +8 -0
- package/dist/src/components/editor/EditorToolbar.vue.d.ts +8 -0
- package/dist/src/components/editor/__tests__/Editor.test.d.ts +1 -0
- package/dist/src/components/editor/index.d.ts +3 -0
- package/dist/src/components/input-group/InputGroupTextarea.vue.d.ts +1 -1
- package/dist/src/components/textarea/Textarea.vue.d.ts +1 -1
- package/dist/vite/server.js +19 -2
- package/dist/vite/ts/server.ts +20 -2
- 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
|
|
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
|
-
##
|
|
245
|
+
## Component Library
|
|
247
246
|
|
|
248
|
-
The library
|
|
249
|
-
- `Button`, `Input`, `Checkbox`, `Select`, `Textarea
|
|
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
|
|