@steedos-widgets/sortable 6.3.12-beta.4 → 6.3.12-beta.6
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 +5 -5
- package/dist/sortable.cjs.js +7 -4
- package/dist/sortable.cjs.js.map +1 -1
- package/dist/sortable.esm.js +7 -4
- package/dist/sortable.esm.js.map +1 -1
- package/dist/sortable.umd.js +7 -4
- package/package.json +3 -3
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.12-beta.
|
|
7
|
-
"https://unpkg.com/@steedos-widgets/sortable@6.3.12-beta.
|
|
6
|
+
"https://unpkg.com/@steedos-widgets/sortable@6.3.12-beta.6/dist/sortable.umd.js",
|
|
7
|
+
"https://unpkg.com/@steedos-widgets/sortable@6.3.12-beta.6/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.12-beta.
|
|
18
|
+
"url": "https://unpkg.com/@steedos-widgets/sortable@6.3.12-beta.6/dist/meta.js",
|
|
19
19
|
"urls": {
|
|
20
|
-
"default": "https://unpkg.com/@steedos-widgets/sortable@6.3.12-beta.
|
|
21
|
-
"design": "https://unpkg.com/@steedos-widgets/sortable@6.3.12-beta.
|
|
20
|
+
"default": "https://unpkg.com/@steedos-widgets/sortable@6.3.12-beta.6/dist/meta.js",
|
|
21
|
+
"design": "https://unpkg.com/@steedos-widgets/sortable@6.3.12-beta.6/dist/meta.js"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
]
|
package/dist/sortable.cjs.js
CHANGED
|
@@ -56554,7 +56554,7 @@ async function getListSchema$1(fields, options){
|
|
|
56554
56554
|
* @Author: baozhoutao@steedos.com
|
|
56555
56555
|
* @Date: 2022-11-01 15:51:00
|
|
56556
56556
|
* @LastEditors: baozhoutao@steedos.com
|
|
56557
|
-
* @LastEditTime: 2024-
|
|
56557
|
+
* @LastEditTime: 2024-12-26 20:28:43
|
|
56558
56558
|
* @Description:
|
|
56559
56559
|
*/
|
|
56560
56560
|
|
|
@@ -56714,20 +56714,23 @@ const getSchema$5 = async (uiSchema, ctx) => {
|
|
|
56714
56714
|
{
|
|
56715
56715
|
type: 'button',
|
|
56716
56716
|
actionType: 'cancel',
|
|
56717
|
-
label: instance.t('frontend_form_cancel')
|
|
56717
|
+
label: instance.t('frontend_form_cancel'),
|
|
56718
|
+
className: 'form-btn-cancel'
|
|
56718
56719
|
},
|
|
56719
56720
|
{
|
|
56720
56721
|
type: 'button',
|
|
56721
56722
|
label: instance.t('frontend_form_save_and_new'),
|
|
56722
56723
|
actionType: 'confirm',
|
|
56723
56724
|
close: false,
|
|
56724
|
-
id: "confirmAndNew"
|
|
56725
|
+
id: "confirmAndNew",
|
|
56726
|
+
className: 'form-btn-save_and_new'
|
|
56725
56727
|
},
|
|
56726
56728
|
{
|
|
56727
56729
|
type: 'button',
|
|
56728
56730
|
actionType: 'confirm',
|
|
56729
56731
|
label: instance.t('frontend_form_save'),
|
|
56730
|
-
primary: true
|
|
56732
|
+
primary: true,
|
|
56733
|
+
className: 'form-btn-save'
|
|
56731
56734
|
},
|
|
56732
56735
|
]
|
|
56733
56736
|
}
|