@smart-webcomponents-angular/toast 9.2.21 → 13.0.1

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.
Files changed (59) hide show
  1. package/common/i18n.phonenumbers.min.js +501 -0
  2. package/common/runtime.js +748 -0
  3. package/demo/angular.json +2 -2
  4. package/demo/package.json +1 -1
  5. package/demo/src/tsconfig.app.json +15 -15
  6. package/demo/src/tsconfig.json +23 -23
  7. package/esm2020/toast/index.mjs +2 -0
  8. package/{esm2015/toast/public_api.js → esm2020/toast/public_api.mjs} +0 -0
  9. package/{esm2015/toast/smart-webcomponents-angular-toast.js → esm2020/toast/smart-webcomponents-angular-toast.mjs} +2 -3
  10. package/esm2020/toast/smart.element.mjs +96 -0
  11. package/esm2020/toast/smart.toast.mjs +376 -0
  12. package/esm2020/toast/smart.toast.module.mjs +18 -0
  13. package/fesm2015/{smart-webcomponents-angular-toast.js → smart-webcomponents-angular-toast.mjs} +107 -64
  14. package/fesm2015/smart-webcomponents-angular-toast.mjs.map +1 -0
  15. package/fesm2020/smart-webcomponents-angular-toast.mjs +498 -0
  16. package/fesm2020/smart-webcomponents-angular-toast.mjs.map +1 -0
  17. package/images/dropable_zone_image.svg +25 -0
  18. package/images/error.png +0 -0
  19. package/images/flags.png +0 -0
  20. package/images/icons-sprite.svg +85 -0
  21. package/images/icons-stack.svg +132 -0
  22. package/images/info.png +0 -0
  23. package/images/magnifier.png +0 -0
  24. package/images/mail.png +0 -0
  25. package/images/radial.svg +1 -0
  26. package/images/success.png +0 -0
  27. package/images/time.png +0 -0
  28. package/images/warning.png +0 -0
  29. package/index.d.ts +3548 -647
  30. package/package.json +26 -24
  31. package/source/modules/smart.toast.js +1 -1
  32. package/source/smart.button.js +2 -2
  33. package/source/smart.element.js +2 -2
  34. package/source/smart.toast.js +2 -2
  35. package/styles/font/smart-icons.eot +0 -0
  36. package/styles/font/smart-icons.svg +64 -2
  37. package/styles/font/smart-icons.ttf +0 -0
  38. package/styles/font/smart-icons.woff +0 -0
  39. package/styles/font/smart-icons.woff2 +0 -0
  40. package/styles/smart.base.css +4 -4
  41. package/styles/smart.common.css +1 -1
  42. package/styles/smart.toast.css +1 -1
  43. package/toast/index.d.ts +1 -0
  44. package/toast/smart-webcomponents-angular-toast.d.ts +2 -2
  45. package/toast/smart.element.d.ts +4 -1
  46. package/toast/smart.toast.d.ts +4 -1
  47. package/toast/smart.toast.module.d.ts +5 -0
  48. package/bundles/smart-webcomponents-angular-toast.umd.js +0 -907
  49. package/bundles/smart-webcomponents-angular-toast.umd.min.js +0 -25
  50. package/demo/src/app/app.component.ts +0 -29
  51. package/demo/src/app/app.module.ts +0 -15
  52. package/demo/src/app/main.ts +0 -6
  53. package/demo/src/main.ts +0 -16
  54. package/demo/src/polyfills.ts +0 -73
  55. package/esm2015/toast/smart.element.js +0 -83
  56. package/esm2015/toast/smart.toast.js +0 -352
  57. package/esm2015/toast/smart.toast.module.js +0 -13
  58. package/fesm2015/smart-webcomponents-angular-toast.js.map +0 -1
  59. package/toast/smart-webcomponents-angular-toast.metadata.json +0 -1
