@almadar/std 14.27.0 → 14.28.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.
Files changed (25) hide show
  1. package/behaviors/registry/app/atoms/std-approval-chain.orb +106 -0
  2. package/behaviors/registry/app/atoms/std-multi-party-transaction.orb +130 -0
  3. package/behaviors/registry/app/atoms/std-pipeline.orb +139 -0
  4. package/behaviors/registry/app/atoms/std-recurring-schedule.orb +94 -0
  5. package/behaviors/registry/app/atoms/std-timeline.orb +108 -0
  6. package/behaviors/registry/app/atoms/std-wizard-branching.orb +129 -0
  7. package/behaviors/registry/core/atoms/std-board.orb +1367 -0
  8. package/behaviors/registry/core/atoms/std-event-log.orb +777 -0
  9. package/behaviors/registry/core/atoms/std-multi-party-flow.orb +1313 -0
  10. package/behaviors/registry/core/atoms/std-recurrence.orb +937 -0
  11. package/behaviors/registry/core/atoms/std-step-flow.orb +1155 -0
  12. package/behaviors/registry/core/atoms/std-wizard.orb +1085 -0
  13. package/dist/behaviors/registry/app/atoms/std-approval-chain.orb +106 -0
  14. package/dist/behaviors/registry/app/atoms/std-multi-party-transaction.orb +130 -0
  15. package/dist/behaviors/registry/app/atoms/std-pipeline.orb +139 -0
  16. package/dist/behaviors/registry/app/atoms/std-recurring-schedule.orb +94 -0
  17. package/dist/behaviors/registry/app/atoms/std-timeline.orb +108 -0
  18. package/dist/behaviors/registry/app/atoms/std-wizard-branching.orb +129 -0
  19. package/dist/behaviors/registry/core/atoms/std-board.orb +1367 -0
  20. package/dist/behaviors/registry/core/atoms/std-event-log.orb +777 -0
  21. package/dist/behaviors/registry/core/atoms/std-multi-party-flow.orb +1313 -0
  22. package/dist/behaviors/registry/core/atoms/std-recurrence.orb +937 -0
  23. package/dist/behaviors/registry/core/atoms/std-step-flow.orb +1155 -0
  24. package/dist/behaviors/registry/core/atoms/std-wizard.orb +1085 -0
  25. package/package.json +1 -1
@@ -0,0 +1,129 @@
1
+ {
2
+ "name": "std-wizard-branching",
3
+ "version": "2.0.0",
4
+ "description": "std-wizard-branching — domain-specific N-step form wizard. Composes std-wizard with persisted WizardSubmission entity carrying form fields per step. Lights up std-applicant-form (ATS), std-application (HR), std-vendor-onboarding, intake forms in std-healthcare.",
5
+ "orbitals": [
6
+ {
7
+ "name": "WizardBranchingOrbital",
8
+ "uses": [
9
+ {
10
+ "from": "std/behaviors/std-wizard",
11
+ "as": "Wizard"
12
+ }
13
+ ],
14
+ "entity": {
15
+ "name": "WizardSubmission",
16
+ "collection": "wizard_submissions",
17
+ "persistence": "persistent",
18
+ "fields": [
19
+ {
20
+ "name": "id",
21
+ "type": "string",
22
+ "required": true
23
+ },
24
+ {
25
+ "name": "title",
26
+ "type": "string",
27
+ "required": true
28
+ },
29
+ {
30
+ "name": "description",
31
+ "type": "string",
32
+ "default": ""
33
+ },
34
+ {
35
+ "name": "category",
36
+ "type": "string",
37
+ "default": "personal",
38
+ "values": [
39
+ "personal",
40
+ "business",
41
+ "internal",
42
+ "external"
43
+ ]
44
+ },
45
+ {
46
+ "name": "priority",
47
+ "type": "string",
48
+ "default": "medium",
49
+ "values": [
50
+ "low",
51
+ "medium",
52
+ "high",
53
+ "urgent"
54
+ ]
55
+ },
56
+ {
57
+ "name": "notes",
58
+ "type": "string",
59
+ "default": ""
60
+ },
61
+ {
62
+ "name": "submittedAt",
63
+ "type": "string",
64
+ "default": ""
65
+ }
66
+ ]
67
+ },
68
+ "traits": [
69
+ {
70
+ "ref": "Wizard.traits.WizardForm",
71
+ "name": "WizardFlow",
72
+ "linkedEntity": "WizardSubmission",
73
+ "config": {
74
+ "steps": [
75
+ {
76
+ "description": "Tell us about the request",
77
+ "key": "details",
78
+ "label": "Your Details",
79
+ "icon": "file-text",
80
+ "fields": [
81
+ "title",
82
+ "description"
83
+ ]
84
+ },
85
+ {
86
+ "label": "Context",
87
+ "key": "context",
88
+ "description": "Categorize and prioritize",
89
+ "icon": "tag",
90
+ "fields": [
91
+ "category",
92
+ "priority"
93
+ ]
94
+ },
95
+ {
96
+ "description": "Confirm your submission",
97
+ "key": "review",
98
+ "icon": "check-circle",
99
+ "fields": [
100
+ "notes"
101
+ ],
102
+ "label": "Review & Submit"
103
+ }
104
+ ],
105
+ "currentFields": [
106
+ "title",
107
+ "description",
108
+ "category",
109
+ "priority",
110
+ "notes"
111
+ ],
112
+ "title": "Submission Wizard"
113
+ }
114
+ }
115
+ ],
116
+ "pages": [
117
+ {
118
+ "name": "WizardBranchingPage",
119
+ "path": "/wizard-branching",
120
+ "traits": [
121
+ {
122
+ "ref": "WizardFlow"
123
+ }
124
+ ]
125
+ }
126
+ ]
127
+ }
128
+ ]
129
+ }