@jiaozhiye/qm-design-react 1.7.52 → 1.7.53
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/_utils/types.d.ts +1 -0
- 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/print/src/print.d.ts +3 -1
- package/lib/search-helper/src/search-helper.d.ts +3 -1
- package/lib/search-tree/src/search-tree.d.ts +5 -1
- package/lib/tree-helper/src/tree-helper.d.ts +3 -1
- package/lib/tree-table-helper/src/tree-table-helper.d.ts +3 -1
- package/lib/watermark/index.d.ts +3 -0
- package/lib/watermark/src/interface.d.ts +38 -0
- package/lib/watermark/src/useMutationObserver.d.ts +2 -0
- package/lib/watermark/src/utils.d.ts +4 -0
- package/lib/watermark/src/watermark.d.ts +22 -0
- package/lib/watermark/style/index.less +6 -0
- package/package.json +1 -1
package/lib/_utils/types.d.ts
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -60,6 +60,8 @@ export type { PrintProps as QmPrintProps } from './print';
|
|
|
60
60
|
export { default as QmPrint } from './print';
|
|
61
61
|
export type { GuideTrackerProps as QmGuideTrackerProps } from './guide-tracker';
|
|
62
62
|
export { default as QmGuideTracker } from './guide-tracker';
|
|
63
|
+
export type { WatermarkProps as QmWatermarkProps } from './watermark';
|
|
64
|
+
export { default as QmWatermark } from './watermark';
|
|
63
65
|
export type { ConfigProviderProps as DcpConfigProviderProps } from './config-provider';
|
|
64
66
|
export { default as DcpConfigProvider } from './config-provider';
|
|
65
67
|
export type { ButtonProps as DcpButtonProps } from './button';
|
|
@@ -122,6 +124,8 @@ export type { PrintProps as DcpPrintProps } from './print';
|
|
|
122
124
|
export { default as DcpPrint } from './print';
|
|
123
125
|
export type { GuideTrackerProps as DcpGuideTrackerProps } from './guide-tracker';
|
|
124
126
|
export { default as DcpGuideTracker } from './guide-tracker';
|
|
127
|
+
export type { WatermarkProps as DcpWatermarkProps } from './watermark';
|
|
128
|
+
export { default as DcpWatermark } from './watermark';
|
|
125
129
|
export { default as pinyin } from './pinyin';
|
|
126
130
|
export { default as version } from './version';
|
|
127
131
|
export * from './antd';
|