@@ -0,0 +1,498 @@
1
+
2
+ if (!window['Smart']) {
3
+ window['Smart'] = { RenderMode: 'manual' };
4
+ }
5
+ else {
6
+ window['Smart'].RenderMode = 'manual';
7
+ }
8
+ import './../source/modules/smart.toast';
9
+
10
+ import * as i0 from '@angular/core';
11
+ import { EventEmitter, Directive, Output, Input, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
12
+
13
+ class BaseElement {
14
+ constructor(ref) {
15
+ this.onCreate = new EventEmitter();
16
+ this.onReady = new EventEmitter();
17
+ this.onAttach = new EventEmitter();
18
+ this.onDetach = new EventEmitter();
19
+ const that = this;
20
+ this.nativeElement = ref.nativeElement;
21
+ that.nativeElement.onAttached = () => {
22
+ that.onAttach.emit(that.nativeElement);
23
+ };
24
+ that.nativeElement.onDetached = () => {
25
+ that.onDetach.emit(that.nativeElement);
26
+ };
27
+ }
28
+ addEventListener(type, listener, options = false) {
29
+ this.nativeElement.addEventListener(type, listener, options);
30
+ }
31
+ removeEventListener(type, listener, options = false) {
32
+ this.nativeElement.removeEventListener(type, listener, options);
33
+ }
34
+ dispatchEvent(event) {
35
+ return this.nativeElement.dispatchEvent(event);
36
+ }
37
+ blur() {
38
+ this.nativeElement.blur();
39
+ }
40
+ click() {
41
+ this.nativeElement.click();
42
+ }
43
+ focus(options) {
44
+ this.nativeElement.focus(options);
45
+ }
46
+ /** @description Sets or gets the language. Used in conjunction with the property messages. */
47
+ get locale() {
48
+ return this.nativeElement ? this.nativeElement.locale : undefined;
49
+ }
50
+ set locale(value) {
51
+ this.nativeElement ? this.nativeElement.locale = value : undefined;
52
+ }
53
+ /** @description Callback used to customize the format of the messages that are returned from the Localization Module. */
54
+ get localizeFormatFunction() {
55
+ return this.nativeElement ? this.nativeElement.localizeFormatFunction : undefined;
56
+ }
57
+ set localizeFormatFunction(value) {
58
+ this.nativeElement ? this.nativeElement.localizeFormatFunction = value : undefined;
59
+ }
60
+ /** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. */
61
+ get messages() {
62
+ return this.nativeElement ? this.nativeElement.messages : undefined;
63
+ }
64
+ set messages(value) {
65
+ this.nativeElement ? this.nativeElement.messages = value : undefined;
66
+ }
67
+ /** @description Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. */
68
+ get rightToLeft() {
69
+ return this.nativeElement ? this.nativeElement.rightToLeft : undefined;
70
+ }
71
+ set rightToLeft(value) {
72
+ this.nativeElement ? this.nativeElement.rightToLeft = value : undefined;
73
+ }
74
+ /** @description Determines the theme. Theme defines the look of the element */
75
+ get theme() {
76
+ return this.nativeElement ? this.nativeElement.theme : undefined;
77
+ }
78
+ set theme(value) {
79
+ this.nativeElement ? this.nativeElement.theme = value : undefined;
80
+ }
81
+ }
82
+ BaseElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: BaseElement, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
83
+ BaseElement.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: BaseElement, inputs: { locale: "locale", localizeFormatFunction: "localizeFormatFunction", messages: "messages", rightToLeft: "rightToLeft", theme: "theme" }, outputs: { onCreate: "onCreate", onReady: "onReady", onAttach: "onAttach", onDetach: "onDetach" }, ngImport: i0 });
84
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: BaseElement, decorators: [{
85
+ type: Directive
86
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { onCreate: [{
87
+ type: Output
88
+ }], onReady: [{
89
+ type: Output
90
+ }], onAttach: [{
91
+ type: Output
92
+ }], onDetach: [{
93
+ type: Output
94
+ }], locale: [{
95
+ type: Input
96
+ }], localizeFormatFunction: [{
97
+ type: Input
98
+ }], messages: [{
99
+ type: Input
100
+ }], rightToLeft: [{
101
+ type: Input
102
+ }], theme: [{
103
+ type: Input
104
+ }] } });
105
+ const Smart = window.Smart;
106
+
107
+ class ToastComponent extends BaseElement {
108
+ constructor(ref) {
109
+ super(ref);
110
+ this.eventHandlers = [];
111
+ /** @description This event is triggered when the toast item is clicked.
112
+ * @param event. The custom event. */
113
+ this.onItemClick = new EventEmitter();
114
+ /** @description This event is triggered when the toast item is closed.
115
+ * @param event. The custom event. */
116
+ this.onClose = new EventEmitter();
117
+ /** @description This event is triggered when the toast item is opened.
118
+ * @param event. The custom event. */
119
+ this.onOpen = new EventEmitter();
120
+ /** @description This event is triggered on swipebottom over an toast item.
121
+ * @param event. The custom event. */
122
+ this.onSwipebottom = new EventEmitter();
123
+ /** @description This event is triggered on swipeleft over an toast item.
124
+ * @param event. The custom event. */
125
+ this.onSwipeleft = new EventEmitter();
126
+ /** @description This event is triggered on swiperight over an toast item.
127
+ * @param event. The custom event. */
128
+ this.onSwiperight = new EventEmitter();
129
+ /** @description This event is triggered on swipetop over an toast item.
130
+ * @param event. The custom event. */
131
+ this.onSwipetop = new EventEmitter();
132
+ this.nativeElement = ref.nativeElement;
133
+ }
134
+ /** @description Creates the component on demand.
135
+ * @param properties An optional object of properties, which will be added to the template binded ones.
136
+ */
137
+ createComponent(properties = {}) {
138
+ this.nativeElement = document.createElement('smart-toast');
139
+ for (let propertyName in properties) {
140
+ this.nativeElement[propertyName] = properties[propertyName];
141
+ }
142
+ return this.nativeElement;
143
+ }
144
+ /** @description Sets or gets the animation mode. Animation is disabled when the property is set to 'none' */
145
+ get animation() {
146
+ return this.nativeElement ? this.nativeElement.animation : undefined;
147
+ }
148
+ set animation(value) {
149
+ this.nativeElement ? this.nativeElement.animation = value : undefined;
150
+ }
151
+ /** @description Specifies the container where new openned toast items will be displayed. The value can be an HTMLElement or element's id. This property is in relation with modal(lower priority than modal) and position(higher priority than position) properties. */
152
+ get appendTo() {
153
+ return this.nativeElement ? this.nativeElement.appendTo : undefined;
154
+ }
155
+ set appendTo(value) {
156
+ this.nativeElement ? this.nativeElement.appendTo = value : undefined;
157
+ }
158
+ /** @description Sets or gets whether the toast will automatically close after duration equal to the autoCloseDelay property. */
159
+ get autoClose() {
160
+ return this.nativeElement ? this.nativeElement.autoClose : undefined;
161
+ }
162
+ set autoClose(value) {
163
+ this.nativeElement ? this.nativeElement.autoClose = value : undefined;
164
+ }
165
+ /** @description Sets or gets the duration after which the toast automatically closes (works only if the autoClose property is set to true). */
166
+ get autoCloseDelay() {
167
+ return this.nativeElement ? this.nativeElement.autoCloseDelay : undefined;
168
+ }
169
+ set autoCloseDelay(value) {
170
+ this.nativeElement ? this.nativeElement.autoCloseDelay = value : undefined;
171
+ }
172
+ /** @description Sets whether the toast will open automatically immediately after widget's initialization. */
173
+ get autoOpen() {
174
+ return this.nativeElement ? this.nativeElement.autoOpen : undefined;
175
+ }
176
+ set autoOpen(value) {
177
+ this.nativeElement ? this.nativeElement.autoOpen = value : undefined;
178
+ }
179
+ /** @description The user will not be able to interact with toast items when disabled is set to true. */
180
+ get disabled() {
181
+ return this.nativeElement ? this.nativeElement.disabled : undefined;
182
+ }
183
+ set disabled(value) {
184
+ this.nativeElement ? this.nativeElement.disabled = value : undefined;
185
+ }
186
+ /** @description Sets custom icon className which overrides the default one. Multiple class names can be applied by separating them with a space. Useful when loading from a third-party icon library (such as Bootstrap). */
187
+ get iconClass() {
188
+ return this.nativeElement ? this.nativeElement.iconClass : undefined;
189
+ }
190
+ set iconClass(value) {
191
+ this.nativeElement ? this.nativeElement.iconClass = value : undefined;
192
+ }
193
+ /** @description Adds a custom class to Toast items. Multiple class names can be applied by separating them with a space. Useful when styling by using predefined class names from a third-party CSS library (such as Bootstrap). */
194
+ get itemClass() {
195
+ return this.nativeElement ? this.nativeElement.itemClass : undefined;
196
+ }
197
+ set itemClass(value) {
198
+ this.nativeElement ? this.nativeElement.itemClass = value : undefined;
199
+ }
200
+ /** @description Sets custom item template. */
201
+ get itemTemplate() {
202
+ return this.nativeElement ? this.nativeElement.itemTemplate : undefined;
203
+ }
204
+ set itemTemplate(value) {
205
+ this.nativeElement ? this.nativeElement.itemTemplate = value : undefined;
206
+ }
207
+ /** @description Sets or gets the language. Used in conjunction with the property messages. */
208
+ get locale() {
209
+ return this.nativeElement ? this.nativeElement.locale : undefined;
210
+ }
211
+ set locale(value) {
212
+ this.nativeElement ? this.nativeElement.locale = value : undefined;
213
+ }
214
+ /** @description Callback, related to localization module. */
215
+ get localizeFormatFunction() {
216
+ return this.nativeElement ? this.nativeElement.localizeFormatFunction : undefined;
217
+ }
218
+ set localizeFormatFunction(value) {
219
+ this.nativeElement ? this.nativeElement.localizeFormatFunction = value : undefined;
220
+ }
221
+ /** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. */
222
+ get messages() {
223
+ return this.nativeElement ? this.nativeElement.messages : undefined;
224
+ }
225
+ set messages(value) {
226
+ this.nativeElement ? this.nativeElement.messages = value : undefined;
227
+ }
228
+ /** @description In modal mode the toast item is positioned in the center of the screen. This property is with higher priority than position and appendTo. If modal is set to true these properties are disregarded. */
229
+ get modal() {
230
+ return this.nativeElement ? this.nativeElement.modal : undefined;
231
+ }
232
+ set modal(value) {
233
+ this.nativeElement ? this.nativeElement.modal = value : undefined;
234
+ }
235
+ /** @description Sets the part of the browser window where the toast will be positioned. The position property is disregarded if appendTo or modal are set. */
236
+ get position() {
237
+ return this.nativeElement ? this.nativeElement.position : undefined;
238
+ }
239
+ set position(value) {
240
+ this.nativeElement ? this.nativeElement.position = value : undefined;
241
+ }
242
+ /** @description If the element is readonly, users cannot interact with it. */
243
+ get readonly() {
244
+ return this.nativeElement ? this.nativeElement.readonly : undefined;
245
+ }
246
+ set readonly(value) {
247
+ this.nativeElement ? this.nativeElement.readonly = value : undefined;
248
+ }
249
+ /** @description Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. */
250
+ get rightToLeft() {
251
+ return this.nativeElement ? this.nativeElement.rightToLeft : undefined;
252
+ }
253
+ set rightToLeft(value) {
254
+ this.nativeElement ? this.nativeElement.rightToLeft = value : undefined;
255
+ }
256
+ /** @description Sets or gets whether to show the toast item's close button. */
257
+ get showCloseButton() {
258
+ return this.nativeElement ? this.nativeElement.showCloseButton : undefined;
259
+ }
260
+ set showCloseButton(value) {
261
+ this.nativeElement ? this.nativeElement.showCloseButton = value : undefined;
262
+ }
263
+ /** @description Determines the theme. Theme defines the look of the element */
264
+ get theme() {
265
+ return this.nativeElement ? this.nativeElement.theme : undefined;
266
+ }
267
+ set theme(value) {
268
+ this.nativeElement ? this.nativeElement.theme = value : undefined;
269
+ }
270
+ /** @description Sets speciffic CSS settings and icon to the toast items. */
271
+ get type() {
272
+ return this.nativeElement ? this.nativeElement.type : undefined;
273
+ }
274
+ set type(value) {
275
+ this.nativeElement ? this.nativeElement.type = value : undefined;
276
+ }
277
+ /** @description If is set to true, the element cannot be focused. */
278
+ get unfocusable() {
279
+ return this.nativeElement ? this.nativeElement.unfocusable : undefined;
280
+ }
281
+ set unfocusable(value) {
282
+ this.nativeElement ? this.nativeElement.unfocusable = value : undefined;
283
+ }
284
+ /** @description Sets a text value to an toast item. */
285
+ get value() {
286
+ return this.nativeElement ? this.nativeElement.value : undefined;
287
+ }
288
+ set value(value) {
289
+ this.nativeElement ? this.nativeElement.value = value : undefined;
290
+ }
291
+ /** @description Closes all opened toast items.
292
+ */
293
+ closeAll() {
294
+ if (this.nativeElement.isRendered) {
295
+ this.nativeElement.closeAll();
296
+ }
297
+ else {
298
+ this.nativeElement.whenRendered(() => {
299
+ this.nativeElement.closeAll();
300
+ });
301
+ }
302
+ }
303
+ /** @description Closes particular toast item.
304
+ * @param {HTMLElement | string} item. The toast item (or its id) to remove.
305
+ */
306
+ closeItem(item) {
307
+ if (this.nativeElement.isRendered) {
308
+ this.nativeElement.closeItem(item);
309
+ }
310
+ else {
311
+ this.nativeElement.whenRendered(() => {
312
+ this.nativeElement.closeItem(item);
313
+ });
314
+ }
315
+ }
316
+ /** @description Closes the last opened toast item.
317
+ */
318
+ closeLast() {
319
+ if (this.nativeElement.isRendered) {
320
+ this.nativeElement.closeLast();
321
+ }
322
+ else {
323
+ this.nativeElement.whenRendered(() => {
324
+ this.nativeElement.closeLast();
325
+ });
326
+ }
327
+ }
328
+ /** @description Opens a new toast item and returns the opened smart-toast-item instance.
329
+ * @param {HTMLElement | string} value?. The value for the toast item. If not set, the value property will be used.
330
+ * @param {string} iconType?. The icon name for the toast item. If not set, the type property determines the icon type that will be used.
331
+ * @returns {HTMLElement}
332
+ */
333
+ async open(value, iconType) {
334
+ const getResultOnRender = () => {
335
+ return new Promise(resolve => {
336
+ this.nativeElement.whenRendered(() => {
337
+ const result = this.nativeElement.open(value, iconType);
338
+ resolve(result);
339
+ });
340
+ });
341
+ };
342
+ const result = await getResultOnRender();
343
+ return result;
344
+ }
345
+ get isRendered() {
346
+ return this.nativeElement ? this.nativeElement.isRendered : false;
347
+ }
348
+ ngOnInit() {
349
+ }
350
+ ngAfterViewInit() {
351
+ const that = this;
352
+ that.onCreate.emit(that.nativeElement);
353
+ Smart.Render();
354
+ this.nativeElement.classList.add('smart-angular');
355
+ this.nativeElement.whenRendered(() => { that.onReady.emit(that.nativeElement); });
356
+ this.listen();
357
+ }
358
+ ngOnDestroy() {
359
+ this.unlisten();
360
+ }
361
+ ngOnChanges(changes) {
362
+ if (this.nativeElement && this.nativeElement.isRendered) {
363
+ for (const propName in changes) {
364
+ if (changes.hasOwnProperty(propName)) {
365
+ this.nativeElement[propName] = changes[propName].currentValue;
366
+ }
367
+ }
368
+ }
369
+ }
370
+ /** @description Add event listeners. */
371
+ listen() {
372
+ const that = this;
373
+ that.eventHandlers['itemClickHandler'] = (event) => { that.onItemClick.emit(event); };
374
+ that.nativeElement.addEventListener('itemClick', that.eventHandlers['itemClickHandler']);
375
+ that.eventHandlers['closeHandler'] = (event) => { that.onClose.emit(event); };
376
+ that.nativeElement.addEventListener('close', that.eventHandlers['closeHandler']);
377
+ that.eventHandlers['openHandler'] = (event) => { that.onOpen.emit(event); };
378
+ that.nativeElement.addEventListener('open', that.eventHandlers['openHandler']);
379
+ that.eventHandlers['swipebottomHandler'] = (event) => { that.onSwipebottom.emit(event); };
380
+ that.nativeElement.addEventListener('swipebottom', that.eventHandlers['swipebottomHandler']);
381
+ that.eventHandlers['swipeleftHandler'] = (event) => { that.onSwipeleft.emit(event); };
382
+ that.nativeElement.addEventListener('swipeleft', that.eventHandlers['swipeleftHandler']);
383
+ that.eventHandlers['swiperightHandler'] = (event) => { that.onSwiperight.emit(event); };
384
+ that.nativeElement.addEventListener('swiperight', that.eventHandlers['swiperightHandler']);
385
+ that.eventHandlers['swipetopHandler'] = (event) => { that.onSwipetop.emit(event); };
386
+ that.nativeElement.addEventListener('swipetop', that.eventHandlers['swipetopHandler']);
387
+ }
388
+ /** @description Remove event listeners. */
389
+ unlisten() {
390
+ const that = this;
391
+ if (that.eventHandlers['itemClickHandler']) {
392
+ that.nativeElement.removeEventListener('itemClick', that.eventHandlers['itemClickHandler']);
393
+ }
394
+ if (that.eventHandlers['closeHandler']) {
395
+ that.nativeElement.removeEventListener('close', that.eventHandlers['closeHandler']);
396
+ }
397
+ if (that.eventHandlers['openHandler']) {
398
+ that.nativeElement.removeEventListener('open', that.eventHandlers['openHandler']);
399
+ }
400
+ if (that.eventHandlers['swipebottomHandler']) {
401
+ that.nativeElement.removeEventListener('swipebottom', that.eventHandlers['swipebottomHandler']);
402
+ }
403
+ if (that.eventHandlers['swipeleftHandler']) {
404
+ that.nativeElement.removeEventListener('swipeleft', that.eventHandlers['swipeleftHandler']);
405
+ }
406
+ if (that.eventHandlers['swiperightHandler']) {
407
+ that.nativeElement.removeEventListener('swiperight', that.eventHandlers['swiperightHandler']);
408
+ }
409
+ if (that.eventHandlers['swipetopHandler']) {
410
+ that.nativeElement.removeEventListener('swipetop', that.eventHandlers['swipetopHandler']);
411
+ }
412
+ }
413
+ }
414
+ ToastComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ToastComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
415
+ ToastComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: ToastComponent, selector: "smart-toast, [smart-toast]", inputs: { animation: "animation", appendTo: "appendTo", autoClose: "autoClose", autoCloseDelay: "autoCloseDelay", autoOpen: "autoOpen", disabled: "disabled", iconClass: "iconClass", itemClass: "itemClass", itemTemplate: "itemTemplate", locale: "locale", localizeFormatFunction: "localizeFormatFunction", messages: "messages", modal: "modal", position: "position", readonly: "readonly", rightToLeft: "rightToLeft", showCloseButton: "showCloseButton", theme: "theme", type: "type", unfocusable: "unfocusable", value: "value" }, outputs: { onItemClick: "onItemClick", onClose: "onClose", onOpen: "onOpen", onSwipebottom: "onSwipebottom", onSwipeleft: "onSwipeleft", onSwiperight: "onSwiperight", onSwipetop: "onSwipetop" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 });
416
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ToastComponent, decorators: [{
417
+ type: Directive,
418
+ args: [{
419
+ selector: 'smart-toast, [smart-toast]'
420
+ }]
421
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { animation: [{
422
+ type: Input
423
+ }], appendTo: [{
424
+ type: Input
425
+ }], autoClose: [{
426
+ type: Input
427
+ }], autoCloseDelay: [{
428
+ type: Input
429
+ }], autoOpen: [{
430
+ type: Input
431
+ }], disabled: [{
432
+ type: Input
433
+ }], iconClass: [{
434
+ type: Input
435
+ }], itemClass: [{
436
+ type: Input
437
+ }], itemTemplate: [{
438
+ type: Input
439
+ }], locale: [{
440
+ type: Input
441
+ }], localizeFormatFunction: [{
442
+ type: Input
443
+ }], messages: [{
444
+ type: Input
445
+ }], modal: [{
446
+ type: Input
447
+ }], position: [{
448
+ type: Input
449
+ }], readonly: [{
450
+ type: Input
451
+ }], rightToLeft: [{
452
+ type: Input
453
+ }], showCloseButton: [{
454
+ type: Input
455
+ }], theme: [{
456
+ type: Input
457
+ }], type: [{
458
+ type: Input
459
+ }], unfocusable: [{
460
+ type: Input
461
+ }], value: [{
462
+ type: Input
463
+ }], onItemClick: [{
464
+ type: Output
465
+ }], onClose: [{
466
+ type: Output
467
+ }], onOpen: [{
468
+ type: Output
469
+ }], onSwipebottom: [{
470
+ type: Output
471
+ }], onSwipeleft: [{
472
+ type: Output
473
+ }], onSwiperight: [{
474
+ type: Output
475
+ }], onSwipetop: [{
476
+ type: Output
477
+ }] } });
478
+
479
+ class ToastModule {
480
+ }
481
+ ToastModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ToastModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
482
+ ToastModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ToastModule, declarations: [ToastComponent], exports: [ToastComponent] });
483
+ ToastModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ToastModule });
484
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ToastModule, decorators: [{
485
+ type: NgModule,
486
+ args: [{
487
+ declarations: [ToastComponent],
488
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
489
+ exports: [ToastComponent]
490
+ }]
491
+ }] });
492
+
493
+ /**
494
+ * Generated bundle index. Do not edit.
495
+ */
496
+
497
+ export { Smart, ToastComponent, ToastModule };
498
+ //# sourceMappingURL=smart-webcomponents-angular-toast.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"smart-webcomponents-angular-toast.mjs","sources":["../../toast/src/smart.element.ts","../../toast/src/smart.toast.ts","../../toast/src/smart.toast.module.ts","../../toast/src/smart-webcomponents-angular-toast.ts"],"sourcesContent":["\ndeclare global {\n interface Window {\n Smart: any;\n}\n}\n\n\nimport { ElementRef, Input, Output, Directive, EventEmitter } from '@angular/core';\nimport { ElementRenderMode } from './../index';\n@Directive()\nexport class BaseElement {\n constructor(ref: ElementRef) {\n const that = this;\n this.nativeElement = ref.nativeElement as any;\n\n that.nativeElement.onAttached = () => {\n that.onAttach.emit(that.nativeElement);\n }\n\n that.nativeElement.onDetached = () => {\n that.onDetach.emit(that.nativeElement);\n }\n }\n\n @Output() onCreate: EventEmitter<any> = new EventEmitter();\n @Output() onReady: EventEmitter<any> = new EventEmitter();\n @Output() onAttach: EventEmitter<any> = new EventEmitter();\n @Output() onDetach: EventEmitter<any> = new EventEmitter();\n\n public nativeElement: any;\n\n public addEventListener(type: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions = false): void {\n this.nativeElement.addEventListener(type, listener, options);\n\t}\n\n\tpublic removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions = false): void {\n\t\tthis.nativeElement.removeEventListener(type, listener, options);\n\t}\n\n\tpublic dispatchEvent(event: Event): boolean {\n\t\treturn this.nativeElement.dispatchEvent(event);\n\t}\n\n\tpublic blur(): void {\n\t\tthis.nativeElement.blur();\n\t}\n\n\tpublic click(): void {\n\t\tthis.nativeElement.click();\n\t}\n\n\tpublic focus(options?: FocusOptions): void {\n\t\tthis.nativeElement.focus(options);\n\t}\n\n/** @description Sets or gets the language. Used in conjunction with the property messages. */\n\t@Input()\n\tget locale(): string {\n\t\treturn this.nativeElement ? this.nativeElement.locale : undefined;\n\t}\n\tset locale(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.locale = value : undefined;\n\t}\n\n\t/** @description Callback used to customize the format of the messages that are returned from the Localization Module. */\n\t@Input()\n\tget localizeFormatFunction(): any {\n\t\treturn this.nativeElement ? this.nativeElement.localizeFormatFunction : undefined;\n\t}\n\tset localizeFormatFunction(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.localizeFormatFunction = value : undefined;\n\t}\n\n\t/** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. */\n\t@Input()\n\tget messages(): any {\n\t\treturn this.nativeElement ? this.nativeElement.messages : undefined;\n\t}\n\tset messages(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.messages = value : undefined;\n\t}\n\n\t/** @description Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. */\n\t@Input()\n\tget rightToLeft(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.rightToLeft : undefined;\n\t}\n\tset rightToLeft(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.rightToLeft = value : undefined;\n\t}\n\n\t/** @description Determines the theme. Theme defines the look of the element */\n\t@Input()\n\tget theme(): string {\n\t\treturn this.nativeElement ? this.nativeElement.theme : undefined;\n\t}\n\tset theme(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.theme = value : undefined;\n\t}\n}\n\nexport const Smart: any = window.Smart;\n\n","import { Toast } from './../index';\nimport { Animation, ToastPosition, ToastType, ElementRenderMode} from './../index';\nimport { Component, Directive, AfterViewInit, ElementRef, Input, OnInit, OnChanges, OnDestroy, SimpleChanges, Output, EventEmitter } from '@angular/core';\nimport { BaseElement, Smart } from './smart.element';\nexport { Animation, ToastPosition, ToastType, ElementRenderMode} from './../index';\nexport { Smart } from './smart.element';\nexport { Toast } from './../index';\n\n\n@Directive({\n\tselector: 'smart-toast, [smart-toast]'\n})\n\nexport class ToastComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges {\n\tconstructor(ref: ElementRef<Toast>) {\n\t\tsuper(ref);\n\t\tthis.nativeElement = ref.nativeElement as Toast;\n\t}\n\n\tprivate eventHandlers: any[] = [];\n\n\tpublic nativeElement: Toast;\n\t/** @description Creates the component on demand.\n\t * @param properties An optional object of properties, which will be added to the template binded ones.\n\t */\n\tpublic createComponent(properties = {}): any {\n \tthis.nativeElement = <Toast>document.createElement('smart-toast');\n\t\tfor (let propertyName in properties) { \n \t\t\tthis.nativeElement[propertyName] = properties[propertyName];\n\t\t}\n\t\treturn this.nativeElement;\n\t}\n\t/** @description Sets or gets the animation mode. Animation is disabled when the property is set to 'none' */\n\t@Input()\n\tget animation(): Animation {\n\t\treturn this.nativeElement ? this.nativeElement.animation : undefined;\n\t}\n\tset animation(value: Animation) {\n\t\tthis.nativeElement ? this.nativeElement.animation = value : undefined;\n\t}\n\n\t/** @description Specifies the container where new openned toast items will be displayed. The value can be an HTMLElement or element's id. This property is in relation with modal(lower priority than modal) and position(higher priority than position) properties. */\n\t@Input()\n\tget appendTo(): string {\n\t\treturn this.nativeElement ? this.nativeElement.appendTo : undefined;\n\t}\n\tset appendTo(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.appendTo = value : undefined;\n\t}\n\n\t/** @description Sets or gets whether the toast will automatically close after duration equal to the autoCloseDelay property. */\n\t@Input()\n\tget autoClose(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.autoClose : undefined;\n\t}\n\tset autoClose(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.autoClose = value : undefined;\n\t}\n\n\t/** @description Sets or gets the duration after which the toast automatically closes (works only if the autoClose property is set to true). */\n\t@Input()\n\tget autoCloseDelay(): number {\n\t\treturn this.nativeElement ? this.nativeElement.autoCloseDelay : undefined;\n\t}\n\tset autoCloseDelay(value: number) {\n\t\tthis.nativeElement ? this.nativeElement.autoCloseDelay = value : undefined;\n\t}\n\n\t/** @description Sets whether the toast will open automatically immediately after widget's initialization. */\n\t@Input()\n\tget autoOpen(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.autoOpen : undefined;\n\t}\n\tset autoOpen(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.autoOpen = value : undefined;\n\t}\n\n\t/** @description The user will not be able to interact with toast items when disabled is set to true. */\n\t@Input()\n\tget disabled(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.disabled : undefined;\n\t}\n\tset disabled(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.disabled = value : undefined;\n\t}\n\n\t/** @description Sets custom icon className which overrides the default one. Multiple class names can be applied by separating them with a space. Useful when loading from a third-party icon library (such as Bootstrap). */\n\t@Input()\n\tget iconClass(): string {\n\t\treturn this.nativeElement ? this.nativeElement.iconClass : undefined;\n\t}\n\tset iconClass(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.iconClass = value : undefined;\n\t}\n\n\t/** @description Adds a custom class to Toast items. Multiple class names can be applied by separating them with a space. Useful when styling by using predefined class names from a third-party CSS library (such as Bootstrap). */\n\t@Input()\n\tget itemClass(): string {\n\t\treturn this.nativeElement ? this.nativeElement.itemClass : undefined;\n\t}\n\tset itemClass(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.itemClass = value : undefined;\n\t}\n\n\t/** @description Sets custom item template. */\n\t@Input()\n\tget itemTemplate(): string {\n\t\treturn this.nativeElement ? this.nativeElement.itemTemplate : undefined;\n\t}\n\tset itemTemplate(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.itemTemplate = value : undefined;\n\t}\n\n\t/** @description Sets or gets the language. Used in conjunction with the property messages. */\n\t@Input()\n\tget locale(): string {\n\t\treturn this.nativeElement ? this.nativeElement.locale : undefined;\n\t}\n\tset locale(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.locale = value : undefined;\n\t}\n\n\t/** @description Callback, related to localization module. */\n\t@Input()\n\tget localizeFormatFunction(): any {\n\t\treturn this.nativeElement ? this.nativeElement.localizeFormatFunction : undefined;\n\t}\n\tset localizeFormatFunction(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.localizeFormatFunction = value : undefined;\n\t}\n\n\t/** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. */\n\t@Input()\n\tget messages(): any {\n\t\treturn this.nativeElement ? this.nativeElement.messages : undefined;\n\t}\n\tset messages(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.messages = value : undefined;\n\t}\n\n\t/** @description In modal mode the toast item is positioned in the center of the screen. This property is with higher priority than position and appendTo. If modal is set to true these properties are disregarded. */\n\t@Input()\n\tget modal(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.modal : undefined;\n\t}\n\tset modal(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.modal = value : undefined;\n\t}\n\n\t/** @description Sets the part of the browser window where the toast will be positioned. The position property is disregarded if appendTo or modal are set. */\n\t@Input()\n\tget position(): ToastPosition {\n\t\treturn this.nativeElement ? this.nativeElement.position : undefined;\n\t}\n\tset position(value: ToastPosition) {\n\t\tthis.nativeElement ? this.nativeElement.position = value : undefined;\n\t}\n\n\t/** @description If the element is readonly, users cannot interact with it. */\n\t@Input()\n\tget readonly(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.readonly : undefined;\n\t}\n\tset readonly(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.readonly = value : undefined;\n\t}\n\n\t/** @description Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. */\n\t@Input()\n\tget rightToLeft(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.rightToLeft : undefined;\n\t}\n\tset rightToLeft(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.rightToLeft = value : undefined;\n\t}\n\n\t/** @description Sets or gets whether to show the toast item's close button. */\n\t@Input()\n\tget showCloseButton(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.showCloseButton : undefined;\n\t}\n\tset showCloseButton(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.showCloseButton = value : undefined;\n\t}\n\n\t/** @description Determines the theme. Theme defines the look of the element */\n\t@Input()\n\tget theme(): string {\n\t\treturn this.nativeElement ? this.nativeElement.theme : undefined;\n\t}\n\tset theme(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.theme = value : undefined;\n\t}\n\n\t/** @description Sets speciffic CSS settings and icon to the toast items. */\n\t@Input()\n\tget type(): ToastType | null {\n\t\treturn this.nativeElement ? this.nativeElement.type : undefined;\n\t}\n\tset type(value: ToastType | null) {\n\t\tthis.nativeElement ? this.nativeElement.type = value : undefined;\n\t}\n\n\t/** @description If is set to true, the element cannot be focused. */\n\t@Input()\n\tget unfocusable(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.unfocusable : undefined;\n\t}\n\tset unfocusable(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.unfocusable = value : undefined;\n\t}\n\n\t/** @description Sets a text value to an toast item. */\n\t@Input()\n\tget value(): any {\n\t\treturn this.nativeElement ? this.nativeElement.value : undefined;\n\t}\n\tset value(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.value = value : undefined;\n\t}\n\n\t/** @description This event is triggered when the toast item is clicked.\n\t* @param event. The custom event. \t*/\n\t@Output() onItemClick: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered when the toast item is closed.\n\t* @param event. The custom event. \t*/\n\t@Output() onClose: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered when the toast item is opened.\n\t* @param event. The custom event. \t*/\n\t@Output() onOpen: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered on swipebottom over an toast item.\n\t* @param event. The custom event. \t*/\n\t@Output() onSwipebottom: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered on swipeleft over an toast item.\n\t* @param event. The custom event. \t*/\n\t@Output() onSwipeleft: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered on swiperight over an toast item.\n\t* @param event. The custom event. \t*/\n\t@Output() onSwiperight: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered on swipetop over an toast item.\n\t* @param event. The custom event. \t*/\n\t@Output() onSwipetop: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description Closes all opened toast items. \n\t*/\n public closeAll(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.closeAll();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.closeAll();\n });\n }\n }\n\n\t/** @description Closes particular toast item. \n\t* @param {HTMLElement | string} item. The toast item (or its id) to remove.\n\t*/\n public closeItem(item: HTMLElement | string): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.closeItem(item);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.closeItem(item);\n });\n }\n }\n\n\t/** @description Closes the last opened toast item. \n\t*/\n public closeLast(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.closeLast();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.closeLast();\n });\n }\n }\n\n\t/** @description Opens a new toast item and returns the opened smart-toast-item instance. \n\t* @param {HTMLElement | string} value?. The value for the toast item. If not set, the value property will be used.\n\t* @param {string} iconType?. The icon name for the toast item. If not set, the type property determines the icon type that will be used.\n\t* @returns {HTMLElement}\n */\n\tpublic async open(value?, iconType?): Promise<any> {\n\t\tconst getResultOnRender = () => {\n return new Promise(resolve => {\n this.nativeElement.whenRendered(() => {\n const result = this.nativeElement.open(value, iconType);\n resolve(result)\n });\n });\n };\n const result = await getResultOnRender();\n\n return result;\n }\n\n\n\tget isRendered(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.isRendered : false;\n\t}\n\n\tngOnInit() {\n\t}\n\n ngAfterViewInit() {\n const that = this;\n\n that.onCreate.emit(that.nativeElement);\n\n\t\tSmart.Render();\n\n\t\tthis.nativeElement.classList.add('smart-angular');\n\n\t\tthis.nativeElement.whenRendered(() => { that.onReady.emit(that.nativeElement); });\n\t\tthis.listen();\n\t}\n\n\tngOnDestroy() {\n\t\tthis.unlisten();\n\t}\n\n\tngOnChanges(changes: SimpleChanges) {\n\t\tif (this.nativeElement && this.nativeElement.isRendered) {\n\t\t\tfor (const propName in changes) {\n\t\t\t\tif (changes.hasOwnProperty(propName)) {\n\t\t\t\t\tthis.nativeElement[propName] = changes[propName].currentValue;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t/** @description Add event listeners. */\n\tprivate listen(): void {\n const that = this;\n\t\tthat.eventHandlers['itemClickHandler'] = (event: CustomEvent) => { that.onItemClick.emit(event); }\n\t\tthat.nativeElement.addEventListener('itemClick', that.eventHandlers['itemClickHandler']);\n\n\t\tthat.eventHandlers['closeHandler'] = (event: CustomEvent) => { that.onClose.emit(event); }\n\t\tthat.nativeElement.addEventListener('close', that.eventHandlers['closeHandler']);\n\n\t\tthat.eventHandlers['openHandler'] = (event: CustomEvent) => { that.onOpen.emit(event); }\n\t\tthat.nativeElement.addEventListener('open', that.eventHandlers['openHandler']);\n\n\t\tthat.eventHandlers['swipebottomHandler'] = (event: CustomEvent) => { that.onSwipebottom.emit(event); }\n\t\tthat.nativeElement.addEventListener('swipebottom', that.eventHandlers['swipebottomHandler']);\n\n\t\tthat.eventHandlers['swipeleftHandler'] = (event: CustomEvent) => { that.onSwipeleft.emit(event); }\n\t\tthat.nativeElement.addEventListener('swipeleft', that.eventHandlers['swipeleftHandler']);\n\n\t\tthat.eventHandlers['swiperightHandler'] = (event: CustomEvent) => { that.onSwiperight.emit(event); }\n\t\tthat.nativeElement.addEventListener('swiperight', that.eventHandlers['swiperightHandler']);\n\n\t\tthat.eventHandlers['swipetopHandler'] = (event: CustomEvent) => { that.onSwipetop.emit(event); }\n\t\tthat.nativeElement.addEventListener('swipetop', that.eventHandlers['swipetopHandler']);\n\n\t}\n\n\t/** @description Remove event listeners. */\n\tprivate unlisten(): void {\n const that = this;\n\t\tif (that.eventHandlers['itemClickHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('itemClick', that.eventHandlers['itemClickHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['closeHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('close', that.eventHandlers['closeHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['openHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('open', that.eventHandlers['openHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['swipebottomHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('swipebottom', that.eventHandlers['swipebottomHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['swipeleftHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('swipeleft', that.eventHandlers['swipeleftHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['swiperightHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('swiperight', that.eventHandlers['swiperightHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['swipetopHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('swipetop', that.eventHandlers['swipetopHandler']);\n\t\t}\n\n\t}\n}\n","import { NgModule } from '@angular/core';\n\nimport { ToastComponent } from './smart.toast';\nimport { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';\n\n@NgModule({\n declarations: [ToastComponent],\n\tschemas: [CUSTOM_ELEMENTS_SCHEMA],\n\texports: [ToastComponent]\n})\n\nexport class ToastModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Background_Complete" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
4
+ x="0px" y="0px" viewBox="0 0 66.3 52.9" style="enable-background:new 0 0 66.3 52.9;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#EBEBEB;}
7
+ .st1{fill:#F5F5F5;}
8
+ </style>
9
+ <g>
10
+ <g>
11
+ <g>
12
+
13
+ <rect x="6.8" y="-6.5" transform="matrix(2.345817e-03 -1 1 2.345817e-03 6.6612 59.5521)" class="st0" width="52.7" height="65.9"/>
14
+ </g>
15
+ </g>
16
+ <rect x="10.1" y="-4.2" transform="matrix(2.344414e-03 -1 1 2.344414e-03 6.6184 59.509)" class="st1" width="46" height="61.2"/>
17
+ <polygon class="st0" points="2.5,49.4 23.9,20.8 37.1,38.8 46.1,29.2 63.7,49.5 "/>
18
+ <g>
19
+ <g>
20
+ <path class="st0" d="M42.8,17.4c0,2.7-2.2,4.8-4.8,4.8c-2.7,0-4.8-2.2-4.8-4.8c0-2.7,2.2-4.8,4.8-4.8
21
+ C40.7,12.5,42.8,14.7,42.8,17.4z"/>
22
+ </g>
23
+ </g>
24
+ </g>
25
+ </svg>
Binary file
Binary file