spiderly 19.0.0 → 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 -67
  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 -42
  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 -4805
  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 -14
  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,92 +0,0 @@
1
- .p-paginator {
2
- background: transparent;
3
- color: $paginatorTextColor;
4
- border: $paginatorBorder;
5
- border-width: $paginatorBorderWidth;
6
- padding: $paginatorPadding;
7
- border-radius: $borderRadius;
8
-
9
- .p-paginator-first,
10
- .p-paginator-prev,
11
- .p-paginator-next,
12
- .p-paginator-last {
13
- background-color: $paginatorElementBg;
14
- border: $paginatorElementBorder;
15
- color: var(--primary-color);
16
- min-width: $paginatorElementWidth;
17
- height: $paginatorElementHeight;
18
- margin: $paginatorElementMargin;
19
- transition: $listItemTransition;
20
- border-radius: $paginatorElementBorderRadius;
21
-
22
- &:not(.p-disabled):not(.p-highlight):hover {
23
- background: $paginatorElementHoverBg;
24
- border-color: $paginatorElementHoverBorderColor;
25
- color: $paginatorElementIconHoverColor;
26
- }
27
- }
28
-
29
- .p-paginator-first {
30
- border-top-left-radius: $paginatorElementBorderRadius;
31
- border-bottom-left-radius: $paginatorElementBorderRadius;
32
- }
33
-
34
- .p-paginator-last {
35
- border-top-right-radius: $paginatorElementBorderRadius;
36
- border-bottom-right-radius: $paginatorElementBorderRadius;
37
- }
38
-
39
- .p-dropdown {
40
- margin-left: $inlineSpacing;
41
- margin-right: $inlineSpacing;
42
- height: $paginatorElementHeight;
43
-
44
- .p-dropdown-label {
45
- padding-right: 0;
46
- }
47
- }
48
-
49
- .p-paginator-page-input {
50
- margin-left: $inlineSpacing;
51
- margin-right: $inlineSpacing;
52
-
53
- .p-inputtext {
54
- max-width: $paginatorElementWidth;
55
- }
56
- }
57
-
58
- .p-paginator-current {
59
- background-color: $paginatorElementBg;
60
- border: $paginatorElementBorder;
61
- color: $paginatorElementIconColor;
62
- min-width: $paginatorElementWidth;
63
- height: $paginatorElementHeight;
64
- margin: $paginatorElementMargin;
65
- padding: 0 $inlineSpacing;
66
- }
67
-
68
- .p-paginator-pages {
69
- .p-paginator-page {
70
- background-color: $paginatorElementBg;
71
- border: $paginatorElementBorder;
72
- color: $paginatorElementIconColor;
73
- min-width: $paginatorElementWidth;
74
- height: $paginatorElementHeight;
75
- margin: $paginatorElementMargin;
76
- transition: $listItemTransition;
77
- border-radius: $paginatorElementBorderRadius;
78
-
79
- &.p-highlight {
80
- background: var(--highlight-bg);
81
- border-color: var(--highlight-bg);
82
- color: $highlightTextColor;
83
- }
84
-
85
- &:not(.p-highlight):hover {
86
- background: $paginatorElementHoverBg;
87
- border-color: $paginatorElementHoverBorderColor;
88
- color: $paginatorElementIconHoverColor;
89
- }
90
- }
91
- }
92
- }
@@ -1,103 +0,0 @@
1
- .p-picklist {
2
- .p-picklist-buttons {
3
- padding: $panelContentPadding;
4
-
5
- .p-button {
6
- margin-bottom: $inlineSpacing;
7
- }
8
- }
9
-
10
- .p-picklist-header {
11
- background: $panelHeaderBg;
12
- color: $panelHeaderTextColor;
13
- border: $panelHeaderBorder;
14
- padding: $panelHeaderPadding;
15
- border-bottom: 0 none;
16
- border-top-right-radius: $borderRadius;
17
- border-top-left-radius: $borderRadius;
18
-
19
- .p-picklist-title {
20
- font-weight: $panelHeaderFontWeight;
21
- }
22
- }
23
-
24
- .p-picklist-filter-container {
25
- padding: $panelHeaderPadding;
26
- background: $panelContentBg;
27
- border: $panelHeaderBorder;
28
- border-bottom: 0 none;
29
-
30
- .p-picklist-filter-input {
31
- padding-right: nth($inputPadding, 2) + $primeIconFontSize;
32
- }
33
-
34
- .p-picklist-filter-icon {
35
- right: nth($inputPadding, 2);
36
- color: $inputIconColor;
37
- }
38
- }
39
-
40
- .p-picklist-list {
41
- border: $panelContentBorder;
42
- background: $panelContentBg;
43
- color: $panelContentTextColor;
44
- padding: $inputListPadding;
45
- border-bottom-right-radius: $borderRadius;
46
- border-bottom-left-radius: $borderRadius;
47
-
48
- .p-picklist-item {
49
- padding: $inputListItemPadding;
50
- margin: $inputListItemMargin;
51
- border: $inputListItemBorder;
52
- color: $inputListItemTextColor;
53
- background: $inputListItemBg;
54
- transition: $listItemTransition;
55
-
56
- &:focus {
57
- @include focused-listitem();
58
- }
59
-
60
- &.p-highlight {
61
- color: $highlightTextColor;
62
- background: var(--highlight-bg);
63
- }
64
- }
65
-
66
- .p-picklist-empty-message {
67
- padding: $inputListItemPadding;
68
- color: $inputListItemTextColor;
69
- }
70
-
71
- &:not(.cdk-drop-list-dragging) {
72
- .p-picklist-item {
73
- &:not(.p-highlight):hover {
74
- background: $inputListItemHoverBg;
75
- color: $inputListItemTextHoverColor;
76
- }
77
- }
78
- }
79
- }
80
-
81
- &.p-picklist-striped {
82
- .p-picklist-list {
83
- .p-picklist-item:nth-child(even) {
84
- background: $panelContentEvenRowBg;
85
-
86
- &:hover {
87
- background: $inputListItemHoverBg;
88
- }
89
- }
90
- }
91
- }
92
- }
93
-
94
- .p-picklist-item {
95
- &.cdk-drag-preview {
96
- padding: $inputListItemPadding;
97
- box-shadow: $inputOverlayShadow;
98
- border: $inputListItemBorder;
99
- color: $inputListItemTextColor;
100
- background: $panelContentBg;
101
- margin: 0;
102
- }
103
- }
@@ -1,81 +0,0 @@
1
- .p-timeline {
2
- .p-timeline-event-marker {
3
- border: 2px solid var(--primary-color);
4
- border-radius: 2px solid var(--primary-color)Radius;
5
- width: $timelineEventMarkerWidth;
6
- height: $timelineEventMarkerHeight;
7
- background-color: $timelineEventMarkerBackground;
8
- }
9
-
10
- .p-timeline-event-connector {
11
- background-color: $timelineEventColor;
12
- }
13
-
14
- &.p-timeline-vertical {
15
- .p-timeline-event-opposite,
16
- .p-timeline-event-content {
17
- padding: $timelineVerticalEventContentPadding;
18
- }
19
-
20
- .p-timeline-event-connector {
21
- width: $timelineEventConnectorSize;
22
- }
23
- }
24
-
25
- &.p-timeline-horizontal {
26
- .p-timeline-event-opposite,
27
- .p-timeline-event-content {
28
- padding: $timelineHorizontalEventContentPadding;
29
- }
30
-
31
- .p-timeline-event-connector {
32
- height: $timelineEventConnectorSize;
33
- }
34
- }
35
- }
36
-
37
- .customized-timeline{
38
- .p-timeline-event-opposite{
39
- display: none;
40
- // flex: 0;
41
- // min-width: 0px;
42
- // padding: 0px !important;
43
- // padding-right: 20px !important;
44
- // text-align: left !important;
45
- }
46
- .p-timeline-event-connector{
47
- position: relative;
48
- }
49
- .circle {
50
- display: flex;
51
- z-index: 1;
52
- width: 2rem;
53
- height: 2rem;
54
- align-items: center;
55
- justify-content: center;
56
- color: white;
57
- border-radius: 50%;
58
- box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
59
- background-color: var(--primary-color);
60
- }
61
- .current-item{
62
- background-color: green;
63
- }
64
-
65
- .passed-item{
66
- background-color: green;
67
- }
68
- }
69
-
70
- @for $i from 1 through 100 {
71
- .custom-connector-#{$i}::before {
72
- content: '';
73
- display: block;
74
- height: $i * 1%;
75
- width: 2px;
76
- background-color: #4caf50;
77
- }
78
- }
79
-
80
-
81
-
@@ -1,149 +0,0 @@
1
- .p-tree {
2
- border: $panelContentBorder;
3
- background: $panelContentBg;
4
- color: $panelContentTextColor;
5
- padding: $panelContentPadding;
6
- border-radius: $borderRadius;
7
-
8
- .p-tree-container {
9
- .p-treenode {
10
- padding: $treeNodePadding;
11
-
12
- .p-treenode-content {
13
- border-radius: $borderRadius;
14
- transition: $listItemTransition;
15
- padding: $treeNodeContentPadding;
16
-
17
- .p-tree-toggler {
18
- margin-right: $inlineSpacing;
19
- @include action-icon();
20
- }
21
-
22
- .p-treenode-icon {
23
- margin-right: $inlineSpacing;
24
- color: $treeNodeIconColor;
25
- }
26
-
27
- .p-checkbox {
28
- margin-right: $inlineSpacing;
29
-
30
- .p-indeterminate {
31
- .p-checkbox-icon {
32
- color: $textColor;
33
- }
34
- }
35
- }
36
-
37
- &:focus {
38
- @include focused-listitem();
39
- }
40
-
41
- &.p-highlight {
42
- background: var(--highlight-bg);
43
- color: $highlightTextColor;
44
-
45
- .p-tree-toggler,
46
- .p-treenode-icon {
47
- color: $highlightTextColor;
48
-
49
- &:hover {
50
- color: $highlightTextColor;
51
- }
52
- }
53
- }
54
-
55
- &.p-treenode-selectable:not(.p-highlight):hover {
56
- background: $inputListItemHoverBg;
57
- color: $inputListItemTextHoverColor;
58
- }
59
-
60
- &.p-treenode-dragover {
61
- background: $inputListItemHoverBg;
62
- color: $inputListItemTextHoverColor;
63
- }
64
- }
65
- }
66
- }
67
-
68
- .p-tree-filter-container {
69
- margin-bottom: $inlineSpacing;
70
-
71
- .p-tree-filter {
72
- width: 100%;
73
- padding-right: nth($inputPadding, 2) + $primeIconFontSize;
74
- }
75
-
76
- .p-tree-filter-icon {
77
- right: nth($inputPadding, 2);
78
- color: $inputIconColor;
79
- }
80
- }
81
-
82
- .p-treenode-children {
83
- padding: $treeNodeChildrenPadding;
84
- }
85
-
86
- .p-tree-loading-icon {
87
- font-size: $loadingIconFontSize;
88
-
89
- &.p-icon {
90
- width: $loadingIconFontSize;
91
- height: $loadingIconFontSize;
92
- }
93
- }
94
-
95
- .p-treenode-droppoint {
96
- &.p-treenode-droppoint-active {
97
- background-color: var(--highlight-bg);
98
- }
99
- }
100
-
101
- &.p-tree-horizontal {
102
- .p-treenode {
103
- .p-treenode-content {
104
- border-radius: $borderRadius;
105
- border: $panelContentBorder;
106
- background-color: $panelContentBg;
107
- color: $panelContentTextColor;
108
- padding: $treeNodeContentPadding;
109
- transition: $listItemTransition;
110
-
111
- &.p-highlight {
112
- background-color: var(--highlight-bg);
113
- color: $highlightTextColor;
114
-
115
- .p-treenode-icon {
116
- color: $highlightTextColor;
117
- }
118
- }
119
-
120
- .p-tree-toggler {
121
- margin-right: $inlineSpacing;
122
- }
123
-
124
- .p-treenode-icon {
125
- color: $treeNodeIconColor;
126
- margin-right: $inlineSpacing;
127
- }
128
-
129
- .p-checkbox {
130
- margin-right: $inlineSpacing;
131
- }
132
-
133
- .p-treenode-label:not(.p-highlight):hover {
134
- background-color: inherit;
135
- color: inherit;
136
- }
137
-
138
- &.p-treenode-selectable:not(.p-highlight):hover {
139
- background: $inputListItemHoverBg;
140
- color: $inputListItemTextHoverColor;
141
- }
142
-
143
- &:focus {
144
- @include focused();
145
- }
146
- }
147
- }
148
- }
149
- }
@@ -1,256 +0,0 @@
1
- .p-treetable {
2
- .p-paginator-top {
3
- border-width: $tableTopPaginatorBorderWidth;
4
- border-radius: 0;
5
- }
6
-
7
- .p-paginator-bottom {
8
- border-width: $tableBottomPaginatorBorderWidth;
9
- border-radius: 0;
10
- }
11
-
12
- .p-treetable-header {
13
- background: $tableHeaderBg;
14
- color: $tableHeaderTextColor;
15
- border: $tableHeaderBorder;
16
- border-width: $tableHeaderBorderWidth;
17
- padding: $tableHeaderPadding;
18
- font-weight: $tableHeaderFontWeight;
19
- }
20
-
21
- .p-treetable-footer {
22
- background: $tableFooterBg;
23
- color: $tableFooterTextColor;
24
- border: $tableFooterBorder;
25
- border-width: $tableFooterBorderWidth;
26
- padding: $tableFooterPadding;
27
- font-weight: $tableFooterFontWeight;
28
- }
29
-
30
- .p-treetable-thead > tr > th {
31
- text-align: $tableCellContentAlignment;
32
- padding: $tableHeaderCellPadding;
33
- border: $tableHeaderCellBorder;
34
- border-width: $tableHeaderCellBorderWidth;
35
- font-weight: $tableHeaderCellFontWeight;
36
- color: $tableHeaderCellTextColor;
37
- background: $tableHeaderCellBg;
38
- transition: $listItemTransition;
39
- }
40
-
41
- .p-treetable-tfoot > tr > td {
42
- text-align: $tableCellContentAlignment;
43
- padding: $tableFooterCellPadding;
44
- border: $tableFooterCellBorder;
45
- border-width: $tableFooterCellBorderWidth;
46
- font-weight: $tableFooterCellFontWeight;
47
- color: $tableFooterCellTextColor;
48
- background: $tableFooterCellBg;
49
- }
50
-
51
- .p-sortable-column {
52
- outline-color: var(--primary-light-color);
53
-
54
- .p-sortable-column-icon {
55
- color: $tableHeaderCellIconColor;
56
- margin-left: $inlineSpacing;
57
- }
58
-
59
- .p-sortable-column-badge {
60
- border-radius: 50%;
61
- height: $tableSortableColumnBadgeSize;
62
- min-width: $tableSortableColumnBadgeSize;
63
- line-height: $tableSortableColumnBadgeSize;
64
- color: $highlightTextColor;
65
- background: var(--highlight-bg);
66
- margin-left: $inlineSpacing;
67
- }
68
-
69
- &:not(.p-highlight):hover {
70
- background: $tableHeaderCellHoverBg;
71
- color: $tableHeaderCellTextHoverColor;
72
-
73
- .p-sortable-column-icon {
74
- color: $tableHeaderCellIconHoverColor;
75
- }
76
- }
77
-
78
- &.p-highlight {
79
- background: $tableHeaderCellHighlightBg;
80
- color: var(--primary-color);
81
-
82
- .p-sortable-column-icon {
83
- color: var(--primary-color);
84
- }
85
- }
86
- }
87
-
88
- .p-treetable-tbody {
89
- > tr {
90
- background: $tableBodyRowBg;
91
- color: $tableBodyRowTextColor;
92
- transition: $listItemTransition;
93
-
94
- > td {
95
- text-align: $tableCellContentAlignment;
96
- border: $tableBodyCellBorder;
97
- border-width: $tableBodyCellBorderWidth;
98
- padding: $tableBodyCellPadding;
99
-
100
- .p-treetable-toggler {
101
- @include action-icon();
102
- margin-right: $inlineSpacing;
103
-
104
- &.p-icon {
105
- width: $loadingIconFontSize;
106
- height: $loadingIconFontSize;
107
- }
108
- }
109
-
110
- p-treetablecheckbox .p-checkbox {
111
- margin-right: $inlineSpacing;
112
-
113
- .p-indeterminate {
114
- .p-checkbox-icon {
115
- color: $textColor;
116
- }
117
- }
118
- }
119
- }
120
-
121
- &:focus-visible {
122
- outline: 0.15rem solid var(--primary-light-color);
123
- outline-offset: -0.15rem;
124
- }
125
-
126
- &.p-highlight {
127
- background: var(--highlight-bg);
128
- color: $highlightTextColor;
129
-
130
- .p-treetable-toggler {
131
- color: $highlightTextColor;
132
-
133
- &:hover {
134
- color: $highlightTextColor;
135
- }
136
-
137
- }
138
- }
139
- }
140
- }
141
-
142
- &.p-treetable-hoverable-rows {
143
- .p-treetable-tbody > tr:not(.p-highlight):hover {
144
- background: $tableBodyRowHoverBg;
145
- color: $tableBodyRowTextHoverColor;
146
-
147
- .p-treetable-toggler {
148
- color: $tableBodyRowTextHoverColor;
149
- }
150
- }
151
- }
152
-
153
- .p-column-resizer-helper {
154
- background: var(--primary-color);
155
- }
156
-
157
- .p-treetable-scrollable-header,
158
- .p-treetable-scrollable-footer {
159
- background: $panelHeaderBg;
160
- }
161
-
162
- .p-treetable-loading-icon {
163
- font-size: $loadingIconFontSize;
164
-
165
- &.p-icon {
166
- width: $loadingIconFontSize;
167
- height: $loadingIconFontSize;
168
- }
169
- }
170
-
171
- &.p-treetable-gridlines {
172
- .p-datatable-header {
173
- border-width: 1px 1px 0 1px;
174
- }
175
-
176
- .p-treetable-footer {
177
- border-width: 0 1px 1px 1px;
178
- }
179
-
180
- .p-treetable-top {
181
- border-width: 0 1px 0 1px;
182
- }
183
-
184
- .p-treetable-bottom {
185
- border-width: 0 1px 1px 1px;
186
- }
187
-
188
- .p-treetable-thead {
189
- > tr {
190
- > th {
191
- border-width: 1px;
192
- }
193
- }
194
- }
195
-
196
- .p-treetable-tbody {
197
- > tr {
198
- > td {
199
- border-width: 1px;
200
- }
201
- }
202
- }
203
-
204
- .p-treetable-tfoot {
205
- > tr {
206
- > td {
207
- border-width: 1px;
208
- }
209
- }
210
- }
211
- }
212
-
213
- &.p-treetable-sm {
214
- .p-treetable-header {
215
- @include scaledPadding($tableHeaderPadding, $scaleSM);
216
- }
217
-
218
- .p-treetable-thead > tr > th {
219
- @include scaledPadding($tableHeaderCellPadding, $tableScaleSM);
220
- }
221
-
222
- .p-treetable-tbody > tr > td {
223
- @include scaledPadding($tableBodyCellPadding, $tableScaleSM);
224
- }
225
-
226
- .p-treetable-tfoot > tr > td {
227
- @include scaledPadding($tableFooterPadding, $tableScaleSM);
228
- }
229
-
230
- .p-treetable-footer {
231
- @include scaledPadding($tableFooterPadding, $tableScaleSM);
232
- }
233
- }
234
-
235
- &.p-treetable-lg {
236
- .p-treetable-header {
237
- @include scaledPadding($tableHeaderPadding, $tableScaleLG);
238
- }
239
-
240
- .p-treetable-thead > tr > th {
241
- @include scaledPadding($tableHeaderCellPadding, $tableScaleLG);
242
- }
243
-
244
- .p-treetable-tbody > tr > td {
245
- @include scaledPadding($tableBodyCellPadding, $tableScaleLG);
246
- }
247
-
248
- .p-treetable-tfoot > tr > td {
249
- @include scaledPadding($tableFooterPadding, $tableScaleLG);
250
- }
251
-
252
- .p-treetable-footer {
253
- @include scaledPadding($tableFooterPadding, $tableScaleLG);
254
- }
255
- }
256
- }
@@ -1,28 +0,0 @@
1
- .p-virtualscroller {
2
- .p-virtualscroller-header {
3
- background: $tableHeaderBg;
4
- color: $tableHeaderTextColor;
5
- border: $tableHeaderBorder;
6
- border-width: $tableHeaderBorderWidth;
7
- padding: $tableHeaderPadding;
8
- font-weight: $tableHeaderFontWeight;
9
- }
10
-
11
- .p-virtualscroller-content {
12
- background: $tableBodyRowBg;
13
- color: $tableBodyRowTextColor;
14
- border: $dataViewContentBorder;
15
- padding: $dataViewContentPadding;
16
- }
17
-
18
- .p-virtualscroller-footer {
19
- background: $tableFooterBg;
20
- color: $tableFooterTextColor;
21
- border: $tableFooterBorder;
22
- border-width: $tableFooterBorderWidth;
23
- padding: $tableFooterPadding;
24
- font-weight: $tableFooterFontWeight;
25
- border-bottom-left-radius: $borderRadius;
26
- border-bottom-right-radius: $borderRadius;
27
- }
28
- }