spiderly 0.0.8 → 19.0.1

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 (442) hide show
  1. package/eslint.config.js +32 -0
  2. package/ng-package.json +10 -0
  3. package/package.json +55 -65
  4. package/src/lib/components/auth/login/login.component.html +25 -0
  5. package/src/lib/components/auth/login/login.component.ts +77 -0
  6. package/src/lib/components/auth/partials/auth.component.html +29 -0
  7. package/src/lib/components/auth/partials/auth.component.ts +60 -0
  8. package/src/lib/components/auth/partials/login-verification.component.html +2 -0
  9. package/src/lib/components/auth/partials/login-verification.component.ts +41 -0
  10. package/src/lib/components/auth/partials/registration-verification.component.html +1 -0
  11. package/src/lib/components/auth/partials/registration-verification.component.ts +41 -0
  12. package/src/lib/components/auth/partials/verification-wrapper.component.html +39 -0
  13. package/src/lib/components/auth/partials/verification-wrapper.component.ts +68 -0
  14. package/src/lib/components/auth/registration/registration.component.html +31 -0
  15. package/src/lib/components/auth/registration/registration.component.ts +77 -0
  16. package/src/lib/components/base-details/role-base-details.component.html +33 -0
  17. package/src/lib/components/base-details/role-base-details.component.ts +194 -0
  18. package/src/lib/components/base-form/base-form copy.ts +356 -0
  19. package/src/lib/components/card-skeleton/card-skeleton.component.html +8 -0
  20. package/src/lib/components/card-skeleton/card-skeleton.component.ts +21 -0
  21. package/src/lib/components/footer/app.footer.component.ts +17 -0
  22. package/src/lib/components/footer/footer.component.html +3 -0
  23. package/src/lib/components/footer/footer.component.ts +17 -0
  24. package/src/lib/components/index-card/index-card.component.html +15 -0
  25. package/src/lib/components/index-card/index-card.component.ts +48 -0
  26. package/src/lib/components/info-card/info-card.component.html +18 -0
  27. package/src/lib/components/info-card/info-card.component.ts +29 -0
  28. package/src/lib/components/layout/layout-base.component.ts +140 -0
  29. package/src/lib/components/layout/sidebar/menuitem.component.html +40 -0
  30. package/src/lib/components/layout/sidebar/menuitem.component.ts +179 -0
  31. package/src/lib/components/layout/sidebar/sidebar-menu.component.html +6 -0
  32. package/src/lib/components/layout/sidebar/sidebar-menu.component.ts +44 -0
  33. package/src/lib/components/layout/sidebar/sidebar-menu.service.ts +22 -0
  34. package/src/lib/components/layout/sidebar/sidebar.component.html +1 -0
  35. package/src/lib/components/layout/sidebar/sidebar.component.ts +20 -0
  36. package/src/lib/components/layout/topbar/topbar.component.html +64 -0
  37. package/src/lib/components/layout/topbar/topbar.component.ts +137 -0
  38. package/src/lib/components/not-found/not-found.component.html +27 -0
  39. package/src/lib/components/not-found/not-found.component.ts +22 -0
  40. package/src/lib/components/required/required.component.html +1 -0
  41. package/src/lib/components/required/required.component.ts +13 -0
  42. package/src/lib/components/spiderly-buttons/google-button/google-button.component.html +5 -0
  43. package/src/lib/components/spiderly-buttons/google-button/google-button.component.ts +53 -0
  44. package/src/lib/components/spiderly-buttons/return-button/return-button.component.html +3 -0
  45. package/src/lib/components/spiderly-buttons/return-button/return-button.component.ts +35 -0
  46. package/src/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.html +14 -0
  47. package/src/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.ts +27 -0
  48. package/src/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.ts +61 -0
  49. package/src/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.html +15 -0
  50. package/src/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.ts +24 -0
  51. package/src/lib/components/spiderly-data-table/spiderly-data-table.component.html +93 -0
  52. package/{styles → src/lib}/components/spiderly-data-table/spiderly-data-table.component.scss +15 -0
  53. package/src/lib/components/spiderly-data-table/spiderly-data-table.component.ts +614 -0
  54. package/src/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.html +17 -0
  55. package/src/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.ts +39 -0
  56. package/src/lib/components/spiderly-form-control/spiderly-form-control.ts +60 -0
  57. package/src/lib/components/spiderly-panels/panel-body/panel-body.component.html +8 -0
  58. package/src/lib/components/spiderly-panels/panel-body/panel-body.component.ts +16 -0
  59. package/src/lib/components/spiderly-panels/panel-footer/panel-footer.component.html +8 -0
  60. package/{styles → src/lib}/components/spiderly-panels/panel-footer/panel-footer.component.scss +3 -3
  61. package/src/lib/components/spiderly-panels/panel-footer/panel-footer.component.ts +15 -0
  62. package/src/lib/components/spiderly-panels/panel-header/panel-header.component.html +25 -0
  63. package/src/lib/components/spiderly-panels/panel-header/panel-header.component.ts +69 -0
  64. package/src/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.html +7 -0
  65. package/src/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.ts +17 -0
  66. package/src/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.html +40 -0
  67. package/src/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.scss +11 -0
  68. package/src/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.ts +42 -0
  69. package/src/lib/components/spiderly-panels/spiderly-panels.module.ts +32 -0
  70. package/src/lib/controls/base-autocomplete-control.ts +17 -0
  71. package/src/lib/controls/base-control.ts +60 -0
  72. package/src/lib/controls/base-dropdown-control.ts +37 -0
  73. package/src/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.html +36 -0
  74. package/src/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.ts +56 -0
  75. package/src/lib/controls/spiderly-calendar/spiderly-calendar.component.html +21 -0
  76. package/src/lib/controls/spiderly-calendar/spiderly-calendar.component.ts +37 -0
  77. package/src/lib/controls/spiderly-checkbox/spiderly-checkbox.component.html +16 -0
  78. package/src/lib/controls/spiderly-checkbox/spiderly-checkbox.component.ts +38 -0
  79. package/src/lib/controls/spiderly-colorpick/spiderly-colorpick.component.html +33 -0
  80. package/src/lib/controls/spiderly-colorpick/spiderly-colorpick.component.ts +40 -0
  81. package/src/lib/controls/spiderly-controls.module.ts +61 -0
  82. package/src/lib/controls/spiderly-dropdown/spiderly-dropdown.component.html +27 -0
  83. package/src/lib/controls/spiderly-dropdown/spiderly-dropdown.component.ts +39 -0
  84. package/src/lib/controls/spiderly-editor/spiderly-editor.component.html +22 -0
  85. package/src/lib/controls/spiderly-editor/spiderly-editor.component.ts +58 -0
  86. package/src/lib/controls/spiderly-file/spiderly-file.component.html +54 -0
  87. package/src/lib/controls/spiderly-file/spiderly-file.component.ts +123 -0
  88. package/src/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.html +30 -0
  89. package/src/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.ts +38 -0
  90. package/src/lib/controls/spiderly-multiselect/spiderly-multiselect.component.html +23 -0
  91. package/src/lib/controls/spiderly-multiselect/spiderly-multiselect.component.ts +32 -0
  92. package/src/lib/controls/spiderly-number/spiderly-number.component.html +19 -0
  93. package/src/lib/controls/spiderly-number/spiderly-number.component.ts +37 -0
  94. package/src/lib/controls/spiderly-password/spiderly-password.component.html +17 -0
  95. package/src/lib/controls/spiderly-password/spiderly-password.component.ts +34 -0
  96. package/src/lib/controls/spiderly-textarea/spiderly-textarea.component.html +18 -0
  97. package/src/lib/controls/spiderly-textarea/spiderly-textarea.component.ts +32 -0
  98. package/src/lib/controls/spiderly-textbox/spiderly-textbox.component.html +23 -0
  99. package/src/lib/controls/spiderly-textbox/spiderly-textbox.component.ts +41 -0
  100. package/src/lib/entities/base-entity.ts +25 -0
  101. package/src/lib/entities/codebook.ts +23 -0
  102. package/src/lib/entities/init-company-auth-dialog-details.ts +22 -0
  103. package/src/lib/entities/init-top-bar-data.ts +35 -0
  104. package/src/lib/entities/is-authorized-for-save-event.ts +22 -0
  105. package/src/lib/entities/last-menu-icon-index-clicked.ts +18 -0
  106. package/src/lib/entities/lazy-load-selected-ids-result.ts +22 -0
  107. package/{lib/entities/menuchangeevent.d.ts → src/lib/entities/menuchangeevent.ts} +4 -4
  108. package/src/lib/entities/mime-type.ts +15 -0
  109. package/src/lib/entities/namebook.ts +22 -0
  110. package/src/lib/entities/primeng-option.ts +23 -0
  111. package/src/lib/entities/readonly-object.ts +1 -0
  112. package/src/lib/entities/security-entities.ts +548 -0
  113. package/src/lib/entities/simple-save-result.ts +19 -0
  114. package/src/lib/entities/spiderly-button.ts +30 -0
  115. package/{lib/entities/table-filter-context.d.ts → src/lib/entities/table-filter-context.ts} +6 -5
  116. package/src/lib/entities/table-filter-sort-meta.ts +5 -0
  117. package/{lib/entities/table-filter.d.ts → src/lib/entities/table-filter.ts} +48 -23
  118. package/src/lib/entities/table-response.ts +5 -0
  119. package/src/lib/enums/security-enums.ts +28 -0
  120. package/src/lib/enums/verification-type-codes.ts +5 -0
  121. package/src/lib/guards/auth.guard.ts +39 -0
  122. package/src/lib/guards/not-auth.guard.ts +32 -0
  123. package/src/lib/handlers/spiderly-error-handler.ts +32 -0
  124. package/src/lib/handlers/spiderly-transloco-fallback-strategy.ts +25 -0
  125. package/src/lib/interceptors/http-loading.interceptor.ts +21 -0
  126. package/src/lib/interceptors/json-parser.interceptor.ts +44 -0
  127. package/src/lib/interceptors/jwt.interceptor.ts +18 -0
  128. package/src/lib/interceptors/unauthorized.interceptor.ts +77 -0
  129. package/src/lib/modules/core.module.ts +22 -0
  130. package/src/lib/modules/primeng.module.ts +122 -0
  131. package/src/lib/modules/spiderly-transloco.module.ts +50 -0
  132. package/src/lib/services/api.service.security.ts +120 -0
  133. package/src/lib/services/app-initializer.ts +9 -0
  134. package/src/lib/services/app-layout-base.service.ts +184 -0
  135. package/src/lib/services/auth-base.service.ts +271 -0
  136. package/src/lib/services/base-form.service.ts +178 -0
  137. package/src/lib/services/config-base.service.ts +36 -0
  138. package/src/lib/services/helper-functions.ts +288 -0
  139. package/src/lib/services/spiderly-message.service.ts +66 -0
  140. package/src/lib/services/spiderly-transloco-loader.ts +15 -0
  141. package/src/lib/services/translate-labels-abstract.service.ts +13 -0
  142. package/src/lib/services/validator-abstract.service.ts +63 -0
  143. package/{styles → src/lib}/styles/layout/_config.scss +2 -2
  144. package/{styles → src/lib}/styles/layout/_content.scss +2 -0
  145. package/{styles → src/lib}/styles/layout/_footer.scss +2 -0
  146. package/{styles → src/lib}/styles/layout/_main.scss +6 -3
  147. package/{styles → src/lib}/styles/layout/_menu.scss +10 -7
  148. package/{styles → src/lib}/styles/layout/_mixins.scss +2 -2
  149. package/{styles → src/lib}/styles/layout/_preloading.scss +1 -1
  150. package/{styles → src/lib}/styles/layout/_responsive.scss +2 -0
  151. package/{styles → src/lib}/styles/layout/_spiderly-controls.scss +2 -0
  152. package/{styles → src/lib}/styles/layout/_topbar.scss +16 -11
  153. package/{styles → src/lib}/styles/layout/_typography.scss +1 -1
  154. package/{styles → src/lib}/styles/layout/_utils.scss +1 -1
  155. package/{styles → src/lib}/styles/layout/_variables.scss +59 -53
  156. package/src/lib/styles/layout/layout.scss +13 -0
  157. package/{styles → src/lib}/styles/shared.scss +70 -42
  158. package/src/lib/styles/styles.scss +3 -0
  159. package/{public-api.d.ts → src/public-api.ts} +103 -90
  160. package/tsconfig.lib.json +17 -0
  161. package/tsconfig.lib.prod.json +10 -0
  162. package/tsconfig.spec.json +14 -0
  163. package/esm2022/lib/components/auth/auth.module.mjs +0 -65
  164. package/esm2022/lib/components/auth/login/login.component.mjs +0 -60
  165. package/esm2022/lib/components/auth/partials/auth.component.mjs +0 -53
  166. package/esm2022/lib/components/auth/partials/login-verification.component.mjs +0 -39
  167. package/esm2022/lib/components/auth/partials/registration-verification.component.mjs +0 -37
  168. package/esm2022/lib/components/auth/partials/verification-wrapper.component.mjs +0 -74
  169. package/esm2022/lib/components/auth/registration/registration.component.mjs +0 -59
  170. package/esm2022/lib/components/base-details/role-base-details.component.mjs +0 -171
  171. package/esm2022/lib/components/base-form/base-form copy.mjs +0 -247
  172. package/esm2022/lib/components/card-skeleton/card-skeleton.component.mjs +0 -25
  173. package/esm2022/lib/components/footer/footer.component.mjs +0 -16
  174. package/esm2022/lib/components/index-card/index-card.component.mjs +0 -57
  175. package/esm2022/lib/components/info-card/info-card.component.mjs +0 -29
  176. package/esm2022/lib/components/layout/layout-base.component.mjs +0 -121
  177. package/esm2022/lib/components/layout/sidebar/menuitem.component.mjs +0 -161
  178. package/esm2022/lib/components/layout/sidebar/sidebar-menu.component.mjs +0 -34
  179. package/esm2022/lib/components/layout/sidebar/sidebar-menu.service.mjs +0 -26
  180. package/esm2022/lib/components/layout/sidebar/sidebar.component.mjs +0 -21
  181. package/esm2022/lib/components/layout/topbar/topbar.component.mjs +0 -115
  182. package/esm2022/lib/components/not-found/not-found.component.mjs +0 -20
  183. package/esm2022/lib/components/required/required.component.mjs +0 -12
  184. package/esm2022/lib/components/spiderly-buttons/google-button/google-button.component.mjs +0 -43
  185. package/esm2022/lib/components/spiderly-buttons/return-button/return-button.component.mjs +0 -37
  186. package/esm2022/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.mjs +0 -20
  187. package/esm2022/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.mjs +0 -68
  188. package/esm2022/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.mjs +0 -22
  189. package/esm2022/lib/components/spiderly-data-table/spiderly-data-table.component.mjs +0 -501
  190. package/esm2022/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.mjs +0 -42
  191. package/esm2022/lib/components/spiderly-form-control/spiderly-form-control.mjs +0 -36
  192. package/esm2022/lib/components/spiderly-panels/panel-body/panel-body.component.mjs +0 -19
  193. package/esm2022/lib/components/spiderly-panels/panel-footer/panel-footer.component.mjs +0 -14
  194. package/esm2022/lib/components/spiderly-panels/panel-header/panel-header.component.mjs +0 -49
  195. package/esm2022/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.mjs +0 -20
  196. package/esm2022/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.mjs +0 -63
  197. package/esm2022/lib/components/spiderly-panels/spiderly-panels.module.mjs +0 -49
  198. package/esm2022/lib/controls/base-autocomplete-control.mjs +0 -18
  199. package/esm2022/lib/controls/base-control.mjs +0 -62
  200. package/esm2022/lib/controls/base-dropdown-control.mjs +0 -37
  201. package/esm2022/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.mjs +0 -60
  202. package/esm2022/lib/controls/spiderly-calendar/spiderly-calendar.component.mjs +0 -39
  203. package/esm2022/lib/controls/spiderly-checkbox/spiderly-checkbox.component.mjs +0 -45
  204. package/esm2022/lib/controls/spiderly-colorpick/spiderly-colorpick.component.mjs +0 -40
  205. package/esm2022/lib/controls/spiderly-controls.module.mjs +0 -112
  206. package/esm2022/lib/controls/spiderly-dropdown/spiderly-dropdown.component.mjs +0 -40
  207. package/esm2022/lib/controls/spiderly-editor/spiderly-editor.component.mjs +0 -59
  208. package/esm2022/lib/controls/spiderly-file/spiderly-file.component.mjs +0 -106
  209. package/esm2022/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.mjs +0 -38
  210. package/esm2022/lib/controls/spiderly-multiselect/spiderly-multiselect.component.mjs +0 -34
  211. package/esm2022/lib/controls/spiderly-number/spiderly-number.component.mjs +0 -44
  212. package/esm2022/lib/controls/spiderly-password/spiderly-password.component.mjs +0 -37
  213. package/esm2022/lib/controls/spiderly-textarea/spiderly-textarea.component.mjs +0 -34
  214. package/esm2022/lib/controls/spiderly-textbox/spiderly-textbox.component.mjs +0 -45
  215. package/esm2022/lib/entities/base-entity.mjs +0 -18
  216. package/esm2022/lib/entities/codebook.mjs +0 -10
  217. package/esm2022/lib/entities/init-company-auth-dialog-details.mjs +0 -9
  218. package/esm2022/lib/entities/init-top-bar-data.mjs +0 -12
  219. package/esm2022/lib/entities/is-authorized-for-save-event.mjs +0 -9
  220. package/esm2022/lib/entities/last-menu-icon-index-clicked.mjs +0 -8
  221. package/esm2022/lib/entities/lazy-load-selected-ids-result.mjs +0 -11
  222. package/esm2022/lib/entities/menuchangeevent.mjs +0 -3
  223. package/esm2022/lib/entities/mime-type.mjs +0 -15
  224. package/esm2022/lib/entities/namebook.mjs +0 -9
  225. package/esm2022/lib/entities/primeng-option.mjs +0 -9
  226. package/esm2022/lib/entities/security-entities.mjs +0 -169
  227. package/esm2022/lib/entities/simple-save-result.mjs +0 -9
  228. package/esm2022/lib/entities/spiderly-button.mjs +0 -11
  229. package/esm2022/lib/entities/table-filter-context.mjs +0 -3
  230. package/esm2022/lib/entities/table-filter-sort-meta.mjs +0 -3
  231. package/esm2022/lib/entities/table-filter.mjs +0 -15
  232. package/esm2022/lib/entities/table-response.mjs +0 -3
  233. package/esm2022/lib/enums/security-enums.mjs +0 -26
  234. package/esm2022/lib/enums/verification-type-codes.mjs +0 -6
  235. package/esm2022/lib/guards/auth.guard.mjs +0 -40
  236. package/esm2022/lib/guards/not-auth.guard.mjs +0 -32
  237. package/esm2022/lib/handlers/spiderly-error-handler.mjs +0 -30
  238. package/esm2022/lib/handlers/spiderly-transloco-fallback-strategy.mjs +0 -24
  239. package/esm2022/lib/interceptors/http-loading.interceptor.mjs +0 -27
  240. package/esm2022/lib/interceptors/json-parser.interceptor.mjs +0 -47
  241. package/esm2022/lib/interceptors/jwt.interceptor.mjs +0 -27
  242. package/esm2022/lib/interceptors/unauthorized.interceptor.mjs +0 -64
  243. package/esm2022/lib/modules/core.module.mjs +0 -140
  244. package/esm2022/lib/modules/primeng.module.mjs +0 -278
  245. package/esm2022/lib/modules/spiderly-transloco.module.mjs +0 -44
  246. package/esm2022/lib/services/api.service.security.mjs +0 -86
  247. package/esm2022/lib/services/app-initializer.mjs +0 -6
  248. package/esm2022/lib/services/app-layout-base.service.mjs +0 -132
  249. package/esm2022/lib/services/auth-base.service.mjs +0 -220
  250. package/esm2022/lib/services/base-form.service.mjs +0 -124
  251. package/esm2022/lib/services/config-base.service.mjs +0 -33
  252. package/esm2022/lib/services/helper-functions.mjs +0 -229
  253. package/esm2022/lib/services/spiderly-message.service.mjs +0 -64
  254. package/esm2022/lib/services/spiderly-transloco-loader.mjs +0 -20
  255. package/esm2022/lib/services/translate-labels-abstract.service.mjs +0 -15
  256. package/esm2022/lib/services/validator-abstract.service.mjs +0 -51
  257. package/esm2022/public-api.mjs +0 -94
  258. package/esm2022/spiderly.mjs +0 -5
  259. package/fesm2022/spiderly.mjs +0 -4807
  260. package/fesm2022/spiderly.mjs.map +0 -1
  261. package/index.d.ts +0 -5
  262. package/lib/components/auth/auth.module.d.ts +0 -17
  263. package/lib/components/auth/login/login.component.d.ts +0 -35
  264. package/lib/components/auth/partials/auth.component.d.ts +0 -21
  265. package/lib/components/auth/partials/login-verification.component.d.ts +0 -18
  266. package/lib/components/auth/partials/registration-verification.component.d.ts +0 -17
  267. package/lib/components/auth/partials/verification-wrapper.component.d.ts +0 -31
  268. package/lib/components/auth/registration/registration.component.d.ts +0 -34
  269. package/lib/components/base-details/role-base-details.component.d.ts +0 -50
  270. package/lib/components/base-form/base-form copy.d.ts +0 -54
  271. package/lib/components/card-skeleton/card-skeleton.component.d.ts +0 -12
  272. package/lib/components/footer/footer.component.d.ts +0 -9
  273. package/lib/components/index-card/index-card.component.d.ts +0 -22
  274. package/lib/components/info-card/info-card.component.d.ts +0 -11
  275. package/lib/components/layout/layout-base.component.d.ts +0 -37
  276. package/lib/components/layout/sidebar/menuitem.component.d.ts +0 -43
  277. package/lib/components/layout/sidebar/sidebar-menu.component.d.ts +0 -23
  278. package/lib/components/layout/sidebar/sidebar-menu.service.d.ts +0 -12
  279. package/lib/components/layout/sidebar/sidebar.component.d.ts +0 -11
  280. package/lib/components/layout/topbar/topbar.component.d.ts +0 -45
  281. package/lib/components/not-found/not-found.component.d.ts +0 -9
  282. package/lib/components/required/required.component.d.ts +0 -6
  283. package/lib/components/spiderly-buttons/google-button/google-button.component.d.ts +0 -17
  284. package/lib/components/spiderly-buttons/return-button/return-button.component.d.ts +0 -10
  285. package/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.d.ts +0 -6
  286. package/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.d.ts +0 -27
  287. package/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.d.ts +0 -8
  288. package/lib/components/spiderly-data-table/spiderly-data-table.component.d.ts +0 -157
  289. package/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.d.ts +0 -11
  290. package/lib/components/spiderly-form-control/spiderly-form-control.d.ts +0 -37
  291. package/lib/components/spiderly-panels/panel-body/panel-body.component.d.ts +0 -9
  292. package/lib/components/spiderly-panels/panel-footer/panel-footer.component.d.ts +0 -8
  293. package/lib/components/spiderly-panels/panel-header/panel-header.component.d.ts +0 -29
  294. package/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.d.ts +0 -10
  295. package/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.d.ts +0 -25
  296. package/lib/components/spiderly-panels/spiderly-panels.module.d.ts +0 -13
  297. package/lib/controls/base-autocomplete-control.d.ts +0 -9
  298. package/lib/controls/base-control.d.ts +0 -23
  299. package/lib/controls/base-dropdown-control.d.ts +0 -18
  300. package/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.d.ts +0 -18
  301. package/lib/controls/spiderly-calendar/spiderly-calendar.component.d.ts +0 -13
  302. package/lib/controls/spiderly-checkbox/spiderly-checkbox.component.d.ts +0 -14
  303. package/lib/controls/spiderly-colorpick/spiderly-colorpick.component.d.ts +0 -11
  304. package/lib/controls/spiderly-controls.module.d.ts +0 -22
  305. package/lib/controls/spiderly-dropdown/spiderly-dropdown.component.d.ts +0 -14
  306. package/lib/controls/spiderly-editor/spiderly-editor.component.d.ts +0 -16
  307. package/lib/controls/spiderly-file/spiderly-file.component.d.ts +0 -36
  308. package/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.d.ts +0 -13
  309. package/lib/controls/spiderly-multiselect/spiderly-multiselect.component.d.ts +0 -11
  310. package/lib/controls/spiderly-number/spiderly-number.component.d.ts +0 -15
  311. package/lib/controls/spiderly-password/spiderly-password.component.d.ts +0 -12
  312. package/lib/controls/spiderly-textarea/spiderly-textarea.component.d.ts +0 -11
  313. package/lib/controls/spiderly-textbox/spiderly-textbox.component.d.ts +0 -15
  314. package/lib/entities/base-entity.d.ts +0 -14
  315. package/lib/entities/codebook.d.ts +0 -9
  316. package/lib/entities/init-company-auth-dialog-details.d.ts +0 -9
  317. package/lib/entities/init-top-bar-data.d.ts +0 -16
  318. package/lib/entities/is-authorized-for-save-event.d.ts +0 -9
  319. package/lib/entities/last-menu-icon-index-clicked.d.ts +0 -7
  320. package/lib/entities/lazy-load-selected-ids-result.d.ts +0 -9
  321. package/lib/entities/mime-type.d.ts +0 -11
  322. package/lib/entities/namebook.d.ts +0 -9
  323. package/lib/entities/primeng-option.d.ts +0 -9
  324. package/lib/entities/security-entities.d.ts +0 -211
  325. package/lib/entities/simple-save-result.d.ts +0 -7
  326. package/lib/entities/spiderly-button.d.ts +0 -13
  327. package/lib/entities/table-filter-sort-meta.d.ts +0 -4
  328. package/lib/entities/table-response.d.ts +0 -4
  329. package/lib/enums/security-enums.d.ts +0 -22
  330. package/lib/enums/verification-type-codes.d.ts +0 -4
  331. package/lib/guards/auth.guard.d.ts +0 -15
  332. package/lib/guards/not-auth.guard.d.ts +0 -12
  333. package/lib/handlers/spiderly-error-handler.d.ts +0 -14
  334. package/lib/handlers/spiderly-transloco-fallback-strategy.d.ts +0 -13
  335. package/lib/interceptors/http-loading.interceptor.d.ts +0 -11
  336. package/lib/interceptors/json-parser.interceptor.d.ts +0 -11
  337. package/lib/interceptors/jwt.interceptor.d.ts +0 -11
  338. package/lib/interceptors/unauthorized.interceptor.d.ts +0 -16
  339. package/lib/modules/core.module.d.ts +0 -13
  340. package/lib/modules/primeng.module.d.ts +0 -42
  341. package/lib/modules/spiderly-transloco.module.d.ts +0 -9
  342. package/lib/services/api.service.security.d.ts +0 -35
  343. package/lib/services/app-initializer.d.ts +0 -4
  344. package/lib/services/app-layout-base.service.d.ts +0 -60
  345. package/lib/services/auth-base.service.d.ts +0 -55
  346. package/lib/services/base-form.service.d.ts +0 -27
  347. package/lib/services/config-base.service.d.ts +0 -24
  348. package/lib/services/helper-functions.d.ts +0 -37
  349. package/lib/services/spiderly-message.service.d.ts +0 -17
  350. package/lib/services/spiderly-transloco-loader.d.ts +0 -10
  351. package/lib/services/translate-labels-abstract.service.d.ts +0 -7
  352. package/lib/services/validator-abstract.service.d.ts +0 -13
  353. package/styles/styles/layout/layout.scss +0 -13
  354. package/styles/styles/styles.scss +0 -6
  355. package/styles/styles/theme/base/_colors.scss +0 -18
  356. package/styles/styles/theme/base/_common.scss +0 -75
  357. package/styles/styles/theme/base/_components.scss +0 -106
  358. package/styles/styles/theme/base/_mixins.scss +0 -343
  359. package/styles/styles/theme/base/components/button/_button.scss +0 -564
  360. package/styles/styles/theme/base/components/button/_speeddial.scss +0 -96
  361. package/styles/styles/theme/base/components/button/_splitbutton.scss +0 -381
  362. package/styles/styles/theme/base/components/data/_carousel.scss +0 -37
  363. package/styles/styles/theme/base/components/data/_datatable.scss +0 -338
  364. package/styles/styles/theme/base/components/data/_dataview.scss +0 -55
  365. package/styles/styles/theme/base/components/data/_filter.scss +0 -138
  366. package/styles/styles/theme/base/components/data/_orderlist.scss +0 -103
  367. package/styles/styles/theme/base/components/data/_organizationchart.scss +0 -50
  368. package/styles/styles/theme/base/components/data/_paginator.scss +0 -92
  369. package/styles/styles/theme/base/components/data/_picklist.scss +0 -103
  370. package/styles/styles/theme/base/components/data/_timeline.scss +0 -81
  371. package/styles/styles/theme/base/components/data/_tree.scss +0 -149
  372. package/styles/styles/theme/base/components/data/_treetable.scss +0 -256
  373. package/styles/styles/theme/base/components/data/_virtualscroller.scss +0 -28
  374. package/styles/styles/theme/base/components/file/_fileupload.scss +0 -64
  375. package/styles/styles/theme/base/components/input/_autocomplete.scss +0 -118
  376. package/styles/styles/theme/base/components/input/_calendar.scss +0 -263
  377. package/styles/styles/theme/base/components/input/_cascadeselect.scss +0 -130
  378. package/styles/styles/theme/base/components/input/_checkbox.scss +0 -90
  379. package/styles/styles/theme/base/components/input/_chips.scss +0 -55
  380. package/styles/styles/theme/base/components/input/_colorpicker.scss +0 -26
  381. package/styles/styles/theme/base/components/input/_dropdown.scss +0 -152
  382. package/styles/styles/theme/base/components/input/_editor.scss +0 -122
  383. package/styles/styles/theme/base/components/input/_inputgroup.scss +0 -75
  384. package/styles/styles/theme/base/components/input/_inputmask.scss +0 -16
  385. package/styles/styles/theme/base/components/input/_inputnumber.scss +0 -28
  386. package/styles/styles/theme/base/components/input/_inputswitch.scss +0 -60
  387. package/styles/styles/theme/base/components/input/_inputtext.scss +0 -100
  388. package/styles/styles/theme/base/components/input/_listbox.scss +0 -82
  389. package/styles/styles/theme/base/components/input/_multiselect.scss +0 -173
  390. package/styles/styles/theme/base/components/input/_password.scss +0 -52
  391. package/styles/styles/theme/base/components/input/_radiobutton.scss +0 -78
  392. package/styles/styles/theme/base/components/input/_rating.scss +0 -55
  393. package/styles/styles/theme/base/components/input/_selectbutton.scss +0 -50
  394. package/styles/styles/theme/base/components/input/_slider.scss +0 -71
  395. package/styles/styles/theme/base/components/input/_togglebutton.scss +0 -48
  396. package/styles/styles/theme/base/components/input/_treeselect.scss +0 -139
  397. package/styles/styles/theme/base/components/menu/_breadcrumb.scss +0 -42
  398. package/styles/styles/theme/base/components/menu/_contextmenu.scss +0 -39
  399. package/styles/styles/theme/base/components/menu/_dock.scss +0 -95
  400. package/styles/styles/theme/base/components/menu/_megamenu.scss +0 -55
  401. package/styles/styles/theme/base/components/menu/_menu.scss +0 -37
  402. package/styles/styles/theme/base/components/menu/_menubar.scss +0 -141
  403. package/styles/styles/theme/base/components/menu/_panelmenu.scss +0 -153
  404. package/styles/styles/theme/base/components/menu/_slidemenu.scss +0 -59
  405. package/styles/styles/theme/base/components/menu/_steps.scss +0 -56
  406. package/styles/styles/theme/base/components/menu/_tabmenu.scss +0 -74
  407. package/styles/styles/theme/base/components/menu/_tieredmenu.scss +0 -43
  408. package/styles/styles/theme/base/components/messages/_inlinemessage.scss +0 -69
  409. package/styles/styles/theme/base/components/messages/_message.scss +0 -107
  410. package/styles/styles/theme/base/components/messages/_toast.scss +0 -103
  411. package/styles/styles/theme/base/components/misc/_avatar.scss +0 -30
  412. package/styles/styles/theme/base/components/misc/_badge.scss +0 -48
  413. package/styles/styles/theme/base/components/misc/_blockui.scss +0 -0
  414. package/styles/styles/theme/base/components/misc/_chip.scss +0 -42
  415. package/styles/styles/theme/base/components/misc/_inplace.scss +0 -17
  416. package/styles/styles/theme/base/components/misc/_progressbar.scss +0 -17
  417. package/styles/styles/theme/base/components/misc/_scrolltop.scss +0 -25
  418. package/styles/styles/theme/base/components/misc/_skeleton.scss +0 -8
  419. package/styles/styles/theme/base/components/misc/_tag.scss +0 -40
  420. package/styles/styles/theme/base/components/misc/_terminal.scss +0 -12
  421. package/styles/styles/theme/base/components/multimedia/_galleria.scss +0 -155
  422. package/styles/styles/theme/base/components/multimedia/_image.scss +0 -49
  423. package/styles/styles/theme/base/components/overlay/_confirmpopup.scss +0 -72
  424. package/styles/styles/theme/base/components/overlay/_dialog.scss +0 -73
  425. package/styles/styles/theme/base/components/overlay/_overlaypanel.scss +0 -64
  426. package/styles/styles/theme/base/components/overlay/_sidebar.scss +0 -27
  427. package/styles/styles/theme/base/components/overlay/_tooltip.scss +0 -33
  428. package/styles/styles/theme/base/components/panel/_accordion.scss +0 -119
  429. package/styles/styles/theme/base/components/panel/_card.scss +0 -30
  430. package/styles/styles/theme/base/components/panel/_divider.scss +0 -31
  431. package/styles/styles/theme/base/components/panel/_fieldset.scss +0 -47
  432. package/styles/styles/theme/base/components/panel/_panel.scss +0 -58
  433. package/styles/styles/theme/base/components/panel/_scrollpanel.scss +0 -6
  434. package/styles/styles/theme/base/components/panel/_splitter.scss +0 -19
  435. package/styles/styles/theme/base/components/panel/_tabview.scss +0 -82
  436. package/styles/styles/theme/base/components/panel/_toolbar.scss +0 -11
  437. package/styles/styles/theme/saga/_extensions.scss +0 -27
  438. package/styles/styles/theme/saga/_variables.scss +0 -1
  439. package/styles/styles/theme/saga/saga-blue/_extensions.scss +0 -2
  440. package/styles/styles/theme/saga/saga-blue/_fonts.scss +0 -1
  441. package/styles/styles/theme/saga/saga-blue/_variables.scss +0 -1
  442. package/styles/styles/theme/saga/saga-blue/theme.scss +0 -4
