@dso-toolkit/core 32.0.0 → 33.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.
Files changed (46) hide show
  1. package/dist/cjs/dso-dropdown-menu.cjs.entry.js +4 -1
  2. package/dist/cjs/dso-helpcenter-panel.cjs.entry.js +44 -0
  3. package/dist/cjs/dso-icon.cjs.entry.js +29 -5
  4. package/dist/cjs/dso-toggletip.cjs.entry.js +2 -1
  5. package/dist/cjs/dso-toolkit.cjs.js +1 -1
  6. package/dist/cjs/dso-tree-view.cjs.entry.js +5 -4
  7. package/dist/cjs/loader.cjs.js +1 -1
  8. package/dist/collection/collection-manifest.json +1 -0
  9. package/dist/collection/components/dropdown-menu/dropdown-menu.css +4 -0
  10. package/dist/collection/components/dropdown-menu/dropdown-menu.js +3 -0
  11. package/dist/collection/components/helpcenter-panel/helpcenter-panel.css +312 -0
  12. package/dist/collection/components/helpcenter-panel/helpcenter-panel.js +92 -0
  13. package/dist/collection/components/helpcenter-panel/helpcenter-panel.template.js +13 -0
  14. package/dist/collection/components/icon/icon.js +8 -0
  15. package/dist/collection/components/toggletip/toggletip.css +4 -0
  16. package/dist/collection/components/toggletip/toggletip.js +1 -0
  17. package/dist/collection/components/tree-view/tree-item.js +3 -2
  18. package/dist/collection/components/tree-view/tree-view.css +33 -5
  19. package/dist/collection/components/tree-view/tree-view.js +11 -11
  20. package/dist/custom-elements/index.d.ts +6 -0
  21. package/dist/custom-elements/index.js +82 -12
  22. package/dist/dso-toolkit/dso-toolkit.esm.js +1 -1
  23. package/dist/dso-toolkit/p-741e96de.entry.js +5 -0
  24. package/dist/dso-toolkit/p-75233655.entry.js +1 -0
  25. package/dist/dso-toolkit/{p-e2dc97c4.entry.js → p-984551a8.entry.js} +1 -1
  26. package/dist/dso-toolkit/p-b07991b9.entry.js +1 -0
  27. package/dist/dso-toolkit/p-e814d644.entry.js +1 -0
  28. package/dist/esm/dso-dropdown-menu.entry.js +4 -1
  29. package/dist/esm/dso-helpcenter-panel.entry.js +40 -0
  30. package/dist/esm/dso-icon.entry.js +29 -5
  31. package/dist/esm/dso-toggletip.entry.js +2 -1
  32. package/dist/esm/dso-toolkit.js +1 -1
  33. package/dist/esm/dso-tree-view.entry.js +5 -4
  34. package/dist/esm/loader.js +1 -1
  35. package/dist/types/components/dropdown-menu/dropdown-menu.d.ts +1 -0
  36. package/dist/types/components/helpcenter-panel/helpcenter-panel.d.ts +11 -0
  37. package/dist/types/components/helpcenter-panel/helpcenter-panel.template.d.ts +2 -0
  38. package/dist/types/components/tree-view/tree-item.d.ts +4 -4
  39. package/dist/types/components/tree-view/tree-view.d.ts +12 -9
  40. package/dist/types/components/tree-view/tree-view.interfaces.d.ts +14 -4
  41. package/dist/types/components/tree-view/tree-view.template.d.ts +1 -1
  42. package/dist/types/components.d.ts +24 -7
  43. package/package.json +1 -8
  44. package/dist/dso-toolkit/p-12f7e7d7.entry.js +0 -5
  45. package/dist/dso-toolkit/p-5a67f3f7.entry.js +0 -1
  46. package/dist/dso-toolkit/p-ad8f467f.entry.js +0 -1
@@ -0,0 +1,92 @@
1
+ import { h, Component, Fragment, Prop, State } from "@stencil/core";
2
+ const maxCssTransitionMilliseconds = 500;
3
+ export class HelpcenterPanel {
4
+ constructor() {
5
+ this.label = "Hulp nodig";
6
+ this.visibility = "hidden";
7
+ this.isOpen = "close";
8
+ this.slideState = "close";
9
+ this.loadIframe = false;
10
+ this.openClick = () => {
11
+ this.visibility = "visible";
12
+ this.slideState = "open";
13
+ setTimeout(() => {
14
+ this.isOpen = "open";
15
+ });
16
+ if (!this.loadIframe) {
17
+ setTimeout(() => {
18
+ this.loadIframe = true;
19
+ }, maxCssTransitionMilliseconds);
20
+ }
21
+ };
22
+ this.closeClick = () => {
23
+ this.isOpen = "close";
24
+ this.slideState = "close";
25
+ setTimeout(() => {
26
+ this.visibility = "hidden";
27
+ }, maxCssTransitionMilliseconds);
28
+ };
29
+ }
30
+ render() {
31
+ return (h(Fragment, null,
32
+ h("button", { type: "button", onClick: this.openClick, class: `open-button ${this.isOpen}` },
33
+ h("dso-icon", { icon: "help" }),
34
+ h("span", null, this.label)),
35
+ h("div", { class: `wrapper ${this.visibility}` },
36
+ h("div", { class: "dimscreen" }),
37
+ h("div", { class: `iframe-container ${this.slideState}` }, this.loadIframe ? h("iframe", { src: this.url }) : h("div", null)),
38
+ h("button", { type: "button", class: `close-button ${this.isOpen}`, onClick: this.closeClick },
39
+ h("span", { class: "sr-only" }, "sluiten")))));
40
+ }
41
+ static get is() { return "dso-helpcenter-panel"; }
42
+ static get encapsulation() { return "shadow"; }
43
+ static get originalStyleUrls() { return {
44
+ "$": ["helpcenter-panel.scss"]
45
+ }; }
46
+ static get styleUrls() { return {
47
+ "$": ["helpcenter-panel.css"]
48
+ }; }
49
+ static get properties() { return {
50
+ "label": {
51
+ "type": "string",
52
+ "mutable": false,
53
+ "complexType": {
54
+ "original": "string",
55
+ "resolved": "string | undefined",
56
+ "references": {}
57
+ },
58
+ "required": false,
59
+ "optional": true,
60
+ "docs": {
61
+ "tags": [],
62
+ "text": ""
63
+ },
64
+ "attribute": "label",
65
+ "reflect": false,
66
+ "defaultValue": "\"Hulp nodig\""
67
+ },
68
+ "url": {
69
+ "type": "string",
70
+ "mutable": false,
71
+ "complexType": {
72
+ "original": "string",
73
+ "resolved": "string",
74
+ "references": {}
75
+ },
76
+ "required": true,
77
+ "optional": false,
78
+ "docs": {
79
+ "tags": [],
80
+ "text": ""
81
+ },
82
+ "attribute": "url",
83
+ "reflect": false
84
+ }
85
+ }; }
86
+ static get states() { return {
87
+ "visibility": {},
88
+ "isOpen": {},
89
+ "slideState": {},
90
+ "loadIframe": {}
91
+ }; }
92
+ }
@@ -0,0 +1,13 @@
1
+ import { html } from "lit-html";
2
+ import { ifDefined } from "lit-html/directives/if-defined";
3
+ import { unsafeHTML } from "lit-html/directives/unsafe-html";
4
+ export function helpcenterPanelTemplate({ label, url, content, }) {
5
+ return html `
6
+ ${unsafeHTML(content)}
7
+ <dso-helpcenter-panel
8
+ label=${ifDefined(label)}
9
+ url=${url}
10
+ ></dso-helpcenter-panel>
11
+ ${unsafeHTML(content)}
12
+ `;
13
+ }
@@ -8,8 +8,10 @@ import balloon from '@dso-toolkit/sources/src/icons/balloon.svg';
8
8
  import bars from '@dso-toolkit/sources/src/icons/bars.svg';
9
9
  import buildings from '@dso-toolkit/sources/src/icons/buildings.svg';
10
10
  import calendar from '@dso-toolkit/sources/src/icons/calendar.svg';
11
+ import call from '@dso-toolkit/sources/src/icons/call.svg';
11
12
  import caretDown from '@dso-toolkit/sources/src/icons/caret-down.svg';
12
13
  import check from '@dso-toolkit/sources/src/icons/check.svg';
14
+ import checkCircle from '@dso-toolkit/sources/src/icons/check-circle.svg';
13
15
  import chevronDown from '@dso-toolkit/sources/src/icons/chevron-down.svg';
14
16
  import chevronLeft from '@dso-toolkit/sources/src/icons/chevron-left.svg';
15
17
  import chevronRight from '@dso-toolkit/sources/src/icons/chevron-right.svg';
@@ -19,6 +21,7 @@ import clock from '@dso-toolkit/sources/src/icons/clock.svg';
19
21
  import copy from '@dso-toolkit/sources/src/icons/copy.svg';
