@3ddv/software-division-components 1.1.0 → 1.4.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.
Files changed (656) hide show
  1. package/.editorconfig +17 -0
  2. package/.husky/commit-msg +1 -0
  3. package/.prettierrc +11 -0
  4. package/README.backup.md +579 -0
  5. package/README.md +4 -0
  6. package/angular.json +144 -0
  7. package/commitlint-config.ts +7 -0
  8. package/components.json +6 -0
  9. package/docs/conventions.md +151 -0
  10. package/docs/installation.md +131 -0
  11. package/docs/releasing.md +306 -0
  12. package/eslint.config.ts +209 -0
  13. package/lerna-debug.log +71 -0
  14. package/lerna.json +8 -0
  15. package/package.json +129 -179
  16. package/pnpm-workspace.yaml +2 -0
  17. package/postcss.config.js +6 -0
  18. package/process-styles.js +31 -0
  19. package/projects/consumer-app/public/favicon.ico +0 -0
  20. package/projects/consumer-app/src/app/app.component.css +45 -0
  21. package/projects/consumer-app/src/app/app.component.html +11 -0
  22. package/projects/consumer-app/src/app/app.component.ts +14 -0
  23. package/projects/consumer-app/src/app/app.config.ts +8 -0
  24. package/projects/consumer-app/src/app/app.routes.ts +9 -0
  25. package/projects/consumer-app/src/app/form/form.component.css +82 -0
  26. package/projects/consumer-app/src/app/form/form.component.html +196 -0
  27. package/projects/consumer-app/src/app/form/form.component.ts +101 -0
  28. package/projects/consumer-app/src/app/table/action-column.component.ts +46 -0
  29. package/projects/consumer-app/src/app/table/table.component.css +3 -0
  30. package/projects/consumer-app/src/app/table/table.component.html +17 -0
  31. package/projects/consumer-app/src/app/table/table.component.ts +277 -0
  32. package/projects/consumer-app/src/index.html +13 -0
  33. package/projects/consumer-app/src/main.ts +6 -0
  34. package/projects/consumer-app/src/styles.css +35 -0
  35. package/projects/consumer-app/tsconfig.app.json +11 -0
  36. package/projects/consumer-app/tsconfig.spec.json +15 -0
  37. package/projects/software-division-components/.claude/settings.local.json +9 -0
  38. package/projects/software-division-components/.postcssrc.json +5 -0
  39. package/projects/software-division-components/.storybook/main.ts +28 -0
  40. package/projects/software-division-components/.storybook/manager-head.html +1 -0
  41. package/projects/software-division-components/.storybook/preview.ts +30 -0
  42. package/projects/software-division-components/.storybook/tsconfig.json +13 -0
  43. package/projects/software-division-components/.storybook/typings.d.ts +4 -0
  44. package/projects/software-division-components/LICENSE.md +21 -0
  45. package/projects/software-division-components/components.json +3 -0
  46. package/projects/software-division-components/documentation.json +5052 -0
  47. package/projects/software-division-components/ng-package.json +10 -0
  48. package/projects/software-division-components/node_modules/.bin/acorn +21 -0
  49. package/projects/software-division-components/node_modules/.bin/browserslist +21 -0
  50. package/projects/software-division-components/node_modules/.bin/chroma +21 -0
  51. package/projects/software-division-components/node_modules/.bin/chromatic +21 -0
  52. package/projects/software-division-components/node_modules/.bin/chromatic-cli +21 -0
  53. package/projects/software-division-components/node_modules/.bin/compodoc +21 -0
  54. package/projects/software-division-components/node_modules/.bin/eslint +21 -0
  55. package/projects/software-division-components/node_modules/.bin/getstorybook +21 -0
  56. package/projects/software-division-components/node_modules/.bin/jiti +21 -0
  57. package/projects/software-division-components/node_modules/.bin/js-yaml +21 -0
  58. package/projects/software-division-components/node_modules/.bin/karma +21 -0
  59. package/projects/software-division-components/node_modules/.bin/lessc +21 -0
  60. package/projects/software-division-components/node_modules/.bin/mf +21 -0
  61. package/projects/software-division-components/node_modules/.bin/ng +21 -0
  62. package/projects/software-division-components/node_modules/.bin/ng-packagr +21 -0
  63. package/projects/software-division-components/node_modules/.bin/ng-xi18n +21 -0
  64. package/projects/software-division-components/node_modules/.bin/ngc +21 -0
  65. package/projects/software-division-components/node_modules/.bin/ngcc +21 -0
  66. package/projects/software-division-components/node_modules/.bin/nx +21 -0
  67. package/projects/software-division-components/node_modules/.bin/nx-cloud +21 -0
  68. package/projects/software-division-components/node_modules/.bin/prettier +21 -0
  69. package/projects/software-division-components/node_modules/.bin/sass +21 -0
  70. package/projects/software-division-components/node_modules/.bin/sb +21 -0
  71. package/projects/software-division-components/node_modules/.bin/storybook +21 -0
  72. package/projects/software-division-components/node_modules/.bin/tailwind +21 -0
  73. package/projects/software-division-components/node_modules/.bin/tailwindcss +21 -0
  74. package/projects/software-division-components/node_modules/.bin/terser +21 -0
  75. package/projects/software-division-components/node_modules/.bin/tsc +21 -0
  76. package/projects/software-division-components/node_modules/.bin/tsserver +21 -0
  77. package/projects/software-division-components/node_modules/.bin/vite +21 -0
  78. package/projects/software-division-components/node_modules/.bin/webpack +21 -0
  79. package/projects/software-division-components/node_modules/.bin/yaml +21 -0
  80. package/projects/software-division-components/package.json +216 -0
  81. package/projects/software-division-components/public/3ddv-logo.jpg +0 -0
  82. package/projects/software-division-components/public/neighbours-after.png +0 -0
  83. package/projects/software-division-components/public/neighbours-before.png +0 -0
  84. package/projects/software-division-components/src/backoffice/checkbox/checkbox.component.css +193 -0
  85. package/projects/software-division-components/src/backoffice/checkbox/checkbox.component.html +23 -0
  86. package/projects/software-division-components/src/backoffice/checkbox/checkbox.component.ts +252 -0
  87. package/projects/software-division-components/src/backoffice/checkbox/index.ts +1 -0
  88. package/projects/software-division-components/src/backoffice/checkbox/public-api.ts +1 -0
  89. package/projects/software-division-components/src/backoffice/checkbox/story/checkbox.stories.ts +304 -0
  90. package/projects/software-division-components/src/backoffice/datepicker/datepicker.component.css +262 -0
  91. package/projects/software-division-components/src/backoffice/datepicker/datepicker.component.html +40 -0
  92. package/projects/software-division-components/src/backoffice/datepicker/datepicker.component.ts +366 -0
  93. package/projects/software-division-components/src/backoffice/datepicker/index.ts +1 -0
  94. package/{backoffice/datepicker/public-api.d.ts → projects/software-division-components/src/backoffice/datepicker/public-api.ts} +1 -1
  95. package/projects/software-division-components/src/backoffice/datepicker/story/datepicker.stories.ts +32 -0
  96. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-calendar-helm/src/index.ts +14 -0
  97. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-calendar-helm/src/lib/hlm-calendar-multi.ts +183 -0
  98. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-calendar-helm/src/lib/hlm-calendar.ts +171 -0
  99. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-date-picker-helm/src/index.ts +16 -0
  100. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-date-picker-helm/src/lib/hlm-date-picker-multi.token.ts +43 -0
  101. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-date-picker-helm/src/lib/hlm-date-picker-multi.ts +177 -0
  102. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-date-picker-helm/src/lib/hlm-date-picker.token.ts +43 -0
  103. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-date-picker-helm/src/lib/hlm-date-picker.ts +167 -0
  104. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-icon-helm/src/index.ts +11 -0
  105. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-icon-helm/src/lib/hlm-icon.token.ts +20 -0
  106. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-icon-helm/src/lib/hlm-icon.ts +35 -0
  107. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-popover-helm/src/index.ts +15 -0
  108. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-popover-helm/src/lib/hlm-popover-close.ts +19 -0
  109. package/projects/software-division-components/src/backoffice/datepicker/ui/ui-popover-helm/src/lib/hlm-popover-content.ts +30 -0
  110. package/projects/software-division-components/src/backoffice/index.ts +1 -0
  111. package/projects/software-division-components/src/backoffice/input/index.ts +1 -0
  112. package/projects/software-division-components/src/backoffice/input/input.component.css +319 -0
  113. package/projects/software-division-components/src/backoffice/input/input.component.html +51 -0
  114. package/projects/software-division-components/src/backoffice/input/input.component.ts +497 -0
  115. package/projects/software-division-components/src/backoffice/input/public-api.ts +2 -0
  116. package/projects/software-division-components/src/backoffice/input/story/input.stories.ts +243 -0
  117. package/projects/software-division-components/src/backoffice/package.json +8 -0
  118. package/{backoffice/public-api.d.ts → projects/software-division-components/src/backoffice/public-api.ts} +0 -1
  119. package/projects/software-division-components/src/backoffice/radio/index.ts +1 -0
  120. package/projects/software-division-components/src/backoffice/radio/public-api.ts +1 -0
  121. package/projects/software-division-components/src/backoffice/radio/radio.component.css +143 -0
  122. package/projects/software-division-components/src/backoffice/radio/radio.component.html +15 -0
  123. package/projects/software-division-components/src/backoffice/radio/radio.component.ts +154 -0
  124. package/projects/software-division-components/src/backoffice/radio/story/radio.stories.ts +287 -0
  125. package/projects/software-division-components/src/backoffice/table/_components/pagination/pagination.component.css +117 -0
  126. package/projects/software-division-components/src/backoffice/table/_components/pagination/pagination.component.html +55 -0
  127. package/projects/software-division-components/src/backoffice/table/_components/pagination/pagination.component.ts +79 -0
  128. package/projects/software-division-components/src/backoffice/table/_components/selection-table-head/selection-table-head.component.css +0 -0
  129. package/projects/software-division-components/src/backoffice/table/_components/selection-table-head/selection-table-head.component.html +6 -0
  130. package/projects/software-division-components/src/backoffice/table/_components/selection-table-head/selection-table-head.component.ts +36 -0
  131. package/projects/software-division-components/src/backoffice/table/_components/selection-table-row/selection-table-row.component.css +0 -0
  132. package/projects/software-division-components/src/backoffice/table/_components/selection-table-row/selection-table-row.component.html +5 -0
  133. package/projects/software-division-components/src/backoffice/table/_components/selection-table-row/selection-table-row.component.ts +12 -0
  134. package/projects/software-division-components/src/backoffice/table/_components/sort-header-button/sort-header-button.component.css +14 -0
  135. package/projects/software-division-components/src/backoffice/table/_components/sort-header-button/sort-header-button.component.html +11 -0
  136. package/projects/software-division-components/src/backoffice/table/_components/sort-header-button/sort-header-button.component.ts +55 -0
  137. package/projects/software-division-components/src/backoffice/table/index.ts +1 -0
  138. package/projects/software-division-components/src/backoffice/table/public-api.ts +43 -0
  139. package/projects/software-division-components/src/backoffice/table/story/table.stories.ts +364 -0
  140. package/projects/software-division-components/src/backoffice/table/table.component.css +172 -0
  141. package/projects/software-division-components/src/backoffice/table/table.component.html +53 -0
  142. package/projects/software-division-components/src/backoffice/table/table.component.ts +347 -0
  143. package/projects/software-division-components/src/backoffice/table/ui/ui-icon-helm/src/index.ts +11 -0
  144. package/projects/software-division-components/src/backoffice/table/ui/ui-icon-helm/src/lib/hlm-icon.token.ts +20 -0
  145. package/projects/software-division-components/src/backoffice/table/ui/ui-icon-helm/src/lib/hlm-icon.ts +35 -0
  146. package/projects/software-division-components/src/backoffice/table/ui/ui-table-helm/src/index.ts +13 -0
  147. package/projects/software-division-components/src/backoffice/table/ui/ui-table-helm/src/lib/hlm-table.ts +220 -0
  148. package/projects/software-division-components/src/dvm/cart/cart.component.css +103 -0
  149. package/projects/software-division-components/src/dvm/cart/cart.component.html +31 -0
  150. package/projects/software-division-components/src/dvm/cart/cart.component.ts +49 -0
  151. package/projects/software-division-components/src/dvm/cart/cart.stories.ts +370 -0
  152. package/projects/software-division-components/src/dvm/cart/cart.types.ts +8 -0
  153. package/projects/software-division-components/src/dvm/cart/index.ts +2 -0
  154. package/projects/software-division-components/src/dvm/cart/public-api.ts +8 -0
  155. package/projects/software-division-components/src/dvm/cart/seat-list.component.css +281 -0
  156. package/projects/software-division-components/src/dvm/cart/seat-list.component.html +85 -0
  157. package/projects/software-division-components/src/dvm/cart/seat-list.component.ts +76 -0
  158. package/projects/software-division-components/src/dvm/cart/seat-list.stories.ts +337 -0
  159. package/projects/software-division-components/src/dvm/cart-item/cart-item.component.html +1 -0
  160. package/projects/software-division-components/src/dvm/cart-item/cart-item.component.ts +8 -0
  161. package/projects/software-division-components/src/dvm/cart-item/cart-item.service.ts +8 -0
  162. package/projects/software-division-components/src/dvm/cart-item/cart.stories.ts +31 -0
  163. package/projects/software-division-components/src/dvm/cart-item/index.ts +1 -0
  164. package/projects/software-division-components/src/dvm/cart-item/package.json +5 -0
  165. package/{dvm/cart-item/public-api.d.ts → projects/software-division-components/src/dvm/cart-item/public-api.ts} +4 -1
  166. package/projects/software-division-components/src/dvm/index.ts +1 -0
  167. package/projects/software-division-components/src/dvm/legend/index.ts +1 -0
  168. package/projects/software-division-components/src/dvm/legend/legend.component.css +49 -0
  169. package/projects/software-division-components/src/dvm/legend/legend.component.html +8 -0
  170. package/projects/software-division-components/src/dvm/legend/legend.component.ts +41 -0
  171. package/projects/software-division-components/src/dvm/legend/legend.stories.ts +16 -0
  172. package/projects/software-division-components/src/dvm/legend/package.json +5 -0
  173. package/{dvm/legend/public-api.d.ts → projects/software-division-components/src/dvm/legend/public-api.ts} +4 -1
  174. package/{dvm/legend/types.d.ts → projects/software-division-components/src/dvm/legend/types.ts} +3 -3
  175. package/{dvm/legend/ui/legend-elements/index.d.ts → projects/software-division-components/src/dvm/legend/ui/legend-elements/index.ts} +0 -1
  176. package/projects/software-division-components/src/dvm/legend/ui/legend-elements/legend-elements.component.css +49 -0
  177. package/projects/software-division-components/src/dvm/legend/ui/legend-elements/legend-elements.component.html +8 -0
  178. package/projects/software-division-components/src/dvm/legend/ui/legend-elements/legend-elements.component.ts +41 -0
  179. package/projects/software-division-components/src/dvm/loader/index.ts +1 -0
  180. package/projects/software-division-components/src/dvm/loader/loader.component.html +1 -0
  181. package/projects/software-division-components/src/dvm/loader/loader.component.ts +8 -0
  182. package/projects/software-division-components/src/dvm/loader/loader.service.ts +8 -0
  183. package/projects/software-division-components/src/dvm/loader/loader.stories.ts +31 -0
  184. package/projects/software-division-components/src/dvm/loader/package.json +5 -0
  185. package/{dvm/loader/public-api.d.ts → projects/software-division-components/src/dvm/loader/public-api.ts} +4 -1
  186. package/projects/software-division-components/src/dvm/map-loader/index.ts +1 -0
  187. package/projects/software-division-components/src/dvm/map-loader/map-loader.component.css +91 -0
  188. package/projects/software-division-components/src/dvm/map-loader/map-loader.component.html +23 -0
  189. package/projects/software-division-components/src/dvm/map-loader/map-loader.component.ts +187 -0
  190. package/projects/software-division-components/src/dvm/map-loader/map-loader.stories.ts +16 -0
  191. package/projects/software-division-components/src/dvm/map-loader/package.json +5 -0
  192. package/projects/software-division-components/src/dvm/map-loader/public-api.ts +5 -0
  193. package/projects/software-division-components/src/dvm/neighbors/index.ts +1 -0
  194. package/projects/software-division-components/src/dvm/neighbors/neighbors.component.css +158 -0
  195. package/projects/software-division-components/src/dvm/neighbors/neighbors.component.html +45 -0
  196. package/projects/software-division-components/src/dvm/neighbors/neighbors.component.ts +218 -0
  197. package/projects/software-division-components/src/dvm/neighbors/package.json +5 -0
  198. package/projects/software-division-components/src/dvm/neighbors/public-api.ts +2 -0
  199. package/projects/software-division-components/src/dvm/neighbors/story/arrow-left-black-icon.svg +3 -0
  200. package/projects/software-division-components/src/dvm/neighbors/story/mock-data.ts +15 -0
  201. package/projects/software-division-components/src/dvm/neighbors/story/neighbours.stories.css +12 -0
  202. package/projects/software-division-components/src/dvm/neighbors/story/neighbours.stories.ts +117 -0
  203. package/{dvm/neighbors/types.d.ts → projects/software-division-components/src/dvm/neighbors/types.ts} +7 -7
  204. package/projects/software-division-components/src/dvm/package.json +7 -0
  205. package/projects/software-division-components/src/dvm/popover/base-popover.component.ts +70 -0
  206. package/projects/software-division-components/src/dvm/popover/index.ts +1 -0
  207. package/projects/software-division-components/src/dvm/popover/package.json +5 -0
  208. package/projects/software-division-components/src/dvm/popover/popover.component.css +227 -0
  209. package/projects/software-division-components/src/dvm/popover/popover.component.html +27 -0
  210. package/projects/software-division-components/src/dvm/popover/popover.component.ts +236 -0
  211. package/projects/software-division-components/src/dvm/popover/popover.config.ts +30 -0
  212. package/projects/software-division-components/src/dvm/popover/popover.service.ts +627 -0
  213. package/projects/software-division-components/src/dvm/popover/popover.stories.ts +873 -0
  214. package/{dvm/popover/public-api.d.ts → projects/software-division-components/src/dvm/popover/public-api.ts} +4 -1
  215. package/projects/software-division-components/src/dvm/popover/seat-popover/seat-popover.component.css +89 -0
  216. package/projects/software-division-components/src/dvm/popover/seat-popover/seat-popover.component.html +40 -0
  217. package/projects/software-division-components/src/dvm/popover/seat-popover/seat-popover.component.ts +74 -0
  218. package/projects/software-division-components/src/dvm/popover/section-popover/section-popover.component.css +157 -0
  219. package/projects/software-division-components/src/dvm/popover/section-popover/section-popover.component.html +58 -0
  220. package/projects/software-division-components/src/dvm/popover/section-popover/section-popover.component.ts +106 -0
  221. package/projects/software-division-components/src/dvm/popover/services/dvm-popover-positioner.service.ts +73 -0
  222. package/projects/software-division-components/src/dvm/popover/services/popover-manager.service.ts +88 -0
  223. package/projects/software-division-components/src/dvm/popover/transformers/base-popover-data-transformer.ts +36 -0
  224. package/projects/software-division-components/src/dvm/popover/types.ts +104 -0
  225. package/{dvm/public-api.d.ts → projects/software-division-components/src/dvm/public-api.ts} +0 -1
  226. package/projects/software-division-components/src/dvm/stepper/index.ts +1 -0
  227. package/projects/software-division-components/src/dvm/stepper/package.json +5 -0
  228. package/projects/software-division-components/src/dvm/stepper/public-api.ts +5 -0
  229. package/projects/software-division-components/src/dvm/stepper/stepper.component.css +142 -0
  230. package/projects/software-division-components/src/dvm/stepper/stepper.component.html +9 -0
  231. package/projects/software-division-components/src/dvm/stepper/stepper.component.ts +102 -0
  232. package/{dvm/stepper/types.d.ts → projects/software-division-components/src/dvm/stepper/types.ts} +2 -5
  233. package/projects/software-division-components/src/dvm/ticket-info-item/index.ts +1 -0
  234. package/projects/software-division-components/src/dvm/ticket-info-item/package.json +5 -0
  235. package/{dvm/ticket-info-item/public-api.d.ts → projects/software-division-components/src/dvm/ticket-info-item/public-api.ts} +4 -1
  236. package/projects/software-division-components/src/dvm/ticket-info-item/ticket-info-item.component.html +1 -0
  237. package/projects/software-division-components/src/dvm/ticket-info-item/ticket-info-item.component.ts +8 -0
  238. package/projects/software-division-components/src/dvm/ticket-info-item/ticket-info-item.service.ts +8 -0
  239. package/projects/software-division-components/src/dvm/ticket-info-item/ticket-info-item.stories.ts +31 -0
  240. package/projects/software-division-components/src/generic/add-digital-wallet/add-digital-wallet.component.css +76 -0
  241. package/projects/software-division-components/src/generic/add-digital-wallet/add-digital-wallet.component.html +46 -0
  242. package/projects/software-division-components/src/generic/add-digital-wallet/add-digital-wallet.component.ts +45 -0
  243. package/projects/software-division-components/src/generic/add-digital-wallet/index.ts +1 -0
  244. package/{generic/add-digital-wallet/public-api.d.ts → projects/software-division-components/src/generic/add-digital-wallet/public-api.ts} +0 -1
  245. package/projects/software-division-components/src/generic/braintree/braintree.component.css +7 -0
  246. package/projects/software-division-components/src/generic/braintree/braintree.component.ts +134 -0
  247. package/projects/software-division-components/src/generic/braintree/index.ts +1 -0
  248. package/projects/software-division-components/src/generic/braintree/package.json +5 -0
  249. package/{generic/braintree/public-api.d.ts → projects/software-division-components/src/generic/braintree/public-api.ts} +4 -1
  250. package/projects/software-division-components/src/generic/braintree/story/braintree.stories.css +3 -0
  251. package/projects/software-division-components/src/generic/braintree/story/braintree.stories.ts +27 -0
  252. package/projects/software-division-components/src/generic/braintree/types.ts +28 -0
  253. package/projects/software-division-components/src/generic/button/button.component.css +284 -0
  254. package/projects/software-division-components/src/generic/button/button.component.html +10 -0
  255. package/projects/software-division-components/src/generic/button/button.component.ts +350 -0
  256. package/projects/software-division-components/src/generic/button/index.ts +1 -0
  257. package/projects/software-division-components/src/generic/button/package.json +5 -0
  258. package/projects/software-division-components/src/generic/button/public-api.ts +5 -0
  259. package/projects/software-division-components/src/generic/button/story/button.stories.ts +384 -0
  260. package/projects/software-division-components/src/generic/button/ui/ui-button-helm/src/index.ts +10 -0
  261. package/projects/software-division-components/src/generic/button/ui/ui-button-helm/src/lib/hlm-button.token.ts +22 -0
  262. package/projects/software-division-components/src/generic/button/ui/ui-button-helm/src/lib/hlm-button.ts +62 -0
  263. package/projects/software-division-components/src/generic/carousel/carousel-item.component.ts +15 -0
  264. package/projects/software-division-components/src/generic/carousel/carousel-item.directive.ts +14 -0
  265. package/projects/software-division-components/src/generic/carousel/carousel.component.css +90 -0
  266. package/projects/software-division-components/src/generic/carousel/carousel.component.html +13 -0
  267. package/projects/software-division-components/src/generic/carousel/carousel.component.ts +44 -0
  268. package/projects/software-division-components/src/generic/carousel/index.ts +1 -0
  269. package/projects/software-division-components/src/generic/carousel/public-api.ts +2 -0
  270. package/projects/software-division-components/src/generic/carousel/ui/ui-carousel-helm/src/index.ts +29 -0
  271. package/projects/software-division-components/src/generic/carousel/ui/ui-carousel-helm/src/lib/hlm-carousel-content.ts +23 -0
  272. package/projects/software-division-components/src/generic/carousel/ui/ui-carousel-helm/src/lib/hlm-carousel-item.ts +25 -0
  273. package/projects/software-division-components/src/generic/carousel/ui/ui-carousel-helm/src/lib/hlm-carousel-next.ts +58 -0
  274. package/projects/software-division-components/src/generic/carousel/ui/ui-carousel-helm/src/lib/hlm-carousel-previous.ts +61 -0
  275. package/projects/software-division-components/src/generic/carousel/ui/ui-carousel-helm/src/lib/hlm-carousel-slide-display.ts +36 -0
  276. package/projects/software-division-components/src/generic/carousel/ui/ui-carousel-helm/src/lib/hlm-carousel.ts +105 -0
  277. package/projects/software-division-components/src/generic/dialog/dialog.component.css +5 -0
  278. package/projects/software-division-components/src/generic/dialog/dialog.component.html +3 -0
  279. package/projects/software-division-components/src/generic/dialog/dialog.component.ts +20 -0
  280. package/projects/software-division-components/src/generic/dialog/dialog.stories.ts +14 -0
  281. package/projects/software-division-components/src/generic/dialog/index.ts +1 -0
  282. package/{generic/dialog/libs/ui-dialog-helm/src/index.d.ts → projects/software-division-components/src/generic/dialog/libs/ui-dialog-helm/src/index.ts} +20 -8
  283. package/projects/software-division-components/src/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-close.ts +20 -0
  284. package/projects/software-division-components/src/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-content.ts +56 -0
  285. package/projects/software-division-components/src/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-description.ts +17 -0
  286. package/projects/software-division-components/src/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-footer.ts +19 -0
  287. package/projects/software-division-components/src/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-header.ts +19 -0
  288. package/projects/software-division-components/src/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-overlay.ts +23 -0
  289. package/projects/software-division-components/src/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-title.ts +19 -0
  290. package/projects/software-division-components/src/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog.service.ts +59 -0
  291. package/projects/software-division-components/src/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog.ts +31 -0
  292. package/projects/software-division-components/src/generic/dialog/package.json +9 -0
  293. package/{generic/dialog/public-api.d.ts → projects/software-division-components/src/generic/dialog/public-api.ts} +4 -1
  294. package/projects/software-division-components/src/generic/dialog/tsconfig.json +7 -0
  295. package/projects/software-division-components/src/generic/dialog/ui/dialog-close-button/dialog-close-button.component.css +0 -0
  296. package/projects/software-division-components/src/generic/dialog/ui/dialog-close-button/dialog-close-button.component.html +1 -0
  297. package/projects/software-division-components/src/generic/dialog/ui/dialog-close-button/dialog-close-button.component.ts +17 -0
  298. package/projects/software-division-components/src/generic/dialog/ui/dialog-footer/dialog-footer.component.css +0 -0
  299. package/projects/software-division-components/src/generic/dialog/ui/dialog-footer/dialog-footer.component.html +3 -0
  300. package/projects/software-division-components/src/generic/dialog/ui/dialog-footer/dialog-footer.component.ts +11 -0
  301. package/projects/software-division-components/src/generic/dialog/ui/dialog-header/dialog-header.component.css +0 -0
  302. package/projects/software-division-components/src/generic/dialog/ui/dialog-header/dialog-header.component.html +8 -0
  303. package/projects/software-division-components/src/generic/dialog/ui/dialog-header/dialog-header.component.ts +14 -0
  304. package/projects/software-division-components/src/generic/drawer/drawer.component.html +1 -0
  305. package/projects/software-division-components/src/generic/drawer/drawer.component.ts +8 -0
  306. package/projects/software-division-components/src/generic/drawer/drawer.service.ts +8 -0
  307. package/projects/software-division-components/src/generic/drawer/drawer.stories.ts +31 -0
  308. package/projects/software-division-components/src/generic/drawer/index.ts +1 -0
  309. package/projects/software-division-components/src/generic/drawer/package.json +5 -0
  310. package/{generic/drawer/public-api.d.ts → projects/software-division-components/src/generic/drawer/public-api.ts} +4 -1
  311. package/projects/software-division-components/src/generic/icon/icon.component.css +7 -0
  312. package/projects/software-division-components/src/generic/icon/icon.component.html +3 -0
  313. package/projects/software-division-components/src/generic/icon/icon.component.ts +86 -0
  314. package/projects/software-division-components/src/generic/icon/icon.stories.ts +16 -0
  315. package/projects/software-division-components/src/generic/icon/index.ts +1 -0
  316. package/projects/software-division-components/src/generic/icon/lib/ui-icon-helm/src/index.ts +11 -0
  317. package/projects/software-division-components/src/generic/icon/lib/ui-icon-helm/src/lib/hlm-icon.token.ts +20 -0
  318. package/projects/software-division-components/src/generic/icon/lib/ui-icon-helm/src/lib/hlm-icon.ts +36 -0
  319. package/projects/software-division-components/src/generic/icon/package.json +9 -0
  320. package/projects/software-division-components/src/generic/icon/public-api.ts +5 -0
  321. package/projects/software-division-components/src/generic/icon/tsconfig.json +7 -0
  322. package/projects/software-division-components/src/generic/index.ts +1 -0
  323. package/projects/software-division-components/src/generic/package.json +7 -0
  324. package/{generic/public-api.d.ts → projects/software-division-components/src/generic/public-api.ts} +1 -1
  325. package/projects/software-division-components/src/generic/select/index.ts +1 -0
  326. package/projects/software-division-components/src/generic/select/lib/hlm-select-content.ts +29 -0
  327. package/projects/software-division-components/src/generic/select/lib/hlm-select-group.ts +17 -0
  328. package/projects/software-division-components/src/generic/select/lib/hlm-select-label.ts +26 -0
  329. package/projects/software-division-components/src/generic/select/lib/hlm-select-option.ts +37 -0
  330. package/projects/software-division-components/src/generic/select/lib/hlm-select-scroll-down.ts +24 -0
  331. package/projects/software-division-components/src/generic/select/lib/hlm-select-scroll-up.ts +23 -0
  332. package/projects/software-division-components/src/generic/select/lib/hlm-select-trigger.ts +53 -0
  333. package/projects/software-division-components/src/generic/select/lib/hlm-select-value.ts +17 -0
  334. package/projects/software-division-components/src/generic/select/lib/hlm-select.ts +15 -0
  335. package/projects/software-division-components/src/generic/select/lib/index.ts +38 -0
  336. package/{generic/select/public-api.d.ts → projects/software-division-components/src/generic/select/public-api.ts} +0 -1
  337. package/projects/software-division-components/src/generic/select/select.component.css +65 -0
  338. package/projects/software-division-components/src/generic/select/select.component.html +19 -0
  339. package/projects/software-division-components/src/generic/select/select.component.ts +25 -0
  340. package/projects/software-division-components/src/generic/select/types.ts +4 -0
  341. package/projects/software-division-components/src/private-exports.ts +1 -0
  342. package/{public-api.d.ts → projects/software-division-components/src/public-api.ts} +4 -2
  343. package/projects/software-division-components/src/shared/apply-theme-variables/apply-theme-variables.ts +35 -0
  344. package/projects/software-division-components/src/shared/apply-theme-variables/index.ts +1 -0
  345. package/projects/software-division-components/src/shared/format-value.pipe.ts +23 -0
  346. package/projects/software-division-components/src/shared/index.ts +1 -0
  347. package/projects/software-division-components/src/shared/lib-provider/config-token.ts +4 -0
  348. package/projects/software-division-components/src/shared/lib-provider/index.ts +1 -0
  349. package/projects/software-division-components/src/shared/lib-provider/provide-sdc.ts +24 -0
  350. package/{shared/lib-provider/public-api.d.ts → projects/software-division-components/src/shared/lib-provider/public-api.ts} +0 -1
  351. package/projects/software-division-components/src/shared/public-api.ts +6 -0
  352. package/{shared/screen-observer/index.d.ts → projects/software-division-components/src/shared/screen-observer/index.ts} +0 -1
  353. package/projects/software-division-components/src/shared/screen-observer/provide-screen-observer.ts +17 -0
  354. package/projects/software-division-components/src/shared/screen-observer/screen-observer.ts +56 -0
  355. package/projects/software-division-components/src/shared/screen-observer/sizable-base.ts +70 -0
  356. package/projects/software-division-components/src/shared/theme-provider/generic-theme.ts +1 -0
  357. package/projects/software-division-components/src/shared/theme-provider/index.ts +1 -0
  358. package/projects/software-division-components/src/shared/theme-provider/public-api.ts +1 -0
  359. package/projects/software-division-components/src/shared/theme-provider/theme-provider.directive.ts +17 -0
  360. package/projects/software-division-components/src/shared/themes/sdc.css +153 -0
  361. package/{shared/types.d.ts → projects/software-division-components/src/shared/types.ts} +8 -12
  362. package/projects/software-division-components/src/types/sizes.type.ts +3 -0
  363. package/projects/software-division-components/src/utils/index.ts +1 -0
  364. package/projects/software-division-components/src/utils/public-api.ts +1 -0
  365. package/projects/software-division-components/src/utils/validate-styles-for-component.ts +39 -0
  366. package/projects/software-division-components/styles.css +40 -0
  367. package/projects/software-division-components/tsconfig.json +30 -0
  368. package/projects/software-division-components/tsconfig.spec.json +15 -0
  369. package/scripts/generate-versions.js +60 -0
  370. package/scripts/watch-dist.js +222 -0
  371. package/tsconfig.json +46 -0
  372. package/3ddv-software-division-components.d.ts.map +0 -1
  373. package/backoffice/checkbox/checkbox.component.d.ts +0 -103
  374. package/backoffice/checkbox/checkbox.component.d.ts.map +0 -1
  375. package/backoffice/checkbox/index.d.ts +0 -2
  376. package/backoffice/checkbox/index.d.ts.map +0 -1
  377. package/backoffice/checkbox/public-api.d.ts +0 -2
  378. package/backoffice/checkbox/public-api.d.ts.map +0 -1
  379. package/backoffice/datepicker/datepicker.component.d.ts +0 -150
  380. package/backoffice/datepicker/datepicker.component.d.ts.map +0 -1
  381. package/backoffice/datepicker/index.d.ts +0 -2
  382. package/backoffice/datepicker/index.d.ts.map +0 -1
  383. package/backoffice/datepicker/public-api.d.ts.map +0 -1
  384. package/backoffice/datepicker/ui/ui-calendar-helm/src/index.d.ts +0 -14
  385. package/backoffice/datepicker/ui/ui-calendar-helm/src/index.d.ts.map +0 -1
  386. package/backoffice/datepicker/ui/ui-calendar-helm/src/lib/hlm-calendar-multi.d.ts +0 -38
  387. package/backoffice/datepicker/ui/ui-calendar-helm/src/lib/hlm-calendar-multi.d.ts.map +0 -1
  388. package/backoffice/datepicker/ui/ui-calendar-helm/src/lib/hlm-calendar.d.ts +0 -34
  389. package/backoffice/datepicker/ui/ui-calendar-helm/src/lib/hlm-calendar.d.ts.map +0 -1
  390. package/backoffice/datepicker/ui/ui-date-picker-helm/src/index.d.ts +0 -15
  391. package/backoffice/datepicker/ui/ui-date-picker-helm/src/index.d.ts.map +0 -1
  392. package/backoffice/datepicker/ui/ui-date-picker-helm/src/lib/hlm-date-picker-multi.d.ts +0 -53
  393. package/backoffice/datepicker/ui/ui-date-picker-helm/src/lib/hlm-date-picker-multi.d.ts.map +0 -1
  394. package/backoffice/datepicker/ui/ui-date-picker-helm/src/lib/hlm-date-picker-multi.token.d.ts +0 -24
  395. package/backoffice/datepicker/ui/ui-date-picker-helm/src/lib/hlm-date-picker-multi.token.d.ts.map +0 -1
  396. package/backoffice/datepicker/ui/ui-date-picker-helm/src/lib/hlm-date-picker.d.ts +0 -53
  397. package/backoffice/datepicker/ui/ui-date-picker-helm/src/lib/hlm-date-picker.d.ts.map +0 -1
  398. package/backoffice/datepicker/ui/ui-date-picker-helm/src/lib/hlm-date-picker.token.d.ts +0 -24
  399. package/backoffice/datepicker/ui/ui-date-picker-helm/src/lib/hlm-date-picker.token.d.ts.map +0 -1
  400. package/backoffice/datepicker/ui/ui-icon-helm/src/index.d.ts +0 -10
  401. package/backoffice/datepicker/ui/ui-icon-helm/src/index.d.ts.map +0 -1
  402. package/backoffice/datepicker/ui/ui-icon-helm/src/lib/hlm-icon.d.ts +0 -10
  403. package/backoffice/datepicker/ui/ui-icon-helm/src/lib/hlm-icon.d.ts.map +0 -1
  404. package/backoffice/datepicker/ui/ui-icon-helm/src/lib/hlm-icon.token.d.ts +0 -8
  405. package/backoffice/datepicker/ui/ui-icon-helm/src/lib/hlm-icon.token.d.ts.map +0 -1
  406. package/backoffice/datepicker/ui/ui-popover-helm/src/index.d.ts +0 -14
  407. package/backoffice/datepicker/ui/ui-popover-helm/src/index.d.ts.map +0 -1
  408. package/backoffice/datepicker/ui/ui-popover-helm/src/lib/hlm-popover-close.d.ts +0 -9
  409. package/backoffice/datepicker/ui/ui-popover-helm/src/lib/hlm-popover-close.d.ts.map +0 -1
  410. package/backoffice/datepicker/ui/ui-popover-helm/src/lib/hlm-popover-content.d.ts +0 -14
  411. package/backoffice/datepicker/ui/ui-popover-helm/src/lib/hlm-popover-content.d.ts.map +0 -1
  412. package/backoffice/index.d.ts +0 -2
  413. package/backoffice/index.d.ts.map +0 -1
  414. package/backoffice/input/index.d.ts +0 -2
  415. package/backoffice/input/index.d.ts.map +0 -1
  416. package/backoffice/input/input.component.d.ts +0 -200
  417. package/backoffice/input/input.component.d.ts.map +0 -1
  418. package/backoffice/input/public-api.d.ts +0 -2
  419. package/backoffice/input/public-api.d.ts.map +0 -1
  420. package/backoffice/public-api.d.ts.map +0 -1
  421. package/backoffice/radio/index.d.ts +0 -2
  422. package/backoffice/radio/index.d.ts.map +0 -1
  423. package/backoffice/radio/public-api.d.ts +0 -2
  424. package/backoffice/radio/public-api.d.ts.map +0 -1
  425. package/backoffice/radio/radio.component.d.ts +0 -73
  426. package/backoffice/radio/radio.component.d.ts.map +0 -1
  427. package/backoffice/table/_components/pagination/pagination.component.d.ts +0 -18
  428. package/backoffice/table/_components/pagination/pagination.component.d.ts.map +0 -1
  429. package/backoffice/table/_components/selection-table-head/selection-table-head.component.d.ts +0 -11
  430. package/backoffice/table/_components/selection-table-head/selection-table-head.component.d.ts.map +0 -1
  431. package/backoffice/table/_components/selection-table-row/selection-table-row.component.d.ts +0 -8
  432. package/backoffice/table/_components/selection-table-row/selection-table-row.component.d.ts.map +0 -1
  433. package/backoffice/table/_components/sort-header-button/sort-header-button.component.d.ts +0 -16
  434. package/backoffice/table/_components/sort-header-button/sort-header-button.component.d.ts.map +0 -1
  435. package/backoffice/table/index.d.ts +0 -2
  436. package/backoffice/table/index.d.ts.map +0 -1
  437. package/backoffice/table/public-api.d.ts +0 -3
  438. package/backoffice/table/public-api.d.ts.map +0 -1
  439. package/backoffice/table/table.component.d.ts +0 -111
  440. package/backoffice/table/table.component.d.ts.map +0 -1
  441. package/backoffice/table/ui/ui-icon-helm/src/index.d.ts +0 -10
  442. package/backoffice/table/ui/ui-icon-helm/src/index.d.ts.map +0 -1
  443. package/backoffice/table/ui/ui-icon-helm/src/lib/hlm-icon.d.ts +0 -10
  444. package/backoffice/table/ui/ui-icon-helm/src/lib/hlm-icon.d.ts.map +0 -1
  445. package/backoffice/table/ui/ui-icon-helm/src/lib/hlm-icon.token.d.ts +0 -8
  446. package/backoffice/table/ui/ui-icon-helm/src/lib/hlm-icon.token.d.ts.map +0 -1
  447. package/backoffice/table/ui/ui-table-helm/src/index.d.ts +0 -11
  448. package/backoffice/table/ui/ui-table-helm/src/index.d.ts.map +0 -1
  449. package/backoffice/table/ui/ui-table-helm/src/lib/hlm-table.d.ts +0 -112
  450. package/backoffice/table/ui/ui-table-helm/src/lib/hlm-table.d.ts.map +0 -1
  451. package/dvm/cart/cart.component.d.ts +0 -6
  452. package/dvm/cart/cart.component.d.ts.map +0 -1
  453. package/dvm/cart/cart.service.d.ts +0 -7
  454. package/dvm/cart/cart.service.d.ts.map +0 -1
  455. package/dvm/cart/index.d.ts +0 -2
  456. package/dvm/cart/index.d.ts.map +0 -1
  457. package/dvm/cart/public-api.d.ts +0 -3
  458. package/dvm/cart/public-api.d.ts.map +0 -1
  459. package/dvm/cart-item/cart-item.component.d.ts +0 -6
  460. package/dvm/cart-item/cart-item.component.d.ts.map +0 -1
  461. package/dvm/cart-item/cart-item.service.d.ts +0 -7
  462. package/dvm/cart-item/cart-item.service.d.ts.map +0 -1
  463. package/dvm/cart-item/index.d.ts +0 -2
  464. package/dvm/cart-item/index.d.ts.map +0 -1
  465. package/dvm/cart-item/public-api.d.ts.map +0 -1
  466. package/dvm/index.d.ts +0 -2
  467. package/dvm/index.d.ts.map +0 -1
  468. package/dvm/legend/index.d.ts +0 -2
  469. package/dvm/legend/index.d.ts.map +0 -1
  470. package/dvm/legend/legend.component.d.ts +0 -17
  471. package/dvm/legend/legend.component.d.ts.map +0 -1
  472. package/dvm/legend/public-api.d.ts.map +0 -1
  473. package/dvm/legend/types.d.ts.map +0 -1
  474. package/dvm/legend/ui/legend-elements/index.d.ts.map +0 -1
  475. package/dvm/legend/ui/legend-elements/legend-elements.component.d.ts +0 -16
  476. package/dvm/legend/ui/legend-elements/legend-elements.component.d.ts.map +0 -1
  477. package/dvm/loader/index.d.ts +0 -2
  478. package/dvm/loader/index.d.ts.map +0 -1
  479. package/dvm/loader/loader.component.d.ts +0 -6
  480. package/dvm/loader/loader.component.d.ts.map +0 -1
  481. package/dvm/loader/loader.service.d.ts +0 -7
  482. package/dvm/loader/loader.service.d.ts.map +0 -1
  483. package/dvm/loader/public-api.d.ts.map +0 -1
  484. package/dvm/map-loader/index.d.ts +0 -2
  485. package/dvm/map-loader/index.d.ts.map +0 -1
  486. package/dvm/map-loader/map-loader.component.d.ts +0 -55
  487. package/dvm/map-loader/map-loader.component.d.ts.map +0 -1
  488. package/dvm/map-loader/public-api.d.ts +0 -2
  489. package/dvm/map-loader/public-api.d.ts.map +0 -1
  490. package/dvm/neighbors/index.d.ts +0 -2
  491. package/dvm/neighbors/index.d.ts.map +0 -1
  492. package/dvm/neighbors/neighbors.component.d.ts +0 -41
  493. package/dvm/neighbors/neighbors.component.d.ts.map +0 -1
  494. package/dvm/neighbors/public-api.d.ts +0 -3
  495. package/dvm/neighbors/public-api.d.ts.map +0 -1
  496. package/dvm/neighbors/types.d.ts.map +0 -1
  497. package/dvm/popover/base-popover.component.d.ts +0 -28
  498. package/dvm/popover/base-popover.component.d.ts.map +0 -1
  499. package/dvm/popover/index.d.ts +0 -2
  500. package/dvm/popover/index.d.ts.map +0 -1
  501. package/dvm/popover/popover.component.d.ts +0 -69
  502. package/dvm/popover/popover.component.d.ts.map +0 -1
  503. package/dvm/popover/popover.config.d.ts +0 -25
  504. package/dvm/popover/popover.config.d.ts.map +0 -1
  505. package/dvm/popover/popover.service.d.ts +0 -140
  506. package/dvm/popover/popover.service.d.ts.map +0 -1
  507. package/dvm/popover/public-api.d.ts.map +0 -1
  508. package/dvm/popover/seat-popover/seat-popover.component.d.ts +0 -21
  509. package/dvm/popover/seat-popover/seat-popover.component.d.ts.map +0 -1
  510. package/dvm/popover/section-popover/section-popover.component.d.ts +0 -32
  511. package/dvm/popover/section-popover/section-popover.component.d.ts.map +0 -1
  512. package/dvm/popover/services/dvm-popover-positioner.service.d.ts +0 -30
  513. package/dvm/popover/services/dvm-popover-positioner.service.d.ts.map +0 -1
  514. package/dvm/popover/services/popover-manager.service.d.ts +0 -29
  515. package/dvm/popover/services/popover-manager.service.d.ts.map +0 -1
  516. package/dvm/popover/transformers/base-popover-data-transformer.d.ts +0 -29
  517. package/dvm/popover/transformers/base-popover-data-transformer.d.ts.map +0 -1
  518. package/dvm/popover/types.d.ts +0 -79
  519. package/dvm/popover/types.d.ts.map +0 -1
  520. package/dvm/public-api.d.ts.map +0 -1
  521. package/dvm/stepper/index.d.ts +0 -2
  522. package/dvm/stepper/index.d.ts.map +0 -1
  523. package/dvm/stepper/public-api.d.ts +0 -2
  524. package/dvm/stepper/public-api.d.ts.map +0 -1
  525. package/dvm/stepper/stepper.component.d.ts +0 -26
  526. package/dvm/stepper/stepper.component.d.ts.map +0 -1
  527. package/dvm/stepper/types.d.ts.map +0 -1
  528. package/dvm/ticket-info-item/index.d.ts +0 -2
  529. package/dvm/ticket-info-item/index.d.ts.map +0 -1
  530. package/dvm/ticket-info-item/public-api.d.ts.map +0 -1
  531. package/dvm/ticket-info-item/ticket-info-item.component.d.ts +0 -6
  532. package/dvm/ticket-info-item/ticket-info-item.component.d.ts.map +0 -1
  533. package/dvm/ticket-info-item/ticket-info-item.service.d.ts +0 -7
  534. package/dvm/ticket-info-item/ticket-info-item.service.d.ts.map +0 -1
  535. package/fesm2022/3ddv-software-division-components.mjs +0 -6598
  536. package/fesm2022/3ddv-software-division-components.mjs.map +0 -1
  537. package/generic/add-digital-wallet/add-digital-wallet.component.d.ts +0 -21
  538. package/generic/add-digital-wallet/add-digital-wallet.component.d.ts.map +0 -1
  539. package/generic/add-digital-wallet/index.d.ts +0 -2
  540. package/generic/add-digital-wallet/index.d.ts.map +0 -1
  541. package/generic/add-digital-wallet/public-api.d.ts.map +0 -1
  542. package/generic/braintree/braintree.component.d.ts +0 -33
  543. package/generic/braintree/braintree.component.d.ts.map +0 -1
  544. package/generic/braintree/index.d.ts +0 -2
  545. package/generic/braintree/index.d.ts.map +0 -1
  546. package/generic/braintree/public-api.d.ts.map +0 -1
  547. package/generic/braintree/types.d.ts +0 -27
  548. package/generic/braintree/types.d.ts.map +0 -1
  549. package/generic/button/button.component.d.ts +0 -142
  550. package/generic/button/button.component.d.ts.map +0 -1
  551. package/generic/button/index.d.ts +0 -2
  552. package/generic/button/index.d.ts.map +0 -1
  553. package/generic/button/public-api.d.ts +0 -2
  554. package/generic/button/public-api.d.ts.map +0 -1
  555. package/generic/button/ui/ui-button-helm/src/index.d.ts +0 -10
  556. package/generic/button/ui/ui-button-helm/src/index.d.ts.map +0 -1
  557. package/generic/button/ui/ui-button-helm/src/lib/hlm-button.d.ts +0 -20
  558. package/generic/button/ui/ui-button-helm/src/lib/hlm-button.d.ts.map +0 -1
  559. package/generic/button/ui/ui-button-helm/src/lib/hlm-button.token.d.ts +0 -9
  560. package/generic/button/ui/ui-button-helm/src/lib/hlm-button.token.d.ts.map +0 -1
  561. package/generic/dialog/dialog.component.d.ts +0 -11
  562. package/generic/dialog/dialog.component.d.ts.map +0 -1
  563. package/generic/dialog/index.d.ts +0 -2
  564. package/generic/dialog/index.d.ts.map +0 -1
  565. package/generic/dialog/libs/ui-dialog-helm/src/index.d.ts.map +0 -1
  566. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-close.d.ts +0 -9
  567. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-close.d.ts.map +0 -1
  568. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-content.d.ts +0 -15
  569. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-content.d.ts.map +0 -1
  570. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-description.d.ts +0 -10
  571. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-description.d.ts.map +0 -1
  572. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-footer.d.ts +0 -9
  573. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-footer.d.ts.map +0 -1
  574. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-header.d.ts +0 -9
  575. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-header.d.ts.map +0 -1
  576. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-overlay.d.ts +0 -12
  577. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-overlay.d.ts.map +0 -1
  578. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-title.d.ts +0 -10
  579. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog-title.d.ts.map +0 -1
  580. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog.d.ts +0 -7
  581. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog.d.ts.map +0 -1
  582. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog.service.d.ts +0 -21
  583. package/generic/dialog/libs/ui-dialog-helm/src/lib/hlm-dialog.service.d.ts.map +0 -1
  584. package/generic/dialog/public-api.d.ts.map +0 -1
  585. package/generic/drawer/drawer.component.d.ts +0 -6
  586. package/generic/drawer/drawer.component.d.ts.map +0 -1
  587. package/generic/drawer/drawer.service.d.ts +0 -7
  588. package/generic/drawer/drawer.service.d.ts.map +0 -1
  589. package/generic/drawer/index.d.ts +0 -2
  590. package/generic/drawer/index.d.ts.map +0 -1
  591. package/generic/drawer/public-api.d.ts.map +0 -1
  592. package/generic/icon/icon.component.d.ts +0 -21
  593. package/generic/icon/icon.component.d.ts.map +0 -1
  594. package/generic/icon/index.d.ts +0 -2
  595. package/generic/icon/index.d.ts.map +0 -1
  596. package/generic/icon/lib/ui-icon-helm/src/index.d.ts +0 -10
  597. package/generic/icon/lib/ui-icon-helm/src/index.d.ts.map +0 -1
  598. package/generic/icon/lib/ui-icon-helm/src/lib/hlm-icon.d.ts +0 -10
  599. package/generic/icon/lib/ui-icon-helm/src/lib/hlm-icon.d.ts.map +0 -1
  600. package/generic/icon/lib/ui-icon-helm/src/lib/hlm-icon.token.d.ts +0 -8
  601. package/generic/icon/lib/ui-icon-helm/src/lib/hlm-icon.token.d.ts.map +0 -1
  602. package/generic/icon/public-api.d.ts +0 -2
  603. package/generic/icon/public-api.d.ts.map +0 -1
  604. package/generic/index.d.ts +0 -2
  605. package/generic/index.d.ts.map +0 -1
  606. package/generic/public-api.d.ts.map +0 -1
  607. package/generic/select/index.d.ts +0 -2
  608. package/generic/select/index.d.ts.map +0 -1
  609. package/generic/select/lib/hlm-select-content.d.ts +0 -13
  610. package/generic/select/lib/hlm-select-content.d.ts.map +0 -1
  611. package/generic/select/lib/hlm-select-group.d.ts +0 -10
  612. package/generic/select/lib/hlm-select-group.d.ts.map +0 -1
  613. package/generic/select/lib/hlm-select-label.d.ts +0 -12
  614. package/generic/select/lib/hlm-select-label.d.ts.map +0 -1
  615. package/generic/select/lib/hlm-select-option.d.ts +0 -12
  616. package/generic/select/lib/hlm-select-option.d.ts.map +0 -1
  617. package/generic/select/lib/hlm-select-scroll-down.d.ts +0 -9
  618. package/generic/select/lib/hlm-select-scroll-down.d.ts.map +0 -1
  619. package/generic/select/lib/hlm-select-scroll-up.d.ts +0 -9
  620. package/generic/select/lib/hlm-select-scroll-up.d.ts.map +0 -1
  621. package/generic/select/lib/hlm-select-trigger.d.ts +0 -17
  622. package/generic/select/lib/hlm-select-trigger.d.ts.map +0 -1
  623. package/generic/select/lib/hlm-select-value.d.ts +0 -9
  624. package/generic/select/lib/hlm-select-value.d.ts.map +0 -1
  625. package/generic/select/lib/hlm-select.d.ts +0 -9
  626. package/generic/select/lib/hlm-select.d.ts.map +0 -1
  627. package/generic/select/lib/index.d.ts +0 -35
  628. package/generic/select/lib/index.d.ts.map +0 -1
  629. package/generic/select/public-api.d.ts.map +0 -1
  630. package/generic/select/select.component.d.ts +0 -13
  631. package/generic/select/select.component.d.ts.map +0 -1
  632. package/generic/select/types.d.ts +0 -5
  633. package/generic/select/types.d.ts.map +0 -1
  634. package/index.d.ts +0 -6
  635. package/public-api.d.ts.map +0 -1
  636. package/shared/declare-theme-variables/declare-theme-variables.d.ts +0 -5
  637. package/shared/declare-theme-variables/declare-theme-variables.d.ts.map +0 -1
  638. package/shared/declare-theme-variables/index.d.ts +0 -2
  639. package/shared/declare-theme-variables/index.d.ts.map +0 -1
  640. package/shared/lib-provider/config-token.d.ts +0 -4
  641. package/shared/lib-provider/config-token.d.ts.map +0 -1
  642. package/shared/lib-provider/index.d.ts +0 -2
  643. package/shared/lib-provider/index.d.ts.map +0 -1
  644. package/shared/lib-provider/provide-sdc.d.ts +0 -10
  645. package/shared/lib-provider/provide-sdc.d.ts.map +0 -1
  646. package/shared/lib-provider/public-api.d.ts.map +0 -1
  647. package/shared/screen-observer/index.d.ts.map +0 -1
  648. package/shared/screen-observer/provide-screen-observer.d.ts +0 -5
  649. package/shared/screen-observer/provide-screen-observer.d.ts.map +0 -1
  650. package/shared/screen-observer/screen-observer.d.ts +0 -15
  651. package/shared/screen-observer/screen-observer.d.ts.map +0 -1
  652. package/shared/types.d.ts.map +0 -1
  653. package/styles.css +0 -2
  654. package/types/sizes.type.d.ts +0 -3
  655. package/types/sizes.type.d.ts.map +0 -1
  656. /package/{tailwind.config.js → projects/software-division-components/tailwind.config.js} +0 -0
