master-control 0.2.6 → 0.2.8

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 (328) hide show
  1. package/ng-package.json +7 -0
  2. package/package.json +12 -25
  3. package/src/lib/add-document/add-document.component.css +50 -0
  4. package/src/lib/add-document/add-document.component.html +31 -0
  5. package/src/lib/add-document/add-document.component.ts +17 -0
  6. package/src/lib/addition-button/addition-button.component.css +16 -0
  7. package/src/lib/addition-button/addition-button.component.html +20 -0
  8. package/src/lib/addition-button/addition-button.component.ts +13 -0
  9. package/src/lib/age-date/age-date.component.css +126 -0
  10. package/src/lib/age-date/age-date.component.html +82 -0
  11. package/src/lib/age-date/age-date.component.ts +104 -0
  12. package/src/lib/amount-textbox/amount-textbox.component.css +131 -0
  13. package/src/lib/amount-textbox/amount-textbox.component.html +69 -0
  14. package/src/lib/amount-textbox/amount-textbox.component.ts +53 -0
  15. package/src/lib/annuity-rate-logo/annuity-rate-logo.component.css +9 -0
  16. package/src/lib/annuity-rate-logo/annuity-rate-logo.component.html +6 -0
  17. package/src/lib/annuity-rate-logo/annuity-rate-logo.component.ts +13 -0
  18. package/src/lib/autocomplete/autocomplete.component.css +240 -0
  19. package/src/lib/autocomplete/autocomplete.component.html +61 -0
  20. package/src/lib/autocomplete/autocomplete.component.ts +85 -0
  21. package/src/lib/benefit-card/benefit-card.component.css +46 -0
  22. package/src/lib/benefit-card/benefit-card.component.html +25 -0
  23. package/src/lib/benefit-card/benefit-card.component.ts +13 -0
  24. package/src/lib/button/button.component.css +24 -0
  25. package/src/lib/button/button.component.html +22 -0
  26. package/src/lib/button/button.component.ts +16 -0
  27. package/src/lib/card/card.component.css +37 -0
  28. package/src/lib/card/card.component.html +24 -0
  29. package/src/lib/card/card.component.ts +13 -0
  30. package/src/lib/checkbox/checkbox.component.css +65 -0
  31. package/src/lib/checkbox/checkbox.component.html +23 -0
  32. package/src/lib/checkbox/checkbox.component.ts +70 -0
  33. package/src/lib/discount/discount.component.css +45 -0
  34. package/src/lib/discount/discount.component.html +51 -0
  35. package/src/lib/discount/discount.component.ts +14 -0
  36. package/src/lib/discount-v2/discount-v2.component.css +34 -0
  37. package/src/lib/discount-v2/discount-v2.component.html +20 -0
  38. package/src/lib/discount-v2/discount-v2.component.ts +14 -0
  39. package/src/lib/dob/dob.component.css +117 -0
  40. package/src/lib/dob/dob.component.html +88 -0
  41. package/src/lib/dob/dob.component.ts +107 -0
  42. package/src/lib/download-document/download-document.component.css +53 -0
  43. package/src/lib/download-document/download-document.component.html +38 -0
  44. package/src/lib/download-document/download-document.component.ts +17 -0
  45. package/src/lib/email-with-domain/email-with-domain.component.css +130 -0
  46. package/src/lib/email-with-domain/email-with-domain.component.html +73 -0
  47. package/src/lib/email-with-domain/email-with-domain.component.ts +51 -0
  48. package/src/lib/error-snackbar/error-snackbar.component.css +36 -0
  49. package/src/lib/error-snackbar/error-snackbar.component.html +21 -0
  50. package/src/lib/error-snackbar/error-snackbar.component.ts +19 -0
  51. package/src/lib/grey-label/grey-label.component.css +13 -0
  52. package/src/lib/grey-label/grey-label.component.html +7 -0
  53. package/src/lib/grey-label/grey-label.component.ts +13 -0
  54. package/src/lib/header/header.component.css +13 -0
  55. package/src/lib/header/header.component.html +9 -0
  56. package/src/lib/header/header.component.ts +14 -0
  57. package/src/lib/hr-line/hr-line.component.css +13 -0
  58. package/src/lib/hr-line/hr-line.component.html +7 -0
  59. package/src/lib/hr-line/hr-line.component.ts +13 -0
  60. package/src/lib/hyperlink/hyperlink.component.css +18 -0
  61. package/src/lib/hyperlink/hyperlink.component.html +8 -0
  62. package/src/lib/hyperlink/hyperlink.component.ts +13 -0
  63. package/src/lib/icon-button/icon-button.component.css +20 -0
  64. package/src/lib/icon-button/icon-button.component.html +17 -0
  65. package/src/lib/icon-button/icon-button.component.ts +13 -0
  66. package/src/lib/iframe/iframe.component.css +0 -0
  67. package/src/lib/iframe/iframe.component.html +7 -0
  68. package/src/lib/iframe/iframe.component.ts +32 -0
  69. package/src/lib/image/image.component.css +7 -0
  70. package/src/lib/image/image.component.html +3 -0
  71. package/src/lib/image/image.component.ts +13 -0
  72. package/src/lib/image-upload/image-upload.component.css +67 -0
  73. package/src/lib/image-upload/image-upload.component.html +61 -0
  74. package/src/lib/image-upload/image-upload.component.ts +17 -0
  75. package/src/lib/in-built-benefit/in-built-benefit.component.css +58 -0
  76. package/src/lib/in-built-benefit/in-built-benefit.component.html +30 -0
  77. package/src/lib/in-built-benefit/in-built-benefit.component.ts +16 -0
  78. package/src/lib/info/info.component.css +25 -0
  79. package/src/lib/info/info.component.html +21 -0
  80. package/src/lib/info/info.component.ts +15 -0
  81. package/src/lib/info-textbox/info-textbox.component.css +121 -0
  82. package/src/lib/info-textbox/info-textbox.component.html +83 -0
  83. package/src/lib/info-textbox/info-textbox.component.ts +52 -0
  84. package/src/lib/label/label.component.css +13 -0
  85. package/src/lib/label/label.component.html +7 -0
  86. package/src/lib/label/label.component.ts +14 -0
  87. package/src/lib/label-value-card/label-value-card.component.css +34 -0
  88. package/src/lib/label-value-card/label-value-card.component.html +12 -0
  89. package/src/lib/label-value-card/label-value-card.component.ts +15 -0
  90. package/src/lib/loader/loader.component.css +127 -0
  91. package/src/lib/loader/loader.component.html +37 -0
  92. package/src/lib/loader/loader.component.spec.ts +23 -0
  93. package/src/lib/loader/loader.component.ts +13 -0
  94. package/src/lib/master-control.component.css +0 -0
  95. package/src/lib/master-control.component.html +216 -0
  96. package/src/lib/master-control.component.spec.ts +23 -0
  97. package/src/lib/master-control.component.ts +143 -0
  98. package/src/lib/master-control.service.spec.ts +16 -0
  99. package/src/lib/master-control.service.ts +214 -0
  100. package/src/lib/medial-questions/medial-questions.component.css +52 -0
  101. package/src/lib/medial-questions/medial-questions.component.html +250 -0
  102. package/src/lib/medial-questions/medial-questions.component.ts +689 -0
  103. package/{esm2022 → src}/lib/medial-questions/questions.json +39682 -39682
  104. package/src/lib/mob-number/mob-number.component.css +141 -0
  105. package/src/lib/mob-number/mob-number.component.html +82 -0
  106. package/src/lib/mob-number/mob-number.component.ts +53 -0
  107. package/src/lib/multiple-select/multiple-select.component.css +331 -0
  108. package/src/lib/multiple-select/multiple-select.component.html +100 -0
  109. package/src/lib/multiple-select/multiple-select.component.ts +115 -0
  110. package/src/lib/neutral-snackbar/neutral-snackbar.component.css +31 -0
  111. package/src/lib/neutral-snackbar/neutral-snackbar.component.html +21 -0
  112. package/src/lib/neutral-snackbar/neutral-snackbar.component.ts +19 -0
  113. package/src/lib/other-benefits/other-benefits.component.css +78 -0
  114. package/src/lib/other-benefits/other-benefits.component.html +21 -0
  115. package/src/lib/other-benefits/other-benefits.component.ts +13 -0
  116. package/src/lib/otp-mob-number/otp-mob-number.component.css +171 -0
  117. package/src/lib/otp-mob-number/otp-mob-number.component.html +101 -0
  118. package/src/lib/otp-mob-number/otp-mob-number.component.ts +54 -0
  119. package/src/lib/otp-textbox/otp-textbox.component.css +168 -0
  120. package/src/lib/otp-textbox/otp-textbox.component.html +84 -0
  121. package/src/lib/otp-textbox/otp-textbox.component.ts +57 -0
  122. package/src/lib/page-nudge/page-nudge.component.css +35 -0
  123. package/src/lib/page-nudge/page-nudge.component.html +13 -0
  124. package/src/lib/page-nudge/page-nudge.component.ts +13 -0
  125. package/src/lib/pay-get-card/pay-get-card.component.css +36 -0
  126. package/src/lib/pay-get-card/pay-get-card.component.html +20 -0
  127. package/src/lib/pay-get-card/pay-get-card.component.ts +18 -0
  128. package/src/lib/radio/radio.component.css +57 -0
  129. package/src/lib/radio/radio.component.html +37 -0
  130. package/src/lib/radio/radio.component.ts +55 -0
  131. package/src/lib/search-multi-select/search-multi-select.component.css +325 -0
  132. package/src/lib/search-multi-select/search-multi-select.component.html +125 -0
  133. package/src/lib/search-multi-select/search-multi-select.component.ts +164 -0
  134. package/src/lib/select/select.component.css +246 -0
  135. package/src/lib/select/select.component.html +72 -0
  136. package/src/lib/select/select.component.ts +95 -0
  137. package/src/lib/select-textbox/select-textbox.component.css +262 -0
  138. package/src/lib/select-textbox/select-textbox.component.html +77 -0
  139. package/src/lib/select-textbox/select-textbox.component.ts +72 -0
  140. package/src/lib/stepper/stepper.component.css +25 -0
  141. package/src/lib/stepper/stepper.component.html +16 -0
  142. package/src/lib/stepper/stepper.component.ts +20 -0
  143. package/src/lib/sub-header/sub-header.component.css +13 -0
  144. package/src/lib/sub-header/sub-header.component.html +9 -0
  145. package/src/lib/sub-header/sub-header.component.ts +13 -0
  146. package/src/lib/subscript-textbox/subscript-textbox.component.css +139 -0
  147. package/src/lib/subscript-textbox/subscript-textbox.component.html +85 -0
  148. package/src/lib/subscript-textbox/subscript-textbox.component.ts +53 -0
  149. package/src/lib/success-snackbar/success-snackbar.component.css +32 -0
  150. package/src/lib/success-snackbar/success-snackbar.component.html +21 -0
  151. package/src/lib/success-snackbar/success-snackbar.component.ts +19 -0
  152. package/src/lib/suffix-textbox/suffix-textbox.component.css +157 -0
  153. package/src/lib/suffix-textbox/suffix-textbox.component.html +84 -0
  154. package/src/lib/suffix-textbox/suffix-textbox.component.ts +54 -0
  155. package/src/lib/tab/tab.component.css +19 -0
  156. package/src/lib/tab/tab.component.html +17 -0
  157. package/src/lib/tab/tab.component.ts +27 -0
  158. package/src/lib/table/table.component.css +121 -0
  159. package/src/lib/table/table.component.html +41 -0
  160. package/src/lib/table/table.component.spec.ts +23 -0
  161. package/src/lib/table/table.component.ts +84 -0
  162. package/src/lib/tag-mob-number/tag-mob-number.component.css +167 -0
  163. package/src/lib/tag-mob-number/tag-mob-number.component.html +95 -0
  164. package/src/lib/tag-mob-number/tag-mob-number.component.ts +55 -0
  165. package/src/lib/textarea/textarea.component.css +34 -0
  166. package/src/lib/textarea/textarea.component.html +23 -0
  167. package/src/lib/textarea/textarea.component.ts +16 -0
  168. package/src/lib/textbox/textbox.component.css +118 -0
  169. package/src/lib/textbox/textbox.component.html +80 -0
  170. package/src/lib/textbox/textbox.component.ts +55 -0
  171. package/src/lib/textbox-with-image/textbox-with-image.component.css +118 -0
  172. package/src/lib/textbox-with-image/textbox-with-image.component.html +82 -0
  173. package/src/lib/textbox-with-image/textbox-with-image.component.ts +47 -0
  174. package/src/lib/textbox-with-text/textbox-with-text.component.css +124 -0
  175. package/src/lib/textbox-with-text/textbox-with-text.component.html +84 -0
  176. package/src/lib/textbox-with-text/textbox-with-text.component.ts +53 -0
  177. package/src/lib/textbox-with-underscore/textbox-with-underscore.component.css +121 -0
  178. package/src/lib/textbox-with-underscore/textbox-with-underscore.component.html +79 -0
  179. package/src/lib/textbox-with-underscore/textbox-with-underscore.component.ts +62 -0
  180. package/src/lib/toggle/toggle.component.css +101 -0
  181. package/src/lib/toggle/toggle.component.html +39 -0
  182. package/src/lib/toggle/toggle.component.ts +16 -0
  183. package/src/lib/toggle-button/toggle-button.component.css +87 -0
  184. package/src/lib/toggle-button/toggle-button.component.html +34 -0
  185. package/src/lib/toggle-button/toggle-button.component.ts +14 -0
  186. package/src/lib/underscore-mob-number/underscore-mob-number.component.css +147 -0
  187. package/src/lib/underscore-mob-number/underscore-mob-number.component.html +87 -0
  188. package/src/lib/underscore-mob-number/underscore-mob-number.component.ts +65 -0
  189. package/src/lib/upload/upload.component.css +81 -0
  190. package/src/lib/upload/upload.component.html +62 -0
  191. package/src/lib/upload/upload.component.ts +20 -0
  192. package/src/lib/warning-snackbar/warning-snackbar.component.css +29 -0
  193. package/src/lib/warning-snackbar/warning-snackbar.component.html +21 -0
  194. package/src/lib/warning-snackbar/warning-snackbar.component.ts +19 -0
  195. package/{public-api.d.ts → src/public-api.ts} +60 -56
  196. package/tsconfig.lib.json +15 -0
  197. package/tsconfig.lib.prod.json +11 -0
  198. package/tsconfig.spec.json +15 -0
  199. package/esm2022/lib/add-document/add-document.component.mjs +0 -18
  200. package/esm2022/lib/addition-button/addition-button.component.mjs +0 -14
  201. package/esm2022/lib/age-date/age-date.component.mjs +0 -132
  202. package/esm2022/lib/amount-textbox/amount-textbox.component.mjs +0 -63
  203. package/esm2022/lib/annuity-rate-logo/annuity-rate-logo.component.mjs +0 -15
  204. package/esm2022/lib/autocomplete/autocomplete.component.mjs +0 -90
  205. package/esm2022/lib/benefit-card/benefit-card.component.mjs +0 -14
  206. package/esm2022/lib/button/button.component.mjs +0 -19
  207. package/esm2022/lib/card/card.component.mjs +0 -14
  208. package/esm2022/lib/checkbox/checkbox.component.mjs +0 -79
  209. package/esm2022/lib/discount/discount.component.mjs +0 -14
  210. package/esm2022/lib/discount-v2/discount-v2.component.mjs +0 -16
  211. package/esm2022/lib/dob/dob.component.mjs +0 -118
  212. package/esm2022/lib/download-document/download-document.component.mjs +0 -18
  213. package/esm2022/lib/email-with-domain/email-with-domain.component.mjs +0 -60
  214. package/esm2022/lib/error-snackbar/error-snackbar.component.mjs +0 -21
  215. package/esm2022/lib/grey-label/grey-label.component.mjs +0 -14
  216. package/esm2022/lib/header/header.component.mjs +0 -14
  217. package/esm2022/lib/hr-line/hr-line.component.mjs +0 -14
  218. package/esm2022/lib/hyperlink/hyperlink.component.mjs +0 -14
  219. package/esm2022/lib/icon-button/icon-button.component.mjs +0 -14
  220. package/esm2022/lib/iframe/iframe.component.mjs +0 -32
  221. package/esm2022/lib/image/image.component.mjs +0 -14
  222. package/esm2022/lib/image-upload/image-upload.component.mjs +0 -18
  223. package/esm2022/lib/in-built-benefit/in-built-benefit.component.mjs +0 -20
  224. package/esm2022/lib/info/info.component.mjs +0 -19
  225. package/esm2022/lib/info-textbox/info-textbox.component.mjs +0 -62
  226. package/esm2022/lib/label/label.component.mjs +0 -14
  227. package/esm2022/lib/label-value-card/label-value-card.component.mjs +0 -15
  228. package/esm2022/lib/loader/loader.component.mjs +0 -14
  229. package/esm2022/lib/master-control.component.mjs +0 -140
  230. package/esm2022/lib/master-control.service.mjs +0 -212
  231. package/esm2022/lib/medial-questions/medial-questions.component.mjs +0 -601
  232. package/esm2022/lib/mob-number/mob-number.component.mjs +0 -65
  233. package/esm2022/lib/multiple-select/multiple-select.component.mjs +0 -119
  234. package/esm2022/lib/neutral-snackbar/neutral-snackbar.component.mjs +0 -21
  235. package/esm2022/lib/other-benefits/other-benefits.component.mjs +0 -14
  236. package/esm2022/lib/otp-mob-number/otp-mob-number.component.mjs +0 -63
  237. package/esm2022/lib/otp-textbox/otp-textbox.component.mjs +0 -68
  238. package/esm2022/lib/pay-get-card/pay-get-card.component.mjs +0 -29
  239. package/esm2022/lib/radio/radio.component.mjs +0 -58
  240. package/esm2022/lib/search-multi-select/search-multi-select.component.mjs +0 -127
  241. package/esm2022/lib/select/select.component.mjs +0 -99
  242. package/esm2022/lib/select-textbox/select-textbox.component.mjs +0 -83
  243. package/esm2022/lib/stepper/stepper.component.mjs +0 -25
  244. package/esm2022/lib/sub-header/sub-header.component.mjs +0 -14
  245. package/esm2022/lib/subscript-textbox/subscript-textbox.component.mjs +0 -62
  246. package/esm2022/lib/success-snackbar/success-snackbar.component.mjs +0 -21
  247. package/esm2022/lib/suffix-textbox/suffix-textbox.component.mjs +0 -65
  248. package/esm2022/lib/tab/tab.component.mjs +0 -32
  249. package/esm2022/lib/table/table.component.mjs +0 -82
  250. package/esm2022/lib/tag-mob-number/tag-mob-number.component.mjs +0 -66
  251. package/esm2022/lib/textarea/textarea.component.mjs +0 -20
  252. package/esm2022/lib/textbox/textbox.component.mjs +0 -67
  253. package/esm2022/lib/textbox-with-image/textbox-with-image.component.mjs +0 -57
  254. package/esm2022/lib/textbox-with-text/textbox-with-text.component.mjs +0 -58
  255. package/esm2022/lib/textbox-with-underscore/textbox-with-underscore.component.mjs +0 -71
  256. package/esm2022/lib/toggle/toggle.component.mjs +0 -20
  257. package/esm2022/lib/toggle-button/toggle-button.component.mjs +0 -16
  258. package/esm2022/lib/underscore-mob-number/underscore-mob-number.component.mjs +0 -74
  259. package/esm2022/lib/upload/upload.component.mjs +0 -24
  260. package/esm2022/lib/warning-snackbar/warning-snackbar.component.mjs +0 -21
  261. package/esm2022/master-control.mjs +0 -5
  262. package/esm2022/public-api.mjs +0 -60
  263. package/fesm2022/master-control.mjs +0 -42759
  264. package/fesm2022/master-control.mjs.map +0 -1
  265. package/index.d.ts +0 -5
  266. package/lib/add-document/add-document.component.d.ts +0 -6
  267. package/lib/addition-button/addition-button.component.d.ts +0 -6
  268. package/lib/age-date/age-date.component.d.ts +0 -20
  269. package/lib/amount-textbox/amount-textbox.component.d.ts +0 -17
  270. package/lib/annuity-rate-logo/annuity-rate-logo.component.d.ts +0 -7
  271. package/lib/autocomplete/autocomplete.component.d.ts +0 -25
  272. package/lib/benefit-card/benefit-card.component.d.ts +0 -6
  273. package/lib/button/button.component.d.ts +0 -9
  274. package/lib/card/card.component.d.ts +0 -6
  275. package/lib/checkbox/checkbox.component.d.ts +0 -20
  276. package/lib/discount/discount.component.d.ts +0 -6
  277. package/lib/discount-v2/discount-v2.component.d.ts +0 -6
  278. package/lib/dob/dob.component.d.ts +0 -32
  279. package/lib/download-document/download-document.component.d.ts +0 -6
  280. package/lib/email-with-domain/email-with-domain.component.d.ts +0 -19
  281. package/lib/error-snackbar/error-snackbar.component.d.ts +0 -10
  282. package/lib/grey-label/grey-label.component.d.ts +0 -6
  283. package/lib/header/header.component.d.ts +0 -6
  284. package/lib/hr-line/hr-line.component.d.ts +0 -6
  285. package/lib/hyperlink/hyperlink.component.d.ts +0 -6
  286. package/lib/icon-button/icon-button.component.d.ts +0 -6
  287. package/lib/iframe/iframe.component.d.ts +0 -13
  288. package/lib/image/image.component.d.ts +0 -6
  289. package/lib/image-upload/image-upload.component.d.ts +0 -6
  290. package/lib/in-built-benefit/in-built-benefit.component.d.ts +0 -8
  291. package/lib/info/info.component.d.ts +0 -9
  292. package/lib/info-textbox/info-textbox.component.d.ts +0 -16
  293. package/lib/label/label.component.d.ts +0 -6
  294. package/lib/label-value-card/label-value-card.component.d.ts +0 -7
  295. package/lib/loader/loader.component.d.ts +0 -6
  296. package/lib/master-control.component.d.ts +0 -9
  297. package/lib/master-control.service.d.ts +0 -11
  298. package/lib/medial-questions/medial-questions.component.d.ts +0 -62
  299. package/lib/mob-number/mob-number.component.d.ts +0 -21
  300. package/lib/multiple-select/multiple-select.component.d.ts +0 -27
  301. package/lib/neutral-snackbar/neutral-snackbar.component.d.ts +0 -10
  302. package/lib/other-benefits/other-benefits.component.d.ts +0 -6
  303. package/lib/otp-mob-number/otp-mob-number.component.d.ts +0 -17
  304. package/lib/otp-textbox/otp-textbox.component.d.ts +0 -17
  305. package/lib/pay-get-card/pay-get-card.component.d.ts +0 -11
  306. package/lib/radio/radio.component.d.ts +0 -18
  307. package/lib/search-multi-select/search-multi-select.component.d.ts +0 -27
  308. package/lib/select/select.component.d.ts +0 -22
  309. package/lib/select-textbox/select-textbox.component.d.ts +0 -17
  310. package/lib/stepper/stepper.component.d.ts +0 -11
  311. package/lib/sub-header/sub-header.component.d.ts +0 -6
  312. package/lib/subscript-textbox/subscript-textbox.component.d.ts +0 -16
  313. package/lib/success-snackbar/success-snackbar.component.d.ts +0 -10
  314. package/lib/suffix-textbox/suffix-textbox.component.d.ts +0 -16
  315. package/lib/tab/tab.component.d.ts +0 -14
  316. package/lib/table/table.component.d.ts +0 -23
  317. package/lib/tag-mob-number/tag-mob-number.component.d.ts +0 -17
  318. package/lib/textarea/textarea.component.d.ts +0 -9
  319. package/lib/textbox/textbox.component.d.ts +0 -20
  320. package/lib/textbox-with-image/textbox-with-image.component.d.ts +0 -16
  321. package/lib/textbox-with-text/textbox-with-text.component.d.ts +0 -16
  322. package/lib/textbox-with-underscore/textbox-with-underscore.component.d.ts +0 -18
  323. package/lib/toggle/toggle.component.d.ts +0 -9
  324. package/lib/toggle-button/toggle-button.component.d.ts +0 -6
  325. package/lib/underscore-mob-number/underscore-mob-number.component.d.ts +0 -19
  326. package/lib/upload/upload.component.d.ts +0 -9
  327. package/lib/warning-snackbar/warning-snackbar.component.d.ts +0 -10
  328. package/master-control-0.2.6.tgz +0 -0
