ablok-components 0.2.32 → 0.2.35
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/dist/ablok-components.es.js +1212 -1190
- package/dist/ablok-components.umd.js +44 -44
- package/dist/components/atoms/input-file/input-file.vue.d.ts +9 -0
- package/dist/components/molecules/file-upload/file-upload.vue.d.ts +9 -3
- package/dist/components/molecules/upload-group/upload-group.vue.d.ts +9 -3
- package/dist/components/organisms/asset-uploader/asset-uploader.vue.d.ts +9 -3
- package/package.json +1 -1
|
@@ -75,6 +75,10 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
75
75
|
accept: {
|
|
76
76
|
type: StringConstructor;
|
|
77
77
|
};
|
|
78
|
+
maxFileSize: {
|
|
79
|
+
type: NumberConstructor;
|
|
80
|
+
default: number;
|
|
81
|
+
};
|
|
78
82
|
dropzone: {
|
|
79
83
|
type: BooleanConstructor;
|
|
80
84
|
default: boolean;
|
|
@@ -144,6 +148,10 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
144
148
|
accept: {
|
|
145
149
|
type: StringConstructor;
|
|
146
150
|
};
|
|
151
|
+
maxFileSize: {
|
|
152
|
+
type: NumberConstructor;
|
|
153
|
+
default: number;
|
|
154
|
+
};
|
|
147
155
|
dropzone: {
|
|
148
156
|
type: BooleanConstructor;
|
|
149
157
|
default: boolean;
|
|
@@ -162,6 +170,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
162
170
|
placeholder: string;
|
|
163
171
|
readOnly: boolean;
|
|
164
172
|
multiple: boolean;
|
|
173
|
+
maxFileSize: number;
|
|
165
174
|
dropzone: boolean;
|
|
166
175
|
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {
|
|
167
176
|
input: HTMLInputElement;
|
|
@@ -82,7 +82,10 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
82
82
|
};
|
|
83
83
|
accept: {
|
|
84
84
|
type: StringConstructor;
|
|
85
|
-
|
|
85
|
+
};
|
|
86
|
+
maxFileSize: {
|
|
87
|
+
type: NumberConstructor;
|
|
88
|
+
default: number;
|
|
86
89
|
};
|
|
87
90
|
endpoint: {
|
|
88
91
|
type: StringConstructor;
|
|
@@ -199,7 +202,10 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
199
202
|
};
|
|
200
203
|
accept: {
|
|
201
204
|
type: StringConstructor;
|
|
202
|
-
|
|
205
|
+
};
|
|
206
|
+
maxFileSize: {
|
|
207
|
+
type: NumberConstructor;
|
|
208
|
+
default: number;
|
|
203
209
|
};
|
|
204
210
|
endpoint: {
|
|
205
211
|
type: StringConstructor;
|
|
@@ -248,7 +254,7 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
248
254
|
placeholder: string;
|
|
249
255
|
readOnly: boolean;
|
|
250
256
|
multiple: boolean;
|
|
251
|
-
|
|
257
|
+
maxFileSize: number;
|
|
252
258
|
endpoint: string;
|
|
253
259
|
toDataUrl: boolean;
|
|
254
260
|
authToken: string;
|
|
@@ -44,7 +44,10 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
44
44
|
};
|
|
45
45
|
accept: {
|
|
46
46
|
type: StringConstructor;
|
|
47
|
-
|
|
47
|
+
};
|
|
48
|
+
maxFileSize: {
|
|
49
|
+
type: NumberConstructor;
|
|
50
|
+
default: number;
|
|
48
51
|
};
|
|
49
52
|
endpoint: {
|
|
50
53
|
type: StringConstructor;
|
|
@@ -111,7 +114,10 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
111
114
|
};
|
|
112
115
|
accept: {
|
|
113
116
|
type: StringConstructor;
|
|
114
|
-
|
|
117
|
+
};
|
|
118
|
+
maxFileSize: {
|
|
119
|
+
type: NumberConstructor;
|
|
120
|
+
default: number;
|
|
115
121
|
};
|
|
116
122
|
endpoint: {
|
|
117
123
|
type: StringConstructor;
|
|
@@ -140,7 +146,7 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
140
146
|
modelValue: String[];
|
|
141
147
|
disabled: boolean;
|
|
142
148
|
name: string;
|
|
143
|
-
|
|
149
|
+
maxFileSize: number;
|
|
144
150
|
endpoint: string;
|
|
145
151
|
authToken: string;
|
|
146
152
|
baseResponsePath: string;
|
|
@@ -57,7 +57,10 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
57
57
|
};
|
|
58
58
|
accept: {
|
|
59
59
|
type: StringConstructor;
|
|
60
|
-
|
|
60
|
+
};
|
|
61
|
+
maxFileSize: {
|
|
62
|
+
type: NumberConstructor;
|
|
63
|
+
default: number;
|
|
61
64
|
};
|
|
62
65
|
endpoint: {
|
|
63
66
|
type: StringConstructor;
|
|
@@ -136,7 +139,10 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
136
139
|
};
|
|
137
140
|
accept: {
|
|
138
141
|
type: StringConstructor;
|
|
139
|
-
|
|
142
|
+
};
|
|
143
|
+
maxFileSize: {
|
|
144
|
+
type: NumberConstructor;
|
|
145
|
+
default: number;
|
|
140
146
|
};
|
|
141
147
|
endpoint: {
|
|
142
148
|
type: StringConstructor;
|
|
@@ -174,7 +180,7 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
174
180
|
modelValue: any[];
|
|
175
181
|
disabled: boolean;
|
|
176
182
|
name: string;
|
|
177
|
-
|
|
183
|
+
maxFileSize: number;
|
|
178
184
|
endpoint: string;
|
|
179
185
|
authToken: string;
|
|
180
186
|
baseResponsePath: string;
|