@webitel/ui-sdk 0.1.2-vue3 → 0.1.3-vite

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 (374) hide show
  1. package/README.md +1 -1
  2. package/dist/img/sprite/arrow-mix.svg +5 -0
  3. package/dist/img/sprite/azure.svg +19 -0
  4. package/dist/img/sprite/email.svg +3 -0
  5. package/dist/img/sprite/index.js +1 -1
  6. package/dist/img/sprite/meta.svg +17 -0
  7. package/dist/img/sprite/options.svg +5 -0
  8. package/dist/img/sprite/role.svg +3 -0
  9. package/dist/img/sprite/scorecard.svg +4 -0
  10. package/dist/img/sprite/user.svg +3 -0
  11. package/dist/ui-sdk.common.js +36361 -11605
  12. package/dist/ui-sdk.common.js.map +1 -1
  13. package/dist/ui-sdk.css +1 -1
  14. package/dist/ui-sdk.umd.js +36342 -11586
  15. package/dist/ui-sdk.umd.js.map +1 -1
  16. package/dist/ui-sdk.umd.min.js +27 -4
  17. package/dist/ui-sdk.umd.min.js.map +1 -1
  18. package/package.json +24 -8
  19. package/src/api/axios/generateInstance.js +25 -0
  20. package/src/api/defaults/getDefaultGetListResponse/getDefaultGetListResponse.js +6 -0
  21. package/src/api/defaults/getDefaultGetParams/getDefaultGetParams.js +9 -0
  22. package/src/api/defaults/index.js +7 -0
  23. package/src/api/interceptors/request/updateToken.interceptor.js +10 -0
  24. package/src/api/interceptors/response/handleUnauthorized.interceptor.js +12 -0
  25. package/src/api/transformers/applyTransform.js +8 -0
  26. package/src/api/transformers/camelToSnake/camelToSnake.transformer.js +4 -0
  27. package/src/api/transformers/generateUrl/generateUrl.transformer.js +13 -0
  28. package/src/api/transformers/index.js +23 -0
  29. package/src/api/transformers/log/log.transformer.js +6 -0
  30. package/src/api/transformers/merge/merge.transformer.js +5 -0
  31. package/src/api/transformers/mergeEach/mergeEach.transformer.js +8 -0
  32. package/src/api/transformers/notify/notify.transformer.js +32 -0
  33. package/src/api/transformers/sanitize/sanitize.transformer.js +12 -0
  34. package/src/api/transformers/snakeToCamel/snakeToCamel.transformer.js +4 -0
  35. package/src/api/transformers/starToSearch/starToSearch.transformer.js +12 -0
  36. package/src/components/index.js +63 -55
  37. package/src/components/on-demand/wt-cc-agent-status-timers/__tests__/wt-cc-agent-status-timers.spec.js +25 -0
  38. package/src/components/on-demand/wt-cc-agent-status-timers/wt-cc-agent-status-timers.vue +48 -0
  39. package/src/components/transitions/wt-expand-transition.vue +41 -39
  40. package/src/components/{organisms/wt-app-header → wt-app-header}/__tests__/WtAppNavigator.spec.js +2 -2
  41. package/src/components/{organisms/wt-app-header → wt-app-header}/__tests__/WtHeaderActions.spec.js +1 -1
  42. package/src/{css/components/organisms → components}/wt-app-header/_variables.scss +3 -2
  43. package/src/components/wt-app-header/wt-app-header.vue +29 -0
  44. package/src/components/{organisms/wt-app-header → wt-app-header}/wt-app-navigator.vue +69 -40
  45. package/src/components/wt-avatar/_variables.scss +32 -0
  46. package/src/components/wt-avatar/wt-avatar.vue +187 -0
  47. package/src/components/{atoms/wt-badge → wt-badge}/wt-badge.vue +20 -13
  48. package/src/components/wt-button/Readme.md +23 -0
  49. package/src/components/{atoms/wt-button → wt-button}/__tests__/WtButton.spec.js +1 -1
  50. package/src/components/wt-button/_variables.scss +41 -0
  51. package/src/components/wt-button/wt-button.vue +205 -0
  52. package/src/components/wt-button-select/Readme.md +13 -0
  53. package/src/components/{molecules/wt-button-select → wt-button-select}/__tests__/WtButtonSelect.spec.js +16 -5
  54. package/src/components/wt-button-select/_variables.scss +7 -0
  55. package/src/components/wt-button-select/wt-button-select.vue +130 -0
  56. package/src/components/{molecules/wt-checkbox → wt-checkbox}/__tests__/WtCheckbox.spec.js +6 -6
  57. package/src/components/wt-checkbox/wt-checkbox.vue +191 -0
  58. package/src/{css/components/atoms → components}/wt-chip/wt-chip.scss +1 -1
  59. package/src/components/wt-chip/wt-chip.vue +24 -0
  60. package/src/components/{atoms/wt-context-menu → wt-context-menu}/__tests__/WtContextMenu.spec.js +1 -1
  61. package/src/{css/components/atoms → components}/wt-context-menu/_variables.scss +2 -0
  62. package/src/components/{atoms/wt-context-menu → wt-context-menu}/wt-context-menu.vue +68 -42
  63. package/src/components/{molecules/wt-datepicker → wt-datepicker}/__tests__/WtDatepicker.spec.js +4 -4
  64. package/src/components/wt-datepicker/_variables.scss +56 -0
  65. package/src/components/wt-datepicker/wt-datepicker.vue +240 -0
  66. package/src/components/wt-divider/wt-divider.vue +30 -0
  67. package/src/components/wt-dummy/__tests__/WtDummy.spec.js +9 -0
  68. package/src/components/wt-dummy/wt-dummy.vue +73 -0
  69. package/src/components/{organisms/wt-error-page → wt-error-page}/__tests__/wt-error-page.spec.js +3 -3
  70. package/src/components/{organisms/wt-error-page → wt-error-page}/wt-error-page.vue +2 -2
  71. package/src/components/wt-expansion-panel/__tests__/WtExpansionPanel.spec.js +9 -0
  72. package/src/components/wt-expansion-panel/wt-expansion-panel.vue +67 -0
  73. package/src/components/{organisms/wt-filters-panel-wrapper → wt-filters-panel-wrapper}/wt-filters-panel-wrapper.vue +6 -6
  74. package/src/components/{organisms/wt-headline → wt-headline}/wt-headline.vue +5 -0
  75. package/src/components/wt-headline-nav/Readme.md +9 -0
  76. package/src/components/{organisms/wt-headline-nav → wt-headline-nav}/__tests__/wt-headline-nav.spec.js +1 -1
  77. package/src/components/wt-headline-nav/_variables.scss +8 -0
  78. package/src/components/{organisms/wt-headline-nav → wt-headline-nav}/wt-headline-nav.vue +41 -29
  79. package/src/components/{molecules/wt-hint → wt-hint}/wt-hint.vue +7 -1
  80. package/src/components/wt-icon/Readme.md +327 -0
  81. package/src/components/{atoms/wt-icon → wt-icon}/__tests__/WtIcon.spec.js +2 -2
  82. package/src/components/wt-icon/_variables.scss +31 -0
  83. package/src/components/wt-icon/docs/cleanup-svg-fill-none.png +0 -0
  84. package/src/components/wt-icon/docs/cleanup-svg-fill.png +0 -0
  85. package/src/components/wt-icon/docs/cleanup-svg-viewbox-correct.png +0 -0
  86. package/src/components/wt-icon/docs/cleanup-svg-viewbox-incorrect.png +0 -0
  87. package/src/components/wt-icon/docs/cleanup-svg-width-height.png +0 -0
  88. package/src/components/wt-icon/docs/svg-icon-code-example.png +0 -0
  89. package/src/components/wt-icon/docs/svg-sprite-in-dom.png +0 -0
  90. package/src/components/wt-icon/wt-icon.vue +172 -0
  91. package/src/components/wt-icon-action/__tests__/WtIconAction.spec.js +9 -0
  92. package/src/components/wt-icon-action/_internals/__tests__/WtAddIconAction.spec.js +9 -0
  93. package/src/components/wt-icon-action/_internals/__tests__/WtDeleteIconAction.spec.js +9 -0
  94. package/src/components/wt-icon-action/_internals/__tests__/WtDownloadIconAction.spec.js +9 -0
  95. package/src/components/wt-icon-action/_internals/__tests__/WtEditIconAction.spec.js +9 -0
  96. package/src/components/wt-icon-action/_internals/__tests__/WtHistoryIconAction.spec.js +9 -0
  97. package/src/components/wt-icon-action/_internals/__tests__/WtRefreshIconAction.spec.js +9 -0
  98. package/src/components/wt-icon-action/_internals/wt-add-icon-action.vue +27 -0
  99. package/src/components/wt-icon-action/_internals/wt-delete-icon-action.vue +27 -0
  100. package/src/components/wt-icon-action/_internals/wt-download-icon-action.vue +27 -0
  101. package/src/components/wt-icon-action/_internals/wt-edit-icon-action.vue +27 -0
  102. package/src/components/wt-icon-action/_internals/wt-history-icon-action.vue +27 -0
  103. package/src/components/wt-icon-action/_internals/wt-refresh-icon-action.vue +27 -0
  104. package/src/components/wt-icon-action/wt-icon-action.vue +54 -0
  105. package/src/components/wt-icon-btn/Readme.md +10 -0
  106. package/src/components/{molecules/wt-icon-btn → wt-icon-btn}/__tests__/WtIconBtn.spec.js +2 -2
  107. package/src/components/wt-icon-btn/_variables.scss +9 -0
  108. package/src/components/wt-icon-btn/wt-icon-btn.vue +47 -0
  109. package/src/components/{atoms/wt-indicator → wt-indicator}/__tests__/WtIndicator.spec.js +2 -2
  110. package/src/{css/components/atoms → components}/wt-indicator/_variables.scss +3 -3
  111. package/src/components/{atoms/wt-indicator → wt-indicator}/wt-indicator.vue +5 -0
  112. package/src/components/{molecules/wt-input → wt-input}/__tests__/WtInput.spec.js +3 -3
  113. package/src/components/{molecules/wt-input → wt-input}/wt-input.vue +40 -20
  114. package/src/{css/components/atoms → components}/wt-input-info/_variables.scss +2 -2
  115. package/src/components/wt-input-info/wt-input-info.vue +40 -0
  116. package/src/components/wt-item-link/__tests__/WtItemLink.spec.js +9 -0
  117. package/src/components/wt-item-link/wt-item-link.vue +57 -0
  118. package/src/components/{molecules/wt-label → wt-label}/wt-label.vue +5 -0
  119. package/src/components/{molecules/wt-load-bar → wt-load-bar}/wt-load-bar.vue +7 -2
  120. package/src/{css/components/atoms → components}/wt-loader/_variables.scss +2 -2
  121. package/src/components/{atoms/wt-loader → wt-loader}/wt-loader.vue +22 -17
  122. package/src/components/{organisms/wt-navigation-bar → wt-navigation-bar}/__tests__/WtNavigationBar.spec.js +22 -18
  123. package/src/components/{organisms/wt-navigation-bar → wt-navigation-bar}/wt-navigation-bar.vue +27 -16
  124. package/src/components/{molecules/wt-notification → wt-notification}/__tests__/WtNotification.spec.js +1 -1
  125. package/src/components/wt-notification/wt-notification.vue +86 -0
  126. package/src/components/{organisms/wt-notifications-bar → wt-notifications-bar}/__tests__/WtNotificationsBar.spec.js +6 -6
  127. package/src/components/wt-notifications-bar/wt-notifications-bar.vue +78 -0
  128. package/src/components/wt-page-header/__tests__/wt-page-header.spec.js +9 -0
  129. package/src/components/wt-page-header/wt-page-header.vue +83 -0
  130. package/src/components/{organisms/wt-page-wrapper → wt-page-wrapper}/wt-page-wrapper.vue +6 -0
  131. package/src/components/{organisms/wt-pagination → wt-pagination}/__tests__/WtPagination.spec.js +2 -1
  132. package/src/components/{organisms/wt-pagination → wt-pagination}/wt-pagination.vue +7 -1
  133. package/src/{css/components/organisms → components}/wt-player/_variables.scss +1 -1
  134. package/src/components/{organisms/wt-player → wt-player}/wt-player.vue +10 -5
  135. package/src/components/{molecules/wt-popup → wt-popup}/wt-popup.vue +5 -0
  136. package/src/components/{molecules/wt-progress-bar → wt-progress-bar}/__tests__/WtProgressBar.spec.js +2 -2
  137. package/src/{css/components/molecules → components}/wt-progress-bar/_variables.scss +2 -2
  138. package/src/components/{molecules/wt-progress-bar → wt-progress-bar}/wt-progress-bar.vue +13 -3
  139. package/src/components/{molecules/wt-radio → wt-radio}/__tests__/WtRadio.spec.js +6 -6
  140. package/src/components/wt-radio/wt-radio.vue +180 -0
  141. package/src/components/wt-rounded-action/Readme.md +68 -0
  142. package/src/components/{atoms/wt-rounded-action → wt-rounded-action}/__tests__/WtRoundedAction.spec.js +1 -1
  143. package/src/components/wt-rounded-action/_variables.scss +14 -0
  144. package/src/components/wt-rounded-action/wt-rounded-action.vue +139 -0
  145. package/src/components/{molecules/wt-search-bar → wt-search-bar}/__tests__/WtSearchBar.spec.js +9 -0
  146. package/src/components/wt-search-bar/wt-search-bar.vue +222 -0
  147. package/src/components/{molecules/wt-select → wt-select}/__tests__/WtSelect.spec.js +3 -3
  148. package/src/components/{molecules/wt-select → wt-select}/mixins/__tests__/multiselectMixin.spec.js +4 -4
  149. package/src/components/{molecules/wt-select → wt-select}/mixins/multiselectMixin.js +9 -4
  150. package/src/components/{molecules/wt-select → wt-select}/wt-select.vue +23 -9
  151. package/src/components/{molecules/wt-slider → wt-slider}/wt-slider.vue +8 -3
  152. package/src/components/{organisms/wt-status-select → wt-status-select}/__tests__/WtStatusSelect.spec.js +1 -1
  153. package/src/components/{organisms/wt-status-select → wt-status-select}/_internals/StatusOptions.lookup.js +1 -1
  154. package/src/components/{organisms/wt-status-select → wt-status-select}/wt-status-select.vue +27 -23
  155. package/src/components/wt-stepper/__tests__/WtStepper.spec.vue.js +18 -0
  156. package/src/components/wt-stepper/wt-stepper.vue +89 -0
  157. package/src/components/{molecules/wt-switcher → wt-switcher}/__tests__/WtSwitcher.spec.js +5 -5
  158. package/src/components/wt-switcher/wt-switcher.vue +191 -0
  159. package/src/components/{organisms/wt-table → wt-table}/__tests__/WtTable.spec.js +11 -11
  160. package/src/components/{organisms/wt-table → wt-table}/wt-table.vue +20 -3
  161. package/src/components/{organisms/wt-table-actions → wt-table-actions}/wt-table-actions.vue +5 -0
  162. package/src/components/{organisms/wt-table-column-select → wt-table-column-select}/__tests__/WtTableColumnSelect.spec.js +3 -3
  163. package/src/components/wt-table-column-select/wt-table-column-select.vue +178 -0
  164. package/src/components/{molecules/wt-tabs → wt-tabs}/__tests__/WtTabs.spec.js +3 -3
  165. package/src/{css/components/molecules → components}/wt-tabs/_variables.scss +1 -1
  166. package/src/components/{molecules/wt-tabs → wt-tabs}/wt-tabs.vue +9 -1
  167. package/src/components/{molecules/wt-tags-input → wt-tags-input}/__tests__/WtTagsInput.spec.js +7 -7
  168. package/src/components/{molecules/wt-tags-input → wt-tags-input}/wt-tags-input.vue +18 -7
  169. package/src/components/{molecules/wt-textarea → wt-textarea}/__tests__/WtTextarea.spec.js +4 -4
  170. package/src/components/wt-textarea/wt-textarea.vue +223 -0
  171. package/src/components/{molecules/wt-time-input → wt-time-input}/__tests__/WtTimeInput.spec.js +3 -3
  172. package/src/components/wt-time-input/wt-time-input.vue +187 -0
  173. package/src/components/{molecules/wt-timepicker → wt-timepicker}/__tests__/WtTimepicker.spec.js +13 -13
  174. package/src/components/{molecules/wt-timepicker → wt-timepicker}/wt-timepicker.vue +13 -5
  175. package/src/components/{atoms/wt-tooltip → wt-tooltip}/__tests__/WtTooltip.spec.js +1 -1
  176. package/src/components/wt-tooltip/_internals/useTooltipTriggerSubscriptions.js +68 -0
  177. package/src/components/wt-tooltip/_internals/wt-tooltip-floating.vue +48 -0
  178. package/src/components/wt-tooltip/_variables.scss +11 -0
  179. package/src/components/wt-tooltip/wt-tooltip.vue +150 -0
  180. package/src/composables/useCachedInterval/__tests__/useCachedInterval.spec.js +14 -0
  181. package/src/composables/useCachedInterval/useCachedInterval.js +21 -0
  182. package/src/composables/useDestroyableSortable/useDestroyableSortable.js +66 -0
  183. package/src/composables/useRepresentableAgentPauseCause/__tests__/useRepresentableAgentPauseCause.spec.js +83 -0
  184. package/src/composables/useRepresentableAgentPauseCause/useRepresentableAgentPauseCause.js +37 -0
  185. package/src/css/main.scss +0 -3
  186. package/src/css/styleguide/colors/_colors.scss +177 -147
  187. package/src/css/styleguide/colors/_deprecated.scss +151 -0
  188. package/src/css/styleguide/colors/_palette.scss +358 -0
  189. package/src/directives/clickaway/clickaway.js +3 -0
  190. package/src/directives/index.js +7 -0
  191. package/src/enums/WebitelApplications/AdminSections.enum.js +4 -0
  192. package/src/enums/WebitelApplications/AuditorSections.enum.js +5 -0
  193. package/src/enums/WebitelApplications/CrmSections.enum.js +5 -0
  194. package/src/enums/WebitelApplications/WebitelApplications.enum.js +1 -0
  195. package/src/locale/.DS_Store +0 -0
  196. package/src/locale/en/en.js +96 -13
  197. package/src/locale/es/es.js +282 -0
  198. package/src/locale/i18n.js +4 -0
  199. package/src/locale/ru/ru.js +97 -12
  200. package/src/locale/ua/ua.js +98 -13
  201. package/src/mixins/dataFilterMixins/__tests__/apiFilterMixin.spec.js +5 -7
  202. package/src/mixins/dataFilterMixins/__tests__/enumFilterMixin.spec.js +17 -13
  203. package/src/mixins/dataFilterMixins/__tests__/paginationFilterMixin.spec.js +23 -31
  204. package/src/mixins/dataFilterMixins/__tests__/sortFilterMixin.spec.js +12 -15
  205. package/src/mixins/dataFilterMixins/__tests__/urlControllerMixin.spec.js +12 -12
  206. package/src/mixins/dataFilterMixins/_urlControllerMixin/_urlControllerMixin.js +2 -2
  207. package/src/mixins/dataFilterMixins/paginationFilterMixin.js +3 -3
  208. package/src/mixins/dataFilterMixins/sortFilterMixin.js +2 -2
  209. package/src/mixins/validationMixin/__tests__/validationMixin.spec.js +5 -5
  210. package/src/mixins/validationMixin/useValidation.js +41 -0
  211. package/src/mixins/validationMixin/validationMixin.js +17 -12
  212. package/src/modules/AgentStatusSelect/api/agent-status.js +24 -0
  213. package/src/modules/AgentStatusSelect/api/pause-cause.js +47 -0
  214. package/src/modules/AgentStatusSelect/components/__tests__/wt-cc-agent-status-select.spec.js +83 -0
  215. package/src/modules/AgentStatusSelect/components/__tests__/wt-cc-pause-cause-popup.spec.js +18 -0
  216. package/src/modules/AgentStatusSelect/components/_internals/wt-cc-pause-cause-popup.vue +122 -0
  217. package/src/modules/AgentStatusSelect/components/_internals/wt-cc-status-select-error-popup.vue +55 -0
  218. package/src/modules/AgentStatusSelect/components/wt-cc-agent-status-select.vue +107 -0
  219. package/src/modules/AuditForm/components/__tests__/audit-form-question-read-wrapper.spec.js +14 -0
  220. package/src/modules/AuditForm/components/__tests__/audit-form-question-write-wrapper.spec.js +60 -0
  221. package/src/modules/AuditForm/components/__tests__/audit-form-question.spec.js +14 -0
  222. package/src/modules/AuditForm/components/__tests__/audit-form.spec.js +70 -0
  223. package/src/modules/AuditForm/components/audit-form-question-read-wrapper.vue +132 -0
  224. package/src/modules/AuditForm/components/audit-form-question-write-wrapper.vue +154 -0
  225. package/src/modules/AuditForm/components/audit-form-question.vue +136 -0
  226. package/src/modules/AuditForm/components/audit-form.vue +183 -0
  227. package/src/modules/AuditForm/components/questions/options/__tests__/audit-form-question-options-write-row.spec.js +24 -0
  228. package/src/modules/AuditForm/components/questions/options/__tests__/audit-form-question-options.spec.js +45 -0
  229. package/src/modules/AuditForm/components/questions/options/audit-form-question-options-write-row.vue +89 -0
  230. package/src/modules/AuditForm/components/questions/options/audit-form-question-options.vue +97 -0
  231. package/src/modules/AuditForm/components/questions/score/__tests__/audit-form-question-score.spec.js +30 -0
  232. package/src/modules/AuditForm/components/questions/score/audit-form-question-score.vue +132 -0
  233. package/src/modules/AuditForm/schemas/AuditFormQuestionOptionsSchema.js +13 -0
  234. package/src/modules/AuditForm/schemas/AuditFormQuestionSchema.js +8 -0
  235. package/src/modules/AuditForm/schemas/AuditFormQuestionScoreSchema.js +8 -0
  236. package/src/modules/CardStoreModule/composables/useCardStore.js +55 -0
  237. package/src/modules/CardStoreModule/store/CardStoreModule.js +84 -0
  238. package/src/modules/DeleteConfirmationPopup/components/delete-confirmation-popup.vue +87 -0
  239. package/src/modules/DeleteConfirmationPopup/composables/useDeleteConfirmationPopup.js +28 -0
  240. package/src/modules/FilesExport/FilesExport.js +4 -1
  241. package/src/modules/FilesExport/scripts/generateMediaURL.js +1 -1
  242. package/src/modules/Filters/classes/BaseFilterSchema.js +13 -0
  243. package/src/modules/Filters/components/filter-pagination.vue +61 -0
  244. package/src/modules/Filters/components/filter-table-fields.vue +61 -0
  245. package/src/modules/Filters/composables/useTableFilters.js +17 -0
  246. package/src/modules/Filters/restores/filterFieldsRestore.js +9 -0
  247. package/src/modules/Filters/restores/readme.md +1 -0
  248. package/src/modules/Filters/store/FiltersStoreModule.js +181 -0
  249. package/src/modules/QueryFilters/components/__tests__/abstract-api-filter.spec.js +10 -12
  250. package/src/modules/QueryFilters/components/__tests__/abstract-enum-filter.spec.js +10 -12
  251. package/src/modules/QueryFilters/components/__tests__/filter-datetime.spec.js +12 -12
  252. package/src/modules/QueryFilters/components/__tests__/filter-from-to.spec.js +10 -12
  253. package/src/modules/QueryFilters/components/__tests__/filter-search.spec.js +10 -12
  254. package/src/modules/QueryFilters/components/abstract-api-filter.vue +1 -1
  255. package/src/modules/QueryFilters/components/abstract-enum-filter.vue +1 -1
  256. package/src/modules/QueryFilters/components/filter-datetime.vue +4 -3
  257. package/src/modules/QueryFilters/components/filter-from-to.vue +15 -8
  258. package/src/modules/QueryFilters/components/filter-table-fields.vue +101 -0
  259. package/src/modules/QueryFilters/mixins/__tests__/apiFilterMixin.spec.js +11 -11
  260. package/src/modules/QueryFilters/mixins/__tests__/enumFilterMixin.spec.js +11 -13
  261. package/src/modules/QueryFilters/mixins/__tests__/paginationFilterMixin.spec.js +18 -25
  262. package/src/modules/QueryFilters/mixins/__tests__/sortFilterMixin.spec.js +14 -9
  263. package/src/modules/QueryFilters/mixins/__tests__/urlControllerMixin.spec.js +12 -14
  264. package/src/modules/QueryFilters/mixins/_urlControllerMixin/_urlControllerMixin.js +2 -2
  265. package/src/modules/QueryFilters/mixins/paginationFilterMixin.js +4 -4
  266. package/src/modules/QueryFilters/store/QueryFiltersStoreModule.js +21 -8
  267. package/src/modules/TableStoreModule/composables/useTableStore.js +58 -0
  268. package/src/modules/TableStoreModule/store/TableStoreModule.js +207 -0
  269. package/src/modules/Userinfo/api/auth.js +6 -4
  270. package/src/modules/Userinfo/api/userinfo.js +16 -4
  271. package/src/modules/Userinfo/classes/ApplicationsAccess.js +27 -0
  272. package/src/modules/Userinfo/components/__tests__/auth.spec.js +11 -12
  273. package/src/modules/Userinfo/components/the-auth.vue +2 -1
  274. package/src/modules/Userinfo/enums/Permissions.enum.js +7 -0
  275. package/src/modules/Userinfo/store/UserinfoStoreModule.js +41 -1
  276. package/src/plugins/breakpoint/breakpoint.plugin.js +5 -4
  277. package/src/scripts/__tests__/updateObject.spec.js +19 -0
  278. package/src/scripts/caseConverters.js +2 -2
  279. package/src/scripts/debounce.js +3 -9
  280. package/src/scripts/eventBus.js +7 -3
  281. package/src/scripts/updateObject.js +6 -0
  282. package/src/store/BaseStoreModules/ApiStoreModule.js +93 -0
  283. package/src/store/ReactiveNowStoreModule/ReactiveNowStoreModule.js +27 -0
  284. package/src/validators/decimalValidator.js +9 -0
  285. package/src/validators/domainValidator.js +5 -0
  286. package/src/components/atoms/wt-avatar/wt-avatar.vue +0 -102
  287. package/src/components/atoms/wt-button/wt-button.vue +0 -288
  288. package/src/components/atoms/wt-chip/wt-chip.vue +0 -23
  289. package/src/components/atoms/wt-divider/wt-divider.vue +0 -25
  290. package/src/components/atoms/wt-icon/wt-icon.vue +0 -150
  291. package/src/components/atoms/wt-input-info/wt-input-info.vue +0 -35
  292. package/src/components/atoms/wt-rounded-action/wt-rounded-action.vue +0 -156
  293. package/src/components/atoms/wt-tooltip/wt-tooltip.vue +0 -48
  294. package/src/components/molecules/wt-button-select/wt-button-select.vue +0 -184
  295. package/src/components/molecules/wt-checkbox/wt-checkbox.vue +0 -179
  296. package/src/components/molecules/wt-datepicker/wt-datepicker.vue +0 -203
  297. package/src/components/molecules/wt-datetimepicker/__tests__/WtDatetimepicker.spec.js +0 -79
  298. package/src/components/molecules/wt-datetimepicker/wt-datetimepicker.vue +0 -300
  299. package/src/components/molecules/wt-icon-btn/wt-icon-btn.vue +0 -75
  300. package/src/components/molecules/wt-notification/wt-notification.vue +0 -75
  301. package/src/components/molecules/wt-radio/wt-radio.vue +0 -170
  302. package/src/components/molecules/wt-search-bar/wt-search-bar.vue +0 -194
  303. package/src/components/molecules/wt-switcher/wt-switcher.vue +0 -182
  304. package/src/components/molecules/wt-textarea/wt-textarea.vue +0 -215
  305. package/src/components/molecules/wt-time-input/wt-time-input.vue +0 -190
  306. package/src/components/organisms/wt-app-header/wt-app-header.vue +0 -24
  307. package/src/components/organisms/wt-notifications-bar/wt-notifications-bar.vue +0 -71
  308. package/src/components/organisms/wt-table/__tests__/WtTableDeleteAction.spec.js +0 -9
  309. package/src/components/organisms/wt-table/__tests__/WtTableEditAction.spec.js +0 -9
  310. package/src/components/organisms/wt-table/table-cells/wt-table-delete-action.vue +0 -21
  311. package/src/components/organisms/wt-table/table-cells/wt-table-edit-action.vue +0 -22
  312. package/src/components/organisms/wt-table-column-select/wt-table-column-select.vue +0 -120
  313. package/src/css/components/_components.scss +0 -45
  314. package/src/css/components/atoms/wt-avatar/_variables.scss +0 -14
  315. package/src/css/components/atoms/wt-button/_variables.scss +0 -47
  316. package/src/css/components/atoms/wt-icon/_variables.scss +0 -8
  317. package/src/css/components/atoms/wt-rounded-action/_variables.scss +0 -7
  318. package/src/css/components/atoms/wt-tooltip/_variables.scss +0 -29
  319. package/src/css/components/molecules/wt-button-select/_variables.scss +0 -18
  320. package/src/css/components/molecules/wt-datepicker/_variables.scss +0 -21
  321. package/src/css/components/molecules/wt-datepicker/datepicker-calendar.scss +0 -90
  322. package/src/css/components/molecules/wt-datetimepicker/_variables.scss +0 -11
  323. package/src/css/components/molecules/wt-icon-btn/_variables.scss +0 -3
  324. package/src/css/components/organisms/wt-headline-nav/_variables.scss +0 -5
  325. /package/src/components/{organisms/wt-app-header → wt-app-header}/__tests__/WtAppHeader.spec.js +0 -0
  326. /package/src/components/{organisms/wt-app-header → wt-app-header}/wt-header-actions.vue +0 -0
  327. /package/src/components/{atoms/wt-avatar → wt-avatar}/__tests__/wt-avatar.spec.js +0 -0
  328. /package/src/components/{atoms/wt-badge → wt-badge}/__tests__/wt-badge.spec.js +0 -0
  329. /package/src/{css/components/atoms → components}/wt-badge/_variables.scss +0 -0
  330. /package/src/{css/components/molecules → components}/wt-checkbox/_variables.scss +0 -0
  331. /package/src/components/{atoms/wt-chip → wt-chip}/__tests__/WtChip.spec.js +0 -0
  332. /package/src/{css/components/atoms → components}/wt-chip/_variables.scss +0 -0
  333. /package/src/components/{molecules/wt-copy-action → wt-copy-action}/__tests__/WtCopyAction.spec.js +0 -0
  334. /package/src/components/{molecules/wt-copy-action → wt-copy-action}/wt-copy-action.vue +0 -0
  335. /package/src/components/{atoms/wt-divider → wt-divider}/__tests__/WtDivider.spec.js +0 -0
  336. /package/src/{css/components/atoms → components}/wt-divider/_variables.scss +0 -0
  337. /package/src/components/{organisms/wt-filters-panel-wrapper/__tests__/wt-filters-panel-wrapper.spec.js → wt-filters-panel-wrapper/__tests__/WtFiltersPanelWrapper.spec.js} +0 -0
  338. /package/src/components/{organisms/wt-headline → wt-headline}/__tests__/WtHeadline.spec.js +0 -0
  339. /package/src/{css/components/organisms → components}/wt-headline/_variables.scss +0 -0
  340. /package/src/components/{molecules/wt-hint → wt-hint}/__tests__/WtHint.spec.js +0 -0
  341. /package/src/{css/components/molecules → components}/wt-input/_variables.scss +0 -0
  342. /package/src/components/{atoms/wt-input-info → wt-input-info}/__tests__/WtInputInfo.spec.js +0 -0
  343. /package/src/components/{molecules/wt-label → wt-label}/__tests__/WtLabel.spec.js +0 -0
  344. /package/src/{css/components/atoms → components}/wt-label/_variables.scss +0 -0
  345. /package/src/components/{molecules/wt-label → wt-label}/mixins/labelUsageMixin.js +0 -0
  346. /package/src/components/{molecules/wt-load-bar → wt-load-bar}/__tests__/WtLoadBar.spec.js +0 -0
  347. /package/src/{css/components/molecules → components}/wt-load-bar/_variables.scss +0 -0
  348. /package/src/components/{atoms/wt-loader → wt-loader}/__tests__/WtLoader.spec.js +0 -0
  349. /package/src/components/{atoms/wt-loader → wt-loader}/_internals/wt-loader--md.vue +0 -0
  350. /package/src/components/{atoms/wt-loader → wt-loader}/_internals/wt-loader--sm.vue +0 -0
  351. /package/src/{css/components/organisms → components}/wt-navigation-bar/_variables.scss +0 -0
  352. /package/src/{css/components/molecules → components}/wt-notification/_variables.scss +0 -0
  353. /package/src/{css/components/organisms → components}/wt-notifications-bar/_variables.scss +0 -0
  354. /package/src/components/{organisms/wt-page-wrapper → wt-page-wrapper}/__tests__/WtPageWrapper.spec.js +0 -0
  355. /package/src/{css/components/organisms → components}/wt-page-wrapper/_variables.scss +0 -0
  356. /package/src/{css/components/organisms → components}/wt-pagination/_variables.scss +0 -0
  357. /package/src/components/{organisms/wt-player → wt-player}/__tests__/WtPlayer.spec.js +0 -0
  358. /package/src/components/{molecules/wt-popup → wt-popup}/__tests__/WtPopup.spec.js +0 -0
  359. /package/src/{css/components/molecules → components}/wt-popup/_variables.scss +0 -0
  360. /package/src/{css/components/molecules → components}/wt-radio/_variables.scss +0 -0
  361. /package/src/{css/components/molecules → components}/wt-search-bar/_variables.scss +0 -0
  362. /package/src/{css/components/molecules → components}/wt-select/_multiselect.scss +0 -0
  363. /package/src/{css/components/molecules → components}/wt-select/_variables.scss +0 -0
  364. /package/src/components/{molecules/wt-slider → wt-slider}/__tests__/WtSlider.spec.js +0 -0
  365. /package/src/{css/components/molecules → components}/wt-slider/_variables.scss +0 -0
  366. /package/src/{css/components/organisms → components}/wt-status-select/_variables.scss +0 -0
  367. /package/src/{css/components/molecules → components}/wt-switcher/_variables.scss +0 -0
  368. /package/src/components/{organisms/wt-table → wt-table}/_internals/getSortOrder.js +0 -0
  369. /package/src/{css/components/organisms → components}/wt-table/_variables.scss +0 -0
  370. /package/src/components/{organisms/wt-table-actions → wt-table-actions}/__tests__/WtTableActions.spec.js +0 -0
  371. /package/src/{css/components/organisms → components}/wt-table-actions/_variables.scss +0 -0
  372. /package/src/{css/components/molecules → components}/wt-tags-input/_variables.scss +0 -0
  373. /package/src/{css/components/molecules → components}/wt-textarea/_variables.scss +0 -0
  374. /package/src/{css/components/molecules → components}/wt-timepicker/_variables.scss +0 -0
