@eagami/ui 4.5.1 → 4.7.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 CHANGED
@@ -19,12 +19,20 @@
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 English, French, Greek, Polish, and Spanish.
22
+ - **Localized.** Built-in component text ships in twelve 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
 
26
26
  ## Installation
27
27
 
28
+ The quickest way is the schematic, which installs the package and registers the global stylesheet and fonts for you:
29
+
30
+ ```bash
31
+ ng add @eagami/ui
32
+ ```
33
+
34
+ Prefer to wire it up by hand? Install the package:
35
+
28
36
  ```bash
29
37
  npm install @eagami/ui
30
38
  # or
@@ -33,7 +41,7 @@ pnpm add @eagami/ui
33
41
  yarn add @eagami/ui
34
42
  ```
35
43
 
36
- Add the global stylesheet to your `angular.json`:
44
+ Then add the global stylesheet to your `angular.json`:
37
45
 
38
46
  ```json
39
47
  "styles": ["node_modules/@eagami/ui/src/styles/eagami-ui.scss"]