@douyinfe/semi-foundation 2.45.3-alpha.1 → 2.45.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.
|
@@ -941,6 +941,7 @@ class SelectFoundation extends _foundation.default {
|
|
|
941
941
|
delete newOption._show;
|
|
942
942
|
delete newOption._selected;
|
|
943
943
|
delete newOption._scrollIndex;
|
|
944
|
+
delete newOption._keyInJsx;
|
|
944
945
|
if ('_keyInOptionList' in newOption) {
|
|
945
946
|
newOption.key = newOption._keyInOptionList;
|
|
946
947
|
delete newOption._keyInOptionList;
|
|
@@ -932,6 +932,7 @@ export default class SelectFoundation extends BaseFoundation {
|
|
|
932
932
|
delete newOption._show;
|
|
933
933
|
delete newOption._selected;
|
|
934
934
|
delete newOption._scrollIndex;
|
|
935
|
+
delete newOption._keyInJsx;
|
|
935
936
|
if ('_keyInOptionList' in newOption) {
|
|
936
937
|
newOption.key = newOption._keyInOptionList;
|
|
937
938
|
delete newOption._keyInOptionList;
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@douyinfe/semi-foundation",
|
|
3
|
-
"version": "2.45.3
|
|
3
|
+
"version": "2.45.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build:lib": "node ./scripts/compileLib.js",
|
|
7
7
|
"prepublishOnly": "npm run build:lib"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@douyinfe/semi-animation": "2.45.3
|
|
10
|
+
"@douyinfe/semi-animation": "2.45.3",
|
|
11
11
|
"async-validator": "^3.5.0",
|
|
12
12
|
"classnames": "^2.2.6",
|
|
13
13
|
"date-fns": "^2.29.3",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"*.scss",
|
|
24
24
|
"*.css"
|
|
25
25
|
],
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "53c1fbfd1cc2dce6195a49a2797d3d05354d3d87",
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@babel/plugin-transform-runtime": "^7.15.8",
|
|
29
29
|
"@babel/preset-env": "^7.15.8",
|
package/select/foundation.ts
CHANGED
|
@@ -939,6 +939,8 @@ export default class SelectFoundation extends BaseFoundation<SelectAdapter> {
|
|
|
939
939
|
delete newOption._show;
|
|
940
940
|
delete newOption._selected;
|
|
941
941
|
delete newOption._scrollIndex;
|
|
942
|
+
delete newOption._keyInJsx;
|
|
943
|
+
|
|
942
944
|
if ('_keyInOptionList' in newOption) {
|
|
943
945
|
newOption.key = newOption._keyInOptionList;
|
|
944
946
|
delete newOption._keyInOptionList;
|