@midnight-owl/ui 1.0.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/LICENSE +21 -0
- package/README.md +68 -0
- package/dist/components/buttons/Button.vue.d.ts +44 -0
- package/dist/components/buttons/ButtonGroup.vue.d.ts +19 -0
- package/dist/components/data-display/Badge.vue.d.ts +34 -0
- package/dist/components/data-display/BubbleChat.vue.d.ts +52 -0
- package/dist/components/data-display/Image.vue.d.ts +56 -0
- package/dist/components/data-display/Pagination.vue.d.ts +60 -0
- package/dist/components/data-display/ProgressBar.vue.d.ts +34 -0
- package/dist/components/data-display/SkeletonLoader.vue.d.ts +14 -0
- package/dist/components/data-display/Table.vue.d.ts +182 -0
- package/dist/components/data-display/calendar/Calendar.vue.d.ts +116 -0
- package/dist/components/data-display/calendar/CalendarAgendaView.vue.d.ts +31 -0
- package/dist/components/data-display/calendar/CalendarEventDetails.vue.d.ts +23 -0
- package/dist/components/data-display/calendar/CalendarEventPill.vue.d.ts +39 -0
- package/dist/components/data-display/calendar/CalendarEventPopover.vue.d.ts +68 -0
- package/dist/components/data-display/calendar/CalendarMonthView.vue.d.ts +54 -0
- package/dist/components/data-display/calendar/CalendarTimeGridView.vue.d.ts +47 -0
- package/dist/components/data-display/calendar/CalendarYearView.vue.d.ts +17 -0
- package/dist/components/data-display/calendar/layout.d.ts +39 -0
- package/dist/components/data-display/calendar/providers/google.d.ts +16 -0
- package/dist/components/data-display/calendar/providers/ics.d.ts +23 -0
- package/dist/components/data-display/calendar/recurrence.d.ts +12 -0
- package/dist/components/data-display/calendar/types.d.ts +154 -0
- package/dist/components/data-display/calendar/tz.d.ts +17 -0
- package/dist/components/data-display/calendar/useCalendar.d.ts +75 -0
- package/dist/components/form-element/Autocomplete.vue.d.ts +78 -0
- package/dist/components/form-element/Checkbox.vue.d.ts +47 -0
- package/dist/components/form-element/DatePicker.vue.d.ts +75 -0
- package/dist/components/form-element/FileUpload.vue.d.ts +125 -0
- package/dist/components/form-element/InputGroup.vue.d.ts +26 -0
- package/dist/components/form-element/InputMask.vue.d.ts +43 -0
- package/dist/components/form-element/InputNumber.vue.d.ts +50 -0
- package/dist/components/form-element/InputOtp.vue.d.ts +44 -0
- package/dist/components/form-element/InputPassword.vue.d.ts +44 -0
- package/dist/components/form-element/InputText.vue.d.ts +42 -0
- package/dist/components/form-element/Radio.vue.d.ts +42 -0
- package/dist/components/form-element/TextEditor.vue.d.ts +44 -0
- package/dist/components/form-element/Textarea.vue.d.ts +46 -0
- package/dist/components/form-element/Toggle.vue.d.ts +25 -0
- package/dist/components/form-element/select/Select.vue.d.ts +168 -0
- package/dist/components/form-element/select/SelectOption.vue.d.ts +23 -0
- package/dist/components/form-element/text-editor-toolbar.d.ts +5 -0
- package/dist/components/panel/Breadcrumb.vue.d.ts +50 -0
- package/dist/components/panel/Card.vue.d.ts +28 -0
- package/dist/components/panel/Divider.vue.d.ts +28 -0
- package/dist/components/panel/DropDown.vue.d.ts +26 -0
- package/dist/components/panel/Modal.vue.d.ts +80 -0
- package/dist/components/panel/Popover.vue.d.ts +68 -0
- package/dist/components/panel/ScrollPanel.vue.d.ts +26 -0
- package/dist/components/panel/Stepper.vue.d.ts +179 -0
- package/dist/components/panel/Tabs.vue.d.ts +31 -0
- package/dist/components/panel/Toolbar.vue.d.ts +30 -0
- package/dist/components/panel/accordion/Accordion.vue.d.ts +31 -0
- package/dist/components/panel/accordion/AccordionPanel.vue.d.ts +35 -0
- package/dist/components/panel/toast/ToastErrorNode.vue.d.ts +10 -0
- package/dist/components/panel/toast/ToastItem.vue.d.ts +14 -0
- package/dist/components/panel/toast/ToastProvider.vue.d.ts +3 -0
- package/dist/components/panel/toast/errorTree.d.ts +12 -0
- package/dist/components/panel/toast/useToast.d.ts +164 -0
- package/dist/index.d.ts +60 -0
- package/dist/plugins/init-icons.d.ts +1 -0
- package/dist/plugins/init-theme.d.ts +4 -0
- package/dist/theme/presets.d.ts +75 -0
- package/dist/theme/remote.d.ts +2 -0
- package/dist/ui.css +3 -0
- package/dist/ui.es.js +29640 -0
- package/dist/ui.umd.js +234 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@midnight-owl/ui",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Free, MIT-licensed Vue 3 component library with Tailwind v4 theming, an auto-mounting toast system, and accessible, fully-typed components.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"vue",
|
|
7
|
+
"vue3",
|
|
8
|
+
"vue-components",
|
|
9
|
+
"component-library",
|
|
10
|
+
"ui-library",
|
|
11
|
+
"tailwindcss",
|
|
12
|
+
"tailwind",
|
|
13
|
+
"design-system",
|
|
14
|
+
"typescript"
|
|
15
|
+
],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"author": {
|
|
18
|
+
"name": "Chrisjelo B. Vega",
|
|
19
|
+
"email": "support@midnightowl.dev",
|
|
20
|
+
"url": "https://linkedin.com/in/chrisjelo-vega-a8a0a5384"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://midnightowl.dev",
|
|
23
|
+
"bugs": {
|
|
24
|
+
"email": "support@midnightowl.dev"
|
|
25
|
+
},
|
|
26
|
+
"type": "module",
|
|
27
|
+
"main": "./dist/ui.umd.js",
|
|
28
|
+
"module": "./dist/ui.es.js",
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"import": "./dist/ui.es.js",
|
|
34
|
+
"require": "./dist/ui.umd.js"
|
|
35
|
+
},
|
|
36
|
+
"./style.css": "./dist/ui.css"
|
|
37
|
+
},
|
|
38
|
+
"sideEffects": [
|
|
39
|
+
"**/*.css"
|
|
40
|
+
],
|
|
41
|
+
"files": [
|
|
42
|
+
"dist"
|
|
43
|
+
],
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public"
|
|
46
|
+
},
|
|
47
|
+
"scripts": {
|
|
48
|
+
"build": "vite build && vue-tsc --emitDeclarationOnly",
|
|
49
|
+
"dev": "vite build --watch",
|
|
50
|
+
"test": "vitest",
|
|
51
|
+
"test:run": "vitest run",
|
|
52
|
+
"test:scaffold": "node scripts/generate-test-stubs.mjs",
|
|
53
|
+
"test:scaffold:verify": "node scripts/verify-and-clean-stubs.mjs"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@floating-ui/vue": "^1.1.11",
|
|
57
|
+
"@iconify/vue": "^5.0.1",
|
|
58
|
+
"@tiptap/extension-highlight": "^3.27.3",
|
|
59
|
+
"@tiptap/extension-placeholder": "^3.27.3",
|
|
60
|
+
"@tiptap/extension-text-align": "^3.27.3",
|
|
61
|
+
"@tiptap/pm": "^3.27.3",
|
|
62
|
+
"@tiptap/starter-kit": "^3.27.3",
|
|
63
|
+
"@tiptap/vue-3": "^3.27.3",
|
|
64
|
+
"date-fns": "^4.4.0",
|
|
65
|
+
"maska": "^3.0.0"
|
|
66
|
+
},
|
|
67
|
+
"peerDependencies": {
|
|
68
|
+
"vue": "^3.3.0"
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@tailwindcss/vite": "^4.3.1",
|
|
72
|
+
"@types/node": "^25.9.1",
|
|
73
|
+
"@vitejs/plugin-vue": "^6.0.7",
|
|
74
|
+
"@vue/test-utils": "^2.4.11",
|
|
75
|
+
"happy-dom": "^20.10.6",
|
|
76
|
+
"tailwindcss": "^4.3.1",
|
|
77
|
+
"typescript": "^5.0.0",
|
|
78
|
+
"vite": "^8.0.16",
|
|
79
|
+
"vitest": "^4.1.9",
|
|
80
|
+
"vue-tsc": "^3.3.5"
|
|
81
|
+
}
|
|
82
|
+
}
|