@eagami/ui 4.7.0 → 4.8.0
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 +545 -28
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.8.0",
|
|
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
|
@@ -7,7 +7,7 @@ import * as _eagami_ui from '@eagami/ui';
|
|
|
7
7
|
* BCP 47 locale tags supported out of the box. Consumers select one of these
|
|
8
8
|
* via `provideEagamiUi({ locale })` or `EagamiI18nService.setLocale()`.
|
|
9
9
|
*/
|
|
10
|
-
type EagamiLocale = 'en' | 'de' | 'es-ES' | 'fr-FR' | 'is' | 'nl' | 'pl' | 'pt-BR' | 'el' | 'ru' | 'uk' | 'zh-CN';
|
|
10
|
+
type EagamiLocale = 'en' | 'de' | 'es-ES' | 'fr-FR' | 'is' | 'nl' | 'pl' | 'pt-BR' | 'el' | 'ru' | 'uk' | 'he' | 'ar' | 'hi' | 'zh-CN';
|
|
11
11
|
/**
|
|
12
12
|
* Display metadata for a built-in locale: the language's name in its own
|
|
13
13
|
* language and a representative flag emoji.
|
|
@@ -16,6 +16,8 @@ interface EagamiLocaleMeta {
|
|
|
16
16
|
locale: EagamiLocale;
|
|
17
17
|
label: string;
|
|
18
18
|
flag: string;
|
|
19
|
+
/** Reading direction of the locale's script, for consumers wiring `dir`. */
|
|
20
|
+
dir: 'ltr' | 'rtl';
|
|
19
21
|
}
|
|
20
22
|
/**
|
|
21
23
|
* Display metadata for every built-in locale. The single source the Storybook
|