@blueking/ai-ui-sdk 0.1.7 → 0.1.9-beta.1
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/dist/components/render-aside/index.vue.css +9 -9
- package/dist/components/render-aside/index.vue.js +1 -1
- package/dist/components/render-auto-height-textarea/index.vue.css +11 -11
- package/dist/components/render-auto-height-textarea/index.vue.js +1 -1
- package/dist/components/render-choose-tag/index.script.vue.js.js +14 -204
- package/dist/components/render-choose-tag/index.vue.css +8 -8
- package/dist/components/render-choose-tag/index.vue.d.ts +3 -3
- package/dist/components/render-choose-tag/index.vue.js +1 -1
- package/dist/components/render-collapse/index.vue.css +2 -2
- package/dist/components/render-collapse/index.vue.js +1 -1
- package/dist/components/render-dataset/components/edit-dataset-data/index.vue.css +3 -3
- package/dist/components/render-dataset/components/edit-dataset-data/index.vue.js +1 -1
- package/dist/components/render-dataset/components/operation-record/index.vue.css +4 -4
- package/dist/components/render-dataset/components/operation-record/index.vue.js +1 -1
- package/dist/components/render-dataset/components/operation-record/table/index.vue.css +1 -1
- package/dist/components/render-dataset/components/operation-record/table/index.vue.js +1 -1
- package/dist/components/render-dataset/components/operation-record/view-op-result/index.vue.css +2 -2
- package/dist/components/render-dataset/components/operation-record/view-op-result/index.vue.js +1 -1
- package/dist/components/render-dataset/components/plus-dataset/index.vue.css +2 -2
- package/dist/components/render-dataset/components/plus-dataset/index.vue.js +1 -1
- package/dist/components/render-dataset/components/plus-dataset-data/form/footer.vue.css +1 -1
- package/dist/components/render-dataset/components/plus-dataset-data/form/footer.vue.js +1 -1
- package/dist/components/render-dataset/components/plus-dataset-data/form/index.vue.css +2 -2
- package/dist/components/render-dataset/components/plus-dataset-data/form/index.vue.js +1 -1
- package/dist/components/render-dataset/index.vue.css +1 -1
- package/dist/components/render-dataset/index.vue.js +1 -1
- package/dist/components/render-dataset-detail-origin-data/components/table/index.vue.css +1 -1
- package/dist/components/render-dataset-detail-origin-data/components/table/index.vue.js +1 -1
- package/dist/components/render-dataset-detail-origin-data/index.vue.css +3 -3
- package/dist/components/render-dataset-detail-origin-data/index.vue.js +1 -1
- package/dist/components/render-dataset-list/components/main.vue.css +3 -3
- package/dist/components/render-dataset-list/components/main.vue.js +1 -1
- package/dist/components/render-expand-collapse/index.vue.css +3 -3
- package/dist/components/render-expand-collapse/index.vue.js +1 -1
- package/dist/components/render-file-card/index.vue.css +11 -11
- package/dist/components/render-file-card/index.vue.js +1 -1
- package/dist/components/render-file-type-icon/index.vue.css +5 -5
- package/dist/components/render-file-type-icon/index.vue.js +1 -1
- package/dist/components/render-header/index.script.vue.js.js +17 -33
- package/dist/components/render-header/index.vue.css +5 -5
- package/dist/components/render-header/index.vue.d.ts +15 -10
- package/dist/components/render-header/index.vue.js +1 -1
- package/dist/components/render-router-tab/index.vue.css +3 -3
- package/dist/components/render-router-tab/index.vue.js +1 -1
- package/dist/hooks/use-meta-http.d.ts +3 -3
- package/dist/hooks/use-meta-http.ts.js +6 -5
- package/dist/http/helper/meta.d.ts +2 -0
- package/dist/http/helper/meta.ts.js +7 -0
- package/dist/http/helper/model.d.ts +2 -0
- package/dist/http/helper/model.ts.js +15 -0
- package/dist/transforms.d.ts +1 -0
- package/dist/transforms.ts.js +1 -0
- package/dist/types/dataset.d.ts +2 -2
- package/dist/types/meta.d.ts +5 -0
- package/dist/types/model.d.ts +17 -0
- package/dist/types/model.ts.js +1 -0
- package/dist/types.d.ts +1 -0
- package/dist/types.ts.js +1 -0
- package/package.json +1 -1
- package/dist/hooks/use-form-rule.ts.js +0 -101
- package/dist/types/tag.d.ts +0 -7
@@ -1,12 +1,12 @@
|
|
1
1
|
|
2
|
-
.aside-home[data-v-
|
2
|
+
.aside-home[data-v-sehcfoni] {
|
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-
|
9
|
+
[data-v-sehcfoni] .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-
|
19
|
+
[data-v-sehcfoni] .aside-item.is-tab {
|
20
20
|
background: #F5F7FA;
|
21
21
|
cursor: pointer;
|
22
22
|
color: #4D4F56;
|
23
23
|
}
|
24
|
-
[data-v-
|
24
|
+
[data-v-sehcfoni] .aside-item.is-tab:hover {
|
25
25
|
background: #F0F5FF;
|
26
26
|
}
|
27
|
-
[data-v-
|
27
|
+
[data-v-sehcfoni] .aside-item.active {
|
28
28
|
background: #F0F5FF;
|
29
29
|
color: #3A84FF;
|
30
30
|
font-weight: 700;
|
31
31
|
}
|
32
|
-
[data-v-
|
32
|
+
[data-v-sehcfoni] .aside-item.active .tab-num {
|
33
33
|
background: #3A84FF;
|
34
34
|
color: #fff;
|
35
35
|
}
|
36
|
-
[data-v-
|
36
|
+
[data-v-sehcfoni] .aside-item.active .active-text {
|
37
37
|
color: #3A84FF;
|
38
38
|
}
|
39
|
-
[data-v-
|
39
|
+
[data-v-sehcfoni] .aside-item .tab-name {
|
40
40
|
flex: 1;
|
41
41
|
}
|
42
|
-
[data-v-
|
42
|
+
[data-v-sehcfoni] .aside-item .tab-num {
|
43
43
|
background: #EAEBF0;
|
44
44
|
border-radius: 2px;
|
45
45
|
margin-left: 5px;
|
@@ -1,40 +1,40 @@
|
|
1
1
|
|
2
|
-
.send-container[data-v-
|
2
|
+
.send-container[data-v-j3lmxz2e] {
|
3
3
|
position: relative;
|
4
4
|
}
|
5
|
-
.send-container[data-v-
|
5
|
+
.send-container[data-v-j3lmxz2e]:has(textarea:focus) {
|
6
6
|
z-index: 2;
|
7
7
|
}
|
8
|
-
.send-container:hover .send-clear[data-v-
|
8
|
+
.send-container:hover .send-clear[data-v-j3lmxz2e] {
|
9
9
|
display: inline-flex !important;
|
10
10
|
}
|
11
|
-
.send-input[data-v-
|
11
|
+
.send-input[data-v-j3lmxz2e] {
|
12
12
|
width: 100%;
|
13
13
|
flex-direction: row;
|
14
14
|
height: var(--origin-height);
|
15
15
|
}
|
16
|
-
.send-input[data-v-
|
16
|
+
.send-input[data-v-j3lmxz2e]:has(textarea:focus) {
|
17
17
|
height: var(--text-height);
|
18
18
|
}
|
19
|
-
.send-input[data-v-
|
19
|
+
.send-input[data-v-j3lmxz2e] 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-
|
25
|
+
.send-input[data-v-j3lmxz2e] textarea::-webkit-scrollbar {
|
26
26
|
width: 4px;
|
27
27
|
height: 4px;
|
28
28
|
}
|
29
|
-
.send-input[data-v-
|
29
|
+
.send-input[data-v-j3lmxz2e] 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-
|
34
|
+
.send-input[data-v-j3lmxz2e] textarea::placeholder {
|
35
35
|
line-height: 16px;
|
36
36
|
}
|
37
|
-
.send-clear[data-v-
|
37
|
+
.send-clear[data-v-j3lmxz2e] {
|
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-
|
46
|
+
.send-clear[data-v-j3lmxz2e]:hover {
|
47
47
|
color: #313238;
|
48
48
|
}
|
@@ -1,44 +1,7 @@
|
|
1
|
-
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
2
|
-
try {
|
3
|
-
var info = gen[key](arg);
|
4
|
-
var value = info.value;
|
5
|
-
} catch (error) {
|
6
|
-
reject(error);
|
7
|
-
return;
|
8
|
-
}
|
9
|
-
if (info.done) {
|
10
|
-
resolve(value);
|
11
|
-
} else {
|
12
|
-
Promise.resolve(value).then(_next, _throw);
|
13
|
-
}
|
14
|
-
}
|
15
|
-
function _async_to_generator(fn) {
|
16
|
-
return function() {
|
17
|
-
var self = this, args = arguments;
|
18
|
-
return new Promise(function(resolve, reject) {
|
19
|
-
var gen = fn.apply(self, args);
|
20
|
-
function _next(value) {
|
21
|
-
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
|
22
|
-
}
|
23
|
-
function _throw(err) {
|
24
|
-
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
|
25
|
-
}
|
26
|
-
_next(undefined);
|
27
|
-
});
|
28
|
-
};
|
29
|
-
}
|
30
1
|
import { defineComponent as _defineComponent } from 'vue';
|
31
|
-
import {
|
32
|
-
|
33
|
-
key: 0,
|
34
|
-
class: "g-flex-row plus-tag-input"
|
35
|
-
};
|
36
|
-
import { Message } from 'bkui-vue';
|
37
|
-
import { Done, Error } from 'bkui-vue/lib/icon';
|
38
|
-
import { nextTick, onBeforeMount, ref, toRef, watch } from 'vue';
|
39
|
-
import { useFormRule } from '../../hooks/use-form-rule.ts.js';
|
2
|
+
import { resolveComponent as _resolveComponent, openBlock as _openBlock, createBlock as _createBlock } from "vue";
|
3
|
+
import { onBeforeMount, ref, toRef, watch } from 'vue';
|
40
4
|
import { useMetaHttp } from '../../hooks/use-meta-http.ts.js';
|
41
|
-
import { HttpErrorCode, Modules } from '../../types/enum.ts.js';
|
42
5
|
export default /*@__PURE__*/ _defineComponent({
|
43
6
|
props: {
|
44
7
|
modelValue: {},
|
@@ -52,78 +15,11 @@ export default /*@__PURE__*/ _defineComponent({
|
|
52
15
|
setup (__props, { emit: __emit }) {
|
53
16
|
const props = __props;
|
54
17
|
const emits = __emit;
|
55
|
-
const { getTags
|
56
|
-
const { getNameRule, getLengthRule } = useFormRule(props.apiPrefix, toRef(props, 'spaceId'));
|
57
|
-
const isShowEdit = ref(false);
|
58
|
-
const isPulsingTag = ref(false);
|
59
|
-
const tempTagName = ref('');
|
60
|
-
const tagRef = ref();
|
61
|
-
const tagFormRef = ref();
|
18
|
+
const { getTags } = useMetaHttp(props.apiPrefix, toRef(props, 'spaceId'));
|
62
19
|
const isLoadingTag = ref(false);
|
63
20
|
const tags = ref([]);
|
64
|
-
const
|
65
|
-
|
66
|
-
message: '标签名称重复',
|
67
|
-
trigger: 'change'
|
68
|
-
};
|
69
|
-
const tagRules = {
|
70
|
-
tempTagName: [
|
71
|
-
getNameRule(Modules.Tag),
|
72
|
-
checkTagRule,
|
73
|
-
getLengthRule('标签名称', 16)
|
74
|
-
]
|
75
|
-
};
|
76
|
-
const handleShowPlusTag = ()=>{
|
77
|
-
isShowEdit.value = true;
|
78
|
-
nextTick(()=>{
|
79
|
-
tagRef.value.focus();
|
80
|
-
});
|
81
|
-
};
|
82
|
-
const handleTagToggle = (isOpen)=>{
|
83
|
-
if (!isOpen) {
|
84
|
-
handleHidePlusTag();
|
85
|
-
}
|
86
|
-
};
|
87
|
-
const handleSelect = (value)=>{
|
88
|
-
emits('update:modelValue', value);
|
89
|
-
};
|
90
|
-
const handleTagKeyDown = (value, event)=>{
|
91
|
-
if (event.keyCode === 13 || event.key === 'Enter') {
|
92
|
-
handlePlusTag();
|
93
|
-
}
|
94
|
-
};
|
95
|
-
const handlePlusTag = function() {
|
96
|
-
var _ref = _async_to_generator(function*() {
|
97
|
-
try {
|
98
|
-
isPulsingTag.value = true;
|
99
|
-
yield tagFormRef.value.validate();
|
100
|
-
yield plusTag(tempTagName.value);
|
101
|
-
emits('update:modelValue', [
|
102
|
-
...props.modelValue,
|
103
|
-
tempTagName.value
|
104
|
-
]);
|
105
|
-
handleGetTags();
|
106
|
-
handleHidePlusTag();
|
107
|
-
} catch (error) {
|
108
|
-
if (error.code === HttpErrorCode.TagRepeat) {
|
109
|
-
Message({
|
110
|
-
message: '标签已存在,请重新输入',
|
111
|
-
theme: 'error'
|
112
|
-
});
|
113
|
-
} else {
|
114
|
-
console.error(error.message || error);
|
115
|
-
}
|
116
|
-
} finally{
|
117
|
-
isPulsingTag.value = false;
|
118
|
-
}
|
119
|
-
});
|
120
|
-
return function handlePlusTag() {
|
121
|
-
return _ref.apply(this, arguments);
|
122
|
-
};
|
123
|
-
}();
|
124
|
-
const handleHidePlusTag = ()=>{
|
125
|
-
isShowEdit.value = false;
|
126
|
-
tempTagName.value = '';
|
21
|
+
const handleChange = (val)=>{
|
22
|
+
emits('update:modelValue', val);
|
127
23
|
};
|
128
24
|
const handleGetTags = ()=>{
|
129
25
|
isLoadingTag.value = true;
|
@@ -136,105 +32,19 @@ export default /*@__PURE__*/ _defineComponent({
|
|
136
32
|
watch(()=>props.spaceId, handleGetTags);
|
137
33
|
onBeforeMount(handleGetTags);
|
138
34
|
return (_ctx, _cache)=>{
|
139
|
-
const
|
140
|
-
|
141
|
-
const _component_bk_form_item = _resolveComponent("bk-form-item");
|
142
|
-
const _component_bk_form = _resolveComponent("bk-form");
|
143
|
-
const _component_bk_select = _resolveComponent("bk-select");
|
144
|
-
const _directive_bkloading = _resolveDirective("bkloading");
|
145
|
-
return _openBlock(), _createBlock(_component_bk_select, {
|
146
|
-
multiple: "",
|
35
|
+
const _component_bk_cascader = _resolveComponent("bk-cascader");
|
36
|
+
return _openBlock(), _createBlock(_component_bk_cascader, {
|
147
37
|
filterable: "",
|
148
|
-
"
|
149
|
-
"
|
150
|
-
|
38
|
+
"id-key": "tagName",
|
39
|
+
"name-key": "tagName",
|
40
|
+
multiple: true,
|
151
41
|
loading: isLoadingTag.value,
|
152
|
-
|
42
|
+
list: tags.value,
|
153
43
|
"model-value": _ctx.modelValue,
|
154
|
-
|
155
|
-
|
156
|
-
}, {
|
157
|
-
extension: _withCtx(()=>[
|
158
|
-
isShowEdit.value ? (_openBlock(), _createElementBlock("section", _hoisted_1, [
|
159
|
-
_createVNode(_component_bk_form, {
|
160
|
-
class: "plus-tag-form",
|
161
|
-
ref_key: "tagFormRef",
|
162
|
-
ref: tagFormRef,
|
163
|
-
model: {
|
164
|
-
tempTagName: tempTagName.value
|
165
|
-
},
|
166
|
-
rules: tagRules
|
167
|
-
}, {
|
168
|
-
default: _withCtx(()=>[
|
169
|
-
_createVNode(_component_bk_form_item, {
|
170
|
-
class: "plus-tag-form-item",
|
171
|
-
"label-width": 0,
|
172
|
-
property: "tempTagName",
|
173
|
-
"error-display-type": "tooltips",
|
174
|
-
required: ""
|
175
|
-
}, {
|
176
|
-
default: _withCtx(()=>[
|
177
|
-
_createVNode(_component_bk_input, {
|
178
|
-
modelValue: tempTagName.value,
|
179
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event)=>tempTagName.value = $event),
|
180
|
-
maxlength: 20,
|
181
|
-
ref_key: "tagRef",
|
182
|
-
ref: tagRef,
|
183
|
-
placeholder: "请输入标签名称",
|
184
|
-
onKeydown: handleTagKeyDown
|
185
|
-
}, null, 8 /* PROPS */ , [
|
186
|
-
"modelValue"
|
187
|
-
])
|
188
|
-
]),
|
189
|
-
_: 1 /* STABLE */
|
190
|
-
})
|
191
|
-
]),
|
192
|
-
_: 1 /* STABLE */
|
193
|
-
}, 8 /* PROPS */ , [
|
194
|
-
"model"
|
195
|
-
]),
|
196
|
-
_withDirectives(_createVNode(_unref(Done), {
|
197
|
-
class: "plus-tag-done",
|
198
|
-
onClick: handlePlusTag
|
199
|
-
}, null, 512 /* NEED_PATCH */ ), [
|
200
|
-
[
|
201
|
-
_directive_bkloading,
|
202
|
-
{
|
203
|
-
loading: isPulsingTag.value
|
204
|
-
}
|
205
|
-
]
|
206
|
-
]),
|
207
|
-
_createVNode(_unref(Error), {
|
208
|
-
class: "plus-tag-error",
|
209
|
-
onClick: handleHidePlusTag
|
210
|
-
})
|
211
|
-
])) : (_openBlock(), _createElementBlock("span", {
|
212
|
-
key: 1,
|
213
|
-
class: "plus-tag",
|
214
|
-
onClick: handleShowPlusTag
|
215
|
-
}, _cache[1] || (_cache[1] = [
|
216
|
-
_createElementVNode("i", {
|
217
|
-
class: "bkaidev-icon bkaidev-plus-circle"
|
218
|
-
}, null, -1 /* HOISTED */ ),
|
219
|
-
_createTextVNode(" 新建标签 ")
|
220
|
-
])))
|
221
|
-
]),
|
222
|
-
default: _withCtx(()=>[
|
223
|
-
(_openBlock(true), _createElementBlock(_Fragment, null, _renderList(tags.value, (tag)=>{
|
224
|
-
return _openBlock(), _createBlock(_component_bk_option, {
|
225
|
-
key: tag,
|
226
|
-
id: tag,
|
227
|
-
name: tag
|
228
|
-
}, null, 8 /* PROPS */ , [
|
229
|
-
"id",
|
230
|
-
"name"
|
231
|
-
]);
|
232
|
-
}), 128 /* KEYED_FRAGMENT */ ))
|
233
|
-
]),
|
234
|
-
_: 1 /* STABLE */
|
235
|
-
}, 8 /* PROPS */ , [
|
236
|
-
"popover-options",
|
44
|
+
"onUpdate:modelValue": handleChange
|
45
|
+
}, null, 8 /* PROPS */ , [
|
237
46
|
"loading",
|
47
|
+
"list",
|
238
48
|
"model-value"
|
239
49
|
]);
|
240
50
|
};
|
@@ -1,27 +1,27 @@
|
|
1
1
|
|
2
|
-
.plus-tag-input[data-v-
|
2
|
+
.plus-tag-input[data-v-0ojdreiy] {
|
3
3
|
padding: 7px 12px;
|
4
4
|
width: 100%;
|
5
5
|
}
|
6
|
-
.plus-tag-input .plus-tag-done[data-v-
|
6
|
+
.plus-tag-input .plus-tag-done[data-v-0ojdreiy] {
|
7
7
|
cursor: pointer;
|
8
8
|
font-size: 22px;
|
9
9
|
color: #2DCB56;
|
10
10
|
margin: 0 5px 0 10px;
|
11
11
|
}
|
12
|
-
.plus-tag-input .plus-tag-error[data-v-
|
12
|
+
.plus-tag-input .plus-tag-error[data-v-0ojdreiy] {
|
13
13
|
cursor: pointer;
|
14
14
|
font-size: 16px;
|
15
15
|
color: #C4C6CC;
|
16
16
|
margin-right: 5px;
|
17
17
|
}
|
18
|
-
.plus-tag-input .plus-tag-form[data-v-
|
18
|
+
.plus-tag-input .plus-tag-form[data-v-0ojdreiy] {
|
19
19
|
flex: 1;
|
20
20
|
}
|
21
|
-
.plus-tag-input .plus-tag-form-item[data-v-
|
21
|
+
.plus-tag-input .plus-tag-form-item[data-v-0ojdreiy] {
|
22
22
|
margin-bottom: 0;
|
23
23
|
}
|
24
|
-
.plus-tag[data-v-
|
24
|
+
.plus-tag[data-v-0ojdreiy] {
|
25
25
|
cursor: pointer;
|
26
26
|
width: 100%;
|
27
27
|
display: flex;
|
@@ -30,10 +30,10 @@
|
|
30
30
|
font-size: 12px;
|
31
31
|
line-height: 20px;
|
32
32
|
}
|
33
|
-
.plus-tag .bkaidev-plus-circle[data-v-
|
33
|
+
.plus-tag .bkaidev-plus-circle[data-v-0ojdreiy] {
|
34
34
|
font-size: 14px;
|
35
35
|
margin-right: 6px;
|
36
36
|
}
|
37
|
-
.plus-tag[data-v-
|
37
|
+
.plus-tag[data-v-0ojdreiy]:hover {
|
38
38
|
color: #3A84FF;
|
39
39
|
}
|
@@ -1,12 +1,12 @@
|
|
1
1
|
interface IProps {
|
2
|
-
modelValue: string[];
|
2
|
+
modelValue: string[][];
|
3
3
|
apiPrefix: string;
|
4
4
|
spaceId?: string;
|
5
5
|
popoverOptions?: Record<string, unknown>;
|
6
6
|
}
|
7
7
|
declare const _default: import("vue").DefineComponent<IProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
8
|
-
"update:modelValue": (value: string[]) => any;
|
8
|
+
"update:modelValue": (value: string[][]) => any;
|
9
9
|
}, string, import("vue").PublicProps, Readonly<IProps> & Readonly<{
|
10
|
-
"onUpdate:modelValue"?: (value: string[]) => any;
|
10
|
+
"onUpdate:modelValue"?: (value: string[][]) => any;
|
11
11
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
12
12
|
export default _default;
|
@@ -1,10 +1,10 @@
|
|
1
1
|
|
2
|
-
.collapse-title[data-v-
|
2
|
+
.collapse-title[data-v-rd4gjp42] {
|
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-
|
8
|
+
.collapse-title .is-hidden[data-v-rd4gjp42] {
|
9
9
|
transform: rotate(-90deg);
|
10
10
|
}
|
@@ -1,15 +1,15 @@
|
|
1
1
|
|
2
|
-
.content[data-v-
|
2
|
+
.content[data-v-ylw8uhfj] {
|
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-
|
7
|
+
.data-set-edit-slider .value-content[data-v-ylw8uhfj] {
|
8
8
|
padding: 16px;
|
9
9
|
border: 1px solid #DCDEE5;
|
10
10
|
line-height: 22px;
|
11
11
|
}
|
12
|
-
.data-set-edit-slider[data-v-
|
12
|
+
.data-set-edit-slider[data-v-ylw8uhfj] .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-
|
2
|
+
script.__scopeId = "data-v-ylw8uhfj";
|
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-
|
2
|
+
.content[data-v-7je2l142] {
|
3
3
|
padding: 0 24px 0px 32px;
|
4
4
|
height: 100%;
|
5
5
|
}
|
6
|
-
.content .toolbar[data-v-
|
6
|
+
.content .toolbar[data-v-7je2l142] {
|
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-
|
13
|
+
.content .toolbar .record-search[data-v-7je2l142] {
|
14
14
|
width: 360px;
|
15
15
|
}
|
16
|
-
.content .toolbar .record-data-picker[data-v-
|
16
|
+
.content .toolbar .record-data-picker[data-v-7je2l142] {
|
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-
|
2
|
+
script.__scopeId = "data-v-7je2l142";
|
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
|
import script from './index.script.vue.js.js';
|
2
|
-
script.__scopeId = "data-v-
|
2
|
+
script.__scopeId = "data-v-4ef6vl2a";
|
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;
|
package/dist/components/render-dataset/components/operation-record/view-op-result/index.vue.css
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
|
2
|
-
.content[data-v-
|
2
|
+
.content[data-v-qy6ydcmv] {
|
3
3
|
padding: 18px 24px 0;
|
4
4
|
height: 100%;
|
5
5
|
overflow: auto;
|
6
6
|
}
|
7
|
-
.content .value-content[data-v-
|
7
|
+
.content .value-content[data-v-qy6ydcmv] {
|
8
8
|
margin-top: 8px;
|
9
9
|
padding: 16px;
|
10
10
|
border: 1px solid #DCDEE5;
|
package/dist/components/render-dataset/components/operation-record/view-op-result/index.vue.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import script from './index.script.vue.js.js';
|
2
|
-
script.__scopeId = "data-v-
|
2
|
+
script.__scopeId = "data-v-qy6ydcmv";
|
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-
|
2
|
+
.dataset-data-content[data-v-0qfpggwi] {
|
3
3
|
padding: 20px 24px;
|
4
4
|
height: 100%;
|
5
5
|
}
|
6
|
-
.dataset-data-slider[data-v-
|
6
|
+
.dataset-data-slider[data-v-0qfpggwi] .bk-modal-content {
|
7
7
|
scrollbar-gutter: inherit !important;
|
8
8
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import script from './footer.script.vue.js.js';
|
2
|
-
script.__scopeId = "data-v-
|
2
|
+
script.__scopeId = "data-v-2v6can2l";
|
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-
|
2
|
+
.plus-dataset-data[data-v-nr6sogwl] {
|
3
3
|
padding: 20px 24px;
|
4
4
|
}
|
5
|
-
.plus-dataset-sideslider[data-v-
|
5
|
+
.plus-dataset-sideslider[data-v-nr6sogwl] .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-
|
2
|
+
script.__scopeId = "data-v-nr6sogwl";
|
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,5 +1,5 @@
|
|
1
1
|
import script from './index.script.vue.js';
|
2
|
-
script.__scopeId = "data-v-
|
2
|
+
script.__scopeId = "data-v-36m7wkj7";
|
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;
|