@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
@@ -100,43 +100,49 @@
100
100
  "to": "open",
101
101
  "event": "OPEN",
102
102
  "effects": [
103
+ [
104
+ "set",
105
+ "@entity.id",
106
+ "@payload.id"
107
+ ],
103
108
  [
104
109
  "render-ui",
105
110
  "modal",
106
111
  {
107
- "gap": "md",
112
+ "direction": "vertical",
108
113
  "type": "stack",
114
+ "gap": "md",
109
115
  "children": [
110
116
  {
117
+ "direction": "horizontal",
111
118
  "children": [
112
119
  {
113
- "size": "md",
114
120
  "name": "@config.icon",
121
+ "size": "md",
115
122
  "type": "icon"
116
123
  },
117
124
  {
118
- "content": "@config.title",
125
+ "type": "typography",
119
126
  "variant": "h3",
120
- "type": "typography"
127
+ "content": "@config.title"
121
128
  }
122
129
  ],
123
130
  "type": "stack",
124
- "direction": "horizontal",
125
131
  "gap": "sm"
126
132
  },
127
133
  {
128
134
  "type": "divider"
129
135
  },
130
136
  {
131
- "mode": "@config.mode",
137
+ "entityId": "@entity.id",
132
138
  "type": "form-section",
133
- "cancelEvent": "CLOSE",
134
139
  "submitEvent": "SAVE",
140
+ "mode": "@config.mode",
141
+ "cancelEvent": "CLOSE",
135
142
  "fields": "@config.fields",
136
143
  "entity": "ModalRecord"
137
144
  }
138
- ],
139
- "direction": "vertical"
145
+ ]
140
146
  }
141
147
  ]
142
148
  ]