@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/sortable.esm.js
CHANGED
|
@@ -56550,7 +56550,7 @@ async function getListSchema$1(fields, options){
|
|
|
56550
56550
|
* @Author: baozhoutao@steedos.com
|
|
56551
56551
|
* @Date: 2022-11-01 15:51:00
|
|
56552
56552
|
* @LastEditors: baozhoutao@steedos.com
|
|
56553
|
-
* @LastEditTime: 2024-
|
|
56553
|
+
* @LastEditTime: 2024-12-26 20:28:43
|
|
56554
56554
|
* @Description:
|
|
56555
56555
|
*/
|
|
56556
56556
|
|
|
@@ -56710,20 +56710,23 @@ const getSchema$5 = async (uiSchema, ctx) => {
|
|
|
56710
56710
|
{
|
|
56711
56711
|
type: 'button',
|
|
56712
56712
|
actionType: 'cancel',
|
|
56713
|
-
label: instance.t('frontend_form_cancel')
|
|
56713
|
+
label: instance.t('frontend_form_cancel'),
|
|
56714
|
+
className: 'form-btn-cancel'
|
|
56714
56715
|
},
|
|
56715
56716
|
{
|
|
56716
56717
|
type: 'button',
|
|
56717
56718
|
label: instance.t('frontend_form_save_and_new'),
|
|
56718
56719
|
actionType: 'confirm',
|
|
56719
56720
|
close: false,
|
|
56720
|
-
id: "confirmAndNew"
|
|
56721
|
+
id: "confirmAndNew",
|
|
56722
|
+
className: 'form-btn-save_and_new'
|
|
56721
56723
|
},
|
|
56722
56724
|
{
|
|
56723
56725
|
type: 'button',
|
|
56724
56726
|
actionType: 'confirm',
|
|
56725
56727
|
label: instance.t('frontend_form_save'),
|
|
56726
|
-
primary: true
|
|
56728
|
+
primary: true,
|
|
56729
|
+
className: 'form-btn-save'
|
|
56727
56730
|
},
|
|
56728
56731
|
]
|
|
56729
56732
|
}
|