@zohodesk/components 1.0.0-alpha-232 → 1.0.0-alpha-233
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/README.md
CHANGED
|
@@ -32,6 +32,10 @@ In this Package, we Provide Some Basic Components to Build Web App
|
|
|
32
32
|
- TextBoxIcon
|
|
33
33
|
- Tooltip
|
|
34
34
|
|
|
35
|
+
# 1.0.0-alpha-233
|
|
36
|
+
|
|
37
|
+
- MultiSelect => On press tab key selecting option removed
|
|
38
|
+
|
|
35
39
|
# 1.0.0-alpha-232
|
|
36
40
|
|
|
37
41
|
- ListContainer => Mobile Responsive Implemented
|
|
@@ -422,11 +422,6 @@ export class MultiSelectComponent extends React.Component {
|
|
|
422
422
|
}
|
|
423
423
|
} else if (keyCode === 27) {// this.handlePopupClose(e);
|
|
424
424
|
} else if (keyCode === 9) {
|
|
425
|
-
const selectedOption = suggestions[hoverOption] || {};
|
|
426
|
-
const {
|
|
427
|
-
id
|
|
428
|
-
} = selectedOption;
|
|
429
|
-
isPopupOpen && !getIsEmptyValue(id) && this.handleSelectOption(id, e);
|
|
430
425
|
this.handlePopupClose(e);
|
|
431
426
|
}
|
|
432
427
|
}
|
|
@@ -512,10 +512,6 @@ var MultiSelectComponent = /*#__PURE__*/function (_React$Component) {
|
|
|
512
512
|
}
|
|
513
513
|
} else if (keyCode === 27) {// this.handlePopupClose(e);
|
|
514
514
|
} else if (keyCode === 9) {
|
|
515
|
-
var _selectedOption = suggestions[hoverOption] || {};
|
|
516
|
-
|
|
517
|
-
var _id = _selectedOption.id;
|
|
518
|
-
isPopupOpen && !(0, _Common.getIsEmptyValue)(_id) && this.handleSelectOption(_id, e);
|
|
519
515
|
this.handlePopupClose(e);
|
|
520
516
|
}
|
|
521
517
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/components",
|
|
3
|
-
"version": "1.0.0-alpha-
|
|
3
|
+
"version": "1.0.0-alpha-233",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"module": "es/index.js",
|
|
6
6
|
"jsnext:main": "es/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"docs": "npm run dubCheck && react-cli docs",
|
|
21
21
|
"build": " react-cli build:component:cmjs",
|
|
22
22
|
"buildlocal": " react-cli build:component:cmjs && npm run rtl",
|
|
23
|
-
"build:dev": "npm run build:es --module:mode=dev -- -w",
|
|
23
|
+
"build:dev": "npm run clean && npm run build:variables && npm run build && npm run build:es --module:mode=dev -- -w",
|
|
24
24
|
"build:es": "react-cli build:library:es",
|
|
25
25
|
"build:css:umd": "npm run clean && npm run init && react-cli build:css:umd",
|
|
26
26
|
"coverage": "react-cli coverage",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@zohodesk/variables": "1.0.0-beta.29",
|
|
38
38
|
"@zohodesk/icons": "1.0.0-beta.92",
|
|
39
39
|
"@zohodesk/virtualizer": "1.0.3",
|
|
40
|
-
"velocity-react": "
|
|
40
|
+
"velocity-react": "1.4.3",
|
|
41
41
|
"react-sortable-hoc": "^0.8.3",
|
|
42
42
|
"@zohodesk/svg": "1.0.0-beta.41"
|
|
43
43
|
},
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"selectn": "1.1.2"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"@zohodesk/icons": "
|
|
52
|
-
"@zohodesk/variables": "
|
|
53
|
-
"@zohodesk/svg": "
|
|
54
|
-
"@zohodesk/virtualizer": "
|
|
55
|
-
"velocity-react": "
|
|
51
|
+
"@zohodesk/icons": "1.0.0-beta.92",
|
|
52
|
+
"@zohodesk/variables": "1.0.0-beta.29",
|
|
53
|
+
"@zohodesk/svg": "1.0.0-beta.41",
|
|
54
|
+
"@zohodesk/virtualizer": "1.0.3",
|
|
55
|
+
"velocity-react": "1.4.3",
|
|
56
56
|
"react-sortable-hoc": "^0.8.3"
|
|
57
57
|
},
|
|
58
58
|
"react-cli": {
|
|
@@ -60,6 +60,7 @@
|
|
|
60
60
|
"runner": "preprocess/index.js"
|
|
61
61
|
},
|
|
62
62
|
"docs": {
|
|
63
|
+
"disableES5Transpile": true,
|
|
63
64
|
"componentFolder": "./src",
|
|
64
65
|
"cssUniqueness": "false",
|
|
65
66
|
"rtlExclude": [
|