pukaad-ui-lib 1.246.8 → 1.246.10
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/module.json +1 -1
- package/dist/module.mjs +12 -2
- package/dist/runtime/components/input/input-address.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-address.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-autocomplete.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-autocomplete.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-file.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-file.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-password.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-password.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-tag.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-tag.vue.d.ts +1 -1
- package/dist/runtime/components/modal/modal-password-confirmed.d.vue.ts +1 -1
- package/dist/runtime/components/modal/modal-password-confirmed.vue.d.ts +1 -1
- package/dist/runtime/components/modal/modal-password-verify.d.vue.ts +1 -1
- package/dist/runtime/components/modal/modal-password-verify.vue.d.ts +1 -1
- package/package.json +3 -3
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineNuxtModule, createResolver, addImportsDir, addComponentsDir, installModule, addPlugin } from '@nuxt/kit';
|
|
1
|
+
import { defineNuxtModule, createResolver, addImportsDir, addComponentsDir, installModule, addPlugin, addTemplate } from '@nuxt/kit';
|
|
2
2
|
import { createRequire } from 'module';
|
|
3
3
|
import tailwindcss from '@tailwindcss/vite';
|
|
4
4
|
|
|
@@ -183,7 +183,17 @@ const module$1 = defineNuxtModule({
|
|
|
183
183
|
_nuxt.options.css.push(_require.resolve("leaflet/dist/leaflet.css"));
|
|
184
184
|
}
|
|
185
185
|
if (css.core) {
|
|
186
|
-
|
|
186
|
+
const coreCssPath = resolver.resolve("./runtime/assets/css/core.css");
|
|
187
|
+
const rootDir = _nuxt.options.rootDir;
|
|
188
|
+
const template = addTemplate({
|
|
189
|
+
filename: "pukaad-ui-core.css",
|
|
190
|
+
write: true,
|
|
191
|
+
getContents: () => `@import "${coreCssPath}";
|
|
192
|
+
@source "${rootDir}/**/*.vue";
|
|
193
|
+
@source "${rootDir}/**/*.ts";
|
|
194
|
+
`
|
|
195
|
+
});
|
|
196
|
+
_nuxt.options.css.push(template.dst);
|
|
187
197
|
}
|
|
188
198
|
if (css.quill) {
|
|
189
199
|
_nuxt.options.css.push(resolver.resolve("./runtime/assets/css/quill.css"));
|
|
@@ -48,11 +48,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
48
48
|
label: string;
|
|
49
49
|
required: boolean;
|
|
50
50
|
name: string;
|
|
51
|
-
gap: string;
|
|
52
51
|
placeholder: string;
|
|
53
52
|
labelDetail: string;
|
|
54
53
|
placeholderDetail: string;
|
|
55
54
|
requiredDetail: boolean;
|
|
55
|
+
gap: string;
|
|
56
56
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
57
57
|
declare const _default: typeof __VLS_export;
|
|
58
58
|
export default _default;
|
|
@@ -48,11 +48,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
48
48
|
label: string;
|
|
49
49
|
required: boolean;
|
|
50
50
|
name: string;
|
|
51
|
-
gap: string;
|
|
52
51
|
placeholder: string;
|
|
53
52
|
labelDetail: string;
|
|
54
53
|
placeholderDetail: string;
|
|
55
54
|
requiredDetail: boolean;
|
|
55
|
+
gap: string;
|
|
56
56
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
57
57
|
declare const _default: typeof __VLS_export;
|
|
58
58
|
export default _default;
|
|
@@ -50,8 +50,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
50
50
|
name: string;
|
|
51
51
|
description: string;
|
|
52
52
|
options: AutocompleteOption[] | string[] | number[];
|
|
53
|
-
placeholder: string;
|
|
54
53
|
limit: number;
|
|
54
|
+
placeholder: string;
|
|
55
55
|
disabledErrorMessage: boolean;
|
|
56
56
|
disabledBorder: boolean;
|
|
57
57
|
showCounter: boolean;
|
|
@@ -50,8 +50,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
50
50
|
name: string;
|
|
51
51
|
description: string;
|
|
52
52
|
options: AutocompleteOption[] | string[] | number[];
|
|
53
|
-
placeholder: string;
|
|
54
53
|
limit: number;
|
|
54
|
+
placeholder: string;
|
|
55
55
|
disabledErrorMessage: boolean;
|
|
56
56
|
disabledBorder: boolean;
|
|
57
57
|
showCounter: boolean;
|
|
@@ -34,9 +34,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
34
34
|
fullWidth: boolean;
|
|
35
35
|
fullHeight: boolean;
|
|
36
36
|
name: string;
|
|
37
|
-
accept: string;
|
|
38
37
|
limit: number;
|
|
39
38
|
disabledErrorMessage: boolean;
|
|
39
|
+
accept: string;
|
|
40
40
|
labelIcon: string;
|
|
41
41
|
disabledDrop: boolean;
|
|
42
42
|
column: boolean;
|
|
@@ -34,9 +34,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
34
34
|
fullWidth: boolean;
|
|
35
35
|
fullHeight: boolean;
|
|
36
36
|
name: string;
|
|
37
|
-
accept: string;
|
|
38
37
|
limit: number;
|
|
39
38
|
disabledErrorMessage: boolean;
|
|
39
|
+
accept: string;
|
|
40
40
|
labelIcon: string;
|
|
41
41
|
disabledDrop: boolean;
|
|
42
42
|
column: boolean;
|
|
@@ -22,8 +22,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
22
22
|
}>, {
|
|
23
23
|
id: string;
|
|
24
24
|
name: string;
|
|
25
|
-
disabledForgotPassword: boolean;
|
|
26
25
|
new: boolean;
|
|
26
|
+
disabledForgotPassword: boolean;
|
|
27
27
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const _default: typeof __VLS_export;
|
|
29
29
|
export default _default;
|
|
@@ -22,8 +22,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
22
22
|
}>, {
|
|
23
23
|
id: string;
|
|
24
24
|
name: string;
|
|
25
|
-
disabledForgotPassword: boolean;
|
|
26
25
|
new: boolean;
|
|
26
|
+
disabledForgotPassword: boolean;
|
|
27
27
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const _default: typeof __VLS_export;
|
|
29
29
|
export default _default;
|
|
@@ -26,8 +26,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
26
26
|
}>, {
|
|
27
27
|
name: string;
|
|
28
28
|
state: "user" | "admin";
|
|
29
|
-
placeholder: string;
|
|
30
29
|
limit: number;
|
|
30
|
+
placeholder: string;
|
|
31
31
|
ignore: string[];
|
|
32
32
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
33
|
declare const _default: typeof __VLS_export;
|
|
@@ -26,8 +26,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
26
26
|
}>, {
|
|
27
27
|
name: string;
|
|
28
28
|
state: "user" | "admin";
|
|
29
|
-
placeholder: string;
|
|
30
29
|
limit: number;
|
|
30
|
+
placeholder: string;
|
|
31
31
|
ignore: string[];
|
|
32
32
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
33
|
declare const _default: typeof __VLS_export;
|
|
@@ -24,8 +24,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
24
24
|
}) => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
26
|
title: string;
|
|
27
|
-
confirmText: string;
|
|
28
27
|
disabledForgotPassword: boolean;
|
|
28
|
+
confirmText: string;
|
|
29
29
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
30
|
declare const _default: typeof __VLS_export;
|
|
31
31
|
export default _default;
|
|
@@ -24,8 +24,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
24
24
|
}) => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
26
|
title: string;
|
|
27
|
-
confirmText: string;
|
|
28
27
|
disabledForgotPassword: boolean;
|
|
28
|
+
confirmText: string;
|
|
29
29
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
30
|
declare const _default: typeof __VLS_export;
|
|
31
31
|
export default _default;
|
|
@@ -28,8 +28,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
28
28
|
}>, {
|
|
29
29
|
title: string;
|
|
30
30
|
mode: "login" | "secure";
|
|
31
|
-
confirmText: string;
|
|
32
31
|
disabledForgotPassword: boolean;
|
|
32
|
+
confirmText: string;
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
34
|
declare const _default: typeof __VLS_export;
|
|
35
35
|
export default _default;
|
|
@@ -28,8 +28,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
28
28
|
}>, {
|
|
29
29
|
title: string;
|
|
30
30
|
mode: "login" | "secure";
|
|
31
|
-
confirmText: string;
|
|
32
31
|
disabledForgotPassword: boolean;
|
|
32
|
+
confirmText: string;
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
34
|
declare const _default: typeof __VLS_export;
|
|
35
35
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pukaad-ui-lib",
|
|
3
|
-
"version": "1.246.
|
|
3
|
+
"version": "1.246.10",
|
|
4
4
|
"description": "pukaad-ui for MeMSG",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@nuxt/icon": "^1.10.3",
|
|
39
39
|
"@nuxt/image": "^1.9.0",
|
|
40
40
|
"@nuxt/kit": "^4.0.0",
|
|
41
|
-
"@tailwindcss/vite": "4.0
|
|
41
|
+
"@tailwindcss/vite": "^4.3.0",
|
|
42
42
|
"@tanstack/vue-table": "^8.21.3",
|
|
43
43
|
"@vee-validate/nuxt": "^4.15.0",
|
|
44
44
|
"@vueuse/core": "^14.2.1",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"shadcn-nuxt": "^2.3.3",
|
|
56
56
|
"tailwind-merge": "^3.4.0",
|
|
57
57
|
"tailwind-variants": "^3.1.1",
|
|
58
|
-
"tailwindcss": "4.0
|
|
58
|
+
"tailwindcss": "^4.3.0",
|
|
59
59
|
"tw-animate-css": "^1.4.0",
|
|
60
60
|
"vee-validate": "^4.15.1",
|
|
61
61
|
"vue3-recaptcha-v2": "^2.1.0"
|