tanxin-ui 1.4.8 → 1.4.9
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/tanxin-ui.es.js +3 -2
- package/dist/tanxin-ui.umd.js +1 -1
- package/es/date-picker/src/date-picker.d.ts +24 -8
- package/es/popover/index.d.ts +15 -0
- package/es/popover/src/popover.d.ts +7 -0
- package/es/popover/src/popover.js +2 -1
- package/es/popper/src/popper.js +1 -1
- package/lib/date-picker/src/date-picker.d.ts +24 -8
- package/lib/popover/index.d.ts +15 -0
- package/lib/popover/src/popover.d.ts +7 -0
- package/lib/popover/src/popover.js +2 -1
- package/lib/popper/src/popper.js +1 -1
- package/package.json +1 -1
package/dist/tanxin-ui.es.js
CHANGED
|
@@ -6044,7 +6044,7 @@ const Ka = ["top", "bottom", "topLeft", "bottomLeft", "topRight", "bottomRight",
|
|
|
6044
6044
|
transitionName: a.string.def("fade"),
|
|
6045
6045
|
offset: a.oneOfType([a.string, a.number]).def(10),
|
|
6046
6046
|
minWidth: a.oneOfType([a.string, a.number]).def(150),
|
|
6047
|
-
maxWidth: a.oneOfType([a.string, a.number]).def(
|
|
6047
|
+
maxWidth: a.oneOfType([a.string, a.number]).def(1500),
|
|
6048
6048
|
//指定长宽,则不再动态检测,以提高性能, 在同一页面大量的popper时,建议指定长度
|
|
6049
6049
|
width: a.oneOfType([a.string, a.number]),
|
|
6050
6050
|
height: a.oneOfType([a.string, a.number]),
|
|
@@ -12072,7 +12072,8 @@ const $0 = {
|
|
|
12072
12072
|
content: a.string,
|
|
12073
12073
|
transitionName: a.string.def("fade"),
|
|
12074
12074
|
offset: a.oneOfType([a.string, a.number]).def(10),
|
|
12075
|
-
minWidth: a.oneOfType([a.string, a.number]).def(150)
|
|
12075
|
+
minWidth: a.oneOfType([a.string, a.number]).def(150),
|
|
12076
|
+
maxWidth: a.oneOfType([a.string, a.number]).def(1500)
|
|
12076
12077
|
}, O0 = /* @__PURE__ */ G({
|
|
12077
12078
|
name: "TPopover",
|
|
12078
12079
|
components: {
|