@jiaozhiye/qm-design-react 1.10.18 → 1.10.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/index.d.ts +4 -0
- 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 +4 -0
- package/lib/locale/lang/en.js +9 -5
- package/lib/locale/lang/zh-cn.d.ts +4 -0
- package/lib/locale/lang/zh-cn.js +9 -5
- package/lib/pivot-grid/index.d.ts +3 -0
- package/lib/pivot-grid/src/config/index.d.ts +9 -0
- package/lib/pivot-grid/src/grid-layout/Body.d.ts +3 -0
- package/lib/pivot-grid/src/grid-layout/Context.d.ts +20 -0
- package/lib/pivot-grid/src/grid-layout/CountPanel.d.ts +7 -0
- package/lib/pivot-grid/src/grid-layout/Footer.d.ts +3 -0
- package/lib/pivot-grid/src/grid-layout/GroupCard.d.ts +10 -0
- package/lib/pivot-grid/src/grid-layout/Header.d.ts +3 -0
- package/lib/pivot-grid/src/grid-layout/List.d.ts +7 -0
- package/lib/pivot-grid/src/grid-layout/ResizeBar.d.ts +7 -0
- package/lib/pivot-grid/src/grid-layout/index.d.ts +3 -0
- package/lib/pivot-grid/src/main/Context.d.ts +39 -0
- package/lib/pivot-grid/src/main/index.d.ts +3 -0
- package/lib/pivot-grid/src/main/types.d.ts +8 -0
- package/lib/pivot-grid/src/top-bar/FieldsPanel.d.ts +3 -0
- package/lib/pivot-grid/src/top-bar/FilterPanel.d.ts +3 -0
- package/lib/pivot-grid/src/top-bar/GroupPanel.d.ts +3 -0
- package/lib/pivot-grid/src/top-bar/LineHeightPanel.d.ts +3 -0
- package/lib/pivot-grid/src/top-bar/SearchPanel.d.ts +3 -0
- package/lib/pivot-grid/src/top-bar/SorterPanel.d.ts +3 -0
- package/lib/pivot-grid/src/top-bar/ViewMode.d.ts +3 -0
- package/lib/pivot-grid/src/top-bar/index.d.ts +3 -0
- package/lib/pivot-grid/src/utils/index.d.ts +2 -0
- package/lib/pivot-grid/style/grid-layout.less +234 -0
- package/lib/pivot-grid/style/index.less +10 -0
- package/lib/pivot-grid/style/main.less +43 -0
- package/lib/pivot-grid/style/top-bar.less +105 -0
- package/lib/pivot-grid/style/variable.less +9 -0
- package/lib/style/index.css +392 -2
- package/lib/style/index.less +2 -1
- package/lib/style/index.min.css +1 -1
- package/lib/table/src/hooks/useTableMemo.d.ts +1 -0
- package/lib/table/src/pivot-grid/index.d.ts +7 -0
- package/lib/table/src/table/props.d.ts +1 -0
- package/lib/table/src/table/types.d.ts +3 -1
- package/lib/table/src/toolbox/index.d.ts +1 -0
- package/lib/table/style/index.less +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -66,6 +66,8 @@ export type { LazyLoadProps as QmLazyLoadProps } from './lazy-load';
|
|
|
66
66
|
export { default as QmLazyLoad } from './lazy-load';
|
|
67
67
|
export type { SignatureRef as QmSignatureRef, SignatureProps as QmSignatureProps } from './signature';
|
|
68
68
|
export { default as QmSignature } from './signature';
|
|
69
|
+
export type { PivotGridRef as QmPivotGridRef, PivotGridProps as QmPivotGridProps } from './pivot-grid';
|
|
70
|
+
export { default as QmPivotGrid } from './pivot-grid';
|
|
69
71
|
export type { ConfigProviderProps as DcpConfigProviderProps } from './config-provider';
|
|
70
72
|
export { default as DcpConfigProvider } from './config-provider';
|
|
71
73
|
export type { ButtonProps as DcpButtonProps } from './button';
|
|
@@ -134,6 +136,8 @@ export type { LazyLoadProps as DcpLazyLoadProps } from './lazy-load';
|
|
|
134
136
|
export { default as DcpLazyLoad } from './lazy-load';
|
|
135
137
|
export type { SignatureRef as DcpSignatureRef, SignatureProps as DcpSignatureProps } from './signature';
|
|
136
138
|
export { default as DcpSignature } from './signature';
|
|
139
|
+
export type { PivotGridRef as DcpPivotGridRef, PivotGridProps as DcpPivotGridProps } from './pivot-grid';
|
|
140
|
+
export { default as DcpPivotGrid } from './pivot-grid';
|
|
137
141
|
export { default as pinyin } from './pinyin';
|
|
138
142
|
export { default as version } from './version';
|
|
139
143
|
export * from './antd';
|