@ecohouse/ui 0.1.43 → 0.1.44

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 (38) hide show
  1. package/dist/index.cjs +182 -26
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.d.cts +21 -4
  4. package/dist/index.d.ts +21 -4
  5. package/dist/index.js +179 -28
  6. package/dist/index.js.map +1 -1
  7. package/package.json +1 -1
  8. package/src/components/Button/Button.stories.tsx +5 -0
  9. package/src/components/Button/Button.tsx +34 -5
  10. package/src/components/Input/Input.tsx +6 -0
  11. package/src/components/LanguageSwitcher/LanguageSwitcher.tsx +1 -1
  12. package/src/components/SegmentedToggle/SegmentedToggle.tsx +21 -1
  13. package/src/components/Select/Select.tsx +12 -3
  14. package/src/icons/Amenity/amenityPaths.ts +3 -10
  15. package/src/icons/Dram/DramIcon.tsx +14 -0
  16. package/src/icons/Dram/DramIcon.web.tsx +20 -0
  17. package/src/icons/Dram/dramPath.ts +2 -0
  18. package/src/icons/Dram/index.ts +1 -0
  19. package/src/icons/HouseRules/houseRulesPaths.ts +3 -3
  20. package/src/icons/NoPets/NoPetsIcon.tsx +23 -0
  21. package/src/icons/NoPets/NoPetsIcon.web.tsx +29 -0
  22. package/src/icons/NoPets/index.ts +1 -0
  23. package/src/icons/NoPets/noPetsPaths.ts +8 -0
  24. package/src/icons/StarOutline/StarOutlineIcon.tsx +24 -0
  25. package/src/icons/StarOutline/StarOutlineIcon.web.tsx +30 -0
  26. package/src/icons/StarOutline/index.ts +1 -0
  27. package/src/icons/StarOutline/starOutlinePath.ts +2 -0
  28. package/src/icons/Sun/SunIcon.tsx +20 -0
  29. package/src/icons/Sun/SunIcon.web.tsx +26 -0
  30. package/src/icons/Sun/index.ts +1 -0
  31. package/src/icons/Sun/sunPath.ts +2 -0
  32. package/src/icons/Washer/WasherIcon.tsx +25 -0
  33. package/src/icons/Washer/WasherIcon.web.tsx +31 -0
  34. package/src/icons/Washer/index.ts +1 -0
  35. package/src/icons/Washer/washerPaths.ts +28 -0
  36. package/src/icons/index.ts +5 -0
  37. package/src/icons/registry.ts +15 -0
  38. package/src/index.ts +5 -0
@@ -55,6 +55,7 @@ export { FiltersIcon } from "./Filters";
55
55
  export { FullscreenIcon } from "./Fullscreen";
56
56
  export { CutleryIcon } from "./Cutlery";
57
57
  export { DollarIcon } from "./Dollar";
58
+ export { DramIcon } from "./Dram";
58
59
  export { DragHandleIcon } from "./DragHandle";
59
60
  export { HeartIcon } from "./Heart";
60
61
  export { HeadsetIcon } from "./Headset";
@@ -83,6 +84,7 @@ export { MenuLinesIcon } from "./MenuLines";
83
84
  export { MoonStarsIcon } from "./MoonStars";
84
85
  export { MoreHorizontalIcon } from "./MoreHorizontal";
85
86
  export { NavigateIcon } from "./Navigate";
87
+ export { NoPetsIcon } from "./NoPets";
86
88
  export { PhoneIcon } from "./Phone";
87
89
  export { PlusIcon } from "./Plus";
88
90
  export { MinusIcon } from "./Minus";
@@ -95,10 +97,13 @@ export { SidebarIcon } from "./Sidebar";
95
97
  export { SortIcon } from "./Sort";
96
98
  export { StarIcon } from "./Star";
97
99
  export { StarFilledIcon } from "./StarFilled";
100
+ export { StarOutlineIcon } from "./StarOutline";
101
+ export { SunIcon } from "./Sun";
98
102
  export { TableViewIcon } from "./TableView";
99
103
  export { UserIcon } from "./User";
100
104
  export { UsersAltIcon } from "./UsersAlt";
101
105
  export { VideoIcon } from "./Video";
102
106
  export { VideoOffIcon } from "./VideoOff";
107
+ export { WasherIcon } from "./Washer";
103
108
  export { ZoomOutIcon } from "./ZoomOut";
104
109
  export type { StarIconProps } from "./Star";
@@ -44,6 +44,7 @@ import { FiltersIcon } from "./Filters";
44
44
  import { FullscreenIcon } from "./Fullscreen";
45
45
  import { CutleryIcon } from "./Cutlery";
46
46
  import { DollarIcon } from "./Dollar";
47
+ import { DramIcon } from "./Dram";
47
48
  import { DragHandleIcon } from "./DragHandle";
48
49
  import { HeartIcon } from "./Heart";
49
50
  import { HeadsetIcon } from "./Headset";
