codexly-ui 0.13.1 → 0.13.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/fesm2022/codexly-ui.mjs +4 -29
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +1 -19
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -2099,23 +2099,6 @@ declare class ClxWizardComponent implements AfterContentInit {
|
|
|
2099
2099
|
readonly prevLabel: _angular_core.InputSignal<string>;
|
|
2100
2100
|
readonly nextLabel: _angular_core.InputSignal<string>;
|
|
2101
2101
|
readonly finishLabel: _angular_core.InputSignal<string>;
|
|
2102
|
-
/** Which step to land on when the wizard first renders — for restoring an in-progress flow (e.g.
|
|
2103
|
-
* a saved draft, or state re-hydrated after an external redirect) rather than always starting
|
|
2104
|
-
* fresh at step 0. Applied once, in ngAfterContentInit, and clamped to a valid index; deliberately
|
|
2105
|
-
* bypasses the `linear` guard that goTo()/next() enforce for user-driven navigation — that guard
|
|
2106
|
-
* exists to stop a customer from skipping ahead of steps they haven't filled in yet, which doesn't
|
|
2107
|
-
* apply here: the caller is asserting those earlier steps are ALREADY valid (e.g. their own
|
|
2108
|
-
* signals were just re-prefilled from a backend order), not trying to skip past them. Consumers
|
|
2109
|
-
* are responsible for that guarantee — this input trusts it rather than re-validating each
|
|
2110
|
-
* skipped step, since isValid() reflects the CURRENT signal state, which the caller controls. */
|
|
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>;
|
|
2119
2102
|
readonly stepChange: _angular_core.OutputEmitterRef<number>;
|
|
2120
2103
|
readonly finish: _angular_core.OutputEmitterRef<void>;
|
|
2121
2104
|
private readonly _destroyRef;
|
|
@@ -2123,7 +2106,6 @@ declare class ClxWizardComponent implements AfterContentInit {
|
|
|
2123
2106
|
protected _steps: ClxStepComponent[];
|
|
2124
2107
|
protected readonly _currentIndex: _angular_core.WritableSignal<number>;
|
|
2125
2108
|
ngAfterContentInit(): void;
|
|
2126
|
-
private _applyInitialStep;
|
|
2127
2109
|
private _syncActiveAttrs;
|
|
2128
2110
|
protected readonly _lastIndex: _angular_core.Signal<number>;
|
|
2129
2111
|
protected readonly _currentStepValid: _angular_core.Signal<boolean>;
|
|
@@ -2142,7 +2124,7 @@ declare class ClxWizardComponent implements AfterContentInit {
|
|
|
2142
2124
|
protected readonly _rootClass: _angular_core.Signal<string>;
|
|
2143
2125
|
protected _circleClass(i: number): string;
|
|
2144
2126
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxWizardComponent, 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; };
|
|
2127
|
+
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; }; }, { "stepChange": "stepChange"; "finish": "finish"; }, ["_stepQuery"], ["*", "[clx-wizard-footer-start]"], true, never>;
|
|
2146
2128
|
}
|
|
2147
2129
|
|
|
2148
2130
|
declare class ClxAppLayoutComponent implements OnInit, OnDestroy {
|