@sebgroup/green-core-ng 3.18.1 → 3.20.0
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 +160 -142
- package/fesm2022/sebgroup-green-core-ng.mjs.map +1 -1
- package/index.d.ts +96 -77
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -63,8 +63,6 @@ import { GdsSegment } from '@sebgroup/green-core/components/segmented-control/se
|
|
|
63
63
|
import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.component.js';
|
|
64
64
|
import { GdsSensitiveDate } from '@sebgroup/green-core/components/sensitive/date/sensitive-date.component.js';
|
|
65
65
|
import { GdsSensitiveNumber } from '@sebgroup/green-core/components/sensitive/number/sensitive-number.component.js';
|
|
66
|
-
import { GdsTab } from '@sebgroup/green-core/components/tabs/tab/tab.component.js';
|
|
67
|
-
import { GdsTabPanel } from '@sebgroup/green-core/components/tabs/tab-panel/tab-panel.component.js';
|
|
68
66
|
import { IconAi } from '@sebgroup/green-core/components/icon/icons/ai.component.js';
|
|
69
67
|
import { IconAirplaneUp } from '@sebgroup/green-core/components/icon/icons/airplane-up.component.js';
|
|
70
68
|
import { IconArchive } from '@sebgroup/green-core/components/icon/icons/archive.component.js';
|
|
@@ -376,6 +374,8 @@ import { IconYoutube } from '@sebgroup/green-core/components/icon/icons/youtube.
|
|
|
376
374
|
import { IconZap } from '@sebgroup/green-core/components/icon/icons/zap.component.js';
|
|
377
375
|
import { IconZoomIn } from '@sebgroup/green-core/components/icon/icons/zoom-in.component.js';
|
|
378
376
|
import { IconZoomOut } from '@sebgroup/green-core/components/icon/icons/zoom-out.component.js';
|
|
377
|
+
import { GdsTab } from '@sebgroup/green-core/components/tabs/tab/tab.component.js';
|
|
378
|
+
import { GdsTabPanel } from '@sebgroup/green-core/components/tabs/tab-panel/tab-panel.component.js';
|
|
379
379
|
import * as i2 from '@angular/common';
|
|
380
380
|
import { ɵAnimationEngine as _AnimationEngine, ɵAnimationRendererFactory as _AnimationRendererFactory } from '@angular/animations/browser';
|
|
381
381
|
import { ɵDomRendererFactory2 as _DomRendererFactory2 } from '@angular/platform-browser';
|
|
@@ -396,13 +396,20 @@ declare class GdsAlertComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
396
396
|
/** The label for the alert, used for accessibility purposes.
|
|
397
397
|
This needs be set to something relevant to the content of the alert. */
|
|
398
398
|
label?: GdsAlert['label'];
|
|
399
|
-
/** The role of the alert, which can be 'alert' or 'status'.
|
|
399
|
+
/** The role of the alert live region, which can be 'alert' or 'status'.
|
|
400
400
|
'alert' is used for critical messages that require immediate attention,
|
|
401
|
-
while 'status' is for informational messages. These
|
|
401
|
+
while 'status' is for informational messages. These correspond to the
|
|
402
402
|
ARIA roles, which you can read more about on MDN:
|
|
403
403
|
https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/alert_role
|
|
404
404
|
https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/status_role */
|
|
405
|
+
alertRole?: GdsAlert['alertRole'];
|
|
406
|
+
/** The role of the alert live region. */
|
|
405
407
|
role?: GdsAlert['role'];
|
|
408
|
+
/** Whether the alert is closed.
|
|
409
|
+
|
|
410
|
+
For dynamic announcements, mount the alert before the message should be
|
|
411
|
+
announced, keep it closed, and then set `closed` to `false`. */
|
|
412
|
+
closed?: GdsAlert['closed'];
|
|
406
413
|
/** The dismissibility of the alert, which determines whether it can be closed by the user. */
|
|
407
414
|
dismissible?: GdsAlert['dismissible'];
|
|
408
415
|
/** The time in milliseconds after which the alert will automatically dismiss itself.
|
|
@@ -411,6 +418,15 @@ declare class GdsAlertComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
411
418
|
/** The text for the action button, if provided.
|
|
412
419
|
If not set, no action button will be rendered. */
|
|
413
420
|
buttonLabel?: GdsAlert['buttonLabel'];
|
|
421
|
+
/** Style Expression Property that controls the `margin` property.
|
|
422
|
+
Only accepts space tokens. */
|
|
423
|
+
margin?: GdsAlert['margin'];
|
|
424
|
+
/** Style Expression Property that controls the `margin-inline` property.
|
|
425
|
+
Only accepts space tokens. */
|
|
426
|
+
marginInline?: GdsAlert['margin-inline'];
|
|
427
|
+
/** Style Expression Property that controls the `margin-block` property.
|
|
428
|
+
Only accepts space tokens. */
|
|
429
|
+
marginBlock?: GdsAlert['margin-block'];
|
|
414
430
|
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
415
431
|
|
|
416
432
|
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
@@ -424,11 +440,14 @@ declare class GdsAlertComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
424
440
|
gdsClose: EventEmitter<CustomEvent<any>>;
|
|
425
441
|
/** Fired when action button is clicked */
|
|
426
442
|
gdsAction: EventEmitter<CustomEvent<any>>;
|
|
443
|
+
/** Fired when the alert is closed internally */
|
|
444
|
+
gdsUiState: EventEmitter<CustomEvent<any>>;
|
|
427
445
|
ngOnInit(): void;
|
|
428
446
|
ngOnChanges(changes: SimpleChanges): void;
|
|
429
447
|
ngAfterViewInit(): void;
|
|
430
448
|
static ɵfac: i0.ɵɵFactoryDeclaration<GdsAlertComponent, never>;
|
|
431
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GdsAlertComponent, "gds-alert", never, { "variant": { "alias": "variant"; "required": false; }; "label": { "alias": "label"; "required": false; }; "role": { "alias": "role"; "required": false; }; "dismissible": { "alias": "dismissible"; "required": false; }; "timeout": { "alias": "timeout"; "required": false; }; "buttonLabel": { "alias": "buttonLabel"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsClose": "gdsClose"; "gdsAction": "gdsAction"; }, never, ["*"], true, never>;
|
|
449
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GdsAlertComponent, "gds-alert", never, { "variant": { "alias": "variant"; "required": false; }; "label": { "alias": "label"; "required": false; }; "alertRole": { "alias": "alertRole"; "required": false; }; "role": { "alias": "role"; "required": false; }; "closed": { "alias": "closed"; "required": false; }; "dismissible": { "alias": "dismissible"; "required": false; }; "timeout": { "alias": "timeout"; "required": false; }; "buttonLabel": { "alias": "buttonLabel"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsClose": "gdsClose"; "gdsAction": "gdsAction"; "gdsUiState": "gdsUiState"; }, never, ["*"], true, never>;
|
|
450
|
+
static ngAcceptInputType_closed: unknown;
|
|
432
451
|
static ngAcceptInputType_dismissible: unknown;
|
|
433
452
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
434
453
|
}
|
|
@@ -8254,77 +8273,6 @@ declare class GdsSensitiveNumberComponent implements OnInit, OnChanges, AfterVie
|
|
|
8254
8273
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
8255
8274
|
}
|
|
8256
8275
|
|
|
8257
|
-
/**
|
|
8258
|
-
* Angular wrapper for the gds-tab web component
|
|
8259
|
-
*
|
|
8260
|
-
*/
|
|
8261
|
-
declare class GdsTabComponent implements OnInit, OnChanges, AfterViewInit {
|
|
8262
|
-
private elementRef;
|
|
8263
|
-
private zone;
|
|
8264
|
-
private cdr;
|
|
8265
|
-
get element(): GdsTab;
|
|
8266
|
-
constructor();
|
|
8267
|
-
/** Optional size variant. When set to "small", applies reduced padding. */
|
|
8268
|
-
size?: GdsTab['size'];
|
|
8269
|
-
/** Disables selection of this tab. */
|
|
8270
|
-
disabled?: GdsTab['disabled'];
|
|
8271
|
-
/** Whether this tab is currently selected. Managed by the parent `<gds-tabs>`. */
|
|
8272
|
-
selected?: GdsTab['selected'];
|
|
8273
|
-
/** The `name` of the `<gds-tab-panel>` to associate with this tab.
|
|
8274
|
-
When set, this tab controls the panel whose `name` attribute matches,
|
|
8275
|
-
regardless of DOM order. When omitted, pairing falls back to position. */
|
|
8276
|
-
panel?: GdsTab['panel'];
|
|
8277
|
-
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
8278
|
-
|
|
8279
|
-
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
8280
|
-
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
8281
|
-
is projected.
|
|
8282
|
-
|
|
8283
|
-
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
8284
|
-
element needs to be measured synchronously after being added to the DOM. */
|
|
8285
|
-
syncFirstRender?: GdsTab['syncFirstRender'];
|
|
8286
|
-
/** Fired when the tab is clicked. Note that clicks on disabled tabs are ignored. */
|
|
8287
|
-
click: EventEmitter<MouseEvent>;
|
|
8288
|
-
ngOnInit(): void;
|
|
8289
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
8290
|
-
ngAfterViewInit(): void;
|
|
8291
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GdsTabComponent, never>;
|
|
8292
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GdsTabComponent, "gds-tab", never, { "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "panel": { "alias": "panel"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "click": "click"; }, never, ["*"], true, never>;
|
|
8293
|
-
static ngAcceptInputType_disabled: unknown;
|
|
8294
|
-
static ngAcceptInputType_selected: unknown;
|
|
8295
|
-
static ngAcceptInputType_syncFirstRender: unknown;
|
|
8296
|
-
}
|
|
8297
|
-
|
|
8298
|
-
/**
|
|
8299
|
-
* Angular wrapper for the gds-tab-panel web component
|
|
8300
|
-
*
|
|
8301
|
-
*/
|
|
8302
|
-
declare class GdsTabPanelComponent implements OnInit, OnChanges, AfterViewInit {
|
|
8303
|
-
private elementRef;
|
|
8304
|
-
private zone;
|
|
8305
|
-
private cdr;
|
|
8306
|
-
get element(): GdsTabPanel;
|
|
8307
|
-
constructor();
|
|
8308
|
-
/** A unique name used to associate this panel with a `<gds-tab panel="...">.`
|
|
8309
|
-
Must be unique within the parent `<gds-tabs>`. */
|
|
8310
|
-
name?: GdsTabPanel['name'];
|
|
8311
|
-
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
8312
|
-
|
|
8313
|
-
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
8314
|
-
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
8315
|
-
is projected.
|
|
8316
|
-
|
|
8317
|
-
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
8318
|
-
element needs to be measured synchronously after being added to the DOM. */
|
|
8319
|
-
syncFirstRender?: GdsTabPanel['syncFirstRender'];
|
|
8320
|
-
ngOnInit(): void;
|
|
8321
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
8322
|
-
ngAfterViewInit(): void;
|
|
8323
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GdsTabPanelComponent, never>;
|
|
8324
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GdsTabPanelComponent, "gds-tab-panel", never, { "name": { "alias": "name"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
8325
|
-
static ngAcceptInputType_syncFirstRender: unknown;
|
|
8326
|
-
}
|
|
8327
|
-
|
|
8328
8276
|
/**
|
|
8329
8277
|
* Angular wrapper for the gds-icon-ai web component
|
|
8330
8278
|
*
|
|
@@ -35382,6 +35330,77 @@ declare class IconZoomOutComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
35382
35330
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
35383
35331
|
}
|
|
35384
35332
|
|
|
35333
|
+
/**
|
|
35334
|
+
* Angular wrapper for the gds-tab web component
|
|
35335
|
+
*
|
|
35336
|
+
*/
|
|
35337
|
+
declare class GdsTabComponent implements OnInit, OnChanges, AfterViewInit {
|
|
35338
|
+
private elementRef;
|
|
35339
|
+
private zone;
|
|
35340
|
+
private cdr;
|
|
35341
|
+
get element(): GdsTab;
|
|
35342
|
+
constructor();
|
|
35343
|
+
/** Optional size variant. When set to "small", applies reduced padding. */
|
|
35344
|
+
size?: GdsTab['size'];
|
|
35345
|
+
/** Disables selection of this tab. */
|
|
35346
|
+
disabled?: GdsTab['disabled'];
|
|
35347
|
+
/** Whether this tab is currently selected. Managed by the parent `<gds-tabs>`. */
|
|
35348
|
+
selected?: GdsTab['selected'];
|
|
35349
|
+
/** The `name` of the `<gds-tab-panel>` to associate with this tab.
|
|
35350
|
+
When set, this tab controls the panel whose `name` attribute matches,
|
|
35351
|
+
regardless of DOM order. When omitted, pairing falls back to position. */
|
|
35352
|
+
panel?: GdsTab['panel'];
|
|
35353
|
+
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
35354
|
+
|
|
35355
|
+
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
35356
|
+
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
35357
|
+
is projected.
|
|
35358
|
+
|
|
35359
|
+
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
35360
|
+
element needs to be measured synchronously after being added to the DOM. */
|
|
35361
|
+
syncFirstRender?: GdsTab['syncFirstRender'];
|
|
35362
|
+
/** Fired when the tab is clicked. Note that clicks on disabled tabs are ignored. */
|
|
35363
|
+
click: EventEmitter<MouseEvent>;
|
|
35364
|
+
ngOnInit(): void;
|
|
35365
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
35366
|
+
ngAfterViewInit(): void;
|
|
35367
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GdsTabComponent, never>;
|
|
35368
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GdsTabComponent, "gds-tab", never, { "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "panel": { "alias": "panel"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "click": "click"; }, never, ["*"], true, never>;
|
|
35369
|
+
static ngAcceptInputType_disabled: unknown;
|
|
35370
|
+
static ngAcceptInputType_selected: unknown;
|
|
35371
|
+
static ngAcceptInputType_syncFirstRender: unknown;
|
|
35372
|
+
}
|
|
35373
|
+
|
|
35374
|
+
/**
|
|
35375
|
+
* Angular wrapper for the gds-tab-panel web component
|
|
35376
|
+
*
|
|
35377
|
+
*/
|
|
35378
|
+
declare class GdsTabPanelComponent implements OnInit, OnChanges, AfterViewInit {
|
|
35379
|
+
private elementRef;
|
|
35380
|
+
private zone;
|
|
35381
|
+
private cdr;
|
|
35382
|
+
get element(): GdsTabPanel;
|
|
35383
|
+
constructor();
|
|
35384
|
+
/** A unique name used to associate this panel with a `<gds-tab panel="...">.`
|
|
35385
|
+
Must be unique within the parent `<gds-tabs>`. */
|
|
35386
|
+
name?: GdsTabPanel['name'];
|
|
35387
|
+
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
35388
|
+
|
|
35389
|
+
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
35390
|
+
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
35391
|
+
is projected.
|
|
35392
|
+
|
|
35393
|
+
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
35394
|
+
element needs to be measured synchronously after being added to the DOM. */
|
|
35395
|
+
syncFirstRender?: GdsTabPanel['syncFirstRender'];
|
|
35396
|
+
ngOnInit(): void;
|
|
35397
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
35398
|
+
ngAfterViewInit(): void;
|
|
35399
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GdsTabPanelComponent, never>;
|
|
35400
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GdsTabPanelComponent, "gds-tab-panel", never, { "name": { "alias": "name"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
35401
|
+
static ngAcceptInputType_syncFirstRender: unknown;
|
|
35402
|
+
}
|
|
35403
|
+
|
|
35385
35404
|
/**
|
|
35386
35405
|
* Angular wrapper for the gds-menu-item web component
|
|
35387
35406
|
*
|
|
@@ -35503,7 +35522,7 @@ declare class GdsOptionComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
35503
35522
|
*/
|
|
35504
35523
|
declare class GreenCoreNgModule {
|
|
35505
35524
|
static ɵfac: i0.ɵɵFactoryDeclaration<GreenCoreNgModule, never>;
|
|
35506
|
-
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]>;
|
|
35525
|
+
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 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 GdsTabComponent, typeof GdsTabPanelComponent, 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 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 GdsTabComponent, typeof GdsTabPanelComponent, typeof GdsMenuItemComponent, typeof GdsMenuHeadingComponent, typeof GdsOptionComponent]>;
|
|
35507
35526
|
static ɵinj: i0.ɵɵInjectorDeclaration<GreenCoreNgModule>;
|
|
35508
35527
|
}
|
|
35509
35528
|
|
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.
|
|
4
|
+
"version": "3.20.0",
|
|
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.
|
|
25
|
+
"@sebgroup/green-core": "3.20.0",
|
|
26
26
|
"tslib": "^2.3.0"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|