@blueking/ai-ui-sdk 0.1.12-beta.2 → 0.1.12-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/dist/common/util.d.ts +7 -0
  2. package/dist/common/util.ts.js +18 -0
  3. package/dist/components/render-aside/index.vue.css +9 -9
  4. package/dist/components/render-aside/index.vue.js +1 -1
  5. package/dist/components/render-auto-height-textarea/index.vue.css +11 -11
  6. package/dist/components/render-auto-height-textarea/index.vue.js +1 -1
  7. package/dist/components/render-auto-refresh/index.vue.css +8 -8
  8. package/dist/components/render-auto-refresh/index.vue.js +1 -1
  9. package/dist/components/render-checkbox/index.vue.css +9 -9
  10. package/dist/components/render-checkbox/index.vue.js +1 -1
  11. package/dist/components/render-choose-tag/index.vue.css +7 -7
  12. package/dist/components/render-choose-tag/index.vue.js +1 -1
  13. package/dist/components/render-collapse/index.script.vue.js.js +3 -1
  14. package/dist/components/render-collapse/index.vue.css +2 -2
  15. package/dist/components/render-collapse/index.vue.js +1 -1
  16. package/dist/components/render-dataset/components/dataset-data-tool-icons/index.script.vue.js +1 -1
  17. package/dist/components/render-dataset/components/edit-dataset-data/index.script.vue.js.js +7 -6
  18. package/dist/components/render-dataset/components/edit-dataset-data/index.vue.css +3 -3
  19. package/dist/components/render-dataset/components/edit-dataset-data/index.vue.js +1 -1
  20. package/dist/components/render-dataset/components/operation-record/index.vue.css +4 -4
  21. package/dist/components/render-dataset/components/operation-record/index.vue.js +1 -1
  22. package/dist/components/render-dataset/components/operation-record/table/index.vue.css +1 -1
  23. package/dist/components/render-dataset/components/operation-record/table/index.vue.js +1 -1
  24. package/dist/components/render-dataset/components/operation-record/view-op-result/index.vue.css +2 -2
  25. package/dist/components/render-dataset/components/operation-record/view-op-result/index.vue.js +1 -1
  26. package/dist/components/render-dataset/components/plus-dataset/index.vue.css +2 -2
  27. package/dist/components/render-dataset/components/plus-dataset/index.vue.js +1 -1
  28. package/dist/components/render-dataset/components/plus-dataset-data/form/footer.vue.css +1 -1
  29. package/dist/components/render-dataset/components/plus-dataset-data/form/footer.vue.js +1 -1
  30. package/dist/components/render-dataset/components/plus-dataset-data/form/index.vue.css +2 -2
  31. package/dist/components/render-dataset/components/plus-dataset-data/form/index.vue.js +1 -1
  32. package/dist/components/render-dataset/components/review-dataset-data/index.vue.css +10 -10
  33. package/dist/components/render-dataset/components/review-dataset-data/index.vue.js +1 -1
  34. package/dist/components/render-dataset/index.vue.css +1 -1
  35. package/dist/components/render-dataset/index.vue.js +1 -1
  36. package/dist/components/render-dataset-detail-origin-data/components/table/index.vue.css +1 -1
  37. package/dist/components/render-dataset-detail-origin-data/components/table/index.vue.js +1 -1
  38. package/dist/components/render-dataset-detail-origin-data/index.vue.css +3 -3
  39. package/dist/components/render-dataset-detail-origin-data/index.vue.js +1 -1
  40. package/dist/components/render-dataset-list/components/main.vue.css +3 -3
  41. package/dist/components/render-dataset-list/components/main.vue.js +1 -1
  42. package/dist/components/render-expand-collapse/index.vue.css +3 -3
  43. package/dist/components/render-expand-collapse/index.vue.js +1 -1
  44. package/dist/components/render-file-card/index.vue.css +11 -11
  45. package/dist/components/render-file-card/index.vue.js +1 -1
  46. package/dist/components/render-file-type-icon/index.vue.css +5 -5
  47. package/dist/components/render-file-type-icon/index.vue.js +1 -1
  48. package/dist/components/render-header/index.vue.css +5 -5
  49. package/dist/components/render-header/index.vue.js +1 -1
  50. package/dist/components/render-router-tab/index.vue.css +3 -3
  51. package/dist/components/render-router-tab/index.vue.js +1 -1
  52. package/package.json +1 -1
@@ -88,3 +88,10 @@ export declare const processPromptTemplate: (prompt: string, selectedText: strin
88
88
  * @returns 全屏的父元素
89
89
  */
90
90
  export declare const getFullScreenWrap: (target: HTMLElement) => HTMLElement;
91
+ /**
92
+ * 判断元素的父节点们有没有某个class
93
+ * @param ele 当前元素
94
+ * @param cls class名
95
+ * @returns 是否有
96
+ */
97
+ export declare const isParentHasClass: (ele: HTMLElement, cls: string) => boolean;
@@ -233,3 +233,21 @@ export const handleCopy = (text)=>{
233
233
  }
234
234
  return parentElement;
235
235
  };
236
+ /**
237
+ * 判断元素的父节点们有没有某个class
238
+ * @param ele 当前元素
239
+ * @param cls class名
240
+ * @returns 是否有
241
+ */ export const isParentHasClass = (ele, cls)=>{
242
+ let result = false;
243
+ let current = ele;
244
+ while(current){
245
+ var _current_className_includes, _current_className;
246
+ if ((_current_className = current.className) === null || _current_className === void 0 ? void 0 : (_current_className_includes = _current_className.includes) === null || _current_className_includes === void 0 ? void 0 : _current_className_includes.call(_current_className, cls)) {
247
+ result = true;
248
+ break;
249
+ }
250
+ current = current.parentElement;
251
+ }
252
+ return result;
253
+ };
@@ -1,12 +1,12 @@
1
1
 
