codexly-ui 0.13.0 → 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 +2 -20
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +1 -12
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -2099,16 +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
2102
|
readonly stepChange: _angular_core.OutputEmitterRef<number>;
|
|
2113
2103
|
readonly finish: _angular_core.OutputEmitterRef<void>;
|
|
2114
2104
|
private readonly _destroyRef;
|
|
@@ -2116,7 +2106,6 @@ declare class ClxWizardComponent implements AfterContentInit {
|
|
|
2116
2106
|
protected _steps: ClxStepComponent[];
|
|
2117
2107
|
protected readonly _currentIndex: _angular_core.WritableSignal<number>;
|
|
2118
2108
|
ngAfterContentInit(): void;
|
|
2119
|
-
private _applyInitialStep;
|
|
2120
2109
|
private _syncActiveAttrs;
|
|
2121
2110
|
protected readonly _lastIndex: _angular_core.Signal<number>;
|
|
2122
2111
|
protected readonly _currentStepValid: _angular_core.Signal<boolean>;
|
|
@@ -2135,7 +2124,7 @@ declare class ClxWizardComponent implements AfterContentInit {
|
|
|
2135
2124
|
protected readonly _rootClass: _angular_core.Signal<string>;
|
|
2136
2125
|
protected _circleClass(i: number): string;
|
|
2137
2126
|
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; };
|
|
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>;
|
|
2139
2128
|
}
|
|
2140
2129
|
|
|
2141
2130
|
declare class ClxAppLayoutComponent implements OnInit, OnDestroy {
|