@acorex/components 18.10.11 → 18.10.13
Sign up to get free protection for your applications and to get access to all the features.
- package/button/lib/button.component.d.ts +1 -1
- package/esm2022/button/lib/button.component.mjs +3 -3
- package/esm2022/color-box/lib/color-box.component.mjs +3 -3
- package/esm2022/conversation/lib/conversation-messages/conversation-message-file/conversation-message-file.component.mjs +1 -1
- package/esm2022/conversation/lib/conversation-messages/conversation-message-voice/conversation-message-voice.component.mjs +1 -1
- package/esm2022/image-editor/acorex-components-image-editor.mjs +5 -0
- package/esm2022/image-editor/index.mjs +8 -0
- package/esm2022/image-editor/lib/image-editor-container/image-editor-container.component.mjs +23 -0
- package/esm2022/image-editor/lib/image-editor-toolbar/image-editor-toolbar.component.mjs +69 -0
- package/esm2022/image-editor/lib/image-editor-tools/image-editor-color-picker/image-editor-color-picker.component.mjs +46 -0
- package/esm2022/image-editor/lib/image-editor-tools/image-editor-crop/image-editor-crop.component.mjs +36 -0
- package/esm2022/image-editor/lib/image-editor-tools/image-editor-pen-mode-changer/image-editor-pen-mode-changer.component.mjs +56 -0
- package/esm2022/image-editor/lib/image-editor-view/image-editor-view.component.mjs +304 -0
- package/esm2022/image-editor/lib/image-editor.module.mjs +69 -0
- package/esm2022/image-editor/lib/image-editor.service.mjs +22 -0
- package/esm2022/loading/lib/loading-spinner.component.mjs +7 -5
- package/esm2022/loading/lib/loading.component.mjs +2 -2
- package/esm2022/media-viewer/lib/media-viewer-container/media-viewer-container.component.mjs +3 -3
- package/esm2022/paint/index.mjs +1 -2
- package/esm2022/paint/lib/paint/paint-toolbar/paint-toolbar.component.mjs +3 -3
- package/esm2022/paint/lib/paint/paint-tools/paint-color-picker/paint-color-picker.component.mjs +3 -3
- package/esm2022/paint/lib/paint/paint-tools/paint-pen-mode-changer/paint-pen-mode-changer.component.mjs +3 -3
- package/esm2022/paint/lib/paint/paint-view/paint-view.component.mjs +2 -4
- package/esm2022/paint/lib/paint/paint.service.mjs +1 -2
- package/esm2022/paint/lib/paint.module.mjs +1 -5
- package/fesm2022/acorex-components-button.mjs +2 -2
- package/fesm2022/acorex-components-button.mjs.map +1 -1
- package/fesm2022/acorex-components-color-box.mjs +2 -2
- package/fesm2022/acorex-components-color-box.mjs.map +1 -1
- package/fesm2022/acorex-components-conversation.mjs +2 -2
- package/fesm2022/acorex-components-conversation.mjs.map +1 -1
- package/fesm2022/acorex-components-image-editor.mjs +595 -0
- package/fesm2022/acorex-components-image-editor.mjs.map +1 -0
- package/fesm2022/acorex-components-loading.mjs +8 -6
- package/fesm2022/acorex-components-loading.mjs.map +1 -1
- package/fesm2022/acorex-components-media-viewer.mjs +2 -2
- package/fesm2022/acorex-components-media-viewer.mjs.map +1 -1
- package/fesm2022/acorex-components-paint.mjs +9 -47
- package/fesm2022/acorex-components-paint.mjs.map +1 -1
- package/image-editor/README.md +3 -0
- package/image-editor/index.d.ts +7 -0
- package/image-editor/lib/image-editor-container/image-editor-container.component.d.ts +13 -0
- package/image-editor/lib/image-editor-toolbar/image-editor-toolbar.component.d.ts +27 -0
- package/image-editor/lib/image-editor-tools/image-editor-color-picker/image-editor-color-picker.component.d.ts +27 -0
- package/image-editor/lib/image-editor-tools/image-editor-crop/image-editor-crop.component.d.ts +18 -0
- package/image-editor/lib/image-editor-tools/image-editor-pen-mode-changer/image-editor-pen-mode-changer.component.d.ts +34 -0
- package/image-editor/lib/image-editor-view/image-editor-view.component.d.ts +65 -0
- package/image-editor/lib/image-editor.module.d.ts +21 -0
- package/image-editor/lib/image-editor.service.d.ts +24 -0
- package/loading/lib/loading-spinner.component.d.ts +1 -1
- package/media-viewer/lib/media-viewer-container/media-viewer-container.component.d.ts +1 -1
- package/package.json +30 -24
- package/paint/index.d.ts +0 -1
- package/paint/lib/paint/paint.service.d.ts +0 -1
- package/paint/lib/paint.module.d.ts +9 -10
- package/esm2022/paint/lib/paint/paint-tools/paint-pen-cap/paint-pen-cap.component.mjs +0 -37
- package/paint/lib/paint/paint-tools/paint-pen-cap/paint-pen-cap.component.d.ts +0 -20
@@ -0,0 +1,24 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class AXImageEditorService {
|
3
|
+
penColor: import("@angular/core").WritableSignal<string | CanvasGradient | CanvasPattern>;
|
4
|
+
lineCap: import("@angular/core").WritableSignal<CanvasLineCap>;
|
5
|
+
lineWidth: import("@angular/core").WritableSignal<number>;
|
6
|
+
penType: import("@angular/core").WritableSignal<"pen" | "highlight">;
|
7
|
+
toggleClear: import("@angular/core").WritableSignal<{
|
8
|
+
state: boolean;
|
9
|
+
userInteract: boolean;
|
10
|
+
}>;
|
11
|
+
cropState: import("@angular/core").WritableSignal<{
|
12
|
+
state: boolean;
|
13
|
+
userInteract: boolean;
|
14
|
+
}>;
|
15
|
+
rotate: import("@angular/core").WritableSignal<{
|
16
|
+
state: number;
|
17
|
+
userInteract: boolean;
|
18
|
+
}>;
|
19
|
+
isImageLoad: import("@angular/core").WritableSignal<boolean>;
|
20
|
+
newImage: import("@angular/core").WritableSignal<HTMLImageElement>;
|
21
|
+
initialImage: import("@angular/core").WritableSignal<HTMLImageElement>;
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXImageEditorService, never>;
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXImageEditorService>;
|
24
|
+
}
|
@@ -26,5 +26,5 @@ export declare class AXLoadingSpinnerComponent {
|
|
26
26
|
*/
|
27
27
|
stroke: number;
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXLoadingSpinnerComponent, never>;
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXLoadingSpinnerComponent, "ax-loading-spinner", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "stroke": { "alias": "stroke"; "required": false; }; }, {}, never, never, false, never>;
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXLoadingSpinnerComponent, "ax-loading-spinner", never, { "text": { "alias": "text"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "stroke": { "alias": "stroke"; "required": false; }; }, {}, never, never, false, never>;
|
30
30
|
}
|
@@ -11,5 +11,5 @@ export declare class AXMediaViewerContainerComponent {
|
|
11
11
|
protected nextHandler(): void;
|
12
12
|
protected backHandler(): void;
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMediaViewerContainerComponent, never>;
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXMediaViewerContainerComponent, "ax-media-viewer-container", never, { "dataArray": { "alias": "dataArray"; "required": false; "isSignal": true; }; }, {}, never, ["ax-
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMediaViewerContainerComponent, "ax-media-viewer-container", never, { "dataArray": { "alias": "dataArray"; "required": false; "isSignal": true; }; }, {}, never, ["ax-header", "ax-footer"], false, never>;
|
15
15
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@acorex/components",
|
3
|
-
"version": "18.10.
|
3
|
+
"version": "18.10.13",
|
4
4
|
"peerDependencies": {
|
5
5
|
"@angular/common": ">=18.2.0",
|
6
6
|
"@angular/core": ">=18.2.0",
|
@@ -32,24 +32,30 @@
|
|
32
32
|
"esm": "./esm2022/action-sheet/acorex-components-action-sheet.mjs",
|
33
33
|
"default": "./fesm2022/acorex-components-action-sheet.mjs"
|
34
34
|
},
|
35
|
+
"./alert": {
|
36
|
+
"types": "./alert/index.d.ts",
|
37
|
+
"esm2022": "./esm2022/alert/acorex-components-alert.mjs",
|
38
|
+
"esm": "./esm2022/alert/acorex-components-alert.mjs",
|
39
|
+
"default": "./fesm2022/acorex-components-alert.mjs"
|
40
|
+
},
|
35
41
|
"./avatar": {
|
36
42
|
"types": "./avatar/index.d.ts",
|
37
43
|
"esm2022": "./esm2022/avatar/acorex-components-avatar.mjs",
|
38
44
|
"esm": "./esm2022/avatar/acorex-components-avatar.mjs",
|
39
45
|
"default": "./fesm2022/acorex-components-avatar.mjs"
|
40
46
|
},
|
41
|
-
"./audio-wave": {
|
42
|
-
"types": "./audio-wave/index.d.ts",
|
43
|
-
"esm2022": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
|
44
|
-
"esm": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
|
45
|
-
"default": "./fesm2022/acorex-components-audio-wave.mjs"
|
46
|
-
},
|
47
47
|
"./bottom-navigation": {
|
48
48
|
"types": "./bottom-navigation/index.d.ts",
|
49
49
|
"esm2022": "./esm2022/bottom-navigation/acorex-components-bottom-navigation.mjs",
|
50
50
|
"esm": "./esm2022/bottom-navigation/acorex-components-bottom-navigation.mjs",
|
51
51
|
"default": "./fesm2022/acorex-components-bottom-navigation.mjs"
|
52
52
|
},
|
53
|
+
"./audio-wave": {
|
54
|
+
"types": "./audio-wave/index.d.ts",
|
55
|
+
"esm2022": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
|
56
|
+
"esm": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
|
57
|
+
"default": "./fesm2022/acorex-components-audio-wave.mjs"
|
58
|
+
},
|
53
59
|
"./breadcrumbs": {
|
54
60
|
"types": "./breadcrumbs/index.d.ts",
|
55
61
|
"esm2022": "./esm2022/breadcrumbs/acorex-components-breadcrumbs.mjs",
|
@@ -62,12 +68,6 @@
|
|
62
68
|
"esm": "./esm2022/badge/acorex-components-badge.mjs",
|
63
69
|
"default": "./fesm2022/acorex-components-badge.mjs"
|
64
70
|
},
|
65
|
-
"./alert": {
|
66
|
-
"types": "./alert/index.d.ts",
|
67
|
-
"esm2022": "./esm2022/alert/acorex-components-alert.mjs",
|
68
|
-
"esm": "./esm2022/alert/acorex-components-alert.mjs",
|
69
|
-
"default": "./fesm2022/acorex-components-alert.mjs"
|
70
|
-
},
|
71
71
|
"./button": {
|
72
72
|
"types": "./button/index.d.ts",
|
73
73
|
"esm2022": "./esm2022/button/acorex-components-button.mjs",
|
@@ -212,6 +212,12 @@
|
|
212
212
|
"esm": "./esm2022/image/acorex-components-image.mjs",
|
213
213
|
"default": "./fesm2022/acorex-components-image.mjs"
|
214
214
|
},
|
215
|
+
"./image-editor": {
|
216
|
+
"types": "./image-editor/index.d.ts",
|
217
|
+
"esm2022": "./esm2022/image-editor/acorex-components-image-editor.mjs",
|
218
|
+
"esm": "./esm2022/image-editor/acorex-components-image-editor.mjs",
|
219
|
+
"default": "./fesm2022/acorex-components-image-editor.mjs"
|
220
|
+
},
|
215
221
|
"./label": {
|
216
222
|
"types": "./label/index.d.ts",
|
217
223
|
"esm2022": "./esm2022/label/acorex-components-label.mjs",
|
@@ -308,17 +314,23 @@
|
|
308
314
|
"esm": "./esm2022/phone-box/acorex-components-phone-box.mjs",
|
309
315
|
"default": "./fesm2022/acorex-components-phone-box.mjs"
|
310
316
|
},
|
317
|
+
"./picker": {
|
318
|
+
"types": "./picker/index.d.ts",
|
319
|
+
"esm2022": "./esm2022/picker/acorex-components-picker.mjs",
|
320
|
+
"esm": "./esm2022/picker/acorex-components-picker.mjs",
|
321
|
+
"default": "./fesm2022/acorex-components-picker.mjs"
|
322
|
+
},
|
311
323
|
"./popover": {
|
312
324
|
"types": "./popover/index.d.ts",
|
313
325
|
"esm2022": "./esm2022/popover/acorex-components-popover.mjs",
|
314
326
|
"esm": "./esm2022/popover/acorex-components-popover.mjs",
|
315
327
|
"default": "./fesm2022/acorex-components-popover.mjs"
|
316
328
|
},
|
317
|
-
"./
|
318
|
-
"types": "./
|
319
|
-
"esm2022": "./esm2022/
|
320
|
-
"esm": "./esm2022/
|
321
|
-
"default": "./fesm2022/acorex-components-
|
329
|
+
"./popup": {
|
330
|
+
"types": "./popup/index.d.ts",
|
331
|
+
"esm2022": "./esm2022/popup/acorex-components-popup.mjs",
|
332
|
+
"esm": "./esm2022/popup/acorex-components-popup.mjs",
|
333
|
+
"default": "./fesm2022/acorex-components-popup.mjs"
|
322
334
|
},
|
323
335
|
"./progress-bar": {
|
324
336
|
"types": "./progress-bar/index.d.ts",
|
@@ -332,12 +344,6 @@
|
|
332
344
|
"esm": "./esm2022/qrcode/acorex-components-qrcode.mjs",
|
333
345
|
"default": "./fesm2022/acorex-components-qrcode.mjs"
|
334
346
|
},
|
335
|
-
"./popup": {
|
336
|
-
"types": "./popup/index.d.ts",
|
337
|
-
"esm2022": "./esm2022/popup/acorex-components-popup.mjs",
|
338
|
-
"esm": "./esm2022/popup/acorex-components-popup.mjs",
|
339
|
-
"default": "./fesm2022/acorex-components-popup.mjs"
|
340
|
-
},
|
341
347
|
"./radio": {
|
342
348
|
"types": "./radio/index.d.ts",
|
343
349
|
"esm2022": "./esm2022/radio/acorex-components-radio.mjs",
|
package/paint/index.d.ts
CHANGED
@@ -2,6 +2,5 @@ export * from './lib/paint.module';
|
|
2
2
|
export * from './lib/paint/paint-container/paint-container.component';
|
3
3
|
export * from './lib/paint/paint-toolbar/paint-toolbar.component';
|
4
4
|
export * from './lib/paint/paint-tools/paint-color-picker/paint-color-picker.component';
|
5
|
-
export * from './lib/paint/paint-tools/paint-pen-cap/paint-pen-cap.component';
|
6
5
|
export * from './lib/paint/paint-tools/paint-pen-mode-changer/paint-pen-mode-changer.component';
|
7
6
|
export * from './lib/paint/paint-view/paint-view.component';
|
@@ -1,7 +1,6 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
export declare class AXPaintService {
|
3
3
|
penColor: import("@angular/core").WritableSignal<string | CanvasGradient | CanvasPattern>;
|
4
|
-
lineCap: import("@angular/core").WritableSignal<CanvasLineCap>;
|
5
4
|
lineWidth: import("@angular/core").WritableSignal<number>;
|
6
5
|
penType: import("@angular/core").WritableSignal<"pen" | "highlight" | "eraser">;
|
7
6
|
toggleClear: import("@angular/core").WritableSignal<boolean>;
|
@@ -3,17 +3,16 @@ import * as i1 from "./paint/paint-container/paint-container.component";
|
|
3
3
|
import * as i2 from "./paint/paint-toolbar/paint-toolbar.component";
|
4
4
|
import * as i3 from "./paint/paint-view/paint-view.component";
|
5
5
|
import * as i4 from "./paint/paint-tools/paint-color-picker/paint-color-picker.component";
|
6
|
-
import * as i5 from "./paint/paint-tools/paint-pen-
|
7
|
-
import * as i6 from "
|
8
|
-
import * as i7 from "@
|
9
|
-
import * as i8 from "@acorex/components/
|
10
|
-
import * as i9 from "@acorex/components/
|
11
|
-
import * as i10 from "@acorex/components/
|
12
|
-
import * as i11 from "@acorex/components/
|
13
|
-
import * as i12 from "@acorex/components/
|
14
|
-
import * as i13 from "@acorex/components/decorators";
|
6
|
+
import * as i5 from "./paint/paint-tools/paint-pen-mode-changer/paint-pen-mode-changer.component";
|
7
|
+
import * as i6 from "@angular/forms";
|
8
|
+
import * as i7 from "@acorex/components/range-slider";
|
9
|
+
import * as i8 from "@acorex/components/select-box";
|
10
|
+
import * as i9 from "@acorex/components/button";
|
11
|
+
import * as i10 from "@acorex/components/color-palette";
|
12
|
+
import * as i11 from "@acorex/components/popover";
|
13
|
+
import * as i12 from "@acorex/components/decorators";
|
15
14
|
export declare class AXPaintModule {
|
16
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPaintModule, never>;
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXPaintModule, [typeof i1.AXPaintContainerComponent, typeof i2.AXPaintToolbarComponent, typeof i3.AXPaintViewComponent, typeof i4.AXPaintColorPickerComponent, typeof i5.
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXPaintModule, [typeof i1.AXPaintContainerComponent, typeof i2.AXPaintToolbarComponent, typeof i3.AXPaintViewComponent, typeof i4.AXPaintColorPickerComponent, typeof i5.AXPaintPenModeChangerComponent], [typeof i6.FormsModule, typeof i7.AXRangeSliderModule, typeof i8.AXSelectBoxModule, typeof i9.AXButtonModule, typeof i10.AXColorPaletteModule, typeof i11.AXPopoverModule, typeof i12.AXDecoratorModule], [typeof i1.AXPaintContainerComponent, typeof i2.AXPaintToolbarComponent, typeof i3.AXPaintViewComponent, typeof i4.AXPaintColorPickerComponent, typeof i5.AXPaintPenModeChangerComponent]>;
|
18
17
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXPaintModule>;
|
19
18
|
}
|
@@ -1,37 +0,0 @@
|
|
1
|
-
import { Component, HostBinding, inject, signal, ViewEncapsulation } from '@angular/core';
|
2
|
-
import { AXPaintContainerComponent } from '../../paint-container/paint-container.component';
|
3
|
-
import { AXPaintService } from '../../paint.service';
|
4
|
-
import * as i0 from "@angular/core";
|
5
|
-
import * as i1 from "@angular/forms";
|
6
|
-
import * as i2 from "@acorex/components/select-box";
|
7
|
-
/**
|
8
|
-
* paint pen cap.
|
9
|
-
* @category Components
|
10
|
-
*/
|
11
|
-
export class AXPaintPenCapComponent {
|
12
|
-
constructor() {
|
13
|
-
/** @ignore */
|
14
|
-
this.parent = inject(AXPaintContainerComponent);
|
15
|
-
/** @ignore */
|
16
|
-
this.service = inject(AXPaintService);
|
17
|
-
/** @ignore */
|
18
|
-
this.selectedLineCap = signal('round');
|
19
|
-
}
|
20
|
-
/** @ignore */
|
21
|
-
lineCapHandler(e) {
|
22
|
-
this.service.lineCap.set(e);
|
23
|
-
}
|
24
|
-
get __hostClass() {
|
25
|
-
return `.5rem`;
|
26
|
-
}
|
27
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPaintPenCapComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
28
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPaintPenCapComponent, selector: "ax-paint-pen-cap", host: { properties: { "style.marginInline": "this.__hostClass" } }, ngImport: i0, template: "<ax-select-box\n [look]=\"this.parent.look\"\n (ngModelChange)=\"lineCapHandler($event)\"\n [ngModel]=\"selectedLineCap()\"\n [dataSource]=\"['round', 'square']\"\n placeholder=\"Choose...\"\n>\n</ax-select-box>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i2.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
29
|
-
}
|
30
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPaintPenCapComponent, decorators: [{
|
31
|
-
type: Component,
|
32
|
-
args: [{ selector: 'ax-paint-pen-cap', encapsulation: ViewEncapsulation.None, template: "<ax-select-box\n [look]=\"this.parent.look\"\n (ngModelChange)=\"lineCapHandler($event)\"\n [ngModel]=\"selectedLineCap()\"\n [dataSource]=\"['round', 'square']\"\n placeholder=\"Choose...\"\n>\n</ax-select-box>\n" }]
|
33
|
-
}], propDecorators: { __hostClass: [{
|
34
|
-
type: HostBinding,
|
35
|
-
args: ['style.marginInline']
|
36
|
-
}] } });
|
37
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFpbnQtcGVuLWNhcC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvcGFpbnQvc3JjL2xpYi9wYWludC9wYWludC10b29scy9wYWludC1wZW4tY2FwL3BhaW50LXBlbi1jYXAuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL3BhaW50L3NyYy9saWIvcGFpbnQvcGFpbnQtdG9vbHMvcGFpbnQtcGVuLWNhcC9wYWludC1wZW4tY2FwLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsV0FBVyxFQUFFLE1BQU0sRUFBRSxNQUFNLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUYsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0saURBQWlELENBQUM7QUFDNUYsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHFCQUFxQixDQUFDOzs7O0FBRXJEOzs7R0FHRztBQU9ILE1BQU0sT0FBTyxzQkFBc0I7SUFObkM7UUFPRSxjQUFjO1FBQ0osV0FBTSxHQUFHLE1BQU0sQ0FBQyx5QkFBeUIsQ0FBQyxDQUFDO1FBRXJELGNBQWM7UUFDSixZQUFPLEdBQUcsTUFBTSxDQUFDLGNBQWMsQ0FBQyxDQUFDO1FBRTNDLGNBQWM7UUFDSixvQkFBZSxHQUFHLE1BQU0sQ0FBZ0IsT0FBTyxDQUFDLENBQUM7S0FXNUQ7SUFUQyxjQUFjO0lBQ0osY0FBYyxDQUFDLENBQWdCO1FBQ3ZDLElBQUksQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUM5QixDQUFDO0lBRUQsSUFDSSxXQUFXO1FBQ2IsT0FBTyxPQUFPLENBQUM7SUFDakIsQ0FBQzs4R0FsQlUsc0JBQXNCO2tHQUF0QixzQkFBc0IsNEhDZG5DLDROQVFBOzsyRkRNYSxzQkFBc0I7a0JBTmxDLFNBQVM7K0JBQ0Usa0JBQWtCLGlCQUdiLGlCQUFpQixDQUFDLElBQUk7OEJBa0JqQyxXQUFXO3NCQURkLFdBQVc7dUJBQUMsb0JBQW9CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBIb3N0QmluZGluZywgaW5qZWN0LCBzaWduYWwsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBBWFBhaW50Q29udGFpbmVyQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vcGFpbnQtY29udGFpbmVyL3BhaW50LWNvbnRhaW5lci5jb21wb25lbnQnO1xuaW1wb3J0IHsgQVhQYWludFNlcnZpY2UgfSBmcm9tICcuLi8uLi9wYWludC5zZXJ2aWNlJztcblxuLyoqXG4gKiBwYWludCBwZW4gY2FwLlxuICogQGNhdGVnb3J5IENvbXBvbmVudHNcbiAqL1xuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXgtcGFpbnQtcGVuLWNhcCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9wYWludC1wZW4tY2FwLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmw6ICcuL3BhaW50LXBlbi1jYXAuY29tcG9uZW50LnNjc3MnLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxufSlcbmV4cG9ydCBjbGFzcyBBWFBhaW50UGVuQ2FwQ29tcG9uZW50IHtcbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJvdGVjdGVkIHBhcmVudCA9IGluamVjdChBWFBhaW50Q29udGFpbmVyQ29tcG9uZW50KTtcblxuICAvKiogQGlnbm9yZSAqL1xuICBwcm90ZWN0ZWQgc2VydmljZSA9IGluamVjdChBWFBhaW50U2VydmljZSk7XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJvdGVjdGVkIHNlbGVjdGVkTGluZUNhcCA9IHNpZ25hbDxDYW52YXNMaW5lQ2FwPigncm91bmQnKTtcblxuICAvKiogQGlnbm9yZSAqL1xuICBwcm90ZWN0ZWQgbGluZUNhcEhhbmRsZXIoZTogQ2FudmFzTGluZUNhcCkge1xuICAgIHRoaXMuc2VydmljZS5saW5lQ2FwLnNldChlKTtcbiAgfVxuXG4gIEBIb3N0QmluZGluZygnc3R5bGUubWFyZ2luSW5saW5lJylcbiAgZ2V0IF9faG9zdENsYXNzKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIGAuNXJlbWA7XG4gIH1cbn1cbiIsIjxheC1zZWxlY3QtYm94XG4gIFtsb29rXT1cInRoaXMucGFyZW50Lmxvb2tcIlxuICAobmdNb2RlbENoYW5nZSk9XCJsaW5lQ2FwSGFuZGxlcigkZXZlbnQpXCJcbiAgW25nTW9kZWxdPVwic2VsZWN0ZWRMaW5lQ2FwKClcIlxuICBbZGF0YVNvdXJjZV09XCJbJ3JvdW5kJywgJ3NxdWFyZSddXCJcbiAgcGxhY2Vob2xkZXI9XCJDaG9vc2UuLi5cIlxuPlxuPC9heC1zZWxlY3QtYm94PlxuIl19
|
@@ -1,20 +0,0 @@
|
|
1
|
-
import { AXPaintContainerComponent } from '../../paint-container/paint-container.component';
|
2
|
-
import { AXPaintService } from '../../paint.service';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
/**
|
5
|
-
* paint pen cap.
|
6
|
-
* @category Components
|
7
|
-
*/
|
8
|
-
export declare class AXPaintPenCapComponent {
|
9
|
-
/** @ignore */
|
10
|
-
protected parent: AXPaintContainerComponent;
|
11
|
-
/** @ignore */
|
12
|
-
protected service: AXPaintService;
|
13
|
-
/** @ignore */
|
14
|
-
protected selectedLineCap: import("@angular/core").WritableSignal<CanvasLineCap>;
|
15
|
-
/** @ignore */
|
16
|
-
protected lineCapHandler(e: CanvasLineCap): void;
|
17
|
-
get __hostClass(): string;
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXPaintPenCapComponent, never>;
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXPaintPenCapComponent, "ax-paint-pen-cap", never, {}, {}, never, never, false, never>;
|
20
|
-
}
|