3h1-ui 3.0.0-next.231 → 3.0.0-next.232
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/es/index.js +3 -1
- package/es/ui/src/Modal/index.d.ts +249 -168
- package/es/ui/src/Modal/src/BasicModal.vue.d.ts +117 -77
- package/es/ui/src/Modal/src/components/Modal.d.ts +100 -60
- package/es/ui/src/Modal/src/components/ModalFooter.vue.d.ts +103 -63
- package/es/ui/src/Modal/src/props.d.ts +62 -48
- package/es/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +248 -168
- package/es/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +248 -168
- package/lib/index.js +3 -1
- package/lib/ui/src/Modal/index.d.ts +249 -168
- package/lib/ui/src/Modal/src/BasicModal.vue.d.ts +117 -77
- package/lib/ui/src/Modal/src/components/Modal.d.ts +100 -60
- package/lib/ui/src/Modal/src/components/ModalFooter.vue.d.ts +103 -63
- package/lib/ui/src/Modal/src/props.d.ts +62 -48
- package/lib/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +248 -168
- package/lib/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +248 -168
- package/package.json +3 -3
package/es/index.js
CHANGED
|
@@ -8064,7 +8064,8 @@ const modalProps = {
|
|
|
8064
8064
|
okText: { type: String, default: "确定" },
|
|
8065
8065
|
closeFunc: Function
|
|
8066
8066
|
};
|
|
8067
|
-
const basicProps$5 =
|
|
8067
|
+
const basicProps$5 = reactive({
|
|
8068
|
+
...modalProps,
|
|
8068
8069
|
defaultFullscreen: { type: Boolean },
|
|
8069
8070
|
// Can it be full screen
|
|
8070
8071
|
canFullscreen: { type: Boolean, default: true },
|
|
@@ -49690,6 +49691,7 @@ export {
|
|
|
49690
49691
|
BasicHelp,
|
|
49691
49692
|
BasicLabel,
|
|
49692
49693
|
BasicModal,
|
|
49694
|
+
basicProps$5 as BasicModalProps,
|
|
49693
49695
|
BasicResizeWrapper,
|
|
49694
49696
|
ShyTable as BasicTable,
|
|
49695
49697
|
Divider as BasicTitle,
|