@sebgroup/green-core-ng 3.17.3 → 3.17.4

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/index.d.ts CHANGED
@@ -10,8 +10,8 @@ import { GdsButton } from '@sebgroup/green-core/components/button/button.compone
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';
13
- import { GdsCheckbox } from '@sebgroup/green-core/components/checkbox/checkbox.component.js';
14
13
  import { GdsCoachmark } from '@sebgroup/green-core/components/coachmark/coachmark.component.js';
14
+ import { GdsCheckbox } from '@sebgroup/green-core/components/checkbox/checkbox.component.js';
15
15
  import { GdsContextMenu, GdsMenuItem, GdsMenuHeading } from '@sebgroup/green-core/components/context-menu/context-menu.component.js';
16
16
  import { GdsDatepicker } from '@sebgroup/green-core/components/datepicker/datepicker.component.js';
17
17
  import { GdsDetails } from '@sebgroup/green-core/components/details/details.component.js';
@@ -49,8 +49,8 @@ import { GdsTheme } from '@sebgroup/green-core/components/theme/theme.component.
49
49
  import { GdsVideo } from '@sebgroup/green-core/components/video/video.component.js';
50
50
  import { GdsCardPattern01 } from '@sebgroup/green-core/patterns/card-pattern-01/card-pattern-01.component.js';
51
51
  import { GdsListItemPattern01 } from '@sebgroup/green-core/patterns/list-item-pattern-01/list-item-pattern-01.component.js';
52
- import { GdsAvatarGroup } from '@sebgroup/green-core/components/avatar/avatar-group/avatar-group.component.js';
53
52
  import { GdsBreadcrumb } from '@sebgroup/green-core/components/breadcrumbs/breadcrumb/breadcrumb.component.js';
53
+ import { GdsAvatarGroup } from '@sebgroup/green-core/components/avatar/avatar-group/avatar-group.component.js';
54
54
  import { GdsCheckboxGroup } from '@sebgroup/green-core/components/checkbox/checkbox-group/checkbox-group.component.js';
55
55
  import { GdsIconDetails } from '@sebgroup/green-core/components/details/details-icon/details-icon.component.js';
56
56
  import { GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/filter-chip/filter-chip.component.js';
@@ -1482,6 +1482,54 @@ declare class GdsCardLinkedComponent implements OnInit, OnChanges, AfterViewInit
1482
1482
  static ngAcceptInputType_syncFirstRender: unknown;
1483
1483
  }
1484
1484
 
