@lemon-fe/components 1.1.5-alpha.1 → 1.1.5
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/filter/index.js +2 -5
- package/es/filter/index.less +5 -0
- package/es/select-view/index.js +0 -1
- package/es/state/index.less +8 -0
- package/package.json +2 -2
package/es/filter/index.js
CHANGED
|
@@ -463,11 +463,8 @@ function Filter(props) {
|
|
|
463
463
|
},
|
|
464
464
|
className: prefix('tab-bar')
|
|
465
465
|
}), /*#__PURE__*/React.createElement(FormLayout, {
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
maxHeight: 72,
|
|
469
|
-
overflow: 'hidden'
|
|
470
|
-
} : undefined
|
|
466
|
+
className: classNames(_defineProperty({}, prefix('pending'), !width)),
|
|
467
|
+
direction: "row"
|
|
471
468
|
}, data.map(function (item) {
|
|
472
469
|
if (!preserveFields && isFieldHidden(item)) {
|
|
473
470
|
return null;
|
package/es/filter/index.less
CHANGED
package/es/select-view/index.js
CHANGED
|
@@ -181,7 +181,6 @@ export default function SelectView(props) {
|
|
|
181
181
|
return result;
|
|
182
182
|
}, [selectedColumns, readOnly]);
|
|
183
183
|
var content;
|
|
184
|
-
console.log(cParams);
|
|
185
184
|
var renderList = function renderList() {
|
|
186
185
|
return /*#__PURE__*/React.createElement("div", {
|
|
187
186
|
className: prefix('layout')
|
package/es/state/index.less
CHANGED
|
@@ -101,6 +101,10 @@
|
|
|
101
101
|
.orderShapeColor(@color-success);
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
+
&-type-processing&-shape-order {
|
|
105
|
+
.orderShapeColor(@color-processing);
|
|
106
|
+
}
|
|
107
|
+
|
|
104
108
|
&-type-warning&-shape-order {
|
|
105
109
|
.orderShapeColor(@color-warning);
|
|
106
110
|
}
|
|
@@ -117,6 +121,10 @@
|
|
|
117
121
|
color: @color-success;
|
|
118
122
|
}
|
|
119
123
|
|
|
124
|
+
&-type-processing&-shape-text {
|
|
125
|
+
color: @color-processing;
|
|
126
|
+
}
|
|
127
|
+
|
|
120
128
|
&-type-warning&-shape-text {
|
|
121
129
|
color: @color-warning;
|
|
122
130
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lemon-fe/components",
|
|
3
|
-
"version": "1.1.5
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"license": "ISC",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"publishConfig": {
|
|
63
63
|
"registry": "https://registry.npmjs.org"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "08d435751a2453d4a8ed836ac9c37ee0aea5351f"
|
|
66
66
|
}
|