js:fix image missing imageBase64 property
This commit is contained in:
parent
38ea6ea7d4
commit
aad9029784
@ -1242,6 +1242,10 @@ __decorate$4([
|
|||||||
Property,
|
Property,
|
||||||
__metadata$4("design:type", String)
|
__metadata$4("design:type", String)
|
||||||
], Image.prototype, "imageRes", void 0);
|
], Image.prototype, "imageRes", void 0);
|
||||||
|
__decorate$4([
|
||||||
|
Property,
|
||||||
|
__metadata$4("design:type", String)
|
||||||
|
], Image.prototype, "imageBase64", void 0);
|
||||||
__decorate$4([
|
__decorate$4([
|
||||||
Property,
|
Property,
|
||||||
__metadata$4("design:type", Number)
|
__metadata$4("design:type", Number)
|
||||||
|
@ -2701,6 +2701,10 @@ __decorate$4([
|
|||||||
Property,
|
Property,
|
||||||
__metadata$4("design:type", String)
|
__metadata$4("design:type", String)
|
||||||
], Image.prototype, "imageRes", void 0);
|
], Image.prototype, "imageRes", void 0);
|
||||||
|
__decorate$4([
|
||||||
|
Property,
|
||||||
|
__metadata$4("design:type", String)
|
||||||
|
], Image.prototype, "imageBase64", void 0);
|
||||||
__decorate$4([
|
__decorate$4([
|
||||||
Property,
|
Property,
|
||||||
__metadata$4("design:type", Number)
|
__metadata$4("design:type", Number)
|
||||||
|
1
doric-js/index.d.ts
vendored
1
doric-js/index.d.ts
vendored
@ -532,6 +532,7 @@ declare module 'doric/lib/src/widget/image' {
|
|||||||
imageUrl?: string;
|
imageUrl?: string;
|
||||||
imagePath?: string;
|
imagePath?: string;
|
||||||
imageRes?: string;
|
imageRes?: string;
|
||||||
|
imageBase64?: string;
|
||||||
scaleType?: ScaleType;
|
scaleType?: ScaleType;
|
||||||
isBlur?: boolean;
|
isBlur?: boolean;
|
||||||
placeHolderImage?: string;
|
placeHolderImage?: string;
|
||||||
|
1
doric-js/lib/src/widget/image.d.ts
vendored
1
doric-js/lib/src/widget/image.d.ts
vendored
@ -53,6 +53,7 @@ export declare class Image extends View implements IImage {
|
|||||||
imageUrl?: string;
|
imageUrl?: string;
|
||||||
imagePath?: string;
|
imagePath?: string;
|
||||||
imageRes?: string;
|
imageRes?: string;
|
||||||
|
imageBase64?: string;
|
||||||
scaleType?: ScaleType;
|
scaleType?: ScaleType;
|
||||||
isBlur?: boolean;
|
isBlur?: boolean;
|
||||||
placeHolderImage?: string;
|
placeHolderImage?: string;
|
||||||
|
@ -45,6 +45,10 @@ __decorate([
|
|||||||
Property,
|
Property,
|
||||||
__metadata("design:type", String)
|
__metadata("design:type", String)
|
||||||
], Image.prototype, "imageRes", void 0);
|
], Image.prototype, "imageRes", void 0);
|
||||||
|
__decorate([
|
||||||
|
Property,
|
||||||
|
__metadata("design:type", String)
|
||||||
|
], Image.prototype, "imageBase64", void 0);
|
||||||
__decorate([
|
__decorate([
|
||||||
Property,
|
Property,
|
||||||
__metadata("design:type", Number)
|
__metadata("design:type", Number)
|
||||||
|
@ -80,6 +80,9 @@ export class Image extends View implements IImage {
|
|||||||
@Property
|
@Property
|
||||||
imageRes?: string
|
imageRes?: string
|
||||||
|
|
||||||
|
@Property
|
||||||
|
imageBase64?: string
|
||||||
|
|
||||||
@Property
|
@Property
|
||||||
scaleType?: ScaleType
|
scaleType?: ScaleType
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user