dcp-design-react 1.8.19 → 1.8.21
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/icons/ArrowTopRightOutlined/index.d.ts +3 -0
- package/lib/icons/CircleOutlined/index.d.ts +3 -0
- package/lib/icons/FontOutlined/index.d.ts +3 -0
- package/lib/icons/index.d.ts +3 -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/signature/index.d.ts +3 -0
- package/lib/signature/src/lib/bezier.d.ts +17 -0
- package/lib/signature/src/lib/index.d.ts +124 -0
- package/lib/signature/src/lib/point.d.ts +16 -0
- package/lib/signature/src/lib/throttle.d.ts +1 -0
- package/lib/signature/src/signature.d.ts +26 -0
- package/lib/signature/style/index.less +165 -0
- package/lib/style/index.css +158 -1
- package/lib/style/index.less +41 -40
- package/lib/style/index.min.css +1 -1
- package/lib/table/src/filter-sql/index.d.ts +1 -1
- package/lib/table/src/group-summary/result.d.ts +1 -1
- package/package.json +2 -1
package/lib/index.d.ts
CHANGED
|
@@ -64,6 +64,8 @@ export type { WatermarkProps as QmWatermarkProps } from './watermark';
|
|
|
64
64
|
export { default as QmWatermark } from './watermark';
|
|
65
65
|
export type { LazyLoadProps as QmLazyLoadProps } from './lazy-load';
|
|
66
66
|
export { default as QmLazyLoad } from './lazy-load';
|
|
67
|
+
export type { SignatureProps as QmSignatureProps } from './signature';
|
|
68
|
+
export { default as QmSignature } from './signature';
|
|
67
69
|
export type { ConfigProviderProps as DcpConfigProviderProps } from './config-provider';
|
|
68
70
|
export { default as DcpConfigProvider } from './config-provider';
|
|
69
71
|
export type { ButtonProps as DcpButtonProps } from './button';
|
|
@@ -130,6 +132,8 @@ export type { WatermarkProps as DcpWatermarkProps } from './watermark';
|
|
|
130
132
|
export { default as DcpWatermark } from './watermark';
|
|
131
133
|
export type { LazyLoadProps as DcpLazyLoadProps } from './lazy-load';
|
|
132
134
|
export { default as DcpLazyLoad } from './lazy-load';
|
|
135
|
+
export type { SignatureProps as DcpSignatureProps } from './signature';
|
|
136
|
+
export { default as DcpSignature } from './signature';
|
|
133
137
|
export { default as pinyin } from './pinyin';
|
|
134
138
|
export { default as version } from './version';
|
|
135
139
|
export * from './antd';
|