@eagami/ui 5.14.0 → 5.14.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 +2 -2
- package/fesm2022/eagami-ui.mjs +40 -7
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "5.14.
|
|
3
|
+
"version": "5.14.1",
|
|
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
|
@@ -1649,6 +1649,13 @@ declare class DatePickerComponent implements ControlValueAccessor {
|
|
|
1649
1649
|
goToNextMonth(): void;
|
|
1650
1650
|
goToPrevYear(): void;
|
|
1651
1651
|
goToNextYear(): void;
|
|
1652
|
+
/**
|
|
1653
|
+
* Moves the roving date into the month now on screen, keeping the day where
|
|
1654
|
+
* the month is long enough. Without this the only tabbable day cell stays in
|
|
1655
|
+
* the month the user navigated away from, so inside the focus-trapped dialog
|
|
1656
|
+
* no day is reachable and the next arrow key snaps the view back.
|
|
1657
|
+
*/
|
|
1658
|
+
private pullFocusIntoView;
|
|
1652
1659
|
goToToday(): void;
|
|
1653
1660
|
handleTriggerKeydown(event: KeyboardEvent): void;
|
|
1654
1661
|
handleGridKeydown(event: KeyboardEvent): void;
|