@@ -71,6 +72,7 @@ import { MinusIcon } from "./Minus";
71
72
  import { MoonStarsIcon } from "./MoonStars";
72
73
  import { MoreHorizontalIcon } from "./MoreHorizontal";
73
74
  import { NavigateIcon } from "./Navigate";
75
+ import { NoPetsIcon } from "./NoPets";
74
76
  import { PhoneIcon } from "./Phone";
75
77
  import { PlusIcon } from "./Plus";
76
78
  import { RefreshIcon } from "./Refresh";
@@ -82,11 +84,14 @@ import { SidebarIcon } from "./Sidebar";
82
84
  import { SortIcon } from "./Sort";
83
85
  import { StarIcon } from "./Star";
84
86
  import { StarFilledIcon } from "./StarFilled";
87
+ import { StarOutlineIcon } from "./StarOutline";
88
+ import { SunIcon } from "./Sun";
85
89
  import { TableViewIcon } from "./TableView";
86
90
  import { UserIcon } from "./User";
87
91
  import { UsersAltIcon } from "./UsersAlt";
88
92
  import { VideoIcon } from "./Video";
89
93
  import { VideoOffIcon } from "./VideoOff";
94
+ import { WasherIcon } from "./Washer";
90
95
  import { ZoomOutIcon } from "./ZoomOut";
91
96
  import type { IconComponent } from "./types";
92
97
 
@@ -149,6 +154,7 @@ export const icons = {
149
154
  moonStars: MoonStarsIcon,
150
155
  moreHorizontal: MoreHorizontalIcon,
151
156
  navigate: NavigateIcon,
157
+ noPets: NoPetsIcon,
152
158
  noSmoking: NoSmokingIcon,
153
159
  paw: PawIcon,
154
160
  phone: PhoneIcon,
@@ -167,6 +173,8 @@ export const icons = {
167
173
  sort: SortIcon,
168
174
  star: StarIcon,
169
175
  starFilled: StarFilledIcon,
176
+ starOutline: StarOutlineIcon,
177
+ sun: SunIcon,
170
178
  tableView: TableViewIcon,
171
179
  tooltipArrow: TooltipArrowIcon,
172
180
  trash: TrashIcon,
@@ -174,8 +182,10 @@ export const icons = {
174
182
  usersAlt: UsersAltIcon,
175
183
  video: VideoIcon,
176
184
  videoOff: VideoOffIcon,
185
+ washer: WasherIcon,
177
186
  cutlery: CutleryIcon,
178
187
  dollar: DollarIcon,
188
+ dram: DramIcon,
179
189
  dragHandle: DragHandleIcon,
180
190
  eye: EyeIcon,
181
191
  image: ImageIcon,
@@ -236,6 +246,8 @@ export const iconGroups = {
236
246
  "zoomOut",
237
247
  "star",
238
248
  "starFilled",
249
+ "starOutline",
250
+ "sun",
239
251
  "minus",
240
252
  "moonStars",
241
253
  "moreHorizontal",
@@ -254,6 +266,7 @@ export const iconGroups = {
254
266
  "clockFilled",
255
267
  "guests",
256
268
  "lock",
269
+ "noPets",
257
270
  "noSmoking",
258
271
  "paw",
259
272
  "qrCode",
@@ -263,6 +276,7 @@ export const iconGroups = {
263
276
  "usersAlt",
264
277
  "video",
265
278
  "videoOff",
279
+ "washer",
266
280
  "whatsApp",
267
281
  ],
268
282
  communication: ["mail", "phone"],
@@ -271,6 +285,7 @@ export const iconGroups = {
271
285
  "areaExpand",
272
286
  "cutlery",
273
287
  "dollar",
288
+ "dram",
274
289
  "eye",
275
290
  "globe",
276
291
  "layoutGrid",
package/src/index.ts CHANGED
@@ -163,6 +163,7 @@ export {
163
163
  ClockFilledIcon,
164
164
  CopyIcon,
165
165
  DownloadIcon,
166
+ DramIcon,
166
167
  QrCodeIcon,
167
168
  ShareIcon,
168
169
  TooltipArrowIcon,
@@ -199,6 +200,7 @@ export {
199
200
  MinusIcon,
200
201
  MoonStarsIcon,
201
202
  NavigateIcon,
203
+ NoPetsIcon,
202
204
  PhoneIcon,
203
205
  PlusIcon,
204
206
  RefreshIcon,
@@ -210,11 +212,14 @@ export {
210
212
  SortIcon,
211
213
  StarIcon,
212
214
  StarFilledIcon,
215
+ StarOutlineIcon,
216
+ SunIcon,
213
217
  TableViewIcon,
214
218
  UserIcon,
215
219
  UsersAltIcon,
216
220
  VideoIcon,
217
221
  VideoOffIcon,
222
+ WasherIcon,
218
223
  CutleryIcon,
219
224
  DollarIcon,
220
225
  DragHandleIcon,