vft 0.0.500 → 0.0.501
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/index.css +1 -1
- package/es/components/autocomplete/autocomplete.vue.d.ts +2 -2
- package/es/components/autocomplete/index.d.ts +6 -6
- package/es/components/button/index.d.ts +9 -9
- package/es/components/image-viewer/image-viewer.vue.d.ts +2 -0
- package/es/components/image-viewer/image-viewer.vue2.js +89 -85
- package/es/components/image-viewer/index.d.ts +18 -0
- package/es/components/popconfirm/index.d.ts +15 -15
- package/es/components/popconfirm/popconfirm.vue.d.ts +1 -1
- package/es/components/select/index.d.ts +4 -4
- package/es/components/select/select.vue.d.ts +4 -4
- package/es/components/select/useSelect.d.ts +4 -4
- package/es/components/super-form/super-form-item.vue2.js +313 -294
- package/es/components/table/field.js +32 -33
- package/es/components/tree-select/select.js +24 -24
- package/es/components/tree-select/tree-select-option.js +18 -7
- package/es/components/tree-select/tree-select.vue2.js +28 -26
- package/es/components/tree-select/tree.js +27 -26
- package/es/package.json.d.ts +1 -1
- package/es/package.json.js +1 -1
- package/lib/components/autocomplete/autocomplete.vue.d.ts +2 -2
- package/lib/components/autocomplete/index.d.ts +6 -6
- package/lib/components/button/index.d.ts +9 -9
- package/lib/components/image-viewer/image-viewer.vue.d.ts +2 -0
- package/lib/components/image-viewer/image-viewer.vue2.cjs +1 -1
- package/lib/components/image-viewer/index.d.ts +18 -0
- package/lib/components/popconfirm/index.d.ts +15 -15
- package/lib/components/popconfirm/popconfirm.vue.d.ts +1 -1
- package/lib/components/select/index.d.ts +4 -4
- package/lib/components/select/select.vue.d.ts +4 -4
- package/lib/components/select/useSelect.d.ts +4 -4
- package/lib/components/super-form/super-form-item.vue2.cjs +1 -1
- package/lib/components/table/field.cjs +1 -1
- package/lib/components/tree-select/select.cjs +1 -1
- package/lib/components/tree-select/tree-select-option.cjs +1 -1
- package/lib/components/tree-select/tree-select.vue2.cjs +1 -1
- package/lib/components/tree-select/tree.cjs +1 -1
- package/lib/package.json.cjs +1 -1
- package/lib/package.json.d.ts +1 -1
- package/package.json +5 -5
- package/theme-style/index.css +1 -1
- package/theme-style/src/tree-select.scss +8 -0
- package/theme-style/vft-tree-select.css +1 -1
- package/web-types.json +1 -1
|
@@ -46,5 +46,13 @@
|
|
|
46
46
|
.#{$namespace}-select-dropdown {
|
|
47
47
|
overflow-x: hidden;
|
|
48
48
|
}
|
|
49
|
+
|
|
50
|
+
// Add selected state styling for tree-select-option
|
|
51
|
+
.vft-tree-select-option {
|
|
52
|
+
&.is-selected {
|
|
53
|
+
color: getCssVar('primary-color');
|
|
54
|
+
font-weight: bold;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
49
57
|
}
|
|
50
58
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.vft-tree-select{--vft-tree-node-hover-bg-color:var(--vft-fill-color-light);--vft-tree-text-color:var(--vft-text-regular-color);--vft-tree-expand-icon-color:var(--vft-text-placeholder-color)}.vft-tree-select__popper{border-radius:10px}.vft-tree-select__popper .vft-tree-node__expand-icon{margin-left:8px}.vft-tree-select__popper .vft-tree-node.is-checked>.vft-tree-node__content .vft-select-dropdown__item.selected::after{content:none}.vft-tree-select__popper .vft-select-dropdown__list>.vft-select-dropdown__item{padding-left:32px}.vft-tree-select__popper .vft-select-dropdown__item{flex:1;height:20px;padding-left:0;background:0 0!important;line-height:20px}.vft-tree-select__popper .vft-select-dropdown__footer{border-top:none}.vft-tree-select__popper .vft-select-dropdown{overflow-x:hidden}
|
|
1
|
+
.vft-tree-select{--vft-tree-node-hover-bg-color:var(--vft-fill-color-light);--vft-tree-text-color:var(--vft-text-regular-color);--vft-tree-expand-icon-color:var(--vft-text-placeholder-color)}.vft-tree-select__popper{border-radius:10px}.vft-tree-select__popper .vft-tree-node__expand-icon{margin-left:8px}.vft-tree-select__popper .vft-tree-node.is-checked>.vft-tree-node__content .vft-select-dropdown__item.selected::after{content:none}.vft-tree-select__popper .vft-select-dropdown__list>.vft-select-dropdown__item{padding-left:32px}.vft-tree-select__popper .vft-select-dropdown__item{flex:1;height:20px;padding-left:0;background:0 0!important;line-height:20px}.vft-tree-select__popper .vft-select-dropdown__footer{border-top:none}.vft-tree-select__popper .vft-select-dropdown{overflow-x:hidden}.vft-tree-select__popper .vft-tree-select-option.is-selected{color:var(--vft-primary-color);font-weight:700}
|