@ndwnu/design-system 0.0.1-beta.1 → 1.0.1
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 +3 -136
- package/assets/icons/icons.json +830 -46
- package/assets/images/ndw-logo-short.svg +1 -1
- package/assets/images/nwb-logo-short.svg +10 -0
- package/assets/images/nwb-logo.svg +3 -10
- package/components/collapsible/collapsible.animation.d.ts +1 -0
- package/components/collapsible/collapsible.component.d.ts +1 -0
- package/components/dropdown/dropdown-trigger.directive.d.ts +23 -0
- package/components/dropdown/dropdown.component.d.ts +6 -17
- package/components/dropdown/index.d.ts +1 -0
- package/components/form-field/checkbox/checkbox.component.d.ts +23 -0
- package/components/form-field/checkbox/index.d.ts +1 -0
- package/components/form-field/checkbox-group/checkbox-group.component.d.ts +5 -0
- package/components/form-field/checkbox-group/index.d.ts +1 -0
- package/components/form-field/form-field.component.d.ts +12 -8
- package/components/form-field/form-field.model.d.ts +1 -0
- package/components/form-field/index.d.ts +7 -0
- package/components/form-field/radio-button/index.d.ts +1 -0
- package/components/form-field/radio-button/radio-button.component.d.ts +22 -0
- package/components/form-field/radio-group/index.d.ts +1 -0
- package/components/form-field/radio-group/radio-group.component.d.ts +11 -0
- package/components/icon/icon.component.d.ts +2 -5
- package/components/index.d.ts +4 -4
- package/components/main-navigation/main-navigation.component.d.ts +18 -9
- package/components/main-navigation-menu/main-navigation-menu.component.d.ts +2 -4
- package/components/modal/index.d.ts +1 -0
- package/components/modal/modal-trigger.directive.d.ts +20 -0
- package/components/pill/index.d.ts +2 -0
- package/components/pill/pill.component.d.ts +8 -0
- package/components/pill/pill.model.d.ts +8 -0
- package/core/styles/ndw-styles.scss +48 -116
- package/core/styles/nwb-styles.scss +48 -116
- package/esm2022/components/accordion/accordion.component.mjs +4 -4
- package/esm2022/components/accordion/accordion.service.mjs +5 -5
- package/esm2022/components/badge/badge.component.mjs +5 -5
- package/esm2022/components/button/button.directive.mjs +3 -3
- package/esm2022/components/card/card.component.mjs +5 -5
- package/esm2022/components/collapsible/collapsible.animation.mjs +36 -0
- package/esm2022/components/collapsible/collapsible.component.mjs +9 -11
- package/esm2022/components/dropdown/dropdown-trigger.directive.mjs +99 -0
- package/esm2022/components/dropdown/dropdown.component.mjs +12 -67
- package/esm2022/components/dropdown/index.mjs +2 -1
- package/esm2022/components/form-field/checkbox/checkbox.component.mjs +91 -0
- package/esm2022/components/form-field/checkbox/index.mjs +2 -0
- package/esm2022/components/form-field/checkbox-group/checkbox-group.component.mjs +11 -0
- package/esm2022/components/form-field/checkbox-group/index.mjs +2 -0
- package/esm2022/components/form-field/error/error.component.mjs +12 -0
- package/esm2022/components/form-field/error/index.mjs +2 -0
- package/esm2022/components/form-field/form-field.component.mjs +69 -46
- package/esm2022/components/form-field/form-field.model.mjs +2 -1
- package/esm2022/components/form-field/index.mjs +8 -1
- package/esm2022/components/form-field/info/index.mjs +2 -0
- package/esm2022/components/{info → form-field/info}/info.component.mjs +4 -4
- package/esm2022/components/form-field/input/index.mjs +3 -0
- package/esm2022/components/form-field/input/input.directive.mjs +36 -0
- package/esm2022/components/form-field/input/input.model.mjs +13 -0
- package/esm2022/components/form-field/radio-button/index.mjs +2 -0
- package/esm2022/components/form-field/radio-button/radio-button.component.mjs +81 -0
- package/esm2022/components/form-field/radio-group/index.mjs +2 -0
- package/esm2022/components/form-field/radio-group/radio-group.component.mjs +34 -0
- package/esm2022/components/icon/icon.component.mjs +14 -22
- package/esm2022/components/icon/icon.service.mjs +5 -5
- package/esm2022/components/index.mjs +5 -5
- package/esm2022/components/main-navigation/main-navigation.component.mjs +52 -17
- package/esm2022/components/main-navigation-menu/main-navigation-menu.component.mjs +7 -15
- package/esm2022/components/modal/index.mjs +2 -0
- package/esm2022/components/modal/modal-trigger.directive.mjs +77 -0
- package/esm2022/components/pill/index.mjs +3 -0
- package/esm2022/components/pill/pill.component.mjs +20 -0
- package/esm2022/components/pill/pill.model.mjs +2 -0
- package/esm2022/components/tab/tab.component.mjs +5 -5
- package/esm2022/components/tab-group/tab-group.component.mjs +5 -5
- package/esm2022/components/tooltip/tooltip.component.mjs +5 -5
- package/esm2022/components/tooltip/tooltip.directive.mjs +7 -6
- package/fesm2022/ndwnu-design-system.mjs +647 -242
- package/fesm2022/ndwnu-design-system.mjs.map +1 -1
- package/package.json +5 -4
- package/esm2022/components/error/error.component.mjs +0 -14
- package/esm2022/components/error/index.mjs +0 -2
- package/esm2022/components/info/index.mjs +0 -2
- package/esm2022/components/input/index.mjs +0 -3
- package/esm2022/components/input/input.directive.mjs +0 -36
- package/esm2022/components/input/input.model.mjs +0 -13
- /package/components/{error → form-field/error}/error.component.d.ts +0 -0
- /package/components/{error → form-field/error}/index.d.ts +0 -0
- /package/components/{info → form-field/info}/index.d.ts +0 -0
- /package/components/{info → form-field/info}/info.component.d.ts +0 -0
- /package/components/{input → form-field/input}/index.d.ts +0 -0
- /package/components/{input → form-field/input}/input.directive.d.ts +0 -0
- /package/components/{input → form-field/input}/input.model.d.ts +0 -0
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
--_info-200: var(--_info), 91%;
|
|
43
43
|
--_info-100: var(--_info), 95%;
|
|
44
44
|
--_positive: 133, 92%;
|
|
45
|
+
--_positive-600: var(--_positive), 24%;
|
|
45
46
|
--_positive-500: var(--_positive), 33%;
|
|
46
47
|
--_positive-100: 117, 56%, 92%;
|
|
47
48
|
--_negative: 0, 100%;
|
|
@@ -51,11 +52,13 @@
|
|
|
51
52
|
--ndw-color-info-500: hsl(var(--_info-500));
|
|
52
53
|
--ndw-color-info-200: hsl(var(--_info-200));
|
|
53
54
|
--ndw-color-info-100: hsl(var(--_info-100));
|
|
55
|
+
--ndw-color-positive-600: hsl(var(--_positive-600));
|
|
54
56
|
--ndw-color-positive-500: hsl(var(--_positive-500));
|
|
55
57
|
--ndw-color-positive-100: hsl(var(--_positive-100));
|
|
56
58
|
--ndw-color-negative-700: hsl(var(--_negative-700));
|
|
57
59
|
--ndw-color-negative-500: hsl(var(--_negative-500));
|
|
58
60
|
--ndw-color-negative-100: hsl(var(--_negative-100));
|
|
61
|
+
--ndw-color-info-alpha-40: hsla(var(--_info-500), var(--ndw-alpha-40));
|
|
59
62
|
--ndw-color-notification: hsl(19, 100%, 35%);
|
|
60
63
|
--_data-a-500: 133, 100%, 21%;
|
|
61
64
|
--_data-a-100: 101, 61%, 81%;
|
|
@@ -64,9 +67,11 @@
|
|
|
64
67
|
--_data-c-500: 209, 97%, 38%;
|
|
65
68
|
--_data-c-100: 194, 95%, 84%;
|
|
66
69
|
--_data-d-500: 292, 95%, 33%;
|
|
67
|
-
--_data-d-100: 292,
|
|
70
|
+
--_data-d-100: 292, 100%, 87%;
|
|
68
71
|
--_data-e-500: 51, 95%, 23%;
|
|
69
|
-
--_data-e-100: 54,
|
|
72
|
+
--_data-e-100: 54, 89%, 79%;
|
|
73
|
+
--_data-f-500: 0, 97%, 35%;
|
|
74
|
+
--_data-f-100: 0, 100%, 94%;
|
|
70
75
|
--ndw-color-data-a-500: hsl(var(--_data-a-500));
|
|
71
76
|
--ndw-color-data-a-100: hsl(var(--_data-a-100));
|
|
72
77
|
--ndw-color-data-b-500: hsl(var(--_data-b-500));
|
|
@@ -77,8 +82,10 @@
|
|
|
77
82
|
--ndw-color-data-d-100: hsl(var(--_data-d-100));
|
|
78
83
|
--ndw-color-data-e-500: hsl(var(--_data-e-500));
|
|
79
84
|
--ndw-color-data-e-100: hsl(var(--_data-e-100));
|
|
85
|
+
--ndw-color-data-f-500: hsl(var(--_data-f-500));
|
|
86
|
+
--ndw-color-data-f-100: hsl(var(--_data-f-100));
|
|
80
87
|
/* Alpha */
|
|
81
|
-
--ndw-alpha-40: 0.
|
|
88
|
+
--ndw-alpha-40: 0.4;
|
|
82
89
|
--ndw-alpha-15: 0.15;
|
|
83
90
|
--ndw-alpha-7: 0.07;
|
|
84
91
|
/* Spacing */
|
|
@@ -106,6 +113,7 @@
|
|
|
106
113
|
--ndw-elevation-info: 0 0 0.5rem 0 hsla(var(--_info-500), 0.25);
|
|
107
114
|
--ndw-elevation-content: 0 0.125rem 0.125rem 0 hsla(var(--_grey-600), 0.05);
|
|
108
115
|
--ndw-elevation-dropdown: 0 0.25rem 1rem hsla(var(--_grey-600), 0.125);
|
|
116
|
+
--ndw-backdrop-color: hsla(var(--_grey-600), var(--ndw-alpha-40));
|
|
109
117
|
/* Animation */
|
|
110
118
|
--ndw-animation-speed-fast: 200ms;
|
|
111
119
|
--ndw-animation-speed-default: 300ms;
|
|
@@ -233,13 +241,14 @@
|
|
|
233
241
|
gap: var(--ndw-spacing-2xs);
|
|
234
242
|
height: var(--ndw-spacing-xl);
|
|
235
243
|
padding: var(--ndw-spacing-2xs) var(--ndw-spacing-xs);
|
|
244
|
+
width: fit-content;
|
|
236
245
|
cursor: pointer;
|
|
237
246
|
background-color: var(--ndw-background-primary);
|
|
238
247
|
border: var(--ndw-border-size-sm) solid var(--ndw-background-primary);
|
|
239
248
|
border-radius: var(--ndw-border-radius-sm);
|
|
240
249
|
transition: color 200ms ease-out, background-color 200ms ease-out, border-color 200ms ease-out;
|
|
241
250
|
color: var(--ndw-foreground-primary);
|
|
242
|
-
font-family:
|
|
251
|
+
font-family: var(--ndw-font-family);
|
|
243
252
|
font-size: var(--ndw-font-size-sm);
|
|
244
253
|
font-weight: var(--ndw-font-weight-regular);
|
|
245
254
|
text-align: start;
|
|
@@ -296,72 +305,53 @@
|
|
|
296
305
|
user-select: none;
|
|
297
306
|
}
|
|
298
307
|
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
cursor: pointer;
|
|
310
|
-
display: flex;
|
|
311
|
-
margin-top: var(--ndw-spacing-2xs);
|
|
312
|
-
width: fit-content;
|
|
313
|
-
}
|
|
314
|
-
input[type=checkbox][ndwInput] ~ label::before {
|
|
308
|
+
@keyframes show {
|
|
309
|
+
from {
|
|
310
|
+
opacity: 0;
|
|
311
|
+
}
|
|
312
|
+
to {
|
|
313
|
+
opacity: 1;
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
.cdk-overlay-pane.ndw-dropdown-panel {
|
|
317
|
+
animation: show var(--ndw-animation-speed-default) ease-in;
|
|
315
318
|
background-color: var(--ndw-color-white);
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
border: var(--ndw-border-size-sm) solid var(--ndw-color-grey-200);
|
|
321
|
-
margin: calc(var(--ndw-spacing-2xs) * -1) var(--ndw-spacing-xs) 0 auto;
|
|
322
|
-
padding: var(--ndw-spacing-3xs);
|
|
323
|
-
transition: background-color 150ms ease-in-out, border-color 150ms ease-in-out;
|
|
324
|
-
}
|
|
325
|
-
input[type=checkbox][ndwInput]:checked ~ label::before {
|
|
326
|
-
background-color: var(--ndw-color-primary-500);
|
|
327
|
-
border-color: var(--ndw-color-primary-500);
|
|
319
|
+
border-radius: var(--ndw-border-radius-md);
|
|
320
|
+
box-shadow: var(--ndw-elevation-dropdown);
|
|
321
|
+
display: grid;
|
|
322
|
+
padding: var(--ndw-spacing-sm);
|
|
328
323
|
}
|
|
329
|
-
|
|
324
|
+
|
|
325
|
+
[ndwButton][filter] {
|
|
330
326
|
background-color: var(--ndw-color-white);
|
|
331
|
-
border-color: var(--ndw-color-
|
|
327
|
+
border-color: var(--ndw-color-grey-200);
|
|
328
|
+
color: var(--ndw-color-grey-600);
|
|
329
|
+
height: var(--ndw-spacing-2xl);
|
|
332
330
|
}
|
|
333
|
-
|
|
334
|
-
|
|
331
|
+
[ndwButton][filter] ndw-icon {
|
|
332
|
+
color: var(--ndw-color-primary);
|
|
335
333
|
}
|
|
336
|
-
|
|
337
|
-
border-color: var(--ndw-color-
|
|
334
|
+
[ndwButton][filter]:hover {
|
|
335
|
+
border-color: var(--ndw-color-primary);
|
|
338
336
|
}
|
|
339
|
-
|
|
340
|
-
background-color: var(--ndw-color-
|
|
337
|
+
[ndwButton][filter]:active {
|
|
338
|
+
background-color: var(--ndw-color-primary-100);
|
|
341
339
|
}
|
|
342
|
-
|
|
340
|
+
[ndwButton][filter][disabled] {
|
|
341
|
+
background-color: var(--ndw-color-grey-100);
|
|
343
342
|
color: var(--ndw-color-grey-400);
|
|
344
343
|
pointer-events: none;
|
|
345
344
|
user-select: none;
|
|
346
345
|
}
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
border-color: var(--ndw-color-grey-200);
|
|
350
|
-
}
|
|
351
|
-
input[type=checkbox][ndwInput][disabled]:checked ~ label::before {
|
|
352
|
-
background-color: var(--ndw-color-grey-200);
|
|
353
|
-
}
|
|
354
|
-
input[type=checkbox][ndwInput] ~ label::before {
|
|
355
|
-
border-radius: var(--ndw-border-radius-sm);
|
|
356
|
-
}
|
|
357
|
-
input[type=checkbox][ndwInput]:checked ~ label::before {
|
|
358
|
-
content: url('data:image/svg+xml, %3Csvg viewBox="0 0 15 12" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M4.707 8.7325L1.414 5.4395L0 6.8535L4.707 11.5605L14.414 1.8535L13 0.439499L4.707 8.7325Z" fill="white"/%3E%3C/svg%3E');
|
|
346
|
+
[ndwButton][filter][disabled] ndw-icon {
|
|
347
|
+
color: var(--ndw-color-grey-400);
|
|
359
348
|
}
|
|
360
349
|
|
|
361
350
|
[ndwInput] {
|
|
362
351
|
background-color: var(--ndw-color-white);
|
|
363
352
|
border: var(--ndw-border-size-sm) solid var(--ndw-color-grey-200);
|
|
364
353
|
border-radius: var(--ndw-border-radius-sm);
|
|
354
|
+
box-sizing: border-box;
|
|
365
355
|
color: var(--ndw-color-grey-600);
|
|
366
356
|
font-size: var(--ndw-font-size-sm);
|
|
367
357
|
height: var(--ndw-spacing-2xl);
|
|
@@ -474,13 +464,17 @@ a[ndwLink][disabled] {
|
|
|
474
464
|
user-select: none;
|
|
475
465
|
}
|
|
476
466
|
|
|
467
|
+
.ndw-overlay-backdrop {
|
|
468
|
+
background-color: var(--ndw-backdrop-color);
|
|
469
|
+
}
|
|
470
|
+
|
|
477
471
|
[ndwButton][menu] {
|
|
478
472
|
background-color: transparent;
|
|
479
473
|
border-color: transparent;
|
|
480
474
|
border-radius: 0;
|
|
481
475
|
color: var(--ndw-color-grey-300);
|
|
482
476
|
gap: var(--ndw-spacing-xs);
|
|
483
|
-
height: 2.
|
|
477
|
+
height: 2.625rem;
|
|
484
478
|
padding-inline: 0;
|
|
485
479
|
position: relative;
|
|
486
480
|
width: 100%;
|
|
@@ -496,68 +490,6 @@ a[ndwLink][disabled] {
|
|
|
496
490
|
color: var(--ndw-color-white);
|
|
497
491
|
}
|
|
498
492
|
|
|
499
|
-
input[type=radio][ndwInput] {
|
|
500
|
-
display: none;
|
|
501
|
-
}
|
|
502
|
-
input[type=radio][ndwInput] ~ label {
|
|
503
|
-
font-family: var(--ndw-font-family);
|
|
504
|
-
font-size: 0.8125rem;
|
|
505
|
-
font-weight: var(--ndw-font-weight-regular);
|
|
506
|
-
line-height: 150%;
|
|
507
|
-
align-items: center;
|
|
508
|
-
color: var(--ndw-color-grey-600);
|
|
509
|
-
cursor: pointer;
|
|
510
|
-
display: flex;
|
|
511
|
-
margin-top: var(--ndw-spacing-2xs);
|
|
512
|
-
width: fit-content;
|
|
513
|
-
}
|
|
514
|
-
input[type=radio][ndwInput] ~ label::before {
|
|
515
|
-
background-color: var(--ndw-color-white);
|
|
516
|
-
box-sizing: border-box;
|
|
517
|
-
content: "";
|
|
518
|
-
width: 1.25rem;
|
|
519
|
-
height: 1.25rem;
|
|
520
|
-
border: var(--ndw-border-size-sm) solid var(--ndw-color-grey-200);
|
|
521
|
-
margin: calc(var(--ndw-spacing-2xs) * -1) var(--ndw-spacing-xs) 0 auto;
|
|
522
|
-
padding: var(--ndw-spacing-3xs);
|
|
523
|
-
transition: background-color 150ms ease-in-out, border-color 150ms ease-in-out;
|
|
524
|
-
}
|
|
525
|
-
input[type=radio][ndwInput]:checked ~ label::before {
|
|
526
|
-
background-color: var(--ndw-color-primary-500);
|
|
527
|
-
border-color: var(--ndw-color-primary-500);
|
|
528
|
-
}
|
|
529
|
-
input[type=radio][ndwInput]:not(:checked) ~ label:hover::before {
|
|
530
|
-
background-color: var(--ndw-color-white);
|
|
531
|
-
border-color: var(--ndw-color-primary-500);
|
|
532
|
-
}
|
|
533
|
-
input[type=radio][ndwInput]:not(:checked) ~ label:active::before, input[type=radio][ndwInput]:not(:checked) ~ label:focus::before, input[type=radio][ndwInput]:not(:checked) ~ label:focus-visible::before {
|
|
534
|
-
border-color: var(--ndw-color-info-500);
|
|
535
|
-
}
|
|
536
|
-
input[type=radio][ndwInput][error] ~ label::before {
|
|
537
|
-
border-color: var(--ndw-color-negative-500);
|
|
538
|
-
}
|
|
539
|
-
input[type=radio][ndwInput][error]:not(:checked) ~ label::before {
|
|
540
|
-
background-color: var(--ndw-color-negative-100);
|
|
541
|
-
}
|
|
542
|
-
input[type=radio][ndwInput][disabled] ~ label {
|
|
543
|
-
color: var(--ndw-color-grey-400);
|
|
544
|
-
pointer-events: none;
|
|
545
|
-
user-select: none;
|
|
546
|
-
}
|
|
547
|
-
input[type=radio][ndwInput][disabled] ~ label::before {
|
|
548
|
-
background-color: var(--ndw-color-grey-100);
|
|
549
|
-
border-color: var(--ndw-color-grey-200);
|
|
550
|
-
}
|
|
551
|
-
input[type=radio][ndwInput][disabled]:checked ~ label::before {
|
|
552
|
-
background-color: var(--ndw-color-grey-200);
|
|
553
|
-
}
|
|
554
|
-
input[type=radio][ndwInput] ~ label::before {
|
|
555
|
-
border-radius: 50%;
|
|
556
|
-
}
|
|
557
|
-
input[type=radio][ndwInput]:checked ~ label::before {
|
|
558
|
-
content: url('data:image/svg+xml, %3Csvg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle r="6" cx="10" cy="10" fill="white"/%3E%3C/svg%3E');
|
|
559
|
-
}
|
|
560
|
-
|
|
561
493
|
.cdk-overlay-pane.tooltip-bottom ndw-tooltip::before {
|
|
562
494
|
bottom: auto;
|
|
563
495
|
top: calc(var(--ndw-spacing-2xs) * -1);
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
--_info-200: var(--_info), 91%;
|
|
43
43
|
--_info-100: var(--_info), 95%;
|
|
44
44
|
--_positive: 133, 92%;
|
|
45
|
+
--_positive-600: var(--_positive), 24%;
|
|
45
46
|
--_positive-500: var(--_positive), 33%;
|
|
46
47
|
--_positive-100: 117, 56%, 92%;
|
|
47
48
|
--_negative: 0, 100%;
|
|
@@ -51,11 +52,13 @@
|
|
|
51
52
|
--ndw-color-info-500: hsl(var(--_info-500));
|
|
52
53
|
--ndw-color-info-200: hsl(var(--_info-200));
|
|
53
54
|
--ndw-color-info-100: hsl(var(--_info-100));
|
|
55
|
+
--ndw-color-positive-600: hsl(var(--_positive-600));
|
|
54
56
|
--ndw-color-positive-500: hsl(var(--_positive-500));
|
|
55
57
|
--ndw-color-positive-100: hsl(var(--_positive-100));
|
|
56
58
|
--ndw-color-negative-700: hsl(var(--_negative-700));
|
|
57
59
|
--ndw-color-negative-500: hsl(var(--_negative-500));
|
|
58
60
|
--ndw-color-negative-100: hsl(var(--_negative-100));
|
|
61
|
+
--ndw-color-info-alpha-40: hsla(var(--_info-500), var(--ndw-alpha-40));
|
|
59
62
|
--ndw-color-notification: hsl(19, 100%, 35%);
|
|
60
63
|
--_data-a-500: 133, 100%, 21%;
|
|
61
64
|
--_data-a-100: 101, 61%, 81%;
|
|
@@ -64,9 +67,11 @@
|
|
|
64
67
|
--_data-c-500: 209, 97%, 38%;
|
|
65
68
|
--_data-c-100: 194, 95%, 84%;
|
|
66
69
|
--_data-d-500: 292, 95%, 33%;
|
|
67
|
-
--_data-d-100: 292,
|
|
70
|
+
--_data-d-100: 292, 100%, 87%;
|
|
68
71
|
--_data-e-500: 51, 95%, 23%;
|
|
69
|
-
--_data-e-100: 54,
|
|
72
|
+
--_data-e-100: 54, 89%, 79%;
|
|
73
|
+
--_data-f-500: 0, 97%, 35%;
|
|
74
|
+
--_data-f-100: 0, 100%, 94%;
|
|
70
75
|
--ndw-color-data-a-500: hsl(var(--_data-a-500));
|
|
71
76
|
--ndw-color-data-a-100: hsl(var(--_data-a-100));
|
|
72
77
|
--ndw-color-data-b-500: hsl(var(--_data-b-500));
|
|
@@ -77,8 +82,10 @@
|
|
|
77
82
|
--ndw-color-data-d-100: hsl(var(--_data-d-100));
|
|
78
83
|
--ndw-color-data-e-500: hsl(var(--_data-e-500));
|
|
79
84
|
--ndw-color-data-e-100: hsl(var(--_data-e-100));
|
|
85
|
+
--ndw-color-data-f-500: hsl(var(--_data-f-500));
|
|
86
|
+
--ndw-color-data-f-100: hsl(var(--_data-f-100));
|
|
80
87
|
/* Alpha */
|
|
81
|
-
--ndw-alpha-40: 0.
|
|
88
|
+
--ndw-alpha-40: 0.4;
|
|
82
89
|
--ndw-alpha-15: 0.15;
|
|
83
90
|
--ndw-alpha-7: 0.07;
|
|
84
91
|
/* Spacing */
|
|
@@ -106,6 +113,7 @@
|
|
|
106
113
|
--ndw-elevation-info: 0 0 0.5rem 0 hsla(var(--_info-500), 0.25);
|
|
107
114
|
--ndw-elevation-content: 0 0.125rem 0.125rem 0 hsla(var(--_grey-600), 0.05);
|
|
108
115
|
--ndw-elevation-dropdown: 0 0.25rem 1rem hsla(var(--_grey-600), 0.125);
|
|
116
|
+
--ndw-backdrop-color: hsla(var(--_grey-600), var(--ndw-alpha-40));
|
|
109
117
|
/* Animation */
|
|
110
118
|
--ndw-animation-speed-fast: 200ms;
|
|
111
119
|
--ndw-animation-speed-default: 300ms;
|
|
@@ -233,13 +241,14 @@
|
|
|
233
241
|
gap: var(--ndw-spacing-2xs);
|
|
234
242
|
height: var(--ndw-spacing-xl);
|
|
235
243
|
padding: var(--ndw-spacing-2xs) var(--ndw-spacing-xs);
|
|
244
|
+
width: fit-content;
|
|
236
245
|
cursor: pointer;
|
|
237
246
|
background-color: var(--ndw-background-primary);
|
|
238
247
|
border: var(--ndw-border-size-sm) solid var(--ndw-background-primary);
|
|
239
248
|
border-radius: var(--ndw-border-radius-sm);
|
|
240
249
|
transition: color 200ms ease-out, background-color 200ms ease-out, border-color 200ms ease-out;
|
|
241
250
|
color: var(--ndw-foreground-primary);
|
|
242
|
-
font-family:
|
|
251
|
+
font-family: var(--ndw-font-family);
|
|
243
252
|
font-size: var(--ndw-font-size-sm);
|
|
244
253
|
font-weight: var(--ndw-font-weight-regular);
|
|
245
254
|
text-align: start;
|
|
@@ -296,72 +305,53 @@
|
|
|
296
305
|
user-select: none;
|
|
297
306
|
}
|
|
298
307
|
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
cursor: pointer;
|
|
310
|
-
display: flex;
|
|
311
|
-
margin-top: var(--ndw-spacing-2xs);
|
|
312
|
-
width: fit-content;
|
|
313
|
-
}
|
|
314
|
-
input[type=checkbox][ndwInput] ~ label::before {
|
|
308
|
+
@keyframes show {
|
|
309
|
+
from {
|
|
310
|
+
opacity: 0;
|
|
311
|
+
}
|
|
312
|
+
to {
|
|
313
|
+
opacity: 1;
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
.cdk-overlay-pane.ndw-dropdown-panel {
|
|
317
|
+
animation: show var(--ndw-animation-speed-default) ease-in;
|
|
315
318
|
background-color: var(--ndw-color-white);
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
border: var(--ndw-border-size-sm) solid var(--ndw-color-grey-200);
|
|
321
|
-
margin: calc(var(--ndw-spacing-2xs) * -1) var(--ndw-spacing-xs) 0 auto;
|
|
322
|
-
padding: var(--ndw-spacing-3xs);
|
|
323
|
-
transition: background-color 150ms ease-in-out, border-color 150ms ease-in-out;
|
|
324
|
-
}
|
|
325
|
-
input[type=checkbox][ndwInput]:checked ~ label::before {
|
|
326
|
-
background-color: var(--ndw-color-primary-500);
|
|
327
|
-
border-color: var(--ndw-color-primary-500);
|
|
319
|
+
border-radius: var(--ndw-border-radius-md);
|
|
320
|
+
box-shadow: var(--ndw-elevation-dropdown);
|
|
321
|
+
display: grid;
|
|
322
|
+
padding: var(--ndw-spacing-sm);
|
|
328
323
|
}
|
|
329
|
-
|
|
324
|
+
|
|
325
|
+
[ndwButton][filter] {
|
|
330
326
|
background-color: var(--ndw-color-white);
|
|
331
|
-
border-color: var(--ndw-color-
|
|
327
|
+
border-color: var(--ndw-color-grey-200);
|
|
328
|
+
color: var(--ndw-color-grey-600);
|
|
329
|
+
height: var(--ndw-spacing-2xl);
|
|
332
330
|
}
|
|
333
|
-
|
|
334
|
-
|
|
331
|
+
[ndwButton][filter] ndw-icon {
|
|
332
|
+
color: var(--ndw-color-primary);
|
|
335
333
|
}
|
|
336
|
-
|
|
337
|
-
border-color: var(--ndw-color-
|
|
334
|
+
[ndwButton][filter]:hover {
|
|
335
|
+
border-color: var(--ndw-color-primary);
|
|
338
336
|
}
|
|
339
|
-
|
|
340
|
-
background-color: var(--ndw-color-
|
|
337
|
+
[ndwButton][filter]:active {
|
|
338
|
+
background-color: var(--ndw-color-primary-100);
|
|
341
339
|
}
|
|
342
|
-
|
|
340
|
+
[ndwButton][filter][disabled] {
|
|
341
|
+
background-color: var(--ndw-color-grey-100);
|
|
343
342
|
color: var(--ndw-color-grey-400);
|
|
344
343
|
pointer-events: none;
|
|
345
344
|
user-select: none;
|
|
346
345
|
}
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
border-color: var(--ndw-color-grey-200);
|
|
350
|
-
}
|
|
351
|
-
input[type=checkbox][ndwInput][disabled]:checked ~ label::before {
|
|
352
|
-
background-color: var(--ndw-color-grey-200);
|
|
353
|
-
}
|
|
354
|
-
input[type=checkbox][ndwInput] ~ label::before {
|
|
355
|
-
border-radius: var(--ndw-border-radius-sm);
|
|
356
|
-
}
|
|
357
|
-
input[type=checkbox][ndwInput]:checked ~ label::before {
|
|
358
|
-
content: url('data:image/svg+xml, %3Csvg viewBox="0 0 15 12" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M4.707 8.7325L1.414 5.4395L0 6.8535L4.707 11.5605L14.414 1.8535L13 0.439499L4.707 8.7325Z" fill="white"/%3E%3C/svg%3E');
|
|
346
|
+
[ndwButton][filter][disabled] ndw-icon {
|
|
347
|
+
color: var(--ndw-color-grey-400);
|
|
359
348
|
}
|
|
360
349
|
|
|
361
350
|
[ndwInput] {
|
|
362
351
|
background-color: var(--ndw-color-white);
|
|
363
352
|
border: var(--ndw-border-size-sm) solid var(--ndw-color-grey-200);
|
|
364
353
|
border-radius: var(--ndw-border-radius-sm);
|
|
354
|
+
box-sizing: border-box;
|
|
365
355
|
color: var(--ndw-color-grey-600);
|
|
366
356
|
font-size: var(--ndw-font-size-sm);
|
|
367
357
|
height: var(--ndw-spacing-2xl);
|
|
@@ -474,13 +464,17 @@ a[ndwLink][disabled] {
|
|
|
474
464
|
user-select: none;
|
|
475
465
|
}
|
|
476
466
|
|
|
467
|
+
.ndw-overlay-backdrop {
|
|
468
|
+
background-color: var(--ndw-backdrop-color);
|
|
469
|
+
}
|
|
470
|
+
|
|
477
471
|
[ndwButton][menu] {
|
|
478
472
|
background-color: transparent;
|
|
479
473
|
border-color: transparent;
|
|
480
474
|
border-radius: 0;
|
|
481
475
|
color: var(--ndw-color-grey-300);
|
|
482
476
|
gap: var(--ndw-spacing-xs);
|
|
483
|
-
height: 2.
|
|
477
|
+
height: 2.625rem;
|
|
484
478
|
padding-inline: 0;
|
|
485
479
|
position: relative;
|
|
486
480
|
width: 100%;
|
|
@@ -496,68 +490,6 @@ a[ndwLink][disabled] {
|
|
|
496
490
|
color: var(--ndw-color-white);
|
|
497
491
|
}
|
|
498
492
|
|
|
499
|
-
input[type=radio][ndwInput] {
|
|
500
|
-
display: none;
|
|
501
|
-
}
|
|
502
|
-
input[type=radio][ndwInput] ~ label {
|
|
503
|
-
font-family: var(--ndw-font-family);
|
|
504
|
-
font-size: 0.8125rem;
|
|
505
|
-
font-weight: var(--ndw-font-weight-regular);
|
|
506
|
-
line-height: 150%;
|
|
507
|
-
align-items: center;
|
|
508
|
-
color: var(--ndw-color-grey-600);
|
|
509
|
-
cursor: pointer;
|
|
510
|
-
display: flex;
|
|
511
|
-
margin-top: var(--ndw-spacing-2xs);
|
|
512
|
-
width: fit-content;
|
|
513
|
-
}
|
|
514
|
-
input[type=radio][ndwInput] ~ label::before {
|
|
515
|
-
background-color: var(--ndw-color-white);
|
|
516
|
-
box-sizing: border-box;
|
|
517
|
-
content: "";
|
|
518
|
-
width: 1.25rem;
|
|
519
|
-
height: 1.25rem;
|
|
520
|
-
border: var(--ndw-border-size-sm) solid var(--ndw-color-grey-200);
|
|
521
|
-
margin: calc(var(--ndw-spacing-2xs) * -1) var(--ndw-spacing-xs) 0 auto;
|
|
522
|
-
padding: var(--ndw-spacing-3xs);
|
|
523
|
-
transition: background-color 150ms ease-in-out, border-color 150ms ease-in-out;
|
|
524
|
-
}
|
|
525
|
-
input[type=radio][ndwInput]:checked ~ label::before {
|
|
526
|
-
background-color: var(--ndw-color-primary-500);
|
|
527
|
-
border-color: var(--ndw-color-primary-500);
|
|
528
|
-
}
|
|
529
|
-
input[type=radio][ndwInput]:not(:checked) ~ label:hover::before {
|
|
530
|
-
background-color: var(--ndw-color-white);
|
|
531
|
-
border-color: var(--ndw-color-primary-500);
|
|
532
|
-
}
|
|
533
|
-
input[type=radio][ndwInput]:not(:checked) ~ label:active::before, input[type=radio][ndwInput]:not(:checked) ~ label:focus::before, input[type=radio][ndwInput]:not(:checked) ~ label:focus-visible::before {
|
|
534
|
-
border-color: var(--ndw-color-info-500);
|
|
535
|
-
}
|
|
536
|
-
input[type=radio][ndwInput][error] ~ label::before {
|
|
537
|
-
border-color: var(--ndw-color-negative-500);
|
|
538
|
-
}
|
|
539
|
-
input[type=radio][ndwInput][error]:not(:checked) ~ label::before {
|
|
540
|
-
background-color: var(--ndw-color-negative-100);
|
|
541
|
-
}
|
|
542
|
-
input[type=radio][ndwInput][disabled] ~ label {
|
|
543
|
-
color: var(--ndw-color-grey-400);
|
|
544
|
-
pointer-events: none;
|
|
545
|
-
user-select: none;
|
|
546
|
-
}
|
|
547
|
-
input[type=radio][ndwInput][disabled] ~ label::before {
|
|
548
|
-
background-color: var(--ndw-color-grey-100);
|
|
549
|
-
border-color: var(--ndw-color-grey-200);
|
|
550
|
-
}
|
|
551
|
-
input[type=radio][ndwInput][disabled]:checked ~ label::before {
|
|
552
|
-
background-color: var(--ndw-color-grey-200);
|
|
553
|
-
}
|
|
554
|
-
input[type=radio][ndwInput] ~ label::before {
|
|
555
|
-
border-radius: 50%;
|
|
556
|
-
}
|
|
557
|
-
input[type=radio][ndwInput]:checked ~ label::before {
|
|
558
|
-
content: url('data:image/svg+xml, %3Csvg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle r="6" cx="10" cy="10" fill="white"/%3E%3C/svg%3E');
|
|
559
|
-
}
|
|
560
|
-
|
|
561
493
|
.cdk-overlay-pane.tooltip-bottom ndw-tooltip::before {
|
|
562
494
|
bottom: auto;
|
|
563
495
|
top: calc(var(--ndw-spacing-2xs) * -1);
|
|
@@ -18,11 +18,11 @@ export class AccordionComponent {
|
|
|
18
18
|
});
|
|
19
19
|
});
|
|
20
20
|
}
|
|
21
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
22
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "
|
|
21
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: AccordionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
22
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "18.0.1", type: AccordionComponent, isStandalone: true, selector: "ndw-accordion", inputs: { collapseOthers: { classPropertyName: "collapseOthers", publicName: "collapseOthers", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "collapsibles", predicate: CollapsibleComponent, isSignal: true }], ngImport: i0, template: "<ng-content />\n", styles: [""] }); }
|
|
23
23
|
}
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: AccordionComponent, decorators: [{
|
|
25
25
|
type: Component,
|
|
26
26
|
args: [{ selector: 'ndw-accordion', standalone: true, imports: [], template: "<ng-content />\n" }]
|
|
27
27
|
}] });
|
|
28
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
28
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjb3JkaW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25kdy9zcmMvY29tcG9uZW50cy9hY2NvcmRpb24vYWNjb3JkaW9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25kdy9zcmMvY29tcG9uZW50cy9hY2NvcmRpb24vYWNjb3JkaW9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQVUsZUFBZSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFbEYsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDdkQsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7O0FBU3RELE1BQU0sT0FBTyxrQkFBa0I7SUFQL0I7UUFRUyxtQkFBYyxHQUFHLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUU5QixpQkFBWSxHQUFHLGVBQWUsQ0FBQyxvQkFBb0IsQ0FBQyxDQUFDO1FBRTNDLHFCQUFnQixHQUFHLE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO0tBYTlEO0lBWFEsUUFBUTtRQUNiLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxTQUFTLENBQUMsU0FBUyxDQUFDLENBQUMsS0FBYSxFQUFFLEVBQUU7WUFDMUQsSUFBSSxDQUFDLElBQUksQ0FBQyxjQUFjLEVBQUUsRUFBRSxDQUFDO2dCQUMzQixPQUFPO1lBQ1QsQ0FBQztZQUVELElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQyxPQUFPLENBQUMsQ0FBQyxXQUFpQyxFQUFFLEVBQUU7Z0JBQ2hFLFdBQVcsQ0FBQyxRQUFRLENBQUMsR0FBRyxDQUFDLFdBQVcsQ0FBQyxLQUFLLEVBQUUsS0FBSyxLQUFLLENBQUMsQ0FBQztZQUMxRCxDQUFDLENBQUMsQ0FBQztRQUNMLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQzs4R0FqQlUsa0JBQWtCO2tHQUFsQixrQkFBa0IscVFBR1Msb0JBQW9CLDZDQ2Y1RCxrQkFDQTs7MkZEV2Esa0JBQWtCO2tCQVA5QixTQUFTOytCQUNFLGVBQWUsY0FDYixJQUFJLFdBQ1AsRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0LCBjb250ZW50Q2hpbGRyZW4sIGluamVjdCwgaW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgQWNjb3JkaW9uU2VydmljZSB9IGZyb20gJy4vYWNjb3JkaW9uLnNlcnZpY2UnO1xuaW1wb3J0IHsgQ29sbGFwc2libGVDb21wb25lbnQgfSBmcm9tICcuLi9jb2xsYXBzaWJsZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ25kdy1hY2NvcmRpb24nLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbXSxcbiAgdGVtcGxhdGVVcmw6ICcuL2FjY29yZGlvbi5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsOiAnLi9hY2NvcmRpb24uY29tcG9uZW50LnNjc3MnLFxufSlcbmV4cG9ydCBjbGFzcyBBY2NvcmRpb25Db21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICBwdWJsaWMgY29sbGFwc2VPdGhlcnMgPSBpbnB1dChmYWxzZSk7XG5cbiAgcHVibGljIGNvbGxhcHNpYmxlcyA9IGNvbnRlbnRDaGlsZHJlbihDb2xsYXBzaWJsZUNvbXBvbmVudCk7XG5cbiAgcHJpdmF0ZSByZWFkb25seSBhY2NvcmRpb25TZXJ2aWNlID0gaW5qZWN0KEFjY29yZGlvblNlcnZpY2UpO1xuXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmFjY29yZGlvblNlcnZpY2UuZXhwYW5kZWQkLnN1YnNjcmliZSgoaW5kZXg6IG51bWJlcikgPT4ge1xuICAgICAgaWYgKCF0aGlzLmNvbGxhcHNlT3RoZXJzKCkpIHtcbiAgICAgICAgcmV0dXJuO1xuICAgICAgfVxuXG4gICAgICB0aGlzLmNvbGxhcHNpYmxlcygpLmZvckVhY2goKGNvbGxhcHNpYmxlOiBDb2xsYXBzaWJsZUNvbXBvbmVudCkgPT4ge1xuICAgICAgICBjb2xsYXBzaWJsZS5leHBhbmRlZC5zZXQoY29sbGFwc2libGUuaW5kZXgoKSA9PT0gaW5kZXgpO1xuICAgICAgfSk7XG4gICAgfSk7XG4gIH1cbn1cbiIsIjxuZy1jb250ZW50IC8+XG4iXX0=
|
|
@@ -8,13 +8,13 @@ export class AccordionService {
|
|
|
8
8
|
setExpandedCollapsible(index) {
|
|
9
9
|
this.expanded$.next(index);
|
|
10
10
|
}
|
|
11
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: AccordionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: AccordionService, providedIn: 'root' }); }
|
|
13
13
|
}
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: AccordionService, decorators: [{
|
|
15
15
|
type: Injectable,
|
|
16
16
|
args: [{
|
|
17
|
-
providedIn: 'root'
|
|
17
|
+
providedIn: 'root',
|
|
18
18
|
}]
|
|
19
19
|
}] });
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjb3JkaW9uLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZHcvc3JjL2NvbXBvbmVudHMvYWNjb3JkaW9uL2FjY29yZGlvbi5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0MsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLE1BQU0sQ0FBQzs7QUFLL0IsTUFBTSxPQUFPLGdCQUFnQjtJQUg3QjtRQUlTLGNBQVMsR0FBRyxJQUFJLE9BQU8sRUFBVSxDQUFDO0tBSzFDO0lBSFEsc0JBQXNCLENBQUMsS0FBYTtRQUN6QyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUM3QixDQUFDOzhHQUxVLGdCQUFnQjtrSEFBaEIsZ0JBQWdCLGNBRmYsTUFBTTs7MkZBRVAsZ0JBQWdCO2tCQUg1QixVQUFVO21CQUFDO29CQUNWLFVBQVUsRUFBRSxNQUFNO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFN1YmplY3QgfSBmcm9tICdyeGpzJztcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCcsXG59KVxuZXhwb3J0IGNsYXNzIEFjY29yZGlvblNlcnZpY2Uge1xuICBwdWJsaWMgZXhwYW5kZWQkID0gbmV3IFN1YmplY3Q8bnVtYmVyPigpO1xuXG4gIHB1YmxpYyBzZXRFeHBhbmRlZENvbGxhcHNpYmxlKGluZGV4OiBudW1iZXIpOiB2b2lkIHtcbiAgICB0aGlzLmV4cGFuZGVkJC5uZXh0KGluZGV4KTtcbiAgfVxufVxuIl19
|