@genesislcap/pbc-reporting-ui 1.0.375 → 1.0.377
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/dist/dts/components/list/columns.d.ts +153 -2
- package/dist/dts/components/list/columns.d.ts.map +1 -1
- package/dist/dts/components/list/list.d.ts.map +1 -1
- package/dist/dts/components/list/list.template.d.ts +1 -1
- package/dist/dts/components/list/list.template.d.ts.map +1 -1
- package/dist/dts/components/rapid-components.d.ts.map +1 -1
- package/dist/dts/components/renderers/custom-header-component.d.ts +17 -0
- package/dist/dts/components/renderers/custom-header-component.d.ts.map +1 -0
- package/dist/dts/components/renderers/row-select.renderer.d.ts +50 -0
- package/dist/dts/components/renderers/row-select.renderer.d.ts.map +1 -0
- package/dist/dts/components/select-fields/columns.d.ts +19 -2
- package/dist/dts/components/select-fields/columns.d.ts.map +1 -1
- package/dist/dts/components/select-fields/select-fields.template.d.ts.map +1 -1
- package/dist/dts/components/select-filters/columns.d.ts +17 -6
- package/dist/dts/components/select-filters/columns.d.ts.map +1 -1
- package/dist/dts/components/select-filters/select-filters.template.d.ts.map +1 -1
- package/dist/dts/components/wizard/steps/filters.d.ts +2 -1
- package/dist/dts/components/wizard/steps/filters.d.ts.map +1 -1
- package/dist/dts/components/wizard/steps/name.d.ts.map +1 -1
- package/dist/dts/components/wizard/steps/run.d.ts.map +1 -1
- package/dist/dts/components/wizard/steps/select.d.ts +2 -1
- package/dist/dts/components/wizard/steps/select.d.ts.map +1 -1
- package/dist/dts/components/wizard/wizard.d.ts +5 -2
- package/dist/dts/components/wizard/wizard.d.ts.map +1 -1
- package/dist/dts/components/wizard/wizard.template.d.ts.map +1 -1
- package/dist/dts/components/zero-components.d.ts.map +1 -1
- package/dist/dts/config/templates.d.ts +1 -0
- package/dist/dts/config/templates.d.ts.map +1 -1
- package/dist/dts/tags/tags.d.ts +4 -0
- package/dist/dts/tags/tags.d.ts.map +1 -1
- package/dist/esm/components/list/columns.js +127 -130
- package/dist/esm/components/list/list.template.js +27 -11
- package/dist/esm/components/rapid-components.js +4 -3
- package/dist/esm/components/renderers/custom-header-component.js +71 -0
- package/dist/esm/components/renderers/row-select.renderer.js +138 -0
- package/dist/esm/components/select-fields/columns.js +20 -6
- package/dist/esm/components/select-fields/select-fields.template.js +6 -2
- package/dist/esm/components/select-filters/columns.js +15 -4
- package/dist/esm/components/select-filters/select-filters.template.js +6 -4
- package/dist/esm/components/wizard/steps/filters.js +2 -0
- package/dist/esm/components/wizard/steps/name.js +7 -1
- package/dist/esm/components/wizard/steps/run.js +1 -0
- package/dist/esm/components/wizard/steps/select.js +1 -0
- package/dist/esm/components/wizard/wizard.js +39 -5
- package/dist/esm/components/wizard/wizard.template.js +4 -2
- package/dist/esm/components/zero-components.js +4 -4
- package/dist/esm/config/templates.js +1 -0
- package/dist/esm/tags/tags.js +4 -0
- package/package.json +1 -1
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { ColDef } from '@ag-grid-community/core';
|
|
2
1
|
export declare enum REPORT_FIELDS {
|
|
3
2
|
REPORT_ID = "REPORT_ID",
|
|
4
3
|
REPORT_NAME = "REPORT_NAME",
|
|
@@ -9,6 +8,158 @@ export declare enum REPORT_FIELDS {
|
|
|
9
8
|
REPORT_CREATED_ON = "REPORT_CREATED_ON",
|
|
10
9
|
OPTIONS = "OPTIONS"
|
|
11
10
|
}
|
|
12
|
-
export declare
|
|
11
|
+
export declare const REPORT_COLUMN_DEFS: (context: any) => ({
|
|
12
|
+
checkboxSelection: boolean;
|
|
13
|
+
filter: boolean;
|
|
14
|
+
headerCheckboxSelection: boolean;
|
|
15
|
+
sortable: boolean;
|
|
16
|
+
cellRenderer: string;
|
|
17
|
+
width: number;
|
|
18
|
+
cellStyle: {
|
|
19
|
+
display: string;
|
|
20
|
+
justifyContent?: undefined;
|
|
21
|
+
alignItems?: undefined;
|
|
22
|
+
textAlign?: undefined;
|
|
23
|
+
color?: undefined;
|
|
24
|
+
};
|
|
25
|
+
field?: undefined;
|
|
26
|
+
hide?: undefined;
|
|
27
|
+
headerName?: undefined;
|
|
28
|
+
cellRendererSelector?: undefined;
|
|
29
|
+
filterParams?: undefined;
|
|
30
|
+
valueFormatter?: undefined;
|
|
31
|
+
colId?: undefined;
|
|
32
|
+
resizable?: undefined;
|
|
33
|
+
} | {
|
|
34
|
+
field: REPORT_FIELDS;
|
|
35
|
+
hide: boolean;
|
|
36
|
+
checkboxSelection?: undefined;
|
|
37
|
+
filter?: undefined;
|
|
38
|
+
headerCheckboxSelection?: undefined;
|
|
39
|
+
sortable?: undefined;
|
|
40
|
+
cellRenderer?: undefined;
|
|
41
|
+
width?: undefined;
|
|
42
|
+
cellStyle?: undefined;
|
|
43
|
+
headerName?: undefined;
|
|
44
|
+
cellRendererSelector?: undefined;
|
|
45
|
+
filterParams?: undefined;
|
|
46
|
+
valueFormatter?: undefined;
|
|
47
|
+
colId?: undefined;
|
|
48
|
+
resizable?: undefined;
|
|
49
|
+
} | {
|
|
50
|
+
field: REPORT_FIELDS;
|
|
51
|
+
headerName: string;
|
|
52
|
+
cellStyle: {
|
|
53
|
+
display: string;
|
|
54
|
+
justifyContent: string;
|
|
55
|
+
alignItems: string;
|
|
56
|
+
textAlign: string;
|
|
57
|
+
color: string;
|
|
58
|
+
};
|
|
59
|
+
cellRendererSelector: (params: any) => {
|
|
60
|
+
component: string;
|
|
61
|
+
params: {
|
|
62
|
+
actionClick: () => any;
|
|
63
|
+
actionName: any;
|
|
64
|
+
appearance: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
checkboxSelection?: undefined;
|
|
68
|
+
filter?: undefined;
|
|
69
|
+
headerCheckboxSelection?: undefined;
|
|
70
|
+
sortable?: undefined;
|
|
71
|
+
cellRenderer?: undefined;
|
|
72
|
+
width?: undefined;
|
|
73
|
+
hide?: undefined;
|
|
74
|
+
filterParams?: undefined;
|
|
75
|
+
valueFormatter?: undefined;
|
|
76
|
+
colId?: undefined;
|
|
77
|
+
resizable?: undefined;
|
|
78
|
+
} | {
|
|
79
|
+
field: REPORT_FIELDS;
|
|
80
|
+
headerName: string;
|
|
81
|
+
width: number;
|
|
82
|
+
checkboxSelection?: undefined;
|
|
83
|
+
filter?: undefined;
|
|
84
|
+
headerCheckboxSelection?: undefined;
|
|
85
|
+
sortable?: undefined;
|
|
86
|
+
cellRenderer?: undefined;
|
|
87
|
+
cellStyle?: undefined;
|
|
88
|
+
hide?: undefined;
|
|
89
|
+
cellRendererSelector?: undefined;
|
|
90
|
+
filterParams?: undefined;
|
|
91
|
+
valueFormatter?: undefined;
|
|
92
|
+
colId?: undefined;
|
|
93
|
+
resizable?: undefined;
|
|
94
|
+
} | {
|
|
95
|
+
field: REPORT_FIELDS;
|
|
96
|
+
headerName: string;
|
|
97
|
+
checkboxSelection?: undefined;
|
|
98
|
+
filter?: undefined;
|
|
99
|
+
headerCheckboxSelection?: undefined;
|
|
100
|
+
sortable?: undefined;
|
|
101
|
+
cellRenderer?: undefined;
|
|
102
|
+
width?: undefined;
|
|
103
|
+
cellStyle?: undefined;
|
|
104
|
+
hide?: undefined;
|
|
105
|
+
cellRendererSelector?: undefined;
|
|
106
|
+
filterParams?: undefined;
|
|
107
|
+
valueFormatter?: undefined;
|
|
108
|
+
colId?: undefined;
|
|
109
|
+
resizable?: undefined;
|
|
110
|
+
} | {
|
|
111
|
+
field: REPORT_FIELDS;
|
|
112
|
+
headerName: string;
|
|
113
|
+
filter: string;
|
|
114
|
+
filterParams: {
|
|
115
|
+
comparator: (filterLocalDateAtMidnight: Date, cellValue: number) => 1 | -1 | 0;
|
|
116
|
+
buttons: string[];
|
|
117
|
+
closeOnApply: boolean;
|
|
118
|
+
closeOnClear: boolean;
|
|
119
|
+
suppressAndOrCondition: boolean;
|
|
120
|
+
browserDatePicker: boolean;
|
|
121
|
+
filterOptions: string[];
|
|
122
|
+
};
|
|
123
|
+
valueFormatter: (rowData: any) => string;
|
|
124
|
+
checkboxSelection?: undefined;
|
|
125
|
+
headerCheckboxSelection?: undefined;
|
|
126
|
+
sortable?: undefined;
|
|
127
|
+
cellRenderer?: undefined;
|
|
128
|
+
width?: undefined;
|
|
129
|
+
cellStyle?: undefined;
|
|
130
|
+
hide?: undefined;
|
|
131
|
+
cellRendererSelector?: undefined;
|
|
132
|
+
colId?: undefined;
|
|
133
|
+
resizable?: undefined;
|
|
134
|
+
} | {
|
|
135
|
+
width: number;
|
|
136
|
+
colId: string;
|
|
137
|
+
headerName: string;
|
|
138
|
+
filter: boolean;
|
|
139
|
+
resizable: boolean;
|
|
140
|
+
sortable: boolean;
|
|
141
|
+
cellStyle: {
|
|
142
|
+
display: string;
|
|
143
|
+
justifyContent: string;
|
|
144
|
+
alignItems: string;
|
|
145
|
+
textAlign?: undefined;
|
|
146
|
+
color?: undefined;
|
|
147
|
+
};
|
|
148
|
+
cellRendererSelector: (params: any) => {
|
|
149
|
+
component: string;
|
|
150
|
+
params: {
|
|
151
|
+
actionClick: () => any;
|
|
152
|
+
contentTemplate: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
153
|
+
appearance: any;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
checkboxSelection?: undefined;
|
|
157
|
+
headerCheckboxSelection?: undefined;
|
|
158
|
+
cellRenderer?: undefined;
|
|
159
|
+
field?: undefined;
|
|
160
|
+
hide?: undefined;
|
|
161
|
+
filterParams?: undefined;
|
|
162
|
+
valueFormatter?: undefined;
|
|
163
|
+
})[];
|
|
13
164
|
export declare function SELECTED_COLUMN_DEFS(context: any): void;
|
|
14
165
|
//# sourceMappingURL=columns.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"columns.d.ts","sourceRoot":"","sources":["../../../../src/components/list/columns.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"columns.d.ts","sourceRoot":"","sources":["../../../../src/components/list/columns.ts"],"names":[],"mappings":"AAIA,oBAAY,aAAa;IACvB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,kBAAkB,uBAAuB;IACzC,iBAAiB,sBAAsB;IACvC,cAAc,mBAAmB;IACjC,UAAU,eAAe;IACzB,iBAAiB,sBAAsB;IACvC,OAAO,YAAY;CACpB;AAED,eAAO,MAAO,kBAAkB,YAAa,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAyCA,IAAI,aAAa,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAgGpE,CAAC;AAEJ,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,GAAG,QAAI"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../../src/components/list/list.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AACxD,OAAO,EAAE,OAAO,
|
|
1
|
+
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../../src/components/list/list.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AACxD,OAAO,EAAE,OAAO,EAA+C,MAAM,uBAAuB,CAAC;AAC7F,OAAO,EAAiB,cAAc,EAAc,MAAM,uBAAuB,CAAC;AAKlF,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAItD,qBAKa,IAAK,SAAQ,cAAc;IAC7B,OAAO,EAAG,OAAO,CAAC;IACf,iBAAiB,KAAM;IACvB,YAAY,QAAM;IACb,MAAM,EAAG,eAAe,CAAC;IAEnC,IAAI,EAAE,OAAO,CAAC;IAErB,aAAa;;OAEV;IAEG,iBAAiB,IAAI,OAAO,CAAC,IAAI,CAAC;IAoB3B,MAAM,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC;IA2BzC,WAAW,IAAI,IAAI;IAKnB,SAAS,SAAU,GAAG,KAAG,IAAI,CAElC;IAEK,UAAU,SAAU,GAAG,KAAG,IAAI,CAEnC;IAEK,YAAY,SAAU,GAAG,KAAG,IAAI,CAErC;CACH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.template.d.ts","sourceRoot":"","sources":["../../../../src/components/list/list.template.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"list.template.d.ts","sourceRoot":"","sources":["../../../../src/components/list/list.template.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAKnC,eAAO,MAAM,YAAY,2DAgCxB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rapid-components.d.ts","sourceRoot":"","sources":["../../../src/components/rapid-components.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"rapid-components.d.ts","sourceRoot":"","sources":["../../../src/components/rapid-components.ts"],"names":[],"mappings":"AAyBA;;GAEG;AACH,eAAO,MAAM,6BAA6B,qBAkCzC,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IHeaderComp, IHeaderParams } from '@ag-grid-community/core';
|
|
2
|
+
export declare class CustomHeaderCheckboxComponent implements IHeaderComp {
|
|
3
|
+
private eCheckbox;
|
|
4
|
+
private params;
|
|
5
|
+
private indeterminateIndicator;
|
|
6
|
+
constructor();
|
|
7
|
+
refresh(params: IHeaderParams): boolean;
|
|
8
|
+
init(params: IHeaderParams): void;
|
|
9
|
+
private onKeyDown;
|
|
10
|
+
private onCheckboxClick;
|
|
11
|
+
private updateCheckboxState;
|
|
12
|
+
private setCheckboxState;
|
|
13
|
+
private updateIndeterminateIndicator;
|
|
14
|
+
getGui(): HTMLElement;
|
|
15
|
+
destroy(): void;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=custom-header-component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"custom-header-component.d.ts","sourceRoot":"","sources":["../../../../src/components/renderers/custom-header-component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAGrE,qBAAa,6BAA8B,YAAW,WAAW;IAC/D,OAAO,CAAC,SAAS,CAAc;IAC/B,OAAO,CAAC,MAAM,CAAiB;IAC/B,OAAO,CAAC,sBAAsB,CAA4B;;IAM1D,OAAO,CAAC,MAAM,EAAE,aAAa,GAAG,OAAO;IAIvC,IAAI,CAAC,MAAM,EAAE,aAAa,GAAG,IAAI;IAgBjC,OAAO,CAAC,SAAS,CAMf;IAEF,OAAO,CAAC,eAAe,CAIrB;IAEF,OAAO,CAAC,mBAAmB,CAgBzB;IAEF,OAAO,CAAC,gBAAgB;IAKxB,OAAO,CAAC,4BAA4B;IAUpC,MAAM,IAAI,WAAW;IAIrB,OAAO,IAAI,IAAI;CAKhB"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { ICellRendererComp, ICellRendererParams } from '@ag-grid-community/core';
|
|
2
|
+
import { BooleanRendererParams } from '@genesislcap/foundation-zero-grid-pro';
|
|
3
|
+
import { FoundationElement } from '@genesislcap/web-core';
|
|
4
|
+
/**
|
|
5
|
+
* The AG Row Select Renderer element.
|
|
6
|
+
* @public
|
|
7
|
+
* @tagname %%prefix%%-row-select-renderer
|
|
8
|
+
*/
|
|
9
|
+
export declare class RowSelectRenderer extends FoundationElement implements ICellRendererComp {
|
|
10
|
+
params: ICellRendererParams & BooleanRendererParams;
|
|
11
|
+
checked: boolean;
|
|
12
|
+
isDisabled(data: any): boolean;
|
|
13
|
+
init(params: ICellRendererParams): void;
|
|
14
|
+
onSelectionChanged(): void;
|
|
15
|
+
changeHandler(e: any): void;
|
|
16
|
+
getGui(): HTMLElement;
|
|
17
|
+
destroy(): void;
|
|
18
|
+
refresh(params: ICellRendererParams): boolean;
|
|
19
|
+
getValue(): boolean;
|
|
20
|
+
isCancelBeforeStart(): boolean;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* The AG Boolean Renderer Styles.
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export declare const agRowSelectRendererStyles: import("@microsoft/fast-element").ElementStyles;
|
|
27
|
+
/**
|
|
28
|
+
* Get a Design System prefixed Checkbox template.
|
|
29
|
+
* @param designSystem - The design system prefix to use. Defaults to 'foundation'.
|
|
30
|
+
* @returns A Checkbox component template prefixed with the correct design system.
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare const getAgRowSelectRendererTemplate: (designSystem?: string) => import("@microsoft/fast-element").ViewTemplate<RowSelectRenderer, any>;
|
|
34
|
+
/**
|
|
35
|
+
* A function that returns a Foundation Row Select Renderer registration for configuring the component with a DesignSystem.
|
|
36
|
+
*
|
|
37
|
+
* @public
|
|
38
|
+
* @remarks
|
|
39
|
+
* HTML Element: \<foundation-row-select-renderer\>
|
|
40
|
+
*/
|
|
41
|
+
export declare const foundationAgRowSelectRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
42
|
+
baseName: string;
|
|
43
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
44
|
+
template: import("@microsoft/fast-element").ViewTemplate<RowSelectRenderer, any>;
|
|
45
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
46
|
+
baseName: string;
|
|
47
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
48
|
+
template: import("@microsoft/fast-element").ViewTemplate<RowSelectRenderer, any>;
|
|
49
|
+
}, typeof RowSelectRenderer>;
|
|
50
|
+
//# sourceMappingURL=row-select.renderer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"row-select.renderer.d.ts","sourceRoot":"","sources":["../../../../src/components/renderers/row-select.renderer.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EACjB,mBAAmB,EACpB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EACL,qBAAqB,EAEtB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAyB,iBAAiB,EAAC,MAAM,uBAAuB,CAAC;AAEhF;;;;GAIG;AACH,qBAAa,iBAAkB,SAAQ,iBAAkB,YAAW,iBAAiB;IAG5E,MAAM,EAAE,mBAAmB,GAAG,qBAAqB,CAAC;IAG3D,OAAO,EAAE,OAAO,CAAC;IAEV,UAAU,CAAC,IAAI,KAAA,GAAG,OAAO;IAWzB,IAAI,CAAC,MAAM,EAAE,mBAAmB;IAYhC,kBAAkB;IAMlB,aAAa,CAAC,CAAC,KAAA;IAKf,MAAM,IAAI,WAAW;IAIrB,OAAO;IASP,OAAO,CAAC,MAAM,EAAE,mBAAmB;IAK1C,QAAQ;IAIR,mBAAmB;CAGpB;AAED;;;GAGG;AACH,eAAO,MAAM,yBAAyB,iDAsCrC,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,8BAA8B,mGAY1C,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,6BAA6B;;;;;;;;4BAIxC,CAAC"}
|
|
@@ -1,21 +1,28 @@
|
|
|
1
1
|
import type { GridOptions } from '@ag-grid-community/core';
|
|
2
|
+
import { RowSelectRenderer } from '../renderers/row-select.renderer';
|
|
2
3
|
/**
|
|
3
4
|
* Field selection grid config
|
|
4
5
|
*/
|
|
5
6
|
export declare const FIELD_SELECT_CONFIG: {
|
|
6
7
|
colDefs: ({
|
|
8
|
+
cellRenderer: string;
|
|
7
9
|
checkboxSelection: boolean;
|
|
8
10
|
filter: boolean;
|
|
9
11
|
headerCheckboxSelection: boolean;
|
|
12
|
+
suppressMenu: boolean;
|
|
13
|
+
suppressSorting: boolean;
|
|
10
14
|
width: number;
|
|
11
15
|
field?: undefined;
|
|
12
16
|
headerName?: undefined;
|
|
13
17
|
} | {
|
|
14
18
|
field: string;
|
|
15
19
|
headerName: string;
|
|
20
|
+
cellRenderer?: undefined;
|
|
16
21
|
checkboxSelection?: undefined;
|
|
17
22
|
filter?: undefined;
|
|
18
23
|
headerCheckboxSelection?: undefined;
|
|
24
|
+
suppressMenu?: undefined;
|
|
25
|
+
suppressSorting?: undefined;
|
|
19
26
|
width?: undefined;
|
|
20
27
|
})[];
|
|
21
28
|
gridOptions: GridOptions<any>;
|
|
@@ -25,23 +32,30 @@ export declare const FIELD_SELECT_CONFIG: {
|
|
|
25
32
|
*/
|
|
26
33
|
export declare const SELECTED_FIELDS_CONFIG: {
|
|
27
34
|
colDefs: ({
|
|
35
|
+
cellRenderer: string;
|
|
28
36
|
checkboxSelection: boolean;
|
|
29
37
|
filter: boolean;
|
|
30
38
|
headerCheckboxSelection: boolean;
|
|
31
|
-
|
|
39
|
+
suppressMenu: boolean;
|
|
40
|
+
suppressSorting: boolean;
|
|
32
41
|
width: number;
|
|
33
42
|
field?: undefined;
|
|
34
43
|
headerName?: undefined;
|
|
35
44
|
} | {
|
|
36
45
|
field: string;
|
|
37
46
|
headerName: string;
|
|
47
|
+
cellRenderer?: undefined;
|
|
38
48
|
checkboxSelection?: undefined;
|
|
39
49
|
filter?: undefined;
|
|
40
50
|
headerCheckboxSelection?: undefined;
|
|
41
|
-
|
|
51
|
+
suppressMenu?: undefined;
|
|
52
|
+
suppressSorting?: undefined;
|
|
42
53
|
width?: undefined;
|
|
43
54
|
})[];
|
|
44
55
|
gridOptions: {
|
|
56
|
+
components: {
|
|
57
|
+
'row-select': typeof RowSelectRenderer;
|
|
58
|
+
};
|
|
45
59
|
defaultColDef: {
|
|
46
60
|
filter: boolean;
|
|
47
61
|
floatingFilter: boolean;
|
|
@@ -49,6 +63,9 @@ export declare const SELECTED_FIELDS_CONFIG: {
|
|
|
49
63
|
suppressMenu: boolean;
|
|
50
64
|
resizable: boolean;
|
|
51
65
|
};
|
|
66
|
+
context: {
|
|
67
|
+
ariaLabelField: string;
|
|
68
|
+
};
|
|
52
69
|
animateRows: boolean;
|
|
53
70
|
debug: boolean;
|
|
54
71
|
rowDragManaged: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"columns.d.ts","sourceRoot":"","sources":["../../../../src/components/select-fields/columns.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"columns.d.ts","sourceRoot":"","sources":["../../../../src/components/select-fields/columns.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAE3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AAErE;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;CAmC/B,CAAC;AAGF;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmClC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select-fields.template.d.ts","sourceRoot":"","sources":["../../../../src/components/select-fields/select-fields.template.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"select-fields.template.d.ts","sourceRoot":"","sources":["../../../../src/components/select-fields/select-fields.template.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAoDpD,eAAO,MAAM,oBAAoB,mEAIhC,CAAC"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { RowSelectRenderer } from '../renderers/row-select.renderer';
|
|
1
2
|
/**
|
|
2
3
|
* Field selection grid config
|
|
3
4
|
*/
|
|
4
5
|
export declare const AVAILABLE_FIELDS_CONFIG: {
|
|
5
6
|
colDefs: ({
|
|
7
|
+
cellRenderer: string;
|
|
6
8
|
checkboxSelection: boolean;
|
|
7
9
|
filter: boolean;
|
|
8
10
|
headerCheckboxSelection: boolean;
|
|
@@ -13,6 +15,7 @@ export declare const AVAILABLE_FIELDS_CONFIG: {
|
|
|
13
15
|
} | {
|
|
14
16
|
field: string;
|
|
15
17
|
headerName: string;
|
|
18
|
+
cellRenderer?: undefined;
|
|
16
19
|
checkboxSelection?: undefined;
|
|
17
20
|
filter?: undefined;
|
|
18
21
|
headerCheckboxSelection?: undefined;
|
|
@@ -20,6 +23,9 @@ export declare const AVAILABLE_FIELDS_CONFIG: {
|
|
|
20
23
|
width?: undefined;
|
|
21
24
|
})[];
|
|
22
25
|
gridOptions: {
|
|
26
|
+
components: {
|
|
27
|
+
'row-select': typeof RowSelectRenderer;
|
|
28
|
+
};
|
|
23
29
|
defaultColDef: {
|
|
24
30
|
filter: boolean;
|
|
25
31
|
floatingFilter: boolean;
|
|
@@ -27,10 +33,10 @@ export declare const AVAILABLE_FIELDS_CONFIG: {
|
|
|
27
33
|
suppressMenu: boolean;
|
|
28
34
|
resizable: boolean;
|
|
29
35
|
};
|
|
36
|
+
context: {
|
|
37
|
+
ariaLabelField: string;
|
|
38
|
+
};
|
|
30
39
|
debug: boolean;
|
|
31
|
-
/**
|
|
32
|
-
* Field selection grid config
|
|
33
|
-
*/
|
|
34
40
|
rowHeight: number;
|
|
35
41
|
rowStyle: {
|
|
36
42
|
backgroundColor: string;
|
|
@@ -46,6 +52,7 @@ export declare const AVAILABLE_FIELDS_CONFIG: {
|
|
|
46
52
|
*/
|
|
47
53
|
export declare const SELECTED_FILTERS_CONFIG: {
|
|
48
54
|
colDefs: ({
|
|
55
|
+
cellRenderer: string;
|
|
49
56
|
checkboxSelection: boolean;
|
|
50
57
|
headerCheckboxSelection: boolean;
|
|
51
58
|
width: number;
|
|
@@ -54,11 +61,15 @@ export declare const SELECTED_FILTERS_CONFIG: {
|
|
|
54
61
|
} | {
|
|
55
62
|
field: string;
|
|
56
63
|
headerName: string;
|
|
64
|
+
cellRenderer?: undefined;
|
|
57
65
|
checkboxSelection?: undefined;
|
|
58
66
|
headerCheckboxSelection?: undefined;
|
|
59
67
|
width?: undefined;
|
|
60
68
|
})[];
|
|
61
69
|
gridOptions: {
|
|
70
|
+
components: {
|
|
71
|
+
'row-select': typeof RowSelectRenderer;
|
|
72
|
+
};
|
|
62
73
|
defaultColDef: {
|
|
63
74
|
filter: boolean;
|
|
64
75
|
resizable: boolean;
|
|
@@ -69,12 +80,12 @@ export declare const SELECTED_FILTERS_CONFIG: {
|
|
|
69
80
|
alignItems: string;
|
|
70
81
|
};
|
|
71
82
|
};
|
|
83
|
+
context: {
|
|
84
|
+
ariaLabelField: string;
|
|
85
|
+
};
|
|
72
86
|
suppressContextMenu: boolean;
|
|
73
87
|
suppressRowTransform: boolean;
|
|
74
88
|
debug: boolean;
|
|
75
|
-
/**
|
|
76
|
-
* Field selection grid config
|
|
77
|
-
*/
|
|
78
89
|
rowHeight: number;
|
|
79
90
|
rowStyle: {
|
|
80
91
|
backgroundColor: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"columns.d.ts","sourceRoot":"","sources":["../../../../src/components/select-filters/columns.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"columns.d.ts","sourceRoot":"","sources":["../../../../src/components/select-filters/columns.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AAErE;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgCnC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgCnC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select-filters.template.d.ts","sourceRoot":"","sources":["../../../../src/components/select-filters/select-filters.template.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"select-filters.template.d.ts","sourceRoot":"","sources":["../../../../src/components/select-filters/select-filters.template.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAoDtD,eAAO,MAAM,qBAAqB,oEAIjC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"filters.d.ts","sourceRoot":"","sources":["../../../../../src/components/wizard/steps/filters.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"filters.d.ts","sourceRoot":"","sources":["../../../../../src/components/wizard/steps/filters.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAEnC,eAAO,MAAM,WAAW,6DASvB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"name.d.ts","sourceRoot":"","sources":["../../../../../src/components/wizard/steps/name.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"name.d.ts","sourceRoot":"","sources":["../../../../../src/components/wizard/steps/name.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAiExC,eAAO,MAAM,QAAQ,6DAIpB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"run.d.ts","sourceRoot":"","sources":["../../../../../src/components/wizard/steps/run.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAExC,eAAO,MAAM,OAAO,
|
|
1
|
+
{"version":3,"file":"run.d.ts","sourceRoot":"","sources":["../../../../../src/components/wizard/steps/run.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAExC,eAAO,MAAM,OAAO,6DAUnB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../../../src/components/wizard/steps/select.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../../../src/components/wizard/steps/select.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAEnC,eAAO,MAAM,UAAU,6DAUtB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Connect } from '@genesislcap/foundation-comms';
|
|
2
|
-
import { GenesisElement } from '@genesislcap/web-core';
|
|
2
|
+
import { Button, GenesisElement } from '@genesislcap/web-core';
|
|
3
3
|
import { DatasourceFieldOptions, DatasourceOptions, ReportField, WizardContent } from './wizard.types';
|
|
4
4
|
import { ReportingConfig } from '../../config/config';
|
|
5
5
|
export declare class Wizard extends GenesisElement {
|
|
@@ -23,7 +23,8 @@ export declare class Wizard extends GenesisElement {
|
|
|
23
23
|
previewData: any[];
|
|
24
24
|
previewGridColumns: any[];
|
|
25
25
|
get isFormValid(): boolean;
|
|
26
|
-
get viewTemplate(): import("@microsoft/fast-element").ViewTemplate<
|
|
26
|
+
get viewTemplate(): import("@microsoft/fast-element").ViewTemplate<Wizard, any>;
|
|
27
|
+
nextButton: Button;
|
|
27
28
|
/**
|
|
28
29
|
* When report variable changes handle
|
|
29
30
|
*/
|
|
@@ -81,5 +82,7 @@ export declare class Wizard extends GenesisElement {
|
|
|
81
82
|
* @param tab Number
|
|
82
83
|
*/
|
|
83
84
|
setActiveTab: (tabIndex: any) => void;
|
|
85
|
+
private selectedGridId;
|
|
86
|
+
wizardStepKeydownHandler(event: KeyboardEvent): boolean;
|
|
84
87
|
}
|
|
85
88
|
//# sourceMappingURL=wizard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wizard.d.ts","sourceRoot":"","sources":["../../../../src/components/wizard/wizard.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AACxD,OAAO,
|
|
1
|
+
{"version":3,"file":"wizard.d.ts","sourceRoot":"","sources":["../../../../src/components/wizard/wizard.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AACxD,OAAO,EAAE,MAAM,EAAsB,cAAc,EAAwB,MAAM,uBAAuB,CAAC;AAKzG,OAAO,EACL,sBAAsB,EACtB,iBAAiB,EACjB,WAAW,EACX,aAAa,EAEd,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAGtD,qBAKa,MAAO,SAAQ,cAAc;IAC/B,OAAO,EAAE,OAAO,CAAC;IACT,MAAM,EAAG,eAAe,CAAC;IAC9B,KAAK,EAAE,OAAO,CAAS;IACvB,SAAS,EAAE,MAAM,CAAK;IACtB,iBAAiB,EAAE,iBAAiB,CAAM;IAC1C,sBAAsB,EAAE,sBAAsB,CAAM;IACpD,MAAM,EAAE,OAAO,CAAS;IACxB,SAAS,EAAE,WAAW,EAAE,CAAM;IAC9B,MAAM,MAAC;IACP,UAAU,MAAC;IACX,OAAO,EAAE,aAAa,CAkBhC;IACU,kBAAkB,MAAC;IAGnB,UAAU,EAAE,MAAM,CAAM;IACxB,iBAAiB,EAAE,MAAM,CAAM;IAC/B,kBAAkB,EAAE,MAAM,CAAQ;IAGlC,cAAc,EAAE,WAAW,EAAE,CAAM;IAGnC,eAAe,QAAM;IAGrB,WAAW,EAAE,GAAG,EAAE,CAAM;IACxB,kBAAkB,QAAM;IAEpC,IACI,WAAW,YAkBd;IAED,IACI,YAAY,gEAaf;IAED,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACG,aAAa,CAAC,GAAG,KAAA,EAAE,QAAQ,KAAA;IA0BjC;;;OAGG;IACI,SAAS,CAAC,MAAM,KAAA;IAIvB;;OAEG;IACG,yBAAyB,CAAC,GAAG,KAAA,EAAE,QAAQ,KAAA;IAsC7C;;OAEG;IACH,gBAAgB;IAaT,iBAAiB;IAmCxB;;;;OAIG;IACI,2BAA2B,iBAC6B;IAE/D;;;OAGG;IACI,4BAA4B,cACiC;IAEpE;;OAEG;YACW,cAAc;IA2B5B;;OAEG;IACH,OAAO,CAAC,yBAAyB;IA6BjC;;;OAGG;IACI,kBAAkB,2BAEvB;IAEF;;;OAGG;IACI,OAAO;;;;;MAOZ;IAEF;;;OAGG;IACI,YAAY,0BAIjB;IAEF,OAAO,CAAC,cAAc,CAAC;IAEvB,wBAAwB,CAAC,KAAK,EAAE,aAAa;CA2C9C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wizard.template.d.ts","sourceRoot":"","sources":["../../../../src/components/wizard/wizard.template.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"wizard.template.d.ts","sourceRoot":"","sources":["../../../../src/components/wizard/wizard.template.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAgHvC,eAAO,MAAM,cAAc,6DA8B1B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zero-components.d.ts","sourceRoot":"","sources":["../../../src/components/zero-components.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"zero-components.d.ts","sourceRoot":"","sources":["../../../src/components/zero-components.ts"],"names":[],"mappings":"AAyBA;;GAEG;AACH,eAAO,MAAM,4BAA4B,qBA8BxC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"templates.d.ts","sourceRoot":"","sources":["../../../src/config/templates.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,4BAA4B,CAAC;AACvE,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE9D;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAAG;IAC/B,IAAI,EAAE,yBAAyB,CAAC;IAChC,MAAM,EAAE,yBAAyB,CAAC;IAClC,IAAI,EAAE,yBAAyB,CAAC;IAChC,IAAI,EAAE,yBAAyB,CAAC;IAChC,GAAG,EAAE,yBAAyB,CAAC;IAC/B,QAAQ,EAAE,yBAAyB,CAAC;IACpC,SAAS,EAAE,yBAAyB,CAAC;IACrC,QAAQ,EAAE,yBAAyB,CAAC;IACpC,UAAU,EAAE,yBAAyB,CAAC;IACtC,KAAK,EAAE,yBAAyB,CAAC;IACjC,KAAK,EAAE,yBAAyB,CAAC;IACjC,oBAAoB,EAAE,yBAAyB,CAAC;IAChD,IAAI,EAAE,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"templates.d.ts","sourceRoot":"","sources":["../../../src/config/templates.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,4BAA4B,CAAC;AACvE,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE9D;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAAG;IAC/B,IAAI,EAAE,yBAAyB,CAAC;IAChC,MAAM,EAAE,yBAAyB,CAAC;IAClC,IAAI,EAAE,yBAAyB,CAAC;IAChC,IAAI,EAAE,yBAAyB,CAAC;IAChC,GAAG,EAAE,yBAAyB,CAAC;IAC/B,QAAQ,EAAE,yBAAyB,CAAC;IACpC,SAAS,EAAE,yBAAyB,CAAC;IACrC,QAAQ,EAAE,yBAAyB,CAAC;IACpC,UAAU,EAAE,yBAAyB,CAAC;IACtC,KAAK,EAAE,yBAAyB,CAAC;IACjC,KAAK,EAAE,yBAAyB,CAAC;IACjC,oBAAoB,EAAE,yBAAyB,CAAC;IAChD,IAAI,EAAE,yBAAyB,CAAC;IAChC,QAAQ,EAAE,yBAAyB,CAAC;CACrC,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,kBAAkB,CAAC,GAAG;IAC1D;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,qBAAqB,CAAC;CAC9C,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB,EAAE,eAepC,CAAC"}
|
package/dist/dts/tags/tags.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tags.d.ts","sourceRoot":"","sources":["../../../src/tags/tags.ts"],"names":[],"mappings":"AAKA;;;;;;GAMG;AAEH;;GAEG;AACH,eAAO,MAAQ,eAAe,+CACqB,CAAC;AAEpD;;GAEG;AACH,eAAO,MAAM,OAAO,QAA+B,CAAC;AAEpD;;GAEG;AACH,eAAO,MAAM,SAAS,QAAiC,CAAC;AAExD;;GAEG;AACH,eAAO,MAAM,OAAO,QAA+B,CAAC;AAEpD;;GAEG;AACH,eAAO,MAAM,OAAO,QAA+B,CAAC;AAEpD;;GAEG;AACH,eAAO,MAAM,MAAM,QAA8B,CAAC;AAClD;;GAEG;AACH,eAAO,MAAM,WAAW,QAAmC,CAAC;AAC5D;;GAEG;AACH,eAAO,MAAM,YAAY,QAAoC,CAAC;AAC9D;;GAEG;AACH,eAAO,MAAM,WAAW,QAAmC,CAAC;AAC5D;;GAEG;AACH,eAAO,MAAM,aAAa,QAAqC,CAAC;AAChE;;GAEG;AACH,eAAO,MAAM,QAAQ,QAAgC,CAAC;AACtD;;GAEG;AACH,eAAO,MAAM,QAAQ,QAAgC,CAAC;AACtD;;GAEG;AACH,eAAO,MAAM,uBAAuB,QAA+C,CAAC;AACpF;;GAEG;AACH,eAAO,MAAM,OAAO,QAA+B,CAAC"}
|
|
1
|
+
{"version":3,"file":"tags.d.ts","sourceRoot":"","sources":["../../../src/tags/tags.ts"],"names":[],"mappings":"AAKA;;;;;;GAMG;AAEH;;GAEG;AACH,eAAO,MAAQ,eAAe,+CACqB,CAAC;AAEpD;;GAEG;AACH,eAAO,MAAM,OAAO,QAA+B,CAAC;AAEpD;;GAEG;AACH,eAAO,MAAM,SAAS,QAAiC,CAAC;AAExD;;GAEG;AACH,eAAO,MAAM,OAAO,QAA+B,CAAC;AAEpD;;GAEG;AACH,eAAO,MAAM,OAAO,QAA+B,CAAC;AAEpD;;GAEG;AACH,eAAO,MAAM,MAAM,QAA8B,CAAC;AAClD;;GAEG;AACH,eAAO,MAAM,WAAW,QAAmC,CAAC;AAC5D;;GAEG;AACH,eAAO,MAAM,YAAY,QAAoC,CAAC;AAC9D;;GAEG;AACH,eAAO,MAAM,WAAW,QAAmC,CAAC;AAC5D;;GAEG;AACH,eAAO,MAAM,aAAa,QAAqC,CAAC;AAChE;;GAEG;AACH,eAAO,MAAM,QAAQ,QAAgC,CAAC;AACtD;;GAEG;AACH,eAAO,MAAM,QAAQ,QAAgC,CAAC;AACtD;;GAEG;AACH,eAAO,MAAM,uBAAuB,QAA+C,CAAC;AACpF;;GAEG;AACH,eAAO,MAAM,OAAO,QAA+B,CAAC;AACpD;;GAEG;AACH,eAAO,MAAM,WAAW,QAAmC,CAAC"}
|