2
- .aside-home[data-v-wx61xxc7] {
2
+ .aside-home[data-v-yar6hxgd] {
3
3
  width: 300px;
4
4
  height: 100%;
5
5
  background: #FFFFFF;
6
6
  padding: 16px;
7
7
  border-right: 1px solid #eaebf0;
8
8
  }
9
- [data-v-wx61xxc7] .aside-item {
9
+ [data-v-yar6hxgd] .aside-item {
10
10
  width: 268px;
11
11
  line-height: 36px;
12
12
  border-radius: 2px;
@@ -16,30 +16,30 @@
16
16
  justify-content: space-between;
17
17
  color: #979BA5;
18
18
  }
19
- [data-v-wx61xxc7] .aside-item.is-tab {
19
+ [data-v-yar6hxgd] .aside-item.is-tab {
20
20
  background: #F5F7FA;
21
21
  cursor: pointer;
22
22
  color: #4D4F56;
23
23
  }
24
- [data-v-wx61xxc7] .aside-item.is-tab:hover {
24
+ [data-v-yar6hxgd] .aside-item.is-tab:hover {
25
25
  background: #F0F5FF;
26
26
  }
27
- [data-v-wx61xxc7] .aside-item.active {
27
+ [data-v-yar6hxgd] .aside-item.active {
28
28
  background: #F0F5FF;
29
29
  color: #3A84FF;
30
30
  font-weight: 700;
31
31
  }
32
- [data-v-wx61xxc7] .aside-item.active .tab-num {
32
+ [data-v-yar6hxgd] .aside-item.active .tab-num {
33
33
  background: #3A84FF;
34
34
  color: #fff;
35
35
  }
36
- [data-v-wx61xxc7] .aside-item.active .active-text {
36
+ [data-v-yar6hxgd] .aside-item.active .active-text {
37
37
  color: #3A84FF;
38
38
  }
39
- [data-v-wx61xxc7] .aside-item .tab-name {
39
+ [data-v-yar6hxgd] .aside-item .tab-name {
40
40
  flex: 1;
41
41
  }
42
- [data-v-wx61xxc7] .aside-item .tab-num {
42
+ [data-v-yar6hxgd] .aside-item .tab-num {
43
43
  background: #EAEBF0;
44
44
  border-radius: 2px;
45
45
  margin-left: 5px;
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js';
2
- script.__scopeId = "data-v-wx61xxc7";
2
+ script.__scopeId = "data-v-yar6hxgd";
3
3
  script.__file = "./src/components/render-aside/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,40 +1,40 @@
1
1
 
2
- .send-container[data-v-gi7pl9kp] {
2
+ .send-container[data-v-u58t8pgt] {
3
3
  position: relative;
4
4
  }
5
- .send-container[data-v-gi7pl9kp]:has(textarea:focus) {
5
+ .send-container[data-v-u58t8pgt]:has(textarea:focus) {
6
6
  z-index: 2;
7
7
  }
8
- .send-container:hover .send-clear[data-v-gi7pl9kp] {
8
+ .send-container:hover .send-clear[data-v-u58t8pgt] {
9
9
  display: inline-flex !important;
10
10
  }
11
- .send-input[data-v-gi7pl9kp] {
11
+ .send-input[data-v-u58t8pgt] {
12
12
  width: 100%;
13
13
  flex-direction: row;
14
14
  height: var(--origin-height);
15
15
  }
16
- .send-input[data-v-gi7pl9kp]:has(textarea:focus) {
16
+ .send-input[data-v-u58t8pgt]:has(textarea:focus) {
17
17
  height: var(--text-height);
18
18
  }
19
- .send-input[data-v-gi7pl9kp] textarea {
19
+ .send-input[data-v-u58t8pgt] textarea {
20
20
  font-size: 12px;
21
21
  line-height: 16px;
22
22
  padding: 7px;
23
23
  resize: none !important;
24
24
  }
25
- .send-input[data-v-gi7pl9kp] textarea::-webkit-scrollbar {
25
+ .send-input[data-v-u58t8pgt] textarea::-webkit-scrollbar {
26
26
  width: 4px;
27
27
  height: 4px;
28
28
  }
29
- .send-input[data-v-gi7pl9kp] textarea::-webkit-scrollbar-thumb {
29
+ .send-input[data-v-u58t8pgt] textarea::-webkit-scrollbar-thumb {
30
30
  height: 5px;
31
31
  border-radius: 3px;
32
32
  background-color: #dcdee5;
33
33
  }
34
- .send-input[data-v-gi7pl9kp] textarea::placeholder {
34
+ .send-input[data-v-u58t8pgt] textarea::placeholder {
35
35
  line-height: 16px;
36
36
  }
37
- .send-clear[data-v-gi7pl9kp] {
37
+ .send-clear[data-v-u58t8pgt] {
38
38
  display: none !important;
39
39
  position: absolute;
40
40
  right: 10px;
@@ -43,6 +43,6 @@
43
43
  font-size: 14px;
44
44
  cursor: pointer;
45
45
  }
46
- .send-clear[data-v-gi7pl9kp]:hover {
46
+ .send-clear[data-v-u58t8pgt]:hover {
47
47
  color: #313238;
48
48
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-gi7pl9kp";
2
+ script.__scopeId = "data-v-u58t8pgt";
3
3
  script.__file = "./src/components/render-auto-height-textarea/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,11 +1,11 @@
1
1
 
2
- .auto-refresh[data-v-z0lb32do] {
2
+ .auto-refresh[data-v-1za1t80k] {
3
3
  position: relative;
4
4
  cursor: pointer;
5
5
  line-height: 26px;
6
6
  padding: 0 4px;
7
7
  }
8
- .auto-refresh[data-v-z0lb32do]:after {
8
+ .auto-refresh[data-v-1za1t80k]:after {
9
9
  content: '';
10
10
  position: absolute;
11
11
  top: 5px;
@@ -15,31 +15,31 @@
15
15
  background-color: #dcdee5;
16
16
  z-index: 1;
17
17
  }
18
- .auto-refresh[data-v-z0lb32do]:hover {
18
+ .auto-refresh[data-v-1za1t80k]:hover {
19
19
  color: #3A84FF;
20
20
  background-color: #E1ECFF;
21
21
  }
22
- .refresh[data-v-z0lb32do] {
22
+ .refresh[data-v-1za1t80k] {
23
23
  cursor: pointer;
24
24
  line-height: 26px;
25
25
  padding: 0 4px;
26
26
  }
27
- .refresh[data-v-z0lb32do]:hover {
27
+ .refresh[data-v-1za1t80k]:hover {
28
28
  color: #3A84FF;
29
29
  background-color: #E1ECFF;
30
30
  }
31
- .textarea-list[data-v-z0lb32do] {
31
+ .textarea-list[data-v-1za1t80k] {
32
32
  padding: 4px 0;
33
33
  line-height: 32px;
34
34
  max-height: 300px;
35
35
  position: relative;
36
36
  z-index: 2;
37
37
  }
38
- .textarea-list .textarea-item[data-v-z0lb32do] {
38
+ .textarea-list .textarea-item[data-v-1za1t80k] {
39
39
  padding: 0 12px;
40
40
  cursor: pointer;
41
41
  }
42
- .textarea-list .textarea-item[data-v-z0lb32do]:hover {
42
+ .textarea-list .textarea-item[data-v-1za1t80k]:hover {
43
43
  background: #E1ECFF;
44
44
  color: #3A84FF;
45
45
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-z0lb32do";
2
+ script.__scopeId = "data-v-1za1t80k";
3
3
  script.__file = "./src/components/render-auto-refresh/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,5 +1,5 @@
1
1
 
2
- .checkbox[data-v-rp0o4zp8] {
2
+ .checkbox[data-v-4tuzujyo] {
3
3
  position: relative;
4
4
  display: inline-block;
5
5
  width: 16px;
@@ -8,27 +8,27 @@
8
8
  border-radius: 2px;
9
9
  cursor: pointer;
10
10
  }
11
- .checkbox.disabled[data-v-rp0o4zp8] {
11
+ .checkbox.disabled[data-v-4tuzujyo] {
12
12
  cursor: not-allowed;
13
13
  background: #fafbfd;
14
14
  border-color: #dcdee5;
15
15
  }
16
- .checkbox.disabled.checked[data-v-rp0o4zp8] {
16
+ .checkbox.disabled.checked[data-v-4tuzujyo] {
17
17
  background-color: #a3c5fd;
18
18
  border-color: #a3c5fd;
19
19
  }
20
- .checkbox.disabled.indeterminate[data-v-rp0o4zp8] {
20
+ .checkbox.disabled.indeterminate[data-v-4tuzujyo] {
21
21
  background-color: #fafbfd;
22
22
  border-color: #dcdee5;
23
23
  }
24
- .checkbox.disabled.indeterminate[data-v-rp0o4zp8]:after {
24
+ .checkbox.disabled.indeterminate[data-v-4tuzujyo]:after {
25
25
  background: #dcdee5;
26
26
  }
27
- .checkbox.checked[data-v-rp0o4zp8] {
27
+ .checkbox.checked[data-v-4tuzujyo] {
28
28
  background-color: #3a84ff;
29
29
  border: 1px solid #3a84ff;
30
30
  }
31
- .checkbox.checked[data-v-rp0o4zp8]:after {
31
+ .checkbox.checked[data-v-4tuzujyo]:after {
32
32
  position: absolute;
33
33
  top: 50%;
34
34
  left: 50%;
@@ -41,11 +41,11 @@
41
41
  transform: translate(-50%, -60%) rotate(45deg);
42
42
  transform-origin: center;
43
43
  }
44
- .checkbox.indeterminate[data-v-rp0o4zp8] {
44
+ .checkbox.indeterminate[data-v-4tuzujyo] {
45
45
  background-color: #3a84ff;
46
46
  border: 1px solid #3a84ff;
47
47
  }
48
- .checkbox.indeterminate[data-v-rp0o4zp8]:after {
48
+ .checkbox.indeterminate[data-v-4tuzujyo]:after {
49
49
  position: absolute;
50
50
  top: 50%;
51
51
  left: 50%;
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-rp0o4zp8";
2
+ script.__scopeId = "data-v-4tuzujyo";
3
3
  script.__file = "./src/components/render-checkbox/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,29 +1,29 @@
1
1
 
2
- .plus-tag-input[data-v-a5p5miuh] {
2
+ .plus-tag-input[data-v-qgj1pmub] {
3
3
  padding: 7px 12px;
4
4
  height: 40px;
5
5
  background: #FAFBFD;
6
6
  border-top: 1px solid #DCDEE5;
7
7
  }
8
- .plus-tag-input .plus-tag-done[data-v-a5p5miuh] {
8
+ .plus-tag-input .plus-tag-done[data-v-qgj1pmub] {
9
9
  cursor: pointer;
10
10
  font-size: 22px;
11
11
  color: #2DCB56;
12
12
  margin: 0 5px 0 10px;
13
13
  }
14
- .plus-tag-input .plus-tag-error[data-v-a5p5miuh] {
14
+ .plus-tag-input .plus-tag-error[data-v-qgj1pmub] {
15
15
  cursor: pointer;
16
16
  font-size: 16px;
17
17
  color: #C4C6CC;
18
18
  margin-right: 5px;
19
19
  }
20
- .plus-tag-input .plus-tag-form[data-v-a5p5miuh] {
20
+ .plus-tag-input .plus-tag-form[data-v-qgj1pmub] {
21
21
  flex: 1;
22
22
  }
23
- .plus-tag-input .plus-tag-form-item[data-v-a5p5miuh] {
23
+ .plus-tag-input .plus-tag-form-item[data-v-qgj1pmub] {
24
24
  margin-bottom: 0;
25
25
  }
26
- .plus-tag[data-v-a5p5miuh] {
26
+ .plus-tag[data-v-qgj1pmub] {
27
27
  cursor: pointer;
28
28
  width: 100%;
29
29
  height: 40px;
@@ -36,7 +36,7 @@
36
36
  font-size: 12px;
37
37
  line-height: 20px;
38
38
  }
39
- .plus-tag[data-v-a5p5miuh]:hover {
39
+ .plus-tag[data-v-qgj1pmub]:hover {
40
40
  color: #3A84FF;
41
41
  }
42
42
 
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-a5p5miuh";
2
+ script.__scopeId = "data-v-qgj1pmub";
3
3
  script.__file = "./src/components/render-choose-tag/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -8,6 +8,7 @@ const _hoisted_2 = {
8
8
  class: "bkaidev-icon bkaidev-help g-text-14 g-ml-4"
9
9
  };
10
10
  import { ref } from 'vue';
11
+ import { isParentHasClass } from '../../common/util.ts.js';
11
12
  export default /*@__PURE__*/ _defineComponent({
12
13
  props: {
13
14
  title: {},
@@ -15,7 +16,8 @@ export default /*@__PURE__*/ _defineComponent({
15
16
  },
16
17
  setup (__props) {
17
18
  const isShow = ref(true);
18
- const toggleShow = ()=>{
19
+ const toggleShow = (event)=>{
20
+ if (isParentHasClass(event.target, 'disable-click-toggle')) return;
19
21
  isShow.value = !isShow.value;
20
22
  };
21
23
  return (_ctx, _cache)=>{
@@ -1,10 +1,10 @@
1
1
 
2
- .collapse-title[data-v-2x3wfs9n] {
2
+ .collapse-title[data-v-ou76eq5e] {
3
3
  height: 28px;
4
4
  background: #F0F1F5;
5
5
  border-radius: 2px;
6
6
  padding: 0 12px;
7
7
  }
8
- .collapse-title .is-hidden[data-v-2x3wfs9n] {
8
+ .collapse-title .is-hidden[data-v-ou76eq5e] {
9
9
  transform: rotate(-90deg);
10
10
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-2x3wfs9n";
2
+ script.__scopeId = "data-v-ou76eq5e";
3
3
  script.__file = "./src/components/render-collapse/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -39,7 +39,7 @@ export default /*@__PURE__*/ _defineComponent({
39
39
  }
40
40
  ]
41
41
  ]),
42
- _cache[1] || (_cache[1] = _createStaticVNode("<span class=\"click-full-screen g-cursor-pointer g-flex-row\" data-v-v4rrmfdn><i class=\"ai-ui-sdk-icon ai-ui-sdk-full-screen click-full-screen g-text-14 g-ml-24 g-mr-2\" data-v-v4rrmfdn></i><span class=\"g-text-12 click-full-screen\" data-v-v4rrmfdn>全屏</span></span><span class=\"click-un-full-screen g-cursor-pointer g-flex-row\" data-v-v4rrmfdn><i class=\"ai-ui-sdk-icon ai-ui-sdk-un-full-screen click-un-full-screen g-text-14 g-ml-24 g-mr-2\" data-v-v4rrmfdn></i><span class=\"g-text-12 click-un-full-screen\" data-v-v4rrmfdn>取消全屏</span></span>", 2))
42
+ _cache[1] || (_cache[1] = _createStaticVNode("<span class=\"click-full-screen g-cursor-pointer g-flex-row\" data-v-yzy2n466><i class=\"ai-ui-sdk-icon ai-ui-sdk-full-screen click-full-screen g-text-14 g-ml-24 g-mr-2\" data-v-yzy2n466></i><span class=\"g-text-12 click-full-screen\" data-v-yzy2n466>全屏</span></span><span class=\"click-un-full-screen g-cursor-pointer g-flex-row\" data-v-yzy2n466><i class=\"ai-ui-sdk-icon ai-ui-sdk-un-full-screen click-un-full-screen g-text-14 g-ml-24 g-mr-2\" data-v-yzy2n466></i><span class=\"g-text-12 click-un-full-screen\" data-v-yzy2n466>取消全屏</span></span>", 2))
43
43
  ]);
44
44
  };
45
45
  }
@@ -80,7 +80,7 @@ function _object_spread_props(target, source) {
80
80
  return target;
81
81
  }
82
82
  import { defineComponent as _defineComponent } from 'vue';
83
- import { unref as _unref, createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, resolveComponent as _resolveComponent, withCtx as _withCtx, createVNode as _createVNode, createBlock as _createBlock, renderList as _renderList, Fragment as _Fragment, withModifiers as _withModifiers, createTextVNode as _createTextVNode, resolveDirective as _resolveDirective, withDirectives as _withDirectives, createSlots as _createSlots } from "vue";
83
+ import { unref as _unref, createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, resolveComponent as _resolveComponent, withCtx as _withCtx, createVNode as _createVNode, createBlock as _createBlock, renderList as _renderList, Fragment as _Fragment, createTextVNode as _createTextVNode, resolveDirective as _resolveDirective, withDirectives as _withDirectives, createSlots as _createSlots } from "vue";
84
84
  const _hoisted_1 = {
85
85
  key: 0,
86
86
  class: "g-text-14"
@@ -276,14 +276,13 @@ export default /*@__PURE__*/ _defineComponent({
276
276
  suffix: _withCtx(()=>[
277
277
  _createElementVNode("span", _hoisted_2, [
278
278
  _createVNode(_unref(EditLine), {
279
- class: "g-ml-10 g-text-blue g-cursor-pointer",
280
- onClick: _withModifiers(($event)=>handleEdit(key), [
281
- "stop"
282
- ])
279
+ class: "g-ml-10 g-text-blue g-cursor-pointer disable-click-toggle",
280
+ onClick: ($event)=>handleEdit(key)
283
281
  }, null, 8 /* PROPS */ , [
284
282
  "onClick"
285
283
  ]),
286
284
  _createVNode(DatasetDataToolIcons, {
285
+ class: "disable-click-toggle",
287
286
  tips: _ctx.schema[key]
288
287
  }, null, 8 /* PROPS */ , [
289
288
  "tips"
@@ -300,10 +299,12 @@ export default /*@__PURE__*/ _defineComponent({
300
299
  _createVNode(RenderAutoHeightTextarea, {
301
300
  modelValue: editFormData.value[key],
302
301
  "onUpdate:modelValue": ($event)=>editFormData.value[key] = $event,
302
+ placeholder: _ctx.schema[key],
303
303
  height: 300
304
304
  }, null, 8 /* PROPS */ , [
305
305
  "modelValue",
306
- "onUpdate:modelValue"
306
+ "onUpdate:modelValue",
307
+ "placeholder"
307
308
  ])
308
309
  ]),
309
310
  _: 2 /* DYNAMIC */
@@ -1,15 +1,15 @@
1
1
 
2
- .content[data-v-n68o57qw] {
2
+ .content[data-v-qw08p65i] {
3
3
  padding: 18px 24px 0;
4
4
  height: 100%;
5
5
  overflow: auto;
6
6
  }
7
- .data-set-edit-slider .value-content[data-v-n68o57qw] {
7
+ .data-set-edit-slider .value-content[data-v-qw08p65i] {
8
8
  padding: 16px;
9
9
  border: 1px solid #DCDEE5;
10
10
  line-height: 22px;
11
11
  }
12
- .data-set-edit-slider[data-v-n68o57qw] .bk-sideslider-title {
12
+ .data-set-edit-slider[data-v-qw08p65i] .bk-sideslider-title {
13
13
  justify-content: space-between;
14
14
  width: 100%;
15
15
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-n68o57qw";
2
+ script.__scopeId = "data-v-qw08p65i";
3
3
  script.__file = "./src/components/render-dataset/components/edit-dataset-data/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,18 +1,18 @@
1
1
 
2
- .content[data-v-hi842mar] {
2
+ .content[data-v-mxp7a6do] {
3
3
  padding: 0 24px 0px 32px;
4
4
  height: 100%;
5
5
  }
6
- .content .toolbar[data-v-hi842mar] {
6
+ .content .toolbar[data-v-mxp7a6do] {
7
7
  margin: 16px 0;
8
8
  display: flex;
9
9
  align-items: center;
10
10
  justify-content: right;
11
11
  gap: 8px;
12
12
  }
13
- .content .toolbar .record-search[data-v-hi842mar] {
13
+ .content .toolbar .record-search[data-v-mxp7a6do] {
14
14
  width: 360px;
15
15
  }
16
- .content .toolbar .record-data-picker[data-v-hi842mar] {
16
+ .content .toolbar .record-data-picker[data-v-mxp7a6do] {
17
17
  width: 260px;
18
18
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-hi842mar";
2
+ script.__scopeId = "data-v-mxp7a6do";
3
3
  script.__file = "./src/components/render-dataset/components/operation-record/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,5 +1,5 @@
1
1
 
2
- .text[data-v-6as3phpw] {
2
+ .text[data-v-zx7q6z60] {
3
3
  display: -webkit-box;
4
4
  -webkit-line-clamp: 2;
5
5
  -webkit-box-orient: vertical;
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-6as3phpw";
2
+ script.__scopeId = "data-v-zx7q6z60";
3
3
  script.__file = "./src/components/render-dataset/components/operation-record/table/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,10 +1,10 @@
1
1
 
2
- .content[data-v-qpnaarjw] {
2
+ .content[data-v-ugbq7hqn] {
3
3
  padding: 18px 24px 0;
4
4
  height: 100%;
5
5
  overflow: auto;
6
6
  }
7
- .content .value-content[data-v-qpnaarjw] {
7
+ .content .value-content[data-v-ugbq7hqn] {
8
8
  margin-top: 8px;
9
9
  padding: 16px;
10
10
  border: 1px solid #DCDEE5;
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-qpnaarjw";
2
+ script.__scopeId = "data-v-ugbq7hqn";
3
3
  script.__file = "./src/components/render-dataset/components/operation-record/view-op-result/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,8 +1,8 @@
1
1
 
2
- .dataset-data-content[data-v-2x02eytw] {
2
+ .dataset-data-content[data-v-bvv83ook] {
3
3
  padding: 20px 24px;
4
4
  height: 100%;
5
5
  }
6
- .dataset-data-slider[data-v-2x02eytw] .bk-modal-content {
6
+ .dataset-data-slider[data-v-bvv83ook] .bk-modal-content {
7
7
  scrollbar-gutter: inherit !important;
8
8
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-2x02eytw";
2
+ script.__scopeId = "data-v-bvv83ook";
3
3
  script.__file = "./src/components/render-dataset/components/plus-dataset/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,5 +1,5 @@
1
1
 
2
- .footer-button[data-v-x2aqbwwy] {
2
+ .footer-button[data-v-rgvfie6l] {
3
3
  width: 88px;
4
4
  margin-right: 8px;
5
5
  }
@@ -1,5 +1,5 @@
1
1
  import script from './footer.script.vue.js.js';
2
- script.__scopeId = "data-v-x2aqbwwy";
2
+ script.__scopeId = "data-v-rgvfie6l";
3
3
  script.__file = "./src/components/render-dataset/components/plus-dataset-data/form/footer.vue";
4
4
  import './footer.vue.css';
5
5
  export default script;
@@ -1,7 +1,7 @@
1
1
 
2
- .plus-dataset-data[data-v-4ym4ucyr] {
2
+ .plus-dataset-data[data-v-ifw7x8sa] {
3
3
  padding: 20px 24px;
4
4
  }
5
- .plus-dataset-sideslider[data-v-4ym4ucyr] .bk-modal-content {
5
+ .plus-dataset-sideslider[data-v-ifw7x8sa] .bk-modal-content {
6
6
  scrollbar-gutter: inherit !important;
7
7
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-4ym4ucyr";
2
+ script.__scopeId = "data-v-ifw7x8sa";
3
3
  script.__file = "./src/components/render-dataset/components/plus-dataset-data/form/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,41 +1,41 @@
1
1
 
2
- .content[data-v-fkxx9pxc] {
2
+ .content[data-v-y095j8a0] {
3
3
  padding: 18px 24px 0;
4
4
  height: 100%;
5
5
  overflow: auto;
6
6
  }
7
- .data-set-review-slider .value-content[data-v-fkxx9pxc] {
7
+ .data-set-review-slider .value-content[data-v-y095j8a0] {
8
8
  padding: 16px;
9
9
  border: 1px solid #DCDEE5;
10
10
  line-height: 22px;
11
11
  }
12
- .data-set-review-slider .review-data[data-v-fkxx9pxc] {
12
+ .data-set-review-slider .review-data[data-v-y095j8a0] {
13
13
  height: calc(100% - 337px);
14
14
  padding: 18px 24px;
15
15
  }
16
- .data-set-review-slider .review-level[data-v-fkxx9pxc] {
16
+ .data-set-review-slider .review-level[data-v-y095j8a0] {
17
17
  box-shadow: 0 -2px 4px 0 #1919291f;
18
18
  height: 337px;
19
19
  padding: 16px 24px 24px;
20
20
  }
21
- .data-set-review-slider .review-level .level-score[data-v-fkxx9pxc] {
21
+ .data-set-review-slider .review-level .level-score[data-v-y095j8a0] {
22
22
  gap: 50px;
23
23
  }
24
- .data-set-review-slider .review-level .level-score .bk-form-item[data-v-fkxx9pxc] {
24
+ .data-set-review-slider .review-level .level-score .bk-form-item[data-v-y095j8a0] {
25
25
  flex: 1;
26
26
  }
27
- .data-set-review-slider .bold-title[data-v-fkxx9pxc] .bk-form-label {
27
+ .data-set-review-slider .bold-title[data-v-y095j8a0] .bk-form-label {
28
28
  font-weight: bold;
29
29
  font-size: 14px;
30
30
  }
31
- .data-set-review-slider[data-v-fkxx9pxc] .bk-sideslider-title {
31
+ .data-set-review-slider[data-v-y095j8a0] .bk-sideslider-title {
32
32
  justify-content: space-between;
33
33
  width: 100%;
34
34
  }
35
- .data-set-review-slider[data-v-fkxx9pxc] .bk-modal-content {
35
+ .data-set-review-slider[data-v-y095j8a0] .bk-modal-content {
36
36
  height: calc(100% - 100px) !important;
37
37
  scrollbar-gutter: inherit;
38
38
  }
39
- .data-set-review-slider[data-v-fkxx9pxc] .bk-modal-content >div, .data-set-review-slider[data-v-fkxx9pxc] .bk-modal-content .bk-sideslider-content {
39
+ .data-set-review-slider[data-v-y095j8a0] .bk-modal-content >div, .data-set-review-slider[data-v-y095j8a0] .bk-modal-content .bk-sideslider-content {
40
40
  height: 100%;
41
41
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-fkxx9pxc";
2
+ script.__scopeId = "data-v-y095j8a0";
3
3
  script.__file = "./src/components/render-dataset/components/review-dataset-data/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,5 +1,5 @@
1
1
 
2
- .dataset-main[data-v-rpqqmnpt] {
2
+ .dataset-main[data-v-usa4r23g] {
3
3
  flex: 1;
4
4
  width: calc(100vw - 300px);
5
5
  height: 100%;
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-rpqqmnpt";
2
+ script.__scopeId = "data-v-usa4r23g";
3
3
  script.__file = "./src/components/render-dataset/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,5 +1,5 @@
1
1
 
2
- .ellipsis-text[data-v-g4j82y7p] {
2
+ .ellipsis-text[data-v-p0e344cf] {
3
3
  display: -webkit-box;
4
4
  -webkit-line-clamp: 2;
5
5
  -webkit-box-orient: vertical;
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js';
2
- script.__scopeId = "data-v-g4j82y7p";
2
+ script.__scopeId = "data-v-p0e344cf";
3
3
  script.__file = "./src/components/render-dataset-detail-origin-data/components/table/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,15 +1,15 @@
1
1
 
2
- .origin-data-content[data-v-vzy6umfc] {
2
+ .origin-data-content[data-v-k1s2r7hn] {
3
3
  padding: 24px;
4
4
  height: calc(100% - 52px - 44px);
5
5
  }
6
- .origin-data-panel[data-v-vzy6umfc] {
6
+ .origin-data-panel[data-v-k1s2r7hn] {
7
7
  height: 100%;
8
8
  padding: 20px;
9
9
  background: #ffffff;
10
10
  box-shadow: 0 2px 4px 0 #1919290d;
11
11
  border-radius: 2px;
12
12
  }
13
- .origin-data-panel .toolbar-search[data-v-vzy6umfc] {
13
+ .origin-data-panel .toolbar-search[data-v-k1s2r7hn] {
14
14
  width: 6.17rem;
15
15
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-vzy6umfc";
2
+ script.__scopeId = "data-v-k1s2r7hn";
3
3
  script.__file = "./src/components/render-dataset-detail-origin-data/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,15 +1,15 @@
1
1
 
2
- .main-content[data-v-egtttes0] {
2
+ .main-content[data-v-sbhfhzep] {
3
3
  padding: 20px 24px;
4
4
  height: calc(100% - 52px);
5
5
  }
6
- .main-panel[data-v-egtttes0] {
6
+ .main-panel[data-v-sbhfhzep] {
7
7
  height: 100%;
8
8
  padding: 20px 24px 0;
9
9
  background: #ffffff;
10
10
  box-shadow: 0 2px 4px 0 #1919290d;
11
11
  border-radius: 2px;
12
12
  }
13
- .main-search[data-v-egtttes0] {
13
+ .main-search[data-v-sbhfhzep] {
14
14
  width: 6.17rem;
15
15
  }
@@ -1,5 +1,5 @@
1
1
  import script from './main.script.vue.js.js';
2
- script.__scopeId = "data-v-egtttes0";
2
+ script.__scopeId = "data-v-sbhfhzep";
3
3
  script.__file = "./src/components/render-dataset-list/components/main.vue";
4
4
  import './main.vue.css';
5
5
  export default script;
@@ -1,5 +1,5 @@
1
1
 
2
- .expend-collapse-home[data-v-itme77st] {
2
+ .expend-collapse-home[data-v-0qkvplls] {
3
3
  width: 16px;
4
4
  height: 64px;
5
5
  background: #DCDEE5;
@@ -15,9 +15,9 @@
15
15
  cursor: pointer;
16
16
  z-index: 1550;
17
17
  }
18
- .expend-collapse-home[data-v-itme77st]:hover {
18
+ .expend-collapse-home[data-v-0qkvplls]:hover {
19
19
  background: #979BA5;
20
20
  }
21
- .expend-collapse-home.is-close[data-v-itme77st] {
21
+ .expend-collapse-home.is-close[data-v-0qkvplls] {
22
22
  left: 0;
23
23
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-itme77st";
2
+ script.__scopeId = "data-v-0qkvplls";
3
3
  script.__file = "./src/components/render-expand-collapse/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,21 +1,21 @@
1
1
 
2
- .upload-file-home[data-v-grjqxprv] {
2
+ .upload-file-home[data-v-9olsqtke] {
3
3
  position: relative;
4
4
  background: #FFFFFF;
5
5
  border: 1px solid #DCDEE5;
6
6
  border-radius: 4px;
7
7
  padding: 12px 12px 10px 12px;
8
8
  }
9
- .upload-file-home[data-v-grjqxprv]:hover {
9
+ .upload-file-home[data-v-9olsqtke]:hover {
10
10
  border: 1px solid #3A84FF;
11
11
  }
12
- .upload-file-home:hover .file-icons[data-v-grjqxprv] {
12
+ .upload-file-home:hover .file-icons[data-v-9olsqtke] {
13
13
  display: flex;
14
14
  }
15
- .upload-file-home .file-icon[data-v-grjqxprv] {
15
+ .upload-file-home .file-icon[data-v-9olsqtke] {
16
16
  font-size: 32px;
17
17
  }
18
- .upload-file-home .file-content[data-v-grjqxprv] {
18
+ .upload-file-home .file-content[data-v-9olsqtke] {
19
19
  font-size: 12px;
20
20
  flex: 1;
21
21
  align-items: flex-start;
@@ -23,28 +23,28 @@
23
23
  font-weight: normal;
24
24
  width: 0;
25
25
  }
26
- .upload-file-home .file-content .file-name[data-v-grjqxprv] {
26
+ .upload-file-home .file-content .file-name[data-v-9olsqtke] {
27
27
  width: 100%;
28
28
  font-size: 14px;
29
29
  line-height: 20px;
30
30
  }
31
- .upload-file-home .file-content .file-size[data-v-grjqxprv] {
31
+ .upload-file-home .file-content .file-size[data-v-9olsqtke] {
32
32
  font-size: 12px;
33
33
  color: #979BA5;
34
34
  line-height: 20px;
35
35
  }
36
- .upload-file-home .file-icons[data-v-grjqxprv] {
36
+ .upload-file-home .file-icons[data-v-9olsqtke] {
37
37
  display: none;
38
38
  color: #979BA5;
39
39
  }
40
- .upload-file-home .file-icons .bkaidev-icon[data-v-grjqxprv] {
40
+ .upload-file-home .file-icons .bkaidev-icon[data-v-9olsqtke] {
41
41
  cursor: pointer;
42
42
  margin-right: 15px;
43
43
  font-size: 16px;
44
44
  }
45
- .upload-file-home .file-icons .bkaidev-icon[data-v-grjqxprv]:hover {
45
+ .upload-file-home .file-icons .bkaidev-icon[data-v-9olsqtke]:hover {
46
46
  color: #3A84FF;
47
47
  }
48
- .upload-file-home .file-icons .bkaidev-delete[data-v-grjqxprv] {
48
+ .upload-file-home .file-icons .bkaidev-delete[data-v-9olsqtke] {
49
49
  margin: 0;
50
50
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-grjqxprv";
2
+ script.__scopeId = "data-v-9olsqtke";
3
3
  script.__file = "./src/components/render-file-card/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,16 +1,16 @@
1
1
 
2
- .ai-ui-sdk-icon.ai-ui-sdk-pdf[data-v-p9obll1z] {
2
+ .ai-ui-sdk-icon.ai-ui-sdk-pdf[data-v-vkoeh1yd] {
3
3
  color: #EA3636;
4
4
  }
5
- .ai-ui-sdk-icon.ai-ui-sdk-doc-2[data-v-p9obll1z], .ai-ui-sdk-icon.ai-ui-sdk-ppt-2[data-v-p9obll1z], .ai-ui-sdk-icon.ai-ui-sdk-markdown[data-v-p9obll1z] {
5
+ .ai-ui-sdk-icon.ai-ui-sdk-doc-2[data-v-vkoeh1yd], .ai-ui-sdk-icon.ai-ui-sdk-ppt-2[data-v-vkoeh1yd], .ai-ui-sdk-icon.ai-ui-sdk-markdown[data-v-vkoeh1yd] {
6
6
  color: #3A84FF;
7
7
  }
8
- .ai-ui-sdk-icon.ai-ui-sdk-folder-fill[data-v-p9obll1z] {
8
+ .ai-ui-sdk-icon.ai-ui-sdk-folder-fill[data-v-vkoeh1yd] {
9
9
  color: #C4C6CC;
10
10
  }
11
- .ai-ui-sdk-icon.ai-ui-sdk-excel[data-v-p9obll1z] {
11
+ .ai-ui-sdk-icon.ai-ui-sdk-excel[data-v-vkoeh1yd] {
12
12
  color: #2DCB56;
13
13
  }
14
- .ai-ui-sdk-icon.ai-ui-sdk-wangye[data-v-p9obll1z] {
14
+ .ai-ui-sdk-icon.ai-ui-sdk-wangye[data-v-vkoeh1yd] {
15
15
  color: #14A568;
16
16
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-p9obll1z";
2
+ script.__scopeId = "data-v-vkoeh1yd";
3
3
  script.__file = "./src/components/render-file-type-icon/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,5 +1,5 @@
1
1
 
2
- .header-home[data-v-7flgbr8d] {
2
+ .header-home[data-v-bbiel7b4] {
3
3
  width: 100%;
4
4
  height: 52px;
5
5
  background: #FFFFFF;
@@ -7,14 +7,14 @@
7
7
  position: relative;
8
8
  z-index: 2;
9
9
  }
10
- .header-title[data-v-7flgbr8d] {
10
+ .header-title[data-v-bbiel7b4] {
11
11
  position: absolute;
12
12
  left: 24px;
13
13
  top: 14px;
14
14
  font-size: 16px;
15
15
  color: #313238;
16
16
  }
17
- .header-main[data-v-7flgbr8d] {
17
+ .header-main[data-v-bbiel7b4] {
18
18
  display: flex;
19
19
  align-items: center;
20
20
  justify-content: flex-end;
@@ -22,13 +22,13 @@
22
22
  height: 100%;
23
23
  margin: 0 auto;
24
24
  }
25
- .header-select[data-v-7flgbr8d] {
25
+ .header-select[data-v-bbiel7b4] {
26
26
  width: 300px;
27
27
  margin-right: 8px;
28
28
  z-index: 9;
29
29
  font-size: 12px;
30
30
  }
31
- .header-input[data-v-7flgbr8d] {
31
+ .header-input[data-v-bbiel7b4] {
32
32
  width: 300px;
33
33
  font-size: 12px;
34
34
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-7flgbr8d";
2
+ script.__scopeId = "data-v-bbiel7b4";
3
3
  script.__file = "./src/components/render-header/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
@@ -1,12 +1,12 @@
1
1
 
2
- .router-tab[data-v-w1bli7by] {
2
+ .router-tab[data-v-9d5fxb5c] {
3
3
  margin-top: 2px;
4
4
  height: 42px;
5
5
  background: #FFFFFF;
6
6
  box-shadow: 0 2px 4px 0 #1919290d;
7
7
  padding: 0 45px;
8
8
  }
9
- .router-tab a[data-v-w1bli7by] {
9
+ .router-tab a[data-v-9d5fxb5c] {
10
10
  padding: 0 8px;
11
11
  margin-right: 24px;
12
12
  font-size: 14px;
@@ -15,7 +15,7 @@
15
15
  color: #4D4F56;
16
16
  box-sizing: border-box;
17
17
  }
18
- .router-tab a.router-link-exact-active[data-v-w1bli7by] {
18
+ .router-tab a.router-link-exact-active[data-v-9d5fxb5c] {
19
19
  color: #3A84FF;
20
20
  border-bottom: 2px solid #3A84FF;
21
21
  }
@@ -1,5 +1,5 @@
1
1
  import script from './index.script.vue.js.js';
2
- script.__scopeId = "data-v-w1bli7by";
2
+ script.__scopeId = "data-v-9d5fxb5c";
3
3
  script.__file = "./src/components/render-router-tab/index.vue";
4
4
  import './index.vue.css';
5
5
  export default script;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueking/ai-ui-sdk",
3
- "version": "0.1.12-beta.2",
3
+ "version": "0.1.12-beta.3",
4
4
  "description": "蓝鲸AI UI SDK",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",