jsuites 6.3.4 → 6.3.5
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/jsuites.js +2 -2
- package/package.json +1 -1
package/dist/jsuites.js
CHANGED
|
@@ -10784,7 +10784,7 @@ if (! Contextmenu && "function" === 'function') {
|
|
|
10784
10784
|
if (control.caret) {
|
|
10785
10785
|
let index = control.caret.index;
|
|
10786
10786
|
let position = control.caret.position;
|
|
10787
|
-
let value = control.values[index] ?? '';
|
|
10787
|
+
let value = String(control.values[index] ?? '');
|
|
10788
10788
|
// Re-apply the caret to the original position
|
|
10789
10789
|
control.values[index] = value.substring(0, position) + hiddenCaret + value.substring(position);
|
|
10790
10790
|
}
|
|
@@ -23443,7 +23443,7 @@ var jSuites = {
|
|
|
23443
23443
|
...dictionary,
|
|
23444
23444
|
...helpers,
|
|
23445
23445
|
/** Current version */
|
|
23446
|
-
version: '6.3.
|
|
23446
|
+
version: '6.3.5',
|
|
23447
23447
|
/** Bind new extensions to Jsuites */
|
|
23448
23448
|
setExtensions: function(o) {
|
|
23449
23449
|
if (typeof(o) == 'object') {
|
package/package.json
CHANGED