@univerjs/preset-docs-drawing 1.0.0-beta.0 → 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 CHANGED
@@ -167,6 +167,18 @@
167
167
  flex-shrink: 0;
168
168
  }
169
169
 
170
+ .-univer-rotate-90 {
171
+ --univer-tw-rotate: -90deg;
172
+ transform: translate(var(--univer-tw-translate-x), var(--univer-tw-translate-y)) rotate(-90deg) skewX(var(--univer-tw-skew-x)) skewY(var(--univer-tw-skew-y)) scaleX(var(--univer-tw-scale-x)) scaleY(var(--univer-tw-scale-y));
173
+ transform: translate(var(--univer-tw-translate-x), var(--univer-tw-translate-y)) rotate(var(--univer-tw-rotate)) skewX(var(--univer-tw-skew-x)) skewY(var(--univer-tw-skew-y)) scaleX(var(--univer-tw-scale-x)) scaleY(var(--univer-tw-scale-y));
174
+ }
175
+
176
+ .univer-rotate-90 {
177
+ --univer-tw-rotate: 90deg;
178
+ transform: translate(var(--univer-tw-translate-x), var(--univer-tw-translate-y)) rotate(90deg) skewX(var(--univer-tw-skew-x)) skewY(var(--univer-tw-skew-y)) scaleX(var(--univer-tw-scale-x)) scaleY(var(--univer-tw-scale-y));
179
+ transform: translate(var(--univer-tw-translate-x), var(--univer-tw-translate-y)) rotate(var(--univer-tw-rotate)) skewX(var(--univer-tw-skew-x)) skewY(var(--univer-tw-skew-y)) scaleX(var(--univer-tw-scale-x)) scaleY(var(--univer-tw-scale-y));
180
+ }
181
+
170
182
  .univer-cursor-not-allowed {
171
183
  cursor: not-allowed;
172
184
  }
@@ -305,6 +317,10 @@
305
317
  background-color: #0000 !important;
306
318
  }
307
319
 
320
+ .univer-bg-gray-0 {
321
+ background-color: var(--univer-gray-0);
322
+ }
323
+
308
324
  .univer-bg-gray-100 {
309
325
  background-color: var(--univer-gray-100);
310
326
  }
@@ -317,10 +333,6 @@
317
333
  background-color: #0000;
318
334
  }
319
335
 
320
- .univer-bg-white {
321
- background-color: var(--univer-white);
322
- }
323
-
324
336
  .univer-fill-primary-600 {
325
337
  fill: var(--univer-primary-600);
326
338
  }
@@ -516,8 +528,8 @@
516
528
  border-color: var(--univer-primary-500);
517
529
  }
518
530
 
519
- .focus\:\!univer-bg-white:focus {
520
- background-color: var(--univer-white) !important;
531
+ .focus\:\!univer-bg-gray-0:focus {
532
+ background-color: var(--univer-gray-0) !important;
521
533
  }
522
534
 
523
535
  .focus\:\!univer-ring-1:focus {
@@ -570,6 +582,12 @@
570
582
  background-color: #0000;
571
583
  }
572
584
 
585
+ .rtl\:univer-rotate-90:where([dir="rtl"], [dir="rtl"] *) {
586
+ --univer-tw-rotate: 90deg;
587
+ transform: translate(var(--univer-tw-translate-x), var(--univer-tw-translate-y)) rotate(90deg) skewX(var(--univer-tw-skew-x)) skewY(var(--univer-tw-skew-y)) scaleX(var(--univer-tw-scale-x)) scaleY(var(--univer-tw-scale-y));
588
+ transform: translate(var(--univer-tw-translate-x), var(--univer-tw-translate-y)) rotate(var(--univer-tw-rotate)) skewX(var(--univer-tw-skew-x)) skewY(var(--univer-tw-skew-y)) scaleX(var(--univer-tw-scale-x)) scaleY(var(--univer-tw-scale-y));
589
+ }
590
+
573
591
  .dark\:\!univer-border-gray-700:where(.univer-dark, .univer-dark *) {
574
592
  border-color: var(--univer-gray-700) !important;
575
593
  }
@@ -586,6 +604,10 @@
586
604
  background-color: var(--univer-gray-900) !important;
587
605
  }
