zek 14.2.91 → 16.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 (429) hide show
  1. package/README.md +1 -1
  2. package/{esm2020 → esm2022}/lib/components/args.mjs +1 -1
  3. package/esm2022/lib/components/base.component.mjs +97 -0
  4. package/esm2022/lib/components/core-ui.component.mjs +195 -0
  5. package/esm2022/lib/components/core.component.mjs +40 -0
  6. package/esm2022/lib/components/edit-base.component.mjs +237 -0
  7. package/{esm2020 → esm2022}/lib/components/index.mjs +7 -7
  8. package/esm2022/lib/components/list-base.component.mjs +254 -0
  9. package/{esm2020 → esm2022}/lib/components/types.mjs +1 -1
  10. package/{esm2020 → esm2022}/lib/models/alert-type.mjs +11 -11
  11. package/{esm2020 → esm2022}/lib/models/captcha.model.mjs +1 -1
  12. package/{esm2020 → esm2022}/lib/models/ctor.mjs +1 -1
  13. package/{esm2020 → esm2022}/lib/models/edit-base.model.mjs +2 -2
  14. package/{esm2020 → esm2022}/lib/models/file.model.mjs +19 -19
  15. package/{esm2020 → esm2022}/lib/models/filter.model.mjs +11 -11
  16. package/{esm2020 → esm2022}/lib/models/gender.model.mjs +5 -5
  17. package/{esm2020 → esm2022}/lib/models/index.mjs +17 -17
  18. package/{esm2020 → esm2022}/lib/models/key-pair.model.mjs +13 -13
  19. package/{esm2020 → esm2022}/lib/models/list-base.model.mjs +2 -2
  20. package/{esm2020 → esm2022}/lib/models/login.model.mjs +1 -1
  21. package/{esm2020 → esm2022}/lib/models/month.model.mjs +15 -15
  22. package/{esm2020 → esm2022}/lib/models/nav.model.mjs +1 -1
  23. package/{esm2020 → esm2022}/lib/models/pager.model.mjs +31 -31
  24. package/{esm2020 → esm2022}/lib/models/print.model.mjs +5 -5
  25. package/{esm2020 → esm2022}/lib/models/tree.model.mjs +3 -3
  26. package/{esm2020 → esm2022}/lib/models/valid-event-args.model.mjs +5 -5
  27. package/esm2022/lib/modules/age/age.module.mjs +23 -0
  28. package/esm2022/lib/modules/age/age.pipe.mjs +22 -0
  29. package/{esm2020 → esm2022}/lib/modules/age/index.mjs +2 -2
  30. package/esm2022/lib/modules/alert/alert/alert.mjs +55 -0
  31. package/esm2022/lib/modules/alert/alert.module.mjs +36 -0
  32. package/{esm2020 → esm2022}/lib/modules/alert/index.mjs +5 -5
  33. package/esm2022/lib/modules/alert/toast/toast.mjs +110 -0
  34. package/esm2022/lib/modules/alert/validation/validation.mjs +86 -0
  35. package/esm2022/lib/modules/autocomplete/autocomplete.directive.mjs +25 -0
  36. package/esm2022/lib/modules/autocomplete/autocomplete.module.mjs +23 -0
  37. package/{esm2020 → esm2022}/lib/modules/autocomplete/index.mjs +2 -2
  38. package/esm2022/lib/modules/bb/bb-modal-base.component.mjs +75 -0
  39. package/esm2022/lib/modules/bb/bb-modal-toolbar.mjs +45 -0
  40. package/esm2022/lib/modules/bb/bb.component.mjs +189 -0
  41. package/esm2022/lib/modules/bb/bb.module.mjs +38 -0
  42. package/{esm2020 → esm2022}/lib/modules/bb/index.mjs +4 -4
  43. package/esm2022/lib/modules/callback/callback.module.mjs +23 -0
  44. package/esm2022/lib/modules/callback/callback.pipe.mjs +23 -0
  45. package/{esm2020 → esm2022}/lib/modules/callback/index.mjs +2 -2
  46. package/esm2022/lib/modules/card/card/card.component.mjs +48 -0
  47. package/esm2022/lib/modules/card/card.module.mjs +19 -0
  48. package/{esm2020 → esm2022}/lib/modules/card/index.mjs +2 -2
  49. package/esm2022/lib/modules/date-ago/date-ago.pipe.mjs +47 -0
  50. package/esm2022/lib/modules/date-ago/date.module.mjs +23 -0
  51. package/{esm2020 → esm2022}/lib/modules/date-ago/index.mjs +2 -2
  52. package/esm2022/lib/modules/datepicker/date-value-accessor.mjs +189 -0
  53. package/esm2022/lib/modules/datepicker/datepicker.module.mjs +32 -0
  54. package/{esm2020 → esm2022}/lib/modules/datepicker/index.mjs +2 -2
  55. package/esm2022/lib/modules/edit-toolbar/edit-toolbar.component.mjs +75 -0
  56. package/esm2022/lib/modules/edit-toolbar/edit-toolbar.module.mjs +27 -0
  57. package/{esm2020 → esm2022}/lib/modules/edit-toolbar/index.mjs +2 -2
  58. package/esm2022/lib/modules/file/file-size.pipe.mjs +48 -0
  59. package/esm2022/lib/modules/file/file.module.mjs +23 -0
  60. package/{esm2020 → esm2022}/lib/modules/file/index.mjs +2 -2
  61. package/esm2022/lib/modules/file-viewer/file-viewer.mjs +52 -0
  62. package/{esm2020 → esm2022}/lib/modules/file-viewer/index.mjs +2 -2
  63. package/esm2022/lib/modules/file-viewer/module.mjs +31 -0
  64. package/esm2022/lib/modules/grid-toolbar/grid-toolbar/grid-toolbar.component.mjs +146 -0
  65. package/esm2022/lib/modules/grid-toolbar/grid-toolbar-bar/grid-toolbar-bar.component.mjs +15 -0
  66. package/esm2022/lib/modules/grid-toolbar/grid-toolbar.module.mjs +34 -0
  67. package/{esm2020 → esm2022}/lib/modules/grid-toolbar/index.mjs +3 -3
  68. package/{esm2020 → esm2022}/lib/modules/index.mjs +32 -32
  69. package/{esm2020 → esm2022}/lib/modules/list-toolbar/index.mjs +2 -2
  70. package/esm2022/lib/modules/list-toolbar/list-toolbar.component.mjs +110 -0
  71. package/esm2022/lib/modules/list-toolbar/list-toolbar.module.mjs +25 -0
  72. package/{esm2020 → esm2022}/lib/modules/loading/index.mjs +3 -3
  73. package/esm2022/lib/modules/loading/loading-interceptor.mjs +80 -0
  74. package/esm2022/lib/modules/loading/loading.component.mjs +36 -0
  75. package/esm2022/lib/modules/loading/loading.module.mjs +33 -0
  76. package/esm2022/lib/modules/modal/filter-modal/filter-modal.component.mjs +27 -0
  77. package/{esm2020 → esm2022}/lib/modules/modal/index.mjs +4 -4
  78. package/esm2022/lib/modules/modal/modal/modal.component.mjs +313 -0
  79. package/esm2022/lib/modules/modal/modal.module.mjs +63 -0
  80. package/esm2022/lib/modules/modal/sum-modal/sum-modal.component.mjs +28 -0
  81. package/{esm2020 → esm2022}/lib/modules/page-title/index.mjs +2 -2
  82. package/esm2022/lib/modules/page-title/page-title.component.mjs +32 -0
  83. package/esm2022/lib/modules/page-title/page-title.module.mjs +27 -0
  84. package/{esm2020 → esm2022}/lib/modules/pager/index.mjs +2 -2
  85. package/esm2022/lib/modules/pager/pager/pager.component.mjs +51 -0
  86. package/esm2022/lib/modules/pager/pager.module.mjs +27 -0
  87. package/{esm2020 → esm2022}/lib/modules/password/index.mjs +2 -2
  88. package/{esm2020 → esm2022}/lib/modules/password/password.component.mjs +48 -47
  89. package/esm2022/lib/modules/password/password.module.mjs +31 -0
  90. package/{esm2020 → esm2022}/lib/modules/progress/index.mjs +2 -2
  91. package/esm2022/lib/modules/progress/module.mjs +27 -0
  92. package/esm2022/lib/modules/progress/progress.mjs +98 -0
  93. package/{esm2020 → esm2022}/lib/modules/radio/index.mjs +2 -2
  94. package/esm2022/lib/modules/radio/radio-button.component.mjs +135 -0
  95. package/esm2022/lib/modules/radio/radio.module.mjs +23 -0
  96. package/{esm2020 → esm2022}/lib/modules/readonly/index.mjs +2 -2
  97. package/esm2022/lib/modules/readonly/readonly.directive.mjs +26 -0
  98. package/esm2022/lib/modules/readonly/readonly.module.mjs +23 -0
  99. package/{esm2020 → esm2022}/lib/modules/recaptcha/index.mjs +3 -3
  100. package/{esm2020 → esm2022}/lib/modules/recaptcha/loader.mjs +12 -12
  101. package/{esm2020 → esm2022}/lib/modules/recaptcha/recaptcha.model.mjs +1 -1
  102. package/esm2022/lib/modules/recaptcha/recaptcha.module.mjs +33 -0
  103. package/esm2022/lib/modules/recaptcha/recaptcha.service.mjs +120 -0
  104. package/{esm2020 → esm2022}/lib/modules/safe/index.mjs +2 -2
  105. package/esm2022/lib/modules/safe/safe.module.mjs +21 -0
  106. package/esm2022/lib/modules/safe/safe.pipe.mjs +38 -0
  107. package/{esm2020 → esm2022}/lib/modules/select/index.mjs +2 -2
  108. package/{esm2020 → esm2022}/lib/modules/select/model.mjs +3 -3
  109. package/esm2022/lib/modules/select/module.mjs +29 -0
  110. package/esm2022/lib/modules/select/select.mjs +199 -0
  111. package/{esm2020 → esm2022}/lib/modules/select2/index.mjs +2 -2
  112. package/esm2022/lib/modules/select2/select2.component.mjs +171 -0
  113. package/esm2022/lib/modules/select2/select2.module.mjs +29 -0
  114. package/{esm2020 → esm2022}/lib/modules/select2-multiple/index.mjs +2 -2
  115. package/esm2022/lib/modules/select2-multiple/select2-multiple.component.mjs +133 -0
  116. package/esm2022/lib/modules/select2-multiple/select2-multiple.module.mjs +29 -0
  117. package/{esm2020 → esm2022}/lib/modules/sort/index.mjs +3 -3
  118. package/esm2022/lib/modules/sort/sort-button-group/sort-button-group.component.mjs +80 -0
  119. package/esm2022/lib/modules/sort/sort.directive.mjs +118 -0
  120. package/esm2022/lib/modules/sort/sort.module.mjs +34 -0
  121. package/{esm2020 → esm2022}/lib/modules/time/index.mjs +3 -3
  122. package/esm2022/lib/modules/time/time.module.mjs +28 -0
  123. package/esm2022/lib/modules/time/time.pipe.mjs +41 -0
  124. package/esm2022/lib/modules/time/timer-service.mjs +90 -0
  125. package/{esm2020 → esm2022}/lib/modules/validator/field-validator.mjs +21 -20
  126. package/{esm2020 → esm2022}/lib/modules/validator/index.mjs +2 -2
  127. package/esm2022/lib/modules/validator/validator.module.mjs +27 -0
  128. package/esm2022/lib/modules/validators/directive.mjs +76 -0
  129. package/{esm2020 → esm2022}/lib/modules/validators/index.mjs +3 -3
  130. package/esm2022/lib/modules/validators/module.mjs +23 -0
  131. package/{esm2020 → esm2022}/lib/modules/validators/validator.mjs +71 -71
  132. package/{esm2020 → esm2022}/lib/modules/wizard/index.mjs +3 -3
  133. package/esm2022/lib/modules/wizard/wizard/wizard.component.mjs +66 -0
  134. package/esm2022/lib/modules/wizard/wizard.module.mjs +34 -0
  135. package/esm2022/lib/modules/wizard/wizard2/wizard2.component.mjs +14 -0
  136. package/esm2022/lib/services/alert.service.mjs +77 -0
  137. package/esm2022/lib/services/auth-guard.service.mjs +29 -0
  138. package/esm2022/lib/services/auth.service.mjs +204 -0
  139. package/{esm2020 → esm2022}/lib/services/base.service.mjs +7 -7
  140. package/{esm2020 → esm2022}/lib/services/crud.service.mjs +42 -42
  141. package/esm2022/lib/services/http-error-handler.service.mjs +142 -0
  142. package/{esm2020 → esm2022}/lib/services/index.mjs +6 -6
  143. package/esm2022/lib/services/web.api.mjs +127 -0
  144. package/{esm2020 → esm2022}/lib/tokens.mjs +5 -5
  145. package/{esm2020 → esm2022}/lib/utils/array-helper.mjs +113 -113
  146. package/{esm2020 → esm2022}/lib/utils/base64-helper.mjs +8 -8
  147. package/{esm2020 → esm2022}/lib/utils/bitwise-helper.mjs +13 -13
  148. package/{esm2020 → esm2022}/lib/utils/bootstrap.helper.mjs +126 -126
  149. package/{esm2020 → esm2022}/lib/utils/convert.mjs +34 -34
  150. package/{esm2020 → esm2022}/lib/utils/css-helper.mjs +40 -40
  151. package/esm2022/lib/utils/date-helper.mjs +236 -0
  152. package/{esm2020 → esm2022}/lib/utils/file.helper.mjs +25 -25
  153. package/{esm2020 → esm2022}/lib/utils/filter-helper.mjs +12 -12
  154. package/{esm2020 → esm2022}/lib/utils/handler.mjs +23 -23
  155. package/{esm2020 → esm2022}/lib/utils/html-helper.mjs +65 -65
  156. package/{esm2020 → esm2022}/lib/utils/index.mjs +22 -22
  157. package/{esm2020 → esm2022}/lib/utils/math-helper.mjs +6 -6
  158. package/{esm2020 → esm2022}/lib/utils/object-helper.mjs +63 -63
  159. package/{esm2020 → esm2022}/lib/utils/overlap-helper.mjs +72 -72
  160. package/{esm2020 → esm2022}/lib/utils/pager-helper.mjs +62 -62
  161. package/{esm2020 → esm2022}/lib/utils/random-helper.mjs +10 -10
  162. package/{esm2020 → esm2022}/lib/utils/storage-helper.mjs +27 -27
  163. package/{esm2020 → esm2022}/lib/utils/string-helper.mjs +31 -31
  164. package/{esm2020 → esm2022}/lib/utils/thenBy.mjs +40 -40
  165. package/{esm2020 → esm2022}/lib/utils/time-helper.mjs +46 -46
  166. package/{esm2020 → esm2022}/lib/utils/url-helper.mjs +25 -25
  167. package/esm2022/lib/utils/validation-helper.mjs +11 -0
  168. package/esm2022/lib/zek.module.mjs +34 -0
  169. package/{esm2020 → esm2022}/public-api.mjs +10 -10
  170. package/{esm2020 → esm2022}/zek.mjs +4 -4
  171. package/{fesm2020 → fesm2022}/zek.mjs +6415 -6404
  172. package/fesm2022/zek.mjs.map +1 -0
  173. package/index.d.ts +5 -5
  174. package/lib/components/args.d.ts +5 -5
  175. package/lib/components/base.component.d.ts +24 -24
  176. package/lib/components/core-ui.component.d.ts +86 -86
  177. package/lib/components/core.component.d.ts +15 -15
  178. package/lib/components/edit-base.component.d.ts +59 -59
  179. package/lib/components/index.d.ts +7 -7
  180. package/lib/components/list-base.component.d.ts +61 -61
  181. package/lib/components/types.d.ts +3 -3
  182. package/lib/models/alert-type.d.ts +10 -10
  183. package/lib/models/captcha.model.d.ts +3 -3
  184. package/lib/models/ctor.d.ts +3 -3
  185. package/lib/models/edit-base.model.d.ts +5 -5
  186. package/lib/models/file.model.d.ts +14 -14
  187. package/lib/models/filter.model.d.ts +9 -9
  188. package/lib/models/gender.model.d.ts +4 -4
  189. package/lib/models/index.d.ts +16 -16
  190. package/lib/models/key-pair.model.d.ts +14 -14
  191. package/lib/models/list-base.model.d.ts +4 -4
  192. package/lib/models/login.model.d.ts +28 -28
  193. package/lib/models/month.model.d.ts +14 -14
  194. package/lib/models/nav.model.d.ts +19 -19
  195. package/lib/models/pager.model.d.ts +21 -21
  196. package/lib/models/print.model.d.ts +4 -4
  197. package/lib/models/tree.model.d.ts +8 -8
  198. package/lib/models/valid-event-args.model.d.ts +3 -3
  199. package/lib/modules/age/age.module.d.ts +8 -8
  200. package/lib/modules/age/age.pipe.d.ts +7 -7
  201. package/lib/modules/age/index.d.ts +2 -2
  202. package/lib/modules/alert/alert/alert.d.ts +16 -16
  203. package/lib/modules/alert/alert.module.d.ts +10 -10
  204. package/lib/modules/alert/index.d.ts +5 -5
  205. package/lib/modules/alert/toast/toast.d.ts +20 -20
  206. package/lib/modules/alert/validation/validation.d.ts +17 -17
  207. package/lib/modules/autocomplete/autocomplete.directive.d.ts +11 -11
  208. package/lib/modules/autocomplete/autocomplete.module.d.ts +8 -8
  209. package/lib/modules/autocomplete/index.d.ts +2 -2
  210. package/lib/modules/bb/bb-modal-base.component.d.ts +26 -26
  211. package/lib/modules/bb/bb-modal-toolbar.d.ts +16 -16
  212. package/lib/modules/bb/bb.component.d.ts +52 -52
  213. package/lib/modules/bb/bb.module.d.ts +11 -11
  214. package/lib/modules/bb/index.d.ts +4 -4
  215. package/lib/modules/callback/callback.module.d.ts +8 -8
  216. package/lib/modules/callback/callback.pipe.d.ts +7 -7
  217. package/lib/modules/callback/index.d.ts +2 -2
  218. package/lib/modules/card/card/card.component.d.ts +21 -21
  219. package/lib/modules/card/card.module.d.ts +8 -8
  220. package/lib/modules/card/index.d.ts +2 -2
  221. package/lib/modules/date-ago/date-ago.pipe.d.ts +7 -7
  222. package/lib/modules/date-ago/date.module.d.ts +8 -8
  223. package/lib/modules/date-ago/index.d.ts +2 -2
  224. package/lib/modules/datepicker/date-value-accessor.d.ts +24 -24
  225. package/lib/modules/datepicker/datepicker.module.d.ts +14 -14
  226. package/lib/modules/datepicker/index.d.ts +2 -2
  227. package/lib/modules/edit-toolbar/edit-toolbar.component.d.ts +25 -25
  228. package/lib/modules/edit-toolbar/edit-toolbar.module.d.ts +9 -9
  229. package/lib/modules/edit-toolbar/index.d.ts +2 -2
  230. package/lib/modules/file/file-size.pipe.d.ts +8 -8
  231. package/lib/modules/file/file.module.d.ts +8 -8
  232. package/lib/modules/file/index.d.ts +2 -2
  233. package/lib/modules/file-viewer/file-viewer.d.ts +10 -10
  234. package/lib/modules/file-viewer/index.d.ts +2 -2
  235. package/lib/modules/file-viewer/module.d.ts +10 -10
  236. package/lib/modules/grid-toolbar/grid-toolbar/grid-toolbar.component.d.ts +50 -50
  237. package/lib/modules/grid-toolbar/grid-toolbar-bar/grid-toolbar-bar.component.d.ts +6 -6
  238. package/lib/modules/grid-toolbar/grid-toolbar.module.d.ts +10 -10
  239. package/lib/modules/grid-toolbar/index.d.ts +3 -3
  240. package/lib/modules/index.d.ts +31 -31
  241. package/lib/modules/list-toolbar/index.d.ts +2 -2
  242. package/lib/modules/list-toolbar/list-toolbar.component.d.ts +41 -41
  243. package/lib/modules/list-toolbar/list-toolbar.module.d.ts +9 -9
  244. package/lib/modules/loading/index.d.ts +2 -2
  245. package/lib/modules/loading/loading-interceptor.d.ts +21 -21
  246. package/lib/modules/loading/loading.component.d.ts +13 -13
  247. package/lib/modules/loading/loading.module.d.ts +8 -8
  248. package/lib/modules/modal/filter-modal/filter-modal.component.d.ts +10 -10
  249. package/lib/modules/modal/index.d.ts +4 -4
  250. package/lib/modules/modal/modal/modal.component.d.ts +90 -90
  251. package/lib/modules/modal/modal.module.d.ts +12 -12
  252. package/lib/modules/modal/sum-modal/sum-modal.component.d.ts +8 -8
  253. package/lib/modules/page-title/index.d.ts +2 -2
  254. package/lib/modules/page-title/page-title.component.d.ts +12 -12
  255. package/lib/modules/page-title/page-title.module.d.ts +9 -9
  256. package/lib/modules/pager/index.d.ts +2 -2
  257. package/lib/modules/pager/pager/pager.component.d.ts +17 -17
  258. package/lib/modules/pager/pager.module.d.ts +9 -9
  259. package/lib/modules/password/index.d.ts +2 -2
  260. package/lib/modules/password/password.component.d.ts +18 -18
  261. package/lib/modules/password/password.module.d.ts +10 -10
  262. package/lib/modules/progress/index.d.ts +2 -2
  263. package/lib/modules/progress/module.d.ts +9 -9
  264. package/lib/modules/progress/progress.d.ts +33 -33
  265. package/lib/modules/radio/index.d.ts +2 -2
  266. package/lib/modules/radio/radio-button.component.d.ts +44 -41
  267. package/lib/modules/radio/radio.module.d.ts +8 -8
  268. package/lib/modules/readonly/index.d.ts +2 -2
  269. package/lib/modules/readonly/readonly.directive.d.ts +8 -8
  270. package/lib/modules/readonly/readonly.module.d.ts +8 -8
  271. package/lib/modules/recaptcha/index.d.ts +3 -3
  272. package/lib/modules/recaptcha/loader.d.ts +12 -12
  273. package/lib/modules/recaptcha/recaptcha.model.d.ts +109 -109
  274. package/lib/modules/recaptcha/recaptcha.module.d.ts +10 -10
  275. package/lib/modules/recaptcha/recaptcha.service.d.ts +60 -60
  276. package/lib/modules/safe/index.d.ts +2 -2
  277. package/lib/modules/safe/safe.module.d.ts +8 -8
  278. package/lib/modules/safe/safe.pipe.d.ts +16 -16
  279. package/lib/modules/select/index.d.ts +2 -2
  280. package/lib/modules/select/model.d.ts +5 -5
  281. package/lib/modules/select/module.d.ts +9 -9
  282. package/lib/modules/select/select.d.ts +42 -42
  283. package/lib/modules/select2/index.d.ts +2 -2
  284. package/lib/modules/select2/select2.component.d.ts +31 -31
  285. package/lib/modules/select2/select2.module.d.ts +9 -9
  286. package/lib/modules/select2-multiple/index.d.ts +2 -2
  287. package/lib/modules/select2-multiple/select2-multiple.component.d.ts +30 -30
  288. package/lib/modules/select2-multiple/select2-multiple.module.d.ts +9 -9
  289. package/lib/modules/sort/index.d.ts +3 -3
  290. package/lib/modules/sort/sort-button-group/sort-button-group.component.d.ts +34 -34
  291. package/lib/modules/sort/sort.directive.d.ts +34 -34
  292. package/lib/modules/sort/sort.module.d.ts +10 -10
  293. package/lib/modules/time/index.d.ts +3 -3
  294. package/lib/modules/time/time.module.d.ts +8 -8
  295. package/lib/modules/time/time.pipe.d.ts +11 -11
  296. package/lib/modules/time/timer-service.d.ts +21 -21
  297. package/lib/modules/validator/field-validator.d.ts +7 -7
  298. package/lib/modules/validator/index.d.ts +2 -2
  299. package/lib/modules/validator/validator.module.d.ts +9 -9
  300. package/lib/modules/validators/directive.d.ts +67 -67
  301. package/lib/modules/validators/index.d.ts +3 -3
  302. package/lib/modules/validators/module.d.ts +8 -8
  303. package/lib/modules/validators/validator.d.ts +33 -33
  304. package/lib/modules/wizard/index.d.ts +3 -3
  305. package/lib/modules/wizard/wizard/wizard.component.d.ts +19 -19
  306. package/lib/modules/wizard/wizard.module.d.ts +10 -10
  307. package/lib/modules/wizard/wizard2/wizard2.component.d.ts +6 -6
  308. package/lib/services/alert.service.d.ts +33 -33
  309. package/lib/services/auth-guard.service.d.ts +12 -12
  310. package/lib/services/auth.service.d.ts +30 -30
  311. package/lib/services/base.service.d.ts +8 -8
  312. package/lib/services/crud.service.d.ts +32 -32
  313. package/lib/services/http-error-handler.service.d.ts +39 -39
  314. package/lib/services/index.d.ts +6 -6
  315. package/lib/services/web.api.d.ts +31 -31
  316. package/lib/tokens.d.ts +5 -5
  317. package/lib/utils/array-helper.d.ts +14 -14
  318. package/lib/utils/base64-helper.d.ts +4 -4
  319. package/lib/utils/bitwise-helper.d.ts +4 -4
  320. package/lib/utils/bootstrap.helper.d.ts +25 -25
  321. package/lib/utils/convert.d.ts +7 -7
  322. package/lib/utils/css-helper.d.ts +5 -5
  323. package/lib/utils/date-helper.d.ts +43 -43
  324. package/lib/utils/file.helper.d.ts +3 -3
  325. package/lib/utils/filter-helper.d.ts +3 -3
  326. package/lib/utils/handler.d.ts +4 -4
  327. package/lib/utils/html-helper.d.ts +7 -7
  328. package/lib/utils/index.d.ts +22 -22
  329. package/lib/utils/math-helper.d.ts +3 -3
  330. package/lib/utils/object-helper.d.ts +13 -13
  331. package/lib/utils/overlap-helper.d.ts +22 -22
  332. package/lib/utils/pager-helper.d.ts +4 -4
  333. package/lib/utils/random-helper.d.ts +3 -3
  334. package/lib/utils/storage-helper.d.ts +4 -4
  335. package/lib/utils/string-helper.d.ts +8 -8
  336. package/lib/utils/thenBy.d.ts +4 -4
  337. package/lib/utils/time-helper.d.ts +7 -7
  338. package/lib/utils/url-helper.d.ts +5 -5
  339. package/lib/utils/validation-helper.d.ts +4 -4
  340. package/lib/zek.module.d.ts +14 -14
  341. package/package.json +9 -15
  342. package/public-api.d.ts +7 -7
  343. package/esm2020/lib/components/base.component.mjs +0 -96
  344. package/esm2020/lib/components/core-ui.component.mjs +0 -194
  345. package/esm2020/lib/components/core.component.mjs +0 -39
  346. package/esm2020/lib/components/edit-base.component.mjs +0 -234
  347. package/esm2020/lib/components/list-base.component.mjs +0 -253
  348. package/esm2020/lib/modules/age/age.module.mjs +0 -22
  349. package/esm2020/lib/modules/age/age.pipe.mjs +0 -21
  350. package/esm2020/lib/modules/alert/alert/alert.mjs +0 -54
  351. package/esm2020/lib/modules/alert/alert.module.mjs +0 -35
  352. package/esm2020/lib/modules/alert/toast/toast.mjs +0 -109
  353. package/esm2020/lib/modules/alert/validation/validation.mjs +0 -85
  354. package/esm2020/lib/modules/autocomplete/autocomplete.directive.mjs +0 -24
  355. package/esm2020/lib/modules/autocomplete/autocomplete.module.mjs +0 -22
  356. package/esm2020/lib/modules/bb/bb-modal-base.component.mjs +0 -74
  357. package/esm2020/lib/modules/bb/bb-modal-toolbar.mjs +0 -44
  358. package/esm2020/lib/modules/bb/bb.component.mjs +0 -188
  359. package/esm2020/lib/modules/bb/bb.module.mjs +0 -37
  360. package/esm2020/lib/modules/callback/callback.module.mjs +0 -22
  361. package/esm2020/lib/modules/callback/callback.pipe.mjs +0 -22
  362. package/esm2020/lib/modules/card/card/card.component.mjs +0 -47
  363. package/esm2020/lib/modules/card/card.module.mjs +0 -18
  364. package/esm2020/lib/modules/date-ago/date-ago.pipe.mjs +0 -46
  365. package/esm2020/lib/modules/date-ago/date.module.mjs +0 -22
  366. package/esm2020/lib/modules/datepicker/date-value-accessor.mjs +0 -188
  367. package/esm2020/lib/modules/datepicker/datepicker.module.mjs +0 -31
  368. package/esm2020/lib/modules/edit-toolbar/edit-toolbar.component.mjs +0 -74
  369. package/esm2020/lib/modules/edit-toolbar/edit-toolbar.module.mjs +0 -26
  370. package/esm2020/lib/modules/file/file-size.pipe.mjs +0 -47
  371. package/esm2020/lib/modules/file/file.module.mjs +0 -22
  372. package/esm2020/lib/modules/file-viewer/file-viewer.mjs +0 -51
  373. package/esm2020/lib/modules/file-viewer/module.mjs +0 -30
  374. package/esm2020/lib/modules/grid-toolbar/grid-toolbar/grid-toolbar.component.mjs +0 -145
  375. package/esm2020/lib/modules/grid-toolbar/grid-toolbar-bar/grid-toolbar-bar.component.mjs +0 -14
  376. package/esm2020/lib/modules/grid-toolbar/grid-toolbar.module.mjs +0 -33
  377. package/esm2020/lib/modules/list-toolbar/list-toolbar.component.mjs +0 -109
  378. package/esm2020/lib/modules/list-toolbar/list-toolbar.module.mjs +0 -24
  379. package/esm2020/lib/modules/loading/loading-interceptor.mjs +0 -79
  380. package/esm2020/lib/modules/loading/loading.component.mjs +0 -35
  381. package/esm2020/lib/modules/loading/loading.module.mjs +0 -32
  382. package/esm2020/lib/modules/modal/filter-modal/filter-modal.component.mjs +0 -26
  383. package/esm2020/lib/modules/modal/modal/modal.component.mjs +0 -307
  384. package/esm2020/lib/modules/modal/modal.module.mjs +0 -62
  385. package/esm2020/lib/modules/modal/sum-modal/sum-modal.component.mjs +0 -27
  386. package/esm2020/lib/modules/page-title/page-title.component.mjs +0 -31
  387. package/esm2020/lib/modules/page-title/page-title.module.mjs +0 -26
  388. package/esm2020/lib/modules/pager/pager/pager.component.mjs +0 -50
  389. package/esm2020/lib/modules/pager/pager.module.mjs +0 -26
  390. package/esm2020/lib/modules/password/password.module.mjs +0 -30
  391. package/esm2020/lib/modules/progress/module.mjs +0 -26
  392. package/esm2020/lib/modules/progress/progress.mjs +0 -97
  393. package/esm2020/lib/modules/radio/radio-button.component.mjs +0 -123
  394. package/esm2020/lib/modules/radio/radio.module.mjs +0 -22
  395. package/esm2020/lib/modules/readonly/readonly.directive.mjs +0 -25
  396. package/esm2020/lib/modules/readonly/readonly.module.mjs +0 -22
  397. package/esm2020/lib/modules/recaptcha/recaptcha.module.mjs +0 -32
  398. package/esm2020/lib/modules/recaptcha/recaptcha.service.mjs +0 -119
  399. package/esm2020/lib/modules/safe/safe.module.mjs +0 -20
  400. package/esm2020/lib/modules/safe/safe.pipe.mjs +0 -37
  401. package/esm2020/lib/modules/select/module.mjs +0 -28
  402. package/esm2020/lib/modules/select/select.mjs +0 -198
  403. package/esm2020/lib/modules/select2/select2.component.mjs +0 -170
  404. package/esm2020/lib/modules/select2/select2.module.mjs +0 -28
  405. package/esm2020/lib/modules/select2-multiple/select2-multiple.component.mjs +0 -132
  406. package/esm2020/lib/modules/select2-multiple/select2-multiple.module.mjs +0 -28
  407. package/esm2020/lib/modules/sort/sort-button-group/sort-button-group.component.mjs +0 -79
  408. package/esm2020/lib/modules/sort/sort.directive.mjs +0 -117
  409. package/esm2020/lib/modules/sort/sort.module.mjs +0 -33
  410. package/esm2020/lib/modules/time/time.module.mjs +0 -27
  411. package/esm2020/lib/modules/time/time.pipe.mjs +0 -40
  412. package/esm2020/lib/modules/time/timer-service.mjs +0 -89
  413. package/esm2020/lib/modules/validator/validator.module.mjs +0 -26
  414. package/esm2020/lib/modules/validators/directive.mjs +0 -75
  415. package/esm2020/lib/modules/validators/module.mjs +0 -22
  416. package/esm2020/lib/modules/wizard/wizard/wizard.component.mjs +0 -65
  417. package/esm2020/lib/modules/wizard/wizard.module.mjs +0 -33
  418. package/esm2020/lib/modules/wizard/wizard2/wizard2.component.mjs +0 -13
  419. package/esm2020/lib/services/alert.service.mjs +0 -76
  420. package/esm2020/lib/services/auth-guard.service.mjs +0 -28
  421. package/esm2020/lib/services/auth.service.mjs +0 -203
  422. package/esm2020/lib/services/http-error-handler.service.mjs +0 -141
  423. package/esm2020/lib/services/web.api.mjs +0 -126
  424. package/esm2020/lib/utils/date-helper.mjs +0 -235
  425. package/esm2020/lib/utils/validation-helper.mjs +0 -10
  426. package/esm2020/lib/zek.module.mjs +0 -33
  427. package/fesm2015/zek.mjs +0 -6682
  428. package/fesm2015/zek.mjs.map +0 -1
  429. package/fesm2020/zek.mjs.map +0 -1
