@dao-style/biz 0.0.0-0-e2dcdb3 → 0.0.0-0-adbab69
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/instance-cluster/src/InstanceCluster.vue2.js +3 -3
- package/dist/components/instance-cluster/src/InstanceCluster.vue2.mjs +3 -3
- package/dist/components/instance-namespace/src/InstanceNamespace.vue2.js +3 -3
- package/dist/components/instance-namespace/src/InstanceNamespace.vue2.mjs +3 -3
- package/dist/group-mapping.json +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
|
@@ -26,10 +26,10 @@ const _sfc_main = vue.defineComponent({
|
|
|
26
26
|
}
|
|
27
27
|
return baseSchema;
|
|
28
28
|
});
|
|
29
|
-
const formatOptions = (
|
|
29
|
+
const formatOptions = vue.computed(() => props2.options.map((item) => ({
|
|
30
30
|
label: item,
|
|
31
31
|
value: item
|
|
32
|
-
}));
|
|
32
|
+
})));
|
|
33
33
|
const defaultControlProps = {
|
|
34
34
|
search: true,
|
|
35
35
|
class: "default-form-width"
|
|
@@ -37,7 +37,7 @@ const _sfc_main = vue.defineComponent({
|
|
|
37
37
|
const actualControlProps = vue.computed(() => ({
|
|
38
38
|
...defaultControlProps,
|
|
39
39
|
...props2.controlProps,
|
|
40
|
-
options: formatOptions
|
|
40
|
+
options: formatOptions.value
|
|
41
41
|
}));
|
|
42
42
|
return {
|
|
43
43
|
actualLabel,
|
|
@@ -25,10 +25,10 @@ const _sfc_main = defineComponent({
|
|
|
25
25
|
}
|
|
26
26
|
return baseSchema;
|
|
27
27
|
});
|
|
28
|
-
const formatOptions = (
|
|
28
|
+
const formatOptions = computed(() => props.options.map((item) => ({
|
|
29
29
|
label: item,
|
|
30
30
|
value: item
|
|
31
|
-
}));
|
|
31
|
+
})));
|
|
32
32
|
const defaultControlProps = {
|
|
33
33
|
search: true,
|
|
34
34
|
class: "default-form-width"
|
|
@@ -36,7 +36,7 @@ const _sfc_main = defineComponent({
|
|
|
36
36
|
const actualControlProps = computed(() => ({
|
|
37
37
|
...defaultControlProps,
|
|
38
38
|
...props.controlProps,
|
|
39
|
-
options: formatOptions
|
|
39
|
+
options: formatOptions.value
|
|
40
40
|
}));
|
|
41
41
|
return {
|
|
42
42
|
actualLabel,
|
|
@@ -26,10 +26,10 @@ const _sfc_main = vue.defineComponent({
|
|
|
26
26
|
}
|
|
27
27
|
return baseSchema;
|
|
28
28
|
});
|
|
29
|
-
const formatOptions = (
|
|
29
|
+
const formatOptions = vue.computed(() => props2.options.map((item) => ({
|
|
30
30
|
label: item,
|
|
31
31
|
value: item
|
|
32
|
-
}));
|
|
32
|
+
})));
|
|
33
33
|
const defaultControlProps = {
|
|
34
34
|
search: true,
|
|
35
35
|
class: "default-form-width"
|
|
@@ -37,7 +37,7 @@ const _sfc_main = vue.defineComponent({
|
|
|
37
37
|
const actualControlProps = vue.computed(() => ({
|
|
38
38
|
...defaultControlProps,
|
|
39
39
|
...props2.controlProps,
|
|
40
|
-
options: formatOptions
|
|
40
|
+
options: formatOptions.value
|
|
41
41
|
}));
|
|
42
42
|
return {
|
|
43
43
|
actualLabel,
|
|
@@ -25,10 +25,10 @@ const _sfc_main = defineComponent({
|
|
|
25
25
|
}
|
|
26
26
|
return baseSchema;
|
|
27
27
|
});
|
|
28
|
-
const formatOptions = (
|
|
28
|
+
const formatOptions = computed(() => props.options.map((item) => ({
|
|
29
29
|
label: item,
|
|
30
30
|
value: item
|
|
31
|
-
}));
|
|
31
|
+
})));
|
|
32
32
|
const defaultControlProps = {
|
|
33
33
|
search: true,
|
|
34
34
|
class: "default-form-width"
|
|
@@ -36,7 +36,7 @@ const _sfc_main = defineComponent({
|
|
|
36
36
|
const actualControlProps = computed(() => ({
|
|
37
37
|
...defaultControlProps,
|
|
38
38
|
...props.controlProps,
|
|
39
|
-
options: formatOptions
|
|
39
|
+
options: formatOptions.value
|
|
40
40
|
}));
|
|
41
41
|
return {
|
|
42
42
|
actualLabel,
|
package/dist/group-mapping.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"instance-
|
|
1
|
+
{"instance-name":"components/instance-name","instance-cluster":"components/instance-cluster","instance-monitor-interval":"components/instance-monitor-interval","instance-description":"components/instance-description","instance-storage-class":"components/instance-storage-class","instance-namespace":"components/instance-namespace","resource-config":"components/resource-config"}
|
package/dist/style.css
CHANGED
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
}
|
|
9
9
|
.dao-biz-instance-installation-env .insight-checkbox {
|
|
10
10
|
margin-top: 15px;
|
|
11
|
+
}.dao-biz-instance-name {
|
|
12
|
+
width: 400px;
|
|
11
13
|
}.default-form-width {
|
|
12
14
|
width: 400px !important;
|
|
13
15
|
}.dao-instance-monitor-interval__unit.dao-select {
|
|
@@ -64,6 +66,4 @@
|
|
|
64
66
|
|
|
65
67
|
.dao-resource-config .request-en .dao-input-prepend {
|
|
66
68
|
width: 80px;
|
|
67
|
-
}.dao-biz-instance-name {
|
|
68
|
-
width: 400px;
|
|
69
69
|
}
|