@@ -0,0 +1,497 @@
1
+ import { Component, computed, effect, EffectRef, input, OnDestroy, OnInit, output, signal } from '@angular/core';
2
+ import {
3
+ AbstractControl,
4
+ FormControl,
5
+ FormSubmittedEvent,
6
+ ReactiveFormsModule,
7
+ ValidationErrors,
8
+ } from '@angular/forms';
9
+ import { Subject, Subscription } from 'rxjs';
10
+ import { takeUntil } from 'rxjs/operators';
11
+ import { ThemeClass } from '../../shared/types';
12
+
13
+ export type InputStyleClasses = ReturnType<(typeof InputComponent.prototype)['styleClass']>;
14
+
15
+ /**
16
+ * A customizable input component built on the native input element.
17
+ *
18
+ * This component supports various configurations and exposes all native input functionality.
19
+ * All HTML input attributes and events are automatically forwarded to the inner input element.
20
+ *
21
+ * @since 1.0.0-alpha.1
22
+ */
23
+ @Component({
24
+ standalone: true,
25
+ selector: 'sdc-input',
26
+ styleUrls: ['./input.component.css'],
27
+ templateUrl: './input.component.html',
28
+ imports: [ReactiveFormsModule],
29
+ })
30
+ export class InputComponent implements OnInit, OnDestroy {
31
+ private readonly allowedVariants = [
32
+ 'variant-primary',
33
+ 'variant-secondary',
34
+ 'variant-alternative',
35
+ 'variant-success',
36
+ 'variant-warning',
37
+ 'variant-danger',
38
+ ] as const;
39
+ private readonly allowedSizes = ['size-sm', 'size-md', 'size-lg', 'size-xl'] as const;
40
+ private readonly allowedRadius = [
41
+ 'radius-default',
42
+ 'radius-sm',
43
+ 'radius-md',
44
+ 'radius-lg',
45
+ 'radius-xl',
46
+ 'radius-2xl',
47
+ 'radius-full',
48
+ ] as const;
49
+
50
+ /**
51
+ * The current theme applied to the component.
52
+ */
53
+ public readonly theme = input<ThemeClass>('theme-sdc');
54
+
55
+ /**
56
+ * Predefined styles to apply to the component.
57
+ * Can be a single class or multiple classes from different categories.
58
+ */
59
+ public readonly styleClass = input<
60
+ ((typeof this.allowedVariants)[number] | (typeof this.allowedSizes)[number] | (typeof this.allowedRadius)[number])[]
61
+ >([]);
62
+
63
+ // Computed signal that validates and filters the styleClass input
64
+ private readonly _validatedStyleClass = computed(() => {
65
+ const value = this.styleClass();
66
+
67
+ if (!Array.isArray(value)) {
68
+ return [];
69
+ }
70
+
71
+ const validValues = value.filter(style => {
72
+ return (
73
+ (this.allowedVariants as readonly string[]).includes(style) ||
74
+ (this.allowedSizes as readonly string[]).includes(style) ||
75
+ (this.allowedRadius as readonly string[]).includes(style)
76
+ );
77
+ });
78
+
79
+ const invalidValues = value.filter(style => {
80
+ return (
81
+ !(this.allowedVariants as readonly string[]).includes(style) &&
82
+ !(this.allowedSizes as readonly string[]).includes(style) &&
83
+ !(this.allowedRadius as readonly string[]).includes(style)
84
+ );
85
+ });
86
+
87
+ if (invalidValues.length > 0) {
88
+ throw new Error(
89
+ `InputComponent: Invalid styleClass values ignored: ${invalidValues.join(', ')}. Allowed values: ${[
90
+ ...this.allowedVariants,
91
+ ...this.allowedSizes,
92
+ ...this.allowedRadius,
93
+ ].join(', ')}`
94
+ );
95
+ }
96
+
97
+ return validValues;
98
+ });
99
+
100
+ /**
101
+ * Additional CSS classes to apply to the component.
102
+ */
103
+ public readonly className = input<string>('');
104
+
105
+ /**
106
+ * The label text to display above or to the left of the input.
107
+ * Only visible when a value is provided.
108
+ */
109
+ public readonly label = input<string>('');
110
+
111
+ /**
112
+ * The position of the label relative to the input.
113
+ * 'top' places the label above the input, 'left' places it to the left.
114
+ */
115
+ public readonly labelPosition = input<'top' | 'left'>('top');
116
+
117
+ /**
118
+ * Whether the component is disabled.
119
+ */
120
+ public readonly disabled = input<boolean>(false);
121
+
122
+ /**
123
+ * The type of the input element.
124
+ */
125
+ public readonly type = input<string>('text');
126
+
127
+ /**
128
+ * The placeholder text for the input.
129
+ */
130
+ public readonly placeholder = input<string>('');
131
+
132
+ /**
133
+ * The hint text for the input.
134
+ */
135
+ public readonly hint = input<string>('');
136
+
137
+ /**
138
+ * The name of the form control.
139
+ */
140
+ public readonly name = input<string>('');
141
+
142
+ /**
143
+ * Whether the input is a textarea.
144
+ */
145
+ public readonly isTextarea = input<boolean>(false);
146
+
147
+ /**
148
+ * The number of rows for the textarea.
149
+ */
150
+ public readonly textareaRows = input<number>(1);
151
+
152
+ /**
153
+ * The number of columns for the textarea.
154
+ */
155
+ public readonly textareaCols = input<number>(1);
156
+
157
+ /**
158
+ * Whether the textarea is resizable.
159
+ */
160
+ public readonly textareaResize = input<'none' | 'both' | 'horizontal' | 'vertical'>('vertical');
161
+
162
+ /**
163
+ * Custom error message to override the validator's error message.
164
+ */
165
+ public readonly errorMessage = input<string>('');
166
+
167
+ /**
168
+ * Controls when errors are displayed.
169
+ * - 'after-submit': Show errors only after form submission (default)
170
+ * - 'always': Show errors immediately when validation fails
171
+ */
172
+ public readonly errorDisplayMode = input<'always' | 'after-submit'>('after-submit');
173
+
174
+ /**
175
+ * The FormControl instance to bind to this input.
176
+ * This allows the component to access form state without circular dependencies.
177
+ */
178
+ public readonly control = input<AbstractControl<string | null> | FormControl | null>(null);
179
+
180
+ /**
181
+ * The state of the form control.
182
+ */
183
+ public readonly controlState = signal<{
184
+ invalid: boolean;
185
+ touched: boolean;
186
+ dirty: boolean;
187
+ errors: ValidationErrors | null;
188
+ value: string;
189
+ isFormSubmitted: boolean;
190
+ }>({ invalid: false, touched: false, dirty: false, errors: null, value: '', isFormSubmitted: false });
191
+
192
+ /**
193
+ * Event emitted when the component receives focus.
194
+ */
195
+ public readonly onFocus = output<FocusEvent>();
196
+
197
+ /**
198
+ * Event emitted when the component loses focus.
199
+ */
200
+ public readonly onBlur = output<FocusEvent>();
201
+
202
+ /**
203
+ * Event emitted when the input value changes.
204
+ */
205
+ public readonly onInput = output<InputEvent>();
206
+
207
+ /**
208
+ * Computed class string that combines theme and user classes.
209
+ */
210
+ protected readonly computedClass = computed(() => {
211
+ const themeClass = this.theme();
212
+ const styleClass = this._validatedStyleClass();
213
+ const className = this.className();
214
+ const errorClass = this.showError() ? 'has-error' : '';
215
+ const textareaResizeClass = this.isTextarea() ? `resize-${this.textareaResize()}` : '';
216
+ return ['sdc-input', themeClass, ...styleClass, className, errorClass, textareaResizeClass]
217
+ .filter(Boolean)
218
+ .join(' ');
219
+ });
220
+
221
+ /**
222
+ * Computed class string for the label positioning.
223
+ */
224
+ protected readonly labelClass = computed(() => {
225
+ const position = this.labelPosition();
226
+ return position === 'left' ? 'sdc-input-label left' : 'sdc-input-label top';
227
+ });
228
+
229
+ /**
230
+ * Debounce time in milliseconds. When 0, no debounce is applied.
231
+ * Default value is 0 (no debounce).
232
+ */
233
+ public readonly debounce = input<number>(0);
234
+
235
+ /**
236
+ * Event emitted to notify the debounce state.
237
+ * Returns true while the component is debounced, false when not.
238
+ */
239
+ public readonly isDebounced = output<boolean>();
240
+
241
+ /**
242
+ * Signal to track the current debounce state of the component.
243
+ */
244
+ protected readonly debounceState = signal<boolean>(false);
245
+
246
+ /**
247
+ * Subject for handling input events with debounce.
248
+ */
249
+ private readonly inputSubject = new Subject<Event>();
250
+
251
+ /**
252
+ * Subject for cleanup.
253
+ */
254
+ private readonly destroy$ = new Subject<void>();
255
+
256
+ /**
257
+ * Current subscription for debounce.
258
+ */
259
+ private debounceSubscription: Subscription | null = null;
260
+
261
+ /**
262
+ * Current debounce timeout.
263
+ */
264
+ private debounceTimeout: ReturnType<typeof setTimeout> | null = null;
265
+
266
+ /**
267
+ * Component subscriptions.
268
+ */
269
+ private subscriptions: (Subscription | undefined)[] = [];
270
+
271
+ /**
272
+ * Computed signal to determine if the label should be visible.
273
+ */
274
+ protected readonly showLabel = computed(() => {
275
+ return this.label() && this.label().trim().length > 0;
276
+ });
277
+
278
+ /**
279
+ * Computed signal to get the current error message.
280
+ */
281
+ protected readonly currentErrorMessage = computed(() => {
282
+ const customMessage = this.errorMessage();
283
+ const hasErrors = Object.keys(this.controlState()?.errors ?? {}).length > 0;
284
+
285
+ if (hasErrors && customMessage && customMessage.trim().length > 0) {
286
+ return customMessage;
287
+ }
288
+
289
+ // If no custom message, try to get validation error from the form control state
290
+ if (hasErrors) {
291
+ const firstErrorKey = Object.keys(this.controlState()?.errors ?? {})[0];
292
+ const firstErrorValue = this.controlState()?.errors?.[firstErrorKey];
293
+ return this.getValidatorErrorMessage(firstErrorKey, firstErrorValue);
294
+ }
295
+
296
+ return '';
297
+ });
298
+
299
+ /**
300
+ * Computed signal to determine if there's an error to display.
301
+ */
302
+ protected readonly showError = computed(() => {
303
+ const errorMode = this.errorDisplayMode();
304
+
305
+ // For validation errors, respect the error display mode
306
+ if (this.controlState()?.invalid) {
307
+ if (errorMode === 'always') {
308
+ // Show errors when component is touched and invalid
309
+ return this.controlState()?.touched || this.controlState()?.dirty || this.controlState()?.isFormSubmitted;
310
+ } else if (errorMode === 'after-submit') {
311
+ // Show errors when form is submitted, regardless of touch/focus state
312
+ return this.controlState()?.isFormSubmitted;
313
+ }
314
+ }
315
+
316
+ return false;
317
+ });
318
+
319
+ /**
320
+ * References to effects for proper cleanup
321
+ */
322
+ private readonly effects: EffectRef[] = [];
323
+
324
+ constructor() {
325
+ // Set up reactive debounce handling within injection context
326
+ const debounceEffect = effect(() => {
327
+ const debounceTime = this.debounce();
328
+ this.setupDebounce(debounceTime);
329
+ });
330
+ this.effects.push(debounceEffect);
331
+ }
332
+
333
+ ngOnInit(): void {
334
+ // Validate the name input
335
+ if ((this.control() || this.showLabel()) && !this.name()) {
336
+ throw new Error('InputComponent: name is required when control or label inputs are present');
337
+ }
338
+
339
+ const formEventsSubscription = this.control()?.parent?.events.subscribe(event => {
340
+ // We do not reset this signal because it is used to show the errors
341
+ // When a form is submitted at least once, we want to show the errors
342
+ if (event instanceof FormSubmittedEvent) {
343
+ this.controlState.set({ ...this.controlState(), isFormSubmitted: true });
344
+
345
+ // We add this because the statusChanges event is not triggered when the form is submitted
346
+ if (event.source.status === 'INVALID') {
347
+ this.controlState.set({ ...this.controlState(), invalid: true });
348
+ }
349
+ }
350
+
351
+ this.updateErrors();
352
+ });
353
+
354
+ const statusChangesSubscription = this.control()?.statusChanges.subscribe(status => {
355
+ if (status === 'INVALID') {
356
+ this.controlState.set({ ...this.controlState(), invalid: true });
357
+ }
358
+
359
+ this.updateErrors();
360
+ });
361
+
362
+ this.subscriptions.push(formEventsSubscription, statusChangesSubscription);
363
+ }
364
+
365
+ ngOnDestroy(): void {
366
+ this.destroy$.next();
367
+ this.destroy$.complete();
368
+ this.inputSubject.complete();
369
+ if (this.debounceSubscription) {
370
+ this.debounceSubscription.unsubscribe();
371
+ }
372
+ if (this.debounceTimeout) {
373
+ clearTimeout(this.debounceTimeout);
374
+ }
375
+ this.effects.forEach(effect => effect.destroy());
376
+ this.subscriptions.forEach(subscription => subscription?.unsubscribe());
377
+ }
378
+
379
+ private updateErrors() {
380
+ // We override the errors except the internal_* errors
381
+ const currentInternalErrors = Object.entries(this.controlState()?.errors || {})?.filter(([key]) =>
382
+ key.startsWith('internal_')
383
+ );
384
+ const controlStateHasInternalErrors = currentInternalErrors.length > 0;
385
+
386
+ const newErrors =
387
+ this.control()?.errors || controlStateHasInternalErrors
388
+ ? Object.assign(Object.fromEntries(currentInternalErrors), this.control()?.errors ?? {})
389
+ : null;
390
+
391
+ this.controlState.set({ ...this.controlState(), errors: newErrors });
392
+ }
393
+
394
+ /**
395
+ * Sets up the debounce functionality for input events.
396
+ */
397
+ private setupDebounce(debounceTime: number): void {
398
+ // Clear existing subscription
399
+ if (this.debounceSubscription) {
400
+ this.debounceSubscription.unsubscribe();
401
+ }
402
+
403
+ // Clear existing timeout
404
+ if (this.debounceTimeout) {
405
+ clearTimeout(this.debounceTimeout);
406
+ this.debounceTimeout = null;
407
+ }
408
+
409
+ // Set up new subscription
410
+ this.debounceSubscription = this.inputSubject.pipe(takeUntil(this.destroy$)).subscribe((event: Event) => {
411
+ // Clear existing timeout
412
+ if (this.debounceTimeout) {
413
+ clearTimeout(this.debounceTimeout);
414
+ }
415
+
416
+ // Set new timeout
417
+ this.debounceTimeout = setTimeout(() => {
418
+ this.debounceState.set(false);
419
+ this.isDebounced.emit(false);
420
+ this.onInput.emit(event as InputEvent);
421
+ this.debounceTimeout = null;
422
+ }, debounceTime);
423
+ });
424
+ }
425
+
426
+ /**
427
+ * Handles input events with debounce functionality.
428
+ */
429
+ protected handleInput(event: Event): void {
430
+ const target = event.target as HTMLInputElement;
431
+ const newValue = target.value;
432
+
433
+ // Only allow numbers for input with type number
434
+ if (this.type() === 'number') {
435
+ const isValidNumber = /^[0-9]+$/.test(newValue);
436
+ this.controlState.set({ ...this.controlState(), errors: isValidNumber ? null : { internal_number: true } });
437
+ }
438
+
439
+ // Update the form control value
440
+ this.controlState.set({ ...this.controlState(), value: newValue, dirty: true });
441
+ this.control()?.setValue(newValue);
442
+
443
+ const debounceTime = this.debounce();
444
+
445
+ if (debounceTime > 0) {
446
+ // Apply debounce
447
+ this.debounceState.set(true);
448
+ this.isDebounced.emit(true);
449
+ this.inputSubject.next({ ...event, target: { ...event.target, value: newValue } } as unknown as InputEvent);
450
+ } else {
451
+ // No debounce, emit immediately
452
+ this.onInput.emit({ ...event, target: { ...event.target, value: newValue } } as unknown as InputEvent);
453
+ }
454
+ }
455
+
456
+ /**
457
+ * Handles focus events and emits the onFocus output.
458
+ */
459
+ protected handleFocus(event: FocusEvent): void {
460
+ this.controlState.set({ ...this.controlState(), touched: true });
461
+ this.onFocus.emit(event);
462
+ }
463
+
464
+ /**
465
+ * Handles blur events and emits the onBlur output.
466
+ */
467
+ protected handleBlur(event: FocusEvent): void {
468
+ this.controlState.set({ ...this.controlState(), touched: true });
469
+ this.onBlur.emit(event);
470
+ }
471
+
472
+ /**
473
+ * Gets the error message for a specific validator error.
474
+ */
475
+ private getValidatorErrorMessage(errorKey: string, errorValue: any): string {
476
+ switch (errorKey) {
477
+ case 'required':
478
+ return 'This field is required.';
479
+ case 'internal_number':
480
+ return 'Please enter a valid number.';
481
+ case 'email':
482
+ return 'Please enter a valid email address.';
483
+ case 'minlength':
484
+ return `Minimum length is ${errorValue.requiredLength} characters.`;
485
+ case 'maxlength':
486
+ return `Maximum length is ${errorValue.requiredLength} characters.`;
487
+ case 'min':
488
+ return `Minimum value is ${errorValue.min}.`;
489
+ case 'max':
490
+ return `Maximum value is ${errorValue.max}.`;
491
+ case 'pattern':
492
+ return 'Please enter a valid value.';
493
+ default:
494
+ return 'Please enter a valid value.';
495
+ }
496
+ }
497
+ }
@@ -0,0 +1,2 @@
1
+ // Export the main form component
2
+ export * from './input.component';