@praxisui/stepper 1.0.0-beta.68 → 3.0.0-beta.0
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/README.md +1 -1
- package/fesm2022/praxisui-stepper.mjs +15 -15
- package/fesm2022/praxisui-stepper.mjs.map +1 -1
- package/index.d.ts +4 -4
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -115,7 +115,7 @@ declare class PraxisStepper implements OnInit, AfterViewInit {
|
|
|
115
115
|
set selectedIndexInput(i: number | null);
|
|
116
116
|
set selectedIndex(i: number | null);
|
|
117
117
|
disableRippleInput: boolean;
|
|
118
|
-
|
|
118
|
+
enableCustomization: boolean;
|
|
119
119
|
labelPosition?: 'bottom' | 'end';
|
|
120
120
|
color?: ThemePalette;
|
|
121
121
|
/**
|
|
@@ -230,7 +230,7 @@ declare class PraxisStepper implements OnInit, AfterViewInit {
|
|
|
230
230
|
private parseClassList;
|
|
231
231
|
private resolveCssTokenName;
|
|
232
232
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PraxisStepper, never>;
|
|
233
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PraxisStepper, "praxis-stepper", never, { "stepperId": { "alias": "stepperId"; "required": true; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; "config": { "alias": "config"; "required": false; }; "selectedIndexInput": { "alias": "selectedIndexInput"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "disableRippleInput": { "alias": "disableRippleInput"; "required": false; }; "
|
|
233
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PraxisStepper, "praxis-stepper", never, { "stepperId": { "alias": "stepperId"; "required": true; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; "config": { "alias": "config"; "required": false; }; "selectedIndexInput": { "alias": "selectedIndexInput"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "disableRippleInput": { "alias": "disableRippleInput"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "color": { "alias": "color"; "required": false; }; "serverValidate": { "alias": "serverValidate"; "required": false; }; "stepperContext": { "alias": "stepperContext"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; "widgetEvent": "widgetEvent"; "stepFormReady": "stepFormReady"; "stepFormValueChange": "stepFormValueChange"; "animationDone": "animationDone"; "selectionChange": "selectionChange"; }, ["stepLabelTpl"], ["*"], true, never>;
|
|
234
234
|
}
|
|
235
235
|
|
|
236
236
|
declare const PRAXIS_STEPPER_COMPONENT_METADATA: ComponentDocMeta;
|
|
@@ -442,7 +442,7 @@ declare class PraxisWizardFormComponent {
|
|
|
442
442
|
constructor();
|
|
443
443
|
stepper?: PraxisStepper;
|
|
444
444
|
wizardId: string;
|
|
445
|
-
|
|
445
|
+
enableCustomization: boolean;
|
|
446
446
|
set config(cfg: WizardFormConfig | string | null);
|
|
447
447
|
submit: EventEmitter<{
|
|
448
448
|
wizardId: string;
|
|
@@ -490,7 +490,7 @@ declare class PraxisWizardFormComponent {
|
|
|
490
490
|
private focusPrimaryAction;
|
|
491
491
|
private focusSecondaryAction;
|
|
492
492
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PraxisWizardFormComponent, never>;
|
|
493
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PraxisWizardFormComponent, "praxis-wizard-form", never, { "wizardId": { "alias": "wizardId"; "required": true; }; "
|
|
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>;
|
|
494
494
|
}
|
|
495
495
|
|
|
496
496
|
/**
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/stepper",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-beta.0",
|
|
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": "^
|
|
11
|
-
"@praxisui/dynamic-form": "^
|
|
12
|
-
"@praxisui/settings-panel": "^
|
|
13
|
-
"@praxisui/list": "^
|
|
14
|
-
"@praxisui/files-upload": "^
|
|
15
|
-
"@praxisui/page-builder": "^
|
|
10
|
+
"@praxisui/core": "^3.0.0-beta.0",
|
|
11
|
+
"@praxisui/dynamic-form": "^3.0.0-beta.0",
|
|
12
|
+
"@praxisui/settings-panel": "^3.0.0-beta.0",
|
|
13
|
+
"@praxisui/list": "^3.0.0-beta.0",
|
|
14
|
+
"@praxisui/files-upload": "^3.0.0-beta.0",
|
|
15
|
+
"@praxisui/page-builder": "^3.0.0-beta.0"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"tslib": "^2.3.0"
|