@bagelink/vue 0.0.411 → 0.0.417

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 (75) hide show
  1. package/dist/components/Accordion.vue.d.ts +1 -1
  2. package/dist/components/AccordionItem.vue.d.ts +2 -2
  3. package/dist/components/Alert.vue.d.ts +2 -2
  4. package/dist/components/Avatar.vue.d.ts +2 -2
  5. package/dist/components/Avatar.vue.d.ts.map +1 -1
  6. package/dist/components/Badge.vue.d.ts +3 -2
  7. package/dist/components/BglVideo.vue.d.ts +1 -1
  8. package/dist/components/Btn.vue.d.ts +4 -3
  9. package/dist/components/Card.vue.d.ts +2 -2
  10. package/dist/components/Carousel.vue.d.ts +3 -3
  11. package/dist/components/DataPreview.vue.d.ts +10 -9
  12. package/dist/components/ListItem.vue.d.ts +2 -2
  13. package/dist/components/ListView.vue.d.ts +1 -1
  14. package/dist/components/MaterialIcon.vue.d.ts +4 -3
  15. package/dist/components/Modal.vue.d.ts +5 -5
  16. package/dist/components/ModalConfirm.vue.d.ts +3 -3
  17. package/dist/components/ModalConfirm.vue.d.ts.map +1 -1
  18. package/dist/components/ModalForm.vue.d.ts +27 -26
  19. package/dist/components/NavBar.vue.d.ts +4 -3
  20. package/dist/components/NavBar.vue.d.ts.map +1 -1
  21. package/dist/components/PageTitle.vue.d.ts +2 -2
  22. package/dist/components/RouterWrapper.vue.d.ts +1 -1
  23. package/dist/components/TableSchema.vue.d.ts +383 -6
  24. package/dist/components/TableSchema.vue.d.ts.map +1 -1
  25. package/dist/components/Title.vue.d.ts +2 -2
  26. package/dist/components/TopBar.vue.d.ts +1 -1
  27. package/dist/components/dashboard/Lineart.vue.d.ts +4 -3
  28. package/dist/components/form/BglField.vue.d.ts +5 -4
  29. package/dist/components/form/BglForm.vue.d.ts +6 -5
  30. package/dist/components/form/BglForm.vue.d.ts.map +1 -1
  31. package/dist/components/form/inputs/CheckInput.vue.d.ts +14 -14
  32. package/dist/components/form/inputs/Checkbox.vue.d.ts +4 -4
  33. package/dist/components/form/inputs/ColorPicker.vue.d.ts +3 -3
  34. package/dist/components/form/inputs/DateInput.vue.d.ts +5 -5
  35. package/dist/components/form/inputs/DatePicker.vue.d.ts +10 -3
  36. package/dist/components/form/inputs/DatePicker.vue.d.ts.map +1 -1
  37. package/dist/components/form/inputs/FileUpload.vue.d.ts +16 -15
  38. package/dist/components/form/inputs/JSONInput.vue.d.ts +3 -3
  39. package/dist/components/form/inputs/RadioPillsInput.vue.d.ts +3 -3
  40. package/dist/components/form/inputs/RichText.vue.d.ts +3 -3
  41. package/dist/components/form/inputs/SelectInput.vue.d.ts +4 -3
  42. package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
  43. package/dist/components/form/inputs/TableField.vue.d.ts +3 -3
  44. package/dist/components/form/inputs/TextInput.vue.d.ts +5 -4
  45. package/dist/components/form/inputs/ToggleInput.vue.d.ts +12 -12
  46. package/dist/components/layout/BottomMenu.vue.d.ts +4 -3
  47. package/dist/components/layout/Layout.vue.d.ts +2 -2
  48. package/dist/components/layout/SidebarMenu.vue.d.ts +5 -4
  49. package/dist/components/layout/TabbedLayout.vue.d.ts +5 -4
  50. package/dist/components/layout/Tabs.vue.d.ts +4 -3
  51. package/dist/components/layout/TabsBody.vue.d.ts +2 -2
  52. package/dist/components/layout/TabsNav.vue.d.ts +4 -3
  53. package/dist/components/layout/tabsManager.d.ts +1 -1
  54. package/dist/index.cjs +7041 -4955
  55. package/dist/index.d.ts +0 -1
  56. package/dist/index.mjs +7041 -4955
  57. package/dist/plugins/bagel.d.ts +2 -1
  58. package/dist/plugins/modal.d.ts +3 -3
  59. package/dist/style.css +242 -240
  60. package/dist/types/BagelForm.d.ts +1 -0
  61. package/dist/types/BtnOptions.d.ts +2 -1
  62. package/dist/types/NavLink.d.ts +1 -0
  63. package/dist/types/index.d.ts +1 -1
  64. package/dist/utils/BagelFormUtils.d.ts +2 -1
  65. package/dist/utils/clickOutside.d.ts +2 -1
  66. package/dist/utils/index.d.ts +2 -1
  67. package/dist/utils/index.d.ts.map +1 -1
  68. package/package.json +1 -1
  69. package/src/components/Avatar.vue +2 -1
  70. package/src/components/NavBar.vue +235 -226
  71. package/src/components/TableSchema.vue +34 -4
  72. package/src/components/form/BglForm.vue +13 -3
  73. package/src/components/form/inputs/CheckInput.vue +1 -0
  74. package/src/components/form/inputs/DatePicker.vue +13 -2
  75. package/src/components/form/inputs/SelectInput.vue +14 -15
