@govflanders/vl-widget-global-header-types 2.0.4 → 2.0.6
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/README.md +2 -0
- package/dist/bootstrap.d.ts +1 -1
- package/dist/client/access-menu.d.ts +66 -0
- package/dist/client/branding.d.ts +89 -0
- package/dist/client/branding.js +1 -0
- package/dist/client/client.d.ts +80 -0
- package/dist/client/client.js +1 -0
- package/dist/client/contact.d.ts +70 -0
- package/dist/client/contact.js +1 -0
- package/dist/client/index.d.ts +4 -0
- package/dist/client/index.js +4 -0
- package/docs/assets/hierarchy.js +1 -1
- package/docs/assets/highlight.css +7 -0
- package/docs/assets/main.js +4 -4
- package/docs/assets/navigation.js +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/assets/style.css +6 -6
- package/docs/functions/bootstrap.html +2 -2
- package/docs/hierarchy.html +1 -1
- package/docs/index.html +3 -3
- package/docs/interfaces/AccessMenuMethods.html +55 -0
- package/docs/interfaces/AlertConfig.html +5 -5
- package/docs/interfaces/Application.html +5 -5
- package/docs/interfaces/ApplicationMenuLink.html +6 -6
- package/docs/interfaces/Authorization.html +5 -5
- package/docs/interfaces/BUR.html +6 -6
- package/docs/interfaces/BaseConfig.html +2 -2
- package/docs/interfaces/BaseEntity.html +5 -5
- package/docs/interfaces/BrandingConfigColors.html +4 -4
- package/docs/interfaces/BrandingConfigHost.html +6 -6
- package/docs/interfaces/BrandingConfigUmbrella.html +5 -5
- package/docs/interfaces/BrandingMethods.html +73 -0
- package/docs/interfaces/Channel.html +12 -12
- package/docs/interfaces/ContactMethods.html +43 -0
- package/docs/interfaces/ContactOption.html +15 -15
- package/docs/interfaces/ContactOptionRef.html +5 -5
- package/docs/interfaces/EA.html +5 -5
- package/docs/interfaces/EnrichedServicePoints.html +6 -6
- package/docs/interfaces/GID.html +5 -5
- package/docs/interfaces/GlobalHeaderClient.html +32 -66
- package/docs/interfaces/I18n.html +2 -2
- package/docs/interfaces/IDPData.html +5 -5
- package/docs/interfaces/Image.html +5 -5
- package/docs/interfaces/LB.html +5 -5
- package/docs/interfaces/Link.html +4 -4
- package/docs/interfaces/LinkWithTarget.html +5 -5
- package/docs/interfaces/MainLink.html +6 -6
- package/docs/interfaces/OV.html +5 -5
- package/docs/interfaces/ProfileConfig.html +8 -8
- package/docs/interfaces/RecursiveRecord.html +1 -1
- package/docs/interfaces/ResolveOptions.html +2 -2
- package/docs/interfaces/ServicePoints.html +6 -6
- package/docs/interfaces/Session.html +3 -3
- package/docs/interfaces/Translations.html +2 -2
- package/docs/interfaces/User.html +4 -4
- package/docs/interfaces/VER.html +5 -5
- package/docs/modules.html +1 -1
- package/docs/types/AlertModifier.html +1 -1
- package/docs/types/BrandingConfigLevel.html +2 -2
- package/docs/types/CapacityCode.html +2 -2
- package/docs/types/ChannelIcon.html +2 -2
- package/docs/types/ChannelType.html +2 -2
- package/docs/types/CobrowseChannel.html +2 -2
- package/docs/types/ContactOptionSocialPlatform.html +2 -2
- package/docs/types/ContactServiceEndpoints.html +2 -2
- package/docs/types/EnrichedServicePoint.html +1 -1
- package/docs/types/Entity.html +2 -2
- package/docs/types/Language.html +1 -1
- package/docs/types/ServicePoint.html +2 -2
- package/docs/types/Translatable.html +2 -2
- package/docs/variables/languages.html +2 -2
- package/package.json +6 -6
- package/dist/client.d.ts +0 -302
- package/docs/assets/typedoc-github-style.css +0 -430
- /package/dist/{client.js → client/access-menu.js} +0 -0
|
@@ -1,430 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Define colors
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
:root {
|
|
6
|
-
/* GitHub "Light default" */
|
|
7
|
-
--light-color-background: #ffffff;
|
|
8
|
-
--light-color-background-secondary: #f6f8fa;
|
|
9
|
-
--light-color-background-navbar: #f6f8fa;
|
|
10
|
-
|
|
11
|
-
--light-color-accent: #eff2f5;
|
|
12
|
-
|
|
13
|
-
--light-color-text: #1f2328;
|
|
14
|
-
--light-color-text-aside: #59636e;
|
|
15
|
-
|
|
16
|
-
--light-color-link: #0969da;
|
|
17
|
-
|
|
18
|
-
--light-color-warning-border: #f7ebba;
|
|
19
|
-
--light-color-background-warning: #fff8c5;
|
|
20
|
-
|
|
21
|
-
--light-color-alert-note: #0969da;
|
|
22
|
-
--light-color-alert-tip: #1a7f37;
|
|
23
|
-
--light-color-alert-important: #8250df;
|
|
24
|
-
--light-color-alert-warning: #9a6700;
|
|
25
|
-
--light-color-alert-caution: #cf222e;
|
|
26
|
-
|
|
27
|
-
/* GitHub "Dark default" */
|
|
28
|
-
--dark-color-background: #0d1117;
|
|
29
|
-
--dark-color-background-secondary: #151b23;
|
|
30
|
-
--dark-color-background-navbar: #010409;
|
|
31
|
-
|
|
32
|
-
--dark-color-accent: #262c36;
|
|
33
|
-
|
|
34
|
-
--dark-color-text: #f0f6fc;
|
|
35
|
-
--dark-color-text-aside: #9198a1;
|
|
36
|
-
|
|
37
|
-
--dark-color-link: #4493f8;
|
|
38
|
-
|
|
39
|
-
--dark-color-warning-border: #3a2d12;
|
|
40
|
-
--dark-color-background-warning: #282215;
|
|
41
|
-
|
|
42
|
-
--dark-color-alert-note: #1f6feb;
|
|
43
|
-
--dark-color-alert-tip: #238636;
|
|
44
|
-
--dark-color-alert-important: #8957e5;
|
|
45
|
-
--dark-color-alert-warning: #9e6a03;
|
|
46
|
-
--dark-color-alert-caution: #da3633;
|
|
47
|
-
|
|
48
|
-
/* Link colors */
|
|
49
|
-
--color-warning-text: var(--color-text);
|
|
50
|
-
--color-icon-background: var(--color-background);
|
|
51
|
-
--color-focus-outline: var(--color-accent);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
@media (prefers-color-scheme: light) {
|
|
55
|
-
:root {
|
|
56
|
-
--color-background-navbar: var(--light-color-background-navbar);
|
|
57
|
-
--color-warning-border: var(--light-color-warning-border);
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
@media (prefers-color-scheme: dark) {
|
|
62
|
-
:root {
|
|
63
|
-
--color-background-navbar: var(--dark-color-background-navbar);
|
|
64
|
-
--color-warning-border: var(--dark-color-warning-border);
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
:root[data-theme='light'] {
|
|
69
|
-
--color-background-navbar: var(--light-color-background-navbar);
|
|
70
|
-
--color-warning-border: var(--light-color-warning-border);
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
:root[data-theme='dark'] {
|
|
74
|
-
--color-background-navbar: var(--dark-color-background-navbar);
|
|
75
|
-
--color-warning-border: var(--dark-color-warning-border);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
/*
|
|
79
|
-
* Define fonts
|
|
80
|
-
*/
|
|
81
|
-
|
|
82
|
-
:root {
|
|
83
|
-
--font-family-text: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
|
|
84
|
-
'Segoe UI Emoji';
|
|
85
|
-
--font-family-code: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
body {
|
|
89
|
-
font-family: var(--font-family-text);
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
/*
|
|
93
|
-
* Headlines
|
|
94
|
-
*/
|
|
95
|
-
|
|
96
|
-
h1,
|
|
97
|
-
h2,
|
|
98
|
-
h3,
|
|
99
|
-
h4,
|
|
100
|
-
h5,
|
|
101
|
-
h6 {
|
|
102
|
-
margin-top: 1em;
|
|
103
|
-
margin-bottom: 0.5em;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
/*
|
|
107
|
-
* Links
|
|
108
|
-
*/
|
|
109
|
-
|
|
110
|
-
.tsd-accordion-details a,
|
|
111
|
-
.tsd-accordion a,
|
|
112
|
-
.tsd-page-toolbar a.title {
|
|
113
|
-
color: var(--color-text);
|
|
114
|
-
text-decoration: none;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
.tsd-accordion-details a:hover,
|
|
118
|
-
.tsd-page-toolbar a.title:hover,
|
|
119
|
-
.tsd-accordion a:hover,
|
|
120
|
-
.tsd-anchor-icon {
|
|
121
|
-
color: var(--color-text-aside);
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.tsd-kind-class {
|
|
125
|
-
color: var(--color-link);
|
|
126
|
-
text-decoration: underline;
|
|
127
|
-
text-underline-offset: 3px;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.tsd-index-link,
|
|
131
|
-
.tsd-page-navigation a:hover {
|
|
132
|
-
text-decoration: none;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.tsd-index-link:hover {
|
|
136
|
-
text-decoration: underline;
|
|
137
|
-
text-underline-offset: 3px;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
a code,
|
|
141
|
-
.tsd-sources a,
|
|
142
|
-
.tsd-page-navigation a:hover {
|
|
143
|
-
color: var(--color-link);
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
a.external[target='_blank'] {
|
|
147
|
-
background-image: none;
|
|
148
|
-
padding-right: 0px;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
/*
|
|
152
|
-
* Tables
|
|
153
|
-
*/
|
|
154
|
-
|
|
155
|
-
table {
|
|
156
|
-
margin: 1em 0;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.tsd-typography th,
|
|
160
|
-
.tsd-typography td {
|
|
161
|
-
padding: 8px;
|
|
162
|
-
text-align: left;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.tsd-typography th {
|
|
166
|
-
background-color: var(--color-background);
|
|
167
|
-
color: var(--color-text);
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.tsd-typography tr:nth-child(2n) {
|
|
171
|
-
background-color: var(--color-background-code);
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
/*
|
|
175
|
-
* Horizontal line
|
|
176
|
-
*/
|
|
177
|
-
|
|
178
|
-
.tsd-typography hr {
|
|
179
|
-
color: var(--color-accent);
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
/*
|
|
183
|
-
* Buttons
|
|
184
|
-
*/
|
|
185
|
-
|
|
186
|
-
button {
|
|
187
|
-
background-color: var(--color-background-navbar);
|
|
188
|
-
color: var(--color-text);
|
|
189
|
-
border: 1px solid var(--color-accent);
|
|
190
|
-
border-radius: 6px;
|
|
191
|
-
padding: 8px 16px;
|
|
192
|
-
cursor: pointer;
|
|
193
|
-
transition: background-color 0.1s ease-in-out;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
button:hover {
|
|
197
|
-
background-color: var(--color-accent);
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
pre > button {
|
|
201
|
-
background-color: transparent;
|
|
202
|
-
transition: background-color 0.1s ease-in-out;
|
|
203
|
-
border: none;
|
|
204
|
-
opacity: 1;
|
|
205
|
-
top: 8px;
|
|
206
|
-
padding: 4px 8px;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
/*
|
|
210
|
-
* Checkbox
|
|
211
|
-
*/
|
|
212
|
-
|
|
213
|
-
.tsd-filter-input input[type='checkbox'],
|
|
214
|
-
.tsd-filter-input svg {
|
|
215
|
-
width: 1em;
|
|
216
|
-
height: 1em;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
.tsd-filter-input svg {
|
|
220
|
-
border-radius: 2px;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.tsd-checkbox-background {
|
|
224
|
-
fill: var(--color-background);
|
|
225
|
-
stroke: var(--color-accent);
|
|
226
|
-
stroke-width: 6px;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
input[type='checkbox']:checked ~ svg .tsd-checkbox-background {
|
|
230
|
-
fill: var(--color-accent);
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.tsd-checkbox-checkmark {
|
|
234
|
-
color: var(--color-text);
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
/*
|
|
238
|
-
* Select
|
|
239
|
-
*/
|
|
240
|
-
|
|
241
|
-
select {
|
|
242
|
-
background-color: var(--color-background);
|
|
243
|
-
border: 1px solid var(--color-accent);
|
|
244
|
-
border-radius: 6px;
|
|
245
|
-
padding: 8px;
|
|
246
|
-
font-family: inherit;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
/*
|
|
250
|
-
* Code blocks
|
|
251
|
-
*/
|
|
252
|
-
|
|
253
|
-
code,
|
|
254
|
-
pre {
|
|
255
|
-
border: none;
|
|
256
|
-
border-radius: 6px;
|
|
257
|
-
margin: 1em 0;
|
|
258
|
-
background-color: var(--color-background-secondary);
|
|
259
|
-
color: var(--color-text);
|
|
260
|
-
font-family: var(--font-family-code);
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
code.tsd-tag {
|
|
264
|
-
background-color: var(--color-accent);
|
|
265
|
-
border: unset;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
/*
|
|
269
|
-
* Warnings
|
|
270
|
-
*/
|
|
271
|
-
|
|
272
|
-
.warning {
|
|
273
|
-
border-style: solid;
|
|
274
|
-
border-width: 1px;
|
|
275
|
-
border-color: var(--color-warning-border);
|
|
276
|
-
border-radius: 6px;
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
/*
|
|
280
|
-
* Topbar
|
|
281
|
-
*/
|
|
282
|
-
|
|
283
|
-
.tsd-page-toolbar {
|
|
284
|
-
background-color: var(--color-background-navbar);
|
|
285
|
-
border-bottom-color: var(--color-accent);
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
#tsd-search.has-focus {
|
|
289
|
-
background-color: var(--color-background-navbar);
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
#tsd-search .results,
|
|
293
|
-
#tsd-search .results li,
|
|
294
|
-
#tsd-search .results li:nth-child(2n) {
|
|
295
|
-
background-color: var(--color-background-navbar);
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
#tsd-search .results li {
|
|
299
|
-
margin-bottom: 0px;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
#tsd-search .results li a {
|
|
303
|
-
color: var(--color-text);
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
#tsd-search .results li:hover:not(.no-results) {
|
|
307
|
-
background-color: var(--color-accent);
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
#tsd-search .results {
|
|
311
|
-
border-style: solid;
|
|
312
|
-
border-width: 1px;
|
|
313
|
-
border-color: var(--color-accent);
|
|
314
|
-
border-radius: 0px 0px 6px 6px;
|
|
315
|
-
overflow: hidden;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
#tsd-search .results .no-results {
|
|
319
|
-
padding: calc(4px + 0.25rem);
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
/*
|
|
323
|
-
* Baseboard
|
|
324
|
-
*/
|
|
325
|
-
|
|
326
|
-
footer {
|
|
327
|
-
border-top-color: var(--color-accent);
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
/*
|
|
331
|
-
* Side navigations
|
|
332
|
-
*/
|
|
333
|
-
|
|
334
|
-
.site-menu {
|
|
335
|
-
padding: 1rem 0;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
.tsd-navigation a {
|
|
339
|
-
color: var(--color-text);
|
|
340
|
-
border-radius: 6px;
|
|
341
|
-
padding: 6px;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
.tsd-navigation a,
|
|
345
|
-
.tsd-navigation a:hover {
|
|
346
|
-
text-decoration: none;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
.tsd-navigation a:hover:not(.current) {
|
|
350
|
-
background-color: color-mix(in srgb, var(--color-text-aside), #0000 88%);
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
.tsd-navigation a.current {
|
|
354
|
-
background-color: color-mix(in srgb, var(--color-text-aside), #0000 92%);
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
/*
|
|
358
|
-
* Type definition groups
|
|
359
|
-
*/
|
|
360
|
-
|
|
361
|
-
.tsd-index-panel,
|
|
362
|
-
.tsd-member-group {
|
|
363
|
-
background-color: var(--color-background);
|
|
364
|
-
padding: 16px;
|
|
365
|
-
border: 1px var(--color-accent) solid;
|
|
366
|
-
border-radius: 6px;
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
.tsd-panel > h1,
|
|
370
|
-
.tsd-panel > h2,
|
|
371
|
-
.tsd-panel > h3 {
|
|
372
|
-
margin-top: 0px;
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
.tsd-panel-group.tsd-index-group details {
|
|
376
|
-
margin: 0px;
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
.tsd-member-group .tsd-member:last-child {
|
|
380
|
-
margin-bottom: 0px;
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
.tsd-signature {
|
|
384
|
-
border: 1px solid var(--color-accent);
|
|
385
|
-
border-radius: 6px;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
.tsd-signatures .tsd-signature {
|
|
389
|
-
border-color: var(--color-accent);
|
|
390
|
-
border-radius: 0px;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
.tsd-description .tsd-signatures .tsd-signature {
|
|
394
|
-
border-radius: 6px;
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
.tsd-full-hierarchy:not(:last-child) {
|
|
398
|
-
border-bottom: var(--color-accent);
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
/*
|
|
402
|
-
* Footer
|
|
403
|
-
*/
|
|
404
|
-
|
|
405
|
-
footer p {
|
|
406
|
-
font-size: 1rem;
|
|
407
|
-
text-align: center;
|
|
408
|
-
color: var(--color-text-aside);
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
/*
|
|
412
|
-
* Fix collapsed margin
|
|
413
|
-
*/
|
|
414
|
-
|
|
415
|
-
.tsd-accordion-summary > h3 {
|
|
416
|
-
margin-top: 0px;
|
|
417
|
-
margin-bottom: 0px;
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
.tsd-page-navigation:not([open]) > .tsd-accordion-summary {
|
|
421
|
-
margin-bottom: 0px;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
/*
|
|
425
|
-
* Fix collapse arrow position
|
|
426
|
-
*/
|
|
427
|
-
|
|
428
|
-
.tsd-accordion-summary svg {
|
|
429
|
-
transition: transform 0.1s ease-in-out;
|
|
430
|
-
}
|
|
File without changes
|