@ndwnu/design-system 1.0.2 → 1.0.3
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/components/form-field/input/input.model.d.ts +3 -1
- package/components/main-navigation/main-navigation.component.d.ts +3 -3
- package/core/styles/ndw-styles.scss +199 -1
- package/core/styles/nwb-styles.scss +199 -1
- package/esm2022/components/accordion/accordion.component.mjs +3 -3
- package/esm2022/components/accordion/accordion.service.mjs +3 -3
- package/esm2022/components/badge/badge.component.mjs +4 -4
- package/esm2022/components/button/button.directive.mjs +3 -3
- package/esm2022/components/card/card.component.mjs +3 -3
- package/esm2022/components/collapsible/collapsible.component.mjs +3 -3
- package/esm2022/components/dropdown/dropdown-trigger.directive.mjs +3 -3
- package/esm2022/components/dropdown/dropdown.component.mjs +5 -5
- package/esm2022/components/form-field/checkbox/checkbox.component.mjs +6 -6
- package/esm2022/components/form-field/checkbox-group/checkbox-group.component.mjs +3 -3
- package/esm2022/components/form-field/error/error.component.mjs +3 -3
- package/esm2022/components/form-field/form-field.component.mjs +5 -5
- package/esm2022/components/form-field/info/info.component.mjs +3 -3
- package/esm2022/components/form-field/input/input.directive.mjs +3 -3
- package/esm2022/components/form-field/input/input.model.mjs +3 -1
- package/esm2022/components/form-field/radio-button/radio-button.component.mjs +3 -3
- package/esm2022/components/form-field/radio-group/radio-group.component.mjs +3 -3
- package/esm2022/components/icon/icon.component.mjs +3 -3
- package/esm2022/components/icon/icon.service.mjs +3 -3
- package/esm2022/components/main-navigation/main-navigation.component.mjs +8 -9
- package/esm2022/components/main-navigation-menu/main-navigation-menu.component.mjs +3 -3
- package/esm2022/components/modal/modal-trigger.directive.mjs +3 -3
- package/esm2022/components/pill/pill.component.mjs +3 -3
- package/esm2022/components/tab/tab.component.mjs +3 -3
- package/esm2022/components/tab-group/tab-group.component.mjs +3 -3
- package/esm2022/components/tooltip/tooltip.component.mjs +4 -4
- package/esm2022/components/tooltip/tooltip.directive.mjs +3 -3
- package/fesm2022/ndwnu-design-system.mjs +90 -89
- package/fesm2022/ndwnu-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
export declare enum InputType {
|
|
2
2
|
Date = "date",
|
|
3
3
|
Email = "email",
|
|
4
|
+
Month = "month",
|
|
4
5
|
Number = "number",
|
|
5
6
|
Password = "password",
|
|
6
7
|
Search = "search",
|
|
7
8
|
Tel = "tel",
|
|
8
9
|
Text = "text",
|
|
9
10
|
Time = "time",
|
|
10
|
-
Url = "url"
|
|
11
|
+
Url = "url",
|
|
12
|
+
Week = "week"
|
|
11
13
|
}
|
|
@@ -11,10 +11,10 @@ export declare class MainNavigationComponent implements AfterViewInit {
|
|
|
11
11
|
footerTexts: import("@angular/core").InputSignal<string[] | undefined>;
|
|
12
12
|
isCollapsible: import("@angular/core").InputSignal<boolean>;
|
|
13
13
|
selected: import("@angular/core").OutputEmitterRef<number>;
|
|
14
|
+
isExpanded: import("@angular/core").ModelSignal<boolean>;
|
|
14
15
|
buttons: import("@angular/core").Signal<readonly ElementRef<HTMLButtonElement>[]>;
|
|
15
16
|
childMenuTemplate: import("@angular/core").Signal<TemplateRef<MainNavigationMenuComponent>>;
|
|
16
17
|
brandImagePath: import("@angular/core").Signal<string>;
|
|
17
|
-
isExpanded: import("@angular/core").WritableSignal<boolean>;
|
|
18
18
|
protected get brandAttribute(): string;
|
|
19
19
|
protected get expandedClass(): boolean;
|
|
20
20
|
onMouseMove(event: MouseEvent): void;
|
|
@@ -27,9 +27,9 @@ export declare class MainNavigationComponent implements AfterViewInit {
|
|
|
27
27
|
ngAfterViewInit(): void;
|
|
28
28
|
close(): void;
|
|
29
29
|
open(item: MenuItem): void;
|
|
30
|
-
|
|
30
|
+
handleSelected(id: number): void;
|
|
31
31
|
toggleView(): void;
|
|
32
32
|
private setPositionStrategy;
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainNavigationComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MainNavigationComponent, "ndw-main-navigation", never, { "applicationName": { "alias": "applicationName"; "required": true; "isSignal": true; }; "topMenuItems": { "alias": "topMenuItems"; "required": true; "isSignal": true; }; "bottomMenuItems": { "alias": "bottomMenuItems"; "required": false; "isSignal": true; }; "brand": { "alias": "brand"; "required": false; "isSignal": true; }; "footerTexts": { "alias": "footerTexts"; "required": false; "isSignal": true; }; "isCollapsible": { "alias": "isCollapsible"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, never, never, true, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainNavigationComponent, "ndw-main-navigation", never, { "applicationName": { "alias": "applicationName"; "required": true; "isSignal": true; }; "topMenuItems": { "alias": "topMenuItems"; "required": true; "isSignal": true; }; "bottomMenuItems": { "alias": "bottomMenuItems"; "required": false; "isSignal": true; }; "brand": { "alias": "brand"; "required": false; "isSignal": true; }; "footerTexts": { "alias": "footerTexts"; "required": false; "isSignal": true; }; "isCollapsible": { "alias": "isCollapsible"; "required": false; "isSignal": true; }; "isExpanded": { "alias": "isExpanded"; "required": false; "isSignal": true; }; }, { "selected": "selected"; "isExpanded": "isExpandedChange"; }, never, never, true, never>;
|
|
35
35
|
}
|
|
@@ -322,6 +322,204 @@
|
|
|
322
322
|
line-height: 150%;
|
|
323
323
|
}
|
|
324
324
|
|
|
325
|
+
.grid {
|
|
326
|
+
display: grid;
|
|
327
|
+
justify-items: stretch;
|
|
328
|
+
grid-template-columns: repeat(var(--grid-columns), minmax(1rem, 1fr));
|
|
329
|
+
gap: var(--grid-spacing);
|
|
330
|
+
padding: 0 var(--grid-spacing);
|
|
331
|
+
margin: 0 auto;
|
|
332
|
+
width: 100%;
|
|
333
|
+
min-width: min-content;
|
|
334
|
+
max-width: 1440px;
|
|
335
|
+
}
|
|
336
|
+
.grid .column-1 {
|
|
337
|
+
grid-column: span min(1, var(--grid-columns));
|
|
338
|
+
overflow: auto;
|
|
339
|
+
}
|
|
340
|
+
.grid .column-2 {
|
|
341
|
+
grid-column: span min(2, var(--grid-columns));
|
|
342
|
+
overflow: auto;
|
|
343
|
+
}
|
|
344
|
+
.grid .column-3 {
|
|
345
|
+
grid-column: span min(3, var(--grid-columns));
|
|
346
|
+
overflow: auto;
|
|
347
|
+
}
|
|
348
|
+
.grid .column-4 {
|
|
349
|
+
grid-column: span min(4, var(--grid-columns));
|
|
350
|
+
overflow: auto;
|
|
351
|
+
}
|
|
352
|
+
.grid .column-5 {
|
|
353
|
+
grid-column: span min(5, var(--grid-columns));
|
|
354
|
+
overflow: auto;
|
|
355
|
+
}
|
|
356
|
+
.grid .column-6 {
|
|
357
|
+
grid-column: span min(6, var(--grid-columns));
|
|
358
|
+
overflow: auto;
|
|
359
|
+
}
|
|
360
|
+
.grid .column-7 {
|
|
361
|
+
grid-column: span min(7, var(--grid-columns));
|
|
362
|
+
overflow: auto;
|
|
363
|
+
}
|
|
364
|
+
.grid .column-8 {
|
|
365
|
+
grid-column: span min(8, var(--grid-columns));
|
|
366
|
+
overflow: auto;
|
|
367
|
+
}
|
|
368
|
+
.grid .column-9 {
|
|
369
|
+
grid-column: span min(9, var(--grid-columns));
|
|
370
|
+
overflow: auto;
|
|
371
|
+
}
|
|
372
|
+
.grid .column-10 {
|
|
373
|
+
grid-column: span min(10, var(--grid-columns));
|
|
374
|
+
overflow: auto;
|
|
375
|
+
}
|
|
376
|
+
.grid .column-11 {
|
|
377
|
+
grid-column: span min(11, var(--grid-columns));
|
|
378
|
+
overflow: auto;
|
|
379
|
+
}
|
|
380
|
+
.grid .column-12 {
|
|
381
|
+
grid-column: span min(12, var(--grid-columns));
|
|
382
|
+
overflow: auto;
|
|
383
|
+
}
|
|
384
|
+
@media screen and (max-width: 1024px) {
|
|
385
|
+
.grid {
|
|
386
|
+
--grid-columns: 6;
|
|
387
|
+
--grid-spacing: var(--ndw-spacing-md);
|
|
388
|
+
}
|
|
389
|
+
.grid .column-md-1 {
|
|
390
|
+
display: none;
|
|
391
|
+
}
|
|
392
|
+
.grid .column-md-2 {
|
|
393
|
+
display: none;
|
|
394
|
+
}
|
|
395
|
+
.grid .column-md-3 {
|
|
396
|
+
display: none;
|
|
397
|
+
}
|
|
398
|
+
.grid .column-md-4 {
|
|
399
|
+
display: none;
|
|
400
|
+
}
|
|
401
|
+
.grid .column-md-5 {
|
|
402
|
+
display: none;
|
|
403
|
+
}
|
|
404
|
+
.grid .column-md-6 {
|
|
405
|
+
display: none;
|
|
406
|
+
}
|
|
407
|
+
.grid .column-md-7 {
|
|
408
|
+
display: none;
|
|
409
|
+
}
|
|
410
|
+
.grid .column-md-8 {
|
|
411
|
+
display: none;
|
|
412
|
+
}
|
|
413
|
+
.grid .column-md-9 {
|
|
414
|
+
display: none;
|
|
415
|
+
}
|
|
416
|
+
.grid .column-md-10 {
|
|
417
|
+
display: none;
|
|
418
|
+
}
|
|
419
|
+
.grid .column-md-11 {
|
|
420
|
+
display: none;
|
|
421
|
+
}
|
|
422
|
+
.grid .column-md-12 {
|
|
423
|
+
display: none;
|
|
424
|
+
}
|
|
425
|
+
.grid .column-sm-1 {
|
|
426
|
+
grid-column: span 1;
|
|
427
|
+
overflow: auto;
|
|
428
|
+
display: block;
|
|
429
|
+
}
|
|
430
|
+
.grid .column-sm-2 {
|
|
431
|
+
grid-column: span 2;
|
|
432
|
+
overflow: auto;
|
|
433
|
+
display: block;
|
|
434
|
+
}
|
|
435
|
+
.grid .column-sm-3 {
|
|
436
|
+
grid-column: span 3;
|
|
437
|
+
overflow: auto;
|
|
438
|
+
display: block;
|
|
439
|
+
}
|
|
440
|
+
.grid .column-sm-4 {
|
|
441
|
+
grid-column: span 4;
|
|
442
|
+
overflow: auto;
|
|
443
|
+
display: block;
|
|
444
|
+
}
|
|
445
|
+
.grid .column-sm-5 {
|
|
446
|
+
grid-column: span 5;
|
|
447
|
+
overflow: auto;
|
|
448
|
+
display: block;
|
|
449
|
+
}
|
|
450
|
+
.grid .column-sm-6 {
|
|
451
|
+
grid-column: span 6;
|
|
452
|
+
overflow: auto;
|
|
453
|
+
display: block;
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
@media screen and (min-width: 1025px) {
|
|
457
|
+
.grid {
|
|
458
|
+
--grid-columns: 12;
|
|
459
|
+
--grid-spacing: var(--ndw-spacing-lg);
|
|
460
|
+
}
|
|
461
|
+
.grid .column-md-1 {
|
|
462
|
+
grid-column: span 1;
|
|
463
|
+
overflow: auto;
|
|
464
|
+
display: block;
|
|
465
|
+
}
|
|
466
|
+
.grid .column-md-2 {
|
|
467
|
+
grid-column: span 2;
|
|
468
|
+
overflow: auto;
|
|
469
|
+
display: block;
|
|
470
|
+
}
|
|
471
|
+
.grid .column-md-3 {
|
|
472
|
+
grid-column: span 3;
|
|
473
|
+
overflow: auto;
|
|
474
|
+
display: block;
|
|
475
|
+
}
|
|
476
|
+
.grid .column-md-4 {
|
|
477
|
+
grid-column: span 4;
|
|
478
|
+
overflow: auto;
|
|
479
|
+
display: block;
|
|
480
|
+
}
|
|
481
|
+
.grid .column-md-5 {
|
|
482
|
+
grid-column: span 5;
|
|
483
|
+
overflow: auto;
|
|
484
|
+
display: block;
|
|
485
|
+
}
|
|
486
|
+
.grid .column-md-6 {
|
|
487
|
+
grid-column: span 6;
|
|
488
|
+
overflow: auto;
|
|
489
|
+
display: block;
|
|
490
|
+
}
|
|
491
|
+
.grid .column-md-7 {
|
|
492
|
+
grid-column: span 7;
|
|
493
|
+
overflow: auto;
|
|
494
|
+
display: block;
|
|
495
|
+
}
|
|
496
|
+
.grid .column-md-8 {
|
|
497
|
+
grid-column: span 8;
|
|
498
|
+
overflow: auto;
|
|
499
|
+
display: block;
|
|
500
|
+
}
|
|
501
|
+
.grid .column-md-9 {
|
|
502
|
+
grid-column: span 9;
|
|
503
|
+
overflow: auto;
|
|
504
|
+
display: block;
|
|
505
|
+
}
|
|
506
|
+
.grid .column-md-10 {
|
|
507
|
+
grid-column: span 10;
|
|
508
|
+
overflow: auto;
|
|
509
|
+
display: block;
|
|
510
|
+
}
|
|
511
|
+
.grid .column-md-11 {
|
|
512
|
+
grid-column: span 11;
|
|
513
|
+
overflow: auto;
|
|
514
|
+
display: block;
|
|
515
|
+
}
|
|
516
|
+
.grid .column-md-12 {
|
|
517
|
+
grid-column: span 12;
|
|
518
|
+
overflow: auto;
|
|
519
|
+
display: block;
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
|
|
325
523
|
[ndwButton] {
|
|
326
524
|
box-sizing: border-box;
|
|
327
525
|
display: flex;
|
|
@@ -464,7 +662,7 @@
|
|
|
464
662
|
[ndwInput][type=search]::-webkit-search-decoration, [ndwInput][type=search]::-webkit-search-cancel-button, [ndwInput][type=search]::-webkit-search-results-button, [ndwInput][type=search]::-webkit-search-results-decoration {
|
|
465
663
|
display: none;
|
|
466
664
|
}
|
|
467
|
-
[ndwInput][type=date]::-webkit-calendar-picker-indicator, [ndwInput][type=time]::-webkit-calendar-picker-indicator {
|
|
665
|
+
[ndwInput][type=date]::-webkit-calendar-picker-indicator, [ndwInput][type=month]::-webkit-calendar-picker-indicator, [ndwInput][type=time]::-webkit-calendar-picker-indicator, [ndwInput][type=week]::-webkit-calendar-picker-indicator {
|
|
468
666
|
cursor: pointer;
|
|
469
667
|
opacity: 0;
|
|
470
668
|
}
|
|
@@ -322,6 +322,204 @@
|
|
|
322
322
|
line-height: 150%;
|
|
323
323
|
}
|
|
324
324
|
|
|
325
|
+
.grid {
|
|
326
|
+
display: grid;
|
|
327
|
+
justify-items: stretch;
|
|
328
|
+
grid-template-columns: repeat(var(--grid-columns), minmax(1rem, 1fr));
|
|
329
|
+
gap: var(--grid-spacing);
|
|
330
|
+
padding: 0 var(--grid-spacing);
|
|
331
|
+
margin: 0 auto;
|
|
332
|
+
width: 100%;
|
|
333
|
+
min-width: min-content;
|
|
334
|
+
max-width: 1440px;
|
|
335
|
+
}
|
|
336
|
+
.grid .column-1 {
|
|
337
|
+
grid-column: span min(1, var(--grid-columns));
|
|
338
|
+
overflow: auto;
|
|
339
|
+
}
|
|
340
|
+
.grid .column-2 {
|
|
341
|
+
grid-column: span min(2, var(--grid-columns));
|
|
342
|
+
overflow: auto;
|
|
343
|
+
}
|
|
344
|
+
.grid .column-3 {
|
|
345
|
+
grid-column: span min(3, var(--grid-columns));
|
|
346
|
+
overflow: auto;
|
|
347
|
+
}
|
|
348
|
+
.grid .column-4 {
|
|
349
|
+
grid-column: span min(4, var(--grid-columns));
|
|
350
|
+
overflow: auto;
|
|
351
|
+
}
|
|
352
|
+
.grid .column-5 {
|
|
353
|
+
grid-column: span min(5, var(--grid-columns));
|
|
354
|
+
overflow: auto;
|
|
355
|
+
}
|
|
356
|
+
.grid .column-6 {
|
|
357
|
+
grid-column: span min(6, var(--grid-columns));
|
|
358
|
+
overflow: auto;
|
|
359
|
+
}
|
|
360
|
+
.grid .column-7 {
|
|
361
|
+
grid-column: span min(7, var(--grid-columns));
|
|
362
|
+
overflow: auto;
|
|
363
|
+
}
|
|
364
|
+
.grid .column-8 {
|
|
365
|
+
grid-column: span min(8, var(--grid-columns));
|
|
366
|
+
overflow: auto;
|
|
367
|
+
}
|
|
368
|
+
.grid .column-9 {
|
|
369
|
+
grid-column: span min(9, var(--grid-columns));
|
|
370
|
+
overflow: auto;
|
|
371
|
+
}
|
|
372
|
+
.grid .column-10 {
|
|
373
|
+
grid-column: span min(10, var(--grid-columns));
|
|
374
|
+
overflow: auto;
|
|
375
|
+
}
|
|
376
|
+
.grid .column-11 {
|
|
377
|
+
grid-column: span min(11, var(--grid-columns));
|
|
378
|
+
overflow: auto;
|
|
379
|
+
}
|
|
380
|
+
.grid .column-12 {
|
|
381
|
+
grid-column: span min(12, var(--grid-columns));
|
|
382
|
+
overflow: auto;
|
|
383
|
+
}
|
|
384
|
+
@media screen and (max-width: 1024px) {
|
|
385
|
+
.grid {
|
|
386
|
+
--grid-columns: 6;
|
|
387
|
+
--grid-spacing: var(--ndw-spacing-md);
|
|
388
|
+
}
|
|
389
|
+
.grid .column-md-1 {
|
|
390
|
+
display: none;
|
|
391
|
+
}
|
|
392
|
+
.grid .column-md-2 {
|
|
393
|
+
display: none;
|
|
394
|
+
}
|
|
395
|
+
.grid .column-md-3 {
|
|
396
|
+
display: none;
|
|
397
|
+
}
|
|
398
|
+
.grid .column-md-4 {
|
|
399
|
+
display: none;
|
|
400
|
+
}
|
|
401
|
+
.grid .column-md-5 {
|
|
402
|
+
display: none;
|
|
403
|
+
}
|
|
404
|
+
.grid .column-md-6 {
|
|
405
|
+
display: none;
|
|
406
|
+
}
|
|
407
|
+
.grid .column-md-7 {
|
|
408
|
+
display: none;
|
|
409
|
+
}
|
|
410
|
+
.grid .column-md-8 {
|
|
411
|
+
display: none;
|
|
412
|
+
}
|
|
413
|
+
.grid .column-md-9 {
|
|
414
|
+
display: none;
|
|
415
|
+
}
|
|
416
|
+
.grid .column-md-10 {
|
|
417
|
+
display: none;
|
|
418
|
+
}
|
|
419
|
+
.grid .column-md-11 {
|
|
420
|
+
display: none;
|
|
421
|
+
}
|
|
422
|
+
.grid .column-md-12 {
|
|
423
|
+
display: none;
|
|
424
|
+
}
|
|
425
|
+
.grid .column-sm-1 {
|
|
426
|
+
grid-column: span 1;
|
|
427
|
+
overflow: auto;
|
|
428
|
+
display: block;
|
|
429
|
+
}
|
|
430
|
+
.grid .column-sm-2 {
|
|
431
|
+
grid-column: span 2;
|
|
432
|
+
overflow: auto;
|
|
433
|
+
display: block;
|
|
434
|
+
}
|
|
435
|
+
.grid .column-sm-3 {
|
|
436
|
+
grid-column: span 3;
|
|
437
|
+
overflow: auto;
|
|
438
|
+
display: block;
|
|
439
|
+
}
|
|
440
|
+
.grid .column-sm-4 {
|
|
441
|
+
grid-column: span 4;
|
|
442
|
+
overflow: auto;
|
|
443
|
+
display: block;
|
|
444
|
+
}
|
|
445
|
+
.grid .column-sm-5 {
|
|
446
|
+
grid-column: span 5;
|
|
447
|
+
overflow: auto;
|
|
448
|
+
display: block;
|
|
449
|
+
}
|
|
450
|
+
.grid .column-sm-6 {
|
|
451
|
+
grid-column: span 6;
|
|
452
|
+
overflow: auto;
|
|
453
|
+
display: block;
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
@media screen and (min-width: 1025px) {
|
|
457
|
+
.grid {
|
|
458
|
+
--grid-columns: 12;
|
|
459
|
+
--grid-spacing: var(--ndw-spacing-lg);
|
|
460
|
+
}
|
|
461
|
+
.grid .column-md-1 {
|
|
462
|
+
grid-column: span 1;
|
|
463
|
+
overflow: auto;
|
|
464
|
+
display: block;
|
|
465
|
+
}
|
|
466
|
+
.grid .column-md-2 {
|
|
467
|
+
grid-column: span 2;
|
|
468
|
+
overflow: auto;
|
|
469
|
+
display: block;
|
|
470
|
+
}
|
|
471
|
+
.grid .column-md-3 {
|
|
472
|
+
grid-column: span 3;
|
|
473
|
+
overflow: auto;
|
|
474
|
+
display: block;
|
|
475
|
+
}
|
|
476
|
+
.grid .column-md-4 {
|
|
477
|
+
grid-column: span 4;
|
|
478
|
+
overflow: auto;
|
|
479
|
+
display: block;
|
|
480
|
+
}
|
|
481
|
+
.grid .column-md-5 {
|
|
482
|
+
grid-column: span 5;
|
|
483
|
+
overflow: auto;
|
|
484
|
+
display: block;
|
|
485
|
+
}
|
|
486
|
+
.grid .column-md-6 {
|
|
487
|
+
grid-column: span 6;
|
|
488
|
+
overflow: auto;
|
|
489
|
+
display: block;
|
|
490
|
+
}
|
|
491
|
+
.grid .column-md-7 {
|
|
492
|
+
grid-column: span 7;
|
|
493
|
+
overflow: auto;
|
|
494
|
+
display: block;
|
|
495
|
+
}
|
|
496
|
+
.grid .column-md-8 {
|
|
497
|
+
grid-column: span 8;
|
|
498
|
+
overflow: auto;
|
|
499
|
+
display: block;
|
|
500
|
+
}
|
|
501
|
+
.grid .column-md-9 {
|
|
502
|
+
grid-column: span 9;
|
|
503
|
+
overflow: auto;
|
|
504
|
+
display: block;
|
|
505
|
+
}
|
|
506
|
+
.grid .column-md-10 {
|
|
507
|
+
grid-column: span 10;
|
|
508
|
+
overflow: auto;
|
|
509
|
+
display: block;
|
|
510
|
+
}
|
|
511
|
+
.grid .column-md-11 {
|
|
512
|
+
grid-column: span 11;
|
|
513
|
+
overflow: auto;
|
|
514
|
+
display: block;
|
|
515
|
+
}
|
|
516
|
+
.grid .column-md-12 {
|
|
517
|
+
grid-column: span 12;
|
|
518
|
+
overflow: auto;
|
|
519
|
+
display: block;
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
|
|
325
523
|
[ndwButton] {
|
|
326
524
|
box-sizing: border-box;
|
|
327
525
|
display: flex;
|
|
@@ -464,7 +662,7 @@
|
|
|
464
662
|
[ndwInput][type=search]::-webkit-search-decoration, [ndwInput][type=search]::-webkit-search-cancel-button, [ndwInput][type=search]::-webkit-search-results-button, [ndwInput][type=search]::-webkit-search-results-decoration {
|
|
465
663
|
display: none;
|
|
466
664
|
}
|
|
467
|
-
[ndwInput][type=date]::-webkit-calendar-picker-indicator, [ndwInput][type=time]::-webkit-calendar-picker-indicator {
|
|
665
|
+
[ndwInput][type=date]::-webkit-calendar-picker-indicator, [ndwInput][type=month]::-webkit-calendar-picker-indicator, [ndwInput][type=time]::-webkit-calendar-picker-indicator, [ndwInput][type=week]::-webkit-calendar-picker-indicator {
|
|
468
666
|
cursor: pointer;
|
|
469
667
|
opacity: 0;
|
|
470
668
|
}
|
|
@@ -18,10 +18,10 @@ export class AccordionComponent {
|
|
|
18
18
|
});
|
|
19
19
|
});
|
|
20
20
|
}
|
|
21
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.
|
|
22
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "18.0.
|
|
21
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AccordionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
22
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "18.0.3", 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: "18.0.
|
|
24
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AccordionComponent, decorators: [{
|
|
25
25
|
type: Component,
|
|
26
26
|
args: [{ selector: 'ndw-accordion', standalone: true, imports: [], template: "<ng-content />\n" }]
|
|
27
27
|
}] });
|
|
@@ -8,10 +8,10 @@ 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: "18.0.
|
|
12
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.
|
|
11
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AccordionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AccordionService, providedIn: 'root' }); }
|
|
13
13
|
}
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.
|
|
14
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AccordionService, decorators: [{
|
|
15
15
|
type: Injectable,
|
|
16
16
|
args: [{
|
|
17
17
|
providedIn: 'root',
|