@univerjs/preset-docs-thread-comment 1.0.0-alpha.8 → 1.0.0-beta.1
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.css +22 -8
- package/lib/types/locales/ar-SA.d.ts +0 -2
- package/lib/types/locales/ca-ES.d.ts +0 -2
- package/lib/types/locales/de-DE.d.ts +0 -2
- package/lib/types/locales/en-US.d.ts +0 -2
- package/lib/types/locales/es-ES.d.ts +0 -2
- package/lib/types/locales/fa-IR.d.ts +0 -2
- package/lib/types/locales/fr-FR.d.ts +0 -2
- package/lib/types/locales/id-ID.d.ts +0 -2
- package/lib/types/locales/it-IT.d.ts +0 -2
- package/lib/types/locales/ja-JP.d.ts +0 -2
- package/lib/types/locales/ko-KR.d.ts +0 -2
- package/lib/types/locales/pl-PL.d.ts +0 -2
- package/lib/types/locales/pt-BR.d.ts +0 -2
- package/lib/types/locales/ru-RU.d.ts +0 -2
- package/lib/types/locales/sk-SK.d.ts +0 -2
- package/lib/types/locales/vi-VN.d.ts +0 -2
- package/lib/types/locales/zh-CN.d.ts +0 -2
- package/lib/types/locales/zh-HK.d.ts +0 -2
- package/lib/types/locales/zh-TW.d.ts +0 -2
- package/package.json +7 -7
package/lib/index.css
CHANGED
|
@@ -22,6 +22,11 @@
|
|
|
22
22
|
margin: 0;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
+
.-univer-mx-4 {
|
|
26
|
+
margin-left: -1rem;
|
|
27
|
+
margin-right: -1rem;
|
|
28
|
+
}
|
|
29
|
+
|
|
25
30
|
.univer-mb-1 {
|
|
26
31
|
margin-bottom: .25rem;
|
|
27
32
|
}
|
|
@@ -214,12 +219,12 @@
|
|
|
214
219
|
background-color: var(--univer-gray-900) !important;
|
|
215
220
|
}
|
|
216
221
|
|
|
217
|
-
.univer-bg-gray-
|
|
218
|
-
background-color: var(--univer-gray-
|
|
222
|
+
.univer-bg-gray-0 {
|
|
223
|
+
background-color: var(--univer-gray-0);
|
|
219
224
|
}
|
|
220
225
|
|
|
221
|
-
.univer-bg-
|
|
222
|
-
background-color: var(--univer-
|
|
226
|
+
.univer-bg-gray-50 {
|
|
227
|
+
background-color: var(--univer-gray-50);
|
|
223
228
|
}
|
|
224
229
|
|
|
225
230
|
.univer-bg-yellow-400 {
|
|
@@ -250,6 +255,11 @@
|
|
|
250
255
|
padding: 1rem;
|
|
251
256
|
}
|
|
252
257
|
|
|
258
|
+
.univer-px-4 {
|
|
259
|
+
padding-left: 1rem;
|
|
260
|
+
padding-right: 1rem;
|
|
261
|
+
}
|
|
262
|
+
|
|
253
263
|
.univer-pb-3 {
|
|
254
264
|
padding-bottom: .75rem;
|
|
255
265
|
}
|
|
@@ -349,16 +359,20 @@
|
|
|
349
359
|
padding-right: 30px;
|
|
350
360
|
}
|
|
351
361
|
|
|
362
|
+
.rtl\:univer-text-right:where([dir="rtl"], [dir="rtl"] *) {
|
|
363
|
+
text-align: right;
|
|
364
|
+
}
|
|
365
|
+
|
|
352
366
|
.dark\:\!univer-bg-gray-900:where(.univer-dark, .univer-dark *) {
|
|
353
367
|
background-color: var(--univer-gray-900) !important;
|
|
354
368
|
}
|
|
355
369
|
|
|
356
|
-
.dark\:\!univer-text-gray-
|
|
357
|
-
color: var(--univer-gray-
|
|
370
|
+
.dark\:\!univer-text-gray-0:where(.univer-dark, .univer-dark *) {
|
|
371
|
+
color: var(--univer-gray-0) !important;
|
|
358
372
|
}
|
|
359
373
|
|
|
360
|
-
.dark\:\!univer-text-
|
|
361
|
-
color: var(--univer-
|
|
374
|
+
.dark\:\!univer-text-gray-200:where(.univer-dark, .univer-dark *) {
|
|
375
|
+
color: var(--univer-gray-200) !important;
|
|
362
376
|
}
|
|
363
377
|
|
|
364
378
|
.dark\:hover\:\!univer-bg-gray-800:hover:where(.univer-dark, .univer-dark *) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/preset-docs-thread-comment",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-beta.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Preset for thread comments in Univer Docs.",
|
|
6
6
|
"author": "DreamNum Co., Ltd. <developer@univer.ai>",
|
|
@@ -56,18 +56,18 @@
|
|
|
56
56
|
"rxjs": ">=7.0.0"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@univerjs/docs-thread-comment-ui": "1.0.0-
|
|
60
|
-
"@univerjs/thread-comment": "1.0.0-
|
|
61
|
-
"@univerjs/thread-comment-ui": "1.0.0-
|
|
59
|
+
"@univerjs/docs-thread-comment-ui": "1.0.0-beta.1",
|
|
60
|
+
"@univerjs/thread-comment": "1.0.0-beta.1",
|
|
61
|
+
"@univerjs/thread-comment-ui": "1.0.0-beta.1"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"react": "18.3.1",
|
|
65
65
|
"react-dom": "18.3.1",
|
|
66
66
|
"rxjs": "^7.8.2",
|
|
67
67
|
"typescript": "^6.0.3",
|
|
68
|
-
"@univerjs-infra/shared": "1.0.0-
|
|
69
|
-
"@univerjs/
|
|
70
|
-
"@univerjs/
|
|
68
|
+
"@univerjs-infra/shared": "1.0.0-beta.1",
|
|
69
|
+
"@univerjs/presets": "1.0.0-beta.1",
|
|
70
|
+
"@univerjs/core": "1.0.0-beta.1"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"build:bundle": "univer-cli preset build --cleanup",
|