@webitel/ui-sdk 24.12.60 → 24.12.62
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 +6 -0
- package/dist/img/sprite/index.js +4 -2
- package/dist/img/sprite/tree-corner.svg +3 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +6658 -6468
- package/dist/ui-sdk.umd.cjs +16 -16
- package/package.json +1 -1
- package/src/assets/icons/sprite/index.js +4 -2
- package/src/assets/icons/sprite/tree-corner.svg +3 -0
- package/src/components/index.js +12 -10
- package/src/components/wt-select/mixins/multiselectMixin.js +70 -10
- package/src/components/wt-select/wt-select.vue +4 -0
- package/src/components/wt-tree/__tests__/WtTree.spec.js +13 -0
- package/src/components/wt-tree/types/wt-tree-mode.ts +4 -0
- package/src/components/wt-tree/wt-tree.vue +178 -0
- package/src/components/wt-tree-line/_variables.scss +21 -0
- package/src/components/wt-tree-line/types/wt-tree-nested-icons.ts +4 -0
- package/src/components/wt-tree-line/wt-tree-line.vue +222 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
## [v24.12.61] - 2025-01-17
|
|
2
|
+
### :sparkles: New Features
|
|
3
|
+
- [`c074fb9`](https://github.com/webitel/webitel-ui-sdk/commit/c074fb90d58d52bc60098649c4e0429ece82de09) - added wt-select `useValueFromOptionsByProp` feature support to array values, +fixes [WTEL-5916](https://webitel.atlassian.net/browse/WTEL-5916) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
4
|
+
|
|
5
|
+
|
|
1
6
|
## [v24.12.59] - 2025-01-16
|
|
2
7
|
### :bug: Bug Fixes
|
|
3
8
|
- [`744e1c0`](https://github.com/webitel/webitel-ui-sdk/commit/744e1c09504f9776e7d60c0bea08b1cc1b280625) - reset grantee in permissions popup[WTEL-5903](https://webitel.atlassian.net/browse/WTEL-5903) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
@@ -788,3 +793,4 @@
|
|
|
788
793
|
[v24.12.55]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.54...v24.12.55
|
|
789
794
|
[v24.12.56]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.55...v24.12.56
|
|
790
795
|
[v24.12.59]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.58...v24.12.59
|
|
796
|
+
[v24.12.61]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.60...v24.12.61
|
package/dist/img/sprite/index.js
CHANGED
|
@@ -179,10 +179,11 @@ import sttSearch from './stt-search.svg';
|
|
|
179
179
|
import telegramBot from './telegram-bot.svg';
|
|
180
180
|
import tick from './tick.svg';
|
|
181
181
|
import treeCollapse from './tree-collapse.svg';
|
|
182
|
-
import treeCross from './tree-cross.svg';
|
|
183
182
|
import treeExpand from './tree-expand.svg';
|
|
184
|
-
import treeLine from './tree-line.svg';
|
|
185
183
|
import ttsDownload from './tts-download.svg';
|
|
184
|
+
import treeLine from './tree-line.svg';
|
|
185
|
+
import treeCorner from './tree-corner.svg';
|
|
186
|
+
import treeCross from './tree-cross.svg';
|
|
186
187
|
import undo from './undo.svg';
|
|
187
188
|
import unpin from './unpin.svg';
|
|
188
189
|
import upload from './upload.svg';
|
|
@@ -354,6 +355,7 @@ export default objCamelToKebab({
|
|
|
354
355
|
zoomOut,
|
|
355
356
|
ttsDownload,
|
|
356
357
|
treeLine,
|
|
358
|
+
treeCorner,
|
|
357
359
|
treeCross,
|
|
358
360
|
stt,
|
|
359
361
|
sttDownload,
|