@@ -1,8 +0,0 @@
1
- import { MenuItem } from "primeng/api";
2
- import { SpiderlyButtonBaseComponent } from "../spiderly-button-base/spiderly-button-base";
3
- import * as i0 from "@angular/core";
4
- export declare class SpiderlySplitButtonComponent extends SpiderlyButtonBaseComponent {
5
- dropdownItems: MenuItem[];
6
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlySplitButtonComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlySplitButtonComponent, "spiderly-split-button", never, { "dropdownItems": { "alias": "dropdownItems"; "required": false; }; }, {}, never, ["*"], true, never>;
8
- }
@@ -1,157 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { ActivatedRoute, Router } from '@angular/router';
3
- import { SelectItem } from 'primeng/api';
4
- import { Table, TableFilterEvent, TableLazyLoadEvent } from 'primeng/table';
5
- import { DialogService, DynamicDialogRef } from 'primeng/dynamicdialog';
6
- import { SpiderlyMessageService } from '../../services/spiderly-message.service';
7
- import { Observable } from 'rxjs';
8
- import { PrimengOption } from '../../entities/primeng-option';
9
- import { TranslocoService } from '@jsverse/transloco';
10
- import { SpiderlyFormControl } from '../spiderly-form-control/spiderly-form-control';
11
- import { TableResponse } from '../../entities/table-response';
12
- import { LazyLoadSelectedIdsResult } from '../../entities/lazy-load-selected-ids-result';
13
- import { TableFilter } from '../../entities/table-filter';
14
- import * as i0 from "@angular/core";
15
- export declare class SpiderlyDataTableComponent implements OnInit {
16
- private router;
17
- private dialogService;
18
- private route;
19
- private messageService;
20
- private translocoService;
21
- private locale;
22
- table: Table;
23
- tableTitle: string;
24
- tableIcon: string;
25
- items: any[];
26
- rows: number;
27
- cols: Column[];
28
- showPaginator: boolean;
29
- showCardWrapper: boolean;
30
- readonly: boolean;
31
- totalRecords: number;
32
- onTotalRecordsChange: EventEmitter<number>;
33
- getTableDataObservableMethod: (tableFilter: TableFilter) => Observable<TableResponse>;
34
- exportTableDataToExcelObservableMethod: (tableFilter: TableFilter) => Observable<any>;
35
- deleteItemFromTableObservableMethod: (rowId: number) => Observable<any>;
36
- lastLazyLoadEvent: TableLazyLoadEvent;
37
- loading: boolean;
38
- newlySelectedItems: number[];
39
- fakeSelectedItems: number[];
40
- currentPageSelectedItemsFromDb: number[];
41
- unselectedItems: number[];
42
- selectionMode: 'single' | 'multiple' | undefined | null;
43
- onLazyLoad: EventEmitter<TableFilter>;
44
- rowsSelectedNumber: number;
45
- isAllSelected: boolean;
46
- fakeIsAllSelected: boolean;
47
- isFirstTimeLazyLoad: boolean;
48
- onIsAllSelectedChange: EventEmitter<AllClickEvent>;
49
- selectedLazyLoadObservableMethod: (tableFilter: TableFilter) => Observable<LazyLoadSelectedIdsResult>;
50
- additionalFilterIdLong: number;
51
- matchModeDateOptions: SelectItem[];
52
- matchModeNumberOptions: SelectItem[];
53
- showAddButton: boolean;
54
- showExportToExcelButton: boolean;
55
- showReloadTableButton: boolean;
56
- deleteRef: DynamicDialogRef;
57
- getFormArrayItems: (additionalIndexes?: any) => any[];
58
- hasLazyLoad: boolean;
59
- selectedItemIds: number[];
60
- getAlreadySelectedItemIds: (additionalIndexes?: any) => number[];
61
- selectedItems: any[];
62
- getAlreadySelectedItems: (additionalIndexes?: any) => any[];
63
- getFormControl: (formControlName: string, index: number, additionalIndexes?: any) => SpiderlyFormControl;
64
- additionalIndexes: any;
65
- onRowSelect: EventEmitter<RowClickEvent>;
66
- onRowUnselect: EventEmitter<RowClickEvent>;
67
- constructor(router: Router, dialogService: DialogService, route: ActivatedRoute, messageService: SpiderlyMessageService, translocoService: TranslocoService, locale: string);
68
- ngOnInit(): void;
69
- lazyLoad(event: TableLazyLoadEvent): void;
70
- clientLoad(): void;
71
- private clientFilterCount;
72
- filter(event: TableFilterEvent): void;
73
- private loadFormArrayItems;
74
- getColHeaderWidth(filterType: string): "min-width: 12rem;" | "min-width: 10rem;" | "min-width: 8rem;" | "width: 0rem;";
75
- getColMatchModeOptions(filterType: string): SelectItem<any>[];
76
- getColMatchMode(filterType: string): "equals" | "contains" | "in";
77
- isDropOrMulti(filterType: string): boolean;
78
- navigateToDetails(rowId: number): void;
79
- deleteObject(rowId: number): void;
80
- reload(): void;
81
- showActions(): boolean;
82
- getStyleForBodyColumn(col: Column<any>): string;
83
- getClassForAction(action: Action): string;
84
- getMethodForAction(action: Action, rowData: any): void;
85
- getRowData(rowData: any, col: Column): string;
86
- colTrackByFn(index: any, item: any): any;
87
- actionTrackByFn(index: any, item: Action): string;
88
- exportListToExcel(): void;
89
- clear(table: Table): void;
90
- setFakeIsAllSelected(): void;
91
- selectAll(checked: boolean): void;
92
- selectRow(id: number, index: number): void;
93
- isRowSelected(id: number): boolean;
94
- rowSelect(id: number): void;
95
- rowUnselect(id: number): void;
96
- getFormArrayControlByIndex(formControlName: string, index: number): SpiderlyFormControl;
97
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyDataTableComponent, never>;
98
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyDataTableComponent, "spiderly-data-table", never, { "tableTitle": { "alias": "tableTitle"; "required": false; }; "tableIcon": { "alias": "tableIcon"; "required": false; }; "items": { "alias": "items"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "showPaginator": { "alias": "showPaginator"; "required": false; }; "showCardWrapper": { "alias": "showCardWrapper"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "getTableDataObservableMethod": { "alias": "getTableDataObservableMethod"; "required": false; }; "exportTableDataToExcelObservableMethod": { "alias": "exportTableDataToExcelObservableMethod"; "required": false; }; "deleteItemFromTableObservableMethod": { "alias": "deleteItemFromTableObservableMethod"; "required": false; }; "newlySelectedItems": { "alias": "newlySelectedItems"; "required": false; }; "unselectedItems": { "alias": "unselectedItems"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "selectedLazyLoadObservableMethod": { "alias": "selectedLazyLoadObservableMethod"; "required": false; }; "additionalFilterIdLong": { "alias": "additionalFilterIdLong"; "required": false; }; "showAddButton": { "alias": "showAddButton"; "required": false; }; "showExportToExcelButton": { "alias": "showExportToExcelButton"; "required": false; }; "showReloadTableButton": { "alias": "showReloadTableButton"; "required": false; }; "getFormArrayItems": { "alias": "getFormArrayItems"; "required": false; }; "hasLazyLoad": { "alias": "hasLazyLoad"; "required": false; }; "getAlreadySelectedItemIds": { "alias": "getAlreadySelectedItemIds"; "required": false; }; "getAlreadySelectedItems": { "alias": "getAlreadySelectedItems"; "required": false; }; "getFormControl": { "alias": "getFormControl"; "required": false; }; "additionalIndexes": { "alias": "additionalIndexes"; "required": false; }; }, { "onTotalRecordsChange": "onTotalRecordsChange"; "onLazyLoad": "onLazyLoad"; "onIsAllSelectedChange": "onIsAllSelectedChange"; "onRowSelect": "onRowSelect"; "onRowUnselect": "onRowUnselect"; }, never, never, true, never>;
99
- }
100
- export declare class Action {
101
- name?: string;
102
- field?: string;
103
- icon?: string;
104
- style?: string;
105
- onClick?: (id: number) => void;
106
- constructor({ name, field, icon, style, onClick, }?: {
107
- name?: string;
108
- field?: string;
109
- icon?: string;
110
- style?: string;
111
- onClick?: () => void;
112
- });
113
- }
114
- export declare class Column<T = any> {
115
- name: string;
116
- field?: string & keyof T;
117
- filterField?: string & keyof T;
118
- filterType?: 'text' | 'date' | 'multiselect' | 'boolean' | 'numeric';
119
- filterPlaceholder?: string;
120
- showMatchModes?: boolean;
121
- showAddButton?: boolean;
122
- dropdownOrMultiselectValues?: PrimengOption[];
123
- actions?: Action[];
124
- editable?: boolean;
125
- showTime?: boolean;
126
- constructor({ name, field, filterField, filterType, filterPlaceholder, showMatchModes, showAddButton, dropdownOrMultiselectValues, actions, editable, showTime, }?: {
127
- name?: string;
128
- field?: string & keyof T;
129
- filterField?: string & keyof T;
130
- filterType?: 'text' | 'date' | 'multiselect' | 'boolean' | 'numeric';
131
- filterPlaceholder?: string;
132
- showMatchModes?: boolean;
133
- showAddButton?: boolean;
134
- dropdownOrMultiselectValues?: PrimengOption[];
135
- actions?: Action[];
136
- editable?: boolean;
137
- showTime?: boolean;
138
- });
139
- }
140
- export declare class RowClickEvent {
141
- index?: number;
142
- id?: number;
143
- additionalIndexes?: any;
144
- constructor({ index, id, additionalIndexes }?: {
145
- index?: number;
146
- id?: number;
147
- additionalIndexes?: any;
148
- });
149
- }
150
- export declare class AllClickEvent {
151
- checked?: boolean;
152
- additionalIndexes?: any;
153
- constructor({ checked, additionalIndexes }?: {
154
- checked?: boolean;
155
- additionalIndexes?: any;
156
- });
157
- }
@@ -1,11 +0,0 @@
1
- import { DynamicDialogConfig, DynamicDialogRef } from "primeng/dynamicdialog";
2
- import * as i0 from "@angular/core";
3
- export declare class SpiderlyDeleteConfirmationComponent {
4
- ref: DynamicDialogRef;
5
- config: DynamicDialogConfig;
6
- constructor(ref: DynamicDialogRef, config: DynamicDialogConfig);
7
- accept(): void;
8
- reject(): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyDeleteConfirmationComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyDeleteConfirmationComponent, "spiderly-delete-confirmation", never, {}, {}, never, never, true, never>;
11
- }
@@ -1,37 +0,0 @@
1
- import { FormArray, FormControl, FormControlOptions, FormGroup, ValidatorFn } from '@angular/forms';
2
- import { Observable } from 'rxjs';
3
- import { BaseEntity } from '../../entities/base-entity';
4
- export interface SpiderlyValidatorFn extends ValidatorFn {
5
- hasNotEmptyRule?: boolean;
6
- }
7
- export declare class SpiderlyFormControl<T = any> extends FormControl<T> {
8
- label: string;
9
- labelForDisplay: string;
10
- required: boolean;
11
- private _spiderlyValidator;
12
- constructor(value: any, opts?: FormControlOptions, required?: boolean);
13
- getRawValue(): T;
14
- get validator(): SpiderlyValidatorFn | null;
15
- set validator(validator: SpiderlyValidatorFn | null);
16
- }
17
- export declare class SpiderlyFormGroup<TValue = any> extends FormGroup {
18
- controls: {
19
- [P in keyof TValue]: SpiderlyFormControl<TValue[P]>;
20
- };
21
- constructor(controls: {
22
- [P in keyof TValue]: SpiderlyFormControl<TValue[P]>;
23
- });
24
- getRawValue(): TValue;
25
- name?: string;
26
- mainDTOName?: string;
27
- saveObservableMethod?: (saveBody: any) => Observable<any>;
28
- initSaveBody?: () => BaseEntity;
29
- controlNamesFromHtml?: string[];
30
- }
31
- export declare class SpiderlyFormArray<TValue = any> extends FormArray {
32
- value: TValue[];
33
- required: boolean;
34
- modelConstructor: TValue;
35
- translationKey: string;
36
- controlNamesFromHtml?: string[];
37
- }
@@ -1,9 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class PanelBodyComponent implements OnInit {
4
- normalBottomPadding: boolean;
5
- constructor();
6
- ngOnInit(): void;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<PanelBodyComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<PanelBodyComponent, "panel-body", never, { "normalBottomPadding": { "alias": "normalBottomPadding"; "required": false; }; }, {}, never, ["*"], false, never>;
9
- }
@@ -1,8 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class PanelFooterComponent implements OnInit {
4
- constructor();
5
- ngOnInit(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<PanelFooterComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<PanelFooterComponent, "panel-footer", never, {}, {}, never, ["*", "[footerRight]"], false, never>;
8
- }
@@ -1,29 +0,0 @@
1
- import { TranslocoService } from '@jsverse/transloco';
2
- import { OnInit } from '@angular/core';
3
- import * as i0 from "@angular/core";
4
- export declare class PanelHeaderComponent implements OnInit {
5
- private translocoService;
6
- title: string;
7
- showBigTitle: boolean;
8
- showIcon: boolean;
9
- icon: string;
10
- index: number;
11
- tabs: SpiderlyTab[];
12
- constructor(translocoService: TranslocoService);
13
- ngOnInit(): void;
14
- setTabIsSelected(tab: SpiderlyTab): void;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<PanelHeaderComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<PanelHeaderComponent, "panel-header", never, { "title": { "alias": "title"; "required": false; }; "showBigTitle": { "alias": "showBigTitle"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "index": { "alias": "index"; "required": false; }; "tabs": { "alias": "tabs"; "required": false; }; }, {}, never, never, false, never>;
17
- }
18
- export declare class SpiderlyTab {
19
- label?: string;
20
- id?: number;
21
- icon?: string;
22
- isSelected?: boolean;
23
- constructor({ label, id, icon, isSelected, }?: {
24
- label?: string;
25
- id?: number;
26
- icon?: string;
27
- isSelected?: boolean;
28
- });
29
- }
@@ -1,10 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class SpiderlyCardComponent implements OnInit {
4
- icon: string;
5
- title: string;
6
- constructor();
7
- ngOnInit(): void;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyCardComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyCardComponent, "spiderly-card", never, { "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], false, never>;
10
- }
@@ -1,25 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { MenuItem } from 'primeng/api';
3
- import { Menu } from 'primeng/menu';
4
- import * as i0 from "@angular/core";
5
- export declare class SpiderlyPanelComponent implements OnInit {
6
- isFirstMultiplePanel: boolean;
7
- isMiddleMultiplePanel: boolean;
8
- isLastMultiplePanel: boolean;
9
- toggleable: boolean;
10
- collapsed: boolean;
11
- crudMenu: MenuItem[];
12
- showCrudMenu: boolean;
13
- showRemoveIcon: boolean;
14
- index: number;
15
- showPanelHeader: boolean;
16
- onMenuIconClick: EventEmitter<number>;
17
- onRemoveIconClick: EventEmitter<null>;
18
- menu: Menu;
19
- constructor();
20
- ngOnInit(): void;
21
- menuItemClick(index: number, event: any): void;
22
- removeItemClick(): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyPanelComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyPanelComponent, "spiderly-panel", never, { "isFirstMultiplePanel": { "alias": "isFirstMultiplePanel"; "required": false; }; "isMiddleMultiplePanel": { "alias": "isMiddleMultiplePanel"; "required": false; }; "isLastMultiplePanel": { "alias": "isLastMultiplePanel"; "required": false; }; "toggleable": { "alias": "toggleable"; "required": false; }; "collapsed": { "alias": "collapsed"; "required": false; }; "crudMenu": { "alias": "crudMenu"; "required": false; }; "showCrudMenu": { "alias": "showCrudMenu"; "required": false; }; "showRemoveIcon": { "alias": "showRemoveIcon"; "required": false; }; "index": { "alias": "index"; "required": false; }; "showPanelHeader": { "alias": "showPanelHeader"; "required": false; }; }, { "onMenuIconClick": "onMenuIconClick"; "onRemoveIconClick": "onRemoveIconClick"; }, never, ["panel-header", "panel-body", "panel-footer"], false, never>;
25
- }
@@ -1,13 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./panel-header/panel-header.component";
3
- import * as i2 from "./panel-body/panel-body.component";
4
- import * as i3 from "./panel-footer/panel-footer.component";
5
- import * as i4 from "./spiderly-panel/spiderly-panel.component";
6
- import * as i5 from "./spiderly-card/spiderly-card.component";
7
- import * as i6 from "@angular/common";
8
- import * as i7 from "../../modules/primeng.module";
9
- export declare class SpiderlyPanelsModule {
10
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyPanelsModule, never>;
11
- static ɵmod: i0.ɵɵNgModuleDeclaration<SpiderlyPanelsModule, [typeof i1.PanelHeaderComponent, typeof i2.PanelBodyComponent, typeof i3.PanelFooterComponent, typeof i4.SpiderlyPanelComponent, typeof i5.SpiderlyCardComponent], [typeof i6.CommonModule, typeof i7.PrimengModule], [typeof i1.PanelHeaderComponent, typeof i2.PanelBodyComponent, typeof i3.PanelFooterComponent, typeof i4.SpiderlyPanelComponent, typeof i5.SpiderlyCardComponent]>;
12
- static ɵinj: i0.ɵɵInjectorDeclaration<SpiderlyPanelsModule>;
13
- }
@@ -1,9 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { AutoCompleteCompleteEvent } from 'primeng/autocomplete';
3
- import { BaseDropdownControl } from './base-dropdown-control';
4
- import * as i0 from "@angular/core";
5
- export declare class BaseAutocompleteControl extends BaseDropdownControl {
6
- onTextInput: EventEmitter<AutoCompleteCompleteEvent>;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseAutocompleteControl, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseAutocompleteControl, "base-autocomplete-control", never, {}, { "onTextInput": "onTextInput"; }, never, never, false, never>;
9
- }
@@ -1,23 +0,0 @@
1
- import { SpiderlyFormControl } from '../components/spiderly-form-control/spiderly-form-control';
2
- import { TranslocoService } from '@jsverse/transloco';
3
- import * as i0 from "@angular/core";
4
- export declare class BaseControl {
5
- protected translocoService: TranslocoService;
6
- control: SpiderlyFormControl;
7
- disabled: boolean;
8
- showLabel: boolean;
9
- label: string;
10
- controlValid: boolean;
11
- placeholder: string;
12
- showTooltip: boolean;
13
- tooltipText: string;
14
- tooltipIcon: string;
15
- errorMessageTooltipEvent: 'hover' | 'focus';
16
- constructor(translocoService: TranslocoService);
17
- ngOnInit(): void;
18
- ngAfterViewInit(): void;
19
- getTranslatedLabel(): string;
20
- getValidationErrrorMessages(): any;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseControl, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseControl, "base-control", never, { "control": { "alias": "control"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "controlValid": { "alias": "controlValid"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "showTooltip": { "alias": "showTooltip"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "tooltipIcon": { "alias": "tooltipIcon"; "required": false; }; }, {}, never, never, false, never>;
23
- }
@@ -1,18 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { BaseControl } from './base-control';
3
- import { PrimengOption } from '../entities/primeng-option';
4
- import { TranslocoService } from '@jsverse/transloco';
5
- import * as i0 from "@angular/core";
6
- export declare class BaseDropdownControl extends BaseControl {
7
- protected translocoService: TranslocoService;
8
- options: PrimengOption[];
9
- showAddon: boolean;
10
- addonIcon: string;
11
- placeholder: string;
12
- onButtonClick: EventEmitter<null>;
13
- constructor(translocoService: TranslocoService);
14
- dropdownMarkAsDirty(): void;
15
- addonClick(): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseDropdownControl, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseDropdownControl, "base-dropdown-control", never, { "options": { "alias": "options"; "required": false; }; "showAddon": { "alias": "showAddon"; "required": false; }; "addonIcon": { "alias": "addonIcon"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "onButtonClick": "onButtonClick"; }, never, never, false, never>;
18
- }
@@ -1,18 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { AutoCompleteCompleteEvent } from 'primeng/autocomplete';
3
- import { BaseAutocompleteControl } from '../base-autocomplete-control';
4
- import { TranslocoService } from '@jsverse/transloco';
5
- import * as i0 from "@angular/core";
6
- export declare class SpiderlyAutocompleteComponent extends BaseAutocompleteControl implements OnInit {
7
- protected translocoService: TranslocoService;
8
- appendTo: any;
9
- showClear: boolean;
10
- emptyMessage: string;
11
- displayName: string;
12
- constructor(translocoService: TranslocoService);
13
- ngOnInit(): void;
14
- search(event: AutoCompleteCompleteEvent): void;
15
- select(event: any): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyAutocompleteComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyAutocompleteComponent, "spiderly-autocomplete", never, { "appendTo": { "alias": "appendTo"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "displayName": { "alias": "displayName"; "required": false; }; }, {}, never, never, true, never>;
18
- }
@@ -1,13 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseControl } from '../base-control';
3
- import { TranslocoService } from '@jsverse/transloco';
4
- import * as i0 from "@angular/core";
5
- export declare class SpiderlyCalendarComponent extends BaseControl implements OnInit {
6
- protected translocoService: TranslocoService;
7
- showTime: boolean;
8
- constructor(translocoService: TranslocoService);
9
- ngOnInit(): void;
10
- setDate(event: Date): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyCalendarComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyCalendarComponent, "spiderly-calendar", never, { "showTime": { "alias": "showTime"; "required": false; }; }, {}, never, never, true, never>;
13
- }
@@ -1,14 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseControl } from '../base-control';
3
- import { TranslocoService } from '@jsverse/transloco';
4
- import * as i0 from "@angular/core";
5
- export declare class SpiderlyCheckboxComponent extends BaseControl implements OnInit {
6
- protected translocoService: TranslocoService;
7
- fakeLabel: boolean;
8
- initializeToFalse: boolean;
9
- inlineLabel: boolean;
10
- constructor(translocoService: TranslocoService);
11
- ngOnInit(): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyCheckboxComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyCheckboxComponent, "spiderly-checkbox", never, { "fakeLabel": { "alias": "fakeLabel"; "required": false; }; "initializeToFalse": { "alias": "initializeToFalse"; "required": false; }; "inlineLabel": { "alias": "inlineLabel"; "required": false; }; }, {}, never, never, true, never>;
14
- }
@@ -1,11 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseControl } from '../base-control';
3
- import { TranslocoService } from '@jsverse/transloco';
4
- import * as i0 from "@angular/core";
5
- export declare class SpiderlyColorpickComponent extends BaseControl implements OnInit {
6
- protected translocoService: TranslocoService;
7
- constructor(translocoService: TranslocoService);
8
- ngOnInit(): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyColorpickComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyColorpickComponent, "spiderly-colorpick", never, {}, {}, never, never, true, never>;
11
- }
@@ -1,22 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./spiderly-textbox/spiderly-textbox.component";
3
- import * as i2 from "./spiderly-textarea/spiderly-textarea.component";
4
- import * as i3 from "./spiderly-checkbox/spiderly-checkbox.component";
5
- import * as i4 from "./spiderly-calendar/spiderly-calendar.component";
6
- import * as i5 from "../components/spiderly-buttons/return-button/return-button.component";
7
- import * as i6 from "../components/spiderly-buttons/spiderly-button/spiderly-button.component";
8
- import * as i7 from "../components/spiderly-panels/spiderly-panels.module";
9
- import * as i8 from "./spiderly-password/spiderly-password.component";
10
- import * as i9 from "./spiderly-autocomplete/spiderly-autocomplete.component";
11
- import * as i10 from "./spiderly-multiautocomplete/spiderly-multiautocomplete.component";
12
- import * as i11 from "./spiderly-multiselect/spiderly-multiselect.component";
13
- import * as i12 from "./spiderly-number/spiderly-number.component";
14
- import * as i13 from "./spiderly-dropdown/spiderly-dropdown.component";
15
- import * as i14 from "./spiderly-editor/spiderly-editor.component";
16
- import * as i15 from "./spiderly-colorpick/spiderly-colorpick.component";
17
- import * as i16 from "./spiderly-file/spiderly-file.component";
18
- export declare class SpiderlyControlsModule {
19
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyControlsModule, never>;
20
- static ɵmod: i0.ɵɵNgModuleDeclaration<SpiderlyControlsModule, never, [typeof i1.SpiderlyTextboxComponent, typeof i2.SpiderlyTextareaComponent, typeof i3.SpiderlyCheckboxComponent, typeof i4.SpiderlyCalendarComponent, typeof i5.SpiderlyReturnButtonComponent, typeof i6.SpiderlyButtonComponent, typeof i7.SpiderlyPanelsModule, typeof i8.SpiderlyPasswordComponent, typeof i9.SpiderlyAutocompleteComponent, typeof i10.SpiderlyMultiAutocompleteComponent, typeof i11.SpiderlyMultiSelectComponent, typeof i12.SpiderlyNumberComponent, typeof i13.SpiderlyDropdownComponent, typeof i14.SpiderlyEditorComponent, typeof i15.SpiderlyColorpickComponent, typeof i16.SpiderlyFileComponent], [typeof i1.SpiderlyTextboxComponent, typeof i2.SpiderlyTextareaComponent, typeof i3.SpiderlyCheckboxComponent, typeof i4.SpiderlyCalendarComponent, typeof i5.SpiderlyReturnButtonComponent, typeof i6.SpiderlyButtonComponent, typeof i7.SpiderlyPanelsModule, typeof i8.SpiderlyPasswordComponent, typeof i9.SpiderlyAutocompleteComponent, typeof i10.SpiderlyMultiAutocompleteComponent, typeof i11.SpiderlyMultiSelectComponent, typeof i12.SpiderlyNumberComponent, typeof i13.SpiderlyDropdownComponent, typeof i14.SpiderlyEditorComponent, typeof i15.SpiderlyColorpickComponent, typeof i16.SpiderlyFileComponent]>;
21
- static ɵinj: i0.ɵɵInjectorDeclaration<SpiderlyControlsModule>;
22
- }
@@ -1,14 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { BaseDropdownControl } from '../base-dropdown-control';
3
- import { TranslocoService } from '@jsverse/transloco';
4
- import { DropdownChangeEvent } from 'primeng/dropdown';
5
- import * as i0 from "@angular/core";
6
- export declare class SpiderlyDropdownComponent extends BaseDropdownControl implements OnInit {
7
- protected translocoService: TranslocoService;
8
- onChange: EventEmitter<DropdownChangeEvent>;
9
- constructor(translocoService: TranslocoService);
10
- ngOnInit(): void;
11
- change(event: DropdownChangeEvent): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyDropdownComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyDropdownComponent, "spiderly-dropdown", never, {}, { "onChange": "onChange"; }, never, never, true, never>;
14
- }
@@ -1,16 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseControl } from '../base-control';
3
- import { TranslocoService } from '@jsverse/transloco';
4
- import { Editor } from 'primeng/editor';
5
- import { Tooltip } from 'primeng/tooltip';
6
- import * as i0 from "@angular/core";
7
- export declare class SpiderlyEditorComponent extends BaseControl implements OnInit {
8
- protected translocoService: TranslocoService;
9
- editor: Editor;
10
- tooltip: Tooltip;
11
- constructor(translocoService: TranslocoService);
12
- ngOnInit(): void;
13
- onClick(): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyEditorComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyEditorComponent, "spiderly-editor", never, {}, {}, never, never, true, never>;
16
- }
@@ -1,36 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { BaseControl } from '../base-control';
3
- import { FileSelectEvent } from 'primeng/fileupload';
4
- import { TranslocoService } from '@jsverse/transloco';
5
- import { BaseEntity } from '../../entities/base-entity';
6
- import * as i0 from "@angular/core";
7
- export declare class SpiderlyFileComponent extends BaseControl implements OnInit {
8
- protected translocoService: TranslocoService;
9
- onFileSelected: EventEmitter<SpiderlyFileSelectEvent>;
10
- onFileRemoved: EventEmitter<null>;
11
- objectId: number;
12
- fileData: string;
13
- acceptedFileTypes: Array<'image/*' | 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' | 'application/vnd.ms-excel' | '.xlsx' | '.xls'>;
14
- required: boolean;
15
- multiple: boolean;
16
- acceptedFileTypesCommaSeparated: string;
17
- files: File[];
18
- constructor(translocoService: TranslocoService);
19
- ngOnInit(): void;
20
- filesSelected(event: FileSelectEvent): void;
21
- choose(event: any, chooseCallback: any): void;
22
- fileRemoved(removeFileCallback: any, index: number): void;
23
- base64ToFile(base64String: string): File;
24
- isImageFileType(mimeType: string): boolean;
25
- isExcelFileType(mimeType: string): boolean;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyFileComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyFileComponent, "spiderly-file", never, { "objectId": { "alias": "objectId"; "required": false; }; "fileData": { "alias": "fileData"; "required": false; }; "acceptedFileTypes": { "alias": "acceptedFileTypes"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "files": { "alias": "files"; "required": false; }; }, { "onFileSelected": "onFileSelected"; "onFileRemoved": "onFileRemoved"; }, never, never, true, never>;
28
- }
29
- export declare class SpiderlyFileSelectEvent extends BaseEntity {
30
- file?: File;
31
- formData?: FormData;
32
- constructor({ file, formData, }?: {
33
- file?: File;
34
- formData?: FormData;
35
- });
36
- }
@@ -1,13 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { AutoCompleteCompleteEvent } from 'primeng/autocomplete';
3
- import { BaseAutocompleteControl } from '../base-autocomplete-control';
4
- import { TranslocoService } from '@jsverse/transloco';
5
- import * as i0 from "@angular/core";
6
- export declare class SpiderlyMultiAutocompleteComponent extends BaseAutocompleteControl implements OnInit {
7
- protected translocoService: TranslocoService;
8
- constructor(translocoService: TranslocoService);
9
- ngOnInit(): void;
10
- search(event: AutoCompleteCompleteEvent): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyMultiAutocompleteComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyMultiAutocompleteComponent, "spiderly-multiautocomplete", never, {}, {}, never, never, true, never>;
13
- }
@@ -1,11 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseDropdownControl } from '../base-dropdown-control';
3
- import { TranslocoService } from '@jsverse/transloco';
4
- import * as i0 from "@angular/core";
5
- export declare class SpiderlyMultiSelectComponent extends BaseDropdownControl implements OnInit {
6
- protected translocoService: TranslocoService;
7
- constructor(translocoService: TranslocoService);
8
- ngOnInit(): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyMultiSelectComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyMultiSelectComponent, "spiderly-multiselect", never, {}, {}, never, never, true, never>;
11
- }
@@ -1,15 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseControl } from '../base-control';
3
- import { TranslocoService } from '@jsverse/transloco';
4
- import * as i0 from "@angular/core";
5
- export declare class SpiderlyNumberComponent extends BaseControl implements OnInit {
6
- protected translocoService: TranslocoService;
7
- prefix: string;
8
- showButtons: boolean;
9
- decimal: boolean;
10
- maxFractionDigits: number;
11
- constructor(translocoService: TranslocoService);
12
- ngOnInit(): void;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyNumberComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyNumberComponent, "spiderly-number", never, { "prefix": { "alias": "prefix"; "required": false; }; "showButtons": { "alias": "showButtons"; "required": false; }; "decimal": { "alias": "decimal"; "required": false; }; "maxFractionDigits": { "alias": "maxFractionDigits"; "required": false; }; }, {}, never, never, true, never>;
15
- }
@@ -1,12 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseControl } from '../base-control';
3
- import { TranslocoService } from '@jsverse/transloco';
4
- import * as i0 from "@angular/core";
5
- export declare class SpiderlyPasswordComponent extends BaseControl implements OnInit {
6
- protected translocoService: TranslocoService;
7
- showPasswordStrength: boolean;
8
- constructor(translocoService: TranslocoService);
9
- ngOnInit(): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyPasswordComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyPasswordComponent, "spiderly-password", never, { "showPasswordStrength": { "alias": "showPasswordStrength"; "required": false; }; }, {}, never, never, true, never>;
12
- }
@@ -1,11 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseControl } from '../base-control';
3
- import { TranslocoService } from '@jsverse/transloco';
4
- import * as i0 from "@angular/core";
5
- export declare class SpiderlyTextareaComponent extends BaseControl implements OnInit {
6
- protected translocoService: TranslocoService;
7
- constructor(translocoService: TranslocoService);
8
- ngOnInit(): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyTextareaComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyTextareaComponent, "spiderly-textarea", never, {}, {}, never, never, true, never>;
11
- }
@@ -1,15 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { BaseControl } from '../base-control';
3
- import { TranslocoService } from '@jsverse/transloco';
4
- import * as i0 from "@angular/core";
5
- export declare class SpiderlyTextboxComponent extends BaseControl implements OnInit {
6
- protected translocoService: TranslocoService;
7
- showButton: boolean;
8
- buttonIcon: string;
9
- onButtonClick: EventEmitter<any>;
10
- constructor(translocoService: TranslocoService);
11
- ngOnInit(): void;
12
- buttonClick(): void;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyTextboxComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyTextboxComponent, "spiderly-textbox", never, { "showButton": { "alias": "showButton"; "required": false; }; "buttonIcon": { "alias": "buttonIcon"; "required": false; }; }, { "onButtonClick": "onButtonClick"; }, never, never, true, never>;
15
- }