@almadar/std 7.4.1 → 7.4.2
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/behaviors/registry/atoms/std-modal.orb +15 -9
- package/behaviors/registry/molecules/std-inventory.orb +489 -445
- package/behaviors/registry/molecules/std-list.orb +492 -616
- package/dist/behaviors/behaviors-registry.json +1650 -667
- package/dist/behaviors/exports-reader.js +23 -8
- package/dist/behaviors/exports-reader.js.map +1 -1
- package/dist/behaviors/functions/index.d.ts +5 -3
- package/dist/behaviors/functions/index.js +22 -8
- package/dist/behaviors/functions/index.js.map +1 -1
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +24 -9
- package/dist/behaviors/index.js.map +1 -1
- package/dist/behaviors/query.js +23 -8
- package/dist/behaviors/query.js.map +1 -1
- package/dist/behaviors/registry/atoms/std-modal.orb +15 -9
- package/dist/behaviors/registry/molecules/std-inventory.orb +489 -445
- package/dist/behaviors/registry/molecules/std-list.orb +492 -616
- package/dist/behaviors-registry.json +1650 -667
- package/dist/index.d.ts +1 -1
- package/dist/index.js +24 -9
- package/dist/index.js.map +1 -1
- 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
|
-
"
|
|
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
|
-
"
|
|
125
|
+
"type": "typography",
|
|
119
126
|
"variant": "h3",
|
|
120
|
-
"
|
|
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
|
-
"
|
|
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
|
]
|