@leafer-ui/data 1.0.0-bate → 1.0.0-beta
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/package.json +4 -4
- package/src/BoxData.ts +1 -1
- package/src/CanvasData.ts +2 -2
- package/src/EllipseData.ts +1 -1
- package/src/ImageData.ts +2 -2
- package/src/RectData.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leafer-ui/data",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-beta",
|
|
4
4
|
"description": "@leafer-ui/data",
|
|
5
5
|
"author": "Chao (Leafer) Wan",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"leaferjs"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@leafer/core": "1.0.0-
|
|
22
|
+
"@leafer/core": "1.0.0-beta"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@leafer/interface": "1.0.0-
|
|
26
|
-
"@leafer-ui/interface": "1.0.0-
|
|
25
|
+
"@leafer/interface": "1.0.0-beta",
|
|
26
|
+
"@leafer-ui/interface": "1.0.0-beta"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/src/BoxData.ts
CHANGED
package/src/CanvasData.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ICanvasData } from '@leafer-ui/interface'
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { RectData } from './RectData'
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
export class CanvasData extends
|
|
6
|
+
export class CanvasData extends RectData implements ICanvasData {
|
|
7
7
|
|
|
8
8
|
}
|
package/src/EllipseData.ts
CHANGED
package/src/ImageData.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { IImageData } from '@leafer-ui/interface'
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { RectData } from './RectData'
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
export class ImageData extends
|
|
6
|
+
export class ImageData extends RectData implements IImageData {
|
|
7
7
|
|
|
8
8
|
}
|
package/src/RectData.ts
CHANGED