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
|
@@ -2,4 +2,4 @@ import type { IRecord } from '../table/types';
|
|
|
2
2
|
export declare const stringify: (string: any, separator?: string) => any;
|
|
3
3
|
export declare const array_format: (array: any) => string;
|
|
4
4
|
export declare const isBracketBalance: (str: any) => boolean;
|
|
5
|
-
export declare const where: <T extends IRecord<any>>(array: T[], query: string
|
|
5
|
+
export declare const where: <T extends IRecord<any>>(array: T[], query: string) => T[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dcp-design-react",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.21",
|
|
4
4
|
"description": "A Component Library for React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"React",
|
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
"cropperjs": "^1.5.12",
|
|
63
63
|
"dayjs": "1.x",
|
|
64
64
|
"exceljs": "^4.4.0",
|
|
65
|
+
"html2canvas": "^1.4.1",
|
|
65
66
|
"localforage": "^1.10.0",
|
|
66
67
|
"lodash-es": "^4.17.21",
|
|
67
68
|
"memoize-one": "^6.0.0",
|