@guildofgleks/ui 21.4.0 → 21.4.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/README.md +99 -361
- package/fesm2022/guildofgleks-ui.mjs +37 -10
- package/fesm2022/guildofgleks-ui.mjs.map +1 -1
- package/package.json +10 -1
- package/types/guildofgleks-ui.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guildofgleks/ui",
|
|
3
|
-
"version": "21.4.
|
|
3
|
+
"version": "21.4.1",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.19.0"
|
|
6
6
|
},
|
|
@@ -18,6 +18,15 @@
|
|
|
18
18
|
],
|
|
19
19
|
"homepage": "https://ui.guildofgleks.com/",
|
|
20
20
|
"license": "Apache-2.0",
|
|
21
|
+
"author": "Roman Malitskyi",
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/GuildOfGleks/gleks_web_ui.git",
|
|
25
|
+
"directory": "projects/gleks/ui"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/GuildOfGleks/gleks_web_ui/issues"
|
|
29
|
+
},
|
|
21
30
|
"peerDependencies": {
|
|
22
31
|
"@angular/common": "^21.2.0",
|
|
23
32
|
"@angular/core": "^21.2.0",
|
|
@@ -282,7 +282,7 @@ declare class AccordionComponent {
|
|
|
282
282
|
* Left unset by default since not every accordion instance represents document structure
|
|
283
283
|
* (e.g. one nested inside a card).
|
|
284
284
|
*/
|
|
285
|
-
readonly headingLevel: _angular_core.InputSignal<2 |
|
|
285
|
+
readonly headingLevel: _angular_core.InputSignal<2 | 3 | 4 | 5 | 6 | undefined>;
|
|
286
286
|
/**
|
|
287
287
|
* Two-way bindable set of currently open item ids. Exposed as a model so consumers
|
|
288
288
|
* can drive the accordion externally (e.g. `[(openIds)]="mySet"`) instead of only
|