@eagami/ui 1.0.1 → 1.1.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 +15 -1
- package/fesm2022/eagami-ui.mjs +3197 -531
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/tokens/_colors.scss +29 -28
- package/src/styles/tokens/_elevation.scss +19 -11
- package/types/eagami-ui.d.ts +252 -1
package/README.md
CHANGED
|
@@ -103,7 +103,7 @@ See [`src/styles/tokens/`](src/styles/tokens/) for the full token reference.
|
|
|
103
103
|
|
|
104
104
|
## Framework integration
|
|
105
105
|
|
|
106
|
-
|
|
106
|
+
`@eagami/ui` is an Angular library, but its design tokens, rules, and component API conventions are framework-agnostic. For projects that can't consume the Angular package directly yet still want to adhere to the same design system, two self-contained integration guides are provided — each copy-and-paste ready and written to be readable by both human developers and AI coding agents:
|
|
107
107
|
|
|
108
108
|
- **[design-system-flutter.md](design-system-flutter.md)** — Dart `ThemeExtension`, `MaterialApp` wiring, reduced-motion handling, and widget API conventions for Flutter projects
|
|
109
109
|
- **[design-system-react.md](design-system-react.md)** — CSS custom properties, TypeScript constants, and component prop conventions for React projects (plain CSS, CSS Modules, styled-components, emotion, or Tailwind)
|
|
@@ -148,6 +148,20 @@ pnpm build # Build the library
|
|
|
148
148
|
pnpm lint # Lint
|
|
149
149
|
```
|
|
150
150
|
|
|
151
|
+
## Icons
|
|
152
|
+
|
|
153
|
+
The icon set is derived from [Feather Icons](https://feathericons.com/) (© Cole Bemis, MIT). Stroke style, dimensions, and most paths match Feather one-for-one. Browse the full set at [eagami.com/ui/icons](https://eagami.com/ui/icons).
|
|
154
|
+
|
|
155
|
+
### Brand icons
|
|
156
|
+
|
|
157
|
+
The following icons depict third-party trademarks and are provided **only for nominative use** — i.e. identifying the brand they represent in a UI (a "Sign in with Google" button, a "Share to Facebook" link, etc.). They are not licensed for general decorative use. Consumers are responsible for following each brand's guidelines and should consult them before shipping:
|
|
158
|
+
|
|
159
|
+
- **Facebook** — [Brand resources](https://about.meta.com/brand/resources/facebookapp/logo/)
|
|
160
|
+
- **GitHub** — [Logos and usage](https://github.com/logos)
|
|
161
|
+
- **Google** — [Sign-in branding guidelines](https://developers.google.com/identity/branding-guidelines)
|
|
162
|
+
- **Microsoft** — [Trademark and brand guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks)
|
|
163
|
+
- **X (Twitter)** — [Brand toolkit](https://about.x.com/en/who-we-are/brand-toolkit)
|
|
164
|
+
|
|
151
165
|
## License
|
|
152
166
|
|
|
153
167
|
MIT
|