@eagami/ui 4.7.0 → 4.8.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 +581 -32
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +7 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
- **Accessible.** Keyboard navigation, focus management, screen-reader support, and reduced-motion handling are built into every component.
|
|
20
20
|
- **Lightweight.** Each component imports independently and the bundle only ships what you use.
|
|
21
21
|
- **Themeable.** Fully customizable with [design tokens](https://eagami.com/ui/design-tokens) while maintaining a unified look across every page. Light and dark variants ship together and default to the user's system preference.
|
|
22
|
-
- **Localized.** Built-in component text ships in
|
|
22
|
+
- **Localized.** Built-in component text ships in 15 languages, with runtime switching and per-string overrides.
|
|
23
23
|
- **Modern.** Regularly updated with the latest Angular features and modern web standards.
|
|
24
24
|
- **Unlocked.** Every component is plain Angular and CSS with no vendor lock-in, so the source can be read, copied, or modified like any other code in your project.
|
|
25
25
|
|
|
@@ -103,7 +103,7 @@ Every brand-role pairing is checked against WCAG 2.1 AA at bootstrap; a contrast
|
|
|
103
103
|
|
|
104
104
|
## Internationalization
|
|
105
105
|
|
|
106
|
-
Built-in strings ship in
|
|
106
|
+
Built-in strings ship in 15 languages, with runtime switching via `EagamiI18nService`. English is bundled by default; register the other languages you use with `provideEagamiUi({ locales: [...] })` (or pass `EAGAMI_ALL_LOCALES` for all of them) so you ship only what you need. See [internationalization](https://eagami.com/ui/i18n) for setup and per-string overrides.
|
|
107
107
|
|
|
108
108
|
## Server-side rendering
|
|
109
109
|
|