@@ -1,19 +1,396 @@
1
- import { type BglFormSchemaT } from '..';
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
1
+ import { BglFormSchemaT } from '..';
2
+
3
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
4
  data: any[];
4
5
  schema: BglFormSchemaT | (() => BglFormSchemaT);
5
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
6
7
  select: (...args: any[]) => void;
7
8
  orderBy: (...args: any[]) => void;
8
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
10
  data: any[];
10
11
  schema: BglFormSchemaT | (() => BglFormSchemaT);
11
12
  }>>> & {
12
13
  onSelect?: ((...args: any[]) => any) | undefined;
13
14
  onOrderBy?: ((...args: any[]) => any) | undefined;
14
15
  }, {}, {}>, Partial<Record<string, (_: {
15
- row: any;
16
- field: import('..').Field<Record<string, any>>;
16
+ row: Record<string, any>;
17
+ field: {
18
+ transform: undefined;
19
+ $el?: any;
20
+ id?: string | undefined;
21
+ label?: string | undefined;
22
+ placeholder?: string | undefined;
23
+ children?: import('..').Field<Record<string, any>>[] | undefined;
24
+ class?: import('..').AttributeValue | import('..').AttributeFn<Record<string, any>>;
25
+ attrs?: import('..').Attributes<Record<string, any>> | undefined;
26
+ required?: boolean | undefined;
27
+ helptext?: string | undefined;
28
+ options?: string | (string | number | Record<string, any> | {
29
+ label?: string | undefined;
30
+ value: string | number;
31
+ })[] | ((val: any, rowData?: Record<string, any> | undefined) => void) | undefined;
32
+ defaultValue?: any;
33
+ onUpdate?: ((val: any, rowData?: Record<string, any> | undefined) => void) | undefined;
34
+ 'v-if'?: string | boolean | ((val: any, row: Record<string, any>) => boolean) | undefined;
35
+ } | {
36
+ transform: undefined;
37
+ $el: "text" | import('vue').DefineComponent<{
38
+ code: {
39
+ type: import('vue').PropType<boolean>;
40
+ };
41
+ label: {
42
+ type: import('vue').PropType<string>;
43
+ };
44
+ small: {
45
+ type: import('vue').PropType<boolean>;
46
+ };
47
+ title: {
48
+ type: import('vue').PropType<string>;
49
+ };
50
+ pattern: {
51
+ type: import('vue').PropType<string>;
52
+ };
53
+ type: {
54
+ type: import('vue').PropType<string>;
55
+ default: string;
56
+ };
57
+ modelValue: {
58
+ type: import('vue').PropType<string | number>;
59
+ default: string;
60
+ };
61
+ id: {
62
+ type: import('vue').PropType<string>;
63
+ };
64
+ placeholder: {
65
+ type: import('vue').PropType<string>;
66
+ };
67
+ required: {
68
+ type: import('vue').PropType<boolean>;
69
+ };
70
+ helptext: {
71
+ type: import('vue').PropType<string>;
72
+ };
73
+ dense: {
74
+ type: import('vue').PropType<boolean>;
75
+ };
76
+ shrink: {
77
+ type: import('vue').PropType<boolean>;
78
+ };
79
+ toggleEdit: {
80
+ type: import('vue').PropType<boolean>;
81
+ default: boolean;
82
+ };
83
+ nativeInputAttrs: {
84
+ type: import('vue').PropType<Record<string, any>>;
85
+ };
86
+ icon: {
87
+ type: import('vue').PropType<import('..').MaterialIcons>;
88
+ };
89
+ iconStart: {
90
+ type: import('vue').PropType<import('..').MaterialIcons>;
91
+ };
92
+ multiline: {
93
+ type: import('vue').PropType<boolean>;
94
+ };
95
+ autoheight: {
96
+ type: import('vue').PropType<boolean>;
97
+ };
98
+ lines: {
99
+ type: import('vue').PropType<number>;
100
+ };
101
+ autocomplete: {
102
+ type: import('vue').PropType<string>;
103
+ default: string;
104
+ };
105
+ autofocus: {
106
+ type: import('vue').PropType<boolean>;
107
+ };
108
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
109
+ "update:modelValue": (...args: any[]) => void;
110
+ debounce: (...args: any[]) => void;
111
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
112
+ code: {
113
+ type: import('vue').PropType<boolean>;
114
+ };
115
+ label: {
116
+ type: import('vue').PropType<string>;
117
+ };
118
+ small: {
119
+ type: import('vue').PropType<boolean>;
120
+ };
121
+ title: {
122
+ type: import('vue').PropType<string>;
123
+ };
124
+ pattern: {
125
+ type: import('vue').PropType<string>;
126
+ };
127
+ type: {
128
+ type: import('vue').PropType<string>;
129
+ default: string;
130
+ };
131
+ modelValue: {
132
+ type: import('vue').PropType<string | number>;
133
+ default: string;
134
+ };
135
+ id: {
136
+ type: import('vue').PropType<string>;
137
+ };
138
+ placeholder: {
139
+ type: import('vue').PropType<string>;
140
+ };
141
+ required: {
142
+ type: import('vue').PropType<boolean>;
143
+ };
144
+ helptext: {
145
+ type: import('vue').PropType<string>;
146
+ };
147
+ dense: {
148
+ type: import('vue').PropType<boolean>;
149
+ };
150
+ shrink: {
151
+ type: import('vue').PropType<boolean>;
152
+ };
153
+ toggleEdit: {
154
+ type: import('vue').PropType<boolean>;
155
+ default: boolean;
156
+ };
157
+ nativeInputAttrs: {
158
+ type: import('vue').PropType<Record<string, any>>;
159
+ };
160
+ icon: {
161
+ type: import('vue').PropType<import('..').MaterialIcons>;
162
+ };
163
+ iconStart: {
164
+ type: import('vue').PropType<import('..').MaterialIcons>;
165
+ };
166
+ multiline: {
167
+ type: import('vue').PropType<boolean>;
168
+ };
169
+ autoheight: {
170
+ type: import('vue').PropType<boolean>;
171
+ };
172
+ lines: {
173
+ type: import('vue').PropType<number>;
174
+ };
175
+ autocomplete: {
176
+ type: import('vue').PropType<string>;
177
+ default: string;
178
+ };
179
+ autofocus: {
180
+ type: import('vue').PropType<boolean>;
181
+ };
182
+ }>> & {
183
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
184
+ onDebounce?: ((...args: any[]) => any) | undefined;
185
+ }, {
186
+ type: string;
187
+ modelValue: string | number;
188
+ toggleEdit: boolean;
189
+ autocomplete: string;
190
+ }, {}>;
191
+ id: string;
192
+ type?: string | undefined;
193
+ label?: string | undefined;
194
+ placeholder?: string | undefined;
195
+ children?: import('..').Field<Record<string, any>>[] | undefined;
196
+ class?: import('..').AttributeValue | import('..').AttributeFn<Record<string, any>>;
197
+ attrs?: import('..').Attributes<Record<string, any>> | undefined;
198
+ required?: boolean | undefined;
199
+ helptext?: string | undefined;
200
+ options?: string | (string | number | Record<string, any> | {
201
+ label?: string | undefined;
202
+ value: string | number;
203
+ })[] | ((val: any, rowData?: Record<string, any> | undefined) => void) | undefined;
204
+ defaultValue?: any;
205
+ onUpdate?: ((val: any, rowData?: Record<string, any> | undefined) => void) | undefined;
206
+ 'v-if'?: string | boolean | ((val: any, row: Record<string, any>) => boolean) | undefined;
207
+ } | {
208
+ transform: undefined;
209
+ $el: "select" | ({
210
+ new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
211
+ options: {
212
+ type: import('vue').PropType<(string | number | Record<string, any> | {
213
+ label: string;
214
+ value: string | number;
215
+ })[]>;
216
+ required: true;
217
+ };
218
+ placeholder: {
219
+ type: import('vue').PropType<string>;
220
+ };
221
+ disabled: {
222
+ type: import('vue').PropType<boolean>;
223
+ };
224
+ modelValue: {
225
+ type: import('vue').PropType<string | number | Record<string, any> | {
226
+ label: string;
227
+ value: string | number;
228
+ }>;
229
+ };
230
+ searchable: {
231
+ type: import('vue').PropType<boolean>;
232
+ };
233
+ required: {
234
+ type: import('vue').PropType<boolean>;
235
+ };
236
+ label: {
237
+ type: import('vue').PropType<string>;
238
+ };
239
+ fullWidth: {
240
+ type: import('vue').PropType<boolean>;
241
+ };
242
+ multiselect: {
243
+ type: import('vue').PropType<boolean>;
244
+ };
245
+ }>> & {
246
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
247
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
248
+ "update:modelValue": (...args: any[]) => void;
249
+ }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
250
+ options: {
251
+ type: import('vue').PropType<(string | number | Record<string, any> | {
252
+ label: string;
253
+ value: string | number;
254
+ })[]>;
255
+ required: true;
256
+ };
257
+ placeholder: {
258
+ type: import('vue').PropType<string>;
259
+ };
260
+ disabled: {
261
+ type: import('vue').PropType<boolean>;
262
+ };
263
+ modelValue: {
264
+ type: import('vue').PropType<string | number | Record<string, any> | {
265
+ label: string;
266
+ value: string | number;
267
+ }>;
268
+ };
269
+ searchable: {
270
+ type: import('vue').PropType<boolean>;
271
+ };
272
+ required: {
273
+ type: import('vue').PropType<boolean>;
274
+ };
275
+ label: {
276
+ type: import('vue').PropType<string>;
277
+ };
278
+ fullWidth: {
279
+ type: import('vue').PropType<boolean>;
280
+ };
281
+ multiselect: {
282
+ type: import('vue').PropType<boolean>;
283
+ };
284
+ }>> & {
285
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
286
+ }, {}, true, {}, {}, {
287
+ P: {};
288
+ B: {};
289
+ D: {};
290
+ C: {};
291
+ M: {};
292
+ Defaults: {};
293
+ }, Readonly<import('vue').ExtractPropTypes<{
294
+ options: {
295
+ type: import('vue').PropType<(string | number | Record<string, any> | {
296
+ label: string;
297
+ value: string | number;
298
+ })[]>;
299
+ required: true;
300
+ };
301
+ placeholder: {
302
+ type: import('vue').PropType<string>;
303
+ };
304
+ disabled: {
305
+ type: import('vue').PropType<boolean>;
306
+ };
307
+ modelValue: {
308
+ type: import('vue').PropType<string | number | Record<string, any> | {
309
+ label: string;
310
+ value: string | number;
311
+ }>;
312
+ };
313
+ searchable: {
314
+ type: import('vue').PropType<boolean>;
315
+ };
316
+ required: {
317
+ type: import('vue').PropType<boolean>;
318
+ };
319
+ label: {
320
+ type: import('vue').PropType<string>;
321
+ };
322
+ fullWidth: {
323
+ type: import('vue').PropType<boolean>;
324
+ };
325
+ multiselect: {
326
+ type: import('vue').PropType<boolean>;
327
+ };
328
+ }>> & {
329
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
330
+ }, {}, {}, {}, {}, {}>;
331
+ __isFragment?: undefined;
332
+ __isTeleport?: undefined;
333
+ __isSuspense?: undefined;
334
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
335
+ options: {
336
+ type: import('vue').PropType<(string | number | Record<string, any> | {
337
+ label: string;
338
+ value: string | number;
339
+ })[]>;
340
+ required: true;
341
+ };
342
+ placeholder: {
343
+ type: import('vue').PropType<string>;
344
+ };
345
+ disabled: {
346
+ type: import('vue').PropType<boolean>;
347
+ };
348
+ modelValue: {
349
+ type: import('vue').PropType<string | number | Record<string, any> | {
350
+ label: string;
351
+ value: string | number;
352
+ }>;
353
+ };
354
+ searchable: {
355
+ type: import('vue').PropType<boolean>;
356
+ };
357
+ required: {
358
+ type: import('vue').PropType<boolean>;
359
+ };
360
+ label: {
361
+ type: import('vue').PropType<string>;
362
+ };
363
+ fullWidth: {
364
+ type: import('vue').PropType<boolean>;
365
+ };
366
+ multiselect: {
367
+ type: import('vue').PropType<boolean>;
368
+ };
369
+ }>> & {
370
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
371
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
372
+ "update:modelValue": (...args: any[]) => void;
373
+ }, string, {}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
374
+ $slots: {
375
+ last?(_: {}): any;
376
+ };
377
+ }));
378
+ id: string;
379
+ label?: string | undefined;
380
+ placeholder?: string | undefined;
381
+ children?: import('..').Field<Record<string, any>>[] | undefined;
382
+ class?: import('..').AttributeValue | import('..').AttributeFn<Record<string, any>>;
383
+ attrs?: import('..').Attributes<Record<string, any>> | undefined;
384
+ required?: boolean | undefined;
385
+ helptext?: string | undefined;
386
+ options?: string | (string | number | Record<string, any> | {
387
+ label?: string | undefined;
388
+ value: string | number;
389
+ })[] | ((val: any, rowData?: Record<string, any> | undefined) => void) | undefined;
390
+ defaultValue?: any;
391
+ onUpdate?: ((val: any, rowData?: Record<string, any> | undefined) => void) | undefined;
392
+ 'v-if'?: string | boolean | ((val: any, row: Record<string, any>) => boolean) | undefined;
393
+ };
17
394
  }) => any>>>;
