@sebgroup/green-core-ng 3.17.2 → 3.17.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/fesm2022/sebgroup-green-core-ng.mjs +251 -251
- package/fesm2022/sebgroup-green-core-ng.mjs.map +1 -1
- package/index.d.ts +323 -323
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { OnInit, OnChanges, AfterViewInit, EventEmitter, SimpleChanges, ElementRef, NgZone, ChangeDetectorRef, Renderer2, Injector, InjectionToken, RendererStyleFlags2, RendererFactory2, RendererType2 } from '@angular/core';
|
|
3
3
|
import { GdsAlert } from '@sebgroup/green-core/components/alert/alert.component.js';
|
|
4
|
-
import { GdsBadge } from '@sebgroup/green-core/components/badge/badge.component.js';
|
|
5
4
|
import { GdsAvatar } from '@sebgroup/green-core/components/avatar/avatar.component.js';
|
|
5
|
+
import { GdsBadge } from '@sebgroup/green-core/components/badge/badge.component.js';
|
|
6
|
+
import { GdsBlur } from '@sebgroup/green-core/components/blur/blur.component.js';
|
|
6
7
|
import { GdsBreadcrumbs } from '@sebgroup/green-core/components/breadcrumbs/breadcrumbs.component.js';
|
|
7
8
|
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
8
9
|
import { GdsButton } from '@sebgroup/green-core/components/button/button.component.js';
|
|
9
|
-
import { GdsBlur } from '@sebgroup/green-core/components/blur/blur.component.js';
|
|
10
10
|
import { GdsCalendar } from '@sebgroup/green-core/components/calendar/calendar.component.js';
|
|
11
11
|
import { GdsCard } from '@sebgroup/green-core/components/card/card.component.js';
|
|
12
12
|
import { GdsCardLinked } from '@sebgroup/green-core/components/card-linked/card-linked.component.js';
|
|
@@ -23,13 +23,13 @@ import { GdsFab } from '@sebgroup/green-core/components/fab/fab.component.js';
|
|
|
23
23
|
import { GdsFilterChips } from '@sebgroup/green-core/components/filter-chips/filter-chips.component.js';
|
|
24
24
|
import { GdsFlex } from '@sebgroup/green-core/components/flex/flex.component.js';
|
|
25
25
|
import { GdsFormSummary } from '@sebgroup/green-core/components/form-summary/summary.component.js';
|
|
26
|
-
import { GdsGroupedList } from '@sebgroup/green-core/components/grouped-list/grouped-list.component.js';
|
|
27
26
|
import { GdsGrid } from '@sebgroup/green-core/components/grid/grid.component.js';
|
|
27
|
+
import { GdsGroupedList } from '@sebgroup/green-core/components/grouped-list/grouped-list.component.js';
|
|
28
28
|
import { GdsImg } from '@sebgroup/green-core/components/img/img.component.js';
|
|
29
29
|
import { GdsInput } from '@sebgroup/green-core/components/input/input.component.js';
|
|
30
30
|
import { GdsLink } from '@sebgroup/green-core/components/link/link.component.js';
|
|
31
|
-
import { GdsMask } from '@sebgroup/green-core/components/mask/mask.component.js';
|
|
32
31
|
import { GdsList } from '@sebgroup/green-core/components/list/list.component.js';
|
|
32
|
+
import { GdsMask } from '@sebgroup/green-core/components/mask/mask.component.js';
|
|
33
33
|
import { GdsMenuButton } from '@sebgroup/green-core/components/menu-button/menu-button.component.js';
|
|
34
34
|
import { GdsPagination } from '@sebgroup/green-core/components/pagination/pagination.component.js';
|
|
35
35
|
import { GdsBackdrop } from '@sebgroup/green-core/components/popover/backdrop.component.js';
|
|
@@ -434,73 +434,85 @@ declare class GdsAlertComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
434
434
|
}
|
|
435
435
|
|
|
436
436
|
/**
|
|
437
|
-
* Angular wrapper for the gds-
|
|
438
|
-
* `gds-
|
|
437
|
+
* Angular wrapper for the gds-avatar web component
|
|
438
|
+
* `gds-avatar` is a visual element used to represent a user or entity.
|
|
439
|
+
It supports displaying an image, slotted text content, or a fallback icon.
|
|
439
440
|
*/
|
|
440
|
-
declare class
|
|
441
|
+
declare class GdsAvatarComponent implements OnInit, OnChanges, AfterViewInit {
|
|
441
442
|
private elementRef;
|
|
442
443
|
private zone;
|
|
443
444
|
private cdr;
|
|
444
|
-
get element():
|
|
445
|
+
get element(): GdsAvatar;
|
|
445
446
|
constructor();
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
447
|
+
/** Image URL to display inside the avatar.
|
|
448
|
+
When set, an `<img>` is rendered directly in the shadow DOM. */
|
|
449
|
+
src?: GdsAvatar['src'];
|
|
450
|
+
/** Alt text for the image when using the `src` property. */
|
|
451
|
+
alt?: GdsAvatar['alt'];
|
|
452
|
+
/** The size of the avatar. */
|
|
453
|
+
size?: GdsAvatar['size'];
|
|
454
|
+
/** The shape of the avatar. */
|
|
455
|
+
shape?: GdsAvatar['shape'];
|
|
456
|
+
/** The color level used when resolving color tokens for style expression properties. */
|
|
457
|
+
level?: GdsAvatar['level'];
|
|
458
|
+
/** Style Expression Property that controls the `background` color of the avatar shape.
|
|
459
|
+
Only accepts color tokens and optional transparency values. */
|
|
460
|
+
background?: GdsAvatar['background'];
|
|
461
|
+
/** Style Expression Property that controls the text/icon `color` of the avatar.
|
|
462
|
+
Accepts content color tokens and optional transparency values. */
|
|
463
|
+
color?: GdsAvatar['color'];
|
|
452
464
|
/** Style Expression Property that controls the `width` property.
|
|
453
465
|
Supports space tokens and all valid CSS `width` values. */
|
|
454
|
-
width?:
|
|
466
|
+
width?: GdsAvatar['width'];
|
|
455
467
|
/** Style Expression Property that controls the `min-width` property.
|
|
456
468
|
Supports space tokens and all valid CSS `min-width` values. */
|
|
457
|
-
minWidth?:
|
|
469
|
+
minWidth?: GdsAvatar['min-width'];
|
|
458
470
|
/** Style Expression Property that controls the `max-width` property.
|
|
459
471
|
Supports space tokens and all valid CSS `max-width` values. */
|
|
460
|
-
maxWidth?:
|
|
472
|
+
maxWidth?: GdsAvatar['max-width'];
|
|
461
473
|
/** Style Expression Property that controls the `inline-size` property.
|
|
462
474
|
Supports space tokens and all valid CSS `inline-size` values */
|
|
463
|
-
inlineSize?:
|
|
475
|
+
inlineSize?: GdsAvatar['inline-size'];
|
|
464
476
|
/** Style Expression Property that controls the `min-inline-size` property.
|
|
465
477
|
Supports space tokens and all valid CSS `min-inline-size` values. */
|
|
466
|
-
minInlineSize?:
|
|
478
|
+
minInlineSize?: GdsAvatar['min-inline-size'];
|
|
467
479
|
/** Style Expression Property that controls the `max-inline-size` property.
|
|
468
480
|
Supports space tokens and all valid CSS `max-inline-size` values. */
|
|
469
|
-
maxInlineSize?:
|
|
481
|
+
maxInlineSize?: GdsAvatar['max-inline-size'];
|
|
470
482
|
/** Style Expression Property that controls the `margin` property.
|
|
471
483
|
Only accepts space tokens. */
|
|
472
|
-
margin?:
|
|
484
|
+
margin?: GdsAvatar['margin'];
|
|
473
485
|
/** Style Expression Property that controls the `margin-inline` property.
|
|
474
486
|
Only accepts space tokens. */
|
|
475
|
-
marginInline?:
|
|
487
|
+
marginInline?: GdsAvatar['margin-inline'];
|
|
476
488
|
/** Style Expression Property that controls the `margin-block` property.
|
|
477
489
|
Only accepts space tokens. */
|
|
478
|
-
marginBlock?:
|
|
490
|
+
marginBlock?: GdsAvatar['margin-block'];
|
|
479
491
|
/** Style Expression Property that controls the `align-self` property.
|
|
480
492
|
Supports all valid CSS `align-self` values. */
|
|
481
|
-
alignSelf?:
|
|
493
|
+
alignSelf?: GdsAvatar['align-self'];
|
|
482
494
|
/** Style Expression Property that controls the `justify-self` property.
|
|
483
495
|
Supports all valid CSS `justify-self` values. */
|
|
484
|
-
justifySelf?:
|
|
496
|
+
justifySelf?: GdsAvatar['justify-self'];
|
|
485
497
|
/** Style Expression Property that controls the `place-self` property.
|
|
486
498
|
Supports all valid CSS `place-self` values. */
|
|
487
|
-
placeSelf?:
|
|
499
|
+
placeSelf?: GdsAvatar['place-self'];
|
|
488
500
|
/** Style Expression Property that controls the `grid-column` property.
|
|
489
501
|
Supports all valid CSS grid-column values.
|
|
490
502
|
Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
|
|
491
|
-
gridColumn?:
|
|
503
|
+
gridColumn?: GdsAvatar['grid-column'];
|
|
492
504
|
/** Style Expression Property that controls the `grid-row` property.
|
|
493
505
|
Supports all valid CSS `grid-row` values. */
|
|
494
|
-
gridRow?:
|
|
506
|
+
gridRow?: GdsAvatar['grid-row'];
|
|
495
507
|
/** Style Expression Property that controls the `grid-area` property.
|
|
496
508
|
Supports all valid CSS `grid-area` values. */
|
|
497
|
-
gridArea?:
|
|
509
|
+
gridArea?: GdsAvatar['grid-area'];
|
|
498
510
|
/** Style Expression Property that controls the `flex` property.
|
|
499
511
|
Supports all valid CSS `flex` values. */
|
|
500
|
-
flex?:
|
|
512
|
+
flex?: GdsAvatar['flex'];
|
|
501
513
|
/** Style Expression Property that controls the `order` property.
|
|
502
514
|
Supports all valid CSS `order` values. */
|
|
503
|
-
order?:
|
|
515
|
+
order?: GdsAvatar['order'];
|
|
504
516
|
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
505
517
|
|
|
506
518
|
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
@@ -509,99 +521,83 @@ declare class GdsBadgeComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
509
521
|
|
|
510
522
|
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
511
523
|
element needs to be measured synchronously after being added to the DOM. */
|
|
512
|
-
syncFirstRender?:
|
|
524
|
+
syncFirstRender?: GdsAvatar['syncFirstRender'];
|
|
513
525
|
ngOnInit(): void;
|
|
514
526
|
ngOnChanges(changes: SimpleChanges): void;
|
|
515
527
|
ngAfterViewInit(): void;
|
|
516
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
517
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
518
|
-
static ngAcceptInputType_notification: unknown;
|
|
519
|
-
static ngAcceptInputType_rounded: unknown;
|
|
520
|
-
static ngAcceptInputType_mainSlotOccupied: unknown;
|
|
521
|
-
static ngAcceptInputType_leadSlotOccupied: unknown;
|
|
528
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GdsAvatarComponent, never>;
|
|
529
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GdsAvatarComponent, "gds-avatar", never, { "src": { "alias": "src"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "size": { "alias": "size"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "level": { "alias": "level"; "required": false; }; "background": { "alias": "background"; "required": false; }; "color": { "alias": "color"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
522
530
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
523
531
|
}
|
|
524
532
|
|
|
525
533
|
/**
|
|
526
|
-
* Angular wrapper for the gds-
|
|
527
|
-
* `gds-
|
|
528
|
-
It supports displaying an image, slotted text content, or a fallback icon.
|
|
534
|
+
* Angular wrapper for the gds-badge web component
|
|
535
|
+
* `gds-badge`
|
|
529
536
|
*/
|
|
530
|
-
declare class
|
|
537
|
+
declare class GdsBadgeComponent implements OnInit, OnChanges, AfterViewInit {
|
|
531
538
|
private elementRef;
|
|
532
539
|
private zone;
|
|
533
540
|
private cdr;
|
|
534
|
-
get element():
|
|
541
|
+
get element(): GdsBadge;
|
|
535
542
|
constructor();
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
size?: GdsAvatar['size'];
|
|
543
|
-
/** The shape of the avatar. */
|
|
544
|
-
shape?: GdsAvatar['shape'];
|
|
545
|
-
/** The color level used when resolving color tokens for style expression properties. */
|
|
546
|
-
level?: GdsAvatar['level'];
|
|
547
|
-
/** Style Expression Property that controls the `background` color of the avatar shape.
|
|
548
|
-
Only accepts color tokens and optional transparency values. */
|
|
549
|
-
background?: GdsAvatar['background'];
|
|
550
|
-
/** Style Expression Property that controls the text/icon `color` of the avatar.
|
|
551
|
-
Accepts content color tokens and optional transparency values. */
|
|
552
|
-
color?: GdsAvatar['color'];
|
|
543
|
+
variant?: GdsBadge['variant'];
|
|
544
|
+
size?: GdsBadge['size'];
|
|
545
|
+
notification?: GdsBadge['notification'];
|
|
546
|
+
rounded?: GdsBadge['rounded'];
|
|
547
|
+
mainSlotOccupied?: GdsBadge['mainSlotOccupied'];
|
|
548
|
+
leadSlotOccupied?: GdsBadge['leadSlotOccupied'];
|
|
553
549
|
/** Style Expression Property that controls the `width` property.
|
|
554
550
|
Supports space tokens and all valid CSS `width` values. */
|
|
555
|
-
width?:
|
|
551
|
+
width?: GdsBadge['width'];
|
|
556
552
|
/** Style Expression Property that controls the `min-width` property.
|
|
557
553
|
Supports space tokens and all valid CSS `min-width` values. */
|
|
558
|
-
minWidth?:
|
|
554
|
+
minWidth?: GdsBadge['min-width'];
|
|
559
555
|
/** Style Expression Property that controls the `max-width` property.
|
|
560
556
|
Supports space tokens and all valid CSS `max-width` values. */
|
|
561
|
-
maxWidth?:
|
|
557
|
+
maxWidth?: GdsBadge['max-width'];
|
|
562
558
|
/** Style Expression Property that controls the `inline-size` property.
|
|
563
559
|
Supports space tokens and all valid CSS `inline-size` values */
|
|
564
|
-
inlineSize?:
|
|
560
|
+
inlineSize?: GdsBadge['inline-size'];
|
|
565
561
|
/** Style Expression Property that controls the `min-inline-size` property.
|
|
566
562
|
Supports space tokens and all valid CSS `min-inline-size` values. */
|
|
567
|
-
minInlineSize?:
|
|
563
|
+
minInlineSize?: GdsBadge['min-inline-size'];
|
|
568
564
|
/** Style Expression Property that controls the `max-inline-size` property.
|
|
569
565
|
Supports space tokens and all valid CSS `max-inline-size` values. */
|
|
570
|
-
maxInlineSize?:
|
|
566
|
+
maxInlineSize?: GdsBadge['max-inline-size'];
|
|
571
567
|
/** Style Expression Property that controls the `margin` property.
|
|
572
568
|
Only accepts space tokens. */
|
|
573
|
-
margin?:
|
|
569
|
+
margin?: GdsBadge['margin'];
|
|
574
570
|
/** Style Expression Property that controls the `margin-inline` property.
|
|
575
571
|
Only accepts space tokens. */
|
|
576
|
-
marginInline?:
|
|
572
|
+
marginInline?: GdsBadge['margin-inline'];
|
|
577
573
|
/** Style Expression Property that controls the `margin-block` property.
|
|
578
574
|
Only accepts space tokens. */
|
|
579
|
-
marginBlock?:
|
|
575
|
+
marginBlock?: GdsBadge['margin-block'];
|
|
580
576
|
/** Style Expression Property that controls the `align-self` property.
|
|
581
577
|
Supports all valid CSS `align-self` values. */
|
|
582
|
-
alignSelf?:
|
|
578
|
+
alignSelf?: GdsBadge['align-self'];
|
|
583
579
|
/** Style Expression Property that controls the `justify-self` property.
|
|
584
580
|
Supports all valid CSS `justify-self` values. */
|
|
585
|
-
justifySelf?:
|
|
581
|
+
justifySelf?: GdsBadge['justify-self'];
|
|
586
582
|
/** Style Expression Property that controls the `place-self` property.
|
|
587
583
|
Supports all valid CSS `place-self` values. */
|
|
588
|
-
placeSelf?:
|
|
584
|
+
placeSelf?: GdsBadge['place-self'];
|
|
589
585
|
/** Style Expression Property that controls the `grid-column` property.
|
|
590
586
|
Supports all valid CSS grid-column values.
|
|
591
587
|
Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
|
|
592
|
-
gridColumn?:
|
|
588
|
+
gridColumn?: GdsBadge['grid-column'];
|
|
593
589
|
/** Style Expression Property that controls the `grid-row` property.
|
|
594
590
|
Supports all valid CSS `grid-row` values. */
|
|
595
|
-
gridRow?:
|
|
591
|
+
gridRow?: GdsBadge['grid-row'];
|
|
596
592
|
/** Style Expression Property that controls the `grid-area` property.
|
|
597
593
|
Supports all valid CSS `grid-area` values. */
|
|
598
|
-
gridArea?:
|
|
594
|
+
gridArea?: GdsBadge['grid-area'];
|
|
599
595
|
/** Style Expression Property that controls the `flex` property.
|
|
600
596
|
Supports all valid CSS `flex` values. */
|
|
601
|
-
flex?:
|
|
597
|
+
flex?: GdsBadge['flex'];
|
|
602
598
|
/** Style Expression Property that controls the `order` property.
|
|
603
599
|
Supports all valid CSS `order` values. */
|
|
604
|
-
order?:
|
|
600
|
+
order?: GdsBadge['order'];
|
|
605
601
|
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
606
602
|
|
|
607
603
|
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
@@ -610,12 +606,43 @@ declare class GdsAvatarComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
610
606
|
|
|
611
607
|
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
612
608
|
element needs to be measured synchronously after being added to the DOM. */
|
|
613
|
-
syncFirstRender?:
|
|
609
|
+
syncFirstRender?: GdsBadge['syncFirstRender'];
|
|
614
610
|
ngOnInit(): void;
|
|
615
611
|
ngOnChanges(changes: SimpleChanges): void;
|
|
616
612
|
ngAfterViewInit(): void;
|
|
617
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
618
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
613
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GdsBadgeComponent, never>;
|
|
614
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GdsBadgeComponent, "gds-badge", never, { "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "notification": { "alias": "notification"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "mainSlotOccupied": { "alias": "mainSlotOccupied"; "required": false; }; "leadSlotOccupied": { "alias": "leadSlotOccupied"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
615
|
+
static ngAcceptInputType_notification: unknown;
|
|
616
|
+
static ngAcceptInputType_rounded: unknown;
|
|
617
|
+
static ngAcceptInputType_mainSlotOccupied: unknown;
|
|
618
|
+
static ngAcceptInputType_leadSlotOccupied: unknown;
|
|
619
|
+
static ngAcceptInputType_syncFirstRender: unknown;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
/**
|
|
623
|
+
* Angular wrapper for the gds-blur web component
|
|
624
|
+
*
|
|
625
|
+
*/
|
|
626
|
+
declare class GdsBlurComponent implements OnInit, OnChanges, AfterViewInit {
|
|
627
|
+
private elementRef;
|
|
628
|
+
private zone;
|
|
629
|
+
private cdr;
|
|
630
|
+
get element(): GdsBlur;
|
|
631
|
+
constructor();
|
|
632
|
+
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
633
|
+
|
|
634
|
+
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
635
|
+
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
636
|
+
is projected.
|
|
637
|
+
|
|
638
|
+
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
639
|
+
element needs to be measured synchronously after being added to the DOM. */
|
|
640
|
+
syncFirstRender?: GdsBlur['syncFirstRender'];
|
|
641
|
+
ngOnInit(): void;
|
|
642
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
643
|
+
ngAfterViewInit(): void;
|
|
644
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GdsBlurComponent, never>;
|
|
645
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GdsBlurComponent, "gds-blur", never, { "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
619
646
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
620
647
|
}
|
|
621
648
|
|
|
@@ -882,33 +909,6 @@ declare class GdsButtonComponent extends GdsFormControlBase {
|
|
|
882
909
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
883
910
|
}
|
|
884
911
|
|
|
885
|
-
/**
|
|
886
|
-
* Angular wrapper for the gds-blur web component
|
|
887
|
-
*
|
|
888
|
-
*/
|
|
889
|
-
declare class GdsBlurComponent implements OnInit, OnChanges, AfterViewInit {
|
|
890
|
-
private elementRef;
|
|
891
|
-
private zone;
|
|
892
|
-
private cdr;
|
|
893
|
-
get element(): GdsBlur;
|
|
894
|
-
constructor();
|
|
895
|
-
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
896
|
-
|
|
897
|
-
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
898
|
-
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
899
|
-
is projected.
|
|
900
|
-
|
|
901
|
-
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
902
|
-
element needs to be measured synchronously after being added to the DOM. */
|
|
903
|
-
syncFirstRender?: GdsBlur['syncFirstRender'];
|
|
904
|
-
ngOnInit(): void;
|
|
905
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
906
|
-
ngAfterViewInit(): void;
|
|
907
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GdsBlurComponent, never>;
|
|
908
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GdsBlurComponent, "gds-blur", never, { "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
909
|
-
static ngAcceptInputType_syncFirstRender: unknown;
|
|
910
|
-
}
|
|
911
|
-
|
|
912
912
|
/**
|
|
913
913
|
* Angular wrapper for the gds-calendar web component
|
|
914
914
|
*
|
|
@@ -2994,35 +2994,6 @@ declare class GdsFormSummaryComponent implements OnInit, OnChanges, AfterViewIni
|
|
|
2994
2994
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
2995
2995
|
}
|
|
2996
2996
|
|
|
2997
|
-
/**
|
|
2998
|
-
* Angular wrapper for the gds-grouped-list web component
|
|
2999
|
-
*
|
|
3000
|
-
*/
|
|
3001
|
-
declare class GdsGroupedListComponent implements OnInit, OnChanges, AfterViewInit {
|
|
3002
|
-
private elementRef;
|
|
3003
|
-
private zone;
|
|
3004
|
-
private cdr;
|
|
3005
|
-
get element(): GdsGroupedList;
|
|
3006
|
-
constructor();
|
|
3007
|
-
/** The label for the list that will render in the shadowDOM as the first <li> element in the list with the class `gds-list-heading` */
|
|
3008
|
-
label?: GdsGroupedList['label'];
|
|
3009
|
-
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
3010
|
-
|
|
3011
|
-
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
3012
|
-
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
3013
|
-
is projected.
|
|
3014
|
-
|
|
3015
|
-
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
3016
|
-
element needs to be measured synchronously after being added to the DOM. */
|
|
3017
|
-
syncFirstRender?: GdsGroupedList['syncFirstRender'];
|
|
3018
|
-
ngOnInit(): void;
|
|
3019
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
3020
|
-
ngAfterViewInit(): void;
|
|
3021
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GdsGroupedListComponent, never>;
|
|
3022
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GdsGroupedListComponent, "gds-grouped-list", never, { "label": { "alias": "label"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
3023
|
-
static ngAcceptInputType_syncFirstRender: unknown;
|
|
3024
|
-
}
|
|
3025
|
-
|
|
3026
2997
|
/**
|
|
3027
2998
|
* Angular wrapper for the gds-grid web component
|
|
3028
2999
|
* The `gds-grid` is a custom element that provides a flexible grid system. It uses CSS grid layout to arrange its child elements into columns. This component is highly customizable and responsive, allowing you to specify the number of `columns`, `gap`, `padding`, and fluidity for different devices with automated column size based on the content using the `auto-columns` attribute.
|
|
@@ -3260,6 +3231,35 @@ declare class GdsGridComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
3260
3231
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
3261
3232
|
}
|
|
3262
3233
|
|
|
3234
|
+
/**
|
|
3235
|
+
* Angular wrapper for the gds-grouped-list web component
|
|
3236
|
+
*
|
|
3237
|
+
*/
|
|
3238
|
+
declare class GdsGroupedListComponent implements OnInit, OnChanges, AfterViewInit {
|
|
3239
|
+
private elementRef;
|
|
3240
|
+
private zone;
|
|
3241
|
+
private cdr;
|
|
3242
|
+
get element(): GdsGroupedList;
|
|
3243
|
+
constructor();
|
|
3244
|
+
/** The label for the list that will render in the shadowDOM as the first <li> element in the list with the class `gds-list-heading` */
|
|
3245
|
+
label?: GdsGroupedList['label'];
|
|
3246
|
+
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
3247
|
+
|
|
3248
|
+
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
3249
|
+
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
3250
|
+
is projected.
|
|
3251
|
+
|
|
3252
|
+
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
3253
|
+
element needs to be measured synchronously after being added to the DOM. */
|
|
3254
|
+
syncFirstRender?: GdsGroupedList['syncFirstRender'];
|
|
3255
|
+
ngOnInit(): void;
|
|
3256
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
3257
|
+
ngAfterViewInit(): void;
|
|
3258
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GdsGroupedListComponent, never>;
|
|
3259
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GdsGroupedListComponent, "gds-grouped-list", never, { "label": { "alias": "label"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
3260
|
+
static ngAcceptInputType_syncFirstRender: unknown;
|
|
3261
|
+
}
|
|
3262
|
+
|
|
3263
3263
|
/**
|
|
3264
3264
|
* Angular wrapper for the gds-img web component
|
|
3265
3265
|
*
|
|
@@ -3687,146 +3687,129 @@ declare class GdsLinkComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
3687
3687
|
}
|
|
3688
3688
|
|
|
3689
3689
|
/**
|
|
3690
|
-
* Angular wrapper for the gds-
|
|
3691
|
-
*
|
|
3690
|
+
* Angular wrapper for the gds-list web component
|
|
3691
|
+
* `gds-list` is a container for `gds-list-item` elements, expressing the semantic `list` role.
|
|
3692
|
+
|
|
3693
|
+
It extends `gds-flex` and defaults `flex-direction` to `column`.
|
|
3692
3694
|
*/
|
|
3693
|
-
declare class
|
|
3695
|
+
declare class GdsListComponent implements OnInit, OnChanges, AfterViewInit {
|
|
3694
3696
|
private elementRef;
|
|
3695
3697
|
private zone;
|
|
3696
3698
|
private cdr;
|
|
3697
|
-
get element():
|
|
3699
|
+
get element(): GdsList;
|
|
3698
3700
|
constructor();
|
|
3699
|
-
/**
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
```html
|
|
3703
|
-
<gds-div background="neutral-01/0.2"></gds-div>
|
|
3704
|
-
``` */
|
|
3705
|
-
background?: GdsMask['background'];
|
|
3706
|
-
maskImage?: GdsMask['mask-image'];
|
|
3707
|
-
maskSize?: GdsMask['mask-size'];
|
|
3708
|
-
maskRepeat?: GdsMask['mask-repeat'];
|
|
3709
|
-
maskPosition?: GdsMask['mask-position'];
|
|
3710
|
-
/** Controls the backdrop-filter property of the container.
|
|
3711
|
-
When you want to apply a backdrop blur filter to the container you can use this property.
|
|
3712
|
-
|
|
3713
|
-
```html
|
|
3714
|
-
<gds-mask backdrop-filter="20px"></gds-mask>
|
|
3715
|
-
```
|
|
3716
|
-
|
|
3717
|
-
The above example will apply a backdrop blur filter of `20px`.
|
|
3718
|
-
|
|
3719
|
-
The filter also support breakpoint syntax like this:
|
|
3720
|
-
|
|
3721
|
-
```html
|
|
3722
|
-
<gds-mask backdrop-filter="s{20px} m{40px} l{60px}"></gds-mask>
|
|
3723
|
-
```
|
|
3724
|
-
|
|
3725
|
-
The above example will apply the filter style of `20px` for `small` devices, `40px` for `medium` devices, and `60px` for large devices. */
|
|
3726
|
-
backdropFilter?: GdsMask['backdrop-filter'];
|
|
3727
|
-
/** Style Expression Property that controls the `position` property.
|
|
3728
|
-
Supports all valid CSS `position` values. */
|
|
3729
|
-
position?: GdsMask['position'];
|
|
3730
|
-
/** Controls the display property.
|
|
3731
|
-
Supports all valid CSS display values. */
|
|
3732
|
-
display?: GdsMask['display'];
|
|
3733
|
-
/** Style Expression Property that controls the `inset` property.
|
|
3734
|
-
Supports all valid CSS `inset` values. */
|
|
3735
|
-
inset?: GdsMask['inset'];
|
|
3701
|
+
/** Renders dividers (borders) between list items. Hides the previous border on sibling items when hovering over a navigational item. */
|
|
3702
|
+
dividers?: GdsList['dividers'];
|
|
3736
3703
|
/** Style Expression Property that controls the `width` property.
|
|
3737
3704
|
Supports space tokens and all valid CSS `width` values. */
|
|
3738
|
-
width?:
|
|
3705
|
+
width?: GdsList['width'];
|
|
3739
3706
|
/** Style Expression Property that controls the `min-width` property.
|
|
3740
3707
|
Supports space tokens and all valid CSS `min-width` values. */
|
|
3741
|
-
minWidth?:
|
|
3708
|
+
minWidth?: GdsList['min-width'];
|
|
3742
3709
|
/** Style Expression Property that controls the `max-width` property.
|
|
3743
3710
|
Supports space tokens and all valid CSS `max-width` values. */
|
|
3744
|
-
maxWidth?:
|
|
3711
|
+
maxWidth?: GdsList['max-width'];
|
|
3745
3712
|
/** Style Expression Property that controls the `inline-size` property.
|
|
3746
3713
|
Supports space tokens and all valid CSS `inline-size` values */
|
|
3747
|
-
inlineSize?:
|
|
3714
|
+
inlineSize?: GdsList['inline-size'];
|
|
3748
3715
|
/** Style Expression Property that controls the `min-inline-size` property.
|
|
3749
3716
|
Supports space tokens and all valid CSS `min-inline-size` values. */
|
|
3750
|
-
minInlineSize?:
|
|
3717
|
+
minInlineSize?: GdsList['min-inline-size'];
|
|
3751
3718
|
/** Style Expression Property that controls the `max-inline-size` property.
|
|
3752
3719
|
Supports space tokens and all valid CSS `max-inline-size` values. */
|
|
3753
|
-
maxInlineSize?:
|
|
3720
|
+
maxInlineSize?: GdsList['max-inline-size'];
|
|
3754
3721
|
/** Style Expression Property that controls the `height` property.
|
|
3755
3722
|
Supports space tokens and all valid CSS `height` values. */
|
|
3756
|
-
height?:
|
|
3723
|
+
height?: GdsList['height'];
|
|
3757
3724
|
/** Style Expression Property that controls the `min-height` property.
|
|
3758
3725
|
Supports space tokens and all valid CSS `min-height` values. */
|
|
3759
|
-
minHeight?:
|
|
3726
|
+
minHeight?: GdsList['min-height'];
|
|
3760
3727
|
/** Style Expression Property that controls the `max-height` property.
|
|
3761
3728
|
Supports space tokens and all valid CSS `max-height` values. */
|
|
3762
|
-
maxHeight?:
|
|
3729
|
+
maxHeight?: GdsList['max-height'];
|
|
3763
3730
|
/** Style Expression Property that controls the `block-size` property.
|
|
3764
3731
|
Supports space tokens and all valid CSS `block-size` values. */
|
|
3765
|
-
blockSize?:
|
|
3732
|
+
blockSize?: GdsList['block-size'];
|
|
3766
3733
|
/** Style Expression Property that controls the `min-block-size` property.
|
|
3767
3734
|
Supports space tokens and all valid CSS `min-block-size` values. */
|
|
3768
|
-
minBlockSize?:
|
|
3735
|
+
minBlockSize?: GdsList['min-block-size'];
|
|
3769
3736
|
/** Style Expression Property that controls the `max-block-size` property.
|
|
3770
3737
|
Supports space tokens and all valid CSS `max-block-size` values. */
|
|
3771
|
-
maxBlockSize?:
|
|
3738
|
+
maxBlockSize?: GdsList['max-block-size'];
|
|
3772
3739
|
/** Style Expression Property that controls the `margin` property.
|
|
3773
3740
|
Only accepts space tokens. */
|
|
3774
|
-
margin?:
|
|
3741
|
+
margin?: GdsList['margin'];
|
|
3775
3742
|
/** Style Expression Property that controls the `margin-inline` property.
|
|
3776
3743
|
Only accepts space tokens. */
|
|
3777
|
-
marginInline?:
|
|
3744
|
+
marginInline?: GdsList['margin-inline'];
|
|
3778
3745
|
/** Style Expression Property that controls the `margin-block` property.
|
|
3779
3746
|
Only accepts space tokens. */
|
|
3780
|
-
marginBlock?:
|
|
3747
|
+
marginBlock?: GdsList['margin-block'];
|
|
3781
3748
|
/** Style Expression Property that controls the `padding` property.
|
|
3782
3749
|
Only accepts space tokens. */
|
|
3783
|
-
padding?:
|
|
3750
|
+
padding?: GdsList['padding'];
|
|
3784
3751
|
/** Style Expression Property that controls the `padding-inline` property.
|
|
3785
3752
|
Only accepts space tokens. */
|
|
3786
|
-
paddingInline?:
|
|
3753
|
+
paddingInline?: GdsList['padding-inline'];
|
|
3787
3754
|
/** Style Expression Property that controls the `padding-block` property.
|
|
3788
3755
|
Only accepts space tokens. */
|
|
3789
|
-
paddingBlock?:
|
|
3756
|
+
paddingBlock?: GdsList['padding-block'];
|
|
3790
3757
|
/** Style Expression Property that controls the `align-self` property.
|
|
3791
3758
|
Supports all valid CSS `align-self` values. */
|
|
3792
|
-
alignSelf?:
|
|
3759
|
+
alignSelf?: GdsList['align-self'];
|
|
3793
3760
|
/** Style Expression Property that controls the `justify-self` property.
|
|
3794
3761
|
Supports all valid CSS `justify-self` values. */
|
|
3795
|
-
justifySelf?:
|
|
3762
|
+
justifySelf?: GdsList['justify-self'];
|
|
3796
3763
|
/** Style Expression Property that controls the `place-self` property.
|
|
3797
3764
|
Supports all valid CSS `place-self` values. */
|
|
3798
|
-
placeSelf?:
|
|
3765
|
+
placeSelf?: GdsList['place-self'];
|
|
3799
3766
|
/** Style Expression Property that controls the `grid-column` property.
|
|
3800
3767
|
Supports all valid CSS grid-column values.
|
|
3801
3768
|
Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
|
|
3802
|
-
gridColumn?:
|
|
3769
|
+
gridColumn?: GdsList['grid-column'];
|
|
3803
3770
|
/** Style Expression Property that controls the `grid-row` property.
|
|
3804
3771
|
Supports all valid CSS `grid-row` values. */
|
|
3805
|
-
gridRow?:
|
|
3772
|
+
gridRow?: GdsList['grid-row'];
|
|
3806
3773
|
/** Style Expression Property that controls the `grid-area` property.
|
|
3807
3774
|
Supports all valid CSS `grid-area` values. */
|
|
3808
|
-
gridArea?:
|
|
3775
|
+
gridArea?: GdsList['grid-area'];
|
|
3809
3776
|
/** Style Expression Property that controls the `flex` property.
|
|
3810
3777
|
Supports all valid CSS `flex` values. */
|
|
3811
|
-
flex?:
|
|
3778
|
+
flex?: GdsList['flex'];
|
|
3812
3779
|
/** Style Expression Property that controls the `order` property.
|
|
3813
3780
|
Supports all valid CSS `order` values. */
|
|
3814
|
-
order?:
|
|
3781
|
+
order?: GdsList['order'];
|
|
3782
|
+
/** Style Expression Property that controls the `position` property.
|
|
3783
|
+
Supports all valid CSS `position` values. */
|
|
3784
|
+
position?: GdsList['position'];
|
|
3815
3785
|
/** Style Expression Property that controls the `transform` property.
|
|
3816
3786
|
Supports all valid CSS `transform` values. */
|
|
3817
|
-
transform?:
|
|
3787
|
+
transform?: GdsList['transform'];
|
|
3788
|
+
/** Style Expression Property that controls the `inset` property.
|
|
3789
|
+
Supports all valid CSS `inset` values. */
|
|
3790
|
+
inset?: GdsList['inset'];
|
|
3791
|
+
/** Controls the display property.
|
|
3792
|
+
Supports all valid CSS display values. */
|
|
3793
|
+
display?: GdsList['display'];
|
|
3818
3794
|
/** The level of the container is used to resolve the color tokens from the corresponding level.
|
|
3819
3795
|
Check the [Color System documentation page](./?path=/docs/style-colors--docs) for more information.
|
|
3820
3796
|
|
|
3821
3797
|
Default for `gds-div` is level 2. */
|
|
3822
|
-
level?:
|
|
3798
|
+
level?: GdsList['level'];
|
|
3823
3799
|
/** Style Expression Property that controls the `color` property.
|
|
3824
3800
|
Only accepts color tokens and an optional transparency value, in the format tokenName/transparency.
|
|
3825
3801
|
|
|
3826
3802
|
```html
|
|
3827
3803
|
<gds-div color="neutral-01/0.2"></gds-div>
|
|
3828
3804
|
``` */
|
|
3829
|
-
color?:
|
|
3805
|
+
color?: GdsList['color'];
|
|
3806
|
+
/** Style Expression Property that controls the `background` property.
|
|
3807
|
+
Only accepts color tokens and an optional transparency value, in the format tokenName/transparency.
|
|
3808
|
+
|
|
3809
|
+
```html
|
|
3810
|
+
<gds-div background="neutral-01/0.2"></gds-div>
|
|
3811
|
+
``` */
|
|
3812
|
+
background?: GdsList['background'];
|
|
3830
3813
|
/** Style Expression Property that controls the `border` property.
|
|
3831
3814
|
Accepts a string of the same format as the CSS border property.
|
|
3832
3815
|
|
|
@@ -3835,95 +3818,95 @@ declare class GdsMaskComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
3835
3818
|
```
|
|
3836
3819
|
|
|
3837
3820
|
Where the size value accepts space tokens and the color value accepts color tokens and an optional transparency value. */
|
|
3838
|
-
border?:
|
|
3821
|
+
border?: GdsList['border'];
|
|
3839
3822
|
/** Style Expression Property that controls the `border-color` property.
|
|
3840
3823
|
Only accepts color tokens and an optional transparency value, in the format tokenName/transparency.
|
|
3841
3824
|
|
|
3842
3825
|
```html
|
|
3843
3826
|
<gds-div border-color="subtle-01/0.2"></gds-div>
|
|
3844
3827
|
``` */
|
|
3845
|
-
borderColor?:
|
|
3828
|
+
borderColor?: GdsList['border-color'];
|
|
3846
3829
|
/** Style Expression Property that controls the `border-width` property.
|
|
3847
3830
|
Only accepts space tokens. */
|
|
3848
|
-
borderWidth?:
|
|
3831
|
+
borderWidth?: GdsList['border-width'];
|
|
3849
3832
|
/** Style Expression Property that controls the `border-style` property.
|
|
3850
3833
|
Supports all valid CSS `border-style` values. */
|
|
3851
|
-
borderStyle?:
|
|
3834
|
+
borderStyle?: GdsList['border-style'];
|
|
3852
3835
|
/** Style Expression Property that controls the `border-radius` property.
|
|
3853
3836
|
Only accepts space tokens. */
|
|
3854
|
-
borderRadius?:
|
|
3837
|
+
borderRadius?: GdsList['border-radius'];
|
|
3855
3838
|
/** Style Expression Property for the `box-shadow` property.
|
|
3856
3839
|
|
|
3857
3840
|
Accepts shadow tokens from the design system.
|
|
3858
3841
|
|
|
3859
3842
|
`xs`, `s`, `m`, `l`, `xl` */
|
|
3860
|
-
boxShadow?:
|
|
3843
|
+
boxShadow?: GdsList['box-shadow'];
|
|
3861
3844
|
/** Style Expression Property that controls the `opacity` property.
|
|
3862
3845
|
Supports all valid CSS `opacity` values. */
|
|
3863
|
-
opacity?:
|
|
3846
|
+
opacity?: GdsList['opacity'];
|
|
3864
3847
|
/** Style Expression Property that controls the `overflow` property.
|
|
3865
3848
|
Supports all valid CSS `overflow` values. */
|
|
3866
|
-
overflow?:
|
|
3849
|
+
overflow?: GdsList['overflow'];
|
|
3867
3850
|
/** Style Expression Property that controls the `box-sizing` property.
|
|
3868
3851
|
Supports all valid CSS `box-sizing` values. */
|
|
3869
|
-
boxSizing?:
|
|
3852
|
+
boxSizing?: GdsList['box-sizing'];
|
|
3870
3853
|
/** Style Expression Property that controls the `z-index` property.
|
|
3871
3854
|
Supports all valid CSS `z-index` values. */
|
|
3872
|
-
zIndex?:
|
|
3855
|
+
zIndex?: GdsList['z-index'];
|
|
3873
3856
|
/** Style Expression Property that controls the `font` property.
|
|
3874
3857
|
Supports all font tokens from the design system. */
|
|
3875
|
-
font?:
|
|
3858
|
+
font?: GdsList['font'];
|
|
3876
3859
|
/** Style Expression Property that controls the `font-weight` property.
|
|
3877
3860
|
Supports all typography weight tokens from the design system. */
|
|
3878
|
-
fontWeight?:
|
|
3861
|
+
fontWeight?: GdsList['font-weight'];
|
|
3879
3862
|
/** Style Expression Property that controls the `text-align` property.
|
|
3880
3863
|
Supports all valid CSS `text-align` values. */
|
|
3881
|
-
textAlign?:
|
|
3864
|
+
textAlign?: GdsList['text-align'];
|
|
3882
3865
|
/** Style Expression Property that controls the `text-wrap` property.
|
|
3883
3866
|
Supports all valid CSS `text-wrap` values. */
|
|
3884
|
-
textWrap?:
|
|
3867
|
+
textWrap?: GdsList['text-wrap'];
|
|
3885
3868
|
/** Style Expression Property that controls the `overflow-wrap` property.
|
|
3886
3869
|
Supports all valid CSS `overflow-wrap` values. */
|
|
3887
|
-
overflowWrap?:
|
|
3870
|
+
overflowWrap?: GdsList['overflow-wrap'];
|
|
3888
3871
|
/** Style Expression Property that controls the `white-space` property.
|
|
3889
3872
|
Supports all valid CSS `white-space` values. */
|
|
3890
|
-
whiteSpace?:
|
|
3873
|
+
whiteSpace?: GdsList['white-space'];
|
|
3891
3874
|
/** Style Expression Property that controls the `gap` property.
|
|
3892
3875
|
Only accepts space tokens. */
|
|
3893
|
-
gap?:
|
|
3876
|
+
gap?: GdsList['gap'];
|
|
3894
3877
|
/** Style Expression Property that controls the `align-items` property.
|
|
3895
3878
|
Supports all valid CSS `align-items` values. */
|
|
3896
|
-
alignItems?:
|
|
3879
|
+
alignItems?: GdsList['align-items'];
|
|
3897
3880
|
/** Style Expression Property that controls the `align-content` property.
|
|
3898
3881
|
Supports all valid CSS `align-content` values. */
|
|
3899
|
-
alignContent?:
|
|
3882
|
+
alignContent?: GdsList['align-content'];
|
|
3900
3883
|
/** Style Expression Property that controls the `justify-content` property.
|
|
3901
3884
|
Supports all valid CSS `justify-content` values. */
|
|
3902
|
-
justifyContent?:
|
|
3885
|
+
justifyContent?: GdsList['justify-content'];
|
|
3903
3886
|
/** Style Expression Property that controls the `justify-items` property.
|
|
3904
3887
|
Supports all valid CSS `justify-items` values. */
|
|
3905
|
-
justifyItems?:
|
|
3888
|
+
justifyItems?: GdsList['justify-items'];
|
|
3906
3889
|
/** Style Expression Property that controls the `flex-direction` property.
|
|
3907
3890
|
Supports all valid CSS `flex-direction` values. */
|
|
3908
|
-
flexDirection?:
|
|
3891
|
+
flexDirection?: GdsList['flex-direction'];
|
|
3909
3892
|
/** Style Expression Property that controls the `flex-wrap` property.
|
|
3910
3893
|
Supports all valid CSS `flex-wrap` values. */
|
|
3911
|
-
flexWrap?:
|
|
3894
|
+
flexWrap?: GdsList['flex-wrap'];
|
|
3912
3895
|
/** Style Expression Property that controls the `place-items` property.
|
|
3913
3896
|
Supports all valid CSS `place-items` values. */
|
|
3914
|
-
placeItems?:
|
|
3897
|
+
placeItems?: GdsList['place-items'];
|
|
3915
3898
|
/** Style Expression Property that controls the `place-content` property.
|
|
3916
3899
|
Supports all valid CSS `place-content` values. */
|
|
3917
|
-
placeContent?:
|
|
3900
|
+
placeContent?: GdsList['place-content'];
|
|
3918
3901
|
/** Style Expression Property that controls the `aspect-ratio` property.
|
|
3919
3902
|
Supports all valid CSS `aspect-ratio` values. */
|
|
3920
|
-
aspectRatio?:
|
|
3903
|
+
aspectRatio?: GdsList['aspect-ratio'];
|
|
3921
3904
|
/** Style Expression Property that controls the `cursor` property.
|
|
3922
3905
|
Supports all valid CSS `cursor` values. */
|
|
3923
|
-
cursor?:
|
|
3906
|
+
cursor?: GdsList['cursor'];
|
|
3924
3907
|
/** Style Expression Property that controls the `pointer-events` property.
|
|
3925
3908
|
Supports all valid CSS `pointer-events` values. */
|
|
3926
|
-
pointerEvents?:
|
|
3909
|
+
pointerEvents?: GdsList['pointer-events'];
|
|
3927
3910
|
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
3928
3911
|
|
|
3929
3912
|
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
@@ -3932,139 +3915,157 @@ declare class GdsMaskComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
3932
3915
|
|
|
3933
3916
|
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
3934
3917
|
element needs to be measured synchronously after being added to the DOM. */
|
|
3935
|
-
syncFirstRender?:
|
|
3918
|
+
syncFirstRender?: GdsList['syncFirstRender'];
|
|
3936
3919
|
ngOnInit(): void;
|
|
3937
3920
|
ngOnChanges(changes: SimpleChanges): void;
|
|
3938
3921
|
ngAfterViewInit(): void;
|
|
3939
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
3940
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
3922
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GdsListComponent, never>;
|
|
3923
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GdsListComponent, "gds-list", never, { "dividers": { "alias": "dividers"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "height": { "alias": "height"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "blockSize": { "alias": "blockSize"; "required": false; }; "minBlockSize": { "alias": "minBlockSize"; "required": false; }; "maxBlockSize": { "alias": "maxBlockSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "paddingInline": { "alias": "paddingInline"; "required": false; }; "paddingBlock": { "alias": "paddingBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "position": { "alias": "position"; "required": false; }; "transform": { "alias": "transform"; "required": false; }; "inset": { "alias": "inset"; "required": false; }; "display": { "alias": "display"; "required": false; }; "level": { "alias": "level"; "required": false; }; "color": { "alias": "color"; "required": false; }; "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderColor": { "alias": "borderColor"; "required": false; }; "borderWidth": { "alias": "borderWidth"; "required": false; }; "borderStyle": { "alias": "borderStyle"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "boxShadow": { "alias": "boxShadow"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "overflow": { "alias": "overflow"; "required": false; }; "boxSizing": { "alias": "boxSizing"; "required": false; }; "zIndex": { "alias": "zIndex"; "required": false; }; "font": { "alias": "font"; "required": false; }; "fontWeight": { "alias": "fontWeight"; "required": false; }; "textAlign": { "alias": "textAlign"; "required": false; }; "textWrap": { "alias": "textWrap"; "required": false; }; "overflowWrap": { "alias": "overflowWrap"; "required": false; }; "whiteSpace": { "alias": "whiteSpace"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "alignItems": { "alias": "alignItems"; "required": false; }; "alignContent": { "alias": "alignContent"; "required": false; }; "justifyContent": { "alias": "justifyContent"; "required": false; }; "justifyItems": { "alias": "justifyItems"; "required": false; }; "flexDirection": { "alias": "flexDirection"; "required": false; }; "flexWrap": { "alias": "flexWrap"; "required": false; }; "placeItems": { "alias": "placeItems"; "required": false; }; "placeContent": { "alias": "placeContent"; "required": false; }; "aspectRatio": { "alias": "aspectRatio"; "required": false; }; "cursor": { "alias": "cursor"; "required": false; }; "pointerEvents": { "alias": "pointerEvents"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
3924
|
+
static ngAcceptInputType_dividers: unknown;
|
|
3941
3925
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
3942
3926
|
}
|
|
3943
3927
|
|
|
3944
3928
|
/**
|
|
3945
|
-
* Angular wrapper for the gds-
|
|
3946
|
-
*
|
|
3947
|
-
|
|
3948
|
-
It extends `gds-flex` and defaults `flex-direction` to `column`.
|
|
3929
|
+
* Angular wrapper for the gds-mask web component
|
|
3930
|
+
*
|
|
3949
3931
|
*/
|
|
3950
|
-
declare class
|
|
3932
|
+
declare class GdsMaskComponent implements OnInit, OnChanges, AfterViewInit {
|
|
3951
3933
|
private elementRef;
|
|
3952
3934
|
private zone;
|
|
3953
3935
|
private cdr;
|
|
3954
|
-
get element():
|
|
3936
|
+
get element(): GdsMask;
|
|
3955
3937
|
constructor();
|
|
3956
|
-
/**
|
|
3957
|
-
|
|
3938
|
+
/** Style Expression Property that controls the `background` property.
|
|
3939
|
+
Only accepts color tokens and an optional transparency value, in the format tokenName/transparency.
|
|
3940
|
+
|
|
3941
|
+
```html
|
|
3942
|
+
<gds-div background="neutral-01/0.2"></gds-div>
|
|
3943
|
+
``` */
|
|
3944
|
+
background?: GdsMask['background'];
|
|
3945
|
+
maskImage?: GdsMask['mask-image'];
|
|
3946
|
+
maskSize?: GdsMask['mask-size'];
|
|
3947
|
+
maskRepeat?: GdsMask['mask-repeat'];
|
|
3948
|
+
maskPosition?: GdsMask['mask-position'];
|
|
3949
|
+
/** Controls the backdrop-filter property of the container.
|
|
3950
|
+
When you want to apply a backdrop blur filter to the container you can use this property.
|
|
3951
|
+
|
|
3952
|
+
```html
|
|
3953
|
+
<gds-mask backdrop-filter="20px"></gds-mask>
|
|
3954
|
+
```
|
|
3955
|
+
|
|
3956
|
+
The above example will apply a backdrop blur filter of `20px`.
|
|
3957
|
+
|
|
3958
|
+
The filter also support breakpoint syntax like this:
|
|
3959
|
+
|
|
3960
|
+
```html
|
|
3961
|
+
<gds-mask backdrop-filter="s{20px} m{40px} l{60px}"></gds-mask>
|
|
3962
|
+
```
|
|
3963
|
+
|
|
3964
|
+
The above example will apply the filter style of `20px` for `small` devices, `40px` for `medium` devices, and `60px` for large devices. */
|
|
3965
|
+
backdropFilter?: GdsMask['backdrop-filter'];
|
|
3966
|
+
/** Style Expression Property that controls the `position` property.
|
|
3967
|
+
Supports all valid CSS `position` values. */
|
|
3968
|
+
position?: GdsMask['position'];
|
|
3969
|
+
/** Controls the display property.
|
|
3970
|
+
Supports all valid CSS display values. */
|
|
3971
|
+
display?: GdsMask['display'];
|
|
3972
|
+
/** Style Expression Property that controls the `inset` property.
|
|
3973
|
+
Supports all valid CSS `inset` values. */
|
|
3974
|
+
inset?: GdsMask['inset'];
|
|
3958
3975
|
/** Style Expression Property that controls the `width` property.
|
|
3959
3976
|
Supports space tokens and all valid CSS `width` values. */
|
|
3960
|
-
width?:
|
|
3977
|
+
width?: GdsMask['width'];
|
|
3961
3978
|
/** Style Expression Property that controls the `min-width` property.
|
|
3962
3979
|
Supports space tokens and all valid CSS `min-width` values. */
|
|
3963
|
-
minWidth?:
|
|
3980
|
+
minWidth?: GdsMask['min-width'];
|
|
3964
3981
|
/** Style Expression Property that controls the `max-width` property.
|
|
3965
3982
|
Supports space tokens and all valid CSS `max-width` values. */
|
|
3966
|
-
maxWidth?:
|
|
3983
|
+
maxWidth?: GdsMask['max-width'];
|
|
3967
3984
|
/** Style Expression Property that controls the `inline-size` property.
|
|
3968
3985
|
Supports space tokens and all valid CSS `inline-size` values */
|
|
3969
|
-
inlineSize?:
|
|
3986
|
+
inlineSize?: GdsMask['inline-size'];
|
|
3970
3987
|
/** Style Expression Property that controls the `min-inline-size` property.
|
|
3971
3988
|
Supports space tokens and all valid CSS `min-inline-size` values. */
|
|
3972
|
-
minInlineSize?:
|
|
3989
|
+
minInlineSize?: GdsMask['min-inline-size'];
|
|
3973
3990
|
/** Style Expression Property that controls the `max-inline-size` property.
|
|
3974
3991
|
Supports space tokens and all valid CSS `max-inline-size` values. */
|
|
3975
|
-
maxInlineSize?:
|
|
3992
|
+
maxInlineSize?: GdsMask['max-inline-size'];
|
|
3976
3993
|
/** Style Expression Property that controls the `height` property.
|
|
3977
3994
|
Supports space tokens and all valid CSS `height` values. */
|
|
3978
|
-
height?:
|
|
3995
|
+
height?: GdsMask['height'];
|
|
3979
3996
|
/** Style Expression Property that controls the `min-height` property.
|
|
3980
3997
|
Supports space tokens and all valid CSS `min-height` values. */
|
|
3981
|
-
minHeight?:
|
|
3998
|
+
minHeight?: GdsMask['min-height'];
|
|
3982
3999
|
/** Style Expression Property that controls the `max-height` property.
|
|
3983
4000
|
Supports space tokens and all valid CSS `max-height` values. */
|
|
3984
|
-
maxHeight?:
|
|
4001
|
+
maxHeight?: GdsMask['max-height'];
|
|
3985
4002
|
/** Style Expression Property that controls the `block-size` property.
|
|
3986
4003
|
Supports space tokens and all valid CSS `block-size` values. */
|
|
3987
|
-
blockSize?:
|
|
4004
|
+
blockSize?: GdsMask['block-size'];
|
|
3988
4005
|
/** Style Expression Property that controls the `min-block-size` property.
|
|
3989
4006
|
Supports space tokens and all valid CSS `min-block-size` values. */
|
|
3990
|
-
minBlockSize?:
|
|
4007
|
+
minBlockSize?: GdsMask['min-block-size'];
|
|
3991
4008
|
/** Style Expression Property that controls the `max-block-size` property.
|
|
3992
4009
|
Supports space tokens and all valid CSS `max-block-size` values. */
|
|
3993
|
-
maxBlockSize?:
|
|
4010
|
+
maxBlockSize?: GdsMask['max-block-size'];
|
|
3994
4011
|
/** Style Expression Property that controls the `margin` property.
|
|
3995
4012
|
Only accepts space tokens. */
|
|
3996
|
-
margin?:
|
|
4013
|
+
margin?: GdsMask['margin'];
|
|
3997
4014
|
/** Style Expression Property that controls the `margin-inline` property.
|
|
3998
4015
|
Only accepts space tokens. */
|
|
3999
|
-
marginInline?:
|
|
4016
|
+
marginInline?: GdsMask['margin-inline'];
|
|
4000
4017
|
/** Style Expression Property that controls the `margin-block` property.
|
|
4001
4018
|
Only accepts space tokens. */
|
|
4002
|
-
marginBlock?:
|
|
4019
|
+
marginBlock?: GdsMask['margin-block'];
|
|
4003
4020
|
/** Style Expression Property that controls the `padding` property.
|
|
4004
4021
|
Only accepts space tokens. */
|
|
4005
|
-
padding?:
|
|
4022
|
+
padding?: GdsMask['padding'];
|
|
4006
4023
|
/** Style Expression Property that controls the `padding-inline` property.
|
|
4007
4024
|
Only accepts space tokens. */
|
|
4008
|
-
paddingInline?:
|
|
4025
|
+
paddingInline?: GdsMask['padding-inline'];
|
|
4009
4026
|
/** Style Expression Property that controls the `padding-block` property.
|
|
4010
4027
|
Only accepts space tokens. */
|
|
4011
|
-
paddingBlock?:
|
|
4028
|
+
paddingBlock?: GdsMask['padding-block'];
|
|
4012
4029
|
/** Style Expression Property that controls the `align-self` property.
|
|
4013
4030
|
Supports all valid CSS `align-self` values. */
|
|
4014
|
-
alignSelf?:
|
|
4031
|
+
alignSelf?: GdsMask['align-self'];
|
|
4015
4032
|
/** Style Expression Property that controls the `justify-self` property.
|
|
4016
4033
|
Supports all valid CSS `justify-self` values. */
|
|
4017
|
-
justifySelf?:
|
|
4034
|
+
justifySelf?: GdsMask['justify-self'];
|
|
4018
4035
|
/** Style Expression Property that controls the `place-self` property.
|
|
4019
4036
|
Supports all valid CSS `place-self` values. */
|
|
4020
|
-
placeSelf?:
|
|
4037
|
+
placeSelf?: GdsMask['place-self'];
|
|
4021
4038
|
/** Style Expression Property that controls the `grid-column` property.
|
|
4022
4039
|
Supports all valid CSS grid-column values.
|
|
4023
4040
|
Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
|
|
4024
|
-
gridColumn?:
|
|
4041
|
+
gridColumn?: GdsMask['grid-column'];
|
|
4025
4042
|
/** Style Expression Property that controls the `grid-row` property.
|
|
4026
4043
|
Supports all valid CSS `grid-row` values. */
|
|
4027
|
-
gridRow?:
|
|
4044
|
+
gridRow?: GdsMask['grid-row'];
|
|
4028
4045
|
/** Style Expression Property that controls the `grid-area` property.
|
|
4029
4046
|
Supports all valid CSS `grid-area` values. */
|
|
4030
|
-
gridArea?:
|
|
4047
|
+
gridArea?: GdsMask['grid-area'];
|
|
4031
4048
|
/** Style Expression Property that controls the `flex` property.
|
|
4032
4049
|
Supports all valid CSS `flex` values. */
|
|
4033
|
-
flex?:
|
|
4050
|
+
flex?: GdsMask['flex'];
|
|
4034
4051
|
/** Style Expression Property that controls the `order` property.
|
|
4035
4052
|
Supports all valid CSS `order` values. */
|
|
4036
|
-
order?:
|
|
4037
|
-
/** Style Expression Property that controls the `position` property.
|
|
4038
|
-
Supports all valid CSS `position` values. */
|
|
4039
|
-
position?: GdsList['position'];
|
|
4053
|
+
order?: GdsMask['order'];
|
|
4040
4054
|
/** Style Expression Property that controls the `transform` property.
|
|
4041
4055
|
Supports all valid CSS `transform` values. */
|
|
4042
|
-
transform?:
|
|
4043
|
-
/** Style Expression Property that controls the `inset` property.
|
|
4044
|
-
Supports all valid CSS `inset` values. */
|
|
4045
|
-
inset?: GdsList['inset'];
|
|
4046
|
-
/** Controls the display property.
|
|
4047
|
-
Supports all valid CSS display values. */
|
|
4048
|
-
display?: GdsList['display'];
|
|
4056
|
+
transform?: GdsMask['transform'];
|
|
4049
4057
|
/** The level of the container is used to resolve the color tokens from the corresponding level.
|
|
4050
4058
|
Check the [Color System documentation page](./?path=/docs/style-colors--docs) for more information.
|
|
4051
4059
|
|
|
4052
4060
|
Default for `gds-div` is level 2. */
|
|
4053
|
-
level?:
|
|
4061
|
+
level?: GdsMask['level'];
|
|
4054
4062
|
/** Style Expression Property that controls the `color` property.
|
|
4055
4063
|
Only accepts color tokens and an optional transparency value, in the format tokenName/transparency.
|
|
4056
4064
|
|
|
4057
4065
|
```html
|
|
4058
4066
|
<gds-div color="neutral-01/0.2"></gds-div>
|
|
4059
4067
|
``` */
|
|
4060
|
-
color?:
|
|
4061
|
-
/** Style Expression Property that controls the `background` property.
|
|
4062
|
-
Only accepts color tokens and an optional transparency value, in the format tokenName/transparency.
|
|
4063
|
-
|
|
4064
|
-
```html
|
|
4065
|
-
<gds-div background="neutral-01/0.2"></gds-div>
|
|
4066
|
-
``` */
|
|
4067
|
-
background?: GdsList['background'];
|
|
4068
|
+
color?: GdsMask['color'];
|
|
4068
4069
|
/** Style Expression Property that controls the `border` property.
|
|
4069
4070
|
Accepts a string of the same format as the CSS border property.
|
|
4070
4071
|
|
|
@@ -4073,95 +4074,95 @@ declare class GdsListComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
4073
4074
|
```
|
|
4074
4075
|
|
|
4075
4076
|
Where the size value accepts space tokens and the color value accepts color tokens and an optional transparency value. */
|
|
4076
|
-
border?:
|
|
4077
|
+
border?: GdsMask['border'];
|
|
4077
4078
|
/** Style Expression Property that controls the `border-color` property.
|
|
4078
4079
|
Only accepts color tokens and an optional transparency value, in the format tokenName/transparency.
|
|
4079
4080
|
|
|
4080
4081
|
```html
|
|
4081
4082
|
<gds-div border-color="subtle-01/0.2"></gds-div>
|
|
4082
4083
|
``` */
|
|
4083
|
-
borderColor?:
|
|
4084
|
+
borderColor?: GdsMask['border-color'];
|
|
4084
4085
|
/** Style Expression Property that controls the `border-width` property.
|
|
4085
4086
|
Only accepts space tokens. */
|
|
4086
|
-
borderWidth?:
|
|
4087
|
+
borderWidth?: GdsMask['border-width'];
|
|
4087
4088
|
/** Style Expression Property that controls the `border-style` property.
|
|
4088
4089
|
Supports all valid CSS `border-style` values. */
|
|
4089
|
-
borderStyle?:
|
|
4090
|
+
borderStyle?: GdsMask['border-style'];
|
|
4090
4091
|
/** Style Expression Property that controls the `border-radius` property.
|
|
4091
4092
|
Only accepts space tokens. */
|
|
4092
|
-
borderRadius?:
|
|
4093
|
+
borderRadius?: GdsMask['border-radius'];
|
|
4093
4094
|
/** Style Expression Property for the `box-shadow` property.
|
|
4094
4095
|
|
|
4095
4096
|
Accepts shadow tokens from the design system.
|
|
4096
4097
|
|
|
4097
4098
|
`xs`, `s`, `m`, `l`, `xl` */
|
|
4098
|
-
boxShadow?:
|
|
4099
|
+
boxShadow?: GdsMask['box-shadow'];
|
|
4099
4100
|
/** Style Expression Property that controls the `opacity` property.
|
|
4100
4101
|
Supports all valid CSS `opacity` values. */
|
|
4101
|
-
opacity?:
|
|
4102
|
+
opacity?: GdsMask['opacity'];
|
|
4102
4103
|
/** Style Expression Property that controls the `overflow` property.
|
|
4103
4104
|
Supports all valid CSS `overflow` values. */
|
|
4104
|
-
overflow?:
|
|
4105
|
+
overflow?: GdsMask['overflow'];
|
|
4105
4106
|
/** Style Expression Property that controls the `box-sizing` property.
|
|
4106
4107
|
Supports all valid CSS `box-sizing` values. */
|
|
4107
|
-
boxSizing?:
|
|
4108
|
+
boxSizing?: GdsMask['box-sizing'];
|
|
4108
4109
|
/** Style Expression Property that controls the `z-index` property.
|
|
4109
4110
|
Supports all valid CSS `z-index` values. */
|
|
4110
|
-
zIndex?:
|
|
4111
|
+
zIndex?: GdsMask['z-index'];
|
|
4111
4112
|
/** Style Expression Property that controls the `font` property.
|
|
4112
4113
|
Supports all font tokens from the design system. */
|
|
4113
|
-
font?:
|
|
4114
|
+
font?: GdsMask['font'];
|
|
4114
4115
|
/** Style Expression Property that controls the `font-weight` property.
|
|
4115
4116
|
Supports all typography weight tokens from the design system. */
|
|
4116
|
-
fontWeight?:
|
|
4117
|
+
fontWeight?: GdsMask['font-weight'];
|
|
4117
4118
|
/** Style Expression Property that controls the `text-align` property.
|
|
4118
4119
|
Supports all valid CSS `text-align` values. */
|
|
4119
|
-
textAlign?:
|
|
4120
|
+
textAlign?: GdsMask['text-align'];
|
|
4120
4121
|
/** Style Expression Property that controls the `text-wrap` property.
|
|
4121
4122
|
Supports all valid CSS `text-wrap` values. */
|
|
4122
|
-
textWrap?:
|
|
4123
|
+
textWrap?: GdsMask['text-wrap'];
|
|
4123
4124
|
/** Style Expression Property that controls the `overflow-wrap` property.
|
|
4124
4125
|
Supports all valid CSS `overflow-wrap` values. */
|
|
4125
|
-
overflowWrap?:
|
|
4126
|
+
overflowWrap?: GdsMask['overflow-wrap'];
|
|
4126
4127
|
/** Style Expression Property that controls the `white-space` property.
|
|
4127
4128
|
Supports all valid CSS `white-space` values. */
|
|
4128
|
-
whiteSpace?:
|
|
4129
|
+
whiteSpace?: GdsMask['white-space'];
|
|
4129
4130
|
/** Style Expression Property that controls the `gap` property.
|
|
4130
4131
|
Only accepts space tokens. */
|
|
4131
|
-
gap?:
|
|
4132
|
+
gap?: GdsMask['gap'];
|
|
4132
4133
|
/** Style Expression Property that controls the `align-items` property.
|
|
4133
4134
|
Supports all valid CSS `align-items` values. */
|
|
4134
|
-
alignItems?:
|
|
4135
|
+
alignItems?: GdsMask['align-items'];
|
|
4135
4136
|
/** Style Expression Property that controls the `align-content` property.
|
|
4136
4137
|
Supports all valid CSS `align-content` values. */
|
|
4137
|
-
alignContent?:
|
|
4138
|
+
alignContent?: GdsMask['align-content'];
|
|
4138
4139
|
/** Style Expression Property that controls the `justify-content` property.
|
|
4139
4140
|
Supports all valid CSS `justify-content` values. */
|
|
4140
|
-
justifyContent?:
|
|
4141
|
+
justifyContent?: GdsMask['justify-content'];
|
|
4141
4142
|
/** Style Expression Property that controls the `justify-items` property.
|
|
4142
4143
|
Supports all valid CSS `justify-items` values. */
|
|
4143
|
-
justifyItems?:
|
|
4144
|
+
justifyItems?: GdsMask['justify-items'];
|
|
4144
4145
|
/** Style Expression Property that controls the `flex-direction` property.
|
|
4145
4146
|
Supports all valid CSS `flex-direction` values. */
|
|
4146
|
-
flexDirection?:
|
|
4147
|
+
flexDirection?: GdsMask['flex-direction'];
|
|
4147
4148
|
/** Style Expression Property that controls the `flex-wrap` property.
|
|
4148
4149
|
Supports all valid CSS `flex-wrap` values. */
|
|
4149
|
-
flexWrap?:
|
|
4150
|
+
flexWrap?: GdsMask['flex-wrap'];
|
|
4150
4151
|
/** Style Expression Property that controls the `place-items` property.
|
|
4151
4152
|
Supports all valid CSS `place-items` values. */
|
|
4152
|
-
placeItems?:
|
|
4153
|
+
placeItems?: GdsMask['place-items'];
|
|
4153
4154
|
/** Style Expression Property that controls the `place-content` property.
|
|
4154
4155
|
Supports all valid CSS `place-content` values. */
|
|
4155
|
-
placeContent?:
|
|
4156
|
+
placeContent?: GdsMask['place-content'];
|
|
4156
4157
|
/** Style Expression Property that controls the `aspect-ratio` property.
|
|
4157
4158
|
Supports all valid CSS `aspect-ratio` values. */
|
|
4158
|
-
aspectRatio?:
|
|
4159
|
+
aspectRatio?: GdsMask['aspect-ratio'];
|
|
4159
4160
|
/** Style Expression Property that controls the `cursor` property.
|
|
4160
4161
|
Supports all valid CSS `cursor` values. */
|
|
4161
|
-
cursor?:
|
|
4162
|
+
cursor?: GdsMask['cursor'];
|
|
4162
4163
|
/** Style Expression Property that controls the `pointer-events` property.
|
|
4163
4164
|
Supports all valid CSS `pointer-events` values. */
|
|
4164
|
-
pointerEvents?:
|
|
4165
|
+
pointerEvents?: GdsMask['pointer-events'];
|
|
4165
4166
|
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
4166
4167
|
|
|
4167
4168
|
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
@@ -4170,13 +4171,12 @@ declare class GdsListComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
4170
4171
|
|
|
4171
4172
|
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
4172
4173
|
element needs to be measured synchronously after being added to the DOM. */
|
|
4173
|
-
syncFirstRender?:
|
|
4174
|
+
syncFirstRender?: GdsMask['syncFirstRender'];
|
|
4174
4175
|
ngOnInit(): void;
|
|
4175
4176
|
ngOnChanges(changes: SimpleChanges): void;
|
|
4176
4177
|
ngAfterViewInit(): void;
|
|
4177
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
4178
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
4179
|
-
static ngAcceptInputType_dividers: unknown;
|
|
4178
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GdsMaskComponent, never>;
|
|
4179
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GdsMaskComponent, "gds-mask", never, { "background": { "alias": "background"; "required": false; }; "maskImage": { "alias": "maskImage"; "required": false; }; "maskSize": { "alias": "maskSize"; "required": false; }; "maskRepeat": { "alias": "maskRepeat"; "required": false; }; "maskPosition": { "alias": "maskPosition"; "required": false; }; "backdropFilter": { "alias": "backdropFilter"; "required": false; }; "position": { "alias": "position"; "required": false; }; "display": { "alias": "display"; "required": false; }; "inset": { "alias": "inset"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "height": { "alias": "height"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "blockSize": { "alias": "blockSize"; "required": false; }; "minBlockSize": { "alias": "minBlockSize"; "required": false; }; "maxBlockSize": { "alias": "maxBlockSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "paddingInline": { "alias": "paddingInline"; "required": false; }; "paddingBlock": { "alias": "paddingBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "transform": { "alias": "transform"; "required": false; }; "level": { "alias": "level"; "required": false; }; "color": { "alias": "color"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderColor": { "alias": "borderColor"; "required": false; }; "borderWidth": { "alias": "borderWidth"; "required": false; }; "borderStyle": { "alias": "borderStyle"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "boxShadow": { "alias": "boxShadow"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "overflow": { "alias": "overflow"; "required": false; }; "boxSizing": { "alias": "boxSizing"; "required": false; }; "zIndex": { "alias": "zIndex"; "required": false; }; "font": { "alias": "font"; "required": false; }; "fontWeight": { "alias": "fontWeight"; "required": false; }; "textAlign": { "alias": "textAlign"; "required": false; }; "textWrap": { "alias": "textWrap"; "required": false; }; "overflowWrap": { "alias": "overflowWrap"; "required": false; }; "whiteSpace": { "alias": "whiteSpace"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "alignItems": { "alias": "alignItems"; "required": false; }; "alignContent": { "alias": "alignContent"; "required": false; }; "justifyContent": { "alias": "justifyContent"; "required": false; }; "justifyItems": { "alias": "justifyItems"; "required": false; }; "flexDirection": { "alias": "flexDirection"; "required": false; }; "flexWrap": { "alias": "flexWrap"; "required": false; }; "placeItems": { "alias": "placeItems"; "required": false; }; "placeContent": { "alias": "placeContent"; "required": false; }; "aspectRatio": { "alias": "aspectRatio"; "required": false; }; "cursor": { "alias": "cursor"; "required": false; }; "pointerEvents": { "alias": "pointerEvents"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
4180
4180
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
4181
4181
|
}
|
|
4182
4182
|
|
|
@@ -35474,7 +35474,7 @@ declare class GdsOptionComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
35474
35474
|
*/
|
|
35475
35475
|
declare class GreenCoreNgModule {
|
|
35476
35476
|
static ɵfac: i0.ɵɵFactoryDeclaration<GreenCoreNgModule, never>;
|
|
35477
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GreenCoreNgModule, never, [typeof GdsAlertComponent, typeof GdsBadgeComponent, typeof GdsAvatarComponent, typeof GdsBreadcrumbsComponent, typeof GdsButtonComponent, typeof GdsBlurComponent, typeof GdsCalendarComponent, typeof GdsCardComponent, typeof GdsCardLinkedComponent, typeof GdsCheckboxComponent, typeof GdsCoachmarkComponent, typeof GdsContextMenuComponent, typeof GdsDatepickerComponent, typeof GdsDetailsComponent, typeof GdsDialogComponent, typeof GdsDivComponent, typeof GdsDividerComponent, typeof GdsDropdownComponent, typeof GdsFabComponent, typeof GdsFilterChipsComponent, typeof GdsFlexComponent, typeof GdsFormSummaryComponent, typeof GdsGroupedListComponent, typeof GdsGridComponent, typeof GdsImgComponent, typeof GdsInputComponent, typeof GdsLinkComponent, typeof GdsMaskComponent, typeof GdsListComponent, typeof GdsMenuButtonComponent, typeof GdsPaginationComponent, typeof GdsBackdropComponent, typeof GdsPopoverComponent, typeof GdsRadioComponent, typeof GdsRichTextComponent, typeof GdsSegmentedControlComponent, typeof GdsSelectComponent, typeof GdsSignalComponent, typeof GdsSpinnerComponent, typeof GdsSwitchComponent, typeof GdsTableComponent, typeof GdsTabsComponent, typeof GdsTextComponent, typeof GdsTextareaComponent, typeof GdsThemeComponent, typeof GdsVideoComponent, typeof GdsCardPattern01Component, typeof GdsListItemPattern01Component, typeof GdsAvatarGroupComponent, typeof GdsBreadcrumbComponent, typeof GdsCheckboxGroupComponent, typeof GdsIconDetailsComponent, typeof GdsFilterChipComponent, typeof GdsFormattedAccountComponent, typeof GdsFormattedDateComponent, typeof GdsFormattedNumberComponent, typeof GdsListItemComponent, typeof GdsRadioGroupComponent, typeof GdsSegmentComponent, typeof GdsSensitiveAccountComponent, typeof GdsSensitiveDateComponent, typeof GdsSensitiveNumberComponent, typeof GdsTabComponent, typeof GdsTabPanelComponent, typeof IconAiComponent, typeof IconAirplaneUpComponent, typeof IconArchiveComponent, typeof IconArrowBottomTopComponent, typeof IconArrowBoxLeftAltComponent, typeof IconArrowBoxLeftComponent, typeof IconArrowBoxRightComponent, typeof IconArrowDownComponent, typeof IconArrowInboxComponent, typeof IconArrowLeftRightComponent, typeof IconArrowLeftComponent, typeof IconArrowOutOfBoxComponent, typeof IconArrowRightCircleComponent, typeof IconArrowRightDownCircleComponent, typeof IconArrowRightUpCircleComponent, typeof IconArrowRightComponent, typeof IconArrowRotateClockwiseComponent, typeof IconArrowRotateCounterClockwiseComponent, typeof IconArrowRotateLeftRightComponent, typeof IconArrowRotateRightLeftComponent, typeof IconArrowShareLeftComponent, typeof IconArrowShareRightComponent, typeof IconArrowSplitComponent, typeof IconArrowUpComponent, typeof IconArrowWallDownComponent, typeof IconArrowWallLeftComponent, typeof IconArrowWallRightComponent, typeof IconArrowWallUpComponent, typeof IconArrowComponent, typeof IconArrowsRepeatRightComponent, typeof IconAsteriskComponent, typeof IconAtComponent, typeof IconBackComponent, typeof IconBackwardComponent, typeof IconBagComponent, typeof IconBankComponent, typeof IconBanknote2Component, typeof IconBanknoteComponent, typeof IconBarcodeComponent, typeof IconBarsThreeComponent, typeof IconBarsTwoComponent, typeof IconBasketComponent, typeof IconBatteryLoadingComponent, typeof IconBellComponent, typeof IconBlockComponent, typeof IconBookComponent, typeof IconBookmarkCheckComponent, typeof IconBookmarkDeleteComponent, typeof IconBookmarkPlusComponent, typeof IconBookmarkRemoveComponent, typeof IconBookmarkComponent, typeof IconBooksComponent, typeof IconBrandAppStoreComponent, typeof IconBrandAppleMusicComponent, typeof IconBrandBankidComponent, typeof IconBrandChromeComponent, typeof IconBrandFacebookComponent, typeof IconBrandFigmaComponent, typeof IconBrandFirefoxComponent, typeof IconBrandGithubComponent, typeof IconBrandGreenComponent, typeof IconBrandInstagramComponent, typeof IconBrandLinkedinComponent, typeof IconBrandPlayStoreComponent, typeof IconBrandRssFeedComponent, typeof IconBrandSebComponent, typeof IconBrandSpotifyComponent, typeof IconBrandStorybookComponent, typeof IconBrandSwishWordComponent, typeof IconBrandXComponent, typeof IconBrushComponent, typeof IconBubbleAnnotationComponent, typeof IconBubblesComponent, typeof IconBuildingsComponent, typeof IconBulletListComponent, typeof IconCalculatorComponent, typeof IconCalendarCheckComponent, typeof IconCalendarRepeatComponent, typeof IconCalendarComponent, typeof IconCalenderAddComponent, typeof IconCallComponent, typeof IconCarComponent, typeof IconCarusselComponent, typeof IconChainLinkBrokenComponent, typeof IconChainLinkComponent, typeof IconChartTwoComponent, typeof IconChecklistComponent, typeof IconCheckmarkComponent, typeof IconChevronBottomComponent, typeof IconChevronDoubleDownComponent, typeof IconChevronDoubleLeftComponent, typeof IconChevronDoubleRightComponent, typeof IconChevronDoubleUpComponent, typeof IconChevronDownSmallComponent, typeof IconChevronGrabberVerticalReversedComponent, typeof IconChevronGrabberVerticalComponent, typeof IconChevronLeftSmallComponent, typeof IconChevronLeftComponent, typeof IconChevronRightSmallComponent, typeof IconChevronRightComponent, typeof IconChevronTopSmallComponent, typeof IconChevronTopComponent, typeof IconCircleBanComponent, typeof IconCircleCheckComponent, typeof IconCircleDotsComponent, typeof IconCircleInfoComponent, typeof IconCircleMinusComponent, typeof IconCirclePlaceholderOnComponent, typeof IconCirclePlusComponent, typeof IconCircleQuestionmarkComponent, typeof IconCircleXComponent, typeof IconCirclesThreeComponent, typeof IconClockComponent, typeof IconCloudDownloadComponent, typeof IconCloudUploadComponent, typeof IconCloudySunComponent, typeof IconCodeBracketsComponent, typeof IconCodeComponent, typeof IconCompassRoundComponent, typeof IconCookiesComponent, typeof IconCopyComponent, typeof IconCreditCardAddComponent, typeof IconCreditCardComponent, typeof IconCrossLargeComponent, typeof IconCrossSmallComponent, typeof IconCupHotComponent, typeof IconCursorComponent, typeof IconDevicesComponent, typeof IconDirectionComponent, typeof IconDollarComponent, typeof IconDotGridOneHorizontalComponent, typeof IconDotGridOneVerticalComponent, typeof IconDotGridThreeComponent, typeof IconDotGridTwoComponent, typeof IconEmailComponent, typeof IconEmojiAngryComponent, typeof IconEmojiNeutralComponent, typeof IconEmojiSadComponent, typeof IconEmojiSmileComponent, typeof IconEmojiSmileyComponent, typeof IconEuroComponent, typeof IconExpandComponent, typeof IconEyeOpenComponent, typeof IconEyeSlashComponent, typeof IconFashionComponent, typeof IconFastForwardComponent, typeof IconFileBendComponent, typeof IconFileChartComponent, typeof IconFileTextComponent, typeof IconFilesComponent, typeof IconFilterComponent, typeof IconFlagComponent, typeof IconFloppyDiskComponent, typeof IconFocusComponent, typeof IconFolderAddRightComponent, typeof IconFolderComponent, typeof IconFullscreenComponent, typeof IconGiftComponent, typeof IconGlobusComponent, typeof IconGraduateCapComponent, typeof IconGreenPowerComponent, typeof IconGroupComponent, typeof IconGrowthComponent, typeof IconHeadphonesComponent, typeof IconHeartBeatComponent, typeof IconHeartComponent, typeof IconHistoryComponent, typeof IconHomeEnergyOneComponent, typeof IconHomeEnergyTwoComponent, typeof IconHomeOpenComponent, typeof IconHomeRoofComponent, typeof IconHorizontalAlignmentBottomComponent, typeof IconHourglassComponent, typeof IconImagesComponent, typeof IconInboxEmptyComponent, typeof IconIndustryComponent, typeof IconJpgComponent, typeof IconKeyComponent, typeof IconKnifeSpoonComponent, typeof IconLabComponent, typeof IconLawComponent, typeof IconLeisureComponent, typeof IconLightBulbSimpleComponent, typeof IconLightningComponent, typeof IconLineChartFourComponent, typeof IconLineChartOneComponent, typeof IconLineChartThreeComponent, typeof IconLineChartTwoComponent, typeof IconLockComponent, typeof IconMacbookAirComponent, typeof IconMagnifyingGlassComponent, typeof IconMapPinComponent, typeof IconMegaphoneComponent, typeof IconMenuSidebarComponent, typeof IconMicOffComponent, typeof IconMicOnComponent, typeof IconMinimizeComponent, typeof IconMinusLargeComponent, typeof IconMinusSmallComponent, typeof IconMoneyHandComponent, typeof IconMoneybagComponent, typeof IconMoonComponent, typeof IconMuteComponent, typeof IconNewspaperComponent, typeof IconOfficeComponent, typeof IconPageAddComponent, typeof IconPaperPlaneTopRightComponent, typeof IconPaperclipComponent, typeof IconPauseComponent, typeof IconPdfComponent, typeof IconPencilSignComponent, typeof IconPencilSparkleComponent, typeof IconPencilWaveComponent, typeof IconPensionComponent, typeof IconPeopleA11yComponent, typeof IconPeopleAddComponent, typeof IconPeopleAddedComponent, typeof IconPeopleCircleComponent, typeof IconPeopleCopyComponent, typeof IconPeopleProfileComponent, typeof IconPeopleRemoveComponent, typeof IconPeopleComponent, typeof IconPercentComponent, typeof IconPhoneComponent, typeof IconPieChartComponent, typeof IconPiggyBankComponent, typeof IconPinComponent, typeof IconPinchComponent, typeof IconPlayCircleComponent, typeof IconPlayComponent, typeof IconPlusLargeComponent, typeof IconPlusSmallComponent, typeof IconPngComponent, typeof IconPoopComponent, typeof IconPostcardComponent, typeof IconPoundComponent, typeof IconPowerPlantComponent, typeof IconPowerComponent, typeof IconPrinterComponent, typeof IconPushComponent, typeof IconQrCodeComponent, typeof IconRainyComponent, typeof IconRaisingHandComponent, typeof IconReadingListComponent, typeof IconReceiptBillComponent, typeof IconReceiptionBellComponent, typeof IconRecordComponent, typeof IconRefundComponent, typeof IconRobotComponent, typeof IconRocketComponent, typeof IconRunShortcutComponent, typeof IconSafariComponent, typeof IconSchoolComponent, typeof IconScissorsComponent, typeof IconSearchMenuComponent, typeof IconSettingsGearComponent, typeof IconSettingsSliderHorComponent, typeof IconSettingsSliderVerComponent, typeof IconShapesComponent, typeof IconShareComponent, typeof IconShieldCheckedComponent, typeof IconShieldCrossedComponent, typeof IconShieldComponent, typeof IconShoppingBagComponent, typeof IconSignatureComponent, typeof IconSmartwatchComponent, typeof IconSolarComponent, typeof IconSortAscendingComponent, typeof IconSortDescendingComponent, typeof IconSortDownComponent, typeof IconSortUpComponent, typeof IconSortComponent, typeof IconSquareArrowTopRightComponent, typeof IconSquareBehindSquareComponent, typeof IconSquareGridCircleComponent, typeof IconSquarePlaceholderComponent, typeof IconStarComponent, typeof IconStoreComponent, typeof IconSunComponent, typeof IconSunsetArrowDownComponent, typeof IconTagComponent, typeof IconTargetArrowComponent, typeof IconTelevisionComponent, typeof IconTennisComponent, typeof IconTextEditComponent, typeof IconThermostatComponent, typeof IconThumbsDownComponent, typeof IconThumbsUpComponent, typeof IconTicketComponent, typeof IconTradingViewCandlesComponent, typeof IconTrashCanComponent, typeof IconTreeComponent, typeof IconTrendingFiveComponent, typeof IconTrendingFourComponent, typeof IconTrendingOneComponent, typeof IconTrendingThreeComponent, typeof IconTrendingTwoComponent, typeof IconTriangleExclamationComponent, typeof IconTruckComponent, typeof IconUmbrellaSecurityComponent, typeof IconUnlockedComponent, typeof IconVolumeFullComponent, typeof IconVolumeHalfComponent, typeof IconVolumeOffComponent, typeof IconWalletComponent, typeof IconWarningSignComponent, typeof IconWifiFullComponent, typeof IconYoutubeComponent, typeof IconZapComponent, typeof IconZoomInComponent, typeof IconZoomOutComponent, typeof GdsMenuItemComponent, typeof GdsMenuHeadingComponent, typeof GdsOptionComponent], [typeof GdsAlertComponent, typeof GdsBadgeComponent, typeof GdsAvatarComponent, typeof GdsBreadcrumbsComponent, typeof GdsButtonComponent, typeof GdsBlurComponent, typeof GdsCalendarComponent, typeof GdsCardComponent, typeof GdsCardLinkedComponent, typeof GdsCheckboxComponent, typeof GdsCoachmarkComponent, typeof GdsContextMenuComponent, typeof GdsDatepickerComponent, typeof GdsDetailsComponent, typeof GdsDialogComponent, typeof GdsDivComponent, typeof GdsDividerComponent, typeof GdsDropdownComponent, typeof GdsFabComponent, typeof GdsFilterChipsComponent, typeof GdsFlexComponent, typeof GdsFormSummaryComponent, typeof GdsGroupedListComponent, typeof GdsGridComponent, typeof GdsImgComponent, typeof GdsInputComponent, typeof GdsLinkComponent, typeof GdsMaskComponent, typeof GdsListComponent, typeof GdsMenuButtonComponent, typeof GdsPaginationComponent, typeof GdsBackdropComponent, typeof GdsPopoverComponent, typeof GdsRadioComponent, typeof GdsRichTextComponent, typeof GdsSegmentedControlComponent, typeof GdsSelectComponent, typeof GdsSignalComponent, typeof GdsSpinnerComponent, typeof GdsSwitchComponent, typeof GdsTableComponent, typeof GdsTabsComponent, typeof GdsTextComponent, typeof GdsTextareaComponent, typeof GdsThemeComponent, typeof GdsVideoComponent, typeof GdsCardPattern01Component, typeof GdsListItemPattern01Component, typeof GdsAvatarGroupComponent, typeof GdsBreadcrumbComponent, typeof GdsCheckboxGroupComponent, typeof GdsIconDetailsComponent, typeof GdsFilterChipComponent, typeof GdsFormattedAccountComponent, typeof GdsFormattedDateComponent, typeof GdsFormattedNumberComponent, typeof GdsListItemComponent, typeof GdsRadioGroupComponent, typeof GdsSegmentComponent, typeof GdsSensitiveAccountComponent, typeof GdsSensitiveDateComponent, typeof GdsSensitiveNumberComponent, typeof GdsTabComponent, typeof GdsTabPanelComponent, typeof IconAiComponent, typeof IconAirplaneUpComponent, typeof IconArchiveComponent, typeof IconArrowBottomTopComponent, typeof IconArrowBoxLeftAltComponent, typeof IconArrowBoxLeftComponent, typeof IconArrowBoxRightComponent, typeof IconArrowDownComponent, typeof IconArrowInboxComponent, typeof IconArrowLeftRightComponent, typeof IconArrowLeftComponent, typeof IconArrowOutOfBoxComponent, typeof IconArrowRightCircleComponent, typeof IconArrowRightDownCircleComponent, typeof IconArrowRightUpCircleComponent, typeof IconArrowRightComponent, typeof IconArrowRotateClockwiseComponent, typeof IconArrowRotateCounterClockwiseComponent, typeof IconArrowRotateLeftRightComponent, typeof IconArrowRotateRightLeftComponent, typeof IconArrowShareLeftComponent, typeof IconArrowShareRightComponent, typeof IconArrowSplitComponent, typeof IconArrowUpComponent, typeof IconArrowWallDownComponent, typeof IconArrowWallLeftComponent, typeof IconArrowWallRightComponent, typeof IconArrowWallUpComponent, typeof IconArrowComponent, typeof IconArrowsRepeatRightComponent, typeof IconAsteriskComponent, typeof IconAtComponent, typeof IconBackComponent, typeof IconBackwardComponent, typeof IconBagComponent, typeof IconBankComponent, typeof IconBanknote2Component, typeof IconBanknoteComponent, typeof IconBarcodeComponent, typeof IconBarsThreeComponent, typeof IconBarsTwoComponent, typeof IconBasketComponent, typeof IconBatteryLoadingComponent, typeof IconBellComponent, typeof IconBlockComponent, typeof IconBookComponent, typeof IconBookmarkCheckComponent, typeof IconBookmarkDeleteComponent, typeof IconBookmarkPlusComponent, typeof IconBookmarkRemoveComponent, typeof IconBookmarkComponent, typeof IconBooksComponent, typeof IconBrandAppStoreComponent, typeof IconBrandAppleMusicComponent, typeof IconBrandBankidComponent, typeof IconBrandChromeComponent, typeof IconBrandFacebookComponent, typeof IconBrandFigmaComponent, typeof IconBrandFirefoxComponent, typeof IconBrandGithubComponent, typeof IconBrandGreenComponent, typeof IconBrandInstagramComponent, typeof IconBrandLinkedinComponent, typeof IconBrandPlayStoreComponent, typeof IconBrandRssFeedComponent, typeof IconBrandSebComponent, typeof IconBrandSpotifyComponent, typeof IconBrandStorybookComponent, typeof IconBrandSwishWordComponent, typeof IconBrandXComponent, typeof IconBrushComponent, typeof IconBubbleAnnotationComponent, typeof IconBubblesComponent, typeof IconBuildingsComponent, typeof IconBulletListComponent, typeof IconCalculatorComponent, typeof IconCalendarCheckComponent, typeof IconCalendarRepeatComponent, typeof IconCalendarComponent, typeof IconCalenderAddComponent, typeof IconCallComponent, typeof IconCarComponent, typeof IconCarusselComponent, typeof IconChainLinkBrokenComponent, typeof IconChainLinkComponent, typeof IconChartTwoComponent, typeof IconChecklistComponent, typeof IconCheckmarkComponent, typeof IconChevronBottomComponent, typeof IconChevronDoubleDownComponent, typeof IconChevronDoubleLeftComponent, typeof IconChevronDoubleRightComponent, typeof IconChevronDoubleUpComponent, typeof IconChevronDownSmallComponent, typeof IconChevronGrabberVerticalReversedComponent, typeof IconChevronGrabberVerticalComponent, typeof IconChevronLeftSmallComponent, typeof IconChevronLeftComponent, typeof IconChevronRightSmallComponent, typeof IconChevronRightComponent, typeof IconChevronTopSmallComponent, typeof IconChevronTopComponent, typeof IconCircleBanComponent, typeof IconCircleCheckComponent, typeof IconCircleDotsComponent, typeof IconCircleInfoComponent, typeof IconCircleMinusComponent, typeof IconCirclePlaceholderOnComponent, typeof IconCirclePlusComponent, typeof IconCircleQuestionmarkComponent, typeof IconCircleXComponent, typeof IconCirclesThreeComponent, typeof IconClockComponent, typeof IconCloudDownloadComponent, typeof IconCloudUploadComponent, typeof IconCloudySunComponent, typeof IconCodeBracketsComponent, typeof IconCodeComponent, typeof IconCompassRoundComponent, typeof IconCookiesComponent, typeof IconCopyComponent, typeof IconCreditCardAddComponent, typeof IconCreditCardComponent, typeof IconCrossLargeComponent, typeof IconCrossSmallComponent, typeof IconCupHotComponent, typeof IconCursorComponent, typeof IconDevicesComponent, typeof IconDirectionComponent, typeof IconDollarComponent, typeof IconDotGridOneHorizontalComponent, typeof IconDotGridOneVerticalComponent, typeof IconDotGridThreeComponent, typeof IconDotGridTwoComponent, typeof IconEmailComponent, typeof IconEmojiAngryComponent, typeof IconEmojiNeutralComponent, typeof IconEmojiSadComponent, typeof IconEmojiSmileComponent, typeof IconEmojiSmileyComponent, typeof IconEuroComponent, typeof IconExpandComponent, typeof IconEyeOpenComponent, typeof IconEyeSlashComponent, typeof IconFashionComponent, typeof IconFastForwardComponent, typeof IconFileBendComponent, typeof IconFileChartComponent, typeof IconFileTextComponent, typeof IconFilesComponent, typeof IconFilterComponent, typeof IconFlagComponent, typeof IconFloppyDiskComponent, typeof IconFocusComponent, typeof IconFolderAddRightComponent, typeof IconFolderComponent, typeof IconFullscreenComponent, typeof IconGiftComponent, typeof IconGlobusComponent, typeof IconGraduateCapComponent, typeof IconGreenPowerComponent, typeof IconGroupComponent, typeof IconGrowthComponent, typeof IconHeadphonesComponent, typeof IconHeartBeatComponent, typeof IconHeartComponent, typeof IconHistoryComponent, typeof IconHomeEnergyOneComponent, typeof IconHomeEnergyTwoComponent, typeof IconHomeOpenComponent, typeof IconHomeRoofComponent, typeof IconHorizontalAlignmentBottomComponent, typeof IconHourglassComponent, typeof IconImagesComponent, typeof IconInboxEmptyComponent, typeof IconIndustryComponent, typeof IconJpgComponent, typeof IconKeyComponent, typeof IconKnifeSpoonComponent, typeof IconLabComponent, typeof IconLawComponent, typeof IconLeisureComponent, typeof IconLightBulbSimpleComponent, typeof IconLightningComponent, typeof IconLineChartFourComponent, typeof IconLineChartOneComponent, typeof IconLineChartThreeComponent, typeof IconLineChartTwoComponent, typeof IconLockComponent, typeof IconMacbookAirComponent, typeof IconMagnifyingGlassComponent, typeof IconMapPinComponent, typeof IconMegaphoneComponent, typeof IconMenuSidebarComponent, typeof IconMicOffComponent, typeof IconMicOnComponent, typeof IconMinimizeComponent, typeof IconMinusLargeComponent, typeof IconMinusSmallComponent, typeof IconMoneyHandComponent, typeof IconMoneybagComponent, typeof IconMoonComponent, typeof IconMuteComponent, typeof IconNewspaperComponent, typeof IconOfficeComponent, typeof IconPageAddComponent, typeof IconPaperPlaneTopRightComponent, typeof IconPaperclipComponent, typeof IconPauseComponent, typeof IconPdfComponent, typeof IconPencilSignComponent, typeof IconPencilSparkleComponent, typeof IconPencilWaveComponent, typeof IconPensionComponent, typeof IconPeopleA11yComponent, typeof IconPeopleAddComponent, typeof IconPeopleAddedComponent, typeof IconPeopleCircleComponent, typeof IconPeopleCopyComponent, typeof IconPeopleProfileComponent, typeof IconPeopleRemoveComponent, typeof IconPeopleComponent, typeof IconPercentComponent, typeof IconPhoneComponent, typeof IconPieChartComponent, typeof IconPiggyBankComponent, typeof IconPinComponent, typeof IconPinchComponent, typeof IconPlayCircleComponent, typeof IconPlayComponent, typeof IconPlusLargeComponent, typeof IconPlusSmallComponent, typeof IconPngComponent, typeof IconPoopComponent, typeof IconPostcardComponent, typeof IconPoundComponent, typeof IconPowerPlantComponent, typeof IconPowerComponent, typeof IconPrinterComponent, typeof IconPushComponent, typeof IconQrCodeComponent, typeof IconRainyComponent, typeof IconRaisingHandComponent, typeof IconReadingListComponent, typeof IconReceiptBillComponent, typeof IconReceiptionBellComponent, typeof IconRecordComponent, typeof IconRefundComponent, typeof IconRobotComponent, typeof IconRocketComponent, typeof IconRunShortcutComponent, typeof IconSafariComponent, typeof IconSchoolComponent, typeof IconScissorsComponent, typeof IconSearchMenuComponent, typeof IconSettingsGearComponent, typeof IconSettingsSliderHorComponent, typeof IconSettingsSliderVerComponent, typeof IconShapesComponent, typeof IconShareComponent, typeof IconShieldCheckedComponent, typeof IconShieldCrossedComponent, typeof IconShieldComponent, typeof IconShoppingBagComponent, typeof IconSignatureComponent, typeof IconSmartwatchComponent, typeof IconSolarComponent, typeof IconSortAscendingComponent, typeof IconSortDescendingComponent, typeof IconSortDownComponent, typeof IconSortUpComponent, typeof IconSortComponent, typeof IconSquareArrowTopRightComponent, typeof IconSquareBehindSquareComponent, typeof IconSquareGridCircleComponent, typeof IconSquarePlaceholderComponent, typeof IconStarComponent, typeof IconStoreComponent, typeof IconSunComponent, typeof IconSunsetArrowDownComponent, typeof IconTagComponent, typeof IconTargetArrowComponent, typeof IconTelevisionComponent, typeof IconTennisComponent, typeof IconTextEditComponent, typeof IconThermostatComponent, typeof IconThumbsDownComponent, typeof IconThumbsUpComponent, typeof IconTicketComponent, typeof IconTradingViewCandlesComponent, typeof IconTrashCanComponent, typeof IconTreeComponent, typeof IconTrendingFiveComponent, typeof IconTrendingFourComponent, typeof IconTrendingOneComponent, typeof IconTrendingThreeComponent, typeof IconTrendingTwoComponent, typeof IconTriangleExclamationComponent, typeof IconTruckComponent, typeof IconUmbrellaSecurityComponent, typeof IconUnlockedComponent, typeof IconVolumeFullComponent, typeof IconVolumeHalfComponent, typeof IconVolumeOffComponent, typeof IconWalletComponent, typeof IconWarningSignComponent, typeof IconWifiFullComponent, typeof IconYoutubeComponent, typeof IconZapComponent, typeof IconZoomInComponent, typeof IconZoomOutComponent, typeof GdsMenuItemComponent, typeof GdsMenuHeadingComponent, typeof GdsOptionComponent]>;
|
|
35477
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GreenCoreNgModule, never, [typeof GdsAlertComponent, typeof GdsAvatarComponent, typeof GdsBadgeComponent, typeof GdsBlurComponent, typeof GdsBreadcrumbsComponent, typeof GdsButtonComponent, typeof GdsCalendarComponent, typeof GdsCardComponent, typeof GdsCardLinkedComponent, typeof GdsCheckboxComponent, typeof GdsCoachmarkComponent, typeof GdsContextMenuComponent, typeof GdsDatepickerComponent, typeof GdsDetailsComponent, typeof GdsDialogComponent, typeof GdsDivComponent, typeof GdsDividerComponent, typeof GdsDropdownComponent, typeof GdsFabComponent, typeof GdsFilterChipsComponent, typeof GdsFlexComponent, typeof GdsFormSummaryComponent, typeof GdsGridComponent, typeof GdsGroupedListComponent, typeof GdsImgComponent, typeof GdsInputComponent, typeof GdsLinkComponent, typeof GdsListComponent, typeof GdsMaskComponent, typeof GdsMenuButtonComponent, typeof GdsPaginationComponent, typeof GdsBackdropComponent, typeof GdsPopoverComponent, typeof GdsRadioComponent, typeof GdsRichTextComponent, typeof GdsSegmentedControlComponent, typeof GdsSelectComponent, typeof GdsSignalComponent, typeof GdsSpinnerComponent, typeof GdsSwitchComponent, typeof GdsTableComponent, typeof GdsTabsComponent, typeof GdsTextComponent, typeof GdsTextareaComponent, typeof GdsThemeComponent, typeof GdsVideoComponent, typeof GdsCardPattern01Component, typeof GdsListItemPattern01Component, typeof GdsAvatarGroupComponent, typeof GdsBreadcrumbComponent, typeof GdsCheckboxGroupComponent, typeof GdsIconDetailsComponent, typeof GdsFilterChipComponent, typeof GdsFormattedAccountComponent, typeof GdsFormattedDateComponent, typeof GdsFormattedNumberComponent, typeof GdsListItemComponent, typeof GdsRadioGroupComponent, typeof GdsSegmentComponent, typeof GdsSensitiveAccountComponent, typeof GdsSensitiveDateComponent, typeof GdsSensitiveNumberComponent, typeof GdsTabComponent, typeof GdsTabPanelComponent, typeof IconAiComponent, typeof IconAirplaneUpComponent, typeof IconArchiveComponent, typeof IconArrowBottomTopComponent, typeof IconArrowBoxLeftAltComponent, typeof IconArrowBoxLeftComponent, typeof IconArrowBoxRightComponent, typeof IconArrowDownComponent, typeof IconArrowInboxComponent, typeof IconArrowLeftRightComponent, typeof IconArrowLeftComponent, typeof IconArrowOutOfBoxComponent, typeof IconArrowRightCircleComponent, typeof IconArrowRightDownCircleComponent, typeof IconArrowRightUpCircleComponent, typeof IconArrowRightComponent, typeof IconArrowRotateClockwiseComponent, typeof IconArrowRotateCounterClockwiseComponent, typeof IconArrowRotateLeftRightComponent, typeof IconArrowRotateRightLeftComponent, typeof IconArrowShareLeftComponent, typeof IconArrowShareRightComponent, typeof IconArrowSplitComponent, typeof IconArrowUpComponent, typeof IconArrowWallDownComponent, typeof IconArrowWallLeftComponent, typeof IconArrowWallRightComponent, typeof IconArrowWallUpComponent, typeof IconArrowComponent, typeof IconArrowsRepeatRightComponent, typeof IconAsteriskComponent, typeof IconAtComponent, typeof IconBackComponent, typeof IconBackwardComponent, typeof IconBagComponent, typeof IconBankComponent, typeof IconBanknote2Component, typeof IconBanknoteComponent, typeof IconBarcodeComponent, typeof IconBarsThreeComponent, typeof IconBarsTwoComponent, typeof IconBasketComponent, typeof IconBatteryLoadingComponent, typeof IconBellComponent, typeof IconBlockComponent, typeof IconBookComponent, typeof IconBookmarkCheckComponent, typeof IconBookmarkDeleteComponent, typeof IconBookmarkPlusComponent, typeof IconBookmarkRemoveComponent, typeof IconBookmarkComponent, typeof IconBooksComponent, typeof IconBrandAppStoreComponent, typeof IconBrandAppleMusicComponent, typeof IconBrandBankidComponent, typeof IconBrandChromeComponent, typeof IconBrandFacebookComponent, typeof IconBrandFigmaComponent, typeof IconBrandFirefoxComponent, typeof IconBrandGithubComponent, typeof IconBrandGreenComponent, typeof IconBrandInstagramComponent, typeof IconBrandLinkedinComponent, typeof IconBrandPlayStoreComponent, typeof IconBrandRssFeedComponent, typeof IconBrandSebComponent, typeof IconBrandSpotifyComponent, typeof IconBrandStorybookComponent, typeof IconBrandSwishWordComponent, typeof IconBrandXComponent, typeof IconBrushComponent, typeof IconBubbleAnnotationComponent, typeof IconBubblesComponent, typeof IconBuildingsComponent, typeof IconBulletListComponent, typeof IconCalculatorComponent, typeof IconCalendarCheckComponent, typeof IconCalendarRepeatComponent, typeof IconCalendarComponent, typeof IconCalenderAddComponent, typeof IconCallComponent, typeof IconCarComponent, typeof IconCarusselComponent, typeof IconChainLinkBrokenComponent, typeof IconChainLinkComponent, typeof IconChartTwoComponent, typeof IconChecklistComponent, typeof IconCheckmarkComponent, typeof IconChevronBottomComponent, typeof IconChevronDoubleDownComponent, typeof IconChevronDoubleLeftComponent, typeof IconChevronDoubleRightComponent, typeof IconChevronDoubleUpComponent, typeof IconChevronDownSmallComponent, typeof IconChevronGrabberVerticalReversedComponent, typeof IconChevronGrabberVerticalComponent, typeof IconChevronLeftSmallComponent, typeof IconChevronLeftComponent, typeof IconChevronRightSmallComponent, typeof IconChevronRightComponent, typeof IconChevronTopSmallComponent, typeof IconChevronTopComponent, typeof IconCircleBanComponent, typeof IconCircleCheckComponent, typeof IconCircleDotsComponent, typeof IconCircleInfoComponent, typeof IconCircleMinusComponent, typeof IconCirclePlaceholderOnComponent, typeof IconCirclePlusComponent, typeof IconCircleQuestionmarkComponent, typeof IconCircleXComponent, typeof IconCirclesThreeComponent, typeof IconClockComponent, typeof IconCloudDownloadComponent, typeof IconCloudUploadComponent, typeof IconCloudySunComponent, typeof IconCodeBracketsComponent, typeof IconCodeComponent, typeof IconCompassRoundComponent, typeof IconCookiesComponent, typeof IconCopyComponent, typeof IconCreditCardAddComponent, typeof IconCreditCardComponent, typeof IconCrossLargeComponent, typeof IconCrossSmallComponent, typeof IconCupHotComponent, typeof IconCursorComponent, typeof IconDevicesComponent, typeof IconDirectionComponent, typeof IconDollarComponent, typeof IconDotGridOneHorizontalComponent, typeof IconDotGridOneVerticalComponent, typeof IconDotGridThreeComponent, typeof IconDotGridTwoComponent, typeof IconEmailComponent, typeof IconEmojiAngryComponent, typeof IconEmojiNeutralComponent, typeof IconEmojiSadComponent, typeof IconEmojiSmileComponent, typeof IconEmojiSmileyComponent, typeof IconEuroComponent, typeof IconExpandComponent, typeof IconEyeOpenComponent, typeof IconEyeSlashComponent, typeof IconFashionComponent, typeof IconFastForwardComponent, typeof IconFileBendComponent, typeof IconFileChartComponent, typeof IconFileTextComponent, typeof IconFilesComponent, typeof IconFilterComponent, typeof IconFlagComponent, typeof IconFloppyDiskComponent, typeof IconFocusComponent, typeof IconFolderAddRightComponent, typeof IconFolderComponent, typeof IconFullscreenComponent, typeof IconGiftComponent, typeof IconGlobusComponent, typeof IconGraduateCapComponent, typeof IconGreenPowerComponent, typeof IconGroupComponent, typeof IconGrowthComponent, typeof IconHeadphonesComponent, typeof IconHeartBeatComponent, typeof IconHeartComponent, typeof IconHistoryComponent, typeof IconHomeEnergyOneComponent, typeof IconHomeEnergyTwoComponent, typeof IconHomeOpenComponent, typeof IconHomeRoofComponent, typeof IconHorizontalAlignmentBottomComponent, typeof IconHourglassComponent, typeof IconImagesComponent, typeof IconInboxEmptyComponent, typeof IconIndustryComponent, typeof IconJpgComponent, typeof IconKeyComponent, typeof IconKnifeSpoonComponent, typeof IconLabComponent, typeof IconLawComponent, typeof IconLeisureComponent, typeof IconLightBulbSimpleComponent, typeof IconLightningComponent, typeof IconLineChartFourComponent, typeof IconLineChartOneComponent, typeof IconLineChartThreeComponent, typeof IconLineChartTwoComponent, typeof IconLockComponent, typeof IconMacbookAirComponent, typeof IconMagnifyingGlassComponent, typeof IconMapPinComponent, typeof IconMegaphoneComponent, typeof IconMenuSidebarComponent, typeof IconMicOffComponent, typeof IconMicOnComponent, typeof IconMinimizeComponent, typeof IconMinusLargeComponent, typeof IconMinusSmallComponent, typeof IconMoneyHandComponent, typeof IconMoneybagComponent, typeof IconMoonComponent, typeof IconMuteComponent, typeof IconNewspaperComponent, typeof IconOfficeComponent, typeof IconPageAddComponent, typeof IconPaperPlaneTopRightComponent, typeof IconPaperclipComponent, typeof IconPauseComponent, typeof IconPdfComponent, typeof IconPencilSignComponent, typeof IconPencilSparkleComponent, typeof IconPencilWaveComponent, typeof IconPensionComponent, typeof IconPeopleA11yComponent, typeof IconPeopleAddComponent, typeof IconPeopleAddedComponent, typeof IconPeopleCircleComponent, typeof IconPeopleCopyComponent, typeof IconPeopleProfileComponent, typeof IconPeopleRemoveComponent, typeof IconPeopleComponent, typeof IconPercentComponent, typeof IconPhoneComponent, typeof IconPieChartComponent, typeof IconPiggyBankComponent, typeof IconPinComponent, typeof IconPinchComponent, typeof IconPlayCircleComponent, typeof IconPlayComponent, typeof IconPlusLargeComponent, typeof IconPlusSmallComponent, typeof IconPngComponent, typeof IconPoopComponent, typeof IconPostcardComponent, typeof IconPoundComponent, typeof IconPowerPlantComponent, typeof IconPowerComponent, typeof IconPrinterComponent, typeof IconPushComponent, typeof IconQrCodeComponent, typeof IconRainyComponent, typeof IconRaisingHandComponent, typeof IconReadingListComponent, typeof IconReceiptBillComponent, typeof IconReceiptionBellComponent, typeof IconRecordComponent, typeof IconRefundComponent, typeof IconRobotComponent, typeof IconRocketComponent, typeof IconRunShortcutComponent, typeof IconSafariComponent, typeof IconSchoolComponent, typeof IconScissorsComponent, typeof IconSearchMenuComponent, typeof IconSettingsGearComponent, typeof IconSettingsSliderHorComponent, typeof IconSettingsSliderVerComponent, typeof IconShapesComponent, typeof IconShareComponent, typeof IconShieldCheckedComponent, typeof IconShieldCrossedComponent, typeof IconShieldComponent, typeof IconShoppingBagComponent, typeof IconSignatureComponent, typeof IconSmartwatchComponent, typeof IconSolarComponent, typeof IconSortAscendingComponent, typeof IconSortDescendingComponent, typeof IconSortDownComponent, typeof IconSortUpComponent, typeof IconSortComponent, typeof IconSquareArrowTopRightComponent, typeof IconSquareBehindSquareComponent, typeof IconSquareGridCircleComponent, typeof IconSquarePlaceholderComponent, typeof IconStarComponent, typeof IconStoreComponent, typeof IconSunComponent, typeof IconSunsetArrowDownComponent, typeof IconTagComponent, typeof IconTargetArrowComponent, typeof IconTelevisionComponent, typeof IconTennisComponent, typeof IconTextEditComponent, typeof IconThermostatComponent, typeof IconThumbsDownComponent, typeof IconThumbsUpComponent, typeof IconTicketComponent, typeof IconTradingViewCandlesComponent, typeof IconTrashCanComponent, typeof IconTreeComponent, typeof IconTrendingFiveComponent, typeof IconTrendingFourComponent, typeof IconTrendingOneComponent, typeof IconTrendingThreeComponent, typeof IconTrendingTwoComponent, typeof IconTriangleExclamationComponent, typeof IconTruckComponent, typeof IconUmbrellaSecurityComponent, typeof IconUnlockedComponent, typeof IconVolumeFullComponent, typeof IconVolumeHalfComponent, typeof IconVolumeOffComponent, typeof IconWalletComponent, typeof IconWarningSignComponent, typeof IconWifiFullComponent, typeof IconYoutubeComponent, typeof IconZapComponent, typeof IconZoomInComponent, typeof IconZoomOutComponent, typeof GdsMenuItemComponent, typeof GdsMenuHeadingComponent, typeof GdsOptionComponent], [typeof GdsAlertComponent, typeof GdsAvatarComponent, typeof GdsBadgeComponent, typeof GdsBlurComponent, typeof GdsBreadcrumbsComponent, typeof GdsButtonComponent, typeof GdsCalendarComponent, typeof GdsCardComponent, typeof GdsCardLinkedComponent, typeof GdsCheckboxComponent, typeof GdsCoachmarkComponent, typeof GdsContextMenuComponent, typeof GdsDatepickerComponent, typeof GdsDetailsComponent, typeof GdsDialogComponent, typeof GdsDivComponent, typeof GdsDividerComponent, typeof GdsDropdownComponent, typeof GdsFabComponent, typeof GdsFilterChipsComponent, typeof GdsFlexComponent, typeof GdsFormSummaryComponent, typeof GdsGridComponent, typeof GdsGroupedListComponent, typeof GdsImgComponent, typeof GdsInputComponent, typeof GdsLinkComponent, typeof GdsListComponent, typeof GdsMaskComponent, typeof GdsMenuButtonComponent, typeof GdsPaginationComponent, typeof GdsBackdropComponent, typeof GdsPopoverComponent, typeof GdsRadioComponent, typeof GdsRichTextComponent, typeof GdsSegmentedControlComponent, typeof GdsSelectComponent, typeof GdsSignalComponent, typeof GdsSpinnerComponent, typeof GdsSwitchComponent, typeof GdsTableComponent, typeof GdsTabsComponent, typeof GdsTextComponent, typeof GdsTextareaComponent, typeof GdsThemeComponent, typeof GdsVideoComponent, typeof GdsCardPattern01Component, typeof GdsListItemPattern01Component, typeof GdsAvatarGroupComponent, typeof GdsBreadcrumbComponent, typeof GdsCheckboxGroupComponent, typeof GdsIconDetailsComponent, typeof GdsFilterChipComponent, typeof GdsFormattedAccountComponent, typeof GdsFormattedDateComponent, typeof GdsFormattedNumberComponent, typeof GdsListItemComponent, typeof GdsRadioGroupComponent, typeof GdsSegmentComponent, typeof GdsSensitiveAccountComponent, typeof GdsSensitiveDateComponent, typeof GdsSensitiveNumberComponent, typeof GdsTabComponent, typeof GdsTabPanelComponent, typeof IconAiComponent, typeof IconAirplaneUpComponent, typeof IconArchiveComponent, typeof IconArrowBottomTopComponent, typeof IconArrowBoxLeftAltComponent, typeof IconArrowBoxLeftComponent, typeof IconArrowBoxRightComponent, typeof IconArrowDownComponent, typeof IconArrowInboxComponent, typeof IconArrowLeftRightComponent, typeof IconArrowLeftComponent, typeof IconArrowOutOfBoxComponent, typeof IconArrowRightCircleComponent, typeof IconArrowRightDownCircleComponent, typeof IconArrowRightUpCircleComponent, typeof IconArrowRightComponent, typeof IconArrowRotateClockwiseComponent, typeof IconArrowRotateCounterClockwiseComponent, typeof IconArrowRotateLeftRightComponent, typeof IconArrowRotateRightLeftComponent, typeof IconArrowShareLeftComponent, typeof IconArrowShareRightComponent, typeof IconArrowSplitComponent, typeof IconArrowUpComponent, typeof IconArrowWallDownComponent, typeof IconArrowWallLeftComponent, typeof IconArrowWallRightComponent, typeof IconArrowWallUpComponent, typeof IconArrowComponent, typeof IconArrowsRepeatRightComponent, typeof IconAsteriskComponent, typeof IconAtComponent, typeof IconBackComponent, typeof IconBackwardComponent, typeof IconBagComponent, typeof IconBankComponent, typeof IconBanknote2Component, typeof IconBanknoteComponent, typeof IconBarcodeComponent, typeof IconBarsThreeComponent, typeof IconBarsTwoComponent, typeof IconBasketComponent, typeof IconBatteryLoadingComponent, typeof IconBellComponent, typeof IconBlockComponent, typeof IconBookComponent, typeof IconBookmarkCheckComponent, typeof IconBookmarkDeleteComponent, typeof IconBookmarkPlusComponent, typeof IconBookmarkRemoveComponent, typeof IconBookmarkComponent, typeof IconBooksComponent, typeof IconBrandAppStoreComponent, typeof IconBrandAppleMusicComponent, typeof IconBrandBankidComponent, typeof IconBrandChromeComponent, typeof IconBrandFacebookComponent, typeof IconBrandFigmaComponent, typeof IconBrandFirefoxComponent, typeof IconBrandGithubComponent, typeof IconBrandGreenComponent, typeof IconBrandInstagramComponent, typeof IconBrandLinkedinComponent, typeof IconBrandPlayStoreComponent, typeof IconBrandRssFeedComponent, typeof IconBrandSebComponent, typeof IconBrandSpotifyComponent, typeof IconBrandStorybookComponent, typeof IconBrandSwishWordComponent, typeof IconBrandXComponent, typeof IconBrushComponent, typeof IconBubbleAnnotationComponent, typeof IconBubblesComponent, typeof IconBuildingsComponent, typeof IconBulletListComponent, typeof IconCalculatorComponent, typeof IconCalendarCheckComponent, typeof IconCalendarRepeatComponent, typeof IconCalendarComponent, typeof IconCalenderAddComponent, typeof IconCallComponent, typeof IconCarComponent, typeof IconCarusselComponent, typeof IconChainLinkBrokenComponent, typeof IconChainLinkComponent, typeof IconChartTwoComponent, typeof IconChecklistComponent, typeof IconCheckmarkComponent, typeof IconChevronBottomComponent, typeof IconChevronDoubleDownComponent, typeof IconChevronDoubleLeftComponent, typeof IconChevronDoubleRightComponent, typeof IconChevronDoubleUpComponent, typeof IconChevronDownSmallComponent, typeof IconChevronGrabberVerticalReversedComponent, typeof IconChevronGrabberVerticalComponent, typeof IconChevronLeftSmallComponent, typeof IconChevronLeftComponent, typeof IconChevronRightSmallComponent, typeof IconChevronRightComponent, typeof IconChevronTopSmallComponent, typeof IconChevronTopComponent, typeof IconCircleBanComponent, typeof IconCircleCheckComponent, typeof IconCircleDotsComponent, typeof IconCircleInfoComponent, typeof IconCircleMinusComponent, typeof IconCirclePlaceholderOnComponent, typeof IconCirclePlusComponent, typeof IconCircleQuestionmarkComponent, typeof IconCircleXComponent, typeof IconCirclesThreeComponent, typeof IconClockComponent, typeof IconCloudDownloadComponent, typeof IconCloudUploadComponent, typeof IconCloudySunComponent, typeof IconCodeBracketsComponent, typeof IconCodeComponent, typeof IconCompassRoundComponent, typeof IconCookiesComponent, typeof IconCopyComponent, typeof IconCreditCardAddComponent, typeof IconCreditCardComponent, typeof IconCrossLargeComponent, typeof IconCrossSmallComponent, typeof IconCupHotComponent, typeof IconCursorComponent, typeof IconDevicesComponent, typeof IconDirectionComponent, typeof IconDollarComponent, typeof IconDotGridOneHorizontalComponent, typeof IconDotGridOneVerticalComponent, typeof IconDotGridThreeComponent, typeof IconDotGridTwoComponent, typeof IconEmailComponent, typeof IconEmojiAngryComponent, typeof IconEmojiNeutralComponent, typeof IconEmojiSadComponent, typeof IconEmojiSmileComponent, typeof IconEmojiSmileyComponent, typeof IconEuroComponent, typeof IconExpandComponent, typeof IconEyeOpenComponent, typeof IconEyeSlashComponent, typeof IconFashionComponent, typeof IconFastForwardComponent, typeof IconFileBendComponent, typeof IconFileChartComponent, typeof IconFileTextComponent, typeof IconFilesComponent, typeof IconFilterComponent, typeof IconFlagComponent, typeof IconFloppyDiskComponent, typeof IconFocusComponent, typeof IconFolderAddRightComponent, typeof IconFolderComponent, typeof IconFullscreenComponent, typeof IconGiftComponent, typeof IconGlobusComponent, typeof IconGraduateCapComponent, typeof IconGreenPowerComponent, typeof IconGroupComponent, typeof IconGrowthComponent, typeof IconHeadphonesComponent, typeof IconHeartBeatComponent, typeof IconHeartComponent, typeof IconHistoryComponent, typeof IconHomeEnergyOneComponent, typeof IconHomeEnergyTwoComponent, typeof IconHomeOpenComponent, typeof IconHomeRoofComponent, typeof IconHorizontalAlignmentBottomComponent, typeof IconHourglassComponent, typeof IconImagesComponent, typeof IconInboxEmptyComponent, typeof IconIndustryComponent, typeof IconJpgComponent, typeof IconKeyComponent, typeof IconKnifeSpoonComponent, typeof IconLabComponent, typeof IconLawComponent, typeof IconLeisureComponent, typeof IconLightBulbSimpleComponent, typeof IconLightningComponent, typeof IconLineChartFourComponent, typeof IconLineChartOneComponent, typeof IconLineChartThreeComponent, typeof IconLineChartTwoComponent, typeof IconLockComponent, typeof IconMacbookAirComponent, typeof IconMagnifyingGlassComponent, typeof IconMapPinComponent, typeof IconMegaphoneComponent, typeof IconMenuSidebarComponent, typeof IconMicOffComponent, typeof IconMicOnComponent, typeof IconMinimizeComponent, typeof IconMinusLargeComponent, typeof IconMinusSmallComponent, typeof IconMoneyHandComponent, typeof IconMoneybagComponent, typeof IconMoonComponent, typeof IconMuteComponent, typeof IconNewspaperComponent, typeof IconOfficeComponent, typeof IconPageAddComponent, typeof IconPaperPlaneTopRightComponent, typeof IconPaperclipComponent, typeof IconPauseComponent, typeof IconPdfComponent, typeof IconPencilSignComponent, typeof IconPencilSparkleComponent, typeof IconPencilWaveComponent, typeof IconPensionComponent, typeof IconPeopleA11yComponent, typeof IconPeopleAddComponent, typeof IconPeopleAddedComponent, typeof IconPeopleCircleComponent, typeof IconPeopleCopyComponent, typeof IconPeopleProfileComponent, typeof IconPeopleRemoveComponent, typeof IconPeopleComponent, typeof IconPercentComponent, typeof IconPhoneComponent, typeof IconPieChartComponent, typeof IconPiggyBankComponent, typeof IconPinComponent, typeof IconPinchComponent, typeof IconPlayCircleComponent, typeof IconPlayComponent, typeof IconPlusLargeComponent, typeof IconPlusSmallComponent, typeof IconPngComponent, typeof IconPoopComponent, typeof IconPostcardComponent, typeof IconPoundComponent, typeof IconPowerPlantComponent, typeof IconPowerComponent, typeof IconPrinterComponent, typeof IconPushComponent, typeof IconQrCodeComponent, typeof IconRainyComponent, typeof IconRaisingHandComponent, typeof IconReadingListComponent, typeof IconReceiptBillComponent, typeof IconReceiptionBellComponent, typeof IconRecordComponent, typeof IconRefundComponent, typeof IconRobotComponent, typeof IconRocketComponent, typeof IconRunShortcutComponent, typeof IconSafariComponent, typeof IconSchoolComponent, typeof IconScissorsComponent, typeof IconSearchMenuComponent, typeof IconSettingsGearComponent, typeof IconSettingsSliderHorComponent, typeof IconSettingsSliderVerComponent, typeof IconShapesComponent, typeof IconShareComponent, typeof IconShieldCheckedComponent, typeof IconShieldCrossedComponent, typeof IconShieldComponent, typeof IconShoppingBagComponent, typeof IconSignatureComponent, typeof IconSmartwatchComponent, typeof IconSolarComponent, typeof IconSortAscendingComponent, typeof IconSortDescendingComponent, typeof IconSortDownComponent, typeof IconSortUpComponent, typeof IconSortComponent, typeof IconSquareArrowTopRightComponent, typeof IconSquareBehindSquareComponent, typeof IconSquareGridCircleComponent, typeof IconSquarePlaceholderComponent, typeof IconStarComponent, typeof IconStoreComponent, typeof IconSunComponent, typeof IconSunsetArrowDownComponent, typeof IconTagComponent, typeof IconTargetArrowComponent, typeof IconTelevisionComponent, typeof IconTennisComponent, typeof IconTextEditComponent, typeof IconThermostatComponent, typeof IconThumbsDownComponent, typeof IconThumbsUpComponent, typeof IconTicketComponent, typeof IconTradingViewCandlesComponent, typeof IconTrashCanComponent, typeof IconTreeComponent, typeof IconTrendingFiveComponent, typeof IconTrendingFourComponent, typeof IconTrendingOneComponent, typeof IconTrendingThreeComponent, typeof IconTrendingTwoComponent, typeof IconTriangleExclamationComponent, typeof IconTruckComponent, typeof IconUmbrellaSecurityComponent, typeof IconUnlockedComponent, typeof IconVolumeFullComponent, typeof IconVolumeHalfComponent, typeof IconVolumeOffComponent, typeof IconWalletComponent, typeof IconWarningSignComponent, typeof IconWifiFullComponent, typeof IconYoutubeComponent, typeof IconZapComponent, typeof IconZoomInComponent, typeof IconZoomOutComponent, typeof GdsMenuItemComponent, typeof GdsMenuHeadingComponent, typeof GdsOptionComponent]>;
|
|
35478
35478
|
static ɵinj: i0.ɵɵInjectorDeclaration<GreenCoreNgModule>;
|
|
35479
35479
|
}
|
|
35480
35480
|
|