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,26 +0,0 @@
1
- .p-colorpicker-preview,
2
- .p-fluid .p-colorpicker-preview.p-inputtext {
3
- // width: $colorPickerPreviewWidth;
4
- // height: $colorPickerPreviewHeight;
5
- width: 3rem;
6
- height: 100%;
7
- // position: absolute;
8
- }
9
-
10
- .p-colorpicker-panel {
11
- background: $colorPickerBg;
12
- border: $colorPickerBorder;
13
-
14
- .p-colorpicker-color-handle,
15
- .p-colorpicker-hue-handle {
16
- border-color: $colorPickerHandleColor;
17
- }
18
- }
19
-
20
- .p-colorpicker-overlay-panel {
21
- box-shadow: $inputOverlayShadow;
22
- }
23
-
24
- // .p-colorpicker{
25
- // width: 100%;
26
- // }
@@ -1,152 +0,0 @@
1
- p-dropdown.ng-dirty.ng-invalid > .p-dropdown { //zakomentarisano u donjem delu je bilo, ispravno ovako
2
- @include invalid-input();
3
- }
4
-
5
- .p-dropdown {
6
- background: $inputBg;
7
- border: $inputBorder;
8
- transition: $formElementTransition;
9
- border-radius: $borderRadius;
10
-
11
- &:not(.p-disabled):hover {
12
- border-color: var(--primary-color);
13
- }
14
-
15
- &:not(.p-disabled).p-focus {
16
- @include focused-input();
17
- }
18
-
19
- &.p-dropdown-clearable {
20
- .p-dropdown-label {
21
- padding-right: nth($inputPadding, 2) + $primeIconFontSize;
22
- }
23
- }
24
-
25
- .p-dropdown-label {
26
- background: transparent;
27
- border: 0 none;
28
-
29
- &.p-placeholder {
30
- color: $inputPlaceholderTextColor;
31
- }
32
-
33
- &:focus,
34
- &:enabled:focus {
35
- outline: 0 none;
36
- box-shadow: none;
37
- }
38
- }
39
-
40
- .p-dropdown-trigger {
41
- background: transparent;
42
- color: $inputIconColor;
43
- width: $inputGroupAddOnMinWidth;
44
- border-top-right-radius: $borderRadius;
45
- border-bottom-right-radius: $borderRadius;
46
- }
47
-
48
- .p-dropdown-clear-icon {
49
- color: $inputIconColor;
50
- right: $inputGroupAddOnMinWidth;
51
- }
52
-
53
- // &.p-invalid.p-component {
54
- // @include invalid-input();
55
- // background: #000;
56
- // }
57
- }
58
-
59
- .p-dropdown-panel {
60
- background: $inputOverlayBg;
61
- color: $inputListTextColor;
62
- border: $inputOverlayBorder;
63
- border-radius: $borderRadius;
64
- box-shadow: $inputOverlayShadow;
65
-
66
- .p-dropdown-header {
67
- padding: $inputListHeaderPadding;
68
- border-bottom: $inputListHeaderBorder;
69
- color: $inputListHeaderTextColor;
70
- background: $inputOverlayHeaderBg;
71
- margin: $inputListHeaderMargin;
72
- border-top-right-radius: $borderRadius;
73
- border-top-left-radius: $borderRadius;
74
-
75
- .p-dropdown-filter {
76
- padding-right: nth($inputPadding, 2) + $primeIconFontSize;
77
- margin-right: -1 * (nth($inputPadding, 2) + $primeIconFontSize);
78
- }
79
-
80
- .p-dropdown-filter-icon {
81
- right: nth($inputPadding, 2);
82
- color: $inputIconColor;
83
- }
84
- }
85
-
86
- .p-dropdown-items {
87
- padding: $inputListPadding;
88
-
89
- .p-dropdown-item {
90
- margin: $inputListItemMargin;
91
- padding: $inputListItemPadding;
92
- border: $inputListItemBorder;
93
- color: $inputListItemTextColor;
94
- background: $inputListItemBg;
95
- transition: $listItemTransition;
96
- border-radius: $inputListItemBorderRadius;
97
-
98
- &.p-highlight {
99
- color: $highlightTextColor;
100
- background: var(--highlight-bg) !important;
101
-
102
- &.p-focus {
103
- background: $highlightFocusBg;
104
- }
105
- }
106
-
107
- &:not(.p-highlight):not(.p-disabled) {
108
- &.p-focus {
109
- color: $inputListItemTextFocusColor;
110
- background: $inputListItemFocusBg;
111
- }
112
-
113
- &:hover {
114
- color: $inputListItemTextHoverColor;
115
- background: $inputListItemHoverBg;
116
- }
117
- }
118
- }
119
-
120
- .p-dropdown-item-group {
121
- margin: $submenuHeaderMargin;
122
- padding: $submenuHeaderPadding;
123
- color: $submenuHeaderTextColor;
124
- background: $submenuHeaderBg;
125
- font-weight: $submenuHeaderFontWeight;
126
- }
127
-
128
- .p-dropdown-empty-message {
129
- padding: $inputListItemPadding;
130
- color: $inputListItemTextColor;
131
- background: $inputListItemBg;
132
- }
133
- }
134
- }
135
-
136
- .p-input-filled {
137
- .p-dropdown {
138
- background: $inputFilledBg;
139
-
140
- &:not(.p-disabled):hover {
141
- background-color: $inputFilledHoverBg;
142
- }
143
-
144
- &:not(.p-disabled).p-focus {
145
- background-color: $inputFilledFocusBg;
146
-
147
- .p-inputtext {
148
- background-color: transparent;
149
- }
150
- }
151
- }
152
- }
@@ -1,122 +0,0 @@
1
- .p-editor-container {
2
- .p-editor-toolbar {
3
- background: $editorToolbarBg;
4
- border-top-right-radius: $borderRadius;
5
- border-top-left-radius: $borderRadius;
6
-
7
- &.ql-snow {
8
- border: $editorToolbarBorder;
9
-
10
- .ql-stroke {
11
- stroke: $editorToolbarIconColor;
12
- }
13
-
14
- .ql-fill {
15
- fill: $editorToolbarIconColor;
16
- }
17
-
18
- .ql-picker {
19
- .ql-picker-label {
20
- border: 0 none;
21
- color: $editorToolbarIconColor;
22
-
23
- &:hover {
24
- color: $editorToolbarIconHoverColor;
25
-
26
- .ql-stroke {
27
- stroke: $editorToolbarIconHoverColor;
28
- }
29
-
30
- .ql-fill {
31
- fill: $editorToolbarIconHoverColor;
32
- }
33
- }
34
- }
35
-
36
- &.ql-expanded {
37
- .ql-picker-label {
38
- color: $editorToolbarIconHoverColor;
39
-
40
- .ql-stroke {
41
- stroke: $editorToolbarIconHoverColor;
42
- }
43
-
44
- .ql-fill {
45
- fill: $editorToolbarIconHoverColor;
46
- }
47
- }
48
-
49
- .ql-picker-options {
50
- background: $inputOverlayBg;
51
- border:$inputOverlayBorder;
52
- box-shadow:$inputOverlayShadow;
53
- border-radius: $borderRadius;
54
- padding: $inputListPadding;
55
-
56
- .ql-picker-item {
57
- color: $inputListItemTextColor;
58
-
59
- &:hover {
60
- color: $inputListItemTextHoverColor;
61
- background: $inputListItemHoverBg;
62
- }
63
- }
64
- }
65
-
66
- &:not(.ql-icon-picker) {
67
- .ql-picker-item {
68
- padding: $inputListItemPadding;
69
- }
70
- }
71
- }
72
- }
73
- }
74
- }
75
-
76
- .p-editor-content {
77
- border-bottom-right-radius: $borderRadius;
78
- border-bottom-left-radius: $borderRadius;
79
-
80
- &.ql-snow {
81
- border: $editorContentBorder;
82
- }
83
-
84
- .ql-editor {
85
- background: $inputBg;
86
- color: $inputTextColor;
87
- border-bottom-right-radius: $borderRadius;
88
- border-bottom-left-radius: $borderRadius;
89
- }
90
- }
91
-
92
- .ql-snow.ql-toolbar button:hover,
93
- .ql-snow.ql-toolbar button:focus {
94
- color: $editorToolbarIconHoverColor;
95
-
96
- .ql-stroke {
97
- stroke: $editorToolbarIconHoverColor;
98
- }
99
-
100
- .ql-fill {
101
- fill: $editorToolbarIconHoverColor;
102
- }
103
- }
104
-
105
- .ql-snow.ql-toolbar button.ql-active,
106
- .ql-snow.ql-toolbar .ql-picker-label.ql-active,
107
- .ql-snow.ql-toolbar .ql-picker-item.ql-selected {
108
- color: var(--primary-color);
109
-
110
- .ql-stroke {
111
- stroke: var(--primary-color);
112
- }
113
-
114
- .ql-fill {
115
- fill: var(--primary-color);
116
- }
117
-
118
- .ql-picker-label {
119
- color: var(--primary-color);
120
- }
121
- }
122
- }
@@ -1,75 +0,0 @@
1
- .p-inputgroup-addon {
2
- background: $inputGroupBg;
3
- color: $inputGroupTextColor;
4
- border-top: $inputBorder;
5
- border-left: $inputBorder;
6
- border-bottom: $inputBorder;
7
- padding: $inputPadding;
8
- min-width: $inputGroupAddOnMinWidth;
9
-
10
- &:last-child {
11
- border-right: $inputBorder;
12
- }
13
- }
14
-
15
- .p-inputgroup {
16
- > .p-component,
17
- > .p-element,
18
- > .p-inputwrapper > .p-component > .p-inputtext,
19
- > .p-float-label > .p-component {
20
- border-radius: 0;
21
- margin: 0;
22
-
23
- + .p-inputgroup-addon {
24
- border-left: 0 none;
25
- }
26
-
27
- &:focus {
28
- z-index: 1;
29
-
30
- ~ label {
31
- z-index: 1;
32
- }
33
- }
34
- }
35
- }
36
-
37
- .p-inputgroup-addon:first-child,
38
- .p-inputgroup button:first-child,
39
- .p-inputgroup input:first-child,
40
- .p-inputgroup > .p-inputwrapper:first-child > .p-component,
41
- .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext {
42
- border-top-left-radius: $borderRadius;
43
- border-bottom-left-radius: $borderRadius;
44
- }
45
-
46
- .p-inputgroup .p-float-label:first-child input {
47
- border-top-left-radius: $borderRadius;
48
- border-bottom-left-radius: $borderRadius;
49
- }
50
-
51
- .p-inputgroup-addon:last-child,
52
- .p-inputgroup button:last-child,
53
- .p-inputgroup input:last-child,
54
- .p-inputgroup > .p-inputwrapper:last-child > .p-component,
55
- .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext {
56
- border-top-right-radius: $borderRadius;
57
- border-bottom-right-radius: $borderRadius;
58
- }
59
-
60
- .p-inputgroup .p-float-label:last-child input {
61
- border-top-right-radius: $borderRadius;
62
- border-bottom-right-radius: $borderRadius;
63
- }
64
-
65
- .p-fluid {
66
- .p-inputgroup {
67
- .p-button {
68
- width: auto;
69
-
70
- &.p-button-icon-only {
71
- width: $buttonIconOnlyWidth;
72
- }
73
- }
74
- }
75
- }
@@ -1,16 +0,0 @@
1
- @use 'sass:math';
2
-
3
- p-inputmask.ng-dirty.ng-invalid > .p-inputtext {
4
- @include invalid-input();
5
- }
6
-
7
- p-inputmask.p-inputmask-clearable {
8
- .p-inputtext {
9
- padding-right: nth($inputPadding, 2) * 2 + $primeIconFontSize;
10
- }
11
-
12
- .p-inputmask-clear-icon {
13
- color: $inputIconColor;
14
- right: nth($inputPadding, 2);
15
- }
16
- }
@@ -1,28 +0,0 @@
1
- p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext {
2
- @include invalid-input();
3
- }
4
-
5
- p-inputnumber.p-inputnumber-clearable {
6
- .p-inputnumber-input {
7
- padding-right: nth($inputPadding, 2) * 2 + $primeIconFontSize;
8
- }
9
-
10
- .p-inputnumber-clear-icon {
11
- color: $inputIconColor;
12
- right: nth($inputPadding, 2);
13
- }
14
- }
15
-
16
- p-inputnumber.p-inputnumber-clearable {
17
- .p-inputnumber-buttons-stacked{
18
- .p-inputnumber-clear-icon {
19
- right: $buttonIconOnlyWidth + nth($inputPadding, 2);
20
- }
21
- }
22
-
23
- .p-inputnumber-buttons-horizontal{
24
- .p-inputnumber-clear-icon {
25
- right: $buttonIconOnlyWidth + nth($inputPadding, 2);
26
- }
27
- }
28
- }
@@ -1,60 +0,0 @@
1
- @use 'sass:math';
2
-
3
- .p-inputswitch {
4
- width: $inputSwitchWidth;
5
- height: $inputSwitchHeight;
6
-
7
- .p-inputswitch-slider {
8
- background: $inputSwitchSliderOffBg;
9
- transition: $formElementTransition;
10
- border-radius: $inputSwitchBorderRadius;
11
-
12
- &:before {
13
- background: $inputSwitchHandleOffBg;
14
- width: $inputSwitchHandleWidth;
15
- height: $inputSwitchHandleHeight;
16
- left: $inputSwitchSliderPadding;
17
- margin-top: math.div(-1 * $inputSwitchHandleHeight, 2);
18
- border-radius: $inputSwitchHandleBorderRadius;
19
- transition-duration: $transitionDuration;
20
- }
21
- }
22
-
23
- &.p-inputswitch-checked {
24
- .p-inputswitch-slider:before {
25
- transform: translateX($inputSwitchHandleWidth);
26
- }
27
- }
28
-
29
- &.p-focus {
30
- .p-inputswitch-slider {
31
- @include focused();
32
- }
33
- }
34
-
35
- &:not(.p-disabled):hover {
36
- .p-inputswitch-slider {
37
- background: $inputSwitchSliderOffHoverBg;
38
- }
39
- }
40
-
41
- &.p-inputswitch-checked {
42
- .p-inputswitch-slider {
43
- background: var(--primary-color);
44
-
45
- &:before {
46
- background: $inputSwitchHandleOnBg;
47
- }
48
- }
49
-
50
- &:not(.p-disabled):hover {
51
- .p-inputswitch-slider {
52
- background: var(--primary-dark-color);
53
- }
54
- }
55
- }
56
- }
57
-
58
- p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch {
59
- @include invalid-input();
60
- }
@@ -1,100 +0,0 @@
1
- .p-inputtext {
2
- font-family: var(--font-family);
3
- font-feature-settings: var(--font-feature-settings, normal);
4
- font-size: $inputTextFontSize;
5
- color: $inputTextColor;
6
- background: $inputBg;
7
- padding: $inputPadding;
8
- border: $inputBorder;
9
- transition: $formElementTransition;
10
- appearance: none;
11
- border-radius: $borderRadius;
12
-
13
- &:enabled:hover {
14
- border-color: var(--primary-color);
15
- }
16
-
17
- &:enabled:focus {
18
- @include focused-input();
19
- }
20
-
21
- &.ng-dirty.ng-invalid {
22
- @include invalid-input();
23
- }
24
-
25
- &.p-inputtext-sm {
26
- @include scaledFontSize($inputTextFontSize, $scaleSM);
27
- @include scaledPadding($inputPadding, $scaleSM);
28
- }
29
-
30
- &.p-inputtext-lg {
31
- @include scaledFontSize($inputTextFontSize, $scaleLG);
32
- @include scaledPadding($inputPadding, $scaleLG);
33
- }
34
- }
35
-
36
- .p-float-label > label {
37
- left: nth($inputPadding, 2);
38
- color: $inputPlaceholderTextColor;
39
- transition-duration: $transitionDuration;
40
- }
41
-
42
- .p-float-label > .ng-invalid.ng-dirty + label {
43
- color: $inputErrorBorderColor;
44
- }
45
-
46
- .p-input-icon-left > .p-icon-wrapper.p-icon,
47
- .p-input-icon-left > i:first-of-type {
48
- left: nth($inputPadding, 2);
49
- color: $inputIconColor;
50
- }
51
-
52
- .p-input-icon-left > .p-inputtext {
53
- padding-left: nth($inputPadding, 2) * 2 + $primeIconFontSize;
54
- }
55
-
56
- .p-input-icon-left.p-float-label > label {
57
- left: nth($inputPadding, 2) * 2 + $primeIconFontSize;
58
- }
59
-
60
- .p-input-icon-right > .p-icon-wrapper,
61
- .p-input-icon-right > i:last-of-type {
62
- right: nth($inputPadding, 2);
63
- color: $inputIconColor;
64
- }
65
-
66
- .p-input-icon-right > .p-inputtext {
67
- padding-right: nth($inputPadding, 2) * 2 + $primeIconFontSize;
68
- }
69
-
70
- @include placeholder {
71
- color: $inputPlaceholderTextColor
72
- };
73
-
74
- .p-input-filled {
75
- .p-inputtext {
76
- background-color: $inputFilledBg;
77
-
78
- &:enabled:hover {
79
- background-color: $inputFilledHoverBg;
80
- }
81
-
82
- &:enabled:focus {
83
- background-color: $inputFilledFocusBg;
84
- }
85
- }
86
- }
87
-
88
- .p-inputtext-sm {
89
- .p-inputtext {
90
- @include scaledFontSize($inputTextFontSize, $scaleSM);
91
- @include scaledPadding($inputPadding, $scaleSM);
92
- }
93
- }
94
-
95
- .p-inputtext-lg {
96
- .p-inputtext {
97
- @include scaledFontSize($inputTextFontSize, $scaleLG);
98
- @include scaledPadding($inputPadding, $scaleLG);
99
- }
100
- }
@@ -1,82 +0,0 @@
1
- .p-listbox {
2
- background: $inputListBg;
3
- color: $inputListTextColor;
4
- border: $inputListBorder;
5
- border-radius: $borderRadius;
6
-
7
- .p-listbox-header {
8
- padding: $inputListHeaderPadding;
9
- border-bottom: $inputListHeaderBorder;
10
- color: $inputListHeaderTextColor;
11
- background: $inputListHeaderBg;
12
- margin: $inputListHeaderMargin;
13
- border-top-right-radius: $borderRadius;
14
- border-top-left-radius: $borderRadius;
15
-
16
- .p-listbox-filter {
17
- padding-right: nth($inputPadding, 2) + $primeIconFontSize;
18
- }
19
-
20
- .p-listbox-filter-icon {
21
- right: nth($inputPadding, 2);
22
- color: $inputIconColor;
23
- }
24
-
25
- .p-checkbox {
26
- margin-right: $inlineSpacing;
27
- }
28
- }
29
-
30
- .p-listbox-list {
31
- padding: $inputListPadding;
32
-
33
- .p-listbox-item {
34
- margin: $inputListItemMargin;
35
- padding: $inputListItemPadding;
36
- border: $inputListItemBorder;
37
- color: $inputListItemTextColor;
38
- transition: $listItemTransition;
39
- border-radius: $inputListItemBorderRadius;
40
-
41
- &.p-highlight {
42
- color: $highlightTextColor;
43
- background: var(--highlight-bg);
44
- }
45
-
46
- &:focus {
47
- @include focused-listitem();
48
- }
49
-
50
- .p-checkbox {
51
- margin-right: $inlineSpacing;
52
- }
53
- }
54
-
55
- .p-listbox-item-group {
56
- margin: $submenuHeaderMargin;
57
- padding: $submenuHeaderPadding;
58
- color: $submenuHeaderTextColor;
59
- background: $submenuHeaderBg;
60
- font-weight: $submenuHeaderFontWeight;
61
- }
62
-
63
- .p-listbox-empty-message {
64
- padding: $inputListItemPadding;
65
- color: $inputListItemTextColor;
66
- background: $inputListItemBg;
67
- }
68
- }
69
-
70
- &:not(.p-disabled) {
71
- .p-listbox-item {
72
- &:not(.p-highlight):not(.p-disabled):hover {
73
- color: $inputListItemTextHoverColor;
74
- background: $inputListItemHoverBg;
75
- }
76
- }
77
- }
78
- }
79
-
80
- p-listbox.ng-dirty.ng-invalid > .p-listbox {
81
- @include invalid-input();
82
- }