@weni/unnnic-system 3.1.3 → 3.1.4-alpha.3
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 +12 -0
- package/dist/apple-64.png +0 -0
- package/dist/components/ChatsMessage/ChatsMessage.vue.d.ts +60 -3
- package/dist/components/ChatsMessage/ChatsMessage.vue.d.ts.map +1 -1
- package/dist/components/ChatsMessage/ChatsMessageText.vue.d.ts +42 -3
- package/dist/components/ChatsMessage/ChatsMessageText.vue.d.ts.map +1 -1
- package/dist/components/DatePicker/DatePicker.vue.d.ts +2 -2
- package/dist/components/DropArea/DropArea.vue.d.ts +2 -0
- package/dist/components/DropArea/DropArea.vue.d.ts.map +1 -1
- package/dist/components/EmojiPicker/EmojiPicker.vue.d.ts.map +1 -1
- package/dist/components/InputDatePicker/InputDatePicker.vue.d.ts +3 -3
- package/dist/components/ModalDialog/ModalDialog.vue.d.ts +1 -1
- package/dist/components/ModalDialog/ModalDialog.vue.d.ts.map +1 -1
- package/dist/components/ModalUpload/ModalUpload.vue.d.ts +6 -0
- package/dist/components/TemplatePreview/TemplatePreview.vue.d.ts +9 -0
- package/dist/components/TemplatePreview/TemplatePreview.vue.d.ts.map +1 -0
- package/dist/components/TemplatePreview/TemplatePreviewModal.vue.d.ts +15 -0
- package/dist/components/TemplatePreview/TemplatePreviewModal.vue.d.ts.map +1 -0
- package/dist/components/UploadArea/UploadArea.vue.d.ts +6 -0
- package/dist/{es-5ee61601.mjs → es-c9f02312.mjs} +1 -1
- package/dist/{index-33c1d3d4.mjs → index-1caa0110.mjs} +7178 -6974
- package/dist/locales/en.json.d.ts +1 -0
- package/dist/locales/es.json.d.ts +1 -0
- package/dist/locales/pt_br.json.d.ts +1 -0
- package/dist/{pt-br-e6fd44f8.mjs → pt-br-d6d372a9.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +26 -24
- package/dist/unnnic.umd.js +42 -41
- package/package.json +1 -1
- package/public/apple-64.png +0 -0
- package/src/assets/img/previews/doc-preview.png +0 -0
- package/src/assets/img/previews/image-preview.png +0 -0
- package/src/assets/img/previews/video-preview.png +0 -0
- package/src/components/ChatsMessage/ChatsMessage.vue +15 -0
- package/src/components/ChatsMessage/ChatsMessageText.vue +58 -4
- package/src/components/DropArea/DropArea.vue +26 -2
- package/src/components/EmojiPicker/EmojiPicker.vue +16 -1
- package/src/components/EmojiPicker/__tests__/EmojiPicker.spec.js +6 -4
- package/src/components/ModalDialog/ModalDialog.vue +27 -29
- package/src/components/ModalDialog/__tests__/__snapshots__/ModalDialog.spec.js.snap +1 -1
- package/src/components/TemplatePreview/TemplatePreview.vue +249 -0
- package/src/components/TemplatePreview/TemplatePreviewModal.vue +51 -0
- package/src/components/TemplatePreview/types.d.ts +16 -0
- package/src/components/index.ts +8 -2
- package/src/locales/en.json +1 -0
- package/src/locales/es.json +1 -0
- package/src/locales/pt_br.json +1 -0
- package/src/stories/TemplatePreview.stories.js +94 -0
- package/src/stories/TemplatePreviewModal.stories.js +110 -0
- package/dist/components/index.d.ts +0 -18063
- package/dist/components/index.d.ts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
|
|
9
|
+
# 3.1.4 (2025-09-05)
|
|
10
|
+
|
|
11
|
+
- **EmojiPicker Refactoring**: Complete modernization of EmojiPicker component:
|
|
12
|
+
- **Security Enhancement**: Local emoji sprite sheets to eliminate external CDN requests (CORS/CSP compliance)
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- **Security**: Eliminated external requests to unpkg.com for emoji sprite sheets
|
|
17
|
+
- **CSP Compliance**: EmojiPicker now works with strict Content Security Policy headers
|
|
18
|
+
- **Performance**: Reduced bundle size and improved loading times
|
|
19
|
+
|
|
8
20
|
# 3.1.3 (2025-09-05)
|
|
9
21
|
|
|
10
22
|
### Added
|
|
Binary file
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
locale: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
2
6
|
enableReply: {
|
|
3
7
|
type: BooleanConstructor;
|
|
4
8
|
default: boolean;
|
|
@@ -12,6 +16,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
12
16
|
default: string;
|
|
13
17
|
validate(type: any): boolean;
|
|
14
18
|
};
|
|
19
|
+
automatic: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
15
23
|
time: {
|
|
16
24
|
type: DateConstructor;
|
|
17
25
|
required: true;
|
|
@@ -73,6 +81,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
73
81
|
i18n(...args: any[]): any;
|
|
74
82
|
};
|
|
75
83
|
}, import('vue').ComponentOptionsMixin, ("click" | "click-image" | "reply" | "click-reply-message")[], "click" | "click-image" | "reply" | "click-reply-message", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
84
|
+
locale: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
default: string;
|
|
87
|
+
};
|
|
76
88
|
enableReply: {
|
|
77
89
|
type: BooleanConstructor;
|
|
78
90
|
default: boolean;
|
|
@@ -86,6 +98,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
86
98
|
default: string;
|
|
87
99
|
validate(type: any): boolean;
|
|
88
100
|
};
|
|
101
|
+
automatic: {
|
|
102
|
+
type: BooleanConstructor;
|
|
103
|
+
default: boolean;
|
|
104
|
+
};
|
|
89
105
|
time: {
|
|
90
106
|
type: DateConstructor;
|
|
91
107
|
required: true;
|
|
@@ -115,7 +131,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
115
131
|
"onClick-reply-message"?: ((...args: any[]) => any) | undefined;
|
|
116
132
|
}>, {
|
|
117
133
|
type: string;
|
|
134
|
+
locale: string;
|
|
118
135
|
status: string;
|
|
136
|
+
automatic: boolean;
|
|
119
137
|
replyMessage: Record<string, any> | null;
|
|
120
138
|
enableReply: boolean;
|
|
121
139
|
signature: string;
|
|
@@ -123,18 +141,57 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
123
141
|
mediaType: string;
|
|
124
142
|
}, {}, {
|
|
125
143
|
UnnnicChatsMessageText: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
144
|
+
locale: {
|
|
145
|
+
type: StringConstructor;
|
|
146
|
+
default: string;
|
|
147
|
+
};
|
|
126
148
|
text: {
|
|
127
149
|
type: StringConstructor;
|
|
128
150
|
required: true;
|
|
129
151
|
};
|
|
130
|
-
|
|
152
|
+
isAutomatic: {
|
|
153
|
+
type: BooleanConstructor;
|
|
154
|
+
default: boolean;
|
|
155
|
+
};
|
|
156
|
+
}>, {}, {
|
|
157
|
+
defaultTranslations: {
|
|
158
|
+
automatic_message: {
|
|
159
|
+
'pt-br': string;
|
|
160
|
+
en: string;
|
|
161
|
+
es: string;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
}, {
|
|
131
165
|
formattedText(): any;
|
|
132
|
-
}, {},
|
|
166
|
+
}, {}, {
|
|
167
|
+
props: {
|
|
168
|
+
locale: {
|
|
169
|
+
type: StringConstructor;
|
|
170
|
+
};
|
|
171
|
+
translations: {
|
|
172
|
+
type: ObjectConstructor;
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
methods: {
|
|
176
|
+
i18n(...args: any[]): any;
|
|
177
|
+
};
|
|
178
|
+
}, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
179
|
+
locale: {
|
|
180
|
+
type: StringConstructor;
|
|
181
|
+
default: string;
|
|
182
|
+
};
|
|
133
183
|
text: {
|
|
134
184
|
type: StringConstructor;
|
|
135
185
|
required: true;
|
|
136
186
|
};
|
|
137
|
-
|
|
187
|
+
isAutomatic: {
|
|
188
|
+
type: BooleanConstructor;
|
|
189
|
+
default: boolean;
|
|
190
|
+
};
|
|
191
|
+
}>> & Readonly<{}>, {
|
|
192
|
+
locale: string;
|
|
193
|
+
isAutomatic: boolean;
|
|
194
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
138
195
|
UnnnicChatsMessageStatusBackdrop: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
139
196
|
status: {
|
|
140
197
|
type: StringConstructor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChatsMessage.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ChatsMessage/ChatsMessage.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ChatsMessage.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ChatsMessage/ChatsMessage.vue"],"names":[],"mappings":"AA2IA;"}
|
|
@@ -1,15 +1,54 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
locale: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
2
6
|
text: {
|
|
3
7
|
type: StringConstructor;
|
|
4
8
|
required: true;
|
|
5
9
|
};
|
|
6
|
-
|
|
10
|
+
isAutomatic: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, {}, {
|
|
15
|
+
defaultTranslations: {
|
|
16
|
+
automatic_message: {
|
|
17
|
+
'pt-br': string;
|
|
18
|
+
en: string;
|
|
19
|
+
es: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
}, {
|
|
7
23
|
formattedText(): any;
|
|
8
|
-
}, {},
|
|
24
|
+
}, {}, {
|
|
25
|
+
props: {
|
|
26
|
+
locale: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
};
|
|
29
|
+
translations: {
|
|
30
|
+
type: ObjectConstructor;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
methods: {
|
|
34
|
+
i18n(...args: any[]): any;
|
|
35
|
+
};
|
|
36
|
+
}, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
37
|
+
locale: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
9
41
|
text: {
|
|
10
42
|
type: StringConstructor;
|
|
11
43
|
required: true;
|
|
12
44
|
};
|
|
13
|
-
|
|
45
|
+
isAutomatic: {
|
|
46
|
+
type: BooleanConstructor;
|
|
47
|
+
default: boolean;
|
|
48
|
+
};
|
|
49
|
+
}>> & Readonly<{}>, {
|
|
50
|
+
locale: string;
|
|
51
|
+
isAutomatic: boolean;
|
|
52
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
53
|
export default _default;
|
|
15
54
|
//# sourceMappingURL=ChatsMessageText.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChatsMessageText.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ChatsMessage/ChatsMessageText.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ChatsMessageText.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ChatsMessage/ChatsMessageText.vue"],"names":[],"mappings":"AAWA;"}
|
|
@@ -75,8 +75,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
75
75
|
}, {
|
|
76
76
|
openMonths(): string[];
|
|
77
77
|
value(): {
|
|
78
|
-
startDate:
|
|
79
|
-
endDate:
|
|
78
|
+
startDate: string;
|
|
79
|
+
endDate: string;
|
|
80
80
|
};
|
|
81
81
|
i18nLocale(): string;
|
|
82
82
|
monthsLocale(): any;
|
|
@@ -5,6 +5,7 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
7
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
8
|
+
disabled: boolean;
|
|
8
9
|
subtitle: string;
|
|
9
10
|
acceptMultiple: boolean;
|
|
10
11
|
supportedFormats: string;
|
|
@@ -13,6 +14,7 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
13
14
|
maximumUploads: number;
|
|
14
15
|
maxFileSize?: number | undefined;
|
|
15
16
|
$props: {
|
|
17
|
+
readonly disabled?: boolean | undefined;
|
|
16
18
|
readonly subtitle?: string | undefined;
|
|
17
19
|
readonly acceptMultiple?: boolean | undefined;
|
|
18
20
|
readonly supportedFormats?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DropArea.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DropArea/DropArea.vue"],"names":[],"mappings":"AAgEA;
|
|
1
|
+
{"version":3,"file":"DropArea.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DropArea/DropArea.vue"],"names":[],"mappings":"AAgEA;wBAkvBqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAbjC;;;;;;;;;;;;;;;;;;;;;;;gBAUG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EmojiPicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/EmojiPicker/EmojiPicker.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"EmojiPicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/EmojiPicker/EmojiPicker.vue"],"names":[],"mappings":"AAyBA;AA4MA,OAAO,wCAAwC,CAAA;AAY/C,MAAM,WAAW,KAAK;IACpB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAA;IAC3B,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;;;;;;;;YADU,MAAM;cADJ,KAAK,GAAG,QAAQ;gBADd,OAAO;;;;AAwLtB,wBAUG"}
|
|
@@ -72,7 +72,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
72
72
|
showCalendarFilter: boolean;
|
|
73
73
|
overwrittenValue: string;
|
|
74
74
|
}, {
|
|
75
|
-
filterText():
|
|
75
|
+
filterText(): string;
|
|
76
76
|
initialStartDate(): string | null;
|
|
77
77
|
initialEndDate(): string | null;
|
|
78
78
|
}, {
|
|
@@ -665,8 +665,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
665
665
|
}, {
|
|
666
666
|
openMonths(): string[];
|
|
667
667
|
value(): {
|
|
668
|
-
startDate:
|
|
669
|
-
endDate:
|
|
668
|
+
startDate: string;
|
|
669
|
+
endDate: string;
|
|
670
670
|
};
|
|
671
671
|
i18nLocale(): string;
|
|
672
672
|
monthsLocale(): any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModalDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ModalDialog/ModalDialog.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ModalDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ModalDialog/ModalDialog.vue"],"names":[],"mappings":"AAgGA;"}
|
|
@@ -237,6 +237,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
237
237
|
UnnnicDropArea: {
|
|
238
238
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
239
239
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
240
|
+
disabled: boolean;
|
|
240
241
|
subtitle: string;
|
|
241
242
|
acceptMultiple: boolean;
|
|
242
243
|
supportedFormats: string;
|
|
@@ -245,6 +246,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
245
246
|
maximumUploads: number;
|
|
246
247
|
maxFileSize?: number | undefined;
|
|
247
248
|
$props: {
|
|
249
|
+
readonly disabled?: boolean | undefined;
|
|
248
250
|
readonly subtitle?: string | undefined;
|
|
249
251
|
readonly acceptMultiple?: boolean | undefined;
|
|
250
252
|
readonly supportedFormats?: string | undefined;
|
|
@@ -265,6 +267,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
265
267
|
Defaults: {};
|
|
266
268
|
}, Readonly<{}> & Readonly<{}>, {
|
|
267
269
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
270
|
+
disabled: boolean;
|
|
268
271
|
subtitle: string;
|
|
269
272
|
acceptMultiple: boolean;
|
|
270
273
|
supportedFormats: string;
|
|
@@ -273,6 +276,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
273
276
|
maximumUploads: number;
|
|
274
277
|
maxFileSize?: number | undefined;
|
|
275
278
|
$props: {
|
|
279
|
+
readonly disabled?: boolean | undefined;
|
|
276
280
|
readonly subtitle?: string | undefined;
|
|
277
281
|
readonly acceptMultiple?: boolean | undefined;
|
|
278
282
|
readonly supportedFormats?: string | undefined;
|
|
@@ -287,6 +291,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
287
291
|
__isSuspense?: never;
|
|
288
292
|
} & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
289
293
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
294
|
+
disabled: boolean;
|
|
290
295
|
subtitle: string;
|
|
291
296
|
acceptMultiple: boolean;
|
|
292
297
|
supportedFormats: string;
|
|
@@ -295,6 +300,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
295
300
|
maximumUploads: number;
|
|
296
301
|
maxFileSize?: number | undefined;
|
|
297
302
|
$props: {
|
|
303
|
+
readonly disabled?: boolean | undefined;
|
|
298
304
|
readonly subtitle?: string | undefined;
|
|
299
305
|
readonly acceptMultiple?: boolean | undefined;
|
|
300
306
|
readonly supportedFormats?: string | undefined;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Template } from './types';
|
|
2
|
+
interface Props {
|
|
3
|
+
template?: Template | null;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
6
|
+
template: Template | null;
|
|
7
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
8
|
+
export default _default;
|
|
9
|
+
//# sourceMappingURL=TemplatePreview.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TemplatePreview.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TemplatePreview/TemplatePreview.vue"],"names":[],"mappings":"AAgGA;AA6PA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAQxC,UAAU,KAAK;IACb,QAAQ,CAAC,EAAE,QAAQ,GAAG,IAAI,CAAC;CAC5B;;cADY,QAAQ,GAAG,IAAI;;AAkN5B,wBAQG"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Template } from './types';
|
|
2
|
+
interface Props {
|
|
3
|
+
locale?: string;
|
|
4
|
+
template: Template;
|
|
5
|
+
modelValue: boolean;
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
|
+
close: () => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
10
|
+
onClose?: (() => any) | undefined;
|
|
11
|
+
}>, {
|
|
12
|
+
locale: string;
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
export default _default;
|
|
15
|
+
//# sourceMappingURL=TemplatePreviewModal.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TemplatePreviewModal.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TemplatePreview/TemplatePreviewModal.vue"],"names":[],"mappings":"AAWA;AAwDA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAUxC,UAAU,KAAK;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,QAAQ,CAAC;IACnB,UAAU,EAAE,OAAO,CAAC;CACrB;;;;;;YAHU,MAAM;;AAgGjB,wBASG"}
|
|
@@ -114,6 +114,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
114
114
|
UnnnicDropArea: {
|
|
115
115
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
116
116
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
117
|
+
disabled: boolean;
|
|
117
118
|
subtitle: string;
|
|
118
119
|
acceptMultiple: boolean;
|
|
119
120
|
supportedFormats: string;
|
|
@@ -122,6 +123,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
122
123
|
maximumUploads: number;
|
|
123
124
|
maxFileSize?: number | undefined;
|
|
124
125
|
$props: {
|
|
126
|
+
readonly disabled?: boolean | undefined;
|
|
125
127
|
readonly subtitle?: string | undefined;
|
|
126
128
|
readonly acceptMultiple?: boolean | undefined;
|
|
127
129
|
readonly supportedFormats?: string | undefined;
|
|
@@ -142,6 +144,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
142
144
|
Defaults: {};
|
|
143
145
|
}, Readonly<{}> & Readonly<{}>, {
|
|
144
146
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
147
|
+
disabled: boolean;
|
|
145
148
|
subtitle: string;
|
|
146
149
|
acceptMultiple: boolean;
|
|
147
150
|
supportedFormats: string;
|
|
@@ -150,6 +153,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
150
153
|
maximumUploads: number;
|
|
151
154
|
maxFileSize?: number | undefined;
|
|
152
155
|
$props: {
|
|
156
|
+
readonly disabled?: boolean | undefined;
|
|
153
157
|
readonly subtitle?: string | undefined;
|
|
154
158
|
readonly acceptMultiple?: boolean | undefined;
|
|
155
159
|
readonly supportedFormats?: string | undefined;
|
|
@@ -164,6 +168,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
164
168
|
__isSuspense?: never;
|
|
165
169
|
} & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
166
170
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
171
|
+
disabled: boolean;
|
|
167
172
|
subtitle: string;
|
|
168
173
|
acceptMultiple: boolean;
|
|
169
174
|
supportedFormats: string;
|
|
@@ -172,6 +177,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
172
177
|
maximumUploads: number;
|
|
173
178
|
maxFileSize?: number | undefined;
|
|
174
179
|
$props: {
|
|
180
|
+
readonly disabled?: boolean | undefined;
|
|
175
181
|
readonly subtitle?: string | undefined;
|
|
176
182
|
readonly acceptMultiple?: boolean | undefined;
|
|
177
183
|
readonly supportedFormats?: string | undefined;
|