@zyui/components 0.0.47 → 0.0.49
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 +51 -51
- package/es/index.mjs +9515 -9444
- package/es/src/components/NodesEditor/helper.d.ts +5 -0
- package/es/style.css +1 -1
- package/lib/src/components/NodesEditor/helper.d.ts +5 -0
- package/package.json +1 -1
|
@@ -65,4 +65,9 @@ export declare const abbrNodes2Text: (nodes: NodeItem[], allNodes: NodeItem[]) =
|
|
|
65
65
|
export declare const isUuid: (id: any) => boolean;
|
|
66
66
|
/**判断是否是td节点 */
|
|
67
67
|
export declare const isTdNode: (node: NodeItem) => boolean;
|
|
68
|
+
/**
|
|
69
|
+
* 处理td元素内的p标签,合并样式并删除p标签
|
|
70
|
+
* @param element - td元素
|
|
71
|
+
*/
|
|
72
|
+
export declare const processTdParagraphStyles: (element: HTMLElement) => void;
|
|
68
73
|
export {};
|