@douyinfe/semi-ui 2.53.2 → 2.53.3-alpha.0
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/umd/semi-ui.js +1 -3
- package/dist/umd/semi-ui.js.map +1 -1
- package/dist/umd/semi-ui.min.js +1 -1
- package/dist/umd/semi-ui.min.js.map +1 -1
- package/lib/cjs/anchor/index.d.ts +1 -1
- package/lib/cjs/autoComplete/index.d.ts +1 -1
- package/lib/cjs/button/Button.d.ts +1 -1
- package/lib/cjs/button/buttonGroup.d.ts +1 -1
- package/lib/cjs/button/index.d.ts +1 -1
- package/lib/cjs/datePicker/datePicker.d.ts +1 -1
- package/lib/cjs/form/baseForm.d.ts +2 -2
- package/lib/cjs/form/field.d.ts +2 -2
- package/lib/cjs/input/index.d.ts +1 -1
- package/lib/cjs/input/inputGroup.d.ts +1 -1
- package/lib/cjs/modal/confirm.d.ts +8 -8
- package/lib/cjs/rating/index.d.ts +1 -1
- package/lib/cjs/rating/item.d.ts +1 -1
- package/lib/cjs/switch/index.d.ts +1 -1
- package/lib/cjs/table/Table.d.ts +2 -2
- package/lib/cjs/table/index.d.ts +1 -1
- package/lib/cjs/tagInput/index.d.ts +1 -1
- package/lib/cjs/timePicker/TimePicker.d.ts +1 -1
- package/lib/cjs/timePicker/index.d.ts +1 -1
- package/lib/cjs/typography/title.d.ts +2 -2
- package/lib/es/anchor/index.d.ts +1 -1
- package/lib/es/autoComplete/index.d.ts +1 -1
- package/lib/es/button/Button.d.ts +1 -1
- package/lib/es/button/buttonGroup.d.ts +1 -1
- package/lib/es/button/index.d.ts +1 -1
- package/lib/es/datePicker/datePicker.d.ts +1 -1
- package/lib/es/form/baseForm.d.ts +2 -2
- package/lib/es/form/field.d.ts +2 -2
- package/lib/es/input/index.d.ts +1 -1
- package/lib/es/input/inputGroup.d.ts +1 -1
- package/lib/es/modal/confirm.d.ts +8 -8
- package/lib/es/rating/index.d.ts +1 -1
- package/lib/es/rating/item.d.ts +1 -1
- package/lib/es/switch/index.d.ts +1 -1
- package/lib/es/table/Table.d.ts +2 -2
- package/lib/es/table/index.d.ts +1 -1
- package/lib/es/tagInput/index.d.ts +1 -1
- package/lib/es/timePicker/TimePicker.d.ts +1 -1
- package/lib/es/timePicker/index.d.ts +1 -1
- package/lib/es/typography/title.d.ts +2 -2
- package/package.json +8 -8
package/dist/umd/semi-ui.js
CHANGED
|
@@ -78682,7 +78682,7 @@ class TableFoundation extends foundation {
|
|
|
78682
78682
|
if (defaultExpandAllRows || expandAllRows) {
|
|
78683
78683
|
this._addNoDuplicatedItemsToArr(expandedRowKeys, this.getAllRowKeys(dataSource), groups && isMap_default()(groups) && groups.size ? Array.from(groups.keys()) : []);
|
|
78684
78684
|
} else if (defaultExpandAllGroupRows || expandAllGroupRows) {
|
|
78685
|
-
this._addNoDuplicatedItemsToArr(expandedRowKeys, groups && isMap_default()(groups) && groups.size ? Array.from(groups.keys()) : []);
|
|
78685
|
+
this._addNoDuplicatedItemsToArr(expandedRowKeys, propExpandedRowKeys, groups && isMap_default()(groups) && groups.size ? Array.from(groups.keys()) : []);
|
|
78686
78686
|
} else if (Array.isArray(defaultExpandedRowKeys) && defaultExpandedRowKeys.length) {
|
|
78687
78687
|
this._addNoDuplicatedItemsToArr(expandedRowKeys, defaultExpandedRowKeys);
|
|
78688
78688
|
} else if (Array.isArray(propExpandedRowKeys) && propExpandedRowKeys.length) {
|
|
@@ -78968,8 +78968,6 @@ class TableFoundation extends foundation {
|
|
|
78968
78968
|
}
|
|
78969
78969
|
/**
|
|
78970
78970
|
* Add non-repeating elements to the array itself
|
|
78971
|
-
* @param {Array} srcArr
|
|
78972
|
-
* @param {Object} objArrs
|
|
78973
78971
|
*/
|
|
78974
78972
|
_addNoDuplicatedItemsToArr() {
|
|
78975
78973
|
let srcArr = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|