vxe-table 4.18.12 → 4.18.13
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/es/index.css +1 -1
- package/es/index.min.css +1 -1
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/table/src/table.js +2 -2
- package/es/table/style.css +48 -18
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/es/vxe-table/style.css +48 -18
- package/lib/index.common.js +1 -2
- package/lib/index.css +1 -1
- package/lib/index.min.css +1 -1
- package/lib/index.umd.js +360 -176
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/table/src/table.js +1 -1
- package/lib/table/src/table.min.js +1 -1
- package/lib/table/style/style.css +48 -18
- package/lib/ui/index.js +1 -1
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/lib/v-x-e-table/index.js +1 -2
- package/lib/v-x-e-table/index.min.js +1 -1
- package/lib/vxe-colgroup/index.js +1 -2
- package/lib/vxe-colgroup/index.min.js +1 -1
- package/lib/vxe-column/index.js +1 -2
- package/lib/vxe-column/index.min.js +1 -1
- package/lib/vxe-grid/index.js +1 -2
- package/lib/vxe-grid/index.min.js +1 -1
- package/lib/vxe-table/index.js +1 -2
- package/lib/vxe-table/index.min.js +1 -1
- package/lib/vxe-table/style/style.css +48 -18
- package/lib/vxe-toolbar/index.js +1 -2
- package/lib/vxe-toolbar/index.min.js +1 -1
- package/lib/vxe-ui/index.js +1 -2
- package/lib/vxe-ui/index.min.js +1 -1
- package/lib/vxe-v-x-e-table/index.js +1 -2
- package/lib/vxe-v-x-e-table/index.min.js +1 -1
- package/package.json +3 -2
- package/packages/table/src/table.ts +2 -2
- /package/es/{iconfont.1776048383631.ttf → iconfont.1776926463538.ttf} +0 -0
- /package/es/{iconfont.1776048383631.woff → iconfont.1776926463538.woff} +0 -0
- /package/es/{iconfont.1776048383631.woff2 → iconfont.1776926463538.woff2} +0 -0
- /package/lib/{iconfont.1776048383631.ttf → iconfont.1776926463538.ttf} +0 -0
- /package/lib/{iconfont.1776048383631.woff → iconfont.1776926463538.woff} +0 -0
- /package/lib/{iconfont.1776048383631.woff2 → iconfont.1776926463538.woff2} +0 -0
|
@@ -7300,12 +7300,12 @@ export default defineVxeComponent({
|
|
|
7300
7300
|
* @param {Boolean} expanded 是否展开
|
|
7301
7301
|
*/
|
|
7302
7302
|
setAllTreeExpand (expanded: boolean) {
|
|
7303
|
-
const {
|
|
7303
|
+
const { tableFullTreeData } = internalData
|
|
7304
7304
|
const treeOpts = computeTreeOpts.value
|
|
7305
7305
|
const { transform, lazy } = treeOpts
|
|
7306
7306
|
const childrenField = treeOpts.children || treeOpts.childrenField
|
|
7307
7307
|
const expandeds: any[] = []
|
|
7308
|
-
XEUtils.eachTree(
|
|
7308
|
+
XEUtils.eachTree(tableFullTreeData, (row) => {
|
|
7309
7309
|
const rowChildren = row[childrenField]
|
|
7310
7310
|
if (lazy || (rowChildren && rowChildren.length)) {
|
|
7311
7311
|
expandeds.push(row)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|