@jiaozhiye/qm-design-react 1.3.0-beta.1 → 1.3.0-beta.12
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/drawer/style/index.less +1 -0
- package/lib/form/src/form-item-view.d.ts +6 -0
- package/lib/form/src/types.d.ts +4 -0
- package/lib/form/style/index.less +1 -5
- package/lib/index.d.ts +2 -0
- package/lib/index.esm.js +2 -2
- package/lib/index.full.js +1 -1
- package/lib/index.js +2 -2
- package/lib/search-tree/index.d.ts +3 -0
- package/lib/search-tree/src/search-tree.d.ts +26 -0
- package/lib/search-tree/style/index.less +21 -0
- package/lib/style/index.css +51 -15
- package/lib/style/index.less +2 -1
- package/lib/style/index.min.css +1 -1
- package/lib/table/src/hooks/useTableCore.d.ts +3 -15
- package/lib/table/src/store/index.d.ts +7 -3
- package/lib/table/src/table/props.d.ts +4 -0
- package/lib/table/src/table/types.d.ts +8 -2
- package/lib/table/src/utils/index.d.ts +1 -0
- package/lib/table/style/column-filter.less +1 -1
- package/lib/table/style/header.less +5 -4
- package/lib/table/style/size.less +84 -69
- package/lib/table/style/table.less +1 -2
- package/lib/table/style/variable.less +1 -1
- package/lib/tree-helper/style/index.less +4 -4
- package/lib/tree-table-helper/style/index.less +8 -1
- package/lib/upload-file/src/upload-file.d.ts +5 -1
- package/package.json +2 -2
package/lib/form/src/types.d.ts
CHANGED
|
@@ -206,6 +206,10 @@ export declare type IFormItem = {
|
|
|
206
206
|
withCredentials?: boolean;
|
|
207
207
|
params?: IFetchParams;
|
|
208
208
|
dataKey?: string;
|
|
209
|
+
button?: {
|
|
210
|
+
text?: string;
|
|
211
|
+
icon?: React.ReactNode;
|
|
212
|
+
};
|
|
209
213
|
fieldAliasMap?: (() => Record<string, string>) | Record<string, string>;
|
|
210
214
|
};
|
|
211
215
|
extra?: {
|
|
@@ -103,11 +103,7 @@
|
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
&__only-show {
|
|
106
|
-
|
|
107
|
-
& > :not(.qm-upload-file):not(.qm-upload-img):not(.qm-tinymce) {
|
|
108
|
-
pointer-events: none;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
106
|
+
// ...
|
|
111
107
|
}
|
|
112
108
|
// ------ size ------
|
|
113
109
|
// 40 32 24
|
package/lib/index.d.ts
CHANGED
|
@@ -36,6 +36,8 @@ export type { QmUploadFileProps } from './upload-file';
|
|
|
36
36
|
export { default as QmUploadFile } from './upload-file';
|
|
37
37
|
export type { QmUploadImgProps } from './upload-img';
|
|
38
38
|
export { default as QmUploadImg } from './upload-img';
|
|
39
|
+
export type { QmSearchTreeProps } from './search-tree';
|
|
40
|
+
export { default as QmSearchTree } from './search-tree';
|
|
39
41
|
export type { QmTableRef, QmTableProps, QmTableColumn } from './table';
|
|
40
42
|
export { default as QmTable } from './table';
|
|
41
43
|
export type { QmCopyToClipboardProps } from './copy-to-clipboard';
|