ai.touchui-vue 1.31.1 → 1.31.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.
- package/lib/ai.touchui-vue.common.js +127 -108
- package/lib/date-picker.js +7 -7
- package/lib/dialog.js +4 -2
- package/lib/form.js +8 -8
- package/lib/header.js +4 -9
- package/lib/index.js +1 -1
- package/lib/tab.js +11 -2
- package/lib/table.js +57 -45
- package/lib/theme/css/theme/B-Design.css +1 -1
- package/lib/theme/css/theme/aiplan.css +1 -1
- package/lib/theme/css/theme/aiplangd.css +1 -1
- package/lib/theme/css/theme/chbn.css +1 -1
- package/lib/theme/css/theme/default.css +1 -1
- package/lib/theme/css/theme/dt.css +1 -1
- package/lib/theme/css/theme/ecloud.css +1 -1
- package/lib/theme/css/theme/hongkong.css +1 -1
- package/lib/theme/css/theme/narrow.css +1 -1
- package/lib/theme/css/theme/sdpf.css +1 -1
- package/lib/theme/css/theme/upc.css +1 -1
- package/lib/theme/css/theme/website.css +1 -1
- package/lib/theme/css/theme/zj.css +1 -1
- package/lib/tree.js +10 -9
- package/package.json +2 -2
- package/packages/date-picker/src/date-picker.vue +1 -1
- package/packages/dialog/src/dialog.vue +2 -0
- package/packages/form/src/form-item.vue +1 -1
- package/packages/header/src/header.vue +2 -3
- package/packages/tab/src/tab.vue +9 -0
- package/packages/table/src/table-head.vue +8 -5
- package/packages/table/src/table.vue +26 -23
- package/packages/theme/lib/css/theme/B-Design.css +1 -1
- package/packages/theme/lib/css/theme/aiplan.css +1 -1
- package/packages/theme/lib/css/theme/aiplangd.css +1 -1
- package/packages/theme/lib/css/theme/chbn.css +1 -1
- package/packages/theme/lib/css/theme/default.css +1 -1
- package/packages/theme/lib/css/theme/dt.css +1 -1
- package/packages/theme/lib/css/theme/ecloud.css +1 -1
- package/packages/theme/lib/css/theme/hongkong.css +1 -1
- package/packages/theme/lib/css/theme/narrow.css +1 -1
- package/packages/theme/lib/css/theme/sdpf.css +1 -1
- package/packages/theme/lib/css/theme/upc.css +1 -1
- package/packages/theme/lib/css/theme/website.css +1 -1
- package/packages/theme/lib/css/theme/zj.css +1 -1
- package/packages/theme/src/less/component/dialog.less +1 -1
- package/packages/theme/src/less/component/tab.less +3 -0
- package/packages/theme/src/less/component/table.less +12 -2
- package/packages/tree/src/treeItem.vue +1 -1
- package/src/index.js +1 -1
|
@@ -24,9 +24,19 @@
|
|
|
24
24
|
tr th .to-ellipsis { vertical-align:top;}
|
|
25
25
|
tr th.sort {
|
|
26
26
|
cursor:default; position:relative;
|
|
27
|
-
|
|
28
|
-
float:right;
|
|
27
|
+
.to-table-sorticon {
|
|
28
|
+
float:right; margin-top:-0.4*@gap; margin-bottom:-0.6*@gap;
|
|
29
|
+
.to-icon-fold,
|
|
30
|
+
.to-icon-unfold {
|
|
31
|
+
display:block; color:@fg-light-8; transform:scale(0.8);
|
|
32
|
+
}
|
|
33
|
+
.to-icon-unfold { margin-top:-0.75em;}
|
|
34
|
+
&.type-desc .to-icon-unfold { color:@fg;}
|
|
35
|
+
&.type-asc .to-icon-fold { color:@fg;}
|
|
29
36
|
}
|
|
37
|
+
// > [class*="to-icon"] {
|
|
38
|
+
// float:right; transform:scale(0.8); color:@fg-light-5;
|
|
39
|
+
// }
|
|
30
40
|
}
|
|
31
41
|
tr th.configTh { width:0; padding:0 0.5*@gap; text-align:center;}
|
|
32
42
|
tr td.action {
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
on: highlightCurrent && node.value === currentNodeKey
|
|
15
15
|
}"
|
|
16
16
|
>
|
|
17
|
-
<div ref="node" v-tip.fg.right="!(node.children && node.children.length) && node.parent === '__root__' ? node.label:''" class="content" @mouseenter="handleNodeEnter(node,nodeIndex)" @mouseleave="handleNodeLeave(node)">
|
|
17
|
+
<div ref="node" v-tip.fg.right="!(node.children && node.children.length) && node.parent === '__root__' && ToTree.type === 'icon' ? node.label:''" class="content" @mouseenter="handleNodeEnter(node,nodeIndex)" @mouseleave="handleNodeLeave(node)">
|
|
18
18
|
<div class="ico" :style="setIconStyle" @click.stop="handleExpand(node)"><span></span></div>
|
|
19
19
|
|
|
20
20
|
<!--子节点展示选择框,父节点不展示-->
|