1485
+ /**
1486
+ * Angular wrapper for the gds-coachmark web component
1487
+ *
1488
+ */
1489
+ declare class GdsCoachmarkComponent implements OnInit, OnChanges, AfterViewInit {
1490
+ private elementRef;
1491
+ private zone;
1492
+ private cdr;
1493
+ get element(): GdsCoachmark;
1494
+ constructor();
1495
+ /** The placement of the popover relative to the trigger.
1496
+ Accepts any of the placements supported by Floating UI. */
1497
+ placement?: GdsCoachmark['placement'];
1498
+ /** The coachmark will be hidden when overlapped by the list of provided elements (selectors). */
1499
+ overlappedBy?: GdsCoachmark['overlappedBy'];
1500
+ /** List of selectors pointing to the targeted element. Ex. for a target inside a ShadowDOM: ["some-component", "shadowRoot", "target-element"]. */
1501
+ target?: GdsCoachmark['target'];
1502
+ /** The accessible label of the coachmark. */
1503
+ label?: GdsCoachmark['label'];
1504
+ /** A callback that can be used to set the visibility of the coachmark based on your criteria.
1505
+
1506
+ The default computed visibility, based on visibility and overlap of the target element, is supplied as the third argument. */
1507
+ computeVisibility?: GdsCoachmark['computeVisibility'];
1508
+ /** The resolved targeted element (readonly) */
1509
+ targetElement?: GdsCoachmark['targetElement'];
1510
+ _isVisible?: GdsCoachmark['_isVisible'];
1511
+ _preventClose?: GdsCoachmark['_preventClose'];
1512
+ /** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
1513
+
1514
+ This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
1515
+ run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
1516
+ is projected.
1517
+
1518
+ Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
1519
+ element needs to be measured synchronously after being added to the DOM. */
1520
+ syncFirstRender?: GdsCoachmark['syncFirstRender'];
1521
+ /** dispatched when the tooltip is about to be closed. Can be cancelled to prevent closing. */
1522
+ gdsUiState: EventEmitter<CustomEvent<any>>;
1523
+ ngOnInit(): void;
1524
+ ngOnChanges(changes: SimpleChanges): void;
1525
+ ngAfterViewInit(): void;
1526
+ static ɵfac: i0.ɵɵFactoryDeclaration<GdsCoachmarkComponent, never>;
1527
+ static ɵcmp: i0.ɵɵComponentDeclaration<GdsCoachmarkComponent, "gds-coachmark", never, { "placement": { "alias": "placement"; "required": false; }; "overlappedBy": { "alias": "overlappedBy"; "required": false; }; "target": { "alias": "target"; "required": false; }; "label": { "alias": "label"; "required": false; }; "computeVisibility": { "alias": "computeVisibility"; "required": false; }; "targetElement": { "alias": "targetElement"; "required": false; }; "_isVisible": { "alias": "_isVisible"; "required": false; }; "_preventClose": { "alias": "_preventClose"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsUiState": "gdsUiState"; }, never, ["*"], true, never>;
1528
+ static ngAcceptInputType__isVisible: unknown;
1529
+ static ngAcceptInputType__preventClose: unknown;
1530
+ static ngAcceptInputType_syncFirstRender: unknown;
1531
+ }
1532
+
1485
1533
  /**
1486
1534
  * Base class for checkbox form controls that work with boolean checked state
1487
1535
  * instead of string values.
@@ -1562,54 +1610,6 @@ declare class GdsCheckboxComponent extends GdsCheckboxFormControlBase {
1562
1610
  static ngAcceptInputType_syncFirstRender: unknown;
1563
1611
  }
1564
1612
 
1565
- /**
1566
- * Angular wrapper for the gds-coachmark web component
1567
- *
1568
- */
1569
- declare class GdsCoachmarkComponent implements OnInit, OnChanges, AfterViewInit {
1570
- private elementRef;
1571
- private zone;
1572
- private cdr;
1573
- get element(): GdsCoachmark;
1574
- constructor();
1575
- /** The placement of the popover relative to the trigger.
1576
- Accepts any of the placements supported by Floating UI. */
1577
- placement?: GdsCoachmark['placement'];
1578
- /** The coachmark will be hidden when overlapped by the list of provided elements (selectors). */
1579
- overlappedBy?: GdsCoachmark['overlappedBy'];
1580
- /** List of selectors pointing to the targeted element. Ex. for a target inside a ShadowDOM: ["some-component", "shadowRoot", "target-element"]. */
1581
- target?: GdsCoachmark['target'];
1582
- /** The accessible label of the coachmark. */
1583
- label?: GdsCoachmark['label'];
1584
- /** A callback that can be used to set the visibility of the coachmark based on your criteria.
1585
-
1586
- The default computed visibility, based on visibility and overlap of the target element, is supplied as the third argument. */
1587
- computeVisibility?: GdsCoachmark['computeVisibility'];
1588
- /** The resolved targeted element (readonly) */
1589
- targetElement?: GdsCoachmark['targetElement'];
1590
- _isVisible?: GdsCoachmark['_isVisible'];
1591
- _preventClose?: GdsCoachmark['_preventClose'];
1592
- /** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
1593
-
1594
- This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
1595
- run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
1596
- is projected.
1597
-
1598
- Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
1599
- element needs to be measured synchronously after being added to the DOM. */
1600
- syncFirstRender?: GdsCoachmark['syncFirstRender'];
1601
- /** dispatched when the tooltip is about to be closed. Can be cancelled to prevent closing. */
1602
- gdsUiState: EventEmitter<CustomEvent<any>>;
1603
- ngOnInit(): void;
1604
- ngOnChanges(changes: SimpleChanges): void;
1605
- ngAfterViewInit(): void;
1606
- static ɵfac: i0.ɵɵFactoryDeclaration<GdsCoachmarkComponent, never>;
1607
- static ɵcmp: i0.ɵɵComponentDeclaration<GdsCoachmarkComponent, "gds-coachmark", never, { "placement": { "alias": "placement"; "required": false; }; "overlappedBy": { "alias": "overlappedBy"; "required": false; }; "target": { "alias": "target"; "required": false; }; "label": { "alias": "label"; "required": false; }; "computeVisibility": { "alias": "computeVisibility"; "required": false; }; "targetElement": { "alias": "targetElement"; "required": false; }; "_isVisible": { "alias": "_isVisible"; "required": false; }; "_preventClose": { "alias": "_preventClose"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsUiState": "gdsUiState"; }, never, ["*"], true, never>;
1608
- static ngAcceptInputType__isVisible: unknown;
1609
- static ngAcceptInputType__preventClose: unknown;
1610
- static ngAcceptInputType_syncFirstRender: unknown;
1611
- }
1612
-
1613
1613
  /**
1614
1614
  * Angular wrapper for the gds-context-menu web component
1615
1615
  *
@@ -6200,6 +6200,65 @@ declare class GdsListItemPattern01Component implements OnInit, OnChanges, AfterV
6200
6200
  static ngAcceptInputType_syncFirstRender: unknown;
6201
6201
  }
6202
6202
 
6203
+ /**
6204
+ * Angular wrapper for the gds-breadcrumb web component
6205
+ *
6206
+ */
6207
+ declare class GdsBreadcrumbComponent implements OnInit, OnChanges, AfterViewInit {
6208
+ private elementRef;
6209
+ private zone;
6210
+ private cdr;
6211
+ private renderer;
6212
+ private router;
6213
+ private locationStrategy;
6214
+ private destroyRef;
6215
+ private routerLink;
6216
+ private routerLinkActive;
6217
+ get element(): GdsBreadcrumb;
6218
+ constructor();
6219
+ /** The URL that the breadcrumb item points to. */
6220
+ href?: GdsBreadcrumb['href'];
6221
+ /** Where to display the linked breadcrumb URL. Only used when href is present. */
6222
+ target?: GdsBreadcrumb['target'];
6223
+ /** The relationship of the linked breadcrumb URL. Defaults to "noreferrer noopener" when target is "_blank". */
6224
+ rel?: GdsBreadcrumb['rel'];
6225
+ /** Accessible label for the breadcrumb item. Use when visual text needs a different description. */
6226
+ label?: GdsBreadcrumb['label'];
6227
+ /** When true, the breadcrumb item will render as an overflow menu instead of a regular link. */
6228
+ overflow?: GdsBreadcrumb['overflow'];
6229
+ /** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
6230
+
6231
+ This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
6232
+ run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
6233
+ is projected.
6234
+
6235
+ Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
6236
+ element needs to be measured synchronously after being added to the DOM. */
6237
+ syncFirstRender?: GdsBreadcrumb['syncFirstRender'];
6238
+ /**
6239
+ * Prevent the browser from following the href when RouterLink handles
6240
+ * navigation. RouterLink calls Router.navigateByUrl() for all elements,
6241
+ * but only calls preventDefault() for native <a> tags. For custom
6242
+ * elements we must do it ourselves, respecting modifier-key and
6243
+ * target-attribute semantics so that ctrl-click / cmd-click / target=_blank
6244
+ * still open a new tab.
6245
+ * @internal
6246
+ */
6247
+ private preventNativeNavigation;
6248
+ /**
6249
+ * Updates the href attribute from RouterLink using only public Angular APIs.
6250
+ * @internal
6251
+ */
6252
+ private updateHref;
6253
+ ngOnInit(): void;
6254
+ ngOnChanges(changes: SimpleChanges): void;
6255
+ ngAfterViewInit(): void;
6256
+ static ɵfac: i0.ɵɵFactoryDeclaration<GdsBreadcrumbComponent, never>;
6257
+ static ɵcmp: i0.ɵɵComponentDeclaration<GdsBreadcrumbComponent, "gds-breadcrumb", never, { "href": { "alias": "href"; "required": false; }; "target": { "alias": "target"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "overflow": { "alias": "overflow"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
6258
+ static ngAcceptInputType_overflow: unknown;
6259
+ static ngAcceptInputType_syncFirstRender: unknown;
6260
+ }
6261
+
6203
6262
  /**
6204
6263
  * Angular wrapper for the gds-avatar-group web component
6205
6264
  * `gds-avatar-group` stacks multiple avatars with an overlapping ring cutout effect.
@@ -6265,65 +6324,6 @@ declare class GdsAvatarGroupComponent implements OnInit, OnChanges, AfterViewIni
6265
6324
  static ngAcceptInputType_syncFirstRender: unknown;
6266
6325
  }
6267
6326
 
6268
- /**
6269
- * Angular wrapper for the gds-breadcrumb web component
6270
- *
6271
- */
6272
- declare class GdsBreadcrumbComponent implements OnInit, OnChanges, AfterViewInit {
6273
- private elementRef;
6274
- private zone;
6275
- private cdr;
6276
- private renderer;
6277
- private router;
6278
- private locationStrategy;
6279
- private destroyRef;
6280
- private routerLink;
6281
- private routerLinkActive;
6282
- get element(): GdsBreadcrumb;
6283
- constructor();
6284
- /** The URL that the breadcrumb item points to. */
6285
- href?: GdsBreadcrumb['href'];
6286
- /** Where to display the linked breadcrumb URL. Only used when href is present. */
6287
- target?: GdsBreadcrumb['target'];
6288
- /** The relationship of the linked breadcrumb URL. Defaults to "noreferrer noopener" when target is "_blank". */
6289
- rel?: GdsBreadcrumb['rel'];
6290
- /** Accessible label for the breadcrumb item. Use when visual text needs a different description. */
6291
- label?: GdsBreadcrumb['label'];
6292
- /** When true, the breadcrumb item will render as an overflow menu instead of a regular link. */
6293
- overflow?: GdsBreadcrumb['overflow'];
6294
- /** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
6295
-
6296
- This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
6297
- run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
6298
- is projected.
6299
-
6300
- Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
6301
- element needs to be measured synchronously after being added to the DOM. */
6302
- syncFirstRender?: GdsBreadcrumb['syncFirstRender'];
6303
- /**
6304
- * Prevent the browser from following the href when RouterLink handles
6305
- * navigation. RouterLink calls Router.navigateByUrl() for all elements,
6306
- * but only calls preventDefault() for native <a> tags. For custom
6307
- * elements we must do it ourselves, respecting modifier-key and
6308
- * target-attribute semantics so that ctrl-click / cmd-click / target=_blank
6309
- * still open a new tab.
6310
- * @internal
6311
- */
6312
- private preventNativeNavigation;
6313
- /**
6314
- * Updates the href attribute from RouterLink using only public Angular APIs.
6315
- * @internal
6316
- */
6317
- private updateHref;
6318
- ngOnInit(): void;
6319
- ngOnChanges(changes: SimpleChanges): void;
6320
- ngAfterViewInit(): void;
6321
- static ɵfac: i0.ɵɵFactoryDeclaration<GdsBreadcrumbComponent, never>;
6322
- static ɵcmp: i0.ɵɵComponentDeclaration<GdsBreadcrumbComponent, "gds-breadcrumb", never, { "href": { "alias": "href"; "required": false; }; "target": { "alias": "target"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "overflow": { "alias": "overflow"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
6323
- static ngAcceptInputType_overflow: unknown;
6324
- static ngAcceptInputType_syncFirstRender: unknown;
6325
- }
6326
-
6327
6327
  /**
6328
6328
  * Angular wrapper for the gds-checkbox-group web component
6329
6329
  *
@@ -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 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]>;
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 GdsCoachmarkComponent, typeof GdsCheckboxComponent, 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 GdsBreadcrumbComponent, typeof GdsAvatarGroupComponent, 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 GdsCoachmarkComponent, typeof GdsCheckboxComponent, 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 GdsBreadcrumbComponent, typeof GdsAvatarGroupComponent, 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
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sebgroup/green-core-ng",
3
3
  "description": "Angular wrappers for @sebgroup/green-core web components.",
4
- "version": "3.17.3",
4
+ "version": "3.17.4",
5
5
  "main": "src/index.js",
6
6
  "module": "fesm2022/sebgroup-green-core-ng.mjs",
7
7
  "type": "module",
@@ -22,7 +22,7 @@
22
22
  "directory": "../../dist/libs/core-ng"
23
23
  },
24
24
  "dependencies": {
25
- "@sebgroup/green-core": "3.17.3",
25
+ "@sebgroup/green-core": "3.17.4",
26
26
  "tslib": "^2.3.0"
27
27
  },
28
28
  "peerDependencies": {