dtable-ui-component 4.3.1-alpha3 → 4.3.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dtable-ui-component",
3
- "version": "4.3.1-alpha3",
3
+ "version": "4.3.2",
4
4
  "main": "./lib/index.js",
5
5
  "dependencies": {
6
6
  "@seafile/react-image-lightbox": "2.0.5",
@@ -1,29 +0,0 @@
1
- import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
2
- export var MenuSelectStyle = {
3
- option: function option(provided, state) {
4
- var isDisabled = state.isDisabled,
5
- isFocused = state.isFocused;
6
- return _objectSpread(_objectSpread({}, provided), {}, {
7
- fontSize: '13px',
8
- color: '#212529',
9
- cursor: isDisabled ? 'default' : 'pointer',
10
- backgroundColor: isFocused ? '#f5f5f5' : '#fff',
11
- '.header-icon .dtable-font': {
12
- color: '#aaa'
13
- }
14
- });
15
- },
16
- control: function control(provided) {
17
- return _objectSpread(_objectSpread({}, provided), {}, {
18
- fontSize: '14px',
19
- cursor: 'pointer',
20
- lineHeight: '1.5'
21
- });
22
- },
23
- menuPortal: function menuPortal(base) {
24
- return _objectSpread(_objectSpread({}, base), {}, {
25
- zIndex: 9999
26
- });
27
- },
28
- indicatorSeparator: function indicatorSeparator() {}
29
- };