588
606
 
607
+ .dark\:\!univer-text-gray-0:where(.univer-dark, .univer-dark *) {
608
+ color: var(--univer-gray-0) !important;
609
+ }
610
+
589
611
  .dark\:\!univer-text-gray-100:where(.univer-dark, .univer-dark *) {
590
612
  color: var(--univer-gray-100) !important;
591
613
  }
@@ -614,10 +636,6 @@
614
636
  color: var(--univer-primary-300) !important;
615
637
  }
616
638
 
617
- .dark\:\!univer-text-white:where(.univer-dark, .univer-dark *) {
618
- color: var(--univer-white) !important;
619
- }
620
-
621
639
  .dark\:hover\:\!univer-bg-gray-700:hover:where(.univer-dark, .univer-dark *) {
622
640
  background-color: var(--univer-gray-700) !important;
623
641
  }
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
@@ -15,7 +15,6 @@ declare const _default: {
15
15
  title: string;
16
16
  };
17
17
  'image-popup': {
18
- replace: string;
19
18
  delete: string;
20
19
  edit: string;
21
20
  crop: string;
@@ -44,9 +43,7 @@ declare const _default: {
44
43
  horizontal: string;
45
44
  vertical: string;
46
45
  absolutePosition: string;
47
- relativePosition: string;
48
46
  toTheRightOf: string;
49
- relativeTo: string;
50
47
  bellow: string;
51
48
  options: string;
52
49
  moveObjectWithText: string;
@@ -162,30 +159,12 @@ declare const _default: {
162
159
  };
163
160
  null: string;
164
161
  };
165
- 'image-popup': {
166
- replace: string;
167
- delete: string;
168
- edit: string;
169
- crop: string;
170
- reset: string;
171
- };
172
162
  'image-text-wrap': {
173
- title: string;
174
- wrappingStyle: string;
175
163
  square: string;
176
164
  topAndBottom: string;
177
165
  inline: string;
178
166
  behindText: string;
179
167
  inFrontText: string;
180
- wrapText: string;
181
- bothSide: string;
182
- leftOnly: string;
183
- rightOnly: string;
184
- distanceFromText: string;
185
- top: string;
186
- left: string;
187
- bottom: string;
188
- right: string;
189
168
  };
190
169
  };
191
170
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/preset-docs-drawing",
3
- "version": "1.0.0-beta.0",
3
+ "version": "1.0.0-beta.1",
4
4
  "private": false,
5
5
  "description": "Preset for drawing capabilities in Univer Docs.",
6
6
  "author": "DreamNum Co., Ltd. <developer@univer.ai>",
@@ -56,19 +56,19 @@
56
56
  "rxjs": ">=7.0.0"
57
57
  },
58
58
  "dependencies": {
59
- "@univerjs/docs-drawing": "1.0.0-beta.0",
60
- "@univerjs/docs-drawing-ui": "1.0.0-beta.0",
61
- "@univerjs/core": "1.0.0-beta.0",
62
- "@univerjs/drawing": "1.0.0-beta.0",
63
- "@univerjs/drawing-ui": "1.0.0-beta.0"
59
+ "@univerjs/core": "1.0.0-beta.1",
60
+ "@univerjs/docs-drawing": "1.0.0-beta.1",
61
+ "@univerjs/docs-drawing-ui": "1.0.0-beta.1",
62
+ "@univerjs/drawing-ui": "1.0.0-beta.1",
63
+ "@univerjs/drawing": "1.0.0-beta.1"
64
64
  },
65
65
  "devDependencies": {
66
66
  "react": "18.3.1",
67
67
  "react-dom": "18.3.1",
68
68
  "rxjs": "^7.8.2",
69
69
  "typescript": "^6.0.3",
70
- "@univerjs-infra/shared": "1.0.0-beta.0",
71
- "@univerjs/presets": "1.0.0-beta.0"
70
+ "@univerjs-infra/shared": "1.0.0-beta.1",
71
+ "@univerjs/presets": "1.0.0-beta.1"
72
72
  },
73
73
  "scripts": {
74
74
  "build:bundle": "univer-cli preset build --cleanup",