@almadar/std 7.4.1 → 7.4.3

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 (32) hide show
  1. package/behaviors/registry/atoms/std-modal.orb +15 -9
  2. package/behaviors/registry/atoms/std-wizard.orb +306 -293
  3. package/behaviors/registry/molecules/std-detail.orb +513 -292
  4. package/behaviors/registry/molecules/std-geospatial.orb +543 -406
  5. package/behaviors/registry/molecules/std-inventory.orb +489 -445
  6. package/behaviors/registry/molecules/std-list.orb +492 -616
  7. package/behaviors/registry/molecules/std-messaging.orb +511 -327
  8. package/behaviors/registry/molecules/std-wizard-form.orb +2 -101
  9. package/dist/behaviors/behaviors-registry.json +1976 -719
  10. package/dist/behaviors/exports-reader.js +71 -11
  11. package/dist/behaviors/exports-reader.js.map +1 -1
  12. package/dist/behaviors/functions/index.d.ts +11 -3
  13. package/dist/behaviors/functions/index.js +67 -11
  14. package/dist/behaviors/functions/index.js.map +1 -1
  15. package/dist/behaviors/index.d.ts +1 -1
  16. package/dist/behaviors/index.js +72 -12
  17. package/dist/behaviors/index.js.map +1 -1
  18. package/dist/behaviors/query.js +71 -11
  19. package/dist/behaviors/query.js.map +1 -1
  20. package/dist/behaviors/registry/atoms/std-modal.orb +15 -9
  21. package/dist/behaviors/registry/atoms/std-wizard.orb +306 -293
  22. package/dist/behaviors/registry/molecules/std-detail.orb +513 -292
  23. package/dist/behaviors/registry/molecules/std-geospatial.orb +543 -406
  24. package/dist/behaviors/registry/molecules/std-inventory.orb +489 -445
  25. package/dist/behaviors/registry/molecules/std-list.orb +492 -616
  26. package/dist/behaviors/registry/molecules/std-messaging.orb +511 -327
  27. package/dist/behaviors/registry/molecules/std-wizard-form.orb +2 -101
  28. package/dist/behaviors-registry.json +1976 -719
  29. package/dist/index.d.ts +1 -1
  30. package/dist/index.js +72 -12
  31. package/dist/index.js.map +1 -1
  32. package/package.json +1 -1
@@ -10,10 +10,6 @@
10
10
  "from": "std/behaviors/std-wizard",
11
11
  "as": "Wizard"
12
12
  },
13
- {
14
- "from": "std/behaviors/std-input",
15
- "as": "Input"
16
- },
17
13
  {
18
14
  "from": "std/behaviors/std-validate-on-save",
19
15
  "as": "Validate"
@@ -44,110 +40,15 @@
44
40
  ]
45
41
  },
46
42
  "traits": [
47
- {
48
- "ref": "Input.traits.TextInputInput",
49
- "name": "WizardFormInput",
50
- "linkedEntity": "WizardFormEntry"
51
- },
52
43
  {
53
44
  "ref": "Wizard.traits.WizardEntryWizard",
54
45
  "name": "WizardFormWizard",
55
- "linkedEntity": "WizardFormEntry",
56
- "effects": {
57
- "RENDER_STEP": [
58
- [
59
- "render-ui",
60
- "main",
61
- {
62
- "gap": "md",
63
- "direction": "vertical",
64
- "className": "max-w-xl mx-auto w-full",
65
- "type": "stack",
66
- "children": [
67
- {
68
- "type": "typography",
69
- "variant": "h2",
70
- "content": "@entity.step"
71
- },
72
- {
73
- "type": "divider"
74
- },
75
- "@trait.WizardFormInput",
76
- {
77
- "justify": "end",
78
- "children": [
79
- {
80
- "type": "button",
81
- "label": "Back",
82
- "variant": "ghost",
83
- "event": "PREV"
84
- },
85
- {
86
- "type": "button",
87
- "label": "Next",
88
- "event": "NEXT",
89
- "variant": "primary"
90
- }
91
- ],
92
- "type": "stack",
93
- "gap": "sm",
94
- "direction": "horizontal"
95
- }
96
- ]
97
- }
98
- ]
99
- ]
100
- }
46
+ "linkedEntity": "WizardFormEntry"
101
47
  },
102
48
  {
103
49
  "ref": "Validate.traits.OrbFileWatcher",
104
50
  "name": "WizardFormValidate",
105
51
  "linkedEntity": "WizardFormEntry"
106
- },
107
- {
108
- "name": "WizardFormLayout",
109
- "category": "interaction",
110
- "linkedEntity": "WizardFormEntry",
111
- "stateMachine": {
112
- "states": [
113
- {
114
- "name": "composing",
115
- "isInitial": true
116
- }
117
- ],
118
- "events": [
119
- {
120
- "key": "INIT",
121
- "name": "Initialize"
122
- }
123
- ],
124
- "transitions": [
125
- {
126
- "from": "composing",
127
- "to": "composing",
128
- "event": "INIT",
129
- "effects": [
130
- [
131
- "fetch",
132
- "WizardFormEntry"
133
- ],
134
- [
135
- "render-ui",
136
- "main",
137
- {
138
- "type": "stack",
139
- "direction": "vertical",
140
- "children": [
141
- "@trait.WizardFormWizard"
142
- ],
143
- "gap": "md"
144
- }
145
- ]
146
- ]
147
- }
148
- ]
149
- },
150
- "scope": "instance"
151
52
  }
152
53
  ],
153
54
  "pages": [
@@ -156,7 +57,7 @@
156
57
  "path": "/wizard-form",
157
58
  "traits": [
158
59
  {
159
- "ref": "WizardFormLayout"
60
+ "ref": "WizardFormWizard"
160
61
  }
161
62
  ]
162
63
  }