cps-ui-kit 0.110.0 → 0.112.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/esm2020/lib/components/cps-button-toggle/cps-button-toggle.component.mjs +28 -23
- package/esm2020/lib/components/cps-table/cps-column-filter-types.mjs +25 -0
- package/esm2020/lib/components/cps-table/directives/cps-table-column-filter.directive.mjs +18 -3
- package/esm2020/lib/components/cps-table/table-column-filter/table-column-filter-constraint/table-column-filter-constraint.component.mjs +27 -8
- package/esm2020/lib/components/cps-table/table-column-filter/table-column-filter.component.mjs +42 -26
- package/esm2020/lib/components/cps-tree-table/directives/cps-tree-table-column-filter.directive.mjs +18 -3
- package/esm2020/public-api.mjs +2 -2
- package/fesm2015/cps-ui-kit.mjs +154 -76
- package/fesm2015/cps-ui-kit.mjs.map +1 -1
- package/fesm2020/cps-ui-kit.mjs +148 -78
- package/fesm2020/cps-ui-kit.mjs.map +1 -1
- package/lib/components/cps-button-toggle/cps-button-toggle.component.d.ts +5 -6
- package/lib/components/cps-table/{cps-filter-match-mode.d.ts → cps-column-filter-types.d.ts} +9 -1
- package/lib/components/cps-table/directives/cps-table-column-filter.directive.d.ts +9 -6
- package/lib/components/cps-table/table-column-filter/table-column-filter-constraint/table-column-filter-constraint.component.d.ts +12 -9
- package/lib/components/cps-table/table-column-filter/table-column-filter.component.d.ts +11 -6
- package/lib/components/cps-tree-table/directives/cps-tree-table-column-filter.directive.d.ts +9 -6
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
- package/styles/cps-tooltip-style.scss +1 -1
- package/esm2020/lib/components/cps-table/cps-filter-match-mode.mjs +0 -25
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter, OnInit, Renderer2 } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
3
|
import { TooltipPosition } from '../../directives/cps-tooltip.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export type
|
|
5
|
+
export type CpsButtonToggleOption = {
|
|
6
6
|
value: any;
|
|
7
7
|
label?: string;
|
|
8
8
|
icon?: string;
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
tooltip?: string;
|
|
11
11
|
};
|
|
12
|
-
export declare class CpsButtonToggleComponent implements ControlValueAccessor, OnInit
|
|
12
|
+
export declare class CpsButtonToggleComponent implements ControlValueAccessor, OnInit {
|
|
13
13
|
private _control;
|
|
14
14
|
private renderer;
|
|
15
15
|
label: string;
|
|
16
|
-
options:
|
|
16
|
+
options: CpsButtonToggleOption[];
|
|
17
17
|
multiple: boolean;
|
|
18
18
|
disabled: boolean;
|
|
19
19
|
mandatory: boolean;
|
|
@@ -28,10 +28,9 @@ export declare class CpsButtonToggleComponent implements ControlValueAccessor, O
|
|
|
28
28
|
set value(value: any);
|
|
29
29
|
get value(): any;
|
|
30
30
|
valueChanged: EventEmitter<any>;
|
|
31
|
-
|
|
31
|
+
largestButtonWidth: number;
|
|
32
32
|
constructor(_control: NgControl, renderer: Renderer2);
|
|
33
33
|
ngOnInit(): void;
|
|
34
|
-
ngAfterViewInit(): void;
|
|
35
34
|
onChange: (event: any) => void;
|
|
36
35
|
onTouched: () => void;
|
|
37
36
|
registerOnChange(fn: any): void;
|
package/lib/components/cps-table/{cps-filter-match-mode.d.ts → cps-column-filter-types.d.ts}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare enum
|
|
1
|
+
export declare enum CpsColumnFilterMatchMode {
|
|
2
2
|
STARTS_WITH = "startsWith",
|
|
3
3
|
CONTAINS = "contains",
|
|
4
4
|
NOT_CONTAINS = "notContains",
|
|
@@ -20,3 +20,11 @@ export declare enum CpsFilterMatchMode {
|
|
|
20
20
|
DATE_BEFORE = "dateBefore",
|
|
21
21
|
DATE_AFTER = "dateAfter"
|
|
22
22
|
}
|
|
23
|
+
export type CpsColumnFilterCategoryOption = {
|
|
24
|
+
value: any;
|
|
25
|
+
label?: string;
|
|
26
|
+
icon?: string;
|
|
27
|
+
disabled?: boolean;
|
|
28
|
+
tooltip?: string;
|
|
29
|
+
};
|
|
30
|
+
export type CpsColumnFilterType = 'text' | 'number' | 'date' | 'boolean' | 'category';
|
|
@@ -1,30 +1,33 @@
|
|
|
1
1
|
import { ComponentRef, ElementRef, OnDestroy, OnInit, OnChanges, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { TableColumnFilterComponent } from '../table-column-filter/table-column-filter.component';
|
|
3
|
-
import {
|
|
3
|
+
import { CpsColumnFilterCategoryOption, CpsColumnFilterMatchMode, CpsColumnFilterType } from '../cps-column-filter-types';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export type CpsTableColumnFilterType = 'text' | 'number' | 'date' | 'boolean' | 'category';
|
|
6
5
|
export declare class CpsTableColumnFilterDirective implements OnInit, OnChanges, OnDestroy {
|
|
7
6
|
private elementRef;
|
|
8
7
|
private viewContainerRef;
|
|
9
8
|
field: string | undefined;
|
|
10
|
-
filterType:
|
|
9
|
+
filterType: CpsColumnFilterType;
|
|
11
10
|
filterPersistent: boolean;
|
|
12
11
|
filterShowClearButton: boolean;
|
|
13
12
|
filterShowApplyButton: boolean;
|
|
14
13
|
filterShowCloseButton: boolean;
|
|
15
14
|
filterShowMatchModes: boolean;
|
|
16
|
-
filterMatchModes:
|
|
15
|
+
filterMatchModes: CpsColumnFilterMatchMode[];
|
|
17
16
|
filterShowOperator: boolean;
|
|
18
17
|
filterMaxConstraints: number;
|
|
19
18
|
filterHideOnClear: boolean;
|
|
20
|
-
filterCategoryOptions: string[];
|
|
19
|
+
filterCategoryOptions: CpsColumnFilterCategoryOption[] | string[];
|
|
20
|
+
filterAsButtonToggle: boolean;
|
|
21
|
+
filterSingleSelection: boolean;
|
|
21
22
|
filterPlaceholder: string;
|
|
22
23
|
filterCompRef: ComponentRef<TableColumnFilterComponent>;
|
|
23
24
|
constructor(elementRef: ElementRef, viewContainerRef: ViewContainerRef);
|
|
24
25
|
ngOnInit(): void;
|
|
25
26
|
ngOnChanges(): void;
|
|
26
27
|
private _getDefaultPlaceholder;
|
|
28
|
+
hideFilter(): void;
|
|
29
|
+
clearFilter(): void;
|
|
27
30
|
ngOnDestroy(): void;
|
|
28
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<CpsTableColumnFilterDirective, never>;
|
|
29
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CpsTableColumnFilterDirective, "[cpsTColFilter]",
|
|
32
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CpsTableColumnFilterDirective, "[cpsTColFilter]", ["cpsTColFilter"], { "field": "cpsTColFilter"; "filterType": "filterType"; "filterPersistent": "filterPersistent"; "filterShowClearButton": "filterShowClearButton"; "filterShowApplyButton": "filterShowApplyButton"; "filterShowCloseButton": "filterShowCloseButton"; "filterShowMatchModes": "filterShowMatchModes"; "filterMatchModes": "filterMatchModes"; "filterShowOperator": "filterShowOperator"; "filterMaxConstraints": "filterMaxConstraints"; "filterHideOnClear": "filterHideOnClear"; "filterCategoryOptions": "filterCategoryOptions"; "filterAsButtonToggle": "filterAsButtonToggle"; "filterSingleSelection": "filterSingleSelection"; "filterPlaceholder": "filterPlaceholder"; }, {}, never, never, true, never>;
|
|
30
33
|
}
|
|
@@ -1,29 +1,32 @@
|
|
|
1
1
|
import { OnChanges } from '@angular/core';
|
|
2
2
|
import { FilterMetadata } from 'primeng/api';
|
|
3
3
|
import { Table } from 'primeng/table';
|
|
4
|
-
import {
|
|
4
|
+
import { CpsAutocompleteComponent } from '../../../cps-autocomplete/cps-autocomplete.component';
|
|
5
|
+
import { CpsButtonToggleOption } from '../../../cps-button-toggle/cps-button-toggle.component';
|
|
5
6
|
import { TreeTable } from 'primeng/treetable';
|
|
7
|
+
import { CpsColumnFilterCategoryOption, CpsColumnFilterType } from '../../cps-column-filter-types';
|
|
6
8
|
import * as i0 from "@angular/core";
|
|
7
9
|
export declare class TableColumnFilterConstraintComponent implements OnChanges {
|
|
8
10
|
dt: Table;
|
|
9
11
|
tt: TreeTable;
|
|
10
|
-
type:
|
|
12
|
+
type: CpsColumnFilterType;
|
|
11
13
|
field: string | undefined;
|
|
12
14
|
filterConstraint: FilterMetadata | undefined;
|
|
13
|
-
categoryOptions: string[];
|
|
15
|
+
categoryOptions: CpsColumnFilterCategoryOption[] | string[];
|
|
16
|
+
asButtonToggle: boolean;
|
|
17
|
+
singleSelection: boolean;
|
|
14
18
|
placeholder: string;
|
|
15
19
|
hasApplyButton: boolean;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
value: string;
|
|
20
|
-
}[];
|
|
20
|
+
categoryAutocompleteComponent?: CpsAutocompleteComponent;
|
|
21
|
+
booleanOptions: CpsButtonToggleOption[];
|
|
22
|
+
categories: CpsColumnFilterCategoryOption[];
|
|
21
23
|
_tableInstance: Table | TreeTable;
|
|
24
|
+
get isCategoryDropdownOpened(): boolean;
|
|
22
25
|
constructor(dt: Table, tt: TreeTable);
|
|
23
26
|
ngOnChanges(): void;
|
|
24
27
|
private _updateCategories;
|
|
25
28
|
onValueChange(value: any): void;
|
|
26
29
|
onEnterKeyDown(event: any): void;
|
|
27
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableColumnFilterConstraintComponent, [{ optional: true; }, { optional: true; }]>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableColumnFilterConstraintComponent, "table-column-filter-constraint", never, { "type": "type"; "field": "field"; "filterConstraint": "filterConstraint"; "categoryOptions": "categoryOptions"; "placeholder": "placeholder"; "hasApplyButton": "hasApplyButton"; }, {}, never, never, true, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableColumnFilterConstraintComponent, "table-column-filter-constraint", never, { "type": "type"; "field": "field"; "filterConstraint": "filterConstraint"; "categoryOptions": "categoryOptions"; "asButtonToggle": "asButtonToggle"; "singleSelection": "singleSelection"; "placeholder": "placeholder"; "hasApplyButton": "hasApplyButton"; }, {}, never, never, true, never>;
|
|
29
32
|
}
|
|
@@ -1,27 +1,31 @@
|
|
|
1
|
-
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit, QueryList } from '@angular/core';
|
|
2
2
|
import { FilterMetadata, SelectItem } from 'primeng/api';
|
|
3
3
|
import { Table } from 'primeng/table';
|
|
4
4
|
import { CpsMenuComponent } from '../../cps-menu/cps-menu.component';
|
|
5
|
+
import { TableColumnFilterConstraintComponent } from './table-column-filter-constraint/table-column-filter-constraint.component';
|
|
5
6
|
import { TreeTable } from 'primeng/treetable';
|
|
6
|
-
import {
|
|
7
|
+
import { CpsColumnFilterCategoryOption, CpsColumnFilterMatchMode, CpsColumnFilterType } from '../cps-column-filter-types';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class TableColumnFilterComponent implements OnInit, OnDestroy {
|
|
9
10
|
elementRef: ElementRef;
|
|
10
11
|
dt: Table;
|
|
11
12
|
tt: TreeTable;
|
|
12
13
|
field: string | undefined;
|
|
13
|
-
type:
|
|
14
|
+
type: CpsColumnFilterType;
|
|
14
15
|
persistent: boolean;
|
|
15
16
|
showClearButton: boolean;
|
|
16
17
|
showApplyButton: boolean;
|
|
17
18
|
showCloseButton: boolean;
|
|
18
19
|
showMatchModes: boolean;
|
|
19
|
-
matchModes:
|
|
20
|
+
matchModes: CpsColumnFilterMatchMode[];
|
|
20
21
|
showOperator: boolean;
|
|
21
22
|
maxConstraints: number;
|
|
22
23
|
hideOnClear: boolean;
|
|
23
|
-
categoryOptions: string[];
|
|
24
|
+
categoryOptions: CpsColumnFilterCategoryOption[] | string[];
|
|
25
|
+
asButtonToggle: boolean;
|
|
26
|
+
singleSelection: boolean;
|
|
24
27
|
placeholder: string;
|
|
28
|
+
constraintCompList: QueryList<TableColumnFilterConstraintComponent>;
|
|
25
29
|
operator: string;
|
|
26
30
|
operatorOptions: {
|
|
27
31
|
label: string;
|
|
@@ -34,6 +38,7 @@ export declare class TableColumnFilterComponent implements OnInit, OnDestroy {
|
|
|
34
38
|
columnFilterMenu: CpsMenuComponent;
|
|
35
39
|
_tableInstance: Table | TreeTable;
|
|
36
40
|
private _isFilterApplied;
|
|
41
|
+
get isCategoryDropdownOpened(): boolean;
|
|
37
42
|
constructor(elementRef: ElementRef, dt: Table, tt: TreeTable);
|
|
38
43
|
ngOnInit(): void;
|
|
39
44
|
private _updateFilterApplied;
|
|
@@ -59,5 +64,5 @@ export declare class TableColumnFilterComponent implements OnInit, OnDestroy {
|
|
|
59
64
|
onClick(event: any): void;
|
|
60
65
|
ngOnDestroy(): void;
|
|
61
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableColumnFilterComponent, [null, { optional: true; }, { optional: true; }]>;
|
|
62
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableColumnFilterComponent, "table-column-filter", never, { "field": "field"; "type": "type"; "persistent": "persistent"; "showClearButton": "showClearButton"; "showApplyButton": "showApplyButton"; "showCloseButton": "showCloseButton"; "showMatchModes": "showMatchModes"; "matchModes": "matchModes"; "showOperator": "showOperator"; "maxConstraints": "maxConstraints"; "hideOnClear": "hideOnClear"; "categoryOptions": "categoryOptions"; "placeholder": "placeholder"; }, {}, never, never, true, never>;
|
|
67
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableColumnFilterComponent, "table-column-filter", never, { "field": "field"; "type": "type"; "persistent": "persistent"; "showClearButton": "showClearButton"; "showApplyButton": "showApplyButton"; "showCloseButton": "showCloseButton"; "showMatchModes": "showMatchModes"; "matchModes": "matchModes"; "showOperator": "showOperator"; "maxConstraints": "maxConstraints"; "hideOnClear": "hideOnClear"; "categoryOptions": "categoryOptions"; "asButtonToggle": "asButtonToggle"; "singleSelection": "singleSelection"; "placeholder": "placeholder"; }, {}, never, never, true, never>;
|
|
63
68
|
}
|
package/lib/components/cps-tree-table/directives/cps-tree-table-column-filter.directive.d.ts
CHANGED
|
@@ -1,29 +1,32 @@
|
|
|
1
1
|
import { ComponentRef, ElementRef, OnDestroy, OnInit, OnChanges, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { TableColumnFilterComponent } from '../../cps-table/table-column-filter/table-column-filter.component';
|
|
3
|
-
import {
|
|
3
|
+
import { CpsColumnFilterType, CpsColumnFilterMatchMode, CpsColumnFilterCategoryOption } from '../../cps-table/cps-column-filter-types';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export type CpsTreeTableColumnFilterType = 'text' | 'number' | 'date' | 'boolean' | 'category';
|
|
6
5
|
export declare class CpsTreeTableColumnFilterDirective implements OnInit, OnChanges, OnDestroy {
|
|
7
6
|
private elementRef;
|
|
8
7
|
private viewContainerRef;
|
|
9
8
|
field: string | undefined;
|
|
10
|
-
filterType:
|
|
9
|
+
filterType: CpsColumnFilterType;
|
|
11
10
|
filterPersistent: boolean;
|
|
12
11
|
filterShowClearButton: boolean;
|
|
13
12
|
filterShowApplyButton: boolean;
|
|
14
13
|
filterShowCloseButton: boolean;
|
|
15
14
|
filterShowMatchModes: boolean;
|
|
16
|
-
filterMatchModes:
|
|
15
|
+
filterMatchModes: CpsColumnFilterMatchMode[];
|
|
17
16
|
filterShowOperator: boolean;
|
|
18
17
|
filterHideOnClear: boolean;
|
|
19
|
-
filterCategoryOptions: string[];
|
|
18
|
+
filterCategoryOptions: CpsColumnFilterCategoryOption[] | string[];
|
|
19
|
+
filterAsButtonToggle: boolean;
|
|
20
|
+
filterSingleSelection: boolean;
|
|
20
21
|
filterPlaceholder: string;
|
|
21
22
|
filterCompRef: ComponentRef<TableColumnFilterComponent>;
|
|
22
23
|
constructor(elementRef: ElementRef, viewContainerRef: ViewContainerRef);
|
|
23
24
|
ngOnInit(): void;
|
|
24
25
|
ngOnChanges(): void;
|
|
25
26
|
private _getDefaultPlaceholder;
|
|
27
|
+
hideFilter(): void;
|
|
28
|
+
clearFilter(): void;
|
|
26
29
|
ngOnDestroy(): void;
|
|
27
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<CpsTreeTableColumnFilterDirective, never>;
|
|
28
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CpsTreeTableColumnFilterDirective, "[cpsTTColFilter]",
|
|
31
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CpsTreeTableColumnFilterDirective, "[cpsTTColFilter]", ["cpsTTColFilter"], { "field": "cpsTTColFilter"; "filterType": "filterType"; "filterPersistent": "filterPersistent"; "filterShowClearButton": "filterShowClearButton"; "filterShowApplyButton": "filterShowApplyButton"; "filterShowCloseButton": "filterShowCloseButton"; "filterShowMatchModes": "filterShowMatchModes"; "filterMatchModes": "filterMatchModes"; "filterShowOperator": "filterShowOperator"; "filterHideOnClear": "filterHideOnClear"; "filterCategoryOptions": "filterCategoryOptions"; "filterAsButtonToggle": "filterAsButtonToggle"; "filterSingleSelection": "filterSingleSelection"; "filterPlaceholder": "filterPlaceholder"; }, {}, never, never, true, never>;
|
|
29
32
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export * from './lib/components/cps-table/directives/cps-table-column-sortable.d
|
|
|
14
14
|
export * from './lib/components/cps-table/directives/cps-table-column-filter.directive';
|
|
15
15
|
export * from './lib/components/cps-table/directives/cps-table-header-selectable.directive';
|
|
16
16
|
export * from './lib/components/cps-table/directives/cps-table-row-selectable.directive';
|
|
17
|
-
export * from './lib/components/cps-table/cps-filter-
|
|
17
|
+
export * from './lib/components/cps-table/cps-column-filter-types';
|
|
18
18
|
export * from './lib/components/cps-tree-table/cps-tree-table.component';
|
|
19
19
|
export * from './lib/components/cps-tree-table/directives/cps-tree-table-column-sortable.directive';
|
|
20
20
|
export * from './lib/components/cps-tree-table/directives/cps-tree-table-column-filter.directive';
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
/* eslint-disable no-unused-vars */
|
|
2
|
-
export var CpsFilterMatchMode;
|
|
3
|
-
(function (CpsFilterMatchMode) {
|
|
4
|
-
CpsFilterMatchMode["STARTS_WITH"] = "startsWith";
|
|
5
|
-
CpsFilterMatchMode["CONTAINS"] = "contains";
|
|
6
|
-
CpsFilterMatchMode["NOT_CONTAINS"] = "notContains";
|
|
7
|
-
CpsFilterMatchMode["ENDS_WITH"] = "endsWith";
|
|
8
|
-
CpsFilterMatchMode["EQUALS"] = "equals";
|
|
9
|
-
CpsFilterMatchMode["NOT_EQUALS"] = "notEquals";
|
|
10
|
-
CpsFilterMatchMode["IN"] = "in";
|
|
11
|
-
CpsFilterMatchMode["LESS_THAN"] = "lt";
|
|
12
|
-
CpsFilterMatchMode["LESS_THAN_OR_EQUAL_TO"] = "lte";
|
|
13
|
-
CpsFilterMatchMode["GREATER_THAN"] = "gt";
|
|
14
|
-
CpsFilterMatchMode["GREATER_THAN_OR_EQUAL_TO"] = "gte";
|
|
15
|
-
CpsFilterMatchMode["BETWEEN"] = "between";
|
|
16
|
-
CpsFilterMatchMode["IS"] = "is";
|
|
17
|
-
CpsFilterMatchMode["IS_NOT"] = "isNot";
|
|
18
|
-
CpsFilterMatchMode["BEFORE"] = "before";
|
|
19
|
-
CpsFilterMatchMode["AFTER"] = "after";
|
|
20
|
-
CpsFilterMatchMode["DATE_IS"] = "dateIs";
|
|
21
|
-
CpsFilterMatchMode["DATE_IS_NOT"] = "dateIsNot";
|
|
22
|
-
CpsFilterMatchMode["DATE_BEFORE"] = "dateBefore";
|
|
23
|
-
CpsFilterMatchMode["DATE_AFTER"] = "dateAfter";
|
|
24
|
-
})(CpsFilterMatchMode || (CpsFilterMatchMode = {}));
|
|
25
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3BzLWZpbHRlci1tYXRjaC1tb2RlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY3BzLXVpLWtpdC9zcmMvbGliL2NvbXBvbmVudHMvY3BzLXRhYmxlL2Nwcy1maWx0ZXItbWF0Y2gtbW9kZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxtQ0FBbUM7QUFDbkMsTUFBTSxDQUFOLElBQVksa0JBcUJYO0FBckJELFdBQVksa0JBQWtCO0lBQzVCLGdEQUEwQixDQUFBO0lBQzFCLDJDQUFxQixDQUFBO0lBQ3JCLGtEQUE0QixDQUFBO0lBQzVCLDRDQUFzQixDQUFBO0lBQ3RCLHVDQUFpQixDQUFBO0lBQ2pCLDhDQUF3QixDQUFBO0lBQ3hCLCtCQUFTLENBQUE7SUFDVCxzQ0FBZ0IsQ0FBQTtJQUNoQixtREFBNkIsQ0FBQTtJQUM3Qix5Q0FBbUIsQ0FBQTtJQUNuQixzREFBZ0MsQ0FBQTtJQUNoQyx5Q0FBbUIsQ0FBQTtJQUNuQiwrQkFBUyxDQUFBO0lBQ1Qsc0NBQWdCLENBQUE7SUFDaEIsdUNBQWlCLENBQUE7SUFDakIscUNBQWUsQ0FBQTtJQUNmLHdDQUFrQixDQUFBO0lBQ2xCLCtDQUF5QixDQUFBO0lBQ3pCLGdEQUEwQixDQUFBO0lBQzFCLDhDQUF3QixDQUFBO0FBQzFCLENBQUMsRUFyQlcsa0JBQWtCLEtBQWxCLGtCQUFrQixRQXFCN0IiLCJzb3VyY2VzQ29udGVudCI6WyIvKiBlc2xpbnQtZGlzYWJsZSBuby11bnVzZWQtdmFycyAqL1xuZXhwb3J0IGVudW0gQ3BzRmlsdGVyTWF0Y2hNb2RlIHtcbiAgU1RBUlRTX1dJVEggPSAnc3RhcnRzV2l0aCcsXG4gIENPTlRBSU5TID0gJ2NvbnRhaW5zJyxcbiAgTk9UX0NPTlRBSU5TID0gJ25vdENvbnRhaW5zJyxcbiAgRU5EU19XSVRIID0gJ2VuZHNXaXRoJyxcbiAgRVFVQUxTID0gJ2VxdWFscycsXG4gIE5PVF9FUVVBTFMgPSAnbm90RXF1YWxzJyxcbiAgSU4gPSAnaW4nLFxuICBMRVNTX1RIQU4gPSAnbHQnLFxuICBMRVNTX1RIQU5fT1JfRVFVQUxfVE8gPSAnbHRlJyxcbiAgR1JFQVRFUl9USEFOID0gJ2d0JyxcbiAgR1JFQVRFUl9USEFOX09SX0VRVUFMX1RPID0gJ2d0ZScsXG4gIEJFVFdFRU4gPSAnYmV0d2VlbicsXG4gIElTID0gJ2lzJyxcbiAgSVNfTk9UID0gJ2lzTm90JyxcbiAgQkVGT1JFID0gJ2JlZm9yZScsXG4gIEFGVEVSID0gJ2FmdGVyJyxcbiAgREFURV9JUyA9ICdkYXRlSXMnLFxuICBEQVRFX0lTX05PVCA9ICdkYXRlSXNOb3QnLFxuICBEQVRFX0JFRk9SRSA9ICdkYXRlQmVmb3JlJyxcbiAgREFURV9BRlRFUiA9ICdkYXRlQWZ0ZXInXG59XG4iXX0=
|