@acorex/components 18.7.1 → 18.7.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  import { AXOrientation, MXBaseComponent } from '@acorex/components/common';
2
- import { OnInit, QueryList, Signal, WritableSignal } from '@angular/core';
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: QueryList<AXStepWizardItemComponent>;
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
- * Advances to the next step if available.
45
- */
45
+ * Advances to the next step if available.
46
+ */
46
47
  next(): void;
47
48
  /**
48
- * Moves to the previous step if available.
49
- */
49
+ * Moves to the previous step if available.
50
+ */
50
51
  previous(): void;
51
52
  /**
52
- * Directly navigates to the specified step by its index.
53
- * @param stepIndex
54
- */
53
+ * Directly navigates to the specified step by its index.
54
+ * @param stepIndex
55
+ */
55
56
  goStep(stepIndex: number): void;
56
57
  /**
57
- * Resets the wizard to the first step.
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
  }
@@ -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
  }