@wizishop/angular-components 14.1.3 → 14.2.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.
- package/angular-components.scss +115 -92
- package/esm2020/lib/components/expansion/accordion/accordion-item.interface.mjs +2 -0
- package/esm2020/lib/components/expansion/accordion/accordion-item.token.mjs +3 -0
- package/esm2020/lib/components/expansion/accordion/accordion.component.mjs +74 -0
- package/esm2020/lib/components/expansion/expansion-panel/expansion-panel-base.mjs +83 -0
- package/esm2020/lib/components/expansion/expansion-panel/expansion-panel.component.mjs +29 -0
- package/esm2020/lib/components/expansion/expansion-panel/expansion-panel.directive.mjs +20 -0
- package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header-base.mjs +44 -0
- package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header.component.mjs +27 -0
- package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header.directive.mjs +20 -0
- package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header.interface.mjs +2 -0
- package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header.token.mjs +3 -0
- package/esm2020/lib/components/expansion/expansion.module.mjs +48 -0
- package/esm2020/lib/components/selects/legacy-select/select.component.mjs +133 -0
- package/esm2020/lib/components/selects/select-test/select.component.mjs +4 -1
- package/esm2020/lib/components/selects/select-test/value-change.service.mjs +3 -3
- package/esm2020/lib/components/shared-components.module.mjs +17 -7
- package/esm2020/public-api.mjs +12 -2
- package/fesm2015/wizishop-angular-components.mjs +339 -15
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +337 -15
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/expansion/accordion/accordion-item.interface.d.ts +10 -0
- package/lib/components/expansion/accordion/accordion-item.token.d.ts +3 -0
- package/lib/components/expansion/accordion/accordion.component.d.ts +19 -0
- package/lib/components/expansion/expansion-panel/expansion-panel-base.d.ts +26 -0
- package/lib/components/expansion/expansion-panel/expansion-panel.component.d.ts +11 -0
- package/lib/components/expansion/expansion-panel/expansion-panel.directive.d.ts +9 -0
- package/lib/components/expansion/expansion-panel-header/expansion-panel-header-base.d.ts +20 -0
- package/lib/components/expansion/expansion-panel-header/expansion-panel-header.component.d.ts +11 -0
- package/lib/components/expansion/expansion-panel-header/expansion-panel-header.directive.d.ts +9 -0
- package/lib/components/expansion/expansion-panel-header/expansion-panel-header.interface.d.ts +8 -0
- package/lib/components/expansion/expansion-panel-header/expansion-panel-header.token.d.ts +3 -0
- package/lib/components/expansion/expansion.module.d.ts +18 -0
- package/lib/components/selects/{select → legacy-select}/select.component.d.ts +0 -0
- package/lib/components/selects/select-test/value-change.service.d.ts +2 -2
- package/lib/components/shared-components.module.d.ts +21 -15
- package/package.json +1 -1
- package/public-api.d.ts +10 -1
- package/wizishop-angular-components-14.2.1.tgz +0 -0
- package/esm2020/lib/components/selects/select/select.component.mjs +0 -133
- package/wizishop-angular-components-14.1.3.tgz +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { AfterViewInit, OnDestroy, QueryList } from '@angular/core';
|
|
2
|
+
import { AccordionItem } from './accordion-item.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AccordionComponent implements AfterViewInit, OnDestroy {
|
|
5
|
+
class: string;
|
|
6
|
+
expansionItems: QueryList<AccordionItem>;
|
|
7
|
+
keepOnlyOnePanelOpen: boolean;
|
|
8
|
+
private isDestroyed$;
|
|
9
|
+
private resetListeners$;
|
|
10
|
+
constructor();
|
|
11
|
+
openAll(): void;
|
|
12
|
+
closeAll(): void;
|
|
13
|
+
ngAfterViewInit(): void;
|
|
14
|
+
private panelExpansionChanges;
|
|
15
|
+
private keepOnlyOnePanelOpenHandler;
|
|
16
|
+
ngOnDestroy(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "wac-accordion", never, { "keepOnlyOnePanelOpen": "keepOnlyOnePanelOpen"; }, {}, ["expansionItems"], ["*"], false>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { AccordionItem } from '../accordion/accordion-item.interface';
|
|
3
|
+
import { ExpansionPanelHeader } from '../expansion-panel-header/expansion-panel-header.interface';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ExpansionPanelBase implements AccordionItem, AfterViewInit {
|
|
6
|
+
protected changeDetectorRef: ChangeDetectorRef;
|
|
7
|
+
header: ExpansionPanelHeader;
|
|
8
|
+
set disabled(disabled: boolean);
|
|
9
|
+
get disabled(): boolean;
|
|
10
|
+
_disabled: boolean;
|
|
11
|
+
set hideToggle(hideToggle: boolean);
|
|
12
|
+
get hideToggle(): boolean;
|
|
13
|
+
_hideToggle: boolean;
|
|
14
|
+
set isExpanded(isExpanded: boolean);
|
|
15
|
+
get isExpanded(): boolean;
|
|
16
|
+
_isExpanded: boolean;
|
|
17
|
+
isExpandedChange: EventEmitter<boolean>;
|
|
18
|
+
expandChange: EventEmitter<void>;
|
|
19
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
20
|
+
ngAfterViewInit(): void;
|
|
21
|
+
close(): void;
|
|
22
|
+
open(): void;
|
|
23
|
+
toggle(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelBase, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ExpansionPanelBase, never, never, { "disabled": "disabled"; "hideToggle": "hideToggle"; "isExpanded": "isExpanded"; }, { "isExpandedChange": "isExpandedChange"; }, ["header"], never, false>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { ExpansionPanelBase } from './expansion-panel-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ExpansionPanelComponent extends ExpansionPanelBase {
|
|
5
|
+
protected changeDetectorRef: ChangeDetectorRef;
|
|
6
|
+
class: string;
|
|
7
|
+
get isDisabled(): boolean;
|
|
8
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpansionPanelComponent, "wac-expansion-panel", never, {}, {}, never, ["wac-expansion-panel-header, wacExpansionPanelHeader", "*"], false>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { ExpansionPanelBase } from './expansion-panel-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ExpansionPanelDirective extends ExpansionPanelBase {
|
|
5
|
+
protected changeDetectorRef: ChangeDetectorRef;
|
|
6
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ExpansionPanelDirective, "[wacExpansionPanel]", never, {}, {}, never, never, false>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { ExpansionPanelHeader } from './expansion-panel-header.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ExpansionPanelHeaderBase implements ExpansionPanelHeader {
|
|
5
|
+
protected changeDetectorRef: ChangeDetectorRef;
|
|
6
|
+
onClick(): void;
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
disabledChange: EventEmitter<boolean>;
|
|
9
|
+
hideToggle: boolean;
|
|
10
|
+
hideToggleChange: EventEmitter<boolean>;
|
|
11
|
+
isExpanded: boolean;
|
|
12
|
+
isExpandedChange: EventEmitter<boolean>;
|
|
13
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
14
|
+
onToggle(): void;
|
|
15
|
+
close: () => {};
|
|
16
|
+
open: () => {};
|
|
17
|
+
toggle: () => {};
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelHeaderBase, never>;
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ExpansionPanelHeaderBase, never, never, { "disabled": "disabled"; "hideToggle": "hideToggle"; "isExpanded": "isExpanded"; }, { "disabledChange": "disabledChange"; "hideToggleChange": "hideToggleChange"; "isExpandedChange": "isExpandedChange"; }, never, never, false>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { ExpansionPanelHeaderBase } from './expansion-panel-header-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ExpansionPanelHeaderComponent extends ExpansionPanelHeaderBase {
|
|
5
|
+
protected changeDetectorRef: ChangeDetectorRef;
|
|
6
|
+
class: string;
|
|
7
|
+
get isDisabled(): boolean;
|
|
8
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelHeaderComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpansionPanelHeaderComponent, "wac-expansion-panel-header", never, {}, {}, never, ["*"], false>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { ExpansionPanelHeaderBase } from './expansion-panel-header-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ExpansionPanelHeaderDirective extends ExpansionPanelHeaderBase {
|
|
5
|
+
protected changeDetectorRef: ChangeDetectorRef;
|
|
6
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelHeaderDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ExpansionPanelHeaderDirective, "[wacExpansionPanelHeader]", never, {}, {}, never, never, false>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AccordionComponent } from './accordion/accordion.component';
|
|
2
|
+
import { ExpansionPanelHeaderComponent } from './expansion-panel-header/expansion-panel-header.component';
|
|
3
|
+
import { ExpansionPanelHeaderDirective } from './expansion-panel-header/expansion-panel-header.directive';
|
|
4
|
+
import { ExpansionPanelComponent } from './expansion-panel/expansion-panel.component';
|
|
5
|
+
import { ExpansionPanelDirective } from './expansion-panel/expansion-panel.directive';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "./expansion-panel/expansion-panel.component";
|
|
8
|
+
import * as i2 from "./expansion-panel-header/expansion-panel-header.component";
|
|
9
|
+
import * as i3 from "./accordion/accordion.component";
|
|
10
|
+
import * as i4 from "./expansion-panel/expansion-panel.directive";
|
|
11
|
+
import * as i5 from "./expansion-panel-header/expansion-panel-header.directive";
|
|
12
|
+
import * as i6 from "@angular/common";
|
|
13
|
+
export declare const ExpansionExport: (typeof AccordionComponent | typeof ExpansionPanelHeaderComponent | typeof ExpansionPanelHeaderDirective | typeof ExpansionPanelComponent | typeof ExpansionPanelDirective)[];
|
|
14
|
+
export declare class ExpansionModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ExpansionModule, [typeof i1.ExpansionPanelComponent, typeof i2.ExpansionPanelHeaderComponent, typeof i3.AccordionComponent, typeof i4.ExpansionPanelDirective, typeof i5.ExpansionPanelHeaderDirective], [typeof i6.CommonModule], [typeof i1.ExpansionPanelComponent, typeof i2.ExpansionPanelHeaderComponent, typeof i3.AccordionComponent, typeof i4.ExpansionPanelDirective, typeof i5.ExpansionPanelHeaderDirective]>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ExpansionModule>;
|
|
18
|
+
}
|
|
File without changes
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { QueryList } from '@angular/core';
|
|
1
|
+
import { OnDestroy, QueryList } from '@angular/core';
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
3
|
import { OptionComponent } from '../option/option.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ValueChangeService {
|
|
5
|
+
export declare class ValueChangeService implements OnDestroy {
|
|
6
6
|
valueChange$: Subject<any>;
|
|
7
7
|
set value(value: any);
|
|
8
8
|
get value(): any;
|
|
@@ -27,7 +27,7 @@ import * as i25 from "./text/text.component";
|
|
|
27
27
|
import * as i26 from "./text-area/text-area.component";
|
|
28
28
|
import * as i27 from "./upload/upload.component";
|
|
29
29
|
import * as i28 from "./selects/select-in-text/select-in-text.component";
|
|
30
|
-
import * as i29 from "./selects/select/select.component";
|
|
30
|
+
import * as i29 from "./selects/legacy-select/select.component";
|
|
31
31
|
import * as i30 from "./multiple-search/multiple-search.component";
|
|
32
32
|
import * as i31 from "./multiple-search-plus/multiple-search-plus.component";
|
|
33
33
|
import * as i32 from "./inputs/input-with-select/input-with-select.component";
|
|
@@ -81,21 +81,27 @@ import * as i79 from "ngx-autosize";
|
|
|
81
81
|
import * as i80 from "ngx-scrollbar";
|
|
82
82
|
import * as i81 from "ngx-scrollbar/reached-event";
|
|
83
83
|
import * as i82 from "./tree/tree.module";
|
|
84
|
-
import * as i83 from "./
|
|
85
|
-
import * as i84 from "./
|
|
86
|
-
import * as i85 from "./table/
|
|
87
|
-
import * as i86 from "./table/directives/
|
|
88
|
-
import * as i87 from "./table/directives/
|
|
89
|
-
import * as i88 from "./table/directives/
|
|
90
|
-
import * as i89 from "./
|
|
91
|
-
import * as i90 from "./inputs/input/input.component";
|
|
92
|
-
import * as i91 from "./
|
|
93
|
-
import * as i92 from "./
|
|
94
|
-
import * as i93 from "./
|
|
95
|
-
import * as i94 from "./
|
|
96
|
-
import * as i95 from "./
|
|
84
|
+
import * as i83 from "./expansion/expansion.module";
|
|
85
|
+
import * as i84 from "./pagination/pagination.component";
|
|
86
|
+
import * as i85 from "./table/table.component";
|
|
87
|
+
import * as i86 from "./table/directives/column.directive";
|
|
88
|
+
import * as i87 from "./table/directives/checkBoxRow.directive";
|
|
89
|
+
import * as i88 from "./table/directives/columnHeader.directive";
|
|
90
|
+
import * as i89 from "./table/directives/raw.directive";
|
|
91
|
+
import * as i90 from "./inputs/input-search/input-search.component";
|
|
92
|
+
import * as i91 from "./inputs/input/input.component";
|
|
93
|
+
import * as i92 from "./tooltip/tooltip.component";
|
|
94
|
+
import * as i93 from "./checkbox/checkbox.component";
|
|
95
|
+
import * as i94 from "./loader/loader.component";
|
|
96
|
+
import * as i95 from "./progress-bar/progress-bar.component";
|
|
97
|
+
import * as i96 from "./tree/tree.component";
|
|
98
|
+
import * as i97 from "./expansion/expansion-panel/expansion-panel.component";
|
|
99
|
+
import * as i98 from "./expansion/expansion-panel-header/expansion-panel-header.component";
|
|
100
|
+
import * as i99 from "./expansion/accordion/accordion.component";
|
|
101
|
+
import * as i100 from "./expansion/expansion-panel/expansion-panel.directive";
|
|
102
|
+
import * as i101 from "./expansion/expansion-panel-header/expansion-panel-header.directive";
|
|
97
103
|
export declare class SharedComponentsModule {
|
|
98
104
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedComponentsModule, never>;
|
|
99
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedComponentsModule, [typeof i1.TagComponent, typeof i2.TabComponent, typeof i3.ButtonComponent, typeof i4.InfoComponent, typeof i5.SettingsComponent, typeof i6.DeleteComponent, typeof i7.DropdownComponent, typeof i8.ImageComponent, typeof i9.BackComponent, typeof i10.SeparatorComponent, typeof i11.LogoComponent, typeof i12.RadioComponent, typeof i13.StateComponent, typeof i14.TagLabelComponent, typeof i15.CalendarComponent, typeof i16.WzEditInPlaceComponent, typeof i17.AlertComponent, typeof i18.HeaderPageComponent, typeof i19.SwitchComponent, typeof i20.LinkComponent, typeof i21.H1Component, typeof i22.H2Component, typeof i23.H3Component, typeof i24.H4Component, typeof i25.TextComponent, typeof i26.TextAreaComponent, typeof i27.UploadComponent, typeof i28.SelectInTextComponent, typeof i29.SelectComponent, typeof i30.MultipleSearchComponent, typeof i31.MultipleSearchPlusComponent, typeof i32.InputWithSelectComponent, typeof i33.PopinComponent, typeof i34.FreePopinComponent, typeof i35.BlockComponent, typeof i36.WrapperComponent, typeof i37.FiltersComponent, typeof i38.WrapperBlocsComponent, typeof i39.SnackbarComponent, typeof i40.SearchComponent, typeof i41.SelectedListComponent, typeof i42.OptionalDisableContainerComponent, typeof i43.SelectTestComponent, typeof i44.OptionComponent, typeof i45.OptionCallToActionComponent, typeof i46.PlaceholderComponent, typeof i47.LabelComponent, typeof i48.SelectSearchTriggerComponent, typeof i49.WrapperSidebarComponent, typeof i50.BreadcrumbsComponent, typeof i51.CardPriceComponent, typeof i52.TokenCheckComponent, typeof i53.BlockWithCheckboxComponent, typeof i54.ConfirmDeleteComponent, typeof i55.MosaicComponent, typeof i56.ContentWithButtonsComponent, typeof i57.WrapperMultipleBlockComponent, typeof i58.DraganddropListComponent], [typeof i59.CommonModule, typeof i60.FormsModule, typeof i61.NwbAllModule, typeof i62.TranslateModule, typeof i60.ReactiveFormsModule, typeof i63.SharedDirectives, typeof i64.SharedPipes, typeof i65.CdkTableModule, typeof i66.TagInputModule, typeof i67.DragDropModule, typeof i68.PaginationModule, typeof i69.TableModule, typeof i70.InputSearchModule, typeof i71.TooltipModule, typeof i72.CheckboxModule, typeof i73.InputModule, typeof i74.LoaderModule, typeof i75.ProgressBarModule, typeof i76.PerfectScrollbarModule, typeof i77.AlertPopupModule, typeof i78.RouterModule, typeof i79.AutosizeModule, typeof i80.NgScrollbarModule, typeof i81.NgScrollbarReachedModule, typeof i82.TreeModule], [typeof i1.TagComponent, typeof i2.TabComponent, typeof i3.ButtonComponent, typeof i4.InfoComponent, typeof i5.SettingsComponent, typeof i6.DeleteComponent, typeof i7.DropdownComponent, typeof i8.ImageComponent, typeof i9.BackComponent, typeof i10.SeparatorComponent, typeof i11.LogoComponent, typeof i12.RadioComponent, typeof i13.StateComponent, typeof i14.TagLabelComponent, typeof i15.CalendarComponent, typeof i16.WzEditInPlaceComponent, typeof i17.AlertComponent, typeof i18.HeaderPageComponent, typeof i19.SwitchComponent, typeof i20.LinkComponent, typeof i21.H1Component, typeof i22.H2Component, typeof i23.H3Component, typeof i24.H4Component, typeof i25.TextComponent, typeof i26.TextAreaComponent, typeof i27.UploadComponent, typeof i28.SelectInTextComponent, typeof i29.SelectComponent, typeof i30.MultipleSearchComponent, typeof i31.MultipleSearchPlusComponent, typeof i32.InputWithSelectComponent, typeof i33.PopinComponent, typeof i34.FreePopinComponent, typeof i35.BlockComponent, typeof i36.WrapperComponent, typeof i37.FiltersComponent, typeof i38.WrapperBlocsComponent, typeof i39.SnackbarComponent, typeof i40.SearchComponent, typeof i41.SelectedListComponent, typeof i42.OptionalDisableContainerComponent, typeof i43.SelectTestComponent, typeof i44.OptionComponent, typeof i45.OptionCallToActionComponent, typeof i46.PlaceholderComponent, typeof i47.LabelComponent, typeof i48.SelectSearchTriggerComponent, typeof i49.WrapperSidebarComponent, typeof i50.BreadcrumbsComponent, typeof i51.CardPriceComponent, typeof i52.TokenCheckComponent, typeof i53.BlockWithCheckboxComponent, typeof i54.ConfirmDeleteComponent, typeof i55.MosaicComponent, typeof i56.ContentWithButtonsComponent, typeof i57.WrapperMultipleBlockComponent, typeof i58.DraganddropListComponent, typeof
|
|
105
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedComponentsModule, [typeof i1.TagComponent, typeof i2.TabComponent, typeof i3.ButtonComponent, typeof i4.InfoComponent, typeof i5.SettingsComponent, typeof i6.DeleteComponent, typeof i7.DropdownComponent, typeof i8.ImageComponent, typeof i9.BackComponent, typeof i10.SeparatorComponent, typeof i11.LogoComponent, typeof i12.RadioComponent, typeof i13.StateComponent, typeof i14.TagLabelComponent, typeof i15.CalendarComponent, typeof i16.WzEditInPlaceComponent, typeof i17.AlertComponent, typeof i18.HeaderPageComponent, typeof i19.SwitchComponent, typeof i20.LinkComponent, typeof i21.H1Component, typeof i22.H2Component, typeof i23.H3Component, typeof i24.H4Component, typeof i25.TextComponent, typeof i26.TextAreaComponent, typeof i27.UploadComponent, typeof i28.SelectInTextComponent, typeof i29.SelectComponent, typeof i30.MultipleSearchComponent, typeof i31.MultipleSearchPlusComponent, typeof i32.InputWithSelectComponent, typeof i33.PopinComponent, typeof i34.FreePopinComponent, typeof i35.BlockComponent, typeof i36.WrapperComponent, typeof i37.FiltersComponent, typeof i38.WrapperBlocsComponent, typeof i39.SnackbarComponent, typeof i40.SearchComponent, typeof i41.SelectedListComponent, typeof i42.OptionalDisableContainerComponent, typeof i43.SelectTestComponent, typeof i44.OptionComponent, typeof i45.OptionCallToActionComponent, typeof i46.PlaceholderComponent, typeof i47.LabelComponent, typeof i48.SelectSearchTriggerComponent, typeof i49.WrapperSidebarComponent, typeof i50.BreadcrumbsComponent, typeof i51.CardPriceComponent, typeof i52.TokenCheckComponent, typeof i53.BlockWithCheckboxComponent, typeof i54.ConfirmDeleteComponent, typeof i55.MosaicComponent, typeof i56.ContentWithButtonsComponent, typeof i57.WrapperMultipleBlockComponent, typeof i58.DraganddropListComponent], [typeof i59.CommonModule, typeof i60.FormsModule, typeof i61.NwbAllModule, typeof i62.TranslateModule, typeof i60.ReactiveFormsModule, typeof i63.SharedDirectives, typeof i64.SharedPipes, typeof i65.CdkTableModule, typeof i66.TagInputModule, typeof i67.DragDropModule, typeof i68.PaginationModule, typeof i69.TableModule, typeof i70.InputSearchModule, typeof i71.TooltipModule, typeof i72.CheckboxModule, typeof i73.InputModule, typeof i74.LoaderModule, typeof i75.ProgressBarModule, typeof i76.PerfectScrollbarModule, typeof i77.AlertPopupModule, typeof i78.RouterModule, typeof i79.AutosizeModule, typeof i80.NgScrollbarModule, typeof i81.NgScrollbarReachedModule, typeof i82.TreeModule, typeof i83.ExpansionModule], [typeof i1.TagComponent, typeof i2.TabComponent, typeof i3.ButtonComponent, typeof i4.InfoComponent, typeof i5.SettingsComponent, typeof i6.DeleteComponent, typeof i7.DropdownComponent, typeof i8.ImageComponent, typeof i9.BackComponent, typeof i10.SeparatorComponent, typeof i11.LogoComponent, typeof i12.RadioComponent, typeof i13.StateComponent, typeof i14.TagLabelComponent, typeof i15.CalendarComponent, typeof i16.WzEditInPlaceComponent, typeof i17.AlertComponent, typeof i18.HeaderPageComponent, typeof i19.SwitchComponent, typeof i20.LinkComponent, typeof i21.H1Component, typeof i22.H2Component, typeof i23.H3Component, typeof i24.H4Component, typeof i25.TextComponent, typeof i26.TextAreaComponent, typeof i27.UploadComponent, typeof i28.SelectInTextComponent, typeof i29.SelectComponent, typeof i30.MultipleSearchComponent, typeof i31.MultipleSearchPlusComponent, typeof i32.InputWithSelectComponent, typeof i33.PopinComponent, typeof i34.FreePopinComponent, typeof i35.BlockComponent, typeof i36.WrapperComponent, typeof i37.FiltersComponent, typeof i38.WrapperBlocsComponent, typeof i39.SnackbarComponent, typeof i40.SearchComponent, typeof i41.SelectedListComponent, typeof i42.OptionalDisableContainerComponent, typeof i43.SelectTestComponent, typeof i44.OptionComponent, typeof i45.OptionCallToActionComponent, typeof i46.PlaceholderComponent, typeof i47.LabelComponent, typeof i48.SelectSearchTriggerComponent, typeof i49.WrapperSidebarComponent, typeof i50.BreadcrumbsComponent, typeof i51.CardPriceComponent, typeof i52.TokenCheckComponent, typeof i53.BlockWithCheckboxComponent, typeof i54.ConfirmDeleteComponent, typeof i55.MosaicComponent, typeof i56.ContentWithButtonsComponent, typeof i57.WrapperMultipleBlockComponent, typeof i58.DraganddropListComponent, typeof i84.PaginationComponent, typeof i85.TableComponent, typeof i86.TableColumn, typeof i87.CheckBoxRow, typeof i88.TableColumnHeader, typeof i89.TableRow, typeof i90.InputSearchComponent, typeof i91.InputComponent, typeof i92.TooltipComponent, typeof i93.CheckboxComponent, typeof i94.LoaderComponent, typeof i95.ProgressBarComponent, typeof i96.TreeComponent, typeof i97.ExpansionPanelComponent, typeof i98.ExpansionPanelHeaderComponent, typeof i99.AccordionComponent, typeof i100.ExpansionPanelDirective, typeof i101.ExpansionPanelHeaderDirective]>;
|
|
100
106
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedComponentsModule>;
|
|
101
107
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ export * from './lib/components/checkbox/checkbox.component';
|
|
|
42
42
|
export * from './lib/components/loader/loader.component';
|
|
43
43
|
export * from './lib/components/progress-bar/progress-bar.component';
|
|
44
44
|
export * from './lib/components/upload/upload.component';
|
|
45
|
-
export * from './lib/components/selects/select/select.component';
|
|
45
|
+
export * from './lib/components/selects/legacy-select/select.component';
|
|
46
46
|
export * from './lib/components/selects/select-items.dto';
|
|
47
47
|
export * from './lib/components/inputs/input-with-select/input-with-select.component';
|
|
48
48
|
export * from './lib/components/inputs/input-with-select/option-item.dto';
|
|
@@ -103,3 +103,12 @@ export * from './lib/components/common/label/label.component';
|
|
|
103
103
|
export * from './lib/components/selects/option/select-option.directive';
|
|
104
104
|
export * from './lib/components/selects/select-search-trigger/select-search-trigger.component';
|
|
105
105
|
export * from './lib/pipes/select/filter-options.pipe';
|
|
106
|
+
export * from './lib/components/expansion/expansion.module';
|
|
107
|
+
export * from './lib/components/expansion/accordion/accordion.component';
|
|
108
|
+
export * from './lib/components/expansion/accordion/accordion-item.token';
|
|
109
|
+
export * from './lib/components/expansion/expansion-panel-header/expansion-panel-header.component';
|
|
110
|
+
export * from './lib/components/expansion/expansion-panel-header/expansion-panel-header.token';
|
|
111
|
+
export * from './lib/components/expansion/expansion-panel-header/expansion-panel-header.directive';
|
|
112
|
+
export * from './lib/components/expansion/expansion-panel/expansion-panel.component';
|
|
113
|
+
export * from './lib/components/expansion/expansion-panel/expansion-panel.directive';
|
|
114
|
+
export * from './lib/components/expansion/expansion-panel/expansion-panel-base';
|
|
Binary file
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';
|
|
2
|
-
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "@angular/common";
|
|
5
|
-
import * as i2 from "@angular/forms";
|
|
6
|
-
import * as i3 from "../../../directives/auto-hide/auto-hide.directive";
|
|
7
|
-
import * as i4 from "../../../directives/zindex-toggle/zindex-toggle.directive";
|
|
8
|
-
import * as i5 from "../../../directives/keyboard-events/keypress-enter.directive";
|
|
9
|
-
import * as i6 from "ngx-perfect-scrollbar";
|
|
10
|
-
import * as i7 from "@ngx-translate/core";
|
|
11
|
-
import * as i8 from "../../../pipes/select/select-filters.pipe";
|
|
12
|
-
export class SelectComponent {
|
|
13
|
-
constructor() {
|
|
14
|
-
this.search = false;
|
|
15
|
-
this.searchValue = '';
|
|
16
|
-
this.openUp = false;
|
|
17
|
-
this.searchValueChange = new EventEmitter();
|
|
18
|
-
this.type = 'default';
|
|
19
|
-
this.maxWidth = '100%';
|
|
20
|
-
this.disabled = false;
|
|
21
|
-
this.selectValue = new EventEmitter(); // todo rename more explicit
|
|
22
|
-
this.clickOnCallToAction = new EventEmitter();
|
|
23
|
-
this.openCategories = false;
|
|
24
|
-
this.indexItemSelected = -1;
|
|
25
|
-
// ControlValueAccessor methods
|
|
26
|
-
this.onChange = () => { };
|
|
27
|
-
this.onTouch = () => { };
|
|
28
|
-
}
|
|
29
|
-
set items(items) {
|
|
30
|
-
this._items = items;
|
|
31
|
-
this.setIndexItemSelected();
|
|
32
|
-
}
|
|
33
|
-
get items() {
|
|
34
|
-
return this._items;
|
|
35
|
-
}
|
|
36
|
-
set callToAction(callToAction) {
|
|
37
|
-
this._calllToAction = callToAction;
|
|
38
|
-
}
|
|
39
|
-
get callToAction() {
|
|
40
|
-
return this._calllToAction;
|
|
41
|
-
}
|
|
42
|
-
onClose() {
|
|
43
|
-
this.openCategories = false;
|
|
44
|
-
}
|
|
45
|
-
customTB(item, index) {
|
|
46
|
-
return `${item.id}-${index}`;
|
|
47
|
-
}
|
|
48
|
-
onSelectItem(id) {
|
|
49
|
-
this.unselectAll();
|
|
50
|
-
this.setIndexItemSelectedById(id);
|
|
51
|
-
const itemSelected = this.getItemSelected();
|
|
52
|
-
itemSelected.selected = true;
|
|
53
|
-
this.selectValue.emit(this.indexItemSelected);
|
|
54
|
-
this.onChange(itemSelected);
|
|
55
|
-
}
|
|
56
|
-
onClickCallToAction() {
|
|
57
|
-
this.onClose();
|
|
58
|
-
this.clickOnCallToAction.emit(this.callToAction.value);
|
|
59
|
-
}
|
|
60
|
-
onSearcheValueChange() {
|
|
61
|
-
this.searchValueChange.emit(this.searchValue);
|
|
62
|
-
}
|
|
63
|
-
getItemSelected() {
|
|
64
|
-
return this.items[this.indexItemSelected];
|
|
65
|
-
}
|
|
66
|
-
showCategories() {
|
|
67
|
-
this.openCategories = true;
|
|
68
|
-
setTimeout(() => {
|
|
69
|
-
this.searchElement.nativeElement?.focus();
|
|
70
|
-
}, 0);
|
|
71
|
-
}
|
|
72
|
-
unselectAll() {
|
|
73
|
-
this.items.forEach(item => item.selected = false);
|
|
74
|
-
}
|
|
75
|
-
setIndexItemSelectedById(id) {
|
|
76
|
-
this.indexItemSelected = this.items.findIndex(item => item.id === id);
|
|
77
|
-
}
|
|
78
|
-
setIndexItemSelected() {
|
|
79
|
-
this.indexItemSelected = this.items.findIndex(item => item.selected);
|
|
80
|
-
}
|
|
81
|
-
writeValue(selectItem) {
|
|
82
|
-
if (!selectItem) {
|
|
83
|
-
return;
|
|
84
|
-
}
|
|
85
|
-
this.unselectAll();
|
|
86
|
-
selectItem.selected = true;
|
|
87
|
-
this.setIndexItemSelectedById(selectItem.id);
|
|
88
|
-
}
|
|
89
|
-
registerOnChange(fn) {
|
|
90
|
-
this.onChange = fn;
|
|
91
|
-
}
|
|
92
|
-
registerOnTouched(fn) {
|
|
93
|
-
this.onTouch = fn;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
SelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: SelectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
97
|
-
SelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: SelectComponent, selector: "wac-select", inputs: { items: "items", placeholder: "placeholder", label: "label", maxWidthItems: "maxWidthItems", search: "search", searchValue: "searchValue", openUp: "openUp", type: "type", callToAction: "callToAction", maxWidth: "maxWidth", disabled: "disabled" }, outputs: { searchValueChange: "searchValueChange", selectValue: "selectValue", clickOnCallToAction: "clickOnCallToAction" }, providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: SelectComponent, multi: true }], viewQueries: [{ propertyName: "searchElement", first: true, predicate: ["search"], descendants: true }], ngImport: i0, template: "<p *ngIf=\"label\" [innerHTML]=\"label\" class=\"wac-select__label\"></p>\n\n<div class=\"wac-select\" wzAutoHide (clickOutside)=\"onClose()\" [ngStyle]=\"{ 'max-width': maxWidth }\" [ngClass]=\"{'to-top': openUp}\" [zIndexToggle]=\"openCategories\">\n\n <div class=\"wac-select__current\" [ngClass]=\"{ 'select-disabled' : disabled }\" (click)=\"!disabled && openCategories = !openCategories\" *ngIf=\"!search\">\n <span *ngIf=\"indexItemSelected !== -1\" class=\"icon\" [innerHTML]=\"items[indexItemSelected].icon\"></span>\n <span [innerHTML]=\"indexItemSelected !== -1 ? items[indexItemSelected].name : placeholder\"></span><span><i class=\"fas fa-chevron-down\"></i></span>\n </div>\n\n <div class=\"wac-select__current wac-select__current--withSearch\" [ngClass]=\"{ 'select-disabled' : disabled, 'open-search': openCategories }\" *ngIf=\"search\">\n <div class=\"wac-select__current__search\" *ngIf=\"openCategories && !disabled\">\n <i class=\"far fa-search\"></i>\n <input #search type=\"text\" [(ngModel)]=\"searchValue\" (ngModelChange)=\"onSearcheValueChange()\" (keypressEnter)=\"onClickCallToAction()\"/>\n </div>\n <span (click)=\"openCategories = !openCategories;\" *ngIf=\"items[indexItemSelected]?.icon && !openCategories\" class=\"icon\" [innerHTML]=\"items[indexItemSelected].icon\"></span>\n <span (click)=\"showCategories()\" [innerHTML]=\"items[indexItemSelected]?.name ? items[indexItemSelected].name : placeholder\"></span>\n <span (click)=\"openCategories = !openCategories;\"><i class=\"fas fa-chevron-down\"></i></span>\n </div>\n\n <div class=\"wac-select__content\" *ngIf=\"!disabled\" [ngClass]=\"{ hidden: !openCategories, open: type === 'open' }\" [ngStyle]=\"{ 'max-width': maxWidthItems }\">\n <perfect-scrollbar [config]=\"{ suppressScrollX: true }\" *ngIf=\"items.length\">\n\n <div *ngIf=\"callToAction\" class=\"wac-select__content__cta\">\n <div (click)=\"onClickCallToAction()\">\n <i *ngIf=\"callToAction.icon\" [classList]=\"callToAction.icon\"></i><strong *ngIf=\"callToAction.boldText\">{{ callToAction.boldText }}</strong\n ><span>{{ callToAction?.name }}</span>\n </div>\n </div>\n\n <div\n *ngFor=\"let item of items | selectFilters: searchValue; let index = index;\"\n (click)=\"onClose()\"\n class=\"wac-select__content__item\"\n >\n <div [ngClass]=\"{ selected: item.selected }\" (click)=\"onSelectItem(item.id)\">\n <span class=\"icon\" [innerHTML]=\"item.icon\" *ngIf=\"item.icon\"></span>{{ item.name }}\n </div>\n </div>\n\n </perfect-scrollbar>\n\n <div *ngIf=\"!(items | selectFilters: searchValue)?.length\" class=\"wac-select__content__empty\">\n <span>{{'wac.datatable.noresult' | translate}}</span>\n </div>\n\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.AutoHideDirective, selector: "[wzAutoHide]", inputs: ["triggerElement", "forceOn"], outputs: ["clickOutside"] }, { kind: "directive", type: i4.ZindexToggleDirective, selector: "[zIndexToggle]", inputs: ["zIndexToggle"], outputs: ["onEventChange"] }, { kind: "directive", type: i5.KeypressEnterDirective, selector: "[keypressEnter]", outputs: ["keypressEnter"] }, { kind: "component", type: i6.PerfectScrollbarComponent, selector: "perfect-scrollbar", inputs: ["disabled", "usePSClass", "autoPropagation", "scrollIndicators", "config"], outputs: ["psScrollY", "psScrollX", "psScrollUp", "psScrollDown", "psScrollLeft", "psScrollRight", "psYReachEnd", "psYReachStart", "psXReachEnd", "psXReachStart"], exportAs: ["ngxPerfectScrollbar"] }, { kind: "pipe", type: i7.TranslatePipe, name: "translate" }, { kind: "pipe", type: i8.SelectFiltersPipe, name: "selectFilters" }] });
|
|
98
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: SelectComponent, decorators: [{
|
|
99
|
-
type: Component,
|
|
100
|
-
args: [{ selector: 'wac-select', providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: SelectComponent, multi: true }], template: "<p *ngIf=\"label\" [innerHTML]=\"label\" class=\"wac-select__label\"></p>\n\n<div class=\"wac-select\" wzAutoHide (clickOutside)=\"onClose()\" [ngStyle]=\"{ 'max-width': maxWidth }\" [ngClass]=\"{'to-top': openUp}\" [zIndexToggle]=\"openCategories\">\n\n <div class=\"wac-select__current\" [ngClass]=\"{ 'select-disabled' : disabled }\" (click)=\"!disabled && openCategories = !openCategories\" *ngIf=\"!search\">\n <span *ngIf=\"indexItemSelected !== -1\" class=\"icon\" [innerHTML]=\"items[indexItemSelected].icon\"></span>\n <span [innerHTML]=\"indexItemSelected !== -1 ? items[indexItemSelected].name : placeholder\"></span><span><i class=\"fas fa-chevron-down\"></i></span>\n </div>\n\n <div class=\"wac-select__current wac-select__current--withSearch\" [ngClass]=\"{ 'select-disabled' : disabled, 'open-search': openCategories }\" *ngIf=\"search\">\n <div class=\"wac-select__current__search\" *ngIf=\"openCategories && !disabled\">\n <i class=\"far fa-search\"></i>\n <input #search type=\"text\" [(ngModel)]=\"searchValue\" (ngModelChange)=\"onSearcheValueChange()\" (keypressEnter)=\"onClickCallToAction()\"/>\n </div>\n <span (click)=\"openCategories = !openCategories;\" *ngIf=\"items[indexItemSelected]?.icon && !openCategories\" class=\"icon\" [innerHTML]=\"items[indexItemSelected].icon\"></span>\n <span (click)=\"showCategories()\" [innerHTML]=\"items[indexItemSelected]?.name ? items[indexItemSelected].name : placeholder\"></span>\n <span (click)=\"openCategories = !openCategories;\"><i class=\"fas fa-chevron-down\"></i></span>\n </div>\n\n <div class=\"wac-select__content\" *ngIf=\"!disabled\" [ngClass]=\"{ hidden: !openCategories, open: type === 'open' }\" [ngStyle]=\"{ 'max-width': maxWidthItems }\">\n <perfect-scrollbar [config]=\"{ suppressScrollX: true }\" *ngIf=\"items.length\">\n\n <div *ngIf=\"callToAction\" class=\"wac-select__content__cta\">\n <div (click)=\"onClickCallToAction()\">\n <i *ngIf=\"callToAction.icon\" [classList]=\"callToAction.icon\"></i><strong *ngIf=\"callToAction.boldText\">{{ callToAction.boldText }}</strong\n ><span>{{ callToAction?.name }}</span>\n </div>\n </div>\n\n <div\n *ngFor=\"let item of items | selectFilters: searchValue; let index = index;\"\n (click)=\"onClose()\"\n class=\"wac-select__content__item\"\n >\n <div [ngClass]=\"{ selected: item.selected }\" (click)=\"onSelectItem(item.id)\">\n <span class=\"icon\" [innerHTML]=\"item.icon\" *ngIf=\"item.icon\"></span>{{ item.name }}\n </div>\n </div>\n\n </perfect-scrollbar>\n\n <div *ngIf=\"!(items | selectFilters: searchValue)?.length\" class=\"wac-select__content__empty\">\n <span>{{'wac.datatable.noresult' | translate}}</span>\n </div>\n\n </div>\n</div>\n" }]
|
|
101
|
-
}], ctorParameters: function () { return []; }, propDecorators: { items: [{
|
|
102
|
-
type: Input
|
|
103
|
-
}], placeholder: [{
|
|
104
|
-
type: Input
|
|
105
|
-
}], label: [{
|
|
106
|
-
type: Input
|
|
107
|
-
}], maxWidthItems: [{
|
|
108
|
-
type: Input
|
|
109
|
-
}], search: [{
|
|
110
|
-
type: Input
|
|
111
|
-
}], searchValue: [{
|
|
112
|
-
type: Input
|
|
113
|
-
}], openUp: [{
|
|
114
|
-
type: Input
|
|
115
|
-
}], searchValueChange: [{
|
|
116
|
-
type: Output
|
|
117
|
-
}], type: [{
|
|
118
|
-
type: Input
|
|
119
|
-
}], callToAction: [{
|
|
120
|
-
type: Input
|
|
121
|
-
}], maxWidth: [{
|
|
122
|
-
type: Input
|
|
123
|
-
}], disabled: [{
|
|
124
|
-
type: Input
|
|
125
|
-
}], selectValue: [{
|
|
126
|
-
type: Output
|
|
127
|
-
}], clickOnCallToAction: [{
|
|
128
|
-
type: Output
|
|
129
|
-
}], searchElement: [{
|
|
130
|
-
type: ViewChild,
|
|
131
|
-
args: ['search']
|
|
132
|
-
}] } });
|
|
133
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvc2VsZWN0cy9zZWxlY3Qvc2VsZWN0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvc2VsZWN0cy9zZWxlY3Qvc2VsZWN0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQWMsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsU0FBUyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBR3BHLE9BQU8sRUFBd0IsaUJBQWlCLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7Ozs7OztBQU96RSxNQUFNLE9BQU8sZUFBZTtJQTREMUI7UUFwQ0EsV0FBTSxHQUFHLEtBQUssQ0FBQztRQUdmLGdCQUFXLEdBQVcsRUFBRSxDQUFDO1FBRWhCLFdBQU0sR0FBRyxLQUFLLENBQUM7UUFFZCxzQkFBaUIsR0FBRyxJQUFJLFlBQVksRUFBVSxDQUFDO1FBR3pELFNBQUksR0FBRyxTQUFTLENBQUM7UUFXUixhQUFRLEdBQUcsTUFBTSxDQUFDO1FBRzNCLGFBQVEsR0FBRyxLQUFLLENBQUM7UUFFUCxnQkFBVyxHQUFHLElBQUksWUFBWSxFQUFVLENBQUMsQ0FBQyw0QkFBNEI7UUFFdEUsd0JBQW1CLEdBQUcsSUFBSSxZQUFZLEVBQU8sQ0FBQztRQUl4RCxtQkFBYyxHQUFHLEtBQUssQ0FBQztRQUV2QixzQkFBaUIsR0FBVyxDQUFDLENBQUMsQ0FBQztRQXFEL0IsK0JBQStCO1FBRS9CLGFBQVEsR0FBcUMsR0FBRyxFQUFFLEdBQUUsQ0FBQyxDQUFDO1FBQ3RELFlBQU8sR0FBUSxHQUFHLEVBQUUsR0FBRSxD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RUFBTztRQUN0QixJQUFJLENBQUMsUUFBUSxHQUFHLEVBQUUsQ0FBQztJQUNyQixDQUFDO0lBQ0QsaUJBQWlCLENBQUMsRUFBTztRQUN2QixJQUFJLENBQUMsT0FBTyxHQUFHLEVBQUUsQ0FBQztJQUNwQixDQUFDOzs0R0FsSVUsZUFBZTtnR0FBZixlQUFlLGthQUZmLENBQUMsRUFBRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsV0FBVyxFQUFFLGVBQWUsRUFBRSxLQUFLLEVBQUUsSUFBSSxFQUFFLENBQUMsbUlDUnhGLHN5RkErQ0E7MkZEckNhLGVBQWU7a0JBTDNCLFNBQVM7K0JBQ0UsWUFBWSxhQUVYLENBQUMsRUFBRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsV0FBVyxpQkFBaUIsRUFBRSxLQUFLLEVBQUUsSUFBSSxFQUFFLENBQUM7MEVBT3pFLEtBQUs7c0JBQWpCLEtBQUs7Z0JBVU4sV0FBVztzQkFEVixLQUFLO2dCQUlOLEtBQUs7c0JBREosS0FBSztnQkFJTixhQUFhO3NCQURaLEtBQUs7Z0JBSU4sTUFBTTtzQkFETCxLQUFLO2dCQUlOLFdBQVc7c0JBRFYsS0FBSztnQkFHRyxNQUFNO3NCQUFkLEtBQUs7Z0JBRUksaUJBQWlCO3NCQUExQixNQUFNO2dCQUdQLElBQUk7c0JBREgsS0FBSztnQkFJTyxZQUFZO3NCQUF4QixLQUFLO2dCQVFHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBR04sUUFBUTtzQkFEUCxLQUFLO2dCQUdJLFdBQVc7c0JBQXBCLE1BQU07Z0JBRUcsbUJBQW1CO3NCQUE1QixNQUFNO2dCQUVjLGFBQWE7c0JBQWpDLFNBQVM7dUJBQUMsUUFBUSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50LCBFbGVtZW50UmVmLCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkluaXQsIE91dHB1dCwgVmlld0NoaWxkfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENhbGxsVG9BY3Rpb24gfSBmcm9tICcuLi9jYWxsLXRvLWFjdGlvbi5tb2RlbCc7XG5pbXBvcnQgeyBTZWxlY3RJdGVtIH0gZnJvbSAnLi4vc2VsZWN0LWl0ZW1zLmR0byc7XG5pbXBvcnQgeyBDb250cm9sVmFsdWVBY2Nlc3NvciwgTkdfVkFMVUVfQUNDRVNTT1IgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3dhYy1zZWxlY3QnLFxuICB0ZW1wbGF0ZVVybDogJy4vc2VsZWN0LmNvbXBvbmVudC5odG1sJyxcbiAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBOR19WQUxVRV9BQ0NFU1NPUiwgdXNlRXhpc3Rpbmc6IFNlbGVjdENvbXBvbmVudCwgbXVsdGk6IHRydWUgfV1cbn0pXG5leHBvcnQgY2xhc3MgU2VsZWN0Q29tcG9uZW50IGltcGxlbWVudHMgQ29udHJvbFZhbHVlQWNjZXNzb3Ige1xuICAvLyEgUmVmYWN0byBpbXByb3ZlIHNyb2xsIG9uIG1vYmlsZSwgc2VlIHdpdGggUGF1bGluZVxuICAvLyB0b2RvIGNvdWxkIGJlIHNpbXBsaWZ5LiBDaGVjayBmaWx0ZXJzIG1hbmFnZXIgaW1wbGVtZW50YXRpb24gZm9yIHVzZSBjYXNlXG5cbiAgX2l0ZW1zOiBTZWxlY3RJdGVtW107XG4gIEBJbnB1dCgpIHNldCBpdGVtcyhpdGVtczogU2VsZWN0SXRlbVtdKSB7XG4gICAgdGhpcy5faXRlbXMgPSBpdGVtcztcbiAgICB0aGlzLnNldEluZGV4SXRlbVNlbGVjdGVkKCk7XG4gIH1cblxuICBnZXQgaXRlbXMoKSA6IFNlbGVjdEl0ZW1bXSB7XG4gICAgcmV0dXJuIHRoaXMuX2l0ZW1zO1xuICB9XG5cbiAgQElucHV0KClcbiAgcGxhY2Vob2xkZXI6IHN0cmluZztcblxuICBASW5wdXQoKVxuICBsYWJlbDogc3RyaW5nO1xuXG4gIEBJbnB1dCgpXG4gIG1heFdpZHRoSXRlbXM6IHN0cmluZzsgLy8gdG9kbyBpbXByb3ZyZSB0eXBlIGxpa2UgOiBleHBvcnQgdHlwZSBDc3NVbml0cyA9ICdlbSd8ICdyZW0nIHwgJ3B4JzsgZXhwb3J0IHR5cGUgQ3NzVW5pdCA9IGAke251bWJlcn0ke0Nzc1VuaXRzfWA7XG5cbiAgQElucHV0KClcbiAgc2VhcmNoID0gZmFsc2U7XG5cbiAgQElucHV0KClcbiAgc2VhcmNoVmFsdWU6IHN0cmluZyA9ICcnO1xuXG4gIEBJbnB1dCgpIG9wZW5VcCA9IGZhbHNlO1xuXG4gIEBPdXRwdXQoKSBzZWFyY2hWYWx1ZUNoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8c3RyaW5nPigpO1xuXG4gIEBJbnB1dCgpXG4gIHR5cGUgPSAnZGVmYXVsdCc7XG5cbiAgX2NhbGxsVG9BY3Rpb246IENhbGxsVG9BY3Rpb247IC8vIHRvZG8gbWF5YmUgcmVwbGFjZSBieSBuZy1jb250ZW50IG9yIGFsbG93IHRlbXBsYXRlIG9yIGNoaWxkIGNvbXBvbmVudCBsaWtlIDx3YWMtb3B0aW9uLWNhbGwtdG8tYWN0aW9uPi4uLlxuICBASW5wdXQoKSBzZXQgY2FsbFRvQWN0aW9uKGNhbGxUb0FjdGlvbjogQ2FsbGxUb0FjdGlvbikge1xuICAgIHRoaXMuX2NhbGxsVG9BY3Rpb24gPSBjYWxsVG9BY3Rpb247XG4gIH1cblxuICBnZXQgY2FsbFRvQWN0aW9uKCk6IENhbGxsVG9BY3Rpb24ge1xuICAgIHJldHVybiB0aGlzLl9jYWxsbFRvQWN0aW9uO1xuICB9XG5cbiAgQElucHV0KCkgbWF4V2lkdGggPSAnMTAwJSc7XG5cbiAgQElucHV0KClcbiAgZGlzYWJsZWQgPSBmYWxzZTtcblxuICBAT3V0cHV0KCkgc2VsZWN0VmFsdWUgPSBuZXcgRXZlbnRFbWl0dGVyPG51bWJlcj4oKTsgLy8gdG9kbyByZW5hbWUgbW9yZSBleHBsaWNpdFxuXG4gIEBPdXRwdXQoKSBjbGlja09uQ2FsbFRvQWN0aW9uID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XG5cbiAgQFZpZXdDaGlsZCgnc2VhcmNoJykgc2VhcmNoRWxlbWVudDogRWxlbWVudFJlZjtcblxuICBvcGVuQ2F0ZWdvcmllcyA9IGZhbHNlO1xuXG4gIGluZGV4SXRlbVNlbGVjdGVkOiBudW1iZXIgPSAtMTtcblxuICBjb25zdHJ1Y3RvcigpIHt9XG5cbiAgb25DbG9zZSgpIHtcbiAgICB0aGlzLm9wZW5DYXRlZ29yaWVzID0gZmFsc2U7XG4gIH1cblxuICBjdXN0b21UQihpdGVtOiBTZWxlY3RJdGVtLCBpbmRleDogbnVtYmVyKSB7XG4gICAgcmV0dXJuIGAke2l0ZW0uaWR9LSR7aW5kZXh9YDtcbiAgfVxuXG4gIG9uU2VsZWN0SXRlbShpZDogbnVtYmVyKSB7XG4gICAgdGhpcy51bnNlbGVjdEFsbCgpO1xuICAgIHRoaXMuc2V0SW5kZXhJdGVtU2VsZWN0ZWRCeUlkKGlkKTtcbiAgICBjb25zdCBpdGVtU2VsZWN0ZWQ6IFNlbGVjdEl0ZW0gPSB0aGlzLmdldEl0ZW1TZWxlY3RlZCgpO1xuICAgIGl0ZW1TZWxlY3RlZC5zZWxlY3RlZCA9IHRydWU7XG4gICAgdGhpcy5zZWxlY3RWYWx1ZS5lbWl0KHRoaXMuaW5kZXhJdGVtU2VsZWN0ZWQpO1xuICAgIHRoaXMub25DaGFuZ2UoaXRlbVNlbGVjdGVkKTtcbiAgfVxuXG4gIG9uQ2xpY2tDYWxsVG9BY3Rpb24oKSB7XG4gICAgdGhpcy5vbkNsb3NlKCk7XG4gICAgdGhpcy5jbGlja09uQ2FsbFRvQWN0aW9uLmVtaXQodGhpcy5jYWxsVG9BY3Rpb24udmFsdWUpO1xuICB9XG5cbiAgb25TZWFyY2hlVmFsdWVDaGFuZ2UoKSB7XG4gICAgdGhpcy5zZWFyY2hWYWx1ZUNoYW5nZS5lbWl0KHRoaXMuc2VhcmNoVmFsdWUpO1xuICB9XG5cbiAgcHJpdmF0ZSBnZXRJdGVtU2VsZWN0ZWQoKTogU2VsZWN0SXRlbSB7XG4gICAgcmV0dXJuIHRoaXMuaXRlbXNbdGhpcy5pbmRleEl0ZW1TZWxlY3RlZF07XG4gIH1cblxuICBzaG93Q2F0ZWdvcmllcygpIHtcbiAgICB0aGlzLm9wZW5DYXRlZ29yaWVzID0gdHJ1ZTtcbiAgICBzZXRUaW1lb3V0KCgpID0+IHsgLy8gdGhpcyB3aWxsIG1ha2UgdGhlIGV4ZWN1dGlvbiBhZnRlciB0aGUgYWJvdmUgYm9vbGVhbiBoYXMgY2hhbmdlZFxuICAgICAgdGhpcy5zZWFyY2hFbGVtZW50Lm5hdGl2ZUVsZW1lbnQ/LmZvY3VzKCk7XG4gICAgfSwgMCk7XG4gIH1cblxuICBwcml2YXRlIHVuc2VsZWN0QWxsKCkge1xuICAgIHRoaXMuaXRlbXMuZm9yRWFjaChpdGVtID0+IGl0ZW0uc2VsZWN0ZWQgPSBmYWxzZSk7XG4gIH1cblxuICBwcml2YXRlIHNldEluZGV4SXRlbVNlbGVjdGVkQnlJZChpZDogbnVtYmVyKSB7XG4gICAgdGhpcy5pbmRleEl0ZW1TZWxlY3RlZCA9IHRoaXMuaXRlbXMuZmluZEluZGV4KGl0ZW0gPT4gaXRlbS5pZCA9PT0gaWQpO1xuICB9XG5cbiAgcHJpdmF0ZSBzZXRJbmRleEl0ZW1TZWxlY3RlZCgpIHtcbiAgICB0aGlzLmluZGV4SXRlbVNlbGVjdGVkID0gdGhpcy5pdGVtcy5maW5kSW5kZXgoaXRlbSA9PiBpdGVtLnNlbGVjdGVkKTtcbiAgfVxuXG4gIC8vIENvbnRyb2xWYWx1ZUFjY2Vzc29yIG1ldGhvZHNcblxuICBvbkNoYW5nZTogKHNlbGVjdEl0ZW06IFNlbGVjdEl0ZW0pID0+IHZvaWQgPSAoKSA9PiB7fTtcbiAgb25Ub3VjaDogYW55ID0gKCkgPT4ge31cblxuICB3cml0ZVZhbHVlKHNlbGVjdEl0ZW06IGFueSl7XG4gICAgaWYgKCFzZWxlY3RJdGVtKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuICAgIHRoaXMudW5zZWxlY3RBbGwoKTtcbiAgICBzZWxlY3RJdGVtLnNlbGVjdGVkID0gdHJ1ZTtcbiAgICB0aGlzLnNldEluZGV4SXRlbVNlbGVjdGVkQnlJZChzZWxlY3RJdGVtLmlkKTtcbiAgfVxuXG4gIHJlZ2lzdGVyT25DaGFuZ2UoZm46IGFueSl7XG4gICAgdGhpcy5vbkNoYW5nZSA9IGZuO1xuICB9XG4gIHJlZ2lzdGVyT25Ub3VjaGVkKGZuOiBhbnkpe1xuICAgIHRoaXMub25Ub3VjaCA9IGZuO1xuICB9XG59XG4iLCI8cCAqbmdJZj1cImxhYmVsXCIgW2lubmVySFRNTF09XCJsYWJlbFwiIGNsYXNzPVwid2FjLXNlbGVjdF9fbGFiZWxcIj48L3A+XG5cbjxkaXYgY2xhc3M9XCJ3YWMtc2VsZWN0XCIgd3pBdXRvSGlkZSAoY2xpY2tPdXRzaWRlKT1cIm9uQ2xvc2UoKVwiIFtuZ1N0eWxlXT1cInsgJ21heC13aWR0aCc6IG1heFdpZHRoIH1cIiBbbmdDbGFzc109XCJ7J3RvLXRvcCc6IG9wZW5VcH1cIiBbekluZGV4VG9nZ2xlXT1cIm9wZW5DYXRlZ29yaWVzXCI+XG5cbiAgPGRpdiBjbGFzcz1cIndhYy1zZWxlY3RfX2N1cnJlbnRcIiBbbmdDbGFzc109XCJ7ICdzZWxlY3QtZGlzYWJsZWQnIDogZGlzYWJsZWQgfVwiIChjbGljayk9XCIhZGlzYWJsZWQgJiYgb3BlbkNhdGVnb3JpZXMgPSAhb3BlbkNhdGVnb3JpZXNcIiAqbmdJZj1cIiFzZWFyY2hcIj5cbiAgICA8c3BhbiAqbmdJZj1cImluZGV4SXRlbVNlbGVjdGVkICE9PSAtMVwiIGNsYXNzPVwiaWNvblwiIFtpbm5lckhUTUxdPVwiaXRlbXNbaW5kZXhJdGVtU2VsZWN0ZWRdLmljb25cIj48L3NwYW4+XG4gICAgPHNwYW4gW2lubmVySFRNTF09XCJpbmRleEl0ZW1TZWxlY3RlZCAhPT0gLTEgPyBpdGVtc1tpbmRleEl0ZW1TZWxlY3RlZF0ubmFtZSA6IHBsYWNlaG9sZGVyXCI+PC9zcGFuPjxzcGFuPjxpIGNsYXNzPVwiZmFzIGZhLWNoZXZyb24tZG93blwiPjwvaT48L3NwYW4+XG4gIDwvZGl2PlxuXG4gIDxkaXYgY2xhc3M9XCJ3YWMtc2VsZWN0X19jdXJyZW50IHdhYy1zZWxlY3RfX2N1cnJlbnQtLXdpdGhTZWFyY2hcIiBbbmdDbGFzc109XCJ7ICdzZWxlY3QtZGlzYWJsZWQnIDogZGlzYWJsZWQsICdvcGVuLXNlYXJjaCc6IG9wZW5DYXRlZ29yaWVzIH1cIiAqbmdJZj1cInNlYXJjaFwiPlxuICAgIDxkaXYgY2xhc3M9XCJ3YWMtc2VsZWN0X19jdXJyZW50X19zZWFyY2hcIiAqbmdJZj1cIm9wZW5DYXRlZ29yaWVzICYmICFkaXNhYmxlZFwiPlxuICAgICAgPGkgY2xhc3M9XCJmYXIgZmEtc2VhcmNoXCI+PC9pPlxuICAgICAgPGlucHV0ICNzZWFyY2ggdHlwZT1cInRleHRcIiBbKG5nTW9kZWwpXT1cInNlYXJjaFZhbHVlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25TZWFyY2hlVmFsdWVDaGFuZ2UoKVwiIChrZXlwcmVzc0VudGVyKT1cIm9uQ2xpY2tDYWxsVG9BY3Rpb24oKVwiLz5cbiAgICA8L2Rpdj5cbiAgICA8c3BhbiAoY2xpY2spPVwib3BlbkNhdGVnb3JpZXMgPSAhb3BlbkNhdGVnb3JpZXM7XCIgKm5nSWY9XCJpdGVtc1tpbmRleEl0ZW1TZWxlY3RlZF0/Lmljb24gJiYgIW9wZW5DYXRlZ29yaWVzXCIgY2xhc3M9XCJpY29uXCIgW2lubmVySFRNTF09XCJpdGVtc1tpbmRleEl0ZW1TZWxlY3RlZF0uaWNvblwiPjwvc3Bhbj5cbiAgICA8c3BhbiAoY2xpY2spPVwic2hvd0NhdGVnb3JpZXMoKVwiIFtpbm5lckhUTUxdPVwiaXRlbXNbaW5kZXhJdGVtU2VsZWN0ZWRdPy5uYW1lID8gaXRlbXNbaW5kZXhJdGVtU2VsZWN0ZWRdLm5hbWUgOiBwbGFjZWhvbGRlclwiPjwvc3Bhbj5cbiAgICA8c3BhbiAoY2xpY2spPVwib3BlbkNhdGVnb3JpZXMgPSAhb3BlbkNhdGVnb3JpZXM7XCI+PGkgY2xhc3M9XCJmYXMgZmEtY2hldnJvbi1kb3duXCI+PC9pPjwvc3Bhbj5cbiAgPC9kaXY+XG5cbiAgPGRpdiBjbGFzcz1cIndhYy1zZWxlY3RfX2NvbnRlbnRcIiAqbmdJZj1cIiFkaXNhYmxlZFwiIFtuZ0NsYXNzXT1cInsgaGlkZGVuOiAhb3BlbkNhdGVnb3JpZXMsIG9wZW46IHR5cGUgPT09ICdvcGVuJyB9XCIgW25nU3R5bGVdPVwieyAnbWF4LXdpZHRoJzogbWF4V2lkdGhJdGVtcyB9XCI+XG4gICAgPHBlcmZlY3Qtc2Nyb2xsYmFyIFtjb25maWddPVwieyBzdXBwcmVzc1Njcm9sbFg6IHRydWUgfVwiICpuZ0lmPVwiaXRlbXMubGVuZ3RoXCI+XG5cbiAgICAgIDxkaXYgKm5nSWY9XCJjYWxsVG9BY3Rpb25cIiBjbGFzcz1cIndhYy1zZWxlY3RfX2NvbnRlbnRfX2N0YVwiPlxuICAgICAgICA8ZGl2IChjbGljayk9XCJvbkNsaWNrQ2FsbFRvQWN0aW9uKClcIj5cbiAgICAgICAgICA8aSAqbmdJZj1cImNhbGxUb0FjdGlvbi5pY29uXCIgW2NsYXNzTGlzdF09XCJjYWxsVG9BY3Rpb24uaWNvblwiPjwvaT48c3Ryb25nICpuZ0lmPVwiY2FsbFRvQWN0aW9uLmJvbGRUZXh0XCI+e3sgY2FsbFRvQWN0aW9uLmJvbGRUZXh0IH19PC9zdHJvbmdcbiAgICAgICAgICA+PHNwYW4+e3sgY2FsbFRvQWN0aW9uPy5uYW1lIH19PC9zcGFuPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvZGl2PlxuXG4gICAgICA8ZGl2XG4gICAgICAgICpuZ0Zvcj1cImxldCBpdGVtIG9mIGl0ZW1zIHwgc2VsZWN0RmlsdGVyczogc2VhcmNoVmFsdWU7IGxldCBpbmRleCA9IGluZGV4O1wiXG4gICAgICAgIChjbGljayk9XCJvbkNsb3NlKClcIlxuICAgICAgICBjbGFzcz1cIndhYy1zZWxlY3RfX2NvbnRlbnRfX2l0ZW1cIlxuICAgICAgICA+XG4gICAgICAgICAgPGRpdiBbbmdDbGFzc109XCJ7IHNlbGVjdGVkOiBpdGVtLnNlbGVjdGVkIH1cIiAoY2xpY2spPVwib25TZWxlY3RJdGVtKGl0ZW0uaWQpXCI+XG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cImljb25cIiBbaW5uZXJIVE1MXT1cIml0ZW0uaWNvblwiICpuZ0lmPVwiaXRlbS5pY29uXCI+PC9zcGFuPnt7IGl0ZW0ubmFtZSB9fVxuICAgICAgICAgIDwvZGl2PlxuICAgICAgPC9kaXY+XG5cbiAgICA8L3BlcmZlY3Qtc2Nyb2xsYmFyPlxuXG4gICAgPGRpdiAqbmdJZj1cIiEoaXRlbXMgfCBzZWxlY3RGaWx0ZXJzOiBzZWFyY2hWYWx1ZSk/Lmxlbmd0aFwiIGNsYXNzPVwid2FjLXNlbGVjdF9fY29udGVudF9fZW1wdHlcIj5cbiAgICAgIDxzcGFuPnt7J3dhYy5kYXRhdGFibGUubm9yZXN1bHQnIHwgdHJhbnNsYXRlfX08L3NwYW4+XG4gICAgPC9kaXY+XG5cbiAgPC9kaXY+XG48L2Rpdj5cbiJdfQ==
|
|
Binary file
|