@siemens/ix-angular 2.0.0-beta.0 → 2.0.0
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/app-initialize.d.ts +1 -1
- package/boolean-value-accessor.d.ts +9 -0
- package/components.d.ts +112 -53
- package/declare-components.d.ts +1 -1
- package/esm2020/app-initialize.mjs +6 -5
- package/esm2020/boolean-value-accessor.mjs +38 -0
- package/esm2020/components.mjs +241 -115
- package/esm2020/declare-components.mjs +9 -4
- package/esm2020/index.mjs +4 -1
- package/esm2020/ix-icon.mjs +38 -0
- package/esm2020/modal/modal.config.mjs +1 -1
- package/esm2020/modal/modal.service.mjs +19 -19
- package/esm2020/module.mjs +19 -3
- package/esm2020/select-value-accessor.mjs +35 -0
- package/esm2020/theme/theme.service.mjs +4 -1
- package/esm2020/value-accessor.mjs +40 -0
- package/fesm2015/siemens-ix-angular.mjs +413 -149
- package/fesm2015/siemens-ix-angular.mjs.map +1 -1
- package/fesm2020/siemens-ix-angular.mjs +412 -140
- package/fesm2020/siemens-ix-angular.mjs.map +1 -1
- package/index.d.ts +3 -0
- package/ix-icon.d.ts +12 -0
- package/modal/modal.config.d.ts +2 -1
- package/module.d.ts +4 -1
- package/package.json +4 -4
- package/select-value-accessor.d.ts +8 -0
- package/theme/theme.service.d.ts +3 -0
- package/value-accessor.d.ts +18 -0
package/app-initialize.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const appInitialize: (doc: Document) => () => void
|
|
1
|
+
export declare const appInitialize: (doc: Document) => () => Promise<void>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { ValueAccessor } from './value-accessor';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BooleanValueAccessor extends ValueAccessor {
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
writeValue(value: any): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BooleanValueAccessor, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BooleanValueAccessor, "ix-toggle[ngModel],ix-toggle[formControlName],ix-toggle[formControl]", never, {}, {}, never>;
|
|
9
|
+
}
|
package/components.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import type { LegacyDateChangeEvent as IIxDatePickerLegacyDateChangeEvent } from
|
|
|
6
6
|
import type { DateChangeEvent as IIxDatePickerDateChangeEvent } from '@siemens/ix';
|
|
7
7
|
import type { DateTimeDateChangeEvent as IIxDatetimePickerDateTimeDateChangeEvent } from '@siemens/ix';
|
|
8
8
|
import type { DateTimeSelectEvent as IIxDatetimePickerDateTimeSelectEvent } from '@siemens/ix';
|
|
9
|
+
import type { TabClickDetail as IIxTabItemTabClickDetail } from '@siemens/ix';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class IxActionCard {
|
|
11
12
|
protected z: NgZone;
|
|
@@ -16,28 +17,6 @@ export declare class IxActionCard {
|
|
|
16
17
|
}
|
|
17
18
|
export declare interface IxActionCard extends Components.IxActionCard {
|
|
18
19
|
}
|
|
19
|
-
export declare class IxAnimatedTab {
|
|
20
|
-
protected z: NgZone;
|
|
21
|
-
protected el: HTMLElement;
|
|
22
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IxAnimatedTab, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxAnimatedTab, "ix-animated-tab", never, { "count": "count"; "icon": "icon"; }, {}, never, ["*"]>;
|
|
25
|
-
}
|
|
26
|
-
export declare interface IxAnimatedTab extends Components.IxAnimatedTab {
|
|
27
|
-
}
|
|
28
|
-
export declare class IxAnimatedTabs {
|
|
29
|
-
protected z: NgZone;
|
|
30
|
-
protected el: HTMLElement;
|
|
31
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IxAnimatedTabs, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxAnimatedTabs, "ix-animated-tabs", never, { "selectedIndex": "selectedIndex"; "tabPlacement": "tabPlacement"; }, {}, never, ["*"]>;
|
|
34
|
-
}
|
|
35
|
-
export declare interface IxAnimatedTabs extends Components.IxAnimatedTabs {
|
|
36
|
-
/**
|
|
37
|
-
* Tab navigated
|
|
38
|
-
*/
|
|
39
|
-
tabClick: EventEmitter<CustomEvent<any>>;
|
|
40
|
-
}
|
|
41
20
|
export declare class IxApplicationHeader {
|
|
42
21
|
protected z: NgZone;
|
|
43
22
|
protected el: HTMLElement;
|
|
@@ -61,7 +40,7 @@ export declare class IxBasicNavigation {
|
|
|
61
40
|
protected el: HTMLElement;
|
|
62
41
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
63
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxBasicNavigation, never>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxBasicNavigation, "ix-basic-navigation", never, { "applicationName": "applicationName"; "hideHeader": "hideHeader"; }, {}, never, ["*"]>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxBasicNavigation, "ix-basic-navigation", never, { "applicationName": "applicationName"; "breakpoints": "breakpoints"; "forceBreakpoint": "forceBreakpoint"; "hideHeader": "hideHeader"; }, {}, never, ["*"]>;
|
|
65
44
|
}
|
|
66
45
|
export declare interface IxBasicNavigation extends Components.IxBasicNavigation {
|
|
67
46
|
}
|
|
@@ -70,7 +49,7 @@ export declare class IxBlind {
|
|
|
70
49
|
protected el: HTMLElement;
|
|
71
50
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
72
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxBlind, never>;
|
|
73
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxBlind, "ix-blind", never, { "collapsed": "collapsed"; "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxBlind, "ix-blind", never, { "collapsed": "collapsed"; "icon": "icon"; "label": "label"; "sublabel": "sublabel"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
74
53
|
}
|
|
75
54
|
export declare interface IxBlind extends Components.IxBlind {
|
|
76
55
|
/**
|
|
@@ -83,7 +62,7 @@ export declare class IxBreadcrumb {
|
|
|
83
62
|
protected el: HTMLElement;
|
|
84
63
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
85
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxBreadcrumb, never>;
|
|
86
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxBreadcrumb, "ix-breadcrumb", never, { "ghost": "ghost"; "nextItems": "nextItems"; "visibleItemCount": "visibleItemCount"; }, {}, never, ["*"]>;
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxBreadcrumb, "ix-breadcrumb", never, { "ariaLabelPreviousButton": "ariaLabelPreviousButton"; "ghost": "ghost"; "nextItems": "nextItems"; "visibleItemCount": "visibleItemCount"; }, {}, never, ["*"]>;
|
|
87
66
|
}
|
|
88
67
|
export declare interface IxBreadcrumb extends Components.IxBreadcrumb {
|
|
89
68
|
/**
|
|
@@ -112,7 +91,7 @@ export declare class IxButton {
|
|
|
112
91
|
protected el: HTMLElement;
|
|
113
92
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
114
93
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxButton, never>;
|
|
115
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxButton, "ix-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "
|
|
94
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxButton, "ix-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "type": "type"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
116
95
|
}
|
|
117
96
|
export declare interface IxButton extends Components.IxButton {
|
|
118
97
|
}
|
|
@@ -182,9 +161,13 @@ export declare class IxCategoryFilter {
|
|
|
182
161
|
protected el: HTMLElement;
|
|
183
162
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
184
163
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxCategoryFilter, never>;
|
|
185
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxCategoryFilter, "ix-category-filter", never, { "categories": "categories"; "filterState": "filterState"; "hideIcon": "hideIcon"; "i18nPlainText": "i18nPlainText"; "icon": "icon"; "
|
|
164
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCategoryFilter, "ix-category-filter", never, { "categories": "categories"; "disabled": "disabled"; "filterState": "filterState"; "hideIcon": "hideIcon"; "i18nPlainText": "i18nPlainText"; "icon": "icon"; "labelCategories": "labelCategories"; "nonSelectableCategories": "nonSelectableCategories"; "placeholder": "placeholder"; "readonly": "readonly"; "repeatCategories": "repeatCategories"; "suggestions": "suggestions"; }, {}, never, ["*"]>;
|
|
186
165
|
}
|
|
187
166
|
export declare interface IxCategoryFilter extends Components.IxCategoryFilter {
|
|
167
|
+
/**
|
|
168
|
+
* Event dispatched whenever the a category gets selected in the dropdown
|
|
169
|
+
*/
|
|
170
|
+
categoryChanged: EventEmitter<CustomEvent<string>>;
|
|
188
171
|
/**
|
|
189
172
|
* Event dispatched whenever the text input changes.
|
|
190
173
|
*/
|
|
@@ -202,15 +185,20 @@ export declare class IxChip {
|
|
|
202
185
|
static ɵcmp: i0.ɵɵComponentDeclaration<IxChip, "ix-chip", never, { "active": "active"; "background": "background"; "closable": "closable"; "color": "color"; "icon": "icon"; "outline": "outline"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
203
186
|
}
|
|
204
187
|
export declare interface IxChip extends Components.IxChip {
|
|
205
|
-
/**
|
|
206
|
-
* Fire event if close button is clicked @deprecated Will be removed in 2.0.0. Use `closeChip`
|
|
207
|
-
*/
|
|
208
|
-
close: EventEmitter<CustomEvent<any>>;
|
|
209
188
|
/**
|
|
210
189
|
* Fire event if close button is clicked @since 1.5.0
|
|
211
190
|
*/
|
|
212
191
|
closeChip: EventEmitter<CustomEvent<any>>;
|
|
213
192
|
}
|
|
193
|
+
export declare class IxCol {
|
|
194
|
+
protected z: NgZone;
|
|
195
|
+
protected el: HTMLElement;
|
|
196
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
197
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxCol, never>;
|
|
198
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCol, "ix-col", never, { "size": "size"; "sizeLg": "sizeLg"; "sizeMd": "sizeMd"; "sizeSm": "sizeSm"; }, {}, never, ["*"]>;
|
|
199
|
+
}
|
|
200
|
+
export declare interface IxCol extends Components.IxCol {
|
|
201
|
+
}
|
|
214
202
|
export declare class IxContentHeader {
|
|
215
203
|
protected z: NgZone;
|
|
216
204
|
protected el: HTMLElement;
|
|
@@ -324,7 +312,7 @@ export declare class IxDropdownButton {
|
|
|
324
312
|
protected el: HTMLElement;
|
|
325
313
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
326
314
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownButton, never>;
|
|
327
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownButton, "ix-dropdown-button", never, { "
|
|
315
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownButton, "ix-dropdown-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "label": "label"; "outline": "outline"; "placement": "placement"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
328
316
|
}
|
|
329
317
|
export declare interface IxDropdownButton extends Components.IxDropdownButton {
|
|
330
318
|
}
|
|
@@ -345,10 +333,6 @@ export declare class IxDropdownItem {
|
|
|
345
333
|
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownItem, "ix-dropdown-item", never, { "checked": "checked"; "disabled": "disabled"; "hover": "hover"; "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
|
|
346
334
|
}
|
|
347
335
|
export declare interface IxDropdownItem extends Components.IxDropdownItem {
|
|
348
|
-
/**
|
|
349
|
-
* Click on item
|
|
350
|
-
*/
|
|
351
|
-
itemClick: EventEmitter<CustomEvent<HTMLIxDropdownItemElement>>;
|
|
352
336
|
}
|
|
353
337
|
export declare class IxDropdownQuickActions {
|
|
354
338
|
protected z: NgZone;
|
|
@@ -386,7 +370,7 @@ export declare class IxEventListItem {
|
|
|
386
370
|
protected el: HTMLElement;
|
|
387
371
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
388
372
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxEventListItem, never>;
|
|
389
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxEventListItem, "ix-event-list-item", never, { "chevron": "chevron"; "color": "color"; "disabled": "disabled"; "
|
|
373
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxEventListItem, "ix-event-list-item", never, { "chevron": "chevron"; "color": "color"; "disabled": "disabled"; "selected": "selected"; }, {}, never, ["*"]>;
|
|
390
374
|
}
|
|
391
375
|
export declare interface IxEventListItem extends Components.IxEventListItem {
|
|
392
376
|
/**
|
|
@@ -412,7 +396,7 @@ export declare class IxFilterChip {
|
|
|
412
396
|
protected el: HTMLElement;
|
|
413
397
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
414
398
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxFilterChip, never>;
|
|
415
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxFilterChip, "ix-filter-chip", never, { "disabled": "disabled"; }, {}, never, ["*"]>;
|
|
399
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxFilterChip, "ix-filter-chip", never, { "disabled": "disabled"; "readonly": "readonly"; }, {}, never, ["*"]>;
|
|
416
400
|
}
|
|
417
401
|
export declare interface IxFilterChip extends Components.IxFilterChip {
|
|
418
402
|
/**
|
|
@@ -425,7 +409,7 @@ export declare class IxFlipTile {
|
|
|
425
409
|
protected el: HTMLElement;
|
|
426
410
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
427
411
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTile, never>;
|
|
428
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTile, "ix-flip-tile", never, { "
|
|
412
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTile, "ix-flip-tile", never, { "height": "height"; "state": "state"; "width": "width"; }, {}, never, ["*"]>;
|
|
429
413
|
}
|
|
430
414
|
export declare interface IxFlipTile extends Components.IxFlipTile {
|
|
431
415
|
}
|
|
@@ -438,6 +422,15 @@ export declare class IxFlipTileContent {
|
|
|
438
422
|
}
|
|
439
423
|
export declare interface IxFlipTileContent extends Components.IxFlipTileContent {
|
|
440
424
|
}
|
|
425
|
+
export declare class IxFormField {
|
|
426
|
+
protected z: NgZone;
|
|
427
|
+
protected el: HTMLElement;
|
|
428
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
429
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxFormField, never>;
|
|
430
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxFormField, "ix-form-field", never, { "label": "label"; }, {}, never, ["*"]>;
|
|
431
|
+
}
|
|
432
|
+
export declare interface IxFormField extends Components.IxFormField {
|
|
433
|
+
}
|
|
441
434
|
export declare class IxGroup {
|
|
442
435
|
protected z: NgZone;
|
|
443
436
|
protected el: HTMLElement;
|
|
@@ -481,23 +474,27 @@ export declare interface IxGroupItem extends Components.IxGroupItem {
|
|
|
481
474
|
*/
|
|
482
475
|
selectedChanged: EventEmitter<CustomEvent<HTMLIxGroupItemElement>>;
|
|
483
476
|
}
|
|
484
|
-
export declare class
|
|
477
|
+
export declare class IxIconButton {
|
|
485
478
|
protected z: NgZone;
|
|
486
479
|
protected el: HTMLElement;
|
|
487
480
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
488
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
489
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
481
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxIconButton, never>;
|
|
482
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxIconButton, "ix-icon-button", never, { "color": "color"; "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "oval": "oval"; "size": "size"; "type": "type"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
490
483
|
}
|
|
491
|
-
export declare interface
|
|
484
|
+
export declare interface IxIconButton extends Components.IxIconButton {
|
|
492
485
|
}
|
|
493
|
-
export declare class
|
|
486
|
+
export declare class IxIconToggleButton {
|
|
494
487
|
protected z: NgZone;
|
|
495
488
|
protected el: HTMLElement;
|
|
496
489
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
497
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
498
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
490
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxIconToggleButton, never>;
|
|
491
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxIconToggleButton, "ix-icon-toggle-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "pressed": "pressed"; "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
499
492
|
}
|
|
500
|
-
export declare interface
|
|
493
|
+
export declare interface IxIconToggleButton extends Components.IxIconToggleButton {
|
|
494
|
+
/**
|
|
495
|
+
* Pressed change event
|
|
496
|
+
*/
|
|
497
|
+
pressedChange: EventEmitter<CustomEvent<boolean>>;
|
|
501
498
|
}
|
|
502
499
|
export declare class IxInputGroup {
|
|
503
500
|
protected z: NgZone;
|
|
@@ -535,6 +532,15 @@ export declare class IxKpi {
|
|
|
535
532
|
}
|
|
536
533
|
export declare interface IxKpi extends Components.IxKpi {
|
|
537
534
|
}
|
|
535
|
+
export declare class IxLayoutGrid {
|
|
536
|
+
protected z: NgZone;
|
|
537
|
+
protected el: HTMLElement;
|
|
538
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
539
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxLayoutGrid, never>;
|
|
540
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxLayoutGrid, "ix-layout-grid", never, { "columns": "columns"; "gap": "gap"; "noMargin": "noMargin"; }, {}, never, ["*"]>;
|
|
541
|
+
}
|
|
542
|
+
export declare interface IxLayoutGrid extends Components.IxLayoutGrid {
|
|
543
|
+
}
|
|
538
544
|
export declare class IxLinkButton {
|
|
539
545
|
protected z: NgZone;
|
|
540
546
|
protected el: HTMLElement;
|
|
@@ -579,7 +585,7 @@ export declare class IxMenu {
|
|
|
579
585
|
protected el: HTMLElement;
|
|
580
586
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
581
587
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenu, never>;
|
|
582
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenu, "ix-menu", never, { "applicationDescription": "applicationDescription"; "applicationName": "applicationName"; "enableMapExpand": "enableMapExpand"; "enableSettings": "enableSettings"; "enableToggleTheme": "enableToggleTheme"; "expand": "expand"; "
|
|
588
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenu, "ix-menu", never, { "applicationDescription": "applicationDescription"; "applicationName": "applicationName"; "enableMapExpand": "enableMapExpand"; "enableSettings": "enableSettings"; "enableToggleTheme": "enableToggleTheme"; "expand": "expand"; "i18nCollapse": "i18nCollapse"; "i18nExpand": "i18nExpand"; "i18nExpandSidebar": "i18nExpandSidebar"; "i18nLegal": "i18nLegal"; "i18nSettings": "i18nSettings"; "i18nToggleTheme": "i18nToggleTheme"; "maxVisibleMenuItems": "maxVisibleMenuItems"; "pinned": "pinned"; "showAbout": "showAbout"; "showSettings": "showSettings"; }, {}, never, ["*"]>;
|
|
583
589
|
}
|
|
584
590
|
export declare interface IxMenu extends Components.IxMenu {
|
|
585
591
|
/**
|
|
@@ -807,18 +813,31 @@ export declare class IxPushCard {
|
|
|
807
813
|
}
|
|
808
814
|
export declare interface IxPushCard extends Components.IxPushCard {
|
|
809
815
|
}
|
|
816
|
+
export declare class IxRow {
|
|
817
|
+
protected z: NgZone;
|
|
818
|
+
protected el: HTMLElement;
|
|
819
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
820
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxRow, never>;
|
|
821
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxRow, "ix-row", never, {}, {}, never, ["*"]>;
|
|
822
|
+
}
|
|
823
|
+
export declare interface IxRow extends Components.IxRow {
|
|
824
|
+
}
|
|
810
825
|
export declare class IxSelect {
|
|
811
826
|
protected z: NgZone;
|
|
812
827
|
protected el: HTMLElement;
|
|
813
828
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
814
829
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxSelect, never>;
|
|
815
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "editable": "editable"; "hideListHeader": "hideListHeader"; "i18nNoMatches": "i18nNoMatches"; "i18nPlaceholder": "i18nPlaceholder"; "i18nPlaceholderEditable": "i18nPlaceholderEditable"; "i18nSelectListHeader": "i18nSelectListHeader"; "mode": "mode"; "readonly": "readonly"; "selectedIndices": "selectedIndices"; }, {}, never, ["*"]>;
|
|
830
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "editable": "editable"; "hideListHeader": "hideListHeader"; "i18nNoMatches": "i18nNoMatches"; "i18nPlaceholder": "i18nPlaceholder"; "i18nPlaceholderEditable": "i18nPlaceholderEditable"; "i18nSelectListHeader": "i18nSelectListHeader"; "mode": "mode"; "readonly": "readonly"; "selectedIndices": "selectedIndices"; "value": "value"; }, {}, never, ["*"]>;
|
|
816
831
|
}
|
|
817
832
|
export declare interface IxSelect extends Components.IxSelect {
|
|
818
833
|
/**
|
|
819
|
-
*
|
|
834
|
+
* Value changed @since 2.0.0
|
|
835
|
+
*/
|
|
836
|
+
valueChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
837
|
+
/**
|
|
838
|
+
* Item selection changed @deprecated since 2.0.0. Use `valueChange` instead.
|
|
820
839
|
*/
|
|
821
|
-
itemSelectionChange: EventEmitter<CustomEvent<string
|
|
840
|
+
itemSelectionChange: EventEmitter<CustomEvent<string[]>>;
|
|
822
841
|
/**
|
|
823
842
|
* Event dispatched whenever the text input changes. @since 2.0.0
|
|
824
843
|
*/
|
|
@@ -841,6 +860,16 @@ export declare interface IxSelectItem extends Components.IxSelectItem {
|
|
|
841
860
|
*/
|
|
842
861
|
itemClick: EventEmitter<CustomEvent<string>>;
|
|
843
862
|
}
|
|
863
|
+
export declare class IxSlider {
|
|
864
|
+
protected z: NgZone;
|
|
865
|
+
protected el: HTMLElement;
|
|
866
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
867
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxSlider, never>;
|
|
868
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxSlider, "ix-slider", never, { "disabled": "disabled"; "error": "error"; "marker": "marker"; "max": "max"; "min": "min"; "step": "step"; "trace": "trace"; "traceReference": "traceReference"; "value": "value"; }, {}, never, ["*"]>;
|
|
869
|
+
}
|
|
870
|
+
export declare interface IxSlider extends Components.IxSlider {
|
|
871
|
+
valueChange: EventEmitter<CustomEvent<number>>;
|
|
872
|
+
}
|
|
844
873
|
export declare class IxSpinner {
|
|
845
874
|
protected z: NgZone;
|
|
846
875
|
protected el: HTMLElement;
|
|
@@ -884,6 +913,10 @@ export declare class IxTabItem {
|
|
|
884
913
|
static ɵcmp: i0.ɵɵComponentDeclaration<IxTabItem, "ix-tab-item", never, { "counter": "counter"; "disabled": "disabled"; "icon": "icon"; "layout": "layout"; "placement": "placement"; "rounded": "rounded"; "selected": "selected"; "small": "small"; }, {}, never, ["*"]>;
|
|
885
914
|
}
|
|
886
915
|
export declare interface IxTabItem extends Components.IxTabItem {
|
|
916
|
+
/**
|
|
917
|
+
* On tab click @since 2.0.0
|
|
918
|
+
*/
|
|
919
|
+
tabClick: EventEmitter<CustomEvent<IIxTabItemTabClickDetail>>;
|
|
887
920
|
}
|
|
888
921
|
export declare class IxTabs {
|
|
889
922
|
protected z: NgZone;
|
|
@@ -893,6 +926,10 @@ export declare class IxTabs {
|
|
|
893
926
|
static ɵcmp: i0.ɵɵComponentDeclaration<IxTabs, "ix-tabs", never, { "layout": "layout"; "placement": "placement"; "rounded": "rounded"; "selected": "selected"; "small": "small"; }, {}, never, ["*"]>;
|
|
894
927
|
}
|
|
895
928
|
export declare interface IxTabs extends Components.IxTabs {
|
|
929
|
+
/**
|
|
930
|
+
* `selected` property changed @since 2.0.0
|
|
931
|
+
*/
|
|
932
|
+
selectedChange: EventEmitter<CustomEvent<number>>;
|
|
896
933
|
}
|
|
897
934
|
export declare class IxTile {
|
|
898
935
|
protected z: NgZone;
|
|
@@ -955,6 +992,19 @@ export declare interface IxToggle extends Components.IxToggle {
|
|
|
955
992
|
*/
|
|
956
993
|
checkedChange: EventEmitter<CustomEvent<boolean>>;
|
|
957
994
|
}
|
|
995
|
+
export declare class IxToggleButton {
|
|
996
|
+
protected z: NgZone;
|
|
997
|
+
protected el: HTMLElement;
|
|
998
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
999
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxToggleButton, never>;
|
|
1000
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxToggleButton, "ix-toggle-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "pressed": "pressed"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
1001
|
+
}
|
|
1002
|
+
export declare interface IxToggleButton extends Components.IxToggleButton {
|
|
1003
|
+
/**
|
|
1004
|
+
* Pressed change event
|
|
1005
|
+
*/
|
|
1006
|
+
pressedChange: EventEmitter<CustomEvent<boolean>>;
|
|
1007
|
+
}
|
|
958
1008
|
export declare class IxTooltip {
|
|
959
1009
|
protected z: NgZone;
|
|
960
1010
|
protected el: HTMLElement;
|
|
@@ -981,6 +1031,15 @@ export declare interface IxTreeItem extends Components.IxTreeItem {
|
|
|
981
1031
|
*/
|
|
982
1032
|
itemClick: EventEmitter<CustomEvent<void>>;
|
|
983
1033
|
}
|
|
1034
|
+
export declare class IxTypography {
|
|
1035
|
+
protected z: NgZone;
|
|
1036
|
+
protected el: HTMLElement;
|
|
1037
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1038
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxTypography, never>;
|
|
1039
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTypography, "ix-typography", never, { "bold": "bold"; "color": "color"; "format": "format"; "textDecoration": "textDecoration"; }, {}, never, ["*"]>;
|
|
1040
|
+
}
|
|
1041
|
+
export declare interface IxTypography extends Components.IxTypography {
|
|
1042
|
+
}
|
|
984
1043
|
export declare class IxUpload {
|
|
985
1044
|
protected z: NgZone;
|
|
986
1045
|
protected el: HTMLElement;
|
|
@@ -1008,7 +1067,7 @@ export declare class IxWorkflowStep {
|
|
|
1008
1067
|
protected el: HTMLElement;
|
|
1009
1068
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1010
1069
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowStep, never>;
|
|
1011
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowStep, "ix-workflow-step", never, { "clickable": "clickable"; "disabled": "disabled"; "
|
|
1070
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowStep, "ix-workflow-step", never, { "clickable": "clickable"; "disabled": "disabled"; "selected": "selected"; "status": "status"; "vertical": "vertical"; }, {}, never, ["*"]>;
|
|
1012
1071
|
}
|
|
1013
1072
|
export declare interface IxWorkflowStep extends Components.IxWorkflowStep {
|
|
1014
1073
|
}
|
|
@@ -1017,7 +1076,7 @@ export declare class IxWorkflowSteps {
|
|
|
1017
1076
|
protected el: HTMLElement;
|
|
1018
1077
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1019
1078
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowSteps, never>;
|
|
1020
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowSteps, "ix-workflow-steps", never, { "clickable": "clickable"; "
|
|
1079
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowSteps, "ix-workflow-steps", never, { "clickable": "clickable"; "selectedIndex": "selectedIndex"; "vertical": "vertical"; }, {}, never, ["*"]>;
|
|
1021
1080
|
}
|
|
1022
1081
|
export declare interface IxWorkflowSteps extends Components.IxWorkflowSteps {
|
|
1023
1082
|
/**
|
package/declare-components.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import * as d from './components';
|
|
2
|
-
export declare const DIRECTIVES: (typeof d.IxActionCard | typeof d.
|
|
2
|
+
export declare const DIRECTIVES: (typeof d.IxActionCard | typeof d.IxApplicationHeader | typeof d.IxAvatar | typeof d.IxBasicNavigation | typeof d.IxBlind | typeof d.IxBreadcrumb | typeof d.IxBreadcrumbItem | typeof d.IxButton | typeof d.IxCard | typeof d.IxCardAccordion | typeof d.IxCardContent | typeof d.IxCardList | typeof d.IxCardTitle | typeof d.IxCategoryFilter | typeof d.IxChip | typeof d.IxCol | typeof d.IxContentHeader | typeof d.IxDatePicker | typeof d.IxDatetimePicker | typeof d.IxDivider | typeof d.IxDrawer | typeof d.IxDropdown | typeof d.IxDropdownButton | typeof d.IxDropdownHeader | typeof d.IxDropdownItem | typeof d.IxDropdownQuickActions | typeof d.IxEmptyState | typeof d.IxEventList | typeof d.IxEventListItem | typeof d.IxExpandingSearch | typeof d.IxFilterChip | typeof d.IxFlipTile | typeof d.IxFlipTileContent | typeof d.IxFormField | typeof d.IxGroup | typeof d.IxGroupContextMenu | typeof d.IxGroupItem | typeof d.IxIconButton | typeof d.IxIconToggleButton | typeof d.IxInputGroup | typeof d.IxKeyValue | typeof d.IxKeyValueList | typeof d.IxKpi | typeof d.IxLayoutGrid | typeof d.IxLinkButton | typeof d.IxMapNavigation | typeof d.IxMapNavigationOverlay | typeof d.IxMenu | typeof d.IxMenuAbout | typeof d.IxMenuAboutItem | typeof d.IxMenuAboutNews | typeof d.IxMenuAvatar | typeof d.IxMenuAvatarItem | typeof d.IxMenuCategory | typeof d.IxMenuItem | typeof d.IxMenuSettings | typeof d.IxMenuSettingsItem | typeof d.IxMessageBar | typeof d.IxModal | typeof d.IxModalContent | typeof d.IxModalExample | typeof d.IxModalFooter | typeof d.IxModalHeader | typeof d.IxPagination | typeof d.IxPill | typeof d.IxPushCard | typeof d.IxRow | typeof d.IxSelect | typeof d.IxSelectItem | typeof d.IxSlider | typeof d.IxSpinner | typeof d.IxSplitButton | typeof d.IxSplitButtonItem | typeof d.IxTabItem | typeof d.IxTabs | typeof d.IxTile | typeof d.IxTimePicker | typeof d.IxToast | typeof d.IxToastContainer | typeof d.IxToggle | typeof d.IxToggleButton | typeof d.IxTooltip | typeof d.IxTreeItem | typeof d.IxTypography | typeof d.IxUpload | typeof d.IxValidationTooltip | typeof d.IxWorkflowStep | typeof d.IxWorkflowSteps)[];
|
|
@@ -6,20 +6,21 @@
|
|
|
6
6
|
* This source code is licensed under the MIT license found in the
|
|
7
7
|
* LICENSE file in the root directory of this source tree.
|
|
8
8
|
*/
|
|
9
|
+
import { defineCustomElements as iconsDefineCustomElements } from '@siemens/ix-icons/loader';
|
|
9
10
|
import { applyPolyfills, defineCustomElements } from '@siemens/ix/loader';
|
|
10
11
|
let didInitialize = false;
|
|
11
12
|
export const appInitialize = (doc) => {
|
|
12
|
-
return () => {
|
|
13
|
+
return async () => {
|
|
13
14
|
const win = doc.defaultView;
|
|
14
15
|
if (win && typeof window !== 'undefined') {
|
|
15
16
|
if (didInitialize) {
|
|
16
17
|
return;
|
|
17
18
|
}
|
|
18
19
|
didInitialize = true;
|
|
19
|
-
applyPolyfills()
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
await applyPolyfills();
|
|
21
|
+
await iconsDefineCustomElements();
|
|
22
|
+
await defineCustomElements();
|
|
22
23
|
}
|
|
23
24
|
};
|
|
24
25
|
};
|
|
25
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWluaXRpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvYXBwLWluaXRpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7R0FPRztBQUVILE9BQU8sRUFBRSxvQkFBb0IsSUFBSSx5QkFBeUIsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzdGLE9BQU8sRUFBRSxjQUFjLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUUxRSxJQUFJLGFBQWEsR0FBRyxLQUFLLENBQUM7QUFFMUIsTUFBTSxDQUFDLE1BQU0sYUFBYSxHQUFHLENBQUMsR0FBYSxFQUFFLEVBQUU7SUFDN0MsT0FBTyxLQUFLLElBQUksRUFBRTtRQUNoQixNQUFNLEdBQUcsR0FBdUIsR0FBRyxDQUFDLFdBQWtCLENBQUM7UUFDdkQsSUFBSSxHQUFHLElBQUksT0FBUSxNQUFjLEtBQUssV0FBVyxFQUFFO1lBQ2pELElBQUksYUFBYSxFQUFFO2dCQUNqQixPQUFPO2FBQ1I7WUFFRCxhQUFhLEdBQUcsSUFBSSxDQUFDO1lBRXJCLE1BQU0sY0FBYyxFQUFFLENBQUM7WUFDdkIsTUFBTSx5QkFBeUIsRUFBRSxDQUFDO1lBQ2xDLE1BQU0sb0JBQW9CLEVBQUUsQ0FBQztTQUM5QjtJQUNILENBQUMsQ0FBQztBQUNKLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4gKiBTUERYLUZpbGVDb3B5cmlnaHRUZXh0OiAyMDIzIFNpZW1lbnMgQUdcbiAqXG4gKiBTUERYLUxpY2Vuc2UtSWRlbnRpZmllcjogTUlUXG4gKlxuICogVGhpcyBzb3VyY2UgY29kZSBpcyBsaWNlbnNlZCB1bmRlciB0aGUgTUlUIGxpY2Vuc2UgZm91bmQgaW4gdGhlXG4gKiBMSUNFTlNFIGZpbGUgaW4gdGhlIHJvb3QgZGlyZWN0b3J5IG9mIHRoaXMgc291cmNlIHRyZWUuXG4gKi9cblxuaW1wb3J0IHsgZGVmaW5lQ3VzdG9tRWxlbWVudHMgYXMgaWNvbnNEZWZpbmVDdXN0b21FbGVtZW50cyB9IGZyb20gJ0BzaWVtZW5zL2l4LWljb25zL2xvYWRlcic7XG5pbXBvcnQgeyBhcHBseVBvbHlmaWxscywgZGVmaW5lQ3VzdG9tRWxlbWVudHMgfSBmcm9tICdAc2llbWVucy9peC9sb2FkZXInO1xuXG5sZXQgZGlkSW5pdGlhbGl6ZSA9IGZhbHNlO1xuXG5leHBvcnQgY29uc3QgYXBwSW5pdGlhbGl6ZSA9IChkb2M6IERvY3VtZW50KSA9PiB7XG4gIHJldHVybiBhc3luYyAoKSA9PiB7XG4gICAgY29uc3Qgd2luOiBXaW5kb3cgfCB1bmRlZmluZWQgPSBkb2MuZGVmYXVsdFZpZXcgYXMgYW55O1xuICAgIGlmICh3aW4gJiYgdHlwZW9mICh3aW5kb3cgYXMgYW55KSAhPT0gJ3VuZGVmaW5lZCcpIHtcbiAgICAgIGlmIChkaWRJbml0aWFsaXplKSB7XG4gICAgICAgIHJldHVybjtcbiAgICAgIH1cblxuICAgICAgZGlkSW5pdGlhbGl6ZSA9IHRydWU7XG5cbiAgICAgIGF3YWl0IGFwcGx5UG9seWZpbGxzKCk7XG4gICAgICBhd2FpdCBpY29uc0RlZmluZUN1c3RvbUVsZW1lbnRzKCk7XG4gICAgICBhd2FpdCBkZWZpbmVDdXN0b21FbGVtZW50cygpO1xuICAgIH1cbiAgfTtcbn07XG4iXX0=
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Directive } from '@angular/core';
|
|
2
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
3
|
+
import { ValueAccessor } from './value-accessor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class BooleanValueAccessor extends ValueAccessor {
|
|
6
|
+
constructor(el) {
|
|
7
|
+
super(el);
|
|
8
|
+
}
|
|
9
|
+
writeValue(value) {
|
|
10
|
+
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
/** @nocollapse */ BooleanValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
14
|
+
/** @nocollapse */ BooleanValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: BooleanValueAccessor, selector: "ix-toggle[ngModel],ix-toggle[formControlName],ix-toggle[formControl]", host: { listeners: { "checkedChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
15
|
+
{
|
|
16
|
+
provide: NG_VALUE_ACCESSOR,
|
|
17
|
+
useExisting: BooleanValueAccessor,
|
|
18
|
+
multi: true
|
|
19
|
+
}
|
|
20
|
+
], usesInheritance: true, ngImport: i0 });
|
|
21
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
22
|
+
type: Directive,
|
|
23
|
+
args: [{
|
|
24
|
+
/* tslint:disable-next-line:directive-selector */
|
|
25
|
+
selector: 'ix-toggle[ngModel],ix-toggle[formControlName],ix-toggle[formControl]',
|
|
26
|
+
host: {
|
|
27
|
+
'(checkedChange)': 'handleChangeEvent($event.target.checked)'
|
|
28
|
+
},
|
|
29
|
+
providers: [
|
|
30
|
+
{
|
|
31
|
+
provide: NG_VALUE_ACCESSOR,
|
|
32
|
+
useExisting: BooleanValueAccessor,
|
|
33
|
+
multi: true
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}]
|
|
37
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYm9vbGVhbi12YWx1ZS1hY2Nlc3Nvci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9ib29sZWFuLXZhbHVlLWFjY2Vzc29yLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQWMsTUFBTSxlQUFlLENBQUM7QUFDdEQsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFbkQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGtCQUFrQixDQUFDOztBQWdCakQsTUFBTSxPQUFPLG9CQUFxQixTQUFRLGFBQWE7SUFDckQsWUFBWSxFQUFjO1FBQ3hCLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQztJQUNaLENBQUM7SUFDRCxVQUFVLENBQUMsS0FBVTtRQUNuQixJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLFNBQVMsR0FBRyxLQUFLLElBQUksSUFBSSxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQztJQUNqRixDQUFDOztxSUFOVSxvQkFBb0I7eUhBQXBCLG9CQUFvQixxTEFScEI7UUFDVDtZQUNFLE9BQU8sRUFBRSxpQkFBaUI7WUFDMUIsV0FBVyxFQUFFLG9CQUFvQjtZQUNqQyxLQUFLLEVBQUUsSUFBSTtTQUNaO0tBQ0Y7NEZBRVUsb0JBQW9CO2tCQWRoQyxTQUFTO21CQUFDO29CQUNULGlEQUFpRDtvQkFDakQsUUFBUSxFQUFFLHNFQUFzRTtvQkFDaEYsSUFBSSxFQUFFO3dCQUNKLGlCQUFpQixFQUFFLDBDQUEwQztxQkFDOUQ7b0JBQ0QsU0FBUyxFQUFFO3dCQUNUOzRCQUNFLE9BQU8sRUFBRSxpQkFBaUI7NEJBQzFCLFdBQVcsc0JBQXNCOzRCQUNqQyxLQUFLLEVBQUUsSUFBSTt5QkFDWjtxQkFDRjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgRWxlbWVudFJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTkdfVkFMVUVfQUNDRVNTT1IgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbmltcG9ydCB7IFZhbHVlQWNjZXNzb3IgfSBmcm9tICcuL3ZhbHVlLWFjY2Vzc29yJztcblxuQERpcmVjdGl2ZSh7XG4gIC8qIHRzbGludDpkaXNhYmxlLW5leHQtbGluZTpkaXJlY3RpdmUtc2VsZWN0b3IgKi9cbiAgc2VsZWN0b3I6ICdpeC10b2dnbGVbbmdNb2RlbF0saXgtdG9nZ2xlW2Zvcm1Db250cm9sTmFtZV0saXgtdG9nZ2xlW2Zvcm1Db250cm9sXScsXG4gIGhvc3Q6IHtcbiAgICAnKGNoZWNrZWRDaGFuZ2UpJzogJ2hhbmRsZUNoYW5nZUV2ZW50KCRldmVudC50YXJnZXQuY2hlY2tlZCknXG4gIH0sXG4gIHByb3ZpZGVyczogW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxuICAgICAgdXNlRXhpc3Rpbmc6IEJvb2xlYW5WYWx1ZUFjY2Vzc29yLFxuICAgICAgbXVsdGk6IHRydWVcbiAgICB9XG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgQm9vbGVhblZhbHVlQWNjZXNzb3IgZXh0ZW5kcyBWYWx1ZUFjY2Vzc29yIHtcbiAgY29uc3RydWN0b3IoZWw6IEVsZW1lbnRSZWYpIHtcbiAgICBzdXBlcihlbCk7XG4gIH1cbiAgd3JpdGVWYWx1ZSh2YWx1ZTogYW55KSB7XG4gICAgdGhpcy5lbC5uYXRpdmVFbGVtZW50LmNoZWNrZWQgPSB0aGlzLmxhc3RWYWx1ZSA9IHZhbHVlID09IG51bGwgPyBmYWxzZSA6IHZhbHVlO1xuICB9XG59XG4iXX0=
|