pukaad-ui-lib 1.114.0 → 1.115.1

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 (43) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +162 -0
  3. package/dist/runtime/assets/css/main.css +1 -1
  4. package/dist/runtime/assets/css/system.css +1 -1
  5. package/dist/runtime/components/card/card-profile-about.d.vue.ts +1 -9
  6. package/dist/runtime/components/card/card-profile-about.vue +4 -11
  7. package/dist/runtime/components/card/card-profile-about.vue.d.ts +1 -9
  8. package/dist/runtime/components/dialog/dialog-email-OTP.d.vue.ts +2 -2
  9. package/dist/runtime/components/dialog/dialog-email-OTP.vue.d.ts +2 -2
  10. package/dist/runtime/components/dialog/dialog-phone-OTP.d.vue.ts +3 -3
  11. package/dist/runtime/components/dialog/dialog-phone-OTP.vue.d.ts +3 -3
  12. package/dist/runtime/components/drawer/drawer-profile-about.d.vue.ts +1 -9
  13. package/dist/runtime/components/drawer/drawer-profile-about.vue +5 -11
  14. package/dist/runtime/components/drawer/drawer-profile-about.vue.d.ts +1 -9
  15. package/dist/runtime/components/input/input-autocomplete.d.vue.ts +1 -1
  16. package/dist/runtime/components/input/input-autocomplete.vue.d.ts +1 -1
  17. package/dist/runtime/components/input/input-file.d.vue.ts +1 -1
  18. package/dist/runtime/components/input/input-file.vue.d.ts +1 -1
  19. package/dist/runtime/components/input/input-password.d.vue.ts +1 -1
  20. package/dist/runtime/components/input/input-password.vue.d.ts +1 -1
  21. package/dist/runtime/components/input/input-slider.d.vue.ts +1 -1
  22. package/dist/runtime/components/input/input-slider.vue.d.ts +1 -1
  23. package/dist/runtime/components/input/input-text-field.d.vue.ts +1 -1
  24. package/dist/runtime/components/input/input-text-field.vue.d.ts +1 -1
  25. package/dist/runtime/components/input/input-textarea.d.vue.ts +2 -2
  26. package/dist/runtime/components/input/input-textarea.vue.d.ts +2 -2
  27. package/dist/runtime/components/modal/modal-account-disabled-alert.d.vue.ts +2 -2
  28. package/dist/runtime/components/modal/modal-account-disabled-alert.vue.d.ts +2 -2
  29. package/dist/runtime/components/modal/modal-account-disabled-confirmed.d.vue.ts +2 -2
  30. package/dist/runtime/components/modal/modal-account-disabled-confirmed.vue.d.ts +2 -2
  31. package/dist/runtime/components/modal/modal-account-disabled-reason.d.vue.ts +2 -2
  32. package/dist/runtime/components/modal/modal-account-disabled-reason.vue.d.ts +2 -2
  33. package/dist/runtime/components/modal/modal-password-confirmed.d.vue.ts +3 -3
  34. package/dist/runtime/components/modal/modal-password-confirmed.vue.d.ts +3 -3
  35. package/dist/runtime/components/modal/modal-password-new.d.vue.ts +2 -2
  36. package/dist/runtime/components/modal/modal-password-new.vue.d.ts +2 -2
  37. package/dist/runtime/components/modal/modal-phone-OTP.d.vue.ts +3 -3
  38. package/dist/runtime/components/modal/modal-phone-OTP.vue.d.ts +3 -3
  39. package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.d.vue.ts +2 -2
  40. package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.vue.d.ts +2 -2
  41. package/dist/runtime/components/ui/native-select/NativeSelectOption.d.vue.ts +2 -2
  42. package/dist/runtime/components/ui/native-select/NativeSelectOption.vue.d.ts +2 -2
  43. package/package.json +2 -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.114.0",
4
+ "version": "1.115.1",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
package/dist/module.mjs CHANGED
@@ -67,6 +67,168 @@ const module$1 = defineNuxtModule({
67
67
  prefix: "shad",
68
68
  componentDir: resolver.resolve("./runtime/components/ui")
69
69
  });
