@dcodegroup-au/dsg-vue 0.1.17 → 0.1.19
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/Elements/DsgInputSelect.vue.d.ts +7 -1
- package/dist/components/Table/DsgTable.vue.d.ts +3 -0
- package/dist/dsg-vue.cjs +12 -12
- package/dist/dsg-vue.css +1 -1
- package/dist/dsg-vue.esm.js +3169 -3150
- package/dist/dsg-vue.table.cjs +2 -2
- package/dist/dsg-vue.table.esm.js +217 -212
- package/dist/main.d.ts +6 -2
- package/package.json +8 -8
package/dist/main.d.ts
CHANGED
|
@@ -1188,7 +1188,9 @@ export declare const DsgInput: {
|
|
|
1188
1188
|
export declare const DsgInputSelect: import('vue').DefineComponent<{
|
|
1189
1189
|
modelValue?: any;
|
|
1190
1190
|
single?: any;
|
|
1191
|
-
} & import('./main').DsgInputSelectProps, {
|
|
1191
|
+
} & import('./main').DsgInputSelectProps, {
|
|
1192
|
+
getInstance: () => typeof import('vue-multiselect').Multiselect | undefined | null;
|
|
1193
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1192
1194
|
"update:modelValue": (value: any) => any;
|
|
1193
1195
|
"update:single": (value: any) => any;
|
|
1194
1196
|
} & {
|
|
@@ -3487,7 +3489,9 @@ declare const _default: {
|
|
|
3487
3489
|
DsgInputSelect: import('vue').DefineComponent<{
|
|
3488
3490
|
modelValue?: any;
|
|
3489
3491
|
single?: any;
|
|
3490
|
-
} & import('./main').DsgInputSelectProps, {
|
|
3492
|
+
} & import('./main').DsgInputSelectProps, {
|
|
3493
|
+
getInstance: () => typeof import('vue-multiselect').Multiselect | undefined | null;
|
|
3494
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3491
3495
|
"update:modelValue": (value: any) => any;
|
|
3492
3496
|
"update:single": (value: any) => any;
|
|
3493
3497
|
} & {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcodegroup-au/dsg-vue",
|
|
3
3
|
"description": "Front-end Vue/Tailwind DSG for UntitledUI.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.19",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"preinstall": "npx only-allow pnpm",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"@eslint/js": "^9.39.1",
|
|
107
107
|
"@testing-library/vue": "^8.1.0",
|
|
108
108
|
"@types/eslint": "^9.6.1",
|
|
109
|
-
"@types/node": "^22.19.
|
|
109
|
+
"@types/node": "^22.19.2",
|
|
110
110
|
"@types/uuid": "^10.0.0",
|
|
111
111
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
112
112
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
@@ -130,15 +130,15 @@
|
|
|
130
130
|
"jiti": "^2.6.1",
|
|
131
131
|
"jsdom": "^26.1.0",
|
|
132
132
|
"only-allow": "^1.2.2",
|
|
133
|
-
"phone": "^3.1.
|
|
133
|
+
"phone": "^3.1.68",
|
|
134
134
|
"prettier": "^3.7.4",
|
|
135
|
-
"sass": "^1.
|
|
135
|
+
"sass": "^1.96.0",
|
|
136
136
|
"semantic-release": "^24.2.9",
|
|
137
137
|
"storybook": "^8.6.14",
|
|
138
|
-
"tailwindcss": "^3.4.
|
|
138
|
+
"tailwindcss": "^3.4.19",
|
|
139
139
|
"typescript": "^5.9.3",
|
|
140
|
-
"typescript-eslint": "^8.
|
|
141
|
-
"ua-parser-js": "^2.0.
|
|
140
|
+
"typescript-eslint": "^8.49.0",
|
|
141
|
+
"ua-parser-js": "^2.0.7",
|
|
142
142
|
"uuid": "^11.1.0",
|
|
143
143
|
"vditor": "^3.11.2",
|
|
144
144
|
"vite": "^6.4.1",
|
|
@@ -158,4 +158,4 @@
|
|
|
158
158
|
"plugin:storybook/recommended"
|
|
159
159
|
]
|
|
160
160
|
}
|
|
161
|
-
}
|
|
161
|
+
}
|