18
395
  export default _default;
19
396
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1 +1 @@
1
- {"version":3,"file":"TableSchema.vue.d.ts","sourceRoot":"","sources":["../../src/components/TableSchema.vue"],"names":[],"mappings":"AAiDA;AAGA,OAAO,EACN,KAAK,cAAc,EAInB,MAAM,eAAe,CAAC;;;;;;;;;;;;;;;;;AAsTvB,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
1
+ {"version":3,"file":"TableSchema.vue.d.ts","sourceRoot":"","sources":["../../src/components/TableSchema.vue"],"names":[],"mappings":"AAoDA;AAGA,OAAO,EACN,KAAK,cAAc,EAInB,MAAM,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqVvB,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
@@ -1,4 +1,4 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
1
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
2
2
  value: {
3
3
  type: StringConstructor;
4
4
  default: string;
@@ -11,7 +11,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
11
11
  type: StringConstructor;
12
12
  default: string;
13
13
  };
14
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
14
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
15
15
  value: {
16
16
  type: StringConstructor;
17
17
  default: string;
@@ -1,4 +1,4 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
1
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>, {
2
2
  default?(_: {}): any;
3
3
  }>;
4
4
  export default _default;
@@ -1,8 +1,9 @@
1
- import type { Data } from 'vue3-charts/dist/types';
2
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
1
+ import { Data } from 'vue3-charts/dist/types';
2
+
3
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
4
  data: Data[];
4
5
  locale: string;
5
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
7
  data: Data[];
7
8
  locale: string;
8
9
  }>>>, {}, {}>;
@@ -1,12 +1,13 @@
1
- import { type Field } from '../..';
2
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
1
+ import { Field } from '../..';
2
+
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
4
  field: Field;
4
5
  modelValue: Record<string, any>;
5
6
  }>, {
6
7
  modelValue: () => {};
7
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
9
  "update:modelValue": (...args: any[]) => void;
9
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
10
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
10
11
  field: Field;
11
12
  modelValue: Record<string, any>;
12
13
  }>, {
@@ -1,6 +1,7 @@
1
- import { type BglFormSchemaT } from '../..';
1
+ import { BglFormSchemaT } from '../..';
2
+
2
3
  type FormStatus = 'idle' | 'loading' | 'success' | 'error';
3
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
5
  label?: string | undefined;
5
6
  id?: string | undefined;
6
7
  schema: BglFormSchemaT<any>;
@@ -13,13 +14,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
13
14
  }>, {
14
15
  validateForm: () => boolean | undefined;
15
16
  deleteItem: () => void;
16
- isDirty: import("@vue-macros/reactivity-transform/macros.js").ReactiveVariable<false> | import("@vue-macros/reactivity-transform/macros.js").ReactiveVariable<true>;
17
+ isDirty: import('@vue-macros/reactivity-transform/macros.js').ReactiveVariable<false> | import('@vue-macros/reactivity-transform/macros.js').ReactiveVariable<true>;
17
18
  clearForm: () => {};
18
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
19
20
  submit: (...args: any[]) => void;
20
21
  "update:modelValue": (...args: any[]) => void;
21
22
  dirty: (...args: any[]) => void;
22
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
23
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
23
24
  label?: string | undefined;
24
25
  id?: string | undefined;
25
26
  schema: BglFormSchemaT<any>;
@@ -1 +1 @@
1
- {"version":3,"file":"BglForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/form/BglForm.vue"],"names":[],"mappings":"AAuBA;AAKA,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,eAAe,CAAC;AA6CpD,KAAK,UAAU,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiN3D,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AACxD,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
1
+ {"version":3,"file":"BglForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/form/BglForm.vue"],"names":[],"mappings":"AAuBA;AAKA,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,eAAe,CAAC;AA6CpD,KAAK,UAAU,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2N3D,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AACxD,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
@@ -1,36 +1,36 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
- modelValue: import("vue").PropType<boolean>;
1
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
2
+ modelValue: import('vue').PropType<boolean>;
3
3
  label: {
4
- type: import("vue").PropType<string>;
4
+ type: import('vue').PropType<string>;
5
5
  };
6
6
  id: {
7
- type: import("vue").PropType<string>;
7
+ type: import('vue').PropType<string>;
8
8
  };
9
9
  title: {
10
- type: import("vue").PropType<string>;
10
+ type: import('vue').PropType<string>;
11
11
  };
12
12
  small: {
13
- type: import("vue").PropType<boolean>;
13
+ type: import('vue').PropType<boolean>;
14
14
  };
15
15
  required: {
16
- type: import("vue").PropType<boolean>;
16
+ type: import('vue').PropType<boolean>;
17
17
  };
18
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
19
- modelValue: import("vue").PropType<boolean>;
18
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
19
+ modelValue: import('vue').PropType<boolean>;
20
20
  label: {
21
- type: import("vue").PropType<string>;
21
+ type: import('vue').PropType<string>;
22
22
  };
23
23
  id: {
24
- type: import("vue").PropType<string>;
24
+ type: import('vue').PropType<string>;
25
25
  };
26
26
  title: {
27
- type: import("vue").PropType<string>;
27
+ type: import('vue').PropType<string>;
28
28
  };
29
29
  small: {
30
- type: import("vue").PropType<boolean>;
30
+ type: import('vue').PropType<boolean>;
31
31
  };
32
32
  required: {
33
- type: import("vue").PropType<boolean>;
33
+ type: import('vue').PropType<boolean>;
34
34
  };
35
35
  }>>, {}, {}>, {
36
36
  label?(_: {}): any;
@@ -1,7 +1,7 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- modelValue: import("vue").PropType<any>;
3
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
4
- modelValue: import("vue").PropType<any>;
1
+ declare const _default: import('vue').DefineComponent<{
2
+ modelValue: import('vue').PropType<any>;
3
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4
+ modelValue: import('vue').PropType<any>;
5
5
  }>>, {}, {}>;
6
6
  export default _default;
7
7
  //# sourceMappingURL=Checkbox.vue.d.ts.map
@@ -1,4 +1,4 @@
1
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
1
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
2
  label?: string | undefined;
3
3
  id?: string | undefined;
4
4
  placeholder?: string | undefined;
@@ -9,9 +9,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
9
9
  nativeInputAttrs?: Record<string, any> | undefined;
10
10
  }>, {
11
11
  editMode: boolean;
12
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
13
  "update:modelValue": (...args: any[]) => void;
14
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
14
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
15
15
  label?: string | undefined;
16
16
  id?: string | undefined;
17
17
  placeholder?: string | undefined;
@@ -1,6 +1,6 @@
1
- import { type VueDatePickerProps } from '@vuepic/vue-datepicker';
2
- import '@vuepic/vue-datepicker/dist/main.css';
3
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
1
+ import { VueDatePickerProps } from '@vuepic/vue-datepicker';
2
+
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
4
  label?: string | undefined;
5
5
  editMode?: boolean | undefined;
6
6
  small?: boolean | undefined;
@@ -12,9 +12,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
12
12
  enableTime: boolean;
13
13
  editMode: boolean;
14
14
  small: boolean;
15
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
16
  "update:modelValue": (...args: any[]) => void;
17
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
17
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
18
18
  label?: string | undefined;
19
19
  editMode?: boolean | undefined;
20
20
  small?: boolean | undefined;
@@ -1,14 +1,21 @@
1
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
1
+
2
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
3
  label?: string | undefined;
3
4
  id?: string | undefined;
4
5
  options?: Record<string, any> | undefined;
5
6
  showTimeWrap?: boolean | undefined;
6
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
+ modelValue?: Date | undefined;
8
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
+ "update:modelValue": (...args: any[]) => void;
10
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
11
  label?: string | undefined;
8
12
  id?: string | undefined;
9
13
  options?: Record<string, any> | undefined;
10
14
  showTimeWrap?: boolean | undefined;
11
- }>>>, {}, {}>;
15
+ modelValue?: Date | undefined;
16
+ }>>> & {
17
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
18
+ }, {}, {}>;
12
19
  export default _default;
13
20
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
14
21
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1 +1 @@
1
- {"version":3,"file":"DatePicker.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/DatePicker.vue"],"names":[],"mappings":"AA4BA;AAGA,OAAO,sCAAsC,CAAC;;;;;;;;;;;;AAqJ9C,wBAWG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
1
+ {"version":3,"file":"DatePicker.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/DatePicker.vue"],"names":[],"mappings":"AA6BA;AAGA,OAAO,sCAAsC,CAAC;;;;;;;;;;;;;;;;;;AAiK9C,wBAaG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}