@eagami/ui 5.14.0 → 5.14.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/README.md +2 -2
- package/fesm2022/eagami-ui.mjs +76 -13
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "5.14.
|
|
3
|
+
"version": "5.14.2",
|
|
4
4
|
"description": "Lightweight, accessible, themeable Angular UI component library and icon set built on CSS custom properties",
|
|
5
5
|
"author": "Michal Wiraszka <michal@eagami.com>",
|
|
6
6
|
"license": "MIT",
|
package/types/eagami-ui.d.ts
CHANGED
|
@@ -70,6 +70,7 @@ interface EagamiMessages {
|
|
|
70
70
|
clear: string;
|
|
71
71
|
};
|
|
72
72
|
colorPicker: {
|
|
73
|
+
dialogLabel: string;
|
|
73
74
|
placeholder: string;
|
|
74
75
|
clear: string;
|
|
75
76
|
hue: string;
|
|
@@ -154,6 +155,7 @@ interface EagamiMessages {
|
|
|
154
155
|
label: string;
|
|
155
156
|
};
|
|
156
157
|
multiSelect: {
|
|
158
|
+
dialogLabel: string;
|
|
157
159
|
placeholder: string;
|
|
158
160
|
searchPlaceholder: string;
|
|
159
161
|
searchEmpty: string;
|
|
@@ -1649,6 +1651,13 @@ declare class DatePickerComponent implements ControlValueAccessor {
|
|
|
1649
1651
|
goToNextMonth(): void;
|
|
1650
1652
|
goToPrevYear(): void;
|
|
1651
1653
|
goToNextYear(): void;
|
|
1654
|
+
/**
|
|
1655
|
+
* Moves the roving date into the month now on screen, keeping the day where
|
|
1656
|
+
* the month is long enough. Without this the only tabbable day cell stays in
|
|
1657
|
+
* the month the user navigated away from, so inside the focus-trapped dialog
|
|
1658
|
+
* no day is reachable and the next arrow key snaps the view back.
|
|
1659
|
+
*/
|
|
1660
|
+
private pullFocusIntoView;
|
|
1652
1661
|
goToToday(): void;
|
|
1653
1662
|
handleTriggerKeydown(event: KeyboardEvent): void;
|
|
1654
1663
|
handleGridKeydown(event: KeyboardEvent): void;
|