@guildofgleks/ui 21.4.0 → 21.4.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/AGENTS.md +36 -13
- package/CHANGELOG.md +957 -0
- 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 +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guildofgleks/ui",
|
|
3
|
-
"version": "21.4.
|
|
3
|
+
"version": "21.4.2",
|
|
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
|
|
@@ -1639,7 +1639,7 @@ declare class CalendarComponent {
|
|
|
1639
1639
|
protected readonly seconds: _angular_core.Signal<number>;
|
|
1640
1640
|
protected readonly isPm: _angular_core.Signal<boolean>;
|
|
1641
1641
|
protected readonly maxHour: _angular_core.Signal<12 | 23>;
|
|
1642
|
-
protected readonly minHour: _angular_core.Signal<
|
|
1642
|
+
protected readonly minHour: _angular_core.Signal<0 | 1>;
|
|
1643
1643
|
constructor();
|
|
1644
1644
|
/** Steps the view by whole months or years. */
|
|
1645
1645
|
protected shiftView(months: number): void;
|