@univerjs/preset-docs-hyper-link 0.6.9 → 0.6.10-alpha.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/lib/index.js ADDED
@@ -0,0 +1,15 @@
1
+ import { UniverDocsHyperLinkPlugin as e } from "@univerjs/docs-hyper-link";
2
+ export * from "@univerjs/docs-hyper-link";
3
+ import { UniverDocsHyperLinkUIPlugin as i } from "@univerjs/docs-hyper-link-ui";
4
+ export * from "@univerjs/docs-hyper-link-ui";
5
+ function p() {
6
+ return {
7
+ plugins: [
8
+ e,
9
+ i
10
+ ].filter((r) => !!r)
11
+ };
12
+ }
13
+ export {
14
+ p as UniverDocsHyperLinkPreset
15
+ };
@@ -0,0 +1,9 @@
1
+ import { merge as r } from "@univerjs/core";
2
+ import e from "@univerjs/docs-hyper-link-ui/locale/en-US";
3
+ const m = r(
4
+ {},
5
+ e
6
+ );
7
+ export {
8
+ m as default
9
+ };
@@ -0,0 +1,9 @@
1
+ import { merge as r } from "@univerjs/core";
2
+ import o from "@univerjs/docs-hyper-link-ui/locale/fa-IR";
3
+ const m = r(
4
+ {},
5
+ o
6
+ );
7
+ export {
8
+ m as default
9
+ };
@@ -0,0 +1,9 @@
1
+ import { merge as r } from "@univerjs/core";
2
+ import o from "@univerjs/docs-hyper-link-ui/locale/fr-FR";
3
+ const m = r(
4
+ {},
5
+ o
6
+ );
7
+ export {
8
+ m as default
9
+ };
@@ -0,0 +1,9 @@
1
+ import { merge as r } from "@univerjs/core";
2
+ import o from "@univerjs/docs-hyper-link-ui/locale/ru-RU";
3
+ const m = r(
4
+ {},
5
+ o
6
+ );
7
+ export {
8
+ m as default
9
+ };
@@ -0,0 +1,9 @@
1
+ import { merge as r } from "@univerjs/core";
2
+ import o from "@univerjs/docs-hyper-link-ui/locale/vi-VN";
3
+ const m = r(
4
+ {},
5
+ o
6
+ );
7
+ export {
8
+ m as default
9
+ };
@@ -0,0 +1,9 @@
1
+ import { merge as r } from "@univerjs/core";
2
+ import o from "@univerjs/docs-hyper-link-ui/locale/zh-CN";
3
+ const m = r(
4
+ {},
5
+ o
6
+ );
7
+ export {
8
+ m as default
9
+ };
@@ -0,0 +1,9 @@
1
+ import { merge as r } from "@univerjs/core";
2
+ import o from "@univerjs/docs-hyper-link-ui/locale/zh-TW";
3
+ const m = r(
4
+ {},
5
+ o
6
+ );
7
+ export {
8
+ m as default
9
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/preset-docs-hyper-link",
3
- "version": "0.6.9",
3
+ "version": "0.6.10-alpha.0",
4
4
  "private": false,
5
5
  "description": "",
6
6
  "author": "DreamNum <developer@univer.ai>",
@@ -57,15 +57,15 @@
57
57
  "rxjs": ">=7.0.0"
58
58
  },
59
59
  "dependencies": {
60
- "@univerjs/docs-hyper-link": "0.6.9",
61
- "@univerjs/docs-hyper-link-ui": "0.6.9"
60
+ "@univerjs/docs-hyper-link": "0.6.10-alpha.0",
61
+ "@univerjs/docs-hyper-link-ui": "0.6.10-alpha.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@univerjs/core": "0.6.9",
64
+ "@univerjs/core": "0.6.10-alpha.0",
65
65
  "react": "18.3.1",
66
66
  "react-dom": "18.3.1",
67
67
  "typescript": "^5.8.2",
68
- "@univerjs-infra/shared": "0.6.9"
68
+ "@univerjs-infra/shared": "0.6.10-alpha.0"
69
69
  },
70
70
  "scripts": {
71
71
  "prebuild:preset": "tsx prepare.ts",