@webitel/ui-sdk 24.12.29 → 24.12.34
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.
- package/CHANGELOG.md +271 -131
- package/README.md +6 -0
- package/dist/img/sprite/index.js +8 -2
- package/dist/img/sprite/tree-collapse.svg +4 -0
- package/dist/img/sprite/tree-cross.svg +5 -0
- package/dist/img/sprite/tree-line.svg +10 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +7736 -7442
- package/dist/ui-sdk.umd.cjs +17 -17
- package/package.json +13 -6
- package/src/api/axios/generateInstance.js +6 -2
- package/src/api/clients/agents/agentChats.js +18 -19
- package/src/api/clients/agents/agents.js +29 -7
- package/src/api/clients/buckets/buckets.js +16 -3
- package/src/api/clients/calendars/calendars.js +21 -3
- package/src/api/clients/catalog/catalog.js +1 -3
- package/src/api/clients/chatGateways/chatGateways.js +41 -12
- package/src/api/clients/communications/communications.js +25 -6
- package/src/api/clients/configurations/configurations.js +13 -3
- package/src/api/clients/flows/flow.js +20 -9
- package/src/api/clients/gateways/gateways.js +12 -3
- package/src/api/clients/lists/blacklists.js +16 -3
- package/src/api/clients/media/media.js +16 -3
- package/src/api/clients/queues/queues.js +16 -6
- package/src/api/clients/roles/roles.js +3 -1
- package/src/api/clients/skills/skills.js +16 -3
- package/src/api/clients/teams/teams.js +17 -7
- package/src/api/clients/users/__tests__/users.spec.js +3 -1
- package/src/api/clients/users/users.js +8 -2
- package/src/api/clients//321/201ontacts/contactChatMessagesHistory.js +21 -13
- package/src/api/clients//321/201ontacts/contacts.js +38 -15
- package/src/api/history/transcript/callTranscript.js +10 -2
- package/src/api/interceptors/request/updateToken.interceptor.js +2 -1
- package/src/api/transformers/applyTransform.js +5 -1
- package/src/api/transformers/camelToSnake/camelToSnake.transformer.js +2 -1
- package/src/api/transformers/snakeToCamel/snakeToCamel.transformer.js +2 -1
- package/src/assets/icons/sprite/index.js +8 -2
- package/src/assets/icons/sprite/tree-collapse.svg +4 -0
- package/src/assets/icons/sprite/tree-cross.svg +5 -0
- package/src/assets/icons/sprite/tree-line.svg +10 -0
- package/src/components/index.js +8 -12
- package/src/components/on-demand/wt-navigation-menu/components/_internals/nav-menu-lvl-1.vue +4 -2
- package/src/components/on-demand/wt-navigation-menu/components/_internals/nav-menu-lvl-2.vue +3 -4
- package/src/components/on-demand/wt-navigation-menu/components/wt-navigation-menu.vue +6 -6
- package/src/components/on-demand/wt-route-transition/wt-route-transition.vue +12 -12
- package/src/components/on-demand/wt-save-failed-popup/wt-save-failed-popup.vue +1 -3
- package/src/components/on-demand/wt-selection-popup/wt-selection-popup.vue +3 -3
- package/src/components/on-demand/wt-start-page/components/start-page-card.vue +4 -2
- package/src/components/on-demand/wt-start-page/components/start-page-logo.vue +1 -1
- package/src/components/on-demand/wt-start-page/components/wt-start-page.vue +2 -3
- package/src/components/on-demand/wt-table-transition/wt-table-transition.vue +7 -7
- package/src/components/wt-action-bar/wt-action-bar.vue +16 -12
- package/src/components/wt-app-header/__tests__/WtHeaderActions.spec.js +3 -1
- package/src/components/wt-app-header/_variables.scss +0 -1
- package/src/components/wt-app-header/wt-app-header.vue +4 -4
- package/src/components/wt-app-header/wt-app-navigator.vue +6 -7
- package/src/components/wt-app-header/wt-header-actions.vue +6 -8
- package/src/components/wt-avatar/wt-avatar.vue +4 -3
- package/src/components/wt-badge/wt-badge.vue +1 -2
- package/src/components/wt-button/wt-button.vue +3 -5
- package/src/components/wt-button-select/__tests__/WtButtonSelect.spec.js +6 -2
- package/src/components/wt-button-select/wt-button-select.vue +3 -4
- package/src/components/wt-checkbox/_variables.scss +1 -2
- package/src/components/wt-checkbox/wt-checkbox.vue +1 -2
- package/src/components/wt-chip/_variables.scss +0 -1
- package/src/components/wt-confirm-dialog/wt-confirm-dialog.vue +15 -5
- package/src/components/wt-context-menu/_variables.scss +3 -1
- package/src/components/wt-context-menu/wt-context-menu.vue +1 -3
- package/src/components/wt-copy-action/wt-copy-action.vue +1 -2
- package/src/components/wt-datepicker/_variables.scss +17 -5
- package/src/components/wt-datepicker/wt-datepicker.vue +2 -7
- package/src/components/wt-divider/_variables.scss +0 -1
- package/src/components/wt-divider/wt-divider.vue +5 -3
- package/src/components/wt-dual-panel/__tests__/WtDualPanel.js +2 -2
- package/src/components/wt-dual-panel/wt-dual-panel.vue +6 -5
- package/src/components/wt-dummy/_variables.scss +0 -1
- package/src/components/wt-dummy/wt-dummy.vue +1 -1
- package/src/components/wt-empty/wt-empty.vue +42 -34
- package/src/components/wt-error-page/_variables.scss +0 -1
- package/src/components/wt-error-page/wt-error-page.vue +2 -4
- package/src/components/wt-expansion-panel/_variables.scss +0 -1
- package/src/components/wt-expansion-panel/wt-expansion-panel.vue +3 -8
- package/src/components/wt-filters-panel-wrapper/__tests__/WtFiltersPanelWrapper.spec.js +12 -4
- package/src/components/wt-filters-panel-wrapper/wt-filters-panel-wrapper.vue +8 -7
- package/src/components/wt-headline/_variables.scss +0 -1
- package/src/components/wt-headline-nav/_variables.scss +0 -1
- package/src/components/wt-headline-nav/wt-headline-nav.vue +2 -1
- package/src/components/wt-hint/wt-hint.vue +1 -3
- package/src/components/wt-icon/_variables.scss +0 -1
- package/src/components/wt-icon-action/wt-icon-action.vue +13 -12
- package/src/components/wt-icon-btn/_variables.scss +0 -2
- package/src/components/wt-icon-btn/wt-icon-btn.vue +4 -6
- package/src/components/wt-image/wt-image.vue +14 -13
- package/src/components/wt-indicator/wt-indicator.vue +2 -7
- package/src/components/wt-input/_variables.scss +1 -2
- package/src/components/wt-input/wt-input.vue +13 -10
- package/src/components/wt-input-info/_variables.scss +0 -1
- package/src/components/wt-intersection-observer/__tests__/WtIntersectionObserver.spec.js +1 -1
- package/src/components/wt-intersection-observer/wt-intersection-observer.vue +9 -8
- package/src/components/wt-item-link/_variables.scss +0 -1
- package/src/components/wt-label/_variables.scss +0 -1
- package/src/components/wt-label/wt-label.vue +1 -4
- package/src/components/wt-load-bar/_variables.scss +0 -1
- package/src/components/wt-load-bar/wt-load-bar.vue +0 -1
- package/src/components/wt-loader/_variables.scss +0 -2
- package/src/components/wt-loader/wt-loader.vue +1 -3
- package/src/components/wt-logo/wt-logo.vue +1 -1
- package/src/components/wt-navigation-bar/__tests__/WtNavigationBar.spec.js +9 -3
- package/src/components/wt-navigation-bar/_variables.scss +9 -3
- package/src/components/wt-navigation-bar/wt-navigation-bar.vue +27 -11
- package/src/components/wt-notification/_variables.scss +0 -1
- package/src/components/wt-notifications-bar/__tests__/WtNotificationsBar.spec.js +1 -1
- package/src/components/wt-notifications-bar/_variables.scss +1 -2
- package/src/components/wt-notifications-bar/wt-notifications-bar.vue +4 -2
- package/src/components/wt-page-header/wt-page-header.vue +3 -2
- package/src/components/wt-page-wrapper/__tests__/WtPageWrapper.spec.js +3 -1
- package/src/components/wt-page-wrapper/_variables.scss +0 -1
- package/src/components/wt-page-wrapper/wt-page-wrapper.vue +0 -2
- package/src/components/wt-pagination/_variables.scss +1 -2
- package/src/components/wt-pagination/wt-pagination.vue +2 -1
- package/src/components/wt-player/_variables.scss +6 -2
- package/src/components/wt-player/wt-player.vue +52 -53
- package/src/components/wt-popup/_variables.scss +0 -1
- package/src/components/wt-popup/wt-popup.vue +2 -8
- package/src/components/wt-progress-bar/_variables.scss +0 -1
- package/src/components/wt-progress-bar/wt-progress-bar.vue +7 -6
- package/src/components/wt-radio/_variables.scss +1 -2
- package/src/components/wt-radio/wt-radio.vue +1 -2
- package/src/components/wt-rounded-action/_variables.scss +3 -1
- package/src/components/wt-search-bar/_variables.scss +4 -2
- package/src/components/wt-search-bar/wt-search-bar.vue +10 -4
- package/src/components/wt-select/_multiselect.scss +9 -15
- package/src/components/wt-select/_variables.scss +3 -2
- package/src/components/wt-select/mixins/multiselectMixin.js +2 -1
- package/src/components/wt-select/wt-select.vue +25 -26
- package/src/components/wt-slider/_variables.scss +0 -1
- package/src/components/wt-slider/wt-slider.vue +3 -3
- package/src/components/wt-status-select/_variables.scss +8 -4
- package/src/components/wt-stepper/_variables.scss +0 -1
- package/src/components/wt-stepper/wt-stepper.vue +5 -5
- package/src/components/wt-switcher/_variables.scss +0 -1
- package/src/components/wt-switcher/wt-switcher.vue +2 -3
- package/src/components/wt-table/__tests__/WtTable.spec.js +8 -2
- package/src/components/wt-table/_variables.scss +0 -1
- package/src/components/wt-table/types/table-header.ts +8 -0
- package/src/components/wt-table/wt-table.vue +111 -109
- package/src/components/wt-table-actions/_variables.scss +1 -2
- package/src/components/wt-table-actions/wt-table-actions.vue +1 -2
- package/src/components/wt-table-column-select/wt-table-column-select.vue +11 -8
- package/src/components/wt-tabs/_variables.scss +0 -1
- package/src/components/wt-tabs/wt-tabs.vue +6 -6
- package/src/components/wt-tags-input/__tests__/WtTagsInput.spec.js +6 -6
- package/src/components/wt-tags-input/mixin/taggableMixin.js +3 -1
- package/src/components/wt-tags-input/wt-tags-input.vue +8 -10
- package/src/components/wt-textarea/__tests__/WtTextarea.spec.js +6 -2
- package/src/components/wt-textarea/_variables.scss +0 -1
- package/src/components/wt-textarea/wt-textarea.vue +6 -7
- package/src/components/wt-time-input/wt-time-input.vue +1 -2
- package/src/components/wt-timepicker/_variables.scss +1 -2
- package/src/components/wt-timepicker/wt-timepicker.vue +10 -8
- package/src/components/wt-tooltip/_internals/useTooltipTriggerSubscriptions.js +6 -1
- package/src/components/wt-tooltip/_internals/wt-tooltip-floating.vue +1 -3
- package/src/components/wt-tooltip/_variables.scss +0 -1
- package/src/components/wt-tooltip/wt-tooltip.vue +13 -2
- package/src/components/wt-tree-table/_variables.scss +19 -0
- package/src/components/wt-tree-table/wt-tree-table.vue +323 -0
- package/src/components/wt-tree-table-row/wt-tree-table-row.vue +171 -0
- package/src/composables/useAccessControl/useAccessControl.js +12 -4
- package/src/composables/useCachedInterval/useCachedInterval.js +6 -2
- package/src/composables/useCachedItemInstanceName/useCachedItemInstanceName.js +4 -1
- package/src/composables/useCard/useCardComponent.js +10 -9
- package/src/composables/useCard/useCardTabs.js +6 -3
- package/src/composables/useRepresentableAgentPauseCause/__tests__/useRepresentableAgentPauseCause.spec.js +20 -10
- package/src/composables/useValidate/useValidate.js +1 -1
- package/src/composables/useWtTable/useWtTable.ts +25 -0
- package/src/css/main.scss +7 -1
- package/src/css/pages/table-page.scss +1 -2
- package/src/css/styleguide/border-radius/_border-radius.scss +1 -1
- package/src/css/styleguide/colors/_deprecated.scss +83 -24
- package/src/css/styleguide/colors/_palette.scss +1340 -251
- package/src/css/styleguide/colors/reusable/_text-field.scss +6 -2
- package/src/css/styleguide/fonts/_fonts.scss +36 -18
- package/src/css/styleguide/spacings/_spacings.scss +1 -1
- package/src/css/styleguide/transitions/_transitions.scss +1 -1
- package/src/css/styleguide/transitions/fade/_fade.scss +5 -4
- package/src/css/styleguide/viewport-breakpoints/_viewport-breakpoints.scss +0 -1
- package/src/enums/WebitelApplications/WebitelApplications.enum.js +7 -7
- package/src/enums/index.js +5 -10
- package/src/locale/en/en.js +5 -2
- package/src/locale/ru/ru.js +7 -3
- package/src/locale/ua/ua.js +7 -3
- package/src/mixins/dataFilterMixins/__tests__/apiFilterMixin.spec.js +2 -1
- package/src/mixins/dataFilterMixins/apiFilterMixin.js +3 -1
- package/src/mixins/dataFilterMixins/baseFilterMixin/baseFilterMixin.js +2 -1
- package/src/mixins/dataFilterMixins/enumFilterMixin.js +2 -1
- package/src/mixins/dataFilterMixins/paginationFilterMixin.js +4 -1
- package/src/mixins/dataFilterMixins/sortFilterMixin.js +2 -1
- package/src/mixins/validationMixin/useValidation.js +17 -7
- package/src/mixins/validationMixin/validationMixin.js +16 -8
- package/src/modules/AgentStatusSelect/api/pause-cause.js +4 -1
- package/src/modules/AgentStatusSelect/components/__tests__/wt-cc-agent-status-select.spec.js +18 -6
- package/src/modules/AgentStatusSelect/components/_internals/wt-cc-pause-cause-popup.vue +3 -2
- package/src/modules/AgentStatusSelect/components/wt-cc-agent-status-select.vue +5 -2
- package/src/modules/Appearance/components/__tests__/wt-dark-mode-switcher.spec.js +6 -2
- package/src/modules/AuditForm/components/__tests__/audit-form-question-write-wrapper.spec.js +12 -4
- package/src/modules/AuditForm/components/__tests__/audit-form.spec.js +18 -5
- package/src/modules/AuditForm/components/audit-form-question-read-wrapper.vue +4 -2
- package/src/modules/AuditForm/components/audit-form-question-write-wrapper.vue +15 -5
- package/src/modules/AuditForm/components/audit-form-question.vue +10 -4
- package/src/modules/AuditForm/components/audit-form.vue +24 -7
- package/src/modules/AuditForm/components/questions/options/__tests__/audit-form-question-options.spec.js +6 -2
- package/src/modules/AuditForm/components/questions/options/audit-form-question-options.vue +5 -5
- package/src/modules/AuditForm/components/questions/score/audit-form-question-score.vue +9 -4
- package/src/modules/CSVExport/CSVExport.js +5 -2
- package/src/modules/CSVExport/XLSExport.js +7 -7
- package/src/modules/CSVExport/__tests__/CSVExport.spec.js +4 -1
- package/src/modules/CSVExport/mixins/exportCSVMixin.js +3 -1
- package/src/modules/CSVExport/mixins/exportXLSMixin.js +3 -1
- package/src/modules/CardStoreModule/composables/useCardStore.js +6 -2
- package/src/modules/DeleteConfirmationPopup/__tests__/delete-confirmation-popup.spec.js +3 -3
- package/src/modules/DeleteConfirmationPopup/components/delete-confirmation-popup.vue +6 -3
- package/src/modules/FilesExport/__tests__/FilesExport.spec.js +6 -2
- package/src/modules/FilesExport/mixins/exportFilesMixin.js +6 -2
- package/src/modules/FilesExport/scripts/generateMediaURL.js +2 -1
- package/src/modules/Filters/classes/BaseFilterSchema.js +15 -6
- package/src/modules/Filters/components/filter-datetime.vue +7 -5
- package/src/modules/Filters/components/filter-pagination.vue +7 -5
- package/src/modules/Filters/components/filter-search.vue +4 -4
- package/src/modules/Filters/components/filter-select.vue +33 -24
- package/src/modules/Filters/components/filter-table-fields.vue +1 -3
- package/src/modules/Filters/composables/useTableFilters.js +3 -1
- package/src/modules/Filters/scripts/getters/localStorageGetter.js +6 -2
- package/src/modules/Filters/scripts/getters/queryGetter.js +2 -1
- package/src/modules/Filters/scripts/setters/localStorageSetter.js +6 -2
- package/src/modules/Filters/scripts/setters/querySetter.js +2 -1
- package/src/modules/Filters/scripts/utils/changeRouteQuery.js +2 -1
- package/src/modules/Filters/store/FiltersStoreModule.js +3 -3
- package/src/modules/Notifications/store/NotificationsStoreModule.js +14 -5
- package/src/modules/Notifications/store/__tests__/NotificationsStoreModule.actions.spec.js +10 -3
- package/src/modules/ObjectPermissions/_internals/components/permissions-role-row.vue +1 -3
- package/src/modules/ObjectPermissions/_internals/components/permissions-role-select.vue +1 -3
- package/src/modules/ObjectPermissions/_internals/components/permissions-tab-role-popup.vue +8 -5
- package/src/modules/ObjectPermissions/_internals/modules/filters/store/filters.store.js +3 -4
- package/src/modules/ObjectPermissions/_internals/store/helpers/createObjectPermissionsStoreModule.js +1 -2
- package/src/modules/ObjectPermissions/_internals/store/modules/objectPermissionsStoreModule.js +10 -14
- package/src/modules/ObjectPermissions/components/permissions-tab.vue +12 -12
- package/src/modules/ObjectPermissions/store/index.js +2 -6
- package/src/modules/QueryFilters/components/__tests__/filter-datetime.spec.js +3 -1
- package/src/modules/QueryFilters/components/__tests__/filter-from-to.spec.js +6 -2
- package/src/modules/QueryFilters/components/__tests__/filter-search.spec.js +7 -2
- package/src/modules/QueryFilters/components/abstract-api-filter.vue +15 -5
- package/src/modules/QueryFilters/components/abstract-enum-filter.vue +15 -5
- package/src/modules/QueryFilters/components/filter-datetime.vue +1 -3
- package/src/modules/QueryFilters/components/filter-from-to.vue +1 -1
- package/src/modules/QueryFilters/components/filter-search.vue +1 -3
- package/src/modules/QueryFilters/components/filter-table-fields.vue +1 -3
- package/src/modules/QueryFilters/mixins/__tests__/enumFilterMixin.spec.js +4 -1
- package/src/modules/QueryFilters/mixins/baseFilterMixin/baseFilterMixin.js +9 -3
- package/src/modules/QueryFilters/mixins/enumFilterMixin.js +10 -3
- package/src/modules/QueryFilters/mixins/paginationFilterMixin.js +4 -2
- package/src/modules/QueryFilters/mixins/sortFilterMixin.js +2 -1
- package/src/modules/QueryFilters/store/QueryFiltersStoreModule.js +2 -1
- package/src/modules/QueryFilters/store/__tests__/QueryFiltersStoreModule.spec.js +10 -3
- package/src/modules/TableComponentModule/composables/useTableEmpty.js +13 -4
- package/src/modules/TableStoreModule/composables/useTableStore.js +18 -6
- package/src/modules/TableStoreModule/store/TableStoreModule.js +36 -21
- package/src/modules/TableStoreModule/store/__tests__/TableStoreModule.spec.js +7 -2
- package/src/modules/Userinfo/api/userinfo.js +4 -1
- package/src/modules/Userinfo/classes/ApplicationsAccess.js +3 -1
- package/src/modules/Userinfo/store/UserinfoStoreModule.js +25 -9
- package/src/plugins/breakpoint/breakpoint.plugin.js +2 -1
- package/src/scripts/__tests__/caseConverters.spec.js +4 -1
- package/src/scripts/__tests__/updateObject.spec.js +6 -2
- package/src/scripts/caseConverters.js +37 -29
- package/src/scripts/compareSize.ts +9 -6
- package/src/scripts/debounce.js +2 -1
- package/src/scripts/index.js +2 -8
- package/src/scripts/logger.js +4 -4
- package/src/scripts/preventHiddenPageCallsDecorator.js +6 -2
- package/src/scripts/saveAsJSON.js +3 -1
- package/src/scripts/sortQueryAdapters.js +11 -0
- package/src/store/BaseStoreModules/ApiStoreModule.js +26 -7
- package/src/store/BaseStoreModules/BaseStoreModule.js +2 -1
- package/src/store/BaseStoreModules/__tests__/BaseStoreModule.spec.js +28 -7
- package/src/store/helpers/getNamespacedState.js +3 -1
- package/src/store/new/modules/apiStoreModule/apiStoreModule.js +19 -14
- package/src/store/new/modules/cardStoreModule/useCardStore.js +6 -2
- package/src/store/new/modules/tableStoreModule/__tests__/tableStoreModule.spec.js +6 -8
- package/src/store/new/modules/tableStoreModule/tableStoreModule.js +31 -28
- package/src/store/new/modules/tableStoreModule/useTableStore.js +18 -6
- package/src/validators/variableSearchValidator/__tests__/variableSearchValidator.spec.js +2 -1
- package/src/validators/websocketValidator/__tests__/websocketValidator.spec.js +3 -1
- package/src/components/wt-table/_internals/getSortOrder.js +0 -12
- /package/dist/img/sprite/{plus.svg → tree-expand.svg} +0 -0
- /package/src/assets/icons/sprite/{plus.svg → tree-expand.svg} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,318 +1,429 @@
|
|
|
1
|
+
## [v24.12.33] - 2024-12-30
|
|
2
|
+
### :bug: Bug Fixes
|
|
3
|
+
- [`72dc591`](https://github.com/webitel/webitel-ui-sdk/commit/72dc591809131afd51323631bfe8fc809ea48296) - fix comments on wt-select after running fix lint error
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## [v24.12.32] - 2024-12-30
|
|
7
|
+
### :sparkles: New Features
|
|
8
|
+
- [`4b0b0b1`](https://github.com/webitel/webitel-ui-sdk/commit/4b0b0b1416498a72aabbb8496a32a85181798997) - update package version to 24.12.32
|
|
9
|
+
- [`66362bf`](https://github.com/webitel/webitel-ui-sdk/commit/66362bf41fdd29b1a81f61e3f763d57548bce0cd) - update wt-tree-table row props declared [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
10
|
+
- [`e4e58be`](https://github.com/webitel/webitel-ui-sdk/commit/e4e58bef0736f12f746b6de7e2d2cb17928ec41a) - update set key for child elements [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
11
|
+
- [`0a36419`](https://github.com/webitel/webitel-ui-sdk/commit/0a36419822ba6c3be11e465abbc71673daf021cc) - disable wrap text in tree table header [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
12
|
+
- [`4cfd312`](https://github.com/webitel/webitel-ui-sdk/commit/4cfd312f555029b8e7d88b6f655e8cbe7ef3078b) - fix types for selectedElements [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
13
|
+
- [`2d9e154`](https://github.com/webitel/webitel-ui-sdk/commit/2d9e1545865844471f64ea1750e8da2d9d2b1f56) - rollback changes with unknown types to any, for fix error with build application [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
14
|
+
- [`3085b75`](https://github.com/webitel/webitel-ui-sdk/commit/3085b750667f7b8626e1f3cf69b62179964a8d8a) - implement docs for tree table [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
15
|
+
- [`14feaeb`](https://github.com/webitel/webitel-ui-sdk/commit/14feaeb925bb29fc94043c550c8de0547fecf132) - implement custom slots for cell in tree table. Update display for tree table for display columns with related size from header and body. Implement styles for display zebra colors in table body [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
16
|
+
- [`30b0ada`](https://github.com/webitel/webitel-ui-sdk/commit/30b0ada08cde69fe1ce5c5d6e8bb875d3300769d) - work on width for columns, update styles for wt-tree-table, update template for display wt-tree-table-row [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
17
|
+
- [`e334ab2`](https://github.com/webitel/webitel-ui-sdk/commit/e334ab27a533dc43308f05d7ecfc94c0c821fcae) - update styles for display row in tree table [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
18
|
+
- [`62d8fb8`](https://github.com/webitel/webitel-ui-sdk/commit/62d8fb8681ba5a352e3a6a27a84f7510fde34594) - implement new icons minus, tree-cross, tree-line. Implement display elements in tree table with we-expansion-panel, start working on display tree icons on displayed elements [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
19
|
+
- [`eb18d9e`](https://github.com/webitel/webitel-ui-sdk/commit/eb18d9ec924a7ad8030fe61372d28104ac4a3d99) - started working on create custom slots for table [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
20
|
+
- [`308eded`](https://github.com/webitel/webitel-ui-sdk/commit/308eded322e62e8efaf3622a90a24e8a5a3319dd) - Implement base logic for display wt-tree-table-row with option to select elements and select\deselect all elements [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
21
|
+
- [`cd114f6`](https://github.com/webitel/webitel-ui-sdk/commit/cd114f64ffe3d601d27ac5d7784fd4d3d1d3cdda) - implement playground with selectable items from table, fix error with this in wt-tree-table [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
22
|
+
- [`2db75e3`](https://github.com/webitel/webitel-ui-sdk/commit/2db75e336f6934b63dc2edcdc61ea216e2cb0ecc) - Implement base component wt-tree-table from wt-table with mock array services
|
|
23
|
+
|
|
24
|
+
### :bug: Bug Fixes
|
|
25
|
+
- [`e031288`](https://github.com/webitel/webitel-ui-sdk/commit/e0312883373b2ad43924b1b027be29abe2a2c414) - update package version to 24.12.30 [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
26
|
+
- [`ba9049e`](https://github.com/webitel/webitel-ui-sdk/commit/ba9049e6c1dd36432b03de90f3905541da127436) - replace any type to unknown [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
27
|
+
- [`a727657`](https://github.com/webitel/webitel-ui-sdk/commit/a727657a803102e7bd223e3c4d664ff6ca528aa4) - Update useTable composable [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
28
|
+
- [`1119ee5`](https://github.com/webitel/webitel-ui-sdk/commit/1119ee5a753f19550290f3a4b2cb17b64d4b52df) - remove unused classes, fix code styles for props [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
29
|
+
- [`7b047b9`](https://github.com/webitel/webitel-ui-sdk/commit/7b047b998825ac7052ff5e5615cb00b49ca16b15) - update name of icons for tree
|
|
30
|
+
- [`bc59539`](https://github.com/webitel/webitel-ui-sdk/commit/bc595395b1a86f873d80031de907e057bd3d8411) - Update wt-table and wt-tree-table classes. Implement composable useTable. Update sortQueryAdapters script. Update functions in wt-tree-table. Update name of variables for wt-tree-table [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
31
|
+
- [`2957fa1`](https://github.com/webitel/webitel-ui-sdk/commit/2957fa1335d8b40f730c2010fff64e5565064dcd) - remove hide title props from wt-expansion-panel
|
|
32
|
+
- [`e982b86`](https://github.com/webitel/webitel-ui-sdk/commit/e982b8607858f530174a4267dacd04ce13cacb58) - implement fixes by code styles and remove unused code [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## [v24.12.31] - 2024-12-27
|
|
36
|
+
### :sparkles: New Features
|
|
37
|
+
- [`16a6aca`](https://github.com/webitel/webitel-ui-sdk/commit/16a6acadf46f1c16a3548e82698116dc738172bd) - update prettier config
|
|
38
|
+
- [`eae9dc4`](https://github.com/webitel/webitel-ui-sdk/commit/eae9dc4be79ba6b6a9e92cf8496a4563d28791d8) - run fix eslint errors
|
|
39
|
+
- [`2ca8e63`](https://github.com/webitel/webitel-ui-sdk/commit/2ca8e63b9293e7539b736827d4a5a9ad0f3b28a0) - update lint scripts
|
|
40
|
+
- [`dae2b8b`](https://github.com/webitel/webitel-ui-sdk/commit/dae2b8b80031794e7e1e951e134d9aea166e22f4) - add @eslint/js package
|
|
41
|
+
- [`e6d2bcf`](https://github.com/webitel/webitel-ui-sdk/commit/e6d2bcf1b4bba7ae3be77649c51f67d50f13cc0f) - update package version to 24.12.30
|
|
42
|
+
- [`b8c5fe2`](https://github.com/webitel/webitel-ui-sdk/commit/b8c5fe2ec60df84bcc4bc701e0fd128489681b49) - run fix eslint errors
|
|
43
|
+
- [`aa7f3ab`](https://github.com/webitel/webitel-ui-sdk/commit/aa7f3ab45786b9e0f7aa7e38c9818bf9c352b502) - Implement Eslint lint and prettier configs. Remove Biome
|
|
44
|
+
|
|
1
45
|
|
|
46
|
+
## [v24.12.29] - 2024-12-18
|
|
47
|
+
|
|
48
|
+
### :sparkles: New Features
|
|
49
|
+
|
|
50
|
+
- [`680ad53`](https://github.com/webitel/webitel-ui-sdk/commit/680ad530949ffeca8643b25b89177111ff28e9a6) - stop sign icon added [WTEL-5511](https://webitel.atlassian.net/browse/WTEL-5511) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
2
51
|
|
|
3
52
|
## [v24.12.28] - 2024-12-18
|
|
53
|
+
|
|
4
54
|
### :sparkles: New Features
|
|
5
|
-
- [`e3e3f7b`](https://github.com/webitel/webitel-ui-sdk/commit/e3e3f7b9099f66c0b95fef141bff88342ef1a379) - add filtersValue computed in useTableFilters[WTEL-5744](https://webitel.atlassian.net/browse/WTEL-5744) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
6
55
|
|
|
56
|
+
- [`e3e3f7b`](https://github.com/webitel/webitel-ui-sdk/commit/e3e3f7b9099f66c0b95fef141bff88342ef1a379) - add filtersValue computed in useTableFilters[WTEL-5744](https://webitel.atlassian.net/browse/WTEL-5744) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
7
57
|
|
|
8
58
|
## [v24.12.27] - 2024-12-18
|
|
59
|
+
|
|
9
60
|
### :bug: Bug Fixes
|
|
10
|
-
- [`74140f6`](https://github.com/webitel/webitel-ui-sdk/commit/74140f63285437deae1105c35962dd4ab5953c68) - card-page-style[WTEL-5694](https://webitel.atlassian.net/browse/WTEL-5694) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
11
61
|
|
|
62
|
+
- [`74140f6`](https://github.com/webitel/webitel-ui-sdk/commit/74140f63285437deae1105c35962dd4ab5953c68) - card-page-style[WTEL-5694](https://webitel.atlassian.net/browse/WTEL-5694) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
12
63
|
|
|
13
64
|
## [v24.12.26] - 2024-12-16
|
|
65
|
+
|
|
14
66
|
### :sparkles: New Features
|
|
15
|
-
|
|
67
|
+
|
|
68
|
+
- [`c8aab36`](https://github.com/webitel/webitel-ui-sdk/commit/c8aab36db364f05ec01b3daffba69904b0d420b3) - case icons added [WTEL-5510] (https://webitel.atlassian.net/browse/WTEL-5510) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
16
69
|
|
|
17
70
|
### :recycle: Refactors
|
|
18
|
-
- [`21b5b81`](https://github.com/webitel/webitel-ui-sdk/commit/21b5b81985b0487e403348a03ca7285aaa40d71f) - version incremented [WTEL-5510] (https://webitel.atlassian.net/browse/WTEL-5510) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
19
71
|
|
|
72
|
+
- [`21b5b81`](https://github.com/webitel/webitel-ui-sdk/commit/21b5b81985b0487e403348a03ca7285aaa40d71f) - version incremented [WTEL-5510] (https://webitel.atlassian.net/browse/WTEL-5510) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
20
73
|
|
|
21
74
|
## [v24.12.25] - 2024-12-16
|
|
75
|
+
|
|
22
76
|
### :bug: Bug Fixes
|
|
77
|
+
|
|
23
78
|
- [`33dce9b`](https://github.com/webitel/webitel-ui-sdk/commit/33dce9bbcde8d0ec76ab18e06ebbb00487c51a8d) - update version to 24.12.25 [WTEL-5645](https://webitel.atlassian.net/browse/WTEL-5645)
|
|
24
79
|
- [`4716561`](https://github.com/webitel/webitel-ui-sdk/commit/4716561bab8442d63ae11060f9c509d0727d7842) - resolve merge conflict [WTEL-5645](https://webitel.atlassian.net/browse/WTEL-5645)
|
|
25
80
|
- [`cb4dbc8`](https://github.com/webitel/webitel-ui-sdk/commit/cb4dbc85092a7b8a17a1a9a9b07554bb672ab9e1) - update docs for teams and skills api [WTEL-5645](https://webitel.atlassian.net/browse/WTEL-5645)
|
|
26
81
|
- [`fc6c001`](https://github.com/webitel/webitel-ui-sdk/commit/fc6c001f109259479729851da5fca632c1b2049f) - Implement skills and teams api from admin app [WTEL-5645](https://webitel.atlassian.net/browse/WTEL-5645)
|
|
27
82
|
|
|
28
|
-
|
|
29
83
|
## [v24.12.24] - 2024-12-16
|
|
84
|
+
|
|
30
85
|
### :bug: Bug Fixes
|
|
31
|
-
- [`c7d7ff0`](https://github.com/webitel/webitel-ui-sdk/commit/c7d7ff055337c16350ca8c56b306fa897326b984) - add required prop in time-date picker conponents[WTEL-5684](https://webitel.atlassian.net/browse/WTEL-5684) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
32
86
|
|
|
87
|
+
- [`c7d7ff0`](https://github.com/webitel/webitel-ui-sdk/commit/c7d7ff055337c16350ca8c56b306fa897326b984) - add required prop in time-date picker conponents[WTEL-5684](https://webitel.atlassian.net/browse/WTEL-5684) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
33
88
|
|
|
34
89
|
## [v24.12.23] - 2024-12-16
|
|
90
|
+
|
|
35
91
|
### :sparkles: New Features
|
|
36
|
-
|
|
37
|
-
- [`
|
|
92
|
+
|
|
93
|
+
- [`60c918a`](https://github.com/webitel/webitel-ui-sdk/commit/60c918a4a7e738a399190c29da8c21fddcad1932) - implimented version [WTEL-5503](https://webitel.atlassian.net/browse/WTEL-5503) _(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))_
|
|
94
|
+
- [`1a19bd1`](https://github.com/webitel/webitel-ui-sdk/commit/1a19bd1bc799ea984598b7b99d75486fead1943a) - update agent chats api params [WTEL-5503](https://webitel.atlassian.net/browse/WTEL-5503) _(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))_
|
|
38
95
|
|
|
39
96
|
### :bug: Bug Fixes
|
|
40
|
-
- [`dbeb016`](https://github.com/webitel/webitel-ui-sdk/commit/dbeb01682efe411da4197a24933a22bdea98294e) - clear selected arr in delete record[WTEL-5730](https://webitel.atlassian.net/browse/WTEL-5730) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
41
97
|
|
|
98
|
+
- [`dbeb016`](https://github.com/webitel/webitel-ui-sdk/commit/dbeb01682efe411da4197a24933a22bdea98294e) - clear selected arr in delete record[WTEL-5730](https://webitel.atlassian.net/browse/WTEL-5730) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
42
99
|
|
|
43
100
|
## [v24.12.22] - 2024-12-13
|
|
101
|
+
|
|
44
102
|
### :bug: Bug Fixes
|
|
45
|
-
- [`d7fc38d`](https://github.com/webitel/webitel-ui-sdk/commit/d7fc38d3c46998df9e79b932460ca96f8b9335f2) - conflict[WTEL-5711](https://webitel.atlassian.net/browse/WTEL-5711) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
46
|
-
- [`31a9aeb`](https://github.com/webitel/webitel-ui-sdk/commit/31a9aeb6b0a5b029503893f76278471745b49224) - change resetTableState action[WTEL-5711](https://webitel.atlassian.net/browse/WTEL-5711) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
47
|
-
- [`98f30da`](https://github.com/webitel/webitel-ui-sdk/commit/98f30da2b20c5b9347e225c3213ab6136ea16b5e) - add resetState in tableStoreModule[WTEL-5711](https://webitel.atlassian.net/browse/WTEL-5711) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
48
103
|
|
|
104
|
+
- [`d7fc38d`](https://github.com/webitel/webitel-ui-sdk/commit/d7fc38d3c46998df9e79b932460ca96f8b9335f2) - conflict[WTEL-5711](https://webitel.atlassian.net/browse/WTEL-5711) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
105
|
+
- [`31a9aeb`](https://github.com/webitel/webitel-ui-sdk/commit/31a9aeb6b0a5b029503893f76278471745b49224) - change resetTableState action[WTEL-5711](https://webitel.atlassian.net/browse/WTEL-5711) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
106
|
+
- [`98f30da`](https://github.com/webitel/webitel-ui-sdk/commit/98f30da2b20c5b9347e225c3213ab6136ea16b5e) - add resetState in tableStoreModule[WTEL-5711](https://webitel.atlassian.net/browse/WTEL-5711) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
49
107
|
|
|
50
108
|
## [v24.12.21] - 2024-12-13
|
|
109
|
+
|
|
51
110
|
### :bug: Bug Fixes
|
|
52
|
-
- [`55398a0`](https://github.com/webitel/webitel-ui-sdk/commit/55398a0397d2923a5a99400887378834053fe440) - implement locales for useTableEmpty [WTEL-5642](https://webitel.atlassian.net/browse/WTEL-5642)
|
|
53
111
|
|
|
112
|
+
- [`55398a0`](https://github.com/webitel/webitel-ui-sdk/commit/55398a0397d2923a5a99400887378834053fe440) - implement locales for useTableEmpty [WTEL-5642](https://webitel.atlassian.net/browse/WTEL-5642)
|
|
54
113
|
|
|
55
114
|
## [v24.12.20] - 2024-12-12
|
|
115
|
+
|
|
56
116
|
### :bug: Bug Fixes
|
|
57
|
-
- [`e3a0342`](https://github.com/webitel/webitel-ui-sdk/commit/e3a0342b485c8aefa4ee23c6eb49ebe3bd6ae560) - order action in wt-action-bar component[WTEL-5721](https://webitel.atlassian.net/browse/WTEL-5721) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
58
117
|
|
|
118
|
+
- [`e3a0342`](https://github.com/webitel/webitel-ui-sdk/commit/e3a0342b485c8aefa4ee23c6eb49ebe3bd6ae560) - order action in wt-action-bar component[WTEL-5721](https://webitel.atlassian.net/browse/WTEL-5721) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
59
119
|
|
|
60
120
|
## [v24.12.19] - 2024-12-11
|
|
121
|
+
|
|
61
122
|
### :sparkles: New Features
|
|
62
|
-
|
|
123
|
+
|
|
124
|
+
- [`96eb87f`](https://github.com/webitel/webitel-ui-sdk/commit/96eb87f71c090b25007742337f3d46c1ed334d39) - new colors added for wt-indicator [WTEL-5507] (https://webitel.atlassian.net/browse/WTEL-5507) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
63
125
|
|
|
64
126
|
### :bug: Bug Fixes
|
|
65
|
-
|
|
127
|
+
|
|
128
|
+
- [`f626e42`](https://github.com/webitel/webitel-ui-sdk/commit/f626e4244000e8fd0b6e36a4a80924876a3388ca) - styles fixed [WTEL-5507] (https://webitel.atlassian.net/browse/WTEL-5507) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
66
129
|
|
|
67
130
|
### :recycle: Refactors
|
|
68
|
-
- [`8cce0ff`](https://github.com/webitel/webitel-ui-sdk/commit/8cce0ff8416ca0d68d55202173f35d6b59ff31f7) - version incremented [WTEL-5507] (https://webitel.atlassian.net/browse/WTEL-5507) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
69
131
|
|
|
132
|
+
- [`8cce0ff`](https://github.com/webitel/webitel-ui-sdk/commit/8cce0ff8416ca0d68d55202173f35d6b59ff31f7) - version incremented [WTEL-5507] (https://webitel.atlassian.net/browse/WTEL-5507) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
70
133
|
|
|
71
134
|
## [v24.12.18] - 2024-12-11
|
|
135
|
+
|
|
72
136
|
### :sparkles: New Features
|
|
137
|
+
|
|
73
138
|
- [`86c61d7`](https://github.com/webitel/webitel-ui-sdk/commit/86c61d79eba9d97eb5bb6dc277470f4a0003482b) - update version to 24.12.18 [WTEL-5639](https://webitel.atlassian.net/browse/WTEL-5639)
|
|
74
139
|
- [`71ca481`](https://github.com/webitel/webitel-ui-sdk/commit/71ca48197160d529026a001db87f4542814a8c2b) - implement locales for Applications access [WTEL-5639](https://webitel.atlassian.net/browse/WTEL-5639)
|
|
75
140
|
- [`bbf0917`](https://github.com/webitel/webitel-ui-sdk/commit/bbf0917450e751721ac30d3854a54d1bf6be1e17) - update name for crmSections service catalogs [WTEL-5639](https://webitel.atlassian.net/browse/WTEL-5639)
|
|
76
141
|
|
|
77
|
-
|
|
78
142
|
## [v24.12.17] - 2024-12-10
|
|
143
|
+
|
|
79
144
|
### :sparkles: New Features
|
|
80
|
-
- [`75b822f`](https://github.com/webitel/webitel-ui-sdk/commit/75b822faa06e8b221c369a931cde3aed3480e7ca) - add new params in contacts api[WTEL-4740](https://webitel.atlassian.net/browse/WTEL-4740) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
81
145
|
|
|
146
|
+
- [`75b822f`](https://github.com/webitel/webitel-ui-sdk/commit/75b822faa06e8b221c369a931cde3aed3480e7ca) - add new params in contacts api[WTEL-4740](https://webitel.atlassian.net/browse/WTEL-4740) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
82
147
|
|
|
83
148
|
## [v24.12.16] - 2024-12-09
|
|
149
|
+
|
|
84
150
|
### :sparkles: New Features
|
|
85
|
-
|
|
151
|
+
|
|
152
|
+
- [`68e5042`](https://github.com/webitel/webitel-ui-sdk/commit/68e5042da187ec4dfc2fb587bef453e728be6d2a) - adding additional initializeCard return [WTEL-5509] (https://webitel.atlassian.net/browse/WTEL-5509) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
86
153
|
|
|
87
154
|
### :bug: Bug Fixes
|
|
88
|
-
|
|
155
|
+
|
|
156
|
+
- [`8689d62`](https://github.com/webitel/webitel-ui-sdk/commit/8689d624c778158e29c56ffb26f664bd939863da) - useCardComponent composable initialize function changes [WTEL-5509] (https://webitel.atlassian.net/browse/WTEL-5509) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
89
157
|
|
|
90
158
|
### :recycle: Refactors
|
|
91
|
-
- [`bd52b70`](https://github.com/webitel/webitel-ui-sdk/commit/bd52b70268a5928fc8a0a41470168bd6219889e7) - trying to fix git action [WTEL-5509] (https://webitel.atlassian.net/browse/WTEL-5509) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
92
|
-
- [`1d121b2`](https://github.com/webitel/webitel-ui-sdk/commit/1d121b272515f2a63313f77b754afaa04416a614) - version incremented [WTEL-5509] (https://webitel.atlassian.net/browse/WTEL-5509) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
93
159
|
|
|
160
|
+
- [`bd52b70`](https://github.com/webitel/webitel-ui-sdk/commit/bd52b70268a5928fc8a0a41470168bd6219889e7) - trying to fix git action [WTEL-5509] (https://webitel.atlassian.net/browse/WTEL-5509) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
161
|
+
- [`1d121b2`](https://github.com/webitel/webitel-ui-sdk/commit/1d121b272515f2a63313f77b754afaa04416a614) - version incremented [WTEL-5509] (https://webitel.atlassian.net/browse/WTEL-5509) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
94
162
|
|
|
95
163
|
## [v24.12.15] - 2024-12-06
|
|
164
|
+
|
|
96
165
|
### :sparkles: New Features
|
|
97
|
-
|
|
166
|
+
|
|
167
|
+
- [`e8e17bd`](https://github.com/webitel/webitel-ui-sdk/commit/e8e17bdd2368db9c4d1cf56b8f7e6d19918d0825) - add wt-selection-popup[WTEL-5610](https://webitel.atlassian.net/browse/WTEL-5610) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
98
168
|
|
|
99
169
|
### :bug: Bug Fixes
|
|
100
|
-
- [`2c30ec3`](https://github.com/webitel/webitel-ui-sdk/commit/2c30ec31915cddd8f3c0b10072f7bef58ea918bd) - docs and delete shown prop[WTEL-5610](https://webitel.atlassian.net/browse/WTEL-5610) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
101
|
-
- [`afe77f0`](https://github.com/webitel/webitel-ui-sdk/commit/afe77f02cd1b227307029cf7c9ca054bfa1c1d99) - merge master[WTEL-5610](https://webitel.atlassian.net/browse/WTEL-5610) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
102
|
-
- [`0d5bb81`](https://github.com/webitel/webitel-ui-sdk/commit/0d5bb8171d896b0bb78ec6679be93819baa958b9) - doc[WTEL-5610](https://webitel.atlassian.net/browse/WTEL-5610) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
103
170
|
|
|
171
|
+
- [`2c30ec3`](https://github.com/webitel/webitel-ui-sdk/commit/2c30ec31915cddd8f3c0b10072f7bef58ea918bd) - docs and delete shown prop[WTEL-5610](https://webitel.atlassian.net/browse/WTEL-5610) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
172
|
+
- [`afe77f0`](https://github.com/webitel/webitel-ui-sdk/commit/afe77f02cd1b227307029cf7c9ca054bfa1c1d99) - merge master[WTEL-5610](https://webitel.atlassian.net/browse/WTEL-5610) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
173
|
+
- [`0d5bb81`](https://github.com/webitel/webitel-ui-sdk/commit/0d5bb8171d896b0bb78ec6679be93819baa958b9) - doc[WTEL-5610](https://webitel.atlassian.net/browse/WTEL-5610) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
104
174
|
|
|
105
175
|
## [v24.12.14] - 2024-12-06
|
|
176
|
+
|
|
106
177
|
### :bug: Bug Fixes
|
|
107
|
-
|
|
108
|
-
- [`
|
|
109
|
-
- [`
|
|
178
|
+
|
|
179
|
+
- [`6bf7c96`](https://github.com/webitel/webitel-ui-sdk/commit/6bf7c9606ce59fd584f192268dc000d54f8cb61d) - node version in package.json _(commit by [@Lera24](https://github.com/Lera24))_
|
|
180
|
+
- [`b44baed`](https://github.com/webitel/webitel-ui-sdk/commit/b44baed54b04007e1adee2dbca08e1f5e51fc7ad) - permissions-tab component[WTEL-3392](https://webitel.atlassian.net/browse/WTEL-3392) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
181
|
+
- [`68cce7c`](https://github.com/webitel/webitel-ui-sdk/commit/68cce7c36f006868b51c1bfead4157f250abef6b) - doc[WTEL-3392](https://webitel.atlassian.net/browse/WTEL-3392) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
110
182
|
|
|
111
183
|
### :recycle: Refactors
|
|
112
|
-
- [`a29f08c`](https://github.com/webitel/webitel-ui-sdk/commit/a29f08c548f7a49d7336c8e112ef222a5079382a) - permission module[WTEL-3392](https://webitel.atlassian.net/browse/WTEL-3392) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
113
184
|
|
|
185
|
+
- [`a29f08c`](https://github.com/webitel/webitel-ui-sdk/commit/a29f08c548f7a49d7336c8e112ef222a5079382a) - permission module[WTEL-3392](https://webitel.atlassian.net/browse/WTEL-3392) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
114
186
|
|
|
115
187
|
## [v24.12.13] - 2024-12-03
|
|
188
|
+
|
|
116
189
|
### :bug: Bug Fixes
|
|
117
|
-
- [`75bd888`](https://github.com/webitel/webitel-ui-sdk/commit/75bd888be9e2dbf9966fb1301766fb79e611781a) - conflict[WTEL-4883](https://webitel.atlassian.net/browse/WTEL-4883) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
118
|
-
- [`22905da`](https://github.com/webitel/webitel-ui-sdk/commit/22905dad808ba29286c4e8d844d514c5414d3e23) - update package.json version[WTEL-4883](https://webitel.atlassian.net/browse/WTEL-4883) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
119
|
-
- [`8f1ef4c`](https://github.com/webitel/webitel-ui-sdk/commit/8f1ef4c27a81a23c835549bbb7e60de5a7325644) - conflict[WTEL-4883](https://webitel.atlassian.net/browse/WTEL-4883) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
120
|
-
- [`dbac3aa`](https://github.com/webitel/webitel-ui-sdk/commit/dbac3aa98806754573ce233e85140641b2f046b7) - delete actions prop in wt-action-bar[WTEL-4883](https://webitel.atlassian.net/browse/WTEL-4883) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
121
190
|
|
|
191
|
+
- [`75bd888`](https://github.com/webitel/webitel-ui-sdk/commit/75bd888be9e2dbf9966fb1301766fb79e611781a) - conflict[WTEL-4883](https://webitel.atlassian.net/browse/WTEL-4883) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
192
|
+
- [`22905da`](https://github.com/webitel/webitel-ui-sdk/commit/22905dad808ba29286c4e8d844d514c5414d3e23) - update package.json version[WTEL-4883](https://webitel.atlassian.net/browse/WTEL-4883) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
193
|
+
- [`8f1ef4c`](https://github.com/webitel/webitel-ui-sdk/commit/8f1ef4c27a81a23c835549bbb7e60de5a7325644) - conflict[WTEL-4883](https://webitel.atlassian.net/browse/WTEL-4883) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
194
|
+
- [`dbac3aa`](https://github.com/webitel/webitel-ui-sdk/commit/dbac3aa98806754573ce233e85140641b2f046b7) - delete actions prop in wt-action-bar[WTEL-4883](https://webitel.atlassian.net/browse/WTEL-4883) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
122
195
|
|
|
123
196
|
## [v24.12.12] - 2024-11-29
|
|
197
|
+
|
|
124
198
|
### :bug: Bug Fixes
|
|
125
|
-
- [`967e35f`](https://github.com/webitel/webitel-ui-sdk/commit/967e35fd9dc274ee0e388d7f375fe9c2859a38cc) - returned next value from agent chats api [WTEL-5503](https://webitel.atlassian.net/browse/WTEL-5503) *(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))*
|
|
126
199
|
|
|
200
|
+
- [`967e35f`](https://github.com/webitel/webitel-ui-sdk/commit/967e35fd9dc274ee0e388d7f375fe9c2859a38cc) - returned next value from agent chats api [WTEL-5503](https://webitel.atlassian.net/browse/WTEL-5503) _(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))_
|
|
127
201
|
|
|
128
202
|
## [v24.12.11] - 2024-11-28
|
|
203
|
+
|
|
129
204
|
### :sparkles: New Features
|
|
130
|
-
- [`32c7669`](https://github.com/webitel/webitel-ui-sdk/commit/32c7669136e4d0fef396e092ac2700b0fe672a95) - add contact groups page[WTEL-4740](https://webitel.atlassian.net/browse/WTEL-4740) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
131
205
|
|
|
206
|
+
- [`32c7669`](https://github.com/webitel/webitel-ui-sdk/commit/32c7669136e4d0fef396e092ac2700b0fe672a95) - add contact groups page[WTEL-4740](https://webitel.atlassian.net/browse/WTEL-4740) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
132
207
|
|
|
133
208
|
## [v24.12.10] - 2024-11-27
|
|
209
|
+
|
|
134
210
|
### :sparkles: New Features
|
|
135
|
-
- [`972c6cd`](https://github.com/webitel/webitel-ui-sdk/commit/972c6cda702008cbd2629ea82c688ff463b2685d) - add sources page[WTEL-4754](https://webitel.atlassian.net/browse/WTEL-4754) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
136
211
|
|
|
212
|
+
- [`972c6cd`](https://github.com/webitel/webitel-ui-sdk/commit/972c6cda702008cbd2629ea82c688ff463b2685d) - add sources page[WTEL-4754](https://webitel.atlassian.net/browse/WTEL-4754) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
137
213
|
|
|
138
214
|
## [v24.12.9] - 2024-11-27
|
|
215
|
+
|
|
139
216
|
### :sparkles: New Features
|
|
140
|
-
- [`333f3b8`](https://github.com/webitel/webitel-ui-sdk/commit/333f3b8ee8d364a8148884f71c54946ab2c28524) - add calendar locale[WTEL-4883](https://webitel.atlassian.net/browse/WTEL-4883) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
141
217
|
|
|
218
|
+
- [`333f3b8`](https://github.com/webitel/webitel-ui-sdk/commit/333f3b8ee8d364a8148884f71c54946ab2c28524) - add calendar locale[WTEL-4883](https://webitel.atlassian.net/browse/WTEL-4883) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
142
219
|
|
|
143
220
|
## [v24.12.8] - 2024-11-26
|
|
221
|
+
|
|
144
222
|
### :bug: Bug Fixes
|
|
145
|
-
- [`024a2bb`](https://github.com/webitel/webitel-ui-sdk/commit/024a2bb5d786c06833c370dcd90dee8a556365d3) - datepicker version [WTEL-5596](https://webitel.atlassian.net/browse/WTEL-5596) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
146
223
|
|
|
224
|
+
- [`024a2bb`](https://github.com/webitel/webitel-ui-sdk/commit/024a2bb5d786c06833c370dcd90dee8a556365d3) - datepicker version [WTEL-5596](https://webitel.atlassian.net/browse/WTEL-5596) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
147
225
|
|
|
148
226
|
## [v24.12.7] - 2024-11-26
|
|
227
|
+
|
|
149
228
|
### :bug: Bug Fixes
|
|
150
|
-
- [`510db8d`](https://github.com/webitel/webitel-ui-sdk/commit/510db8dcc0a86da3608312ff305ab3ec36feade3) - small refactor useTableEmpty component[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
151
|
-
- [`cc2cfb3`](https://github.com/webitel/webitel-ui-sdk/commit/cc2cfb344fc469d5295d30909b0666f9fa259309) - checker biome breaks build *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
152
|
-
- [`67574b7`](https://github.com/webitel/webitel-ui-sdk/commit/67574b79c6a65e9272ade2430b143c249e2a42e4) - typescript declarations *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
153
229
|
|
|
230
|
+
- [`510db8d`](https://github.com/webitel/webitel-ui-sdk/commit/510db8dcc0a86da3608312ff305ab3ec36feade3) - small refactor useTableEmpty component[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
231
|
+
- [`cc2cfb3`](https://github.com/webitel/webitel-ui-sdk/commit/cc2cfb344fc469d5295d30909b0666f9fa259309) - checker biome breaks build _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
232
|
+
- [`67574b7`](https://github.com/webitel/webitel-ui-sdk/commit/67574b79c6a65e9272ade2430b143c249e2a42e4) - typescript declarations _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
154
233
|
|
|
155
234
|
## [v24.12.6] - 2024-11-23
|
|
235
|
+
|
|
156
236
|
### :sparkles: New Features
|
|
157
|
-
|
|
237
|
+
|
|
238
|
+
- [`b284960`](https://github.com/webitel/webitel-ui-sdk/commit/b28496024428f1b3f5010df2ff4539331cec61af) - typescript support _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
158
239
|
|
|
159
240
|
### :recycle: Refactors
|
|
160
|
-
- [`2e03a0e`](https://github.com/webitel/webitel-ui-sdk/commit/2e03a0eb4ee21acda8a6f9ba3fcb378f5689cb67) - tsc! *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
161
241
|
|
|
242
|
+
- [`2e03a0e`](https://github.com/webitel/webitel-ui-sdk/commit/2e03a0eb4ee21acda8a6f9ba3fcb378f5689cb67) - tsc! _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
162
243
|
|
|
163
244
|
## [v24.12.5] - 2024-11-22
|
|
245
|
+
|
|
164
246
|
### :bug: Bug Fixes
|
|
165
|
-
- [`ccb6d0d`](https://github.com/webitel/webitel-ui-sdk/commit/ccb6d0d0f8c48c8127f0868ed9ff49e61fd6f0c9) - filter-from-to.vue set null at falsy input value [WTEL-5576](https://webitel.atlassian.net/browse/WTEL-5576) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
166
247
|
|
|
248
|
+
- [`ccb6d0d`](https://github.com/webitel/webitel-ui-sdk/commit/ccb6d0d0f8c48c8127f0868ed9ff49e61fd6f0c9) - filter-from-to.vue set null at falsy input value [WTEL-5576](https://webitel.atlassian.net/browse/WTEL-5576) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
167
249
|
|
|
168
250
|
## [v24.12.4] - 2024-11-22
|
|
251
|
+
|
|
169
252
|
### :bug: Bug Fixes
|
|
170
|
-
- [`1daec47`](https://github.com/webitel/webitel-ui-sdk/commit/1daec473121791c6e35b8e794a2528ee9e65eacf) - catalog client chat history [WTEL-5515](https://webitel.atlassian.net/browse/WTEL-5515) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
171
253
|
|
|
254
|
+
- [`1daec47`](https://github.com/webitel/webitel-ui-sdk/commit/1daec473121791c6e35b8e794a2528ee9e65eacf) - catalog client chat history [WTEL-5515](https://webitel.atlassian.net/browse/WTEL-5515) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
172
255
|
|
|
173
256
|
## [v24.12.3] - 2024-11-21
|
|
257
|
+
|
|
174
258
|
### :bug: Bug Fixes
|
|
175
|
-
- [`7082c36`](https://github.com/webitel/webitel-ui-sdk/commit/7082c36e16ecb4f195fec4bc58da6de1263571a2) - value in useCardTabs and useValidate composables[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
176
259
|
|
|
260
|
+
- [`7082c36`](https://github.com/webitel/webitel-ui-sdk/commit/7082c36e16ecb4f195fec4bc58da6de1263571a2) - value in useCardTabs and useValidate composables[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
177
261
|
|
|
178
262
|
## [v24.12.2] - 2024-11-21
|
|
263
|
+
|
|
179
264
|
### :sparkles: New Features
|
|
180
|
-
|
|
265
|
+
|
|
266
|
+
- [`5477157`](https://github.com/webitel/webitel-ui-sdk/commit/5477157b4c1956c11a0c89e3f2b1354f829a3590) - add convertDurationWithMinutes[WTEL-4883](https://webitel.atlassian.net/browse/WTEL-4883) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
181
267
|
|
|
182
268
|
### :recycle: Refactors
|
|
183
|
-
- [`d95500e`](https://github.com/webitel/webitel-ui-sdk/commit/d95500e5011e122a38e5dec90198960958ebcc0e) - deprecated :deep() selector usages [WTEL-5568](https://webitel.atlassian.net/browse/WTEL-5568) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
184
|
-
- [`545437b`](https://github.com/webitel/webitel-ui-sdk/commit/545437b016e51a785ae6e8688753d746af3e7120) - upd packages [WTEL-5568](https://webitel.atlassian.net/browse/WTEL-5568) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
185
269
|
|
|
270
|
+
- [`d95500e`](https://github.com/webitel/webitel-ui-sdk/commit/d95500e5011e122a38e5dec90198960958ebcc0e) - deprecated :deep() selector usages [WTEL-5568](https://webitel.atlassian.net/browse/WTEL-5568) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
271
|
+
- [`545437b`](https://github.com/webitel/webitel-ui-sdk/commit/545437b016e51a785ae6e8688753d746af3e7120) - upd packages [WTEL-5568](https://webitel.atlassian.net/browse/WTEL-5568) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
186
272
|
|
|
187
273
|
## [v24.12.1] - 2024-11-20
|
|
274
|
+
|
|
188
275
|
### :sparkles: New Features
|
|
189
|
-
- [`6c6cca7`](https://github.com/webitel/webitel-ui-sdk/commit/6c6cca7e9c64d49c9dd1058bbe8a7c4cdca10352) - add locale and default img in useTableEmpty[WTEL-5284](https://webitel.atlassian.net/browse/WTEL-5284) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
190
276
|
|
|
277
|
+
- [`6c6cca7`](https://github.com/webitel/webitel-ui-sdk/commit/6c6cca7e9c64d49c9dd1058bbe8a7c4cdca10352) - add locale and default img in useTableEmpty[WTEL-5284](https://webitel.atlassian.net/browse/WTEL-5284) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
191
278
|
|
|
192
279
|
## [v24.12.0] - 2024-11-20
|
|
280
|
+
|
|
193
281
|
### :sparkles: New Features
|
|
194
|
-
- [`281778c`](https://github.com/webitel/webitel-ui-sdk/commit/281778c1fda716f307fc1febe304ff0b5744d5f8) - Update package version to 24.12.0
|
|
195
282
|
|
|
283
|
+
- [`281778c`](https://github.com/webitel/webitel-ui-sdk/commit/281778c1fda716f307fc1febe304ff0b5744d5f8) - Update package version to 24.12.0
|
|
196
284
|
|
|
197
285
|
## [v24.10.88] - 2024-11-20
|
|
286
|
+
|
|
198
287
|
### :bug: Bug Fixes
|
|
199
|
-
- [`cf746a0`](https://github.com/webitel/webitel-ui-sdk/commit/cf746a0173603767adbeffea4e970fd790aea782) - return wfm pages in release 24.10 *(commit by [@Lera24](https://github.com/Lera24))*
|
|
200
288
|
|
|
289
|
+
- [`cf746a0`](https://github.com/webitel/webitel-ui-sdk/commit/cf746a0173603767adbeffea4e970fd790aea782) - return wfm pages in release 24.10 _(commit by [@Lera24](https://github.com/Lera24))_
|
|
201
290
|
|
|
202
291
|
## [v24.10.87] - 2024-11-19
|
|
292
|
+
|
|
203
293
|
### :bug: Bug Fixes
|
|
204
|
-
- [`12df75b`](https://github.com/webitel/webitel-ui-sdk/commit/12df75b9427d3c75804993671835c2ffadbc0fbd) - hiding wfm pages before release *(commit by [@Lera24](https://github.com/Lera24))*
|
|
205
294
|
|
|
295
|
+
- [`12df75b`](https://github.com/webitel/webitel-ui-sdk/commit/12df75b9427d3c75804993671835c2ffadbc0fbd) - hiding wfm pages before release _(commit by [@Lera24](https://github.com/Lera24))_
|
|
206
296
|
|
|
207
297
|
## [v24.10.86] - 2024-11-19
|
|
298
|
+
|
|
208
299
|
### :sparkles: New Features
|
|
209
|
-
- [`f75077a`](https://github.com/webitel/webitel-ui-sdk/commit/f75077a83057cb8c337aec8fa02b9ead08e05865) - styles for opened-card-tabs added [WTEL-5512] (https://webitel.atlassian.net/browse/WTEL-5512) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
210
300
|
|
|
301
|
+
- [`f75077a`](https://github.com/webitel/webitel-ui-sdk/commit/f75077a83057cb8c337aec8fa02b9ead08e05865) - styles for opened-card-tabs added [WTEL-5512] (https://webitel.atlassian.net/browse/WTEL-5512) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
211
302
|
|
|
212
303
|
## [v24.10.84] - 2024-11-19
|
|
304
|
+
|
|
213
305
|
### :bug: Bug Fixes
|
|
214
|
-
- [`062e676`](https://github.com/webitel/webitel-ui-sdk/commit/062e6764e47c42c7a3de4ec6e3c39ad9632536f7) - update color for --primary-light-color variable in light and dark theme [WTEL-5557](https://webitel.atlassian.net/browse/WTEL-5557)
|
|
215
306
|
|
|
307
|
+
- [`062e676`](https://github.com/webitel/webitel-ui-sdk/commit/062e6764e47c42c7a3de4ec6e3c39ad9632536f7) - update color for --primary-light-color variable in light and dark theme [WTEL-5557](https://webitel.atlassian.net/browse/WTEL-5557)
|
|
216
308
|
|
|
217
309
|
## [v24.10.83] - 2024-11-18
|
|
310
|
+
|
|
218
311
|
### :bug: Bug Fixes
|
|
219
|
-
- [`e89907d`](https://github.com/webitel/webitel-ui-sdk/commit/e89907d8b732630b534dcf72208202bf5851b417) - sortFilterMixin.js restore sort [WTEL-5520](https://webitel.atlassian.net/browse/WTEL-5520) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
220
312
|
|
|
313
|
+
- [`e89907d`](https://github.com/webitel/webitel-ui-sdk/commit/e89907d8b732630b534dcf72208202bf5851b417) - sortFilterMixin.js restore sort [WTEL-5520](https://webitel.atlassian.net/browse/WTEL-5520) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
221
314
|
|
|
222
315
|
## [v24.10.82] - 2024-11-18
|
|
316
|
+
|
|
223
317
|
### :sparkles: New Features
|
|
224
|
-
|
|
225
|
-
- [`
|
|
318
|
+
|
|
319
|
+
- [`67d4d6f`](https://github.com/webitel/webitel-ui-sdk/commit/67d4d6f7ff9bd575e8dce97693a75472ca8ca4c5) - new components wt-collapse-action and wt-page-wrapper-dual-pane added [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
320
|
+
- [`2ec2fe9`](https://github.com/webitel/webitel-ui-sdk/commit/2ec2fe9b122da685c35f1a0e7bb2f9c6c2feb554) - wt-page-wrapper-dual-pane component added [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
226
321
|
|
|
227
322
|
### :recycle: Refactors
|
|
228
|
-
- [`a0c150c`](https://github.com/webitel/webitel-ui-sdk/commit/a0c150c80e8cd6c6c8a82f586fb8813d59efb7b6) - rm .reverse() from chat messages-related client api's [WTEL-5544](https://webitel.atlassian.net/browse/WTEL-5544) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
229
|
-
- [`80b5b0a`](https://github.com/webitel/webitel-ui-sdk/commit/80b5b0a8925e348ade1ee0485497dceab9956aa3) - actionsSticky deleted from wt-table [WTEL-5506] (https://webitel.atlassian.net/browse/WTEL-5506) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
230
|
-
- [`bc00cda`](https://github.com/webitel/webitel-ui-sdk/commit/bc00cda63ef4425f68f9db9a1bcc9d740945a30c) - merge with master [WTEL-5506] (https://webitel.atlassian.net/browse/WTEL-5506) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
231
|
-
- [`e42c89d`](https://github.com/webitel/webitel-ui-sdk/commit/e42c89d4d71672be34bd957a36a184eb0f01c1ef) - refactor due to code review [WTEL-5506] (https://webitel.atlassian.net/browse/WTEL-5506) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
232
|
-
- [`8cca843`](https://github.com/webitel/webitel-ui-sdk/commit/8cca84309e02bb3a36df301ef9108741baa3c47c) - refactor due to code review [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
233
|
-
- [`9b7e90f`](https://github.com/webitel/webitel-ui-sdk/commit/9b7e90f4fa853c3d376af75d5c2ac4665d01df83) - actions sticky props added to wt-table [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
234
|
-
- [`3c770dc`](https://github.com/webitel/webitel-ui-sdk/commit/3c770dce0bfd7bad97abde69a94211ffcb53da13) - refactor due to code review [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
235
|
-
- [`99b7a5d`](https://github.com/webitel/webitel-ui-sdk/commit/99b7a5d28e3b5d8f8f464ca733819a06bbc1a608) - refactor due to code review [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
236
|
-
- [`55899e2`](https://github.com/webitel/webitel-ui-sdk/commit/55899e2cb3f1edc16a3956995505bd939497a777) - scroll added for dual panel [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
237
|
-
- [`5093fcd`](https://github.com/webitel/webitel-ui-sdk/commit/5093fcd76fabb46154dad4c6bbd9b13fb11ecdcf) - version increment [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
238
|
-
- [`2cc14a7`](https://github.com/webitel/webitel-ui-sdk/commit/2cc14a7055b99692f3ff20dc44c07c8b6fa6b615) - merge with master [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
239
|
-
- [`7fbda82`](https://github.com/webitel/webitel-ui-sdk/commit/7fbda827bfd2bde7969a73a4da5cf1dc64f40b05) - dual-panel component naming changed [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
240
|
-
- [`e2dcbd3`](https://github.com/webitel/webitel-ui-sdk/commit/e2dcbd3b8abad6f125bea86447f8591c4cf1f7e6) - package.json rollback [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
241
|
-
- [`762d1de`](https://github.com/webitel/webitel-ui-sdk/commit/762d1de466d16111fd81990bdb74b12750e03387) - tests for WtCollapseAction added [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
242
|
-
- [`cd3a9a4`](https://github.com/webitel/webitel-ui-sdk/commit/cd3a9a4d477395801de7b4f7f8f0aad5eacb068a) - version incremented [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
243
323
|
|
|
324
|
+
- [`a0c150c`](https://github.com/webitel/webitel-ui-sdk/commit/a0c150c80e8cd6c6c8a82f586fb8813d59efb7b6) - rm .reverse() from chat messages-related client api's [WTEL-5544](https://webitel.atlassian.net/browse/WTEL-5544) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
325
|
+
- [`80b5b0a`](https://github.com/webitel/webitel-ui-sdk/commit/80b5b0a8925e348ade1ee0485497dceab9956aa3) - actionsSticky deleted from wt-table [WTEL-5506] (https://webitel.atlassian.net/browse/WTEL-5506) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
326
|
+
- [`bc00cda`](https://github.com/webitel/webitel-ui-sdk/commit/bc00cda63ef4425f68f9db9a1bcc9d740945a30c) - merge with master [WTEL-5506] (https://webitel.atlassian.net/browse/WTEL-5506) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
327
|
+
- [`e42c89d`](https://github.com/webitel/webitel-ui-sdk/commit/e42c89d4d71672be34bd957a36a184eb0f01c1ef) - refactor due to code review [WTEL-5506] (https://webitel.atlassian.net/browse/WTEL-5506) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
328
|
+
- [`8cca843`](https://github.com/webitel/webitel-ui-sdk/commit/8cca84309e02bb3a36df301ef9108741baa3c47c) - refactor due to code review [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
329
|
+
- [`9b7e90f`](https://github.com/webitel/webitel-ui-sdk/commit/9b7e90f4fa853c3d376af75d5c2ac4665d01df83) - actions sticky props added to wt-table [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
330
|
+
- [`3c770dc`](https://github.com/webitel/webitel-ui-sdk/commit/3c770dce0bfd7bad97abde69a94211ffcb53da13) - refactor due to code review [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
331
|
+
- [`99b7a5d`](https://github.com/webitel/webitel-ui-sdk/commit/99b7a5d28e3b5d8f8f464ca733819a06bbc1a608) - refactor due to code review [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
332
|
+
- [`55899e2`](https://github.com/webitel/webitel-ui-sdk/commit/55899e2cb3f1edc16a3956995505bd939497a777) - scroll added for dual panel [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
333
|
+
- [`5093fcd`](https://github.com/webitel/webitel-ui-sdk/commit/5093fcd76fabb46154dad4c6bbd9b13fb11ecdcf) - version increment [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
334
|
+
- [`2cc14a7`](https://github.com/webitel/webitel-ui-sdk/commit/2cc14a7055b99692f3ff20dc44c07c8b6fa6b615) - merge with master [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
335
|
+
- [`7fbda82`](https://github.com/webitel/webitel-ui-sdk/commit/7fbda827bfd2bde7969a73a4da5cf1dc64f40b05) - dual-panel component naming changed [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
336
|
+
- [`e2dcbd3`](https://github.com/webitel/webitel-ui-sdk/commit/e2dcbd3b8abad6f125bea86447f8591c4cf1f7e6) - package.json rollback [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
337
|
+
- [`762d1de`](https://github.com/webitel/webitel-ui-sdk/commit/762d1de466d16111fd81990bdb74b12750e03387) - tests for WtCollapseAction added [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
338
|
+
- [`cd3a9a4`](https://github.com/webitel/webitel-ui-sdk/commit/cd3a9a4d477395801de7b4f7f8f0aad5eacb068a) - version incremented [WTEL-5485] (https://webitel.atlassian.net/browse/WTEL-5485) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
244
339
|
|
|
245
340
|
## [v24.10.81] - 2024-11-17
|
|
341
|
+
|
|
246
342
|
### :bug: Bug Fixes
|
|
247
|
-
- [`9113858`](https://github.com/webitel/webitel-ui-sdk/commit/9113858c25979cf03f0f619a33d6f5b1090848bd) - fixed contacts client empty result [WTEL-5537](https://webitel.atlassian.net/browse/WTEL-5537) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
248
|
-
- [`261a0e3`](https://github.com/webitel/webitel-ui-sdk/commit/261a0e3e77c8f3063f2d1a9eae048117d3e1d379) - error in useCardComponent[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
249
343
|
|
|
344
|
+
- [`9113858`](https://github.com/webitel/webitel-ui-sdk/commit/9113858c25979cf03f0f619a33d6f5b1090848bd) - fixed contacts client empty result [WTEL-5537](https://webitel.atlassian.net/browse/WTEL-5537) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
345
|
+
- [`261a0e3`](https://github.com/webitel/webitel-ui-sdk/commit/261a0e3e77c8f3063f2d1a9eae048117d3e1d379) - error in useCardComponent[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
250
346
|
|
|
251
347
|
## [v24.10.80] - 2024-11-15
|
|
348
|
+
|
|
252
349
|
### :sparkles: New Features
|
|
253
|
-
|
|
350
|
+
|
|
351
|
+
- [`add6f93`](https://github.com/webitel/webitel-ui-sdk/commit/add6f9397de8664e1db6328318633edf79dc6ca4) - add desabled prop in wt-action-bar[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
254
352
|
|
|
255
353
|
### :bug: Bug Fixes
|
|
256
|
-
- [`6265f77`](https://github.com/webitel/webitel-ui-sdk/commit/6265f77d3ba419e28b4ebf67255d87d27399afb2) - package.json version[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
257
|
-
- [`a592314`](https://github.com/webitel/webitel-ui-sdk/commit/a59231463ad31f54109282c0508c642f8afbc4dc) - doc for wt-action-bar[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
258
354
|
|
|
355
|
+
- [`6265f77`](https://github.com/webitel/webitel-ui-sdk/commit/6265f77d3ba419e28b4ebf67255d87d27399afb2) - package.json version[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
356
|
+
- [`a592314`](https://github.com/webitel/webitel-ui-sdk/commit/a59231463ad31f54109282c0508c642f8afbc4dc) - doc for wt-action-bar[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
259
357
|
|
|
260
358
|
## [v24.10.79] - 2024-11-15
|
|
359
|
+
|
|
261
360
|
### :bug: Bug Fixes
|
|
262
|
-
- [`7a214f6`](https://github.com/webitel/webitel-ui-sdk/commit/7a214f6d3973180ab62dcc960808d6bea3ea3284) - version in package.json[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
263
|
-
- [`74ee12f`](https://github.com/webitel/webitel-ui-sdk/commit/74ee12f4418fa98e37a3ec9cc2c73ab9308b6481) - display isNew param in useCardComponent[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
264
361
|
|
|
362
|
+
- [`7a214f6`](https://github.com/webitel/webitel-ui-sdk/commit/7a214f6d3973180ab62dcc960808d6bea3ea3284) - version in package.json[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
363
|
+
- [`74ee12f`](https://github.com/webitel/webitel-ui-sdk/commit/74ee12f4418fa98e37a3ec9cc2c73ab9308b6481) - display isNew param in useCardComponent[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
265
364
|
|
|
266
365
|
## [v24.10.78] - 2024-11-14
|
|
366
|
+
|
|
267
367
|
### :bug: Bug Fixes
|
|
268
|
-
- [`d3b9b92`](https://github.com/webitel/webitel-ui-sdk/commit/d3b9b927a63f6c06f0c8f817aa2e159db6696ec4) - implimented version [WTEL-5437](https://webitel.atlassian.net/browse/WTEL-5437) *(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))*
|
|
269
|
-
- [`211dff4`](https://github.com/webitel/webitel-ui-sdk/commit/211dff4a97e1203318982a460178c1de4d32d0a4) - bug with error in chat history api if message underfined [WTEL-5437](https://webitel.atlassian.net/browse/WTEL-5437) *(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))*
|
|
270
368
|
|
|
369
|
+
- [`d3b9b92`](https://github.com/webitel/webitel-ui-sdk/commit/d3b9b927a63f6c06f0c8f817aa2e159db6696ec4) - implimented version [WTEL-5437](https://webitel.atlassian.net/browse/WTEL-5437) _(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))_
|
|
370
|
+
- [`211dff4`](https://github.com/webitel/webitel-ui-sdk/commit/211dff4a97e1203318982a460178c1de4d32d0a4) - bug with error in chat history api if message underfined [WTEL-5437](https://webitel.atlassian.net/browse/WTEL-5437) _(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))_
|
|
271
371
|
|
|
272
372
|
## [v24.10.77] - 2024-11-13
|
|
373
|
+
|
|
273
374
|
### :bug: Bug Fixes
|
|
274
|
-
- [`0f67887`](https://github.com/webitel/webitel-ui-sdk/commit/0f67887cd5949e7edf943d79fa1eb0b99be0df15) - fix error with not throw emit from delete-confirmation-popup [WTEL-5522](https://webitel.atlassian.net/browse/WTEL-5522)
|
|
275
375
|
|
|
376
|
+
- [`0f67887`](https://github.com/webitel/webitel-ui-sdk/commit/0f67887cd5949e7edf943d79fa1eb0b99be0df15) - fix error with not throw emit from delete-confirmation-popup [WTEL-5522](https://webitel.atlassian.net/browse/WTEL-5522)
|
|
276
377
|
|
|
277
378
|
## [v24.10.76] - 2024-11-13
|
|
379
|
+
|
|
278
380
|
### :sparkles: New Features
|
|
279
|
-
|
|
381
|
+
|
|
382
|
+
- [`c73fefb`](https://github.com/webitel/webitel-ui-sdk/commit/c73fefbd50cd6bd981a49d83700ad7256fd2cdf3) - add composables in docs[WTEL-5282] _(commit by [@Lera24](https://github.com/Lera24))_
|
|
280
383
|
|
|
281
384
|
### :bug: Bug Fixes
|
|
282
|
-
- [`f1d9ff6`](https://github.com/webitel/webitel-ui-sdk/commit/f1d9ff6812e826a75eba7dc530038901f1e48f7f) - queryfilters module sort filters set/reset [WTEL-5520](https://webitel.atlassian.net/browse/WTEL-5520) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
283
|
-
- [`99b7026`](https://github.com/webitel/webitel-ui-sdk/commit/99b7026d48f41dce49401a1d0a16d70b77c6b553) - style code in composables docs[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
284
|
-
- [`49a0c72`](https://github.com/webitel/webitel-ui-sdk/commit/49a0c72898e733fb8941e33cc92c19a20079cb2a) - docs after code review[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
285
385
|
|
|
386
|
+
- [`f1d9ff6`](https://github.com/webitel/webitel-ui-sdk/commit/f1d9ff6812e826a75eba7dc530038901f1e48f7f) - queryfilters module sort filters set/reset [WTEL-5520](https://webitel.atlassian.net/browse/WTEL-5520) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
387
|
+
- [`99b7026`](https://github.com/webitel/webitel-ui-sdk/commit/99b7026d48f41dce49401a1d0a16d70b77c6b553) - style code in composables docs[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
388
|
+
- [`49a0c72`](https://github.com/webitel/webitel-ui-sdk/commit/49a0c72898e733fb8941e33cc92c19a20079cb2a) - docs after code review[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
286
389
|
|
|
287
390
|
## [v24.10.75] - 2024-11-13
|
|
391
|
+
|
|
288
392
|
### :bug: Bug Fixes
|
|
289
|
-
|
|
393
|
+
|
|
394
|
+
- [`66327ee`](https://github.com/webitel/webitel-ui-sdk/commit/66327ee37bc3e08ac5837483a15aa2e3e5ab1cc9) - locale in useCardComponent composable[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
290
395
|
|
|
291
396
|
### :memo: Documentation Changes
|
|
292
|
-
- [`f43310f`](https://github.com/webitel/webitel-ui-sdk/commit/f43310f82a001035704109b487342223ce0ff479) - manual testing proposals docs [WTEL-5501](https://webitel.atlassian.net/browse/WTEL-5501) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
293
397
|
|
|
398
|
+
- [`f43310f`](https://github.com/webitel/webitel-ui-sdk/commit/f43310f82a001035704109b487342223ce0ff479) - manual testing proposals docs [WTEL-5501](https://webitel.atlassian.net/browse/WTEL-5501) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
294
399
|
|
|
295
400
|
## [v24.10.74] - 2024-11-13
|
|
401
|
+
|
|
296
402
|
### :bug: Bug Fixes
|
|
297
|
-
|
|
298
|
-
- [`
|
|
403
|
+
|
|
404
|
+
- [`a5ee794`](https://github.com/webitel/webitel-ui-sdk/commit/a5ee79439ddd1f88512b3666a9a66a3c19b26f9f) - conflict and change lib version and rename props in wt-navigation-menu and wt-start-page[WTEL-4710](https://webitel.atlassian.net/browse/WTEL-4710) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
405
|
+
- [`bac8466`](https://github.com/webitel/webitel-ui-sdk/commit/bac8466080703da8d395e105e237df0b844dd9c6) - navigation-menu and start-page component after codereview(change docs, style, add new prop)[WTEL-4710](https://webitel.atlassian.net/browse/WTEL-4710) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
299
406
|
|
|
300
407
|
### :recycle: Refactors
|
|
301
|
-
- [`7b48cb6`](https://github.com/webitel/webitel-ui-sdk/commit/7b48cb6ac851deb4786d9618c2e26a62c45a88d1) - navigation menu - change styles,layout,documentation [WTEL-4710](https://webitel.atlassian.net/browse/WTEL-4710) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
302
408
|
|
|
409
|
+
- [`7b48cb6`](https://github.com/webitel/webitel-ui-sdk/commit/7b48cb6ac851deb4786d9618c2e26a62c45a88d1) - navigation menu - change styles,layout,documentation [WTEL-4710](https://webitel.atlassian.net/browse/WTEL-4710) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
303
410
|
|
|
304
411
|
## [v24.10.73] - 2024-11-12
|
|
412
|
+
|
|
305
413
|
### :bug: Bug Fixes
|
|
306
|
-
- [`5746c8c`](https://github.com/webitel/webitel-ui-sdk/commit/5746c8ca063af834eb36f20afd1ba21ac03da7e2) - caseConverters.js scripts import fix [WTEL-5516](https://webitel.atlassian.net/browse/WTEL-5516) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
307
414
|
|
|
415
|
+
- [`5746c8c`](https://github.com/webitel/webitel-ui-sdk/commit/5746c8ca063af834eb36f20afd1ba21ac03da7e2) - caseConverters.js scripts import fix [WTEL-5516](https://webitel.atlassian.net/browse/WTEL-5516) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
308
416
|
|
|
309
417
|
## [v24.10.72] - 2024-11-12
|
|
418
|
+
|
|
310
419
|
### :sparkles: New Features
|
|
311
|
-
- [`a1eb8be`](https://github.com/webitel/webitel-ui-sdk/commit/a1eb8bebdff83061e3ef81fe55166108efd8e44b) - FilesExport.js skipFilesWithError config added [WTEL-5173](https://webitel.atlassian.net/browse/WTEL-5173) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
312
420
|
|
|
421
|
+
- [`a1eb8be`](https://github.com/webitel/webitel-ui-sdk/commit/a1eb8bebdff83061e3ef81fe55166108efd8e44b) - FilesExport.js skipFilesWithError config added [WTEL-5173](https://webitel.atlassian.net/browse/WTEL-5173) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
313
422
|
|
|
314
423
|
## [v24.10.71] - 2024-11-12
|
|
424
|
+
|
|
315
425
|
### :sparkles: New Features
|
|
426
|
+
|
|
316
427
|
- [`d0bcba0`](https://github.com/webitel/webitel-ui-sdk/commit/d0bcba0b49949566e9487da167b6557f76218585) - Update version [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
317
428
|
- [`e09911a`](https://github.com/webitel/webitel-ui-sdk/commit/e09911a2ddfdf5479c8c1eeac102d9f8bba78c2e) - Update usage confirm dialog. Implement callback function [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
318
429
|
- [`323aa43`](https://github.com/webitel/webitel-ui-sdk/commit/323aa4392fb59d15d9f16e8d5b75a5f2724d9ea8) - Remove docs and use specs for wt-confirm-dialog [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
@@ -321,46 +432,55 @@
|
|
|
321
432
|
- [`ac269ce`](https://github.com/webitel/webitel-ui-sdk/commit/ac269ce83b1f7f2d95afeae7b5edb4a911722753) - Implement wt-confirm-dialog component. Update delete-confirmation-popup module [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
322
433
|
|
|
323
434
|
### :bug: Bug Fixes
|
|
324
|
-
- [`fc8b838`](https://github.com/webitel/webitel-ui-sdk/commit/fc8b838984b68f4d8b198394f7b8c567da3d3e56) - implement fix for delete-confirmation-popup [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
325
435
|
|
|
436
|
+
- [`fc8b838`](https://github.com/webitel/webitel-ui-sdk/commit/fc8b838984b68f4d8b198394f7b8c567da3d3e56) - implement fix for delete-confirmation-popup [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
326
437
|
|
|
327
438
|
## [v24.10.69] - 2024-11-11
|
|
439
|
+
|
|
328
440
|
### :recycle: Refactors
|
|
329
|
-
- [`f9f6155`](https://github.com/webitel/webitel-ui-sdk/commit/f9f615521aadf07c279f40f0bf937ec0c33439d5) - simplified plyr icons SO MUCH! (upd webitel-ui) [WTEL-5475](https://webitel.atlassian.net/browse/WTEL-5475) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
330
441
|
|
|
442
|
+
- [`f9f6155`](https://github.com/webitel/webitel-ui-sdk/commit/f9f615521aadf07c279f40f0bf937ec0c33439d5) - simplified plyr icons SO MUCH! (upd webitel-ui) [WTEL-5475](https://webitel.atlassian.net/browse/WTEL-5475) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
331
443
|
|
|
332
444
|
## [v24.10.67] - 2024-11-11
|
|
445
|
+
|
|
333
446
|
### :bug: Bug Fixes
|
|
334
|
-
|
|
447
|
+
|
|
448
|
+
- [`7d1172d`](https://github.com/webitel/webitel-ui-sdk/commit/7d1172d89e3e42fc86c47614d04ab99e1bba68e3) - wt-button-select.vue arrow [WTEL-5475](https://webitel.atlassian.net/browse/WTEL-5425) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
335
449
|
|
|
336
450
|
### :memo: Documentation Changes
|
|
337
|
-
- [`1cd2628`](https://github.com/webitel/webitel-ui-sdk/commit/1cd2628f2e6ea23e75c132cb9589ac53f2fa8688) - logger.js docs [WTEL-5425](https://webitel.atlassian.net/browse/WTEL-5425) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
338
451
|
|
|
452
|
+
- [`1cd2628`](https://github.com/webitel/webitel-ui-sdk/commit/1cd2628f2e6ea23e75c132cb9589ac53f2fa8688) - logger.js docs [WTEL-5425](https://webitel.atlassian.net/browse/WTEL-5425) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
339
453
|
|
|
340
454
|
## [v24.10.66] - 2024-11-11
|
|
455
|
+
|
|
341
456
|
### :sparkles: New Features
|
|
342
|
-
|
|
457
|
+
|
|
458
|
+
- [`2d00667`](https://github.com/webitel/webitel-ui-sdk/commit/2d006673df1befc50fbd506018046baef48934b6) - logger script [WTEL-5425](https://webitel.atlassian.net/browse/WTEL-5425) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
343
459
|
|
|
344
460
|
### :bug: Bug Fixes
|
|
345
|
-
- [`e589872`](https://github.com/webitel/webitel-ui-sdk/commit/e589872d3f28026ccede040021ef59f26f246320) - tests [WTEL-5425](https://webitel.atlassian.net/browse/WTEL-5425) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
346
|
-
- [`070a54e`](https://github.com/webitel/webitel-ui-sdk/commit/070a54e4baf5e1902a62c6518ba205e1dc1a53d9) - added @rollup/rollup-linux-x64-gnu dependency to fix tests run and build on github actions [WTEL-5425] *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
347
|
-
- [`50efdf8`](https://github.com/webitel/webitel-ui-sdk/commit/50efdf89521a5eb83ffa3a664d3e149d0bfedd2d) - docs build fix [WTEL-5425] *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
348
461
|
|
|
462
|
+
- [`e589872`](https://github.com/webitel/webitel-ui-sdk/commit/e589872d3f28026ccede040021ef59f26f246320) - tests [WTEL-5425](https://webitel.atlassian.net/browse/WTEL-5425) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
463
|
+
- [`070a54e`](https://github.com/webitel/webitel-ui-sdk/commit/070a54e4baf5e1902a62c6518ba205e1dc1a53d9) - added @rollup/rollup-linux-x64-gnu dependency to fix tests run and build on github actions [WTEL-5425] _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
464
|
+
- [`50efdf8`](https://github.com/webitel/webitel-ui-sdk/commit/50efdf89521a5eb83ffa3a664d3e149d0bfedd2d) - docs build fix [WTEL-5425] _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
349
465
|
|
|
350
466
|
## [v24.10.65] - 2024-11-11
|
|
467
|
+
|
|
351
468
|
### :bug: Bug Fixes
|
|
352
|
-
- [`f409687`](https://github.com/webitel/webitel-ui-sdk/commit/f40968736c808f37dbee27956faabf12318332ab) - exposed install.js script for applications docs [WTEL-5425] *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
353
469
|
|
|
470
|
+
- [`f409687`](https://github.com/webitel/webitel-ui-sdk/commit/f40968736c808f37dbee27956faabf12318332ab) - exposed install.js script for applications docs [WTEL-5425] _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
354
471
|
|
|
355
472
|
## [v24.10.64] - 2024-11-08
|
|
473
|
+
|
|
356
474
|
### :sparkles: New Features
|
|
357
|
-
|
|
475
|
+
|
|
476
|
+
- [`e599e2b`](https://github.com/webitel/webitel-ui-sdk/commit/e599e2babe86f75b5a6aa95db39b6cfcb993cddd) - node and npm engines restriction _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
358
477
|
|
|
359
478
|
### :bug: Bug Fixes
|
|
360
|
-
|
|
361
|
-
- [`
|
|
362
|
-
- [`
|
|
363
|
-
- [`
|
|
479
|
+
|
|
480
|
+
- [`01852a5`](https://github.com/webitel/webitel-ui-sdk/commit/01852a5a7481a4523ecc9d1646364d99a9ccc93f) - workflows node version _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
481
|
+
- [`bdc72a4`](https://github.com/webitel/webitel-ui-sdk/commit/bdc72a437b90572f94fb8ca6164f9c5bd3b486f4) - workflows node version _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
482
|
+
- [`294327b`](https://github.com/webitel/webitel-ui-sdk/commit/294327bf52e32de2f0675da97682dec0f8e2e351) - workflows node version _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
483
|
+
- [`0291fe0`](https://github.com/webitel/webitel-ui-sdk/commit/0291fe0759f45344fb21f01c9feefdce7bb8d98e) - workflows node version _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
364
484
|
- [`08e91c8`](https://github.com/webitel/webitel-ui-sdk/commit/08e91c82ac9c3e7c773f66e940fcdc2b4241e0d8) - Remove from docs taggable input with value.[WTEL-5463](https://webitel.atlassian.net/browse/WTEL-5463)
|
|
365
485
|
- [`37dfa1f`](https://github.com/webitel/webitel-ui-sdk/commit/37dfa1f0942e85a108c9deda06d0c248e52e27f4) - update initialize function for options. Remove from docs taggable input with value. Implement unit test [WTEL-5463](https://webitel.atlassian.net/browse/WTEL-5463)
|
|
366
486
|
- [`3aa1180`](https://github.com/webitel/webitel-ui-sdk/commit/3aa118028d21956fe14959d90948950165e69936) - implement method for set options from value with exist options without duplicate options [WTEL-5463](https://webitel.atlassian.net/browse/WTEL-5463)
|
|
@@ -368,84 +488,100 @@
|
|
|
368
488
|
- [`8760c50`](https://github.com/webitel/webitel-ui-sdk/commit/8760c503e13aab3b4819bba6341748a1d75b4bdc) - update package version [WTEL-5463](https://webitel.atlassian.net/browse/WTEL-5463)
|
|
369
489
|
- [`3739fac`](https://github.com/webitel/webitel-ui-sdk/commit/3739fac8833ad23d371ac5d168aaf18f5eef2647) - implement set options from value on multiselect component [WTEL-5463](https://webitel.atlassian.net/browse/WTEL-5463)
|
|
370
490
|
|
|
371
|
-
|
|
372
491
|
## [v24.10.63] - 2024-11-07
|
|
492
|
+
|
|
373
493
|
### :bug: Bug Fixes
|
|
374
|
-
- [`6f1531b`](https://github.com/webitel/webitel-ui-sdk/commit/6f1531b75f4d64cb6c7f74642fa8f05c484618bf) - props mode and add new props include/exclude[WTEL-5282] *(commit by [@Lera24](https://github.com/Lera24))*
|
|
375
494
|
|
|
495
|
+
- [`6f1531b`](https://github.com/webitel/webitel-ui-sdk/commit/6f1531b75f4d64cb6c7f74642fa8f05c484618bf) - props mode and add new props include/exclude[WTEL-5282] _(commit by [@Lera24](https://github.com/Lera24))_
|
|
376
496
|
|
|
377
497
|
## [v24.10.62] - 2024-11-07
|
|
498
|
+
|
|
378
499
|
### :sparkles: New Features
|
|
379
|
-
- [`d153ba8`](https://github.com/webitel/webitel-ui-sdk/commit/d153ba813e0d9b60050004dddbd172720aa5191d) - changed agent chat service in agent chat api [WTEL-5456](https://webitel.atlassian.net/browse/WTEL-5456) *(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))*
|
|
380
500
|
|
|
501
|
+
- [`d153ba8`](https://github.com/webitel/webitel-ui-sdk/commit/d153ba813e0d9b60050004dddbd172720aa5191d) - changed agent chat service in agent chat api [WTEL-5456](https://webitel.atlassian.net/browse/WTEL-5456) _(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))_
|
|
381
502
|
|
|
382
503
|
## [v24.10.61] - 2024-11-06
|
|
504
|
+
|
|
383
505
|
### :bug: Bug Fixes
|
|
384
|
-
- [`be1b3a2`](https://github.com/webitel/webitel-ui-sdk/commit/be1b3a25d6b6e6b3c0a5d3287556bc775d6bef8e) - fix import agent chat service
|
|
385
506
|
|
|
507
|
+
- [`be1b3a2`](https://github.com/webitel/webitel-ui-sdk/commit/be1b3a25d6b6e6b3c0a5d3287556bc775d6bef8e) - fix import agent chat service
|
|
386
508
|
|
|
387
509
|
## [v24.10.60] - 2024-11-06
|
|
510
|
+
|
|
388
511
|
### :sparkles: New Features
|
|
512
|
+
|
|
389
513
|
- [`1968f0c`](https://github.com/webitel/webitel-ui-sdk/commit/1968f0ca73eba9be929b31f50570553037245559) - update version [WTEL-5443](https://webitel.atlassian.net/browse/WTEL-5443)
|
|
390
514
|
- [`8bd5487`](https://github.com/webitel/webitel-ui-sdk/commit/8bd54879265262cfd1831e02f876a82be4da5075) - update save icon, implement save as icon [WTEL-5443](https://webitel.atlassian.net/browse/WTEL-5443)
|
|
391
515
|
|
|
392
|
-
|
|
393
516
|
## [v24.10.59] - 2024-11-05
|
|
517
|
+
|
|
394
518
|
### :recycle: Refactors
|
|
395
|
-
- [`2d14f6e`](https://github.com/webitel/webitel-ui-sdk/commit/2d14f6e0c8f3378aa535f4409ad64766f37f0131) - version increment [WTEL-5310] (https://webitel.atlassian.net/browse/WTEL-5310) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
396
519
|
|
|
520
|
+
- [`2d14f6e`](https://github.com/webitel/webitel-ui-sdk/commit/2d14f6e0c8f3378aa535f4409ad64766f37f0131) - version increment [WTEL-5310] (https://webitel.atlassian.net/browse/WTEL-5310) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
397
521
|
|
|
398
522
|
## [v24.10.57] - 2024-11-05
|
|
523
|
+
|
|
399
524
|
### :sparkles: New Features
|
|
400
|
-
|
|
525
|
+
|
|
526
|
+
- [`f5938a4`](https://github.com/webitel/webitel-ui-sdk/commit/f5938a4bfebd725c115b453d7c26837fb8edaedd) - cases section added to CRM enum [WTEL-5310] (https://webitel.atlassian.net/browse/WTEL-5310) _(commit by [@VladimirBeria](https://github.com/VladimirBeria))_
|
|
401
527
|
|
|
402
528
|
### :memo: Documentation Changes
|
|
403
|
-
- [`d6516e7`](https://github.com/webitel/webitel-ui-sdk/commit/d6516e7e30e97bd4a7db8c597e5c55be9e67c121) - added wt-action-bar slots docs [WTEL-5307](https://webitel.atlassian.net/browse/WTEL-5307) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
404
529
|
|
|
530
|
+
- [`d6516e7`](https://github.com/webitel/webitel-ui-sdk/commit/d6516e7e30e97bd4a7db8c597e5c55be9e67c121) - added wt-action-bar slots docs [WTEL-5307](https://webitel.atlassian.net/browse/WTEL-5307) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
405
531
|
|
|
406
532
|
## [v24.10.56] - 2024-10-31
|
|
533
|
+
|
|
407
534
|
### :sparkles: New Features
|
|
408
|
-
- [`d0565ac`](https://github.com/webitel/webitel-ui-sdk/commit/d0565ac468e9dc441a38d7250dfed140c26e52b4) - add edit icon in wt-action-bar[WTEL-4686](https://webitel.atlassian.net/browse/WTEL-4686)] *(commit by [@Lera24](https://github.com/Lera24))*
|
|
409
535
|
|
|
536
|
+
- [`d0565ac`](https://github.com/webitel/webitel-ui-sdk/commit/d0565ac468e9dc441a38d7250dfed140c26e52b4) - add edit icon in wt-action-bar[WTEL-4686](https://webitel.atlassian.net/browse/WTEL-4686)] _(commit by [@Lera24](https://github.com/Lera24))_
|
|
410
537
|
|
|
411
538
|
## [v24.10.55] - 2024-10-30
|
|
539
|
+
|
|
412
540
|
### :bug: Bug Fixes
|
|
413
|
-
- [`125309f`](https://github.com/webitel/webitel-ui-sdk/commit/125309fe2bafa7ad5228c34371daacae64a470b2) - changed version [WTEL-5335](https://webitel.atlassian.net/browse/WTEL-5335) *(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))*
|
|
414
|
-
- [`ff316c1`](https://github.com/webitel/webitel-ui-sdk/commit/ff316c1638aaa4dcadd730c15491f4fc4111d4da) - import i18n.js to agentChats api file [WTEL-5335](https://webitel.atlassian.net/browse/WTEL-5335) *(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))*
|
|
415
|
-
- [`d957dee`](https://github.com/webitel/webitel-ui-sdk/commit/d957dee98c58b77cf8a362eb994b355b7cf1a9f5) - implemented version [WTEL-5335](https://webitel.atlassian.net/browse/WTEL-5335) *(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))*
|
|
416
|
-
- [`d0406b5`](https://github.com/webitel/webitel-ui-sdk/commit/d0406b57b27eb001121bc540deb07e1690f2a229) - added catalog api and added new method to agentChats api [WTEL-5335](https://webitel.atlassian.net/browse/WTEL-5335) *(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))*
|
|
417
541
|
|
|
542
|
+
- [`125309f`](https://github.com/webitel/webitel-ui-sdk/commit/125309fe2bafa7ad5228c34371daacae64a470b2) - changed version [WTEL-5335](https://webitel.atlassian.net/browse/WTEL-5335) _(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))_
|
|
543
|
+
- [`ff316c1`](https://github.com/webitel/webitel-ui-sdk/commit/ff316c1638aaa4dcadd730c15491f4fc4111d4da) - import i18n.js to agentChats api file [WTEL-5335](https://webitel.atlassian.net/browse/WTEL-5335) _(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))_
|
|
544
|
+
- [`d957dee`](https://github.com/webitel/webitel-ui-sdk/commit/d957dee98c58b77cf8a362eb994b355b7cf1a9f5) - implemented version [WTEL-5335](https://webitel.atlassian.net/browse/WTEL-5335) _(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))_
|
|
545
|
+
- [`d0406b5`](https://github.com/webitel/webitel-ui-sdk/commit/d0406b57b27eb001121bc540deb07e1690f2a229) - added catalog api and added new method to agentChats api [WTEL-5335](https://webitel.atlassian.net/browse/WTEL-5335) _(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))_
|
|
418
546
|
|
|
419
547
|
## [v24.10.54] - 2024-10-30
|
|
548
|
+
|
|
420
549
|
### :bug: Bug Fixes
|
|
421
|
-
- [`e3c0907`](https://github.com/webitel/webitel-ui-sdk/commit/e3c0907c4c5993879e8add14439f0c5c0c1cd25e) - rename slas page[WTEL-5379](https://webitel.atlassian.net/browse/WTEL-5379) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
422
550
|
|
|
551
|
+
- [`e3c0907`](https://github.com/webitel/webitel-ui-sdk/commit/e3c0907c4c5993879e8add14439f0c5c0c1cd25e) - rename slas page[WTEL-5379](https://webitel.atlassian.net/browse/WTEL-5379) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
423
552
|
|
|
424
553
|
## [v24.10.53] - 2024-10-30
|
|
554
|
+
|
|
425
555
|
### :sparkles: New Features
|
|
426
|
-
- [`6eed211`](https://github.com/webitel/webitel-ui-sdk/commit/6eed21158f3e5114ea10449d9593ec7ecd172565) - add sla page in crm section and delete crmConfigurationSections enum [WTEL-5379](https://webitel.atlassian.net/browse/WTEL-5379) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
427
556
|
|
|
557
|
+
- [`6eed211`](https://github.com/webitel/webitel-ui-sdk/commit/6eed21158f3e5114ea10449d9593ec7ecd172565) - add sla page in crm section and delete crmConfigurationSections enum [WTEL-5379](https://webitel.atlassian.net/browse/WTEL-5379) _(commit by [@Lera24](https://github.com/Lera24))_
|
|
428
558
|
|
|
429
559
|
## [v24.10.52] - 2024-10-29
|
|
560
|
+
|
|
430
561
|
### :bug: Bug Fixes
|
|
431
|
-
- [`77fdd56`](https://github.com/webitel/webitel-ui-sdk/commit/77fdd5681aa103f3771c90b8d0dfaf377f1d103b) - fixed vue-multiselect-based components placeholder color [WTEL-5387](https://webitel.atlassian.net/browse/WTEL-5373) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
432
562
|
|
|
563
|
+
- [`77fdd56`](https://github.com/webitel/webitel-ui-sdk/commit/77fdd5681aa103f3771c90b8d0dfaf377f1d103b) - fixed vue-multiselect-based components placeholder color [WTEL-5387](https://webitel.atlassian.net/browse/WTEL-5373) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
433
564
|
|
|
434
565
|
## [v24.10.51] - 2024-10-29
|
|
566
|
+
|
|
435
567
|
### :sparkles: New Features
|
|
436
|
-
|
|
437
|
-
- [`
|
|
568
|
+
|
|
569
|
+
- [`b7b5fda`](https://github.com/webitel/webitel-ui-sdk/commit/b7b5fda8b945b12f7e126f756ac43590aa13d54c) - useTableEmpty.js locale in progress [WTEL-5284] _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
570
|
+
- [`1d58fed`](https://github.com/webitel/webitel-ui-sdk/commit/1d58fedceed27b999683ed1843edd4fd9d1130d3) - TableComponentModule useTableEmpty.js, + docs [WTEL-5284] _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
438
571
|
|
|
439
572
|
### :bug: Bug Fixes
|
|
440
|
-
- [`cd88706`](https://github.com/webitel/webitel-ui-sdk/commit/cd88706b3e44ce6f257c6e4e031cae3205dd9a7c) - fixed wt-table.vue default column name [WTEL-5373](https://webitel.atlassian.net/browse/WTEL-5373) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
441
573
|
|
|
574
|
+
- [`cd88706`](https://github.com/webitel/webitel-ui-sdk/commit/cd88706b3e44ce6f257c6e4e031cae3205dd9a7c) - fixed wt-table.vue default column name [WTEL-5373](https://webitel.atlassian.net/browse/WTEL-5373) _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
442
575
|
|
|
443
576
|
## [v24.10.50] - 2024-10-25
|
|
577
|
+
|
|
444
578
|
### :sparkles: New Features
|
|
445
|
-
|
|
579
|
+
|
|
580
|
+
- [`652b695`](https://github.com/webitel/webitel-ui-sdk/commit/652b695c8baf21fec5823711d68e31b317e5d649) - CHANGELOG.md auto generation _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
446
581
|
|
|
447
582
|
### :bug: Bug Fixes
|
|
448
|
-
|
|
583
|
+
|
|
584
|
+
- [`49d1c26`](https://github.com/webitel/webitel-ui-sdk/commit/49d1c268eda81654d920bc86c2f3c5a93fc2c338) - CHANGELOG.md auto generation _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
449
585
|
|
|
450
586
|
[v24.10.50]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.49-10...v24.10.50
|
|
451
587
|
[v24.10.51]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.50...v24.10.51
|
|
@@ -511,3 +647,7 @@
|
|
|
511
647
|
[v24.12.26]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.25...v24.12.26
|
|
512
648
|
[v24.12.27]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.26...v24.12.27
|
|
513
649
|
[v24.12.28]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.27...v24.12.28
|
|
650
|
+
[v24.12.29]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.28...v24.12.29
|
|
651
|
+
[v24.12.31]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.29...v24.12.31
|
|
652
|
+
[v24.12.32]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.31...v24.12.32
|
|
653
|
+
[v24.12.33]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.32...v24.12.33
|