@dso-toolkit/angular 89.0.0 → 90.1.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,15 +463,41 @@ 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']);
470
+ /**
471
+ * The accessible name of the interactive Badge with Toggletip.
472
+ */
473
+ set label(_: Components.DsoBadge['label']);
474
+ /**
475
+ * The placement of the toggletip on click of the interactive Badge with Toggletip. @default "top"
476
+ */
477
+ set toggletipPlacement(_: Components.DsoBadge['toggletipPlacement']);
204
478
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
205
479
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoBadge, never>;
206
- static ɵcmp: i0.ɵɵComponentDeclaration<DsoBadge, "dso-badge", never, { "status": { "alias": "status"; "required": false; }; }, {}, never, ["*"], true, never>;
480
+ static ɵcmp: i0.ɵɵComponentDeclaration<DsoBadge, "dso-badge", never, { "label": { "alias": "label"; "required": false; }; "status": { "alias": "status"; "required": false; }; "toggletipPlacement": { "alias": "toggletipPlacement"; "required": false; }; }, {}, never, ["*"], true, never>;
207
481
  }
208
482
  declare interface DsoBadge extends Components.DsoBadge {
209
483
  }
210
484
  declare class DsoBanner {
211
485
  protected z: NgZone;
212
486
  protected el: HTMLDsoBannerElement;
487
+ /**
488
+ * The status of the banner.
489
+ */
490
+ set status(_: Components.DsoBanner['status']);
491
+ /**
492
+ * Compact mode. @default false
493
+ */
494
+ set compact(_: Components.DsoBanner['compact']);
495
+ /**
496
+ * *Icon can only be hidden when the 'compact' property is set to true.
497
+
498
+ Option to show banner icon. @default false
499
+ */
500
+ set icon(_: Components.DsoBanner['icon']);
213
501
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
214
502
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoBanner, never>;
215
503
  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 +507,12 @@ declare interface DsoBanner extends Components.DsoBanner {
219
507
  declare class DsoButtonGroup {
220
508
  protected z: NgZone;
221
509
  protected el: HTMLDsoButtonGroupElement;
510
+ /**
511
+ * The direction in which the buttons are displayed.
512
+
513
+ Defaults to `row`. @default "row"
514
+ */
515
+ set direction(_: Components.DsoButtonGroup['direction']);
222
516
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
223
517
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoButtonGroup, never>;
224
518
  static ɵcmp: i0.ɵɵComponentDeclaration<DsoButtonGroup, "dso-button-group", never, { "direction": { "alias": "direction"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -228,6 +522,20 @@ declare interface DsoButtonGroup extends Components.DsoButtonGroup {
228
522
  declare class DsoCard {
229
523
  protected z: NgZone;
230
524
  protected el: HTMLDsoCardElement;
525
+ /**
526
+ * The URL to which the Card heading links.
527
+ */
528
+ set href(_: Components.DsoCard['href']);
529
+ /**
530
+ * Display the link as an external link or a download link
531
+ - "download"
532
+ - "extern"
533
+ */
534
+ set mode(_: Components.DsoCard['mode']);
535
+ /**
536
+ * Makes the Card active.
537
+ */
538
+ set active(_: Components.DsoCard['active']);
231
539
  dsoCardClick: EventEmitter<CustomEvent<CardClickEvent>>;
232
540
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
233
541
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoCard, never>;
@@ -242,6 +550,10 @@ declare interface DsoCard extends Components.DsoCard {
242
550
  declare class DsoCardContainer {
243
551
  protected z: NgZone;
244
552
  protected el: HTMLDsoCardContainerElement;
553
+ /**
554
+ * The mode of the Card Container. @default "list"
555
+ */
556
+ set mode(_: Components.DsoCardContainer['mode']);
245
557
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
246
558
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoCardContainer, never>;
247
559
  static ɵcmp: i0.ɵɵComponentDeclaration<DsoCardContainer, "dso-card-container", never, { "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -269,6 +581,49 @@ declare interface DsoCursorTooltip extends Components.DsoCursorTooltip {
269
581
  declare class DsoDatePicker {
270
582
  protected z: NgZone;
271
583
  protected el: HTMLDsoDatePickerElement;
584
+ /**
585
+ * Name of the date picker input. @default "dso-date"
586
+ */
587
+ set name(_: Components.DsoDatePicker['name']);
588
+ /**
589
+ * Adds a unique identifier for the date picker input. Use this instead of html `id` attribute.
590
+ */
591
+ set identifier(_: Components.DsoDatePicker['identifier']);
592
+ /**
593
+ * Makes the date picker input component disabled. This prevents users from being able to
594
+ interact with the input, and conveys its inactive state to assistive technologies. @default false
595
+ */
596
+ set disabled(_: Components.DsoDatePicker['disabled']);
597
+ /**
598
+ * Should the input be marked as required? @default false
599
+ */
600
+ set required(_: Components.DsoDatePicker['required']);
601
+ /**
602
+ * Is input invalid?
603
+ */
604
+ set invalid(_: Components.DsoDatePicker['invalid']);
605
+ /**
606
+ * ID of element that describes the input element
607
+ */
608
+ set describedBy(_: Components.DsoDatePicker['describedBy']);
609
+ /**
610
+ * Should the input be focused on load? @default false
611
+ */
612
+ set dsoAutofocus(_: Components.DsoDatePicker['dsoAutofocus']);
613
+ /**
614
+ * Date value. Must be in Dutch date format: DD-MM-YYYY. @default ""
615
+ */
616
+ set value(_: Components.DsoDatePicker['value']);
617
+ /**
618
+ * Minimum date allowed to be picked. Must be in Dutch date format: DD-MM-YYYY.
619
+ This setting can be used alone or together with the max property.
620
+ */
621
+ set min(_: Components.DsoDatePicker['min']);
622
+ /**
623
+ * Maximum date allowed to be picked. Must be in Dutch date format: DD-MM-YYYY.
624
+ This setting can be used alone or together with the min property.
625
+ */
626
+ set max(_: Components.DsoDatePicker['max']);
272
627
  dsoDateChange: EventEmitter<CustomEvent<DatePickerChangeEvent>>;
273
628
  dsoBlur: EventEmitter<CustomEvent<DatePickerBlurEvent>>;
274
629
  dsoKeyUp: EventEmitter<CustomEvent<DatePickerKeyboardEvent>>;
@@ -303,6 +658,14 @@ declare interface DsoDatePicker extends Components.DsoDatePicker {
303
658
  declare class DsoDocumentCard {
304
659
  protected z: NgZone;
305
660
  protected el: HTMLDsoDocumentCardElement;
661
+ /**
662
+ * The URL to which the DocumentCard heading links.
663
+ */
664
+ set href(_: Components.DsoDocumentCard['href']);
665
+ /**
666
+ * Makes the DocumentCard active.
667
+ */
668
+ set active(_: Components.DsoDocumentCard['active']);
306
669
  dsoDocumentCardClick: EventEmitter<CustomEvent<DocumentCardClickEvent>>;
307
670
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
308
671
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoDocumentCard, never>;
@@ -317,6 +680,107 @@ declare interface DsoDocumentCard extends Components.DsoDocumentCard {
317
680
  declare class DsoDocumentComponent {
318
681
  protected z: NgZone;
319
682
  protected el: HTMLDsoDocumentComponentElement;
683
+ /**
684
+ * The heading element to use. @default "h2"
685
+ */
686
+ set heading(_: Components.DsoDocumentComponent['heading']);
687
+ /**
688
+ * The Kop XML.
689
+ */
690
+ set kop(_: Components.DsoDocumentComponent['kop']);
691
+ /**
692
+ * The Inhoud XML.
693
+ */
694
+ set inhoud(_: Components.DsoDocumentComponent['inhoud']);
695
+ /**
696
+ * This boolean attribute indicates whether the children are visible. @default false
697
+ */
698
+ set open(_: Components.DsoDocumentComponent['open']);
699
+ /**
700
+ * Marks this Document Component as belonging to an active filter. @default false
701
+ */
702
+ set filtered(_: Components.DsoDocumentComponent['filtered']);
703
+ /**
704
+ * Marks this Document Component as not-applicable. @default false
705
+ */
706
+ set notApplicable(_: Components.DsoDocumentComponent['notApplicable']);
707
+ /**
708
+ * Text to display in the badge (e.g. "!").
709
+ */
710
+ set badge(_: Components.DsoDocumentComponent['badge']);
711
+ /**
712
+ * Status/color of the badge.
713
+ */
714
+ set badgeStatus(_: Components.DsoDocumentComponent['badgeStatus']);
715
+ /**
716
+ * Tooltip text for the badge.
717
+ */
718
+ set badgeTooltip(_: Components.DsoDocumentComponent['badgeTooltip']);
719
+ /**
720
+ * Text to display in the label (e.g. "Ontwerp", "Besluitversie").
721
+ */
722
+ set label(_: Components.DsoDocumentComponent['label']);
723
+ /**
724
+ * Status/color of the label.
725
+ */
726
+ set labelStatus(_: Components.DsoDocumentComponent['labelStatus']);
727
+ /**
728
+ * Enables annotations. @default false
729
+ */
730
+ set annotated(_: Components.DsoDocumentComponent['annotated']);
731
+ /**
732
+ * Marks Document Component as reserved.
733
+ */
734
+ set gereserveerd(_: Components.DsoDocumentComponent['gereserveerd']);
735
+ /**
736
+ * Marks the Document Component as expired.
737
+ */
738
+ set vervallen(_: Components.DsoDocumentComponent['vervallen']);
739
+ /**
740
+ * When the Annotation is opened, set this to true. @default false
741
+ */
742
+ set openAnnotation(_: Components.DsoDocumentComponent['openAnnotation']);
743
+ /**
744
+ * An alternative title to show when there is nothing to create a title.
745
+ */
746
+ set alternativeTitle(_: Components.DsoDocumentComponent['alternativeTitle']);
747
+ /**
748
+ * Type of Document Component.
749
+ */
750
+ set type(_: Components.DsoDocumentComponent['type']);
751
+ /**
752
+ * The wijzigactie as in STOP.
753
+ */
754
+ set wijzigactie(_: Components.DsoDocumentComponent['wijzigactie']);
755
+ /**
756
+ * The wijzigactie for all annotations.
757
+ */
758
+ set annotationsWijzigactie(_: Components.DsoDocumentComponent['annotationsWijzigactie']);
759
+ /**
760
+ * To mark text.
761
+ */
762
+ set mark(_: Components.DsoDocumentComponent['mark']);
763
+ /**
764
+ * Shows the recursive toggle button. When the user activates this button the event `dsoRecursiveToggle` is emitted.
765
+ */
766
+ set recursiveToggle(_: Components.DsoDocumentComponent['recursiveToggle']);
767
+ /**
768
+ * A UrlResolver that will be called for all STOP elements that render to HTML5 elements with external references.
769
+ */
770
+ set ozonContentUrlResolver(_: Components.DsoDocumentComponent['ozonContentUrlResolver']);
771
+ /**
772
+ * A BegripResolver that will be called for STOP element "IntRef". If the ref-attribute of IntRef points to a Begrip it
773
+ should return the `<Definitie>` of that Begrip otherwise it should return undefined.
774
+ */
775
+ set ozonContentBegripResolver(_: Components.DsoDocumentComponent['ozonContentBegripResolver']);
776
+ /**
777
+ * The mode of the Document Component. One of "document" or "table-of-contents". Defaults to "document" @default "document"
778
+ */
779
+ set mode(_: Components.DsoDocumentComponent['mode']);
780
+ /**
781
+ * The URL to which the Heading links (only in mode="table-of-contents").
782
+ */
783
+ set href(_: Components.DsoDocumentComponent['href']);
320
784
  dsoRecursiveToggle: EventEmitter<CustomEvent<DocumentComponentRecursiveToggleEvent>>;
321
785
  dsoOpenToggle: EventEmitter<CustomEvent<DocumentComponentOpenToggleEvent>>;
322
786
  dsoTableOfContentsClick: EventEmitter<CustomEvent<DocumentComponentTableOfContentsClickEvent>>;
@@ -325,7 +789,7 @@ declare class DsoDocumentComponent {
325
789
  dsoMarkItemHighlight: EventEmitter<CustomEvent<DocumentComponentMarkItemHighlightEvent>>;
326
790
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
327
791
  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": false; }; "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>;
792
+ 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
793
  }
330
794
  declare interface DsoDocumentComponent extends Components.DsoDocumentComponent {
331
795
  /**
@@ -356,6 +820,23 @@ declare interface DsoDocumentComponent extends Components.DsoDocumentComponent {
356
820
  declare class DsoDropdownMenu {
357
821
  protected z: NgZone;
358
822
  protected el: HTMLDsoDropdownMenuElement;
823
+ /**
824
+ * Whether the menu is open or closed.
825
+ This attribute is reflected and mutable. @default false
826
+ */
827
+ set open(_: Components.DsoDropdownMenu['open']);
828
+ /**
829
+ * Alignment of the dropdown @default "left"
830
+ */
831
+ set dropdownAlign(_: Components.DsoDropdownMenu['dropdownAlign']);
832
+ /**
833
+ * Space between button and dropdown options @default 2
834
+ */
835
+ set dropdownOptionsOffset(_: Components.DsoDropdownMenu['dropdownOptionsOffset']);
836
+ /**
837
+ * Whether the menu is checkable. @default false
838
+ */
839
+ set checkable(_: Components.DsoDropdownMenu['checkable']);
359
840
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
360
841
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoDropdownMenu, never>;
361
842
  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 +846,18 @@ declare interface DsoDropdownMenu extends Components.DsoDropdownMenu {
365
846
  declare class DsoExpandable {
366
847
  protected z: NgZone;
367
848
  protected el: HTMLDsoExpandableElement;
849
+ /**
850
+ * Set to `true` to expand the content.
851
+ */
852
+ set open(_: Components.DsoExpandable['open']);
853
+ /**
854
+ * Set to `true` to show the content animated. @default false
855
+ */
856
+ set enableAnimation(_: Components.DsoExpandable['enableAnimation']);
857
+ /**
858
+ * When enableAnimation is set to `true`, this property specifies the height of this element at which the animation will expand from / collapse to
859
+ */
860
+ set minimumHeight(_: Components.DsoExpandable['minimumHeight']);
368
861
  dsoExpandableAnimationStart: EventEmitter<CustomEvent<ExpandableAnimationStartEvent>>;
369
862
  dsoExpandableAnimationEnd: EventEmitter<CustomEvent<ExpandableAnimationEndEvent>>;
370
863
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
@@ -384,6 +877,54 @@ declare interface DsoExpandable extends Components.DsoExpandable {
384
877
  declare class DsoHeader {
385
878
  protected z: NgZone;
386
879
  protected el: HTMLDsoHeaderElement;
880
+ /**
881
+ * The main menu items. @default []
882
+ */
883
+ set mainMenu(_: Components.DsoHeader['mainMenu']);
884
+ /**
885
+ * Set to "always" to force the header to be compact. Otherwise it will be compact when
886
+ the viewport is smaller than 992px. @default "auto"
887
+ */
888
+ set compact(_: Components.DsoHeader['compact']);
889
+ /**
890
+ * Used to show the login/logout option. 'none' renders nothing. @default "none"
891
+ */
892
+ set authStatus(_: Components.DsoHeader['authStatus']);
893
+ /**
894
+ * When the `authStatus` is `loggedOut` a loginUrl can be provided.
895
+ The login button will then render as an anchor.
896
+ */
897
+ set loginUrl(_: Components.DsoHeader['loginUrl']);
898
+ /**
899
+ * The URL to open when the user activates "logout".
900
+ If no URL is specified, a button element is used instead.
901
+ */
902
+ set logoutUrl(_: Components.DsoHeader['logoutUrl']);
903
+ /**
904
+ * Show a help-button or link in the header @default false
905
+ */
906
+ set showHelp(_: Components.DsoHeader['showHelp']);
907
+ /**
908
+ * The URL to open when the user activates "help".
909
+ If no URL is specified, a button element is used instead.
910
+ */
911
+ set helpUrl(_: Components.DsoHeader['helpUrl']);
912
+ /**
913
+ * The name to show when the user is logged in.
914
+ */
915
+ set userProfileName(_: Components.DsoHeader['userProfileName']);
916
+ /**
917
+ * The URL to open when the user activates the profile url.
918
+ */
919
+ set userProfileUrl(_: Components.DsoHeader['userProfileUrl']);
920
+ /**
921
+ * The URL to open when the user activates "Mijn Omgevingsloket".
922
+ */
923
+ set userHomeUrl(_: Components.DsoHeader['userHomeUrl']);
924
+ /**
925
+ * Set this to true when the user is at "Mijn Omgevingsloket". @default false
926
+ */
927
+ set userHomeActive(_: Components.DsoHeader['userHomeActive']);
387
928
  dsoHeaderClick: EventEmitter<CustomEvent<HeaderEvent>>;
388
929
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
389
930
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoHeader, never>;
@@ -400,6 +941,30 @@ declare interface DsoHeader extends Components.DsoHeader {
400
941
  declare class DsoHighlightBox {
401
942
  protected z: NgZone;
402
943
  protected el: HTMLDsoHighlightBoxElement;
944
+ /**
945
+ * For yellow Highlight Box.
946
+ */
947
+ set yellow(_: Components.DsoHighlightBox['yellow']);
948
+ /**
949
+ * For a bordered Highlight Box.
950
+ */
951
+ set border(_: Components.DsoHighlightBox['border']);
952
+ /**
953
+ * For a white Highlight Box.
954
+ */
955
+ set white(_: Components.DsoHighlightBox['white']);
956
+ /**
957
+ * For a green Highlight Box.
958
+ */
959
+ set green(_: Components.DsoHighlightBox['green']);
960
+ /**
961
+ * For an Highlight Box with a drop shadow.
962
+ */
963
+ set dropShadow(_: Components.DsoHighlightBox['dropShadow']);
964
+ /**
965
+ * To create a step indicator.
966
+ */
967
+ set step(_: Components.DsoHighlightBox['step']);
403
968
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
404
969
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoHighlightBox, never>;
405
970
  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 +974,14 @@ declare interface DsoHighlightBox extends Components.DsoHighlightBox {
409
974
  declare class DsoHistoryItem {
410
975
  protected z: NgZone;
411
976
  protected el: HTMLDsoHistoryItemElement;
977
+ /**
978
+ * The type of History Item
979
+ */
980
+ set type(_: Components.DsoHistoryItem['type']);
981
+ /**
982
+ * The optional URL to which the History Item title links. Needs to be provided when slot `title` is used.
983
+ */
984
+ set href(_: Components.DsoHistoryItem['href']);
412
985
  dsoClick: EventEmitter<CustomEvent<HistoryItemClickEvent>>;
413
986
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
414
987
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoHistoryItem, never>;
@@ -423,6 +996,10 @@ declare interface DsoHistoryItem extends Components.DsoHistoryItem {
423
996
  declare class DsoIcon {
424
997
  protected z: NgZone;
425
998
  protected el: HTMLDsoIconElement;
999
+ /**
1000
+ * The alias of the icon.
1001
+ */
1002
+ set icon(_: Components.DsoIcon['icon']);
426
1003
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
427
1004
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoIcon, never>;
428
1005
  static ɵcmp: i0.ɵɵComponentDeclaration<DsoIcon, "dso-icon", never, { "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -432,6 +1009,26 @@ declare interface DsoIcon extends Components.DsoIcon {
432
1009
  declare class DsoIconButton {
433
1010
  protected z: NgZone;
434
1011
  protected el: HTMLDsoIconButtonElement;
1012
+ /**
1013
+ * The alias of the icon in the button.
1014
+ */
1015
+ set icon(_: Components.DsoIconButton['icon']);
1016
+ /**
1017
+ * The label of the Icon Button which is shown on hover in a tooltip.
1018
+ */
1019
+ set label(_: Components.DsoIconButton['label']);
1020
+ /**
1021
+ * The variant of the Icon Button. @default "secondary"
1022
+ */
1023
+ set variant(_: Components.DsoIconButton['variant']);
1024
+ /**
1025
+ * The placement of the tooltip on hover and focus of the Icon Button. @default "top"
1026
+ */
1027
+ set tooltipPlacement(_: Components.DsoIconButton['tooltipPlacement']);
1028
+ /**
1029
+ * To disable the Icon Button @default false
1030
+ */
1031
+ set disabled(_: Components.DsoIconButton['disabled']);
435
1032
  dsoClick: EventEmitter<CustomEvent<IconButtonClickEvent>>;
436
1033
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
437
1034
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoIconButton, never>;
@@ -446,6 +1043,10 @@ declare interface DsoIconButton extends Components.DsoIconButton {
446
1043
  declare class DsoImageOverlay {
447
1044
  protected z: NgZone;
448
1045
  protected el: HTMLDsoImageOverlayElement;
1046
+ /**
1047
+ * The wijzigactie.
1048
+ */
1049
+ set wijzigactie(_: Components.DsoImageOverlay['wijzigactie']);
449
1050
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
450
1051
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoImageOverlay, never>;
451
1052
  static ɵcmp: i0.ɵɵComponentDeclaration<DsoImageOverlay, "dso-image-overlay", never, { "wijzigactie": { "alias": "wijzigactie"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -455,6 +1056,14 @@ declare interface DsoImageOverlay extends Components.DsoImageOverlay {
455
1056
  declare class DsoInfo {
456
1057
  protected z: NgZone;
457
1058
  protected el: HTMLDsoInfoElement;
1059
+ /**
1060
+ * Set to true if the Info should not be toggled and always visible.
1061
+ */
1062
+ set fixed(_: Components.DsoInfo['fixed']);
1063
+ /**
1064
+ * Whether the Info is active.
1065
+ */
1066
+ set active(_: Components.DsoInfo['active']);
458
1067
  dsoClose: EventEmitter<CustomEvent<MouseEvent>>;
459
1068
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
460
1069
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoInfo, never>;
@@ -469,6 +1078,22 @@ declare interface DsoInfo extends Components.DsoInfo {
469
1078
  declare class DsoInfoButton {
470
1079
  protected z: NgZone;
471
1080
  protected el: HTMLDsoInfoButtonElement;
1081
+ /**
1082
+ * Whether the InfoButton is active. @default false
1083
+ */
1084
+ set active(_: Components.DsoInfoButton['active']);
1085
+ /**
1086
+ * For secondary Info Button.
1087
+ */
1088
+ set secondary(_: Components.DsoInfoButton['secondary']);
1089
+ /**
1090
+ * The label. @default "Toelichting bij optie"
1091
+ */
1092
+ set label(_: Components.DsoInfoButton['label']);
1093
+ /**
1094
+ * The placement of the Toggletip on click. @default "top"
1095
+ */
1096
+ set toggletipPlacement(_: Components.DsoInfoButton['toggletipPlacement']);
472
1097
  dsoToggle: EventEmitter<CustomEvent<InfoButtonToggleEvent>>;
473
1098
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
474
1099
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoInfoButton, never>;
@@ -483,6 +1108,34 @@ declare interface DsoInfoButton extends Components.DsoInfoButton {
483
1108
  declare class DsoInputRange {
484
1109
  protected z: NgZone;
485
1110
  protected el: HTMLDsoInputRangeElement;
1111
+ /**
1112
+ * The minimum value of the range.
1113
+ */
1114
+ set min(_: Components.DsoInputRange['min']);
1115
+ /**
1116
+ * The maximum value of the range.
1117
+ */
1118
+ set max(_: Components.DsoInputRange['max']);
1119
+ /**
1120
+ * The value of the range.
1121
+ */
1122
+ set value(_: Components.DsoInputRange['value']);
1123
+ /**
1124
+ * The step to increment the value by.
1125
+ */
1126
+ set step(_: Components.DsoInputRange['step']);
1127
+ /**
1128
+ * The label of the range.
1129
+ */
1130
+ set label(_: Components.DsoInputRange['label']);
1131
+ /**
1132
+ * The unit of the range. @default ""
1133
+ */
1134
+ set unit(_: Components.DsoInputRange['unit']);
1135
+ /**
1136
+ * The description of the range.
1137
+ */
1138
+ set description(_: Components.DsoInputRange['description']);
486
1139
  dsoChange: EventEmitter<CustomEvent<InputRangeChangeEvent>>;
487
1140
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
488
1141
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoInputRange, never>;
@@ -497,6 +1150,22 @@ declare interface DsoInputRange extends Components.DsoInputRange {
497
1150
  declare class DsoLabel {
498
1151
  protected z: NgZone;
499
1152
  protected el: HTMLDsoLabelElement;
1153
+ /**
1154
+ * For compact Label
1155
+ */
1156
+ set compact(_: Components.DsoLabel['compact']);
1157
+ /**
1158
+ * Shows a button that can be used to remove the Label.
1159
+ */
1160
+ set removable(_: Components.DsoLabel['removable']);
1161
+ /**
1162
+ * The status of this Label.
1163
+ */
1164
+ set status(_: Components.DsoLabel['status']);
1165
+ /**
1166
+ * Whether the Label is allowed to truncate the contents if it does not fit the container element.
1167
+ */
1168
+ set truncate(_: Components.DsoLabel['truncate']);
500
1169
  dsoRemoveClick: EventEmitter<CustomEvent<MouseEvent>>;
501
1170
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
502
1171
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoLabel, never>;
@@ -511,6 +1180,10 @@ declare interface DsoLabel extends Components.DsoLabel {
511
1180
  declare class DsoLegend {
512
1181
  protected z: NgZone;
513
1182
  protected el: HTMLDsoLegendElement;
1183
+ /**
1184
+ * TabItems in the legend topbar @default []
1185
+ */
1186
+ set tabItems(_: Components.DsoLegend['tabItems']);
514
1187
  dsoContentSwitch: EventEmitter<CustomEvent<LegendContentSwitchEvent>>;
515
1188
  dsoClose: EventEmitter<CustomEvent<LegendCloseEvent>>;
516
1189
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
@@ -530,6 +1203,11 @@ declare interface DsoLegend extends Components.DsoLegend {
530
1203
  declare class DsoLegendGroup {
531
1204
  protected z: NgZone;
532
1205
  protected el: HTMLDsoLegendGroupElement;
1206
+ /**
1207
+ * Controls whether this Legend Group and its child Legend Items are in edit or view mode.
1208
+ When not set, no edit/view toggle icon is shown.
1209
+ */
1210
+ set mode(_: Components.DsoLegendGroup['mode']);
533
1211
  dsoLegendGroupModeChange: EventEmitter<CustomEvent<LegendGroupModeChangeEvent>>;
534
1212
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
535
1213
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoLegendGroup, never>;
@@ -544,6 +1222,22 @@ declare interface DsoLegendGroup extends Components.DsoLegendGroup {
544
1222
  declare class DsoLegendItem {
545
1223
  protected z: NgZone;
546
1224
  protected el: HTMLDsoLegendItemElement;
1225
+ /**
1226
+ * To disable the Legend Item @default false
1227
+ */
1228
+ set disabled(_: Components.DsoLegendItem['disabled']);
1229
+ /**
1230
+ * Message to be shown in an info-button tooltip when the Legend Item is disabled
1231
+ */
1232
+ set disabledMessage(_: Components.DsoLegendItem['disabledMessage']);
1233
+ /**
1234
+ * Controls whether this Legend Item can be active or not
1235
+ */
1236
+ set activatable(_: Components.DsoLegendItem['activatable']);
1237
+ /**
1238
+ * Controls whether this Legend Item is active or not
1239
+ */
1240
+ set active(_: Components.DsoLegendItem['active']);
547
1241
  dsoActiveChange: EventEmitter<CustomEvent<LegendItemActiveChangeEvent>>;
548
1242
  dsoDelete: EventEmitter<CustomEvent<LegendItemDeleteEvent>>;
549
1243
  dsoMouseEnter: EventEmitter<CustomEvent<any>>;
@@ -573,6 +1267,38 @@ declare interface DsoLegendItem extends Components.DsoLegendItem {
573
1267
  declare class DsoListButton {
574
1268
  protected z: NgZone;
575
1269
  protected el: HTMLDsoListButtonElement;
1270
+ /**
1271
+ * The label of the List Button.
1272
+ */
1273
+ set label(_: Components.DsoListButton['label']);
1274
+ /**
1275
+ * The sublabel of the List Button.
1276
+ */
1277
+ set sublabel(_: Components.DsoListButton['sublabel']);
1278
+ /**
1279
+ * When defined the count can show on the List Button.
1280
+ */
1281
+ set count(_: Components.DsoListButton['count']);
1282
+ /**
1283
+ * The minimum value.
1284
+ */
1285
+ set min(_: Components.DsoListButton['min']);
1286
+ /**
1287
+ * The maximum value.
1288
+ */
1289
+ set max(_: Components.DsoListButton['max']);
1290
+ /**
1291
+ * Whether the List Button is checked. @default false
1292
+ */
1293
+ set checked(_: Components.DsoListButton['checked']);
1294
+ /**
1295
+ * Whether the List Button is disabled. @default false
1296
+ */
1297
+ set disabled(_: Components.DsoListButton['disabled']);
1298
+ /**
1299
+ * Prefix to subcontent for the purpose of screenreading.
1300
+ */
1301
+ set subcontentPrefix(_: Components.DsoListButton['subcontentPrefix']);
576
1302
  dsoCountChange: EventEmitter<CustomEvent<ListButtonChangeEvent>>;
577
1303
  dsoSelectedChange: EventEmitter<CustomEvent<ListButtonSelectedEvent>>;
578
1304
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
@@ -594,6 +1320,32 @@ declare interface DsoListButton extends Components.DsoListButton {
594
1320
  declare class DsoLogo {
595
1321
  protected z: NgZone;
596
1322
  protected el: HTMLDsoLogoElement;
1323
+ /**
1324
+ * An alternative name for the logo wordmark Omgevingsloket. For instance `Environment| Desk`. It should contains a
1325
+ pipe-character: the left-hand side of the pipe will be shown in grasgroen, the right-hand side of the pipe will be
1326
+ shown in bosgroen.
1327
+ When omitted the logo wordmark will default to Omgevingsloket, with 'Omgevings' shown in grasgroen and 'loket' in
1328
+ bosgroen. @default "Omgevings|loket"
1329
+ */
1330
+ set name(_: Components.DsoLogo['name']);
1331
+ /**
1332
+ * The url the logo is pointing to.
1333
+ */
1334
+ set logoUrl(_: Components.DsoLogo['logoUrl']);
1335
+ /**
1336
+ * The label clarifies the service within the Omgevingsloket, shown
1337
+ as a subtitle (and on smaller screens as the main wordmark itself).
1338
+ */
1339
+ set label(_: Components.DsoLogo['label']);
1340
+ /**
1341
+ * The url the label is pointing to.
1342
+ */
1343
+ set labelUrl(_: Components.DsoLogo['labelUrl']);
1344
+ /**
1345
+ * The ribbon contains the text for a possible 'sticker' on top of the logo.
1346
+ Used to clarify the (non-production) server environment ("int", "kta", "pfm", "pre", or "dmo")
1347
+ */
1348
+ set ribbon(_: Components.DsoLogo['ribbon']);
597
1349
  dsoLogoClick: EventEmitter<CustomEvent<LogoClickEvent>>;
598
1350
  dsoLabelClick: EventEmitter<CustomEvent<LogoLabelClickEvent>>;
599
1351
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
@@ -613,6 +1365,14 @@ declare interface DsoLogo extends Components.DsoLogo {
613
1365
  declare class DsoMapBaseLayers {
614
1366
  protected z: NgZone;
615
1367
  protected el: HTMLDsoMapBaseLayersElement;
1368
+ /**
1369
+ * To group the overlays together. Generally the default value suffices. @default uuidv4()
1370
+ */
1371
+ set group(_: Components.DsoMapBaseLayers['group']);
1372
+ /**
1373
+ * The base layers.
1374
+ */
1375
+ set baseLayers(_: Components.DsoMapBaseLayers['baseLayers']);
616
1376
  dsoBaseLayerChange: EventEmitter<CustomEvent<BaseLayerChangeEvent>>;
617
1377
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
618
1378
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoMapBaseLayers, never>;
@@ -627,6 +1387,18 @@ declare interface DsoMapBaseLayers extends Components.DsoMapBaseLayers {
627
1387
  declare class DsoMapControls {
628
1388
  protected z: NgZone;
629
1389
  protected el: HTMLDsoMapControlsElement;
1390
+ /**
1391
+ * To show and hide the Map Controls. @default false
1392
+ */
1393
+ set open(_: Components.DsoMapControls['open']);
1394
+ /**
1395
+ * To disable the zoom controls:
1396
+
1397
+ * `in`: Disable zoom in button.
1398
+ * `out`: Disable zoom out button.
1399
+ * `both`: Disable zoom in and zoom out.
1400
+ */
1401
+ set disableZoom(_: Components.DsoMapControls['disableZoom']);
630
1402
  dsoZoomIn: EventEmitter<CustomEvent<MouseEvent>>;
631
1403
  dsoZoomOut: EventEmitter<CustomEvent<MouseEvent>>;
632
1404
  dsoToggle: EventEmitter<CustomEvent<MapControlsToggleEvent>>;
@@ -654,6 +1426,19 @@ declare interface DsoMapControls extends Components.DsoMapControls {
654
1426
  declare class DsoMapLayer {
655
1427
  protected z: NgZone;
656
1428
  protected el: HTMLDsoMapLayerElement;
1429
+ /**
1430
+ * The label of the Map Layer.
1431
+ */
1432
+ set label(_: Components.DsoMapLayer['label']);
1433
+ /**
1434
+ * A boolean to indicate if the Map Layer is capable of being activated. When `true` a Slide Toggle displays
1435
+ on the right. @default false
1436
+ */
1437
+ set activatable(_: Components.DsoMapLayer['activatable']);
1438
+ /**
1439
+ * An optional boolean indicating whether the Map Layer is active.
1440
+ */
1441
+ set active(_: Components.DsoMapLayer['active']);
657
1442
  dsoActiveChange: EventEmitter<CustomEvent<MapLayerActiveChangeEvent>>;
658
1443
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
659
1444
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoMapLayer, never>;
@@ -668,6 +1453,10 @@ declare interface DsoMapLayer extends Components.DsoMapLayer {
668
1453
  declare class DsoMapLayerObject {
669
1454
  protected z: NgZone;
670
1455
  protected el: HTMLDsoMapLayerObjectElement;
1456
+ /**
1457
+ * An optional boolean indicating whether the Map Layer Object is active.
1458
+ */
1459
+ set active(_: Components.DsoMapLayerObject['active']);
671
1460
  dsoActiveChange: EventEmitter<CustomEvent<MapLayerObjectActiveChangeEvent>>;
672
1461
  dsoMouseEnter: EventEmitter<CustomEvent<any>>;
673
1462
  dsoMouseLeave: EventEmitter<CustomEvent<any>>;
@@ -689,9 +1478,30 @@ declare interface DsoMapLayerObject extends Components.DsoMapLayerObject {
689
1478
  */
690
1479
  dsoMouseLeave: EventEmitter<CustomEvent<any>>;
691
1480
  }
1481
+ declare class DsoMapMessage {
1482
+ protected z: NgZone;
1483
+ protected el: HTMLDsoMapMessageElement;
1484
+ /**
1485
+ * Variant determines the icon and actions shown.
1486
+ */
1487
+ set variant(_: Components.DsoMapMessage['variant']);
1488
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1489
+ static ɵfac: i0.ɵɵFactoryDeclaration<DsoMapMessage, never>;
1490
+ static ɵcmp: i0.ɵɵComponentDeclaration<DsoMapMessage, "dso-map-message", never, { "variant": { "alias": "variant"; "required": true; }; }, {}, never, ["*"], true, never>;
1491
+ }
1492
+ declare interface DsoMapMessage extends Components.DsoMapMessage {
1493
+ }
692
1494
  declare class DsoMapOverlays {
693
1495
  protected z: NgZone;
694
1496
  protected el: HTMLDsoMapOverlaysElement;
1497
+ /**
1498
+ * To group the overlays together. Generally the default value suffices. @default uuidv4()
1499
+ */
1500
+ set group(_: Components.DsoMapOverlays['group']);
1501
+ /**
1502
+ * The overlays.
1503
+ */
1504
+ set overlays(_: Components.DsoMapOverlays['overlays']);
695
1505
  dsoToggleOverlay: EventEmitter<CustomEvent<OverlayChangeEvent>>;
696
1506
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
697
1507
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoMapOverlays, never>;
@@ -706,6 +1516,22 @@ declare interface DsoMapOverlays extends Components.DsoMapOverlays {
706
1516
  declare class DsoMarkBar {
707
1517
  protected z: NgZone;
708
1518
  protected el: HTMLDsoMarkBarElement;
1519
+ /**
1520
+ * The current search value.
1521
+ */
1522
+ set value(_: Components.DsoMarkBar['value']);
1523
+ /**
1524
+ * The label for the input field. @default "Zoeken in document"
1525
+ */
1526
+ set label(_: Components.DsoMarkBar['label']);
1527
+ /**
1528
+ * The current (one-based) highlighted search item.
1529
+ */
1530
+ set current(_: Components.DsoMarkBar['current']);
1531
+ /**
1532
+ * Total number of search results.
1533
+ */
1534
+ set totalCount(_: Components.DsoMarkBar['totalCount']);
709
1535
  dsoInput: EventEmitter<CustomEvent<MarkBarInputEvent>>;
710
1536
  dsoNext: EventEmitter<CustomEvent<MarkBarPaginationEvent>>;
711
1537
  dsoPrevious: EventEmitter<CustomEvent<MarkBarPaginationEvent>>;
@@ -735,6 +1561,32 @@ declare interface DsoMarkBar extends Components.DsoMarkBar {
735
1561
  declare class DsoModal {
736
1562
  protected z: NgZone;
737
1563
  protected el: HTMLDsoModalElement;
1564
+ /**
1565
+ * when set the modal will be shown in fullscreen.
1566
+ */
1567
+ set fullscreen(_: Components.DsoModal['fullscreen']);
1568
+ /**
1569
+ * The title of the Modal.
1570
+ */
1571
+ set modalTitle(_: Components.DsoModal['modalTitle']);
1572
+ /**
1573
+ * the role for the modal `dialog` | `alert` | `alertdialog`. @default "dialog"
1574
+ */
1575
+ set dialogRole(_: Components.DsoModal['dialogRole']);
1576
+ /**
1577
+ * The element to return focus to after the modal is closed.
1578
+
1579
+ * `undefined` will return focus to the previously focused element (default).
1580
+ * `false` will not return focus to any element.
1581
+ * or, provide your own `HTMLElement` that will receive focus upon closing. @default undefined
1582
+ */
1583
+ set returnFocus(_: Components.DsoModal['returnFocus']);
1584
+ /**
1585
+ * when `false` the close button in the header will not be rendered.
1586
+
1587
+ Needs `modalTitle` to be set. @default false
1588
+ */
1589
+ set closable(_: Components.DsoModal['closable']);
738
1590
  dsoClose: EventEmitter<CustomEvent<ModalCloseEvent>>;
739
1591
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
740
1592
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoModal, never>;
@@ -752,6 +1604,10 @@ declare interface DsoModal extends Components.DsoModal {
752
1604
  declare class DsoOnboardingTip {
753
1605
  protected z: NgZone;
754
1606
  protected el: HTMLDsoOnboardingTipElement;
1607
+ /**
1608
+ * Where to place the Onboarding Tip relative to its reference element. @default "right"
1609
+ */
1610
+ set placement(_: Components.DsoOnboardingTip['placement']);
755
1611
  dsoClose: EventEmitter<CustomEvent<OnboardingTipCloseEvent>>;
756
1612
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
757
1613
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoOnboardingTip, never>;
@@ -766,6 +1622,32 @@ declare interface DsoOnboardingTip extends Components.DsoOnboardingTip {
766
1622
  declare class DsoOzonContent {
767
1623
  protected z: NgZone;
768
1624
  protected el: HTMLDsoOzonContentElement;
1625
+ /**
1626
+ * The XML to be rendered.
1627
+ */
1628
+ set content(_: Components.DsoOzonContent['content']);
1629
+ /**
1630
+ * Setting this property creates dso-ozon-content as inline element instead of a block element. @default false
1631
+ */
1632
+ set inline(_: Components.DsoOzonContent['inline']);
1633
+ /**
1634
+ * To mark text.
1635
+ */
1636
+ set mark(_: Components.DsoOzonContent['mark']);
1637
+ /**
1638
+ * A UrlResolver that will be called for all STOP elements that render to HTML5 elements with external references.
1639
+ */
1640
+ set urlResolver(_: Components.DsoOzonContent['urlResolver']);
1641
+ /**
1642
+ * A BegripResolver that will be called for STOP element "IntRef". If the ref-attribute of IntRef points to a Begrip it
1643
+ should return the `<Definitie>` of that Begrip otherwise it should return undefined.
1644
+ */
1645
+ set begripResolver(_: Components.DsoOzonContent['begripResolver']);
1646
+ /**
1647
+ * Boolean indicating that this dso-ozon-content is part of an annotated context. If true the content of the
1648
+ toggletip for "IntIoRef" will show a "Kenmerken en kaart" annotation button. @default false
1649
+ */
1650
+ set annotated(_: Components.DsoOzonContent['annotated']);
769
1651
  dsoClick: EventEmitter<CustomEvent<OzonContentClickEvent>>;
770
1652
  dsoOzonContentMarkItemHighlight: EventEmitter<CustomEvent<OzonContentMarkItemHighlightEvent>>;
771
1653
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
@@ -785,6 +1667,10 @@ declare interface DsoOzonContent extends Components.DsoOzonContent {
785
1667
  declare class DsoOzonContentToggletip {
786
1668
  protected z: NgZone;
787
1669
  protected el: HTMLDsoOzonContentToggletipElement;
1670
+ /**
1671
+ * The alias of the icon in the button.
1672
+ */
1673
+ set icon(_: Components.DsoOzonContentToggletip['icon']);
788
1674
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
789
1675
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoOzonContentToggletip, never>;
790
1676
  static ɵcmp: i0.ɵɵComponentDeclaration<DsoOzonContentToggletip, "dso-ozon-content-toggletip", never, { "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -794,6 +1680,18 @@ declare interface DsoOzonContentToggletip extends Components.DsoOzonContentToggl
794
1680
  declare class DsoPagination {
795
1681
  protected z: NgZone;
796
1682
  protected el: HTMLDsoPaginationElement;
1683
+ /**
1684
+ * Total pages
1685
+ */
1686
+ set totalPages(_: Components.DsoPagination['totalPages']);
1687
+ /**
1688
+ * Current page
1689
+ */
1690
+ set currentPage(_: Components.DsoPagination['currentPage']);
1691
+ /**
1692
+ * This function is called to format the href @default (page) => "#" + page
1693
+ */
1694
+ set formatHref(_: Components.DsoPagination['formatHref']);
797
1695
  dsoSelectPage: EventEmitter<CustomEvent<PaginationSelectPageEvent>>;
798
1696
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
799
1697
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoPagination, never>;
@@ -808,6 +1706,14 @@ declare interface DsoPagination extends Components.DsoPagination {
808
1706
  declare class DsoPanel {
809
1707
  protected z: NgZone;
810
1708
  protected el: HTMLDsoPanelElement;
1709
+ /**
1710
+ * The accessible name for the close button.
1711
+ */
1712
+ set closeButtonLabel(_: Components.DsoPanel['closeButtonLabel']);
1713
+ /**
1714
+ * To display the panel as an emphasized panel. @default false
1715
+ */
1716
+ set emphasized(_: Components.DsoPanel['emphasized']);
811
1717
  dsoCloseClick: EventEmitter<CustomEvent<PanelCloseEvent>>;
812
1718
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
813
1719
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoPanel, never>;
@@ -822,6 +1728,22 @@ declare interface DsoPanel extends Components.DsoPanel {
822
1728
  declare class DsoPlekinfoCard {
823
1729
  protected z: NgZone;
824
1730
  protected el: HTMLDsoPlekinfoCardElement;
1731
+ /**
1732
+ * An optional 'wijzigactie' that signals if the plekinfo on the card is added or removed.
1733
+ */
1734
+ set wijzigactie(_: Components.DsoPlekinfoCard['wijzigactie']);
1735
+ /**
1736
+ * The URL to which the PlekinfoCard heading links.
1737
+ */
1738
+ set href(_: Components.DsoPlekinfoCard['href']);
1739
+ /**
1740
+ * Opens the urls in a new window or tab @default false
1741
+ */
1742
+ set targetBlank(_: Components.DsoPlekinfoCard['targetBlank']);
1743
+ /**
1744
+ * Makes the PlekinfoCard active.
1745
+ */
1746
+ set active(_: Components.DsoPlekinfoCard['active']);
825
1747
  dsoPlekinfoCardClick: EventEmitter<CustomEvent<PlekinfoCardClickEvent>>;
826
1748
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
827
1749
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoPlekinfoCard, never>;
@@ -836,6 +1758,20 @@ declare interface DsoPlekinfoCard extends Components.DsoPlekinfoCard {
836
1758
  declare class DsoProgressIndicator {
837
1759
  protected z: NgZone;
838
1760
  protected el: HTMLDsoProgressIndicatorElement;
1761
+ /**
1762
+ * The label of the Progress Indicator.
1763
+ */
1764
+ set label(_: Components.DsoProgressIndicator['label']);
1765
+ /**
1766
+ * The size (width) of the Progress Indicator.
1767
+
1768
+ If no size is set, falls back to `small`.
1769
+ */
1770
+ set size(_: Components.DsoProgressIndicator['size']);
1771
+ /**
1772
+ * Set for bloatier Progress Indicator.
1773
+ */
1774
+ set block(_: Components.DsoProgressIndicator['block']);
839
1775
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
840
1776
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoProgressIndicator, never>;
841
1777
  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 +1781,10 @@ declare interface DsoProgressIndicator extends Components.DsoProgressIndicator {
845
1781
  declare class DsoProjectItem {
846
1782
  protected z: NgZone;
847
1783
  protected el: HTMLDsoProjectItemElement;
1784
+ /**
1785
+ * The label of the project item.
1786
+ */
1787
+ set label(_: Components.DsoProjectItem['label']);
848
1788
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
849
1789
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoProjectItem, never>;
850
1790
  static ɵcmp: i0.ɵɵComponentDeclaration<DsoProjectItem, "dso-project-item", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -854,6 +1794,14 @@ declare interface DsoProjectItem extends Components.DsoProjectItem {
854
1794
  declare class DsoRenvooi {
855
1795
  protected z: NgZone;
856
1796
  protected el: HTMLDsoRenvooiElement;
1797
+ /**
1798
+ * The renvooi value to render.
1799
+ */
1800
+ set value(_: Components.DsoRenvooi['value']);
1801
+ /**
1802
+ * To mark text.
1803
+ */
1804
+ set mark(_: Components.DsoRenvooi['mark']);
857
1805
  dsoRenvooiMarkItemHighlight: EventEmitter<CustomEvent<RenvooiMarkItemHighlightEvent>>;
858
1806
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
859
1807
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoRenvooi, never>;
@@ -893,9 +1841,96 @@ declare interface DsoScrollable extends Components.DsoScrollable {
893
1841
  */
894
1842
  dsoScrollEnd: EventEmitter<CustomEvent<DsoScrollEndEvent>>;
895
1843
  }
1844
+ declare class DsoSegmentedButton {
1845
+ protected z: NgZone;
1846
+ protected el: HTMLDsoSegmentedButtonElement;
1847
+ /**
1848
+ * Optional custom group name
1849
+ */
1850
+ set groupName(_: Components.DsoSegmentedButton['groupName']);
1851
+ /**
1852
+ * Options to render in the segmented button
1853
+ */
1854
+ set options(_: Components.DsoSegmentedButton['options']);
1855
+ /**
1856
+ * Label for the segmented button group.
1857
+ */
1858
+ set label(_: Components.DsoSegmentedButton['label']);
1859
+ /**
1860
+ * Whether selection is required
1861
+ */
1862
+ set required(_: Components.DsoSegmentedButton['required']);
1863
+ /**
1864
+ * Index of the currently active option
1865
+ */
1866
+ set activeOption(_: Components.DsoSegmentedButton['activeOption']);
1867
+ dsoChange: EventEmitter<CustomEvent<SegmentedButtonChangeEvent>>;
1868
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1869
+ static ɵfac: i0.ɵɵFactoryDeclaration<DsoSegmentedButton, never>;
1870
+ 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>;
1871
+ }
1872
+ declare interface DsoSegmentedButton extends Components.DsoSegmentedButton {
1873
+ /**
1874
+ * Emitted when active option changes
1875
+ */
1876
+ dsoChange: EventEmitter<CustomEvent<SegmentedButtonChangeEvent>>;
1877
+ }
896
1878
  declare class DsoSelectable {
897
1879
  protected z: NgZone;
898
1880
  protected el: HTMLDsoSelectableElement;
1881
+ /**
1882
+ * Type of Selectable.
1883
+
1884
+ `checkbox`: Multiple options
1885
+ `radio`: Single option.
1886
+ */
1887
+ set type(_: Components.DsoSelectable['type']);
1888
+ /**
1889
+ * To set `<input id>` attribute for external references.
1890
+ */
1891
+ set identifier(_: Components.DsoSelectable['identifier']);
1892
+ /**
1893
+ * Name of the Selectable. Can be used to group Selectables.
1894
+ */
1895
+ set name(_: Components.DsoSelectable['name']);
1896
+ /**
1897
+ * The value of the Selectable.
1898
+ */
1899
+ set value(_: Components.DsoSelectable['value']);
1900
+ /**
1901
+ * Set to true of the current value is not valid.
1902
+ */
1903
+ set invalid(_: Components.DsoSelectable['invalid']);
1904
+ /**
1905
+ * To link this control to an element that describes it.
1906
+ */
1907
+ set describedById(_: Components.DsoSelectable['describedById']);
1908
+ /**
1909
+ * To link this control to an element that labels it.
1910
+ */
1911
+ set labelledById(_: Components.DsoSelectable['labelledById']);
1912
+ /**
1913
+ * To disable the Selectable.
1914
+ */
1915
+ set disabled(_: Components.DsoSelectable['disabled']);
1916
+ /**
1917
+ * To mark the Selectable as required.
1918
+ */
1919
+ set required(_: Components.DsoSelectable['required']);
1920
+ /**
1921
+ * Mark the Selectable as checked
1922
+ */
1923
+ set checked(_: Components.DsoSelectable['checked']);
1924
+ /**
1925
+ * An indeterminate state is neither true or false. It means the answer is somewhere in between.
1926
+
1927
+ Can be used to indicate child Selectables that are a mix of checked and unchecked.
1928
+ */
1929
+ set indeterminate(_: Components.DsoSelectable['indeterminate']);
1930
+ /**
1931
+ * Set to true if the Info should not be toggled and always visible.
1932
+ */
1933
+ set infoFixed(_: Components.DsoSelectable['infoFixed']);
899
1934
  dsoChange: EventEmitter<CustomEvent<SelectableChangeEvent>>;
900
1935
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
901
1936
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoSelectable, never>;
@@ -910,6 +1945,14 @@ declare interface DsoSelectable extends Components.DsoSelectable {
910
1945
  declare class DsoSkiplink {
911
1946
  protected z: NgZone;
912
1947
  protected el: HTMLDsoSkiplinkElement;
1948
+ /**
1949
+ * The location to which the skiplink links.
1950
+ */
1951
+ set to(_: Components.DsoSkiplink['to']);
1952
+ /**
1953
+ * link text
1954
+ */
1955
+ set label(_: Components.DsoSkiplink['label']);
913
1956
  dsoSkiplinkClick: EventEmitter<CustomEvent<SkiplinkClickEvent>>;
914
1957
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
915
1958
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoSkiplink, never>;
@@ -924,6 +1967,26 @@ declare interface DsoSkiplink extends Components.DsoSkiplink {
924
1967
  declare class DsoSlideToggle {
925
1968
  protected z: NgZone;
926
1969
  protected el: HTMLDsoSlideToggleElement;
1970
+ /**
1971
+ * Set to true if Slide Toggle is checked. @default false
1972
+ */
1973
+ set checked(_: Components.DsoSlideToggle['checked']);
1974
+ /**
1975
+ * Disables the Slide Toggle, preventing it from checking/unchecking and therefor not emitting any events. @default false
1976
+ */
1977
+ set disabled(_: Components.DsoSlideToggle['disabled']);
1978
+ /**
1979
+ * When provided the `<button>` will be labelled with `aria-label`. For a visible label provide a `<span>` inside the component.
1980
+ */
1981
+ set accessibleLabel(_: Components.DsoSlideToggle['accessibleLabel']);
1982
+ /**
1983
+ * Provide the `id` of the element that labels this element. this property sets the `aria-labelledby` on the switch button.
1984
+ */
1985
+ set labelledbyId(_: Components.DsoSlideToggle['labelledbyId']);
1986
+ /**
1987
+ * Provide an `id` for the `<button>`. Useful for placing your to place your own `<label for="id">`. @default v4()
1988
+ */
1989
+ set identifier(_: Components.DsoSlideToggle['identifier']);
927
1990
  dsoActiveChange: EventEmitter<CustomEvent<SlideToggleActiveEvent>>;
928
1991
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
929
1992
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoSlideToggle, never>;
@@ -957,6 +2020,18 @@ declare interface DsoSurveyRating extends Components.DsoSurveyRating {
957
2020
  declare class DsoTab {
958
2021
  protected z: NgZone;
959
2022
  protected el: HTMLDsoTabElement;
2023
+ /**
2024
+ * Makes the tab active. The tab for which the tabpanel is visible is the active tab.
2025
+ */
2026
+ set active(_: Components.DsoTab['active']);
2027
+ /**
2028
+ * Disables the tab. A disabled tab cannot be activated and it's tabpanel cannot be shown.
2029
+ */
2030
+ set disabled(_: Components.DsoTab['disabled']);
2031
+ /**
2032
+ * The optional href of the tab. Creates an anchor if present. Creates a button if absent.
2033
+ */
2034
+ set href(_: Components.DsoTab['href']);
960
2035
  dsoTabSwitch: EventEmitter<CustomEvent<TabsSwitchEvent>>;
961
2036
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
962
2037
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoTab, never>;
@@ -971,6 +2046,10 @@ declare interface DsoTab extends Components.DsoTab {
971
2046
  declare class DsoTable {
972
2047
  protected z: NgZone;
973
2048
  protected el: HTMLDsoTableElement;
2049
+ /**
2050
+ * Prevents the table being opened in a modal. @default false
2051
+ */
2052
+ set noModal(_: Components.DsoTable['noModal']);
974
2053
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
975
2054
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoTable, never>;
976
2055
  static ɵcmp: i0.ɵɵComponentDeclaration<DsoTable, "dso-table", never, { "noModal": { "alias": "noModal"; "required": false; }; }, {}, never, ["*"], true, never>;
@@ -998,6 +2077,22 @@ declare interface DsoTijdreisBanner extends Components.DsoTijdreisBanner {
998
2077
  declare class DsoToggletip {
999
2078
  protected z: NgZone;
1000
2079
  protected el: HTMLDsoToggletipElement;
2080
+ /**
2081
+ * Toggletip label. @default "Toelichting"
2082
+ */
2083
+ set label(_: Components.DsoToggletip['label']);
2084
+ /**
2085
+ * Toggletip position. @default "right"
2086
+ */
2087
+ set position(_: Components.DsoToggletip['position']);
2088
+ /**
2089
+ * Set to true for small Toggletip.
2090
+ */
2091
+ set small(_: Components.DsoToggletip['small']);
2092
+ /**
2093
+ * Set to true for secondary Toggletip.
2094
+ */
2095
+ set secondary(_: Components.DsoToggletip['secondary']);
1001
2096
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1002
2097
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoToggletip, never>;
1003
2098
  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 +2102,34 @@ declare interface DsoToggletip extends Components.DsoToggletip {
1007
2102
  declare class DsoTooltip {
1008
2103
  protected z: NgZone;
1009
2104
  protected el: HTMLDsoTooltipElement;
2105
+ /**
2106
+ * 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
2107
+ */
2108
+ set descriptive(_: Components.DsoTooltip['descriptive']);
2109
+ /**
2110
+ * Set position of tooltip relative to target @default "top"
2111
+ */
2112
+ set position(_: Components.DsoTooltip['position']);
2113
+ /**
2114
+ * Set position strategy of tooltip @default "auto"
2115
+ */
2116
+ set strategy(_: Components.DsoTooltip['strategy']);
2117
+ /**
2118
+ * Set attribute `no-arrow` to hide the arrow @default false
2119
+ */
2120
+ set noArrow(_: Components.DsoTooltip['noArrow']);
2121
+ /**
2122
+ * Deactivates mouseover behaviour
2123
+ */
2124
+ set stateless(_: Components.DsoTooltip['stateless']);
2125
+ /**
2126
+ * Defines if the tooltip has a smaller max-width
2127
+ */
2128
+ set small(_: Components.DsoTooltip['small']);
2129
+ /**
2130
+ * 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
2131
+ */
2132
+ set active(_: Components.DsoTooltip['active']);
1010
2133
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1011
2134
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoTooltip, never>;
1012
2135
  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 +2139,10 @@ declare interface DsoTooltip extends Components.DsoTooltip {
1016
2139
  declare class DsoTreeView {
1017
2140
  protected z: NgZone;
1018
2141
  protected el: HTMLDsoTreeViewElement;
2142
+ /**
2143
+ * The collection of TreeViewItems
2144
+ */
2145
+ set collection(_: Components.DsoTreeView['collection']);
1019
2146
  dsoOpenItem: EventEmitter<CustomEvent<TreeViewItem[]>>;
1020
2147
  dsoCloseItem: EventEmitter<CustomEvent<TreeViewItem[]>>;
1021
2148
  dsoClickItem: EventEmitter<CustomEvent<TreeViewPointerEvent>>;
@@ -1051,6 +2178,46 @@ declare interface DsoTreeView extends Components.DsoTreeView {
1051
2178
  declare class DsoViewerGrid {
1052
2179
  protected z: NgZone;
1053
2180
  protected el: HTMLDsoViewerGridElement;
2181
+ /**
2182
+ * The title of the filter panel
2183
+ */
2184
+ set filterPanelTitle(_: Components.DsoViewerGrid['filterPanelTitle']);
2185
+ /**
2186
+ * Set to true when filter panel should show. @default false
2187
+ */
2188
+ set filterPanelOpen(_: Components.DsoViewerGrid['filterPanelOpen']);
2189
+ /**
2190
+ * Set to true when overlay should show. @default false
2191
+ */
2192
+ set overlayOpen(_: Components.DsoViewerGrid['overlayOpen']);
2193
+ /**
2194
+ * Set to true when document panel should show. @default false
2195
+ */
2196
+ set documentPanelOpen(_: Components.DsoViewerGrid['documentPanelOpen']);
2197
+ /**
2198
+ * Size of the panel when component loads.
2199
+
2200
+ Default size is `large`. @default "large"
2201
+ */
2202
+ set mainSize(_: Components.DsoViewerGrid['mainSize']);
2203
+ /**
2204
+ * Set active tab in tab view.
2205
+ */
2206
+ set activeTab(_: Components.DsoViewerGrid['activeTab']);
2207
+ /**
2208
+ * Size of the panel when component loads.
2209
+
2210
+ Default size is `large`. @default "large"
2211
+ */
2212
+ set documentPanelSize(_: Components.DsoViewerGrid['documentPanelSize']);
2213
+ /**
2214
+ * Set to show main panel expanded. @default false
2215
+ */
2216
+ set mainPanelExpanded(_: Components.DsoViewerGrid['mainPanelExpanded']);
2217
+ /**
2218
+ * Set to hide the main panel. @default false
2219
+ */
2220
+ set mainPanelHidden(_: Components.DsoViewerGrid['mainPanelHidden']);
1054
2221
  dsoCloseOverlay: EventEmitter<CustomEvent<ViewerGridCloseOverlayEvent>>;
1055
2222
  dsoCloseFilterPanel: EventEmitter<CustomEvent<ViewerGridCloseFilterPanelEvent>>;
1056
2223
  dsoActiveTabSwitch: EventEmitter<CustomEvent<ViewerGridActiveTabSwitchEvent>>;
@@ -1097,6 +2264,34 @@ declare interface DsoViewerGrid extends Components.DsoViewerGrid {
1097
2264
  declare class DsotDocumentComponentDemo {
1098
2265
  protected z: NgZone;
1099
2266
  protected el: HTMLDsotDocumentComponentDemoElement;
2267
+ /**
2268
+ * Show canvas to where Document Component extends. @default false
2269
+ */
2270
+ set showCanvas(_: Components.DsotDocumentComponentDemo['showCanvas']);
2271
+ /**
2272
+ * Show besluitversie version of the badge and label. @default false
2273
+ */
2274
+ set showBesluitversie(_: Components.DsotDocumentComponentDemo['showBesluitversie']);
2275
+ /**
2276
+ * Name of the file to load.
2277
+ */
2278
+ set jsonFile(_: Components.DsotDocumentComponentDemo['jsonFile']);
2279
+ /**
2280
+ * The default state for all Document Components. @default false
2281
+ */
2282
+ set openDefault(_: Components.DsotDocumentComponentDemo['openDefault']);
2283
+ /**
2284
+ * The mode of the Document Component. One of "document" or "table-of-contents". Defaults to "document" @default "document"
2285
+ */
2286
+ set mode(_: Components.DsotDocumentComponentDemo['mode']);
2287
+ /**
2288
+ * A UrlResolver that will be called for all STOP elements that render to HTML5 elements with external references.
2289
+ */
2290
+ set ozonContentUrlResolver(_: Components.DsotDocumentComponentDemo['ozonContentUrlResolver']);
2291
+ /**
2292
+ * A BegripResolver that will be called for STOP element "IntRef" with @scope ="Begrip".
2293
+ */
2294
+ set ozonContentBegripResolver(_: Components.DsotDocumentComponentDemo['ozonContentBegripResolver']);
1100
2295
  dsotOzonContentClick: EventEmitter<CustomEvent<DocumentComponentOzonContentClickEvent>>;
1101
2296
  dsotTableOfContentsClick: EventEmitter<CustomEvent<DocumentComponentTableOfContentsClickEvent>>;
1102
2297
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
@@ -1114,12 +2309,42 @@ declare interface DsotDocumentComponentDemo extends Components.DsotDocumentCompo
1114
2309
  dsotTableOfContentsClick: EventEmitter<CustomEvent<DocumentComponentTableOfContentsClickEvent>>;
1115
2310
  }
1116
2311
 
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)[];
2312
+ 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 DsoMapMessage | 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)[];
2313
+
2314
+ declare class BooleanValueAccessor implements ControlValueAccessor {
2315
+ private el;
2316
+ private onChange;
2317
+ private onTouched;
2318
+ constructor(el: ElementRef);
2319
+ onFocusOut(): void;
2320
+ onDsoChange(event: CustomEvent): void;
2321
+ writeValue(value: unknown): void;
2322
+ registerOnChange(fn: (value: boolean) => void): void;
2323
+ registerOnTouched(fn: () => void): void;
2324
+ setDisabledState(isDisabled: boolean): void;
2325
+ static ɵfac: i0.ɵɵFactoryDeclaration<BooleanValueAccessor, never>;
2326
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BooleanValueAccessor, "dso-selectable[type=checkbox]", never, {}, {}, never, never, true, never>;
2327
+ }
2328
+
2329
+ declare class RadioValueAccessor implements ControlValueAccessor {
2330
+ private el;
2331
+ private onChange;
2332
+ private onTouched;
2333
+ constructor(el: ElementRef);
2334
+ onFocusOut(): void;
2335
+ onDsoChange(): void;
2336
+ writeValue(value: unknown): void;
2337
+ registerOnChange(fn: (value: string) => void): void;
2338
+ registerOnTouched(fn: () => void): void;
2339
+ setDisabledState(isDisabled: boolean): void;
2340
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioValueAccessor, never>;
2341
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RadioValueAccessor, "dso-selectable[type=radio]", never, {}, {}, never, never, true, never>;
2342
+ }
1118
2343
 
1119
2344
  declare class DsoToolkitModule {
1120
2345
  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]>;
2346
+ 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 DsoMapMessage, 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 DsoMapMessage, 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
2347
  static ɵinj: i0.ɵɵInjectorDeclaration<DsoToolkitModule>;
1123
2348
  }
1124
2349
 
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 };
2350
+ 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, DsoMapMessage, 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 };