@acorex/components 20.4.5 → 20.4.7
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/command/index.d.ts +6 -3
- package/fesm2022/acorex-components-command.mjs +2 -2
- package/fesm2022/acorex-components-command.mjs.map +1 -1
- package/fesm2022/acorex-components-form.mjs +3 -15
- package/fesm2022/acorex-components-form.mjs.map +1 -1
- package/fesm2022/acorex-components-paint.mjs +21 -0
- package/fesm2022/acorex-components-paint.mjs.map +1 -1
- package/package.json +11 -11
- package/paint/index.d.ts +6 -0
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/components",
|
|
3
|
-
"version": "20.4.
|
|
3
|
+
"version": "20.4.7",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/core": "20.4.
|
|
6
|
-
"@acorex/cdk": "20.4.
|
|
5
|
+
"@acorex/core": "20.4.7",
|
|
6
|
+
"@acorex/cdk": "20.4.7",
|
|
7
7
|
"@angular/common": ">=20.0.0",
|
|
8
8
|
"@angular/core": ">=20.0.0",
|
|
9
9
|
"@angular/cdk": ">=20.0.0",
|
|
@@ -63,14 +63,14 @@
|
|
|
63
63
|
"types": "./accordion/index.d.ts",
|
|
64
64
|
"default": "./fesm2022/acorex-components-accordion.mjs"
|
|
65
65
|
},
|
|
66
|
-
"./action-sheet": {
|
|
67
|
-
"types": "./action-sheet/index.d.ts",
|
|
68
|
-
"default": "./fesm2022/acorex-components-action-sheet.mjs"
|
|
69
|
-
},
|
|
70
66
|
"./alert": {
|
|
71
67
|
"types": "./alert/index.d.ts",
|
|
72
68
|
"default": "./fesm2022/acorex-components-alert.mjs"
|
|
73
69
|
},
|
|
70
|
+
"./action-sheet": {
|
|
71
|
+
"types": "./action-sheet/index.d.ts",
|
|
72
|
+
"default": "./fesm2022/acorex-components-action-sheet.mjs"
|
|
73
|
+
},
|
|
74
74
|
"./aspect-ratio": {
|
|
75
75
|
"types": "./aspect-ratio/index.d.ts",
|
|
76
76
|
"default": "./fesm2022/acorex-components-aspect-ratio.mjs"
|
|
@@ -403,14 +403,14 @@
|
|
|
403
403
|
"types": "./selection-list-2/index.d.ts",
|
|
404
404
|
"default": "./fesm2022/acorex-components-selection-list-2.mjs"
|
|
405
405
|
},
|
|
406
|
-
"./skeleton": {
|
|
407
|
-
"types": "./skeleton/index.d.ts",
|
|
408
|
-
"default": "./fesm2022/acorex-components-skeleton.mjs"
|
|
409
|
-
},
|
|
410
406
|
"./side-menu": {
|
|
411
407
|
"types": "./side-menu/index.d.ts",
|
|
412
408
|
"default": "./fesm2022/acorex-components-side-menu.mjs"
|
|
413
409
|
},
|
|
410
|
+
"./skeleton": {
|
|
411
|
+
"types": "./skeleton/index.d.ts",
|
|
412
|
+
"default": "./fesm2022/acorex-components-skeleton.mjs"
|
|
413
|
+
},
|
|
414
414
|
"./slider": {
|
|
415
415
|
"types": "./slider/index.d.ts",
|
|
416
416
|
"default": "./fesm2022/acorex-components-slider.mjs"
|
package/paint/index.d.ts
CHANGED
|
@@ -126,6 +126,12 @@ declare class AXPaintViewComponent implements OnDestroy {
|
|
|
126
126
|
protected mouseMoveHandler(e: MouseEvent): void;
|
|
127
127
|
/** @ignore */
|
|
128
128
|
protected mouseUpHandler(): void;
|
|
129
|
+
/**
|
|
130
|
+
* Loads an image onto the canvas (e.g. for editing an existing signature).
|
|
131
|
+
*
|
|
132
|
+
* @param dataUrl - Data URL of the image (e.g. from toDataURL or existing value)
|
|
133
|
+
*/
|
|
134
|
+
loadImage(dataUrl: string): void;
|
|
129
135
|
/**
|
|
130
136
|
* Exports the canvas content as an image.
|
|
131
137
|
*
|