z-ui-pc 0.5.11 → 0.5.13
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 +16 -0
- package/dist/index.js +990 -976
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -1623,6 +1623,16 @@ declare type IDynamicExpressionRuleKeys = keyof typeof DYNAMIC_EXPRESSION_RULES;
|
|
|
1623
1623
|
|
|
1624
1624
|
export declare type IEDialogEventValues = "dialog:confirm" | "dialog:cancel";
|
|
1625
1625
|
|
|
1626
|
+
export declare interface IEllipsisTooltipConfig {
|
|
1627
|
+
visible: boolean;
|
|
1628
|
+
content: string;
|
|
1629
|
+
rect: DOMRect;
|
|
1630
|
+
effect: "dark" | "light";
|
|
1631
|
+
placement: "top" | "bottom" | "left" | "right";
|
|
1632
|
+
tipWidth?: string;
|
|
1633
|
+
rawContent?: boolean;
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1626
1636
|
/**
|
|
1627
1637
|
* 分组的列的数据
|
|
1628
1638
|
*/
|
|
@@ -2088,6 +2098,12 @@ export declare type TCreateBaseFormItemParams<T extends keyof IComponentProps, U
|
|
|
2088
2098
|
|
|
2089
2099
|
export declare const uiConfigService: UiConfigService;
|
|
2090
2100
|
|
|
2101
|
+
/**
|
|
2102
|
+
* 更新 ellipsis 的 tooltipConfig
|
|
2103
|
+
* @param config
|
|
2104
|
+
*/
|
|
2105
|
+
export declare const updateEllipsisTooltipConfig: (config: Partial<IEllipsisTooltipConfig>) => void;
|
|
2106
|
+
|
|
2091
2107
|
/**
|
|
2092
2108
|
* 用于优化异步加载体验
|
|
2093
2109
|
* @param initialValue 默认值
|