20
22
  import crown from '@dso-toolkit/sources/src/icons/crown.svg';
21
23
  import cultural from '@dso-toolkit/sources/src/icons/cultural.svg';
24
+ import document from '@dso-toolkit/sources/src/icons/document.svg';
22
25
  import download from '@dso-toolkit/sources/src/icons/download.svg';
23
26
  import email from '@dso-toolkit/sources/src/icons/email.svg';
24
27
  import energy from '@dso-toolkit/sources/src/icons/energy.svg';
@@ -74,6 +77,7 @@ import sortAscending from '@dso-toolkit/sources/src/icons/sort-ascending.svg';
74
77
  import sortDescending from '@dso-toolkit/sources/src/icons/sort-descending.svg';
75
78
  import sort from '@dso-toolkit/sources/src/icons/sort.svg';
76
79
  import sound from '@dso-toolkit/sources/src/icons/sound.svg';
80
+ import statusForbidden from '@dso-toolkit/sources/src/icons/status-forbidden.svg';
77
81
  import statusDanger from '@dso-toolkit/sources/src/icons/status-danger.svg';
78
82
  import statusInfo from '@dso-toolkit/sources/src/icons/status-info.svg';
79
83
  import statusSuccess from '@dso-toolkit/sources/src/icons/status-success.svg';
