@sebgroup/green-core-ng 3.17.0 → 3.17.1
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 +319 -319
- package/fesm2022/sebgroup-green-core-ng.mjs.map +1 -1
- package/index.d.ts +286 -286
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -4,9 +4,9 @@ import { GdsAlert } from '@sebgroup/green-core/components/alert/alert.component.
|
|
|
4
4
|
import { GdsAvatar } from '@sebgroup/green-core/components/avatar/avatar.component.js';
|
|
5
5
|
import { GdsBadge } from '@sebgroup/green-core/components/badge/badge.component.js';
|
|
6
6
|
import { GdsBlur } from '@sebgroup/green-core/components/blur/blur.component.js';
|
|
7
|
-
import { GdsBreadcrumbs } from '@sebgroup/green-core/components/breadcrumbs/breadcrumbs.component.js';
|
|
8
7
|
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
9
8
|
import { GdsButton } from '@sebgroup/green-core/components/button/button.component.js';
|
|
9
|
+
import { GdsBreadcrumbs } from '@sebgroup/green-core/components/breadcrumbs/breadcrumbs.component.js';
|
|
10
10
|
import { GdsCalendar } from '@sebgroup/green-core/components/calendar/calendar.component.js';
|
|
11
11
|
import { GdsCard } from '@sebgroup/green-core/components/card/card.component.js';
|
|
12
12
|
import { GdsCardLinked } from '@sebgroup/green-core/components/card-linked/card-linked.component.js';
|
|
@@ -14,9 +14,9 @@ import { GdsCheckbox } from '@sebgroup/green-core/components/checkbox/checkbox.c
|
|
|
14
14
|
import { GdsCoachmark } from '@sebgroup/green-core/components/coachmark/coachmark.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
|
+
import { GdsDiv } from '@sebgroup/green-core/components/div/div.component.js';
|
|
17
18
|
import { GdsDetails } from '@sebgroup/green-core/components/details/details.component.js';
|
|
18
19
|
import { GdsDialog } from '@sebgroup/green-core/components/dialog/dialog.component.js';
|
|
19
|
-
import { GdsDiv } from '@sebgroup/green-core/components/div/div.component.js';
|
|
20
20
|
import { GdsDivider } from '@sebgroup/green-core/components/divider/divider.component.js';
|
|
21
21
|
import { GdsDropdown, GdsOption } from '@sebgroup/green-core/components/dropdown/dropdown.component.js';
|
|
22
22
|
import { GdsFab } from '@sebgroup/green-core/components/fab/fab.component.js';
|
|
@@ -646,90 +646,6 @@ declare class GdsBlurComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
646
646
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
647
647
|
}
|
|
648
648
|
|
|
649
|
-
/**
|
|
650
|
-
* Angular wrapper for the gds-breadcrumbs web component
|
|
651
|
-
*
|
|
652
|
-
*/
|
|
653
|
-
declare class GdsBreadcrumbsComponent implements OnInit, OnChanges, AfterViewInit {
|
|
654
|
-
private elementRef;
|
|
655
|
-
private zone;
|
|
656
|
-
private cdr;
|
|
657
|
-
get element(): GdsBreadcrumbs;
|
|
658
|
-
constructor();
|
|
659
|
-
/** Controls the font-size and spacing of separators and breadcrumbs items */
|
|
660
|
-
size?: GdsBreadcrumbs['size'];
|
|
661
|
-
/** This property allow you to set the accessible label of the breadcrumbs.
|
|
662
|
-
If not provided, the default label is "breadcrumbs". */
|
|
663
|
-
label?: GdsBreadcrumbs['label'];
|
|
664
|
-
/** Style Expression Property that controls the `align-self` property.
|
|
665
|
-
Supports all valid CSS `align-self` values. */
|
|
666
|
-
alignSelf?: GdsBreadcrumbs['align-self'];
|
|
667
|
-
/** Style Expression Property that controls the `justify-self` property.
|
|
668
|
-
Supports all valid CSS `justify-self` values. */
|
|
669
|
-
justifySelf?: GdsBreadcrumbs['justify-self'];
|
|
670
|
-
/** Style Expression Property that controls the `place-self` property.
|
|
671
|
-
Supports all valid CSS `place-self` values. */
|
|
672
|
-
placeSelf?: GdsBreadcrumbs['place-self'];
|
|
673
|
-
/** Style Expression Property that controls the `grid-column` property.
|
|
674
|
-
Supports all valid CSS grid-column values.
|
|
675
|
-
Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
|
|
676
|
-
gridColumn?: GdsBreadcrumbs['grid-column'];
|
|
677
|
-
/** Style Expression Property that controls the `grid-row` property.
|
|
678
|
-
Supports all valid CSS `grid-row` values. */
|
|
679
|
-
gridRow?: GdsBreadcrumbs['grid-row'];
|
|
680
|
-
/** Style Expression Property that controls the `grid-area` property.
|
|
681
|
-
Supports all valid CSS `grid-area` values. */
|
|
682
|
-
gridArea?: GdsBreadcrumbs['grid-area'];
|
|
683
|
-
/** Style Expression Property that controls the `flex` property.
|
|
684
|
-
Supports all valid CSS `flex` values. */
|
|
685
|
-
flex?: GdsBreadcrumbs['flex'];
|
|
686
|
-
/** Style Expression Property that controls the `order` property.
|
|
687
|
-
Supports all valid CSS `order` values. */
|
|
688
|
-
order?: GdsBreadcrumbs['order'];
|
|
689
|
-
/** Style Expression Property that controls the `width` property.
|
|
690
|
-
Supports space tokens and all valid CSS `width` values. */
|
|
691
|
-
width?: GdsBreadcrumbs['width'];
|
|
692
|
-
/** Style Expression Property that controls the `min-width` property.
|
|
693
|
-
Supports space tokens and all valid CSS `min-width` values. */
|
|
694
|
-
minWidth?: GdsBreadcrumbs['min-width'];
|
|
695
|
-
/** Style Expression Property that controls the `max-width` property.
|
|
696
|
-
Supports space tokens and all valid CSS `max-width` values. */
|
|
697
|
-
maxWidth?: GdsBreadcrumbs['max-width'];
|
|
698
|
-
/** Style Expression Property that controls the `inline-size` property.
|
|
699
|
-
Supports space tokens and all valid CSS `inline-size` values */
|
|
700
|
-
inlineSize?: GdsBreadcrumbs['inline-size'];
|
|
701
|
-
/** Style Expression Property that controls the `min-inline-size` property.
|
|
702
|
-
Supports space tokens and all valid CSS `min-inline-size` values. */
|
|
703
|
-
minInlineSize?: GdsBreadcrumbs['min-inline-size'];
|
|
704
|
-
/** Style Expression Property that controls the `max-inline-size` property.
|
|
705
|
-
Supports space tokens and all valid CSS `max-inline-size` values. */
|
|
706
|
-
maxInlineSize?: GdsBreadcrumbs['max-inline-size'];
|
|
707
|
-
/** Style Expression Property that controls the `margin` property.
|
|
708
|
-
Only accepts space tokens. */
|
|
709
|
-
margin?: GdsBreadcrumbs['margin'];
|
|
710
|
-
/** Style Expression Property that controls the `margin-inline` property.
|
|
711
|
-
Only accepts space tokens. */
|
|
712
|
-
marginInline?: GdsBreadcrumbs['margin-inline'];
|
|
713
|
-
/** Style Expression Property that controls the `margin-block` property.
|
|
714
|
-
Only accepts space tokens. */
|
|
715
|
-
marginBlock?: GdsBreadcrumbs['margin-block'];
|
|
716
|
-
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
717
|
-
|
|
718
|
-
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
719
|
-
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
720
|
-
is projected.
|
|
721
|
-
|
|
722
|
-
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
723
|
-
element needs to be measured synchronously after being added to the DOM. */
|
|
724
|
-
syncFirstRender?: GdsBreadcrumbs['syncFirstRender'];
|
|
725
|
-
ngOnInit(): void;
|
|
726
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
727
|
-
ngAfterViewInit(): void;
|
|
728
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GdsBreadcrumbsComponent, never>;
|
|
729
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GdsBreadcrumbsComponent, "gds-breadcrumbs", never, { "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
730
|
-
static ngAcceptInputType_syncFirstRender: unknown;
|
|
731
|
-
}
|
|
732
|
-
|
|
733
649
|
/**
|
|
734
650
|
* Base class for Angular wrapper components that wrap Green Core form controls.
|
|
735
651
|
*
|
|
@@ -909,6 +825,90 @@ declare class GdsButtonComponent extends GdsFormControlBase {
|
|
|
909
825
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
910
826
|
}
|
|
911
827
|
|
|
828
|
+
/**
|
|
829
|
+
* Angular wrapper for the gds-breadcrumbs web component
|
|
830
|
+
*
|
|
831
|
+
*/
|
|
832
|
+
declare class GdsBreadcrumbsComponent implements OnInit, OnChanges, AfterViewInit {
|
|
833
|
+
private elementRef;
|
|
834
|
+
private zone;
|
|
835
|
+
private cdr;
|
|
836
|
+
get element(): GdsBreadcrumbs;
|
|
837
|
+
constructor();
|
|
838
|
+
/** Controls the font-size and spacing of separators and breadcrumbs items */
|
|
839
|
+
size?: GdsBreadcrumbs['size'];
|
|
840
|
+
/** This property allow you to set the accessible label of the breadcrumbs.
|
|
841
|
+
If not provided, the default label is "breadcrumbs". */
|
|
842
|
+
label?: GdsBreadcrumbs['label'];
|
|
843
|
+
/** Style Expression Property that controls the `align-self` property.
|
|
844
|
+
Supports all valid CSS `align-self` values. */
|
|
845
|
+
alignSelf?: GdsBreadcrumbs['align-self'];
|
|
846
|
+
/** Style Expression Property that controls the `justify-self` property.
|
|
847
|
+
Supports all valid CSS `justify-self` values. */
|
|
848
|
+
justifySelf?: GdsBreadcrumbs['justify-self'];
|
|
849
|
+
/** Style Expression Property that controls the `place-self` property.
|
|
850
|
+
Supports all valid CSS `place-self` values. */
|
|
851
|
+
placeSelf?: GdsBreadcrumbs['place-self'];
|
|
852
|
+
/** Style Expression Property that controls the `grid-column` property.
|
|
853
|
+
Supports all valid CSS grid-column values.
|
|
854
|
+
Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
|
|
855
|
+
gridColumn?: GdsBreadcrumbs['grid-column'];
|
|
856
|
+
/** Style Expression Property that controls the `grid-row` property.
|
|
857
|
+
Supports all valid CSS `grid-row` values. */
|
|
858
|
+
gridRow?: GdsBreadcrumbs['grid-row'];
|
|
859
|
+
/** Style Expression Property that controls the `grid-area` property.
|
|
860
|
+
Supports all valid CSS `grid-area` values. */
|
|
861
|
+
gridArea?: GdsBreadcrumbs['grid-area'];
|
|
862
|
+
/** Style Expression Property that controls the `flex` property.
|
|
863
|
+
Supports all valid CSS `flex` values. */
|
|
864
|
+
flex?: GdsBreadcrumbs['flex'];
|
|
865
|
+
/** Style Expression Property that controls the `order` property.
|
|
866
|
+
Supports all valid CSS `order` values. */
|
|
867
|
+
order?: GdsBreadcrumbs['order'];
|
|
868
|
+
/** Style Expression Property that controls the `width` property.
|
|
869
|
+
Supports space tokens and all valid CSS `width` values. */
|
|
870
|
+
width?: GdsBreadcrumbs['width'];
|
|
871
|
+
/** Style Expression Property that controls the `min-width` property.
|
|
872
|
+
Supports space tokens and all valid CSS `min-width` values. */
|
|
873
|
+
minWidth?: GdsBreadcrumbs['min-width'];
|
|
874
|
+
/** Style Expression Property that controls the `max-width` property.
|
|
875
|
+
Supports space tokens and all valid CSS `max-width` values. */
|
|
876
|
+
maxWidth?: GdsBreadcrumbs['max-width'];
|
|
877
|
+
/** Style Expression Property that controls the `inline-size` property.
|
|
878
|
+
Supports space tokens and all valid CSS `inline-size` values */
|
|
879
|
+
inlineSize?: GdsBreadcrumbs['inline-size'];
|
|
880
|
+
/** Style Expression Property that controls the `min-inline-size` property.
|
|
881
|
+
Supports space tokens and all valid CSS `min-inline-size` values. */
|
|
882
|
+
minInlineSize?: GdsBreadcrumbs['min-inline-size'];
|
|
883
|
+
/** Style Expression Property that controls the `max-inline-size` property.
|
|
884
|
+
Supports space tokens and all valid CSS `max-inline-size` values. */
|
|
885
|
+
maxInlineSize?: GdsBreadcrumbs['max-inline-size'];
|
|
886
|
+
/** Style Expression Property that controls the `margin` property.
|
|
887
|
+
Only accepts space tokens. */
|
|
888
|
+
margin?: GdsBreadcrumbs['margin'];
|
|
889
|
+
/** Style Expression Property that controls the `margin-inline` property.
|
|
890
|
+
Only accepts space tokens. */
|
|
891
|
+
marginInline?: GdsBreadcrumbs['margin-inline'];
|
|
892
|
+
/** Style Expression Property that controls the `margin-block` property.
|
|
893
|
+
Only accepts space tokens. */
|
|
894
|
+
marginBlock?: GdsBreadcrumbs['margin-block'];
|
|
895
|
+
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
896
|
+
|
|
897
|
+
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
898
|
+
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
899
|
+
is projected.
|
|
900
|
+
|
|
901
|
+
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
902
|
+
element needs to be measured synchronously after being added to the DOM. */
|
|
903
|
+
syncFirstRender?: GdsBreadcrumbs['syncFirstRender'];
|
|
904
|
+
ngOnInit(): void;
|
|
905
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
906
|
+
ngAfterViewInit(): void;
|
|
907
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GdsBreadcrumbsComponent, never>;
|
|
908
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GdsBreadcrumbsComponent, "gds-breadcrumbs", never, { "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
909
|
+
static ngAcceptInputType_syncFirstRender: unknown;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
912
|
/**
|
|
913
913
|
* Angular wrapper for the gds-calendar web component
|
|
914
914
|
*
|
|
@@ -1843,205 +1843,6 @@ declare class GdsDatepickerComponent extends GdsFormControlBase {
|
|
|
1843
1843
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
1844
1844
|
}
|
|
1845
1845
|
|
|
1846
|
-
/**
|
|
1847
|
-
* Angular wrapper for the gds-details web component
|
|
1848
|
-
* Details component that provides collapsible content sections.
|
|
1849
|
-
*/
|
|
1850
|
-
declare class GdsDetailsComponent implements OnInit, OnChanges, AfterViewInit {
|
|
1851
|
-
private elementRef;
|
|
1852
|
-
private zone;
|
|
1853
|
-
private cdr;
|
|
1854
|
-
get element(): GdsDetails;
|
|
1855
|
-
constructor();
|
|
1856
|
-
/** The summary text displayed in the details header */
|
|
1857
|
-
summary?: GdsDetails['summary'];
|
|
1858
|
-
/** Group identifier for details behavior synchronization */
|
|
1859
|
-
name?: GdsDetails['name'];
|
|
1860
|
-
/** Controls the expanded state of the details */
|
|
1861
|
-
open?: GdsDetails['open'];
|
|
1862
|
-
/** Controls the size variant of the details */
|
|
1863
|
-
size?: GdsDetails['size'];
|
|
1864
|
-
/** Style Expression Property that controls the `width` property.
|
|
1865
|
-
Supports space tokens and all valid CSS `width` values. */
|
|
1866
|
-
width?: GdsDetails['width'];
|
|
1867
|
-
/** Style Expression Property that controls the `min-width` property.
|
|
1868
|
-
Supports space tokens and all valid CSS `min-width` values. */
|
|
1869
|
-
minWidth?: GdsDetails['min-width'];
|
|
1870
|
-
/** Style Expression Property that controls the `max-width` property.
|
|
1871
|
-
Supports space tokens and all valid CSS `max-width` values. */
|
|
1872
|
-
maxWidth?: GdsDetails['max-width'];
|
|
1873
|
-
/** Style Expression Property that controls the `inline-size` property.
|
|
1874
|
-
Supports space tokens and all valid CSS `inline-size` values */
|
|
1875
|
-
inlineSize?: GdsDetails['inline-size'];
|
|
1876
|
-
/** Style Expression Property that controls the `min-inline-size` property.
|
|
1877
|
-
Supports space tokens and all valid CSS `min-inline-size` values. */
|
|
1878
|
-
minInlineSize?: GdsDetails['min-inline-size'];
|
|
1879
|
-
/** Style Expression Property that controls the `max-inline-size` property.
|
|
1880
|
-
Supports space tokens and all valid CSS `max-inline-size` values. */
|
|
1881
|
-
maxInlineSize?: GdsDetails['max-inline-size'];
|
|
1882
|
-
/** Style Expression Property that controls the `margin` property.
|
|
1883
|
-
Only accepts space tokens. */
|
|
1884
|
-
margin?: GdsDetails['margin'];
|
|
1885
|
-
/** Style Expression Property that controls the `margin-inline` property.
|
|
1886
|
-
Only accepts space tokens. */
|
|
1887
|
-
marginInline?: GdsDetails['margin-inline'];
|
|
1888
|
-
/** Style Expression Property that controls the `margin-block` property.
|
|
1889
|
-
Only accepts space tokens. */
|
|
1890
|
-
marginBlock?: GdsDetails['margin-block'];
|
|
1891
|
-
/** Style Expression Property that controls the `align-self` property.
|
|
1892
|
-
Supports all valid CSS `align-self` values. */
|
|
1893
|
-
alignSelf?: GdsDetails['align-self'];
|
|
1894
|
-
/** Style Expression Property that controls the `justify-self` property.
|
|
1895
|
-
Supports all valid CSS `justify-self` values. */
|
|
1896
|
-
justifySelf?: GdsDetails['justify-self'];
|
|
1897
|
-
/** Style Expression Property that controls the `place-self` property.
|
|
1898
|
-
Supports all valid CSS `place-self` values. */
|
|
1899
|
-
placeSelf?: GdsDetails['place-self'];
|
|
1900
|
-
/** Style Expression Property that controls the `grid-column` property.
|
|
1901
|
-
Supports all valid CSS grid-column values.
|
|
1902
|
-
Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
|
|
1903
|
-
gridColumn?: GdsDetails['grid-column'];
|
|
1904
|
-
/** Style Expression Property that controls the `grid-row` property.
|
|
1905
|
-
Supports all valid CSS `grid-row` values. */
|
|
1906
|
-
gridRow?: GdsDetails['grid-row'];
|
|
1907
|
-
/** Style Expression Property that controls the `grid-area` property.
|
|
1908
|
-
Supports all valid CSS `grid-area` values. */
|
|
1909
|
-
gridArea?: GdsDetails['grid-area'];
|
|
1910
|
-
/** Style Expression Property that controls the `flex` property.
|
|
1911
|
-
Supports all valid CSS `flex` values. */
|
|
1912
|
-
flex?: GdsDetails['flex'];
|
|
1913
|
-
/** Style Expression Property that controls the `order` property.
|
|
1914
|
-
Supports all valid CSS `order` values. */
|
|
1915
|
-
order?: GdsDetails['order'];
|
|
1916
|
-
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
1917
|
-
|
|
1918
|
-
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
1919
|
-
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
1920
|
-
is projected.
|
|
1921
|
-
|
|
1922
|
-
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
1923
|
-
element needs to be measured synchronously after being added to the DOM. */
|
|
1924
|
-
syncFirstRender?: GdsDetails['syncFirstRender'];
|
|
1925
|
-
/** Fired when details opens or closes */
|
|
1926
|
-
gdsUiState: EventEmitter<CustomEvent<any>>;
|
|
1927
|
-
ngOnInit(): void;
|
|
1928
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1929
|
-
ngAfterViewInit(): void;
|
|
1930
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GdsDetailsComponent, never>;
|
|
1931
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GdsDetailsComponent, "gds-details", never, { "summary": { "alias": "summary"; "required": false; }; "name": { "alias": "name"; "required": false; }; "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsUiState": "gdsUiState"; }, never, ["*"], true, never>;
|
|
1932
|
-
static ngAcceptInputType_open: unknown;
|
|
1933
|
-
static ngAcceptInputType_syncFirstRender: unknown;
|
|
1934
|
-
}
|
|
1935
|
-
|
|
1936
|
-
/**
|
|
1937
|
-
* Angular wrapper for the gds-dialog web component
|
|
1938
|
-
*
|
|
1939
|
-
*/
|
|
1940
|
-
declare class GdsDialogComponent implements OnInit, OnChanges, AfterViewInit {
|
|
1941
|
-
private elementRef;
|
|
1942
|
-
private zone;
|
|
1943
|
-
private cdr;
|
|
1944
|
-
get element(): GdsDialog;
|
|
1945
|
-
constructor();
|
|
1946
|
-
/** Whether the dialog is open. The state of the dialog can be controlled either
|
|
1947
|
-
by setting this property or by calling the `show()` and `close()` methods.
|
|
1948
|
-
|
|
1949
|
-
When the state is explicitly changed by setting this prop, the state change cannot
|
|
1950
|
-
be cancelled by events. */
|
|
1951
|
-
open?: GdsDialog['open'];
|
|
1952
|
-
/** The dialog's heading. */
|
|
1953
|
-
heading?: GdsDialog['heading'];
|
|
1954
|
-
/** The dialog's variant. */
|
|
1955
|
-
variant?: GdsDialog['variant'];
|
|
1956
|
-
/** The dialog's placement. */
|
|
1957
|
-
placement?: GdsDialog['placement'];
|
|
1958
|
-
/** Whether the inner content of the dialog should have scrollable overflow. Scroll will appear if
|
|
1959
|
-
the content exceeds the dialog's height, which can be controlled using the `height` property.
|
|
1960
|
-
|
|
1961
|
-
This property have no effect if the `dialog` slot is used. In that case, you need to add overflow
|
|
1962
|
-
styles to the content inside the `dialog` slot. */
|
|
1963
|
-
scrollable?: GdsDialog['scrollable'];
|
|
1964
|
-
/** Controls which user actions can close the dialog. Maps to the native `<dialog>` `closedby` attribute.
|
|
1965
|
-
|
|
1966
|
-
- `closerequest` (default): The dialog can be dismissed by platform close gestures (Escape key, iOS swipe, etc.).
|
|
1967
|
-
The browser's anti-abuse mechanism applies: after one cancelled close request, subsequent cancellations
|
|
1968
|
-
require a user activation in between. This ensures the best mobile UX.
|
|
1969
|
-
- `none`: The dialog can only be closed by developer-specified mechanisms (buttons, click outside, or programmatic API).
|
|
1970
|
-
A manual Escape key listener is added for desktop users, with fully cancellable behavior (no anti-abuse limit).
|
|
1971
|
-
Mobile platform close gestures may not work in this mode.
|
|
1972
|
-
- `any`: The dialog can also be dismissed by light dismiss (clicking outside). Note that gds-dialog already
|
|
1973
|
-
handles click-outside via its own mechanism. */
|
|
1974
|
-
closedby?: GdsDialog['closedby'];
|
|
1975
|
-
/** Style Expression Property that controls the `width` property.
|
|
1976
|
-
Supports space tokens and all valid CSS `width` values. */
|
|
1977
|
-
width?: GdsDialog['width'];
|
|
1978
|
-
/** Style Expression Property that controls the `min-width` property.
|
|
1979
|
-
Supports space tokens and all valid CSS `min-width` values. */
|
|
1980
|
-
minWidth?: GdsDialog['min-width'];
|
|
1981
|
-
/** Style Expression Property that controls the `max-width` property.
|
|
1982
|
-
Supports space tokens and all valid CSS `max-width` values. */
|
|
1983
|
-
maxWidth?: GdsDialog['max-width'];
|
|
1984
|
-
/** Style Expression Property that controls the `inline-size` property.
|
|
1985
|
-
Supports space tokens and all valid CSS `inline-size` values */
|
|
1986
|
-
inlineSize?: GdsDialog['inline-size'];
|
|
1987
|
-
/** Style Expression Property that controls the `min-inline-size` property.
|
|
1988
|
-
Supports space tokens and all valid CSS `min-inline-size` values. */
|
|
1989
|
-
minInlineSize?: GdsDialog['min-inline-size'];
|
|
1990
|
-
/** Style Expression Property that controls the `max-inline-size` property.
|
|
1991
|
-
Supports space tokens and all valid CSS `max-inline-size` values. */
|
|
1992
|
-
maxInlineSize?: GdsDialog['max-inline-size'];
|
|
1993
|
-
/** Style Expression Property that controls the `height` property.
|
|
1994
|
-
Supports space tokens and all valid CSS `height` values. */
|
|
1995
|
-
height?: GdsDialog['height'];
|
|
1996
|
-
/** Style Expression Property that controls the `min-height` property.
|
|
1997
|
-
Supports space tokens and all valid CSS `min-height` values. */
|
|
1998
|
-
minHeight?: GdsDialog['min-height'];
|
|
1999
|
-
/** Style Expression Property that controls the `max-height` property.
|
|
2000
|
-
Supports space tokens and all valid CSS `max-height` values. */
|
|
2001
|
-
maxHeight?: GdsDialog['max-height'];
|
|
2002
|
-
/** Style Expression Property that controls the `block-size` property.
|
|
2003
|
-
Supports space tokens and all valid CSS `block-size` values. */
|
|
2004
|
-
blockSize?: GdsDialog['block-size'];
|
|
2005
|
-
/** Style Expression Property that controls the `min-block-size` property.
|
|
2006
|
-
Supports space tokens and all valid CSS `min-block-size` values. */
|
|
2007
|
-
minBlockSize?: GdsDialog['min-block-size'];
|
|
2008
|
-
/** Style Expression Property that controls the `max-block-size` property.
|
|
2009
|
-
Supports space tokens and all valid CSS `max-block-size` values. */
|
|
2010
|
-
maxBlockSize?: GdsDialog['max-block-size'];
|
|
2011
|
-
/** Style Expression Property that controls the `padding` property.
|
|
2012
|
-
Only accepts space tokens. */
|
|
2013
|
-
padding?: GdsDialog['padding'];
|
|
2014
|
-
/** Style Expression Property that controls the `padding-inline` property.
|
|
2015
|
-
Only accepts space tokens. */
|
|
2016
|
-
paddingInline?: GdsDialog['padding-inline'];
|
|
2017
|
-
/** Style Expression Property that controls the `padding-block` property.
|
|
2018
|
-
Only accepts space tokens. */
|
|
2019
|
-
paddingBlock?: GdsDialog['padding-block'];
|
|
2020
|
-
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
2021
|
-
|
|
2022
|
-
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
2023
|
-
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
2024
|
-
is projected.
|
|
2025
|
-
|
|
2026
|
-
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
2027
|
-
element needs to be measured synchronously after being added to the DOM. */
|
|
2028
|
-
syncFirstRender?: GdsDialog['syncFirstRender'];
|
|
2029
|
-
/** Fired when the dialog is opened or closed. Can be cancelled to prevent the dialog from closing. */
|
|
2030
|
-
gdsUiState: EventEmitter<CustomEvent<any>>;
|
|
2031
|
-
/** Fired when the dialog is closed */
|
|
2032
|
-
gdsClose: EventEmitter<CustomEvent<any>>;
|
|
2033
|
-
/** Fired when the dialog is opened */
|
|
2034
|
-
gdsShow: EventEmitter<CustomEvent<any>>;
|
|
2035
|
-
ngOnInit(): void;
|
|
2036
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
2037
|
-
ngAfterViewInit(): void;
|
|
2038
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GdsDialogComponent, never>;
|
|
2039
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GdsDialogComponent, "gds-dialog", never, { "open": { "alias": "open"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "closedby": { "alias": "closedby"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "height": { "alias": "height"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "blockSize": { "alias": "blockSize"; "required": false; }; "minBlockSize": { "alias": "minBlockSize"; "required": false; }; "maxBlockSize": { "alias": "maxBlockSize"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "paddingInline": { "alias": "paddingInline"; "required": false; }; "paddingBlock": { "alias": "paddingBlock"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsUiState": "gdsUiState"; "gdsClose": "gdsClose"; "gdsShow": "gdsShow"; }, never, ["*"], true, never>;
|
|
2040
|
-
static ngAcceptInputType_open: unknown;
|
|
2041
|
-
static ngAcceptInputType_scrollable: unknown;
|
|
2042
|
-
static ngAcceptInputType_syncFirstRender: unknown;
|
|
2043
|
-
}
|
|
2044
|
-
|
|
2045
1846
|
/**
|
|
2046
1847
|
* Angular wrapper for the gds-div web component
|
|
2047
1848
|
*
|
|
@@ -2276,6 +2077,205 @@ declare class GdsDivComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
2276
2077
|
static ngAcceptInputType_syncFirstRender: unknown;
|
|
2277
2078
|
}
|
|
2278
2079
|
|
|
2080
|
+
/**
|
|
2081
|
+
* Angular wrapper for the gds-details web component
|
|
2082
|
+
* Details component that provides collapsible content sections.
|
|
2083
|
+
*/
|
|
2084
|
+
declare class GdsDetailsComponent implements OnInit, OnChanges, AfterViewInit {
|
|
2085
|
+
private elementRef;
|
|
2086
|
+
private zone;
|
|
2087
|
+
private cdr;
|
|
2088
|
+
get element(): GdsDetails;
|
|
2089
|
+
constructor();
|
|
2090
|
+
/** The summary text displayed in the details header */
|
|
2091
|
+
summary?: GdsDetails['summary'];
|
|
2092
|
+
/** Group identifier for details behavior synchronization */
|
|
2093
|
+
name?: GdsDetails['name'];
|
|
2094
|
+
/** Controls the expanded state of the details */
|
|
2095
|
+
open?: GdsDetails['open'];
|
|
2096
|
+
/** Controls the size variant of the details */
|
|
2097
|
+
size?: GdsDetails['size'];
|
|
2098
|
+
/** Style Expression Property that controls the `width` property.
|
|
2099
|
+
Supports space tokens and all valid CSS `width` values. */
|
|
2100
|
+
width?: GdsDetails['width'];
|
|
2101
|
+
/** Style Expression Property that controls the `min-width` property.
|
|
2102
|
+
Supports space tokens and all valid CSS `min-width` values. */
|
|
2103
|
+
minWidth?: GdsDetails['min-width'];
|
|
2104
|
+
/** Style Expression Property that controls the `max-width` property.
|
|
2105
|
+
Supports space tokens and all valid CSS `max-width` values. */
|
|
2106
|
+
maxWidth?: GdsDetails['max-width'];
|
|
2107
|
+
/** Style Expression Property that controls the `inline-size` property.
|
|
2108
|
+
Supports space tokens and all valid CSS `inline-size` values */
|
|
2109
|
+
inlineSize?: GdsDetails['inline-size'];
|
|
2110
|
+
/** Style Expression Property that controls the `min-inline-size` property.
|
|
2111
|
+
Supports space tokens and all valid CSS `min-inline-size` values. */
|
|
2112
|
+
minInlineSize?: GdsDetails['min-inline-size'];
|
|
2113
|
+
/** Style Expression Property that controls the `max-inline-size` property.
|
|
2114
|
+
Supports space tokens and all valid CSS `max-inline-size` values. */
|
|
2115
|
+
maxInlineSize?: GdsDetails['max-inline-size'];
|
|
2116
|
+
/** Style Expression Property that controls the `margin` property.
|
|
2117
|
+
Only accepts space tokens. */
|
|
2118
|
+
margin?: GdsDetails['margin'];
|
|
2119
|
+
/** Style Expression Property that controls the `margin-inline` property.
|
|
2120
|
+
Only accepts space tokens. */
|
|
2121
|
+
marginInline?: GdsDetails['margin-inline'];
|
|
2122
|
+
/** Style Expression Property that controls the `margin-block` property.
|
|
2123
|
+
Only accepts space tokens. */
|
|
2124
|
+
marginBlock?: GdsDetails['margin-block'];
|
|
2125
|
+
/** Style Expression Property that controls the `align-self` property.
|
|
2126
|
+
Supports all valid CSS `align-self` values. */
|
|
2127
|
+
alignSelf?: GdsDetails['align-self'];
|
|
2128
|
+
/** Style Expression Property that controls the `justify-self` property.
|
|
2129
|
+
Supports all valid CSS `justify-self` values. */
|
|
2130
|
+
justifySelf?: GdsDetails['justify-self'];
|
|
2131
|
+
/** Style Expression Property that controls the `place-self` property.
|
|
2132
|
+
Supports all valid CSS `place-self` values. */
|
|
2133
|
+
placeSelf?: GdsDetails['place-self'];
|
|
2134
|
+
/** Style Expression Property that controls the `grid-column` property.
|
|
2135
|
+
Supports all valid CSS grid-column values.
|
|
2136
|
+
Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
|
|
2137
|
+
gridColumn?: GdsDetails['grid-column'];
|
|
2138
|
+
/** Style Expression Property that controls the `grid-row` property.
|
|
2139
|
+
Supports all valid CSS `grid-row` values. */
|
|
2140
|
+
gridRow?: GdsDetails['grid-row'];
|
|
2141
|
+
/** Style Expression Property that controls the `grid-area` property.
|
|
2142
|
+
Supports all valid CSS `grid-area` values. */
|
|
2143
|
+
gridArea?: GdsDetails['grid-area'];
|
|
2144
|
+
/** Style Expression Property that controls the `flex` property.
|
|
2145
|
+
Supports all valid CSS `flex` values. */
|
|
2146
|
+
flex?: GdsDetails['flex'];
|
|
2147
|
+
/** Style Expression Property that controls the `order` property.
|
|
2148
|
+
Supports all valid CSS `order` values. */
|
|
2149
|
+
order?: GdsDetails['order'];
|
|
2150
|
+
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
2151
|
+
|
|
2152
|
+
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
2153
|
+
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
2154
|
+
is projected.
|
|
2155
|
+
|
|
2156
|
+
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
2157
|
+
element needs to be measured synchronously after being added to the DOM. */
|
|
2158
|
+
syncFirstRender?: GdsDetails['syncFirstRender'];
|
|
2159
|
+
/** Fired when details opens or closes */
|
|
2160
|
+
gdsUiState: EventEmitter<CustomEvent<any>>;
|
|
2161
|
+
ngOnInit(): void;
|
|
2162
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2163
|
+
ngAfterViewInit(): void;
|
|
2164
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GdsDetailsComponent, never>;
|
|
2165
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GdsDetailsComponent, "gds-details", never, { "summary": { "alias": "summary"; "required": false; }; "name": { "alias": "name"; "required": false; }; "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsUiState": "gdsUiState"; }, never, ["*"], true, never>;
|
|
2166
|
+
static ngAcceptInputType_open: unknown;
|
|
2167
|
+
static ngAcceptInputType_syncFirstRender: unknown;
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
/**
|
|
2171
|
+
* Angular wrapper for the gds-dialog web component
|
|
2172
|
+
*
|
|
2173
|
+
*/
|
|
2174
|
+
declare class GdsDialogComponent implements OnInit, OnChanges, AfterViewInit {
|
|
2175
|
+
private elementRef;
|
|
2176
|
+
private zone;
|
|
2177
|
+
private cdr;
|
|
2178
|
+
get element(): GdsDialog;
|
|
2179
|
+
constructor();
|
|
2180
|
+
/** Whether the dialog is open. The state of the dialog can be controlled either
|
|
2181
|
+
by setting this property or by calling the `show()` and `close()` methods.
|
|
2182
|
+
|
|
2183
|
+
When the state is explicitly changed by setting this prop, the state change cannot
|
|
2184
|
+
be cancelled by events. */
|
|
2185
|
+
open?: GdsDialog['open'];
|
|
2186
|
+
/** The dialog's heading. */
|
|
2187
|
+
heading?: GdsDialog['heading'];
|
|
2188
|
+
/** The dialog's variant. */
|
|
2189
|
+
variant?: GdsDialog['variant'];
|
|
2190
|
+
/** The dialog's placement. */
|
|
2191
|
+
placement?: GdsDialog['placement'];
|
|
2192
|
+
/** Whether the inner content of the dialog should have scrollable overflow. Scroll will appear if
|
|
2193
|
+
the content exceeds the dialog's height, which can be controlled using the `height` property.
|
|
2194
|
+
|
|
2195
|
+
This property have no effect if the `dialog` slot is used. In that case, you need to add overflow
|
|
2196
|
+
styles to the content inside the `dialog` slot. */
|
|
2197
|
+
scrollable?: GdsDialog['scrollable'];
|
|
2198
|
+
/** Controls which user actions can close the dialog. Maps to the native `<dialog>` `closedby` attribute.
|
|
2199
|
+
|
|
2200
|
+
- `closerequest` (default): The dialog can be dismissed by platform close gestures (Escape key, iOS swipe, etc.).
|
|
2201
|
+
The browser's anti-abuse mechanism applies: after one cancelled close request, subsequent cancellations
|
|
2202
|
+
require a user activation in between. This ensures the best mobile UX.
|
|
2203
|
+
- `none`: The dialog can only be closed by developer-specified mechanisms (buttons, click outside, or programmatic API).
|
|
2204
|
+
A manual Escape key listener is added for desktop users, with fully cancellable behavior (no anti-abuse limit).
|
|
2205
|
+
Mobile platform close gestures may not work in this mode.
|
|
2206
|
+
- `any`: The dialog can also be dismissed by light dismiss (clicking outside). Note that gds-dialog already
|
|
2207
|
+
handles click-outside via its own mechanism. */
|
|
2208
|
+
closedby?: GdsDialog['closedby'];
|
|
2209
|
+
/** Style Expression Property that controls the `width` property.
|
|
2210
|
+
Supports space tokens and all valid CSS `width` values. */
|
|
2211
|
+
width?: GdsDialog['width'];
|
|
2212
|
+
/** Style Expression Property that controls the `min-width` property.
|
|
2213
|
+
Supports space tokens and all valid CSS `min-width` values. */
|
|
2214
|
+
minWidth?: GdsDialog['min-width'];
|
|
2215
|
+
/** Style Expression Property that controls the `max-width` property.
|
|
2216
|
+
Supports space tokens and all valid CSS `max-width` values. */
|
|
2217
|
+
maxWidth?: GdsDialog['max-width'];
|
|
2218
|
+
/** Style Expression Property that controls the `inline-size` property.
|
|
2219
|
+
Supports space tokens and all valid CSS `inline-size` values */
|
|
2220
|
+
inlineSize?: GdsDialog['inline-size'];
|
|
2221
|
+
/** Style Expression Property that controls the `min-inline-size` property.
|
|
2222
|
+
Supports space tokens and all valid CSS `min-inline-size` values. */
|
|
2223
|
+
minInlineSize?: GdsDialog['min-inline-size'];
|
|
2224
|
+
/** Style Expression Property that controls the `max-inline-size` property.
|
|
2225
|
+
Supports space tokens and all valid CSS `max-inline-size` values. */
|
|
2226
|
+
maxInlineSize?: GdsDialog['max-inline-size'];
|
|
2227
|
+
/** Style Expression Property that controls the `height` property.
|
|
2228
|
+
Supports space tokens and all valid CSS `height` values. */
|
|
2229
|
+
height?: GdsDialog['height'];
|
|
2230
|
+
/** Style Expression Property that controls the `min-height` property.
|
|
2231
|
+
Supports space tokens and all valid CSS `min-height` values. */
|
|
2232
|
+
minHeight?: GdsDialog['min-height'];
|
|
2233
|
+
/** Style Expression Property that controls the `max-height` property.
|
|
2234
|
+
Supports space tokens and all valid CSS `max-height` values. */
|
|
2235
|
+
maxHeight?: GdsDialog['max-height'];
|
|
2236
|
+
/** Style Expression Property that controls the `block-size` property.
|
|
2237
|
+
Supports space tokens and all valid CSS `block-size` values. */
|
|
2238
|
+
blockSize?: GdsDialog['block-size'];
|
|
2239
|
+
/** Style Expression Property that controls the `min-block-size` property.
|
|
2240
|
+
Supports space tokens and all valid CSS `min-block-size` values. */
|
|
2241
|
+
minBlockSize?: GdsDialog['min-block-size'];
|
|
2242
|
+
/** Style Expression Property that controls the `max-block-size` property.
|
|
2243
|
+
Supports space tokens and all valid CSS `max-block-size` values. */
|
|
2244
|
+
maxBlockSize?: GdsDialog['max-block-size'];
|
|
2245
|
+
/** Style Expression Property that controls the `padding` property.
|
|
2246
|
+
Only accepts space tokens. */
|
|
2247
|
+
padding?: GdsDialog['padding'];
|
|
2248
|
+
/** Style Expression Property that controls the `padding-inline` property.
|
|
2249
|
+
Only accepts space tokens. */
|
|
2250
|
+
paddingInline?: GdsDialog['padding-inline'];
|
|
2251
|
+
/** Style Expression Property that controls the `padding-block` property.
|
|
2252
|
+
Only accepts space tokens. */
|
|
2253
|
+
paddingBlock?: GdsDialog['padding-block'];
|
|
2254
|
+
/** Force the element to perform a synchronous first render and apply style expression properties in `connectedCallback`.
|
|
2255
|
+
|
|
2256
|
+
This guarantees that the child DOM always remains projected in DOM, since the element will attach the shadowRoot and
|
|
2257
|
+
run the first render pass in the same event loop cycle, and that declarative layout will be applied once slotted DOM
|
|
2258
|
+
is projected.
|
|
2259
|
+
|
|
2260
|
+
Note: This will cause the first render pass to be blocking. Use sparingly and only when necessary, such as when the
|
|
2261
|
+
element needs to be measured synchronously after being added to the DOM. */
|
|
2262
|
+
syncFirstRender?: GdsDialog['syncFirstRender'];
|
|
2263
|
+
/** Fired when the dialog is opened or closed. Can be cancelled to prevent the dialog from closing. */
|
|
2264
|
+
gdsUiState: EventEmitter<CustomEvent<any>>;
|
|
2265
|
+
/** Fired when the dialog is closed */
|
|
2266
|
+
gdsClose: EventEmitter<CustomEvent<any>>;
|
|
2267
|
+
/** Fired when the dialog is opened */
|
|
2268
|
+
gdsShow: EventEmitter<CustomEvent<any>>;
|
|
2269
|
+
ngOnInit(): void;
|
|
2270
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2271
|
+
ngAfterViewInit(): void;
|
|
2272
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GdsDialogComponent, never>;
|
|
2273
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GdsDialogComponent, "gds-dialog", never, { "open": { "alias": "open"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "closedby": { "alias": "closedby"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "inlineSize": { "alias": "inlineSize"; "required": false; }; "minInlineSize": { "alias": "minInlineSize"; "required": false; }; "maxInlineSize": { "alias": "maxInlineSize"; "required": false; }; "height": { "alias": "height"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "blockSize": { "alias": "blockSize"; "required": false; }; "minBlockSize": { "alias": "minBlockSize"; "required": false; }; "maxBlockSize": { "alias": "maxBlockSize"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "paddingInline": { "alias": "paddingInline"; "required": false; }; "paddingBlock": { "alias": "paddingBlock"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsUiState": "gdsUiState"; "gdsClose": "gdsClose"; "gdsShow": "gdsShow"; }, never, ["*"], true, never>;
|
|
2274
|
+
static ngAcceptInputType_open: unknown;
|
|
2275
|
+
static ngAcceptInputType_scrollable: unknown;
|
|
2276
|
+
static ngAcceptInputType_syncFirstRender: unknown;
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
2279
|
/**
|
|
2280
2280
|
* Angular wrapper for the gds-divider web component
|
|
2281
2281
|
*
|
|
@@ -35478,7 +35478,7 @@ declare class GdsOptionComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
35478
35478
|
*/
|
|
35479
35479
|
declare class GreenCoreNgModule {
|
|
35480
35480
|
static ɵfac: i0.ɵɵFactoryDeclaration<GreenCoreNgModule, never>;
|
|
35481
|
-
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]>;
|
|
35481
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GreenCoreNgModule, never, [typeof GdsAlertComponent, typeof GdsAvatarComponent, typeof GdsBadgeComponent, typeof GdsBlurComponent, typeof GdsButtonComponent, typeof GdsBreadcrumbsComponent, typeof GdsCalendarComponent, typeof GdsCardComponent, typeof GdsCardLinkedComponent, typeof GdsCheckboxComponent, typeof GdsCoachmarkComponent, typeof GdsContextMenuComponent, typeof GdsDatepickerComponent, typeof GdsDivComponent, typeof GdsDetailsComponent, typeof GdsDialogComponent, 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 GdsButtonComponent, typeof GdsBreadcrumbsComponent, typeof GdsCalendarComponent, typeof GdsCardComponent, typeof GdsCardLinkedComponent, typeof GdsCheckboxComponent, typeof GdsCoachmarkComponent, typeof GdsContextMenuComponent, typeof GdsDatepickerComponent, typeof GdsDivComponent, typeof GdsDetailsComponent, typeof GdsDialogComponent, 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]>;
|
|
35482
35482
|
static ɵinj: i0.ɵɵInjectorDeclaration<GreenCoreNgModule>;
|
|
35483
35483
|
}
|
|
35484
35484
|
|