pukaad-ui-lib 1.97.0 → 1.98.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.
Files changed (29) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +2 -40
  3. package/dist/runtime/components/dialog/dialog-email-OTP.d.vue.ts +2 -2
  4. package/dist/runtime/components/dialog/dialog-email-OTP.vue.d.ts +2 -2
  5. package/dist/runtime/components/dialog/dialog-phone-OTP.d.vue.ts +2 -2
  6. package/dist/runtime/components/dialog/dialog-phone-OTP.vue.d.ts +2 -2
  7. package/dist/runtime/components/input/input-autocomplete.d.vue.ts +1 -1
  8. package/dist/runtime/components/input/input-autocomplete.vue.d.ts +1 -1
  9. package/dist/runtime/components/input/input-file.d.vue.ts +1 -1
  10. package/dist/runtime/components/input/input-file.vue.d.ts +1 -1
  11. package/dist/runtime/components/input/input-tag.d.vue.ts +1 -1
  12. package/dist/runtime/components/input/input-tag.vue.d.ts +1 -1
  13. package/dist/runtime/components/input/input-text-field.d.vue.ts +1 -1
  14. package/dist/runtime/components/input/input-text-field.vue.d.ts +1 -1
  15. package/dist/runtime/components/input/input-textarea.d.vue.ts +1 -1
  16. package/dist/runtime/components/input/input-textarea.vue.d.ts +1 -1
  17. package/dist/runtime/components/modal/modal-account-disabled-alert.d.vue.ts +2 -2
  18. package/dist/runtime/components/modal/modal-account-disabled-alert.vue.d.ts +2 -2
  19. package/dist/runtime/components/modal/modal-account-disabled-confirmed.d.vue.ts +2 -2
  20. package/dist/runtime/components/modal/modal-account-disabled-confirmed.vue.d.ts +2 -2
  21. package/dist/runtime/components/modal/modal-account-disabled-reason.d.vue.ts +2 -2
  22. package/dist/runtime/components/modal/modal-account-disabled-reason.vue.d.ts +2 -2
  23. package/dist/runtime/components/modal/modal-password-confirmed.d.vue.ts +2 -2
  24. package/dist/runtime/components/modal/modal-password-confirmed.vue.d.ts +2 -2
  25. package/dist/runtime/components/modal/modal-password-new.d.vue.ts +2 -2
  26. package/dist/runtime/components/modal/modal-password-new.vue.d.ts +2 -2
  27. package/dist/runtime/components/modal/modal-phone-OTP.d.vue.ts +2 -2
  28. package/dist/runtime/components/modal/modal-phone-OTP.vue.d.ts +2 -2
  29. package/package.json +1 -1
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pukaad-ui-lib",
3
3
  "configKey": "pukaadUI",
4
- "version": "1.97.0",
4
+ "version": "1.98.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
package/dist/module.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { defineNuxtModule, createResolver, addImportsDir, addComponentsDir, addImports, addTemplate, installModule, addPlugin } from '@nuxt/kit';
1
+ import { defineNuxtModule, createResolver, addImportsDir, addComponentsDir, installModule, addPlugin } from '@nuxt/kit';
2
2
  import tailwindcss from '@tailwindcss/vite';
3
3
 
