@linker-design-plus/tiny-peony 1.4.24 → 1.4.26
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.js +16 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +830 -822
- package/dist/index.mjs.map +1 -1
- package/dist/typings/shared.d.ts +2 -1
- package/dist/utils/shared.d.ts +0 -6
- package/package.json +3 -2
package/dist/typings/shared.d.ts
CHANGED
|
@@ -8,7 +8,8 @@ export declare enum PluginFlag {
|
|
|
8
8
|
pronunciation = "pronunciation",
|
|
9
9
|
anchor = "anchor",
|
|
10
10
|
homophones = "homophones",
|
|
11
|
-
highlight = "highlight"
|
|
11
|
+
highlight = "highlight",
|
|
12
|
+
placeholderoldSpace = "placeholderoldSpace"
|
|
12
13
|
}
|
|
13
14
|
export declare enum ListenModeEnum {
|
|
14
15
|
single = "single",
|
package/dist/utils/shared.d.ts
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
export declare const createTagSpace: (name: string) => [import("@linker-design/utils").Bem, string];
|
|
2
2
|
export declare const createComponentSpace: (name: string) => [import("@linker-design/utils").Bem, string];
|
|
3
|
-
/**
|
|
4
|
-
* 创建一个带 requestAnimationFrame 的事件回调包装器
|
|
5
|
-
* @param callback - 需要在动画帧中执行的函数
|
|
6
|
-
* @returns 可直接作为事件监听器使用的包装函数
|
|
7
|
-
*/
|
|
8
|
-
export declare const withRaf: <T extends (...args: any[]) => void>(callback: T) => (...args: Parameters<T>) => void;
|
|
9
3
|
/**
|
|
10
4
|
* 当前页面是否是 HTTPS
|
|
11
5
|
* @returns {boolean}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@linker-design-plus/tiny-peony",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.26",
|
|
4
4
|
"description": "a simple editor",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"@linker-design/utils": "^0.1.7",
|
|
27
27
|
"@om-design/util": "^1.6.1",
|
|
28
28
|
"@vueuse/core": "^12.3.0",
|
|
29
|
+
"@zcsol/shared": "^0.1.0",
|
|
29
30
|
"uuid": "^11.0.4",
|
|
30
31
|
"vue": "3.5.13"
|
|
31
32
|
},
|
|
@@ -40,4 +41,4 @@
|
|
|
40
41
|
"vite": "^6.0.7",
|
|
41
42
|
"vue-tsc": "^2.2.0"
|
|
42
43
|
}
|
|
43
|
-
}
|
|
44
|
+
}
|