@arim-aisdc/public-components 2.1.5 → 2.1.7
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/components/BaseInfo/BaseInfo.d.ts +1 -1
- package/dist/components/ConditionExpression/index.js +5 -2
- package/dist/components/ConditionExpression/index.less +4 -2
- package/dist/components/Icon/IconDemo/animations/Calendar/calendar.json +693 -0
- package/dist/components/Icon/IconDemo/animations/Loading/loading.json +869 -0
- package/dist/components/Icon/IconDemo/animations/download/download.json +815 -0
- package/dist/components/Icon/IconDemo/animations/download/download.svg +6 -0
- package/dist/components/Icon/IconDemo/animations/skipForward/skip-forward.svg +1 -0
- package/dist/components/Icon/IconDemo/animations/skipForward/skipForward.json +1053 -0
- package/dist/components/Icon/IconDemo/index.d.ts +3 -0
- package/dist/components/Icon/IconDemo/index.js +42 -1
- package/dist/components/Icon/index.d.ts +3 -0
- package/dist/components/Icon/index.js +90 -4
- package/dist/components/Icon/index.less +18 -0
- package/dist/components/QueryFilter/QueryFilter.js +9 -1
- package/dist/components/QueryFilter/RemoteCascader/index.d.ts +7 -0
- package/dist/components/QueryFilter/RemoteCascader/index.js +72 -0
- package/dist/components/QueryFilter/type.d.ts +10 -1
- package/dist/components/QueryFilter/type.js +1 -0
- package/dist/components/TableMax/components/ColumnSort/customSortFns.d.ts +8 -8
- package/dist/hooks/useCenterModalState.js +2 -2
- package/package.json +2 -1
- /package/dist/components/QueryFilter/{remoteSelect → RemoteSelectCom}/index.d.ts +0 -0
- /package/dist/components/QueryFilter/{remoteSelect → RemoteSelectCom}/index.js +0 -0
|
@@ -17,7 +17,7 @@ export declare const foramtBaseInfoField: (data: any, dataField: BaseInfoFieldTy
|
|
|
17
17
|
value: any;
|
|
18
18
|
field: string;
|
|
19
19
|
label?: string;
|
|
20
|
-
text: string |
|
|
20
|
+
text: string | Element | JSX.Element;
|
|
21
21
|
units?: string;
|
|
22
22
|
width?: string;
|
|
23
23
|
labelWidth?: string;
|
|
@@ -177,6 +177,9 @@ var ConditionExpression = function ConditionExpression(_ref) {
|
|
|
177
177
|
children: [showParameter && /*#__PURE__*/_jsx("div", {
|
|
178
178
|
className: 'condition-select-left',
|
|
179
179
|
children: /*#__PURE__*/_jsx(Select, {
|
|
180
|
+
style: {
|
|
181
|
+
width: '100%'
|
|
182
|
+
},
|
|
180
183
|
value: value === null || value === void 0 || (_value$index$ = value[index[0]]) === null || _value$index$ === void 0 || (_value$index$ = _value$index$.conditionItem[i]) === null || _value$index$ === void 0 ? void 0 : _value$index$.arguments,
|
|
181
184
|
placeholder: '请选择参数',
|
|
182
185
|
options: parameterOptions,
|
|
@@ -193,10 +196,10 @@ var ConditionExpression = function ConditionExpression(_ref) {
|
|
|
193
196
|
}), /*#__PURE__*/_jsx("div", {
|
|
194
197
|
className: 'condition-select-middle',
|
|
195
198
|
children: /*#__PURE__*/_jsx(Select, {
|
|
196
|
-
value: (_value$index$2 = value[index[0]]) === null || _value$index$2 === void 0 || (_value$index$2 = _value$index$2.conditionItem[i]) === null || _value$index$2 === void 0 ? void 0 : _value$index$2.operator,
|
|
197
199
|
style: {
|
|
198
|
-
width: '
|
|
200
|
+
width: '100%'
|
|
199
201
|
},
|
|
202
|
+
value: (_value$index$2 = value[index[0]]) === null || _value$index$2 === void 0 || (_value$index$2 = _value$index$2.conditionItem[i]) === null || _value$index$2 === void 0 ? void 0 : _value$index$2.operator,
|
|
200
203
|
placeholder: '操作符',
|
|
201
204
|
defaultValue: '=',
|
|
202
205
|
options: operatorOptions,
|
|
@@ -36,11 +36,13 @@
|
|
|
36
36
|
|
|
37
37
|
.condition-select-left {
|
|
38
38
|
padding-right: 4px;
|
|
39
|
-
width: 120px;
|
|
39
|
+
min-width: 120px;
|
|
40
|
+
max-width: 300px;
|
|
40
41
|
}
|
|
41
42
|
|
|
42
43
|
.condition-select-middle {
|
|
43
44
|
padding-right: 4px;
|
|
45
|
+
width: 100px;
|
|
44
46
|
}
|
|
45
47
|
|
|
46
48
|
.condition-input-right {
|
|
@@ -106,4 +108,4 @@
|
|
|
106
108
|
.condition-link {
|
|
107
109
|
padding-right: 8px;
|
|
108
110
|
}
|
|
109
|
-
}
|
|
111
|
+
}
|