@ndwnu/design-system 1.0.1 → 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.
Files changed (39) hide show
  1. package/components/collapsible/collapsible.component.d.ts +1 -1
  2. package/components/dropdown/dropdown-trigger.directive.d.ts +1 -1
  3. package/components/form-field/form-field.component.d.ts +2 -3
  4. package/components/form-field/input/input.directive.d.ts +1 -0
  5. package/components/form-field/input/input.model.d.ts +3 -1
  6. package/components/main-navigation/main-navigation.component.d.ts +3 -3
  7. package/core/styles/ndw-styles.scss +287 -1
  8. package/core/styles/nwb-styles.scss +287 -1
  9. package/esm2022/components/accordion/accordion.component.mjs +3 -3
  10. package/esm2022/components/accordion/accordion.service.mjs +3 -3
  11. package/esm2022/components/badge/badge.component.mjs +4 -4
  12. package/esm2022/components/button/button.directive.mjs +3 -3
  13. package/esm2022/components/card/card.component.mjs +3 -3
  14. package/esm2022/components/collapsible/collapsible.animation.mjs +14 -24
  15. package/esm2022/components/collapsible/collapsible.component.mjs +5 -5
  16. package/esm2022/components/dropdown/dropdown-trigger.directive.mjs +11 -15
  17. package/esm2022/components/dropdown/dropdown.component.mjs +5 -5
  18. package/esm2022/components/form-field/checkbox/checkbox.component.mjs +6 -6
  19. package/esm2022/components/form-field/checkbox-group/checkbox-group.component.mjs +3 -3
  20. package/esm2022/components/form-field/error/error.component.mjs +3 -3
  21. package/esm2022/components/form-field/form-field.component.mjs +12 -11
  22. package/esm2022/components/form-field/info/info.component.mjs +3 -3
  23. package/esm2022/components/form-field/input/input.directive.mjs +10 -8
  24. package/esm2022/components/form-field/input/input.model.mjs +3 -1
  25. package/esm2022/components/form-field/radio-button/radio-button.component.mjs +3 -3
  26. package/esm2022/components/form-field/radio-group/radio-group.component.mjs +3 -3
  27. package/esm2022/components/icon/icon.component.mjs +3 -3
  28. package/esm2022/components/icon/icon.service.mjs +3 -3
  29. package/esm2022/components/main-navigation/main-navigation.component.mjs +8 -9
  30. package/esm2022/components/main-navigation-menu/main-navigation-menu.component.mjs +3 -3
  31. package/esm2022/components/modal/modal-trigger.directive.mjs +3 -3
  32. package/esm2022/components/pill/pill.component.mjs +3 -3
  33. package/esm2022/components/tab/tab.component.mjs +3 -3
  34. package/esm2022/components/tab-group/tab-group.component.mjs +3 -3
  35. package/esm2022/components/tooltip/tooltip.component.mjs +4 -4
  36. package/esm2022/components/tooltip/tooltip.directive.mjs +3 -3
  37. package/fesm2022/ndwnu-design-system.mjs +121 -132
  38. package/fesm2022/ndwnu-design-system.mjs.map +1 -1
  39. package/package.json +1 -1
