@dso-toolkit/angular 89.0.0 → 90.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,10 +1,21 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { NgZone, ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
|
|
3
|
-
import { Components, AccordionSectionActiveChangeEvent, AccordionSectionToggleClickEvent, AccordionSectionAnimationStartEvent, AccordionSectionAnimationEndEvent, AdvancedSelectChangeEvent, AdvancedSelectRedirectEvent, AlertCloseEvent, AnnotationActiveChangeEvent, AnnotationKaartClickEvent, Suggestion, CardClickEvent, DatePickerChangeEvent, DatePickerBlurEvent, DatePickerKeyboardEvent, DatePickerFocusEvent, DocumentCardClickEvent, DocumentComponentRecursiveToggleEvent, DocumentComponentOpenToggleEvent, DocumentComponentTableOfContentsClickEvent, DocumentComponentOzonContentClickEvent, DocumentComponentToggleAnnotationEvent, DocumentComponentMarkItemHighlightEvent, ExpandableAnimationStartEvent, ExpandableAnimationEndEvent, HeaderEvent, HistoryItemClickEvent, IconButtonClickEvent, InfoButtonToggleEvent, InputRangeChangeEvent, LegendContentSwitchEvent, LegendCloseEvent, LegendGroupModeChangeEvent, LegendItemActiveChangeEvent, LegendItemDeleteEvent, ListButtonChangeEvent, ListButtonSelectedEvent, LogoClickEvent, LogoLabelClickEvent, BaseLayerChangeEvent, MapControlsToggleEvent, MapLayerActiveChangeEvent, MapLayerObjectActiveChangeEvent, OverlayChangeEvent, MarkBarInputEvent, MarkBarPaginationEvent, MarkBarClearEvent, ModalCloseEvent, OnboardingTipCloseEvent, OzonContentClickEvent, OzonContentMarkItemHighlightEvent, PaginationSelectPageEvent, PanelCloseEvent, PlekinfoCardClickEvent, RenvooiMarkItemHighlightEvent, ResponsiveElementSize, DsoScrollEndEvent, SelectableChangeEvent, SkiplinkClickEvent, SlideToggleActiveEvent, SurveyRatingSubmitEvent, SurveyRatingCloseEvent, TabsSwitchEvent, TreeViewItem, TreeViewPointerEvent, ViewerGridCloseOverlayEvent, ViewerGridCloseFilterPanelEvent, ViewerGridActiveTabSwitchEvent, ViewerGridChangeSizeAnimationEndEvent, ViewerGridChangeSizeEvent, ViewerGridMainToggleEvent } from '@dso-toolkit/core/dist/components';
|
|
3
|
+
import { Components, AccordionSectionActiveChangeEvent, AccordionSectionToggleClickEvent, AccordionSectionAnimationStartEvent, AccordionSectionAnimationEndEvent, AdvancedSelectChangeEvent, AdvancedSelectRedirectEvent, AlertCloseEvent, AnnotationActiveChangeEvent, AnnotationKaartClickEvent, Suggestion, CardClickEvent, DatePickerChangeEvent, DatePickerBlurEvent, DatePickerKeyboardEvent, DatePickerFocusEvent, DocumentCardClickEvent, DocumentComponentRecursiveToggleEvent, DocumentComponentOpenToggleEvent, DocumentComponentTableOfContentsClickEvent, DocumentComponentOzonContentClickEvent, DocumentComponentToggleAnnotationEvent, DocumentComponentMarkItemHighlightEvent, ExpandableAnimationStartEvent, ExpandableAnimationEndEvent, HeaderEvent, HistoryItemClickEvent, IconButtonClickEvent, InfoButtonToggleEvent, InputRangeChangeEvent, LegendContentSwitchEvent, LegendCloseEvent, LegendGroupModeChangeEvent, LegendItemActiveChangeEvent, LegendItemDeleteEvent, ListButtonChangeEvent, ListButtonSelectedEvent, LogoClickEvent, LogoLabelClickEvent, BaseLayerChangeEvent, MapControlsToggleEvent, MapLayerActiveChangeEvent, MapLayerObjectActiveChangeEvent, OverlayChangeEvent, MarkBarInputEvent, MarkBarPaginationEvent, MarkBarClearEvent, ModalCloseEvent, OnboardingTipCloseEvent, OzonContentClickEvent, OzonContentMarkItemHighlightEvent, PaginationSelectPageEvent, PanelCloseEvent, PlekinfoCardClickEvent, RenvooiMarkItemHighlightEvent, ResponsiveElementSize, DsoScrollEndEvent, SegmentedButtonChangeEvent, SelectableChangeEvent, SkiplinkClickEvent, SlideToggleActiveEvent, SurveyRatingSubmitEvent, SurveyRatingCloseEvent, TabsSwitchEvent, TreeViewItem, TreeViewPointerEvent, ViewerGridCloseOverlayEvent, ViewerGridCloseFilterPanelEvent, ViewerGridActiveTabSwitchEvent, ViewerGridChangeSizeAnimationEndEvent, ViewerGridChangeSizeEvent, ViewerGridMainToggleEvent } from '@dso-toolkit/core/dist/components';
|
|
4
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
4
5
|
|
|
5
6
|
declare class DsoAccordion {
|
|
6
7
|
protected z: NgZone;
|
|
7
8
|
protected el: HTMLDsoAccordionElement;
|
|
9
|
+
/**
|
|
10
|
+
* The variant of the Accordion.
|
|
11
|
+
*/
|
|
12
|
+
set variant(_: Components.DsoAccordion['variant']);
|
|
13
|
+
/**
|
|
14
|
+
* Places the chevron at the opposite side.
|
|
15
|
+
|
|
16
|
+
Note: this mode does not display `state`, `attachmentCount` or `status` props on Accordion Sections
|
|
17
|
+
*/
|
|
18
|
+
set reverseAlign(_: Components.DsoAccordion['reverseAlign']);
|
|
8
19
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
9
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoAccordion, never>;
|
|
10
21
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoAccordion, "dso-accordion", never, { "reverseAlign": { "alias": "reverseAlign"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -14,6 +25,64 @@ declare interface DsoAccordion extends Components.DsoAccordion {
|
|
|
14
25
|
declare class DsoAccordionSection {
|
|
15
26
|
protected z: NgZone;
|
|
16
27
|
protected el: HTMLDsoAccordionSectionElement;
|
|
28
|
+
/**
|
|
29
|
+
* The title of the handle
|
|
30
|
+
*/
|
|
31
|
+
set handleTitle(_: Components.DsoAccordionSection['handleTitle']);
|
|
32
|
+
/**
|
|
33
|
+
* An optional 'wijzigactie' that signals if the section is added or removed.
|
|
34
|
+
*/
|
|
35
|
+
set wijzigactie(_: Components.DsoAccordionSection['wijzigactie']);
|
|
36
|
+
/**
|
|
37
|
+
* Which heading element to use. @default "h2"
|
|
38
|
+
*/
|
|
39
|
+
set heading(_: Components.DsoAccordionSection['heading']);
|
|
40
|
+
/**
|
|
41
|
+
* When set the handle will render as a `<a>`. When undefined it renders as a `<button>`
|
|
42
|
+
*/
|
|
43
|
+
set handleUrl(_: Components.DsoAccordionSection['handleUrl']);
|
|
44
|
+
/**
|
|
45
|
+
* `state` takes precedence over `attachmentCount` and `icon`
|
|
46
|
+
*/
|
|
47
|
+
set status(_: Components.DsoAccordionSection['status']);
|
|
48
|
+
/**
|
|
49
|
+
* `attachmentCount` takes precedence over `icon`
|
|
50
|
+
*/
|
|
51
|
+
set attachmentCount(_: Components.DsoAccordionSection['attachmentCount']);
|
|
52
|
+
/**
|
|
53
|
+
* The alias of the icon in the heading handle.
|
|
54
|
+
*/
|
|
55
|
+
set icon(_: Components.DsoAccordionSection['icon']);
|
|
56
|
+
/**
|
|
57
|
+
* The status of the section.
|
|
58
|
+
*/
|
|
59
|
+
set statusDescription(_: Components.DsoAccordionSection['statusDescription']);
|
|
60
|
+
/**
|
|
61
|
+
* Set the Accordion Section open. @default false
|
|
62
|
+
*/
|
|
63
|
+
set open(_: Components.DsoAccordionSection['open']);
|
|
64
|
+
/**
|
|
65
|
+
* Set when this Accordion Section contains or will contain an Accordion. @default false
|
|
66
|
+
*/
|
|
67
|
+
set hasNestedAccordion(_: Components.DsoAccordionSection['hasNestedAccordion']);
|
|
68
|
+
/**
|
|
69
|
+
* The label to be displayed in the heading handle inside a Label (optional)
|
|
70
|
+
*/
|
|
71
|
+
set label(_: Components.DsoAccordionSection['label']);
|
|
72
|
+
/**
|
|
73
|
+
* The status of the Label in the heading handle (optional)
|
|
74
|
+
*/
|
|
75
|
+
set labelStatus(_: Components.DsoAccordionSection['labelStatus']);
|
|
76
|
+
/**
|
|
77
|
+
* A boolean to indicate if the Accordion Section is capable of being activated. When `true` a Slide Toggle displays
|
|
78
|
+
on the right in the heading handle (optional). Works only for `variant` `compact-black` and `reverseAlign` false. @default false
|
|
79
|
+
*/
|
|
80
|
+
set activatable(_: Components.DsoAccordionSection['activatable']);
|
|
81
|
+
/**
|
|
82
|
+
* A boolean to indicate if the Accordion Section is `active`. Only applicable when the Accordion Section is
|
|
83
|
+
`activatable`. @default false
|
|
84
|
+
*/
|
|
85
|
+
set active(_: Components.DsoAccordionSection['active']);
|
|
17
86
|
dsoActiveChange: EventEmitter<CustomEvent<AccordionSectionActiveChangeEvent>>;
|
|
18
87
|
dsoToggleClick: EventEmitter<CustomEvent<AccordionSectionToggleClickEvent>>;
|
|
19
88
|
dsoAnimationStart: EventEmitter<CustomEvent<AccordionSectionAnimationStartEvent>>;
|
|
@@ -43,6 +112,10 @@ declare interface DsoAccordionSection extends Components.DsoAccordionSection {
|
|
|
43
112
|
declare class DsoActionList {
|
|
44
113
|
protected z: NgZone;
|
|
45
114
|
protected el: HTMLDsoActionListElement;
|
|
115
|
+
/**
|
|
116
|
+
* The title.
|
|
117
|
+
*/
|
|
118
|
+
set listTitle(_: Components.DsoActionList['listTitle']);
|
|
46
119
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
47
120
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoActionList, never>;
|
|
48
121
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoActionList, "dso-action-list", never, { "listTitle": { "alias": "listTitle"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -52,6 +125,26 @@ declare interface DsoActionList extends Components.DsoActionList {
|
|
|
52
125
|
declare class DsoActionListItem {
|
|
53
126
|
protected z: NgZone;
|
|
54
127
|
protected el: HTMLDsoActionListItemElement;
|
|
128
|
+
/**
|
|
129
|
+
* The step of the Action List Item.
|
|
130
|
+
*/
|
|
131
|
+
set step(_: Components.DsoActionListItem['step']);
|
|
132
|
+
/**
|
|
133
|
+
* The title of the item.
|
|
134
|
+
*/
|
|
135
|
+
set itemTitle(_: Components.DsoActionListItem['itemTitle']);
|
|
136
|
+
/**
|
|
137
|
+
* Show flow line to next step @default false
|
|
138
|
+
*/
|
|
139
|
+
set flowLine(_: Components.DsoActionListItem['flowLine']);
|
|
140
|
+
/**
|
|
141
|
+
* When there is a warning. @default false
|
|
142
|
+
*/
|
|
143
|
+
set warning(_: Components.DsoActionListItem['warning']);
|
|
144
|
+
/**
|
|
145
|
+
* Places a dashed line at the bottom of the item. @default false
|
|
146
|
+
*/
|
|
147
|
+
set divider(_: Components.DsoActionListItem['divider']);
|
|
55
148
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
56
149
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoActionListItem, never>;
|
|
57
150
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoActionListItem, "dso-action-list-item", never, { "divider": { "alias": "divider"; "required": false; }; "flowLine": { "alias": "flowLine"; "required": false; }; "itemTitle": { "alias": "itemTitle"; "required": false; }; "step": { "alias": "step"; "required": true; }; "warning": { "alias": "warning"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -61,6 +154,18 @@ declare interface DsoActionListItem extends Components.DsoActionListItem {
|
|
|
61
154
|
declare class DsoAdvancedSelect {
|
|
62
155
|
protected z: NgZone;
|
|
63
156
|
protected el: HTMLDsoAdvancedSelectElement;
|
|
157
|
+
/**
|
|
158
|
+
* The options to display in the select. @default []
|
|
159
|
+
*/
|
|
160
|
+
set options(_: Components.DsoAdvancedSelect['options']);
|
|
161
|
+
/**
|
|
162
|
+
* The active option. By object reference.
|
|
163
|
+
*/
|
|
164
|
+
set active(_: Components.DsoAdvancedSelect['active']);
|
|
165
|
+
/**
|
|
166
|
+
* An extra text for the active option. Only visible in the list of options.
|
|
167
|
+
*/
|
|
168
|
+
set activeHint(_: Components.DsoAdvancedSelect['activeHint']);
|
|
64
169
|
dsoChange: EventEmitter<CustomEvent<AdvancedSelectChangeEvent<never>>>;
|
|
65
170
|
dsoRedirect: EventEmitter<CustomEvent<AdvancedSelectRedirectEvent>>;
|
|
66
171
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
@@ -80,6 +185,22 @@ declare interface DsoAdvancedSelect extends Components.DsoAdvancedSelect {
|
|
|
80
185
|
declare class DsoAlert {
|
|
81
186
|
protected z: NgZone;
|
|
82
187
|
protected el: HTMLDsoAlertElement;
|
|
188
|
+
/**
|
|
189
|
+
* Set status of alert
|
|
190
|
+
*/
|
|
191
|
+
set status(_: Components.DsoAlert['status']);
|
|
192
|
+
/**
|
|
193
|
+
* Whether or not to show the role attribute with value "alert". To control the tooltip add the `role-alert` attribute.
|
|
194
|
+
*/
|
|
195
|
+
set roleAlert(_: Components.DsoAlert['roleAlert']);
|
|
196
|
+
/**
|
|
197
|
+
* Show alert as compact variant (without icon)
|
|
198
|
+
*/
|
|
199
|
+
set compact(_: Components.DsoAlert['compact']);
|
|
200
|
+
/**
|
|
201
|
+
* When `false` the close button in the alert will not be rendered. @default false
|
|
202
|
+
*/
|
|
203
|
+
set closable(_: Components.DsoAlert['closable']);
|
|
83
204
|
dsoClose: EventEmitter<CustomEvent<AlertCloseEvent>>;
|
|
84
205
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
85
206
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoAlert, never>;
|
|
@@ -94,6 +215,34 @@ declare interface DsoAlert extends Components.DsoAlert {
|
|
|
94
215
|
declare class DsoAnnotationActiviteit {
|
|
95
216
|
protected z: NgZone;
|
|
96
217
|
protected el: HTMLDsoAnnotationActiviteitElement;
|
|
218
|
+
/**
|
|
219
|
+
* Een optionele wijzigactie die aangeeft of de annotatie toegevoegd of verwijderd is.
|
|
220
|
+
*/
|
|
221
|
+
set wijzigactie(_: Components.DsoAnnotationActiviteit['wijzigactie']);
|
|
222
|
+
/**
|
|
223
|
+
* Een optionele boolean die aangeeft of de annotatie actief is.
|
|
224
|
+
*/
|
|
225
|
+
set active(_: Components.DsoAnnotationActiviteit['active']);
|
|
226
|
+
/**
|
|
227
|
+
* Een optionele boolean die aangeeft of de locatie van de annotatie gewijzigd is.
|
|
228
|
+
*/
|
|
229
|
+
set gewijzigdeLocatie(_: Components.DsoAnnotationActiviteit['gewijzigdeLocatie']);
|
|
230
|
+
/**
|
|
231
|
+
* De naam van de activiteit.
|
|
232
|
+
*/
|
|
233
|
+
set naam(_: Components.DsoAnnotationActiviteit['naam']);
|
|
234
|
+
/**
|
|
235
|
+
* De activiteit regel kwalificatie.
|
|
236
|
+
*/
|
|
237
|
+
set regelKwalificatie(_: Components.DsoAnnotationActiviteit['regelKwalificatie']);
|
|
238
|
+
/**
|
|
239
|
+
* De noemer van de locatie.
|
|
240
|
+
*/
|
|
241
|
+
set locatieNoemers(_: Components.DsoAnnotationActiviteit['locatieNoemers']);
|
|
242
|
+
/**
|
|
243
|
+
* Voorzetsel van de regelKwalificatie. Exclusief dubbele punt.
|
|
244
|
+
*/
|
|
245
|
+
set regelKwalificatieVoorzetsel(_: Components.DsoAnnotationActiviteit['regelKwalificatieVoorzetsel']);
|
|
97
246
|
dsoActiveChange: EventEmitter<CustomEvent<AnnotationActiveChangeEvent>>;
|
|
98
247
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
99
248
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoAnnotationActiviteit, never>;
|
|
@@ -108,6 +257,22 @@ declare interface DsoAnnotationActiviteit extends Components.DsoAnnotationActivi
|
|
|
108
257
|
declare class DsoAnnotationGebiedsaanwijzing {
|
|
109
258
|
protected z: NgZone;
|
|
110
259
|
protected el: HTMLDsoAnnotationGebiedsaanwijzingElement;
|
|
260
|
+
/**
|
|
261
|
+
* Een optionele wijzigactie die aangeeft of de annotatie toegevoegd of verwijderd is.
|
|
262
|
+
*/
|
|
263
|
+
set wijzigactie(_: Components.DsoAnnotationGebiedsaanwijzing['wijzigactie']);
|
|
264
|
+
/**
|
|
265
|
+
* Een optionele boolean die aangeeft of de annotatie actief is.
|
|
266
|
+
*/
|
|
267
|
+
set active(_: Components.DsoAnnotationGebiedsaanwijzing['active']);
|
|
268
|
+
/**
|
|
269
|
+
* Een optionele boolean die aangeeft of de locatie van de annotatie gewijzigd is.
|
|
270
|
+
*/
|
|
271
|
+
set gewijzigdeLocatie(_: Components.DsoAnnotationGebiedsaanwijzing['gewijzigdeLocatie']);
|
|
272
|
+
/**
|
|
273
|
+
* De naam van de gebiedsaanwijzing.
|
|
274
|
+
*/
|
|
275
|
+
set naam(_: Components.DsoAnnotationGebiedsaanwijzing['naam']);
|
|
111
276
|
dsoActiveChange: EventEmitter<CustomEvent<AnnotationActiveChangeEvent>>;
|
|
112
277
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
113
278
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoAnnotationGebiedsaanwijzing, never>;
|
|
@@ -122,6 +287,20 @@ declare interface DsoAnnotationGebiedsaanwijzing extends Components.DsoAnnotatio
|
|
|
122
287
|
declare class DsoAnnotationKaart {
|
|
123
288
|
protected z: NgZone;
|
|
124
289
|
protected el: HTMLDsoAnnotationKaartElement;
|
|
290
|
+
/**
|
|
291
|
+
* Een optionele wijzigactie die aangeeft of de annotatie is toegevoegd of verwijderd.
|
|
292
|
+
*/
|
|
293
|
+
set wijzigactie(_: Components.DsoAnnotationKaart['wijzigactie']);
|
|
294
|
+
/**
|
|
295
|
+
* De naam van de kaart.
|
|
296
|
+
*/
|
|
297
|
+
set naam(_: Components.DsoAnnotationKaart['naam']);
|
|
298
|
+
/**
|
|
299
|
+
* De url naar de kaart.
|
|
300
|
+
|
|
301
|
+
Gebruik het event `dsoClick` om de navigatie aan de router te koppelen.
|
|
302
|
+
*/
|
|
303
|
+
set href(_: Components.DsoAnnotationKaart['href']);
|
|
125
304
|
dsoClick: EventEmitter<CustomEvent<AnnotationKaartClickEvent>>;
|
|
126
305
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
127
306
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoAnnotationKaart, never>;
|
|
@@ -138,6 +317,22 @@ declare interface DsoAnnotationKaart extends Components.DsoAnnotationKaart {
|
|
|
138
317
|
declare class DsoAnnotationLocatie {
|
|
139
318
|
protected z: NgZone;
|
|
140
319
|
protected el: HTMLDsoAnnotationLocatieElement;
|
|
320
|
+
/**
|
|
321
|
+
* Een optionele wijzigactie die aangeeft of de annotatie toegevoegd of verwijderd is.
|
|
322
|
+
*/
|
|
323
|
+
set wijzigactie(_: Components.DsoAnnotationLocatie['wijzigactie']);
|
|
324
|
+
/**
|
|
325
|
+
* Een optionele boolean die aangeeft of de annotatie actief is.
|
|
326
|
+
*/
|
|
327
|
+
set active(_: Components.DsoAnnotationLocatie['active']);
|
|
328
|
+
/**
|
|
329
|
+
* Een optionele boolean die aangeeft of de locatie van de annotatie gewijzigd is.
|
|
330
|
+
*/
|
|
331
|
+
set gewijzigdeLocatie(_: Components.DsoAnnotationLocatie['gewijzigdeLocatie']);
|
|
332
|
+
/**
|
|
333
|
+
* De noemer van de locatie.
|
|
334
|
+
*/
|
|
335
|
+
set locatieNoemer(_: Components.DsoAnnotationLocatie['locatieNoemer']);
|
|
141
336
|
dsoActiveChange: EventEmitter<CustomEvent<AnnotationActiveChangeEvent>>;
|
|
142
337
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
143
338
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoAnnotationLocatie, never>;
|
|
@@ -152,6 +347,34 @@ declare interface DsoAnnotationLocatie extends Components.DsoAnnotationLocatie {
|
|
|
152
347
|
declare class DsoAnnotationOmgevingsnormwaarde {
|
|
153
348
|
protected z: NgZone;
|
|
154
349
|
protected el: HTMLDsoAnnotationOmgevingsnormwaardeElement;
|
|
350
|
+
/**
|
|
351
|
+
* Een optionele wijzigactie die aangeeft of de annotatie toegevoegd of verwijderd is.
|
|
352
|
+
*/
|
|
353
|
+
set wijzigactie(_: Components.DsoAnnotationOmgevingsnormwaarde['wijzigactie']);
|
|
354
|
+
/**
|
|
355
|
+
* Een optionele boolean die aangeeft of de annotatie actief is.
|
|
356
|
+
*/
|
|
357
|
+
set active(_: Components.DsoAnnotationOmgevingsnormwaarde['active']);
|
|
358
|
+
/**
|
|
359
|
+
* Een optionele boolean die aangeeft of de locatie van de annotatie gewijzigd is.
|
|
360
|
+
*/
|
|
361
|
+
set gewijzigdeLocatie(_: Components.DsoAnnotationOmgevingsnormwaarde['gewijzigdeLocatie']);
|
|
362
|
+
/**
|
|
363
|
+
* De naam van de omgevingsnorm of omgevingswaarde.
|
|
364
|
+
*/
|
|
365
|
+
set naam(_: Components.DsoAnnotationOmgevingsnormwaarde['naam']);
|
|
366
|
+
/**
|
|
367
|
+
* De toelichting van de waardes.
|
|
368
|
+
*/
|
|
369
|
+
set toelichting(_: Components.DsoAnnotationOmgevingsnormwaarde['toelichting']);
|
|
370
|
+
/**
|
|
371
|
+
* De waardes van de omgevingsnorm of omgevingswaarde.
|
|
372
|
+
*/
|
|
373
|
+
set waardes(_: Components.DsoAnnotationOmgevingsnormwaarde['waardes']);
|
|
374
|
+
/**
|
|
375
|
+
* De eenheid van de omgevingsnorm of omgevingswaarde.
|
|
376
|
+
*/
|
|
377
|
+
set eenheid(_: Components.DsoAnnotationOmgevingsnormwaarde['eenheid']);
|
|
155
378
|
dsoActiveChange: EventEmitter<CustomEvent<AnnotationActiveChangeEvent>>;
|
|
156
379
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
157
380
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoAnnotationOmgevingsnormwaarde, never>;
|
|
@@ -166,6 +389,10 @@ declare interface DsoAnnotationOmgevingsnormwaarde extends Components.DsoAnnotat
|
|
|
166
389
|
declare class DsoAttachmentsCounter {
|
|
167
390
|
protected z: NgZone;
|
|
168
391
|
protected el: HTMLDsoAttachmentsCounterElement;
|
|
392
|
+
/**
|
|
393
|
+
* The number of attachments.
|
|
394
|
+
*/
|
|
395
|
+
set count(_: Components.DsoAttachmentsCounter['count']);
|
|
169
396
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
170
397
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoAttachmentsCounter, never>;
|
|
171
398
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoAttachmentsCounter, "dso-attachments-counter", never, { "count": { "alias": "count"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -175,6 +402,41 @@ declare interface DsoAttachmentsCounter extends Components.DsoAttachmentsCounter
|
|
|
175
402
|
declare class DsoAutosuggest {
|
|
176
403
|
protected z: NgZone;
|
|
177
404
|
protected el: HTMLDsoAutosuggestElement;
|
|
405
|
+
/**
|
|
406
|
+
* The suggestions for the value of the slotted input element.
|
|
407
|
+
|
|
408
|
+
This can be an array of type Suggestion or an Array of type SuggestionGroup.
|
|
409
|
+
|
|
410
|
+
A suggestionGroup must have a `groupLabel` and `suggestions`.
|
|
411
|
+
|
|
412
|
+
A suggestion must have a `value` and can have a `type`, an `item` or `extras`.
|
|
413
|
+
|
|
414
|
+
The `type` is used to style the suggestion. `item` can be use to reference the original object that was used to
|
|
415
|
+
create the suggestion. `extras` is an array of additional strings to further specify the suggestion.
|
|
416
|
+
|
|
417
|
+
The value should be null when no suggestions have been fetched. @default null
|
|
418
|
+
*/
|
|
419
|
+
set suggestions(_: Components.DsoAutosuggest['suggestions']);
|
|
420
|
+
/**
|
|
421
|
+
* Shows progress indicator when fetching results. @default false
|
|
422
|
+
*/
|
|
423
|
+
set loading(_: Components.DsoAutosuggest['loading']);
|
|
424
|
+
/**
|
|
425
|
+
* To override progress indicator's default loading label. @default "Een moment geduld."
|
|
426
|
+
*/
|
|
427
|
+
set loadingLabel(_: Components.DsoAutosuggest['loadingLabel']);
|
|
428
|
+
/**
|
|
429
|
+
* To delay progress indicator showing (in ms).
|
|
430
|
+
*/
|
|
431
|
+
set loadingDelayed(_: Components.DsoAutosuggest['loadingDelayed']);
|
|
432
|
+
/**
|
|
433
|
+
* To show text when no results are found.
|
|
434
|
+
*/
|
|
435
|
+
set notFoundLabel(_: Components.DsoAutosuggest['notFoundLabel']);
|
|
436
|
+
/**
|
|
437
|
+
* A function provided by the consumer of the autosuggest component, that returns an array of `AutosuggestMarkItem`s
|
|
438
|
+
*/
|
|
439
|
+
set mark(_: Components.DsoAutosuggest['mark']);
|
|
178
440
|
dsoSelect: EventEmitter<CustomEvent<Suggestion>>;
|
|
179
441
|
dsoChange: EventEmitter<CustomEvent<string>>;
|
|
180
442
|
dsoSearch: EventEmitter<CustomEvent<string>>;
|
|
@@ -201,6 +463,10 @@ declare interface DsoAutosuggest extends Components.DsoAutosuggest {
|
|
|
201
463
|
declare class DsoBadge {
|
|
202
464
|
protected z: NgZone;
|
|
203
465
|
protected el: HTMLDsoBadgeElement;
|
|
466
|
+
/**
|
|
467
|
+
* The status of the Badge.
|
|
468
|
+
*/
|
|
469
|
+
set status(_: Components.DsoBadge['status']);
|
|
204
470
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
205
471
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoBadge, never>;
|
|
206
472
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoBadge, "dso-badge", never, { "status": { "alias": "status"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -210,6 +476,20 @@ declare interface DsoBadge extends Components.DsoBadge {
|
|
|
210
476
|
declare class DsoBanner {
|
|
211
477
|
protected z: NgZone;
|
|
212
478
|
protected el: HTMLDsoBannerElement;
|
|
479
|
+
/**
|
|
480
|
+
* The status of the banner.
|
|
481
|
+
*/
|
|
482
|
+
set status(_: Components.DsoBanner['status']);
|
|
483
|
+
/**
|
|
484
|
+
* Compact mode. @default false
|
|
485
|
+
*/
|
|
486
|
+
set compact(_: Components.DsoBanner['compact']);
|
|
487
|
+
/**
|
|
488
|
+
* *Icon can only be hidden when the 'compact' property is set to true.
|
|
489
|
+
|
|
490
|
+
Option to show banner icon. @default false
|
|
491
|
+
*/
|
|
492
|
+
set icon(_: Components.DsoBanner['icon']);
|
|
213
493
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
214
494
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoBanner, never>;
|
|
215
495
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoBanner, "dso-banner", never, { "compact": { "alias": "compact"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "status": { "alias": "status"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -219,6 +499,12 @@ declare interface DsoBanner extends Components.DsoBanner {
|
|
|
219
499
|
declare class DsoButtonGroup {
|
|
220
500
|
protected z: NgZone;
|
|
221
501
|
protected el: HTMLDsoButtonGroupElement;
|
|
502
|
+
/**
|
|
503
|
+
* The direction in which the buttons are displayed.
|
|
504
|
+
|
|
505
|
+
Defaults to `row`. @default "row"
|
|
506
|
+
*/
|
|
507
|
+
set direction(_: Components.DsoButtonGroup['direction']);
|
|
222
508
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
223
509
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoButtonGroup, never>;
|
|
224
510
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoButtonGroup, "dso-button-group", never, { "direction": { "alias": "direction"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -228,6 +514,20 @@ declare interface DsoButtonGroup extends Components.DsoButtonGroup {
|
|
|
228
514
|
declare class DsoCard {
|
|
229
515
|
protected z: NgZone;
|
|
230
516
|
protected el: HTMLDsoCardElement;
|
|
517
|
+
/**
|
|
518
|
+
* The URL to which the Card heading links.
|
|
519
|
+
*/
|
|
520
|
+
set href(_: Components.DsoCard['href']);
|
|
521
|
+
/**
|
|
522
|
+
* Display the link as an external link or a download link
|
|
523
|
+
- "download"
|
|
524
|
+
- "extern"
|
|
525
|
+
*/
|
|
526
|
+
set mode(_: Components.DsoCard['mode']);
|
|
527
|
+
/**
|
|
528
|
+
* Makes the Card active.
|
|
529
|
+
*/
|
|
530
|
+
set active(_: Components.DsoCard['active']);
|
|
231
531
|
dsoCardClick: EventEmitter<CustomEvent<CardClickEvent>>;
|
|
232
532
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
233
533
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoCard, never>;
|
|
@@ -242,6 +542,10 @@ declare interface DsoCard extends Components.DsoCard {
|
|
|
242
542
|
declare class DsoCardContainer {
|
|
243
543
|
protected z: NgZone;
|
|
244
544
|
protected el: HTMLDsoCardContainerElement;
|
|
545
|
+
/**
|
|
546
|
+
* The mode of the Card Container. @default "list"
|
|
547
|
+
*/
|
|
548
|
+
set mode(_: Components.DsoCardContainer['mode']);
|
|
245
549
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
246
550
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoCardContainer, never>;
|
|
247
551
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoCardContainer, "dso-card-container", never, { "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -269,6 +573,49 @@ declare interface DsoCursorTooltip extends Components.DsoCursorTooltip {
|
|
|
269
573
|
declare class DsoDatePicker {
|
|
270
574
|
protected z: NgZone;
|
|
271
575
|
protected el: HTMLDsoDatePickerElement;
|
|
576
|
+
/**
|
|
577
|
+
* Name of the date picker input. @default "dso-date"
|
|
578
|
+
*/
|
|
579
|
+
set name(_: Components.DsoDatePicker['name']);
|
|
580
|
+
/**
|
|
581
|
+
* Adds a unique identifier for the date picker input. Use this instead of html `id` attribute.
|
|
582
|
+
*/
|
|
583
|
+
set identifier(_: Components.DsoDatePicker['identifier']);
|
|
584
|
+
/**
|
|
585
|
+
* Makes the date picker input component disabled. This prevents users from being able to
|
|
586
|
+
interact with the input, and conveys its inactive state to assistive technologies. @default false
|
|
587
|
+
*/
|
|
588
|
+
set disabled(_: Components.DsoDatePicker['disabled']);
|
|
589
|
+
/**
|
|
590
|
+
* Should the input be marked as required? @default false
|
|
591
|
+
*/
|
|
592
|
+
set required(_: Components.DsoDatePicker['required']);
|
|
593
|
+
/**
|
|
594
|
+
* Is input invalid?
|
|
595
|
+
*/
|
|
596
|
+
set invalid(_: Components.DsoDatePicker['invalid']);
|
|
597
|
+
/**
|
|
598
|
+
* ID of element that describes the input element
|
|
599
|
+
*/
|
|
600
|
+
set describedBy(_: Components.DsoDatePicker['describedBy']);
|
|
601
|
+
/**
|
|
602
|
+
* Should the input be focused on load? @default false
|
|
603
|
+
*/
|
|
604
|
+
set dsoAutofocus(_: Components.DsoDatePicker['dsoAutofocus']);
|
|
605
|
+
/**
|
|
606
|
+
* Date value. Must be in Dutch date format: DD-MM-YYYY. @default ""
|
|
607
|
+
*/
|
|
608
|
+
set value(_: Components.DsoDatePicker['value']);
|
|
609
|
+
/**
|
|
610
|
+
* Minimum date allowed to be picked. Must be in Dutch date format: DD-MM-YYYY.
|
|
611
|
+
This setting can be used alone or together with the max property.
|
|
612
|
+
*/
|
|
613
|
+
set min(_: Components.DsoDatePicker['min']);
|
|
614
|
+
/**
|
|
615
|
+
* Maximum date allowed to be picked. Must be in Dutch date format: DD-MM-YYYY.
|
|
616
|
+
This setting can be used alone or together with the min property.
|
|
617
|
+
*/
|
|
618
|
+
set max(_: Components.DsoDatePicker['max']);
|
|
272
619
|
dsoDateChange: EventEmitter<CustomEvent<DatePickerChangeEvent>>;
|
|
273
620
|
dsoBlur: EventEmitter<CustomEvent<DatePickerBlurEvent>>;
|
|
274
621
|
dsoKeyUp: EventEmitter<CustomEvent<DatePickerKeyboardEvent>>;
|
|
@@ -303,6 +650,14 @@ declare interface DsoDatePicker extends Components.DsoDatePicker {
|
|
|
303
650
|
declare class DsoDocumentCard {
|
|
304
651
|
protected z: NgZone;
|
|
305
652
|
protected el: HTMLDsoDocumentCardElement;
|
|
653
|
+
/**
|
|
654
|
+
* The URL to which the DocumentCard heading links.
|
|
655
|
+
*/
|
|
656
|
+
set href(_: Components.DsoDocumentCard['href']);
|
|
657
|
+
/**
|
|
658
|
+
* Makes the DocumentCard active.
|
|
659
|
+
*/
|
|
660
|
+
set active(_: Components.DsoDocumentCard['active']);
|
|
306
661
|
dsoDocumentCardClick: EventEmitter<CustomEvent<DocumentCardClickEvent>>;
|
|
307
662
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
308
663
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoDocumentCard, never>;
|
|
@@ -317,6 +672,107 @@ declare interface DsoDocumentCard extends Components.DsoDocumentCard {
|
|
|
317
672
|
declare class DsoDocumentComponent {
|
|
318
673
|
protected z: NgZone;
|
|
319
674
|
protected el: HTMLDsoDocumentComponentElement;
|
|
675
|
+
/**
|
|
676
|
+
* The heading element to use. @default "h2"
|
|
677
|
+
*/
|
|
678
|
+
set heading(_: Components.DsoDocumentComponent['heading']);
|
|
679
|
+
/**
|
|
680
|
+
* The Kop XML.
|
|
681
|
+
*/
|
|
682
|
+
set kop(_: Components.DsoDocumentComponent['kop']);
|
|
683
|
+
/**
|
|
684
|
+
* The Inhoud XML.
|
|
685
|
+
*/
|
|
686
|
+
set inhoud(_: Components.DsoDocumentComponent['inhoud']);
|
|
687
|
+
/**
|
|
688
|
+
* This boolean attribute indicates whether the children are visible. @default false
|
|
689
|
+
*/
|
|
690
|
+
set open(_: Components.DsoDocumentComponent['open']);
|
|
691
|
+
/**
|
|
692
|
+
* Marks this Document Component as belonging to an active filter. @default false
|
|
693
|
+
*/
|
|
694
|
+
set filtered(_: Components.DsoDocumentComponent['filtered']);
|
|
695
|
+
/**
|
|
696
|
+
* Marks this Document Component as not-applicable. @default false
|
|
697
|
+
*/
|
|
698
|
+
set notApplicable(_: Components.DsoDocumentComponent['notApplicable']);
|
|
699
|
+
/**
|
|
700
|
+
* Text to display in the badge (e.g. "!").
|
|
701
|
+
*/
|
|
702
|
+
set badge(_: Components.DsoDocumentComponent['badge']);
|
|
703
|
+
/**
|
|
704
|
+
* Status/color of the badge.
|
|
705
|
+
*/
|
|
706
|
+
set badgeStatus(_: Components.DsoDocumentComponent['badgeStatus']);
|
|
707
|
+
/**
|
|
708
|
+
* Tooltip text for the badge.
|
|
709
|
+
*/
|
|
710
|
+
set badgeTooltip(_: Components.DsoDocumentComponent['badgeTooltip']);
|
|
711
|
+
/**
|
|
712
|
+
* Text to display in the label (e.g. "Ontwerp", "Besluitversie").
|
|
713
|
+
*/
|
|
714
|
+
set label(_: Components.DsoDocumentComponent['label']);
|
|
715
|
+
/**
|
|
716
|
+
* Status/color of the label.
|
|
717
|
+
*/
|
|
718
|
+
set labelStatus(_: Components.DsoDocumentComponent['labelStatus']);
|
|
719
|
+
/**
|
|
720
|
+
* Enables annotations. @default false
|
|
721
|
+
*/
|
|
722
|
+
set annotated(_: Components.DsoDocumentComponent['annotated']);
|
|
723
|
+
/**
|
|
724
|
+
* Marks Document Component as reserved.
|
|
725
|
+
*/
|
|
726
|
+
set gereserveerd(_: Components.DsoDocumentComponent['gereserveerd']);
|
|
727
|
+
/**
|
|
728
|
+
* Marks the Document Component as expired.
|
|
729
|
+
*/
|
|
730
|
+
set vervallen(_: Components.DsoDocumentComponent['vervallen']);
|
|
731
|
+
/**
|
|
732
|
+
* When the Annotation is opened, set this to true. @default false
|
|
733
|
+
*/
|
|
734
|
+
set openAnnotation(_: Components.DsoDocumentComponent['openAnnotation']);
|
|
735
|
+
/**
|
|
736
|
+
* An alternative title to show when there is nothing to create a title.
|
|
737
|
+
*/
|
|
738
|
+
set alternativeTitle(_: Components.DsoDocumentComponent['alternativeTitle']);
|
|
739
|
+
/**
|
|
740
|
+
* Type of Document Component.
|
|
741
|
+
*/
|
|
742
|
+
set type(_: Components.DsoDocumentComponent['type']);
|
|
743
|
+
/**
|
|
744
|
+
* The wijzigactie as in STOP.
|
|
745
|
+
*/
|
|
746
|
+
set wijzigactie(_: Components.DsoDocumentComponent['wijzigactie']);
|
|
747
|
+
/**
|
|
748
|
+
* The wijzigactie for all annotations.
|
|
749
|
+
*/
|
|
750
|
+
set annotationsWijzigactie(_: Components.DsoDocumentComponent['annotationsWijzigactie']);
|
|
751
|
+
/**
|
|
752
|
+
* To mark text.
|
|
753
|
+
*/
|
|
754
|
+
set mark(_: Components.DsoDocumentComponent['mark']);
|
|
755
|
+
/**
|
|
756
|
+
* Shows the recursive toggle button. When the user activates this button the event `dsoRecursiveToggle` is emitted.
|
|
757
|
+
*/
|
|
758
|
+
set recursiveToggle(_: Components.DsoDocumentComponent['recursiveToggle']);
|
|
759
|
+
/**
|
|
760
|
+
* A UrlResolver that will be called for all STOP elements that render to HTML5 elements with external references.
|
|
761
|
+
*/
|
|
762
|
+
set ozonContentUrlResolver(_: Components.DsoDocumentComponent['ozonContentUrlResolver']);
|
|
763
|
+
/**
|
|
764
|
+
* A BegripResolver that will be called for STOP element "IntRef". If the ref-attribute of IntRef points to a Begrip it
|
|
765
|
+
should return the `<Definitie>` of that Begrip otherwise it should return undefined.
|
|
766
|
+
*/
|
|
767
|
+
set ozonContentBegripResolver(_: Components.DsoDocumentComponent['ozonContentBegripResolver']);
|
|
768
|
+
/**
|
|
769
|
+
* The mode of the Document Component. One of "document" or "table-of-contents". Defaults to "document" @default "document"
|
|
770
|
+
*/
|
|
771
|
+
set mode(_: Components.DsoDocumentComponent['mode']);
|
|
772
|
+
/**
|
|
773
|
+
* The URL to which the Heading links (only in mode="table-of-contents").
|
|
774
|
+
*/
|
|
775
|
+
set href(_: Components.DsoDocumentComponent['href']);
|
|
320
776
|
dsoRecursiveToggle: EventEmitter<CustomEvent<DocumentComponentRecursiveToggleEvent>>;
|
|
321
777
|
dsoOpenToggle: EventEmitter<CustomEvent<DocumentComponentOpenToggleEvent>>;
|
|
322
778
|
dsoTableOfContentsClick: EventEmitter<CustomEvent<DocumentComponentTableOfContentsClickEvent>>;
|
|
@@ -325,7 +781,7 @@ declare class DsoDocumentComponent {
|
|
|
325
781
|
dsoMarkItemHighlight: EventEmitter<CustomEvent<DocumentComponentMarkItemHighlightEvent>>;
|
|
326
782
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
327
783
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoDocumentComponent, never>;
|
|
328
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DsoDocumentComponent, "dso-document-component", never, { "alternativeTitle": { "alias": "alternativeTitle"; "required": false; }; "annotated": { "alias": "annotated"; "required": false; }; "annotationsWijzigactie": { "alias": "annotationsWijzigactie"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "badgeStatus": { "alias": "badgeStatus"; "required": false; }; "badgeTooltip": { "alias": "badgeTooltip"; "required": false; }; "filtered": { "alias": "filtered"; "required": false; }; "gereserveerd": { "alias": "gereserveerd"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "href": { "alias": "href"; "required": false; }; "inhoud": { "alias": "inhoud"; "required": false; }; "kop": { "alias": "kop"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelStatus": { "alias": "labelStatus"; "required": false; }; "mark": { "alias": "mark"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "notApplicable": { "alias": "notApplicable"; "required": false; }; "open": { "alias": "open"; "required": false; }; "openAnnotation": { "alias": "openAnnotation"; "required": false; }; "ozonContentBegripResolver": { "alias": "ozonContentBegripResolver"; "required": false; }; "ozonContentUrlResolver": { "alias": "ozonContentUrlResolver"; "required": false; }; "recursiveToggle": { "alias": "recursiveToggle"; "required": false; }; "type": { "alias": "type"; "required":
|
|
784
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DsoDocumentComponent, "dso-document-component", never, { "alternativeTitle": { "alias": "alternativeTitle"; "required": false; }; "annotated": { "alias": "annotated"; "required": false; }; "annotationsWijzigactie": { "alias": "annotationsWijzigactie"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "badgeStatus": { "alias": "badgeStatus"; "required": false; }; "badgeTooltip": { "alias": "badgeTooltip"; "required": false; }; "filtered": { "alias": "filtered"; "required": false; }; "gereserveerd": { "alias": "gereserveerd"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "href": { "alias": "href"; "required": false; }; "inhoud": { "alias": "inhoud"; "required": false; }; "kop": { "alias": "kop"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelStatus": { "alias": "labelStatus"; "required": false; }; "mark": { "alias": "mark"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "notApplicable": { "alias": "notApplicable"; "required": false; }; "open": { "alias": "open"; "required": false; }; "openAnnotation": { "alias": "openAnnotation"; "required": false; }; "ozonContentBegripResolver": { "alias": "ozonContentBegripResolver"; "required": false; }; "ozonContentUrlResolver": { "alias": "ozonContentUrlResolver"; "required": false; }; "recursiveToggle": { "alias": "recursiveToggle"; "required": false; }; "type": { "alias": "type"; "required": true; }; "vervallen": { "alias": "vervallen"; "required": false; }; "wijzigactie": { "alias": "wijzigactie"; "required": false; }; }, { "dsoRecursiveToggle": "dsoRecursiveToggle"; "dsoOpenToggle": "dsoOpenToggle"; "dsoTableOfContentsClick": "dsoTableOfContentsClick"; "dsoOzonContentClick": "dsoOzonContentClick"; "dsoAnnotationToggle": "dsoAnnotationToggle"; "dsoMarkItemHighlight": "dsoMarkItemHighlight"; }, never, ["*"], true, never>;
|
|
329
785
|
}
|
|
330
786
|
declare interface DsoDocumentComponent extends Components.DsoDocumentComponent {
|
|
331
787
|
/**
|
|
@@ -356,6 +812,23 @@ declare interface DsoDocumentComponent extends Components.DsoDocumentComponent {
|
|
|
356
812
|
declare class DsoDropdownMenu {
|
|
357
813
|
protected z: NgZone;
|
|
358
814
|
protected el: HTMLDsoDropdownMenuElement;
|
|
815
|
+
/**
|
|
816
|
+
* Whether the menu is open or closed.
|
|
817
|
+
This attribute is reflected and mutable. @default false
|
|
818
|
+
*/
|
|
819
|
+
set open(_: Components.DsoDropdownMenu['open']);
|
|
820
|
+
/**
|
|
821
|
+
* Alignment of the dropdown @default "left"
|
|
822
|
+
*/
|
|
823
|
+
set dropdownAlign(_: Components.DsoDropdownMenu['dropdownAlign']);
|
|
824
|
+
/**
|
|
825
|
+
* Space between button and dropdown options @default 2
|
|
826
|
+
*/
|
|
827
|
+
set dropdownOptionsOffset(_: Components.DsoDropdownMenu['dropdownOptionsOffset']);
|
|
828
|
+
/**
|
|
829
|
+
* Whether the menu is checkable. @default false
|
|
830
|
+
*/
|
|
831
|
+
set checkable(_: Components.DsoDropdownMenu['checkable']);
|
|
359
832
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
360
833
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoDropdownMenu, never>;
|
|
361
834
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoDropdownMenu, "dso-dropdown-menu", never, { "checkable": { "alias": "checkable"; "required": false; }; "dropdownAlign": { "alias": "dropdownAlign"; "required": false; }; "dropdownOptionsOffset": { "alias": "dropdownOptionsOffset"; "required": false; }; "open": { "alias": "open"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -365,6 +838,18 @@ declare interface DsoDropdownMenu extends Components.DsoDropdownMenu {
|
|
|
365
838
|
declare class DsoExpandable {
|
|
366
839
|
protected z: NgZone;
|
|
367
840
|
protected el: HTMLDsoExpandableElement;
|
|
841
|
+
/**
|
|
842
|
+
* Set to `true` to expand the content.
|
|
843
|
+
*/
|
|
844
|
+
set open(_: Components.DsoExpandable['open']);
|
|
845
|
+
/**
|
|
846
|
+
* Set to `true` to show the content animated. @default false
|
|
847
|
+
*/
|
|
848
|
+
set enableAnimation(_: Components.DsoExpandable['enableAnimation']);
|
|
849
|
+
/**
|
|
850
|
+
* When enableAnimation is set to `true`, this property specifies the height of this element at which the animation will expand from / collapse to
|
|
851
|
+
*/
|
|
852
|
+
set minimumHeight(_: Components.DsoExpandable['minimumHeight']);
|
|
368
853
|
dsoExpandableAnimationStart: EventEmitter<CustomEvent<ExpandableAnimationStartEvent>>;
|
|
369
854
|
dsoExpandableAnimationEnd: EventEmitter<CustomEvent<ExpandableAnimationEndEvent>>;
|
|
370
855
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
@@ -384,6 +869,54 @@ declare interface DsoExpandable extends Components.DsoExpandable {
|
|
|
384
869
|
declare class DsoHeader {
|
|
385
870
|
protected z: NgZone;
|
|
386
871
|
protected el: HTMLDsoHeaderElement;
|
|
872
|
+
/**
|
|
873
|
+
* The main menu items. @default []
|
|
874
|
+
*/
|
|
875
|
+
set mainMenu(_: Components.DsoHeader['mainMenu']);
|
|
876
|
+
/**
|
|
877
|
+
* Set to "always" to force the header to be compact. Otherwise it will be compact when
|
|
878
|
+
the viewport is smaller than 992px. @default "auto"
|
|
879
|
+
*/
|
|
880
|
+
set compact(_: Components.DsoHeader['compact']);
|
|
881
|
+
/**
|
|
882
|
+
* Used to show the login/logout option. 'none' renders nothing. @default "none"
|
|
883
|
+
*/
|
|
884
|
+
set authStatus(_: Components.DsoHeader['authStatus']);
|
|
885
|
+
/**
|
|
886
|
+
* When the `authStatus` is `loggedOut` a loginUrl can be provided.
|
|
887
|
+
The login button will then render as an anchor.
|
|
888
|
+
*/
|
|
889
|
+
set loginUrl(_: Components.DsoHeader['loginUrl']);
|
|
890
|
+
/**
|
|
891
|
+
* The URL to open when the user activates "logout".
|
|
892
|
+
If no URL is specified, a button element is used instead.
|
|
893
|
+
*/
|
|
894
|
+
set logoutUrl(_: Components.DsoHeader['logoutUrl']);
|
|
895
|
+
/**
|
|
896
|
+
* Show a help-button or link in the header @default false
|
|
897
|
+
*/
|
|
898
|
+
set showHelp(_: Components.DsoHeader['showHelp']);
|
|
899
|
+
/**
|
|
900
|
+
* The URL to open when the user activates "help".
|
|
901
|
+
If no URL is specified, a button element is used instead.
|
|
902
|
+
*/
|
|
903
|
+
set helpUrl(_: Components.DsoHeader['helpUrl']);
|
|
904
|
+
/**
|
|
905
|
+
* The name to show when the user is logged in.
|
|
906
|
+
*/
|
|
907
|
+
set userProfileName(_: Components.DsoHeader['userProfileName']);
|
|
908
|
+
/**
|
|
909
|
+
* The URL to open when the user activates the profile url.
|
|
910
|
+
*/
|
|
911
|
+
set userProfileUrl(_: Components.DsoHeader['userProfileUrl']);
|
|
912
|
+
/**
|
|
913
|
+
* The URL to open when the user activates "Mijn Omgevingsloket".
|
|
914
|
+
*/
|
|
915
|
+
set userHomeUrl(_: Components.DsoHeader['userHomeUrl']);
|
|
916
|
+
/**
|
|
917
|
+
* Set this to true when the user is at "Mijn Omgevingsloket". @default false
|
|
918
|
+
*/
|
|
919
|
+
set userHomeActive(_: Components.DsoHeader['userHomeActive']);
|
|
387
920
|
dsoHeaderClick: EventEmitter<CustomEvent<HeaderEvent>>;
|
|
388
921
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
389
922
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoHeader, never>;
|
|
@@ -400,6 +933,30 @@ declare interface DsoHeader extends Components.DsoHeader {
|
|
|
400
933
|
declare class DsoHighlightBox {
|
|
401
934
|
protected z: NgZone;
|
|
402
935
|
protected el: HTMLDsoHighlightBoxElement;
|
|
936
|
+
/**
|
|
937
|
+
* For yellow Highlight Box.
|
|
938
|
+
*/
|
|
939
|
+
set yellow(_: Components.DsoHighlightBox['yellow']);
|
|
940
|
+
/**
|
|
941
|
+
* For a bordered Highlight Box.
|
|
942
|
+
*/
|
|
943
|
+
set border(_: Components.DsoHighlightBox['border']);
|
|
944
|
+
/**
|
|
945
|
+
* For a white Highlight Box.
|
|
946
|
+
*/
|
|
947
|
+
set white(_: Components.DsoHighlightBox['white']);
|
|
948
|
+
/**
|
|
949
|
+
* For a green Highlight Box.
|
|
950
|
+
*/
|
|
951
|
+
set green(_: Components.DsoHighlightBox['green']);
|
|
952
|
+
/**
|
|
953
|
+
* For an Highlight Box with a drop shadow.
|
|
954
|
+
*/
|
|
955
|
+
set dropShadow(_: Components.DsoHighlightBox['dropShadow']);
|
|
956
|
+
/**
|
|
957
|
+
* To create a step indicator.
|
|
958
|
+
*/
|
|
959
|
+
set step(_: Components.DsoHighlightBox['step']);
|
|
403
960
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
404
961
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoHighlightBox, never>;
|
|
405
962
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoHighlightBox, "dso-highlight-box", never, { "border": { "alias": "border"; "required": false; }; "dropShadow": { "alias": "dropShadow"; "required": false; }; "green": { "alias": "green"; "required": false; }; "step": { "alias": "step"; "required": false; }; "white": { "alias": "white"; "required": false; }; "yellow": { "alias": "yellow"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -409,6 +966,14 @@ declare interface DsoHighlightBox extends Components.DsoHighlightBox {
|
|
|
409
966
|
declare class DsoHistoryItem {
|
|
410
967
|
protected z: NgZone;
|
|
411
968
|
protected el: HTMLDsoHistoryItemElement;
|
|
969
|
+
/**
|
|
970
|
+
* The type of History Item
|
|
971
|
+
*/
|
|
972
|
+
set type(_: Components.DsoHistoryItem['type']);
|
|
973
|
+
/**
|
|
974
|
+
* The optional URL to which the History Item title links. Needs to be provided when slot `title` is used.
|
|
975
|
+
*/
|
|
976
|
+
set href(_: Components.DsoHistoryItem['href']);
|
|
412
977
|
dsoClick: EventEmitter<CustomEvent<HistoryItemClickEvent>>;
|
|
413
978
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
414
979
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoHistoryItem, never>;
|
|
@@ -423,6 +988,10 @@ declare interface DsoHistoryItem extends Components.DsoHistoryItem {
|
|
|
423
988
|
declare class DsoIcon {
|
|
424
989
|
protected z: NgZone;
|
|
425
990
|
protected el: HTMLDsoIconElement;
|
|
991
|
+
/**
|
|
992
|
+
* The alias of the icon.
|
|
993
|
+
*/
|
|
994
|
+
set icon(_: Components.DsoIcon['icon']);
|
|
426
995
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
427
996
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoIcon, never>;
|
|
428
997
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoIcon, "dso-icon", never, { "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -432,6 +1001,26 @@ declare interface DsoIcon extends Components.DsoIcon {
|
|
|
432
1001
|
declare class DsoIconButton {
|
|
433
1002
|
protected z: NgZone;
|
|
434
1003
|
protected el: HTMLDsoIconButtonElement;
|
|
1004
|
+
/**
|
|
1005
|
+
* The alias of the icon in the button.
|
|
1006
|
+
*/
|
|
1007
|
+
set icon(_: Components.DsoIconButton['icon']);
|
|
1008
|
+
/**
|
|
1009
|
+
* The label of the Icon Button which is shown on hover in a tooltip.
|
|
1010
|
+
*/
|
|
1011
|
+
set label(_: Components.DsoIconButton['label']);
|
|
1012
|
+
/**
|
|
1013
|
+
* The variant of the Icon Button. @default "secondary"
|
|
1014
|
+
*/
|
|
1015
|
+
set variant(_: Components.DsoIconButton['variant']);
|
|
1016
|
+
/**
|
|
1017
|
+
* The placement of the tooltip on hover and focus of the Icon Button. @default "top"
|
|
1018
|
+
*/
|
|
1019
|
+
set tooltipPlacement(_: Components.DsoIconButton['tooltipPlacement']);
|
|
1020
|
+
/**
|
|
1021
|
+
* To disable the Icon Button @default false
|
|
1022
|
+
*/
|
|
1023
|
+
set disabled(_: Components.DsoIconButton['disabled']);
|
|
435
1024
|
dsoClick: EventEmitter<CustomEvent<IconButtonClickEvent>>;
|
|
436
1025
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
437
1026
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoIconButton, never>;
|
|
@@ -446,6 +1035,10 @@ declare interface DsoIconButton extends Components.DsoIconButton {
|
|
|
446
1035
|
declare class DsoImageOverlay {
|
|
447
1036
|
protected z: NgZone;
|
|
448
1037
|
protected el: HTMLDsoImageOverlayElement;
|
|
1038
|
+
/**
|
|
1039
|
+
* The wijzigactie.
|
|
1040
|
+
*/
|
|
1041
|
+
set wijzigactie(_: Components.DsoImageOverlay['wijzigactie']);
|
|
449
1042
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
450
1043
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoImageOverlay, never>;
|
|
451
1044
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoImageOverlay, "dso-image-overlay", never, { "wijzigactie": { "alias": "wijzigactie"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -455,6 +1048,14 @@ declare interface DsoImageOverlay extends Components.DsoImageOverlay {
|
|
|
455
1048
|
declare class DsoInfo {
|
|
456
1049
|
protected z: NgZone;
|
|
457
1050
|
protected el: HTMLDsoInfoElement;
|
|
1051
|
+
/**
|
|
1052
|
+
* Set to true if the Info should not be toggled and always visible.
|
|
1053
|
+
*/
|
|
1054
|
+
set fixed(_: Components.DsoInfo['fixed']);
|
|
1055
|
+
/**
|
|
1056
|
+
* Whether the Info is active.
|
|
1057
|
+
*/
|
|
1058
|
+
set active(_: Components.DsoInfo['active']);
|
|
458
1059
|
dsoClose: EventEmitter<CustomEvent<MouseEvent>>;
|
|
459
1060
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
460
1061
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoInfo, never>;
|
|
@@ -469,6 +1070,22 @@ declare interface DsoInfo extends Components.DsoInfo {
|
|
|
469
1070
|
declare class DsoInfoButton {
|
|
470
1071
|
protected z: NgZone;
|
|
471
1072
|
protected el: HTMLDsoInfoButtonElement;
|
|
1073
|
+
/**
|
|
1074
|
+
* Whether the InfoButton is active. @default false
|
|
1075
|
+
*/
|
|
1076
|
+
set active(_: Components.DsoInfoButton['active']);
|
|
1077
|
+
/**
|
|
1078
|
+
* For secondary Info Button.
|
|
1079
|
+
*/
|
|
1080
|
+
set secondary(_: Components.DsoInfoButton['secondary']);
|
|
1081
|
+
/**
|
|
1082
|
+
* The label. @default "Toelichting bij optie"
|
|
1083
|
+
*/
|
|
1084
|
+
set label(_: Components.DsoInfoButton['label']);
|
|
1085
|
+
/**
|
|
1086
|
+
* The placement of the Toggletip on click. @default "top"
|
|
1087
|
+
*/
|
|
1088
|
+
set toggletipPlacement(_: Components.DsoInfoButton['toggletipPlacement']);
|
|
472
1089
|
dsoToggle: EventEmitter<CustomEvent<InfoButtonToggleEvent>>;
|
|
473
1090
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
474
1091
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoInfoButton, never>;
|
|
@@ -483,6 +1100,34 @@ declare interface DsoInfoButton extends Components.DsoInfoButton {
|
|
|
483
1100
|
declare class DsoInputRange {
|
|
484
1101
|
protected z: NgZone;
|
|
485
1102
|
protected el: HTMLDsoInputRangeElement;
|
|
1103
|
+
/**
|
|
1104
|
+
* The minimum value of the range.
|
|
1105
|
+
*/
|
|
1106
|
+
set min(_: Components.DsoInputRange['min']);
|
|
1107
|
+
/**
|
|
1108
|
+
* The maximum value of the range.
|
|
1109
|
+
*/
|
|
1110
|
+
set max(_: Components.DsoInputRange['max']);
|
|
1111
|
+
/**
|
|
1112
|
+
* The value of the range.
|
|
1113
|
+
*/
|
|
1114
|
+
set value(_: Components.DsoInputRange['value']);
|
|
1115
|
+
/**
|
|
1116
|
+
* The step to increment the value by.
|
|
1117
|
+
*/
|
|
1118
|
+
set step(_: Components.DsoInputRange['step']);
|
|
1119
|
+
/**
|
|
1120
|
+
* The label of the range.
|
|
1121
|
+
*/
|
|
1122
|
+
set label(_: Components.DsoInputRange['label']);
|
|
1123
|
+
/**
|
|
1124
|
+
* The unit of the range. @default ""
|
|
1125
|
+
*/
|
|
1126
|
+
set unit(_: Components.DsoInputRange['unit']);
|
|
1127
|
+
/**
|
|
1128
|
+
* The description of the range.
|
|
1129
|
+
*/
|
|
1130
|
+
set description(_: Components.DsoInputRange['description']);
|
|
486
1131
|
dsoChange: EventEmitter<CustomEvent<InputRangeChangeEvent>>;
|
|
487
1132
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
488
1133
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoInputRange, never>;
|
|
@@ -497,6 +1142,22 @@ declare interface DsoInputRange extends Components.DsoInputRange {
|
|
|
497
1142
|
declare class DsoLabel {
|
|
498
1143
|
protected z: NgZone;
|
|
499
1144
|
protected el: HTMLDsoLabelElement;
|
|
1145
|
+
/**
|
|
1146
|
+
* For compact Label
|
|
1147
|
+
*/
|
|
1148
|
+
set compact(_: Components.DsoLabel['compact']);
|
|
1149
|
+
/**
|
|
1150
|
+
* Shows a button that can be used to remove the Label.
|
|
1151
|
+
*/
|
|
1152
|
+
set removable(_: Components.DsoLabel['removable']);
|
|
1153
|
+
/**
|
|
1154
|
+
* The status of this Label.
|
|
1155
|
+
*/
|
|
1156
|
+
set status(_: Components.DsoLabel['status']);
|
|
1157
|
+
/**
|
|
1158
|
+
* Whether the Label is allowed to truncate the contents if it does not fit the container element.
|
|
1159
|
+
*/
|
|
1160
|
+
set truncate(_: Components.DsoLabel['truncate']);
|
|
500
1161
|
dsoRemoveClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
501
1162
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
502
1163
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoLabel, never>;
|
|
@@ -511,6 +1172,10 @@ declare interface DsoLabel extends Components.DsoLabel {
|
|
|
511
1172
|
declare class DsoLegend {
|
|
512
1173
|
protected z: NgZone;
|
|
513
1174
|
protected el: HTMLDsoLegendElement;
|
|
1175
|
+
/**
|
|
1176
|
+
* TabItems in the legend topbar @default []
|
|
1177
|
+
*/
|
|
1178
|
+
set tabItems(_: Components.DsoLegend['tabItems']);
|
|
514
1179
|
dsoContentSwitch: EventEmitter<CustomEvent<LegendContentSwitchEvent>>;
|
|
515
1180
|
dsoClose: EventEmitter<CustomEvent<LegendCloseEvent>>;
|
|
516
1181
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
@@ -530,6 +1195,11 @@ declare interface DsoLegend extends Components.DsoLegend {
|
|
|
530
1195
|
declare class DsoLegendGroup {
|
|
531
1196
|
protected z: NgZone;
|
|
532
1197
|
protected el: HTMLDsoLegendGroupElement;
|
|
1198
|
+
/**
|
|
1199
|
+
* Controls whether this Legend Group and its child Legend Items are in edit or view mode.
|
|
1200
|
+
When not set, no edit/view toggle icon is shown.
|
|
1201
|
+
*/
|
|
1202
|
+
set mode(_: Components.DsoLegendGroup['mode']);
|
|
533
1203
|
dsoLegendGroupModeChange: EventEmitter<CustomEvent<LegendGroupModeChangeEvent>>;
|
|
534
1204
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
535
1205
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoLegendGroup, never>;
|
|
@@ -544,6 +1214,22 @@ declare interface DsoLegendGroup extends Components.DsoLegendGroup {
|
|
|
544
1214
|
declare class DsoLegendItem {
|
|
545
1215
|
protected z: NgZone;
|
|
546
1216
|
protected el: HTMLDsoLegendItemElement;
|
|
1217
|
+
/**
|
|
1218
|
+
* To disable the Legend Item @default false
|
|
1219
|
+
*/
|
|
1220
|
+
set disabled(_: Components.DsoLegendItem['disabled']);
|
|
1221
|
+
/**
|
|
1222
|
+
* Message to be shown in an info-button tooltip when the Legend Item is disabled
|
|
1223
|
+
*/
|
|
1224
|
+
set disabledMessage(_: Components.DsoLegendItem['disabledMessage']);
|
|
1225
|
+
/**
|
|
1226
|
+
* Controls whether this Legend Item can be active or not
|
|
1227
|
+
*/
|
|
1228
|
+
set activatable(_: Components.DsoLegendItem['activatable']);
|
|
1229
|
+
/**
|
|
1230
|
+
* Controls whether this Legend Item is active or not
|
|
1231
|
+
*/
|
|
1232
|
+
set active(_: Components.DsoLegendItem['active']);
|
|
547
1233
|
dsoActiveChange: EventEmitter<CustomEvent<LegendItemActiveChangeEvent>>;
|
|
548
1234
|
dsoDelete: EventEmitter<CustomEvent<LegendItemDeleteEvent>>;
|
|
549
1235
|
dsoMouseEnter: EventEmitter<CustomEvent<any>>;
|
|
@@ -573,6 +1259,38 @@ declare interface DsoLegendItem extends Components.DsoLegendItem {
|
|
|
573
1259
|
declare class DsoListButton {
|
|
574
1260
|
protected z: NgZone;
|
|
575
1261
|
protected el: HTMLDsoListButtonElement;
|
|
1262
|
+
/**
|
|
1263
|
+
* The label of the List Button.
|
|
1264
|
+
*/
|
|
1265
|
+
set label(_: Components.DsoListButton['label']);
|
|
1266
|
+
/**
|
|
1267
|
+
* The sublabel of the List Button.
|
|
1268
|
+
*/
|
|
1269
|
+
set sublabel(_: Components.DsoListButton['sublabel']);
|
|
1270
|
+
/**
|
|
1271
|
+
* When defined the count can show on the List Button.
|
|
1272
|
+
*/
|
|
1273
|
+
set count(_: Components.DsoListButton['count']);
|
|
1274
|
+
/**
|
|
1275
|
+
* The minimum value.
|
|
1276
|
+
*/
|
|
1277
|
+
set min(_: Components.DsoListButton['min']);
|
|
1278
|
+
/**
|
|
1279
|
+
* The maximum value.
|
|
1280
|
+
*/
|
|
1281
|
+
set max(_: Components.DsoListButton['max']);
|
|
1282
|
+
/**
|
|
1283
|
+
* Whether the List Button is checked. @default false
|
|
1284
|
+
*/
|
|
1285
|
+
set checked(_: Components.DsoListButton['checked']);
|
|
1286
|
+
/**
|
|
1287
|
+
* Whether the List Button is disabled. @default false
|
|
1288
|
+
*/
|
|
1289
|
+
set disabled(_: Components.DsoListButton['disabled']);
|
|
1290
|
+
/**
|
|
1291
|
+
* Prefix to subcontent for the purpose of screenreading.
|
|
1292
|
+
*/
|
|
1293
|
+
set subcontentPrefix(_: Components.DsoListButton['subcontentPrefix']);
|
|
576
1294
|
dsoCountChange: EventEmitter<CustomEvent<ListButtonChangeEvent>>;
|
|
577
1295
|
dsoSelectedChange: EventEmitter<CustomEvent<ListButtonSelectedEvent>>;
|
|
578
1296
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
@@ -594,6 +1312,32 @@ declare interface DsoListButton extends Components.DsoListButton {
|
|
|
594
1312
|
declare class DsoLogo {
|
|
595
1313
|
protected z: NgZone;
|
|
596
1314
|
protected el: HTMLDsoLogoElement;
|
|
1315
|
+
/**
|
|
1316
|
+
* An alternative name for the logo wordmark Omgevingsloket. For instance `Environment| Desk`. It should contains a
|
|
1317
|
+
pipe-character: the left-hand side of the pipe will be shown in grasgroen, the right-hand side of the pipe will be
|
|
1318
|
+
shown in bosgroen.
|
|
1319
|
+
When omitted the logo wordmark will default to Omgevingsloket, with 'Omgevings' shown in grasgroen and 'loket' in
|
|
1320
|
+
bosgroen. @default "Omgevings|loket"
|
|
1321
|
+
*/
|
|
1322
|
+
set name(_: Components.DsoLogo['name']);
|
|
1323
|
+
/**
|
|
1324
|
+
* The url the logo is pointing to.
|
|
1325
|
+
*/
|
|
1326
|
+
set logoUrl(_: Components.DsoLogo['logoUrl']);
|
|
1327
|
+
/**
|
|
1328
|
+
* The label clarifies the service within the Omgevingsloket, shown
|
|
1329
|
+
as a subtitle (and on smaller screens as the main wordmark itself).
|
|
1330
|
+
*/
|
|
1331
|
+
set label(_: Components.DsoLogo['label']);
|
|
1332
|
+
/**
|
|
1333
|
+
* The url the label is pointing to.
|
|
1334
|
+
*/
|
|
1335
|
+
set labelUrl(_: Components.DsoLogo['labelUrl']);
|
|
1336
|
+
/**
|
|
1337
|
+
* The ribbon contains the text for a possible 'sticker' on top of the logo.
|
|
1338
|
+
Used to clarify the (non-production) server environment ("int", "kta", "pfm", "pre", or "dmo")
|
|
1339
|
+
*/
|
|
1340
|
+
set ribbon(_: Components.DsoLogo['ribbon']);
|
|
597
1341
|
dsoLogoClick: EventEmitter<CustomEvent<LogoClickEvent>>;
|
|
598
1342
|
dsoLabelClick: EventEmitter<CustomEvent<LogoLabelClickEvent>>;
|
|
599
1343
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
@@ -613,6 +1357,14 @@ declare interface DsoLogo extends Components.DsoLogo {
|
|
|
613
1357
|
declare class DsoMapBaseLayers {
|
|
614
1358
|
protected z: NgZone;
|
|
615
1359
|
protected el: HTMLDsoMapBaseLayersElement;
|
|
1360
|
+
/**
|
|
1361
|
+
* To group the overlays together. Generally the default value suffices. @default uuidv4()
|
|
1362
|
+
*/
|
|
1363
|
+
set group(_: Components.DsoMapBaseLayers['group']);
|
|
1364
|
+
/**
|
|
1365
|
+
* The base layers.
|
|
1366
|
+
*/
|
|
1367
|
+
set baseLayers(_: Components.DsoMapBaseLayers['baseLayers']);
|
|
616
1368
|
dsoBaseLayerChange: EventEmitter<CustomEvent<BaseLayerChangeEvent>>;
|
|
617
1369
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
618
1370
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoMapBaseLayers, never>;
|
|
@@ -627,6 +1379,18 @@ declare interface DsoMapBaseLayers extends Components.DsoMapBaseLayers {
|
|
|
627
1379
|
declare class DsoMapControls {
|
|
628
1380
|
protected z: NgZone;
|
|
629
1381
|
protected el: HTMLDsoMapControlsElement;
|
|
1382
|
+
/**
|
|
1383
|
+
* To show and hide the Map Controls. @default false
|
|
1384
|
+
*/
|
|
1385
|
+
set open(_: Components.DsoMapControls['open']);
|
|
1386
|
+
/**
|
|
1387
|
+
* To disable the zoom controls:
|
|
1388
|
+
|
|
1389
|
+
* `in`: Disable zoom in button.
|
|
1390
|
+
* `out`: Disable zoom out button.
|
|
1391
|
+
* `both`: Disable zoom in and zoom out.
|
|
1392
|
+
*/
|
|
1393
|
+
set disableZoom(_: Components.DsoMapControls['disableZoom']);
|
|
630
1394
|
dsoZoomIn: EventEmitter<CustomEvent<MouseEvent>>;
|
|
631
1395
|
dsoZoomOut: EventEmitter<CustomEvent<MouseEvent>>;
|
|
632
1396
|
dsoToggle: EventEmitter<CustomEvent<MapControlsToggleEvent>>;
|
|
@@ -654,6 +1418,19 @@ declare interface DsoMapControls extends Components.DsoMapControls {
|
|
|
654
1418
|
declare class DsoMapLayer {
|
|
655
1419
|
protected z: NgZone;
|
|
656
1420
|
protected el: HTMLDsoMapLayerElement;
|
|
1421
|
+
/**
|
|
1422
|
+
* The label of the Map Layer.
|
|
1423
|
+
*/
|
|
1424
|
+
set label(_: Components.DsoMapLayer['label']);
|
|
1425
|
+
/**
|
|
1426
|
+
* A boolean to indicate if the Map Layer is capable of being activated. When `true` a Slide Toggle displays
|
|
1427
|
+
on the right. @default false
|
|
1428
|
+
*/
|
|
1429
|
+
set activatable(_: Components.DsoMapLayer['activatable']);
|
|
1430
|
+
/**
|
|
1431
|
+
* An optional boolean indicating whether the Map Layer is active.
|
|
1432
|
+
*/
|
|
1433
|
+
set active(_: Components.DsoMapLayer['active']);
|
|
657
1434
|
dsoActiveChange: EventEmitter<CustomEvent<MapLayerActiveChangeEvent>>;
|
|
658
1435
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
659
1436
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoMapLayer, never>;
|
|
@@ -668,6 +1445,10 @@ declare interface DsoMapLayer extends Components.DsoMapLayer {
|
|
|
668
1445
|
declare class DsoMapLayerObject {
|
|
669
1446
|
protected z: NgZone;
|
|
670
1447
|
protected el: HTMLDsoMapLayerObjectElement;
|
|
1448
|
+
/**
|
|
1449
|
+
* An optional boolean indicating whether the Map Layer Object is active.
|
|
1450
|
+
*/
|
|
1451
|
+
set active(_: Components.DsoMapLayerObject['active']);
|
|
671
1452
|
dsoActiveChange: EventEmitter<CustomEvent<MapLayerObjectActiveChangeEvent>>;
|
|
672
1453
|
dsoMouseEnter: EventEmitter<CustomEvent<any>>;
|
|
673
1454
|
dsoMouseLeave: EventEmitter<CustomEvent<any>>;
|
|
@@ -692,6 +1473,14 @@ declare interface DsoMapLayerObject extends Components.DsoMapLayerObject {
|
|
|
692
1473
|
declare class DsoMapOverlays {
|
|
693
1474
|
protected z: NgZone;
|
|
694
1475
|
protected el: HTMLDsoMapOverlaysElement;
|
|
1476
|
+
/**
|
|
1477
|
+
* To group the overlays together. Generally the default value suffices. @default uuidv4()
|
|
1478
|
+
*/
|
|
1479
|
+
set group(_: Components.DsoMapOverlays['group']);
|
|
1480
|
+
/**
|
|
1481
|
+
* The overlays.
|
|
1482
|
+
*/
|
|
1483
|
+
set overlays(_: Components.DsoMapOverlays['overlays']);
|
|
695
1484
|
dsoToggleOverlay: EventEmitter<CustomEvent<OverlayChangeEvent>>;
|
|
696
1485
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
697
1486
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoMapOverlays, never>;
|
|
@@ -706,6 +1495,22 @@ declare interface DsoMapOverlays extends Components.DsoMapOverlays {
|
|
|
706
1495
|
declare class DsoMarkBar {
|
|
707
1496
|
protected z: NgZone;
|
|
708
1497
|
protected el: HTMLDsoMarkBarElement;
|
|
1498
|
+
/**
|
|
1499
|
+
* The current search value.
|
|
1500
|
+
*/
|
|
1501
|
+
set value(_: Components.DsoMarkBar['value']);
|
|
1502
|
+
/**
|
|
1503
|
+
* The label for the input field. @default "Zoeken in document"
|
|
1504
|
+
*/
|
|
1505
|
+
set label(_: Components.DsoMarkBar['label']);
|
|
1506
|
+
/**
|
|
1507
|
+
* The current (one-based) highlighted search item.
|
|
1508
|
+
*/
|
|
1509
|
+
set current(_: Components.DsoMarkBar['current']);
|
|
1510
|
+
/**
|
|
1511
|
+
* Total number of search results.
|
|
1512
|
+
*/
|
|
1513
|
+
set totalCount(_: Components.DsoMarkBar['totalCount']);
|
|
709
1514
|
dsoInput: EventEmitter<CustomEvent<MarkBarInputEvent>>;
|
|
710
1515
|
dsoNext: EventEmitter<CustomEvent<MarkBarPaginationEvent>>;
|
|
711
1516
|
dsoPrevious: EventEmitter<CustomEvent<MarkBarPaginationEvent>>;
|
|
@@ -735,6 +1540,32 @@ declare interface DsoMarkBar extends Components.DsoMarkBar {
|
|
|
735
1540
|
declare class DsoModal {
|
|
736
1541
|
protected z: NgZone;
|
|
737
1542
|
protected el: HTMLDsoModalElement;
|
|
1543
|
+
/**
|
|
1544
|
+
* when set the modal will be shown in fullscreen.
|
|
1545
|
+
*/
|
|
1546
|
+
set fullscreen(_: Components.DsoModal['fullscreen']);
|
|
1547
|
+
/**
|
|
1548
|
+
* The title of the Modal.
|
|
1549
|
+
*/
|
|
1550
|
+
set modalTitle(_: Components.DsoModal['modalTitle']);
|
|
1551
|
+
/**
|
|
1552
|
+
* the role for the modal `dialog` | `alert` | `alertdialog`. @default "dialog"
|
|
1553
|
+
*/
|
|
1554
|
+
set dialogRole(_: Components.DsoModal['dialogRole']);
|
|
1555
|
+
/**
|
|
1556
|
+
* The element to return focus to after the modal is closed.
|
|
1557
|
+
|
|
1558
|
+
* `undefined` will return focus to the previously focused element (default).
|
|
1559
|
+
* `false` will not return focus to any element.
|
|
1560
|
+
* or, provide your own `HTMLElement` that will receive focus upon closing. @default undefined
|
|
1561
|
+
*/
|
|
1562
|
+
set returnFocus(_: Components.DsoModal['returnFocus']);
|
|
1563
|
+
/**
|
|
1564
|
+
* when `false` the close button in the header will not be rendered.
|
|
1565
|
+
|
|
1566
|
+
Needs `modalTitle` to be set. @default false
|
|
1567
|
+
*/
|
|
1568
|
+
set closable(_: Components.DsoModal['closable']);
|
|
738
1569
|
dsoClose: EventEmitter<CustomEvent<ModalCloseEvent>>;
|
|
739
1570
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
740
1571
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoModal, never>;
|
|
@@ -752,6 +1583,10 @@ declare interface DsoModal extends Components.DsoModal {
|
|
|
752
1583
|
declare class DsoOnboardingTip {
|
|
753
1584
|
protected z: NgZone;
|
|
754
1585
|
protected el: HTMLDsoOnboardingTipElement;
|
|
1586
|
+
/**
|
|
1587
|
+
* Where to place the Onboarding Tip relative to its reference element. @default "right"
|
|
1588
|
+
*/
|
|
1589
|
+
set placement(_: Components.DsoOnboardingTip['placement']);
|
|
755
1590
|
dsoClose: EventEmitter<CustomEvent<OnboardingTipCloseEvent>>;
|
|
756
1591
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
757
1592
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoOnboardingTip, never>;
|
|
@@ -766,6 +1601,32 @@ declare interface DsoOnboardingTip extends Components.DsoOnboardingTip {
|
|
|
766
1601
|
declare class DsoOzonContent {
|
|
767
1602
|
protected z: NgZone;
|
|
768
1603
|
protected el: HTMLDsoOzonContentElement;
|
|
1604
|
+
/**
|
|
1605
|
+
* The XML to be rendered.
|
|
1606
|
+
*/
|
|
1607
|
+
set content(_: Components.DsoOzonContent['content']);
|
|
1608
|
+
/**
|
|
1609
|
+
* Setting this property creates dso-ozon-content as inline element instead of a block element. @default false
|
|
1610
|
+
*/
|
|
1611
|
+
set inline(_: Components.DsoOzonContent['inline']);
|
|
1612
|
+
/**
|
|
1613
|
+
* To mark text.
|
|
1614
|
+
*/
|
|
1615
|
+
set mark(_: Components.DsoOzonContent['mark']);
|
|
1616
|
+
/**
|
|
1617
|
+
* A UrlResolver that will be called for all STOP elements that render to HTML5 elements with external references.
|
|
1618
|
+
*/
|
|
1619
|
+
set urlResolver(_: Components.DsoOzonContent['urlResolver']);
|
|
1620
|
+
/**
|
|
1621
|
+
* A BegripResolver that will be called for STOP element "IntRef". If the ref-attribute of IntRef points to a Begrip it
|
|
1622
|
+
should return the `<Definitie>` of that Begrip otherwise it should return undefined.
|
|
1623
|
+
*/
|
|
1624
|
+
set begripResolver(_: Components.DsoOzonContent['begripResolver']);
|
|
1625
|
+
/**
|
|
1626
|
+
* Boolean indicating that this dso-ozon-content is part of an annotated context. If true the content of the
|
|
1627
|
+
toggletip for "IntIoRef" will show a "Kenmerken en kaart" annotation button. @default false
|
|
1628
|
+
*/
|
|
1629
|
+
set annotated(_: Components.DsoOzonContent['annotated']);
|
|
769
1630
|
dsoClick: EventEmitter<CustomEvent<OzonContentClickEvent>>;
|
|
770
1631
|
dsoOzonContentMarkItemHighlight: EventEmitter<CustomEvent<OzonContentMarkItemHighlightEvent>>;
|
|
771
1632
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
@@ -785,6 +1646,10 @@ declare interface DsoOzonContent extends Components.DsoOzonContent {
|
|
|
785
1646
|
declare class DsoOzonContentToggletip {
|
|
786
1647
|
protected z: NgZone;
|
|
787
1648
|
protected el: HTMLDsoOzonContentToggletipElement;
|
|
1649
|
+
/**
|
|
1650
|
+
* The alias of the icon in the button.
|
|
1651
|
+
*/
|
|
1652
|
+
set icon(_: Components.DsoOzonContentToggletip['icon']);
|
|
788
1653
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
789
1654
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoOzonContentToggletip, never>;
|
|
790
1655
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoOzonContentToggletip, "dso-ozon-content-toggletip", never, { "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -794,6 +1659,18 @@ declare interface DsoOzonContentToggletip extends Components.DsoOzonContentToggl
|
|
|
794
1659
|
declare class DsoPagination {
|
|
795
1660
|
protected z: NgZone;
|
|
796
1661
|
protected el: HTMLDsoPaginationElement;
|
|
1662
|
+
/**
|
|
1663
|
+
* Total pages
|
|
1664
|
+
*/
|
|
1665
|
+
set totalPages(_: Components.DsoPagination['totalPages']);
|
|
1666
|
+
/**
|
|
1667
|
+
* Current page
|
|
1668
|
+
*/
|
|
1669
|
+
set currentPage(_: Components.DsoPagination['currentPage']);
|
|
1670
|
+
/**
|
|
1671
|
+
* This function is called to format the href @default (page) => "#" + page
|
|
1672
|
+
*/
|
|
1673
|
+
set formatHref(_: Components.DsoPagination['formatHref']);
|
|
797
1674
|
dsoSelectPage: EventEmitter<CustomEvent<PaginationSelectPageEvent>>;
|
|
798
1675
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
799
1676
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoPagination, never>;
|
|
@@ -808,6 +1685,14 @@ declare interface DsoPagination extends Components.DsoPagination {
|
|
|
808
1685
|
declare class DsoPanel {
|
|
809
1686
|
protected z: NgZone;
|
|
810
1687
|
protected el: HTMLDsoPanelElement;
|
|
1688
|
+
/**
|
|
1689
|
+
* The accessible name for the close button.
|
|
1690
|
+
*/
|
|
1691
|
+
set closeButtonLabel(_: Components.DsoPanel['closeButtonLabel']);
|
|
1692
|
+
/**
|
|
1693
|
+
* To display the panel as an emphasized panel. @default false
|
|
1694
|
+
*/
|
|
1695
|
+
set emphasized(_: Components.DsoPanel['emphasized']);
|
|
811
1696
|
dsoCloseClick: EventEmitter<CustomEvent<PanelCloseEvent>>;
|
|
812
1697
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
813
1698
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoPanel, never>;
|
|
@@ -822,6 +1707,22 @@ declare interface DsoPanel extends Components.DsoPanel {
|
|
|
822
1707
|
declare class DsoPlekinfoCard {
|
|
823
1708
|
protected z: NgZone;
|
|
824
1709
|
protected el: HTMLDsoPlekinfoCardElement;
|
|
1710
|
+
/**
|
|
1711
|
+
* An optional 'wijzigactie' that signals if the plekinfo on the card is added or removed.
|
|
1712
|
+
*/
|
|
1713
|
+
set wijzigactie(_: Components.DsoPlekinfoCard['wijzigactie']);
|
|
1714
|
+
/**
|
|
1715
|
+
* The URL to which the PlekinfoCard heading links.
|
|
1716
|
+
*/
|
|
1717
|
+
set href(_: Components.DsoPlekinfoCard['href']);
|
|
1718
|
+
/**
|
|
1719
|
+
* Opens the urls in a new window or tab @default false
|
|
1720
|
+
*/
|
|
1721
|
+
set targetBlank(_: Components.DsoPlekinfoCard['targetBlank']);
|
|
1722
|
+
/**
|
|
1723
|
+
* Makes the PlekinfoCard active.
|
|
1724
|
+
*/
|
|
1725
|
+
set active(_: Components.DsoPlekinfoCard['active']);
|
|
825
1726
|
dsoPlekinfoCardClick: EventEmitter<CustomEvent<PlekinfoCardClickEvent>>;
|
|
826
1727
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
827
1728
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoPlekinfoCard, never>;
|
|
@@ -836,6 +1737,20 @@ declare interface DsoPlekinfoCard extends Components.DsoPlekinfoCard {
|
|
|
836
1737
|
declare class DsoProgressIndicator {
|
|
837
1738
|
protected z: NgZone;
|
|
838
1739
|
protected el: HTMLDsoProgressIndicatorElement;
|
|
1740
|
+
/**
|
|
1741
|
+
* The label of the Progress Indicator.
|
|
1742
|
+
*/
|
|
1743
|
+
set label(_: Components.DsoProgressIndicator['label']);
|
|
1744
|
+
/**
|
|
1745
|
+
* The size (width) of the Progress Indicator.
|
|
1746
|
+
|
|
1747
|
+
If no size is set, falls back to `small`.
|
|
1748
|
+
*/
|
|
1749
|
+
set size(_: Components.DsoProgressIndicator['size']);
|
|
1750
|
+
/**
|
|
1751
|
+
* Set for bloatier Progress Indicator.
|
|
1752
|
+
*/
|
|
1753
|
+
set block(_: Components.DsoProgressIndicator['block']);
|
|
839
1754
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
840
1755
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoProgressIndicator, never>;
|
|
841
1756
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoProgressIndicator, "dso-progress-indicator", never, { "block": { "alias": "block"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -845,6 +1760,10 @@ declare interface DsoProgressIndicator extends Components.DsoProgressIndicator {
|
|
|
845
1760
|
declare class DsoProjectItem {
|
|
846
1761
|
protected z: NgZone;
|
|
847
1762
|
protected el: HTMLDsoProjectItemElement;
|
|
1763
|
+
/**
|
|
1764
|
+
* The label of the project item.
|
|
1765
|
+
*/
|
|
1766
|
+
set label(_: Components.DsoProjectItem['label']);
|
|
848
1767
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
849
1768
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoProjectItem, never>;
|
|
850
1769
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoProjectItem, "dso-project-item", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -854,6 +1773,14 @@ declare interface DsoProjectItem extends Components.DsoProjectItem {
|
|
|
854
1773
|
declare class DsoRenvooi {
|
|
855
1774
|
protected z: NgZone;
|
|
856
1775
|
protected el: HTMLDsoRenvooiElement;
|
|
1776
|
+
/**
|
|
1777
|
+
* The renvooi value to render.
|
|
1778
|
+
*/
|
|
1779
|
+
set value(_: Components.DsoRenvooi['value']);
|
|
1780
|
+
/**
|
|
1781
|
+
* To mark text.
|
|
1782
|
+
*/
|
|
1783
|
+
set mark(_: Components.DsoRenvooi['mark']);
|
|
857
1784
|
dsoRenvooiMarkItemHighlight: EventEmitter<CustomEvent<RenvooiMarkItemHighlightEvent>>;
|
|
858
1785
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
859
1786
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoRenvooi, never>;
|
|
@@ -893,9 +1820,96 @@ declare interface DsoScrollable extends Components.DsoScrollable {
|
|
|
893
1820
|
*/
|
|
894
1821
|
dsoScrollEnd: EventEmitter<CustomEvent<DsoScrollEndEvent>>;
|
|
895
1822
|
}
|
|
1823
|
+
declare class DsoSegmentedButton {
|
|
1824
|
+
protected z: NgZone;
|
|
1825
|
+
protected el: HTMLDsoSegmentedButtonElement;
|
|
1826
|
+
/**
|
|
1827
|
+
* Optional custom group name
|
|
1828
|
+
*/
|
|
1829
|
+
set groupName(_: Components.DsoSegmentedButton['groupName']);
|
|
1830
|
+
/**
|
|
1831
|
+
* Options to render in the segmented button
|
|
1832
|
+
*/
|
|
1833
|
+
set options(_: Components.DsoSegmentedButton['options']);
|
|
1834
|
+
/**
|
|
1835
|
+
* Label for the segmented button group.
|
|
1836
|
+
*/
|
|
1837
|
+
set label(_: Components.DsoSegmentedButton['label']);
|
|
1838
|
+
/**
|
|
1839
|
+
* Whether selection is required
|
|
1840
|
+
*/
|
|
1841
|
+
set required(_: Components.DsoSegmentedButton['required']);
|
|
1842
|
+
/**
|
|
1843
|
+
* Index of the currently active option
|
|
1844
|
+
*/
|
|
1845
|
+
set activeOption(_: Components.DsoSegmentedButton['activeOption']);
|
|
1846
|
+
dsoChange: EventEmitter<CustomEvent<SegmentedButtonChangeEvent>>;
|
|
1847
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1848
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DsoSegmentedButton, never>;
|
|
1849
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DsoSegmentedButton, "dso-segmented-button", never, { "activeOption": { "alias": "activeOption"; "required": true; }; "groupName": { "alias": "groupName"; "required": false; }; "label": { "alias": "label"; "required": true; }; "options": { "alias": "options"; "required": true; }; "required": { "alias": "required"; "required": false; }; }, { "dsoChange": "dsoChange"; }, never, ["*"], true, never>;
|
|
1850
|
+
}
|
|
1851
|
+
declare interface DsoSegmentedButton extends Components.DsoSegmentedButton {
|
|
1852
|
+
/**
|
|
1853
|
+
* Emitted when active option changes
|
|
1854
|
+
*/
|
|
1855
|
+
dsoChange: EventEmitter<CustomEvent<SegmentedButtonChangeEvent>>;
|
|
1856
|
+
}
|
|
896
1857
|
declare class DsoSelectable {
|
|
897
1858
|
protected z: NgZone;
|
|
898
1859
|
protected el: HTMLDsoSelectableElement;
|
|
1860
|
+
/**
|
|
1861
|
+
* Type of Selectable.
|
|
1862
|
+
|
|
1863
|
+
`checkbox`: Multiple options
|
|
1864
|
+
`radio`: Single option.
|
|
1865
|
+
*/
|
|
1866
|
+
set type(_: Components.DsoSelectable['type']);
|
|
1867
|
+
/**
|
|
1868
|
+
* To set `<input id>` attribute for external references.
|
|
1869
|
+
*/
|
|
1870
|
+
set identifier(_: Components.DsoSelectable['identifier']);
|
|
1871
|
+
/**
|
|
1872
|
+
* Name of the Selectable. Can be used to group Selectables.
|
|
1873
|
+
*/
|
|
1874
|
+
set name(_: Components.DsoSelectable['name']);
|
|
1875
|
+
/**
|
|
1876
|
+
* The value of the Selectable.
|
|
1877
|
+
*/
|
|
1878
|
+
set value(_: Components.DsoSelectable['value']);
|
|
1879
|
+
/**
|
|
1880
|
+
* Set to true of the current value is not valid.
|
|
1881
|
+
*/
|
|
1882
|
+
set invalid(_: Components.DsoSelectable['invalid']);
|
|
1883
|
+
/**
|
|
1884
|
+
* To link this control to an element that describes it.
|
|
1885
|
+
*/
|
|
1886
|
+
set describedById(_: Components.DsoSelectable['describedById']);
|
|
1887
|
+
/**
|
|
1888
|
+
* To link this control to an element that labels it.
|
|
1889
|
+
*/
|
|
1890
|
+
set labelledById(_: Components.DsoSelectable['labelledById']);
|
|
1891
|
+
/**
|
|
1892
|
+
* To disable the Selectable.
|
|
1893
|
+
*/
|
|
1894
|
+
set disabled(_: Components.DsoSelectable['disabled']);
|
|
1895
|
+
/**
|
|
1896
|
+
* To mark the Selectable as required.
|
|
1897
|
+
*/
|
|
1898
|
+
set required(_: Components.DsoSelectable['required']);
|
|
1899
|
+
/**
|
|
1900
|
+
* Mark the Selectable as checked
|
|
1901
|
+
*/
|
|
1902
|
+
set checked(_: Components.DsoSelectable['checked']);
|
|
1903
|
+
/**
|
|
1904
|
+
* An indeterminate state is neither true or false. It means the answer is somewhere in between.
|
|
1905
|
+
|
|
1906
|
+
Can be used to indicate child Selectables that are a mix of checked and unchecked.
|
|
1907
|
+
*/
|
|
1908
|
+
set indeterminate(_: Components.DsoSelectable['indeterminate']);
|
|
1909
|
+
/**
|
|
1910
|
+
* Set to true if the Info should not be toggled and always visible.
|
|
1911
|
+
*/
|
|
1912
|
+
set infoFixed(_: Components.DsoSelectable['infoFixed']);
|
|
899
1913
|
dsoChange: EventEmitter<CustomEvent<SelectableChangeEvent>>;
|
|
900
1914
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
901
1915
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoSelectable, never>;
|
|
@@ -910,6 +1924,14 @@ declare interface DsoSelectable extends Components.DsoSelectable {
|
|
|
910
1924
|
declare class DsoSkiplink {
|
|
911
1925
|
protected z: NgZone;
|
|
912
1926
|
protected el: HTMLDsoSkiplinkElement;
|
|
1927
|
+
/**
|
|
1928
|
+
* The location to which the skiplink links.
|
|
1929
|
+
*/
|
|
1930
|
+
set to(_: Components.DsoSkiplink['to']);
|
|
1931
|
+
/**
|
|
1932
|
+
* link text
|
|
1933
|
+
*/
|
|
1934
|
+
set label(_: Components.DsoSkiplink['label']);
|
|
913
1935
|
dsoSkiplinkClick: EventEmitter<CustomEvent<SkiplinkClickEvent>>;
|
|
914
1936
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
915
1937
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoSkiplink, never>;
|
|
@@ -924,6 +1946,26 @@ declare interface DsoSkiplink extends Components.DsoSkiplink {
|
|
|
924
1946
|
declare class DsoSlideToggle {
|
|
925
1947
|
protected z: NgZone;
|
|
926
1948
|
protected el: HTMLDsoSlideToggleElement;
|
|
1949
|
+
/**
|
|
1950
|
+
* Set to true if Slide Toggle is checked. @default false
|
|
1951
|
+
*/
|
|
1952
|
+
set checked(_: Components.DsoSlideToggle['checked']);
|
|
1953
|
+
/**
|
|
1954
|
+
* Disables the Slide Toggle, preventing it from checking/unchecking and therefor not emitting any events. @default false
|
|
1955
|
+
*/
|
|
1956
|
+
set disabled(_: Components.DsoSlideToggle['disabled']);
|
|
1957
|
+
/**
|
|
1958
|
+
* When provided the `<button>` will be labelled with `aria-label`. For a visible label provide a `<span>` inside the component.
|
|
1959
|
+
*/
|
|
1960
|
+
set accessibleLabel(_: Components.DsoSlideToggle['accessibleLabel']);
|
|
1961
|
+
/**
|
|
1962
|
+
* Provide the `id` of the element that labels this element. this property sets the `aria-labelledby` on the switch button.
|
|
1963
|
+
*/
|
|
1964
|
+
set labelledbyId(_: Components.DsoSlideToggle['labelledbyId']);
|
|
1965
|
+
/**
|
|
1966
|
+
* Provide an `id` for the `<button>`. Useful for placing your to place your own `<label for="id">`. @default v4()
|
|
1967
|
+
*/
|
|
1968
|
+
set identifier(_: Components.DsoSlideToggle['identifier']);
|
|
927
1969
|
dsoActiveChange: EventEmitter<CustomEvent<SlideToggleActiveEvent>>;
|
|
928
1970
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
929
1971
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoSlideToggle, never>;
|
|
@@ -957,6 +1999,18 @@ declare interface DsoSurveyRating extends Components.DsoSurveyRating {
|
|
|
957
1999
|
declare class DsoTab {
|
|
958
2000
|
protected z: NgZone;
|
|
959
2001
|
protected el: HTMLDsoTabElement;
|
|
2002
|
+
/**
|
|
2003
|
+
* Makes the tab active. The tab for which the tabpanel is visible is the active tab.
|
|
2004
|
+
*/
|
|
2005
|
+
set active(_: Components.DsoTab['active']);
|
|
2006
|
+
/**
|
|
2007
|
+
* Disables the tab. A disabled tab cannot be activated and it's tabpanel cannot be shown.
|
|
2008
|
+
*/
|
|
2009
|
+
set disabled(_: Components.DsoTab['disabled']);
|
|
2010
|
+
/**
|
|
2011
|
+
* The optional href of the tab. Creates an anchor if present. Creates a button if absent.
|
|
2012
|
+
*/
|
|
2013
|
+
set href(_: Components.DsoTab['href']);
|
|
960
2014
|
dsoTabSwitch: EventEmitter<CustomEvent<TabsSwitchEvent>>;
|
|
961
2015
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
962
2016
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoTab, never>;
|
|
@@ -971,6 +2025,10 @@ declare interface DsoTab extends Components.DsoTab {
|
|
|
971
2025
|
declare class DsoTable {
|
|
972
2026
|
protected z: NgZone;
|
|
973
2027
|
protected el: HTMLDsoTableElement;
|
|
2028
|
+
/**
|
|
2029
|
+
* Prevents the table being opened in a modal. @default false
|
|
2030
|
+
*/
|
|
2031
|
+
set noModal(_: Components.DsoTable['noModal']);
|
|
974
2032
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
975
2033
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoTable, never>;
|
|
976
2034
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoTable, "dso-table", never, { "noModal": { "alias": "noModal"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -998,6 +2056,22 @@ declare interface DsoTijdreisBanner extends Components.DsoTijdreisBanner {
|
|
|
998
2056
|
declare class DsoToggletip {
|
|
999
2057
|
protected z: NgZone;
|
|
1000
2058
|
protected el: HTMLDsoToggletipElement;
|
|
2059
|
+
/**
|
|
2060
|
+
* Toggletip label. @default "Toelichting"
|
|
2061
|
+
*/
|
|
2062
|
+
set label(_: Components.DsoToggletip['label']);
|
|
2063
|
+
/**
|
|
2064
|
+
* Toggletip position. @default "right"
|
|
2065
|
+
*/
|
|
2066
|
+
set position(_: Components.DsoToggletip['position']);
|
|
2067
|
+
/**
|
|
2068
|
+
* Set to true for small Toggletip.
|
|
2069
|
+
*/
|
|
2070
|
+
set small(_: Components.DsoToggletip['small']);
|
|
2071
|
+
/**
|
|
2072
|
+
* Set to true for secondary Toggletip.
|
|
2073
|
+
*/
|
|
2074
|
+
set secondary(_: Components.DsoToggletip['secondary']);
|
|
1001
2075
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1002
2076
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoToggletip, never>;
|
|
1003
2077
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoToggletip, "dso-toggletip", never, { "label": { "alias": "label"; "required": false; }; "position": { "alias": "position"; "required": false; }; "secondary": { "alias": "secondary"; "required": false; }; "small": { "alias": "small"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1007,6 +2081,34 @@ declare interface DsoToggletip extends Components.DsoToggletip {
|
|
|
1007
2081
|
declare class DsoTooltip {
|
|
1008
2082
|
protected z: NgZone;
|
|
1009
2083
|
protected el: HTMLDsoTooltipElement;
|
|
2084
|
+
/**
|
|
2085
|
+
* Defines if the tooltip is descriptive. A descriptive tooltip contains a meaningful message. Tooltips that are not descriptive are hidden from screenreaders using `aria-hidden`. @default false
|
|
2086
|
+
*/
|
|
2087
|
+
set descriptive(_: Components.DsoTooltip['descriptive']);
|
|
2088
|
+
/**
|
|
2089
|
+
* Set position of tooltip relative to target @default "top"
|
|
2090
|
+
*/
|
|
2091
|
+
set position(_: Components.DsoTooltip['position']);
|
|
2092
|
+
/**
|
|
2093
|
+
* Set position strategy of tooltip @default "auto"
|
|
2094
|
+
*/
|
|
2095
|
+
set strategy(_: Components.DsoTooltip['strategy']);
|
|
2096
|
+
/**
|
|
2097
|
+
* Set attribute `no-arrow` to hide the arrow @default false
|
|
2098
|
+
*/
|
|
2099
|
+
set noArrow(_: Components.DsoTooltip['noArrow']);
|
|
2100
|
+
/**
|
|
2101
|
+
* Deactivates mouseover behaviour
|
|
2102
|
+
*/
|
|
2103
|
+
set stateless(_: Components.DsoTooltip['stateless']);
|
|
2104
|
+
/**
|
|
2105
|
+
* Defines if the tooltip has a smaller max-width
|
|
2106
|
+
*/
|
|
2107
|
+
set small(_: Components.DsoTooltip['small']);
|
|
2108
|
+
/**
|
|
2109
|
+
* Whether or not to show the tooltip. To control the tooltip add the `active` attribute or use the `activate()` and `deactivate()` instance methods. @default false
|
|
2110
|
+
*/
|
|
2111
|
+
set active(_: Components.DsoTooltip['active']);
|
|
1010
2112
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1011
2113
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoTooltip, never>;
|
|
1012
2114
|
static ɵcmp: i0.ɵɵComponentDeclaration<DsoTooltip, "dso-tooltip", never, { "active": { "alias": "active"; "required": false; }; "descriptive": { "alias": "descriptive"; "required": false; }; "noArrow": { "alias": "noArrow"; "required": false; }; "position": { "alias": "position"; "required": false; }; "small": { "alias": "small"; "required": false; }; "stateless": { "alias": "stateless"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1016,6 +2118,10 @@ declare interface DsoTooltip extends Components.DsoTooltip {
|
|
|
1016
2118
|
declare class DsoTreeView {
|
|
1017
2119
|
protected z: NgZone;
|
|
1018
2120
|
protected el: HTMLDsoTreeViewElement;
|
|
2121
|
+
/**
|
|
2122
|
+
* The collection of TreeViewItems
|
|
2123
|
+
*/
|
|
2124
|
+
set collection(_: Components.DsoTreeView['collection']);
|
|
1019
2125
|
dsoOpenItem: EventEmitter<CustomEvent<TreeViewItem[]>>;
|
|
1020
2126
|
dsoCloseItem: EventEmitter<CustomEvent<TreeViewItem[]>>;
|
|
1021
2127
|
dsoClickItem: EventEmitter<CustomEvent<TreeViewPointerEvent>>;
|
|
@@ -1051,6 +2157,46 @@ declare interface DsoTreeView extends Components.DsoTreeView {
|
|
|
1051
2157
|
declare class DsoViewerGrid {
|
|
1052
2158
|
protected z: NgZone;
|
|
1053
2159
|
protected el: HTMLDsoViewerGridElement;
|
|
2160
|
+
/**
|
|
2161
|
+
* The title of the filter panel
|
|
2162
|
+
*/
|
|
2163
|
+
set filterPanelTitle(_: Components.DsoViewerGrid['filterPanelTitle']);
|
|
2164
|
+
/**
|
|
2165
|
+
* Set to true when filter panel should show. @default false
|
|
2166
|
+
*/
|
|
2167
|
+
set filterPanelOpen(_: Components.DsoViewerGrid['filterPanelOpen']);
|
|
2168
|
+
/**
|
|
2169
|
+
* Set to true when overlay should show. @default false
|
|
2170
|
+
*/
|
|
2171
|
+
set overlayOpen(_: Components.DsoViewerGrid['overlayOpen']);
|
|
2172
|
+
/**
|
|
2173
|
+
* Set to true when document panel should show. @default false
|
|
2174
|
+
*/
|
|
2175
|
+
set documentPanelOpen(_: Components.DsoViewerGrid['documentPanelOpen']);
|
|
2176
|
+
/**
|
|
2177
|
+
* Size of the panel when component loads.
|
|
2178
|
+
|
|
2179
|
+
Default size is `large`. @default "large"
|
|
2180
|
+
*/
|
|
2181
|
+
set mainSize(_: Components.DsoViewerGrid['mainSize']);
|
|
2182
|
+
/**
|
|
2183
|
+
* Set active tab in tab view.
|
|
2184
|
+
*/
|
|
2185
|
+
set activeTab(_: Components.DsoViewerGrid['activeTab']);
|
|
2186
|
+
/**
|
|
2187
|
+
* Size of the panel when component loads.
|
|
2188
|
+
|
|
2189
|
+
Default size is `large`. @default "large"
|
|
2190
|
+
*/
|
|
2191
|
+
set documentPanelSize(_: Components.DsoViewerGrid['documentPanelSize']);
|
|
2192
|
+
/**
|
|
2193
|
+
* Set to show main panel expanded. @default false
|
|
2194
|
+
*/
|
|
2195
|
+
set mainPanelExpanded(_: Components.DsoViewerGrid['mainPanelExpanded']);
|
|
2196
|
+
/**
|
|
2197
|
+
* Set to hide the main panel. @default false
|
|
2198
|
+
*/
|
|
2199
|
+
set mainPanelHidden(_: Components.DsoViewerGrid['mainPanelHidden']);
|
|
1054
2200
|
dsoCloseOverlay: EventEmitter<CustomEvent<ViewerGridCloseOverlayEvent>>;
|
|
1055
2201
|
dsoCloseFilterPanel: EventEmitter<CustomEvent<ViewerGridCloseFilterPanelEvent>>;
|
|
1056
2202
|
dsoActiveTabSwitch: EventEmitter<CustomEvent<ViewerGridActiveTabSwitchEvent>>;
|
|
@@ -1097,6 +2243,34 @@ declare interface DsoViewerGrid extends Components.DsoViewerGrid {
|
|
|
1097
2243
|
declare class DsotDocumentComponentDemo {
|
|
1098
2244
|
protected z: NgZone;
|
|
1099
2245
|
protected el: HTMLDsotDocumentComponentDemoElement;
|
|
2246
|
+
/**
|
|
2247
|
+
* Show canvas to where Document Component extends. @default false
|
|
2248
|
+
*/
|
|
2249
|
+
set showCanvas(_: Components.DsotDocumentComponentDemo['showCanvas']);
|
|
2250
|
+
/**
|
|
2251
|
+
* Show besluitversie version of the badge and label. @default false
|
|
2252
|
+
*/
|
|
2253
|
+
set showBesluitversie(_: Components.DsotDocumentComponentDemo['showBesluitversie']);
|
|
2254
|
+
/**
|
|
2255
|
+
* Name of the file to load.
|
|
2256
|
+
*/
|
|
2257
|
+
set jsonFile(_: Components.DsotDocumentComponentDemo['jsonFile']);
|
|
2258
|
+
/**
|
|
2259
|
+
* The default state for all Document Components. @default false
|
|
2260
|
+
*/
|
|
2261
|
+
set openDefault(_: Components.DsotDocumentComponentDemo['openDefault']);
|
|
2262
|
+
/**
|
|
2263
|
+
* The mode of the Document Component. One of "document" or "table-of-contents". Defaults to "document" @default "document"
|
|
2264
|
+
*/
|
|
2265
|
+
set mode(_: Components.DsotDocumentComponentDemo['mode']);
|
|
2266
|
+
/**
|
|
2267
|
+
* A UrlResolver that will be called for all STOP elements that render to HTML5 elements with external references.
|
|
2268
|
+
*/
|
|
2269
|
+
set ozonContentUrlResolver(_: Components.DsotDocumentComponentDemo['ozonContentUrlResolver']);
|
|
2270
|
+
/**
|
|
2271
|
+
* A BegripResolver that will be called for STOP element "IntRef" with @scope ="Begrip".
|
|
2272
|
+
*/
|
|
2273
|
+
set ozonContentBegripResolver(_: Components.DsotDocumentComponentDemo['ozonContentBegripResolver']);
|
|
1100
2274
|
dsotOzonContentClick: EventEmitter<CustomEvent<DocumentComponentOzonContentClickEvent>>;
|
|
1101
2275
|
dsotTableOfContentsClick: EventEmitter<CustomEvent<DocumentComponentTableOfContentsClickEvent>>;
|
|
1102
2276
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
@@ -1114,12 +2288,42 @@ declare interface DsotDocumentComponentDemo extends Components.DsotDocumentCompo
|
|
|
1114
2288
|
dsotTableOfContentsClick: EventEmitter<CustomEvent<DocumentComponentTableOfContentsClickEvent>>;
|
|
1115
2289
|
}
|
|
1116
2290
|
|
|
1117
|
-
declare const DIRECTIVES: (typeof DsoAccordion | typeof DsoAccordionSection | typeof DsoActionList | typeof DsoActionListItem | typeof DsoAdvancedSelect | typeof DsoAlert | typeof DsoAnnotationActiviteit | typeof DsoAnnotationGebiedsaanwijzing | typeof DsoAnnotationKaart | typeof DsoAnnotationLocatie | typeof DsoAnnotationOmgevingsnormwaarde | typeof DsoAttachmentsCounter | typeof DsoAutosuggest | typeof DsoBadge | typeof DsoBanner | typeof DsoButtonGroup | typeof DsoCard | typeof DsoCardContainer | typeof DsoContactInformation | typeof DsoCursorTooltip | typeof DsoDatePicker | typeof DsoDocumentCard | typeof DsoDocumentComponent | typeof DsoDropdownMenu | typeof DsoExpandable | typeof DsoHeader | typeof DsoHighlightBox | typeof DsoHistoryItem | typeof DsoIcon | typeof DsoIconButton | typeof DsoImageOverlay | typeof DsoInfo | typeof DsoInfoButton | typeof DsoInputRange | typeof DsoLabel | typeof DsoLegend | typeof DsoLegendGroup | typeof DsoLegendItem | typeof DsoListButton | typeof DsoLogo | typeof DsoMapBaseLayers | typeof DsoMapControls | typeof DsoMapLayer | typeof DsoMapLayerObject | typeof DsoMapOverlays | typeof DsoMarkBar | typeof DsoModal | typeof DsoOnboardingTip | typeof DsoOzonContent | typeof DsoOzonContentToggletip | typeof DsoPagination | typeof DsoPanel | typeof DsoPlekinfoCard | typeof DsoProgressIndicator | typeof DsoProjectItem | typeof DsoRenvooi | typeof DsoResponsiveElement | typeof DsoScrollable | typeof DsoSelectable | typeof DsoSkiplink | typeof DsoSlideToggle | typeof DsoSurveyRating | typeof DsoTab | typeof DsoTable | typeof DsoTabs | typeof DsoTijdreisBanner | typeof DsoToggletip | typeof DsoTooltip | typeof DsoTreeView | typeof DsoViewerGrid | typeof DsotDocumentComponentDemo)[];
|
|
2291
|
+
declare const DIRECTIVES: (typeof DsoAccordion | typeof DsoAccordionSection | typeof DsoActionList | typeof DsoActionListItem | typeof DsoAdvancedSelect | typeof DsoAlert | typeof DsoAnnotationActiviteit | typeof DsoAnnotationGebiedsaanwijzing | typeof DsoAnnotationKaart | typeof DsoAnnotationLocatie | typeof DsoAnnotationOmgevingsnormwaarde | typeof DsoAttachmentsCounter | typeof DsoAutosuggest | typeof DsoBadge | typeof DsoBanner | typeof DsoButtonGroup | typeof DsoCard | typeof DsoCardContainer | typeof DsoContactInformation | typeof DsoCursorTooltip | typeof DsoDatePicker | typeof DsoDocumentCard | typeof DsoDocumentComponent | typeof DsoDropdownMenu | typeof DsoExpandable | typeof DsoHeader | typeof DsoHighlightBox | typeof DsoHistoryItem | typeof DsoIcon | typeof DsoIconButton | typeof DsoImageOverlay | typeof DsoInfo | typeof DsoInfoButton | typeof DsoInputRange | typeof DsoLabel | typeof DsoLegend | typeof DsoLegendGroup | typeof DsoLegendItem | typeof DsoListButton | typeof DsoLogo | typeof DsoMapBaseLayers | typeof DsoMapControls | typeof DsoMapLayer | typeof DsoMapLayerObject | typeof DsoMapOverlays | typeof DsoMarkBar | typeof DsoModal | typeof DsoOnboardingTip | typeof DsoOzonContent | typeof DsoOzonContentToggletip | typeof DsoPagination | typeof DsoPanel | typeof DsoPlekinfoCard | typeof DsoProgressIndicator | typeof DsoProjectItem | typeof DsoRenvooi | typeof DsoResponsiveElement | typeof DsoScrollable | typeof DsoSegmentedButton | typeof DsoSelectable | typeof DsoSkiplink | typeof DsoSlideToggle | typeof DsoSurveyRating | typeof DsoTab | typeof DsoTable | typeof DsoTabs | typeof DsoTijdreisBanner | typeof DsoToggletip | typeof DsoTooltip | typeof DsoTreeView | typeof DsoViewerGrid | typeof DsotDocumentComponentDemo)[];
|
|
2292
|
+
|
|
2293
|
+
declare class BooleanValueAccessor implements ControlValueAccessor {
|
|
2294
|
+
private el;
|
|
2295
|
+
private onChange;
|
|
2296
|
+
private onTouched;
|
|
2297
|
+
constructor(el: ElementRef);
|
|
2298
|
+
onFocusOut(): void;
|
|
2299
|
+
onDsoChange(event: CustomEvent): void;
|
|
2300
|
+
writeValue(value: unknown): void;
|
|
2301
|
+
registerOnChange(fn: (value: boolean) => void): void;
|
|
2302
|
+
registerOnTouched(fn: () => void): void;
|
|
2303
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2304
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BooleanValueAccessor, never>;
|
|
2305
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BooleanValueAccessor, "dso-selectable[type=checkbox]", never, {}, {}, never, never, true, never>;
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2308
|
+
declare class RadioValueAccessor implements ControlValueAccessor {
|
|
2309
|
+
private el;
|
|
2310
|
+
private onChange;
|
|
2311
|
+
private onTouched;
|
|
2312
|
+
constructor(el: ElementRef);
|
|
2313
|
+
onFocusOut(): void;
|
|
2314
|
+
onDsoChange(): void;
|
|
2315
|
+
writeValue(value: unknown): void;
|
|
2316
|
+
registerOnChange(fn: (value: string) => void): void;
|
|
2317
|
+
registerOnTouched(fn: () => void): void;
|
|
2318
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2319
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioValueAccessor, never>;
|
|
2320
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioValueAccessor, "dso-selectable[type=radio]", never, {}, {}, never, never, true, never>;
|
|
2321
|
+
}
|
|
1118
2322
|
|
|
1119
2323
|
declare class DsoToolkitModule {
|
|
1120
2324
|
static ɵfac: i0.ɵɵFactoryDeclaration<DsoToolkitModule, never>;
|
|
1121
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DsoToolkitModule, never, [typeof DsoAccordion, typeof DsoAccordionSection, typeof DsoActionList, typeof DsoActionListItem, typeof DsoAdvancedSelect, typeof DsoAlert, typeof DsoAnnotationActiviteit, typeof DsoAnnotationGebiedsaanwijzing, typeof DsoAnnotationKaart, typeof DsoAnnotationLocatie, typeof DsoAnnotationOmgevingsnormwaarde, typeof DsoAttachmentsCounter, typeof DsoAutosuggest, typeof DsoBadge, typeof DsoBanner, typeof DsoButtonGroup, typeof DsoCard, typeof DsoCardContainer, typeof DsoContactInformation, typeof DsoCursorTooltip, typeof DsoDatePicker, typeof DsoDocumentCard, typeof DsoDocumentComponent, typeof DsoDropdownMenu, typeof DsoExpandable, typeof DsoHeader, typeof DsoHighlightBox, typeof DsoHistoryItem, typeof DsoIcon, typeof DsoIconButton, typeof DsoImageOverlay, typeof DsoInfo, typeof DsoInfoButton, typeof DsoInputRange, typeof DsoLabel, typeof DsoLegend, typeof DsoLegendGroup, typeof DsoLegendItem, typeof DsoListButton, typeof DsoLogo, typeof DsoMapBaseLayers, typeof DsoMapControls, typeof DsoMapLayer, typeof DsoMapLayerObject, typeof DsoMapOverlays, typeof DsoMarkBar, typeof DsoModal, typeof DsoOnboardingTip, typeof DsoOzonContent, typeof DsoOzonContentToggletip, typeof DsoPagination, typeof DsoPanel, typeof DsoPlekinfoCard, typeof DsoProgressIndicator, typeof DsoProjectItem, typeof DsoRenvooi, typeof DsoResponsiveElement, typeof DsoScrollable, typeof DsoSelectable, typeof DsoSkiplink, typeof DsoSlideToggle, typeof DsoSurveyRating, typeof DsoTab, typeof DsoTable, typeof DsoTabs, typeof DsoTijdreisBanner, typeof DsoToggletip, typeof DsoTooltip, typeof DsoTreeView, typeof DsoViewerGrid, typeof DsotDocumentComponentDemo], [typeof DsoAccordion, typeof DsoAccordionSection, typeof DsoActionList, typeof DsoActionListItem, typeof DsoAdvancedSelect, typeof DsoAlert, typeof DsoAnnotationActiviteit, typeof DsoAnnotationGebiedsaanwijzing, typeof DsoAnnotationKaart, typeof DsoAnnotationLocatie, typeof DsoAnnotationOmgevingsnormwaarde, typeof DsoAttachmentsCounter, typeof DsoAutosuggest, typeof DsoBadge, typeof DsoBanner, typeof DsoButtonGroup, typeof DsoCard, typeof DsoCardContainer, typeof DsoContactInformation, typeof DsoCursorTooltip, typeof DsoDatePicker, typeof DsoDocumentCard, typeof DsoDocumentComponent, typeof DsoDropdownMenu, typeof DsoExpandable, typeof DsoHeader, typeof DsoHighlightBox, typeof DsoHistoryItem, typeof DsoIcon, typeof DsoIconButton, typeof DsoImageOverlay, typeof DsoInfo, typeof DsoInfoButton, typeof DsoInputRange, typeof DsoLabel, typeof DsoLegend, typeof DsoLegendGroup, typeof DsoLegendItem, typeof DsoListButton, typeof DsoLogo, typeof DsoMapBaseLayers, typeof DsoMapControls, typeof DsoMapLayer, typeof DsoMapLayerObject, typeof DsoMapOverlays, typeof DsoMarkBar, typeof DsoModal, typeof DsoOnboardingTip, typeof DsoOzonContent, typeof DsoOzonContentToggletip, typeof DsoPagination, typeof DsoPanel, typeof DsoPlekinfoCard, typeof DsoProgressIndicator, typeof DsoProjectItem, typeof DsoRenvooi, typeof DsoResponsiveElement, typeof DsoScrollable, typeof DsoSelectable, typeof DsoSkiplink, typeof DsoSlideToggle, typeof DsoSurveyRating, typeof DsoTab, typeof DsoTable, typeof DsoTabs, typeof DsoTijdreisBanner, typeof DsoToggletip, typeof DsoTooltip, typeof DsoTreeView, typeof DsoViewerGrid, typeof DsotDocumentComponentDemo]>;
|
|
2325
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DsoToolkitModule, never, [typeof DsoAccordion, typeof DsoAccordionSection, typeof DsoActionList, typeof DsoActionListItem, typeof DsoAdvancedSelect, typeof DsoAlert, typeof DsoAnnotationActiviteit, typeof DsoAnnotationGebiedsaanwijzing, typeof DsoAnnotationKaart, typeof DsoAnnotationLocatie, typeof DsoAnnotationOmgevingsnormwaarde, typeof DsoAttachmentsCounter, typeof DsoAutosuggest, typeof DsoBadge, typeof DsoBanner, typeof DsoButtonGroup, typeof DsoCard, typeof DsoCardContainer, typeof DsoContactInformation, typeof DsoCursorTooltip, typeof DsoDatePicker, typeof DsoDocumentCard, typeof DsoDocumentComponent, typeof DsoDropdownMenu, typeof DsoExpandable, typeof DsoHeader, typeof DsoHighlightBox, typeof DsoHistoryItem, typeof DsoIcon, typeof DsoIconButton, typeof DsoImageOverlay, typeof DsoInfo, typeof DsoInfoButton, typeof DsoInputRange, typeof DsoLabel, typeof DsoLegend, typeof DsoLegendGroup, typeof DsoLegendItem, typeof DsoListButton, typeof DsoLogo, typeof DsoMapBaseLayers, typeof DsoMapControls, typeof DsoMapLayer, typeof DsoMapLayerObject, typeof DsoMapOverlays, typeof DsoMarkBar, typeof DsoModal, typeof DsoOnboardingTip, typeof DsoOzonContent, typeof DsoOzonContentToggletip, typeof DsoPagination, typeof DsoPanel, typeof DsoPlekinfoCard, typeof DsoProgressIndicator, typeof DsoProjectItem, typeof DsoRenvooi, typeof DsoResponsiveElement, typeof DsoScrollable, typeof DsoSegmentedButton, typeof DsoSelectable, typeof DsoSkiplink, typeof DsoSlideToggle, typeof DsoSurveyRating, typeof DsoTab, typeof DsoTable, typeof DsoTabs, typeof DsoTijdreisBanner, typeof DsoToggletip, typeof DsoTooltip, typeof DsoTreeView, typeof DsoViewerGrid, typeof DsotDocumentComponentDemo, typeof BooleanValueAccessor, typeof RadioValueAccessor], [typeof DsoAccordion, typeof DsoAccordionSection, typeof DsoActionList, typeof DsoActionListItem, typeof DsoAdvancedSelect, typeof DsoAlert, typeof DsoAnnotationActiviteit, typeof DsoAnnotationGebiedsaanwijzing, typeof DsoAnnotationKaart, typeof DsoAnnotationLocatie, typeof DsoAnnotationOmgevingsnormwaarde, typeof DsoAttachmentsCounter, typeof DsoAutosuggest, typeof DsoBadge, typeof DsoBanner, typeof DsoButtonGroup, typeof DsoCard, typeof DsoCardContainer, typeof DsoContactInformation, typeof DsoCursorTooltip, typeof DsoDatePicker, typeof DsoDocumentCard, typeof DsoDocumentComponent, typeof DsoDropdownMenu, typeof DsoExpandable, typeof DsoHeader, typeof DsoHighlightBox, typeof DsoHistoryItem, typeof DsoIcon, typeof DsoIconButton, typeof DsoImageOverlay, typeof DsoInfo, typeof DsoInfoButton, typeof DsoInputRange, typeof DsoLabel, typeof DsoLegend, typeof DsoLegendGroup, typeof DsoLegendItem, typeof DsoListButton, typeof DsoLogo, typeof DsoMapBaseLayers, typeof DsoMapControls, typeof DsoMapLayer, typeof DsoMapLayerObject, typeof DsoMapOverlays, typeof DsoMarkBar, typeof DsoModal, typeof DsoOnboardingTip, typeof DsoOzonContent, typeof DsoOzonContentToggletip, typeof DsoPagination, typeof DsoPanel, typeof DsoPlekinfoCard, typeof DsoProgressIndicator, typeof DsoProjectItem, typeof DsoRenvooi, typeof DsoResponsiveElement, typeof DsoScrollable, typeof DsoSegmentedButton, typeof DsoSelectable, typeof DsoSkiplink, typeof DsoSlideToggle, typeof DsoSurveyRating, typeof DsoTab, typeof DsoTable, typeof DsoTabs, typeof DsoTijdreisBanner, typeof DsoToggletip, typeof DsoTooltip, typeof DsoTreeView, typeof DsoViewerGrid, typeof DsotDocumentComponentDemo, typeof BooleanValueAccessor, typeof RadioValueAccessor]>;
|
|
1122
2326
|
static ɵinj: i0.ɵɵInjectorDeclaration<DsoToolkitModule>;
|
|
1123
2327
|
}
|
|
1124
2328
|
|
|
1125
|
-
export { DIRECTIVES, DsoAccordion, DsoAccordionSection, DsoActionList, DsoActionListItem, DsoAdvancedSelect, DsoAlert, DsoAnnotationActiviteit, DsoAnnotationGebiedsaanwijzing, DsoAnnotationKaart, DsoAnnotationLocatie, DsoAnnotationOmgevingsnormwaarde, DsoAttachmentsCounter, DsoAutosuggest, DsoBadge, DsoBanner, DsoButtonGroup, DsoCard, DsoCardContainer, DsoContactInformation, DsoCursorTooltip, DsoDatePicker, DsoDocumentCard, DsoDocumentComponent, DsoDropdownMenu, DsoExpandable, DsoHeader, DsoHighlightBox, DsoHistoryItem, DsoIcon, DsoIconButton, DsoImageOverlay, DsoInfo, DsoInfoButton, DsoInputRange, DsoLabel, DsoLegend, DsoLegendGroup, DsoLegendItem, DsoListButton, DsoLogo, DsoMapBaseLayers, DsoMapControls, DsoMapLayer, DsoMapLayerObject, DsoMapOverlays, DsoMarkBar, DsoModal, DsoOnboardingTip, DsoOzonContent, DsoOzonContentToggletip, DsoPagination, DsoPanel, DsoPlekinfoCard, DsoProgressIndicator, DsoProjectItem, DsoRenvooi, DsoResponsiveElement, DsoScrollable, DsoSelectable, DsoSkiplink, DsoSlideToggle, DsoSurveyRating, DsoTab, DsoTable, DsoTabs, DsoTijdreisBanner, DsoToggletip, DsoToolkitModule, DsoTooltip, DsoTreeView, DsoViewerGrid, DsotDocumentComponentDemo };
|
|
2329
|
+
export { BooleanValueAccessor, DIRECTIVES, DsoAccordion, DsoAccordionSection, DsoActionList, DsoActionListItem, DsoAdvancedSelect, DsoAlert, DsoAnnotationActiviteit, DsoAnnotationGebiedsaanwijzing, DsoAnnotationKaart, DsoAnnotationLocatie, DsoAnnotationOmgevingsnormwaarde, DsoAttachmentsCounter, DsoAutosuggest, DsoBadge, DsoBanner, DsoButtonGroup, DsoCard, DsoCardContainer, DsoContactInformation, DsoCursorTooltip, DsoDatePicker, DsoDocumentCard, DsoDocumentComponent, DsoDropdownMenu, DsoExpandable, DsoHeader, DsoHighlightBox, DsoHistoryItem, DsoIcon, DsoIconButton, DsoImageOverlay, DsoInfo, DsoInfoButton, DsoInputRange, DsoLabel, DsoLegend, DsoLegendGroup, DsoLegendItem, DsoListButton, DsoLogo, DsoMapBaseLayers, DsoMapControls, DsoMapLayer, DsoMapLayerObject, DsoMapOverlays, DsoMarkBar, DsoModal, DsoOnboardingTip, DsoOzonContent, DsoOzonContentToggletip, DsoPagination, DsoPanel, DsoPlekinfoCard, DsoProgressIndicator, DsoProjectItem, DsoRenvooi, DsoResponsiveElement, DsoScrollable, DsoSegmentedButton, DsoSelectable, DsoSkiplink, DsoSlideToggle, DsoSurveyRating, DsoTab, DsoTable, DsoTabs, DsoTijdreisBanner, DsoToggletip, DsoToolkitModule, DsoTooltip, DsoTreeView, DsoViewerGrid, DsotDocumentComponentDemo, RadioValueAccessor };
|