@steedos-widgets/sortable 6.3.1 → 6.3.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/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@6.3.1/dist/sortable.umd.js",
7
- "https://unpkg.com/@steedos-widgets/sortable@6.3.1/dist/sortable.umd.css"
6
+ "https://unpkg.com/@steedos-widgets/sortable@6.3.2/dist/sortable.umd.js",
7
+ "https://unpkg.com/@steedos-widgets/sortable@6.3.2/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@6.3.1/dist/meta.js",
18
+ "url": "https://unpkg.com/@steedos-widgets/sortable@6.3.2/dist/meta.js",
19
19
  "urls": {
20
- "default": "https://unpkg.com/@steedos-widgets/sortable@6.3.1/dist/meta.js",
21
- "design": "https://unpkg.com/@steedos-widgets/sortable@6.3.1/dist/meta.js"
20
+ "default": "https://unpkg.com/@steedos-widgets/sortable@6.3.2/dist/meta.js",
21
+ "design": "https://unpkg.com/@steedos-widgets/sortable@6.3.2/dist/meta.js"
22
22
  }
23
23
  }
24
24
  ]
@@ -55148,6 +55148,11 @@ async function getQuickEditSchema(object, columnField, options){
55148
55148
  const submitEvent = {
55149
55149
  submit: {
55150
55150
  actions: [
55151
+ {
55152
+ "actionType": "validate",
55153
+ "componentId": quickEditId,
55154
+ "outputVar": "form_validate_result"
55155
+ },
55151
55156
  {
55152
55157
  actionType: "custom",
55153
55158
  script: `
@@ -55164,10 +55169,12 @@ async function getQuickEditSchema(object, columnField, options){
55164
55169
  doAction({actionType: 'setValue', "args": {"value": event.data._display},componentId: "${options.objectName}" + "_display_" + event.data._index});
55165
55170
  doAction({actionType: 'setValue', "args": {"value": event.data.${field.name}},componentId: "${options.objectName + "_" + field.name + "_"}" + event.data._index});
55166
55171
  }
55167
- `
55172
+ `,
55173
+ expression: "${!form_validate_result.error}"
55168
55174
  },
55169
55175
  {
55170
- "actionType": "closeDialog"
55176
+ "actionType": "closeDialog",
55177
+ expression: "${!form_validate_result.error}"
55171
55178
  }
55172
55179
  ]
55173
55180
  }