@vc-shell/framework 1.0.189 → 1.0.191

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 (68) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/core/types/index.ts +12 -1
  3. package/dist/core/types/index.d.ts +1 -1
  4. package/dist/core/types/index.d.ts.map +1 -1
  5. package/dist/framework.js +30669 -20092
  6. package/dist/index.css +1 -1
  7. package/dist/shared/components/error-interceptor/interceptor.d.ts.map +1 -1
  8. package/dist/shared/modules/dynamic/components/fields/EditorField.d.ts.map +1 -1
  9. package/dist/shared/modules/dynamic/components/fields/InputField.d.ts.map +1 -1
  10. package/dist/shared/modules/dynamic/components/fields/TextareaField.d.ts.map +1 -1
  11. package/dist/shared/modules/dynamic/components/fields/storybook/Card.stories.d.ts.map +1 -1
  12. package/dist/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.d.ts.map +1 -1
  13. package/dist/shared/modules/dynamic/components/fields/storybook/ContentField.stories.d.ts.map +1 -1
  14. package/dist/shared/modules/dynamic/components/fields/storybook/EditorField.stories.d.ts +9 -0
  15. package/dist/shared/modules/dynamic/components/fields/storybook/EditorField.stories.d.ts.map +1 -1
  16. package/dist/shared/modules/dynamic/components/fields/storybook/InputField.stories.d.ts +12 -0
  17. package/dist/shared/modules/dynamic/components/fields/storybook/InputField.stories.d.ts.map +1 -1
  18. package/dist/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.d.ts +12 -0
  19. package/dist/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.d.ts.map +1 -1
  20. package/dist/shared/modules/dynamic/composables/useFilterBuilder/index.d.ts.map +1 -1
  21. package/dist/shared/modules/dynamic/factories/types/index.d.ts +1 -0
  22. package/dist/shared/modules/dynamic/factories/types/index.d.ts.map +1 -1
  23. package/dist/shared/modules/dynamic/types/index.d.ts +15 -0
  24. package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
  25. package/dist/tsconfig.tsbuildinfo +1 -1
  26. package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts +16 -16
  27. package/dist/ui/components/molecules/vc-editor/vc-editor.stories.d.ts +16 -4
  28. package/dist/ui/components/molecules/vc-editor/vc-editor.stories.d.ts.map +1 -1
  29. package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts +2 -1
  30. package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts.map +1 -1
  31. package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts +30 -16
  32. package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts.map +1 -1
  33. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.stories.d.ts +12 -12
  34. package/dist/ui/components/molecules/vc-textarea/vc-textarea.stories.d.ts +63 -63
  35. package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts +6 -6
  36. package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts.map +1 -1
  37. package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts +1 -0
  38. package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts.map +1 -1
  39. package/dist/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.d.ts.map +1 -1
  40. package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts +8 -2
  41. package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts.map +1 -1
  42. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts +3 -1
  43. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts.map +1 -1
  44. package/package.json +8 -4
  45. package/shared/components/error-interceptor/interceptor.ts +1 -1
  46. package/shared/modules/dynamic/components/fields/EditorField.ts +1 -0
  47. package/shared/modules/dynamic/components/fields/InputField.ts +1 -0
  48. package/shared/modules/dynamic/components/fields/TextareaField.ts +1 -0
  49. package/shared/modules/dynamic/components/fields/storybook/Card.stories.ts +1 -2
  50. package/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.ts +0 -1
  51. package/shared/modules/dynamic/components/fields/storybook/ContentField.stories.ts +1 -2
  52. package/shared/modules/dynamic/components/fields/storybook/EditorField.stories.ts +10 -3
  53. package/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.ts +3 -3
  54. package/shared/modules/dynamic/components/fields/storybook/InputField.stories.ts +12 -0
  55. package/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.ts +12 -0
  56. package/shared/modules/dynamic/composables/useFilterBuilder/index.ts +6 -3
  57. package/shared/modules/dynamic/factories/types/index.ts +2 -0
  58. package/shared/modules/dynamic/types/index.ts +15 -0
  59. package/shared/pages/LoginPage/components/login/Login.vue +1 -1
  60. package/ui/components/molecules/vc-editor/vc-editor.vue +24 -29
  61. package/ui/components/molecules/vc-input/vc-input.stories.ts +14 -0
  62. package/ui/components/molecules/vc-textarea/vc-textarea.stories.ts +1 -1
  63. package/ui/components/molecules/vc-textarea/vc-textarea.vue +4 -6
  64. package/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue +1 -1
  65. package/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue +140 -108
  66. package/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue +20 -6
  67. package/ui/components/organisms/vc-table/vc-table.stories.ts +6 -2
  68. package/ui/components/organisms/vc-table/vc-table.vue +176 -125
