@steedos-widgets/sortable 3.6.2 → 3.6.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.
package/dist/assets.json CHANGED
@@ -3,8 +3,8 @@
3
3
  {
4
4
  "package": "@steedos-widgets/sortable",
5
5
  "urls": [
6
- "https://unpkg.com/@steedos-widgets/sortable@3.6.2/dist/sortable.umd.js",
7
- "https://unpkg.com/@steedos-widgets/sortable@3.6.2/dist/sortable.umd.css"
6
+ "https://unpkg.com/@steedos-widgets/sortable@3.6.3/dist/sortable.umd.js",
7
+ "https://unpkg.com/@steedos-widgets/sortable@3.6.3/dist/sortable.umd.css"
8
8
  ],
9
9
  "library": "BuilderSortable"
10
10
  }
@@ -15,10 +15,10 @@
15
15
  "npm": {
16
16
  "package": "@steedos-widgets/sortable"
17
17
  },
18
- "url": "https://unpkg.com/@steedos-widgets/sortable@3.6.2/dist/meta.js",
18
+ "url": "https://unpkg.com/@steedos-widgets/sortable@3.6.3/dist/meta.js",
19
19
  "urls": {
20
- "default": "https://unpkg.com/@steedos-widgets/sortable@3.6.2/dist/meta.js",
21
- "design": "https://unpkg.com/@steedos-widgets/sortable@3.6.2/dist/meta.js"
20
+ "default": "https://unpkg.com/@steedos-widgets/sortable@3.6.3/dist/meta.js",
21
+ "design": "https://unpkg.com/@steedos-widgets/sortable@3.6.3/dist/meta.js"
22
22
  }
23
23
  }
24
24
  ]
@@ -60868,8 +60868,9 @@ async function convertSFieldToAmisField(field, readonly, ctx) {
60868
60868
  "Authorization": "Bearer ${context.tenantId},${context.authToken}"
60869
60869
  },
60870
60870
  "adaptor": `
60871
- payload.data["${field.name}"] = payload.data && payload.data.autonumber;
60871
+ var tempValue = payload.data && payload.data.autonumber;
60872
60872
  delete payload.data.autonumber;
60873
+ payload.data["${field.name}"] = tempValue;
60873
60874
  return payload;
60874
60875
  `
60875
60876
  },