@dropi/ui-components 1.0.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 (393) hide show
  1. package/.gitignore +13 -0
  2. package/CONTRIBUTING.md +188 -0
  3. package/MIGRATION_STEPS.md +39 -0
  4. package/PUBLISH_CHECKLIST.md +97 -0
  5. package/QUICK_START.md +108 -0
  6. package/README.md +146 -0
  7. package/jest.config.ts +21 -0
  8. package/ng-package.json +8 -0
  9. package/package.json +66 -0
  10. package/project.json +48 -0
  11. package/publish.sh +113 -0
  12. package/src/components-source/accordion/accordion-item/accordion-item.component.html +12 -0
  13. package/src/components-source/accordion/accordion-item/accordion-item.component.scss +47 -0
  14. package/src/components-source/accordion/accordion-item/accordion-item.component.spec.ts +122 -0
  15. package/src/components-source/accordion/accordion-item/accordion-item.component.ts +42 -0
  16. package/src/components-source/accordion/accordion.component.html +3 -0
  17. package/src/components-source/accordion/accordion.component.scss +5 -0
  18. package/src/components-source/accordion/accordion.component.spec.ts +243 -0
  19. package/src/components-source/accordion/accordion.component.stories.ts +111 -0
  20. package/src/components-source/accordion/accordion.component.ts +43 -0
  21. package/src/components-source/alert/alert.component.html +28 -0
  22. package/src/components-source/alert/alert.component.scss +154 -0
  23. package/src/components-source/alert/alert.component.spec.ts +185 -0
  24. package/src/components-source/alert/alert.component.stories.ts +310 -0
  25. package/src/components-source/alert/alert.component.ts +203 -0
  26. package/src/components-source/alert-legacy/alert.component.html +21 -0
  27. package/src/components-source/alert-legacy/alert.component.scss +42 -0
  28. package/src/components-source/alert-legacy/alert.component.spec.ts +159 -0
  29. package/src/components-source/alert-legacy/alert.component.ts +33 -0
  30. package/src/components-source/alert-modal/alert-modal.component.html +124 -0
  31. package/src/components-source/alert-modal/alert-modal.component.scss +203 -0
  32. package/src/components-source/alert-modal/alert-modal.component.spec.ts +557 -0
  33. package/src/components-source/alert-modal/alert-modal.component.stories.ts +295 -0
  34. package/src/components-source/alert-modal/alert-modal.component.ts +294 -0
  35. package/src/components-source/alert-modal/services/template-alert-modal.service.ts +75 -0
  36. package/src/components-source/badge/badge.component.html +49 -0
  37. package/src/components-source/badge/badge.component.scss +57 -0
  38. package/src/components-source/badge/badge.component.spec.ts +181 -0
  39. package/src/components-source/badge/badge.component.ts +21 -0
  40. package/src/components-source/breadcrumb/breadcrumb.component.html +5 -0
  41. package/src/components-source/breadcrumb/breadcrumb.component.scss +46 -0
  42. package/src/components-source/breadcrumb/breadcrumb.component.spec.ts +279 -0
  43. package/src/components-source/breadcrumb/breadcrumb.component.ts +24 -0
  44. package/src/components-source/card-product/card-product.component.html +173 -0
  45. package/src/components-source/card-product/card-product.component.spec.ts +601 -0
  46. package/src/components-source/card-product/card-product.component.stories.ts +322 -0
  47. package/src/components-source/card-product/card-product.component.ts +1101 -0
  48. package/src/components-source/card-section/card-section.component.html +22 -0
  49. package/src/components-source/card-section/card-section.component.scss +14 -0
  50. package/src/components-source/card-section/card-section.component.spec.ts +333 -0
  51. package/src/components-source/card-section/card-section.component.stories.ts +141 -0
  52. package/src/components-source/card-section/card-section.component.ts +35 -0
  53. package/src/components-source/checkbox-selection-list/checkbox-selection-list.component.html +38 -0
  54. package/src/components-source/checkbox-selection-list/checkbox-selection-list.component.scss +147 -0
  55. package/src/components-source/checkbox-selection-list/checkbox-selection-list.component.spec.ts +555 -0
  56. package/src/components-source/checkbox-selection-list/checkbox-selection-list.component.stories.ts +157 -0
  57. package/src/components-source/checkbox-selection-list/checkbox-selection-list.component.ts +219 -0
  58. package/src/components-source/city-selector/city-selector.component.html +22 -0
  59. package/src/components-source/city-selector/city-selector.component.scss +1 -0
  60. package/src/components-source/city-selector/city-selector.component.spec.ts +278 -0
  61. package/src/components-source/city-selector/city-selector.component.stories.ts +200 -0
  62. package/src/components-source/city-selector/city-selector.component.ts +151 -0
  63. package/src/components-source/color-picker/color-picker.component.html +54 -0
  64. package/src/components-source/color-picker/color-picker.component.scss +203 -0
  65. package/src/components-source/color-picker/color-picker.component.spec.ts +148 -0
  66. package/src/components-source/color-picker/color-picker.component.stories.ts +70 -0
  67. package/src/components-source/color-picker/color-picker.component.ts +353 -0
  68. package/src/components-source/country-flags/country-flags.component.html +10 -0
  69. package/src/components-source/country-flags/country-flags.component.scss +34 -0
  70. package/src/components-source/country-flags/country-flags.component.spec.ts +78 -0
  71. package/src/components-source/country-flags/country-flags.component.ts +18 -0
  72. package/src/components-source/date-picker/date-picker.component.html +35 -0
  73. package/src/components-source/date-picker/date-picker.component.scss +388 -0
  74. package/src/components-source/date-picker/date-picker.component.spec.ts +510 -0
  75. package/src/components-source/date-picker/date-picker.component.stories.ts +444 -0
  76. package/src/components-source/date-picker/date-picker.component.ts +313 -0
  77. package/src/components-source/date-picker/date-picker.stories.spec.ts +150 -0
  78. package/src/components-source/date-picker-range/date-picker-range.component.html +45 -0
  79. package/src/components-source/date-picker-range/date-picker-range.component.scss +229 -0
  80. package/src/components-source/date-picker-range/date-picker-range.component.spec.ts +555 -0
  81. package/src/components-source/date-picker-range/date-picker-range.component.ts +254 -0
  82. package/src/components-source/dropi-avatars/dropi-avatars.component.html +17 -0
  83. package/src/components-source/dropi-avatars/dropi-avatars.component.scss +58 -0
  84. package/src/components-source/dropi-avatars/dropi-avatars.component.spec.ts +403 -0
  85. package/src/components-source/dropi-avatars/dropi-avatars.component.ts +24 -0
  86. package/src/components-source/dropi-badge/dropi-badge.component.html +12 -0
  87. package/src/components-source/dropi-badge/dropi-badge.component.scss +50 -0
  88. package/src/components-source/dropi-badge/dropi-badge.component.spec.ts +108 -0
  89. package/src/components-source/dropi-badge/dropi-badge.component.stories.ts +140 -0
  90. package/src/components-source/dropi-badge/dropi-badge.component.ts +39 -0
  91. package/src/components-source/dropi-banner-external/dropi-banner-external.component.html +67 -0
  92. package/src/components-source/dropi-banner-external/dropi-banner-external.component.scss +46 -0
  93. package/src/components-source/dropi-banner-external/dropi-banner-external.component.spec.ts +170 -0
  94. package/src/components-source/dropi-banner-external/dropi-banner-external.component.stories.ts +203 -0
  95. package/src/components-source/dropi-banner-external/dropi-banner-external.component.ts +204 -0
  96. package/src/components-source/dropi-breadcrumb/dropi-breadcrumb.component.html +65 -0
  97. package/src/components-source/dropi-breadcrumb/dropi-breadcrumb.component.scss +65 -0
  98. package/src/components-source/dropi-breadcrumb/dropi-breadcrumb.component.spec.ts +125 -0
  99. package/src/components-source/dropi-breadcrumb/dropi-breadcrumb.component.ts +38 -0
  100. package/src/components-source/dropi-breadcrumb/dropi-breadcrumb.stories.ts +133 -0
  101. package/src/components-source/dropi-button/dropi-button.component.html +37 -0
  102. package/src/components-source/dropi-button/dropi-button.component.scss +266 -0
  103. package/src/components-source/dropi-button/dropi-button.component.spec.ts +264 -0
  104. package/src/components-source/dropi-button/dropi-button.component.stories.ts +221 -0
  105. package/src/components-source/dropi-button/dropi-button.component.ts +82 -0
  106. package/src/components-source/dropi-card-checkbox/dropi-card-checkbox.component.html +24 -0
  107. package/src/components-source/dropi-card-checkbox/dropi-card-checkbox.component.scss +85 -0
  108. package/src/components-source/dropi-card-checkbox/dropi-card-checkbox.component.spec.ts +157 -0
  109. package/src/components-source/dropi-card-checkbox/dropi-card-checkbox.component.stories.ts +209 -0
  110. package/src/components-source/dropi-card-checkbox/dropi-card-checkbox.component.ts +41 -0
  111. package/src/components-source/dropi-carousel/dropi-carousel.component.html +57 -0
  112. package/src/components-source/dropi-carousel/dropi-carousel.component.scss +156 -0
  113. package/src/components-source/dropi-carousel/dropi-carousel.component.spec.ts +224 -0
  114. package/src/components-source/dropi-carousel/dropi-carousel.component.ts +266 -0
  115. package/src/components-source/dropi-carousel/dropi-carousel.stories.ts +365 -0
  116. package/src/components-source/dropi-checkbox/dropi-checkbox.component.css +39 -0
  117. package/src/components-source/dropi-checkbox/dropi-checkbox.component.html +18 -0
  118. package/src/components-source/dropi-checkbox/dropi-checkbox.component.spec.ts +155 -0
  119. package/src/components-source/dropi-checkbox/dropi-checkbox.component.stories.ts +101 -0
  120. package/src/components-source/dropi-checkbox/dropi-checkbox.component.ts +25 -0
  121. package/src/components-source/dropi-chips/dropi-chips.component.html +10 -0
  122. package/src/components-source/dropi-chips/dropi-chips.component.scss +54 -0
  123. package/src/components-source/dropi-chips/dropi-chips.component.spec.ts +356 -0
  124. package/src/components-source/dropi-chips/dropi-chips.component.stories.ts +275 -0
  125. package/src/components-source/dropi-chips/dropi-chips.component.ts +100 -0
  126. package/src/components-source/dropi-country-selector/countries.data.ts +239 -0
  127. package/src/components-source/dropi-country-selector/dropi-country-selector.component.html +59 -0
  128. package/src/components-source/dropi-country-selector/dropi-country-selector.component.scss +126 -0
  129. package/src/components-source/dropi-country-selector/dropi-country-selector.component.spec.ts +244 -0
  130. package/src/components-source/dropi-country-selector/dropi-country-selector.component.stories.ts +117 -0
  131. package/src/components-source/dropi-country-selector/dropi-country-selector.component.ts +179 -0
  132. package/src/components-source/dropi-drawer/dropi-drawer.component.html +23 -0
  133. package/src/components-source/dropi-drawer/dropi-drawer.component.scss +88 -0
  134. package/src/components-source/dropi-drawer/dropi-drawer.component.spec.ts +84 -0
  135. package/src/components-source/dropi-drawer/dropi-drawer.component.ts +90 -0
  136. package/src/components-source/dropi-dropdown/dropi-dropdown.component.html +30 -0
  137. package/src/components-source/dropi-dropdown/dropi-dropdown.component.scss +58 -0
  138. package/src/components-source/dropi-dropdown/dropi-dropdown.component.spec.ts +213 -0
  139. package/src/components-source/dropi-dropdown/dropi-dropdown.component.stories.ts +143 -0
  140. package/src/components-source/dropi-dropdown/dropi-dropdown.component.ts +53 -0
  141. package/src/components-source/dropi-favorite-button/dropi-favorite-button.component.html +23 -0
  142. package/src/components-source/dropi-favorite-button/dropi-favorite-button.component.scss +21 -0
  143. package/src/components-source/dropi-favorite-button/dropi-favorite-button.component.spec.ts +240 -0
  144. package/src/components-source/dropi-favorite-button/dropi-favorite-button.component.ts +31 -0
  145. package/src/components-source/dropi-file-upload/card-view/card-view.component.html +154 -0
  146. package/src/components-source/dropi-file-upload/card-view/card-view.component.scss +118 -0
  147. package/src/components-source/dropi-file-upload/card-view/card-view.component.ts +72 -0
  148. package/src/components-source/dropi-file-upload/drop-zone/drop-zone.coment.stories.ts +179 -0
  149. package/src/components-source/dropi-file-upload/drop-zone/drop-zone.component.html +111 -0
  150. package/src/components-source/dropi-file-upload/drop-zone/drop-zone.component.scss +90 -0
  151. package/src/components-source/dropi-file-upload/drop-zone/drop-zone.component.ts +172 -0
  152. package/src/components-source/dropi-file-upload/dropi-file-upload.component.html +42 -0
  153. package/src/components-source/dropi-file-upload/dropi-file-upload.component.scss +31 -0
  154. package/src/components-source/dropi-file-upload/dropi-file-upload.component.spec.ts +398 -0
  155. package/src/components-source/dropi-file-upload/dropi-file-upload.component.stories.ts +139 -0
  156. package/src/components-source/dropi-file-upload/dropi-file-upload.component.ts +329 -0
  157. package/src/components-source/dropi-file-upload/file-list/file-list.component.html +51 -0
  158. package/src/components-source/dropi-file-upload/file-list/file-list.component.scss +60 -0
  159. package/src/components-source/dropi-file-upload/file-list/file-list.component.ts +84 -0
  160. package/src/components-source/dropi-file-upload/grid-view/grid-view.component.html +77 -0
  161. package/src/components-source/dropi-file-upload/grid-view/grid-view.component.scss +85 -0
  162. package/src/components-source/dropi-file-upload/grid-view/grid-view.component.ts +35 -0
  163. package/src/components-source/dropi-ilustration-icon/dropi-ilustration-icon.component.html +38 -0
  164. package/src/components-source/dropi-ilustration-icon/dropi-ilustration-icon.component.scss +59 -0
  165. package/src/components-source/dropi-ilustration-icon/dropi-ilustration-icon.component.spec.ts +214 -0
  166. package/src/components-source/dropi-ilustration-icon/dropi-ilustration-icon.component.ts +65 -0
  167. package/src/components-source/dropi-image-overlay/dropi-image-overlay.component.html +54 -0
  168. package/src/components-source/dropi-image-overlay/dropi-image-overlay.component.scss +210 -0
  169. package/src/components-source/dropi-image-overlay/dropi-image-overlay.component.spec.ts +145 -0
  170. package/src/components-source/dropi-image-overlay/dropi-image-overlay.component.ts +76 -0
  171. package/src/components-source/dropi-image-overlay/dropi-image-overlay.stories.ts +267 -0
  172. package/src/components-source/dropi-languages-selector/dropi-languages-selector.component.html +17 -0
  173. package/src/components-source/dropi-languages-selector/dropi-languages-selector.component.scss +82 -0
  174. package/src/components-source/dropi-languages-selector/dropi-languages-selector.component.spec.ts +152 -0
  175. package/src/components-source/dropi-languages-selector/dropi-languages-selector.component.ts +41 -0
  176. package/src/components-source/dropi-logo/dropi-logo.component.html +3 -0
  177. package/src/components-source/dropi-logo/dropi-logo.component.scss +20 -0
  178. package/src/components-source/dropi-logo/dropi-logo.component.spec.ts +274 -0
  179. package/src/components-source/dropi-logo/dropi-logo.component.ts +24 -0
  180. package/src/components-source/dropi-modal/dropi-modal-stack.service.ts +75 -0
  181. package/src/components-source/dropi-modal/dropi-modal.component.html +55 -0
  182. package/src/components-source/dropi-modal/dropi-modal.component.scss +274 -0
  183. package/src/components-source/dropi-modal/dropi-modal.component.spec.ts +46 -0
  184. package/src/components-source/dropi-modal/dropi-modal.component.stories.ts +392 -0
  185. package/src/components-source/dropi-modal/dropi-modal.component.ts +392 -0
  186. package/src/components-source/dropi-modal/p-template.directive.ts +11 -0
  187. package/src/components-source/dropi-navbar/dropi-navbar.component.html +41 -0
  188. package/src/components-source/dropi-navbar/dropi-navbar.component.scss +227 -0
  189. package/src/components-source/dropi-navbar/dropi-navbar.component.spec.ts +110 -0
  190. package/src/components-source/dropi-navbar/dropi-navbar.component.ts +52 -0
  191. package/src/components-source/dropi-paginator/dropi-paginator.component.html +64 -0
  192. package/src/components-source/dropi-paginator/dropi-paginator.component.scss +43 -0
  193. package/src/components-source/dropi-paginator/dropi-paginator.component.spec.ts +285 -0
  194. package/src/components-source/dropi-paginator/dropi-paginator.component.stories.ts +345 -0
  195. package/src/components-source/dropi-paginator/dropi-paginator.component.ts +85 -0
  196. package/src/components-source/dropi-phone-input/dropi-phone-input.component.html +93 -0
  197. package/src/components-source/dropi-phone-input/dropi-phone-input.component.scss +224 -0
  198. package/src/components-source/dropi-phone-input/dropi-phone-input.component.spec.ts +376 -0
  199. package/src/components-source/dropi-phone-input/dropi-phone-input.component.ts +203 -0
  200. package/src/components-source/dropi-phone-input/numeric-input.directive.ts +17 -0
  201. package/src/components-source/dropi-radio-button/dropi-radio-button.component.html +8 -0
  202. package/src/components-source/dropi-radio-button/dropi-radio-button.component.scss +33 -0
  203. package/src/components-source/dropi-radio-button/dropi-radio-button.component.spec.ts +225 -0
  204. package/src/components-source/dropi-radio-button/dropi-radio-button.component.ts +48 -0
  205. package/src/components-source/dropi-search/dropi-search.component.html +124 -0
  206. package/src/components-source/dropi-search/dropi-search.component.scss +116 -0
  207. package/src/components-source/dropi-search/dropi-search.component.spec.ts +483 -0
  208. package/src/components-source/dropi-search/dropi-search.component.stories.ts +267 -0
  209. package/src/components-source/dropi-search/dropi-search.component.ts +230 -0
  210. package/src/components-source/dropi-select/dropi-select.component.html +158 -0
  211. package/src/components-source/dropi-select/dropi-select.component.scss +275 -0
  212. package/src/components-source/dropi-select/dropi-select.component.spec.ts +386 -0
  213. package/src/components-source/dropi-select/dropi-select.component.stories.ts +686 -0
  214. package/src/components-source/dropi-select/dropi-select.component.ts +465 -0
  215. package/src/components-source/dropi-skeleton/dropi-skeleton.component.html +10 -0
  216. package/src/components-source/dropi-skeleton/dropi-skeleton.component.scss +28 -0
  217. package/src/components-source/dropi-skeleton/dropi-skeleton.component.spec.ts +273 -0
  218. package/src/components-source/dropi-skeleton/dropi-skeleton.component.stories.ts +145 -0
  219. package/src/components-source/dropi-skeleton/dropi-skeleton.component.ts +30 -0
  220. package/src/components-source/dropi-steps/dropi-steps.component.html +29 -0
  221. package/src/components-source/dropi-steps/dropi-steps.component.scss +110 -0
  222. package/src/components-source/dropi-steps/dropi-steps.component.spec.ts +228 -0
  223. package/src/components-source/dropi-steps/dropi-steps.component.stories.ts +231 -0
  224. package/src/components-source/dropi-steps/dropi-steps.component.ts +98 -0
  225. package/src/components-source/dropi-switch/dropi-switch.component.html +4 -0
  226. package/src/components-source/dropi-switch/dropi-switch.component.scss +50 -0
  227. package/src/components-source/dropi-switch/dropi-switch.component.spec.ts +105 -0
  228. package/src/components-source/dropi-switch/dropi-switch.component.stories.ts +106 -0
  229. package/src/components-source/dropi-switch/dropi-switch.component.ts +22 -0
  230. package/src/components-source/dropi-table/dropi-table.component.html +395 -0
  231. package/src/components-source/dropi-table/dropi-table.component.scss +506 -0
  232. package/src/components-source/dropi-table/dropi-table.component.spec.ts +578 -0
  233. package/src/components-source/dropi-table/dropi-table.component.stories.ts +313 -0
  234. package/src/components-source/dropi-table/dropi-table.component.ts +580 -0
  235. package/src/components-source/dropi-tag/dropi-tag.component.html +17 -0
  236. package/src/components-source/dropi-tag/dropi-tag.component.scss +50 -0
  237. package/src/components-source/dropi-tag/dropi-tag.component.spec.ts +267 -0
  238. package/src/components-source/dropi-tag/dropi-tag.component.stories.ts +290 -0
  239. package/src/components-source/dropi-tag/dropi-tag.component.ts +92 -0
  240. package/src/components-source/dropi-text-area/droip-text-area.component.stories.ts +138 -0
  241. package/src/components-source/dropi-text-area/dropi-text-area.component.html +63 -0
  242. package/src/components-source/dropi-text-area/dropi-text-area.component.scss +106 -0
  243. package/src/components-source/dropi-text-area/dropi-text-area.component.spec.ts +507 -0
  244. package/src/components-source/dropi-text-area/dropi-text-area.component.ts +80 -0
  245. package/src/components-source/dropi-tooltip/dropi-tooltip.component.html +70 -0
  246. package/src/components-source/dropi-tooltip/dropi-tooltip.component.scss +250 -0
  247. package/src/components-source/dropi-tooltip/dropi-tooltip.component.spec.ts +423 -0
  248. package/src/components-source/dropi-tooltip/dropi-tooltip.component.ts +153 -0
  249. package/src/components-source/dropi-youtube-lazy-video/dropi-youtube-lazy-video.component.html +20 -0
  250. package/src/components-source/dropi-youtube-lazy-video/dropi-youtube-lazy-video.component.scss +63 -0
  251. package/src/components-source/dropi-youtube-lazy-video/dropi-youtube-lazy-video.component.spec.ts +121 -0
  252. package/src/components-source/dropi-youtube-lazy-video/dropi-youtube-lazy-video.component.ts +43 -0
  253. package/src/components-source/dropi-youtube-lazy-video/dropi-youtube-lazy-video.stories.ts +125 -0
  254. package/src/components-source/empty-state/empty-state.component.html +30 -0
  255. package/src/components-source/empty-state/empty-state.component.scss +76 -0
  256. package/src/components-source/empty-state/empty-state.component.spec.ts +244 -0
  257. package/src/components-source/empty-state/empty-state.component.stories.ts +198 -0
  258. package/src/components-source/empty-state/empty-state.component.ts +34 -0
  259. package/src/components-source/file-upload-progress-bar/file-upload-progress-bar.component.html +81 -0
  260. package/src/components-source/file-upload-progress-bar/file-upload-progress-bar.component.scss +86 -0
  261. package/src/components-source/file-upload-progress-bar/file-upload-progress-bar.component.spec.ts +27 -0
  262. package/src/components-source/file-upload-progress-bar/file-upload-progress-bar.component.stories.ts +149 -0
  263. package/src/components-source/file-upload-progress-bar/file-upload-progress-bar.component.ts +89 -0
  264. package/src/components-source/foundations/dropi-border-radius-demo/dropi-border-radius-demo.component.scss +32 -0
  265. package/src/components-source/foundations/dropi-border-radius-demo/dropi-border-radius-demo.component.ts +17 -0
  266. package/src/components-source/foundations/foundations.component.html +183 -0
  267. package/src/components-source/foundations/foundations.component.scss +31 -0
  268. package/src/components-source/foundations/foundations.component.ts +26 -0
  269. package/src/components-source/icon/icon-names.const.ts +270 -0
  270. package/src/components-source/icon/icon.component.html +3 -0
  271. package/src/components-source/icon/icon.component.scss +4 -0
  272. package/src/components-source/icon/icon.component.spec.ts +304 -0
  273. package/src/components-source/icon/icon.component.ts +53 -0
  274. package/src/components-source/index.ts +89 -0
  275. package/src/components-source/input/input.component.html +97 -0
  276. package/src/components-source/input/input.component.scss +149 -0
  277. package/src/components-source/input/input.component.spec.ts +243 -0
  278. package/src/components-source/input/input.component.stories.ts +269 -0
  279. package/src/components-source/input/input.component.ts +119 -0
  280. package/src/components-source/lottie-loader/lottie-loader.component.html +16 -0
  281. package/src/components-source/lottie-loader/lottie-loader.component.scss +32 -0
  282. package/src/components-source/lottie-loader/lottie-loader.component.spec.ts +103 -0
  283. package/src/components-source/lottie-loader/lottie-loader.component.ts +20 -0
  284. package/src/components-source/otp-send-code/mock-otp-services.ts +214 -0
  285. package/src/components-source/otp-send-code/otp-send-code.component.html +151 -0
  286. package/src/components-source/otp-send-code/otp-send-code.component.scss +156 -0
  287. package/src/components-source/otp-send-code/otp-send-code.component.spec.ts +419 -0
  288. package/src/components-source/otp-send-code/otp-send-code.component.stories.ts +190 -0
  289. package/src/components-source/otp-send-code/otp-send-code.component.ts +659 -0
  290. package/src/components-source/radio-selection-list/radio-selection-list.component.html +107 -0
  291. package/src/components-source/radio-selection-list/radio-selection-list.component.scss +280 -0
  292. package/src/components-source/radio-selection-list/radio-selection-list.component.spec.ts +243 -0
  293. package/src/components-source/radio-selection-list/radio-selection-list.component.stories.ts +313 -0
  294. package/src/components-source/radio-selection-list/radio-selection-list.component.ts +143 -0
  295. package/src/components-source/read-more/read-more.component.html +14 -0
  296. package/src/components-source/read-more/read-more.component.scss +16 -0
  297. package/src/components-source/read-more/read-more.component.spec.ts +272 -0
  298. package/src/components-source/read-more/read-more.component.stories.ts +131 -0
  299. package/src/components-source/read-more/read-more.component.ts +88 -0
  300. package/src/components-source/sidebar/sidebar.component.html +42 -0
  301. package/src/components-source/sidebar/sidebar.component.scss +70 -0
  302. package/src/components-source/sidebar/sidebar.component.spec.ts +354 -0
  303. package/src/components-source/sidebar/sidebar.component.stories.ts +145 -0
  304. package/src/components-source/sidebar/sidebar.component.ts +105 -0
  305. package/src/components-source/simple-stepper/simple-stepper.component.html +17 -0
  306. package/src/components-source/simple-stepper/simple-stepper.component.scss +117 -0
  307. package/src/components-source/simple-stepper/simple-stepper.component.spec.ts +348 -0
  308. package/src/components-source/simple-stepper/simple-stepper.component.stories.ts +104 -0
  309. package/src/components-source/simple-stepper/simple-stepper.component.ts +69 -0
  310. package/src/components-source/storybook-doc-components/avatars-storybook/avatars-storybook.component.html +192 -0
  311. package/src/components-source/storybook-doc-components/avatars-storybook/avatars-storybook.component.scss +15 -0
  312. package/src/components-source/storybook-doc-components/avatars-storybook/avatars-storybook.component.ts +17 -0
  313. package/src/components-source/storybook-doc-components/border-radius-storybook/border-radius-storybook.component.html +22 -0
  314. package/src/components-source/storybook-doc-components/border-radius-storybook/border-radius-storybook.component.scss +0 -0
  315. package/src/components-source/storybook-doc-components/border-radius-storybook/border-radius-storybook.component.ts +54 -0
  316. package/src/components-source/storybook-doc-components/breakpoints-and-grids-storybook/breakpoints-and-grids-storybook.component.css +81 -0
  317. package/src/components-source/storybook-doc-components/breakpoints-and-grids-storybook/breakpoints-and-grids-storybook.component.html +143 -0
  318. package/src/components-source/storybook-doc-components/breakpoints-and-grids-storybook/breakpoints-and-grids-storybook.component.ts +97 -0
  319. package/src/components-source/storybook-doc-components/colors-storybook/colors-storybook.component.css +10 -0
  320. package/src/components-source/storybook-doc-components/colors-storybook/colors-storybook.component.html +63 -0
  321. package/src/components-source/storybook-doc-components/colors-storybook/colors-storybook.component.ts +542 -0
  322. package/src/components-source/storybook-doc-components/dropi-modal/dropi-modal.component.html +132 -0
  323. package/src/components-source/storybook-doc-components/dropi-modal/dropi-modal.component.scss +15 -0
  324. package/src/components-source/storybook-doc-components/dropi-modal/dropi-modal.component.ts +67 -0
  325. package/src/components-source/storybook-doc-components/dropi-toast/dropi-toast.component.html +156 -0
  326. package/src/components-source/storybook-doc-components/dropi-toast/dropi-toast.component.scss +13 -0
  327. package/src/components-source/storybook-doc-components/dropi-toast/dropi-toast.component.ts +55 -0
  328. package/src/components-source/storybook-doc-components/flags-storybook/flags-storybook.component.css +0 -0
  329. package/src/components-source/storybook-doc-components/flags-storybook/flags-storybook.component.html +99 -0
  330. package/src/components-source/storybook-doc-components/flags-storybook/flags-storybook.component.ts +19 -0
  331. package/src/components-source/storybook-doc-components/icons-storybook/icons-storybook.component.css +82 -0
  332. package/src/components-source/storybook-doc-components/icons-storybook/icons-storybook.component.html +111 -0
  333. package/src/components-source/storybook-doc-components/icons-storybook/icons-storybook.component.ts +196 -0
  334. package/src/components-source/storybook-doc-components/logo-storybook/logo-foundations.component.ts +19 -0
  335. package/src/components-source/storybook-doc-components/logo-storybook/logo-storybook.component.css +0 -0
  336. package/src/components-source/storybook-doc-components/logo-storybook/logo-storybook.component.html +104 -0
  337. package/src/components-source/storybook-doc-components/lustration-storybook/lustration-storybook.component.css +0 -0
  338. package/src/components-source/storybook-doc-components/lustration-storybook/lustration-storybook.component.html +218 -0
  339. package/src/components-source/storybook-doc-components/lustration-storybook/lustration-storybook.component.ts +20 -0
  340. package/src/components-source/storybook-doc-components/shadow-storybook/shadow-storybook.component.html +21 -0
  341. package/src/components-source/storybook-doc-components/shadow-storybook/shadow-storybook.component.scss +0 -0
  342. package/src/components-source/storybook-doc-components/shadow-storybook/shadow-storybook.component.ts +66 -0
  343. package/src/components-source/storybook-doc-components/spacing-storybook/spacing-storybook.component.html +33 -0
  344. package/src/components-source/storybook-doc-components/spacing-storybook/spacing-storybook.component.scss +0 -0
  345. package/src/components-source/storybook-doc-components/spacing-storybook/spacing-storybook.component.ts +37 -0
  346. package/src/components-source/storybook-doc-components/story-page/story-page.component.html +74 -0
  347. package/src/components-source/storybook-doc-components/story-page/story-page.component.scss +103 -0
  348. package/src/components-source/storybook-doc-components/story-page/story-page.component.ts +424 -0
  349. package/src/components-source/storybook-doc-components/template-breakpoint-storybook/template-breakpoint-storybook.component.html +35 -0
  350. package/src/components-source/storybook-doc-components/template-breakpoint-storybook/template-breakpoint-storybook.component.scss +64 -0
  351. package/src/components-source/storybook-doc-components/template-breakpoint-storybook/template-breakpoint-storybook.component.ts +71 -0
  352. package/src/components-source/storybook-doc-components/tillte-table-documentation/tillte-table-documentation.component.html +44 -0
  353. package/src/components-source/storybook-doc-components/tillte-table-documentation/tillte-table-documentation.component.scss +270 -0
  354. package/src/components-source/storybook-doc-components/tillte-table-documentation/tillte-table-documentation.component.ts +153 -0
  355. package/src/components-source/tabs/tabs.component.html +26 -0
  356. package/src/components-source/tabs/tabs.component.scss +62 -0
  357. package/src/components-source/tabs/tabs.component.spec.ts +212 -0
  358. package/src/components-source/tabs/tabs.component.stories.ts +203 -0
  359. package/src/components-source/tabs/tabs.component.ts +138 -0
  360. package/src/components-source/tag-type-product/tag-type-product.component.html +1 -0
  361. package/src/components-source/tag-type-product/tag-type-product.component.scss +10 -0
  362. package/src/components-source/tag-type-product/tag-type-product.component.spec.ts +38 -0
  363. package/src/components-source/tag-type-product/tag-type-product.component.ts +9 -0
  364. package/src/components-source/toast/toast.component.html +37 -0
  365. package/src/components-source/toast/toast.component.scss +142 -0
  366. package/src/components-source/toast/toast.component.spec.ts +368 -0
  367. package/src/components-source/toast/toast.component.ts +59 -0
  368. package/src/components-source/toast/toast.stories.ts +69 -0
  369. package/src/components-source/tooltip/tooltip.component.html +46 -0
  370. package/src/components-source/tooltip/tooltip.component.scss +44 -0
  371. package/src/components-source/tooltip/tooltip.component.spec.ts +327 -0
  372. package/src/components-source/tooltip/tooltip.component.ts +24 -0
  373. package/src/components-source/ui-dropi.module.ts +125 -0
  374. package/src/components-source/ui-inventory.json +1138 -0
  375. package/src/components-source/vertical-steps/vertical-steps.component.html +35 -0
  376. package/src/components-source/vertical-steps/vertical-steps.component.scss +143 -0
  377. package/src/components-source/vertical-steps/vertical-steps.component.spec.ts +121 -0
  378. package/src/components-source/vertical-steps/vertical-steps.component.stories.ts +216 -0
  379. package/src/components-source/vertical-steps/vertical-steps.component.ts +151 -0
  380. package/src/index.ts +31 -0
  381. package/src/lib/bootstrap.ts +28 -0
  382. package/src/lib/dropi-ui-elements/dropi-ui-elements.component.html +1 -0
  383. package/src/lib/dropi-ui-elements/dropi-ui-elements.component.scss +0 -0
  384. package/src/lib/dropi-ui-elements/dropi-ui-elements.component.spec.ts +21 -0
  385. package/src/lib/dropi-ui-elements/dropi-ui-elements.component.ts +9 -0
  386. package/src/lib/elements-registry.ts +66 -0
  387. package/src/lib/elements.module.ts +22 -0
  388. package/src/styles.scss +152 -0
  389. package/src/test-setup.ts +6 -0
  390. package/tsconfig.json +28 -0
  391. package/tsconfig.lib.json +18 -0
  392. package/tsconfig.lib.prod.json +9 -0
  393. package/tsconfig.spec.json +12 -0
