@xiaou66/u-web-ui 0.121.0 → 0.123.0
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/index.d.ts +5 -0
- package/dist/index.es.js +370 -326
- package/dist/u-web-ui.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -853,6 +853,11 @@ export declare interface TimeSelectProps {
|
|
|
853
853
|
* 是否有边框
|
|
854
854
|
*/
|
|
855
855
|
border?: boolean;
|
|
856
|
+
/**
|
|
857
|
+
* 下拉菜单是否 teleport 到 body,解决在弹窗中下拉被截断的问题
|
|
858
|
+
* @default true
|
|
859
|
+
*/
|
|
860
|
+
teleport?: boolean;
|
|
856
861
|
}
|
|
857
862
|
|
|
858
863
|
export declare type TriggerEvent = 'click' | 'context-menu';
|