@vc-shell/framework 1.0.189 → 1.0.190
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/core/types/index.ts +12 -1
- package/dist/core/types/index.d.ts +1 -1
- package/dist/core/types/index.d.ts.map +1 -1
- package/dist/framework.js +30667 -20092
- package/dist/index.css +1 -1
- package/dist/shared/components/error-interceptor/interceptor.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/EditorField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/InputField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/TextareaField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/Card.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/ContentField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/EditorField.stories.d.ts +9 -0
- package/dist/shared/modules/dynamic/components/fields/storybook/EditorField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/InputField.stories.d.ts +12 -0
- package/dist/shared/modules/dynamic/components/fields/storybook/InputField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.d.ts +12 -0
- package/dist/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/factories/types/index.d.ts +1 -0
- package/dist/shared/modules/dynamic/factories/types/index.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/types/index.d.ts +15 -0
- package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts +16 -16
- package/dist/ui/components/molecules/vc-editor/vc-editor.stories.d.ts +16 -4
- package/dist/ui/components/molecules/vc-editor/vc-editor.stories.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts +2 -1
- package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts +30 -16
- package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.stories.d.ts +12 -12
- package/dist/ui/components/molecules/vc-textarea/vc-textarea.stories.d.ts +63 -63
- package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts +6 -6
- package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts +1 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts +8 -2
- package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts +3 -1
- package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts.map +1 -1
- package/package.json +8 -4
- package/shared/components/error-interceptor/interceptor.ts +1 -1
- package/shared/modules/dynamic/components/fields/EditorField.ts +1 -0
- package/shared/modules/dynamic/components/fields/InputField.ts +1 -0
- package/shared/modules/dynamic/components/fields/TextareaField.ts +1 -0
- package/shared/modules/dynamic/components/fields/storybook/Card.stories.ts +1 -2
- package/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.ts +0 -1
- package/shared/modules/dynamic/components/fields/storybook/ContentField.stories.ts +1 -2
- package/shared/modules/dynamic/components/fields/storybook/EditorField.stories.ts +10 -3
- package/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.ts +3 -3
- package/shared/modules/dynamic/components/fields/storybook/InputField.stories.ts +12 -0
- package/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.ts +12 -0
- package/shared/modules/dynamic/factories/types/index.ts +2 -0
- package/shared/modules/dynamic/types/index.ts +15 -0
- package/shared/pages/LoginPage/components/login/Login.vue +1 -1
- package/ui/components/molecules/vc-editor/vc-editor.vue +24 -29
- package/ui/components/molecules/vc-input/vc-input.stories.ts +14 -0
- package/ui/components/molecules/vc-textarea/vc-textarea.stories.ts +1 -1
- package/ui/components/molecules/vc-textarea/vc-textarea.vue +4 -6
- package/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue +1 -1
- package/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue +140 -108
- package/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue +20 -6
- package/ui/components/organisms/vc-table/vc-table.stories.ts +6 -2
- package/ui/components/organisms/vc-table/vc-table.vue +176 -125
|
@@ -35,7 +35,7 @@ declare const _default: {
|
|
|
35
35
|
placeholder: {
|
|
36
36
|
type: import("vue").PropType<string>;
|
|
37
37
|
};
|
|
38
|
-
|
|
38
|
+
maxlength: {
|
|
39
39
|
type: import("vue").PropType<string>;
|
|
40
40
|
default: string;
|
|
41
41
|
};
|
|
@@ -75,7 +75,7 @@ declare const _default: {
|
|
|
75
75
|
placeholder: {
|
|
76
76
|
type: import("vue").PropType<string>;
|
|
77
77
|
};
|
|
78
|
-
|
|
78
|
+
maxlength: {
|
|
79
79
|
type: import("vue").PropType<string>;
|
|
80
80
|
default: string;
|
|
81
81
|
};
|
|
@@ -83,7 +83,7 @@ declare const _default: {
|
|
|
83
83
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
84
84
|
}, {
|
|
85
85
|
name: string;
|
|
86
|
-
|
|
86
|
+
maxlength: string;
|
|
87
87
|
}, true, {}, {}, {
|
|
88
88
|
P: {};
|
|
89
89
|
B: {};
|
|
@@ -123,7 +123,7 @@ declare const _default: {
|
|
|
123
123
|
placeholder: {
|
|
124
124
|
type: import("vue").PropType<string>;
|
|
125
125
|
};
|
|
126
|
-
|
|
126
|
+
maxlength: {
|
|
127
127
|
type: import("vue").PropType<string>;
|
|
128
128
|
default: string;
|
|
129
129
|
};
|
|
@@ -131,7 +131,7 @@ declare const _default: {
|
|
|
131
131
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
132
132
|
}, {}, {}, {}, {}, {
|
|
133
133
|
name: string;
|
|
134
|
-
|
|
134
|
+
maxlength: string;
|
|
135
135
|
}>;
|
|
136
136
|
__isFragment?: undefined;
|
|
137
137
|
__isTeleport?: undefined;
|
|
@@ -168,7 +168,7 @@ declare const _default: {
|
|
|
168
168
|
placeholder: {
|
|
169
169
|
type: import("vue").PropType<string>;
|
|
170
170
|
};
|
|
171
|
-
|
|
171
|
+
maxlength: {
|
|
172
172
|
type: import("vue").PropType<string>;
|
|
173
173
|
default: string;
|
|
174
174
|
};
|
|
@@ -178,12 +178,12 @@ declare const _default: {
|
|
|
178
178
|
"update:modelValue": (value: string | undefined) => void;
|
|
179
179
|
}, string, {
|
|
180
180
|
name: string;
|
|
181
|
-
|
|
181
|
+
maxlength: string;
|
|
182
182
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
183
183
|
$slots: Readonly<{
|
|
184
|
-
error:
|
|
184
|
+
error: void;
|
|
185
185
|
}> & {
|
|
186
|
-
error:
|
|
186
|
+
error: void;
|
|
187
187
|
};
|
|
188
188
|
});
|
|
189
189
|
args: {
|
|
@@ -225,7 +225,7 @@ export declare const Label: StoryFn<{
|
|
|
225
225
|
placeholder: {
|
|
226
226
|
type: import("vue").PropType<string>;
|
|
227
227
|
};
|
|
228
|
-
|
|
228
|
+
maxlength: {
|
|
229
229
|
type: import("vue").PropType<string>;
|
|
230
230
|
default: string;
|
|
231
231
|
};
|
|
@@ -265,7 +265,7 @@ export declare const Label: StoryFn<{
|
|
|
265
265
|
placeholder: {
|
|
266
266
|
type: import("vue").PropType<string>;
|
|
267
267
|
};
|
|
268
|
-
|
|
268
|
+
maxlength: {
|
|
269
269
|
type: import("vue").PropType<string>;
|
|
270
270
|
default: string;
|
|
271
271
|
};
|
|
@@ -273,7 +273,7 @@ export declare const Label: StoryFn<{
|
|
|
273
273
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
274
274
|
}, {
|
|
275
275
|
name: string;
|
|
276
|
-
|
|
276
|
+
maxlength: string;
|
|
277
277
|
}, true, {}, {}, {
|
|
278
278
|
P: {};
|
|
279
279
|
B: {};
|
|
@@ -313,7 +313,7 @@ export declare const Label: StoryFn<{
|
|
|
313
313
|
placeholder: {
|
|
314
314
|
type: import("vue").PropType<string>;
|
|
315
315
|
};
|
|
316
|
-
|
|
316
|
+
maxlength: {
|
|
317
317
|
type: import("vue").PropType<string>;
|
|
318
318
|
default: string;
|
|
319
319
|
};
|
|
@@ -321,7 +321,7 @@ export declare const Label: StoryFn<{
|
|
|
321
321
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
322
322
|
}, {}, {}, {}, {}, {
|
|
323
323
|
name: string;
|
|
324
|
-
|
|
324
|
+
maxlength: string;
|
|
325
325
|
}>;
|
|
326
326
|
__isFragment?: undefined;
|
|
327
327
|
__isTeleport?: undefined;
|
|
@@ -358,7 +358,7 @@ export declare const Label: StoryFn<{
|
|
|
358
358
|
placeholder: {
|
|
359
359
|
type: import("vue").PropType<string>;
|
|
360
360
|
};
|
|
361
|
-
|
|
361
|
+
maxlength: {
|
|
362
362
|
type: import("vue").PropType<string>;
|
|
363
363
|
default: string;
|
|
364
364
|
};
|
|
@@ -368,12 +368,12 @@ export declare const Label: StoryFn<{
|
|
|
368
368
|
"update:modelValue": (value: string | undefined) => void;
|
|
369
369
|
}, string, {
|
|
370
370
|
name: string;
|
|
371
|
-
|
|
371
|
+
maxlength: string;
|
|
372
372
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
373
373
|
$slots: Readonly<{
|
|
374
|
-
error:
|
|
374
|
+
error: void;
|
|
375
375
|
}> & {
|
|
376
|
-
error:
|
|
376
|
+
error: void;
|
|
377
377
|
};
|
|
378
378
|
})>;
|
|
379
379
|
export declare const Disabled: StoryFn<{
|
|
@@ -409,7 +409,7 @@ export declare const Disabled: StoryFn<{
|
|
|
409
409
|
placeholder: {
|
|
410
410
|
type: import("vue").PropType<string>;
|
|
411
411
|
};
|
|
412
|
-
|
|
412
|
+
maxlength: {
|
|
413
413
|
type: import("vue").PropType<string>;
|
|
414
414
|
default: string;
|
|
415
415
|
};
|
|
@@ -449,7 +449,7 @@ export declare const Disabled: StoryFn<{
|
|
|
449
449
|
placeholder: {
|
|
450
450
|
type: import("vue").PropType<string>;
|
|
451
451
|
};
|
|
452
|
-
|
|
452
|
+
maxlength: {
|
|
453
453
|
type: import("vue").PropType<string>;
|
|
454
454
|
default: string;
|
|
455
455
|
};
|
|
@@ -457,7 +457,7 @@ export declare const Disabled: StoryFn<{
|
|
|
457
457
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
458
458
|
}, {
|
|
459
459
|
name: string;
|
|
460
|
-
|
|
460
|
+
maxlength: string;
|
|
461
461
|
}, true, {}, {}, {
|
|
462
462
|
P: {};
|
|
463
463
|
B: {};
|
|
@@ -497,7 +497,7 @@ export declare const Disabled: StoryFn<{
|
|
|
497
497
|
placeholder: {
|
|
498
498
|
type: import("vue").PropType<string>;
|
|
499
499
|
};
|
|
500
|
-
|
|
500
|
+
maxlength: {
|
|
501
501
|
type: import("vue").PropType<string>;
|
|
502
502
|
default: string;
|
|
503
503
|
};
|
|
@@ -505,7 +505,7 @@ export declare const Disabled: StoryFn<{
|
|
|
505
505
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
506
506
|
}, {}, {}, {}, {}, {
|
|
507
507
|
name: string;
|
|
508
|
-
|
|
508
|
+
maxlength: string;
|
|
509
509
|
}>;
|
|
510
510
|
__isFragment?: undefined;
|
|
511
511
|
__isTeleport?: undefined;
|
|
@@ -542,7 +542,7 @@ export declare const Disabled: StoryFn<{
|
|
|
542
542
|
placeholder: {
|
|
543
543
|
type: import("vue").PropType<string>;
|
|
544
544
|
};
|
|
545
|
-
|
|
545
|
+
maxlength: {
|
|
546
546
|
type: import("vue").PropType<string>;
|
|
547
547
|
default: string;
|
|
548
548
|
};
|
|
@@ -552,12 +552,12 @@ export declare const Disabled: StoryFn<{
|
|
|
552
552
|
"update:modelValue": (value: string | undefined) => void;
|
|
553
553
|
}, string, {
|
|
554
554
|
name: string;
|
|
555
|
-
|
|
555
|
+
maxlength: string;
|
|
556
556
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
557
557
|
$slots: Readonly<{
|
|
558
|
-
error:
|
|
558
|
+
error: void;
|
|
559
559
|
}> & {
|
|
560
|
-
error:
|
|
560
|
+
error: void;
|
|
561
561
|
};
|
|
562
562
|
})>;
|
|
563
563
|
export declare const Error: StoryFn<{
|
|
@@ -593,7 +593,7 @@ export declare const Error: StoryFn<{
|
|
|
593
593
|
placeholder: {
|
|
594
594
|
type: import("vue").PropType<string>;
|
|
595
595
|
};
|
|
596
|
-
|
|
596
|
+
maxlength: {
|
|
597
597
|
type: import("vue").PropType<string>;
|
|
598
598
|
default: string;
|
|
599
599
|
};
|
|
@@ -633,7 +633,7 @@ export declare const Error: StoryFn<{
|
|
|
633
633
|
placeholder: {
|
|
634
634
|
type: import("vue").PropType<string>;
|
|
635
635
|
};
|
|
636
|
-
|
|
636
|
+
maxlength: {
|
|
637
637
|
type: import("vue").PropType<string>;
|
|
638
638
|
default: string;
|
|
639
639
|
};
|
|
@@ -641,7 +641,7 @@ export declare const Error: StoryFn<{
|
|
|
641
641
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
642
642
|
}, {
|
|
643
643
|
name: string;
|
|
644
|
-
|
|
644
|
+
maxlength: string;
|
|
645
645
|
}, true, {}, {}, {
|
|
646
646
|
P: {};
|
|
647
647
|
B: {};
|
|
@@ -681,7 +681,7 @@ export declare const Error: StoryFn<{
|
|
|
681
681
|
placeholder: {
|
|
682
682
|
type: import("vue").PropType<string>;
|
|
683
683
|
};
|
|
684
|
-
|
|
684
|
+
maxlength: {
|
|
685
685
|
type: import("vue").PropType<string>;
|
|
686
686
|
default: string;
|
|
687
687
|
};
|
|
@@ -689,7 +689,7 @@ export declare const Error: StoryFn<{
|
|
|
689
689
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
690
690
|
}, {}, {}, {}, {}, {
|
|
691
691
|
name: string;
|
|
692
|
-
|
|
692
|
+
maxlength: string;
|
|
693
693
|
}>;
|
|
694
694
|
__isFragment?: undefined;
|
|
695
695
|
__isTeleport?: undefined;
|
|
@@ -726,7 +726,7 @@ export declare const Error: StoryFn<{
|
|
|
726
726
|
placeholder: {
|
|
727
727
|
type: import("vue").PropType<string>;
|
|
728
728
|
};
|
|
729
|
-
|
|
729
|
+
maxlength: {
|
|
730
730
|
type: import("vue").PropType<string>;
|
|
731
731
|
default: string;
|
|
732
732
|
};
|
|
@@ -736,12 +736,12 @@ export declare const Error: StoryFn<{
|
|
|
736
736
|
"update:modelValue": (value: string | undefined) => void;
|
|
737
737
|
}, string, {
|
|
738
738
|
name: string;
|
|
739
|
-
|
|
739
|
+
maxlength: string;
|
|
740
740
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
741
741
|
$slots: Readonly<{
|
|
742
|
-
error:
|
|
742
|
+
error: void;
|
|
743
743
|
}> & {
|
|
744
|
-
error:
|
|
744
|
+
error: void;
|
|
745
745
|
};
|
|
746
746
|
})>;
|
|
747
747
|
export declare const Required: StoryFn<{
|
|
@@ -777,7 +777,7 @@ export declare const Required: StoryFn<{
|
|
|
777
777
|
placeholder: {
|
|
778
778
|
type: import("vue").PropType<string>;
|
|
779
779
|
};
|
|
780
|
-
|
|
780
|
+
maxlength: {
|
|
781
781
|
type: import("vue").PropType<string>;
|
|
782
782
|
default: string;
|
|
783
783
|
};
|
|
@@ -817,7 +817,7 @@ export declare const Required: StoryFn<{
|
|
|
817
817
|
placeholder: {
|
|
818
818
|
type: import("vue").PropType<string>;
|
|
819
819
|
};
|
|
820
|
-
|
|
820
|
+
maxlength: {
|
|
821
821
|
type: import("vue").PropType<string>;
|
|
822
822
|
default: string;
|
|
823
823
|
};
|
|
@@ -825,7 +825,7 @@ export declare const Required: StoryFn<{
|
|
|
825
825
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
826
826
|
}, {
|
|
827
827
|
name: string;
|
|
828
|
-
|
|
828
|
+
maxlength: string;
|
|
829
829
|
}, true, {}, {}, {
|
|
830
830
|
P: {};
|
|
831
831
|
B: {};
|
|
@@ -865,7 +865,7 @@ export declare const Required: StoryFn<{
|
|
|
865
865
|
placeholder: {
|
|
866
866
|
type: import("vue").PropType<string>;
|
|
867
867
|
};
|
|
868
|
-
|
|
868
|
+
maxlength: {
|
|
869
869
|
type: import("vue").PropType<string>;
|
|
870
870
|
default: string;
|
|
871
871
|
};
|
|
@@ -873,7 +873,7 @@ export declare const Required: StoryFn<{
|
|
|
873
873
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
874
874
|
}, {}, {}, {}, {}, {
|
|
875
875
|
name: string;
|
|
876
|
-
|
|
876
|
+
maxlength: string;
|
|
877
877
|
}>;
|
|
878
878
|
__isFragment?: undefined;
|
|
879
879
|
__isTeleport?: undefined;
|
|
@@ -910,7 +910,7 @@ export declare const Required: StoryFn<{
|
|
|
910
910
|
placeholder: {
|
|
911
911
|
type: import("vue").PropType<string>;
|
|
912
912
|
};
|
|
913
|
-
|
|
913
|
+
maxlength: {
|
|
914
914
|
type: import("vue").PropType<string>;
|
|
915
915
|
default: string;
|
|
916
916
|
};
|
|
@@ -920,12 +920,12 @@ export declare const Required: StoryFn<{
|
|
|
920
920
|
"update:modelValue": (value: string | undefined) => void;
|
|
921
921
|
}, string, {
|
|
922
922
|
name: string;
|
|
923
|
-
|
|
923
|
+
maxlength: string;
|
|
924
924
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
925
925
|
$slots: Readonly<{
|
|
926
|
-
error:
|
|
926
|
+
error: void;
|
|
927
927
|
}> & {
|
|
928
|
-
error:
|
|
928
|
+
error: void;
|
|
929
929
|
};
|
|
930
930
|
})>;
|
|
931
931
|
export declare const Tooltip: StoryFn<{
|
|
@@ -961,7 +961,7 @@ export declare const Tooltip: StoryFn<{
|
|
|
961
961
|
placeholder: {
|
|
962
962
|
type: import("vue").PropType<string>;
|
|
963
963
|
};
|
|
964
|
-
|
|
964
|
+
maxlength: {
|
|
965
965
|
type: import("vue").PropType<string>;
|
|
966
966
|
default: string;
|
|
967
967
|
};
|
|
@@ -1001,7 +1001,7 @@ export declare const Tooltip: StoryFn<{
|
|
|
1001
1001
|
placeholder: {
|
|
1002
1002
|
type: import("vue").PropType<string>;
|
|
1003
1003
|
};
|
|
1004
|
-
|
|
1004
|
+
maxlength: {
|
|
1005
1005
|
type: import("vue").PropType<string>;
|
|
1006
1006
|
default: string;
|
|
1007
1007
|
};
|
|
@@ -1009,7 +1009,7 @@ export declare const Tooltip: StoryFn<{
|
|
|
1009
1009
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
1010
1010
|
}, {
|
|
1011
1011
|
name: string;
|
|
1012
|
-
|
|
1012
|
+
maxlength: string;
|
|
1013
1013
|
}, true, {}, {}, {
|
|
1014
1014
|
P: {};
|
|
1015
1015
|
B: {};
|
|
@@ -1049,7 +1049,7 @@ export declare const Tooltip: StoryFn<{
|
|
|
1049
1049
|
placeholder: {
|
|
1050
1050
|
type: import("vue").PropType<string>;
|
|
1051
1051
|
};
|
|
1052
|
-
|
|
1052
|
+
maxlength: {
|
|
1053
1053
|
type: import("vue").PropType<string>;
|
|
1054
1054
|
default: string;
|
|
1055
1055
|
};
|
|
@@ -1057,7 +1057,7 @@ export declare const Tooltip: StoryFn<{
|
|
|
1057
1057
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
1058
1058
|
}, {}, {}, {}, {}, {
|
|
1059
1059
|
name: string;
|
|
1060
|
-
|
|
1060
|
+
maxlength: string;
|
|
1061
1061
|
}>;
|
|
1062
1062
|
__isFragment?: undefined;
|
|
1063
1063
|
__isTeleport?: undefined;
|
|
@@ -1094,7 +1094,7 @@ export declare const Tooltip: StoryFn<{
|
|
|
1094
1094
|
placeholder: {
|
|
1095
1095
|
type: import("vue").PropType<string>;
|
|
1096
1096
|
};
|
|
1097
|
-
|
|
1097
|
+
maxlength: {
|
|
1098
1098
|
type: import("vue").PropType<string>;
|
|
1099
1099
|
default: string;
|
|
1100
1100
|
};
|
|
@@ -1104,12 +1104,12 @@ export declare const Tooltip: StoryFn<{
|
|
|
1104
1104
|
"update:modelValue": (value: string | undefined) => void;
|
|
1105
1105
|
}, string, {
|
|
1106
1106
|
name: string;
|
|
1107
|
-
|
|
1107
|
+
maxlength: string;
|
|
1108
1108
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1109
1109
|
$slots: Readonly<{
|
|
1110
|
-
error:
|
|
1110
|
+
error: void;
|
|
1111
1111
|
}> & {
|
|
1112
|
-
error:
|
|
1112
|
+
error: void;
|
|
1113
1113
|
};
|
|
1114
1114
|
})>;
|
|
1115
1115
|
export declare const MaximumCharacters: StoryFn<{
|
|
@@ -1145,7 +1145,7 @@ export declare const MaximumCharacters: StoryFn<{
|
|
|
1145
1145
|
placeholder: {
|
|
1146
1146
|
type: import("vue").PropType<string>;
|
|
1147
1147
|
};
|
|
1148
|
-
|
|
1148
|
+
maxlength: {
|
|
1149
1149
|
type: import("vue").PropType<string>;
|
|
1150
1150
|
default: string;
|
|
1151
1151
|
};
|
|
@@ -1185,7 +1185,7 @@ export declare const MaximumCharacters: StoryFn<{
|
|
|
1185
1185
|
placeholder: {
|
|
1186
1186
|
type: import("vue").PropType<string>;
|
|
1187
1187
|
};
|
|
1188
|
-
|
|
1188
|
+
maxlength: {
|
|
1189
1189
|
type: import("vue").PropType<string>;
|
|
1190
1190
|
default: string;
|
|
1191
1191
|
};
|
|
@@ -1193,7 +1193,7 @@ export declare const MaximumCharacters: StoryFn<{
|
|
|
1193
1193
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
1194
1194
|
}, {
|
|
1195
1195
|
name: string;
|
|
1196
|
-
|
|
1196
|
+
maxlength: string;
|
|
1197
1197
|
}, true, {}, {}, {
|
|
1198
1198
|
P: {};
|
|
1199
1199
|
B: {};
|
|
@@ -1233,7 +1233,7 @@ export declare const MaximumCharacters: StoryFn<{
|
|
|
1233
1233
|
placeholder: {
|
|
1234
1234
|
type: import("vue").PropType<string>;
|
|
1235
1235
|
};
|
|
1236
|
-
|
|
1236
|
+
maxlength: {
|
|
1237
1237
|
type: import("vue").PropType<string>;
|
|
1238
1238
|
default: string;
|
|
1239
1239
|
};
|
|
@@ -1241,7 +1241,7 @@ export declare const MaximumCharacters: StoryFn<{
|
|
|
1241
1241
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
1242
1242
|
}, {}, {}, {}, {}, {
|
|
1243
1243
|
name: string;
|
|
1244
|
-
|
|
1244
|
+
maxlength: string;
|
|
1245
1245
|
}>;
|
|
1246
1246
|
__isFragment?: undefined;
|
|
1247
1247
|
__isTeleport?: undefined;
|
|
@@ -1278,7 +1278,7 @@ export declare const MaximumCharacters: StoryFn<{
|
|
|
1278
1278
|
placeholder: {
|
|
1279
1279
|
type: import("vue").PropType<string>;
|
|
1280
1280
|
};
|
|
1281
|
-
|
|
1281
|
+
maxlength: {
|
|
1282
1282
|
type: import("vue").PropType<string>;
|
|
1283
1283
|
default: string;
|
|
1284
1284
|
};
|
|
@@ -1288,12 +1288,12 @@ export declare const MaximumCharacters: StoryFn<{
|
|
|
1288
1288
|
"update:modelValue": (value: string | undefined) => void;
|
|
1289
1289
|
}, string, {
|
|
1290
1290
|
name: string;
|
|
1291
|
-
|
|
1291
|
+
maxlength: string;
|
|
1292
1292
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1293
1293
|
$slots: Readonly<{
|
|
1294
|
-
error:
|
|
1294
|
+
error: void;
|
|
1295
1295
|
}> & {
|
|
1296
|
-
error:
|
|
1296
|
+
error: void;
|
|
1297
1297
|
};
|
|
1298
1298
|
})>;
|
|
1299
1299
|
//# sourceMappingURL=vc-textarea.stories.d.ts.map
|
|
@@ -6,7 +6,7 @@ export interface Props {
|
|
|
6
6
|
label?: string;
|
|
7
7
|
tooltip?: string;
|
|
8
8
|
name?: string;
|
|
9
|
-
|
|
9
|
+
maxlength?: string;
|
|
10
10
|
errorMessage?: string;
|
|
11
11
|
multilanguage?: boolean;
|
|
12
12
|
currentLanguage?: string;
|
|
@@ -16,21 +16,21 @@ export interface Emits {
|
|
|
16
16
|
}
|
|
17
17
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
18
18
|
name: string;
|
|
19
|
-
|
|
19
|
+
maxlength: string;
|
|
20
20
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
21
|
"update:modelValue": (value: string | undefined) => void;
|
|
22
22
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
23
23
|
name: string;
|
|
24
|
-
|
|
24
|
+
maxlength: string;
|
|
25
25
|
}>>> & {
|
|
26
26
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
27
27
|
}, {
|
|
28
28
|
name: string;
|
|
29
|
-
|
|
29
|
+
maxlength: string;
|
|
30
30
|
}, {}>, Readonly<{
|
|
31
|
-
error:
|
|
31
|
+
error: void;
|
|
32
32
|
}> & {
|
|
33
|
-
error:
|
|
33
|
+
error: void;
|
|
34
34
|
}>;
|
|
35
35
|
export default _default;
|
|
36
36
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vc-textarea.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/molecules/vc-textarea/vc-textarea.vue.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vc-textarea.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/molecules/vc-textarea/vc-textarea.vue.ts"],"names":[],"mappings":"AAIA,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,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,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,SAAS,GAAG,IAAI,CAAC;CAC/D;;;;;;;;;;;;;;;;;;;AAkLD,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"}
|
package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { ITableColumns } from "./../../../../../../core/types";
|
|
|
2
2
|
export interface Props {
|
|
3
3
|
cell: ITableColumns;
|
|
4
4
|
item: Record<string, unknown>;
|
|
5
|
+
width?: number;
|
|
5
6
|
}
|
|
6
7
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>;
|
|
7
8
|
export default _default;
|
package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vc-table-cell.vue.d.ts","sourceRoot":"","sources":["../../../../../../../ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;
|
|
1
|
+
{"version":3,"file":"vc-table-cell.vue.d.ts","sourceRoot":"","sources":["../../../../../../../ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAK/D,MAAM,WAAW,KAAK;IACpB,IAAI,EAAE,aAAa,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;;AAgXD,wBAMG;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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vc-table-column-switcher.vue.d.ts","sourceRoot":"","sources":["../../../../../../../ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAI/D,MAAM,WAAW,KAAK;IACpB,KAAK,EAAE,aAAa,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,KAAK;IACpB,CAAC,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,aAAa,GAAG,IAAI,CAAC;CAC/C;;;;;;
|
|
1
|
+
{"version":3,"file":"vc-table-column-switcher.vue.d.ts","sourceRoot":"","sources":["../../../../../../../ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAI/D,MAAM,WAAW,KAAK;IACpB,KAAK,EAAE,aAAa,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,KAAK;IACpB,CAAC,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,aAAa,GAAG,IAAI,CAAC;CAC/C;;;;;;AAsOD,wBAOG;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;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"}
|
|
@@ -12,7 +12,7 @@ declare const _default: {
|
|
|
12
12
|
columns: ({
|
|
13
13
|
id: string;
|
|
14
14
|
title: string;
|
|
15
|
-
width:
|
|
15
|
+
width: string;
|
|
16
16
|
type: string;
|
|
17
17
|
sortable?: undefined;
|
|
18
18
|
} | {
|
|
@@ -25,8 +25,14 @@ declare const _default: {
|
|
|
25
25
|
id: string;
|
|
26
26
|
title: string;
|
|
27
27
|
sortable: boolean;
|
|
28
|
-
width:
|
|
28
|
+
width: string;
|
|
29
29
|
type?: undefined;
|
|
30
|
+
} | {
|
|
31
|
+
id: string;
|
|
32
|
+
title: string;
|
|
33
|
+
width?: undefined;
|
|
34
|
+
type?: undefined;
|
|
35
|
+
sortable?: undefined;
|
|
30
36
|
})[];
|
|
31
37
|
items: {
|
|
32
38
|
id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vc-table.stories.d.ts","sourceRoot":"","sources":["../../../../../ui/components/organisms/vc-table/vc-table.stories.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAQ,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,IAAI,CAAC
|
|
1
|
+
{"version":3,"file":"vc-table.stories.d.ts","sourceRoot":"","sources":["../../../../../ui/components/organisms/vc-table/vc-table.stories.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAQ,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAK7B,wBAsEiC;AAEjC,eAAO,MAAM,OAAO,EAAE,OAAO,CAAC,OAAO,OAAO,CAe1C,CAAC;AAEH,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAmB,CAAC;AAKxC,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAmB,CAAC;AAK9C,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAmB,CAAC;AAK9C,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAmB,CAAC;AAKxD,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAmB,CAAC;AAK1D,eAAO,MAAM,mBAAmB,EAAE,OAAO,CAAC,OAAO,OAAO,CAmEtD,CAAC;AAEH,eAAO,MAAM,cAAc,EAAE,OAAO,CAAC,OAAO,OAAO,CAuBjD,CAAC"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MaybeRef, Ref } from "vue";
|
|
2
2
|
import { IActionBuilderResult, ITableColumns } from "./../../../../core/types";
|
|
3
|
+
import "core-js/actual/array/to-spliced";
|
|
4
|
+
import "core-js/actual/array/to-sorted";
|
|
3
5
|
export interface StatusImage {
|
|
4
6
|
image?: string;
|
|
5
7
|
text: string | Ref<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vc-table.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/organisms/vc-table/vc-table.vue.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vc-table.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/organisms/vc-table/vc-table.vue.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vc-shell/framework",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.190",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/framework.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -40,12 +40,14 @@
|
|
|
40
40
|
"@vueuse/core": "^10.7.1",
|
|
41
41
|
"@vueuse/integrations": "^10.7.1",
|
|
42
42
|
"core-js": "^3.35.0",
|
|
43
|
+
"dompurify": "^3.0.11",
|
|
43
44
|
"iso-639-1": "^3.1.0",
|
|
44
45
|
"moment": "^2.30.1",
|
|
45
46
|
"normalize.css": "^8.0.1",
|
|
46
47
|
"quill": "^1.3.7",
|
|
47
48
|
"quill-image-uploader": "^1.3.0",
|
|
48
49
|
"swiper": "^6.8.4",
|
|
50
|
+
"truncate-html": "^1.1.1",
|
|
49
51
|
"vee-validate": "^4.12.4",
|
|
50
52
|
"vue": "^3.4.19",
|
|
51
53
|
"vue-currency-input": "^3.0.5",
|
|
@@ -55,9 +57,11 @@
|
|
|
55
57
|
"whatwg-fetch": "^3.6.19"
|
|
56
58
|
},
|
|
57
59
|
"devDependencies": {
|
|
58
|
-
"@
|
|
59
|
-
"@
|
|
60
|
-
"@vc-shell/
|
|
60
|
+
"@types/dompurify": "^3.0.5",
|
|
61
|
+
"@types/quill": "^2.0.14",
|
|
62
|
+
"@vc-shell/api-client-generator": "^1.0.190",
|
|
63
|
+
"@vc-shell/config-generator": "^1.0.190",
|
|
64
|
+
"@vc-shell/ts-config": "^1.0.190",
|
|
61
65
|
"@vitejs/plugin-vue": "^5.0.3",
|
|
62
66
|
"sass": "^1.69.6",
|
|
63
67
|
"shx": "^0.3.4",
|