ablok-components 0.1.81 → 0.1.83
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 +25 -12
- package/dist/ablok-components.umd.js +26 -26
- package/dist/components/molecules/link-sharing/link-sharing.vue.d.ts +11 -4
- 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/dist/symbol-defs.svg +3 -0
- package/package.json +1 -1
|
@@ -4,7 +4,10 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
4
4
|
type: StringConstructor;
|
|
5
5
|
default: string;
|
|
6
6
|
};
|
|
7
|
-
subject:
|
|
7
|
+
subject: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
8
11
|
hashtags: {
|
|
9
12
|
(arrayLength: number): string[];
|
|
10
13
|
(...items: string[]): string[];
|
|
@@ -31,12 +34,12 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
31
34
|
type: ObjectConstructor;
|
|
32
35
|
default: {
|
|
33
36
|
facebook: boolean;
|
|
34
|
-
twitter: boolean;
|
|
35
37
|
instagram: boolean;
|
|
36
38
|
linkedin: boolean;
|
|
37
39
|
whatsapp: boolean;
|
|
38
40
|
mailto: boolean;
|
|
39
41
|
clipboard: boolean;
|
|
42
|
+
x: boolean;
|
|
40
43
|
};
|
|
41
44
|
};
|
|
42
45
|
}, {}, unknown, {}, {}, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('./vue/dist/vue.esm-bundler.js').VNodeProps & import('./vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('./vue/dist/vue.esm-bundler.js').ComponentCustomProps, Readonly<import('./vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
@@ -44,7 +47,10 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
44
47
|
type: StringConstructor;
|
|
45
48
|
default: string;
|
|
46
49
|
};
|
|
47
|
-
subject:
|
|
50
|
+
subject: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
48
54
|
hashtags: {
|
|
49
55
|
(arrayLength: number): string[];
|
|
50
56
|
(...items: string[]): string[];
|
|
@@ -71,17 +77,18 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
71
77
|
type: ObjectConstructor;
|
|
72
78
|
default: {
|
|
73
79
|
facebook: boolean;
|
|
74
|
-
twitter: boolean;
|
|
75
80
|
instagram: boolean;
|
|
76
81
|
linkedin: boolean;
|
|
77
82
|
whatsapp: boolean;
|
|
78
83
|
mailto: boolean;
|
|
79
84
|
clipboard: boolean;
|
|
85
|
+
x: boolean;
|
|
80
86
|
};
|
|
81
87
|
};
|
|
82
88
|
}>>, {
|
|
83
89
|
text: string;
|
|
84
90
|
url: string;
|
|
91
|
+
subject: string;
|
|
85
92
|
media: string;
|
|
86
93
|
services: Record<string, any>;
|
|
87
94
|
}>;
|
|
@@ -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
|
}>;
|
package/dist/symbol-defs.svg
CHANGED
|
@@ -768,6 +768,9 @@
|
|
|
768
768
|
<symbol id="icon-twitter" viewBox="0 0 32 32">
|
|
769
769
|
<path d="M21.12 2.699c-1.139 0.208-1.596 0.345-2.32 0.691-1.827 0.873-3.205 2.476-3.808 4.424-0.18 0.585-0.324 1.428-0.325 1.905v0.305l-0.253-0.029c-1.232-0.145-2.475-0.443-3.427-0.82-2.317-0.92-4.219-2.367-5.679-4.321-0.536-0.719-0.793-0.907-1.244-0.907-0.333 0-0.855 0.253-1.077 0.524-0.385 0.467-0.979 2.423-1.273 4.196-0.303 1.829-0.285 3.929 0.048 5.557 0.309 1.515 1.001 3.196 1.808 4.391 0.984 1.459 2.332 2.781 3.884 3.811 0.212 0.141 0.387 0.265 0.387 0.276 0 0.080-1.683 0.689-2.427 0.879-1.069 0.273-2.269 0.419-3.467 0.42-0.499 0-0.993 0.025-1.1 0.055-0.308 0.085-0.537 0.272-0.684 0.557-0.185 0.361-0.193 1.009-0.016 1.343 0.171 0.323 0.387 0.476 1.356 0.963 2.337 1.175 4.505 1.844 7.057 2.18 0.885 0.116 3.136 0.16 4.091 0.080 3.189-0.269 6.221-1.337 8.816-3.104 4.988-3.396 7.864-9.243 7.867-15.988v-0.767l0.231-0.273c0.849-0.999 1.549-2.208 2.007-3.46 0.444-1.217 0.537-1.913 0.305-2.295-0.188-0.311-0.561-0.531-1.016-0.599-0.407-0.061-0.633 0.013-1.272 0.421-0.331 0.212-0.829 0.508-1.108 0.657-0.505 0.272-1.491 0.709-1.597 0.709-0.031 0-0.276-0.167-0.544-0.371-0.795-0.603-1.821-1.063-2.927-1.309-0.387-0.085-1.988-0.156-2.292-0.101zM22.827 5.411c0.995 0.192 1.724 0.585 2.504 1.348 0.221 0.217 0.496 0.443 0.609 0.501 0.3 0.157 0.704 0.139 1.284-0.057 0.261-0.089 0.485-0.163 0.496-0.163 0.045 0-0.212 0.319-0.587 0.725-0.563 0.611-0.612 0.759-0.523 1.579 0.069 0.656 0.053 1.489-0.056 2.709-0.509 5.695-3.509 10.373-8.181 12.756-0.905 0.461-1.24 0.605-2.092 0.901-1.14 0.395-2.436 0.676-3.668 0.795-0.797 0.077-2.567 0.064-3.413-0.025-0.884-0.093-2.049-0.297-2.476-0.433-0.041-0.013 0.237-0.131 0.621-0.261 1.357-0.461 2.62-1.071 3.753-1.811 0.564-0.369 0.696-0.519 0.851-0.968 0.129-0.376 0.131-0.624 0.004-0.903-0.143-0.312-0.336-0.449-1.301-0.924-2.907-1.425-4.809-3.344-5.799-5.844-0.693-1.753-0.865-4.041-0.48-6.377 0.157-0.956 0.112-0.924 0.641-0.439 1.195 1.093 2.276 1.844 3.652 2.533 1.557 0.78 2.939 1.216 4.795 1.515 0.647 0.104 2.705 0.159 2.997 0.079 0.32-0.087 0.564-0.272 0.715-0.543 0.129-0.231 0.135-0.279 0.167-1.571 0.028-1.117 0.052-1.401 0.147-1.753 0.313-1.168 1.151-2.263 2.168-2.835 0.959-0.539 2.128-0.736 3.172-0.535z"></path>
|
|
770
770
|
</symbol>
|
|
771
|
+
<symbol id="icon-x" viewBox="0 0 31 32">
|
|
772
|
+
<path d="M18.625 13.543l11.651-13.543h-2.761l-10.116 11.759-8.080-11.759h-9.319l12.218 17.782-12.218 14.202h2.761l10.683-12.418 8.533 12.418h9.319l-12.671-18.441zM14.844 17.938l-11.088-15.86h4.241l19.52 27.921h-4.241l-8.432-12.061z"></path>
|
|
773
|
+
</symbol>
|
|
771
774
|
<symbol id="icon-type" viewBox="0 0 32 32">
|
|
772
775
|
<path d="M4.819 4.076c-0.316 0.099-0.536 0.272-0.673 0.528-0.117 0.22-0.119 0.259-0.135 2.609-0.009 1.529 0.005 2.46 0.040 2.592 0.141 0.524 0.527 0.809 1.144 0.849 0.647 0.041 1.071-0.145 1.312-0.577 0.132-0.236 0.133-0.245 0.151-1.824l0.016-1.587h7.993v18.667h-1.459c-1.549 0-1.781 0.029-2.112 0.265-0.296 0.211-0.403 0.492-0.403 1.068 0 0.441 0.017 0.537 0.133 0.744 0.147 0.263 0.392 0.453 0.687 0.535 0.263 0.073 8.711 0.073 8.973 0 0.295-0.081 0.54-0.272 0.687-0.535 0.116-0.208 0.133-0.301 0.132-0.744-0.001-0.577-0.108-0.86-0.401-1.068-0.331-0.236-0.563-0.265-2.112-0.265h-1.459v-18.667h8v1.48c0 0.827 0.024 1.565 0.055 1.673 0.143 0.513 0.528 0.796 1.14 0.835 0.647 0.041 1.071-0.145 1.312-0.577l0.133-0.237v-2.507c0-2.489-0.001-2.508-0.119-2.729-0.141-0.263-0.359-0.429-0.693-0.531-0.353-0.105-22.004-0.103-22.343 0.003z"></path>
|
|
773
776
|
</symbol>
|