@@ -97,8 +101,10 @@ const icons = [
97
101
  { alias: 'bars', svg: bars },
98
102
  { alias: 'buildings', svg: buildings },
99
103
  { alias: 'calendar', svg: calendar },
104
+ { alias: 'call', svg: call },
100
105
  { alias: 'caret-down', svg: caretDown },
101
106
  { alias: 'check', svg: check },
107
+ { alias: 'check-circle', svg: checkCircle },
102
108
  { alias: 'chevron-down', svg: chevronDown },
103
109
  { alias: 'chevron-left', svg: chevronLeft },
104
110
  { alias: 'chevron-right', svg: chevronRight },
@@ -108,6 +114,7 @@ const icons = [
108
114
  { alias: 'copy', svg: copy },
109
115
  { alias: 'crown', svg: crown },
110
116
  { alias: 'cultural', svg: cultural },
117
+ { alias: 'document', svg: document },
111
118
  { alias: 'download', svg: download },
112
119
  { alias: 'email', svg: email },
113
120
  { alias: 'energy', svg: energy },
@@ -164,6 +171,7 @@ const icons = [
164
171
  { alias: 'sort', svg: sort },
165
172
  { alias: 'sound', svg: sound },
166
173
  { alias: 'status-danger', svg: statusDanger },
174
+ { alias: 'status-forbidden', svg: statusForbidden },
167
175
  { alias: 'status-info', svg: statusInfo },
168
176
  { alias: 'status-success', svg: statusSuccess },
169
177
  { alias: 'status-warning', svg: statusWarning },
@@ -5,4 +5,8 @@
5
5
  *::after,
6
6
  *::before {
7
7
  box-sizing: border-box;
8
+ }
9
+
10
+ :host(:focus) {
11
+ outline: none;
8
12
  }
@@ -43,6 +43,7 @@ export class Toggletip {
43
43
  throw Error("button not found");
44
44
  }
45
45
  this.button = button;
46
+ this.host.setAttribute("tabindex", "-1");
46
47
  }
47
48
  render() {
48
49
  return (h(Fragment, null,
@@ -2,13 +2,14 @@ import { h, Fragment } from '@stencil/core';
2
2
  import clsx from 'clsx';
3
3
  export const DsoTreeItem = ({ owner, ancestors, item, index, level, setSize }) => {
4
4
  var _a, _b, _c;
5
- return (h("li", { key: item.reference, class: clsx('tree-item', { 'has-child': item.hasItems }), role: 'none' },
5
+ return (h("li", { key: item.id, class: clsx('tree-item', { 'has-child': item.hasItems }), role: 'none' },
6
6
  h("div", { class: "tree-branch-control" }, item.hasItems
7
7
  ?
8
8
  h("div", { onClick: (e) => owner.itemClick(e, ancestors, item) },
9
9
  h("dso-icon", { icon: item.open ? 'chevron-down' : 'chevron-right' }))
10
10
  : h("dso-icon", null)),
11
- h("p", { class: "tree-content", tabindex: level === 1 && index === 0 ? 0 : -1, role: "treeitem", "aria-expanded": item.hasItems ? '' + (!!item.open && !!((_a = item.items) === null || _a === void 0 ? void 0 : _a.length)) : undefined, "aria-level": level, "aria-setsize": setSize, "aria-posinset": index + 1, "aria-busy": item.loading ? 'true' : undefined, onClick: (e) => owner.itemClick(e, ancestors, item) },
11
+ h("p", { class: clsx('tree-content', { 'active': item.active }, { 'selected': item.selected }), tabindex: level === 1 && index === 0 ? 0 : -1, role: "treeitem", "aria-expanded": item.hasItems ? '' + (!!item.open && !!((_a = item.items) === null || _a === void 0 ? void 0 : _a.length)) : undefined, "aria-current": item.active ? 'true' : undefined, "aria-level": level, "aria-setsize": setSize, "aria-posinset": index + 1, "aria-busy": item.loading ? 'true' : undefined, onClick: (e) => owner.itemClick(e, ancestors, item) },
12
+ item.selected && h("span", { class: "sr-only" }, "Resultaat: "),
12
13
  item.href
13
14
  ? h("a", { href: item.href, tabindex: "-1" }, item.label)
14
15
  : h("span", null, item.label), (_b = item.icons) === null || _b === void 0 ? void 0 :
@@ -19,25 +19,53 @@
19
19
  display: inline-block;
20
20
  margin: 8px 0;
21
21
  }
22
- :host .tree-content a, :host .tree-content a:visited {
23
- color: #39870c;
22
+ :host .tree-content.active {
23
+ font-weight: 700;
24
+ }
25
+ :host .tree-content.active:hover {
26
+ text-decoration: underline;
27
+ }
28
+ :host .tree-content.active a {
24
29
  text-decoration: none;
25
30
  }
26
- :host .tree-content a:hover, :host .tree-content a:focus {
27
- color: #676cb0;
31
+ :host .tree-content.selected {
32
+ color: #191919;
33
+ font-weight: 700;
28
34
  text-decoration: underline;
29
35
  }
36
+ :host .tree-content.selected:hover, :host .tree-content.selected:focus {
37
+ text-decoration: none;
38
+ }
39
+ :host .tree-content a, :host .tree-content a:visited {
40
+ color: #191919;
41
+ text-decoration: underline;
42
+ }
43
+ :host .tree-content a:hover, :host .tree-content a:focus {
44
+ color: #191919;
45
+ text-decoration: none;
46
+ }
30
47
  :host .tree-content a:active {
31
48
  text-decoration: none;
32
49
  }
33
50
  :host .tree-content dso-icon {
34
- vertical-align: text-bottom;
35
51
  font-size: 0.75em;
36
52
  margin-left: 0.5em;
53
+ vertical-align: text-bottom;
37
54
  }
38
55
 
39
56
  *,
40
57
  *::after,
41
58
  *::before {
42
59
  box-sizing: border-box;
60
+ }
61
+
62
+ .sr-only {
63
+ position: absolute;
64
+ width: 1px;
65
+ height: 1px;
66
+ padding: 0;
67
+ margin: -1px;
68
+ overflow: hidden;
69
+ clip: rect(0, 0, 0, 0);
70
+ border: 0;
43
71
  }
@@ -55,7 +55,7 @@ export class TreeView {
55
55
  return;
56
56
  }
57
57
  TreeView.setFocus(tree, contentElement);
58
- this.clickItem.emit([...ancestors, item]);
58
+ this.clickItem.emit({ path: [...ancestors, item], originalEvent: event });
59
59
  return;
60
60
  }
61
61
  if (item.open) {
@@ -158,8 +158,8 @@ export class TreeView {
158
158
  "type": "unknown",
159
159
  "mutable": false,
160
160
  "complexType": {
161
- "original": "TreeViewItem<string>[]",
162
- "resolved": "TreeViewItem<string>[]",
161
+ "original": "TreeViewItem[]",
162
+ "resolved": "TreeViewItem[]",
163
163
  "references": {
164
164
  "TreeViewItem": {
165
165
  "location": "import",
@@ -186,8 +186,8 @@ export class TreeView {
186
186
  "text": "Emitted when a tree view item is opened.\nThe `detail` property of the `CustomEvent`\u00A0will contain the complete path of TreeViewItems from the\nroot to the item that is emitting the open event. The consumer of the event is responsible for updating\nthe TreeView's collection (usually set the open state on the last TreeViewItem in path)."
187
187
  },
188
188
  "complexType": {
189
- "original": "TreeViewItem<string>[]",
190
- "resolved": "TreeViewItem<string>[]",
189
+ "original": "TreeViewItem[]",
190
+ "resolved": "TreeViewItem[]",
191
191
  "references": {
192
192
  "TreeViewItem": {
193
193
  "location": "import",
@@ -206,8 +206,8 @@ export class TreeView {
206
206
  "text": "Emitted when a tree view item is closed.\nThe `detail` property of the `CustomEvent`\u00A0will contain the complete path of TreeViewItems from the\nroot to the item that is emitting the close event. The consumer of the event is responsible for updating\nthe TreeView's collection (usually set the closed state on the last TreeViewItem in path)."
207
207
  },
208
208
  "complexType": {
209
- "original": "TreeViewItem<string>[]",
210
- "resolved": "TreeViewItem<string>[]",
209
+ "original": "TreeViewItem[]",
210
+ "resolved": "TreeViewItem[]",
211
211
  "references": {
212
212
  "TreeViewItem": {
213
213
  "location": "import",
@@ -223,13 +223,13 @@ export class TreeView {
223
223
  "composed": true,
224
224
  "docs": {
225
225
  "tags": [],
226
- "text": "Emitted when a tree view item is clicked.\nThe `detail` property of the `CustomEvent`\u00A0will contain the complete path of TreeViewItems from the\nroot to the item that is emitting the clicked event."
226
+ "text": "Emitted when a tree view item is clicked.\nThe `detail` property of the `CustomEvent`\u00A0will contain an object with:\n`path` = the complete path of TreeViewItems from the root to the item that is emitting the clicked event.\n`originalEvent` = the original click event.\nThe consumer of the event is responsible for updating the TreeView's collection (usually set the active\nstate on the last TreeViewItem in path and clear all other active item states)."
227
227
  },
228
228
  "complexType": {
229
- "original": "TreeViewItem<string>[]",
230
- "resolved": "TreeViewItem<string>[]",
229
+ "original": "TreeViewPointerEvent",
230
+ "resolved": "TreeViewPointerEvent",
231
231
  "references": {
232
- "TreeViewItem": {
232
+ "TreeViewPointerEvent": {
233
233
  "location": "import",
234
234
  "path": "./tree-view.interfaces"
235
235
  }
@@ -44,6 +44,12 @@ export const DsoDropdownMenu: {
44
44
  new (): DsoDropdownMenu;
45
45
  };
46
46
 
47
+ interface DsoHelpcenterPanel extends Components.DsoHelpcenterPanel, HTMLElement {}
48
+ export const DsoHelpcenterPanel: {
49
+ prototype: DsoHelpcenterPanel;
50
+ new (): DsoHelpcenterPanel;
51
+ };
52
+
47
53
  interface DsoHighlightBox extends Components.DsoHighlightBox, HTMLElement {}
48
54
  export const DsoHighlightBox: {
49
55
  prototype: DsoHighlightBox;
@@ -1359,7 +1359,7 @@ var tabbable = function tabbable(el, options) {
1359
1359
  return tabbableNodes;
1360
1360
  };
1361
1361
 
1362
- const dropdownMenuCss = ":host{--di-check-wit:url(\"data:image/svg+xml,%3csvg id='check' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: white%3b'%3e %3cpath fill='currentColor' d='M10.11%2c18%2c5.29%2c13.31A.92.92%2c0%2c0%2c1%2c5.3%2c12a1%2c1%2c0%2c0%2c1%2c1.41%2c0l3.4%2c3.3%2c7.18-7a1%2c1%2c0%2c0%2c1%2c1.41%2c0%2c.92.92%2c0%2c0%2c1%2c0%2c1.35Z'/%3e %3c/svg%3e\");--di-chevron-down:url(\"data:image/svg+xml,%3csvg id='chevron-down' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: %2339870c%3b'%3e %3cpath fill='currentColor' d='M12%2c16%2c5.29%2c9.63a.93.93%2c0%2c0%2c1%2c0-1.35%2c1%2c1%2c0%2c0%2c1%2c1.42%2c0l5.29%2c5%2c5.29-5a1%2c1%2c0%2c0%2c1%2c1.42%2c0%2c.91.91%2c0%2c0%2c1%2c0%2c1.34Z'/%3e %3c/svg%3e\");--di-chevron-down-scampi:url(\"data:image/svg+xml,%3csvg id='chevron-down' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: %23676cb0%3b'%3e %3cpath fill='currentColor' d='M12%2c16%2c5.29%2c9.63a.93.93%2c0%2c0%2c1%2c0-1.35%2c1%2c1%2c0%2c0%2c1%2c1.42%2c0l5.29%2c5%2c5.29-5a1%2c1%2c0%2c0%2c1%2c1.42%2c0%2c.91.91%2c0%2c0%2c1%2c0%2c1.34Z'/%3e %3c/svg%3e\");--di-chevron-down-wit:url(\"data:image/svg+xml,%3csvg id='chevron-down' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: white%3b'%3e %3cpath fill='currentColor' d='M12%2c16%2c5.29%2c9.63a.93.93%2c0%2c0%2c1%2c0-1.35%2c1%2c1%2c0%2c0%2c1%2c1.42%2c0l5.29%2c5%2c5.29-5a1%2c1%2c0%2c0%2c1%2c1.42%2c0%2c.91.91%2c0%2c0%2c1%2c0%2c1.34Z'/%3e %3c/svg%3e\");--di-chevron-up:url(\"data:image/svg+xml,%3csvg id='chevron-up' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: %2339870c%3b'%3e %3cpath fill='currentColor' d='M18%2c16a1%2c1%2c0%2c0%2c1-.71-.28l-5.29-5-5.29%2c5a1%2c1%2c0%2c0%2c1-1.42%2c0%2c.93.93%2c0%2c0%2c1%2c0-1.35L12%2c8l6.71%2c6.38a.91.91%2c0%2c0%2c1%2c0%2c1.34A1%2c1%2c0%2c0%2c1%2c18%2c16Z'/%3e %3c/svg%3e\");--di-chevron-up-scampi:url(\"data:image/svg+xml,%3csvg id='chevron-up' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: %23676cb0%3b'%3e %3cpath fill='currentColor' d='M18%2c16a1%2c1%2c0%2c0%2c1-.71-.28l-5.29-5-5.29%2c5a1%2c1%2c0%2c0%2c1-1.42%2c0%2c.93.93%2c0%2c0%2c1%2c0-1.35L12%2c8l6.71%2c6.38a.91.91%2c0%2c0%2c1%2c0%2c1.34A1%2c1%2c0%2c0%2c1%2c18%2c16Z'/%3e %3c/svg%3e\");--di-chevron-up-wit:url(\"data:image/svg+xml,%3csvg id='chevron-up' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: white%3b'%3e %3cpath fill='currentColor' d='M18%2c16a1%2c1%2c0%2c0%2c1-.71-.28l-5.29-5-5.29%2c5a1%2c1%2c0%2c0%2c1-1.42%2c0%2c.93.93%2c0%2c0%2c1%2c0-1.35L12%2c8l6.71%2c6.38a.91.91%2c0%2c0%2c1%2c0%2c1.34A1%2c1%2c0%2c0%2c1%2c18%2c16Z'/%3e %3c/svg%3e\");display:inline-block;position:relative}";
1362
+ const dropdownMenuCss = ":host(:focus){outline:none}:host{--di-check-wit:url(\"data:image/svg+xml,%3csvg id='check' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: white%3b'%3e %3cpath fill='currentColor' d='M10.11%2c18%2c5.29%2c13.31A.92.92%2c0%2c0%2c1%2c5.3%2c12a1%2c1%2c0%2c0%2c1%2c1.41%2c0l3.4%2c3.3%2c7.18-7a1%2c1%2c0%2c0%2c1%2c1.41%2c0%2c.92.92%2c0%2c0%2c1%2c0%2c1.35Z'/%3e %3c/svg%3e\");--di-chevron-down:url(\"data:image/svg+xml,%3csvg id='chevron-down' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: %2339870c%3b'%3e %3cpath fill='currentColor' d='M12%2c16%2c5.29%2c9.63a.93.93%2c0%2c0%2c1%2c0-1.35%2c1%2c1%2c0%2c0%2c1%2c1.42%2c0l5.29%2c5%2c5.29-5a1%2c1%2c0%2c0%2c1%2c1.42%2c0%2c.91.91%2c0%2c0%2c1%2c0%2c1.34Z'/%3e %3c/svg%3e\");--di-chevron-down-scampi:url(\"data:image/svg+xml,%3csvg id='chevron-down' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: %23676cb0%3b'%3e %3cpath fill='currentColor' d='M12%2c16%2c5.29%2c9.63a.93.93%2c0%2c0%2c1%2c0-1.35%2c1%2c1%2c0%2c0%2c1%2c1.42%2c0l5.29%2c5%2c5.29-5a1%2c1%2c0%2c0%2c1%2c1.42%2c0%2c.91.91%2c0%2c0%2c1%2c0%2c1.34Z'/%3e %3c/svg%3e\");--di-chevron-down-wit:url(\"data:image/svg+xml,%3csvg id='chevron-down' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: white%3b'%3e %3cpath fill='currentColor' d='M12%2c16%2c5.29%2c9.63a.93.93%2c0%2c0%2c1%2c0-1.35%2c1%2c1%2c0%2c0%2c1%2c1.42%2c0l5.29%2c5%2c5.29-5a1%2c1%2c0%2c0%2c1%2c1.42%2c0%2c.91.91%2c0%2c0%2c1%2c0%2c1.34Z'/%3e %3c/svg%3e\");--di-chevron-up:url(\"data:image/svg+xml,%3csvg id='chevron-up' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: %2339870c%3b'%3e %3cpath fill='currentColor' d='M18%2c16a1%2c1%2c0%2c0%2c1-.71-.28l-5.29-5-5.29%2c5a1%2c1%2c0%2c0%2c1-1.42%2c0%2c.93.93%2c0%2c0%2c1%2c0-1.35L12%2c8l6.71%2c6.38a.91.91%2c0%2c0%2c1%2c0%2c1.34A1%2c1%2c0%2c0%2c1%2c18%2c16Z'/%3e %3c/svg%3e\");--di-chevron-up-scampi:url(\"data:image/svg+xml,%3csvg id='chevron-up' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: %23676cb0%3b'%3e %3cpath fill='currentColor' d='M18%2c16a1%2c1%2c0%2c0%2c1-.71-.28l-5.29-5-5.29%2c5a1%2c1%2c0%2c0%2c1-1.42%2c0%2c.93.93%2c0%2c0%2c1%2c0-1.35L12%2c8l6.71%2c6.38a.91.91%2c0%2c0%2c1%2c0%2c1.34A1%2c1%2c0%2c0%2c1%2c18%2c16Z'/%3e %3c/svg%3e\");--di-chevron-up-wit:url(\"data:image/svg+xml,%3csvg id='chevron-up' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: white%3b'%3e %3cpath fill='currentColor' d='M18%2c16a1%2c1%2c0%2c0%2c1-.71-.28l-5.29-5-5.29%2c5a1%2c1%2c0%2c0%2c1-1.42%2c0%2c.93.93%2c0%2c0%2c1%2c0-1.35L12%2c8l6.71%2c6.38a.91.91%2c0%2c0%2c1%2c0%2c1.34A1%2c1%2c0%2c0%2c1%2c18%2c16Z'/%3e %3c/svg%3e\");display:inline-block;position:relative}";
1363
1363
 
1364
1364
  let DropdownMenu = class extends HTMLElement {
1365
1365
  constructor() {
@@ -1456,6 +1456,9 @@ let DropdownMenu = class extends HTMLElement {
1456
1456
  this.openPopup();
1457
1457
  }
1458
1458
  }
1459
+ componentDidRender() {
1460
+ this.host.setAttribute("tabindex", "-1");
1461
+ }
1459
1462
  componentWillRender() {
1460
1463
  for (const li of Array.from(this.host.getElementsByTagName("li"))) {
1461
1464
  for (const tab of tabbable(li)) {
@@ -1503,6 +1506,45 @@ let DropdownMenu = class extends HTMLElement {
1503
1506
  static get style() { return dropdownMenuCss; }
1504
1507
  };
1505
1508
 
1509
+ const helpcenterPanelCss = ":host{display:block;--di-times:url(\"data:image/svg+xml,%3csvg id='times' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: %2339870c%3b'%3e %3cpath fill='currentColor' d='M13.36%2c12l3.3-3.3A1%2c1%2c0%2c1%2c0%2c15.3%2c7.34L12%2c10.64%2c8.7%2c7.34A1%2c1%2c0%2c1%2c0%2c7.34%2c8.7l3.3%2c3.3-3.3%2c3.3A1%2c1%2c0%2c1%2c0%2c8.7%2c16.66l3.3-3.3%2c3.3%2c3.3a1%2c1%2c0%2c1%2c0%2c1.36-1.36Z'/%3e %3c/svg%3e\");--di-times-wit:url(\"data:image/svg+xml,%3csvg id='times' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: white%3b'%3e %3cpath fill='currentColor' d='M13.36%2c12l3.3-3.3A1%2c1%2c0%2c1%2c0%2c15.3%2c7.34L12%2c10.64%2c8.7%2c7.34A1%2c1%2c0%2c1%2c0%2c7.34%2c8.7l3.3%2c3.3-3.3%2c3.3A1%2c1%2c0%2c1%2c0%2c8.7%2c16.66l3.3-3.3%2c3.3%2c3.3a1%2c1%2c0%2c1%2c0%2c1.36-1.36Z'/%3e %3c/svg%3e\")}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.wrapper{height:100%;left:0;position:fixed;top:0;visibility:hidden;width:100%}.wrapper.visible{visibility:visible}.dimscreen{background-color:#000;height:100%;opacity:0.4;width:100%}.open-button{display:inline-block;font-size:1em;font-weight:500;margin-bottom:0;text-decoration:none;touch-action:manipulation;text-align:left;user-select:none;vertical-align:middle;display:inline-block;font-size:1em;font-weight:500;margin-bottom:0;text-decoration:none;touch-action:manipulation;text-align:left;user-select:none;vertical-align:middle;background-color:#39870c;border-color:#39870c;color:#fff;border-width:1px;border-style:solid;border-radius:4px;line-height:1.5;min-width:56px;padding:11px 15px;border:0;bottom:16px;font-family:Asap, sans-serif;position:fixed;right:16px}.open-button:focus,.open-button:focus-visible{outline-offset:2px}.open-button:active{outline:0}.open-button.extern::after,.open-button.download::after{content:\"\";display:inline-block;height:1.5em;margin-left:8px;vertical-align:top;width:1.5em}.open-button:focus,.open-button:focus-visible{outline-offset:2px}.open-button:active{outline:0}.open-button.extern::after,.open-button.download::after{content:\"\";display:inline-block;height:1.5em;margin-left:8px;vertical-align:top;width:1.5em}.open-button:hover{background-color:#275937;border-color:#275937;color:#fff}.open-button:active{background-color:#15301e;border-color:#15301e;color:#fff}.open-button[disabled],.open-button[disabled]:hover{background-color:#afcf9d;border-color:#afcf9d;color:#fff}.open-button.btn-sm{line-height:16px}.open-button.btn-sm dso-icon,.open-button.btn-sm svg.di,.open-button.btn-sm.extern::after,.open-button.btn-sm.download::after{margin-bottom:-4px;margin-top:-4px}.open-button.download::after{background:var(--dso-icon, var(--di-download-wit)) no-repeat;background-position:center;background-size:cover;height:1.5em;vertical-align:top;width:1.5em}.open-button.extern::after{background:var(--dso-icon, var(--di-external-link-wit)) no-repeat;background-position:center;background-size:cover;height:1.5em;vertical-align:top;width:1.5em}.open-button dso-icon,.open-button svg.di{margin-left:-8px;margin-right:8px}.open-button span+dso-icon,.open-button span+svg.di{margin-left:8px;margin-right:-8px}.open-button:hover{cursor:pointer}.open-button.open{display:none}.close-button{display:inline-block;font-size:1em;font-weight:500;margin-bottom:0;text-decoration:none;touch-action:manipulation;text-align:left;user-select:none;vertical-align:middle;background-color:#fff;border-color:#39870c;color:#39870c;border-width:1px;border-style:solid;border-radius:4px;line-height:1.5;min-width:56px;padding:11px 15px;border-right:0;border-top:0;border-radius:0 0 0 8px;height:40px;min-width:40px;padding:0;position:fixed;right:0;width:40px;top:0}.close-button:focus,.close-button:focus-visible{outline-offset:2px}.close-button:active{outline:0}.close-button.extern::after,.close-button.download::after{content:\"\";display:inline-block;height:1.5em;margin-left:8px;vertical-align:top;width:1.5em}.close-button:hover{background-color:#39870c;border-color:#39870c;color:#fff}.close-button:active{background-color:#275937;border-color:#275937;color:#fff}.close-button[disabled],.close-button[disabled]:hover{background-color:#fff;border-color:#afcf9d;color:#afcf9d}.close-button.btn-sm{line-height:16px}.close-button.btn-sm dso-icon,.close-button.btn-sm svg.di,.close-button.btn-sm.extern::after,.close-button.btn-sm.download::after{margin-bottom:-4px;margin-top:-4px}.close-button.download::after{background:var(--dso-icon, var(--di-download)) no-repeat;background-position:center;background-size:cover;height:1.5em;vertical-align:top;width:1.5em}.close-button.download:hover::after{--dso-icon:var(--di-download-wit)}.close-button.download[disabled]::after{--dso-icon:var(--di-download-grasgroen-40)}.close-button.extern::after{background:var(--dso-icon, var(--di-external-link)) no-repeat;background-position:center;background-size:cover;height:1.5em;vertical-align:top;width:1.5em}.close-button.extern:hover::after{--dso-icon:var(--di-external-link-wit)}.close-button.extern[disabled]::after{--dso-icon:var(--di-external-link-grasgroen-40)}.close-button dso-icon,.close-button svg.di{margin-left:-8px;margin-right:8px}.close-button span+dso-icon,.close-button span+svg.di{margin-left:8px;margin-right:-8px}.close-button::before{background:var(--dso-icon, var(--di-times)) no-repeat;background-position:center;background-size:cover;height:1.5em;vertical-align:top;width:1.5em;content:\"\";display:inline-block;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}.close-button:hover,.close-button:active,.close-button:focus{cursor:pointer}.close-button:hover::before,.close-button:active::before,.close-button:focus::before{background:var(--dso-icon, var(--di-times-wit)) no-repeat;background-position:center;background-size:cover;height:1.5em;vertical-align:top;width:1.5em}.close-button.close{display:none}.iframe-container{background-color:#fff;border:0;border-left:1px solid #ccc;box-shadow:0 2px 8px 0 rgba(0, 0, 0, 0.4);height:100%;position:absolute;right:-640px;top:0;transition:right 0.5s;width:640px}.iframe-container.open{right:0}iframe{border:0;height:100%;width:100%}";
1510
+
1511
+ const maxCssTransitionMilliseconds = 500;
1512
+ let HelpcenterPanel = class extends HTMLElement {
1513
+ constructor() {
1514
+ super();
1515
+ this.__registerHost();
1516
+ attachShadow(this);
1517
+ this.label = "Hulp nodig";
1518
+ this.visibility = "hidden";
1519
+ this.isOpen = "close";
1520
+ this.slideState = "close";
1521
+ this.loadIframe = false;
1522
+ this.openClick = () => {
1523
+ this.visibility = "visible";
1524
+ this.slideState = "open";
1525
+ setTimeout(() => {
1526
+ this.isOpen = "open";
1527
+ });
1528
+ if (!this.loadIframe) {
1529
+ setTimeout(() => {
1530
+ this.loadIframe = true;
1531
+ }, maxCssTransitionMilliseconds);
1532
+ }
1533
+ };
1534
+ this.closeClick = () => {
1535
+ this.isOpen = "close";
1536
+ this.slideState = "close";
1537
+ setTimeout(() => {
1538
+ this.visibility = "hidden";
1539
+ }, maxCssTransitionMilliseconds);
1540
+ };
1541
+ }
1542
+ render() {
1543
+ return (h(Fragment, null, h("button", { type: "button", onClick: this.openClick, class: `open-button ${this.isOpen}` }, h("dso-icon", { icon: "help" }), h("span", null, this.label)), h("div", { class: `wrapper ${this.visibility}` }, h("div", { class: "dimscreen" }), h("div", { class: `iframe-container ${this.slideState}` }, this.loadIframe ? h("iframe", { src: this.url }) : h("div", null)), h("button", { type: "button", class: `close-button ${this.isOpen}`, onClick: this.closeClick }, h("span", { class: "sr-only" }, "sluiten")))));
1544
+ }
1545
+ static get style() { return helpcenterPanelCss; }
1546
+ };
1547
+
1506
1548
  const highlightBoxCss = ":host{--di-external-link-grijs90:url(\"data:image/svg+xml,%3csvg id='external-link' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: %23191919%3b'%3e %3cpath fill='currentColor' d='M19%2c6V9.69c0%2c.33-.2.41-.43.17L17.06%2c8.35l-3.35%2c3.36a1%2c1%2c0%2c0%2c1-1.42%2c0%2c1%2c1%2c0%2c0%2c1%2c0-1.42l3.36-3.35L14.14%2c5.43C13.9%2c5.19%2c14%2c5%2c14.31%2c5H19V6ZM18%2c17V13a1%2c1%2c0%2c0%2c0-2%2c0v4a1%2c1%2c0%2c0%2c1-1%2c1H7a1%2c1%2c0%2c0%2c1-1-1V9A1%2c1%2c0%2c0%2c1%2c7%2c8h4a1%2c1%2c0%2c0%2c0%2c0-2H7A3%2c3%2c0%2c0%2c0%2c4%2c9v8a3%2c3%2c0%2c0%2c0%2c3%2c3h8A3%2c3%2c0%2c0%2c0%2c18%2c17Z'/%3e %3c/svg%3e\");--di-download-grijs90:url(\"data:image/svg+xml,%3csvg id='download' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='color: %23191919%3b'%3e %3cpath fill='currentColor' d='M18.72%2c10.44%2c12%2c17l-6.7-6.52C4.8%2c10%2c5%2c9.63%2c5.63%2c9.63H8.5V1.82A.8.8%2c0%2c0%2c1%2c9.28%2c1h5.44a.8.8%2c0%2c0%2c1%2c.78.82V9.61h2.87C19%2c9.6%2c19.2%2c10%2c18.72%2c10.44ZM1%2c17v6H23V17Zm16%2c3a2%2c2%2c0%2c1%2c1-2-2A2%2c2%2c0%2c0%2c1%2c17%2c20Zm5%2c0a2%2c2%2c0%2c1%2c1-2-2A2%2c2%2c0%2c0%2c1%2c22%2c20Z'/%3e %3c/svg%3e\");display:block}:host-context(.row.dso-equal-heights){height:100%;min-height:auto}:host-context(.row.dso-equal-heights)>.dso-highlight-box{min-height:auto}:host-context(.row.dso-equal-heights)>.dso-highlight-box.dso-has-counter{height:calc(100% - 48px)}:host-context(.row.dso-equal-heights)>.dso-highlight-box:not(.dso-has-counter){height:calc(100% - 16px)}*,*::after,*::before{box-sizing:border-box}.dso-highlight-box{background-color:#f2f2f2;margin-top:16px;padding:16px;margin-bottom:16px}.dso-highlight-box.dso-white{background-color:#fff}.dso-highlight-box.dso-yellow{background-color:#f8f6cc}.dso-highlight-box.dso-drop-shadow{box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2)}.dso-highlight-box.dso-border{background-color:#fff;border:1px solid #ccc;padding:15px}.dso-highlight-box.dso-has-counter{margin-top:48px}.dso-highlight-box.dso-has-counter{padding-top:40px;position:relative}.dso-highlight-box .dso-step-counter{background-color:#39870c;border:8px solid #79b929;border-radius:50%;box-sizing:content-box;color:#fff;font-size:1.25em;font-weight:500;height:32px;left:16px;line-height:32px;position:absolute;text-align:center;top:-24px;width:32px}";
1507
1549
 
1508
1550
  let HighlightBox = class extends HTMLElement {
@@ -1572,6 +1614,11 @@ const calendar = `<svg id="calendar" xmlns="http://www.w3.org/2000/svg" viewBox=
1572
1614
  </svg>
1573
1615
  `;
1574
1616
 
1617
+ const call = `<svg id="call" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1618
+ <path fill="currentColor" d="M23,17.86V22a1,1,0,0,1-1,1A22,22,0,0,1,1,2,1,1,0,0,1,2,1H6a1,1,0,0,1,1,.84L8.26,7A1,1,0,0,1,8,7.88L5.42,10.57a20.11,20.11,0,0,0,8,8L16.12,16a1,1,0,0,1,.87-.28l5.17,1.14A1,1,0,0,1,23,17.86Z"/>
1619
+ </svg>
1620
+ `;
1621
+
1575
1622
  const caretDown = `<svg id="caret-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1576
1623
  <path fill="currentColor" d="M19.71,10,13.08,16.6a1.35,1.35,0,0,1-1.9,0L4.3,9.93C3.77,9.42,4,9,4.71,9H19.28C20,9,20.23,9.43,19.71,10Z"/>
1577
1624
  </svg>
@@ -1582,6 +1629,11 @@ const check = `<svg id="check" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2
1582
1629
  </svg>
1583
1630
  `;
1584
1631
 
1632
+ const checkCircle = `<svg id="check-circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1633
+ <path fill="currentColor" d="M10.11,18,5.29,13.31A.92.92,0,0,1,5.3,12a1,1,0,0,1,1.41,0l3.4,3.3,7.18-7a1,1,0,0,1,1.41,0,.92.92,0,0,1,0,1.35ZM12,3a9,9,0,1,0,9,9,9,9,0,0,0-9-9m0-2A11,11,0,1,1,1,12,11,11,0,0,1,12,1ZM10.11,18,5.29,13.31A.92.92,0,0,1,5.3,12a1,1,0,0,1,1.41,0l3.4,3.3,7.18-7a1,1,0,0,1,1.41,0,.92.92,0,0,1,0,1.35Z"/>
1634
+ </svg>
1635
+ `;
1636
+
1585
1637
  const chevronDown = `<svg id="chevron-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1586
1638
  <path fill="currentColor" d="M12,16,5.29,9.63a.93.93,0,0,1,0-1.35,1,1,0,0,1,1.42,0l5.29,5,5.29-5a1,1,0,0,1,1.42,0,.91.91,0,0,1,0,1.34Z"/>
1587
1639
  </svg>
@@ -1626,6 +1678,11 @@ const cultural = `<svg id="cultural" xmlns="http://www.w3.org/2000/svg" viewBox=
1626
1678
  <path fill="currentColor" d="M6,18H4V10H6Zm4-8H8v8h2Zm6,0H14v8h2Zm4,0H18v8h2Zm1,11V19H3v2H1v2H23V21Zm.09-12H2.92c-1,0-1.21-.45-.53-1l8.2-6.6a2.12,2.12,0,0,1,2.49,0L21.6,8C22.29,8.56,22.06,9,21.09,9ZM14,6a2,2,0,1,0-2,2A2,2,0,0,0,14,6Z"/>
1627
1679
  </svg>`;
1628
1680
 
1681
+ const document$1 = `<svg id="document" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1682
+ <path fill="currentColor" d="M14.11,1H5A2,2,0,0,0,3,3V21a2,2,0,0,0,2,2H19a2,2,0,0,0,2-2V7.89ZM19,21H5V3h8V9h6Zm-2-2H7V17H17Zm0-4H7V13H17Z"/>
1683
+ </svg>
1684
+ `;
1685
+
1629
1686
  const download = `<svg id="download" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1630
1687
  <path fill="currentColor" d="M18.72,10.44,12,17l-6.7-6.52C4.8,10,5,9.63,5.63,9.63H8.5V1.82A.8.8,0,0,1,9.28,1h5.44a.8.8,0,0,1,.78.82V9.61h2.87C19,9.6,19.2,10,18.72,10.44ZM1,17v6H23V17Zm16,3a2,2,0,1,1-2-2A2,2,0,0,1,17,20Zm5,0a2,2,0,1,1-2-2A2,2,0,0,1,22,20Z"/>
1631
1688
  </svg>
@@ -1671,10 +1728,7 @@ const filter = `<svg id="filter" xmlns="http://www.w3.org/2000/svg" viewBox="0 0
1671
1728
  `;
1672
1729
 
1673
1730
  const forbidden = `<svg id="forbidden" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1674
- <g>
1675
- <path d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm8.25,11a8.19,8.19,0,0,1-1.53,4.77L7.23,5.28a8.24,8.24,0,0,1,13,6.72ZM3.75,12A8.19,8.19,0,0,1,5.28,7.23L16.77,18.72A8.24,8.24,0,0,1,3.75,12Z" style="fill: #ce3f51"/>
1676
- <path d="M12,1A11,11,0,1,1,1,12,11,11,0,0,1,12,1m6.72,15.77A8.24,8.24,0,0,0,7.23,5.28L18.72,16.77M12,20.25a8.19,8.19,0,0,0,4.77-1.53L5.28,7.23a8.24,8.24,0,0,0,6.72,13M12,0A12,12,0,1,0,24,12,12,12,0,0,0,12,0ZM8.84,5.48A7.18,7.18,0,0,1,12,4.75,7.26,7.26,0,0,1,19.25,12a7.18,7.18,0,0,1-.73,3.16L8.84,5.48ZM12,19.25A7.26,7.26,0,0,1,4.75,12a7.18,7.18,0,0,1,.73-3.16l9.68,9.68a7.18,7.18,0,0,1-3.16.73Z" style="fill: #fff"/>
1677
- </g>
1731
+ <path fill="currentColor" d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1ZM3,12A9,9,0,0,1,5,6.39L17.61,19A8.91,8.91,0,0,1,12,21,9,9,0,0,1,3,12Zm16,5.61L6.39,5A9,9,0,0,1,19,17.61Z"/>
1678
1732
  </svg>
1679
1733
  `;
1680
1734
 
@@ -1797,7 +1851,7 @@ const more = `<svg id="more" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24
1797
1851
  `;
1798
1852
 
1799
1853
  const municipality = `<svg id="municipality" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1800
- <path fill="currentColor" d="M22.92,16a.26.26,0,0,1,0,.33h-.67v5.5a.21.21,0,0,1-.21.21H13.92a.21.21,0,0,1-.21-.21V16.28H13a.26.26,0,0,1,0-.33l1.19-1H8.92a.21.21,0,0,1-.21-.21V9.28H8a.26.26,0,0,1,0-.33L13,5a.24.24,0,0,1,.26,0L17.92,9a.26.26,0,0,1,0,.33h-.67v3.29L18,12a.24.24,0,0,1,.26,0L20,13.52V12.21a2.35,2.35,0,0,1-2-2.44C18,6.36,19.67,4,20.5,4S23,6.36,23,9.77a2.35,2.35,0,0,1-2,2.44v2.15Zm-12,1L6.22,13A.21.21,0,0,0,6,13L1.08,17a.26.26,0,0,0,0,.33h.67v5.51a.21.21,0,0,0,.21.21h8.16a.21.21,0,0,0,.21-.21v-5.5H11A.25.25,0,0,0,10.92,17ZM3,12.41c0,.79,4,.79,4,0A1.4,1.4,0,0,0,6,11.2v-2A2.35,2.35,0,0,0,8,6.77C8,3.36,6.33,1,5.5,1S3,3.36,3,6.77A2.35,2.35,0,0,0,5,9.21V11C3.9,11,3,11.63,3,12.41Z"/>
1854
+ <path fill="currentColor" d="M16,10V9H8v1H0V23H8v1h3V18h2v6h3V23h8V10ZM4,20H2V12H4Zm4,0H6V12H8Zm5-7H11V11h2Zm5,7H16V12h2Zm4,0H20V12h2ZM22,1.88a2.55,2.55,0,0,1,2,0V.51a2.53,2.53,0,0,0-2,0c-1,.41-2,.74-3-.26V0H18V6.38L16,6V3.5L12,2,8,3.5V6L0,7.5V9H8V8h8V9h8V7.5l-5-.94V4.2c1,1,2,.67,3,.25a2.55,2.55,0,0,1,2,0V3.09a2.55,2.55,0,0,0-2,0c-1,.41-2,.75-3-.25V1.63C20,2.63,21,2.29,22,1.88ZM12,6a1,1,0,1,1,1-1A1,1,0,0,1,12,6Z"/>
1801
1855
  </svg>
1802
1856
  `;
1803
1857
 
@@ -1909,6 +1963,14 @@ const sound = `<svg id="sound" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2
1909
1963
  </svg>
1910
1964
  `;
1911
1965
 
1966
+ const statusForbidden = `<svg id="forbidden" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1967
+ <g>
1968
+ <path d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm8.25,11a8.19,8.19,0,0,1-1.53,4.77L7.23,5.28a8.24,8.24,0,0,1,13,6.72ZM3.75,12A8.19,8.19,0,0,1,5.28,7.23L16.77,18.72A8.24,8.24,0,0,1,3.75,12Z" style="fill: #ce3f51"/>
1969
+ <path d="M12,1A11,11,0,1,1,1,12,11,11,0,0,1,12,1m6.72,15.77A8.24,8.24,0,0,0,7.23,5.28L18.72,16.77M12,20.25a8.19,8.19,0,0,0,4.77-1.53L5.28,7.23a8.24,8.24,0,0,0,6.72,13M12,0A12,12,0,1,0,24,12,12,12,0,0,0,12,0ZM8.84,5.48A7.18,7.18,0,0,1,12,4.75,7.26,7.26,0,0,1,19.25,12a7.18,7.18,0,0,1-.73,3.16L8.84,5.48ZM12,19.25A7.26,7.26,0,0,1,4.75,12a7.18,7.18,0,0,1,.73-3.16l9.68,9.68a7.18,7.18,0,0,1-3.16.73Z" style="fill: #fff"/>
1970
+ </g>
1971
+ </svg>
1972
+ `;
1973
+
1912
1974
  const statusDanger = `<svg id="status-danger-line" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1913
1975
  <g>
1914
1976
  <path d="M22.6,18.51c.86,1.37.29,2.49-1.25,2.49H2.65C1.11,21,.54,19.88,1.4,18.51L10.44,4a1.7,1.7,0,0,1,3.12,0Z" style="fill: #ce3f51"/>
@@ -2000,8 +2062,10 @@ const icons = [
2000
2062
  { alias: 'bars', svg: bars },
2001
2063
  { alias: 'buildings', svg: buildings },
2002
2064
  { alias: 'calendar', svg: calendar },
2065
+ { alias: 'call', svg: call },
2003
2066
  { alias: 'caret-down', svg: caretDown },
2004
2067
  { alias: 'check', svg: check },
2068
+ { alias: 'check-circle', svg: checkCircle },
2005
2069
  { alias: 'chevron-down', svg: chevronDown },
2006
2070
  { alias: 'chevron-left', svg: chevronLeft },
2007
2071
  { alias: 'chevron-right', svg: chevronRight },
@@ -2011,6 +2075,7 @@ const icons = [
2011
2075
  { alias: 'copy', svg: copy },
2012
2076
  { alias: 'crown', svg: crown },
2013
2077
  { alias: 'cultural', svg: cultural },
2078
+ { alias: 'document', svg: document$1 },
2014
2079
  { alias: 'download', svg: download },
2015
2080
  { alias: 'email', svg: email },
2016
2081
  { alias: 'energy', svg: energy },
@@ -2067,6 +2132,7 @@ const icons = [
2067
2132
  { alias: 'sort', svg: sort },
2068
2133
  { alias: 'sound', svg: sound },
2069
2134
  { alias: 'status-danger', svg: statusDanger },
2135
+ { alias: 'status-forbidden', svg: statusForbidden },
2070
2136
  { alias: 'status-info', svg: statusInfo },
2071
2137
  { alias: 'status-success', svg: statusSuccess },
2072
2138
  { alias: 'status-warning', svg: statusWarning },
@@ -2820,7 +2886,7 @@ let Selectable = class extends HTMLElement {
2820
2886
  static get style() { return selectableCss; }
2821
2887
  };
2822
2888
 
2823
- const toggletipCss = "*,*::after,*::before{box-sizing:border-box}";
2889
+ const toggletipCss = "*,*::after,*::before{box-sizing:border-box}:host(:focus){outline:none}";
2824
2890
 
2825
2891
  let Toggletip = class extends HTMLElement {
2826
2892
  constructor() {
@@ -2869,6 +2935,7 @@ let Toggletip = class extends HTMLElement {
2869
2935
  throw Error("button not found");
2870
2936
  }
2871
2937
  this.button = button;
2938
+ this.host.setAttribute("tabindex", "-1");
2872
2939
  }
2873
2940
  render() {
2874
2941
  return (h(Fragment, null, h("dso-info-button", { id: "toggle", onClick: this.click, label: this.label, active: this.active, secondary: this.secondary }), h("dso-tooltip", { stateless: true, for: "toggle", active: this.active, position: this.position, small: this.small }, h("slot", null))));
@@ -4759,13 +4826,14 @@ let Tooltip = class extends HTMLElement {
4759
4826
 
4760
4827
  const DsoTreeItem = ({ owner, ancestors, item, index, level, setSize }) => {
4761
4828
  var _a, _b, _c;
4762
- return (h("li", { key: item.reference, class: clsx('tree-item', { 'has-child': item.hasItems }), role: 'none' },
4829
+ return (h("li", { key: item.id, class: clsx('tree-item', { 'has-child': item.hasItems }), role: 'none' },
4763
4830
  h("div", { class: "tree-branch-control" }, item.hasItems
4764
4831
  ?
4765
4832
  h("div", { onClick: (e) => owner.itemClick(e, ancestors, item) },
4766
4833
  h("dso-icon", { icon: item.open ? 'chevron-down' : 'chevron-right' }))
4767
4834
  : h("dso-icon", null)),
4768
- h("p", { class: "tree-content", tabindex: level === 1 && index === 0 ? 0 : -1, role: "treeitem", "aria-expanded": item.hasItems ? '' + (!!item.open && !!((_a = item.items) === null || _a === void 0 ? void 0 : _a.length)) : undefined, "aria-level": level, "aria-setsize": setSize, "aria-posinset": index + 1, "aria-busy": item.loading ? 'true' : undefined, onClick: (e) => owner.itemClick(e, ancestors, item) },
4835
+ h("p", { class: clsx('tree-content', { 'active': item.active }, { 'selected': item.selected }), tabindex: level === 1 && index === 0 ? 0 : -1, role: "treeitem", "aria-expanded": item.hasItems ? '' + (!!item.open && !!((_a = item.items) === null || _a === void 0 ? void 0 : _a.length)) : undefined, "aria-current": item.active ? 'true' : undefined, "aria-level": level, "aria-setsize": setSize, "aria-posinset": index + 1, "aria-busy": item.loading ? 'true' : undefined, onClick: (e) => owner.itemClick(e, ancestors, item) },
4836
+ item.selected && h("span", { class: "sr-only" }, "Resultaat: "),
4769
4837
  item.href
4770
4838
  ? h("a", { href: item.href, tabindex: "-1" }, item.label)
4771
4839
  : h("span", null, item.label), (_b = item.icons) === null || _b === void 0 ? void 0 :
@@ -4776,7 +4844,7 @@ const DsoTreeItem = ({ owner, ancestors, item, index, level, setSize }) => {
4776
4844
  : h("ul", { role: "group" }, (_c = item.items) === null || _c === void 0 ? void 0 : _c.map((childItem, index, org) => h(DsoTreeItem, { owner: owner, ancestors: [...ancestors, item], item: childItem, index: index, level: level + 1, setSize: org.length }))))));
4777
4845
  };
4778
4846
 
4779
- const treeViewCss = ":host ul{list-style-type:none}:host ul[role=tree]{padding-left:0}:host li[role=treeitem]>ul{padding-left:1.5em}:host .tree-branch-control{cursor:pointer;display:inline-block}:host .tree-content{cursor:pointer;display:inline-block;margin:8px 0}:host .tree-content a,:host .tree-content a:visited{color:#39870c;text-decoration:none}:host .tree-content a:hover,:host .tree-content a:focus{color:#676cb0;text-decoration:underline}:host .tree-content a:active{text-decoration:none}:host .tree-content dso-icon{vertical-align:text-bottom;font-size:0.75em;margin-left:0.5em}*,*::after,*::before{box-sizing:border-box}";
4847
+ const treeViewCss = ":host ul{list-style-type:none}:host ul[role=tree]{padding-left:0}:host li[role=treeitem]>ul{padding-left:1.5em}:host .tree-branch-control{cursor:pointer;display:inline-block}:host .tree-content{cursor:pointer;display:inline-block;margin:8px 0}:host .tree-content.active{font-weight:700}:host .tree-content.active:hover{text-decoration:underline}:host .tree-content.active a{text-decoration:none}:host .tree-content.selected{color:#191919;font-weight:700;text-decoration:underline}:host .tree-content.selected:hover,:host .tree-content.selected:focus{text-decoration:none}:host .tree-content a,:host .tree-content a:visited{color:#191919;text-decoration:underline}:host .tree-content a:hover,:host .tree-content a:focus{color:#191919;text-decoration:none}:host .tree-content a:active{text-decoration:none}:host .tree-content dso-icon{font-size:0.75em;margin-left:0.5em;vertical-align:text-bottom}*,*::after,*::before{box-sizing:border-box}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}";
4780
4848
 
4781
4849
  let TreeView = class extends HTMLElement {
4782
4850
  constructor() {
@@ -4839,7 +4907,7 @@ let TreeView = class extends HTMLElement {
4839
4907
  return;
4840
4908
  }
4841
4909
  TreeView.setFocus(tree, contentElement);
4842
- this.clickItem.emit([...ancestors, item]);
4910
+ this.clickItem.emit({ path: [...ancestors, item], originalEvent: event });
4843
4911
  return;
4844
4912
  }
4845
4913
  if (item.open) {
@@ -4938,6 +5006,7 @@ const DsoBadge = /*@__PURE__*/proxyCustomElement(Badge, [1,"dso-badge",{"status"
4938
5006
  const DsoBanner = /*@__PURE__*/proxyCustomElement(Banner, [1,"dso-banner",{"status":[1]}]);
4939
5007
  const DsoDatePicker = /*@__PURE__*/proxyCustomElement(DsoDatePicker$1, [1,"dso-date-picker",{"name":[1],"identifier":[1],"disabled":[516],"role":[1],"direction":[1],"required":[4],"dsoAutofocus":[4,"dso-autofocus"],"value":[1537],"min":[1],"max":[1],"activeFocus":[32],"focusedDay":[32],"open":[32]},[[6,"click","handleDocumentClick"]]]);
4940
5008
  const DsoDropdownMenu = /*@__PURE__*/proxyCustomElement(DropdownMenu, [1,"dso-dropdown-menu",{"open":[1540],"dropdownAlign":[1,"dropdown-align"],"checkable":[4]}]);
5009
+ const DsoHelpcenterPanel = /*@__PURE__*/proxyCustomElement(HelpcenterPanel, [1,"dso-helpcenter-panel",{"label":[1],"url":[1],"visibility":[32],"isOpen":[32],"slideState":[32],"loadIframe":[32]}]);
4941
5010
  const DsoHighlightBox = /*@__PURE__*/proxyCustomElement(HighlightBox, [1,"dso-highlight-box",{"yellow":[4],"border":[4],"white":[4],"dropShadow":[4,"drop-shadow"],"step":[2]}]);
4942
5011
  const DsoIcon = /*@__PURE__*/proxyCustomElement(Icon, [1,"dso-icon",{"icon":[1]}]);
4943
5012
  const DsoInfo = /*@__PURE__*/proxyCustomElement(Info, [1,"dso-info",{"fixed":[516],"active":[516]}]);
@@ -4963,6 +5032,7 @@ const defineCustomElements = (opts) => {
4963
5032
  DsoBanner,
4964
5033
  DsoDatePicker,
4965
5034
  DsoDropdownMenu,
5035
+ DsoHelpcenterPanel,
4966
5036
  DsoHighlightBox,
4967
5037
  DsoIcon,
4968
5038
  DsoInfo,
@@ -4986,4 +5056,4 @@ const defineCustomElements = (opts) => {
4986
5056
  }
4987
5057
  };
4988
5058
 
4989
- export { DsoAlert, DsoAttachmentsCounter, DsoAutosuggest, DsoBadge, DsoBanner, DsoDatePicker, DsoDropdownMenu, DsoHighlightBox, DsoIcon, DsoInfo, DsoInfoButton, DsoLabel, DsoMapBaseLayers, DsoMapControls, DsoMapOverlays, DsoOzonContent, DsoProgressBar, DsoProgressIndicator, DsoSelectable, DsoToggletip, DsoTooltip, DsoTreeView, defineCustomElements };
5059
+ export { DsoAlert, DsoAttachmentsCounter, DsoAutosuggest, DsoBadge, DsoBanner, DsoDatePicker, DsoDropdownMenu, DsoHelpcenterPanel, DsoHighlightBox, DsoIcon, DsoInfo, DsoInfoButton, DsoLabel, DsoMapBaseLayers, DsoMapControls, DsoMapOverlays, DsoOzonContent, DsoProgressBar, DsoProgressIndicator, DsoSelectable, DsoToggletip, DsoTooltip, DsoTreeView, defineCustomElements };
@@ -1 +1 @@
1
- import{p as e,b as o}from"./p-a40eeb32.js";(()=>{const o=import.meta.url,s={};return""!==o&&(s.resourcesUrl=new URL(".",o).href),e(s)})().then((e=>o([["p-08427682",[[1,"dso-map-base-layers",{baseLayers:[16],selectedBaseLayer:[1040]}]]],["p-e7700d9e",[[1,"dso-map-overlays",{overlays:[16],checkedOverlays:[1040]}]]],["p-e2dc97c4",[[1,"dso-toggletip",{label:[1],position:[1],small:[4],secondary:[4],active:[32]}]]],["p-ad8f467f",[[1,"dso-tree-view",{collection:[16]}]]],["p-e03d7741",[[1,"dso-date-picker",{name:[1],identifier:[1],disabled:[516],role:[1],direction:[1],required:[4],dsoAutofocus:[4,"dso-autofocus"],value:[1537],min:[1],max:[1],activeFocus:[32],focusedDay:[32],open:[32],setFocus:[64],show:[64],hide:[64]},[[6,"click","handleDocumentClick"]]]]],["p-9e9f8bcf",[[1,"dso-label",{compact:[4],removable:[4],status:[1],hover:[32]}]]],["p-e4269e02",[[1,"dso-map-controls",{open:[1540],disableZoom:[1,"disable-zoom"],hideContent:[32]}]]],["p-83f166b3",[[1,"dso-alert",{status:[1],roleAlert:[4,"role-alert"]}]]],["p-2e7d535c",[[1,"dso-attachments-counter",{count:[2]}]]],["p-39dae284",[[6,"dso-autosuggest",{suggestions:[16],suggestOnFocus:[4,"suggest-on-focus"],showSuggestions:[32],selectedSuggestion:[32]},[[4,"click","onDocumentClick"]]]]],["p-c9c1bc8f",[[1,"dso-badge",{status:[1]}]]],["p-19de4cc7",[[1,"dso-banner",{status:[1]}]]],["p-12f7e7d7",[[1,"dso-dropdown-menu",{open:[1540],dropdownAlign:[1,"dropdown-align"],checkable:[4]}]]],["p-be5682cc",[[1,"dso-highlight-box",{yellow:[4],border:[4],white:[4],dropShadow:[4,"drop-shadow"],step:[2]}]]],["p-a52d3623",[[0,"dso-ozon-content",{content:[1]},[[0,"click","handleClick"]]]]],["p-262858dd",[[1,"dso-progress-bar",{progress:[2],min:[2],max:[2]}]]],["p-b5b946de",[[1,"dso-progress-indicator",{label:[1],size:[1],block:[4]}]]],["p-759920d0",[[1,"dso-tooltip",{position:[1],for:[1],noArrow:[4,"no-arrow"],stateless:[4],small:[4],active:[1540],hidden:[32],activate:[64],deactivate:[64]},[[0,"click","listenClick"]]]]],["p-5a67f3f7",[[1,"dso-icon",{icon:[1]}]]],["p-5665f1ee",[[1,"dso-info-button",{active:[1540],secondary:[4],label:[1]}]]],["p-affe82e6",[[1,"dso-selectable",{type:[1],identifier:[1],name:[1],value:[1],invalid:[4],describedById:[1,"described-by-id"],disabled:[4],required:[4],checked:[4],indeterminate:[4],infoFixed:[4,"info-fixed"],infoActive:[32]}],[1,"dso-info",{fixed:[516],active:[516]}]]]],e)));
1
+ import{p as e,b as o}from"./p-a40eeb32.js";(()=>{const o=import.meta.url,s={};return""!==o&&(s.resourcesUrl=new URL(".",o).href),e(s)})().then((e=>o([["p-08427682",[[1,"dso-map-base-layers",{baseLayers:[16],selectedBaseLayer:[1040]}]]],["p-e7700d9e",[[1,"dso-map-overlays",{overlays:[16],checkedOverlays:[1040]}]]],["p-984551a8",[[1,"dso-toggletip",{label:[1],position:[1],small:[4],secondary:[4],active:[32]}]]],["p-e814d644",[[1,"dso-tree-view",{collection:[16]}]]],["p-e03d7741",[[1,"dso-date-picker",{name:[1],identifier:[1],disabled:[516],role:[1],direction:[1],required:[4],dsoAutofocus:[4,"dso-autofocus"],value:[1537],min:[1],max:[1],activeFocus:[32],focusedDay:[32],open:[32],setFocus:[64],show:[64],hide:[64]},[[6,"click","handleDocumentClick"]]]]],["p-b07991b9",[[1,"dso-helpcenter-panel",{label:[1],url:[1],visibility:[32],isOpen:[32],slideState:[32],loadIframe:[32]}]]],["p-9e9f8bcf",[[1,"dso-label",{compact:[4],removable:[4],status:[1],hover:[32]}]]],["p-e4269e02",[[1,"dso-map-controls",{open:[1540],disableZoom:[1,"disable-zoom"],hideContent:[32]}]]],["p-83f166b3",[[1,"dso-alert",{status:[1],roleAlert:[4,"role-alert"]}]]],["p-2e7d535c",[[1,"dso-attachments-counter",{count:[2]}]]],["p-39dae284",[[6,"dso-autosuggest",{suggestions:[16],suggestOnFocus:[4,"suggest-on-focus"],showSuggestions:[32],selectedSuggestion:[32]},[[4,"click","onDocumentClick"]]]]],["p-c9c1bc8f",[[1,"dso-badge",{status:[1]}]]],["p-19de4cc7",[[1,"dso-banner",{status:[1]}]]],["p-741e96de",[[1,"dso-dropdown-menu",{open:[1540],dropdownAlign:[1,"dropdown-align"],checkable:[4]}]]],["p-be5682cc",[[1,"dso-highlight-box",{yellow:[4],border:[4],white:[4],dropShadow:[4,"drop-shadow"],step:[2]}]]],["p-a52d3623",[[0,"dso-ozon-content",{content:[1]},[[0,"click","handleClick"]]]]],["p-262858dd",[[1,"dso-progress-bar",{progress:[2],min:[2],max:[2]}]]],["p-b5b946de",[[1,"dso-progress-indicator",{label:[1],size:[1],block:[4]}]]],["p-759920d0",[[1,"dso-tooltip",{position:[1],for:[1],noArrow:[4,"no-arrow"],stateless:[4],small:[4],active:[1540],hidden:[32],activate:[64],deactivate:[64]},[[0,"click","listenClick"]]]]],["p-5665f1ee",[[1,"dso-info-button",{active:[1540],secondary:[4],label:[1]}]]],["p-affe82e6",[[1,"dso-selectable",{type:[1],identifier:[1],name:[1],value:[1],invalid:[4],describedById:[1,"described-by-id"],disabled:[4],required:[4],checked:[4],indeterminate:[4],infoFixed:[4,"info-fixed"],infoActive:[32]}],[1,"dso-info",{fixed:[516],active:[516]}]]],["p-75233655",[[1,"dso-icon",{icon:[1]}]]]],e)));