@eagami/ui 0.9.0 → 0.10.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 +29 -8
- package/fesm2022/eagami-ui.mjs +511 -144
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +86 -4
package/README.md
CHANGED
|
@@ -145,7 +145,7 @@ Sizes: `xs` | `sm` | `md` | `lg` | `xl`. Shapes: `circle` | `square`.
|
|
|
145
145
|
</details>
|
|
146
146
|
|
|
147
147
|
<details>
|
|
148
|
-
<summary><strong>Avatar
|
|
148
|
+
<summary><strong>Avatar editor</strong> — canvas-based image editor with pan, zoom, and crop</summary>
|
|
149
149
|
|
|
150
150
|
Drag-and-drop upload, zoom via slider or scroll wheel. Outputs a `Blob` and data URL.
|
|
151
151
|
|
|
@@ -242,7 +242,7 @@ Sizes: `sm` | `md` | `lg`.
|
|
|
242
242
|
</details>
|
|
243
243
|
|
|
244
244
|
<details>
|
|
245
|
-
<summary><strong>Code
|
|
245
|
+
<summary><strong>Code input</strong> — verification code entry with auto-advance and paste support</summary>
|
|
246
246
|
|
|
247
247
|
Configurable `length` (default 6). Full `ControlValueAccessor` support.
|
|
248
248
|
|
|
@@ -255,7 +255,7 @@ Configurable `length` (default 6). Full `ControlValueAccessor` support.
|
|
|
255
255
|
</details>
|
|
256
256
|
|
|
257
257
|
<details>
|
|
258
|
-
<summary><strong>Data
|
|
258
|
+
<summary><strong>Data table</strong> — sortable columns, sticky headers, density modes</summary>
|
|
259
259
|
|
|
260
260
|
Striped, bordered, and hoverable rows. Custom cell templates via `ng-template`. Density: `compact` | `comfortable` | `spacious`. Two-way `sort` binding.
|
|
261
261
|
|
|
@@ -273,6 +273,24 @@ Striped, bordered, and hoverable rows. Custom cell templates via `ng-template`.
|
|
|
273
273
|
|
|
274
274
|
</details>
|
|
275
275
|
|
|
276
|
+
<details>
|
|
277
|
+
<summary><strong>Date picker</strong> — calendar popover with keyboard navigation and min/max bounds</summary>
|
|
278
|
+
|
|
279
|
+
Sizes: `sm` | `md` | `lg`. Formats: `short` | `medium` | `long` (locale-aware via `Intl.DateTimeFormat`). Configurable week start (Sunday or Monday). Full keyboard navigation (arrows, PageUp/PageDown, Home/End, Enter, Escape) and `ControlValueAccessor` integration.
|
|
280
|
+
|
|
281
|
+
```html
|
|
282
|
+
<ea-date-picker
|
|
283
|
+
label="Appointment"
|
|
284
|
+
placeholder="Pick a date…"
|
|
285
|
+
format="medium"
|
|
286
|
+
[minDate]="today"
|
|
287
|
+
[(value)]="appointmentDate" />
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
<img src="docs/images/date-picker.png" alt="Date picker component" width="560" />
|
|
291
|
+
|
|
292
|
+
</details>
|
|
293
|
+
|
|
276
294
|
<details>
|
|
277
295
|
<summary><strong>Dialog</strong> — native dialog element with focus trapping</summary>
|
|
278
296
|
|
|
@@ -350,15 +368,18 @@ Arrow keys, Enter/Space to select, Escape to close. Sizes: `sm` | `md` | `lg`.
|
|
|
350
368
|
</details>
|
|
351
369
|
|
|
352
370
|
<details>
|
|
353
|
-
<summary><strong>Eagami
|
|
371
|
+
<summary><strong>Eagami wordmark</strong> — branded logo wordmark linking to eagami.com</summary>
|
|
354
372
|
|
|
355
|
-
Variants: `logo` (icon only) | `signature` (handcrafted by
|
|
373
|
+
Variants: `logo` (icon only) | `signature` (handcrafted by <text>) | `brand` (<text> with tagline). The `text` input switches the main wordmark between `eagami` and `eagami design system` in the `signature` and `brand` variants. Three discrete sizes (`sm`, `md`, `lg`) scale both the logo and the text proportionally.
|
|
356
374
|
|
|
357
375
|
```html
|
|
358
|
-
<ea-eagami-wordmark
|
|
376
|
+
<ea-eagami-wordmark
|
|
377
|
+
variant="brand"
|
|
378
|
+
size="md"
|
|
379
|
+
text="eagami design system" />
|
|
359
380
|
```
|
|
360
381
|
|
|
361
|
-
<img src="docs/images/eagami-wordmark.png" alt="Eagami
|
|
382
|
+
<img src="docs/images/eagami-wordmark.png" alt="Eagami wordmark component" width="560" />
|
|
362
383
|
|
|
363
384
|
</details>
|
|
364
385
|
|
|
@@ -421,7 +442,7 @@ Placement: `left` | `center` | `right`. Emits `pageChange` events with current p
|
|
|
421
442
|
</details>
|
|
422
443
|
|
|
423
444
|
<details>
|
|
424
|
-
<summary><strong>Progress
|
|
445
|
+
<summary><strong>Progress bar</strong> — determinate and indeterminate linear indicator</summary>
|
|
425
446
|
|
|
426
447
|
Variants: `default` | `success` | `warning` | `error` | `info`. Sizes: `sm` | `md` | `lg`. Optional `label` and `showValue` display.
|
|
427
448
|
|