@wavemaker/angular-codegen 11.9.0-next.27464 → 11.9.0-next.27468
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.
- angular-codegen/angular-app/package-lock.json +4 -4
- angular-codegen/angular-app/package.json +2 -2
- angular-codegen/angular-app/src/assets/styles/css/wm-style.css +1 -1
- angular-codegen/dependencies/transpilation-mobile.cjs.js +5 -1
- angular-codegen/dependencies/transpilation-web.cjs.js +5 -1
- angular-codegen/package.json +1 -1
|
@@ -91913,7 +91913,11 @@ register('wm-fileupload', () => {
|
|
|
91913
91913
|
const onSelectBinding = getDataSource(attrs.get('select.event'));
|
|
91914
91914
|
attrs.set('datasource.bind', onSelectBinding);
|
|
91915
91915
|
}
|
|
91916
|
-
|
|
91916
|
+
if (attrs.get('delete.event')) {
|
|
91917
|
+
const onDeleteBinding = getDataSource(attrs.get('delete.event'));
|
|
91918
|
+
attrs.set('deletedatasource.bind', onDeleteBinding);
|
|
91919
|
+
}
|
|
91920
|
+
return `<${tagName$C} wmFileUpload ${getAttrMarkup(attrs)} role="input">`;
|
|
91917
91921
|
},
|
|
91918
91922
|
post: () => `</${tagName$C}>`
|
|
91919
91923
|
};
|
|
@@ -103104,7 +103104,11 @@ register('wm-fileupload', () => {
|
|
|
103104
103104
|
const onSelectBinding = getDataSource(attrs.get('select.event'));
|
|
103105
103105
|
attrs.set('datasource.bind', onSelectBinding);
|
|
103106
103106
|
}
|
|
103107
|
-
|
|
103107
|
+
if (attrs.get('delete.event')) {
|
|
103108
|
+
const onDeleteBinding = getDataSource(attrs.get('delete.event'));
|
|
103109
|
+
attrs.set('deletedatasource.bind', onDeleteBinding);
|
|
103110
|
+
}
|
|
103111
|
+
return `<${tagName$C} wmFileUpload ${getAttrMarkup(attrs)} role="input">`;
|
|
103108
103112
|
},
|
|
103109
103113
|
post: () => `</${tagName$C}>`
|
|
103110
103114
|
};
|