@dso-toolkit/angular 90.0.0 → 90.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dso-toolkit/angular",
3
3
  "description": "DSO Toolkit Angular bindings for Web Components",
4
- "version": "90.0.0",
4
+ "version": "90.2.0",
5
5
  "homepage": "https://www.dso-toolkit.nl/",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -14,7 +14,7 @@
14
14
  "@angular/common": "^19.0.0 || ^20.0.0 || ^21.0.0",
15
15
  "@angular/core": "^19.0.0 || ^20.0.0 || ^21.0.0",
16
16
  "@angular/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0",
17
- "@dso-toolkit/core": "90.0.0"
17
+ "@dso-toolkit/core": "90.2.0"
18
18
  },
19
19
  "dependencies": {
20
20
  "tslib": "^2.8.1"
@@ -467,9 +467,17 @@ declare class DsoBadge {
467
467
  * The status of the Badge.
468
468
  */
469
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']);
470
478
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
471
479
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoBadge, never>;
472
- 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>;
473
481
  }
474
482
  declare interface DsoBadge extends Components.DsoBadge {
475
483
  }
@@ -797,11 +805,12 @@ declare interface DsoDocumentComponent extends Components.DsoDocumentComponent {
797
805
  */
798
806
  dsoTableOfContentsClick: EventEmitter<CustomEvent<DocumentComponentTableOfContentsClickEvent>>;
799
807
  /**
800
- * Emitted when the user interacts with Kop, IntRef or the Kenmerken en kaart button of IntIoRef in Ozon Content
808
+ * Emitted when the user interacts with IntRef in Ozon Content
801
809
  */
802
810
  dsoOzonContentClick: EventEmitter<CustomEvent<DocumentComponentOzonContentClickEvent>>;
803
811
  /**
804
- * Emitted when the user activates the annotation button.
812
+ * Emitted when the user clicks the annotation button, the close button of the annotation panel and the
813
+ Kenmerken en Kaart button of IntIoRef in Ozon Content.
805
814
  */
806
815
  dsoAnnotationToggle: EventEmitter<CustomEvent<DocumentComponentToggleAnnotationEvent>>;
807
816
  /**
@@ -1419,10 +1428,6 @@ declare class DsoMapLayer {
1419
1428
  protected z: NgZone;
1420
1429
  protected el: HTMLDsoMapLayerElement;
1421
1430
  /**
1422
- * The label of the Map Layer.
1423
- */
1424
- set label(_: Components.DsoMapLayer['label']);
1425
- /**
1426
1431
  * A boolean to indicate if the Map Layer is capable of being activated. When `true` a Slide Toggle displays
1427
1432
  on the right. @default false
1428
1433
  */
@@ -1431,10 +1436,14 @@ on the right. @default false
1431
1436
  * An optional boolean indicating whether the Map Layer is active.
1432
1437
  */
1433
1438
  set active(_: Components.DsoMapLayer['active']);
1439
+ /**
1440
+ * An optional 'wijzigactie' that signals if the Map Layer is added or removed.
1441
+ */
1442
+ set wijzigactie(_: Components.DsoMapLayer['wijzigactie']);
1434
1443
  dsoActiveChange: EventEmitter<CustomEvent<MapLayerActiveChangeEvent>>;
1435
1444
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1436
1445
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoMapLayer, never>;
1437
- static ɵcmp: i0.ɵɵComponentDeclaration<DsoMapLayer, "dso-map-layer", never, { "activatable": { "alias": "activatable"; "required": false; }; "active": { "alias": "active"; "required": false; }; "label": { "alias": "label"; "required": true; }; }, { "dsoActiveChange": "dsoActiveChange"; }, never, ["*"], true, never>;
1446
+ static ɵcmp: i0.ɵɵComponentDeclaration<DsoMapLayer, "dso-map-layer", never, { "activatable": { "alias": "activatable"; "required": false; }; "active": { "alias": "active"; "required": false; }; "wijzigactie": { "alias": "wijzigactie"; "required": true; }; }, { "dsoActiveChange": "dsoActiveChange"; }, never, ["*"], true, never>;
1438
1447
  }
1439
1448
  declare interface DsoMapLayer extends Components.DsoMapLayer {
1440
1449
  /**
@@ -1449,12 +1458,16 @@ declare class DsoMapLayerObject {
1449
1458
  * An optional boolean indicating whether the Map Layer Object is active.
1450
1459
  */
1451
1460
  set active(_: Components.DsoMapLayerObject['active']);
1461
+ /**
1462
+ * An optional 'wijzigactie' that signals if the Map Layer is added or removed.
1463
+ */
1464
+ set wijzigactie(_: Components.DsoMapLayerObject['wijzigactie']);
1452
1465
  dsoActiveChange: EventEmitter<CustomEvent<MapLayerObjectActiveChangeEvent>>;
1453
1466
  dsoMouseEnter: EventEmitter<CustomEvent<any>>;
1454
1467
  dsoMouseLeave: EventEmitter<CustomEvent<any>>;
1455
1468
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1456
1469
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoMapLayerObject, never>;
1457
- static ɵcmp: i0.ɵɵComponentDeclaration<DsoMapLayerObject, "dso-map-layer-object", never, { "active": { "alias": "active"; "required": false; }; }, { "dsoActiveChange": "dsoActiveChange"; "dsoMouseEnter": "dsoMouseEnter"; "dsoMouseLeave": "dsoMouseLeave"; }, never, ["*"], true, never>;
1470
+ static ɵcmp: i0.ɵɵComponentDeclaration<DsoMapLayerObject, "dso-map-layer-object", never, { "active": { "alias": "active"; "required": false; }; "wijzigactie": { "alias": "wijzigactie"; "required": true; }; }, { "dsoActiveChange": "dsoActiveChange"; "dsoMouseEnter": "dsoMouseEnter"; "dsoMouseLeave": "dsoMouseLeave"; }, never, ["*"], true, never>;
1458
1471
  }
1459
1472
  declare interface DsoMapLayerObject extends Components.DsoMapLayerObject {
1460
1473
  /**
@@ -1470,6 +1483,19 @@ declare interface DsoMapLayerObject extends Components.DsoMapLayerObject {
1470
1483
  */
1471
1484
  dsoMouseLeave: EventEmitter<CustomEvent<any>>;
1472
1485
  }
1486
+ declare class DsoMapMessage {
1487
+ protected z: NgZone;
1488
+ protected el: HTMLDsoMapMessageElement;
1489
+ /**
1490
+ * Variant determines the icon and actions shown.
1491
+ */
1492
+ set variant(_: Components.DsoMapMessage['variant']);
1493
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1494
+ static ɵfac: i0.ɵɵFactoryDeclaration<DsoMapMessage, never>;
1495
+ static ɵcmp: i0.ɵɵComponentDeclaration<DsoMapMessage, "dso-map-message", never, { "variant": { "alias": "variant"; "required": true; }; }, {}, never, ["*"], true, never>;
1496
+ }
1497
+ declare interface DsoMapMessage extends Components.DsoMapMessage {
1498
+ }
1473
1499
  declare class DsoMapOverlays {
1474
1500
  protected z: NgZone;
1475
1501
  protected el: HTMLDsoMapOverlaysElement;
@@ -1840,7 +1866,7 @@ declare class DsoSegmentedButton {
1840
1866
  */
1841
1867
  set required(_: Components.DsoSegmentedButton['required']);
1842
1868
  /**
1843
- * Index of the currently active option
1869
+ * The currently active option
1844
1870
  */
1845
1871
  set activeOption(_: Components.DsoSegmentedButton['activeOption']);
1846
1872
  dsoChange: EventEmitter<CustomEvent<SegmentedButtonChangeEvent>>;
@@ -2288,7 +2314,7 @@ declare interface DsotDocumentComponentDemo extends Components.DsotDocumentCompo
2288
2314
  dsotTableOfContentsClick: EventEmitter<CustomEvent<DocumentComponentTableOfContentsClickEvent>>;
2289
2315
  }
2290
2316
 
2291
- declare const DIRECTIVES: (typeof DsoAccordion | typeof DsoAccordionSection | typeof DsoActionList | typeof DsoActionListItem | typeof DsoAdvancedSelect | typeof DsoAlert | typeof DsoAnnotationActiviteit | typeof DsoAnnotationGebiedsaanwijzing | typeof DsoAnnotationKaart | typeof DsoAnnotationLocatie | typeof DsoAnnotationOmgevingsnormwaarde | typeof DsoAttachmentsCounter | typeof DsoAutosuggest | typeof DsoBadge | typeof DsoBanner | typeof DsoButtonGroup | typeof DsoCard | typeof DsoCardContainer | typeof DsoContactInformation | typeof DsoCursorTooltip | typeof DsoDatePicker | typeof DsoDocumentCard | typeof DsoDocumentComponent | typeof DsoDropdownMenu | typeof DsoExpandable | typeof DsoHeader | typeof DsoHighlightBox | typeof DsoHistoryItem | typeof DsoIcon | typeof DsoIconButton | typeof DsoImageOverlay | typeof DsoInfo | typeof DsoInfoButton | typeof DsoInputRange | typeof DsoLabel | typeof DsoLegend | typeof DsoLegendGroup | typeof DsoLegendItem | typeof DsoListButton | typeof DsoLogo | typeof DsoMapBaseLayers | typeof DsoMapControls | typeof DsoMapLayer | typeof DsoMapLayerObject | typeof DsoMapOverlays | typeof DsoMarkBar | typeof DsoModal | typeof DsoOnboardingTip | typeof DsoOzonContent | typeof DsoOzonContentToggletip | typeof DsoPagination | typeof DsoPanel | typeof DsoPlekinfoCard | typeof DsoProgressIndicator | typeof DsoProjectItem | typeof DsoRenvooi | typeof DsoResponsiveElement | typeof DsoScrollable | typeof DsoSegmentedButton | typeof DsoSelectable | typeof DsoSkiplink | typeof DsoSlideToggle | typeof DsoSurveyRating | typeof DsoTab | typeof DsoTable | typeof DsoTabs | typeof DsoTijdreisBanner | typeof DsoToggletip | typeof DsoTooltip | typeof DsoTreeView | typeof DsoViewerGrid | typeof DsotDocumentComponentDemo)[];
2317
+ 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)[];
2292
2318
 
2293
2319
  declare class BooleanValueAccessor implements ControlValueAccessor {
2294
2320
  private el;
@@ -2322,8 +2348,8 @@ declare class RadioValueAccessor implements ControlValueAccessor {
2322
2348
 
2323
2349
  declare class DsoToolkitModule {
2324
2350
  static ɵfac: i0.ɵɵFactoryDeclaration<DsoToolkitModule, never>;
2325
- static ɵmod: i0.ɵɵNgModuleDeclaration<DsoToolkitModule, never, [typeof DsoAccordion, typeof DsoAccordionSection, typeof DsoActionList, typeof DsoActionListItem, typeof DsoAdvancedSelect, typeof DsoAlert, typeof DsoAnnotationActiviteit, typeof DsoAnnotationGebiedsaanwijzing, typeof DsoAnnotationKaart, typeof DsoAnnotationLocatie, typeof DsoAnnotationOmgevingsnormwaarde, typeof DsoAttachmentsCounter, typeof DsoAutosuggest, typeof DsoBadge, typeof DsoBanner, typeof DsoButtonGroup, typeof DsoCard, typeof DsoCardContainer, typeof DsoContactInformation, typeof DsoCursorTooltip, typeof DsoDatePicker, typeof DsoDocumentCard, typeof DsoDocumentComponent, typeof DsoDropdownMenu, typeof DsoExpandable, typeof DsoHeader, typeof DsoHighlightBox, typeof DsoHistoryItem, typeof DsoIcon, typeof DsoIconButton, typeof DsoImageOverlay, typeof DsoInfo, typeof DsoInfoButton, typeof DsoInputRange, typeof DsoLabel, typeof DsoLegend, typeof DsoLegendGroup, typeof DsoLegendItem, typeof DsoListButton, typeof DsoLogo, typeof DsoMapBaseLayers, typeof DsoMapControls, typeof DsoMapLayer, typeof DsoMapLayerObject, typeof DsoMapOverlays, typeof DsoMarkBar, typeof DsoModal, typeof DsoOnboardingTip, typeof DsoOzonContent, typeof DsoOzonContentToggletip, typeof DsoPagination, typeof DsoPanel, typeof DsoPlekinfoCard, typeof DsoProgressIndicator, typeof DsoProjectItem, typeof DsoRenvooi, typeof DsoResponsiveElement, typeof DsoScrollable, typeof DsoSegmentedButton, typeof DsoSelectable, typeof DsoSkiplink, typeof DsoSlideToggle, typeof DsoSurveyRating, typeof DsoTab, typeof DsoTable, typeof DsoTabs, typeof DsoTijdreisBanner, typeof DsoToggletip, typeof DsoTooltip, typeof DsoTreeView, typeof DsoViewerGrid, typeof DsotDocumentComponentDemo, typeof BooleanValueAccessor, typeof RadioValueAccessor], [typeof DsoAccordion, typeof DsoAccordionSection, typeof DsoActionList, typeof DsoActionListItem, typeof DsoAdvancedSelect, typeof DsoAlert, typeof DsoAnnotationActiviteit, typeof DsoAnnotationGebiedsaanwijzing, typeof DsoAnnotationKaart, typeof DsoAnnotationLocatie, typeof DsoAnnotationOmgevingsnormwaarde, typeof DsoAttachmentsCounter, typeof DsoAutosuggest, typeof DsoBadge, typeof DsoBanner, typeof DsoButtonGroup, typeof DsoCard, typeof DsoCardContainer, typeof DsoContactInformation, typeof DsoCursorTooltip, typeof DsoDatePicker, typeof DsoDocumentCard, typeof DsoDocumentComponent, typeof DsoDropdownMenu, typeof DsoExpandable, typeof DsoHeader, typeof DsoHighlightBox, typeof DsoHistoryItem, typeof DsoIcon, typeof DsoIconButton, typeof DsoImageOverlay, typeof DsoInfo, typeof DsoInfoButton, typeof DsoInputRange, typeof DsoLabel, typeof DsoLegend, typeof DsoLegendGroup, typeof DsoLegendItem, typeof DsoListButton, typeof DsoLogo, typeof DsoMapBaseLayers, typeof DsoMapControls, typeof DsoMapLayer, typeof DsoMapLayerObject, typeof DsoMapOverlays, typeof DsoMarkBar, typeof DsoModal, typeof DsoOnboardingTip, typeof DsoOzonContent, typeof DsoOzonContentToggletip, typeof DsoPagination, typeof DsoPanel, typeof DsoPlekinfoCard, typeof DsoProgressIndicator, typeof DsoProjectItem, typeof DsoRenvooi, typeof DsoResponsiveElement, typeof DsoScrollable, typeof DsoSegmentedButton, typeof DsoSelectable, typeof DsoSkiplink, typeof DsoSlideToggle, typeof DsoSurveyRating, typeof DsoTab, typeof DsoTable, typeof DsoTabs, typeof DsoTijdreisBanner, typeof DsoToggletip, typeof DsoTooltip, typeof DsoTreeView, typeof DsoViewerGrid, typeof DsotDocumentComponentDemo, typeof BooleanValueAccessor, typeof RadioValueAccessor]>;
2351
+ 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]>;
2326
2352
  static ɵinj: i0.ɵɵInjectorDeclaration<DsoToolkitModule>;
2327
2353
  }
2328
2354
 
2329
- export { BooleanValueAccessor, DIRECTIVES, DsoAccordion, DsoAccordionSection, DsoActionList, DsoActionListItem, DsoAdvancedSelect, DsoAlert, DsoAnnotationActiviteit, DsoAnnotationGebiedsaanwijzing, DsoAnnotationKaart, DsoAnnotationLocatie, DsoAnnotationOmgevingsnormwaarde, DsoAttachmentsCounter, DsoAutosuggest, DsoBadge, DsoBanner, DsoButtonGroup, DsoCard, DsoCardContainer, DsoContactInformation, DsoCursorTooltip, DsoDatePicker, DsoDocumentCard, DsoDocumentComponent, DsoDropdownMenu, DsoExpandable, DsoHeader, DsoHighlightBox, DsoHistoryItem, DsoIcon, DsoIconButton, DsoImageOverlay, DsoInfo, DsoInfoButton, DsoInputRange, DsoLabel, DsoLegend, DsoLegendGroup, DsoLegendItem, DsoListButton, DsoLogo, DsoMapBaseLayers, DsoMapControls, DsoMapLayer, DsoMapLayerObject, DsoMapOverlays, DsoMarkBar, DsoModal, DsoOnboardingTip, DsoOzonContent, DsoOzonContentToggletip, DsoPagination, DsoPanel, DsoPlekinfoCard, DsoProgressIndicator, DsoProjectItem, DsoRenvooi, DsoResponsiveElement, DsoScrollable, DsoSegmentedButton, DsoSelectable, DsoSkiplink, DsoSlideToggle, DsoSurveyRating, DsoTab, DsoTable, DsoTabs, DsoTijdreisBanner, DsoToggletip, DsoToolkitModule, DsoTooltip, DsoTreeView, DsoViewerGrid, DsotDocumentComponentDemo, RadioValueAccessor };
2355
+ 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 };