@webitel/ui-sdk 24.12.29 → 24.12.33
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 +265 -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 +4 -2
- package/src/locale/ru/ru.js +6 -3
- package/src/locale/ua/ua.js +6 -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,424 @@
|
|
|
1
|
+
## [v24.12.32] - 2024-12-30
|
|
2
|
+
### :sparkles: New Features
|
|
3
|
+
- [`4b0b0b1`](https://github.com/webitel/webitel-ui-sdk/commit/4b0b0b1416498a72aabbb8496a32a85181798997) - update package version to 24.12.32
|
|
4
|
+
- [`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)
|
|
5
|
+
- [`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)
|
|
6
|
+
- [`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)
|
|
7
|
+
- [`4cfd312`](https://github.com/webitel/webitel-ui-sdk/commit/4cfd312f555029b8e7d88b6f655e8cbe7ef3078b) - fix types for selectedElements [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
8
|
+
- [`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)
|
|
9
|
+
- [`3085b75`](https://github.com/webitel/webitel-ui-sdk/commit/3085b750667f7b8626e1f3cf69b62179964a8d8a) - implement docs for tree table [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
10
|
+
- [`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)
|
|
11
|
+
- [`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)
|
|
12
|
+
- [`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)
|
|
13
|
+
- [`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)
|
|
14
|
+
- [`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)
|
|
15
|
+
- [`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)
|
|
16
|
+
- [`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)
|
|
17
|
+
- [`2db75e3`](https://github.com/webitel/webitel-ui-sdk/commit/2db75e336f6934b63dc2edcdc61ea216e2cb0ecc) - Implement base component wt-tree-table from wt-table with mock array services
|
|
18
|
+
|
|
19
|
+
### :bug: Bug Fixes
|
|
20
|
+
- [`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)
|
|
21
|
+
- [`ba9049e`](https://github.com/webitel/webitel-ui-sdk/commit/ba9049e6c1dd36432b03de90f3905541da127436) - replace any type to unknown [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
22
|
+
- [`a727657`](https://github.com/webitel/webitel-ui-sdk/commit/a727657a803102e7bd223e3c4d664ff6ca528aa4) - Update useTable composable [WTEL-5569](https://webitel.atlassian.net/browse/WTEL-5569)
|
|
23
|
+
- [`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)
|
|
24
|
+
- [`7b047b9`](https://github.com/webitel/webitel-ui-sdk/commit/7b047b998825ac7052ff5e5615cb00b49ca16b15) - update name of icons for tree
|
|
25
|
+
- [`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)
|
|
26
|
+
- [`2957fa1`](https://github.com/webitel/webitel-ui-sdk/commit/2957fa1335d8b40f730c2010fff64e5565064dcd) - remove hide title props from wt-expansion-panel
|
|
27
|
+
- [`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)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## [v24.12.31] - 2024-12-27
|
|
31
|
+
### :sparkles: New Features
|
|
32
|
+
- [`16a6aca`](https://github.com/webitel/webitel-ui-sdk/commit/16a6acadf46f1c16a3548e82698116dc738172bd) - update prettier config
|
|
33
|
+
- [`eae9dc4`](https://github.com/webitel/webitel-ui-sdk/commit/eae9dc4be79ba6b6a9e92cf8496a4563d28791d8) - run fix eslint errors
|
|
34
|
+
- [`2ca8e63`](https://github.com/webitel/webitel-ui-sdk/commit/2ca8e63b9293e7539b736827d4a5a9ad0f3b28a0) - update lint scripts
|
|
35
|
+
- [`dae2b8b`](https://github.com/webitel/webitel-ui-sdk/commit/dae2b8b80031794e7e1e951e134d9aea166e22f4) - add @eslint/js package
|
|
36
|
+
- [`e6d2bcf`](https://github.com/webitel/webitel-ui-sdk/commit/e6d2bcf1b4bba7ae3be77649c51f67d50f13cc0f) - update package version to 24.12.30
|
|
37
|
+
- [`b8c5fe2`](https://github.com/webitel/webitel-ui-sdk/commit/b8c5fe2ec60df84bcc4bc701e0fd128489681b49) - run fix eslint errors
|
|
38
|
+
- [`aa7f3ab`](https://github.com/webitel/webitel-ui-sdk/commit/aa7f3ab45786b9e0f7aa7e38c9818bf9c352b502) - Implement Eslint lint and prettier configs. Remove Biome
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## [v24.12.29] - 2024-12-18
|
|
1
42
|
|
|
43
|
+
### :sparkles: New Features
|
|
44
|
+
|
|
45
|
+
- [`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
46
|
|
|
3
47
|
## [v24.12.28] - 2024-12-18
|
|
48
|
+
|
|
4
49
|
### :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
50
|
|
|
51
|
+
- [`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
52
|
|
|
8
53
|
## [v24.12.27] - 2024-12-18
|
|
54
|
+
|
|
9
55
|
### :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
56
|
|
|
57
|
+
- [`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
58
|
|
|
13
59
|
## [v24.12.26] - 2024-12-16
|
|
60
|
+
|
|
14
61
|
### :sparkles: New Features
|
|
15
|
-
|
|
62
|
+
|
|
63
|
+
- [`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
64
|
|
|
17
65
|
### :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
66
|
|
|
67
|
+
- [`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
68
|
|
|
21
69
|
## [v24.12.25] - 2024-12-16
|
|
70
|
+
|
|
22
71
|
### :bug: Bug Fixes
|
|
72
|
+
|
|
23
73
|
- [`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
74
|
- [`4716561`](https://github.com/webitel/webitel-ui-sdk/commit/4716561bab8442d63ae11060f9c509d0727d7842) - resolve merge conflict [WTEL-5645](https://webitel.atlassian.net/browse/WTEL-5645)
|
|
25
75
|
- [`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
76
|
- [`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
77
|
|
|
28
|
-
|
|
29
78
|
## [v24.12.24] - 2024-12-16
|
|
79
|
+
|
|
30
80
|
### :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
81
|
|
|
82
|
+
- [`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
83
|
|
|
34
84
|
## [v24.12.23] - 2024-12-16
|
|
85
|
+
|
|
35
86
|
### :sparkles: New Features
|
|
36
|
-
|
|
37
|
-
- [`
|
|
87
|
+
|
|
88
|
+
- [`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))_
|
|
89
|
+
- [`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
90
|
|
|
39
91
|
### :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
92
|
|
|
93
|
+
- [`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
94
|
|
|
43
95
|
## [v24.12.22] - 2024-12-13
|
|
96
|
+
|
|
44
97
|
### :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
98
|
|
|
99
|
+
- [`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))_
|
|
100
|
+
- [`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))_
|
|
101
|
+
- [`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
102
|
|
|
50
103
|
## [v24.12.21] - 2024-12-13
|
|
104
|
+
|
|
51
105
|
### :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
106
|
|
|
107
|
+
- [`55398a0`](https://github.com/webitel/webitel-ui-sdk/commit/55398a0397d2923a5a99400887378834053fe440) - implement locales for useTableEmpty [WTEL-5642](https://webitel.atlassian.net/browse/WTEL-5642)
|
|
54
108
|
|
|
55
109
|
## [v24.12.20] - 2024-12-12
|
|
110
|
+
|
|
56
111
|
### :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
112
|
|
|
113
|
+
- [`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
114
|
|
|
60
115
|
## [v24.12.19] - 2024-12-11
|
|
116
|
+
|
|
61
117
|
### :sparkles: New Features
|
|
62
|
-
|
|
118
|
+
|
|
119
|
+
- [`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
120
|
|
|
64
121
|
### :bug: Bug Fixes
|
|
65
|
-
|
|
122
|
+
|
|
123
|
+
- [`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
124
|
|
|
67
125
|
### :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
126
|
|
|
127
|
+
- [`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
128
|
|
|
71
129
|
## [v24.12.18] - 2024-12-11
|
|
130
|
+
|
|
72
131
|
### :sparkles: New Features
|
|
132
|
+
|
|
73
133
|
- [`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
134
|
- [`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
135
|
- [`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
136
|
|
|
77
|
-
|
|
78
137
|
## [v24.12.17] - 2024-12-10
|
|
138
|
+
|
|
79
139
|
### :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
140
|
|
|
141
|
+
- [`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
142
|
|
|
83
143
|
## [v24.12.16] - 2024-12-09
|
|
144
|
+
|
|
84
145
|
### :sparkles: New Features
|
|
85
|
-
|
|
146
|
+
|
|
147
|
+
- [`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
148
|
|
|
87
149
|
### :bug: Bug Fixes
|
|
88
|
-
|
|
150
|
+
|
|
151
|
+
- [`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
152
|
|
|
90
153
|
### :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
154
|
|
|
155
|
+
- [`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))_
|
|
156
|
+
- [`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
157
|
|
|
95
158
|
## [v24.12.15] - 2024-12-06
|
|
159
|
+
|
|
96
160
|
### :sparkles: New Features
|
|
97
|
-
|
|
161
|
+
|
|
162
|
+
- [`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
163
|
|
|
99
164
|
### :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
165
|
|
|
166
|
+
- [`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))_
|
|
167
|
+
- [`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))_
|
|
168
|
+
- [`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
169
|
|
|
105
170
|
## [v24.12.14] - 2024-12-06
|
|
171
|
+
|
|
106
172
|
### :bug: Bug Fixes
|
|
107
|
-
|
|
108
|
-
- [`
|
|
109
|
-
- [`
|
|
173
|
+
|
|
174
|
+
- [`6bf7c96`](https://github.com/webitel/webitel-ui-sdk/commit/6bf7c9606ce59fd584f192268dc000d54f8cb61d) - node version in package.json _(commit by [@Lera24](https://github.com/Lera24))_
|
|
175
|
+
- [`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))_
|
|
176
|
+
- [`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
177
|
|
|
111
178
|
### :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
179
|
|
|
180
|
+
- [`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
181
|
|
|
115
182
|
## [v24.12.13] - 2024-12-03
|
|
183
|
+
|
|
116
184
|
### :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
185
|
|
|
186
|
+
- [`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))_
|
|
187
|
+
- [`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))_
|
|
188
|
+
- [`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))_
|
|
189
|
+
- [`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
190
|
|
|
123
191
|
## [v24.12.12] - 2024-11-29
|
|
192
|
+
|
|
124
193
|
### :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
194
|
|
|
195
|
+
- [`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
196
|
|
|
128
197
|
## [v24.12.11] - 2024-11-28
|
|
198
|
+
|
|
129
199
|
### :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
200
|
|
|
201
|
+
- [`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
202
|
|
|
133
203
|
## [v24.12.10] - 2024-11-27
|
|
204
|
+
|
|
134
205
|
### :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
206
|
|
|
207
|
+
- [`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
208
|
|
|
138
209
|
## [v24.12.9] - 2024-11-27
|
|
210
|
+
|
|
139
211
|
### :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
212
|
|
|
213
|
+
- [`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
214
|
|
|
143
215
|
## [v24.12.8] - 2024-11-26
|
|
216
|
+
|
|
144
217
|
### :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
218
|
|
|
219
|
+
- [`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
220
|
|
|
148
221
|
## [v24.12.7] - 2024-11-26
|
|
222
|
+
|
|
149
223
|
### :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
224
|
|
|
225
|
+
- [`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))_
|
|
226
|
+
- [`cc2cfb3`](https://github.com/webitel/webitel-ui-sdk/commit/cc2cfb344fc469d5295d30909b0666f9fa259309) - checker biome breaks build _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
227
|
+
- [`67574b7`](https://github.com/webitel/webitel-ui-sdk/commit/67574b79c6a65e9272ade2430b143c249e2a42e4) - typescript declarations _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
154
228
|
|
|
155
229
|
## [v24.12.6] - 2024-11-23
|
|
230
|
+
|
|
156
231
|
### :sparkles: New Features
|
|
157
|
-
|
|
232
|
+
|
|
233
|
+
- [`b284960`](https://github.com/webitel/webitel-ui-sdk/commit/b28496024428f1b3f5010df2ff4539331cec61af) - typescript support _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
158
234
|
|
|
159
235
|
### :recycle: Refactors
|
|
160
|
-
- [`2e03a0e`](https://github.com/webitel/webitel-ui-sdk/commit/2e03a0eb4ee21acda8a6f9ba3fcb378f5689cb67) - tsc! *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
161
236
|
|
|
237
|
+
- [`2e03a0e`](https://github.com/webitel/webitel-ui-sdk/commit/2e03a0eb4ee21acda8a6f9ba3fcb378f5689cb67) - tsc! _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
162
238
|
|
|
163
239
|
## [v24.12.5] - 2024-11-22
|
|
240
|
+
|
|
164
241
|
### :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
242
|
|
|
243
|
+
- [`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
244
|
|
|
168
245
|
## [v24.12.4] - 2024-11-22
|
|
246
|
+
|
|
169
247
|
### :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
248
|
|
|
249
|
+
- [`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
250
|
|
|
173
251
|
## [v24.12.3] - 2024-11-21
|
|
252
|
+
|
|
174
253
|
### :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
254
|
|
|
255
|
+
- [`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
256
|
|
|
178
257
|
## [v24.12.2] - 2024-11-21
|
|
258
|
+
|
|
179
259
|
### :sparkles: New Features
|
|
180
|
-
|
|
260
|
+
|
|
261
|
+
- [`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
262
|
|
|
182
263
|
### :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
264
|
|
|
265
|
+
- [`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))_
|
|
266
|
+
- [`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
267
|
|
|
187
268
|
## [v24.12.1] - 2024-11-20
|
|
269
|
+
|
|
188
270
|
### :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
271
|
|
|
272
|
+
- [`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
273
|
|
|
192
274
|
## [v24.12.0] - 2024-11-20
|
|
275
|
+
|
|
193
276
|
### :sparkles: New Features
|
|
194
|
-
- [`281778c`](https://github.com/webitel/webitel-ui-sdk/commit/281778c1fda716f307fc1febe304ff0b5744d5f8) - Update package version to 24.12.0
|
|
195
277
|
|
|
278
|
+
- [`281778c`](https://github.com/webitel/webitel-ui-sdk/commit/281778c1fda716f307fc1febe304ff0b5744d5f8) - Update package version to 24.12.0
|
|
196
279
|
|
|
197
280
|
## [v24.10.88] - 2024-11-20
|
|
281
|
+
|
|
198
282
|
### :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
283
|
|
|
284
|
+
- [`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
285
|
|
|
202
286
|
## [v24.10.87] - 2024-11-19
|
|
287
|
+
|
|
203
288
|
### :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
289
|
|
|
290
|
+
- [`12df75b`](https://github.com/webitel/webitel-ui-sdk/commit/12df75b9427d3c75804993671835c2ffadbc0fbd) - hiding wfm pages before release _(commit by [@Lera24](https://github.com/Lera24))_
|
|
206
291
|
|
|
207
292
|
## [v24.10.86] - 2024-11-19
|
|
293
|
+
|
|
208
294
|
### :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
295
|
|
|
296
|
+
- [`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
297
|
|
|
212
298
|
## [v24.10.84] - 2024-11-19
|
|
299
|
+
|
|
213
300
|
### :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
301
|
|
|
302
|
+
- [`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
303
|
|
|
217
304
|
## [v24.10.83] - 2024-11-18
|
|
305
|
+
|
|
218
306
|
### :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
307
|
|
|
308
|
+
- [`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
309
|
|
|
222
310
|
## [v24.10.82] - 2024-11-18
|
|
311
|
+
|
|
223
312
|
### :sparkles: New Features
|
|
224
|
-
|
|
225
|
-
- [`
|
|
313
|
+
|
|
314
|
+
- [`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))_
|
|
315
|
+
- [`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
316
|
|
|
227
317
|
### :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
318
|
|
|
319
|
+
- [`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))_
|
|
320
|
+
- [`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))_
|
|
321
|
+
- [`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))_
|
|
322
|
+
- [`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))_
|
|
323
|
+
- [`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))_
|
|
324
|
+
- [`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))_
|
|
325
|
+
- [`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))_
|
|
326
|
+
- [`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))_
|
|
327
|
+
- [`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))_
|
|
328
|
+
- [`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))_
|
|
329
|
+
- [`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))_
|
|
330
|
+
- [`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))_
|
|
331
|
+
- [`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))_
|
|
332
|
+
- [`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))_
|
|
333
|
+
- [`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
334
|
|
|
245
335
|
## [v24.10.81] - 2024-11-17
|
|
336
|
+
|
|
246
337
|
### :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
338
|
|
|
339
|
+
- [`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))_
|
|
340
|
+
- [`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
341
|
|
|
251
342
|
## [v24.10.80] - 2024-11-15
|
|
343
|
+
|
|
252
344
|
### :sparkles: New Features
|
|
253
|
-
|
|
345
|
+
|
|
346
|
+
- [`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
347
|
|
|
255
348
|
### :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
349
|
|
|
350
|
+
- [`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))_
|
|
351
|
+
- [`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
352
|
|
|
260
353
|
## [v24.10.79] - 2024-11-15
|
|
354
|
+
|
|
261
355
|
### :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
356
|
|
|
357
|
+
- [`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))_
|
|
358
|
+
- [`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
359
|
|
|
266
360
|
## [v24.10.78] - 2024-11-14
|
|
361
|
+
|
|
267
362
|
### :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
363
|
|
|
364
|
+
- [`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))_
|
|
365
|
+
- [`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
366
|
|
|
272
367
|
## [v24.10.77] - 2024-11-13
|
|
368
|
+
|
|
273
369
|
### :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
370
|
|
|
371
|
+
- [`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
372
|
|
|
277
373
|
## [v24.10.76] - 2024-11-13
|
|
374
|
+
|
|
278
375
|
### :sparkles: New Features
|
|
279
|
-
|
|
376
|
+
|
|
377
|
+
- [`c73fefb`](https://github.com/webitel/webitel-ui-sdk/commit/c73fefbd50cd6bd981a49d83700ad7256fd2cdf3) - add composables in docs[WTEL-5282] _(commit by [@Lera24](https://github.com/Lera24))_
|
|
280
378
|
|
|
281
379
|
### :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
380
|
|
|
381
|
+
- [`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))_
|
|
382
|
+
- [`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))_
|
|
383
|
+
- [`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
384
|
|
|
287
385
|
## [v24.10.75] - 2024-11-13
|
|
386
|
+
|
|
288
387
|
### :bug: Bug Fixes
|
|
289
|
-
|
|
388
|
+
|
|
389
|
+
- [`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
390
|
|
|
291
391
|
### :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
392
|
|
|
393
|
+
- [`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
394
|
|
|
295
395
|
## [v24.10.74] - 2024-11-13
|
|
396
|
+
|
|
296
397
|
### :bug: Bug Fixes
|
|
297
|
-
|
|
298
|
-
- [`
|
|
398
|
+
|
|
399
|
+
- [`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))_
|
|
400
|
+
- [`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
401
|
|
|
300
402
|
### :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
403
|
|
|
404
|
+
- [`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
405
|
|
|
304
406
|
## [v24.10.73] - 2024-11-12
|
|
407
|
+
|
|
305
408
|
### :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
409
|
|
|
410
|
+
- [`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
411
|
|
|
309
412
|
## [v24.10.72] - 2024-11-12
|
|
413
|
+
|
|
310
414
|
### :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
415
|
|
|
416
|
+
- [`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
417
|
|
|
314
418
|
## [v24.10.71] - 2024-11-12
|
|
419
|
+
|
|
315
420
|
### :sparkles: New Features
|
|
421
|
+
|
|
316
422
|
- [`d0bcba0`](https://github.com/webitel/webitel-ui-sdk/commit/d0bcba0b49949566e9487da167b6557f76218585) - Update version [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
317
423
|
- [`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
424
|
- [`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 +427,55 @@
|
|
|
321
427
|
- [`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
428
|
|
|
323
429
|
### :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
430
|
|
|
431
|
+
- [`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
432
|
|
|
327
433
|
## [v24.10.69] - 2024-11-11
|
|
434
|
+
|
|
328
435
|
### :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
436
|
|
|
437
|
+
- [`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
438
|
|
|
332
439
|
## [v24.10.67] - 2024-11-11
|
|
440
|
+
|
|
333
441
|
### :bug: Bug Fixes
|
|
334
|
-
|
|
442
|
+
|
|
443
|
+
- [`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
444
|
|
|
336
445
|
### :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
446
|
|
|
447
|
+
- [`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
448
|
|
|
340
449
|
## [v24.10.66] - 2024-11-11
|
|
450
|
+
|
|
341
451
|
### :sparkles: New Features
|
|
342
|
-
|
|
452
|
+
|
|
453
|
+
- [`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
454
|
|
|
344
455
|
### :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
456
|
|
|
457
|
+
- [`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))_
|
|
458
|
+
- [`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))_
|
|
459
|
+
- [`50efdf8`](https://github.com/webitel/webitel-ui-sdk/commit/50efdf89521a5eb83ffa3a664d3e149d0bfedd2d) - docs build fix [WTEL-5425] _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
349
460
|
|
|
350
461
|
## [v24.10.65] - 2024-11-11
|
|
462
|
+
|
|
351
463
|
### :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
464
|
|
|
465
|
+
- [`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
466
|
|
|
355
467
|
## [v24.10.64] - 2024-11-08
|
|
468
|
+
|
|
356
469
|
### :sparkles: New Features
|
|
357
|
-
|
|
470
|
+
|
|
471
|
+
- [`e599e2b`](https://github.com/webitel/webitel-ui-sdk/commit/e599e2babe86f75b5a6aa95db39b6cfcb993cddd) - node and npm engines restriction _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
358
472
|
|
|
359
473
|
### :bug: Bug Fixes
|
|
360
|
-
|
|
361
|
-
- [`
|
|
362
|
-
- [`
|
|
363
|
-
- [`
|
|
474
|
+
|
|
475
|
+
- [`01852a5`](https://github.com/webitel/webitel-ui-sdk/commit/01852a5a7481a4523ecc9d1646364d99a9ccc93f) - workflows node version _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
476
|
+
- [`bdc72a4`](https://github.com/webitel/webitel-ui-sdk/commit/bdc72a437b90572f94fb8ca6164f9c5bd3b486f4) - workflows node version _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
477
|
+
- [`294327b`](https://github.com/webitel/webitel-ui-sdk/commit/294327bf52e32de2f0675da97682dec0f8e2e351) - workflows node version _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
478
|
+
- [`0291fe0`](https://github.com/webitel/webitel-ui-sdk/commit/0291fe0759f45344fb21f01c9feefdce7bb8d98e) - workflows node version _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
364
479
|
- [`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
480
|
- [`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
481
|
- [`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 +483,100 @@
|
|
|
368
483
|
- [`8760c50`](https://github.com/webitel/webitel-ui-sdk/commit/8760c503e13aab3b4819bba6341748a1d75b4bdc) - update package version [WTEL-5463](https://webitel.atlassian.net/browse/WTEL-5463)
|
|
369
484
|
- [`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
485
|
|
|
371
|
-
|
|
372
486
|
## [v24.10.63] - 2024-11-07
|
|
487
|
+
|
|
373
488
|
### :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
489
|
|
|
490
|
+
- [`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
491
|
|
|
377
492
|
## [v24.10.62] - 2024-11-07
|
|
493
|
+
|
|
378
494
|
### :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
495
|
|
|
496
|
+
- [`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
497
|
|
|
382
498
|
## [v24.10.61] - 2024-11-06
|
|
499
|
+
|
|
383
500
|
### :bug: Bug Fixes
|
|
384
|
-
- [`be1b3a2`](https://github.com/webitel/webitel-ui-sdk/commit/be1b3a25d6b6e6b3c0a5d3287556bc775d6bef8e) - fix import agent chat service
|
|
385
501
|
|
|
502
|
+
- [`be1b3a2`](https://github.com/webitel/webitel-ui-sdk/commit/be1b3a25d6b6e6b3c0a5d3287556bc775d6bef8e) - fix import agent chat service
|
|
386
503
|
|
|
387
504
|
## [v24.10.60] - 2024-11-06
|
|
505
|
+
|
|
388
506
|
### :sparkles: New Features
|
|
507
|
+
|
|
389
508
|
- [`1968f0c`](https://github.com/webitel/webitel-ui-sdk/commit/1968f0ca73eba9be929b31f50570553037245559) - update version [WTEL-5443](https://webitel.atlassian.net/browse/WTEL-5443)
|
|
390
509
|
- [`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
510
|
|
|
392
|
-
|
|
393
511
|
## [v24.10.59] - 2024-11-05
|
|
512
|
+
|
|
394
513
|
### :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
514
|
|
|
515
|
+
- [`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
516
|
|
|
398
517
|
## [v24.10.57] - 2024-11-05
|
|
518
|
+
|
|
399
519
|
### :sparkles: New Features
|
|
400
|
-
|
|
520
|
+
|
|
521
|
+
- [`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
522
|
|
|
402
523
|
### :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
524
|
|
|
525
|
+
- [`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
526
|
|
|
406
527
|
## [v24.10.56] - 2024-10-31
|
|
528
|
+
|
|
407
529
|
### :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
530
|
|
|
531
|
+
- [`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
532
|
|
|
411
533
|
## [v24.10.55] - 2024-10-30
|
|
534
|
+
|
|
412
535
|
### :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
536
|
|
|
537
|
+
- [`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))_
|
|
538
|
+
- [`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))_
|
|
539
|
+
- [`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))_
|
|
540
|
+
- [`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
541
|
|
|
419
542
|
## [v24.10.54] - 2024-10-30
|
|
543
|
+
|
|
420
544
|
### :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
545
|
|
|
546
|
+
- [`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
547
|
|
|
424
548
|
## [v24.10.53] - 2024-10-30
|
|
549
|
+
|
|
425
550
|
### :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
551
|
|
|
552
|
+
- [`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
553
|
|
|
429
554
|
## [v24.10.52] - 2024-10-29
|
|
555
|
+
|
|
430
556
|
### :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
557
|
|
|
558
|
+
- [`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
559
|
|
|
434
560
|
## [v24.10.51] - 2024-10-29
|
|
561
|
+
|
|
435
562
|
### :sparkles: New Features
|
|
436
|
-
|
|
437
|
-
- [`
|
|
563
|
+
|
|
564
|
+
- [`b7b5fda`](https://github.com/webitel/webitel-ui-sdk/commit/b7b5fda8b945b12f7e126f756ac43590aa13d54c) - useTableEmpty.js locale in progress [WTEL-5284] _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
565
|
+
- [`1d58fed`](https://github.com/webitel/webitel-ui-sdk/commit/1d58fedceed27b999683ed1843edd4fd9d1130d3) - TableComponentModule useTableEmpty.js, + docs [WTEL-5284] _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
438
566
|
|
|
439
567
|
### :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
568
|
|
|
569
|
+
- [`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
570
|
|
|
443
571
|
## [v24.10.50] - 2024-10-25
|
|
572
|
+
|
|
444
573
|
### :sparkles: New Features
|
|
445
|
-
|
|
574
|
+
|
|
575
|
+
- [`652b695`](https://github.com/webitel/webitel-ui-sdk/commit/652b695c8baf21fec5823711d68e31b317e5d649) - CHANGELOG.md auto generation _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
446
576
|
|
|
447
577
|
### :bug: Bug Fixes
|
|
448
|
-
|
|
578
|
+
|
|
579
|
+
- [`49d1c26`](https://github.com/webitel/webitel-ui-sdk/commit/49d1c268eda81654d920bc86c2f3c5a93fc2c338) - CHANGELOG.md auto generation _(commit by [@dlohvinov](https://github.com/dlohvinov))_
|
|
449
580
|
|
|
450
581
|
[v24.10.50]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.49-10...v24.10.50
|
|
451
582
|
[v24.10.51]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.50...v24.10.51
|
|
@@ -511,3 +642,6 @@
|
|
|
511
642
|
[v24.12.26]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.25...v24.12.26
|
|
512
643
|
[v24.12.27]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.26...v24.12.27
|
|
513
644
|
[v24.12.28]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.27...v24.12.28
|
|
645
|
+
[v24.12.29]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.28...v24.12.29
|
|
646
|
+
[v24.12.31]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.29...v24.12.31
|
|
647
|
+
[v24.12.32]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.31...v24.12.32
|