@praxisui/stepper 8.0.0-beta.31 → 8.0.0-beta.33
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/praxisui-stepper.mjs +1308 -1108
- package/package.json +19 -18
- package/{index.d.ts → types/praxisui-stepper.d.ts} +5 -4
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/stepper",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.33",
|
|
4
4
|
"description": "Stepper workflows for Praxis UI with integrated forms, lists, uploads and page builder support.",
|
|
5
5
|
"peerDependencies": {
|
|
6
|
-
"@angular/common": "^
|
|
7
|
-
"@angular/core": "^
|
|
8
|
-
"@angular/material": "^
|
|
9
|
-
"@angular/cdk": "^
|
|
10
|
-
"@praxisui/core": "^8.0.0-beta.
|
|
11
|
-
"@praxisui/dynamic-form": "^8.0.0-beta.
|
|
12
|
-
"@praxisui/rich-content": "^8.0.0-beta.
|
|
13
|
-
"@praxisui/settings-panel": "^8.0.0-beta.
|
|
14
|
-
"@praxisui/list": "^8.0.0-beta.
|
|
15
|
-
"@praxisui/files-upload": "^8.0.0-beta.
|
|
16
|
-
"@praxisui/page-builder": "^8.0.0-beta.
|
|
17
|
-
"@angular/forms": "^
|
|
18
|
-
"@angular/router": "^
|
|
19
|
-
"@praxisui/ai": "^8.0.0-beta.
|
|
6
|
+
"@angular/common": "^21.0.0",
|
|
7
|
+
"@angular/core": "^21.0.0",
|
|
8
|
+
"@angular/material": "^21.0.0",
|
|
9
|
+
"@angular/cdk": "^21.0.0",
|
|
10
|
+
"@praxisui/core": "^8.0.0-beta.33",
|
|
11
|
+
"@praxisui/dynamic-form": "^8.0.0-beta.33",
|
|
12
|
+
"@praxisui/rich-content": "^8.0.0-beta.33",
|
|
13
|
+
"@praxisui/settings-panel": "^8.0.0-beta.33",
|
|
14
|
+
"@praxisui/list": "^8.0.0-beta.33",
|
|
15
|
+
"@praxisui/files-upload": "^8.0.0-beta.33",
|
|
16
|
+
"@praxisui/page-builder": "^8.0.0-beta.33",
|
|
17
|
+
"@angular/forms": "^21.0.0",
|
|
18
|
+
"@angular/router": "^21.0.0",
|
|
19
|
+
"@praxisui/ai": "^8.0.0-beta.33",
|
|
20
20
|
"rxjs": "~7.8.0"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
@@ -44,14 +44,15 @@
|
|
|
44
44
|
],
|
|
45
45
|
"sideEffects": false,
|
|
46
46
|
"module": "fesm2022/praxisui-stepper.mjs",
|
|
47
|
-
"typings": "
|
|
47
|
+
"typings": "types/praxisui-stepper.d.ts",
|
|
48
48
|
"exports": {
|
|
49
49
|
"./package.json": {
|
|
50
50
|
"default": "./package.json"
|
|
51
51
|
},
|
|
52
52
|
".": {
|
|
53
|
-
"types": "./
|
|
53
|
+
"types": "./types/praxisui-stepper.d.ts",
|
|
54
54
|
"default": "./fesm2022/praxisui-stepper.mjs"
|
|
55
55
|
}
|
|
56
|
-
}
|
|
56
|
+
},
|
|
57
|
+
"type": "module"
|
|
57
58
|
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
2
|
import { OnInit, AfterViewInit, OnDestroy, TemplateRef, EventEmitter, Provider } from '@angular/core';
|
|
3
|
-
import { AiCapability, FormConfig, RichContentDocument, WidgetDefinition, WidgetEventEnvelope, FormReadyEvent, FormValueChangeEvent, JsonLogicRecord, ComponentDocMeta, SettingsValueProvider as SettingsValueProvider$1, AiCapabilityCategory,
|
|
3
|
+
import { AiCapability, FormConfig, RichContentDocument, WidgetDefinition, WidgetEventEnvelope, FormReadyEvent, FormValueChangeEvent, JsonLogicRecord, ComponentDocMeta, SettingsValueProvider as SettingsValueProvider$1, AiCapabilityCategory, AiCapabilityCatalog, AiValueKind, ComponentAuthoringManifest } from '@praxisui/core';
|
|
4
4
|
import { FormGroup } from '@angular/forms';
|
|
5
5
|
import { ThemePalette } from '@angular/material/core';
|
|
6
6
|
import { BaseAiAdapter, PatchResult, PraxisAssistantTurnViewState, PraxisAssistantShellLayout, PraxisAssistantShellLabels, PraxisAssistantSessionSnapshot, PraxisAssistantShellQuickReply, PraxisAssistantShellMessage, PraxisAssistantShellContextItem } from '@praxisui/ai';
|
|
7
7
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
8
8
|
import { BehaviorSubject } from 'rxjs';
|
|
9
9
|
import { SettingsValueProvider } from '@praxisui/settings-panel';
|
|
10
|
+
import * as _praxisui_stepper from '@praxisui/stepper';
|
|
10
11
|
|
|
11
12
|
declare class StepperAiAdapter extends BaseAiAdapter<StepperMetadata> {
|
|
12
13
|
private stepper;
|
|
@@ -526,7 +527,7 @@ declare class PraxisWizardFormComponent {
|
|
|
526
527
|
private readonly persistedState;
|
|
527
528
|
readonly selectedIndex: _angular_core.WritableSignal<number>;
|
|
528
529
|
readonly wizard: _angular_core.Signal<WizardFormConfig | null>;
|
|
529
|
-
readonly stepperConfig: _angular_core.Signal<StepperMetadata | null>;
|
|
530
|
+
readonly stepperConfig: _angular_core.Signal<_praxisui_stepper.StepperMetadata | null>;
|
|
530
531
|
readonly activeStep: _angular_core.Signal<WizardStepConfig | null>;
|
|
531
532
|
wizardBrand: _angular_core.Signal<string>;
|
|
532
533
|
activeTitle: _angular_core.Signal<string>;
|
|
@@ -534,9 +535,9 @@ declare class PraxisWizardFormComponent {
|
|
|
534
535
|
activeDescription: _angular_core.Signal<string>;
|
|
535
536
|
readonly resolvedCta: _angular_core.Signal<Partial<WizardCtaConfig>>;
|
|
536
537
|
primaryLabel: _angular_core.Signal<string>;
|
|
537
|
-
primaryAction: _angular_core.Signal<WizardCtaAction>;
|
|
538
|
+
primaryAction: _angular_core.Signal<_praxisui_stepper.WizardCtaAction>;
|
|
538
539
|
secondaryLabel: _angular_core.Signal<string>;
|
|
539
|
-
secondaryAction: _angular_core.Signal<WizardSecondaryAction>;
|
|
540
|
+
secondaryAction: _angular_core.Signal<_praxisui_stepper.WizardSecondaryAction>;
|
|
540
541
|
showSecondaryAction(): boolean;
|
|
541
542
|
isPrimaryDisabled(): boolean;
|
|
542
543
|
onPrimaryAction(): Promise<void>;
|