70
+ await installModule("@nuxt/fonts", {
71
+ families: [
72
+ {
73
+ name: "Anuphan",
74
+ provider: "local",
75
+ fonts: [
76
+ {
77
+ src: resolver.resolve(
78
+ "./runtime/assets/css/fonts/Anuphan/Anuphan-Thin.ttf"
79
+ ),
80
+ weight: 100
81
+ },
82
+ {
83
+ src: resolver.resolve(
84
+ "./runtime/assets/css/fonts/Anuphan/Anuphan-ExtraLight.ttf"
85
+ ),
86
+ weight: 200
87
+ },
88
+ {
89
+ src: resolver.resolve(
90
+ "./runtime/assets/css/fonts/Anuphan/Anuphan-Light.ttf"
91
+ ),
92
+ weight: 300
93
+ },
94
+ {
95
+ src: resolver.resolve(
96
+ "./runtime/assets/css/fonts/Anuphan/Anuphan-Regular.ttf"
97
+ ),
98
+ weight: 400
99
+ },
100
+ {
101
+ src: resolver.resolve(
102
+ "./runtime/assets/css/fonts/Anuphan/Anuphan-Medium.ttf"
103
+ ),
104
+ weight: 500
105
+ },
106
+ {
107
+ src: resolver.resolve(
108
+ "./runtime/assets/css/fonts/Anuphan/Anuphan-SemiBold.ttf"
109
+ ),
110
+ weight: 600
111
+ },
112
+ {
113
+ src: resolver.resolve(
114
+ "./runtime/assets/css/fonts/Anuphan/Anuphan-Bold.ttf"
115
+ ),
116
+ weight: 700
117
+ }
118
+ ]
119
+ },
120
+ {
121
+ name: "Sarabun",
122
+ provider: "local",
123
+ fonts: [
124
+ {
125
+ src: resolver.resolve(
126
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-Thin.ttf"
127
+ ),
128
+ weight: 100
129
+ },
130
+ {
131
+ src: resolver.resolve(
132
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-ThinItalic.ttf"
133
+ ),
134
+ weight: 100,
135
+ style: "italic"
136
+ },
137
+ {
138
+ src: resolver.resolve(
139
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-ExtraLight.ttf"
140
+ ),
141
+ weight: 200
142
+ },
143
+ {
144
+ src: resolver.resolve(
145
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-ExtraLightItalic.ttf"
146
+ ),
147
+ weight: 200,
148
+ style: "italic"
149
+ },
150
+ {
151
+ src: resolver.resolve(
152
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-Light.ttf"
153
+ ),
154
+ weight: 300
155
+ },
156
+ {
157
+ src: resolver.resolve(
158
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-LightItalic.ttf"
159
+ ),
160
+ weight: 300,
161
+ style: "italic"
162
+ },
163
+ {
164
+ src: resolver.resolve(
165
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-Regular.ttf"
166
+ ),
167
+ weight: 400
168
+ },
169
+ {
170
+ src: resolver.resolve(
171
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-Italic.ttf"
172
+ ),
173
+ weight: 400,
174
+ style: "italic"
175
+ },
176
+ {
177
+ src: resolver.resolve(
178
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-Medium.ttf"
179
+ ),
180
+ weight: 500
181
+ },
182
+ {
183
+ src: resolver.resolve(
184
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-MediumItalic.ttf"
185
+ ),
186
+ weight: 500,
187
+ style: "italic"
188
+ },
189
+ {
190
+ src: resolver.resolve(
191
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-SemiBold.ttf"
192
+ ),
193
+ weight: 600
194
+ },
195
+ {
196
+ src: resolver.resolve(
197
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-SemiBoldItalic.ttf"
198
+ ),
199
+ weight: 600,
200
+ style: "italic"
201
+ },
202
+ {
203
+ src: resolver.resolve(
204
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-Bold.ttf"
205
+ ),
206
+ weight: 700
207
+ },
208
+ {
209
+ src: resolver.resolve(
210
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-BoldItalic.ttf"
211
+ ),
212
+ weight: 700,
213
+ style: "italic"
214
+ },
215
+ {
216
+ src: resolver.resolve(
217
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-ExtraBold.ttf"
218
+ ),
219
+ weight: 800
220
+ },
221
+ {
222
+ src: resolver.resolve(
223
+ "./runtime/assets/css/fonts/Sarabun/Sarabun-ExtraBoldItalic.ttf"
224
+ ),
225
+ weight: 800,
226
+ style: "italic"
227
+ }
228
+ ]
229
+ }
230
+ ]
231
+ });
70
232
  addPlugin(resolver.resolve("./runtime/plugins/re-captcha"));
71
233
  addPlugin(resolver.resolve("./runtime/plugins/loadingPage"));
72
234
  addPlugin(resolver.resolve("./runtime/plugins/alert"));
