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/lib/index.js
CHANGED
|
@@ -8088,7 +8088,8 @@ const modalProps = {
|
|
|
8088
8088
|
okText: { type: String, default: "确定" },
|
|
8089
8089
|
closeFunc: Function
|
|
8090
8090
|
};
|
|
8091
|
-
const basicProps$5 =
|
|
8091
|
+
const basicProps$5 = vue.reactive({
|
|
8092
|
+
...modalProps,
|
|
8092
8093
|
defaultFullscreen: { type: Boolean },
|
|
8093
8094
|
// Can it be full screen
|
|
8094
8095
|
canFullscreen: { type: Boolean, default: true },
|
|
@@ -49713,6 +49714,7 @@ exports.BasicForm = ShyForm;
|
|
|
49713
49714
|
exports.BasicHelp = BasicHelp;
|
|
49714
49715
|
exports.BasicLabel = BasicLabel;
|
|
49715
49716
|
exports.BasicModal = BasicModal;
|
|
49717
|
+
exports.BasicModalProps = basicProps$5;
|
|
49716
49718
|
exports.BasicResizeWrapper = BasicResizeWrapper;
|
|
49717
49719
|
exports.BasicTable = ShyTable;
|
|
49718
49720
|
exports.BasicTitle = Divider;
|