@sebgroup/green-core-ng 2.37.0 → 2.37.2
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 +533 -183
- package/fesm2022/sebgroup-green-core-ng.mjs.map +1 -1
- package/generated/breadcrumb/breadcrumb.component.d.ts +14 -1
- package/generated/button/button.component.d.ts +14 -1
- package/generated/card-linked/card-linked.component.d.ts +14 -1
- package/generated/card-pattern-01/card-pattern-01.component.d.ts +14 -1
- package/generated/fab/fab.component.d.ts +14 -1
- package/generated/green-core-ng.module.d.ts +341 -341
- package/generated/index.d.ts +1 -1
- package/generated/link/link.component.d.ts +14 -1
- package/generated/menu-button/menu-button.component.d.ts +14 -1
- package/package.json +2 -2
package/generated/index.d.ts
CHANGED
|
@@ -53,7 +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
56
|
export * from './icon-ai';
|
|
58
57
|
export * from './icon-airplane-up';
|
|
59
58
|
export * from './icon-archive';
|
|
@@ -393,6 +392,7 @@ export * from './icon-youtube';
|
|
|
393
392
|
export * from './icon-zap';
|
|
394
393
|
export * from './icon-zoom-in';
|
|
395
394
|
export * from './icon-zoom-out';
|
|
395
|
+
export * from './radio-group';
|
|
396
396
|
export * from './segment';
|
|
397
397
|
export * from './sensitive-account';
|
|
398
398
|
export * from './sensitive-date';
|
|
@@ -10,6 +10,9 @@ export declare class GdsLinkComponent implements OnInit, OnChanges, AfterViewIni
|
|
|
10
10
|
private zone;
|
|
11
11
|
private cdr;
|
|
12
12
|
private renderer;
|
|
13
|
+
private router;
|
|
14
|
+
private locationStrategy;
|
|
15
|
+
private destroyRef;
|
|
13
16
|
private routerLink;
|
|
14
17
|
private routerLinkActive;
|
|
15
18
|
get element(): GdsLink;
|
|
@@ -96,7 +99,17 @@ export declare class GdsLinkComponent implements OnInit, OnChanges, AfterViewIni
|
|
|
96
99
|
/** Fired when the link is clicked. */
|
|
97
100
|
click: EventEmitter<MouseEvent>;
|
|
98
101
|
/**
|
|
99
|
-
*
|
|
102
|
+
* Prevent the browser from following the href when RouterLink handles
|
|
103
|
+
* navigation. RouterLink calls Router.navigateByUrl() for all elements,
|
|
104
|
+
* but only calls preventDefault() for native <a> tags. For custom
|
|
105
|
+
* elements we must do it ourselves, respecting modifier-key and
|
|
106
|
+
* target-attribute semantics so that ctrl-click / cmd-click / target=_blank
|
|
107
|
+
* still open a new tab.
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
110
|
+
private preventNativeNavigation;
|
|
111
|
+
/**
|
|
112
|
+
* Updates the href attribute from RouterLink using only public Angular APIs.
|
|
100
113
|
* @internal
|
|
101
114
|
*/
|
|
102
115
|
private updateHref;
|
|
@@ -10,6 +10,9 @@ export declare class GdsMenuButtonComponent implements OnInit, OnChanges, AfterV
|
|
|
10
10
|
private zone;
|
|
11
11
|
private cdr;
|
|
12
12
|
private renderer;
|
|
13
|
+
private router;
|
|
14
|
+
private locationStrategy;
|
|
15
|
+
private destroyRef;
|
|
13
16
|
private routerLink;
|
|
14
17
|
private routerLinkActive;
|
|
15
18
|
get element(): GdsMenuButton;
|
|
@@ -76,7 +79,17 @@ export declare class GdsMenuButtonComponent implements OnInit, OnChanges, AfterV
|
|
|
76
79
|
/** Fired when the button is clicked. */
|
|
77
80
|
click: EventEmitter<MouseEvent>;
|
|
78
81
|
/**
|
|
79
|
-
*
|
|
82
|
+
* Prevent the browser from following the href when RouterLink handles
|
|
83
|
+
* navigation. RouterLink calls Router.navigateByUrl() for all elements,
|
|
84
|
+
* but only calls preventDefault() for native <a> tags. For custom
|
|
85
|
+
* elements we must do it ourselves, respecting modifier-key and
|
|
86
|
+
* target-attribute semantics so that ctrl-click / cmd-click / target=_blank
|
|
87
|
+
* still open a new tab.
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
private preventNativeNavigation;
|
|
91
|
+
/**
|
|
92
|
+
* Updates the href attribute from RouterLink using only public Angular APIs.
|
|
80
93
|
* @internal
|
|
81
94
|
*/
|
|
82
95
|
private updateHref;
|
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.37.
|
|
4
|
+
"version": "2.37.2",
|
|
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.37.
|
|
25
|
+
"@sebgroup/green-core": "2.37.2",
|
|
26
26
|
"tslib": "^2.3.0"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|