@acorex/components 18.7.1 → 18.7.2
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/esm2022/paint/lib/paint/paint-toolbar/paint-toolbar.component.mjs +2 -2
- package/esm2022/paint/lib/paint/paint-view/paint-view.component.mjs +60 -10
- package/esm2022/step-wizard/lib/step-wizard-item/step-wizard-item.component.mjs +9 -6
- package/esm2022/step-wizard/lib/step-wizard.class.mjs +1 -1
- package/esm2022/step-wizard/lib/step-wizard.component.mjs +47 -39
- package/esm2022/tabs/lib/tabs.component.mjs +1 -1
- package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg-tools/wysiwyg-font-style/wysiwyg-font-style.component.mjs +22 -28
- package/fesm2022/acorex-components-paint.mjs +61 -11
- package/fesm2022/acorex-components-paint.mjs.map +1 -1
- package/fesm2022/acorex-components-step-wizard.mjs +55 -44
- package/fesm2022/acorex-components-step-wizard.mjs.map +1 -1
- package/fesm2022/acorex-components-tabs.mjs.map +1 -1
- package/fesm2022/acorex-components-wysiwyg.mjs +19 -27
- package/fesm2022/acorex-components-wysiwyg.mjs.map +1 -1
- package/package.json +73 -73
- package/paint/lib/paint/paint-view/paint-view.component.d.ts +16 -2
- package/step-wizard/lib/step-wizard-item/step-wizard-item.component.d.ts +2 -1
- package/step-wizard/lib/step-wizard.class.d.ts +1 -1
- package/step-wizard/lib/step-wizard.component.d.ts +19 -18
- package/wysiwyg/lib/wysiwyg/wysiwyg-tools/wysiwyg-font-style/wysiwyg-font-style.component.d.ts +5 -0
@@ -1,5 +1,5 @@
|
|
1
1
|
import { AXOrientation, MXBaseComponent } from '@acorex/components/common';
|
2
|
-
import { OnInit,
|
2
|
+
import { OnInit, Signal, WritableSignal } from '@angular/core';
|
3
3
|
import { AXStepWizardItemComponent } from './step-wizard-item/step-wizard-item.component';
|
4
4
|
import { AXStepWizardLook } from './step-wizard.class';
|
5
5
|
import { AXStepWizardContentDirective } from './step-wizard.directive';
|
@@ -9,6 +9,13 @@ import * as i0 from "@angular/core";
|
|
9
9
|
* A component for creating a step-by-step wizard interface.
|
10
10
|
*/
|
11
11
|
export declare class AXStepWizardComponent extends MXBaseComponent implements OnInit {
|
12
|
+
constructor();
|
13
|
+
/**
|
14
|
+
* Sets the visual style of the step wizard.
|
15
|
+
*
|
16
|
+
* @param v
|
17
|
+
*/
|
18
|
+
look: import("@angular/core").ModelSignal<AXStepWizardLook>;
|
12
19
|
/** @ignore */
|
13
20
|
protected activeStepIndex: WritableSignal<number>;
|
14
21
|
/** @ignore */
|
@@ -26,13 +33,7 @@ export declare class AXStepWizardComponent extends MXBaseComponent implements On
|
|
26
33
|
/** @ignore */
|
27
34
|
ngOnInit(): void;
|
28
35
|
/** @ignore */
|
29
|
-
steps:
|
30
|
-
/**
|
31
|
-
* Sets the visual style of the step wizard.
|
32
|
-
*
|
33
|
-
* @param v
|
34
|
-
*/
|
35
|
-
set look(v: AXStepWizardLook);
|
36
|
+
steps: Signal<readonly AXStepWizardItemComponent[]>;
|
36
37
|
/**
|
37
38
|
* Sets the orientation of the component.
|
38
39
|
*
|
@@ -41,24 +42,24 @@ export declare class AXStepWizardComponent extends MXBaseComponent implements On
|
|
41
42
|
set orientation(v: AXOrientation);
|
42
43
|
content: AXStepWizardContentDirective;
|
43
44
|
/**
|
44
|
-
|
45
|
-
|
45
|
+
* Advances to the next step if available.
|
46
|
+
*/
|
46
47
|
next(): void;
|
47
48
|
/**
|
48
|
-
|
49
|
-
|
49
|
+
* Moves to the previous step if available.
|
50
|
+
*/
|
50
51
|
previous(): void;
|
51
52
|
/**
|
52
|
-
|
53
|
-
|
54
|
-
|
53
|
+
* Directly navigates to the specified step by its index.
|
54
|
+
* @param stepIndex
|
55
|
+
*/
|
55
56
|
goStep(stepIndex: number): void;
|
56
57
|
/**
|
57
|
-
|
58
|
-
|
58
|
+
* Resets the wizard to the first step.
|
59
|
+
*/
|
59
60
|
reset(): void;
|
60
61
|
/** @ignore */
|
61
62
|
private get __hostClass();
|
62
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXStepWizardComponent, never>;
|
63
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXStepWizardComponent, "ax-step-wizard", never, { "look": { "alias": "look"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "content": { "alias": "content"; "required": false; }; }, {}, ["steps"], ["ax-step-wizard-item"], false, never>;
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXStepWizardComponent, "ax-step-wizard", never, { "look": { "alias": "look"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; }; "content": { "alias": "content"; "required": false; }; }, { "look": "lookChange"; }, ["steps"], ["ax-step-wizard-item"], false, never>;
|
64
65
|
}
|
package/wysiwyg/lib/wysiwyg/wysiwyg-tools/wysiwyg-font-style/wysiwyg-font-style.component.d.ts
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
import { AXWysiwyg } from '@acorex/cdk/wysiwyg';
|
2
|
+
import { AXWysiwygContainerComponent } from '../../wysiwyg-container/wysiwyg-container.component';
|
2
3
|
import { AXWysiwygService } from '../../wysiwyg.service';
|
3
4
|
import * as i0 from "@angular/core";
|
4
5
|
/**
|
@@ -6,6 +7,8 @@ import * as i0 from "@angular/core";
|
|
6
7
|
* @category Components
|
7
8
|
*/
|
8
9
|
export declare class AXWysiwygFontStyleComponent {
|
10
|
+
/** @ignore */
|
11
|
+
parent: AXWysiwygContainerComponent;
|
9
12
|
/** @ignore */
|
10
13
|
protected wysiwyg: import("@angular/core").WritableSignal<AXWysiwyg>;
|
11
14
|
/** @ignore */
|
@@ -32,6 +35,8 @@ export declare class AXWysiwygFontStyleComponent {
|
|
32
35
|
protected underLine(): void;
|
33
36
|
/** @ignore */
|
34
37
|
protected strike(): void;
|
38
|
+
/** @ignore */
|
39
|
+
protected fontSizeHandler(e: 'medium' | 'small' | 'large' | 'huge'): void;
|
35
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXWysiwygFontStyleComponent, never>;
|
36
41
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXWysiwygFontStyleComponent, "ax-wysiwyg-font-style", never, {}, {}, never, never, false, never>;
|
37
42
|
}
|