@maltjoy/core-vue 1.0.0-beta.1 → 1.0.0-beta.3
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 +1 -0
- package/dist/components/JoyBadge/JoyBadge.types.d.ts +2 -0
- package/dist/components/JoyBadge/VJoyBadge.vue.d.ts +43 -0
- package/dist/components/JoyButton/JoyButton.types.d.ts +0 -4
- package/dist/components/JoyButton/VJoyButton.vue.d.ts +2 -15
- package/dist/components/JoyCheckbox/VJoyCheckbox.vue.d.ts +24 -1
- package/dist/components/JoyCounter/VJoyCounter.vue.d.ts +6 -6
- package/dist/components/JoyDropdown/JoyDropdown.types.d.ts +4 -0
- package/dist/components/JoyDropdown/VJoyDropdown.vue.d.ts +180 -0
- package/dist/components/JoyDropdownList/JoyDropdownList.types.d.ts +3 -0
- package/dist/components/JoyDropdownList/VJoyDropdownList.vue.d.ts +84 -0
- package/dist/components/JoyHighlight/JoyHighlight.types.d.ts +1 -1
- package/dist/components/JoyHighlight/VJoyHighlight.vue.d.ts +3 -3
- package/dist/components/JoyInput/VJoyInput.vue.d.ts +4 -4
- package/dist/components/JoyLabel/VJoyLabel.vue.d.ts +3 -3
- package/dist/components/JoyMultiCheckbox/VJoyMultiCheckbox.vue.d.ts +11 -4
- package/dist/components/JoySelect/VJoySelect.vue.d.ts +4 -4
- package/dist/components/JoySelectableItem/VJoySelectableItem.vue.d.ts +2 -2
- package/dist/components/JoySelectableItemGroup/VJoySelectableItemGroup.vue.d.ts +4 -4
- package/dist/components/JoyTextarea/VJoyTextarea.vue.d.ts +4 -4
- package/dist/components/JoyToggle/VJoyToggle.vue.d.ts +1 -1
- package/dist/components/JoyWrapper/VJoyWrapper.vue.d.ts +2 -2
- package/dist/components/index.d.ts +4 -1
- package/dist/composables/events.d.ts +5 -0
- package/dist/composables/index.d.ts +1 -0
- package/dist/composables/props.d.ts +1 -1
- package/dist/joy-vue.js +1627 -599
- package/dist/joy-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/dist/tests/composables/test-components/CheckboxFormProps.vue.d.ts +1 -1
- package/dist/tests/composables/test-components/GenericFormPropsWithLabel.vue.d.ts +3 -3
- package/joy-components.d.ts +27 -24
- package/package.json +19 -15
package/joy-components.d.ts
CHANGED
|
@@ -1,28 +1,31 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
declare module 'vue' {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
3
|
+
interface GlobalComponents {
|
|
4
|
+
VJoyBadge: typeof import('./dist/components/JoyBadge/VJoyBadge.vue')['default'];
|
|
5
|
+
VJoyButton: typeof import('./dist/components/JoyButton/VJoyButton.vue')['default'];
|
|
6
|
+
VJoyCheckbox: typeof import('./dist/components/JoyCheckbox/VJoyCheckbox.vue')['default'];
|
|
7
|
+
VJoyCounter: typeof import('./dist/components/JoyCounter/VJoyCounter.vue')['default'];
|
|
8
|
+
VJoyDropdown: typeof import('./dist/components/JoyDropdown/VJoyDropdown.vue')['default'];
|
|
9
|
+
VJoyDropdownList: typeof import('./dist/components/JoyDropdownList/VJoyDropdownList.vue')['default'];
|
|
10
|
+
VJoyFormError: typeof import('./dist/components/JoyFormError/VJoyFormError.vue')['default'];
|
|
11
|
+
VJoyHighlight: typeof import('./dist/components/JoyHighlight/VJoyHighlight.vue')['default'];
|
|
12
|
+
VJoyInput: typeof import('./dist/components/JoyInput/VJoyInput.vue')['default'];
|
|
13
|
+
VJoyLabel: typeof import('./dist/components/JoyLabel/VJoyLabel.vue')['default'];
|
|
14
|
+
VJoyLink: typeof import('./dist/components/JoyLink/VJoyLink.vue')['default'];
|
|
15
|
+
VJoyMultiCheckbox: typeof import('./dist/components/JoyMultiCheckbox/VJoyMultiCheckbox.vue')['default'];
|
|
16
|
+
VJoyPanel: typeof import('./dist/components/JoyPanel/VJoyPanel.vue')['default'];
|
|
17
|
+
VJoyPanelSection: typeof import('./dist/components/JoyPanelSection/VJoyPanelSection.vue')['default'];
|
|
18
|
+
VJoyRadio: typeof import('./dist/components/JoyRadio/VJoyRadio.vue')['default'];
|
|
19
|
+
VJoyRadioGroup: typeof import('./dist/components/JoyRadioGroup/VJoyRadioGroup.vue')['default'];
|
|
20
|
+
VJoySelect: typeof import('./dist/components/JoySelect/VJoySelect.vue')['default'];
|
|
21
|
+
VJoySelectableItem: typeof import('./dist/components/JoySelectableItem/VJoySelectableItem.vue')['default'];
|
|
22
|
+
VJoySelectableItemGroup: typeof import('./dist/components/JoySelectableItemGroup/VJoySelectableItemGroup.vue')['default'];
|
|
23
|
+
VJoySpinner: typeof import('./dist/components/JoySpinner/VJoySpinner.vue')['default'];
|
|
24
|
+
VJoyTemplate: typeof import('./dist/components/JoyTemplate/VJoyTemplate.vue')['default'];
|
|
25
|
+
VJoyTextarea: typeof import('./dist/components/JoyTextarea/VJoyTextarea.vue')['default'];
|
|
26
|
+
VJoyToggle: typeof import('./dist/components/JoyToggle/VJoyToggle.vue')['default'];
|
|
27
|
+
VJoyWrapper: typeof import('./dist/components/JoyWrapper/VJoyWrapper.vue')['default'];
|
|
28
|
+
}
|
|
26
29
|
}
|
|
27
30
|
|
|
28
|
-
export {};
|
|
31
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maltjoy/core-vue",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"./dist/style.css": "./dist/style.css"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
+
"prepare": "pnpm generate:components-types",
|
|
21
22
|
"dev": "vite",
|
|
22
23
|
"build": "vue-tsc --noEmit && vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist && pnpm test",
|
|
23
24
|
"preview": "vite preview",
|
|
@@ -30,27 +31,30 @@
|
|
|
30
31
|
"format": "prettier --write \"**/*.{js,ts,vue}\"",
|
|
31
32
|
"format:staged": "prettier --write",
|
|
32
33
|
"storybook": "storybook dev",
|
|
33
|
-
"build-storybook": "storybook build"
|
|
34
|
+
"build-storybook": "storybook build",
|
|
35
|
+
"generate:components-types": "node src/tasks/generate-components-types.mjs"
|
|
34
36
|
},
|
|
35
37
|
"dependencies": {
|
|
36
|
-
"@maltjoy/themes": "
|
|
38
|
+
"@maltjoy/themes": "3.1.1",
|
|
39
|
+
"@vueuse/components": "^9.13.0",
|
|
40
|
+
"@vueuse/core": "^9.13.0",
|
|
37
41
|
"vue": "3.2.47"
|
|
38
42
|
},
|
|
39
43
|
"devDependencies": {
|
|
40
44
|
"@babel/core": "7.20.12",
|
|
41
45
|
"@rushstack/eslint-patch": "^1.2.0",
|
|
42
|
-
"@storybook/addon-docs": "7.0.0-beta.
|
|
43
|
-
"@storybook/addon-essentials": "7.0.0-beta.
|
|
44
|
-
"@storybook/addon-interactions": "7.0.0-beta.
|
|
45
|
-
"@storybook/addon-links": "7.0.0-beta.
|
|
46
|
-
"@storybook/addons": "7.0.0-beta.
|
|
47
|
-
"@storybook/channel-postmessage": "7.0.0-beta.
|
|
48
|
-
"@storybook/channel-websocket": "7.0.0-beta.
|
|
49
|
-
"@storybook/client-api": "7.0.0-beta.
|
|
50
|
-
"@storybook/preview-web": "7.0.0-beta.
|
|
46
|
+
"@storybook/addon-docs": "7.0.0-beta.64",
|
|
47
|
+
"@storybook/addon-essentials": "7.0.0-beta.64",
|
|
48
|
+
"@storybook/addon-interactions": "7.0.0-beta.64",
|
|
49
|
+
"@storybook/addon-links": "7.0.0-beta.64",
|
|
50
|
+
"@storybook/addons": "7.0.0-beta.64",
|
|
51
|
+
"@storybook/channel-postmessage": "7.0.0-beta.64",
|
|
52
|
+
"@storybook/channel-websocket": "7.0.0-beta.64",
|
|
53
|
+
"@storybook/client-api": "7.0.0-beta.64",
|
|
54
|
+
"@storybook/preview-web": "7.0.0-beta.64",
|
|
51
55
|
"@storybook/testing-library": "0.0.14-next.1",
|
|
52
|
-
"@storybook/vue3": "7.0.0-beta.
|
|
53
|
-
"@storybook/vue3-vite": "7.0.0-beta.
|
|
56
|
+
"@storybook/vue3": "7.0.0-beta.64",
|
|
57
|
+
"@storybook/vue3-vite": "7.0.0-beta.64",
|
|
54
58
|
"@typescript-eslint/parser": "5.51.0",
|
|
55
59
|
"@vitejs/plugin-vue": "^4.0.0",
|
|
56
60
|
"@vitest/coverage-istanbul": "^0.28.4",
|
|
@@ -66,7 +70,7 @@
|
|
|
66
70
|
"pretty": "^2.0.0",
|
|
67
71
|
"react": "17.0.2",
|
|
68
72
|
"react-dom": "17.0.2",
|
|
69
|
-
"storybook": "7.0.0-beta.
|
|
73
|
+
"storybook": "7.0.0-beta.64",
|
|
70
74
|
"typescript": "^4.9.3",
|
|
71
75
|
"vite": "^4.0.0",
|
|
72
76
|
"vitest": "^0.28.4",
|