@homlista-devs/ui 1.6.1 → 1.6.3

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 (216) hide show
  1. package/dist/design-system.cjs.js +9 -9
  2. package/dist/design-system.cjs.js.map +1 -1
  3. package/dist/design-system.es.js +1068 -1013
  4. package/dist/design-system.es.js.map +1 -1
  5. package/dist/index.css +18 -0
  6. package/dist/types/App.d.ts +4 -0
  7. package/dist/types/App.d.ts.map +1 -0
  8. package/dist/types/entities/entity/index.d.ts +7 -0
  9. package/dist/types/entities/entity/index.d.ts.map +1 -0
  10. package/dist/types/entities/entity/lib/entity-utils.d.ts +18 -0
  11. package/dist/types/entities/entity/lib/entity-utils.d.ts.map +1 -0
  12. package/dist/types/entities/entity/model/types.d.ts +71 -0
  13. package/dist/types/entities/entity/model/types.d.ts.map +1 -0
  14. package/dist/types/entities/mortgage/index.d.ts +7 -0
  15. package/dist/types/entities/mortgage/index.d.ts.map +1 -0
  16. package/dist/types/entities/mortgage/lib/calculations.d.ts +31 -0
  17. package/dist/types/entities/mortgage/lib/calculations.d.ts.map +1 -0
  18. package/dist/types/entities/mortgage/model/types.d.ts +43 -0
  19. package/dist/types/entities/mortgage/model/types.d.ts.map +1 -0
  20. package/dist/types/entities/property/index.d.ts +6 -0
  21. package/dist/types/entities/property/index.d.ts.map +1 -0
  22. package/dist/types/entities/property/model/types.d.ts +47 -0
  23. package/dist/types/entities/property/model/types.d.ts.map +1 -0
  24. package/dist/types/features/button/index.d.ts +8 -0
  25. package/dist/types/features/button/index.d.ts.map +1 -0
  26. package/dist/types/features/button/lib/button-variants.d.ts +7 -0
  27. package/dist/types/features/button/lib/button-variants.d.ts.map +1 -0
  28. package/dist/types/features/button/ui/button.d.ts +8 -0
  29. package/dist/types/features/button/ui/button.d.ts.map +1 -0
  30. package/dist/types/features/card/index.d.ts +7 -0
  31. package/dist/types/features/card/index.d.ts.map +1 -0
  32. package/dist/types/features/card/lib/utils.d.ts +3 -0
  33. package/dist/types/features/card/lib/utils.d.ts.map +1 -0
  34. package/dist/types/features/card/ui/card.d.ts +21 -0
  35. package/dist/types/features/card/ui/card.d.ts.map +1 -0
  36. package/dist/types/features/donut-chart/index.d.ts +9 -0
  37. package/dist/types/features/donut-chart/index.d.ts.map +1 -0
  38. package/dist/types/features/donut-chart/lib/donut-chart-utils.d.ts +31 -0
  39. package/dist/types/features/donut-chart/lib/donut-chart-utils.d.ts.map +1 -0
  40. package/dist/types/features/donut-chart/ui/donut-chart.d.ts +29 -0
  41. package/dist/types/features/donut-chart/ui/donut-chart.d.ts.map +1 -0
  42. package/dist/types/features/entity-filtering/index.d.ts +9 -0
  43. package/dist/types/features/entity-filtering/index.d.ts.map +1 -0
  44. package/dist/types/features/entity-filtering/model/use-entity-filter.d.ts +38 -0
  45. package/dist/types/features/entity-filtering/model/use-entity-filter.d.ts.map +1 -0
  46. package/dist/types/features/entity-filtering/ui/category-chips.d.ts +23 -0
  47. package/dist/types/features/entity-filtering/ui/category-chips.d.ts.map +1 -0
  48. package/dist/types/features/input/index.d.ts +9 -0
  49. package/dist/types/features/input/index.d.ts.map +1 -0
  50. package/dist/types/features/input/lib/input-variants.d.ts +20 -0
  51. package/dist/types/features/input/lib/input-variants.d.ts.map +1 -0
  52. package/dist/types/features/input/ui/input.d.ts +27 -0
  53. package/dist/types/features/input/ui/input.d.ts.map +1 -0
  54. package/dist/types/features/modal/index.d.ts +7 -0
  55. package/dist/types/features/modal/index.d.ts.map +1 -0
  56. package/dist/types/features/modal/lib/utils.d.ts +3 -0
  57. package/dist/types/features/modal/lib/utils.d.ts.map +1 -0
  58. package/dist/types/features/modal/ui/modal.d.ts +28 -0
  59. package/dist/types/features/modal/ui/modal.d.ts.map +1 -0
  60. package/dist/types/features/select/index.d.ts +9 -0
  61. package/dist/types/features/select/index.d.ts.map +1 -0
  62. package/dist/types/features/select/lib/select-variants.d.ts +20 -0
  63. package/dist/types/features/select/lib/select-variants.d.ts.map +1 -0
  64. package/dist/types/features/select/ui/select.d.ts +32 -0
  65. package/dist/types/features/select/ui/select.d.ts.map +1 -0
  66. package/dist/types/features/text/index.d.ts +7 -0
  67. package/dist/types/features/text/index.d.ts.map +1 -0
  68. package/dist/types/features/text/lib/utils.d.ts +3 -0
  69. package/dist/types/features/text/lib/utils.d.ts.map +1 -0
  70. package/dist/types/features/text/ui/text.d.ts +15 -0
  71. package/dist/types/features/text/ui/text.d.ts.map +1 -0
  72. package/dist/types/index.d.ts +53 -0
  73. package/dist/types/index.d.ts.map +1 -0
  74. package/dist/types/main.d.ts +2 -0
  75. package/dist/types/main.d.ts.map +1 -0
  76. package/dist/types/pages/layouts/index.d.ts +7 -0
  77. package/dist/types/pages/layouts/index.d.ts.map +1 -0
  78. package/dist/types/pages/layouts/lib/utils.d.ts +3 -0
  79. package/dist/types/pages/layouts/lib/utils.d.ts.map +1 -0
  80. package/dist/types/pages/layouts/ui/page-layout.d.ts +30 -0
  81. package/dist/types/pages/layouts/ui/page-layout.d.ts.map +1 -0
  82. package/dist/types/shared/config/themes.d.ts +13 -0
  83. package/dist/types/shared/config/themes.d.ts.map +1 -0
  84. package/dist/types/shared/config/tokens/index.d.ts +187 -0
  85. package/dist/types/shared/config/tokens/index.d.ts.map +1 -0
  86. package/dist/types/shared/index.d.ts +15 -0
  87. package/dist/types/shared/index.d.ts.map +1 -0
  88. package/dist/types/shared/lib/a11y/components.d.ts +6 -0
  89. package/dist/types/shared/lib/a11y/components.d.ts.map +1 -0
  90. package/dist/types/shared/lib/a11y/index.d.ts +2 -0
  91. package/dist/types/shared/lib/a11y/index.d.ts.map +1 -0
  92. package/dist/types/shared/lib/a11y/utils.d.ts +54 -0
  93. package/dist/types/shared/lib/a11y/utils.d.ts.map +1 -0
  94. package/dist/types/shared/lib/design-system.d.ts +307 -0
  95. package/dist/types/shared/lib/design-system.d.ts.map +1 -0
  96. package/dist/types/shared/lib/governance/components.d.ts +10 -0
  97. package/dist/types/shared/lib/governance/components.d.ts.map +1 -0
  98. package/dist/types/shared/lib/governance/index.d.ts +110 -0
  99. package/dist/types/shared/lib/governance/index.d.ts.map +1 -0
  100. package/dist/types/shared/lib/governance/migrations.d.ts +2 -0
  101. package/dist/types/shared/lib/governance/migrations.d.ts.map +1 -0
  102. package/dist/types/shared/lib/governance/policies.d.ts +81 -0
  103. package/dist/types/shared/lib/governance/policies.d.ts.map +1 -0
  104. package/dist/types/shared/lib/governance/utils.d.ts +54 -0
  105. package/dist/types/shared/lib/governance/utils.d.ts.map +1 -0
  106. package/dist/types/shared/lib/i18n/index.d.ts +125 -0
  107. package/dist/types/shared/lib/i18n/index.d.ts.map +1 -0
  108. package/dist/types/shared/lib/performance/hooks.d.ts +35 -0
  109. package/dist/types/shared/lib/performance/hooks.d.ts.map +1 -0
  110. package/dist/types/shared/lib/performance/index.d.ts +40 -0
  111. package/dist/types/shared/lib/performance/index.d.ts.map +1 -0
  112. package/dist/types/shared/lib/theme/use-theme.d.ts +13 -0
  113. package/dist/types/shared/lib/theme/use-theme.d.ts.map +1 -0
  114. package/dist/types/shared/lib/utils.d.ts +3 -0
  115. package/dist/types/shared/lib/utils.d.ts.map +1 -0
  116. package/dist/types/shared/model/theme-store.d.ts +12 -0
  117. package/dist/types/shared/model/theme-store.d.ts.map +1 -0
  118. package/dist/types/shared/types/property.d.ts +47 -0
  119. package/dist/types/shared/types/property.d.ts.map +1 -0
  120. package/dist/types/shared/types/theme.d.ts +74 -0
  121. package/dist/types/shared/types/theme.d.ts.map +1 -0
  122. package/dist/types/shared/ui/chip/chip-variants.d.ts +7 -0
  123. package/dist/types/shared/ui/chip/chip-variants.d.ts.map +1 -0
  124. package/dist/types/shared/ui/chip/chip.d.ts +15 -0
  125. package/dist/types/shared/ui/chip/chip.d.ts.map +1 -0
  126. package/dist/types/shared/ui/chip/index.d.ts +9 -0
  127. package/dist/types/shared/ui/chip/index.d.ts.map +1 -0
  128. package/dist/types/shared/ui/theme/theme-provider.d.ts +12 -0
  129. package/dist/types/shared/ui/theme/theme-provider.d.ts.map +1 -0
  130. package/dist/types/test/setup.d.ts +2 -0
  131. package/dist/types/test/setup.d.ts.map +1 -0
  132. package/dist/types/widgets/entity-directory/index.d.ts +23 -0
  133. package/dist/types/widgets/entity-directory/index.d.ts.map +1 -0
  134. package/dist/types/widgets/entity-directory/ui/empty-state.d.ts +20 -0
  135. package/dist/types/widgets/entity-directory/ui/empty-state.d.ts.map +1 -0
  136. package/dist/types/widgets/entity-directory/ui/entity-directory.d.ts +70 -0
  137. package/dist/types/widgets/entity-directory/ui/entity-directory.d.ts.map +1 -0
  138. package/dist/types/widgets/entity-directory/ui/error-state.d.ts +15 -0
  139. package/dist/types/widgets/entity-directory/ui/error-state.d.ts.map +1 -0
  140. package/dist/types/widgets/entity-directory/ui/header.d.ts +15 -0
  141. package/dist/types/widgets/entity-directory/ui/header.d.ts.map +1 -0
  142. package/dist/types/widgets/entity-directory/ui/list-item.d.ts +24 -0
  143. package/dist/types/widgets/entity-directory/ui/list-item.d.ts.map +1 -0
  144. package/dist/types/widgets/entity-directory/ui/list.d.ts +34 -0
  145. package/dist/types/widgets/entity-directory/ui/list.d.ts.map +1 -0
  146. package/dist/types/widgets/entity-directory/ui/loading-state.d.ts +13 -0
  147. package/dist/types/widgets/entity-directory/ui/loading-state.d.ts.map +1 -0
  148. package/dist/types/widgets/entity-directory/ui/search-filter.d.ts +17 -0
  149. package/dist/types/widgets/entity-directory/ui/search-filter.d.ts.map +1 -0
  150. package/dist/types/widgets/entity-directory/ui/table-header.d.ts +34 -0
  151. package/dist/types/widgets/entity-directory/ui/table-header.d.ts.map +1 -0
  152. package/dist/types/widgets/header/index.d.ts +45 -0
  153. package/dist/types/widgets/header/index.d.ts.map +1 -0
  154. package/dist/types/widgets/header/model/create-header-model.d.ts +13 -0
  155. package/dist/types/widgets/header/model/create-header-model.d.ts.map +1 -0
  156. package/dist/types/widgets/header/model/index.d.ts +7 -0
  157. package/dist/types/widgets/header/model/index.d.ts.map +1 -0
  158. package/dist/types/widgets/header/model/types.d.ts +62 -0
  159. package/dist/types/widgets/header/model/types.d.ts.map +1 -0
  160. package/dist/types/widgets/header/ui/header.d.ts +46 -0
  161. package/dist/types/widgets/header/ui/header.d.ts.map +1 -0
  162. package/dist/types/widgets/hero-banner/index.d.ts +25 -0
  163. package/dist/types/widgets/hero-banner/index.d.ts.map +1 -0
  164. package/dist/types/widgets/hero-banner/model/create-hero-banner-model.d.ts +21 -0
  165. package/dist/types/widgets/hero-banner/model/create-hero-banner-model.d.ts.map +1 -0
  166. package/dist/types/widgets/hero-banner/model/index.d.ts +7 -0
  167. package/dist/types/widgets/hero-banner/model/index.d.ts.map +1 -0
  168. package/dist/types/widgets/hero-banner/model/types.d.ts +77 -0
  169. package/dist/types/widgets/hero-banner/model/types.d.ts.map +1 -0
  170. package/dist/types/widgets/hero-banner/ui/hero-banner.d.ts +30 -0
  171. package/dist/types/widgets/hero-banner/ui/hero-banner.d.ts.map +1 -0
  172. package/dist/types/widgets/mortgage-calculator/index.d.ts +8 -0
  173. package/dist/types/widgets/mortgage-calculator/index.d.ts.map +1 -0
  174. package/dist/types/widgets/mortgage-calculator/lib/constants.d.ts +22 -0
  175. package/dist/types/widgets/mortgage-calculator/lib/constants.d.ts.map +1 -0
  176. package/dist/types/widgets/mortgage-calculator/ui/mortgage-calculator.d.ts +27 -0
  177. package/dist/types/widgets/mortgage-calculator/ui/mortgage-calculator.d.ts.map +1 -0
  178. package/dist/types/widgets/property-card/index.d.ts +7 -0
  179. package/dist/types/widgets/property-card/index.d.ts.map +1 -0
  180. package/dist/types/widgets/property-card/ui/property-card.d.ts +19 -0
  181. package/dist/types/widgets/property-card/ui/property-card.d.ts.map +1 -0
  182. package/dist/types/widgets/property-gallery/index.d.ts +7 -0
  183. package/dist/types/widgets/property-gallery/index.d.ts.map +1 -0
  184. package/dist/types/widgets/property-gallery/ui/property-gallery.d.ts +16 -0
  185. package/dist/types/widgets/property-gallery/ui/property-gallery.d.ts.map +1 -0
  186. package/dist/types/widgets/search-feature/index.d.ts +20 -0
  187. package/dist/types/widgets/search-feature/index.d.ts.map +1 -0
  188. package/dist/types/widgets/search-feature/lib/constants.d.ts +14 -0
  189. package/dist/types/widgets/search-feature/lib/constants.d.ts.map +1 -0
  190. package/dist/types/widgets/search-feature/lib/use-search.d.ts +32 -0
  191. package/dist/types/widgets/search-feature/lib/use-search.d.ts.map +1 -0
  192. package/dist/types/widgets/search-feature/model/index.d.ts +6 -0
  193. package/dist/types/widgets/search-feature/model/index.d.ts.map +1 -0
  194. package/dist/types/widgets/search-feature/model/types.d.ts +116 -0
  195. package/dist/types/widgets/search-feature/model/types.d.ts.map +1 -0
  196. package/dist/types/widgets/search-feature/ui/search-button.d.ts +22 -0
  197. package/dist/types/widgets/search-feature/ui/search-button.d.ts.map +1 -0
  198. package/dist/types/widgets/search-feature/ui/search-card-form.d.ts +9 -0
  199. package/dist/types/widgets/search-feature/ui/search-card-form.d.ts.map +1 -0
  200. package/dist/types/widgets/search-feature/ui/search-compact-form.d.ts +9 -0
  201. package/dist/types/widgets/search-feature/ui/search-compact-form.d.ts.map +1 -0
  202. package/dist/types/widgets/search-feature/ui/search-divider.d.ts +10 -0
  203. package/dist/types/widgets/search-feature/ui/search-divider.d.ts.map +1 -0
  204. package/dist/types/widgets/search-feature/ui/search-feature.d.ts +23 -0
  205. package/dist/types/widgets/search-feature/ui/search-feature.d.ts.map +1 -0
  206. package/dist/types/widgets/search-feature/ui/search-form-field.d.ts +34 -0
  207. package/dist/types/widgets/search-feature/ui/search-form-field.d.ts.map +1 -0
  208. package/dist/types/widgets/search-feature/ui/search-luxury-form.d.ts +16 -0
  209. package/dist/types/widgets/search-feature/ui/search-luxury-form.d.ts.map +1 -0
  210. package/dist/types/widgets/search-feature/ui/search-minimal-form.d.ts +10 -0
  211. package/dist/types/widgets/search-feature/ui/search-minimal-form.d.ts.map +1 -0
  212. package/dist/types/widgets/search-feature/ui/search-mobile-form.d.ts +9 -0
  213. package/dist/types/widgets/search-feature/ui/search-mobile-form.d.ts.map +1 -0
  214. package/dist/types/widgets/search-feature/ui/search-modern-form.d.ts +16 -0
  215. package/dist/types/widgets/search-feature/ui/search-modern-form.d.ts.map +1 -0
  216. package/package.json +2 -3
