@praxisui/stepper 3.0.0-beta.2 → 3.0.0-beta.4
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.
|
@@ -4541,6 +4541,7 @@ class PraxisWizardFormComponent {
|
|
|
4541
4541
|
this._config.set(validateWizardConfig(cfg));
|
|
4542
4542
|
}
|
|
4543
4543
|
submit = new EventEmitter();
|
|
4544
|
+
completed = this.submit;
|
|
4544
4545
|
customAction = new EventEmitter();
|
|
4545
4546
|
_config = signal(null, ...(ngDevMode ? [{ debugName: "_config" }] : []));
|
|
4546
4547
|
persistedState = signal(null, ...(ngDevMode ? [{ debugName: "persistedState" }] : []));
|
|
@@ -4700,7 +4701,7 @@ class PraxisWizardFormComponent {
|
|
|
4700
4701
|
el?.focus();
|
|
4701
4702
|
}
|
|
4702
4703
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.17", ngImport: i0, type: PraxisWizardFormComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4703
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.17", type: PraxisWizardFormComponent, isStandalone: true, selector: "praxis-wizard-form", inputs: { wizardId: "wizardId", enableCustomization: "enableCustomization", config: "config" }, outputs: { submit: "submit", customAction: "customAction" }, viewQueries: [{ propertyName: "stepper", first: true, predicate: ["stepper"], descendants: true, static: true }], ngImport: i0, template: `
|
|
4704
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.17", type: PraxisWizardFormComponent, isStandalone: true, selector: "praxis-wizard-form", inputs: { wizardId: "wizardId", enableCustomization: "enableCustomization", config: "config" }, outputs: { submit: "submit", completed: "completed", customAction: "customAction" }, viewQueries: [{ propertyName: "stepper", first: true, predicate: ["stepper"], descendants: true, static: true }], ngImport: i0, template: `
|
|
4704
4705
|
<section class="ft-wizard-shell" [attr.data-wizard-id]="wizardId">
|
|
4705
4706
|
<div class="ft-wizard-header">
|
|
4706
4707
|
<div class="ft-brand">{{ wizardBrand() }}</div>
|
|
@@ -4793,6 +4794,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.17", ngImpo
|
|
|
4793
4794
|
type: Input
|
|
4794
4795
|
}], submit: [{
|
|
4795
4796
|
type: Output
|
|
4797
|
+
}], completed: [{
|
|
4798
|
+
type: Output
|
|
4796
4799
|
}], customAction: [{
|
|
4797
4800
|
type: Output
|
|
4798
4801
|
}] } });
|