4
4
  const module$1 = defineNuxtModule({
@@ -16,16 +16,6 @@ const module$1 = defineNuxtModule({
16
16
  prefix: "",
17
17
  global: true
18
18
  });
19
- addImports({
20
- name: "dayjs",
21
- as: "dayjs",
22
- from: "#dayjs"
23
- });
24
- addTemplate({
25
- filename: "dayjs.imports.mjs",
26
- getContents: () => generateImportDayJs(),
27
- write: true
28
- });
29
19
  await installModule("@nuxt/icon", {
30
20
  mode: "svg",
31
21
  customCollections: [
@@ -79,7 +69,6 @@ const module$1 = defineNuxtModule({
79
69
  });
80
70
  addPlugin(resolver.resolve("./runtime/plugins/re-captcha"));
81
71
  addPlugin(resolver.resolve("./runtime/plugins/loadingPage"));
82
- addPlugin(resolver.resolve("./runtime/plugins/dayjs"));
83
72
  addPlugin(resolver.resolve("./runtime/plugins/alert"));
84
73
  addPlugin(resolver.resolve("./runtime/plugins/toast"));
85
74
  addPlugin(resolver.resolve("./runtime/plugins/quill.client"));
@@ -101,37 +90,10 @@ const module$1 = defineNuxtModule({
101
90
  });
102
91
  _nuxt.options.runtimeConfig.public.BASE_URL_API = process.env.BASE_URL_API ?? "";
103
92
  _nuxt.options.runtimeConfig.public.RECAPTCHA_KEY = process.env.RECAPTCHA_KEY ?? "";
104
- _nuxt.options.alias["#dayjs"] = resolver.resolve(
105
- _nuxt.options.buildDir,
106
- "dayjs.imports.mjs"
107
- );
108
93
  _nuxt.hook("prepare:types", ({ references }) => {
109
- references.push(
110
- { types: "dayjs/plugin/buddhistEra" },
111
- { types: "dayjs/plugin/minMax" },
112
- { types: "dayjs/plugin/updateLocale" },
113
- { path: resolver.resolve("./types/convert.d.ts") }
114
- );
94
+ references.push({ path: resolver.resolve("./types/convert.d.ts") });
115
95
  });
116
96
  }
117
97
  });
118
- const generateImportDayJs = () => {
119
- return `
120
- import dayjs from "dayjs";
121
- import buddhistEra from "dayjs/plugin/buddhistEra";
122
- import minMax from "dayjs/plugin/minMax";
123
- import updateLocale from "dayjs/plugin/updateLocale";
124
- import duration from "dayjs/plugin/duration";
125
- import "dayjs/locale/th";
126
-
127
- dayjs.extend(updateLocale);
128
- dayjs.extend(buddhistEra);
129
- dayjs.extend(minMax);
130
- dayjs.extend(duration);
131
- dayjs.locale("th");
132
-
133
- export default dayjs;
134
- `;
135
- };
136
98
 
137
99
  export { module$1 as default };
@@ -7,12 +7,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:modelValue": (value: boolean) => any;
9
9
  } & {
10
- close: () => any;
11
10
  complete: () => any;
11
+ close: () => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
13
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
- onClose?: (() => any) | undefined;
15
14
  onComplete?: (() => any) | undefined;
15
+ onClose?: (() => any) | undefined;
16
16
  }>, {
17
17
  confirmedText: string;
18
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -7,12 +7,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:modelValue": (value: boolean) => any;
9
9
  } & {
10
- close: () => any;
11
10
  complete: () => any;
11
+ close: () => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
13
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
- onClose?: (() => any) | undefined;
15
14
  onComplete?: (() => any) | undefined;
15
+ onClose?: (() => any) | undefined;
16
16
  }>, {
17
17
  confirmedText: string;
18
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -7,12 +7,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:modelValue": (value: boolean) => any;
9
9
  } & {
10
- close: () => any;
11
10
  complete: (value: string) => any;
11
+ close: () => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
13
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
- onClose?: (() => any) | undefined;
15
14
  onComplete?: ((value: string) => any) | undefined;
15
+ onClose?: (() => any) | undefined;
16
16
  }>, {
17
17
  phone: string;
18
18
  confirmedText: string;
@@ -7,12 +7,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:modelValue": (value: boolean) => any;
9
9
  } & {
10
- close: () => any;
11
10
  complete: (value: string) => any;
11
+ close: () => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
13
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
- onClose?: (() => any) | undefined;
15
14
  onComplete?: ((value: string) => any) | undefined;
15
+ onClose?: (() => any) | undefined;
16
16
  }>, {
17
17
  phone: string;
18
18
  confirmedText: string;
@@ -37,11 +37,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
37
37
  name: string;
38
38
  description: string;
39
39
  options: AutocompleteOption[] | string[] | number[];
40
- limit: number;
41
40
  placeholder: string;
42
41
  disabledErrorMessage: boolean;
43
42
  disabledBorder: boolean;
44
43
  showCounter: boolean;
44
+ limit: number;
45
45
  returnObject: boolean;
46
46
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
47
47
  declare const _default: typeof __VLS_export;
@@ -37,11 +37,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
37
37
  name: string;
38
38
  description: string;
39
39
  options: AutocompleteOption[] | string[] | number[];
40
- limit: number;
41
40
  placeholder: string;
42
41
  disabledErrorMessage: boolean;
43
42
  disabledBorder: boolean;
44
43
  showCounter: boolean;
44
+ limit: number;
45
45
  returnObject: boolean;
46
46
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
47
47
  declare const _default: typeof __VLS_export;
@@ -26,8 +26,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
26
26
  fullHeight: boolean;
27
27
  label: string;
28
28
  name: string;
29
- limit: number;
30
29
  disabledErrorMessage: boolean;
30
+ limit: number;
31
31
  accept: string;
32
32
  labelIcon: string;
33
33
  disabledDrop: boolean;
@@ -26,8 +26,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
26
26
  fullHeight: boolean;
27
27
  label: string;
28
28
  name: string;
29
- limit: number;
30
29
  disabledErrorMessage: boolean;
30
+ limit: number;
31
31
  accept: string;
32
32
  labelIcon: string;
33
33
  disabledDrop: boolean;
@@ -18,8 +18,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
18
18
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
19
19
  }>, {
20
20
  name: string;
21
- limit: number;
22
21
  placeholder: string;
22
+ limit: number;
23
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
24
  declare const _default: typeof __VLS_export;
25
25
  export default _default;
@@ -18,8 +18,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
18
18
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
19
19
  }>, {
20
20
  name: string;
21
- limit: number;
22
21
  placeholder: string;
22
+ limit: number;
23
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
24
  declare const _default: typeof __VLS_export;
25
25
  export default _default;
@@ -59,10 +59,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
59
59
  id: string;
60
60
  name: string;
61
61
  disabled: boolean;
62
- limit: number;
63
62
  disabledErrorMessage: boolean;
64
63
  disabledBorder: boolean;
65
64
  showCounter: boolean;
65
+ limit: number;
66
66
  readonly: boolean;
67
67
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
68
68
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -59,10 +59,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
59
59
  id: string;
60
60
  name: string;
61
61
  disabled: boolean;
62
- limit: number;
63
62
  disabledErrorMessage: boolean;
64
63
  disabledBorder: boolean;
65
64
  showCounter: boolean;
65
+ limit: number;
66
66
  readonly: boolean;
67
67
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
68
68
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -44,10 +44,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
44
44
  id: string;
45
45
  name: string;
46
46
  disabled: boolean;
47
- limit: number;
48
47
  disabledErrorMessage: boolean;
49
48
  disabledBorder: boolean;
50
49
  showCounter: boolean;
50
+ limit: number;
51
51
  readonly: boolean;
52
52
  resize: "none" | "both" | "horizontal" | "vertical";
53
53
  rows: number;
@@ -44,10 +44,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
44
44
  id: string;
45
45
  name: string;
46
46
  disabled: boolean;
47
- limit: number;
48
47
  disabledErrorMessage: boolean;
49
48
  disabledBorder: boolean;
50
49
  showCounter: boolean;
50
+ limit: number;
51
51
  readonly: boolean;
52
52
  resize: "none" | "both" | "horizontal" | "vertical";
53
53
  rows: number;
@@ -8,12 +8,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
8
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  "update:modelValue": (value: boolean) => any;
10
10
  } & {
11
- close: () => any;
12
11
  complete: () => any;
12
+ close: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
- onClose?: (() => any) | undefined;
16
15
  onComplete?: (() => any) | undefined;
16
+ onClose?: (() => any) | undefined;
17
17
  }>, {
18
18
  confirmedText: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -8,12 +8,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
8
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  "update:modelValue": (value: boolean) => any;
10
10
  } & {
11
- close: () => any;
12
11
  complete: () => any;
12
+ close: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
- onClose?: (() => any) | undefined;
16
15
  onComplete?: (() => any) | undefined;
16
+ onClose?: (() => any) | undefined;
17
17
  }>, {
18
18
  confirmedText: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -8,12 +8,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
8
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  "update:modelValue": (value: boolean) => any;
10
10
  } & {
11
- close: () => any;
12
11
  complete: () => any;
12
+ close: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
- onClose?: (() => any) | undefined;
16
15
  onComplete?: (() => any) | undefined;
16
+ onClose?: (() => any) | undefined;
17
17
  }>, {
18
18
  confirmedText: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -8,12 +8,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
8
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  "update:modelValue": (value: boolean) => any;
10
10
  } & {
11
- close: () => any;
12
11
  complete: () => any;
12
+ close: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
- onClose?: (() => any) | undefined;
16
15
  onComplete?: (() => any) | undefined;
16
+ onClose?: (() => any) | undefined;
17
17
  }>, {
18
18
  confirmedText: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -8,12 +8,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
8
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  "update:modelValue": (value: boolean) => any;
10
10
  } & {
11
- close: () => any;
12
11
  complete: () => any;
12
+ close: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
- onClose?: (() => any) | undefined;
16
15
  onComplete?: (() => any) | undefined;
16
+ onClose?: (() => any) | undefined;
17
17
  }>, {
18
18
  confirmedText: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -8,12 +8,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
8
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  "update:modelValue": (value: boolean) => any;
10
10
  } & {
11
- close: () => any;
12
11
  complete: () => any;
12
+ close: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
- onClose?: (() => any) | undefined;
16
15
  onComplete?: (() => any) | undefined;
16
+ onClose?: (() => any) | undefined;
17
17
  }>, {
18
18
  confirmedText: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -12,16 +12,16 @@ type __VLS_ModelProps = {
12
12
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
13
13
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
14
  "update:modelValue": (value: boolean) => any;
15
- close: () => any;
16
15
  complete: (data: {
17
16
  secId: string;
18
17
  }) => any;
18
+ close: () => any;
19
19
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
20
20
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
21
- onClose?: (() => any) | undefined;
22
21
  onComplete?: ((data: {
23
22
  secId: string;
24
23
  }) => any) | undefined;
24
+ onClose?: (() => any) | undefined;
25
25
  }>, {
26
26
  title: string;
27
27
  disabledForgotPassword: boolean;
@@ -12,16 +12,16 @@ type __VLS_ModelProps = {
12
12
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
13
13
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
14
  "update:modelValue": (value: boolean) => any;
15
- close: () => any;
16
15
  complete: (data: {
17
16
  secId: string;
18
17
  }) => any;
18
+ close: () => any;
19
19
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
20
20
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
21
- onClose?: (() => any) | undefined;
22
21
  onComplete?: ((data: {
23
22
  secId: string;
24
23
  }) => any) | undefined;
24
+ onClose?: (() => any) | undefined;
25
25
  }>, {
26
26
  title: string;
27
27
  disabledForgotPassword: boolean;
@@ -11,16 +11,16 @@ type __VLS_ModelProps = {
11
11
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
12
12
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
13
  "update:modelValue": (value: boolean) => any;
14
- close: () => any;
15
14
  complete: (data: {
16
15
  secId: string;
17
16
  }) => any;
17
+ close: () => any;
18
18
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
19
19
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
20
- onClose?: (() => any) | undefined;
21
20
  onComplete?: ((data: {
22
21
  secId: string;
23
22
  }) => any) | undefined;
23
+ onClose?: (() => any) | undefined;
24
24
  }>, {
25
25
  title: string;
26
26
  confirmText: string;
@@ -11,16 +11,16 @@ type __VLS_ModelProps = {
11
11
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
12
12
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
13
  "update:modelValue": (value: boolean) => any;
14
- close: () => any;
15
14
  complete: (data: {
16
15
  secId: string;
17
16
  }) => any;
17
+ close: () => any;
18
18
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
19
19
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
20
- onClose?: (() => any) | undefined;
21
20
  onComplete?: ((data: {
22
21
  secId: string;
23
22
  }) => any) | undefined;
23
+ onClose?: (() => any) | undefined;
24
24
  }>, {
25
25
  title: string;
26
26
  confirmText: string;
@@ -7,12 +7,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:modelValue": (value: boolean) => any;
9
9
  } & {
10
- close: () => any;
11
10
  complete: (value: string) => any;
11
+ close: () => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
13
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
- onClose?: (() => any) | undefined;
15
14
  onComplete?: ((value: string) => any) | undefined;
15
+ onClose?: (() => any) | undefined;
16
16
  }>, {
17
17
  phone: string;
18
18
  confirmedText: string;
@@ -7,12 +7,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:modelValue": (value: boolean) => any;
9
9
  } & {
10
- close: () => any;
11
10
  complete: (value: string) => any;
11
+ close: () => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
13
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
- onClose?: (() => any) | undefined;
15
14
  onComplete?: ((value: string) => any) | undefined;
15
+ onClose?: (() => any) | undefined;
16
16
  }>, {
17
17
  phone: string;
18
18
  confirmedText: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pukaad-ui-lib",
3
- "version": "1.97.0",
3
+ "version": "1.98.0",
4
4
  "description": "pukaad-ui for MeMSG",
5
5
  "repository": {
6
6
  "type": "git",