@sebgroup/green-core-ng 2.34.1 → 2.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/sebgroup-green-core-ng.mjs +5274 -4992
- package/fesm2022/sebgroup-green-core-ng.mjs.map +1 -1
- package/generated/green-core-ng.module.d.ts +357 -354
- package/generated/icon-asterisk/icon-asterisk.component.d.ts +79 -0
- package/generated/icon-asterisk/index.d.ts +7 -0
- package/generated/icon-credit-card-add/icon-credit-card-add.component.d.ts +79 -0
- package/generated/icon-credit-card-add/index.d.ts +7 -0
- package/generated/icon-power/icon-power.component.d.ts +79 -0
- package/generated/icon-power/index.d.ts +7 -0
- package/generated/index.d.ts +9 -6
- package/package.json +2 -2
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { OnInit, OnChanges, AfterViewInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { IconAsterisk } from '@sebgroup/green-core/components/icon/icons/asterisk.component.js';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Angular wrapper for the gds-icon-asterisk web component
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconAsteriskComponent implements OnInit, OnChanges, AfterViewInit {
|
|
9
|
+
private elementRef;
|
|
10
|
+
private zone;
|
|
11
|
+
private cdr;
|
|
12
|
+
get element(): IconAsterisk;
|
|
13
|
+
constructor();
|
|
14
|
+
/** Style Expression Property that controls the `margin` property.
|
|
15
|
+
Only accepts space tokens. */
|
|
16
|
+
margin?: IconAsterisk['margin'];
|
|
17
|
+
/** Style Expression Property that controls the `margin-inline` property.
|
|
18
|
+
Only accepts space tokens. */
|
|
19
|
+
marginInline?: IconAsterisk['margin-inline'];
|
|
20
|
+
/** Style Expression Property that controls the `margin-block` property.
|
|
21
|
+
Only accepts space tokens. */
|
|
22
|
+
marginBlock?: IconAsterisk['margin-block'];
|
|
23
|
+
/** Style Expression Property that controls the `align-self` property.
|
|
24
|
+
Supports all valid CSS `align-self` values. */
|
|
25
|
+
alignSelf?: IconAsterisk['align-self'];
|
|
26
|
+
/** Style Expression Property that controls the `justify-self` property.
|
|
27
|
+
Supports all valid CSS `justify-self` values. */
|
|
28
|
+
justifySelf?: IconAsterisk['justify-self'];
|
|
29
|
+
/** Style Expression Property that controls the `place-self` property.
|
|
30
|
+
Supports all valid CSS `place-self` values. */
|
|
31
|
+
placeSelf?: IconAsterisk['place-self'];
|
|
32
|
+
/** Style Expression Property that controls the `grid-column` property.
|
|
33
|
+
Supports all valid CSS grid-column values.
|
|
34
|
+
Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
|
|
35
|
+
gridColumn?: IconAsterisk['grid-column'];
|
|
36
|
+
/** Style Expression Property that controls the `grid-row` property.
|
|
37
|
+
Supports all valid CSS `grid-row` values. */
|
|
38
|
+
gridRow?: IconAsterisk['grid-row'];
|
|
39
|
+
/** Style Expression Property that controls the `grid-area` property.
|
|
40
|
+
Supports all valid CSS `grid-area` values. */
|
|
41
|
+
gridArea?: IconAsterisk['grid-area'];
|
|
42
|
+
/** Style Expression Property that controls the `flex` property.
|
|
43
|
+
Supports all valid CSS `flex` values. */
|
|
44
|
+
flex?: IconAsterisk['flex'];
|
|
45
|
+
/** Style Expression Property that controls the `order` property.
|
|
46
|
+
Supports all valid CSS `order` values. */
|
|
47
|
+
order?: IconAsterisk['order'];
|
|
48
|
+
/** This property allow you to set the size of the icon with the token and custom values.
|
|
49
|
+
If not provided, uses the icon's default size.
|
|
50
|
+
|
|
51
|
+
The size is a shorthand for setting both width and height at once. */
|
|
52
|
+
size?: IconAsterisk['size'];
|
|
53
|
+
/** When set to true, the solid version of the icon is displayed.
|
|
54
|
+
When set to false or not provided, the regular version of the icon is displayed. */
|
|
55
|
+
solid?: IconAsterisk['solid'];
|
|
56
|
+
/** When set to true, you can apply custom stroke width to the icon. */
|
|
57
|
+
stroke?: IconAsterisk['stroke'];
|
|
58
|
+
/** The level of the icon is used to resolve the color tokens from the corresponding level.
|
|
59
|
+
Check the [Color System documentation page](./?path=/docs/style-colors--docs) for more information.
|
|
60
|
+
|
|
61
|
+
Default for `gds-icon-*` is level 2. */
|
|
62
|
+
level?: IconAsterisk['level'];
|
|
63
|
+
/** Style Expression Property that controls the `color` property.
|
|
64
|
+
Only accepts color tokens and an optional transparency value, in the format tokenName/transparency.
|
|
65
|
+
|
|
66
|
+
```html
|
|
67
|
+
<gds-icon-ai color="neutral-01/0.2"></gds-icon-ai>
|
|
68
|
+
``` */
|
|
69
|
+
color?: IconAsterisk['color'];
|
|
70
|
+
/** This property allow you to set the accessible label of the icon.
|
|
71
|
+
If not provided, the icon will be presentational. */
|
|
72
|
+
label?: IconAsterisk['label'];
|
|
73
|
+
ngOnInit(): void;
|
|
74
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
75
|
+
ngAfterViewInit(): void;
|
|
76
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconAsteriskComponent, never>;
|
|
77
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconAsteriskComponent, "gds-icon-asterisk", never, { "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; }; "size": { "alias": "size"; "required": false; }; "solid": { "alias": "solid"; "required": false; }; "stroke": { "alias": "stroke"; "required": false; }; "level": { "alias": "level"; "required": false; }; "color": { "alias": "color"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
78
|
+
static ngAcceptInputType_solid: unknown;
|
|
79
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { OnInit, OnChanges, AfterViewInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { IconCreditCardAdd } from '@sebgroup/green-core/components/icon/icons/credit-card-add.component.js';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Angular wrapper for the gds-icon-credit-card-add web component
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconCreditCardAddComponent implements OnInit, OnChanges, AfterViewInit {
|
|
9
|
+
private elementRef;
|
|
10
|
+
private zone;
|
|
11
|
+
private cdr;
|
|
12
|
+
get element(): IconCreditCardAdd;
|
|
13
|
+
constructor();
|
|
14
|
+
/** Style Expression Property that controls the `margin` property.
|
|
15
|
+
Only accepts space tokens. */
|
|
16
|
+
margin?: IconCreditCardAdd['margin'];
|
|
17
|
+
/** Style Expression Property that controls the `margin-inline` property.
|
|
18
|
+
Only accepts space tokens. */
|
|
19
|
+
marginInline?: IconCreditCardAdd['margin-inline'];
|
|
20
|
+
/** Style Expression Property that controls the `margin-block` property.
|
|
21
|
+
Only accepts space tokens. */
|
|
22
|
+
marginBlock?: IconCreditCardAdd['margin-block'];
|
|
23
|
+
/** Style Expression Property that controls the `align-self` property.
|
|
24
|
+
Supports all valid CSS `align-self` values. */
|
|
25
|
+
alignSelf?: IconCreditCardAdd['align-self'];
|
|
26
|
+
/** Style Expression Property that controls the `justify-self` property.
|
|
27
|
+
Supports all valid CSS `justify-self` values. */
|
|
28
|
+
justifySelf?: IconCreditCardAdd['justify-self'];
|
|
29
|
+
/** Style Expression Property that controls the `place-self` property.
|
|
30
|
+
Supports all valid CSS `place-self` values. */
|
|
31
|
+
placeSelf?: IconCreditCardAdd['place-self'];
|
|
32
|
+
/** Style Expression Property that controls the `grid-column` property.
|
|
33
|
+
Supports all valid CSS grid-column values.
|
|
34
|
+
Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
|
|
35
|
+
gridColumn?: IconCreditCardAdd['grid-column'];
|
|
36
|
+
/** Style Expression Property that controls the `grid-row` property.
|
|
37
|
+
Supports all valid CSS `grid-row` values. */
|
|
38
|
+
gridRow?: IconCreditCardAdd['grid-row'];
|
|
39
|
+
/** Style Expression Property that controls the `grid-area` property.
|
|
40
|
+
Supports all valid CSS `grid-area` values. */
|
|
41
|
+
gridArea?: IconCreditCardAdd['grid-area'];
|
|
42
|
+
/** Style Expression Property that controls the `flex` property.
|
|
43
|
+
Supports all valid CSS `flex` values. */
|
|
44
|
+
flex?: IconCreditCardAdd['flex'];
|
|
45
|
+
/** Style Expression Property that controls the `order` property.
|
|
46
|
+
Supports all valid CSS `order` values. */
|
|
47
|
+
order?: IconCreditCardAdd['order'];
|
|
48
|
+
/** This property allow you to set the size of the icon with the token and custom values.
|
|
49
|
+
If not provided, uses the icon's default size.
|
|
50
|
+
|
|
51
|
+
The size is a shorthand for setting both width and height at once. */
|
|
52
|
+
size?: IconCreditCardAdd['size'];
|
|
53
|
+
/** When set to true, the solid version of the icon is displayed.
|
|
54
|
+
When set to false or not provided, the regular version of the icon is displayed. */
|
|
55
|
+
solid?: IconCreditCardAdd['solid'];
|
|
56
|
+
/** When set to true, you can apply custom stroke width to the icon. */
|
|
57
|
+
stroke?: IconCreditCardAdd['stroke'];
|
|
58
|
+
/** The level of the icon is used to resolve the color tokens from the corresponding level.
|
|
59
|
+
Check the [Color System documentation page](./?path=/docs/style-colors--docs) for more information.
|
|
60
|
+
|
|
61
|
+
Default for `gds-icon-*` is level 2. */
|
|
62
|
+
level?: IconCreditCardAdd['level'];
|
|
63
|
+
/** Style Expression Property that controls the `color` property.
|
|
64
|
+
Only accepts color tokens and an optional transparency value, in the format tokenName/transparency.
|
|
65
|
+
|
|
66
|
+
```html
|
|
67
|
+
<gds-icon-ai color="neutral-01/0.2"></gds-icon-ai>
|
|
68
|
+
``` */
|
|
69
|
+
color?: IconCreditCardAdd['color'];
|
|
70
|
+
/** This property allow you to set the accessible label of the icon.
|
|
71
|
+
If not provided, the icon will be presentational. */
|
|
72
|
+
label?: IconCreditCardAdd['label'];
|
|
73
|
+
ngOnInit(): void;
|
|
74
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
75
|
+
ngAfterViewInit(): void;
|
|
76
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconCreditCardAddComponent, never>;
|
|
77
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconCreditCardAddComponent, "gds-icon-credit-card-add", never, { "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; }; "size": { "alias": "size"; "required": false; }; "solid": { "alias": "solid"; "required": false; }; "stroke": { "alias": "stroke"; "required": false; }; "level": { "alias": "level"; "required": false; }; "color": { "alias": "color"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
78
|
+
static ngAcceptInputType_solid: unknown;
|
|
79
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { OnInit, OnChanges, AfterViewInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { IconPower } from '@sebgroup/green-core/components/icon/icons/power.component.js';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Angular wrapper for the gds-icon-power web component
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconPowerComponent implements OnInit, OnChanges, AfterViewInit {
|
|
9
|
+
private elementRef;
|
|
10
|
+
private zone;
|
|
11
|
+
private cdr;
|
|
12
|
+
get element(): IconPower;
|
|
13
|
+
constructor();
|
|
14
|
+
/** Style Expression Property that controls the `margin` property.
|
|
15
|
+
Only accepts space tokens. */
|
|
16
|
+
margin?: IconPower['margin'];
|
|
17
|
+
/** Style Expression Property that controls the `margin-inline` property.
|
|
18
|
+
Only accepts space tokens. */
|
|
19
|
+
marginInline?: IconPower['margin-inline'];
|
|
20
|
+
/** Style Expression Property that controls the `margin-block` property.
|
|
21
|
+
Only accepts space tokens. */
|
|
22
|
+
marginBlock?: IconPower['margin-block'];
|
|
23
|
+
/** Style Expression Property that controls the `align-self` property.
|
|
24
|
+
Supports all valid CSS `align-self` values. */
|
|
25
|
+
alignSelf?: IconPower['align-self'];
|
|
26
|
+
/** Style Expression Property that controls the `justify-self` property.
|
|
27
|
+
Supports all valid CSS `justify-self` values. */
|
|
28
|
+
justifySelf?: IconPower['justify-self'];
|
|
29
|
+
/** Style Expression Property that controls the `place-self` property.
|
|
30
|
+
Supports all valid CSS `place-self` values. */
|
|
31
|
+
placeSelf?: IconPower['place-self'];
|
|
32
|
+
/** Style Expression Property that controls the `grid-column` property.
|
|
33
|
+
Supports all valid CSS grid-column values.
|
|
34
|
+
Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column */
|
|
35
|
+
gridColumn?: IconPower['grid-column'];
|
|
36
|
+
/** Style Expression Property that controls the `grid-row` property.
|
|
37
|
+
Supports all valid CSS `grid-row` values. */
|
|
38
|
+
gridRow?: IconPower['grid-row'];
|
|
39
|
+
/** Style Expression Property that controls the `grid-area` property.
|
|
40
|
+
Supports all valid CSS `grid-area` values. */
|
|
41
|
+
gridArea?: IconPower['grid-area'];
|
|
42
|
+
/** Style Expression Property that controls the `flex` property.
|
|
43
|
+
Supports all valid CSS `flex` values. */
|
|
44
|
+
flex?: IconPower['flex'];
|
|
45
|
+
/** Style Expression Property that controls the `order` property.
|
|
46
|
+
Supports all valid CSS `order` values. */
|
|
47
|
+
order?: IconPower['order'];
|
|
48
|
+
/** This property allow you to set the size of the icon with the token and custom values.
|
|
49
|
+
If not provided, uses the icon's default size.
|
|
50
|
+
|
|
51
|
+
The size is a shorthand for setting both width and height at once. */
|
|
52
|
+
size?: IconPower['size'];
|
|
53
|
+
/** When set to true, the solid version of the icon is displayed.
|
|
54
|
+
When set to false or not provided, the regular version of the icon is displayed. */
|
|
55
|
+
solid?: IconPower['solid'];
|
|
56
|
+
/** When set to true, you can apply custom stroke width to the icon. */
|
|
57
|
+
stroke?: IconPower['stroke'];
|
|
58
|
+
/** The level of the icon is used to resolve the color tokens from the corresponding level.
|
|
59
|
+
Check the [Color System documentation page](./?path=/docs/style-colors--docs) for more information.
|
|
60
|
+
|
|
61
|
+
Default for `gds-icon-*` is level 2. */
|
|
62
|
+
level?: IconPower['level'];
|
|
63
|
+
/** Style Expression Property that controls the `color` property.
|
|
64
|
+
Only accepts color tokens and an optional transparency value, in the format tokenName/transparency.
|
|
65
|
+
|
|
66
|
+
```html
|
|
67
|
+
<gds-icon-ai color="neutral-01/0.2"></gds-icon-ai>
|
|
68
|
+
``` */
|
|
69
|
+
color?: IconPower['color'];
|
|
70
|
+
/** This property allow you to set the accessible label of the icon.
|
|
71
|
+
If not provided, the icon will be presentational. */
|
|
72
|
+
label?: IconPower['label'];
|
|
73
|
+
ngOnInit(): void;
|
|
74
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
75
|
+
ngAfterViewInit(): void;
|
|
76
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconPowerComponent, never>;
|
|
77
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconPowerComponent, "gds-icon-power", never, { "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; }; "size": { "alias": "size"; "required": false; }; "solid": { "alias": "solid"; "required": false; }; "stroke": { "alias": "stroke"; "required": false; }; "level": { "alias": "level"; "required": false; }; "color": { "alias": "color"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
78
|
+
static ngAcceptInputType_solid: unknown;
|
|
79
|
+
}
|
package/generated/index.d.ts
CHANGED
|
@@ -13,7 +13,6 @@ export * from './card-linked';
|
|
|
13
13
|
export * from './checkbox';
|
|
14
14
|
export * from './coachmark';
|
|
15
15
|
export * from './context-menu';
|
|
16
|
-
export * from './datepicker';
|
|
17
16
|
export * from './details';
|
|
18
17
|
export * from './dialog';
|
|
19
18
|
export * from './div';
|
|
@@ -22,6 +21,7 @@ export * from './dropdown';
|
|
|
22
21
|
export * from './fab';
|
|
23
22
|
export * from './filter-chips';
|
|
24
23
|
export * from './flex';
|
|
24
|
+
export * from './datepicker';
|
|
25
25
|
export * from './form-summary';
|
|
26
26
|
export * from './grid';
|
|
27
27
|
export * from './grouped-list';
|
|
@@ -53,11 +53,6 @@ export * from './filter-chip';
|
|
|
53
53
|
export * from './formatted-account';
|
|
54
54
|
export * from './formatted-date';
|
|
55
55
|
export * from './formatted-number';
|
|
56
|
-
export * from './radio-group';
|
|
57
|
-
export * from './segment';
|
|
58
|
-
export * from './sensitive-account';
|
|
59
|
-
export * from './sensitive-date';
|
|
60
|
-
export * from './sensitive-number';
|
|
61
56
|
export * from './icon-ai';
|
|
62
57
|
export * from './icon-airplane-up';
|
|
63
58
|
export * from './icon-archive';
|
|
@@ -88,6 +83,7 @@ export * from './icon-arrow-wall-right';
|
|
|
88
83
|
export * from './icon-arrow-wall-up';
|
|
89
84
|
export * from './icon-arrow';
|
|
90
85
|
export * from './icon-arrows-repeat';
|
|
86
|
+
export * from './icon-asterisk';
|
|
91
87
|
export * from './icon-at';
|
|
92
88
|
export * from './icon-back';
|
|
93
89
|
export * from './icon-backward';
|
|
@@ -186,6 +182,7 @@ export * from './icon-code';
|
|
|
186
182
|
export * from './icon-compass-round';
|
|
187
183
|
export * from './icon-cookies';
|
|
188
184
|
export * from './icon-copy';
|
|
185
|
+
export * from './icon-credit-card-add';
|
|
189
186
|
export * from './icon-credit-card';
|
|
190
187
|
export * from './icon-cross-large';
|
|
191
188
|
export * from './icon-cross-small';
|
|
@@ -310,6 +307,7 @@ export * from './icon-poop';
|
|
|
310
307
|
export * from './icon-postcard';
|
|
311
308
|
export * from './icon-pound';
|
|
312
309
|
export * from './icon-power-plant';
|
|
310
|
+
export * from './icon-power';
|
|
313
311
|
export * from './icon-printer';
|
|
314
312
|
export * from './icon-push';
|
|
315
313
|
export * from './icon-qr-code';
|
|
@@ -394,6 +392,11 @@ export * from './icon-youtube';
|
|
|
394
392
|
export * from './icon-zap';
|
|
395
393
|
export * from './icon-zoom-in';
|
|
396
394
|
export * from './icon-zoom-out';
|
|
395
|
+
export * from './radio-group';
|
|
396
|
+
export * from './segment';
|
|
397
|
+
export * from './sensitive-account';
|
|
398
|
+
export * from './sensitive-date';
|
|
399
|
+
export * from './sensitive-number';
|
|
397
400
|
export * from './menu-item';
|
|
398
401
|
export * from './menu-heading';
|
|
399
402
|
export * from './option';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sebgroup/green-core-ng",
|
|
3
3
|
"description": "Angular wrappers for @sebgroup/green-core web components.",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.35.0",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"module": "fesm2022/sebgroup-green-core-ng.mjs",
|
|
7
7
|
"type": "module",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"directory": "../../dist/libs/core-ng"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@sebgroup/green-core": "2.
|
|
25
|
+
"@sebgroup/green-core": "2.35.0",
|
|
26
26
|
"tslib": "^2.3.0"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|