ablok-components 0.1.80 → 0.1.82
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 +27 -13
- package/dist/ablok-components.umd.js +26 -26
- package/dist/components/molecules/file-upload/file-upload.vue.d.ts +9 -0
- package/dist/components/molecules/upload-group/upload-group.vue.d.ts +9 -0
- package/dist/components/organisms/asset-uploader/asset-uploader.vue.d.ts +9 -0
- package/package.json +1 -1
|
@@ -95,6 +95,10 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
95
95
|
default: string;
|
|
96
96
|
};
|
|
97
97
|
customFetch: null;
|
|
98
|
+
baseResponsePath: {
|
|
99
|
+
type: StringConstructor;
|
|
100
|
+
default: string;
|
|
101
|
+
};
|
|
98
102
|
previewWidth: {
|
|
99
103
|
type: NumberConstructor;
|
|
100
104
|
default: number;
|
|
@@ -195,6 +199,10 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
195
199
|
default: string;
|
|
196
200
|
};
|
|
197
201
|
customFetch: null;
|
|
202
|
+
baseResponsePath: {
|
|
203
|
+
type: StringConstructor;
|
|
204
|
+
default: string;
|
|
205
|
+
};
|
|
198
206
|
previewWidth: {
|
|
199
207
|
type: NumberConstructor;
|
|
200
208
|
default: number;
|
|
@@ -221,6 +229,7 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
221
229
|
endpoint: string;
|
|
222
230
|
toDataUrl: boolean;
|
|
223
231
|
authToken: string;
|
|
232
|
+
baseResponsePath: string;
|
|
224
233
|
previewWidth: number;
|
|
225
234
|
}>;
|
|
226
235
|
export default _sfc_main;
|
|
@@ -53,6 +53,10 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
53
53
|
default: string;
|
|
54
54
|
};
|
|
55
55
|
customFetch: null;
|
|
56
|
+
baseResponsePath: {
|
|
57
|
+
type: StringConstructor;
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
56
60
|
previewWidth: {
|
|
57
61
|
type: NumberConstructor;
|
|
58
62
|
default: number;
|
|
@@ -112,6 +116,10 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
112
116
|
default: string;
|
|
113
117
|
};
|
|
114
118
|
customFetch: null;
|
|
119
|
+
baseResponsePath: {
|
|
120
|
+
type: StringConstructor;
|
|
121
|
+
default: string;
|
|
122
|
+
};
|
|
115
123
|
previewWidth: {
|
|
116
124
|
type: NumberConstructor;
|
|
117
125
|
default: number;
|
|
@@ -129,6 +137,7 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
129
137
|
accept: string;
|
|
130
138
|
endpoint: string;
|
|
131
139
|
authToken: string;
|
|
140
|
+
baseResponsePath: string;
|
|
132
141
|
previewWidth: number;
|
|
133
142
|
}>;
|
|
134
143
|
export default _sfc_main;
|
|
@@ -74,6 +74,10 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
74
74
|
jpg: MediaType;
|
|
75
75
|
};
|
|
76
76
|
};
|
|
77
|
+
baseResponsePath: {
|
|
78
|
+
type: StringConstructor;
|
|
79
|
+
default: string;
|
|
80
|
+
};
|
|
77
81
|
previewWidth: {
|
|
78
82
|
type: NumberConstructor;
|
|
79
83
|
default: number;
|
|
@@ -145,6 +149,10 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
145
149
|
jpg: MediaType;
|
|
146
150
|
};
|
|
147
151
|
};
|
|
152
|
+
baseResponsePath: {
|
|
153
|
+
type: StringConstructor;
|
|
154
|
+
default: string;
|
|
155
|
+
};
|
|
148
156
|
previewWidth: {
|
|
149
157
|
type: NumberConstructor;
|
|
150
158
|
default: number;
|
|
@@ -163,6 +171,7 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
163
171
|
accept: string;
|
|
164
172
|
endpoint: string;
|
|
165
173
|
authToken: string;
|
|
174
|
+
baseResponsePath: string;
|
|
166
175
|
previewWidth: number;
|
|
167
176
|
mediaTypeMap: Record<string, any>;
|
|
168
177
|
}>;
|