@@ -0,0 +1,107 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { Component, input } from '@angular/core';
3
+ import { ControlValueAccessor, NG_VALUE_ACCESSOR, ReactiveFormsModule } from '@angular/forms';
4
+ import { MomentDateAdapter, MomentDateModule } from '@angular/material-moment-adapter';
5
+ import { DateAdapter, MAT_DATE_FORMATS } from '@angular/material/core';
6
+ import { MatDatepickerModule } from '@angular/material/datepicker';
7
+ import { MatFormFieldModule } from '@angular/material/form-field';
8
+ import { MatInputModule } from '@angular/material/input';
9
+ import { MasterControlService } from '../master-control.service';
10
+
11
+
12
+ export const MY_DATE_FORMAT = {
13
+ parse: {
14
+ dateInput: [
15
+ 'DD-MM-YYYY',
16
+ 'MM/DD/YYYY',
17
+ 'YYYY/MM/DD',
18
+ 'DD/MM/YYYY',
19
+ 'DD MMM YYYY',
20
+ 'DD MMMM YYYY',
21
+ 'DD-MMM-YYYY'
22
+ ]
23
+ },
24
+ display: {
25
+ dateInput: 'DD-MMM-YYYY',
26
+ monthYearLabel: 'MMM YYYY',
27
+ dateA11yLabel: 'DD-MMM-YYYY',
28
+ monthYearA11yLabel: 'MMMM YYYY'
29
+ }
30
+ };
31
+
32
+ @Component({
33
+ selector: 'lib-dob',
34
+ standalone: true,
35
+ imports: [MatInputModule, MatFormFieldModule, CommonModule, MatDatepickerModule, MomentDateModule, ReactiveFormsModule],
36
+ providers: [
37
+ {
38
+ provide: NG_VALUE_ACCESSOR,
39
+ useExisting: DobComponent,
40
+ multi: true
41
+ },
42
+ {
43
+ provide: DateAdapter,
44
+ useClass: MomentDateAdapter,
45
+ deps: []
46
+ },
47
+ { provide: MAT_DATE_FORMATS, useValue: MY_DATE_FORMAT }
48
+ ],
49
+ templateUrl: './dob.component.html',
50
+ styleUrl: './dob.component.css',
51
+ })
52
+ export class DobComponent implements ControlValueAccessor {
53
+ field: any = input.required<any>();
54
+ inputValue: any = null;
55
+ reactiveFormControlobject : any = input<any>();
56
+
57
+ constructor(public service : MasterControlService) {}
58
+
59
+ dateDivisionFormat(event: any) {
60
+ let evt = event.target;
61
+ if (evt.value.length > 2 && !evt.value.substr(2, 1).includes('-')) {
62
+ evt.value = [evt.value.slice(0, 2), '-', evt.value.slice(2)].join('');
63
+ } else if (
64
+ evt.value.length > 5 &&
65
+ Number(evt.value.substr(3, 2)) &&
66
+ !evt.value.substr(5, 1).includes('-')
67
+ ) {
68
+ evt.value = [evt.value.slice(0, 5), '-', evt.value.slice(5)].join('');
69
+ } else if (
70
+ evt.value.length > 6 &&
71
+ !Number(evt.value.substr(3, 2)) &&
72
+ !evt.value.substr(6, 1).includes('-')
73
+ ) {
74
+ evt.value = [evt.value.slice(0, 6), '-', evt.value.slice(6)].join('');
75
+ }
76
+ }
77
+
78
+ _onChange: any = (inputValue:any) => {};
79
+ _unTouched: any = () => {};
80
+
81
+ writeValue(obj: any): void{
82
+ this.inputValue=obj;
83
+ };
84
+ registerOnChange(fn: any): void{
85
+ this._onChange = fn;
86
+ };
87
+ registerOnTouched(fn: any): void{
88
+ this._unTouched = fn;
89
+ };
90
+ setDisabledState?(isDisabled: boolean): void{};
91
+
92
+ onInputChange(event: any): void {
93
+ this.inputValue = event.target.value;
94
+ this._onChange(this.inputValue);
95
+ }
96
+
97
+ onInputBlur(event : any): void {
98
+ if (!this.service.checkIfValueIsEmpty(event.target.value)) {
99
+ if (isNaN(Date.parse(event.target.value))) {
100
+ event.target.value = '';
101
+ }
102
+
103
+ }
104
+ this._unTouched();
105
+ }
106
+
107
+ }
@@ -0,0 +1,53 @@
1
+ * {
2
+ font-family: "mulish" !important;
3
+ }
4
+
5
+ .upload-label{
6
+ opacity: 0;
7
+ }
8
+ .upload-btn {
9
+ width: 100% !important;
10
+ height: 48px !important;
11
+ padding: 10px;
12
+ border-radius: 8px;
13
+ }
14
+ .upload-btn {
15
+ width: var(--upload-width , 100%) !important;
16
+ border-radius: var(--upload-border-radius , 8px) !important;
17
+ }
18
+ .lightbackground {
19
+ border-color: #999;
20
+ border-width: 1px;
21
+ border-style: dashed;
22
+ background: #ffffff;
23
+ color: #444;
24
+ font-size: 14px;
25
+ font-weight: 700;
26
+ }
27
+ .lightbackground {
28
+ border-color: var(--upload-border-color , #999) !important;
29
+ border-width: var(--upload-border-width , 1px) !important;
30
+ border-style: var(--upload-border-style , dashed) !important;
31
+ background: var(--upload-background-color , #ffffff) !important;
32
+ }
33
+ .upload-icon {
34
+ display: flex;
35
+ justify-content: center;
36
+ gap: 7px;
37
+ }
38
+ .upload-text{
39
+ color: #444 !important;
40
+ font-weight: 700 !important;
41
+ font-size: 14px !important;
42
+ }
43
+ .upload-text{
44
+ color: var(--upload-font-color , #444) !important;
45
+ font-size: var( --upload-font-size , 14px) !important;
46
+ font-weight: var(--upload-font-weight , 700) !important;
47
+ }
48
+ .field-lable{
49
+ font-size: 10px !important;
50
+ font-weight: 700 !important;
51
+ color: #444 !important;
52
+ margin-bottom: 0px !important;
53
+ }
@@ -0,0 +1,38 @@
1
+ <label class="field-lable upload-label" *ngIf="field() && field()?.isVisible && field()?.isShowLabel">{{field()?.label}}</label>
2
+ <input
3
+ hidden
4
+ [type]="field()?.controlType"
5
+ #fileInput
6
+ (click)="(fileInput.value)"
7
+ [required]="field()?.validators?.isRequired"
8
+ />
9
+ <button
10
+ type="button"
11
+ class="upload-btn lightbackground"
12
+ *ngIf="field() && field()?.isVisible"
13
+ [ngStyle]="{
14
+ '--upload-width': field()?.controlStyle?.width ,
15
+ '--upload-border-radius': field()?.controlStyle?.borderRadius ,
16
+ '--upload-border-color': field()?.controlStyle?.borderColor ,
17
+ '--upload-border-width': field()?.controlStyle?.borderWidth ,
18
+ '--upload-border-style': field()?.controlStyle?.borderStyle ,
19
+ '--upload-background-color': field()?.controlStyle?.background ,
20
+ '--upload-focus-border-color': field()?.controlStyle?.focusBorderColor ,
21
+ '--upload-focus-background-color': field()?.controlStyle?.focusBackground ,
22
+ }"
23
+ >
24
+ <span class="upload-icon">
25
+ <span
26
+ ><img
27
+ src="https://cdn.godigit.com/retail-life/Download_Icon.svg"
28
+ alt=""
29
+ class="mb-1"
30
+ /></span>
31
+ <span class="upload-text" [ngStyle]="{
32
+ '--upload-font-color': field()?.controlStyle?.color ,
33
+ '--upload-font-size': field()?.controlStyle?.fontSize ,
34
+ '--upload-font-weight': field()?.controlStyle?.fontWeight,
35
+ '--upload-focus-font-color': field()?.controlStyle?.focusColor ,
36
+ }">{{ field()?.label }}</span>
37
+ </span>
38
+ </button>
@@ -0,0 +1,17 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { Component, input } from '@angular/core';
3
+ import { FormsModule } from '@angular/forms';
4
+
5
+ @Component({
6
+ selector: 'lib-download-document',
7
+ standalone: true,
8
+ imports: [
9
+ CommonModule,
10
+ FormsModule
11
+ ],
12
+ templateUrl: './download-document.component.html',
13
+ styleUrl: './download-document.component.css'
14
+ })
15
+ export class DownloadDocumentComponent {
16
+ field : any = input.required<any>();
17
+ }
@@ -0,0 +1,130 @@
1
+
2
+ .field-lable{
3
+ font-size: 10px !important;
4
+ font-weight: 700 !important;
5
+ color: #444 !important;
6
+ margin-bottom: 0px !important;
7
+ }
8
+ .email-left-side{
9
+ width: 40% !important;
10
+ display: inline-block !important;
11
+ }
12
+ .email-right-side{
13
+ width: 50% !important;
14
+ display: inline-block !important;
15
+ }
16
+ .email-between{
17
+ padding: 0 8px;
18
+ }
19
+
20
+ .error-message{
21
+ color: red;
22
+ }
23
+
24
+ /* focus css for mat-form-field */
25
+ ::ng-deep .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused
26
+ .mat-mdc-notch-piece {
27
+ border-color: var(--custom-border-color-focus, #ffbb00) !important;
28
+ border-width: var(--custom-border-width-focus, 1.5px) !important;
29
+ }
30
+
31
+ ::ng-deep .mat-mdc-form-field {
32
+ background-color: var(--custom-bg-color, #ffffff) !important;
33
+ border-radius: var(--custom-border-radius , 7px) !important;
34
+ }
35
+
36
+ /* hover css for mat-form-field */
37
+
38
+ ::ng-deep .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(
39
+ .mdc-text-field--focused
40
+ ):hover
41
+ .mdc-notched-outline
42
+ .mdc-notched-outline__leading {
43
+ border-color: var(--custom-border-color-hover, #ffbb00) !important;
44
+ border-width: var(--custom-border-width-hover, 1.5px) !important;
45
+ }
46
+
47
+ ::ng-deep .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(
48
+ .mdc-text-field--focused
49
+ ):hover
50
+ .mdc-notched-outline
51
+ .mdc-notched-outline__notch {
52
+ border-color: var(--custom-border-color-hover, #ffbb00) !important;
53
+ border-width: var(--custom-border-width-hover, 1.5px) !important;
54
+ }
55
+
56
+ ::ng-deep .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(
57
+ .mdc-text-field--focused
58
+ ):hover
59
+ .mdc-notched-outline
60
+ .mdc-notched-outline__trailing {
61
+ border-color: var(--custom-border-color-hover, #ffbb00) !important;
62
+ border-width: var(--custom-border-width-hover, 1.5px) !important;
63
+ }
64
+
65
+ /* regular css for mat-form-field */
66
+ ::ng-deep .mdc-text-field--outlined .mat-mdc-notch-piece {
67
+ border-color: var(--custom-border-color, #dddddd) !important;
68
+ border-width: var(--custom-border-width, 1.5px) !important;
69
+ }
70
+
71
+ /* field css for mat-form-input-field */
72
+ ::ng-deep .mdc-text-field--outlined:not(.mdc-text-field--disabled)
73
+ .mdc-text-field__input {
74
+ caret-color: var(--custom-caret-color, #ffbb00) !important;
75
+ /* font-size: var(--custom-font-size, 16px) !important; */
76
+ font-size: 12px !important;
77
+ font-weight: var(--custom-font-weight, 400) !important;
78
+ font-family: var(--custom-font-family, 'Mulish') !important;
79
+ color: var(--custom-font-color, #444444) !important;
80
+ }
81
+ /* Error state for mat-form-field */
82
+ ::ng-deep .mat-form-field-invalid
83
+ .mdc-text-field--outlined .mat-mdc-notch-piece {
84
+ border-color: var(--custom-border-color-error, red) !important;
85
+ border-width: var(--custom-border-width-error, 1.5px) !important;
86
+ }
87
+
88
+ ::ng-deep .mat-mdc-form-field.mat-form-field-disabled{
89
+ background: var(--custom-bg-color-disabled, #ECECEC) !important;
90
+ }
91
+ ::ng-deep .mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input {
92
+ color : var(--custom-font-color-disabled, #999999) !important;
93
+ }
94
+ ::ng-deep .mdc-label {
95
+ color: var(--custom-font-color, #444) !important;
96
+ font-size: var(--custom-font-size, 16px) !important;
97
+ font-weight: var(--custom-font-weight, 400) !important;
98
+ font-family: var(--custom-font-family, 'Mulish') !important;
99
+ }
100
+ ::placeholder {
101
+ color: #8f8f8f !important;
102
+ font-size: 12px !important;
103
+ }
104
+ ::ng-deep .mat-mdc-form-field-hint-wrapper{
105
+ padding: 0px !important;
106
+ }
107
+ ::ng-deep .mat-mdc-form-field-error-wrapper{
108
+ padding: 0px !important;
109
+ }
110
+ ::ng-deep .mat-mdc-form-field-error{
111
+ color: #EE0000 !important;
112
+ font-size: 12px;
113
+ font-weight: 500;
114
+ font-family: "Mulish" !important;
115
+ letter-spacing: 0;
116
+ }
117
+ ::ng-deep .mdc-text-field--outlined {
118
+ --mdc-outlined-text-field-container-shape: var(--custom-border-radius , 7px) !important;
119
+ }
120
+ ::ng-deep .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid .mat-mdc-notch-piece {
121
+ border-color: var(--custom-border-color-error, red) !important;
122
+ border-width: var(--custom-border-width-error, 1.5px) !important;
123
+ }
124
+
125
+ ::ng-deep .mat-mdc-form-field-subscript-wrapper {
126
+ display: none !important;
127
+ }
128
+ * {
129
+ font-family: "mulish" !important;
130
+ }
@@ -0,0 +1,73 @@
1
+ <label *ngIf="field() && field()?.isVisible && field()?.isShowLabel" class="field-lable">{{field()?.label}}<span style="color: red;" *ngIf="field() && field()?.validators?.isRequired">*</span></label>
2
+ <mat-form-field class="w-100" appearance="outline" [ngStyle]="{
3
+ '--custom-border-color': field()?.controlStyle?.borderColor ,
4
+ '--custom-border-width': field()?.controlStyle?.borderWidth ,
5
+ '--custom-bg-color': field()?.controlStyle?.background ,
6
+ '--custom-border-color-focus': field()?.controlStyle?.focusBorderColor ,
7
+ '--custom-border-width-focus': field()?.controlStyle?.focusBorderWidth ,
8
+ '--custom-bg-color-focus': field()?.controlStyle?.focusBackground ,
9
+ '--custom-border-color-hover': field()?.controlStyle?.hoverBorderColor ,
10
+ '--custom-border-width-hover': field()?.controlStyle?.hoverBorderWidth ,
11
+ '--custom-border-color-error': field()?.controlStyle?.errorBorderColor ,
12
+ '--custom-border-width-error': field()?.controlStyle?.errorBorderWidth ,
13
+ '--custom-font-size': field()?.controlStyle?.fontSize ,
14
+ '--custom-font-weight': field()?.controlStyle?.fontWeight ,
15
+ '--custom-font-family': field()?.controlStyle?.fontFamily ,
16
+ '--custom-font-color': field()?.controlStyle?.color ,
17
+ '--custom-caret-color': field()?.controlStyle?.caretColor ,
18
+ '--custom-font-color-disabled' : field()?.controlStyle?.disableColor ,
19
+ '--custom-bg-color-disabled' : field()?.controlStyle?.disableBackground ,
20
+ }">
21
+ @if(reactiveFormControlobject()) {
22
+ <input
23
+ matInput
24
+ autocomplete="none"
25
+ class="email-left-side"
26
+ [name]="field()?.fieldName + '_1'"
27
+ [id]="field()?.fieldName + '_1'"
28
+ [type]="field()?.controlType"
29
+ [placeholder]="field()?.placeHolder"
30
+ [required]="field()?.validators?.isRequired"
31
+ [disabled]="field()?.isDisable"
32
+ [pattern]="field()?.validators?.pattern"
33
+ (blur)="onInputBlur()"
34
+ [value]="inputValue"
35
+ [formControl]="reactiveFormControlobject()"
36
+ />
37
+ }@else {
38
+ <input
39
+ matInput
40
+ autocomplete="none"
41
+ class="email-left-side"
42
+ [name]="field()?.fieldName + '_1'"
43
+ [id]="field()?.fieldName + '_1'"
44
+ [type]="field()?.controlType"
45
+ [placeholder]="field()?.placeHolder"
46
+ [required]="field()?.validators?.isRequired"
47
+ [disabled]="field()?.isDisable"
48
+ [pattern]="field()?.validators?.pattern"
49
+ (blur)="onInputBlur()"
50
+ [value]="inputValue"
51
+ />
52
+ }
53
+ <span class="email-between">&#64;</span>
54
+ <input
55
+ matInput
56
+ autocomplete="none"
57
+ [name]="field()?.fieldName + '_2'"
58
+ [id]="field()?.fieldName + '_2'"
59
+ placeholder="domain.com"
60
+ class="email-right-side"
61
+ [required]="field()?.validators?.isRequired"
62
+ [disabled]="field()?.isDisable"
63
+ />
64
+ <mat-error *ngIf="false">
65
+ {{ field()?.validators?.isRequiredMessage }}
66
+ </mat-error>
67
+ </mat-form-field>
68
+ <div class="error-message" *ngIf="false">
69
+ {{ field()?.validators?.isRequiredMessage }}.
70
+ </div>
71
+ <div class="error-message" *ngIf="false">
72
+ {{ field()?.validators?.patternMessage }}.
73
+ </div>
@@ -0,0 +1,51 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { Component, input } from '@angular/core';
3
+ import { FormsModule, NG_VALUE_ACCESSOR, ReactiveFormsModule } from '@angular/forms';
4
+ import { MatFormFieldModule } from '@angular/material/form-field';
5
+ import { MatInputModule } from '@angular/material/input';
6
+
7
+ @Component({
8
+ selector: 'lib-email-with-domain',
9
+ standalone: true,
10
+ imports: [CommonModule, MatInputModule, MatFormFieldModule, FormsModule, ReactiveFormsModule],
11
+ templateUrl: './email-with-domain.component.html',
12
+ styleUrl: './email-with-domain.component.css',
13
+ providers: [
14
+ {
15
+ provide: NG_VALUE_ACCESSOR,
16
+ useExisting: EmailWithDomainComponent,
17
+ multi: true
18
+ }
19
+ ]
20
+ })
21
+ export class EmailWithDomainComponent {
22
+ pincode: any = '';
23
+ emailUser:any='';
24
+ emailDomain:any='';
25
+
26
+ field: any = input.required<any>();
27
+ reactiveFormControlobject : any = input<any>();
28
+ inputValue: any = null;
29
+ _onChange: any = (inputValue:any) => {};
30
+ _unTouched: any = () => {};
31
+
32
+ writeValue(obj: any): void{
33
+ this.inputValue=obj;
34
+ };
35
+ registerOnChange(fn: any): void{
36
+ this._onChange = fn;
37
+ };
38
+ registerOnTouched(fn: any): void{
39
+ this._unTouched = fn;
40
+ };
41
+ setDisabledState?(isDisabled: boolean): void{};
42
+
43
+ onInputChange(event: any): void {
44
+ this.inputValue = event.target.value;
45
+ this._onChange(this.inputValue);
46
+ }
47
+
48
+ onInputBlur(): void {
49
+ this._unTouched();
50
+ }
51
+ }
@@ -0,0 +1,36 @@
1
+ * {
2
+ font-family: "mulish" !important;
3
+ }
4
+ .error-snackbar-card{
5
+ max-height: 58px;
6
+ max-width: 400px;
7
+ border-radius: 8px;
8
+ background: var(--Colours-Error-100, #FDE5E5);
9
+ border: 1px solid var(--Colours-Error-200, #FCCCCC);
10
+ box-shadow: 0px 2px 15px 2px #E3E6EC99;
11
+ padding: 10px 16px 10px 16px;
12
+ }
13
+ .cross{
14
+ width: 9.86px;
15
+ height: 9.86px;
16
+ cursor: pointer;
17
+ }
18
+ .mat-mdc-snack-bar-container .mat-mdc-snackbar-surface {
19
+ background-color: #444 !important;
20
+ color: #f5f5f5 !important;
21
+ }
22
+ .toaster-label{
23
+ font-size: 14px;
24
+ font-weight: 700;
25
+ color: #444;
26
+ }
27
+ .toaster-img{
28
+ height: 24px;
29
+ width: 24px;
30
+ }
31
+ .toaster-msg{
32
+ font-weight: 400;
33
+ font-size: 12px;
34
+ color: #444;
35
+ line-height: 0px;
36
+ }
@@ -0,0 +1,21 @@
1
+ <div [ngClass]="errorObj.toasterCSS">
2
+ <div class="d-flex justify-content-between">
3
+ <div class="d-flex gap-3">
4
+ <span>
5
+ <img
6
+ [src]="errorObj.imageURL"
7
+ alt=""
8
+ class="mt-1"
9
+ [ngClass]="errorObj.imageCSS"
10
+ />
11
+ </span>
12
+ <span class="mb-2">
13
+ <p class="mb-2" [ngClass]="errorObj.labelCSS">{{errorObj.labelText}}</p>
14
+ <p class="m-0" [ngClass]="errorObj.messageCSS">{{errorObj.messageText}}</p>
15
+ </span>
16
+ </div>
17
+ <div >
18
+ <img class="cross" [ngClass]="errorObj.closeIconCSS" [src]="errorObj.closeIconImageURL" alt="">
19
+ </div>
20
+ </div>
21
+ </div>
@@ -0,0 +1,19 @@
1
+ import { Component, input } from '@angular/core';
2
+ import { MasterControlService } from '../master-control.service';
3
+ import { CommonModule } from '@angular/common';
4
+
5
+ @Component({
6
+ selector: 'lib-error-snackbar',
7
+ standalone: true,
8
+ imports: [CommonModule],
9
+ templateUrl: './error-snackbar.component.html',
10
+ styleUrl: './error-snackbar.component.css'
11
+ })
12
+ export class ErrorSnackbarComponent {
13
+ field : any = input.required<any>();
14
+ errorObj:any;
15
+
16
+ constructor(public masterService : MasterControlService) {
17
+ this.errorObj = this.masterService.snackbars.find((item: any) => item.type === 'Error');
18
+ }
19
+ }
@@ -0,0 +1,13 @@
1
+ * {
2
+ font-family: "mulish" !important;
3
+ }
4
+ .bold-label{
5
+ color: var(--master-bold-label-font-color, #000000) !important;
6
+ font-size: var(--master-bold-label-font-size, 12px) !important;
7
+ font-weight: var(--master-bold-label-font-weight, 600) !important;
8
+ }
9
+ .bold-label{
10
+ color: #000000;
11
+ font-size: 12px;
12
+ font-weight: 600;
13
+ }
@@ -0,0 +1,7 @@
1
+ <div>
2
+ <span class="bold-label" [ngStyle]="{
3
+ '--master-bold-label-font-color': field()?.controlStyle?.color,
4
+ '--master-bold-label-font-size': field()?.controlStyle?.fontSize,
5
+ '--master-bold-label-font-weight': field()?.controlStyle?.fontWeight
6
+ }">{{field()?.label}}</span>
7
+ </div>
@@ -0,0 +1,13 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { Component, input } from '@angular/core';
3
+
4
+ @Component({
5
+ selector: 'lib-grey-label',
6
+ standalone: true,
7
+ imports: [CommonModule],
8
+ templateUrl: './grey-label.component.html',
9
+ styleUrl: './grey-label.component.css'
10
+ })
11
+ export class GreyLabelComponent {
12
+ field : any = input.required<any>();
13
+ }
@@ -0,0 +1,13 @@
1
+ * {
2
+ font-family: "mulish" !important;
3
+ }
4
+ .heading{
5
+ font-weight: 800;
6
+ font-size: 24px;
7
+ color: #000000;
8
+ }
9
+ .heading{
10
+ color: var(--heading-font-color, #000000) !important;
11
+ font-size: var(--heading-font-size, 24px) !important;
12
+ font-weight: var(--heading-font-weight, 800) !important;
13
+ }
@@ -0,0 +1,9 @@
1
+ <div>
2
+ <span class="heading" [ngStyle]="{
3
+ '--heading-font-color': field()?.controlStyle?.color,
4
+ '--heading-font-size': field()?.controlStyle?.fontSize,
5
+ '--heading-font-weight': field()?.controlStyle?.fontWeight
6
+ }">
7
+ {{field()?.label}}
8
+ </span>
9
+ </div>
@@ -0,0 +1,14 @@
1
+ import { Component, input } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+
4
+
5
+ @Component({
6
+ selector: 'lib-header',
7
+ standalone: true,
8
+ imports: [CommonModule],
9
+ templateUrl: './header.component.html',
10
+ styleUrl: './header.component.css'
11
+ })
12
+ export class HeaderComponent {
13
+ field : any = input.required<any>();
14
+ }
@@ -0,0 +1,13 @@
1
+ * {
2
+ font-family: "mulish" !important;
3
+ }
4
+ .master-hr-line{
5
+ border: 1px dashed #DADADA;
6
+ opacity: initial;
7
+ border-image: repeating-linear-gradient(to right, #DADADA 0 6px, transparent 0px 12px) 1 stretch;
8
+ }
9
+ .master-hr-line{
10
+ border-width: var(--hr-line-border-width , 1px) !important;
11
+ border-style: var(--hr-line-border-style , dashed) !important;
12
+ border-color: var(--hr-line-border-color , #DADADA) !important;
13
+ }
@@ -0,0 +1,7 @@
1
+ <div class="col-lg-12">
2
+ <hr class="master-hr-line" [ngStyle]="{
3
+ '--hr-line-border-width': field()?.controlStyle?.borderWidth,
4
+ '--hr-line-border-color': field()?.controlStyle?.borderColor,
5
+ '--hr-line-border-style': field()?.controlStyle?.borderStyle
6
+ }"/>
7
+ </div>
@@ -0,0 +1,13 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { Component, input } from '@angular/core';
3
+
4
+ @Component({
5
+ selector: 'lib-hr-line',
6
+ standalone: true,
7
+ imports: [CommonModule],
8
+ templateUrl: './hr-line.component.html',
9
+ styleUrl: './hr-line.component.css'
10
+ })
11
+ export class HrLineComponent {
12
+ field: any = input.required<any>();
13
+ }