@websy/websy-designs 1.12.7 → 1.12.9
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/server/helpers/v1/mySqlHelper.js +2 -2
- package/dist/websy-designs-es6.debug.js +2 -1
- package/dist/websy-designs-es6.js +2 -1
- package/dist/websy-designs-es6.min.js +1 -1
- package/dist/websy-designs.debug.js +2 -1
- package/dist/websy-designs.js +2 -1
- package/dist/websy-designs.min.js +1 -1
- package/package.json +1 -1
|
@@ -178,10 +178,10 @@ class MySqlHelper {
|
|
|
178
178
|
})
|
|
179
179
|
}
|
|
180
180
|
JSONSafeWrite (v) {
|
|
181
|
-
return v.replace(/'/g, '\'\'').replace(/"/g, '
|
|
181
|
+
return v.replace(/'/g, '\'\'').replace(/"/g, '\\\\"').replace(/\\(?=[bfnrtv0'])/g, '\\\\')
|
|
182
182
|
}
|
|
183
183
|
JSONSafeRead (v) {
|
|
184
|
-
return v.replace(/''/g, '\'').replace(
|
|
184
|
+
return v.replace(/''/g, '\'').replace(/\\\\"/g, '"').replace(/\\(?=[^bfnrtv0'])/g, '\\\\')
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
187
|
|
|
@@ -2796,7 +2796,8 @@ class MultiForm {
|
|
|
2796
2796
|
allowDelete: true,
|
|
2797
2797
|
addLabel: '',
|
|
2798
2798
|
deleteLabel: '',
|
|
2799
|
-
emptyMessage: 'No items to display'
|
|
2799
|
+
emptyMessage: 'No items to display',
|
|
2800
|
+
maxRows: 9999
|
|
2800
2801
|
}
|
|
2801
2802
|
this.options = Object.assign({}, DEFAULTS, options)
|
|
2802
2803
|
this.formData = []
|
|
@@ -2777,7 +2777,8 @@ var MultiForm = /*#__PURE__*/function () {
|
|
|
2777
2777
|
allowDelete: true,
|
|
2778
2778
|
addLabel: '',
|
|
2779
2779
|
deleteLabel: '',
|
|
2780
|
-
emptyMessage: 'No items to display'
|
|
2780
|
+
emptyMessage: 'No items to display',
|
|
2781
|
+
maxRows: 9999
|
|
2781
2782
|
};
|
|
2782
2783
|
this.options = _extends({}, DEFAULTS, options);
|
|
2783
2784
|
this.formData = [];
|