@eagami/ui 5.13.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 +91 -53
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "5.
|
|
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
|
@@ -821,8 +821,6 @@ declare class AvatarEditorComponent implements OnDestroy {
|
|
|
821
821
|
[x: string]: boolean;
|
|
822
822
|
'ea-avatar-editor--has-image': boolean;
|
|
823
823
|
'ea-avatar-editor--drag-over': boolean;
|
|
824
|
-
'ea-avatar-editor--compact': boolean;
|
|
825
|
-
'ea-avatar-editor--ultra-compact': boolean;
|
|
826
824
|
}>;
|
|
827
825
|
private readonly injector;
|
|
828
826
|
private readonly boundWheel;
|
|
@@ -1651,6 +1649,13 @@ declare class DatePickerComponent implements ControlValueAccessor {
|
|
|
1651
1649
|
goToNextMonth(): void;
|
|
1652
1650
|
goToPrevYear(): void;
|
|
1653
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;
|
|
1654
1659
|
goToToday(): void;
|
|
1655
1660
|
handleTriggerKeydown(event: KeyboardEvent): void;
|
|
1656
1661
|
handleGridKeydown(event: KeyboardEvent): void;
|