@jiaozhiye/qm-design-react 1.11.18 → 1.11.19
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/lib/form/src/types.d.ts +7 -12
- package/lib/form/src/utils.d.ts +1 -4
- package/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/locale/lang/en.d.ts +1 -0
- package/lib/locale/lang/en.js +2 -1
- package/lib/locale/lang/zh-cn.d.ts +1 -0
- package/lib/locale/lang/zh-cn.js +2 -1
- package/lib/pivot-grid/src/grid-layout/Context.d.ts +10 -2
- package/lib/pivot-grid/src/grid-layout/LeftPanel.d.ts +1 -0
- package/lib/pivot-grid/src/grid-layout/MainPanel.d.ts +1 -0
- package/lib/pivot-grid/src/main/Context.d.ts +1 -1
- package/lib/pivot-grid/src/utils/index.d.ts +1 -1
- package/lib/pivot-grid/style/grid-layout.less +93 -5
- package/lib/pivot-grid/style/main.less +1 -1
- package/lib/print/src/setting.d.ts +5 -4
- package/lib/search-tree/style/index.less +35 -34
- package/lib/style/index.css +75 -8
- package/lib/style/index.min.css +1 -1
- package/lib/table/style/table.less +375 -375
- package/lib/transition/src/tools.d.ts +2 -2
- package/package.json +2 -2
- package/lib/pivot-grid/src/grid-layout/GroupCard.d.ts +0 -11
|
@@ -8,6 +8,6 @@ export declare const EXITED = 5;
|
|
|
8
8
|
export declare const UNMOUNTED = 6;
|
|
9
9
|
export declare const STATUS: string[];
|
|
10
10
|
export declare const getState: (status: number) => TransitionState;
|
|
11
|
-
export declare const startOrEnd: (unmounted: any) =>
|
|
12
|
-
export declare const getEndStatus: (status: number, unmountOnExit: any) => 2 |
|
|
11
|
+
export declare const startOrEnd: (unmounted: any) => 5 | 6;
|
|
12
|
+
export declare const getEndStatus: (status: number, unmountOnExit: any) => 2 | 5 | 6 | undefined;
|
|
13
13
|
export declare const getTimeout: (timeout: any) => any[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jiaozhiye/qm-design-react",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.19",
|
|
4
4
|
"description": "A Component Library for React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"React",
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
"style-loader": "^3.3.4",
|
|
130
130
|
"ts-loader": "^9.4.4",
|
|
131
131
|
"typescript": "^4.9.5",
|
|
132
|
-
"webpack": "^5.
|
|
132
|
+
"webpack": "^5.98.0",
|
|
133
133
|
"webpack-cli": "^5.1.4",
|
|
134
134
|
"webpack-dev-server": "^4.15.2",
|
|
135
135
|
"webpack-node-externals": "^3.0.0"
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
type IProps = {
|
|
3
|
-
dataKey: string;
|
|
4
|
-
dataKeyPath: string;
|
|
5
|
-
depth: number;
|
|
6
|
-
className?: string;
|
|
7
|
-
style?: React.CSSProperties;
|
|
8
|
-
children?: React.ReactNode;
|
|
9
|
-
};
|
|
10
|
-
declare const GroupCard: React.FC<IProps>;
|
|
11
|
-
export default GroupCard;
|