@provoly/dashboard 0.23.3 → 0.23.5
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/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.d.ts +16 -8
- package/admin/i18n/fr.translations.d.ts +1 -0
- package/assets/svgs/six_dot.svg +15 -0
- package/esm2022/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.mjs +28 -6
- package/esm2022/admin/i18n/fr.translations.mjs +3 -2
- package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +3 -3
- package/esm2022/lib/core/components/share/group-share/group-share.component.mjs +34 -15
- package/esm2022/lib/core/components/share/share.utils.mjs +19 -0
- package/esm2022/lib/core/model/filter.interface.mjs +1 -1
- package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
- package/esm2022/lib/core/model/widget.interface.mjs +1 -1
- package/esm2022/lib/core/public-api.mjs +2 -1
- package/esm2022/lib/core/store/config/config.service.mjs +2 -1
- package/esm2022/lib/core/toolbox/toolbox-menu.service.mjs +1 -2
- package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -1
- package/esm2022/lib/dashboard/store/dashboard.effects.mjs +3 -3
- package/esm2022/lib/dashboard/store/manifest.service.mjs +3 -3
- package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +5 -9
- package/esm2022/presentation/components/presentation.component.mjs +43 -5
- package/esm2022/presentation/i18n/fr.translations.mjs +1 -2
- package/esm2022/restitution/components/restitution/restitution.component.mjs +5 -11
- package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +3 -3
- package/esm2022/restitution/components/restitution-list-item/restitution-list-item.component.mjs +3 -3
- package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +14 -5
- package/esm2022/toolbox/components/save-view/save-view.component.mjs +5 -7
- package/esm2022/toolbox/components/share/share.component.mjs +2 -3
- package/fesm2022/provoly-dashboard-admin.mjs +28 -5
- package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-dataset.mjs +2 -2
- package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-presentation.mjs +47 -14
- package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-restitution.mjs +7 -13
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +18 -11
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +57 -19
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/components/share/group-share/group-share.component.d.ts +14 -4
- package/lib/core/components/share/share.utils.d.ts +4 -0
- package/lib/core/model/filter.interface.d.ts +1 -0
- package/lib/core/model/manifest.interface.d.ts +0 -2
- package/lib/core/model/widget.interface.d.ts +0 -1
- package/lib/core/public-api.d.ts +1 -0
- package/lib/dashboard/components/widgets/widget-placement/widget-placement.utils.d.ts +0 -1
- package/lib/dashboard/store/dashboard.actions.d.ts +0 -2
- package/lib/dashboard/store/manifest.service.d.ts +2 -6
- package/package.json +36 -36
- package/presentation/components/presentation.component.d.ts +10 -1
- package/presentation/i18n/fr.translations.d.ts +0 -1
- package/styles/components/_a-label.scss +4 -0
- package/styles-theme/components-theme/_a-btn.theme.scss +0 -1
- package/toolbox/components/filter-settings/filter-settings.component.d.ts +4 -14
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectorRef } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { Group, PryVisibilityType } from '../share.model';
|
|
4
4
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
@@ -10,7 +10,6 @@ export declare class PryGroupShareComponent extends SubscriptionnerDirective imp
|
|
|
10
10
|
private _cd;
|
|
11
11
|
private _onChange;
|
|
12
12
|
private _onTouched;
|
|
13
|
-
_disabled: boolean;
|
|
14
13
|
assignedGroupNames$: BehaviorSubject<string[]>;
|
|
15
14
|
radioValue: PryVisibilityType;
|
|
16
15
|
assignedGroups$: Observable<Group[]>;
|
|
@@ -23,15 +22,26 @@ export declare class PryGroupShareComponent extends SubscriptionnerDirective imp
|
|
|
23
22
|
templateData$: Observable<{
|
|
24
23
|
groups: Group[];
|
|
25
24
|
assignedGroups: Group[];
|
|
25
|
+
disableRadios: {
|
|
26
|
+
[key in PryVisibilityType]: boolean;
|
|
27
|
+
};
|
|
26
28
|
}>;
|
|
29
|
+
_disableRadios$: BehaviorSubject<{
|
|
30
|
+
[key in PryVisibilityType]: boolean;
|
|
31
|
+
}>;
|
|
32
|
+
set disableRadios(value: {
|
|
33
|
+
[key in PryVisibilityType]: boolean;
|
|
34
|
+
} | null);
|
|
35
|
+
_allowedGroups$: BehaviorSubject<string[] | undefined>;
|
|
36
|
+
set allowedGroups(value: string[] | null);
|
|
37
|
+
radioValueChange: EventEmitter<PryVisibilityType>;
|
|
27
38
|
constructor(store: Store, _cd: ChangeDetectorRef);
|
|
28
39
|
writeValue(value: string[] | undefined): void;
|
|
29
40
|
registerOnChange(fn: any): void;
|
|
30
41
|
registerOnTouched(fn: any): void;
|
|
31
|
-
setDisabledState(isDisabled: boolean): void;
|
|
32
42
|
updateRadioValue(groups: string[]): void;
|
|
33
43
|
changeGroupsBasedOnRadioValue(type: PryVisibilityType): void;
|
|
34
44
|
changeGroups(groups: (Group | string)[] | null): void;
|
|
35
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<PryGroupShareComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PryGroupShareComponent, "pry-group-share", never, {}, {}, never, never, false, never>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PryGroupShareComponent, "pry-group-share", never, { "disableRadios": { "alias": "disableRadios"; "required": false; }; "allowedGroups": { "alias": "allowedGroups"; "required": false; }; }, { "radioValueChange": "radioValueChange"; }, never, never, false, never>;
|
|
37
47
|
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ManifestDescription } from '../../model/manifest.interface';
|
|
2
|
+
import { Dataset } from '../../store/data-source/data-source.model';
|
|
3
|
+
export declare const canManifestBeMadePublic: (manifest: ManifestDescription, datasets: Dataset[]) => boolean;
|
|
4
|
+
export declare const getCommonDatasourceGroupsForManifest: (manifest: ManifestDescription, datasets: Dataset[]) => string[];
|
|
@@ -17,7 +17,6 @@ export interface ManifestDescription {
|
|
|
17
17
|
description?: string;
|
|
18
18
|
manifestUrl: string;
|
|
19
19
|
image: string;
|
|
20
|
-
cover: boolean;
|
|
21
20
|
creationDate: string;
|
|
22
21
|
modificationDate: string;
|
|
23
22
|
groups: string[];
|
|
@@ -73,7 +72,6 @@ export interface WidgetManifest {
|
|
|
73
72
|
options?: WidgetOptions;
|
|
74
73
|
datasource?: string | string[];
|
|
75
74
|
header?: boolean;
|
|
76
|
-
cover?: boolean;
|
|
77
75
|
contextMenu?: boolean;
|
|
78
76
|
}
|
|
79
77
|
export interface CustomWidgetOptions {
|
package/lib/core/public-api.d.ts
CHANGED
|
@@ -93,6 +93,7 @@ export * from './components/range/range.module';
|
|
|
93
93
|
export * from './components/share/share.component';
|
|
94
94
|
export * from './components/share/group-share/group-share.component';
|
|
95
95
|
export * from './components/share/share.model';
|
|
96
|
+
export * from './components/share/share.utils';
|
|
96
97
|
export * from './components/share/share.module';
|
|
97
98
|
export * from './components/snackbar/snack.interface';
|
|
98
99
|
export * from './components/snackbar/snackbar.module';
|
|
@@ -14,7 +14,6 @@ export declare const WidgetPlacementUtils: {
|
|
|
14
14
|
options?: import("../../../../core/model/manifest.interface").WidgetOptions | undefined;
|
|
15
15
|
datasource?: string | string[] | undefined;
|
|
16
16
|
header?: boolean | undefined;
|
|
17
|
-
cover?: boolean | undefined;
|
|
18
17
|
contextMenu?: boolean | undefined;
|
|
19
18
|
}[];
|
|
20
19
|
swapArrayElements: (arr: any[], x: number, y: number) => any[];
|
|
@@ -242,7 +242,6 @@ export declare const DashboardActions: {
|
|
|
242
242
|
id: string;
|
|
243
243
|
description?: string | undefined;
|
|
244
244
|
image?: string | undefined;
|
|
245
|
-
cover?: boolean | undefined;
|
|
246
245
|
metadata?: {
|
|
247
246
|
metadataDefId: string;
|
|
248
247
|
value: string;
|
|
@@ -254,7 +253,6 @@ export declare const DashboardActions: {
|
|
|
254
253
|
id: string;
|
|
255
254
|
description?: string | undefined;
|
|
256
255
|
image?: string | undefined;
|
|
257
|
-
cover?: boolean | undefined;
|
|
258
256
|
metadata?: {
|
|
259
257
|
metadataDefId: string;
|
|
260
258
|
value: string;
|
|
@@ -14,14 +14,10 @@ export declare class ManifestService {
|
|
|
14
14
|
constructor(httpClient: HttpClient, store: Store<any>, snackBar: PrySnackbarService, translateService: PryI18nService);
|
|
15
15
|
list(): Observable<ManifestDescription[]>;
|
|
16
16
|
get(id: string): Observable<GlobalManifest>;
|
|
17
|
-
save(name: string, manifest: GlobalManifest, id: string, description?: string, image?: string,
|
|
17
|
+
save(name: string, manifest: GlobalManifest, id: string, description?: string, image?: string, metadata?: {
|
|
18
18
|
metadataDefId: string;
|
|
19
19
|
value: string;
|
|
20
|
-
}[], groups?: string[]): Observable<
|
|
21
|
-
id: string;
|
|
22
|
-
name: string;
|
|
23
|
-
manifest: GlobalManifest;
|
|
24
|
-
} | ShareConflict>;
|
|
20
|
+
}[], groups?: string[]): Observable<ShareConflict>;
|
|
25
21
|
delete(id: string): Observable<void>;
|
|
26
22
|
default(id: string): Observable<boolean>;
|
|
27
23
|
addMetadata(presentationId: string, metadataId: string, value: string): Observable<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.5",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "16.x || 17.x",
|
|
@@ -132,11 +132,35 @@
|
|
|
132
132
|
"esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
133
133
|
"default": "./fesm2022/provoly-dashboard-toolbox.mjs"
|
|
134
134
|
},
|
|
135
|
-
"./
|
|
136
|
-
"types": "./
|
|
137
|
-
"esm2022": "./esm2022/
|
|
138
|
-
"esm": "./esm2022/
|
|
139
|
-
"default": "./fesm2022/provoly-dashboard-
|
|
135
|
+
"./filters/autocomplete": {
|
|
136
|
+
"types": "./filters/autocomplete/index.d.ts",
|
|
137
|
+
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
138
|
+
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
139
|
+
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
140
|
+
},
|
|
141
|
+
"./filters/date": {
|
|
142
|
+
"types": "./filters/date/index.d.ts",
|
|
143
|
+
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
144
|
+
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
145
|
+
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
146
|
+
},
|
|
147
|
+
"./filters/list": {
|
|
148
|
+
"types": "./filters/list/index.d.ts",
|
|
149
|
+
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
150
|
+
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
151
|
+
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
152
|
+
},
|
|
153
|
+
"./filters/number": {
|
|
154
|
+
"types": "./filters/number/index.d.ts",
|
|
155
|
+
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
156
|
+
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
157
|
+
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
158
|
+
},
|
|
159
|
+
"./filters/text": {
|
|
160
|
+
"types": "./filters/text/index.d.ts",
|
|
161
|
+
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
162
|
+
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
163
|
+
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
140
164
|
},
|
|
141
165
|
"./components/card": {
|
|
142
166
|
"types": "./components/card/index.d.ts",
|
|
@@ -144,6 +168,12 @@
|
|
|
144
168
|
"esm": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
145
169
|
"default": "./fesm2022/provoly-dashboard-components-card.mjs"
|
|
146
170
|
},
|
|
171
|
+
"./components/checkbox": {
|
|
172
|
+
"types": "./components/checkbox/index.d.ts",
|
|
173
|
+
"esm2022": "./esm2022/components/checkbox/provoly-dashboard-components-checkbox.mjs",
|
|
174
|
+
"esm": "./esm2022/components/checkbox/provoly-dashboard-components-checkbox.mjs",
|
|
175
|
+
"default": "./fesm2022/provoly-dashboard-components-checkbox.mjs"
|
|
176
|
+
},
|
|
147
177
|
"./components/color-picker": {
|
|
148
178
|
"types": "./components/color-picker/index.d.ts",
|
|
149
179
|
"esm2022": "./esm2022/components/color-picker/provoly-dashboard-components-color-picker.mjs",
|
|
@@ -186,36 +216,6 @@
|
|
|
186
216
|
"esm": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
|
|
187
217
|
"default": "./fesm2022/provoly-dashboard-components-stepper.mjs"
|
|
188
218
|
},
|
|
189
|
-
"./filters/autocomplete": {
|
|
190
|
-
"types": "./filters/autocomplete/index.d.ts",
|
|
191
|
-
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
192
|
-
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
193
|
-
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
194
|
-
},
|
|
195
|
-
"./filters/date": {
|
|
196
|
-
"types": "./filters/date/index.d.ts",
|
|
197
|
-
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
198
|
-
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
199
|
-
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
200
|
-
},
|
|
201
|
-
"./filters/list": {
|
|
202
|
-
"types": "./filters/list/index.d.ts",
|
|
203
|
-
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
204
|
-
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
205
|
-
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
206
|
-
},
|
|
207
|
-
"./filters/number": {
|
|
208
|
-
"types": "./filters/number/index.d.ts",
|
|
209
|
-
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
210
|
-
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
211
|
-
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
212
|
-
},
|
|
213
|
-
"./filters/text": {
|
|
214
|
-
"types": "./filters/text/index.d.ts",
|
|
215
|
-
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
216
|
-
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
217
|
-
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
218
|
-
},
|
|
219
219
|
"./pipeline-components/filter": {
|
|
220
220
|
"types": "./pipeline-components/filter/index.d.ts",
|
|
221
221
|
"esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
|
|
@@ -2,7 +2,7 @@ import { Overlay, OverlayRef } from '@angular/cdk/overlay';
|
|
|
2
2
|
import { ElementRef, NgZone, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
3
3
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
4
|
import { Store } from '@ngrx/store';
|
|
5
|
-
import { DashboardManifest, ManifestDescription, PryTitleService, SubscriptionnerDirective, ViewMode } from '@provoly/dashboard';
|
|
5
|
+
import { DashboardManifest, ManifestDescription, PryTitleService, PryVisibilityType, SubscriptionnerDirective, ViewMode } from '@provoly/dashboard';
|
|
6
6
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class PryPresentationComponent extends SubscriptionnerDirective {
|
|
@@ -36,6 +36,12 @@ export declare class PryPresentationComponent extends SubscriptionnerDirective {
|
|
|
36
36
|
search$: BehaviorSubject<string>;
|
|
37
37
|
filteredPresentations$: Observable<ManifestDescription[]>;
|
|
38
38
|
listOfManifests$: BehaviorSubject<ManifestDescription[] | null>;
|
|
39
|
+
disableShareRadios$: Observable<{
|
|
40
|
+
[key in PryVisibilityType]: boolean;
|
|
41
|
+
}>;
|
|
42
|
+
allowedShareGroups$: Observable<string[]>;
|
|
43
|
+
shareRadioValue$: BehaviorSubject<PryVisibilityType | undefined>;
|
|
44
|
+
disableShareButton$: BehaviorSubject<boolean>;
|
|
39
45
|
mode: 'theme' | 'meta';
|
|
40
46
|
set listOfManifests(manifests: ManifestDescription[] | null);
|
|
41
47
|
hideToolbox: boolean;
|
|
@@ -53,6 +59,9 @@ export declare class PryPresentationComponent extends SubscriptionnerDirective {
|
|
|
53
59
|
focusCrossElement(): void;
|
|
54
60
|
focusValidation(): void;
|
|
55
61
|
editContent(selectedPresentation: ManifestDescription): void;
|
|
62
|
+
updateAccessGroups($event: string[]): void;
|
|
63
|
+
updateVisibility($event: PryVisibilityType): void;
|
|
64
|
+
updateDisableButtonValue(): void;
|
|
56
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<PryPresentationComponent, never>;
|
|
57
66
|
static ɵcmp: i0.ɵɵComponentDeclaration<PryPresentationComponent, "pry-presentation", never, { "editionStartUrl": { "alias": "editionStartUrl"; "required": false; }; "consultStartUrl": { "alias": "consultStartUrl"; "required": false; }; "meAsOwner": { "alias": "meAsOwner"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "listOfManifests": { "alias": "listOfManifests"; "required": false; }; "hideToolbox": { "alias": "hideToolbox"; "required": false; }; "search": { "alias": "search"; "required": false; }; }, {}, never, never, false, never>;
|
|
58
67
|
}
|
|
@@ -13,6 +13,7 @@ export declare enum FilterSteps {
|
|
|
13
13
|
}
|
|
14
14
|
export interface Attribute {
|
|
15
15
|
id: string;
|
|
16
|
+
customId: string;
|
|
16
17
|
technicalName: string;
|
|
17
18
|
label: string;
|
|
18
19
|
datasource: string;
|
|
@@ -48,22 +49,10 @@ export declare class PryFilterSettingsComponent extends ToolboxActionComponent {
|
|
|
48
49
|
value: string;
|
|
49
50
|
}[]>;
|
|
50
51
|
classes: Class[];
|
|
51
|
-
attributes$: Observable<
|
|
52
|
-
id: string;
|
|
53
|
-
technicalName: string;
|
|
54
|
-
label: string;
|
|
55
|
-
datasource: string;
|
|
56
|
-
type: string;
|
|
57
|
-
}[]>;
|
|
52
|
+
attributes$: Observable<Attribute[]>;
|
|
58
53
|
selectedAttribute$: BehaviorSubject<string[]>;
|
|
59
54
|
container: ViewContainerRef;
|
|
60
|
-
attributes:
|
|
61
|
-
id: string;
|
|
62
|
-
technicalName: string;
|
|
63
|
-
label: string;
|
|
64
|
-
datasource: string;
|
|
65
|
-
type: string;
|
|
66
|
-
}[];
|
|
55
|
+
attributes: Attribute[];
|
|
67
56
|
constructor(store: Store, overlay: Overlay, viewContainerRef: ViewContainerRef, filterFactoryService: FilterFactoryService, injector: Injector, i18nService: PryI18nService);
|
|
68
57
|
getDatasourceClass(dataSource: DataSource, classes: Class[]): Class | undefined;
|
|
69
58
|
isValidAttributeForComponentType(componentType: string, attribute: Attribute): boolean;
|
|
@@ -82,6 +71,7 @@ export declare class PryFilterSettingsComponent extends ToolboxActionComponent {
|
|
|
82
71
|
label: string;
|
|
83
72
|
value: string;
|
|
84
73
|
}[];
|
|
74
|
+
getCustomAttributeId(attributeId: string, datasetId: string): string;
|
|
85
75
|
protected readonly FilterSteps: typeof FilterSteps;
|
|
86
76
|
static ɵfac: i0.ɵɵFactoryDeclaration<PryFilterSettingsComponent, never>;
|
|
87
77
|
static ɵcmp: i0.ɵɵComponentDeclaration<PryFilterSettingsComponent, "pry-filter-settings", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, never, false, never>;
|