@mixd-id/web-scaffold 0.1.230406354 → 0.1.230406355

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mixd-id/web-scaffold",
3
3
  "private": false,
4
- "version": "0.1.230406354",
4
+ "version": "0.1.230406355",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
@@ -1189,10 +1189,14 @@ export default{
1189
1189
  const views = this.recurseViews(this.viewedComponents, uids)
1190
1190
  if(views?.length < 1) return
1191
1191
 
1192
- const { datasource } = this.viewedPreset
1192
+ const { name, datasource } = this.viewedPreset
1193
1193
 
1194
1194
  if(!uids) this.readyState = 0
1195
- this.socket.send(this.src, { views, datasource })
1195
+ this.socket.send(this.src, {
1196
+ name,
1197
+ views,
1198
+ datasource
1199
+ })
1196
1200
  .then(_ => {
1197
1201
  Object.assign(this.values, _)
1198
1202
  })