formeo 4.2.3 → 4.2.4
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/demo/assets/css/demo.min.css +2 -2
- package/dist/demo/assets/css/demo.min.css.gz +0 -0
- package/dist/demo/assets/css/formeo.min.css +2 -2
- package/dist/demo/assets/js/demo.min.js +2 -2
- package/dist/demo/assets/js/demo.min.js.gz +0 -0
- package/dist/demo/assets/js/formeo.cjs.js +25 -16
- package/dist/demo/assets/js/formeo.es.js +25 -16
- package/dist/demo/assets/js/formeo.min.cjs.js +2 -2
- package/dist/demo/assets/js/formeo.min.es.js +3 -3
- package/dist/demo/assets/js/formeo.min.js +25 -16
- package/dist/demo/assets/js/formeo.min.umd.js +2 -2
- package/dist/demo/assets/js/formeo.umd.js +25 -16
- package/dist/demo/assets/js/index.min.js +1 -1
- package/dist/demo/assets/js/index.min2.js +1 -1
- package/dist/demo/assets/js/index.min3.js +1 -1
- package/dist/demo/assets/js/mode-json.min.js +1 -1
- package/dist/demo/assets/js/mode-json.min.js.gz +0 -0
- package/dist/demo/assets/js/theme-github_light_default.min.js +1 -1
- package/dist/demo/index.html +1 -1
- package/dist/formeo.cjs.js +25 -16
- package/dist/formeo.css +2 -1
- package/dist/formeo.es.js +25 -16
- package/dist/formeo.min.cjs.js +2 -2
- package/dist/formeo.min.css +2 -2
- package/dist/formeo.min.es.js +3 -3
- package/dist/formeo.min.js +25 -16
- package/dist/formeo.min.umd.js +2 -2
- package/dist/formeo.umd.js +25 -16
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
/**
|
|
3
3
|
formeo - https://formeo.io
|
|
4
|
-
Version: 4.2.
|
|
4
|
+
Version: 4.2.3
|
|
5
5
|
Author: Draggable https://draggable.io
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -435,7 +435,7 @@ Author: Draggable https://draggable.io
|
|
|
435
435
|
window.SmartTooltip = SmartTooltip;
|
|
436
436
|
}
|
|
437
437
|
const name$1 = "formeo";
|
|
438
|
-
const version$2 = "4.2.
|
|
438
|
+
const version$2 = "4.2.3";
|
|
439
439
|
const pkg = {
|
|
440
440
|
name: name$1,
|
|
441
441
|
version: version$2
|
|
@@ -9149,6 +9149,7 @@ Author: Draggable https://draggable.io
|
|
|
9149
9149
|
Sortable.create(childWrap, {
|
|
9150
9150
|
animation: 150,
|
|
9151
9151
|
fallbackClass: "field-moving",
|
|
9152
|
+
forceFallback: true,
|
|
9152
9153
|
group: {
|
|
9153
9154
|
name: "column",
|
|
9154
9155
|
pull: true,
|
|
@@ -9254,6 +9255,7 @@ Author: Draggable https://draggable.io
|
|
|
9254
9255
|
Sortable.create(children, {
|
|
9255
9256
|
animation: 150,
|
|
9256
9257
|
fallbackClass: "column-moving",
|
|
9258
|
+
forceFallback: true,
|
|
9257
9259
|
group: {
|
|
9258
9260
|
name: "row",
|
|
9259
9261
|
pull: true,
|
|
@@ -9949,30 +9951,37 @@ Author: Draggable https://draggable.io
|
|
|
9949
9951
|
for (let i2 = groups.length - 1; i2 >= 0; i2--) {
|
|
9950
9952
|
const storeID = `formeo-controls-${groups[i2]}`;
|
|
9951
9953
|
if (!this.options.sortable) {
|
|
9952
|
-
|
|
9954
|
+
globalThis.localStorage.removeItem(storeID);
|
|
9953
9955
|
}
|
|
9954
9956
|
Sortable.create(groups[i2], {
|
|
9955
9957
|
animation: 150,
|
|
9956
|
-
forceFallback: true,
|
|
9957
9958
|
fallbackClass: "control-moving",
|
|
9958
9959
|
fallbackOnBody: true,
|
|
9960
|
+
forceFallback: true,
|
|
9961
|
+
fallbackTolerance: 5,
|
|
9959
9962
|
group: {
|
|
9960
9963
|
name: "controls",
|
|
9961
9964
|
pull: "clone",
|
|
9962
|
-
put: false
|
|
9965
|
+
put: false,
|
|
9966
|
+
revertClone: true
|
|
9963
9967
|
},
|
|
9964
|
-
|
|
9965
|
-
|
|
9968
|
+
onClone: ({ clone: clone2, item }) => {
|
|
9969
|
+
clone2.id = item.id;
|
|
9966
9970
|
if (this.options.ghostPreview) {
|
|
9967
|
-
const {
|
|
9968
|
-
|
|
9969
|
-
|
|
9971
|
+
const { controlData } = this.get(item.id);
|
|
9972
|
+
Promise.resolve().then(() => field).then(({ default: Field2 }) => {
|
|
9973
|
+
clone2.innerHTML = "";
|
|
9974
|
+
clone2.appendChild(new Field2(controlData).preview);
|
|
9975
|
+
});
|
|
9970
9976
|
}
|
|
9971
9977
|
},
|
|
9972
|
-
|
|
9973
|
-
|
|
9974
|
-
|
|
9975
|
-
|
|
9978
|
+
onStart: () => {
|
|
9979
|
+
this.originalDocumentOverflow = document.documentElement.style.overflow;
|
|
9980
|
+
document.documentElement.style.overflow = "hidden";
|
|
9981
|
+
},
|
|
9982
|
+
onEnd: () => {
|
|
9983
|
+
document.documentElement.style.overflow = this.originalDocumentOverflow;
|
|
9984
|
+
this.originalDocumentOverflow = null;
|
|
9976
9985
|
},
|
|
9977
9986
|
sort: this.options.sortable,
|
|
9978
9987
|
store: {
|
|
@@ -9982,7 +9991,7 @@ Author: Draggable https://draggable.io
|
|
|
9982
9991
|
* @return {Array}
|
|
9983
9992
|
*/
|
|
9984
9993
|
get: () => {
|
|
9985
|
-
const order =
|
|
9994
|
+
const order = globalThis.localStorage.getItem(storeID);
|
|
9986
9995
|
return order ? order.split("|") : [];
|
|
9987
9996
|
},
|
|
9988
9997
|
/**
|
|
@@ -9991,7 +10000,7 @@ Author: Draggable https://draggable.io
|
|
|
9991
10000
|
*/
|
|
9992
10001
|
set: (sortable) => {
|
|
9993
10002
|
const order = sortable.toArray();
|
|
9994
|
-
|
|
10003
|
+
globalThis.localStorage.setItem(storeID, order.join("|"));
|
|
9995
10004
|
}
|
|
9996
10005
|
}
|
|
9997
10006
|
});
|
|
Binary file
|
package/dist/demo/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en" xml:lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="chrome=1"><meta name="viewport" content="user-scalable=no,width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1"><meta name="description" content="Vanilla Javascript form building module"><meta name="theme-color" content="#232323"><title>Formeo | Drag & Drop Form Creation</title><script type="module" crossorigin src="/formeo/assets/js/demo.min.js"></script><link rel="stylesheet" crossorigin href="/formeo/assets/css/demo.min.css"></head><body><div class="site-wrap"><header id="demo-header"><div class="header-inner"><img id="formeo-logo" src="/formeo/assets/img/formeo-logo.svg" alt="Formeo Logo" width="100"><nav aria-label="Framework navigation"><ul><li><label for="framework-select">Framework:</label> <select name="framework-select" id="framework-select" class="form-control"><option value="vanilla">Vanilla JavaScript</option><option value="angular">Angular</option><option value="react">React</option></select></li><li><label for="locale">Language</label> <select name="locale" id="locale" class="form-control"><option value="af-ZA" dir="ltr">Afrikaans (Suid-Afrika)</option><option value="ar-TN" dir="rtl">العربية (تونس)</option><option value="cs-CZ" dir="ltr">čeština (Česko)</option><option value="de-DE" dir="ltr">Deutsch (Deutschland)</option><option value="en-US" dir="ltr">English</option><option value="es-ES" dir="ltr">español de España</option><option value="fa-IR" dir="rtl">فارسی (ایران)</option><option value="fi-FI" dir="ltr">suomi (Suomi)</option><option value="fr-FR" dir="ltr">français (France)</option><option value="he-IL" dir="rtl">עברית (ישראל)</option><option value="hi-IN" dir="ltr">हिन्दी (भारत)</option><option value="hu-HU" dir="ltr">magyar (Magyarország)</option><option value="it-IT" dir="ltr">italiano (Italia)</option><option value="ja-JP" dir="ltr">日本語 (日本)</option><option value="nb-NO" dir="ltr">norsk bokmål (Norge)</option><option value="pl-PL" dir="ltr">polski (Polska)</option><option value="pt-BR" dir="ltr">português (Brasil)</option><option value="pt-PT" dir="ltr">português europeu</option><option value="ro-RO" dir="ltr">română (România)</option><option value="ru-RU" dir="ltr">русский (Россия)</option><option value="th-TH" dir="ltr">ไทย (ไทย)</option><option value="tr-TR" dir="ltr">Türkçe (Türkiye)</option><option value="zh-CN" dir="ltr">中文(中国)</option><option value="zh-HK" dir="ltr">中文(中國香港特別行政區)</option></select></li><li><label for="control-filter">Control Filter:</label> <input id="control-filter" placeholder="ex. text" class="form-control"></li><li style="float:right">v4.2.
|
|
1
|
+
<!doctype html><html lang="en" xml:lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="chrome=1"><meta name="viewport" content="user-scalable=no,width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1"><meta name="description" content="Vanilla Javascript form building module"><meta name="theme-color" content="#232323"><title>Formeo | Drag & Drop Form Creation</title><script type="module" crossorigin src="/formeo/assets/js/demo.min.js"></script><link rel="stylesheet" crossorigin href="/formeo/assets/css/demo.min.css"></head><body><div class="site-wrap"><header id="demo-header"><div class="header-inner"><img id="formeo-logo" src="/formeo/assets/img/formeo-logo.svg" alt="Formeo Logo" width="100"><nav aria-label="Framework navigation"><ul><li><label for="framework-select">Framework:</label> <select name="framework-select" id="framework-select" class="form-control"><option value="vanilla">Vanilla JavaScript</option><option value="angular">Angular</option><option value="react">React</option></select></li><li><label for="locale">Language</label> <select name="locale" id="locale" class="form-control"><option value="af-ZA" dir="ltr">Afrikaans (Suid-Afrika)</option><option value="ar-TN" dir="rtl">العربية (تونس)</option><option value="cs-CZ" dir="ltr">čeština (Česko)</option><option value="de-DE" dir="ltr">Deutsch (Deutschland)</option><option value="en-US" dir="ltr">English</option><option value="es-ES" dir="ltr">español de España</option><option value="fa-IR" dir="rtl">فارسی (ایران)</option><option value="fi-FI" dir="ltr">suomi (Suomi)</option><option value="fr-FR" dir="ltr">français (France)</option><option value="he-IL" dir="rtl">עברית (ישראל)</option><option value="hi-IN" dir="ltr">हिन्दी (भारत)</option><option value="hu-HU" dir="ltr">magyar (Magyarország)</option><option value="it-IT" dir="ltr">italiano (Italia)</option><option value="ja-JP" dir="ltr">日本語 (日本)</option><option value="nb-NO" dir="ltr">norsk bokmål (Norge)</option><option value="pl-PL" dir="ltr">polski (Polska)</option><option value="pt-BR" dir="ltr">português (Brasil)</option><option value="pt-PT" dir="ltr">português europeu</option><option value="ro-RO" dir="ltr">română (România)</option><option value="ru-RU" dir="ltr">русский (Россия)</option><option value="th-TH" dir="ltr">ไทย (ไทย)</option><option value="tr-TR" dir="ltr">Türkçe (Türkiye)</option><option value="zh-CN" dir="ltr">中文(中国)</option><option value="zh-HK" dir="ltr">中文(中國香港特別行政區)</option></select></li><li><label for="control-filter">Control Filter:</label> <input id="control-filter" placeholder="ex. text" class="form-control"></li><li style="float:right">v4.2.3</li></ul></nav></div></header><section id="main_content" class="inner"><div id="framework-container"></div></section><div class="container render-btn-wrap" id="editor-action-buttons"></div><div id="formData-popover" popover><div class="popover-header"><h3>Test formData</h3><div><button type="button" id="format-json">Format</button> <button type="button" id="collapse-json">Collapse</button> <button type="button" id="copy-json">Copy to Clipboard</button></div></div><pre id="formData-editor"></pre><div class="formData-actions"><button popovertarget="formData-popover" popovertargetaction="hide" type="button">Cancel</button> <button id="submit-formData" type="button">Submit</button></div></div><footer id="demo-footer"><nav aria-label="Footer navigation"><ul><li><a href="https://github.com/Draggable/formeo" target="_blank" title="View project on GitHub"><img src="/formeo/assets/img/github.png" width="77" alt="GitHub"></a></li></ul></nav></footer></div></body></html>
|
package/dist/formeo.cjs.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
/**
|
|
3
3
|
formeo - https://formeo.io
|
|
4
|
-
Version: 4.2.
|
|
4
|
+
Version: 4.2.3
|
|
5
5
|
Author: Draggable https://draggable.io
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -433,7 +433,7 @@ if (window !== void 0) {
|
|
|
433
433
|
window.SmartTooltip = SmartTooltip;
|
|
434
434
|
}
|
|
435
435
|
const name$1 = "formeo";
|
|
436
|
-
const version$2 = "4.2.
|
|
436
|
+
const version$2 = "4.2.3";
|
|
437
437
|
const pkg = {
|
|
438
438
|
name: name$1,
|
|
439
439
|
version: version$2
|
|
@@ -9147,6 +9147,7 @@ class Column extends Component {
|
|
|
9147
9147
|
Sortable.create(childWrap, {
|
|
9148
9148
|
animation: 150,
|
|
9149
9149
|
fallbackClass: "field-moving",
|
|
9150
|
+
forceFallback: true,
|
|
9150
9151
|
group: {
|
|
9151
9152
|
name: "column",
|
|
9152
9153
|
pull: true,
|
|
@@ -9252,6 +9253,7 @@ class Row extends Component {
|
|
|
9252
9253
|
Sortable.create(children, {
|
|
9253
9254
|
animation: 150,
|
|
9254
9255
|
fallbackClass: "column-moving",
|
|
9256
|
+
forceFallback: true,
|
|
9255
9257
|
group: {
|
|
9256
9258
|
name: "row",
|
|
9257
9259
|
pull: true,
|
|
@@ -9947,30 +9949,37 @@ let Controls$1 = class Controls {
|
|
|
9947
9949
|
for (let i2 = groups.length - 1; i2 >= 0; i2--) {
|
|
9948
9950
|
const storeID = `formeo-controls-${groups[i2]}`;
|
|
9949
9951
|
if (!this.options.sortable) {
|
|
9950
|
-
|
|
9952
|
+
globalThis.localStorage.removeItem(storeID);
|
|
9951
9953
|
}
|
|
9952
9954
|
Sortable.create(groups[i2], {
|
|
9953
9955
|
animation: 150,
|
|
9954
|
-
forceFallback: true,
|
|
9955
9956
|
fallbackClass: "control-moving",
|
|
9956
9957
|
fallbackOnBody: true,
|
|
9958
|
+
forceFallback: true,
|
|
9959
|
+
fallbackTolerance: 5,
|
|
9957
9960
|
group: {
|
|
9958
9961
|
name: "controls",
|
|
9959
9962
|
pull: "clone",
|
|
9960
|
-
put: false
|
|
9963
|
+
put: false,
|
|
9964
|
+
revertClone: true
|
|
9961
9965
|
},
|
|
9962
|
-
|
|
9963
|
-
|
|
9966
|
+
onClone: ({ clone: clone2, item }) => {
|
|
9967
|
+
clone2.id = item.id;
|
|
9964
9968
|
if (this.options.ghostPreview) {
|
|
9965
|
-
const {
|
|
9966
|
-
|
|
9967
|
-
|
|
9969
|
+
const { controlData } = this.get(item.id);
|
|
9970
|
+
Promise.resolve().then(() => field).then(({ default: Field2 }) => {
|
|
9971
|
+
clone2.innerHTML = "";
|
|
9972
|
+
clone2.appendChild(new Field2(controlData).preview);
|
|
9973
|
+
});
|
|
9968
9974
|
}
|
|
9969
9975
|
},
|
|
9970
|
-
|
|
9971
|
-
|
|
9972
|
-
|
|
9973
|
-
|
|
9976
|
+
onStart: () => {
|
|
9977
|
+
this.originalDocumentOverflow = document.documentElement.style.overflow;
|
|
9978
|
+
document.documentElement.style.overflow = "hidden";
|
|
9979
|
+
},
|
|
9980
|
+
onEnd: () => {
|
|
9981
|
+
document.documentElement.style.overflow = this.originalDocumentOverflow;
|
|
9982
|
+
this.originalDocumentOverflow = null;
|
|
9974
9983
|
},
|
|
9975
9984
|
sort: this.options.sortable,
|
|
9976
9985
|
store: {
|
|
@@ -9980,7 +9989,7 @@ let Controls$1 = class Controls {
|
|
|
9980
9989
|
* @return {Array}
|
|
9981
9990
|
*/
|
|
9982
9991
|
get: () => {
|
|
9983
|
-
const order =
|
|
9992
|
+
const order = globalThis.localStorage.getItem(storeID);
|
|
9984
9993
|
return order ? order.split("|") : [];
|
|
9985
9994
|
},
|
|
9986
9995
|
/**
|
|
@@ -9989,7 +9998,7 @@ let Controls$1 = class Controls {
|
|
|
9989
9998
|
*/
|
|
9990
9999
|
set: (sortable) => {
|
|
9991
10000
|
const order = sortable.toArray();
|
|
9992
|
-
|
|
10001
|
+
globalThis.localStorage.setItem(storeID, order.join("|"));
|
|
9993
10002
|
}
|
|
9994
10003
|
}
|
|
9995
10004
|
});
|
package/dist/formeo.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
/**
|
|
3
3
|
formeo - https://formeo.io
|
|
4
|
-
Version: 4.2.
|
|
4
|
+
Version: 4.2.3
|
|
5
5
|
Author: Draggable https://draggable.io
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -1542,6 +1542,7 @@ button[class*=-clone]:hover .svg-icon {
|
|
|
1542
1542
|
flex-direction: column;
|
|
1543
1543
|
justify-content: flex-start;
|
|
1544
1544
|
gap: 16px;
|
|
1545
|
+
min-height: 100%;
|
|
1545
1546
|
}
|
|
1546
1547
|
.formeo.formeo-editor .formeo-stage.removing-all-fields .formeo-row {
|
|
1547
1548
|
transition: margin-top 250ms ease-in;
|
package/dist/formeo.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
/**
|
|
3
3
|
formeo - https://formeo.io
|
|
4
|
-
Version: 4.2.
|
|
4
|
+
Version: 4.2.3
|
|
5
5
|
Author: Draggable https://draggable.io
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -431,7 +431,7 @@ if (window !== void 0) {
|
|
|
431
431
|
window.SmartTooltip = SmartTooltip;
|
|
432
432
|
}
|
|
433
433
|
const name$1 = "formeo";
|
|
434
|
-
const version$2 = "4.2.
|
|
434
|
+
const version$2 = "4.2.3";
|
|
435
435
|
const pkg = {
|
|
436
436
|
name: name$1,
|
|
437
437
|
version: version$2
|
|
@@ -9145,6 +9145,7 @@ class Column extends Component {
|
|
|
9145
9145
|
Sortable.create(childWrap, {
|
|
9146
9146
|
animation: 150,
|
|
9147
9147
|
fallbackClass: "field-moving",
|
|
9148
|
+
forceFallback: true,
|
|
9148
9149
|
group: {
|
|
9149
9150
|
name: "column",
|
|
9150
9151
|
pull: true,
|
|
@@ -9250,6 +9251,7 @@ class Row extends Component {
|
|
|
9250
9251
|
Sortable.create(children, {
|
|
9251
9252
|
animation: 150,
|
|
9252
9253
|
fallbackClass: "column-moving",
|
|
9254
|
+
forceFallback: true,
|
|
9253
9255
|
group: {
|
|
9254
9256
|
name: "row",
|
|
9255
9257
|
pull: true,
|
|
@@ -9945,30 +9947,37 @@ let Controls$1 = class Controls {
|
|
|
9945
9947
|
for (let i2 = groups.length - 1; i2 >= 0; i2--) {
|
|
9946
9948
|
const storeID = `formeo-controls-${groups[i2]}`;
|
|
9947
9949
|
if (!this.options.sortable) {
|
|
9948
|
-
|
|
9950
|
+
globalThis.localStorage.removeItem(storeID);
|
|
9949
9951
|
}
|
|
9950
9952
|
Sortable.create(groups[i2], {
|
|
9951
9953
|
animation: 150,
|
|
9952
|
-
forceFallback: true,
|
|
9953
9954
|
fallbackClass: "control-moving",
|
|
9954
9955
|
fallbackOnBody: true,
|
|
9956
|
+
forceFallback: true,
|
|
9957
|
+
fallbackTolerance: 5,
|
|
9955
9958
|
group: {
|
|
9956
9959
|
name: "controls",
|
|
9957
9960
|
pull: "clone",
|
|
9958
|
-
put: false
|
|
9961
|
+
put: false,
|
|
9962
|
+
revertClone: true
|
|
9959
9963
|
},
|
|
9960
|
-
|
|
9961
|
-
|
|
9964
|
+
onClone: ({ clone: clone2, item }) => {
|
|
9965
|
+
clone2.id = item.id;
|
|
9962
9966
|
if (this.options.ghostPreview) {
|
|
9963
|
-
const {
|
|
9964
|
-
|
|
9965
|
-
|
|
9967
|
+
const { controlData } = this.get(item.id);
|
|
9968
|
+
Promise.resolve().then(() => field).then(({ default: Field2 }) => {
|
|
9969
|
+
clone2.innerHTML = "";
|
|
9970
|
+
clone2.appendChild(new Field2(controlData).preview);
|
|
9971
|
+
});
|
|
9966
9972
|
}
|
|
9967
9973
|
},
|
|
9968
|
-
|
|
9969
|
-
|
|
9970
|
-
|
|
9971
|
-
|
|
9974
|
+
onStart: () => {
|
|
9975
|
+
this.originalDocumentOverflow = document.documentElement.style.overflow;
|
|
9976
|
+
document.documentElement.style.overflow = "hidden";
|
|
9977
|
+
},
|
|
9978
|
+
onEnd: () => {
|
|
9979
|
+
document.documentElement.style.overflow = this.originalDocumentOverflow;
|
|
9980
|
+
this.originalDocumentOverflow = null;
|
|
9972
9981
|
},
|
|
9973
9982
|
sort: this.options.sortable,
|
|
9974
9983
|
store: {
|
|
@@ -9978,7 +9987,7 @@ let Controls$1 = class Controls {
|
|
|
9978
9987
|
* @return {Array}
|
|
9979
9988
|
*/
|
|
9980
9989
|
get: () => {
|
|
9981
|
-
const order =
|
|
9990
|
+
const order = globalThis.localStorage.getItem(storeID);
|
|
9982
9991
|
return order ? order.split("|") : [];
|
|
9983
9992
|
},
|
|
9984
9993
|
/**
|
|
@@ -9987,7 +9996,7 @@ let Controls$1 = class Controls {
|
|
|
9987
9996
|
*/
|
|
9988
9997
|
set: (sortable) => {
|
|
9989
9998
|
const order = sortable.toArray();
|
|
9990
|
-
|
|
9999
|
+
globalThis.localStorage.setItem(storeID, order.join("|"));
|
|
9991
10000
|
}
|
|
9992
10001
|
}
|
|
9993
10002
|
});
|