@@ -1,2 +1,2 @@
1
- export * from './readonly.module';
2
- export * from './readonly.directive';
1
+ export * from './readonly.module';
2
+ export * from './readonly.directive';
@@ -1,8 +1,8 @@
1
- import { BooleanInput } from '../../components';
2
- import * as i0 from "@angular/core";
3
- export declare class ReadOnlyDirective {
4
- _readonly: boolean;
5
- readonly(v: BooleanInput): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ReadOnlyDirective, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<ReadOnlyDirective, "[readonly],[readOnly]", never, { "readonly": "readonly"; }, {}, never, never, false>;
8
- }
1
+ import { BooleanInput } from '../../components';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ReadOnlyDirective {
4
+ _readonly: boolean;
5
+ readonly(v: BooleanInput): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReadOnlyDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ReadOnlyDirective, "[readonly],[readOnly]", never, { "readonly": { "alias": "readonly"; "required": false; }; }, {}, never, never, false, never>;
8
+ }
@@ -1,8 +1,8 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./readonly.directive";
3
- import * as i2 from "@angular/common";
4
- export declare class ReadOnlyModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<ReadOnlyModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<ReadOnlyModule, [typeof i1.ReadOnlyDirective], [typeof i2.CommonModule], [typeof i1.ReadOnlyDirective]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<ReadOnlyModule>;
8
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./readonly.directive";
3
+ import * as i2 from "@angular/common";
4
+ export declare class ReadOnlyModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReadOnlyModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ReadOnlyModule, [typeof i1.ReadOnlyDirective], [typeof i2.CommonModule], [typeof i1.ReadOnlyDirective]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ReadOnlyModule>;
8
+ }
@@ -1,3 +1,3 @@
1
- export * from './recaptcha.model';
2
- export * from './recaptcha.service';
3
- export * from './recaptcha.module';
1
+ export * from './recaptcha.model';
2
+ export * from './recaptcha.service';
3
+ export * from './recaptcha.module';
@@ -1,12 +1,12 @@
1
- import { ReCaptchaV2 } from "./recaptcha.model";
2
- declare global {
3
- interface Window {
4
- recaptchaloaded: () => void;
5
- }
6
- }
7
- declare function loadScript(siteKey: "explicit" | string, onLoaded: (grecaptcha: ReCaptchaV2.ReCaptcha) => void, //ReCaptchaV2.ReCaptcha
8
- urlParams?: string, url?: string, nonce?: string): void;
9
- export declare const loader: {
10
- loadScript: typeof loadScript;
11
- };
12
- export {};
1
+ import { ReCaptchaV2 } from "./recaptcha.model";
2
+ declare global {
3
+ interface Window {
4
+ recaptchaloaded: () => void;
5
+ }
6
+ }
7
+ declare function loadScript(siteKey: "explicit" | string, onLoaded: (grecaptcha: ReCaptchaV2.ReCaptcha) => void, //ReCaptchaV2.ReCaptcha
8
+ urlParams?: string, url?: string, nonce?: string): void;
9
+ export declare const loader: {
10
+ loadScript: typeof loadScript;
11
+ };
12
+ export {};
@@ -1,109 +1,109 @@
1
- export declare namespace ReCaptchaV2 {
2
- export interface ReCaptcha {
3
- /**
4
- * Renders the container as a reCAPTCHA widget and returns the ID of the newly created widget.
5
- * @param container The HTML element to render the reCAPTCHA widget. Specify either the ID of the container (string) or the DOM element itself.
6
- * @param parameters An object containing parameters as key=value pairs, for example, {"sitekey": "your_site_key", "theme": "light"}. See @see render parameters.
7
- * @param inherit Invisible reCAPTCHA only. Use existing data-* attributes on the element if the corresponding parameter is not specified.
8
- * The values in parameters will take precedence over the attributes.
9
- * @return the ID of the newly created widget.
10
- */
11
- render(container: (string | HTMLElement), parameters?: Parameters, inherit?: boolean): number;
12
- /**
13
- * Resets the reCAPTCHA widget.
14
- * @param opt_widget_id Optional widget ID, defaults to the first widget created if unspecified.
15
- */
16
- reset(opt_widget_id?: number): void;
17
- /**
18
- * Gets the response for the reCAPTCHA widget.
19
- * @param opt_widget_id Optional widget ID, defaults to the first widget created if unspecified.
20
- * @return the response of the reCAPTCHA widget.
21
- */
22
- getResponse(opt_widget_id?: number): string;
23
- /**
24
- * Programatically invoke the reCAPTCHA check. Used if the invisible reCAPTCHA is on a div instead of a button.
25
- * @param opt_widget_id Optional widget ID, defaults to the first widget created if unspecified.
26
- */
27
- execute(opt_widget_id?: number): void;
28
- /**
29
- * Programatically invoke the reCAPTCHA check. Used if the invisible reCAPTCHA is on a div instead of a button.
30
- * @param siteKey the key of your site
31
- * @param action the action
32
- *
33
- * @return a promise-like object containing the token
34
- */
35
- execute(siteKey: string, action: Action): PromiseLike<string>;
36
- /**
37
- * will run the given function as soon as the reCAPTCHA library has loaded
38
- * @param callback the function to coll
39
- */
40
- ready(callback: () => void): void;
41
- }
42
- type Theme = "light" | "dark";
43
- type Type = "image" | "audio";
44
- type Size = "normal" | "compact" | "invisible";
45
- type Badge = "bottomright" | "bottomleft" | "inline";
46
- export interface Action {
47
- /**
48
- * the name of the action. Actions may only contain alphanumeric characters and slashes, and must not be user-specific.
49
- */
50
- action: string;
51
- }
52
- export interface Parameters {
53
- /**
54
- * Your sitekey.
55
- */
56
- sitekey?: string | undefined;
57
- /**
58
- * Optional. The color theme of the widget.
59
- * Accepted values: "light", "dark"
60
- * @default "light"
61
- */
62
- theme?: Theme | undefined;
63
- /**
64
- * Optional. The type of CAPTCHA to serve.
65
- * Accepted values: "audio", "image"
66
- * @default "image"
67
- */
68
- type?: Type | undefined;
69
- /**
70
- * Optional. The size of the widget.
71
- * Accepted values: "compact", "normal", "invisible".
72
- * @default "compact"
73
- */
74
- size?: Size | undefined;
75
- /**
76
- * Optional. The tabindex of the widget and challenge.
77
- * If other elements in your page use tabindex, it should be set to make user navigation easier.
78
- */
79
- tabindex?: number | undefined;
80
- /**
81
- * Optional. The badge location for g-recaptcha with size of "invisible".
82
- *
83
- * @default "bottomright"
84
- */
85
- badge?: Badge | undefined;
86
- /**
87
- * Optional. Invisible reCAPTCHA only. For plugin owners to not interfere with existing reCAPTCHA installations on a page.
88
- * If true, this reCAPTCHA instance will be part of a separate ID space.
89
- *
90
- * @default false
91
- */
92
- isolated?: boolean | undefined;
93
- /**
94
- * Optional. Your callback function that's executed when the user submits a successful CAPTCHA response.
95
- * The user's response, g-recaptcha-response, will be the input for your callback function.
96
- */
97
- callback?(response: string): void;
98
- /**
99
- * Optional. Your callback function that's executed when the reCAPTCHA response expires and the user needs to solve a new CAPTCHA.
100
- */
101
- "expired-callback"?(): void;
102
- /**
103
- * Optional. Your callback function that's executed when reCAPTCHA encounters an error (usually network connectivity) and cannot continue until connectivity is restored.
104
- * If you specify this function, you are responsible for informing the user that they should retry.
105
- */
106
- "error-callback"?(): void;
107
- }
108
- export {};
109
- }
1
+ export declare namespace ReCaptchaV2 {
2
+ export interface ReCaptcha {
3
+ /**
4
+ * Renders the container as a reCAPTCHA widget and returns the ID of the newly created widget.
5
+ * @param container The HTML element to render the reCAPTCHA widget. Specify either the ID of the container (string) or the DOM element itself.
6
+ * @param parameters An object containing parameters as key=value pairs, for example, {"sitekey": "your_site_key", "theme": "light"}. See @see render parameters.
7
+ * @param inherit Invisible reCAPTCHA only. Use existing data-* attributes on the element if the corresponding parameter is not specified.
8
+ * The values in parameters will take precedence over the attributes.
9
+ * @return the ID of the newly created widget.
10
+ */
11
+ render(container: (string | HTMLElement), parameters?: Parameters, inherit?: boolean): number;
12
+ /**
13
+ * Resets the reCAPTCHA widget.
14
+ * @param opt_widget_id Optional widget ID, defaults to the first widget created if unspecified.
15
+ */
16
+ reset(opt_widget_id?: number): void;
17
+ /**
18
+ * Gets the response for the reCAPTCHA widget.
19
+ * @param opt_widget_id Optional widget ID, defaults to the first widget created if unspecified.
20
+ * @return the response of the reCAPTCHA widget.
21
+ */
22
+ getResponse(opt_widget_id?: number): string;
23
+ /**
24
+ * Programatically invoke the reCAPTCHA check. Used if the invisible reCAPTCHA is on a div instead of a button.
25
+ * @param opt_widget_id Optional widget ID, defaults to the first widget created if unspecified.
26
+ */
27
+ execute(opt_widget_id?: number): void;
28
+ /**
29
+ * Programatically invoke the reCAPTCHA check. Used if the invisible reCAPTCHA is on a div instead of a button.
30
+ * @param siteKey the key of your site
31
+ * @param action the action
32
+ *
33
+ * @return a promise-like object containing the token
34
+ */
35
+ execute(siteKey: string, action: Action): PromiseLike<string>;
36
+ /**
37
+ * will run the given function as soon as the reCAPTCHA library has loaded
38
+ * @param callback the function to coll
39
+ */
40
+ ready(callback: () => void): void;
41
+ }
42
+ type Theme = "light" | "dark";
43
+ type Type = "image" | "audio";
44
+ type Size = "normal" | "compact" | "invisible";
45
+ type Badge = "bottomright" | "bottomleft" | "inline";
46
+ export interface Action {
47
+ /**
48
+ * the name of the action. Actions may only contain alphanumeric characters and slashes, and must not be user-specific.
49
+ */
50
+ action: string;
51
+ }
52
+ export interface Parameters {
53
+ /**
54
+ * Your sitekey.
55
+ */
56
+ sitekey?: string | undefined;
57
+ /**
58
+ * Optional. The color theme of the widget.
59
+ * Accepted values: "light", "dark"
60
+ * @default "light"
61
+ */
62
+ theme?: Theme | undefined;
63
+ /**
64
+ * Optional. The type of CAPTCHA to serve.
65
+ * Accepted values: "audio", "image"
66
+ * @default "image"
67
+ */
68
+ type?: Type | undefined;
69
+ /**
70
+ * Optional. The size of the widget.
71
+ * Accepted values: "compact", "normal", "invisible".
72
+ * @default "compact"
73
+ */
74
+ size?: Size | undefined;
75
+ /**
76
+ * Optional. The tabindex of the widget and challenge.
77
+ * If other elements in your page use tabindex, it should be set to make user navigation easier.
78
+ */
79
+ tabindex?: number | undefined;
80
+ /**
81
+ * Optional. The badge location for g-recaptcha with size of "invisible".
82
+ *
83
+ * @default "bottomright"
84
+ */
85
+ badge?: Badge | undefined;
86
+ /**
87
+ * Optional. Invisible reCAPTCHA only. For plugin owners to not interfere with existing reCAPTCHA installations on a page.
88
+ * If true, this reCAPTCHA instance will be part of a separate ID space.
89
+ *
90
+ * @default false
91
+ */
92
+ isolated?: boolean | undefined;
93
+ /**
94
+ * Optional. Your callback function that's executed when the user submits a successful CAPTCHA response.
95
+ * The user's response, g-recaptcha-response, will be the input for your callback function.
96
+ */
97
+ callback?(response: string): void;
98
+ /**
99
+ * Optional. Your callback function that's executed when the reCAPTCHA response expires and the user needs to solve a new CAPTCHA.
100
+ */
101
+ "expired-callback"?(): void;
102
+ /**
103
+ * Optional. Your callback function that's executed when reCAPTCHA encounters an error (usually network connectivity) and cannot continue until connectivity is restored.
104
+ * If you specify this function, you are responsible for informing the user that they should retry.
105
+ */
106
+ "error-callback"?(): void;
107
+ }
108
+ export {};
109
+ }
@@ -1,10 +1,10 @@
1
- import { ModuleWithProviders } from "@angular/core";
2
- import { ReCaptchaConfig } from "./index";
3
- import * as i0 from "@angular/core";
4
- export declare class RecaptchaModule {
5
- static forRoot(config: ReCaptchaConfig): ModuleWithProviders<RecaptchaModule>;
6
- static forChild(config: ReCaptchaConfig): ModuleWithProviders<RecaptchaModule>;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<RecaptchaModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<RecaptchaModule, never, never, never>;
9
- static ɵinj: i0.ɵɵInjectorDeclaration<RecaptchaModule>;
10
- }
1
+ import { ModuleWithProviders } from "@angular/core";
2
+ import { ReCaptchaConfig } from "./index";
3
+ import * as i0 from "@angular/core";
4
+ export declare class RecaptchaModule {
5
+ static forRoot(config: ReCaptchaConfig): ModuleWithProviders<RecaptchaModule>;
6
+ static forChild(config: ReCaptchaConfig): ModuleWithProviders<RecaptchaModule>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecaptchaModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<RecaptchaModule, never, never, never>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<RecaptchaModule>;
10
+ }
@@ -1,60 +1,60 @@
1
- import { NgZone } from '@angular/core';
2
- import { Observable } from 'rxjs';
3
- import * as i0 from "@angular/core";
4
- export interface ReCaptchaConfig {
5
- siteKey: string;
6
- }
7
- export interface OnExecuteData {
8
- /**
9
- * The name of the action that has been executed.
10
- */
11
- action: string;
12
- /**
13
- * The token that reCAPTCHA v3 provided when executing the action.
14
- */
15
- token: string;
16
- }
17
- export interface OnExecuteErrorData {
18
- /**
19
- * The name of the action that has been executed.
20
- */
21
- action: string;
22
- /**
23
- * The error which was encountered
24
- */
25
- error: any;
26
- }
27
- export declare class ReCaptchaService {
28
- private readonly isBrowser;
29
- private readonly siteKey;
30
- private readonly zone;
31
- private actionBacklog;
32
- private grecaptcha?;
33
- private onExecuteSubject?;
34
- private onExecuteErrorSubject?;
35
- private onExecuteObservable?;
36
- private onExecuteErrorObservable?;
37
- constructor(zone: NgZone, siteKey: string);
38
- get onExecute(): Observable<OnExecuteData>;
39
- get onExecuteError(): Observable<OnExecuteErrorData>;
40
- /**
41
- * Executes the provided `action` with reCAPTCHA v3 API.
42
- * Use the emitted token value for verification purposes on the backend.
43
- *
44
- * For more information about reCAPTCHA v3 actions and tokens refer to the official documentation at
45
- * https://developers.google.com/recaptcha/docs/v3.
46
- *
47
- * @param {string} action the action to execute
48
- * @returns {Observable<string>} an `Observable` that will emit the reCAPTCHA v3 string `token` value whenever ready.
49
- * The returned `Observable` completes immediately after emitting a value.
50
- */
51
- execute(action: string): Observable<string>;
52
- /** @internal */
53
- private executeActionWithSubject;
54
- /** @internal */
55
- private init;
56
- /** @internal */
57
- private onLoadComplete;
58
- static ɵfac: i0.ɵɵFactoryDeclaration<ReCaptchaService, [null, { optional: true; }]>;
59
- static ɵprov: i0.ɵɵInjectableDeclaration<ReCaptchaService>;
60
- }
1
+ import { NgZone } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export interface ReCaptchaConfig {
5
+ siteKey: string;
6
+ }
7
+ export interface OnExecuteData {
8
+ /**
9
+ * The name of the action that has been executed.
10
+ */
11
+ action: string;
12
+ /**
13
+ * The token that reCAPTCHA v3 provided when executing the action.
14
+ */
15
+ token: string;
16
+ }
17
+ export interface OnExecuteErrorData {
18
+ /**
19
+ * The name of the action that has been executed.
20
+ */
21
+ action: string;
22
+ /**
23
+ * The error which was encountered
24
+ */
25
+ error: any;
26
+ }
27
+ export declare class ReCaptchaService {
28
+ private readonly isBrowser;
29
+ private readonly siteKey;
30
+ private readonly zone;
31
+ private actionBacklog;
32
+ private grecaptcha?;
33
+ private onExecuteSubject?;
34
+ private onExecuteErrorSubject?;
35
+ private onExecuteObservable?;
36
+ private onExecuteErrorObservable?;
37
+ constructor(zone: NgZone, siteKey: string);
38
+ get onExecute(): Observable<OnExecuteData>;
39
+ get onExecuteError(): Observable<OnExecuteErrorData>;
40
+ /**
41
+ * Executes the provided `action` with reCAPTCHA v3 API.
42
+ * Use the emitted token value for verification purposes on the backend.
43
+ *
44
+ * For more information about reCAPTCHA v3 actions and tokens refer to the official documentation at
45
+ * https://developers.google.com/recaptcha/docs/v3.
46
+ *
47
+ * @param {string} action the action to execute
48
+ * @returns {Observable<string>} an `Observable` that will emit the reCAPTCHA v3 string `token` value whenever ready.
49
+ * The returned `Observable` completes immediately after emitting a value.
50
+ */
51
+ execute(action: string): Observable<string>;
52
+ /** @internal */
53
+ private executeActionWithSubject;
54
+ /** @internal */
55
+ private init;
56
+ /** @internal */
57
+ private onLoadComplete;
58
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReCaptchaService, [null, { optional: true; }]>;
59
+ static ɵprov: i0.ɵɵInjectableDeclaration<ReCaptchaService>;
60
+ }
@@ -1,2 +1,2 @@
1
- export * from './safe.module';
2
- export * from './safe.pipe';
1
+ export * from './safe.module';
2
+ export * from './safe.pipe';
@@ -1,8 +1,8 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./safe.pipe";
3
- import * as i2 from "@angular/common";
4
- export declare class SafeModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<SafeModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<SafeModule, [typeof i1.SafePipe], [typeof i2.CommonModule], [typeof i1.SafePipe]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<SafeModule>;
8
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./safe.pipe";
3
+ import * as i2 from "@angular/common";
4
+ export declare class SafeModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SafeModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SafeModule, [typeof i1.SafePipe], [typeof i2.CommonModule], [typeof i1.SafePipe]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<SafeModule>;
8
+ }
@@ -1,16 +1,16 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { DomSanitizer, SafeHtml, SafeResourceUrl, SafeScript, SafeStyle, SafeUrl } from '@angular/platform-browser';
3
- import * as i0 from "@angular/core";
4
- export declare class SafePipe implements PipeTransform {
5
- private sanitizer;
6
- constructor(sanitizer: DomSanitizer);
7
- /**
8
- * Transform
9
- *
10
- * @param value: string
11
- * @param type: string html, style, script, url, resourceUrl
12
- */
13
- transform(value: string, type?: '' | 'html' | 'style' | 'script' | 'url' | 'resourceUrl' | null): SafeHtml | SafeStyle | SafeScript | SafeUrl | SafeResourceUrl;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<SafePipe, never>;
15
- static ɵpipe: i0.ɵɵPipeDeclaration<SafePipe, "safe", false>;
16
- }
1
+ import { PipeTransform } from '@angular/core';
2
+ import { DomSanitizer, SafeHtml, SafeResourceUrl, SafeScript, SafeStyle, SafeUrl } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SafePipe implements PipeTransform {
5
+ private sanitizer;
6
+ constructor(sanitizer: DomSanitizer);
7
+ /**
8
+ * Transform
9
+ *
10
+ * @param value: string
11
+ * @param type: string html, style, script, url, resourceUrl
12
+ */
13
+ transform(value: string, type?: '' | 'html' | 'style' | 'script' | 'url' | 'resourceUrl' | null): SafeHtml | SafeStyle | SafeScript | SafeUrl | SafeResourceUrl;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<SafePipe, never>;
15
+ static ɵpipe: i0.ɵɵPipeDeclaration<SafePipe, "safe", false>;
16
+ }
@@ -1,2 +1,2 @@
1
- export * from './module';
2
- export * from './select';
1
+ export * from './module';
2
+ export * from './select';
@@ -1,5 +1,5 @@
1
- import { KeyPair } from "../../models";
2
- export declare class KeyPairOption extends KeyPair {
3
- checked?: boolean | null;
4
- item: any;
5
- }
1
+ import { KeyPair } from "../../models";
2
+ export declare class KeyPairOption extends KeyPair {
3
+ checked?: boolean | null;
4
+ item: any;
5
+ }
@@ -1,9 +1,9 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./select";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "@angular/forms";
5
- export declare class ZekSelectModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ZekSelectModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<ZekSelectModule, [typeof i1.ZekSelectMultiple], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.ZekSelectMultiple]>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<ZekSelectModule>;
9
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./select";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ export declare class ZekSelectModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ZekSelectModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ZekSelectModule, [typeof i1.ZekSelectMultiple], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.ZekSelectMultiple]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<ZekSelectModule>;
9
+ }
@@ -1,42 +1,42 @@
1
- import { ElementRef, Renderer2 } from '@angular/core';
2
- import { BooleanInput, CoreUiComponent } from '../../components';
3
- import { KeyPairOption } from './model';
4
- import * as i0 from "@angular/core";
5
- export declare class ZekSelectMultiple extends CoreUiComponent {
6
- constructor(renderer: Renderer2, elementRef: ElementRef);
7
- private _uniqueId;
8
- /** The unique ID for the radio button. */
9
- id: string;
10
- valueField?: string | null;
11
- textField?: string | null;
12
- checkedTextField?: string | null;
13
- css: 'primary' | 'secondary' | 'success' | 'danger ' | 'warning' | 'info' | 'light' | 'dark';
14
- get placeholder(): string;
15
- set placeholder(value: string | null | undefined);
16
- private _placeholder;
17
- get label(): string;
18
- set label(value: string | null | undefined);
19
- private _label;
20
- get multiple(): BooleanInput;
21
- set multiple(value: BooleanInput);
22
- private _multiple;
23
- private _selected;
24
- get data(): any[] | null | undefined;
25
- set data(value: any[] | null | undefined);
26
- private _data?;
27
- normalized: KeyPairOption[];
28
- onDataChanged(): void;
29
- _text: string;
30
- onValueChanged(): void;
31
- init(): void;
32
- private _normalizeData;
33
- /**
34
- * Sets the selected option based on a value. If no option can be
35
- * found with the designated value, the select trigger is cleared.
36
- */
37
- private _setSelectionByValue;
38
- toggleChecked(v: any): void;
39
- private _initText;
40
- static ɵfac: i0.ɵɵFactoryDeclaration<ZekSelectMultiple, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<ZekSelectMultiple, "zek-select,[zek-select]", never, { "id": "id"; "valueField": "valueField"; "textField": "textField"; "checkedTextField": "checkedTextField"; "css": "css"; "placeholder": "placeholder"; "label": "label"; "multiple": "multiple"; "data": "data"; }, {}, never, never, false>;
42
- }
1
+ import { ElementRef, Renderer2 } from '@angular/core';
2
+ import { BooleanInput, CoreUiComponent } from '../../components';
3
+ import { KeyPairOption } from './model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ZekSelectMultiple extends CoreUiComponent {
6
+ constructor(renderer: Renderer2, elementRef: ElementRef);
7
+ private _uniqueId;
8
+ /** The unique ID for the radio button. */
9
+ id: string;
10
+ valueField?: string | null;
11
+ textField?: string | null;
12
+ checkedTextField?: string | null;
13
+ css: 'primary' | 'secondary' | 'success' | 'danger ' | 'warning' | 'info' | 'light' | 'dark';
14
+ get placeholder(): string;
15
+ set placeholder(value: string | null | undefined);
16
+ private _placeholder;
17
+ get label(): string;
18
+ set label(value: string | null | undefined);
19
+ private _label;
20
+ get multiple(): BooleanInput;
21
+ set multiple(value: BooleanInput);
22
+ private _multiple;
23
+ private _selected;
24
+ get data(): any[] | null | undefined;
25
+ set data(value: any[] | null | undefined);
26
+ private _data?;
27
+ normalized: KeyPairOption[];
28
+ onDataChanged(): void;
29
+ _text: string;
30
+ onValueChanged(): void;
31
+ init(): void;
32
+ private _normalizeData;
33
+ /**
34
+ * Sets the selected option based on a value. If no option can be
35
+ * found with the designated value, the select trigger is cleared.
36
+ */
37
+ private _setSelectionByValue;
38
+ toggleChecked(v: any): void;
39
+ private _initText;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<ZekSelectMultiple, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<ZekSelectMultiple, "zek-select,[zek-select]", never, { "id": { "alias": "id"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "checkedTextField": { "alias": "checkedTextField"; "required": false; }; "css": { "alias": "css"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
42
+ }
@@ -1,2 +1,2 @@
1
- export * from './select2.module';
2
- export * from './select2.component';
1
+ export * from './select2.module';
2
+ export * from './select2.component';