codexly-ui 0.13.0 → 0.13.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codexly-ui",
3
- "version": "0.13.0",
3
+ "version": "0.13.1",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -2109,6 +2109,13 @@ declare class ClxWizardComponent implements AfterContentInit {
2109
2109
  * are responsible for that guarantee — this input trusts it rather than re-validating each
2110
2110
  * skipped step, since isValid() reflects the CURRENT signal state, which the caller controls. */
2111
2111
  readonly initialStep: _angular_core.InputSignal<number | undefined>;
2112
+ /** Hides the built-in "Finalizar" button on the LAST step only (every other step's own "Siguiente"
2113
+ * button is unaffected) — for a caller that needs its own custom action there instead (e.g. a
2114
+ * payment gateway's own branded button rendered inside that step's own projected content, which
2115
+ * must trigger the exact same submit logic the wizard's own (finish) output would have, so the
2116
+ * step's own isValid still gates whether that custom button is meaningful to show/enable — this
2117
+ * input only removes the wizard's OWN redundant generic button, nothing about validation). */
2118
+ readonly hideFinishButton: _angular_core.InputSignal<boolean>;
2112
2119
  readonly stepChange: _angular_core.OutputEmitterRef<number>;
2113
2120
  readonly finish: _angular_core.OutputEmitterRef<void>;
2114
2121
  private readonly _destroyRef;
@@ -2135,7 +2142,7 @@ declare class ClxWizardComponent implements AfterContentInit {
2135
2142
  protected readonly _rootClass: _angular_core.Signal<string>;
2136
2143
  protected _circleClass(i: number): string;
2137
2144
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxWizardComponent, never>;
2138
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxWizardComponent, "clx-wizard", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "activeTextColor": { "alias": "activeTextColor"; "required": false; "isSignal": true; }; "underlineColor": { "alias": "underlineColor"; "required": false; "isSignal": true; }; "stepColor": { "alias": "stepColor"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "linear": { "alias": "linear"; "required": false; "isSignal": true; }; "prevLabel": { "alias": "prevLabel"; "required": false; "isSignal": true; }; "nextLabel": { "alias": "nextLabel"; "required": false; "isSignal": true; }; "finishLabel": { "alias": "finishLabel"; "required": false; "isSignal": true; }; "initialStep": { "alias": "initialStep"; "required": false; "isSignal": true; }; }, { "stepChange": "stepChange"; "finish": "finish"; }, ["_stepQuery"], ["*", "[clx-wizard-footer-start]"], true, never>;
2145
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxWizardComponent, "clx-wizard", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "activeTextColor": { "alias": "activeTextColor"; "required": false; "isSignal": true; }; "underlineColor": { "alias": "underlineColor"; "required": false; "isSignal": true; }; "stepColor": { "alias": "stepColor"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "linear": { "alias": "linear"; "required": false; "isSignal": true; }; "prevLabel": { "alias": "prevLabel"; "required": false; "isSignal": true; }; "nextLabel": { "alias": "nextLabel"; "required": false; "isSignal": true; }; "finishLabel": { "alias": "finishLabel"; "required": false; "isSignal": true; }; "initialStep": { "alias": "initialStep"; "required": false; "isSignal": true; }; "hideFinishButton": { "alias": "hideFinishButton"; "required": false; "isSignal": true; }; }, { "stepChange": "stepChange"; "finish": "finish"; }, ["_stepQuery"], ["*", "[clx-wizard-footer-start]"], true, never>;
2139
2146
  }
2140
2147
 
2141
2148
  declare class ClxAppLayoutComponent implements OnInit, OnDestroy {