dcp-design-react 1.12.12 → 1.12.13
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/portal/index.d.ts +3 -0
- package/lib/table/src/hooks/useTableState.d.ts +2 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -72,6 +72,8 @@ export type { VirtualListRef as QmVirtualListRef, VirtualListProps as QmVirtualL
|
|
|
72
72
|
export { default as QmVirtualList } from './virtual-list';
|
|
73
73
|
export type { ColorPickerProps as QmColorPickerProps } from './color-picker';
|
|
74
74
|
export { default as QmColorPicker } from './color-picker';
|
|
75
|
+
export type { PortalProps as QmPortalProps } from './portal';
|
|
76
|
+
export { default as QmPortal } from './portal';
|
|
75
77
|
export type { ConfigProviderProps as DcpConfigProviderProps } from './config-provider';
|
|
76
78
|
export { default as DcpConfigProvider } from './config-provider';
|
|
77
79
|
export type { ButtonProps as DcpButtonProps } from './button';
|
|
@@ -146,6 +148,8 @@ export type { VirtualListRef as DcpVirtualListRef, VirtualListProps as DcpVirtua
|
|
|
146
148
|
export { default as DcpVirtualList } from './virtual-list';
|
|
147
149
|
export type { ColorPickerProps as DcpColorPickerProps } from './color-picker';
|
|
148
150
|
export { default as DcpColorPicker } from './color-picker';
|
|
151
|
+
export type { PortalProps as DcpPortalProps } from './portal';
|
|
152
|
+
export { default as DcpPortal } from './portal';
|
|
149
153
|
export { default as pinyin } from './pinyin';
|
|
150
154
|
export { default as version } from './version';
|
|
151
155
|
export * from './antd';
|