@praxisui/stepper 3.0.0-beta.3 → 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.
package/index.d.ts
CHANGED
|
@@ -448,6 +448,10 @@ declare class PraxisWizardFormComponent {
|
|
|
448
448
|
wizardId: string;
|
|
449
449
|
values: Record<string, any>;
|
|
450
450
|
}>;
|
|
451
|
+
completed: EventEmitter<{
|
|
452
|
+
wizardId: string;
|
|
453
|
+
values: Record<string, any>;
|
|
454
|
+
}>;
|
|
451
455
|
customAction: EventEmitter<{
|
|
452
456
|
wizardId: string;
|
|
453
457
|
stepId?: string;
|
|
@@ -490,7 +494,7 @@ declare class PraxisWizardFormComponent {
|
|
|
490
494
|
private focusPrimaryAction;
|
|
491
495
|
private focusSecondaryAction;
|
|
492
496
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PraxisWizardFormComponent, never>;
|
|
493
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PraxisWizardFormComponent, "praxis-wizard-form", never, { "wizardId": { "alias": "wizardId"; "required": true; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, { "submit": "submit"; "customAction": "customAction"; }, never, never, true, never>;
|
|
497
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PraxisWizardFormComponent, "praxis-wizard-form", never, { "wizardId": { "alias": "wizardId"; "required": true; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, { "submit": "submit"; "completed": "completed"; "customAction": "customAction"; }, never, never, true, never>;
|
|
494
498
|
}
|
|
495
499
|
|
|
496
500
|
/**
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/stepper",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.4",
|
|
4
4
|
"description": "Stepper workflows for Praxis UI with integrated forms, lists, uploads and page builder support.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.0.0",
|
|
7
7
|
"@angular/core": "^20.0.0",
|
|
8
8
|
"@angular/material": "^20.0.0",
|
|
9
9
|
"@angular/cdk": "^20.0.0",
|
|
10
|
-
"@praxisui/core": "^3.0.0-beta.
|
|
11
|
-
"@praxisui/dynamic-form": "^3.0.0-beta.
|
|
12
|
-
"@praxisui/settings-panel": "^3.0.0-beta.
|
|
13
|
-
"@praxisui/list": "^3.0.0-beta.
|
|
14
|
-
"@praxisui/files-upload": "^3.0.0-beta.
|
|
15
|
-
"@praxisui/page-builder": "^3.0.0-beta.
|
|
10
|
+
"@praxisui/core": "^3.0.0-beta.4",
|
|
11
|
+
"@praxisui/dynamic-form": "^3.0.0-beta.4",
|
|
12
|
+
"@praxisui/settings-panel": "^3.0.0-beta.4",
|
|
13
|
+
"@praxisui/list": "^3.0.0-beta.4",
|
|
14
|
+
"@praxisui/files-upload": "^3.0.0-beta.4",
|
|
15
|
+
"@praxisui/page-builder": "^3.0.0-beta.4"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"tslib": "^2.3.0"
|