@univerjs/slides-ui 0.6.7-experimental.20250326-6499c07 → 0.6.7-experimental.20250328-3aaa828
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 +2272 -0
- package/lib/locale/en-US.js +39 -0
- package/lib/locale/fa-IR.js +39 -0
- package/lib/locale/fr-FR.js +39 -0
- package/lib/locale/ru-RU.js +39 -0
- package/lib/locale/vi-VN.js +39 -0
- package/lib/locale/zh-CN.js +39 -0
- package/lib/locale/zh-TW.js +39 -0
- package/package.json +11 -11
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
slide: {
|
|
3
|
+
append: "Append Slide",
|
|
4
|
+
text: {
|
|
5
|
+
insert: {
|
|
6
|
+
title: "Insert Text"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
shape: {
|
|
10
|
+
insert: {
|
|
11
|
+
title: "Insert Shape",
|
|
12
|
+
rectangle: "Insert Rectangle"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
image: {
|
|
16
|
+
insert: {
|
|
17
|
+
title: "Insert Image",
|
|
18
|
+
float: "Insert Float Image"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
popup: {
|
|
22
|
+
edit: "Edit",
|
|
23
|
+
delete: "Delete"
|
|
24
|
+
},
|
|
25
|
+
sidebar: {
|
|
26
|
+
text: "Edit Text",
|
|
27
|
+
shape: "Edit Shape",
|
|
28
|
+
image: "Edit Image"
|
|
29
|
+
},
|
|
30
|
+
panel: {
|
|
31
|
+
fill: {
|
|
32
|
+
title: "Fill Color"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
export {
|
|
38
|
+
e as default
|
|
39
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
slide: {
|
|
3
|
+
append: "اضافه کردن اسلاید",
|
|
4
|
+
text: {
|
|
5
|
+
insert: {
|
|
6
|
+
title: "درج متن"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
shape: {
|
|
10
|
+
insert: {
|
|
11
|
+
title: "درج شکل",
|
|
12
|
+
rectangle: "درج مستطیل"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
image: {
|
|
16
|
+
insert: {
|
|
17
|
+
title: "درج تصویر",
|
|
18
|
+
float: "درج تصویر شناور"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
popup: {
|
|
22
|
+
edit: "ویرایش",
|
|
23
|
+
delete: "حذف"
|
|
24
|
+
},
|
|
25
|
+
sidebar: {
|
|
26
|
+
text: "ویرایش متن",
|
|
27
|
+
shape: "ویرایش شکل",
|
|
28
|
+
image: "ویرایش تصویر"
|
|
29
|
+
},
|
|
30
|
+
panel: {
|
|
31
|
+
fill: {
|
|
32
|
+
title: "رنگ پر کردن"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
export {
|
|
38
|
+
e as default
|
|
39
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
slide: {
|
|
3
|
+
append: "Ajouter une diapositive",
|
|
4
|
+
text: {
|
|
5
|
+
insert: {
|
|
6
|
+
title: "Insérer du texte"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
shape: {
|
|
10
|
+
insert: {
|
|
11
|
+
title: "Insérer une forme",
|
|
12
|
+
rectangle: "Insérer un rectangle"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
image: {
|
|
16
|
+
insert: {
|
|
17
|
+
title: "Insérer une image",
|
|
18
|
+
float: "Insérer une image flottante"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
popup: {
|
|
22
|
+
edit: "Éditer",
|
|
23
|
+
delete: "Supprimer"
|
|
24
|
+
},
|
|
25
|
+
sidebar: {
|
|
26
|
+
text: "Éditer le texte",
|
|
27
|
+
shape: "Éditer la forme",
|
|
28
|
+
image: "Éditer l'image"
|
|
29
|
+
},
|
|
30
|
+
panel: {
|
|
31
|
+
fill: {
|
|
32
|
+
title: "Couleur de remplissage"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
export {
|
|
38
|
+
e as default
|
|
39
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
slide: {
|
|
3
|
+
append: "Append Slide",
|
|
4
|
+
text: {
|
|
5
|
+
insert: {
|
|
6
|
+
title: "Insert Text"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
shape: {
|
|
10
|
+
insert: {
|
|
11
|
+
title: "Insert Shape",
|
|
12
|
+
rectangle: "Insert Rectangle"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
image: {
|
|
16
|
+
insert: {
|
|
17
|
+
title: "Insert Image",
|
|
18
|
+
float: "Insert Float Image"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
popup: {
|
|
22
|
+
edit: "Edit",
|
|
23
|
+
delete: "Delete"
|
|
24
|
+
},
|
|
25
|
+
sidebar: {
|
|
26
|
+
text: "Edit Text",
|
|
27
|
+
shape: "Edit Shape",
|
|
28
|
+
image: "Edit Image"
|
|
29
|
+
},
|
|
30
|
+
panel: {
|
|
31
|
+
fill: {
|
|
32
|
+
title: "Fill Color"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}, t = e;
|
|
37
|
+
export {
|
|
38
|
+
t as default
|
|
39
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
slide: {
|
|
3
|
+
append: "Append Slide",
|
|
4
|
+
text: {
|
|
5
|
+
insert: {
|
|
6
|
+
title: "Insert Text"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
shape: {
|
|
10
|
+
insert: {
|
|
11
|
+
title: "Insert Shape",
|
|
12
|
+
rectangle: "Insert Rectangle"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
image: {
|
|
16
|
+
insert: {
|
|
17
|
+
title: "Insert Image",
|
|
18
|
+
float: "Insert Float Image"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
popup: {
|
|
22
|
+
edit: "Edit",
|
|
23
|
+
delete: "Delete"
|
|
24
|
+
},
|
|
25
|
+
sidebar: {
|
|
26
|
+
text: "Edit Text",
|
|
27
|
+
shape: "Edit Shape",
|
|
28
|
+
image: "Edit Image"
|
|
29
|
+
},
|
|
30
|
+
panel: {
|
|
31
|
+
fill: {
|
|
32
|
+
title: "Fill Color"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}, t = e;
|
|
37
|
+
export {
|
|
38
|
+
t as default
|
|
39
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
slide: {
|
|
3
|
+
append: "新增幻灯片",
|
|
4
|
+
text: {
|
|
5
|
+
insert: {
|
|
6
|
+
title: "插入文本"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
shape: {
|
|
10
|
+
insert: {
|
|
11
|
+
title: "插入图形",
|
|
12
|
+
rectangle: "插入矩形"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
image: {
|
|
16
|
+
insert: {
|
|
17
|
+
title: "插入图片",
|
|
18
|
+
float: "插入浮动图片"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
popup: {
|
|
22
|
+
edit: "编辑",
|
|
23
|
+
delete: "删除"
|
|
24
|
+
},
|
|
25
|
+
sidebar: {
|
|
26
|
+
text: "编辑文本",
|
|
27
|
+
shape: "编辑图形",
|
|
28
|
+
image: "编辑图片"
|
|
29
|
+
},
|
|
30
|
+
panel: {
|
|
31
|
+
fill: {
|
|
32
|
+
title: "填充"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
export {
|
|
38
|
+
e as default
|
|
39
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
slide: {
|
|
3
|
+
append: "Append Slide",
|
|
4
|
+
text: {
|
|
5
|
+
insert: {
|
|
6
|
+
title: "Insert Text"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
shape: {
|
|
10
|
+
insert: {
|
|
11
|
+
title: "Insert Shape",
|
|
12
|
+
rectangle: "Insert Rectangle"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
image: {
|
|
16
|
+
insert: {
|
|
17
|
+
title: "Insert Image",
|
|
18
|
+
float: "Insert Float Image"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
popup: {
|
|
22
|
+
edit: "Edit",
|
|
23
|
+
delete: "Delete"
|
|
24
|
+
},
|
|
25
|
+
sidebar: {
|
|
26
|
+
text: "Edit Text",
|
|
27
|
+
shape: "Edit Shape",
|
|
28
|
+
image: "Edit Image"
|
|
29
|
+
},
|
|
30
|
+
panel: {
|
|
31
|
+
fill: {
|
|
32
|
+
title: "Fill Color"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}, t = e;
|
|
37
|
+
export {
|
|
38
|
+
t as default
|
|
39
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/slides-ui",
|
|
3
|
-
"version": "0.6.7-experimental.
|
|
3
|
+
"version": "0.6.7-experimental.20250328-3aaa828",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Univer normal ui-plugin-slides",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -50,19 +50,19 @@
|
|
|
50
50
|
"lib"
|
|
51
51
|
],
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"react": "
|
|
53
|
+
"react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
54
54
|
"rxjs": ">=7.0.0"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@univerjs/icons": "^0.2.
|
|
58
|
-
"@univerjs/core": "0.6.7-experimental.
|
|
59
|
-
"@univerjs/design": "0.6.7-experimental.
|
|
60
|
-
"@univerjs/docs": "0.6.7-experimental.
|
|
61
|
-
"@univerjs/docs-ui": "0.6.7-experimental.
|
|
62
|
-
"@univerjs/drawing": "0.6.7-experimental.
|
|
63
|
-
"@univerjs/engine-render": "0.6.7-experimental.
|
|
64
|
-
"@univerjs/
|
|
65
|
-
"@univerjs/
|
|
57
|
+
"@univerjs/icons": "^0.2.30",
|
|
58
|
+
"@univerjs/core": "0.6.7-experimental.20250328-3aaa828",
|
|
59
|
+
"@univerjs/design": "0.6.7-experimental.20250328-3aaa828",
|
|
60
|
+
"@univerjs/docs": "0.6.7-experimental.20250328-3aaa828",
|
|
61
|
+
"@univerjs/docs-ui": "0.6.7-experimental.20250328-3aaa828",
|
|
62
|
+
"@univerjs/drawing": "0.6.7-experimental.20250328-3aaa828",
|
|
63
|
+
"@univerjs/engine-render": "0.6.7-experimental.20250328-3aaa828",
|
|
64
|
+
"@univerjs/ui": "0.6.7-experimental.20250328-3aaa828",
|
|
65
|
+
"@univerjs/slides": "0.6.7-experimental.20250328-3aaa828"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"less": "^4.2.2",
|