@ecohouse/ui 0.1.36 → 0.1.38

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.
Files changed (34) hide show
  1. package/README.md +2 -0
  2. package/dist/index.cjs +945 -416
  3. package/dist/index.cjs.map +1 -1
  4. package/dist/index.d.cts +75 -2
  5. package/dist/index.d.ts +75 -2
  6. package/dist/index.js +870 -346
  7. package/dist/index.js.map +1 -1
  8. package/package.json +1 -1
  9. package/src/components/Accordion/Accordion.stories.tsx +47 -0
  10. package/src/components/Accordion/Accordion.tsx +165 -0
  11. package/src/components/Accordion/index.ts +2 -0
  12. package/src/components/AutocompleteInput/AutocompleteInput.stories.tsx +80 -0
  13. package/src/components/AutocompleteInput/AutocompleteInput.tsx +313 -0
  14. package/src/components/AutocompleteInput/index.ts +2 -0
  15. package/src/components/Counter/Counter.tsx +61 -26
  16. package/src/components/QuantityInput/QuantityInput.stories.tsx +45 -0
  17. package/src/components/QuantityInput/QuantityInput.tsx +153 -0
  18. package/src/components/QuantityInput/index.ts +2 -0
  19. package/src/components/index.ts +9 -0
  20. package/src/icons/ArrowLeft/ArrowLeftIcon.test.ts +10 -0
  21. package/src/icons/ArrowLeft/ArrowLeftIcon.tsx +21 -0
  22. package/src/icons/ArrowLeft/ArrowLeftIcon.web.tsx +26 -0
  23. package/src/icons/ArrowLeft/arrowLeftPath.ts +3 -0
  24. package/src/icons/ArrowLeft/index.ts +1 -0
  25. package/src/icons/CurrentLocation/CurrentLocationIcon.test.ts +10 -0
  26. package/src/icons/CurrentLocation/CurrentLocationIcon.tsx +25 -0
  27. package/src/icons/CurrentLocation/CurrentLocationIcon.web.tsx +30 -0
  28. package/src/icons/CurrentLocation/currentLocationPath.ts +3 -0
  29. package/src/icons/CurrentLocation/index.ts +1 -0
  30. package/src/icons/index.ts +2 -0
  31. package/src/icons/registry.ts +6 -0
  32. package/src/index.ts +9 -0
  33. package/src/theme/colors.test.ts +1 -0
  34. package/src/theme/colors.ts +1 -0
package/README.md CHANGED
@@ -7,6 +7,7 @@ Cross-platform UI component library for EcoHouse. Built with React Native primit
7
7
  | Component | Description |
8
8
  | ----------------------- | ----------------------------------------------------------------------------- |
9
9
  | `Button` | Pill CTA — `primary` / `secondary`, sizes `lg` / `sm`, optional arrow badge |
10
+ | `Accordion` | Expandable surface that safely supports arbitrary interactive content |
10
11
  | `Badge` | Pill label chip — `default` / `transparent`, optional leading icon |
11
12
  | `StatusBadge` | Compact status chip — `active` / `completed` / `cancelled` (booking headers) |
12
13
  | `PaginationDots` | Carousel dots — track `48` wide, height `6`, gap `4` |
@@ -21,6 +22,7 @@ Cross-platform UI component library for EcoHouse. Built with React Native primit
21
22
  | `Select` | Single/multi-select dropdown with search and keyboard navigation |
22
23
  | `DatePicker` | Single/range calendar dropdown with month navigation and min/max bounds |
23
24
  | `Textarea` | Multi-line text field, same label/hint/state chrome as `Input` |
25
+ | `QuantityInput` | Labeled icon field with controlled/uncontrolled quantity stepper |
24
26
  | `Avatar` | Logged-in user chip (image/name/email) with an optional account dropdown menu |
25
27
  | `AvatarSimple` | Compact account card (avatar + name/email + logout) for sidebars |
26
28
  | `Sidebar` | Account sidebar — logo, nav items, collapse, AvatarSimple footer |