@@ -178,6 +178,10 @@ declare const _default: {
178
178
  placeholder: {
179
179
  type: import("vue").PropType<string>;
180
180
  };
181
+ maxlength: {
182
+ type: import("vue").PropType<string | number>;
183
+ default: string;
184
+ };
181
185
  hint: {
182
186
  type: import("vue").PropType<string>;
183
187
  };
@@ -199,10 +203,6 @@ declare const _default: {
199
203
  autofocus: {
200
204
  type: import("vue").PropType<boolean>;
201
205
  };
202
- maxlength: {
203
- type: import("vue").PropType<string | number>;
204
- default: string;
205
- };
206
206
  }>> & {
207
207
  "onUpdate:modelValue"?: ((value: string | number | Date | null | undefined) => any) | undefined;
208
208
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -246,6 +246,10 @@ declare const _default: {
246
246
  placeholder: {
247
247
  type: import("vue").PropType<string>;
248
248
  };
249
+ maxlength: {
250
+ type: import("vue").PropType<string | number>;
251
+ default: string;
252
+ };
249
253
  hint: {
250
254
  type: import("vue").PropType<string>;
251
255
  };
@@ -267,10 +271,6 @@ declare const _default: {
267
271
  autofocus: {
268
272
  type: import("vue").PropType<boolean>;
269
273
  };
270
- maxlength: {
271
- type: import("vue").PropType<string | number>;
272
- default: string;
273
- };
274
274
  }>> & {
275
275
  "onUpdate:modelValue"?: ((value: string | number | Date | null | undefined) => any) | undefined;
276
276
  }, {
@@ -323,6 +323,10 @@ declare const _default: {
323
323
  placeholder: {
324
324
  type: import("vue").PropType<string>;
325
325
  };
326
+ maxlength: {
327
+ type: import("vue").PropType<string | number>;
328
+ default: string;
329
+ };
326
330
  hint: {
327
331
  type: import("vue").PropType<string>;
328
332
  };
@@ -344,10 +348,6 @@ declare const _default: {
344
348
  autofocus: {
345
349
  type: import("vue").PropType<boolean>;
346
350
  };
347
- maxlength: {
348
- type: import("vue").PropType<string | number>;
349
- default: string;
350
- };
351
351
  }>> & {
352
352
  "onUpdate:modelValue"?: ((value: string | number | Date | null | undefined) => any) | undefined;
353
353
  }, {}, {}, {}, {}, {
@@ -397,6 +397,10 @@ declare const _default: {
397
397
  placeholder: {
398
398
  type: import("vue").PropType<string>;
399
399
  };
400
+ maxlength: {
401
+ type: import("vue").PropType<string | number>;
402
+ default: string;
403
+ };
400
404
  hint: {
401
405
  type: import("vue").PropType<string>;
402
406
  };
@@ -418,10 +422,6 @@ declare const _default: {
418
422
  autofocus: {
419
423
  type: import("vue").PropType<boolean>;
420
424
  };
421
- maxlength: {
422
- type: import("vue").PropType<string | number>;
423
- default: string;
424
- };
425
425
  }>> & {
426
426
  "onUpdate:modelValue"?: ((value: string | number | Date | null | undefined) => any) | undefined;
427
427
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -8,7 +8,7 @@ declare const _default: {
8
8
  type: import("vue").PropType<string>;
9
9
  };
10
10
  modelValue: {
11
- type: import("vue").PropType<string | number | Date>;
11
+ type: import("vue").PropType<string>;
12
12
  };
13
13
  required: {
14
14
  type: import("vue").PropType<boolean>;
@@ -35,6 +35,9 @@ declare const _default: {
35
35
  currentLanguage: {
36
36
  type: import("vue").PropType<string>;
37
37
  };
38
+ maxlength: {
39
+ type: import("vue").PropType<number>;
40
+ };
38
41
  }>> & {
39
42
  "onUpdate:modelValue"?: ((value: string | number | Date | null | undefined) => any) | undefined;
40
43
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -44,7 +47,7 @@ declare const _default: {
44
47
  type: import("vue").PropType<string>;
45
48
  };
46
49
  modelValue: {
47
- type: import("vue").PropType<string | number | Date>;
50
+ type: import("vue").PropType<string>;
48
51
  };
49
52
  required: {
50
53
  type: import("vue").PropType<boolean>;
@@ -71,6 +74,9 @@ declare const _default: {
71
74
  currentLanguage: {
72
75
  type: import("vue").PropType<string>;
73
76
  };
77
+ maxlength: {
78
+ type: import("vue").PropType<number>;
79
+ };
74
80
  }>> & {
75
81
  "onUpdate:modelValue"?: ((value: string | number | Date | null | undefined) => any) | undefined;
76
82
  }, {}, true, {}, {}, {
@@ -85,7 +91,7 @@ declare const _default: {
85
91
  type: import("vue").PropType<string>;
86
92
  };
87
93
  modelValue: {
88
- type: import("vue").PropType<string | number | Date>;
94
+ type: import("vue").PropType<string>;
89
95
  };
90
96
  required: {
91
97
  type: import("vue").PropType<boolean>;
@@ -112,6 +118,9 @@ declare const _default: {
112
118
  currentLanguage: {
113
119
  type: import("vue").PropType<string>;
114
120
  };
121
+ maxlength: {
122
+ type: import("vue").PropType<number>;
123
+ };
115
124
  }>> & {
116
125
  "onUpdate:modelValue"?: ((value: string | number | Date | null | undefined) => any) | undefined;
117
126
  }, {}, {}, {}, {}, {}>;
@@ -123,7 +132,7 @@ declare const _default: {
123
132
  type: import("vue").PropType<string>;
124
133
  };
125
134
  modelValue: {
126
- type: import("vue").PropType<string | number | Date>;
135
+ type: import("vue").PropType<string>;
127
136
  };
128
137
  required: {
129
138
  type: import("vue").PropType<boolean>;
@@ -150,6 +159,9 @@ declare const _default: {
150
159
  currentLanguage: {
151
160
  type: import("vue").PropType<string>;
152
161
  };
162
+ maxlength: {
163
+ type: import("vue").PropType<number>;
164
+ };
153
165
  }>> & {
154
166
  "onUpdate:modelValue"?: ((value: string | number | Date | null | undefined) => any) | undefined;
155
167
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -1 +1 @@
1
- {"version":3,"file":"vc-editor.stories.d.ts","sourceRoot":"","sources":["../../../../../ui/components/molecules/vc-editor/vc-editor.stories.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE9B,wBAiBkC;AAElC,eAAO,MAAM,OAAO,EAAE,OAAO,CAAC,OAAO,QAAQ,CAM3C,CAAC"}
1
+ {"version":3,"file":"vc-editor.stories.d.ts","sourceRoot":"","sources":["../../../../../ui/components/molecules/vc-editor/vc-editor.stories.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE9B,wBAiBkC;AAElC,eAAO,MAAM,OAAO,EAAE,OAAO,CAAC,OAAO,QAAQ,CAM3C,CAAC"}
@@ -1,7 +1,7 @@
1
1
  import "@vueup/vue-quill/dist/vue-quill.snow.css";
2
2
  export interface Props {
3
3
  placeholder?: string;
4
- modelValue?: string | number | Date;
4
+ modelValue?: string;
5
5
  required?: boolean;
6
6
  disabled?: boolean;
7
7
  label?: string;
@@ -10,6 +10,7 @@ export interface Props {
10
10
  assetsFolder: string;
11
11
  multilanguage?: boolean;
12
12
  currentLanguage?: string;
13
+ maxlength?: number;
13
14
  }
14
15
  export interface Emits {
15
16
  (event: "update:modelValue", value: string | number | Date | null | undefined): void;
@@ -1 +1 @@
1
- {"version":3,"file":"vc-editor.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/molecules/vc-editor/vc-editor.vue.ts"],"names":[],"mappings":"AAGA,OAAO,0CAA0C,CAAC;AAKlD,MAAM,WAAW,KAAK;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;IACpC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,KAAK;IACpB,CAAC,KAAK,EAAE,mBAAmB,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,SAAS,GAAG,IAAI,CAAC;CACtF;;;;;;;;;;AA+PD,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":"vc-editor.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/molecules/vc-editor/vc-editor.vue.ts"],"names":[],"mappings":"AAGA,OAAO,0CAA0C,CAAC;AAKlD,MAAM,WAAW,KAAK;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,KAAK;IACpB,CAAC,KAAK,EAAE,mBAAmB,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,SAAS,GAAG,IAAI,CAAC;CACtF;;;;;;;;;;AAwPD,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"}
@@ -42,6 +42,10 @@ declare const _default: {
42
42
  placeholder: {
43
43
  type: import("vue").PropType<string>;
44
44
  };
45
+ maxlength: {
46
+ type: import("vue").PropType<string | number>;
47
+ default: string;
48
+ };
45
49
  hint: {
46
50
  type: import("vue").PropType<string>;
47
51
  };
@@ -63,10 +67,6 @@ declare const _default: {
63
67
  autofocus: {
64
68
  type: import("vue").PropType<boolean>;
65
69
  };
66
- maxlength: {
67
- type: import("vue").PropType<string | number>;
68
- default: string;
69
- };
70
70
  }>> & {
71
71
  "onUpdate:modelValue"?: ((value: string | number | Date | null | undefined) => any) | undefined;
72
72
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -110,6 +110,10 @@ declare const _default: {
110
110
  placeholder: {
111
111
  type: import("vue").PropType<string>;
112
112
  };
113
+ maxlength: {
114
+ type: import("vue").PropType<string | number>;
115
+ default: string;
116
+ };
113
117
  hint: {
114
118
  type: import("vue").PropType<string>;
115
119
  };
@@ -131,10 +135,6 @@ declare const _default: {
131
135
  autofocus: {
132
136
  type: import("vue").PropType<boolean>;
133
137
  };
134
- maxlength: {
135
- type: import("vue").PropType<string | number>;
136
- default: string;
137
- };
138
138
  }>> & {
139
139
  "onUpdate:modelValue"?: ((value: string | number | Date | null | undefined) => any) | undefined;
140
140
  }, {
@@ -187,6 +187,10 @@ declare const _default: {
187
187
  placeholder: {
188
188
  type: import("vue").PropType<string>;
189
189
  };
190
+ maxlength: {
191
+ type: import("vue").PropType<string | number>;
192
+ default: string;
193
+ };
190
194
  hint: {
191
195
  type: import("vue").PropType<string>;
192
196
  };
@@ -208,10 +212,6 @@ declare const _default: {
208
212
  autofocus: {
209
213
  type: import("vue").PropType<boolean>;
210
214
  };
211
- maxlength: {
212
- type: import("vue").PropType<string | number>;
213
- default: string;
214
- };
215
215
  }>> & {
216
216
  "onUpdate:modelValue"?: ((value: string | number | Date | null | undefined) => any) | undefined;
217
217
  }, {}, {}, {}, {}, {
@@ -261,6 +261,10 @@ declare const _default: {
261
261
  placeholder: {
262
262
  type: import("vue").PropType<string>;
263
263
  };
264
+ maxlength: {
265
+ type: import("vue").PropType<string | number>;
266
+ default: string;
267
+ };
264
268
  hint: {
265
269
  type: import("vue").PropType<string>;
266
270
  };
@@ -282,10 +286,6 @@ declare const _default: {
282
286
  autofocus: {
283
287
  type: import("vue").PropType<boolean>;
284
288
  };
285
- maxlength: {
286
- type: import("vue").PropType<string | number>;
287
- default: string;
288
- };
289
289
  }>> & {
290
290
  "onUpdate:modelValue"?: ((value: string | number | Date | null | undefined) => any) | undefined;
291
291
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -329,6 +329,20 @@ declare const _default: {
329
329
  label: string;
330
330
  placeholder: string;
331
331
  };
332
+ argTypes: {
333
+ maxlength: {
334
+ description: string;
335
+ control: string;
336
+ table: {
337
+ type: {
338
+ summary: string;
339
+ };
340
+ defaultValue: {
341
+ summary: number;
342
+ };
343
+ };
344
+ };
345
+ };
332
346
  };
333
347
  export default _default;
334
348
  export declare const Template: StoryFn<typeof VcInput>;
@@ -1 +1 @@
1
- {"version":3,"file":"vc-input.stories.d.ts","sourceRoot":"","sources":["../../../../../ui/components/molecules/vc-input/vc-input.stories.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAG7B,wBAOiC;AAEjC,eAAO,MAAM,QAAQ,EAAE,OAAO,CAAC,OAAO,OAAO,CAM3C,CAAC;AAEH,eAAO,MAAM,KAAK,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAMhE,eAAO,MAAM,QAAQ,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAKnE,eAAO,MAAM,IAAI,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAK/D,eAAO,MAAM,OAAO,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAKlE,eAAO,MAAM,QAAQ,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAKnE,eAAO,MAAM,MAAM,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAKjE,eAAO,MAAM,MAAM,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAKjE,eAAO,MAAM,sBAAsB,EAAE,OAAO,CAAC,OAAO,OAAO,CAezD,CAAC;AAEH,eAAO,MAAM,iBAAiB,EAAE,OAAO,CAAC,OAAO,OAAO,CAWpD,CAAC;AAEH,eAAO,MAAM,gBAAgB,EAAE,OAAO,CAAC,OAAO,OAAO,CAWnD,CAAC;AAEH,eAAO,MAAM,sBAAsB,EAAE,OAAO,CAAC,OAAO,OAAO,CAWzD,CAAC;AAEH,eAAO,MAAM,qBAAqB,EAAE,OAAO,CAAC,OAAO,OAAO,CAWxD,CAAC;AAEH,eAAO,MAAM,eAAe,EAAE,OAAO,CAAC,OAAO,OAAO,CAWlD,CAAC;AAEH,eAAO,MAAM,cAAc,EAAE,OAAO,CAAC,OAAO,OAAO,CAWjD,CAAC"}
1
+ {"version":3,"file":"vc-input.stories.d.ts","sourceRoot":"","sources":["../../../../../ui/components/molecules/vc-input/vc-input.stories.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAG7B,wBAqBiC;AAEjC,eAAO,MAAM,QAAQ,EAAE,OAAO,CAAC,OAAO,OAAO,CAM3C,CAAC;AAEH,eAAO,MAAM,KAAK,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAMhE,eAAO,MAAM,QAAQ,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAKnE,eAAO,MAAM,IAAI,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAK/D,eAAO,MAAM,OAAO,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAKlE,eAAO,MAAM,QAAQ,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAKnE,eAAO,MAAM,MAAM,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAKjE,eAAO,MAAM,MAAM,EAAE,OAAO,CAAC,OAAO,OAAO,CAAqB,CAAC;AAKjE,eAAO,MAAM,sBAAsB,EAAE,OAAO,CAAC,OAAO,OAAO,CAezD,CAAC;AAEH,eAAO,MAAM,iBAAiB,EAAE,OAAO,CAAC,OAAO,OAAO,CAWpD,CAAC;AAEH,eAAO,MAAM,gBAAgB,EAAE,OAAO,CAAC,OAAO,OAAO,CAWnD,CAAC;AAEH,eAAO,MAAM,sBAAsB,EAAE,OAAO,CAAC,OAAO,OAAO,CAWzD,CAAC;AAEH,eAAO,MAAM,qBAAqB,EAAE,OAAO,CAAC,OAAO,OAAO,CAWxD,CAAC;AAEH,eAAO,MAAM,eAAe,EAAE,OAAO,CAAC,OAAO,OAAO,CAWlD,CAAC;AAEH,eAAO,MAAM,cAAc,EAAE,OAAO,CAAC,OAAO,OAAO,CAWjD,CAAC"}
@@ -35,6 +35,9 @@ declare const _default: {
35
35
  placeholder: {
36
36
  type: import("vue").PropType<string>;
37
37
  };
38
+ maxlength: {
39
+ type: import("vue").PropType<string | number>;
40
+ };
38
41
  options: {
39
42
  type: import("vue").PropType<unknown[]>;
40
43
  required: true;
@@ -61,9 +64,6 @@ declare const _default: {
61
64
  autofocus: {
62
65
  type: import("vue").PropType<boolean>;
63
66
  };
64
- maxlength: {
65
- type: import("vue").PropType<string | number>;
66
- };
67
67
  optionValue: {
68
68
  type: import("vue").PropType<string | ((option: unknown) => string)>;
69
69
  };
@@ -110,6 +110,9 @@ declare const _default: {
110
110
  placeholder: {
111
111
  type: import("vue").PropType<string>;
112
112
  };
113
+ maxlength: {
114
+ type: import("vue").PropType<string | number>;
115
+ };
113
116
  options: {
114
117
  type: import("vue").PropType<unknown[]>;
115
118
  required: true;
@@ -136,9 +139,6 @@ declare const _default: {
136
139
  autofocus: {
137
140
  type: import("vue").PropType<boolean>;
138
141
  };
139
- maxlength: {
140
- type: import("vue").PropType<string | number>;
141
- };
142
142
  optionValue: {
143
143
  type: import("vue").PropType<string | ((option: unknown) => string)>;
144
144
  };
@@ -190,6 +190,9 @@ declare const _default: {
190
190
  placeholder: {
191
191
  type: import("vue").PropType<string>;
192
192
  };
193
+ maxlength: {
194
+ type: import("vue").PropType<string | number>;
195
+ };
193
196
  options: {
194
197
  type: import("vue").PropType<unknown[]>;
195
198
  required: true;
@@ -216,9 +219,6 @@ declare const _default: {
216
219
  autofocus: {
217
220
  type: import("vue").PropType<boolean>;
218
221
  };
219
- maxlength: {
220
- type: import("vue").PropType<string | number>;
221
- };
222
222
  optionValue: {
223
223
  type: import("vue").PropType<string | ((option: unknown) => string)>;
224
224
  };
@@ -267,6 +267,9 @@ declare const _default: {
267
267
  placeholder: {
268
268
  type: import("vue").PropType<string>;
269
269
  };
270
+ maxlength: {
271
+ type: import("vue").PropType<string | number>;
272
+ };
270
273
  options: {
271
274
  type: import("vue").PropType<unknown[]>;
272
275
  required: true;
@@ -293,9 +296,6 @@ declare const _default: {
293
296
  autofocus: {
294
297
  type: import("vue").PropType<boolean>;
295
298
  };
296
- maxlength: {
297
- type: import("vue").PropType<string | number>;
298
- };
299
299
  optionValue: {
300
300
  type: import("vue").PropType<string | ((option: unknown) => string)>;
301
301
  };