@praxisui/stepper 9.0.67 → 9.0.68-rc.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/ai/component-registry.json +2 -3
- package/fesm2022/praxisui-stepper.mjs +5193 -5163
- package/package.json +9 -9
- package/types/praxisui-stepper.d.ts +4 -2
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/stepper",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.68-rc.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": "^21.0.0",
|
|
7
7
|
"@angular/core": "^21.0.0",
|
|
8
8
|
"@angular/material": "^21.0.0",
|
|
9
9
|
"@angular/cdk": "^21.0.0",
|
|
10
|
-
"@praxisui/core": "^9.0.
|
|
11
|
-
"@praxisui/dynamic-form": "^9.0.
|
|
12
|
-
"@praxisui/rich-content": "^9.0.
|
|
13
|
-
"@praxisui/settings-panel": "^9.0.
|
|
14
|
-
"@praxisui/list": "^9.0.
|
|
15
|
-
"@praxisui/files-upload": "^9.0.
|
|
16
|
-
"@praxisui/page-builder": "^9.0.
|
|
10
|
+
"@praxisui/core": "^9.0.68-rc.0",
|
|
11
|
+
"@praxisui/dynamic-form": "^9.0.68-rc.0",
|
|
12
|
+
"@praxisui/rich-content": "^9.0.68-rc.0",
|
|
13
|
+
"@praxisui/settings-panel": "^9.0.68-rc.0",
|
|
14
|
+
"@praxisui/list": "^9.0.68-rc.0",
|
|
15
|
+
"@praxisui/files-upload": "^9.0.68-rc.0",
|
|
16
|
+
"@praxisui/page-builder": "^9.0.68-rc.0",
|
|
17
17
|
"@angular/forms": "^21.0.0",
|
|
18
18
|
"@angular/router": "^21.0.0",
|
|
19
|
-
"@praxisui/ai": "^9.0.
|
|
19
|
+
"@praxisui/ai": "^9.0.68-rc.0",
|
|
20
20
|
"rxjs": "~7.8.0"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
@@ -258,6 +258,7 @@ declare class PraxisStepper implements OnInit, AfterViewInit, OnDestroy {
|
|
|
258
258
|
hasRichContent(document?: RichContentDocument | null): boolean;
|
|
259
259
|
getStepRichContentContext(stepIndex: number): JsonLogicRecord;
|
|
260
260
|
openEditor(): void;
|
|
261
|
+
private openEditorPanel;
|
|
261
262
|
applyConfigFromAdapter(next: StepperMetadata): void;
|
|
262
263
|
openAiAssistant(): void;
|
|
263
264
|
openAiAssistantFromSession(session: PraxisAssistantSessionSnapshot): void;
|
|
@@ -383,13 +384,14 @@ declare class PraxisStepperConfigEditor implements SettingsValueProvider {
|
|
|
383
384
|
addMainForm(): void;
|
|
384
385
|
editMainForm(): void;
|
|
385
386
|
removeMainForm(): void;
|
|
386
|
-
addListSelection(): void
|
|
387
|
+
addListSelection(): Promise<void>;
|
|
387
388
|
addSearchableSelect(): void;
|
|
388
389
|
addFilesUpload(): void;
|
|
389
390
|
openMoreComponents(): void;
|
|
390
391
|
addTreeList(): void;
|
|
391
392
|
addTransferListQuick(): void;
|
|
392
|
-
editWidget(w: WidgetDefinition): void
|
|
393
|
+
editWidget(w: WidgetDefinition): Promise<void>;
|
|
394
|
+
private resolveListConfigEditor;
|
|
393
395
|
private openNestedSettingsEditor;
|
|
394
396
|
getSettingsValue(): any;
|
|
395
397
|
onSave(): any;
|