@maltjoy/core-vue 5.20.0 → 5.21.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/dist/components/JoyAvatar/VJoyAvatar.vue.d.ts +1 -1
- package/dist/components/JoyButton/VJoyButton.vue.d.ts +1 -1
- package/dist/components/JoyCheckbox/VJoyCheckbox.vue.d.ts +1 -1
- package/dist/components/JoyCheckboxCard/VJoyCheckboxCard.vue.d.ts +1 -1
- package/dist/components/JoyDropzone/VJoyDropzone.vue.d.ts +1 -1
- package/dist/components/JoyDropzone/VJoyDropzoneFileItem.vue.d.ts +1 -1
- package/dist/components/JoyHighlight/VJoyHighlight.vue.d.ts +1 -1
- package/dist/components/JoyInput/VJoyInput.vue.d.ts +1 -1
- package/dist/components/JoyInputNumber/VJoyInputNumber.vue.d.ts +1 -1
- package/dist/components/JoyMenuItem/VJoyMenuItem.vue.d.ts +1 -1
- package/dist/components/JoySelectableItem/VJoySelectableItem.vue.d.ts +1 -1
- package/dist/components/JoySelectableItemGroup/VJoySelectableItemGroup.vue.d.ts +1 -1
- package/dist/components/JoyTag/VJoyTag.vue.d.ts +2 -2
- package/dist/components/JoyTagsInput/VJoyTagsInput.vue.d.ts +1 -1
- package/dist/components/JoyTemplate/VJoyTemplate.vue.d.ts +1 -1
- package/dist/components/JoyToggle/VJoyToggle.vue.d.ts +2 -2
- package/dist/core-vue.js +2355 -2353
- package/dist/core-vue.umd.cjs +2 -2
- package/dist/joy-core-vue-manifest.json +3 -3
- package/dist/style.css +1 -1
- package/package.json +5 -7
- package/dist/pages/SelectableItemGroup.vue.d.ts +0 -2
- package/dist/pages/selectable-item-group.d.ts +0 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maltjoy/core-vue",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.21.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -27,9 +27,8 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@floating-ui/dom": "1.5.3",
|
|
29
29
|
"@floating-ui/vue": "1.0.2",
|
|
30
|
-
"@maltjoy/
|
|
31
|
-
"@maltjoy/
|
|
32
|
-
"@maltjoy/themes": "5.20.0",
|
|
30
|
+
"@maltjoy/icons": "5.21.0",
|
|
31
|
+
"@maltjoy/themes": "5.21.0",
|
|
33
32
|
"@vue/runtime-core": "3.5.13",
|
|
34
33
|
"@vue/runtime-dom": "3.5.13",
|
|
35
34
|
"@vue/shared": "3.5.13",
|
|
@@ -45,6 +44,8 @@
|
|
|
45
44
|
"@chromatic-com/storybook": "1.6.1",
|
|
46
45
|
"@eslint/js": "9.39.4",
|
|
47
46
|
"@figma/code-connect": "1.3.13",
|
|
47
|
+
"@maltjoy/eslint-rules": "0.2.1",
|
|
48
|
+
"@rushstack/eslint-patch": "1.2.0",
|
|
48
49
|
"@storybook/addon-a11y": "8.6.15",
|
|
49
50
|
"@storybook/addon-docs": "8.6.15",
|
|
50
51
|
"@storybook/addon-essentials": "8.6.15",
|
|
@@ -102,9 +103,6 @@
|
|
|
102
103
|
"generate:components-autoimports": "node src/tasks/generate-components-autoimports.mjs",
|
|
103
104
|
"generate:components-docs": "node src/tasks/ai/optimized-metadata-generator.mjs",
|
|
104
105
|
"generate:components-docs:single": "node src/tasks/ai/optimized-metadata-generator.mjs --single",
|
|
105
|
-
"report:component-churn": "node src/tasks/generate-component-churn-report.mjs",
|
|
106
|
-
"report:complexity": "node src/tasks/generate-complexity-report.mjs",
|
|
107
|
-
"report:bundle-size": "pnpm build:analyze:json && node src/tasks/generate-bundle-size-report.mjs",
|
|
108
106
|
"generate:manifest": "node src/tasks/generate-manifest.mjs",
|
|
109
107
|
"copy:fonticon": "node src/tasks/copy-fonticon.mjs",
|
|
110
108
|
"scan:figma-coverage": "node src/tasks/scan-joy-figma.mjs"
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
-
export default _default;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { TJoySelectableItemOption } from '@/components/components.types';
|
|
2
|
-
export interface BusinessResource {
|
|
3
|
-
customId?: string;
|
|
4
|
-
customLabel?: string;
|
|
5
|
-
}
|
|
6
|
-
export type ExtendedBusinessResource = BusinessResource & TJoySelectableItemOption;
|
|
7
|
-
export declare const businessResource: ({
|
|
8
|
-
customLabel: string;
|
|
9
|
-
customId: string;
|
|
10
|
-
value: string;
|
|
11
|
-
} | {
|
|
12
|
-
customLabel: string;
|
|
13
|
-
customId: string;
|
|
14
|
-
value?: undefined;
|
|
15
|
-
})[];
|