@stacksjs/ui 0.58.73 → 0.59.2
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/dist/index.d.ts +7 -0
- package/dist/uno.config.d.ts +2 -0
- package/package.json +8 -8
- package/dist/components.js +0 -68
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as CssEngine from 'unocss';
|
|
2
|
+
import { presetForms } from '@julr/unocss-preset-forms';
|
|
3
|
+
import * as UiEngine from 'vue';
|
|
4
|
+
import * as Store from 'pinia';
|
|
5
|
+
import { ui } from '@stacksjs/config';
|
|
6
|
+
import UnocssConfig from './uno.config';
|
|
7
|
+
export { CssEngine, UiEngine, Store, presetForms, UnocssConfig, ui, };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.59.2",
|
|
5
5
|
"description": "The Stacks UI engine.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -65,27 +65,27 @@
|
|
|
65
65
|
"pinia": "^2.1.7",
|
|
66
66
|
"unocss": "^0.58.5",
|
|
67
67
|
"vite-plugin-vue-layouts": "^0.11.0",
|
|
68
|
-
"vue": "^3.4.
|
|
69
|
-
"vue-tsc": "^
|
|
68
|
+
"vue": "^3.4.21",
|
|
69
|
+
"vue-tsc": "^2.0.5"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@headlessui/vue": "^1.7.19",
|
|
73
73
|
"@iconify-json/heroicons": "^1.1.20",
|
|
74
74
|
"@iconify-json/heroicons-outline": "^1.1.10",
|
|
75
75
|
"@iconify-json/heroicons-solid": "^1.1.11",
|
|
76
|
-
"@iconify/json": "^2.2.
|
|
76
|
+
"@iconify/json": "^2.2.189",
|
|
77
77
|
"@julr/unocss-preset-forms": "^0.1.0",
|
|
78
78
|
"@stacksjs/build": "latest",
|
|
79
79
|
"@stacksjs/config": "latest",
|
|
80
80
|
"@stacksjs/router": "latest",
|
|
81
|
-
"@unhead/vue": "^1.8.
|
|
81
|
+
"@unhead/vue": "^1.8.11",
|
|
82
82
|
"pinia": "^2.1.7",
|
|
83
|
-
"unhead": "^1.8.
|
|
83
|
+
"unhead": "^1.8.11",
|
|
84
84
|
"unocss": "^0.58.5",
|
|
85
85
|
"unocss-preset-primitives": "0.0.2-beta.0",
|
|
86
86
|
"vite-plugin-vue-layouts": "^0.11.0",
|
|
87
|
-
"vue": "^3.4.
|
|
88
|
-
"vue-tsc": "^
|
|
87
|
+
"vue": "^3.4.21",
|
|
88
|
+
"vue-tsc": "^2.0.5"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
91
|
"@stacksjs/development": "latest"
|
package/dist/components.js
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
// @bun
|
|
2
|
-
// src/components/disclosure.ts
|
|
3
|
-
import {
|
|
4
|
-
Disclosure,
|
|
5
|
-
DisclosureButton,
|
|
6
|
-
DisclosurePanel
|
|
7
|
-
} from "@headlessui/vue";
|
|
8
|
-
// src/components/menu.ts
|
|
9
|
-
import {Menu, MenuButton, MenuItems, MenuItem} from "@headlessui/vue";
|
|
10
|
-
// src/components/modal.ts
|
|
11
|
-
import {
|
|
12
|
-
Dialog,
|
|
13
|
-
DialogPanel,
|
|
14
|
-
DialogTitle,
|
|
15
|
-
DialogDescription
|
|
16
|
-
} from "@headlessui/vue";
|
|
17
|
-
// src/components/popover.ts
|
|
18
|
-
import {Popover, PopoverButton, PopoverPanel} from "@headlessui/vue";
|
|
19
|
-
// src/components/radio-group.ts
|
|
20
|
-
import {
|
|
21
|
-
RadioGroup,
|
|
22
|
-
RadioGroupLabel,
|
|
23
|
-
RadioGroupOption
|
|
24
|
-
} from "@headlessui/vue";
|
|
25
|
-
// src/components/select.ts
|
|
26
|
-
import {
|
|
27
|
-
Combobox,
|
|
28
|
-
ComboboxInput,
|
|
29
|
-
ComboboxOptions,
|
|
30
|
-
ComboboxOption
|
|
31
|
-
} from "@headlessui/vue";
|
|
32
|
-
// src/components/tabs.ts
|
|
33
|
-
import {TabGroup, TabList, Tab, TabPanels, TabPanel} from "@headlessui/vue";
|
|
34
|
-
// src/components/toggle.ts
|
|
35
|
-
import {Switch} from "@headlessui/vue";
|
|
36
|
-
// src/components/transition.ts
|
|
37
|
-
import {TransitionRoot, TransitionChild} from "@headlessui/vue";
|
|
38
|
-
export {
|
|
39
|
-
TransitionRoot,
|
|
40
|
-
TransitionChild,
|
|
41
|
-
TabPanels,
|
|
42
|
-
TabPanel,
|
|
43
|
-
TabList,
|
|
44
|
-
TabGroup,
|
|
45
|
-
Tab,
|
|
46
|
-
Switch,
|
|
47
|
-
RadioGroupOption,
|
|
48
|
-
RadioGroupLabel,
|
|
49
|
-
RadioGroup,
|
|
50
|
-
PopoverPanel,
|
|
51
|
-
PopoverButton,
|
|
52
|
-
Popover,
|
|
53
|
-
MenuItems,
|
|
54
|
-
MenuItem,
|
|
55
|
-
MenuButton,
|
|
56
|
-
Menu,
|
|
57
|
-
DisclosurePanel,
|
|
58
|
-
DisclosureButton,
|
|
59
|
-
Disclosure,
|
|
60
|
-
DialogTitle,
|
|
61
|
-
DialogPanel,
|
|
62
|
-
DialogDescription,
|
|
63
|
-
Dialog,
|
|
64
|
-
ComboboxOptions,
|
|
65
|
-
ComboboxOption,
|
|
66
|
-
ComboboxInput,
|
|
67
|
-
Combobox
|
|
68
|
-
};
|