@@ -1,156 +0,0 @@
1
- <template>
2
- <wt-button
3
- v-bind="{ ...$attrs, ...$props }"
4
- :class="[
5
- `wt-rounded-action--color-${color}`,
6
- { 'wt-rounded-action--active': active },
7
- { 'wt-rounded-action--disabled': disabled },
8
- { 'wt-rounded-action--filled': filled },
9
- ]"
10
- :size="size"
11
- color="secondary"
12
- class="wt-rounded-action"
13
- @click="$emit('click', $event)"
14
- >
15
- <wt-icon
16
- :color="iColor"
17
- :icon="icon"
18
- :size="size"
19
- ></wt-icon>
20
- </wt-button>
21
- </template>
22
-
23
- <script>
24
- export default {
25
- name: 'wt-rounded-action',
26
- props: {
27
- icon: {
28
- type: String,
29
- },
30
- color: {
31
- type: String,
32
- options: ['secondary', 'accent', 'success', 'danger', 'hold', 'transfer'],
33
- },
34
- iconColor: {
35
- type: String,
36
- default: null,
37
- },
38
- size: {
39
- type: String,
40
- default: 'md',
41
- options: ['sm', 'md'],
42
- },
43
- active: {
44
- type: Boolean,
45
- default: false,
46
- },
47
- disabled: {
48
- type: Boolean,
49
- default: false,
50
- },
51
- filled: {
52
- type: Boolean,
53
- default: false,
54
- },
55
- },
56
- computed: {
57
- iColor() {
58
- if (this.iconColor) return this.iconColor;
59
- if (this.disabled) return 'secondary-50';
60
- if (this.color === 'secondary') return null; // dont change icon color
61
- if (this.filled && this.color) return 'contrast';
62
- return this.color;
63
- },
64
- },
65
- };
66
- </script>
67
-
68
- <!--not scoped to change .icon colors-->
69
- <style lang="scss" scoped>
70
- .wt-button.wt-rounded-action {
71
- min-width: auto;
72
- min-height: 0;
73
- padding: var(--rounded-action-padding);
74
- line-height: 0;
75
- border: var(--btn-border);
76
- border-color: transparent;
77
- background: var(--rounded-action-bg-color);
78
- box-shadow: var(--elevation-1);
79
-
80
- &:hover {
81
- background: var(--rounded-action-bg-color); // override default wt-button hover
82
- box-shadow: var(--elevation-2);
83
- }
84
-
85
- &--active {
86
- border-color: var(--icon-color);
87
-
88
- &.wt-rounded-action--color-secondary {
89
- border-color: var(--icon-color);
90
- }
91
-
92
- &.wt-rounded-action--color-accent {
93
- border-color: var(--btn-accent--hover-color);
94
- }
95
-
96
- &.wt-rounded-action--color-success {
97
- border-color: var(--btn-true--hover-color);
98
- }
99
-
100
- &.wt-rounded-action--color-danger {
101
- border-color: var(--btn-false--hover-color);
102
- }
103
-
104
- &.wt-rounded-action--color-hold {
105
- border-color: var(--btn-hold--hover-color);
106
- }
107
-
108
- &.wt-rounded-action--color-transfer {
109
- border-color: var(--btn-transfer--hover-color);
110
- }
111
- }
112
-
113
- &--filled {
114
-
115
- &:hover {
116
- box-shadow: var(--elevation-5);
117
- border-color: var(--rounded-action-bg-color);
118
- }
119
-
120
- &.wt-rounded-action--color-secondary {
121
- background-color: var(--btn-secondary-color);
122
- border-color: var(--btn-secondary-color);
123
- }
124
-
125
- &.wt-rounded-action--color-accent {
126
- background-color: var(--btn-accent--hover-color);
127
- border-color: var(--btn-accent--hover-color);
128
- }
129
-
130
- &.wt-rounded-action--color-success {
131
- background-color: var(--btn-true--hover-color);
132
- border-color: var(--btn-true--hover-color);
133
- }
134
-
135
- &.wt-rounded-action--color-danger {
136
- background-color: var(--btn-false--hover-color);
137
- border-color: var(--btn-false--hover-color);
138
- }
139
-
140
- &.wt-rounded-action--color-hold {
141
- background-color: var(--btn-false--hover-color);
142
- border-color: var(--btn-false--hover-color);
143
- }
144
-
145
- &.wt-rounded-action--color-transfer {
146
- background-color: var(--btn-false--hover-color);
147
- border-color: var(--btn-false--hover-color);
148
- }
149
- }
150
-
151
- &.wt-rounded-action--disabled {
152
- border-color: transparent;
153
- box-shadow: none;
154
- }
155
- }
156
- </style>
@@ -1,48 +0,0 @@
1
- <template>
2
- <v-tooltip
3
- :class="{
4
- 'wt-tooltip--contrast': contrast
5
- }"
6
- :placement="placement"
7
- :popper-class="[
8
- 'wt-tooltip__popper',
9
- { 'wt-tooltip--contrast__popper': contrast },
10
- popperClass,
11
- ]"
12
- :triggers="['hover', 'focus', 'touch']"
13
- class="wt-tooltip"
14
- >
15
- <slot name="activator"></slot>
16
- <template #popper>
17
- <slot></slot>
18
- </template>
19
- </v-tooltip>
20
- </template>
21
-
22
- <script>
23
- export default {
24
- name: 'wt-tooltip',
25
- props: {
26
- contrast: {
27
- type: Boolean,
28
- default: false,
29
- },
30
- placement: {
31
- type: String,
32
- default: 'auto',
33
- },
34
- popperClass: {
35
- type: String,
36
- default: '',
37
- },
38
- },
39
- };
40
- </script>
41
-
42
- <style lang="scss" scoped>
43
- .wt-tooltip {
44
- display: inline-block;
45
- line-height: 0;
46
- height: fit-content;
47
- }
48
- </style>
@@ -1,184 +0,0 @@
1
- <template>
2
- <div
3
- class="wt-button-select"
4
- v-clickaway="away">
5
-
6
- <wt-button
7
- class="wt-button-select__button"
8
- v-bind="$attrs"
9
- :disabled="disabled"
10
- @click="$emit('click', $event)"
11
- >
12
- <slot></slot>
13
- </wt-button>
14
-
15
- <wt-context-menu
16
- :options="options"
17
- :visible="isOpened"
18
- @click="selectOption"
19
- >
20
- <template v-slot:activator>
21
- <wt-button
22
- class="wt-button-select__select-btn"
23
- v-bind="$attrs"
24
- :disabled="disabled"
25
- :loading="false"
26
- @click="isOpened = !isOpened"
27
- >
28
- <wt-icon
29
- class="wt-button-select__select-arrow"
30
- :class="{'wt-button-select__select-arrow--active': isOpened}"
31
- icon="arrow-down"
32
- :disabled="disabled"
33
- ></wt-icon>
34
- </wt-button>
35
- </template>
36
- </wt-context-menu>
37
- </div>
38
- </template>
39
-
40
- <script>
41
- export default {
42
- name: 'wt-button-select',
43
- data: () => ({
44
- isOpened: false,
45
- }),
46
- props: {
47
- // all buttons props are passed as "$attrs"
48
- options: {
49
- type: Array,
50
- required: true,
51
- },
52
- disabled: {
53
- type: Boolean,
54
- default: false,
55
- },
56
- },
57
- methods: {
58
- selectOption({ option, index }) {
59
- this.$emit('click:option', option, index);
60
- this.isOpened = false;
61
- },
62
- away() {
63
- this.isOpened = false;
64
- },
65
- },
66
- };
67
- </script>
68
- <style lang="scss" scoped>
69
- .wt-button-select {
70
- position: relative;
71
- display: inline-flex;
72
- align-items: center;
73
- gap: var(--button-select-buttons-gap);
74
- }
75
-
76
- .wt-button-select__button {
77
- padding: var(--button-select-button-padding);
78
- border-radius: var(--border-radius) 0 0 var(--border-radius);
79
- }
80
-
81
- .wt-button-select__select-btn {
82
- min-width: auto;
83
- padding: var(--button-select-icon-button-padding);
84
- border-radius: 0 var(--border-radius) var(--border-radius) 0;
85
-
86
- // NORMAL MODE
87
- &:not(.wt-button--outline)::v-deep {
88
- & .wt-icon__icon {
89
- fill: var(--button-select-icon-color-dark);
90
- }
91
-
92
- // For secondary color, the icon color and icon hover color are the same as in primary color mode
93
-
94
- &.danger,
95
- &.success,
96
- &.transfer {
97
- .wt-icon__icon {
98
- fill: var(--button-select-icon-color-ligth);
99
- }
100
- }
101
- }
102
-
103
- //OUTLINE MODE
104
- &.wt-button--outline::v-deep {
105
- & .wt-icon__icon {
106
- fill: var(--button-select-icon-color-primary);
107
- }
108
-
109
- &:hover,
110
- &:active {
111
- .wt-icon__icon {
112
- fill: var(--button-select-icon-color-primary--hover);
113
- }
114
- }
115
-
116
- &.danger {
117
- & .wt-icon__icon {
118
- fill: var(--icon-color-danger)
119
- }
120
-
121
- &:hover,
122
- &:active {
123
- .wt-icon__icon {
124
- fill: var(--button-select-icon-color-danger--hover);
125
- }
126
- }
127
- }
128
-
129
- &.success {
130
- & .wt-icon__icon {
131
- fill: var(--icon-color-success)
132
- }
133
-
134
- &:hover,
135
- &:active {
136
- .wt-icon__icon {
137
- fill: var(--button-select-icon-color-success--hover);
138
- }
139
- }
140
- }
141
-
142
- &.transfer {
143
- & .wt-icon__icon {
144
- fill: var(--icon-color-transfer)
145
- }
146
-
147
- &:hover,
148
- &:active {
149
- .wt-icon__icon {
150
- fill: var(--button-select-icon-color-transfer--hover);
151
- }
152
- }
153
- }
154
-
155
- &.secondary {
156
- .wt-icon__icon {
157
- fill: var(--button-select-icon-color-secondary);
158
- }
159
-
160
- &:hover,
161
- &:active {
162
- .wt-icon__icon {
163
- fill: var(--button-select-icon-color-secondary--hover);
164
- }
165
- }
166
- }
167
- }
168
-
169
- // DISABLED MODE
170
- &.wt-button--disabled .wt-icon::v-deep .wt-icon__icon {
171
- fill: var(--icon-color-secondary-50);
172
- }
173
-
174
- // OPEN AND SHUT ARROW
175
- .wt-button-select__select-arrow {
176
- display: flex;
177
- transform: rotate(0);
178
-
179
- &--active {
180
- transform: rotate(180deg);
181
- }
182
- }
183
- }
184
- </style>
@@ -1,179 +0,0 @@
1
- <template>
2
- <div
3
- class="wt-checkbox"
4
- :class="{
5
- 'wt-checkbox--active': isChecked,
6
- 'wt-checkbox--outline': outline,
7
- 'wt-checkbox--disabled': disabled,
8
- }"
9
- >
10
- <wt-label class="wt-checkbox__wrapper" v-bind="labelProps">
11
- <input
12
- class="wt-checkbox__input"
13
- type="checkbox"
14
- :value="value"
15
- :checked="isChecked"
16
- :disabled="disabled"
17
- @change="inputHandler"
18
- >
19
- <span class="wt-checkbox__checkmark">
20
- <wt-icon
21
- :icon="checkboxIcon"
22
- :color="iconColor"
23
- ></wt-icon>
24
- </span>
25
- <!-- @slot Custom label markup -->
26
- <slot name="label" v-bind="{ label, isChecked, disabled }">
27
- <div v-if="label" class="wt-checkbox__label">{{ label }}</div>
28
- </slot>
29
- </wt-label>
30
- </div>
31
- </template>
32
-
33
- <script>
34
- export default {
35
- name: 'wt-checkbox',
36
- model: {
37
- prop: 'selected',
38
- event: 'change',
39
- },
40
- props: {
41
- value: {
42
- type: [String, Boolean],
43
- default: '',
44
- },
45
- selected: {
46
- type: [Array, Boolean],
47
- default: () => [],
48
- },
49
- label: {
50
- type: String,
51
- default: '',
52
- },
53
- disabled: {
54
- type: Boolean,
55
- default: false,
56
- },
57
- outline: {
58
- type: Boolean,
59
- default: false,
60
- },
61
- labelProps: {
62
- type: Object,
63
- description: 'Object with props, passed down to wt-label as props',
64
- },
65
- },
66
- computed: {
67
- isChecked() {
68
- if (typeof this.selected === 'boolean') {
69
- return this.selected;
70
- }
71
- return this.selected.includes(this.value);
72
- },
73
- checkboxIcon() {
74
- return this.isChecked ? 'checkbox--checked' : 'checkbox';
75
- },
76
- iconColor() {
77
- if (this.disabled) return 'disabled';
78
- if (this.isChecked) return 'active';
79
- return null;
80
- },
81
- },
82
- methods: {
83
- inputHandler() {
84
- if (typeof this.selected === 'boolean') {
85
- this.$emit('change', !this.selected);
86
- } else {
87
- let selected = [...this.selected];
88
- if (selected.includes(this.value)) {
89
- selected = selected.filter((value) => value !== this.value);
90
- } else {
91
- selected.push(this.value);
92
- }
93
- this.$emit('change', selected);
94
- }
95
- },
96
- },
97
- };
98
- </script>
99
-
100
- <style lang="scss" scoped>
101
- .wt-checkbox {
102
- @include width-fit-content;
103
- box-sizing: border-box;
104
-
105
- .wt-label {
106
- cursor: pointer;
107
- }
108
- }
109
-
110
- .wt-checkbox__wrapper {
111
- position: relative;
112
- display: flex;
113
- align-items: center;
114
- user-select: none;
115
-
116
- .wt-checkbox__checkmark {
117
- line-height: 0; // prevent icon height >> content
118
- }
119
- }
120
-
121
- .wt-checkbox__label {
122
- margin-left: var(--checkbox-icon-margin);
123
- transition: var(--transition);
124
- cursor: pointer;
125
- }
126
-
127
- /* Hide the browser's default checkbox */
128
- .wt-checkbox__input {
129
- position: absolute;
130
- width: 0;
131
- height: 0;
132
- opacity: 0;
133
- pointer-events: none;
134
- }
135
-
136
- .wt-checkbox:hover {
137
- .wt-checkbox__label {
138
- color: var(--form-label--hover-color);
139
- }
140
-
141
- ::v-deep .wt-icon__icon {
142
- fill: var(--icon-color--hover);
143
- }
144
- }
145
-
146
- .wt-checkbox--active {
147
- .wt-checkbox__label {
148
- color: var(--form-label--active-color);
149
- }
150
- }
151
-
152
- .wt-checkbox--outline {
153
- .wt-checkbox__label {
154
- color: var(--form-outline-label-color);
155
- }
156
-
157
- ::v-deep .wt-icon__icon {
158
- fill: var(--icon-outline-color);
159
- }
160
-
161
- &.wt-checkbox--active {
162
- .wt-checkbox__label {
163
- color: var(--form-label--active-color);
164
- }
165
-
166
- ::v-deep .wt-icon__icon {
167
- fill: var(--icon-outline--active-color);
168
- }
169
- }
170
- }
171
-
172
- .wt-checkbox--disabled {
173
- pointer-events: none;
174
-
175
- .wt-checkbox__label {
176
- color: var(--form-label--disabled-color);
177
- }
178
- }
179
- </style>