@eagami/ui 0.9.0 → 0.10.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 +33 -8
- package/fesm2022/eagami-ui.mjs +526 -146
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +91 -7
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,22 @@ 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>
|
|
372
|
+
|
|
373
|
+
| Variant | Text |
|
|
374
|
+
| --- | --- |
|
|
375
|
+
| `1` | eagami |
|
|
376
|
+
| `2` | handcrafted by eagami |
|
|
377
|
+
| `3` | eagami design system |
|
|
378
|
+
| `4` | eagami design system — elegant web design |
|
|
354
379
|
|
|
355
|
-
|
|
380
|
+
Layout: `stacked` (default, multi-line) | `inline` (single line, uniform font size — adds em dash before tagline). Size is a number (pixels) for continuous scaling; the logo, brand text, and secondary text all scale proportionally.
|
|
356
381
|
|
|
357
382
|
```html
|
|
358
|
-
<ea-eagami-wordmark variant="
|
|
383
|
+
<ea-eagami-wordmark [variant]="4" [size]="96" />
|
|
359
384
|
```
|
|
360
385
|
|
|
361
|
-
<img src="docs/images/eagami-wordmark.png" alt="Eagami
|
|
386
|
+
<img src="docs/images/eagami-wordmark.png" alt="Eagami wordmark component" width="560" />
|
|
362
387
|
|
|
363
388
|
</details>
|
|
364
389
|
|
|
@@ -421,7 +446,7 @@ Placement: `left` | `center` | `right`. Emits `pageChange` events with current p
|
|
|
421
446
|
</details>
|
|
422
447
|
|
|
423
448
|
<details>
|
|
424
|
-
<summary><strong>Progress
|
|
449
|
+
<summary><strong>Progress bar</strong> — determinate and indeterminate linear indicator</summary>
|
|
425
450
|
|
|
426
451
|
Variants: `default` | `success` | `warning` | `error` | `info`. Sizes: `sm` | `md` | `lg`. Optional `label` and `showValue` display.
|
|
427
452
|
|