@@ -6,7 +6,7 @@ export declare class CollapsibleComponent {
6
6
  expanded: import("@angular/core").ModelSignal<boolean>;
7
7
  private readonly accordionService;
8
8
  get expandedClass(): boolean;
9
- animationState: import("@angular/core").Signal<"in" | "out">;
9
+ animationState: import("@angular/core").Signal<"open" | "closed">;
10
10
  onClick(): void;
11
11
  onKeydown(event: KeyboardEvent): void;
12
12
  private toggle;
@@ -5,7 +5,6 @@ export declare class DropdownTriggerDirective implements OnDestroy {
5
5
  toggleOnClick: import("@angular/core").InputSignal<boolean>;
6
6
  isOpen: import("@angular/core").ModelSignal<boolean>;
7
7
  toggle(): void;
8
- trapFocus(): void;
9
8
  private destroyRef;
10
9
  private elementRef;
11
10
  private overlay;
@@ -15,6 +14,7 @@ export declare class DropdownTriggerDirective implements OnDestroy {
15
14
  constructor();
16
15
  ngOnDestroy(): void;
17
16
  private open;
17
+ private trapFocus;
18
18
  private closeOverlayOnEscapeKey;
19
19
  private closeOverlayOnBackdropClick;
20
20
  private close;
@@ -1,9 +1,8 @@
1
- import { OnChanges } from '@angular/core';
2
1
  import { CheckboxComponent } from './checkbox';
3
2
  import { InputDirective } from './input';
4
3
  import { RadioGroupComponent } from './radio-group';
5
4
  import * as i0 from "@angular/core";
6
- export declare class FormFieldComponent implements OnChanges {
5
+ export declare class FormFieldComponent {
7
6
  input: import("@angular/core").Signal<InputDirective | undefined>;
8
7
  radioGroup: import("@angular/core").Signal<RadioGroupComponent | undefined>;
9
8
  checkboxes: import("@angular/core").Signal<readonly CheckboxComponent[]>;
@@ -17,7 +16,7 @@ export declare class FormFieldComponent implements OnChanges {
17
16
  inputSuffix: import("@angular/core").Signal<string | undefined>;
18
17
  uuid: `${string}-${string}-${string}-${string}-${string}`;
19
18
  constructor();
20
- ngOnChanges(): void;
19
+ clearInput(): void;
21
20
  private addInputTypeBasedClass;
22
21
  private setInputDisabledState;
23
22
  private setInputErrorState;
@@ -5,6 +5,7 @@ export declare class InputDirective implements OnInit {
5
5
  set error(error: boolean);
6
6
  set id(id: string);
7
7
  private readonly elementRef;
8
+ private readonly destroyRef;
8
9
  get element(): HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
9
10
  ngOnInit(): void;
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<InputDirective, never>;
@@ -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
- handleSelectedChild(id: number): void;
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
  }
@@ -20,6 +20,94 @@
20
20
  --ndw-text-primary: var(--ndw-color-primary);
21
21
  }
22
22
 
23
+ .cdk-overlay-container, .cdk-global-overlay-wrapper {
24
+ pointer-events: none;
25
+ top: 0;
26
+ left: 0;
27
+ height: 100%;
28
+ width: 100%;
29
+ }
30
+
31
+ .cdk-overlay-container {
32
+ position: fixed;
33
+ z-index: 1000;
34
+ }
35
+
36
+ .cdk-overlay-container:empty {
37
+ display: none;
38
+ }
39
+
40
+ .cdk-global-overlay-wrapper {
41
+ display: flex;
42
+ position: absolute;
43
+ z-index: 1000;
44
+ }
45
+
46
+ .cdk-overlay-pane {
47
+ position: absolute;
48
+ pointer-events: auto;
49
+ box-sizing: border-box;
50
+ z-index: 1000;
51
+ display: flex;
52
+ max-width: 100%;
53
+ max-height: 100%;
54
+ }
55
+
56
+ .cdk-overlay-backdrop {
57
+ position: absolute;
58
+ top: 0;
59
+ bottom: 0;
60
+ left: 0;
61
+ right: 0;
62
+ z-index: 1000;
63
+ pointer-events: auto;
64
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
65
+ transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
66
+ opacity: 0;
67
+ }
68
+
69
+ .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
70
+ opacity: 1;
71
+ }
72
+
73
+ .cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
74
+ opacity: 0.6;
75
+ }
76
+
77
+ .cdk-overlay-dark-backdrop {
78
+ background: rgba(0, 0, 0, 0.32);
79
+ }
80
+
81
+ .cdk-overlay-transparent-backdrop {
82
+ transition: visibility 1ms linear, opacity 1ms linear;
83
+ visibility: hidden;
84
+ opacity: 1;
85
+ }
86
+
87
+ .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
88
+ opacity: 0;
89
+ visibility: visible;
90
+ }
91
+
92
+ .cdk-overlay-backdrop-noop-animation {
93
+ transition: none;
94
+ }
95
+
96
+ .cdk-overlay-connected-position-bounding-box {
97
+ position: absolute;
98
+ z-index: 1000;
99
+ display: flex;
100
+ flex-direction: column;
101
+ min-width: 1px;
102
+ min-height: 1px;
103
+ }
104
+
105
+ .cdk-global-scrollblock {
106
+ position: fixed;
107
+ width: 100%;
108
+ overflow-y: scroll;
109
+ }
110
+
23
111
  :root {
24
112
  /* Colors */
25
113
  --_grey: 0, 0%;
@@ -234,6 +322,204 @@
234
322
  line-height: 150%;
235
323
  }
236
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
+
237
523
  [ndwButton] {
238
524
  box-sizing: border-box;
239
525
  display: flex;
@@ -376,7 +662,7 @@
376
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 {
377
663
  display: none;
378
664
  }
379
- [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 {
380
666
  cursor: pointer;
381
667
  opacity: 0;
382
668
  }
@@ -20,6 +20,94 @@
20
20
  --ndw-text-primary: var(--ndw-color-grey-600);
21
21
  }
22
22
 
23
+ .cdk-overlay-container, .cdk-global-overlay-wrapper {
24
+ pointer-events: none;
25
+ top: 0;
26
+ left: 0;
27
+ height: 100%;
28
+ width: 100%;
29
+ }
30
+
31
+ .cdk-overlay-container {
32
+ position: fixed;
33
+ z-index: 1000;
34
+ }
35
+
36
+ .cdk-overlay-container:empty {
37
+ display: none;
38
+ }
39
+
40
+ .cdk-global-overlay-wrapper {
41
+ display: flex;
42
+ position: absolute;
43
+ z-index: 1000;
44
+ }
45
+
46
+ .cdk-overlay-pane {
47
+ position: absolute;
48
+ pointer-events: auto;
49
+ box-sizing: border-box;
50
+ z-index: 1000;
51
+ display: flex;
52
+ max-width: 100%;
53
+ max-height: 100%;
54
+ }
55
+
56
+ .cdk-overlay-backdrop {
57
+ position: absolute;
58
+ top: 0;
59
+ bottom: 0;
60
+ left: 0;
61
+ right: 0;
62
+ z-index: 1000;
63
+ pointer-events: auto;
64
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
65
+ transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
66
+ opacity: 0;
67
+ }
68
+
69
+ .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
70
+ opacity: 1;
71
+ }
72
+
73
+ .cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
74
+ opacity: 0.6;
75
+ }
76
+
77
+ .cdk-overlay-dark-backdrop {
78
+ background: rgba(0, 0, 0, 0.32);
79
+ }
80
+
81
+ .cdk-overlay-transparent-backdrop {
82
+ transition: visibility 1ms linear, opacity 1ms linear;
83
+ visibility: hidden;
84
+ opacity: 1;
85
+ }
86
+
87
+ .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
88
+ opacity: 0;
89
+ visibility: visible;
90
+ }
91
+
92
+ .cdk-overlay-backdrop-noop-animation {
93
+ transition: none;
94
+ }
95
+
96
+ .cdk-overlay-connected-position-bounding-box {
97
+ position: absolute;
98
+ z-index: 1000;
99
+ display: flex;
100
+ flex-direction: column;
101
+ min-width: 1px;
102
+ min-height: 1px;
103
+ }
104
+
105
+ .cdk-global-scrollblock {
106
+ position: fixed;
107
+ width: 100%;
108
+ overflow-y: scroll;
109
+ }
110
+
23
111
  :root {
24
112
  /* Colors */
25
113
  --_grey: 0, 0%;
@@ -234,6 +322,204 @@
234
322
  line-height: 150%;
235
323
  }
236
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
+
237
523
  [ndwButton] {
238
524
  box-sizing: border-box;
239
525
  display: flex;
@@ -376,7 +662,7 @@
376
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 {
377
663
  display: none;
378
664
  }
379
- [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 {
380
666
  cursor: pointer;
381
667
  opacity: 0;
382
668
  }