@pisell/materials 3.0.8 → 3.0.9
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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/meta.js +1 -1
- package/build/lowcode/render/default/view.js +1 -1
- package/build/lowcode/view.js +1 -1
- package/es/components/input-number-range/index.d.ts +2 -2
- package/es/components/input-number-range/index.js +2 -2
- package/es/components/table/Table/utils.d.ts +1 -1
- package/lib/components/input-number-range/index.d.ts +2 -2
- package/lib/components/input-number-range/index.js +2 -2
- package/lib/components/table/Table/utils.d.ts +1 -1
- package/package.json +2 -2
|
@@ -34,7 +34,7 @@ var InputNumberRange = function InputNumberRange(props) {
|
|
|
34
34
|
value: state === null || state === void 0 ? void 0 : state.min,
|
|
35
35
|
onChange: function onChange(val) {
|
|
36
36
|
setState(_objectSpread(_objectSpread({}, state), {}, {
|
|
37
|
-
min: val
|
|
37
|
+
min: val
|
|
38
38
|
}));
|
|
39
39
|
}
|
|
40
40
|
})), separator, /*#__PURE__*/React.createElement(InputNumber, _extends({}, maxInputNumberProps, {
|
|
@@ -42,7 +42,7 @@ var InputNumberRange = function InputNumberRange(props) {
|
|
|
42
42
|
value: state === null || state === void 0 ? void 0 : state.max,
|
|
43
43
|
onChange: function onChange(val) {
|
|
44
44
|
setState(_objectSpread(_objectSpread({}, state), {}, {
|
|
45
|
-
max: val
|
|
45
|
+
max: val
|
|
46
46
|
}));
|
|
47
47
|
}
|
|
48
48
|
})));
|
|
@@ -146,7 +146,7 @@ export declare const getSettingKeyArrByMode: ({ filter, columnSetting, dataSourc
|
|
|
146
146
|
sort?: SortType | undefined;
|
|
147
147
|
mode: "" | "localStorage" | "remote";
|
|
148
148
|
currentViewMode: ModeType;
|
|
149
|
-
}) => ("
|
|
149
|
+
}) => ("view_mode" | "column_setting" | "order_by" | "group_by" | "gallery_setting" | "filter_setting")[];
|
|
150
150
|
export declare const omit: (obj: Record<string, any>, keys: string[]) => Record<string, any>;
|
|
151
151
|
export declare const stringify: (obj: Record<string, any>) => string;
|
|
152
152
|
export {};
|
|
@@ -52,7 +52,7 @@ var InputNumberRange = (props) => {
|
|
|
52
52
|
onChange: (val) => {
|
|
53
53
|
setState({
|
|
54
54
|
...state,
|
|
55
|
-
min: val
|
|
55
|
+
min: val
|
|
56
56
|
});
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -64,7 +64,7 @@ var InputNumberRange = (props) => {
|
|
|
64
64
|
onChange: (val) => {
|
|
65
65
|
setState({
|
|
66
66
|
...state,
|
|
67
|
-
max: val
|
|
67
|
+
max: val
|
|
68
68
|
});
|
|
69
69
|
}
|
|
70
70
|
}
|
|
@@ -146,7 +146,7 @@ export declare const getSettingKeyArrByMode: ({ filter, columnSetting, dataSourc
|
|
|
146
146
|
sort?: SortType | undefined;
|
|
147
147
|
mode: "" | "localStorage" | "remote";
|
|
148
148
|
currentViewMode: ModeType;
|
|
149
|
-
}) => ("
|
|
149
|
+
}) => ("view_mode" | "column_setting" | "order_by" | "group_by" | "gallery_setting" | "filter_setting")[];
|
|
150
150
|
export declare const omit: (obj: Record<string, any>, keys: string[]) => Record<string, any>;
|
|
151
151
|
export declare const stringify: (obj: Record<string, any>) => string;
|
|
152
152
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pisell/materials",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.9",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"module": "./es/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
"react-window": "^1.8.10",
|
|
62
62
|
"react-virtualized-auto-sizer": "^1.0.20",
|
|
63
63
|
"crypto-js": "^4.2.0",
|
|
64
|
-
"@pisell/utils": "1.0.24",
|
|
65
64
|
"@pisell/icon": "0.0.8",
|
|
65
|
+
"@pisell/utils": "1.0.24",
|
|
66
66
|
"@pisell/date-picker": "1.0.69"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|