dcp-design-react 1.11.1 → 1.11.2

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.
@@ -19,8 +19,8 @@ export declare const camelize: (input: string) => string;
19
19
  export declare const isEmpty: (val: any) => boolean;
20
20
  export declare const isValid: (val: string) => boolean;
21
21
  export declare const isSci: (value: number) => boolean;
22
- export declare const getValueByPath: (obj: AnyObject<any>, path: string) => unknown;
23
- export declare const setValueByPath: (obj: AnyObject<any>, path: string, value: unknown) => void;
22
+ export declare const getValueByPath: (obj: AnyObject<any>, path: string) => any;
23
+ export declare const setValueByPath: (obj: AnyObject<any>, path: string, value: any) => void;
24
24
  export declare const omit: <T extends object, K extends keyof T>(obj: T, fields: K[] | readonly K[]) => Omit<T, K>;
25
25
  export declare const pick: <T extends object, K extends keyof T>(obj: T, keys: (string | K)[]) => Pick<T, K>;
26
26
  export declare const deepClone: <T extends object>(target: T, map?: WeakMap<object, any>) => T;
package/lib/index.d.ts CHANGED
@@ -68,6 +68,8 @@ export type { SignatureRef as QmSignatureRef, SignatureProps as QmSignatureProps
68
68
  export { default as QmSignature } from './signature';
69
69
  export type { PivotGridRef as QmPivotGridRef, PivotGridProps as QmPivotGridProps } from './pivot-grid';
70
70
  export { default as QmPivotGrid } from './pivot-grid';
71
+ export type { VirtualListProps as QmVirtualListProps } from './virtual-list';
72
+ export { default as QmVirtualList } from './virtual-list';
71
73
  export type { ConfigProviderProps as DcpConfigProviderProps } from './config-provider';
72
74
  export { default as DcpConfigProvider } from './config-provider';
73
75
  export type { ButtonProps as DcpButtonProps } from './button';
@@ -138,6 +140,8 @@ export type { SignatureRef as DcpSignatureRef, SignatureProps as DcpSignaturePro
138
140
  export { default as DcpSignature } from './signature';
139
141
  export type { PivotGridRef as DcpPivotGridRef, PivotGridProps as DcpPivotGridProps } from './pivot-grid';
140
142
  export { default as DcpPivotGrid } from './pivot-grid';
143
+ export type { VirtualListProps as DcpVirtualListProps } from './virtual-list';
144
+ export { default as DcpVirtualList } from './virtual-list';
141
145
  export { default as pinyin } from './pinyin';
142
146
  export { default as version } from './version';
143
147
  export * from './antd';