@@ -0,0 +1,368 @@
1
+ import { ComponentFixture, TestBed } from '@angular/core/testing';
2
+ import { ToastComponent } from './toast.component';
3
+ import { MessageService } from 'primeng/api';
4
+ import { ToastService } from '@app/services/toast.service';
5
+ import { SettingsService } from '../../services/setting.service';
6
+ import { Subject } from 'rxjs';
7
+ import { ToastProps } from '@app/utilities/interfaces/ui/toast.interface';
8
+ import { NoopAnimationsModule } from '@angular/platform-browser/animations';
9
+
10
+ describe('ToastComponent', () => {
11
+ let component: ToastComponent;
12
+ let fixture: ComponentFixture<ToastComponent>;
13
+ let mockMessageService: any;
14
+ let mockToastService: any;
15
+ let mockSettingsService: any;
16
+ let toastOpenSubject: Subject<ToastProps>;
17
+
18
+ beforeEach(async () => {
19
+ toastOpenSubject = new Subject<ToastProps>();
20
+
21
+ mockMessageService = {
22
+ add: jest.fn(),
23
+ clear: jest.fn(),
24
+ };
25
+
26
+ mockToastService = {
27
+ toastOpen$: toastOpenSubject.asObservable(),
28
+ showSuccess: jest.fn(),
29
+ showError: jest.fn(),
30
+ showWarning: jest.fn(),
31
+ showInfo: jest.fn(),
32
+ };
33
+
34
+ mockSettingsService = {
35
+ getBrand: jest.fn().mockReturnValue({ name: 'Dropi' }),
36
+ };
37
+
38
+ await TestBed.configureTestingModule({
39
+ imports: [ToastComponent, NoopAnimationsModule],
40
+ providers: [
41
+ { provide: MessageService, useValue: mockMessageService },
42
+ { provide: ToastService, useValue: mockToastService },
43
+ { provide: SettingsService, useValue: mockSettingsService },
44
+ ],
45
+ }).compileComponents();
46
+
47
+ fixture = TestBed.createComponent(ToastComponent);
48
+ component = fixture.componentInstance;
49
+ });
50
+
51
+ describe('Inicialización del componente', () => {
52
+ it('should create', () => {
53
+ expect(component).toBeTruthy();
54
+ });
55
+
56
+ it('should initialize with default values', () => {
57
+ expect(component.forceBrandIsDropi).toBe(false);
58
+ });
59
+
60
+ it('should load animations configuration', () => {
61
+ expect(component.animations).toBeDefined();
62
+ expect(component.animations.success).toContain('success.json');
63
+ expect(component.animations.error).toContain('failure.json');
64
+ expect(component.animations.warn).toContain('warning.json');
65
+ expect(component.animations.info).toContain('question.json');
66
+ });
67
+
68
+ it('should load icons configuration', () => {
69
+ expect(component.icons).toBeDefined();
70
+ expect(component.icons.success).toContain('check.svg');
71
+ expect(component.icons.error).toContain('cross-circle.svg');
72
+ expect(component.icons.warn).toContain('info.svg');
73
+ expect(component.icons.info).toContain('comment-round-info.svg');
74
+ });
75
+ });
76
+
77
+ describe('Configuración de marca', () => {
78
+ it('should detect Dropi brand', () => {
79
+ mockSettingsService.getBrand.mockReturnValue({ name: 'Dropi' });
80
+
81
+ component.ngOnInit();
82
+
83
+ expect(component.brandName).toBe('dropi');
84
+ expect(component.brandIsDropi).toBe(true);
85
+ });
86
+
87
+ it('should detect other brands', () => {
88
+ mockSettingsService.getBrand.mockReturnValue({ name: 'OtherBrand' });
89
+
90
+ component.ngOnInit();
91
+
92
+ expect(component.brandName).toBe('otherbrand');
93
+ expect(component.brandIsDropi).toBe(false);
94
+ });
95
+
96
+ it('should force Dropi brand when requested', () => {
97
+ mockSettingsService.getBrand.mockReturnValue({ name: 'OtherBrand' });
98
+ component.forceBrandIsDropi = true;
99
+
100
+ component.ngOnInit();
101
+
102
+ expect(component.brandIsDropi).toBe(true);
103
+ });
104
+
105
+ it('should handle null brand name', () => {
106
+ mockSettingsService.getBrand.mockReturnValue({ name: null });
107
+
108
+ expect(() => component.ngOnInit()).not.toThrow();
109
+ });
110
+ });
111
+
112
+ describe('Suscripción a eventos de toast', () => {
113
+ it('should subscribe to toast open events', () => {
114
+ // Initialize component ngOnInit manually
115
+ component.ngOnInit();
116
+
117
+ const toastProps: ToastProps = {
118
+ severity: 'success',
119
+ summary: 'Success',
120
+ detail: 'Operation completed',
121
+ };
122
+
123
+ toastOpenSubject.next(toastProps);
124
+
125
+ expect(mockMessageService.add).toHaveBeenCalledWith(toastProps);
126
+ });
127
+
128
+ it('should handle success toast', () => {
129
+ mockMessageService.add.mockClear();
130
+ component.ngOnInit();
131
+
132
+ const successToast: ToastProps = {
133
+ severity: 'success',
134
+ summary: 'Success',
135
+ detail: 'Item saved successfully',
136
+ };
137
+
138
+ toastOpenSubject.next(successToast);
139
+
140
+ expect(mockMessageService.add).toHaveBeenCalledWith(successToast);
141
+ });
142
+
143
+ it('should handle error toast', () => {
144
+ mockMessageService.add.mockClear();
145
+ component.ngOnInit();
146
+
147
+ const errorToast: ToastProps = {
148
+ severity: 'error',
149
+ summary: 'Error',
150
+ detail: 'An error occurred',
151
+ };
152
+
153
+ toastOpenSubject.next(errorToast);
154
+
155
+ expect(mockMessageService.add).toHaveBeenCalledWith(errorToast);
156
+ });
157
+
158
+ it('should handle warning toast', () => {
159
+ mockMessageService.add.mockClear();
160
+ component.ngOnInit();
161
+
162
+ const warnToast: ToastProps = {
163
+ severity: 'warn',
164
+ summary: 'Warning',
165
+ detail: 'Please check your input',
166
+ };
167
+
168
+ toastOpenSubject.next(warnToast);
169
+
170
+ expect(mockMessageService.add).toHaveBeenCalledWith(warnToast);
171
+ });
172
+
173
+ it('should handle info toast', () => {
174
+ mockMessageService.add.mockClear();
175
+ component.ngOnInit();
176
+
177
+ const infoToast: ToastProps = {
178
+ severity: 'info',
179
+ summary: 'Information',
180
+ detail: 'New features available',
181
+ };
182
+
183
+ toastOpenSubject.next(infoToast);
184
+
185
+ expect(mockMessageService.add).toHaveBeenCalledWith(infoToast);
186
+ });
187
+ });
188
+
189
+ describe('Múltiples toasts', () => {
190
+ it('should handle multiple toast messages', () => {
191
+ mockMessageService.add.mockClear();
192
+ component.ngOnInit();
193
+
194
+ const toast1: ToastProps = {
195
+ severity: 'success',
196
+ summary: 'Success',
197
+ detail: 'First message',
198
+ };
199
+
200
+ const toast2: ToastProps = {
201
+ severity: 'error',
202
+ summary: 'Error',
203
+ detail: 'Second message',
204
+ };
205
+
206
+ toastOpenSubject.next(toast1);
207
+ toastOpenSubject.next(toast2);
208
+
209
+ expect(mockMessageService.add).toHaveBeenCalledTimes(2);
210
+ expect(mockMessageService.add).toHaveBeenNthCalledWith(1, toast1);
211
+ expect(mockMessageService.add).toHaveBeenNthCalledWith(2, toast2);
212
+ });
213
+ });
214
+
215
+ describe('Propiedades de toast', () => {
216
+ it('should handle toast with life property', () => {
217
+ // Clear any previous calls
218
+ mockMessageService.add.mockClear();
219
+
220
+ component.ngOnInit();
221
+
222
+ const toastProps: ToastProps = {
223
+ severity: 'info',
224
+ summary: 'Info',
225
+ detail: 'Auto-close message',
226
+ life: 5000,
227
+ };
228
+
229
+ toastOpenSubject.next(toastProps);
230
+
231
+ expect(mockMessageService.add).toHaveBeenCalledWith(toastProps);
232
+ });
233
+
234
+ it('should handle toast with sticky property', () => {
235
+ // Clear any previous calls
236
+ mockMessageService.add.mockClear();
237
+
238
+ component.ngOnInit();
239
+
240
+ const toastProps: ToastProps = {
241
+ severity: 'warn',
242
+ summary: 'Warning',
243
+ detail: 'Sticky message',
244
+ sticky: true,
245
+ };
246
+
247
+ toastOpenSubject.next(toastProps);
248
+
249
+ expect(mockMessageService.add).toHaveBeenCalledWith(toastProps);
250
+ });
251
+
252
+ it('should handle toast with closable property', () => {
253
+ // Clear any previous calls
254
+ mockMessageService.add.mockClear();
255
+
256
+ component.ngOnInit();
257
+
258
+ const toastProps: ToastProps = {
259
+ severity: 'success',
260
+ summary: 'Success',
261
+ detail: 'Closable message',
262
+ closable: true,
263
+ };
264
+
265
+ toastOpenSubject.next(toastProps);
266
+
267
+ expect(mockMessageService.add).toHaveBeenCalledWith(toastProps);
268
+ });
269
+ });
270
+
271
+ describe('Ciclo de vida', () => {
272
+ it('should unsubscribe on destroy', () => {
273
+ component.ngOnInit();
274
+ const unsubscribeSpy = jest.spyOn(component['suscriptions'], 'unsubscribe');
275
+
276
+ component.ngOnDestroy();
277
+
278
+ expect(unsubscribeSpy).toHaveBeenCalled();
279
+ });
280
+
281
+ it('should not throw error if destroyed before init', () => {
282
+ expect(() => component.ngOnDestroy()).not.toThrow();
283
+ });
284
+ });
285
+
286
+ describe('Configuración de assets', () => {
287
+ it('should have correct animation paths', () => {
288
+ expect(component.animations.success).toBe('/assets/lottie-files/success.json');
289
+ expect(component.animations.warn).toBe('/assets/lottie-files/warning.json');
290
+ expect(component.animations.info).toBe('/assets/lottie-files/question.json');
291
+ expect(component.animations.error).toBe('/assets/lottie-files/failure.json');
292
+ });
293
+
294
+ it('should have correct icon paths', () => {
295
+ expect(component.icons.success).toBe('/assets/img/icons/custom/check.svg');
296
+ expect(component.icons.warn).toBe('/assets/img/icons/custom/info.svg');
297
+ expect(component.icons.info).toBe('/assets/img/icons/custom/comment-round-info.svg');
298
+ expect(component.icons.error).toBe('/assets/img/icons/custom/cross-circle.svg');
299
+ });
300
+ });
301
+
302
+ describe('Integración completa', () => {
303
+ it('should handle complete toast workflow', () => {
304
+ // Clear any previous calls
305
+ mockMessageService.add.mockClear();
306
+
307
+ // Initialize
308
+ component.ngOnInit();
309
+ expect(component.brandIsDropi).toBe(true);
310
+
311
+ // Show success
312
+ const successToast: ToastProps = {
313
+ severity: 'success',
314
+ summary: 'Saved',
315
+ detail: 'Your changes have been saved',
316
+ };
317
+ toastOpenSubject.next(successToast);
318
+ expect(mockMessageService.add).toHaveBeenCalledWith(successToast);
319
+
320
+ // Show error
321
+ const errorToast: ToastProps = {
322
+ severity: 'error',
323
+ summary: 'Error',
324
+ detail: 'Failed to save',
325
+ };
326
+ toastOpenSubject.next(errorToast);
327
+ expect(mockMessageService.add).toHaveBeenCalledWith(errorToast);
328
+
329
+ // Cleanup
330
+ component.ngOnDestroy();
331
+ });
332
+ });
333
+
334
+ describe('Edge cases', () => {
335
+ it('should handle empty toast properties', () => {
336
+ // Clear any previous calls
337
+ mockMessageService.add.mockClear();
338
+
339
+ component.ngOnInit();
340
+
341
+ const emptyToast: ToastProps = {
342
+ severity: 'info',
343
+ summary: '',
344
+ detail: '',
345
+ };
346
+
347
+ toastOpenSubject.next(emptyToast);
348
+
349
+ expect(mockMessageService.add).toHaveBeenCalledWith(emptyToast);
350
+ });
351
+
352
+ it('should handle toast without detail', () => {
353
+ // Clear any previous calls
354
+ mockMessageService.add.mockClear();
355
+
356
+ component.ngOnInit();
357
+
358
+ const toast: ToastProps = {
359
+ severity: 'success',
360
+ summary: 'Success',
361
+ };
362
+
363
+ toastOpenSubject.next(toast);
364
+
365
+ expect(mockMessageService.add).toHaveBeenCalledWith(toast);
366
+ });
367
+ });
368
+ });
@@ -0,0 +1,59 @@
1
+ import { Component, OnInit, CUSTOM_ELEMENTS_SCHEMA, Input } from '@angular/core';
2
+ import { Subscription } from 'rxjs';
3
+ import { MessageService } from 'primeng/api';
4
+
5
+ import { ToastService } from '@app/services/toast.service';
6
+ import { ToastProps } from '@app/utilities/interfaces/ui/toast.interface';
7
+ import { CommonModule } from '@angular/common';
8
+ import { SettingsService } from '../../services/setting.service';
9
+ import { ToastModule } from 'primeng/toast';
10
+
11
+ @Component({
12
+ selector: 'app-toast',
13
+ templateUrl: './toast.component.html',
14
+ styleUrls: ['./toast.component.scss'],
15
+ standalone: true,
16
+ imports: [CommonModule, ToastModule],
17
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
18
+ })
19
+ export class ToastComponent implements OnInit {
20
+ @Input() forceBrandIsDropi: boolean = false;
21
+ private readonly suscriptions: Subscription = new Subscription();
22
+ brandName: string;
23
+ brandIsDropi: boolean;
24
+
25
+ animations = {
26
+ success: '/assets/lottie-files/success.json',
27
+ warn: '/assets/lottie-files/warning.json',
28
+ info: '/assets/lottie-files/question.json',
29
+ error: '/assets/lottie-files/failure.json',
30
+ };
31
+
32
+ icons = {
33
+ success: '/assets/img/icons/custom/check.svg',
34
+ warn: '/assets/img/icons/custom/info.svg',
35
+ info: '/assets/img/icons/custom/comment-round-info.svg',
36
+ error: '/assets/img/icons/custom/cross-circle.svg',
37
+ };
38
+
39
+ constructor(
40
+ private readonly messageService: MessageService,
41
+ private readonly toastService: ToastService,
42
+ private readonly settingsService: SettingsService,
43
+ ) {}
44
+
45
+ ngOnInit() {
46
+ this.brandName = this.settingsService.getBrand()?.name?.toLowerCase();
47
+ this.brandIsDropi = this.forceBrandIsDropi || this.brandName === 'dropi';
48
+
49
+ this.suscriptions.add(
50
+ this.toastService.toastOpen$.subscribe((props: ToastProps) => {
51
+ this.messageService.add(props);
52
+ }),
53
+ );
54
+ }
55
+
56
+ ngOnDestroy() {
57
+ this.suscriptions.unsubscribe();
58
+ }
59
+ }
@@ -0,0 +1,69 @@
1
+ /**
2
+ * @fileoverview Toast notification component stories for Storybook
3
+ * @description Toast notification system for displaying feedback messages
4
+ */
5
+ import { DropiToastStoryComponent } from '@app/ui/storybook-doc-components/dropi-toast/dropi-toast.component';
6
+ import { Meta, StoryObj, moduleMetadata } from '@storybook/angular';
7
+ import { ToastService } from '@app/services/toast.service';
8
+ import '@dotlottie/player-component';
9
+
10
+ const meta: Meta<DropiToastStoryComponent> = {
11
+ title: 'UI Dropi/Toast',
12
+ component: DropiToastStoryComponent,
13
+ decorators: [
14
+ moduleMetadata({
15
+ providers: [ToastService],
16
+ }),
17
+ ],
18
+ parameters: {
19
+ layout: 'fullscreen',
20
+ previewTabs: {
21
+ canvas: { hidden: true },
22
+ 'storybook/docs/panel': { hidden: false },
23
+ },
24
+ controls: { disable: true },
25
+ options: {
26
+ showPanel: false,
27
+ },
28
+ docs: {
29
+ description: {
30
+ component: `
31
+ # Toast Component
32
+
33
+ A notification system for displaying temporary feedback messages to users.
34
+
35
+ ## Key Features
36
+ - **Multiple types**: Success, error, warning, info
37
+ - **Auto-dismiss**: Configurable duration
38
+ - **Brand support**: Different styles for Dropi and White Label
39
+ - **Animated**: Smooth entry/exit animations
40
+ `,
41
+ },
42
+ },
43
+ },
44
+ };
45
+
46
+ export default meta;
47
+
48
+ /**
49
+ * Default toast configuration
50
+ */
51
+ export const Default: StoryObj<DropiToastStoryComponent> = {};
52
+
53
+ /**
54
+ * Toast with Dropi branding
55
+ */
56
+ export const Dropi: StoryObj<DropiToastStoryComponent> = {
57
+ args: {
58
+ forceBrandIsDropi: true,
59
+ },
60
+ };
61
+
62
+ /**
63
+ * Toast with White Label branding
64
+ */
65
+ export const WhiteLabel: StoryObj<DropiToastStoryComponent> = {
66
+ args: {
67
+ forceBrandIsDropi: false,
68
+ },
69
+ };
@@ -0,0 +1,46 @@
1
+ <span
2
+ (click)="question.show($event)"
3
+ (mouseenter)="question.show($event)"
4
+ (mouseleave)="question.hide($event)"
5
+ class="icon-tooltip"
6
+ >
7
+ <ng-container *ngIf="!outlined; else tooltipOutlined">
8
+ <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path
10
+ d="M6.99972 0.144531C5.64351 0.144531 4.31775 0.546696 3.1901 1.30017C2.06245 2.05364 1.18355 3.12458 0.66455 4.37756C0.145549 5.63054 0.00975496 7.00928 0.274339 8.33943C0.538924 9.66959 1.192 10.8914 2.15099 11.8504C3.10998 12.8094 4.33181 13.4625 5.66196 13.7271C6.99212 13.9916 8.37086 13.8558 9.62384 13.3368C10.8768 12.8178 11.9478 11.9389 12.7012 10.8113C13.4547 9.68364 13.8569 8.35789 13.8569 7.00167C13.8549 5.18365 13.1318 3.44065 11.8463 2.15511C10.5607 0.869576 8.81775 0.146498 6.99972 0.144531ZM6.99972 11.5731C6.8867 11.5731 6.77622 11.5396 6.68225 11.4768C6.58828 11.414 6.51504 11.3248 6.47179 11.2203C6.42854 11.1159 6.41722 11.001 6.43927 10.8902C6.46132 10.7793 6.51575 10.6775 6.59566 10.5976C6.67558 10.5177 6.7774 10.4633 6.88824 10.4412C6.99909 10.4192 7.11398 10.4305 7.2184 10.4737C7.32281 10.517 7.41206 10.5902 7.47485 10.6842C7.53764 10.7782 7.57115 10.8887 7.57115 11.0017C7.57115 11.1532 7.51095 11.2986 7.40378 11.4057C7.29662 11.5129 7.15127 11.5731 6.99972 11.5731ZM8.10258 7.29081C7.93395 7.39625 7.79605 7.54423 7.70276 7.71988C7.60947 7.89552 7.56408 8.09263 7.57115 8.29139V8.71596C7.57115 8.86751 7.51095 9.01285 7.40378 9.12002C7.29662 9.22718 7.15127 9.28739 6.99972 9.28739C6.84817 9.28739 6.70283 9.22718 6.59566 9.12002C6.4885 9.01285 6.42829 8.86751 6.42829 8.71596V8.29139C6.41985 7.8882 6.51947 7.4901 6.71682 7.13841C6.91417 6.78672 7.20205 6.49426 7.55058 6.29139C7.76171 6.1751 7.93066 5.99504 8.0333 5.77695C8.13593 5.55886 8.16698 5.3139 8.12201 5.0771C8.07748 4.8515 7.96672 4.6443 7.80386 4.48195C7.64101 4.31961 7.43346 4.20949 7.20772 4.16567C7.04299 4.13518 6.87357 4.14128 6.71146 4.18354C6.54935 4.22579 6.39851 4.30317 6.26962 4.4102C6.14073 4.51722 6.03695 4.65127 5.96562 4.80286C5.8943 4.95444 5.85717 5.11986 5.85686 5.28739C5.85686 5.43894 5.79666 5.58428 5.6895 5.69145C5.58233 5.79861 5.43699 5.85882 5.28544 5.85882C5.13388 5.85882 4.98854 5.79861 4.88138 5.69145C4.77421 5.58428 4.71401 5.43894 4.71401 5.28739C4.71415 4.88425 4.82091 4.48832 5.02347 4.13976C5.22602 3.7912 5.51716 3.50241 5.86735 3.30269C6.21754 3.10297 6.61432 2.99942 7.01745 3.00255C7.42058 3.00568 7.81571 3.11537 8.16276 3.3205C8.5098 3.52562 8.79643 3.81889 8.99355 4.17055C9.19067 4.52221 9.29128 4.91975 9.28517 5.32284C9.27906 5.72593 9.16645 6.12024 8.95876 6.46576C8.75107 6.81128 8.45569 7.0963 8.10258 7.29081Z"
11
+ fill="#7B8190"
12
+ />
13
+ </svg>
14
+ </ng-container>
15
+ </span>
16
+
17
+ <div
18
+ (click)="question.show($event)"
19
+ (mouseenter)="question.show($event)"
20
+ (mouseleave)="question.hide($event)"
21
+ class="icon-tooltip"
22
+ style="width: 100%"
23
+ ></div>
24
+
25
+ <div class="questiontooltip">
26
+ <p-overlayPanel #question [styleClass]="'question-tooltip'" [appendTo]="questionTooltip">
27
+ <div class="inner-container" [innerHTML]="text"></div>
28
+ </p-overlayPanel>
29
+ </div>
30
+
31
+ <ng-template #tooltipOutlined>
32
+ <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
33
+ <path
34
+ d="M6 1.5C5.0111 1.5 4.0444 1.79324 3.22215 2.34265C2.39991 2.89206 1.75904 3.67295 1.3806 4.58658C1.00217 5.50021 0.90315 6.50555 1.09608 7.47545C1.289 8.44536 1.76521 9.33627 2.46447 10.0355C3.16373 10.7348 4.05465 11.211 5.02455 11.4039C5.99446 11.5969 6.99979 11.4978 7.91342 11.1194C8.82705 10.741 9.60794 10.1001 10.1573 9.27785C10.7068 8.45561 11 7.48891 11 6.5C10.9986 5.17436 10.4713 3.90342 9.53395 2.96605C8.59658 2.02868 7.32564 1.50143 6 1.5ZM6 10.6667C5.17591 10.6667 4.37033 10.4223 3.68513 9.96446C2.99992 9.50662 2.46587 8.85587 2.1505 8.09451C1.83514 7.33316 1.75263 6.49538 1.9134 5.68712C2.07417 4.87887 2.47101 4.13644 3.05372 3.55372C3.63644 2.971 4.37887 2.57417 5.18713 2.41339C5.99538 2.25262 6.83316 2.33514 7.59452 2.6505C8.35588 2.96587 9.00662 3.49992 9.46446 4.18512C9.9223 4.87033 10.1667 5.67591 10.1667 6.5C10.1655 7.6047 9.72608 8.6638 8.94494 9.44494C8.1638 10.2261 7.1047 10.6655 6 10.6667Z"
35
+ fill="#A3ABBF"
36
+ />
37
+ <path
38
+ d="M6.29881 3.60945C6.05853 3.56567 5.81157 3.57523 5.57539 3.63746C5.33922 3.6997 5.11961 3.81307 4.9321 3.96957C4.7446 4.12607 4.59378 4.32187 4.49032 4.54311C4.38686 4.76435 4.33329 5.00563 4.3334 5.24986C4.3334 5.36037 4.3773 5.46635 4.45544 5.54449C4.53358 5.62263 4.63956 5.66653 4.75006 5.66653C4.86057 5.66653 4.96655 5.62263 5.04469 5.54449C5.12283 5.46635 5.16673 5.36037 5.16673 5.24986C5.16662 5.12727 5.19357 5.00616 5.24564 4.89518C5.29772 4.78419 5.37363 4.68607 5.46799 4.60779C5.56234 4.52952 5.6728 4.47302 5.79149 4.44234C5.91018 4.41166 6.03418 4.40754 6.15464 4.43028C6.31924 4.46223 6.47058 4.54252 6.58933 4.6609C6.70808 4.77928 6.78884 4.93036 6.82131 5.09486C6.8541 5.26753 6.83146 5.44615 6.75662 5.60517C6.68179 5.7642 6.55859 5.89549 6.40464 5.98028C6.14971 6.12797 5.93905 6.34133 5.79461 6.59811C5.65017 6.8549 5.57723 7.14572 5.58339 7.44028V7.74986C5.58339 7.86037 5.62729 7.96635 5.70543 8.04449C5.78357 8.12263 5.88955 8.16653 6.00006 8.16653C6.11057 8.16653 6.21655 8.12263 6.29469 8.04449C6.37283 7.96635 6.41673 7.86037 6.41673 7.74986V7.44028C6.4115 7.29529 6.44456 7.15147 6.51259 7.02332C6.58061 6.89517 6.6812 6.7872 6.80423 6.71028C7.10611 6.54448 7.3492 6.28922 7.50009 5.97962C7.65098 5.67001 7.70225 5.32126 7.64684 4.98133C7.59143 4.6414 7.43208 4.32698 7.19068 4.08132C6.94929 3.83565 6.63772 3.67081 6.29881 3.60945Z"
39
+ fill="#A3ABBF"
40
+ />
41
+ <path
42
+ d="M6.41674 8.99987C6.41674 8.76975 6.23019 8.5832 6.00007 8.5832C5.76995 8.5832 5.5834 8.76975 5.5834 8.99987C5.5834 9.22999 5.76995 9.41654 6.00007 9.41654C6.23019 9.41654 6.41674 9.22999 6.41674 8.99987Z"
43
+ fill="#A3ABBF"
44
+ />
45
+ </svg>
46
+ </ng-template>
@@ -0,0 +1,44 @@
1
+ .icon-tooltip {
2
+ cursor: pointer;
3
+ }
4
+
5
+ .question-tooltip {
6
+ background: #495057;
7
+ color: #fff;
8
+ padding: 0px;
9
+ font-size: 12px;
10
+ border-radius: 4px;
11
+ max-width: 200px;
12
+ text-align: center;
13
+ margin-left: -8px;
14
+ .p-overlaypanel-content {
15
+ padding: 6px 10px !important;
16
+ }
17
+ .content-div {
18
+ line-height: 16px;
19
+ color: #ffffffb0;
20
+ }
21
+
22
+ &:after {
23
+ border: solid transparent;
24
+ border-color: rgba(255, 255, 255, 0);
25
+ border-bottom-color: #495057;
26
+ }
27
+
28
+ &:before {
29
+ border: solid transparent;
30
+ border-color: rgba(255, 255, 255, 0);
31
+ border-bottom-color: #495057;
32
+ }
33
+
34
+ &:before {
35
+ border-width: 7px;
36
+ margin-left: -12px;
37
+ }
38
+
39
+ .inner-container {
40
+ margin: 0;
41
+ padding: 0;
42
+ text-align: start;
43
+ }
44
+ }