three-trees-ui 1.0.19 → 1.0.21
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/lib/three-trees-ui.common.js +125 -243
- package/lib/three-trees-ui.css +1 -1
- package/lib/three-trees-ui.umd.js +125 -243
- package/lib/three-trees-ui.umd.min.js +1 -1
- package/package.json +1 -1
- package/packages/Checkbox/src/main.vue +1 -1
- package/packages/FieldTail/src/main.vue +3 -2
- package/packages/OnlineForm/src/Form.vue +2 -3
- package/packages/Radio/src/main.vue +1 -0
package/package.json
CHANGED
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
<slot name="append" class="el-input-group__append"></slot>
|
|
31
31
|
</span>
|
|
32
32
|
</div>
|
|
33
|
-
<
|
|
33
|
+
<div
|
|
34
|
+
class="field-tail"
|
|
34
35
|
v-if="
|
|
35
36
|
readonly &&
|
|
36
37
|
tagFormatValue.constructor == Array &&
|
|
@@ -50,7 +51,7 @@
|
|
|
50
51
|
</el-tag>
|
|
51
52
|
</el-tooltip>
|
|
52
53
|
</template>
|
|
53
|
-
</
|
|
54
|
+
</div>
|
|
54
55
|
</span>
|
|
55
56
|
</template>
|
|
56
57
|
<script>
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
</template>
|
|
27
27
|
<script>
|
|
28
28
|
import utils from '@/utils.js'
|
|
29
|
-
import onlineHottable from '@/mixins/onlineHottable.js'
|
|
29
|
+
// import onlineHottable from '@/mixins/onlineHottable.js'
|
|
30
30
|
import onlineSubtable from '@/mixins/onlineSubtable.js'
|
|
31
31
|
import regionValidator from '@/mixins/regionValidator.js'
|
|
32
32
|
import emitter from '@/mixins/emitter.js'
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
this.loadStatus = 1
|
|
142
142
|
Vue.component('ht-runtime-template', {
|
|
143
143
|
componentName: 'HtRuntimeTemplate',
|
|
144
|
-
mixins: [
|
|
144
|
+
mixins: [onlineSubtable],
|
|
145
145
|
props: {
|
|
146
146
|
html: String,
|
|
147
147
|
data: Object,
|
|
@@ -588,7 +588,6 @@
|
|
|
588
588
|
::v-deep .el-row--flex {
|
|
589
589
|
margin-left: 0 !important;
|
|
590
590
|
margin-right: 0 !important;
|
|
591
|
-
margin-bottom: 32px;
|
|
592
591
|
.el-col[style*='border'] {
|
|
593
592
|
.el-form-item {
|
|
594
593
|
margin: 24px 24px 22px;
|