@jiaozhiye/qm-design-react 1.8.26 → 1.8.28
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/lib/guide-tracker/src/lib/index.d.ts +0 -1
- package/lib/icons/EraserOutlined/index.d.ts +3 -0
- package/lib/icons/UndoOutlined/index.d.ts +3 -0
- package/lib/icons/index.d.ts +2 -0
- package/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/signature/src/lib/index.d.ts +8 -5
- package/lib/signature/src/signature.d.ts +2 -1
- package/lib/signature/style/index.less +5 -0
- package/lib/style/index.css +3 -0
- package/lib/style/index.min.css +1 -1
- package/lib/tour/src/util.d.ts +1 -0
- package/package.json +1 -1
|
@@ -26,5 +26,4 @@ export default class Highlighter {
|
|
|
26
26
|
getEventTarget(event: MouseEvent): HTMLElement;
|
|
27
27
|
}
|
|
28
28
|
export declare function getNodeBySelector(selector: string): HTMLElement | null;
|
|
29
|
-
export declare function getNodeByXPath(xpathString: string): HTMLElement | null;
|
|
30
29
|
export {};
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -2,3 +2,5 @@ export { default as CircleOutlined } from './CircleOutlined';
|
|
|
2
2
|
export { default as FontOutlined } from './FontOutlined';
|
|
3
3
|
export { default as ArrowTopRightOutlined } from './ArrowTopRightOutlined';
|
|
4
4
|
export { default as MosaicOutlined } from './MosaicOutlined';
|
|
5
|
+
export { default as EraserOutlined } from './EraserOutlined';
|
|
6
|
+
export { default as UndoOutlined } from './UndoOutlined';
|