@steedos-widgets/amis-lib 6.3.12-beta.3 → 6.3.12-beta.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/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/index.cjs.js +7 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +7 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/types/schema/standard_new.amis.d.ts +3 -0
- package/dist/types/standard/button.d.ts +3 -0
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -4809,7 +4809,7 @@ const parseSingleExpression = function (func, formData, dataPath, global, userSe
|
|
|
4809
4809
|
* @Author: baozhoutao@steedos.com
|
|
4810
4810
|
* @Date: 2022-11-01 15:51:00
|
|
4811
4811
|
* @LastEditors: baozhoutao@steedos.com
|
|
4812
|
-
* @LastEditTime: 2024-
|
|
4812
|
+
* @LastEditTime: 2024-12-26 20:28:43
|
|
4813
4813
|
* @Description:
|
|
4814
4814
|
*/
|
|
4815
4815
|
|
|
@@ -4969,20 +4969,23 @@ const getSchema$5 = async (uiSchema, ctx) => {
|
|
|
4969
4969
|
{
|
|
4970
4970
|
type: 'button',
|
|
4971
4971
|
actionType: 'cancel',
|
|
4972
|
-
label: i18next.t('frontend_form_cancel')
|
|
4972
|
+
label: i18next.t('frontend_form_cancel'),
|
|
4973
|
+
className: 'form-btn-cancel'
|
|
4973
4974
|
},
|
|
4974
4975
|
{
|
|
4975
4976
|
type: 'button',
|
|
4976
4977
|
label: i18next.t('frontend_form_save_and_new'),
|
|
4977
4978
|
actionType: 'confirm',
|
|
4978
4979
|
close: false,
|
|
4979
|
-
id: "confirmAndNew"
|
|
4980
|
+
id: "confirmAndNew",
|
|
4981
|
+
className: 'form-btn-save_and_new'
|
|
4980
4982
|
},
|
|
4981
4983
|
{
|
|
4982
4984
|
type: 'button',
|
|
4983
4985
|
actionType: 'confirm',
|
|
4984
4986
|
label: i18next.t('frontend_form_save'),
|
|
4985
|
-
primary: true
|
|
4987
|
+
primary: true,
|
|
4988
|
+
className: 'form-btn-save'
|
|
4986
4989
|
},
|
|
4987
4990
|
]
|
|
4988
4991
|
}
|