@eagami/ui 0.4.1 → 0.5.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 +17 -6
- package/fesm2022/eagami-ui.mjs +425 -104
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/tokens/_elevation.scss +2 -0
- package/types/eagami-ui.d.ts +38 -2
package/README.md
CHANGED
|
@@ -333,12 +333,23 @@ Add the toast outlet once in your root template:
|
|
|
333
333
|
|
|
334
334
|
Built-in SVG icon components following the Feather icon style (24x24 viewBox, stroke-based, inherits `currentColor`):
|
|
335
335
|
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
336
|
+
| Tag | Preview |
|
|
337
|
+
|---|---|
|
|
338
|
+
| `<ea-icon-alert-circle />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/alert-circle.png" width="24" height="24" alt="alert-circle" /> |
|
|
339
|
+
| `<ea-icon-camera />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/camera.png" width="24" height="24" alt="camera" /> |
|
|
340
|
+
| `<ea-icon-check />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/check.png" width="24" height="24" alt="check" /> |
|
|
341
|
+
| `<ea-icon-eye />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/eye.png" width="24" height="24" alt="eye" /> |
|
|
342
|
+
| `<ea-icon-eye-off />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/eye-off.png" width="24" height="24" alt="eye-off" /> |
|
|
343
|
+
| `<ea-icon-google />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/google.png" width="24" height="24" alt="google" /> |
|
|
344
|
+
| `<ea-icon-info />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/info.png" width="24" height="24" alt="info" /> |
|
|
345
|
+
| `<ea-icon-loader />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/loader.png" width="24" height="24" alt="loader" /> |
|
|
346
|
+
| `<ea-icon-minus />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/minus.png" width="24" height="24" alt="minus" /> |
|
|
347
|
+
| `<ea-icon-plus />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/plus.png" width="24" height="24" alt="plus" /> |
|
|
348
|
+
| `<ea-icon-rotate-ccw />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/rotate-ccw.png" width="24" height="24" alt="rotate-ccw" /> |
|
|
349
|
+
| `<ea-icon-trash />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/trash.png" width="24" height="24" alt="trash" /> |
|
|
350
|
+
| `<ea-icon-upload />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/upload.png" width="24" height="24" alt="upload" /> |
|
|
351
|
+
| `<ea-icon-user />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/user.png" width="24" height="24" alt="user" /> |
|
|
352
|
+
| `<ea-icon-x />` | <img src="https://raw.githubusercontent.com/mwiraszka/eagami-design-system/main/docs/images/icons/x.png" width="24" height="24" alt="x" /> |
|
|
342
353
|
|
|
343
354
|
## Theming
|
|
344
355
|
|