@@ -0,0 +1 @@
1
+ {"version":3,"file":"header.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/entity-directory/ui/header.tsx"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,MAAM,WAAW,0BAA0B;IAC1C,mBAAmB;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,2BAA2B;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,qBAAqB;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,QAAA,MAAM,qBAAqB,mGAgBzB,CAAC;AAGH,OAAO,EAAE,qBAAqB,EAAE,CAAC"}
@@ -0,0 +1,24 @@
1
+ /**
2
+ * EntityDirectory List Item Subcomponent
3
+ */
4
+ import * as React from "react";
5
+ import type { Entity, EntityCategory } from "../../../entities/entity";
6
+ export interface EntityDirectoryListItemProps {
7
+ /** Entity to display */
8
+ entity: Entity;
9
+ /** All categories for lookup */
10
+ categories?: EntityCategory[];
11
+ /** Show icon column */
12
+ showIcon?: boolean;
13
+ /** Show category badge */
14
+ showCategoryBadge?: boolean;
15
+ /** Show metric column */
16
+ showMetric?: boolean;
17
+ /** Compact mode */
18
+ compact?: boolean;
19
+ /** CSS class name */
20
+ className?: string;
21
+ }
22
+ declare const EntityDirectoryListItem: React.ForwardRefExoticComponent<EntityDirectoryListItemProps & React.RefAttributes<HTMLDivElement>>;
23
+ export { EntityDirectoryListItem };
24
+ //# sourceMappingURL=list-item.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-item.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/entity-directory/ui/list-item.tsx"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAKvE,MAAM,WAAW,4BAA4B;IAC5C,wBAAwB;IACxB,MAAM,EAAE,MAAM,CAAC;IACf,gCAAgC;IAChC,UAAU,CAAC,EAAE,cAAc,EAAE,CAAC;IAC9B,uBAAuB;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,0BAA0B;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,yBAAyB;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,mBAAmB;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,qBAAqB;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,QAAA,MAAM,uBAAuB,qGAsH5B,CAAC;AAGF,OAAO,EAAE,uBAAuB,EAAE,CAAC"}
@@ -0,0 +1,34 @@
1
+ /**
2
+ * EntityDirectory List Subcomponent
3
+ */
4
+ import * as React from "react";
5
+ import type { Entity, EntityCategory, EntitySort } from "../../../entities/entity";
6
+ export interface EntityDirectoryListProps {
7
+ /** Entities to display */
8
+ entities: Entity[];
9
+ /** All categories for lookup */
10
+ categories?: EntityCategory[];
11
+ /** Show icon column */
12
+ showIcons?: boolean;
13
+ /** Show category badges */
14
+ showCategoryBadges?: boolean;
15
+ /** Show metric column */
16
+ showMetric?: boolean;
17
+ /** Metric column label */
18
+ metricLabel?: string;
19
+ /** Enable sorting */
20
+ sortable?: boolean;
21
+ /** Current sort state */
22
+ sort?: EntitySort | null;
23
+ /** Sort change callback */
24
+ onSortChange?: (sort: EntitySort) => void;
25
+ /** Compact mode */
26
+ compact?: boolean;
27
+ /** Custom item renderer */
28
+ renderItem?: (entity: Entity) => React.ReactNode;
29
+ /** CSS class name */
30
+ className?: string;
31
+ }
32
+ declare const EntityDirectoryList: React.ForwardRefExoticComponent<EntityDirectoryListProps & React.RefAttributes<HTMLDivElement>>;
33
+ export { EntityDirectoryList };
34
+ //# sourceMappingURL=list.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/entity-directory/ui/list.tsx"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,EACX,MAAM,EACN,cAAc,EACd,UAAU,EACV,MAAM,0BAA0B,CAAC;AAKlC,MAAM,WAAW,wBAAwB;IACxC,0BAA0B;IAC1B,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,gCAAgC;IAChC,UAAU,CAAC,EAAE,cAAc,EAAE,CAAC;IAC9B,uBAAuB;IACvB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,2BAA2B;IAC3B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,yBAAyB;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,0BAA0B;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,qBAAqB;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,yBAAyB;IACzB,IAAI,CAAC,EAAE,UAAU,GAAG,IAAI,CAAC;IACzB,2BAA2B;IAC3B,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,UAAU,KAAK,IAAI,CAAC;IAC1C,mBAAmB;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,2BAA2B;IAC3B,UAAU,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,KAAK,CAAC,SAAS,CAAC;IACjD,qBAAqB;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,QAAA,MAAM,mBAAmB,iGAoFxB,CAAC;AAGF,OAAO,EAAE,mBAAmB,EAAE,CAAC"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * EntityDirectory Loading State Subcomponent
3
+ */
4
+ import * as React from "react";
5
+ export interface EntityDirectoryLoadingStateProps {
6
+ /** Number of skeleton rows to display */
7
+ rows?: number;
8
+ /** CSS class name */
9
+ className?: string;
10
+ }
11
+ declare const EntityDirectoryLoadingState: React.ForwardRefExoticComponent<EntityDirectoryLoadingStateProps & React.RefAttributes<HTMLDivElement>>;
12
+ export { EntityDirectoryLoadingState };
13
+ //# sourceMappingURL=loading-state.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"loading-state.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/entity-directory/ui/loading-state.tsx"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,MAAM,WAAW,gCAAgC;IAChD,yCAAyC;IACzC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,qBAAqB;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,QAAA,MAAM,2BAA2B,yGAoC/B,CAAC;AAGH,OAAO,EAAE,2BAA2B,EAAE,CAAC"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * EntityDirectory Search Filter Subcomponent
3
+ */
4
+ import * as React from "react";
5
+ export interface EntityDirectorySearchFilterProps {
6
+ /** Search query value */
7
+ value: string;
8
+ /** Change callback */
9
+ onChange: (value: string) => void;
10
+ /** Placeholder text */
11
+ placeholder?: string;
12
+ /** CSS class name */
13
+ className?: string;
14
+ }
15
+ declare const EntityDirectorySearchFilter: React.ForwardRefExoticComponent<EntityDirectorySearchFilterProps & React.RefAttributes<HTMLInputElement>>;
16
+ export { EntityDirectorySearchFilter };
17
+ //# sourceMappingURL=search-filter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"search-filter.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/entity-directory/ui/search-filter.tsx"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,MAAM,WAAW,gCAAgC;IAChD,yBAAyB;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,sBAAsB;IACtB,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,uBAAuB;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,qBAAqB;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,QAAA,MAAM,2BAA2B,2GA6D/B,CAAC;AAGH,OAAO,EAAE,2BAA2B,EAAE,CAAC"}
@@ -0,0 +1,34 @@
1
+ /**
2
+ * EntityDirectory Table Header Subcomponent
3
+ */
4
+ import * as React from "react";
5
+ import type { EntitySort } from "../../../entities/entity";
6
+ export interface TableHeaderColumn {
7
+ /** Column key */
8
+ key: "title" | "category" | "metric";
9
+ /** Column label */
10
+ label: string;
11
+ /** Is sortable */
12
+ sortable?: boolean;
13
+ /** Width */
14
+ width?: string;
15
+ /** Alignment */
16
+ align?: "left" | "center" | "right";
17
+ }
18
+ export interface EntityDirectoryTableHeaderProps {
19
+ /** Columns to display */
20
+ columns: TableHeaderColumn[];
21
+ /** Show icon column */
22
+ showIcon?: boolean;
23
+ /** Current sort state */
24
+ sort?: EntitySort | null;
25
+ /** Sort change callback */
26
+ onSortChange?: (sort: EntitySort) => void;
27
+ /** Compact mode */
28
+ compact?: boolean;
29
+ /** CSS class name */
30
+ className?: string;
31
+ }
32
+ declare const EntityDirectoryTableHeader: React.ForwardRefExoticComponent<EntityDirectoryTableHeaderProps & React.RefAttributes<HTMLDivElement>>;
33
+ export { EntityDirectoryTableHeader };
34
+ //# sourceMappingURL=table-header.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"table-header.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/entity-directory/ui/table-header.tsx"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAG3D,MAAM,WAAW,iBAAiB;IACjC,iBAAiB;IACjB,GAAG,EAAE,OAAO,GAAG,UAAU,GAAG,QAAQ,CAAC;IACrC,mBAAmB;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,kBAAkB;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,gBAAgB;IAChB,KAAK,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;CACpC;AAED,MAAM,WAAW,+BAA+B;IAC/C,yBAAyB;IACzB,OAAO,EAAE,iBAAiB,EAAE,CAAC;IAC7B,uBAAuB;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,yBAAyB;IACzB,IAAI,CAAC,EAAE,UAAU,GAAG,IAAI,CAAC;IACzB,2BAA2B;IAC3B,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,UAAU,KAAK,IAAI,CAAC;IAC1C,mBAAmB;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,qBAAqB;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,QAAA,MAAM,0BAA0B,wGA8G9B,CAAC;AAGH,OAAO,EAAE,0BAA0B,EAAE,CAAC"}
@@ -0,0 +1,45 @@
1
+ /**
2
+ * Header Widget
3
+ * @module widgets/header
4
+ *
5
+ * Multi-variant header component for web applications.
6
+ * Supports minimal (pill navigation), modern (transparent navigation), and luxury (minimalist) variants.
7
+ *
8
+ * IMPORTANT: Always use Tailwind CSS standard classes instead of hardcoded values.
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * import { Header } from '@homlista-devs/ui';
13
+ *
14
+ * // Minimal variant (default)
15
+ * <Header
16
+ * variant="minimal"
17
+ * logo="BRAND NAME"
18
+ * navigationItems={[
19
+ * { id: "home", label: "Home", href: "/" },
20
+ * { id: "about", label: "About", href: "/about" },
21
+ * ]}
22
+ * loginButtonText="Sign In"
23
+ * />
24
+ *
25
+ * // Modern variant
26
+ * <Header
27
+ * variant="modern"
28
+ * logo="BRAND NAME"
29
+ * />
30
+ *
31
+ * // Luxury variant
32
+ * <Header
33
+ * variant="luxury"
34
+ * logo="YLSE SALGADO"
35
+ * navigationItems={[
36
+ * { id: "acerca", label: "ACERCA DE", href: "#acerca" },
37
+ * { id: "propiedades", label: "PROPIEDADES", href: "#propiedades" },
38
+ * ]}
39
+ * />
40
+ * ```
41
+ */
42
+ export type { HeaderModel, HeaderProps, HeaderVariant, NavigationItem, } from "./model";
43
+ export { createHeaderModel } from "./model";
44
+ export { Header } from "./ui/header";
45
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/widgets/header/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCG;AAEH,YAAY,EACX,WAAW,EACX,WAAW,EACX,aAAa,EACb,cAAc,GACd,MAAM,SAAS,CAAC;AACjB,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAC5C,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Header Widget - Model Creation
3
+ * @module widgets/header/model
4
+ */
5
+ import type { HeaderModel, HeaderProps } from "./types";
6
+ /**
7
+ * Creates a normalized header model with defaults applied
8
+ *
9
+ * @param props - Header configuration props
10
+ * @returns Normalized header model
11
+ */
12
+ export declare function createHeaderModel(props: Pick<HeaderProps, "variant" | "logo" | "navigationItems" | "loginButtonText" | "showMobileMenu">): HeaderModel;
13
+ //# sourceMappingURL=create-header-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-header-model.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/header/model/create-header-model.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAExD;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAChC,KAAK,EAAE,IAAI,CACV,WAAW,EACT,SAAS,GACT,MAAM,GACN,iBAAiB,GACjB,iBAAiB,GACjB,gBAAgB,CAClB,GACC,WAAW,CAQb"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Header Widget - Model Layer
3
+ * @module widgets/header/model
4
+ */
5
+ export { createHeaderModel } from "./create-header-model";
6
+ export type { HeaderModel, HeaderProps, HeaderVariant, NavigationItem, } from "./types";
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/header/model/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC1D,YAAY,EACX,WAAW,EACX,WAAW,EACX,aAAa,EACb,cAAc,GACd,MAAM,SAAS,CAAC"}
@@ -0,0 +1,62 @@
1
+ /**
2
+ * Header Widget - Type Definitions
3
+ * @module widgets/header/model/types
4
+ */
5
+ import type { ReactNode } from "react";
6
+ /**
7
+ * Navigation item configuration
8
+ */
9
+ export interface NavigationItem {
10
+ /** Unique identifier */
11
+ id: string;
12
+ /** Display label */
13
+ label: string;
14
+ /** Link URL */
15
+ href: string;
16
+ }
17
+ /**
18
+ * Template variant affecting layout and styling
19
+ */
20
+ export type HeaderVariant = "minimal" | "modern" | "luxury";
21
+ /**
22
+ * Header component props
23
+ */
24
+ export interface HeaderProps {
25
+ /** Template variant */
26
+ variant?: HeaderVariant;
27
+ /** Logo text or element */
28
+ logo?: ReactNode;
29
+ /** Navigation items array */
30
+ navigationItems?: NavigationItem[];
31
+ /** Optional login button text */
32
+ loginButtonText?: string;
33
+ /** Show mobile menu */
34
+ showMobileMenu?: boolean;
35
+ /** Custom className for header container */
36
+ className?: string;
37
+ /** Custom className for logo */
38
+ logoClassName?: string;
39
+ /** Custom className for navigation container */
40
+ navigationClassName?: string;
41
+ /** Custom className for navigation items */
42
+ navigationItemClassName?: string;
43
+ /** Custom className for login button */
44
+ loginButtonClassName?: string;
45
+ /** Custom className for mobile menu button */
46
+ mobileMenuButtonClassName?: string;
47
+ /** Element ID */
48
+ id?: string;
49
+ /** ARIA label */
50
+ "aria-label"?: string;
51
+ }
52
+ /**
53
+ * Normalized header model with defaults applied
54
+ */
55
+ export interface HeaderModel {
56
+ variant: HeaderVariant;
57
+ logo?: ReactNode;
58
+ navigationItems: NavigationItem[];
59
+ loginButtonText: string;
60
+ showMobileMenu: boolean;
61
+ }
62
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/header/model/types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC;;GAEG;AACH,MAAM,WAAW,cAAc;IAC9B,wBAAwB;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,oBAAoB;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,eAAe;IACf,IAAI,EAAE,MAAM,CAAC;CACb;AAED;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAE5D;;GAEG;AACH,MAAM,WAAW,WAAW;IAC3B,uBAAuB;IACvB,OAAO,CAAC,EAAE,aAAa,CAAC;IACxB,2BAA2B;IAC3B,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,6BAA6B;IAC7B,eAAe,CAAC,EAAE,cAAc,EAAE,CAAC;IACnC,iCAAiC;IACjC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,uBAAuB;IACvB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,4CAA4C;IAC5C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gCAAgC;IAChC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gDAAgD;IAChD,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,4CAA4C;IAC5C,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,wCAAwC;IACxC,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,8CAA8C;IAC9C,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC,iBAAiB;IACjB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,iBAAiB;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,WAAW;IAC3B,OAAO,EAAE,aAAa,CAAC;IACvB,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,eAAe,EAAE,cAAc,EAAE,CAAC;IAClC,eAAe,EAAE,MAAM,CAAC;IACxB,cAAc,EAAE,OAAO,CAAC;CACxB"}
@@ -0,0 +1,46 @@
1
+ /**
2
+ * Header - Multi-variant Navigation
3
+ * @module widgets/header/ui
4
+ *
5
+ * Pixel-perfect implementation matching Figma template designs
6
+ * Variants: minimal (pill navigation), modern (transparent navigation), luxury (minimalist navigation)
7
+ *
8
+ * IMPORTANT: Always use Tailwind CSS standard classes instead of hardcoded values:
9
+ * ❌ DON'T: px-[24px], text-[14px], bg-[#f4f4f5]
10
+ * ✅ DO: px-6, text-sm, bg-zinc-100
11
+ * This ensures consistency, theme customization, and maintainability.
12
+ */
13
+ import type { HeaderProps } from "../model";
14
+ /**
15
+ * Header - Multi-variant navigation
16
+ *
17
+ * Pixel-perfect implementation supporting multiple design variants:
18
+ * - Minimal: Centered pill navigation with vertical dividers
19
+ * - Modern: Transparent navigation with dark logo and CTA
20
+ * - Luxury: Minimalist navigation with elegant spacing
21
+ *
22
+ * @example
23
+ * ```tsx
24
+ * // Minimal variant (default)
25
+ * <Header
26
+ * variant="minimal"
27
+ * logo="BRAND NAME"
28
+ * navigationItems={[
29
+ * { id: "home", label: "Home", href: "/" },
30
+ * { id: "about", label: "About", href: "/about" },
31
+ * ]}
32
+ * />
33
+ *
34
+ * // Luxury variant
35
+ * <Header
36
+ * variant="luxury"
37
+ * logo="YLSE SALGADO"
38
+ * navigationItems={[
39
+ * { id: "acerca", label: "ACERCA DE", href: "#acerca" },
40
+ * { id: "propiedades", label: "PROPIEDADES", href: "#propiedades" },
41
+ * ]}
42
+ * />
43
+ * ```
44
+ */
45
+ export declare const Header: import("react").ForwardRefExoticComponent<HeaderProps & import("react").RefAttributes<HTMLElement>>;
46
+ //# sourceMappingURL=header.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"header.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/header/ui/header.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAKH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAG5C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,eAAO,MAAM,MAAM,qGA6OlB,CAAC"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Hero Banner Widget
3
+ * @module widgets/hero-banner
4
+ *
5
+ * A flexible hero section component that adapts to different design templates.
6
+ * Supports background images, statistics, logo, and custom search forms.
7
+ *
8
+ * @example
9
+ * ```tsx
10
+ * import { HeroBanner } from '@homlista-devs/ui';
11
+ *
12
+ * <HeroBanner
13
+ * content={{
14
+ * title: "Find Your Dream Home",
15
+ * subtitle: "Discover amazing properties",
16
+ * }}
17
+ * template="modern"
18
+ * searchForm={<SearchFeature variant="modern" />}
19
+ * />
20
+ * ```
21
+ */
22
+ export type { HeroBannerContent, HeroBannerLayout, HeroBannerModel, HeroBannerProps, HeroBannerTemplate, HeroBannerTheme, HeroMetric, } from "./model";
23
+ export { createHeroBannerModel } from "./model";
24
+ export { HeroBanner } from "./ui/hero-banner";
25
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/widgets/hero-banner/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,YAAY,EACX,iBAAiB,EACjB,gBAAgB,EAChB,eAAe,EACf,eAAe,EACf,kBAAkB,EAClB,eAAe,EACf,UAAU,GACV,MAAM,SAAS,CAAC;AACjB,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC"}
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Hero Banner Widget - Model Factory
3
+ * @module widgets/hero-banner/model/create-hero-banner-model
4
+ */
5
+ import type { HeroBannerModel, HeroBannerProps } from "./types";
6
+ /**
7
+ * Creates a normalized hero banner model with default values
8
+ *
9
+ * @param props - Hero banner props
10
+ * @returns Normalized model with defaults applied
11
+ *
12
+ * @example
13
+ * ```tsx
14
+ * const model = createHeroBannerModel({
15
+ * content: { title: "Welcome" },
16
+ * template: "modern"
17
+ * });
18
+ * ```
19
+ */
20
+ export declare const createHeroBannerModel: (props: HeroBannerProps) => HeroBannerModel;
21
+ //# sourceMappingURL=create-hero-banner-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-hero-banner-model.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/hero-banner/model/create-hero-banner-model.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAEhE;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,qBAAqB,GACjC,OAAO,eAAe,KACpB,eAKD,CAAC"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Hero Banner Widget - Model Layer
3
+ * @module widgets/hero-banner/model
4
+ */
5
+ export { createHeroBannerModel } from "./create-hero-banner-model";
6
+ export type { HeroBannerContent, HeroBannerLayout, HeroBannerModel, HeroBannerProps, HeroBannerTemplate, HeroBannerTheme, HeroMetric, } from "./types";
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/hero-banner/model/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACnE,YAAY,EACX,iBAAiB,EACjB,gBAAgB,EAChB,eAAe,EACf,eAAe,EACf,kBAAkB,EAClB,eAAe,EACf,UAAU,GACV,MAAM,SAAS,CAAC"}
@@ -0,0 +1,77 @@
1
+ /**
2
+ * Hero Banner Widget - Type Definitions
3
+ * @module widgets/hero-banner/model/types
4
+ */
5
+ import type { ReactNode } from "react";
6
+ /**
7
+ * Metric data point displayed in hero banner
8
+ */
9
+ export interface HeroMetric {
10
+ /** Display value (e.g., "500+", "98%", "$2M") */
11
+ value: string;
12
+ /** Description label */
13
+ label: string;
14
+ }
15
+ /**
16
+ * Hero banner content configuration
17
+ */
18
+ export interface HeroBannerContent {
19
+ /** Main headline */
20
+ title: string;
21
+ /** Optional subtitle */
22
+ subtitle?: string;
23
+ /** Optional metrics to display */
24
+ metrics?: HeroMetric[];
25
+ }
26
+ /**
27
+ * Visual theme configuration for hero banner
28
+ */
29
+ export interface HeroBannerTheme {
30
+ /** Background image URL */
31
+ backgroundImage?: string;
32
+ /** Background image positioning (CSS background-position) */
33
+ backgroundPosition?: string;
34
+ }
35
+ /**
36
+ * Template variant affecting layout and styling
37
+ */
38
+ export type HeroBannerTemplate = "minimal" | "modern" | "luxury";
39
+ /**
40
+ * Layout variant for content positioning
41
+ */
42
+ export type HeroBannerLayout = "centered";
43
+ /**
44
+ * Hero Banner component props
45
+ */
46
+ export interface HeroBannerProps {
47
+ /** Content configuration */
48
+ content: HeroBannerContent;
49
+ /** Visual theme configuration */
50
+ theme?: HeroBannerTheme;
51
+ /** Template variant */
52
+ template?: HeroBannerTemplate;
53
+ /** Layout variant */
54
+ layout?: HeroBannerLayout;
55
+ /** Search form or CTA component */
56
+ searchForm?: ReactNode;
57
+ /** Optional logo element */
58
+ logo?: ReactNode;
59
+ /** Optional navigation/header element (typically shown in minimal template) */
60
+ navigation?: ReactNode;
61
+ /** Additional CSS classes */
62
+ className?: string;
63
+ /** Element ID */
64
+ id?: string;
65
+ /** ARIA label for accessibility */
66
+ "aria-label"?: string;
67
+ }
68
+ /**
69
+ * Normalized hero banner model with defaults applied
70
+ */
71
+ export interface HeroBannerModel {
72
+ content: HeroBannerContent;
73
+ theme: HeroBannerTheme;
74
+ template: HeroBannerTemplate;
75
+ layout: HeroBannerLayout;
76
+ }
77
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/hero-banner/model/types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC;;GAEG;AACH,MAAM,WAAW,UAAU;IAC1B,iDAAiD;IACjD,KAAK,EAAE,MAAM,CAAC;IACd,wBAAwB;IACxB,KAAK,EAAE,MAAM,CAAC;CACd;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IACjC,oBAAoB;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,wBAAwB;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,kCAAkC;IAClC,OAAO,CAAC,EAAE,UAAU,EAAE,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC/B,2BAA2B;IAC3B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,6DAA6D;IAC7D,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,SAAS,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAEjE;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC;AAE1C;;GAEG;AACH,MAAM,WAAW,eAAe;IAC/B,4BAA4B;IAC5B,OAAO,EAAE,iBAAiB,CAAC;IAC3B,iCAAiC;IACjC,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB,uBAAuB;IACvB,QAAQ,CAAC,EAAE,kBAAkB,CAAC;IAC9B,qBAAqB;IACrB,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,mCAAmC;IACnC,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,4BAA4B;IAC5B,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,+EAA+E;IAC/E,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iBAAiB;IACjB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,mCAAmC;IACnC,YAAY,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC/B,OAAO,EAAE,iBAAiB,CAAC;IAC3B,KAAK,EAAE,eAAe,CAAC;IACvB,QAAQ,EAAE,kBAAkB,CAAC;IAC7B,MAAM,EAAE,gBAAgB,CAAC;CACzB"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ * Hero Banner Widget - UI Component
3
+ * @module widgets/hero-banner/ui
4
+ */
5
+ import type { HeroBannerProps } from "../model";
6
+ /**
7
+ * Hero Banner Component
8
+ *
9
+ * A flexible hero section that adapts to different design templates.
10
+ * Supports background images, metrics, logo, and custom search forms.
11
+ *
12
+ * @example
13
+ * ```tsx
14
+ * <HeroBanner
15
+ * content={{
16
+ * title: "Find Your Dream Home",
17
+ * subtitle: "Discover amazing properties",
18
+ * metrics: [
19
+ * { value: "500+", label: "Properties" },
20
+ * { value: "98%", label: "Success Rate" },
21
+ * ]
22
+ * }}
23
+ * theme={{ backgroundImage: "/hero-bg.jpg" }}
24
+ * template="modern"
25
+ * searchForm={<SearchFeature variant="modern" />}
26
+ * />
27
+ * ```
28
+ */
29
+ export declare const HeroBanner: import("react").ForwardRefExoticComponent<HeroBannerProps & import("react").RefAttributes<HTMLElement>>;
30
+ //# sourceMappingURL=hero-banner.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hero-banner.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/hero-banner/ui/hero-banner.tsx"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAmBhD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,eAAO,MAAM,UAAU,yGAoKtB,CAAC"}
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Mortgage Calculator Widget
3
+ * Comprehensive mortgage calculator with visualization
4
+ */
5
+ export { CHART_COLORS, DEFAULT_VALUES, LOAN_PROGRAM_OPTIONS, LOAN_PROGRAMS, } from "./lib/constants";
6
+ export type { MortgageCalculatorProps } from "./ui/mortgage-calculator";
7
+ export { MortgageCalculator } from "./ui/mortgage-calculator";
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/widgets/mortgage-calculator/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACN,YAAY,EACZ,cAAc,EACd,oBAAoB,EACpB,aAAa,GACb,MAAM,iBAAiB,CAAC;AACzB,YAAY,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC"}
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Mortgage Calculator Constants
3
+ */
4
+ import type { LoanProgramOption } from "../../../entities/mortgage";
5
+ import type { SelectOption } from "../../../features/select";
6
+ export declare const LOAN_PROGRAMS: LoanProgramOption[];
7
+ export declare const LOAN_PROGRAM_OPTIONS: SelectOption[];
8
+ export declare const DEFAULT_VALUES: {
9
+ propertyPrice: number;
10
+ downPayment: number;
11
+ loanProgram: "30-years";
12
+ interestRate: number;
13
+ };
14
+ /**
15
+ * Chart colors matching the design
16
+ */
17
+ export declare const CHART_COLORS: {
18
+ readonly principalAndInterest: "#0a2540";
19
+ readonly propertyTax: "#4da6c7";
20
+ readonly hoaFees: "#7fc9e3";
21
+ };
22
+ //# sourceMappingURL=constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/mortgage-calculator/lib/constants.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AACpE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAE7D,eAAO,MAAM,aAAa,EAAE,iBAAiB,EAK5C,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,YAAY,EAK9C,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;CAK1B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,YAAY;;;;CAIf,CAAC"}
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Mortgage Calculator Widget
3
+ * A comprehensive mortgage calculator with form inputs and donut chart visualization
4
+ */
5
+ import * as React from "react";
6
+ import { type MortgageResult } from "../../../entities/mortgage";
7
+ export interface MortgageCalculatorProps {
8
+ /** Initial property price */
9
+ initialPropertyPrice?: number;
10
+ /** Initial down payment */
11
+ initialDownPayment?: number;
12
+ /** Initial loan program */
13
+ initialLoanProgram?: string;
14
+ /** Initial interest rate */
15
+ initialInterestRate?: number;
16
+ /** Whether to show property tax input */
17
+ showPropertyTax?: boolean;
18
+ /** Whether to show HOA fees input */
19
+ showHoaFees?: boolean;
20
+ /** Additional class name */
21
+ className?: string;
22
+ /** Callback when calculation changes */
23
+ onCalculationChange?: (result: MortgageResult) => void;
24
+ }
25
+ declare const MortgageCalculator: React.ForwardRefExoticComponent<MortgageCalculatorProps & React.RefAttributes<HTMLDivElement>>;
26
+ export { MortgageCalculator };
27
+ //# sourceMappingURL=mortgage-calculator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mortgage-calculator.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/mortgage-calculator/ui/mortgage-calculator.tsx"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAIN,KAAK,cAAc,EACnB,MAAM,4BAA4B,CAAC;AAcpC,MAAM,WAAW,uBAAuB;IACvC,6BAA6B;IAC7B,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,2BAA2B;IAC3B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,2BAA2B;IAC3B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,4BAA4B;IAC5B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,yCAAyC;IACzC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,qCAAqC;IACrC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,4BAA4B;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,wCAAwC;IACxC,mBAAmB,CAAC,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,IAAI,CAAC;CACvD;AAED,QAAA,MAAM,kBAAkB,gGAuPvB,CAAC;AAIF,OAAO,EAAE,kBAAkB,EAAE,CAAC"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * PropertyCard Widget
3
+ * @layer widgets
4
+ */
5
+ export type { PropertyCardProps } from "./ui/property-card";
6
+ export { PropertyCard } from "./ui/property-card";
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/widgets/property-card/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,YAAY,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC"}