@@ -1 +1 @@
1
- @import "tailwindcss";@import "tw-animate-css";@import "./system.css";@import "./fonts/Anuphan.css";@import "./fonts/Sarabun.css";@import "./scroll-bar.css";@import "quill/dist/quill.snow.css";@custom-variant dark (&:is(.dark *));@theme inline{--radius-sm:calc(var(--radius) - 4px);--radius-md:calc(var(--radius) - 2px);--radius-lg:var(--radius);--radius-xl:calc(var(--radius) + 4px);--color-background:var(--background);--color-foreground:var(--foreground);--color-card:var(--card);--color-card-foreground:var(--card-foreground);--color-popover:var(--popover);--color-popover-foreground:var(--popover-foreground);--color-primary-foreground:var(--primary-foreground);--color-secondary-foreground:var(--secondary-foreground);--color-muted:var(--muted);--color-muted-foreground:var(--muted-foreground);--color-accent:var(--accent);--color-accent-foreground:var(--accent-foreground);--color-destructive:var(--destructive);--color-destructive-foreground:var(--destructive-foreground);--color-border:var(--border);--color-input:var(--input);--color-ring:var(--ring);--color-chart-1:var(--chart-1);--color-chart-2:var(--chart-2);--color-chart-3:var(--chart-3);--color-chart-4:var(--chart-4);--color-chart-5:var(--chart-5);--color-sidebar:var(--sidebar);--color-sidebar-foreground:var(--sidebar-foreground);--color-sidebar-primary:var(--sidebar-primary);--color-sidebar-primary-foreground:var(--sidebar-primary-foreground);--color-sidebar-accent:var(--sidebar-accent);--color-sidebar-accent-foreground:var(--sidebar-accent-foreground);--color-sidebar-border:var(--sidebar-border);--color-sidebar-ring:var(--sidebar-ring);--color-red:var(--red);--color-error:var(--error);--color-success:var(--success);--color-green:var(--green);--color-warning:var(--warning);--color-yellow:var(--yellow);--color-primary:var(--primary);--color-secondary:var(--secondary);--color-info:var(--info);--color-black:var(--black);--color-dark:var(--dark);--color-gray:var(--gray);--color-cloud:var(--cloud);--color-mercury:var(--mercury);--color-green-light:var(--green-light);--color-red-light:var(--red-light);--color-yellow-light:var(--yellow-light);--color-bright:var(--bright);--color-silver:var(--silver);--color-smoke:var(--smoke);--z-index-announce-tool:10;--z-index-dropdown:11;--z-index-overlay:12;--z-index-loading:13;--z-index-drawer:14;--z-index-modal:15;--z-index-toast:99998;--z-index-loading-page:99999}:root{--radius:0.625rem;--red:#b71c1c;--success:#43a047;--green:#1b5e20;--warning:#f9a825;--yellow:#fbc02d;--info:#e3f2fd;--black:#212121;--dark:#424242;--gray:#616161;--cloud:#c4c4c4;--mercury:#e0e0e0;--green-light:#e3f5e3;--red-light:#fde3e3;--yellow-light:#fef3c7;--bright:#f5f5f5;--silver:#f7f7f7;--smoke:#fafafa;--white:#fff;--background:var(--white);--foreground:var(--black);--card:var(--background);--card-foreground:var(--foreground);--popover:var(--background);--popover-foreground:var(--foreground);--primary:#1976b8;--primary-foreground:var(--white);--secondary:#22a7ef;--secondary-foreground:var(--white);--muted:oklch(0.97 0 0);--muted-foreground:var(--cloud);--accent:oklch(0.97 0 0);--accent-foreground:oklch(0.205 0 0);--destructive:#d32f2f;--destructive-foreground:var(--white);--border:var(--color-mercury);--input:var(--color-mercury);--ring:var(--mercury);--chart-1:oklch(0.646 0.222 41.116);--chart-2:oklch(0.6 0.118 184.704);--chart-3:oklch(0.398 0.07 227.392);--chart-4:oklch(0.828 0.189 84.429);--chart-5:oklch(0.769 0.188 70.08);--sidebar:oklch(0.985 0 0);--sidebar-foreground:var(--foreground);--sidebar-primary:oklch(0.205 0 0);--sidebar-primary-foreground:oklch(0.985 0 0);--sidebar-accent:oklch(0.97 0 0);--sidebar-accent-foreground:oklch(0.205 0 0);--sidebar-border:var(--color-mercury);--sidebar-ring:var(--color-mercury)}.dark{--background:oklch(0.145 0 0);--foreground:oklch(0.985 0 0);--card:oklch(0.145 0 0);--card-foreground:oklch(0.985 0 0);--popover:oklch(0.145 0 0);--popover-foreground:oklch(0.985 0 0);--primary:oklch(0.985 0 0);--primary-foreground:oklch(0.205 0 0);--secondary:oklch(0.269 0 0);--secondary-foreground:oklch(0.985 0 0);--muted:oklch(0.269 0 0);--muted-foreground:oklch(0.708 0 0);--accent:oklch(0.269 0 0);--accent-foreground:oklch(0.985 0 0);--destructive:oklch(0.396 0.141 25.723);--destructive-foreground:oklch(0.637 0.237 25.331);--border:oklch(0.269 0 0);--input:oklch(0.269 0 0);--ring:oklch(0.439 0 0);--chart-1:oklch(0.488 0.243 264.376);--chart-2:oklch(0.696 0.17 162.48);--chart-3:oklch(0.769 0.188 70.08);--chart-4:oklch(0.627 0.265 303.9);--chart-5:oklch(0.645 0.246 16.439);--sidebar:oklch(0.205 0 0);--sidebar-foreground:oklch(0.985 0 0);--sidebar-primary:oklch(0.488 0.243 264.376);--sidebar-primary-foreground:oklch(0.985 0 0);--sidebar-accent:oklch(0.269 0 0);--sidebar-accent-foreground:oklch(0.985 0 0);--sidebar-border:oklch(0.269 0 0);--sidebar-ring:oklch(0.439 0 0)}@layer base{*{@apply border-border outline-ring/50}body{@apply bg-background text-foreground}}
1
+ @import "tailwindcss";@import "tw-animate-css";@import "./system.css";@import "./scroll-bar.css";@import "quill/dist/quill.snow.css";@custom-variant dark (&:is(.dark *));@theme inline{--radius-sm:calc(var(--radius) - 4px);--radius-md:calc(var(--radius) - 2px);--radius-lg:var(--radius);--radius-xl:calc(var(--radius) + 4px);--color-background:var(--background);--color-foreground:var(--foreground);--color-card:var(--card);--color-card-foreground:var(--card-foreground);--color-popover:var(--popover);--color-popover-foreground:var(--popover-foreground);--color-primary-foreground:var(--primary-foreground);--color-secondary-foreground:var(--secondary-foreground);--color-muted:var(--muted);--color-muted-foreground:var(--muted-foreground);--color-accent:var(--accent);--color-accent-foreground:var(--accent-foreground);--color-destructive:var(--destructive);--color-destructive-foreground:var(--destructive-foreground);--color-border:var(--border);--color-input:var(--input);--color-ring:var(--ring);--color-chart-1:var(--chart-1);--color-chart-2:var(--chart-2);--color-chart-3:var(--chart-3);--color-chart-4:var(--chart-4);--color-chart-5:var(--chart-5);--color-sidebar:var(--sidebar);--color-sidebar-foreground:var(--sidebar-foreground);--color-sidebar-primary:var(--sidebar-primary);--color-sidebar-primary-foreground:var(--sidebar-primary-foreground);--color-sidebar-accent:var(--sidebar-accent);--color-sidebar-accent-foreground:var(--sidebar-accent-foreground);--color-sidebar-border:var(--sidebar-border);--color-sidebar-ring:var(--sidebar-ring);--color-red:var(--red);--color-error:var(--error);--color-success:var(--success);--color-green:var(--green);--color-warning:var(--warning);--color-yellow:var(--yellow);--color-primary:var(--primary);--color-secondary:var(--secondary);--color-info:var(--info);--color-black:var(--black);--color-dark:var(--dark);--color-gray:var(--gray);--color-cloud:var(--cloud);--color-mercury:var(--mercury);--color-green-light:var(--green-light);--color-red-light:var(--red-light);--color-yellow-light:var(--yellow-light);--color-bright:var(--bright);--color-silver:var(--silver);--color-smoke:var(--smoke);--z-index-announce-tool:10;--z-index-dropdown:11;--z-index-overlay:12;--z-index-loading:13;--z-index-drawer:14;--z-index-modal:15;--z-index-toast:99998;--z-index-loading-page:99999}:root{--radius:0.625rem;--red:#b71c1c;--success:#43a047;--green:#1b5e20;--warning:#f9a825;--yellow:#fbc02d;--info:#e3f2fd;--black:#212121;--dark:#424242;--gray:#616161;--cloud:#c4c4c4;--mercury:#e0e0e0;--green-light:#e3f5e3;--red-light:#fde3e3;--yellow-light:#fef3c7;--bright:#f5f5f5;--silver:#f7f7f7;--smoke:#fafafa;--white:#fff;--background:var(--white);--foreground:var(--black);--card:var(--background);--card-foreground:var(--foreground);--popover:var(--background);--popover-foreground:var(--foreground);--primary:#1976b8;--primary-foreground:var(--white);--secondary:#22a7ef;--secondary-foreground:var(--white);--muted:oklch(0.97 0 0);--muted-foreground:var(--cloud);--accent:oklch(0.97 0 0);--accent-foreground:oklch(0.205 0 0);--destructive:#d32f2f;--destructive-foreground:var(--white);--border:var(--color-mercury);--input:var(--color-mercury);--ring:var(--mercury);--chart-1:oklch(0.646 0.222 41.116);--chart-2:oklch(0.6 0.118 184.704);--chart-3:oklch(0.398 0.07 227.392);--chart-4:oklch(0.828 0.189 84.429);--chart-5:oklch(0.769 0.188 70.08);--sidebar:oklch(0.985 0 0);--sidebar-foreground:var(--foreground);--sidebar-primary:oklch(0.205 0 0);--sidebar-primary-foreground:oklch(0.985 0 0);--sidebar-accent:oklch(0.97 0 0);--sidebar-accent-foreground:oklch(0.205 0 0);--sidebar-border:var(--color-mercury);--sidebar-ring:var(--color-mercury)}.dark{--background:oklch(0.145 0 0);--foreground:oklch(0.985 0 0);--card:oklch(0.145 0 0);--card-foreground:oklch(0.985 0 0);--popover:oklch(0.145 0 0);--popover-foreground:oklch(0.985 0 0);--primary:oklch(0.985 0 0);--primary-foreground:oklch(0.205 0 0);--secondary:oklch(0.269 0 0);--secondary-foreground:oklch(0.985 0 0);--muted:oklch(0.269 0 0);--muted-foreground:oklch(0.708 0 0);--accent:oklch(0.269 0 0);--accent-foreground:oklch(0.985 0 0);--destructive:oklch(0.396 0.141 25.723);--destructive-foreground:oklch(0.637 0.237 25.331);--border:oklch(0.269 0 0);--input:oklch(0.269 0 0);--ring:oklch(0.439 0 0);--chart-1:oklch(0.488 0.243 264.376);--chart-2:oklch(0.696 0.17 162.48);--chart-3:oklch(0.769 0.188 70.08);--chart-4:oklch(0.627 0.265 303.9);--chart-5:oklch(0.645 0.246 16.439);--sidebar:oklch(0.205 0 0);--sidebar-foreground:oklch(0.985 0 0);--sidebar-primary:oklch(0.488 0.243 264.376);--sidebar-primary-foreground:oklch(0.985 0 0);--sidebar-accent:oklch(0.269 0 0);--sidebar-accent-foreground:oklch(0.985 0 0);--sidebar-border:oklch(0.269 0 0);--sidebar-ring:oklch(0.439 0 0)}@layer base{*{@apply border-border outline-ring/50}body{@apply bg-background text-foreground}}
@@ -1 +1 @@
1
- .font-title-large-prominent{font-family:Anuphan-SemiBold;font-size:22px;font-weight:600;line-height:26px}.font-title-large{font-family:Anuphan-Regular;font-size:22px;font-weight:400;line-height:26px}.font-title-medium-prominent{font-family:Anuphan-SemiBold;font-size:20px;font-weight:600;line-height:24px}.font-title-medium{font-family:Anuphan-Regular;font-size:20px;font-weight:400;line-height:24px}.font-title-small-prominent{font-family:Anuphan-Medium;font-size:18px;font-weight:500;line-height:24px}.font-title-small{font-family:Anuphan-Regular;font-size:18px;font-weight:400;line-height:22px}.font-body-large-prominent{font-family:Sarabun-Medium;font-size:16px;font-weight:500;line-height:26px}.font-body-large{font-family:Sarabun-Regular;font-size:16px;font-weight:400;line-height:26px}.font-body-medium-prominent{font-family:Sarabun-SemiBold;font-size:14px;font-weight:600;line-height:20px}.font-body-medium{font-family:Sarabun-Regular;font-size:14px;font-weight:400;line-height:20px}.font-body-small-prominent{font-family:Sarabun-SemiBold;font-size:12px;font-weight:600;line-height:16px}.font-body-small{font-family:Sarabun-Regular;font-size:12px;font-weight:400;line-height:16px}.font-display-large{font-size:46px;line-height:52px}.font-display-large,.font-display-medium{font-family:Anuphan-Regular;font-weight:400}.font-display-medium{font-size:40px;line-height:48px}.font-display-small-prominent{font-family:Anuphan-Bold;font-size:34px;font-weight:700;line-height:40px}.font-display-small{font-family:Anuphan-Regular;font-size:34px;font-weight:400;line-height:40px}.font-headline-large-prominent{font-family:Anuphan-Bold;font-size:32px;line-height:40px}.font-headline-large{font-family:Anuphan-Regular;font-size:32px;font-weight:400;line-height:40px}.font-headline-medium-prominent{font-family:Anuphan-Bold;font-size:26px;font-weight:700;line-height:32px}.font-headline-medium{font-family:Anuphan-Regular;font-size:26px;font-weight:400;line-height:32px}.font-headline-small-prominent{font-family:Anuphan-Medium;font-size:24px;line-height:31.2px}.font-headline-small{font-family:Anuphan-Regular;font-size:24px;font-weight:400;line-height:32px}.font-headline-x-small-prominent{font-family:Anuphan-Bold;font-size:16px;line-height:inherit}.font-label-serif-large-prominent{font-family:Sarabun-SemiBold;font-size:14px;font-weight:600;line-height:20px}.font-label-serif-large{font-family:Sarabun-Regular;font-size:14px;font-weight:400;line-height:20px}.font-label-serif-medium-prominent{font-family:Sarabun-SemiBold;font-size:14px;font-weight:600;line-height:18px}.font-label-serif-medium{font-family:Sarabun-Regular;font-size:12px;font-weight:400;line-height:16px}.font-label-serif-small-prominent{font-family:Sarabun-SemiBold;font-size:12px;font-weight:600;line-height:16px}.font-label-serif-small{font-family:Sarabun-Regular;font-size:10px;font-weight:400;line-height:14px}.font-label-sans-serif-large-prominent{font-family:Anuphan-SemiBold;font-size:14px;font-weight:600;line-height:20px}.font-label-sans-serif-large{font-family:Anuphan-Regular;font-size:14px;font-weight:400;line-height:20px}.font-label-sans-serif-medium-prominent{font-family:Anuphan-SemiBold;font-size:12px;font-weight:600;line-height:16px}.font-label-sans-serif-medium{font-family:Anuphan-Regular;font-size:12px;font-weight:400;line-height:16px}.font-label-sans-serif-small-prominent{font-family:Anuphan-SemiBold;font-size:10px;font-weight:600;line-height:14px}.font-label-sans-serif-small{font-family:Anuphan-Regular;font-size:10px;font-weight:400;line-height:14px}.font-number-extra-large-prominent{font-family:Anuphan-Bold;font-size:58px;line-height:normal}
1
+ .font-title-large-prominent{font-weight:600}.font-title-large,.font-title-large-prominent{font-family:Anuphan,sans-serif;font-size:22px;line-height:26px}.font-title-large{font-weight:400}.font-title-medium-prominent{font-weight:600}.font-title-medium,.font-title-medium-prominent{font-family:Anuphan,sans-serif;font-size:20px;line-height:24px}.font-title-medium{font-weight:400}.font-title-small-prominent{font-family:Anuphan,sans-serif;font-size:18px;font-weight:500;line-height:24px}.font-title-small{font-family:Anuphan,sans-serif;font-size:18px;font-weight:400;line-height:22px}.font-body-large-prominent{font-weight:500}.font-body-large,.font-body-large-prominent{font-family:Sarabun,serif;font-size:16px;line-height:26px}.font-body-large{font-weight:400}.font-body-medium-prominent{font-weight:600}.font-body-medium,.font-body-medium-prominent{font-family:Sarabun,serif;font-size:14px;line-height:20px}.font-body-medium{font-weight:400}.font-body-small-prominent{font-weight:600}.font-body-small,.font-body-small-prominent{font-family:Sarabun,serif;font-size:12px;line-height:16px}.font-body-small{font-weight:400}.font-display-large{font-size:46px;line-height:52px}.font-display-large,.font-display-medium{font-family:Anuphan,sans-serif;font-weight:400}.font-display-medium{font-size:40px;line-height:48px}.font-display-small-prominent{font-weight:700}.font-display-small,.font-display-small-prominent{font-family:Anuphan,sans-serif;font-size:34px;line-height:40px}.font-display-small{font-weight:400}.font-headline-large-prominent{font-weight:700}.font-headline-large,.font-headline-large-prominent{font-family:Anuphan,sans-serif;font-size:32px;line-height:40px}.font-headline-large{font-weight:400}.font-headline-medium-prominent{font-weight:700}.font-headline-medium,.font-headline-medium-prominent{font-family:Anuphan,sans-serif;font-size:26px;line-height:32px}.font-headline-medium{font-weight:400}.font-headline-small-prominent{font-family:Anuphan,sans-serif;font-size:24px;font-weight:500;line-height:31.2px}.font-headline-small{font-family:Anuphan,sans-serif;font-size:24px;font-weight:400;line-height:32px}.font-headline-x-small-prominent{font-family:Anuphan,sans-serif;font-size:16px;font-weight:700;line-height:inherit}.font-label-serif-large-prominent{font-family:Sarabun,serif;font-size:14px;font-weight:600;line-height:20px}.font-label-serif-large{font-family:Sarabun,serif;font-size:14px;font-weight:400;line-height:20px}.font-label-serif-medium-prominent{font-family:Sarabun,serif;font-size:14px;font-weight:600;line-height:18px}.font-label-serif-medium{font-family:Sarabun,serif;font-size:12px;font-weight:400;line-height:16px}.font-label-serif-small-prominent{font-family:Sarabun,serif;font-size:12px;font-weight:600;line-height:16px}.font-label-serif-small{font-family:Sarabun,serif;font-size:10px;font-weight:400;line-height:14px}.font-label-sans-serif-large-prominent{font-family:Anuphan,sans-serif;font-size:14px;font-weight:600;line-height:20px}.font-label-sans-serif-large{font-family:Anuphan,sans-serif;font-size:14px;font-weight:400;line-height:20px}.font-label-sans-serif-medium-prominent{font-family:Anuphan,sans-serif;font-size:12px;font-weight:600;line-height:16px}.font-label-sans-serif-medium{font-family:Anuphan,sans-serif;font-size:12px;font-weight:400;line-height:16px}.font-label-sans-serif-small-prominent{font-family:Anuphan,sans-serif;font-size:10px;font-weight:600;line-height:14px}.font-label-sans-serif-small{font-family:Anuphan,sans-serif;font-size:10px;font-weight:400;line-height:14px}.font-number-extra-large-prominent{font-family:Anuphan,sans-serif;font-size:58px;font-weight:700;line-height:normal}
@@ -2,18 +2,10 @@ export interface CardProfileAboutLink {
2
2
  name: string;
3
3
  link: string;
4
4
  }
5
- export interface Address {
6
- province_id?: number;
7
- amphur_id?: number;
8
- tambon_id?: number;
9
- zipcode?: number;
10
- detail_address?: string;
11
- full_address?: string;
12
- }
13
5
  export interface CardProfileAboutItem {
14
6
  description: string;
15
7
  category: number;
16
- address: Address;
8
+ address: string;
17
9
  phone: string;
18
10
  links: CardProfileAboutLink[];
19
11
  }
@@ -39,8 +39,8 @@
39
39
  <div class="pt-[3px]">
40
40
  <Icon name="lucide:map-pin" :size="20" class="text-primary" />
41
41
  </div>
42
- <div :class="!item.address.full_address ? 'text-cloud' : ''">
43
- {{ item.address.full_address || "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48" }}
42
+ <div :class="!item.address ? 'text-cloud' : ''">
43
+ {{ item.address || "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48" }}
44
44
  </div>
45
45
  </div>
46
46
 
@@ -89,14 +89,7 @@ const props = defineProps({
89
89
  item: { type: Object, required: false, default: () => ({
90
90
  description: "",
91
91
  category: 0,
92
- address: {
93
- province_id: 0,
94
- amphur_id: 0,
95
- tambon_id: 0,
96
- zipcode: 0,
97
- detail_address: "",
98
- full_address: ""
99
- },
92
+ address: "",
100
93
  phone: "",
101
94
  links: []
102
95
  }) }
@@ -104,7 +97,7 @@ const props = defineProps({
104
97
  const isShowEdit = ref(false);
105
98
  const item = ref({ ...props.item });
106
99
  const isEmpty = computed(() => {
107
- return !item.value.description && !item.value.address?.full_address && !item.value.phone;
100
+ return !item.value.description && !item.value.address && !item.value.phone;
108
101
  });
109
102
  const onUpdateAbout = (val) => {
110
103
  item.value = val;
@@ -2,18 +2,10 @@ export interface CardProfileAboutLink {
2
2
  name: string;
3
3
  link: string;
4
4
  }
5
- export interface Address {
6
- province_id?: number;
7
- amphur_id?: number;
8
- tambon_id?: number;
9
- zipcode?: number;
10
- detail_address?: string;
11
- full_address?: string;
12
- }
13
5
  export interface CardProfileAboutItem {
14
6
  description: string;
15
7
  category: number;
16
- address: Address;
8
+ address: string;
17
9
  phone: string;
18
10
  links: CardProfileAboutLink[];
19
11
  }
@@ -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
- complete: () => any;
11
10
  close: () => any;
11
+ complete: () => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
13
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
- onComplete?: (() => any) | undefined;
15
14
  onClose?: (() => any) | undefined;
15
+ onComplete?: (() => 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
- complete: () => any;
11
10
  close: () => any;
11
+ complete: () => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
13
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
- onComplete?: (() => any) | undefined;
15
14
  onClose?: (() => any) | undefined;
15
+ onComplete?: (() => any) | undefined;
16
16
  }>, {
17
17
  confirmedText: string;
18
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -7,15 +7,15 @@ 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
- complete: (value: string) => any;
11
10
  close: () => any;
11
+ complete: (value: string) => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
13
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
- onComplete?: ((value: string) => any) | undefined;
15
14
  onClose?: (() => any) | undefined;
15
+ onComplete?: ((value: string) => any) | undefined;
16
16
  }>, {
17
- confirmedText: string;
18
17
  phone: string;
18
+ confirmedText: string;
19
19
  phoneLabel: string;
20
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  declare const _default: typeof __VLS_export;
@@ -7,15 +7,15 @@ 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
- complete: (value: string) => any;
11
10
  close: () => any;
11
+ complete: (value: string) => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
13
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
- onComplete?: ((value: string) => any) | undefined;
15
14
  onClose?: (() => any) | undefined;
15
+ onComplete?: ((value: string) => any) | undefined;
16
16
  }>, {
17
- confirmedText: string;
18
17
  phone: string;
18
+ confirmedText: string;
19
19
  phoneLabel: string;
20
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  declare const _default: typeof __VLS_export;
@@ -2,18 +2,10 @@ export interface InputLinkItem {
2
2
  name: string;
3
3
  link?: string;
4
4
  }
5
- export interface Address {
6
- province_id?: number;
7
- amphur_id?: number;
8
- tambon_id?: number;
9
- zipcode?: number;
10
- detail_address?: string;
11
- full_address?: string;
12
- }
13
5
  export interface DrawerProfileAboutItem {
14
6
  description: string;
15
7
  category: string;
16
- address: Address;
8
+ address: string;
17
9
  phone: string;
18
10
  links: InputLinkItem[];
19
11
  }
@@ -17,12 +17,13 @@
17
17
  v-model="form.description"
18
18
  class="min-h-[120px]"
19
19
  />
20
- <InputAddress
20
+ <InputTextField
21
21
  name="address"
22
+ placeholder="บ้านเลขที่, ถนน, เขต/อำเภอ, จังหวัด, รหัสไปรษณีย์"
23
+ label="ที่อยู่"
22
24
  v-model="form.address"
23
- required
24
- requiredDetail
25
25
  />
26
+
26
27
  <div class="flex flex-col gap-[8px]">
27
28
  <InputTextField
28
29
  name="phone"
@@ -56,14 +57,7 @@ const props = defineProps({
56
57
  item: { type: Object, required: false, default: () => ({
57
58
  description: "",
58
59
  category: "",
59
- address: {
60
- province_id: 0,
61
- amphur_id: 0,
62
- tambon_id: 0,
63
- zipcode: 0,
64
- detail_address: "",
65
- full_address: ""
66
- },
60
+ address: "",
67
61
  phone: "",
68
62
  links: []
69
63
  }) }
@@ -2,18 +2,10 @@ export interface InputLinkItem {
2
2
  name: string;
3
3
  link?: string;
4
4
  }
5
- export interface Address {
6
- province_id?: number;
7
- amphur_id?: number;
8
- tambon_id?: number;
9
- zipcode?: number;
10
- detail_address?: string;
11
- full_address?: string;
12
- }
13
5
  export interface DrawerProfileAboutItem {
14
6
  description: string;
15
7
  category: string;
16
- address: Address;
8
+ address: string;
17
9
  phone: string;
18
10
  links: InputLinkItem[];
19
11
  }
@@ -38,10 +38,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
38
38
  description: string;
39
39
  options: AutocompleteOption[] | string[] | number[];
40
40
  placeholder: string;
41
+ limit: number;
41
42
  disabledErrorMessage: boolean;
42
43
  disabledBorder: boolean;
43
44
  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;
@@ -38,10 +38,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
38
38
  description: string;
39
39
  options: AutocompleteOption[] | string[] | number[];
40
40
  placeholder: string;
41
+ limit: number;
41
42
  disabledErrorMessage: boolean;
42
43
  disabledBorder: boolean;
43
44
  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,9 +26,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
26
26
  fullWidth: boolean;
27
27
  fullHeight: boolean;
28
28
  name: string;
29
- disabledErrorMessage: boolean;
30
29
  limit: number;
31
30
  accept: string;
31
+ disabledErrorMessage: boolean;
32
32
  labelIcon: string;
33
33
  disabledDrop: boolean;
34
34
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -26,9 +26,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
26
26
  fullWidth: boolean;
27
27
  fullHeight: boolean;
28
28
  name: string;
29
- disabledErrorMessage: boolean;
30
29
  limit: number;
31
30
  accept: string;
31
+ disabledErrorMessage: boolean;
32
32
  labelIcon: string;
33
33
  disabledDrop: boolean;
34
34
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -18,8 +18,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
18
18
  }>, {
19
19
  id: string;
20
20
  name: string;
21
- new: boolean;
22
21
  disabledForgotPassword: boolean;
22
+ new: boolean;
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
  }>, {
19
19
  id: string;
20
20
  name: string;
21
- new: boolean;
22
21
  disabledForgotPassword: boolean;
22
+ new: boolean;
23
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
24
  declare const _default: typeof __VLS_export;
25
25
  export default _default;
@@ -12,9 +12,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
12
12
  label: string;
13
13
  color: InputSliderColor;
14
14
  fullWidth: boolean;
15
+ step: number;
15
16
  max: number;
16
17
  min: number;
17
- step: number;
18
18
  lineHeight: number | string;
19
19
  appearance: boolean;
20
20
  thumbSize: number | string;
@@ -12,9 +12,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
12
12
  label: string;
13
13
  color: InputSliderColor;
14
14
  fullWidth: boolean;
15
+ step: number;
15
16
  max: number;
16
17
  min: number;
17
- step: number;
18
18
  lineHeight: number | string;
19
19
  appearance: boolean;
20
20
  thumbSize: number | string;
@@ -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;
62
63
  disabledErrorMessage: boolean;
63
64
  disabledBorder: boolean;
64
65
  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;
62
63
  disabledErrorMessage: boolean;
63
64
  disabledBorder: boolean;
64
65
  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,12 +44,12 @@ 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
+ resize: "none" | "both" | "horizontal" | "vertical";
47
49
  disabledErrorMessage: boolean;
48
50
  disabledBorder: boolean;
49
51
  showCounter: boolean;
50
- limit: number;
51
52
  readonly: boolean;
52
- resize: "none" | "both" | "horizontal" | "vertical";
53
53
  rows: number;
54
54
  heightScroll: boolean;
55
55
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -44,12 +44,12 @@ 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
+ resize: "none" | "both" | "horizontal" | "vertical";
47
49
  disabledErrorMessage: boolean;
48
50
  disabledBorder: boolean;
49
51
  showCounter: boolean;
50
- limit: number;
51
52
  readonly: boolean;
52
- resize: "none" | "both" | "horizontal" | "vertical";
53
53
  rows: number;
54
54
  heightScroll: boolean;
55
55
  }, {}, {}, {}, 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
- complete: () => any;
12
11
  close: () => any;
12
+ complete: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
- onComplete?: (() => any) | undefined;
16
15
  onClose?: (() => any) | undefined;
16
+ onComplete?: (() => 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
- complete: () => any;
12
11
  close: () => any;
12
+ complete: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
- onComplete?: (() => any) | undefined;
16
15
  onClose?: (() => any) | undefined;
16
+ onComplete?: (() => 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
- complete: () => any;
12
11
  close: () => any;
12
+ complete: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
- onComplete?: (() => any) | undefined;
16
15
  onClose?: (() => any) | undefined;
16
+ onComplete?: (() => 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
- complete: () => any;
12
11
  close: () => any;
12
+ complete: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
- onComplete?: (() => any) | undefined;
16
15
  onClose?: (() => any) | undefined;
16
+ onComplete?: (() => 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
- complete: () => any;
12
11
  close: () => any;
12
+ complete: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
- onComplete?: (() => any) | undefined;
16
15
  onClose?: (() => any) | undefined;
16
+ onComplete?: (() => 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
- complete: () => any;
12
11
  close: () => any;
12
+ complete: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
- onComplete?: (() => any) | undefined;
16
15
  onClose?: (() => any) | undefined;
16
+ onComplete?: (() => any) | undefined;
17
17
  }>, {
18
18
  confirmedText: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -12,20 +12,20 @@ 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;
15
16
  complete: (data: {
16
17
  secId: string;
17
18
  }) => 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;
21
22
  onComplete?: ((data: {
22
23
  secId: string;
23
24
  }) => any) | undefined;
24
- onClose?: (() => any) | undefined;
25
25
  }>, {
26
26
  title: string;
27
- disabledForgotPassword: boolean;
28
27
  confirmText: string;
28
+ disabledForgotPassword: boolean;
29
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
30
30
  declare const _default: typeof __VLS_export;
31
31
  export default _default;
@@ -12,20 +12,20 @@ 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;
15
16
  complete: (data: {
16
17
  secId: string;
17
18
  }) => 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;
21
22
  onComplete?: ((data: {
22
23
  secId: string;
23
24
  }) => any) | undefined;
24
- onClose?: (() => any) | undefined;
25
25
  }>, {
26
26
  title: string;
27
- disabledForgotPassword: boolean;
28
27
  confirmText: string;
28
+ disabledForgotPassword: boolean;
29
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
30
30
  declare const _default: typeof __VLS_export;
31
31
  export default _default;
@@ -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;
14
15
  complete: (data: {
15
16
  secId: string;
16
17
  }) => 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;
20
21
  onComplete?: ((data: {
21
22
  secId: string;
22
23
  }) => 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;
14
15
  complete: (data: {
15
16
  secId: string;
16
17
  }) => 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;
20
21
  onComplete?: ((data: {
21
22
  secId: string;
22
23
  }) => any) | undefined;
23
- onClose?: (() => any) | undefined;
24
24
  }>, {
25
25
  title: string;
26
26
  confirmText: string;
@@ -7,15 +7,15 @@ 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
- complete: (value: string) => any;
11
10
  close: () => any;
11
+ complete: (value: string) => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
13
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
- onComplete?: ((value: string) => any) | undefined;
15
14
  onClose?: (() => any) | undefined;
15
+ onComplete?: ((value: string) => any) | undefined;
16
16
  }>, {
17
- confirmedText: string;
18
17
  phone: string;
18
+ confirmedText: string;
19
19
  phoneLabel: string;
20
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  declare const _default: typeof __VLS_export;
@@ -7,15 +7,15 @@ 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
- complete: (value: string) => any;
11
10
  close: () => any;
11
+ complete: (value: string) => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
13
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
- onComplete?: ((value: string) => any) | undefined;
15
14
  onClose?: (() => any) | undefined;
15
+ onComplete?: ((value: string) => any) | undefined;
16
16
  }>, {
17
- confirmedText: string;
18
17
  phone: string;
18
+ confirmedText: string;
19
19
  phoneLabel: string;
20
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  declare const _default: typeof __VLS_export;
@@ -59,7 +59,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
59
59
  'aria-colindex'?: (string | number) | undefined;
60
60
  'aria-colspan'?: (string | number) | undefined;
61
61
  'aria-controls'?: string | undefined | undefined;
62
- 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "step" | "location" | "date" | undefined;
62
+ 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "date" | "step" | "location" | undefined;
63
63
  'aria-describedby'?: string | undefined | undefined;
64
64
  'aria-details'?: string | undefined | undefined;
65
65
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -253,7 +253,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
253
253
  'aria-colindex'?: (string | number) | undefined;
254
254
  'aria-colspan'?: (string | number) | undefined;
255
255
  'aria-controls'?: string | undefined | undefined;
256
- 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "step" | "location" | "date" | undefined;
256
+ 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "date" | "step" | "location" | undefined;
257
257
  'aria-describedby'?: string | undefined | undefined;
258
258
  'aria-details'?: string | undefined | undefined;
259
259
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -59,7 +59,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
59
59
  'aria-colindex'?: (string | number) | undefined;
60
60
  'aria-colspan'?: (string | number) | undefined;
61
61
  'aria-controls'?: string | undefined | undefined;
62
- 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "step" | "location" | "date" | undefined;
62
+ 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "date" | "step" | "location" | undefined;
63
63
  'aria-describedby'?: string | undefined | undefined;
64
64
  'aria-details'?: string | undefined | undefined;
65
65
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -253,7 +253,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
253
253
  'aria-colindex'?: (string | number) | undefined;
254
254
  'aria-colspan'?: (string | number) | undefined;
255
255
  'aria-controls'?: string | undefined | undefined;
256
- 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "step" | "location" | "date" | undefined;
256
+ 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "date" | "step" | "location" | undefined;
257
257
  'aria-describedby'?: string | undefined | undefined;
258
258
  'aria-details'?: string | undefined | undefined;
259
259
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -61,7 +61,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
61
61
  'aria-colindex'?: (string | number) | undefined;
62
62
  'aria-colspan'?: (string | number) | undefined;
63
63
  'aria-controls'?: string | undefined | undefined;
64
- 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "step" | "location" | "date" | undefined;
64
+ 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "date" | "step" | "location" | undefined;
65
65
  'aria-describedby'?: string | undefined | undefined;
66
66
  'aria-details'?: string | undefined | undefined;
67
67
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -257,7 +257,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
257
257
  'aria-colindex'?: (string | number) | undefined;
258
258
  'aria-colspan'?: (string | number) | undefined;
259
259
  'aria-controls'?: string | undefined | undefined;
260
- 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "step" | "location" | "date" | undefined;
260
+ 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "date" | "step" | "location" | undefined;
261
261
  'aria-describedby'?: string | undefined | undefined;
262
262
  'aria-details'?: string | undefined | undefined;
263
263
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -61,7 +61,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
61
61
  'aria-colindex'?: (string | number) | undefined;
62
62
  'aria-colspan'?: (string | number) | undefined;
63
63
  'aria-controls'?: string | undefined | undefined;
64
- 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "step" | "location" | "date" | undefined;
64
+ 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "date" | "step" | "location" | undefined;
65
65
  'aria-describedby'?: string | undefined | undefined;
66
66
  'aria-details'?: string | undefined | undefined;
67
67
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -257,7 +257,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
257
257
  'aria-colindex'?: (string | number) | undefined;
258
258
  'aria-colspan'?: (string | number) | undefined;
259
259
  'aria-controls'?: string | undefined | undefined;
260
- 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "step" | "location" | "date" | undefined;
260
+ 'aria-current'?: "time" | "page" | (boolean | "true" | "false") | "date" | "step" | "location" | undefined;
261
261
  'aria-describedby'?: string | undefined | undefined;
262
262
  'aria-details'?: string | undefined | undefined;
263
263
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pukaad-ui-lib",
3
- "version": "1.114.0",
3
+ "version": "1.115.1",
4
4
  "description": "pukaad-ui for MeMSG",
5
5
  "repository": {
6
6
  "type": "git",
@@ -78,6 +78,7 @@
78
78
  "@iconify-json/lucide": "^1.2.72",
79
79
  "@nuxt/devtools": "^1.7.0",
80
80
  "@nuxt/eslint-config": "^0.7.5",
81
+ "@nuxt/fonts": "^0.13.0",
81
82
  "@nuxt/kit": "^4.0.0",
82
83
  "@nuxt/module-builder": "^1.0.1",
83
84
  "@nuxt/schema": "^4.0.0",