@underverse-ui/underverse 1.0.138 → 1.0.140
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/api-reference.json +1 -1
- package/dist/index.cjs +1418 -369
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +621 -0
- package/dist/index.d.ts +621 -0
- package/dist/index.js +1111 -35
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3311,6 +3311,11 @@ interface UEditorProps {
|
|
|
3311
3311
|
} & Record<string, unknown>)>;
|
|
3312
3312
|
collaborationOptions?: any;
|
|
3313
3313
|
extraExtensions?: any[];
|
|
3314
|
+
showMenuBar?: boolean;
|
|
3315
|
+
onSave?: () => void;
|
|
3316
|
+
onExport?: () => void;
|
|
3317
|
+
onSourceCode?: () => void;
|
|
3318
|
+
onPreview?: () => void;
|
|
3314
3319
|
}
|
|
3315
3320
|
type UEditorVariant = NonNullable<UEditorProps["variant"]>;
|
|
3316
3321
|
|
|
@@ -3629,6 +3634,83 @@ declare const underverseMessages: {
|
|
|
3629
3634
|
uploading: string;
|
|
3630
3635
|
uploadFailed: string;
|
|
3631
3636
|
};
|
|
3637
|
+
menubar: {
|
|
3638
|
+
file: string;
|
|
3639
|
+
edit: string;
|
|
3640
|
+
view: string;
|
|
3641
|
+
insert: string;
|
|
3642
|
+
format: string;
|
|
3643
|
+
tools: string;
|
|
3644
|
+
table: string;
|
|
3645
|
+
save: string;
|
|
3646
|
+
exportHtml: string;
|
|
3647
|
+
undo: string;
|
|
3648
|
+
undoShortcut: string;
|
|
3649
|
+
redo: string;
|
|
3650
|
+
redoShortcut: string;
|
|
3651
|
+
cut: string;
|
|
3652
|
+
cutShortcut: string;
|
|
3653
|
+
copy: string;
|
|
3654
|
+
copyShortcut: string;
|
|
3655
|
+
paste: string;
|
|
3656
|
+
pasteShortcut: string;
|
|
3657
|
+
pasteAsText: string;
|
|
3658
|
+
selectAll: string;
|
|
3659
|
+
selectAllShortcut: string;
|
|
3660
|
+
sourceCode: string;
|
|
3661
|
+
preview: string;
|
|
3662
|
+
fullscreen: string;
|
|
3663
|
+
fullscreenShortcut: string;
|
|
3664
|
+
image: string;
|
|
3665
|
+
link: string;
|
|
3666
|
+
linkShortcut: string;
|
|
3667
|
+
insertTable: string;
|
|
3668
|
+
horizontalRule: string;
|
|
3669
|
+
bold: string;
|
|
3670
|
+
boldShortcut: string;
|
|
3671
|
+
italic: string;
|
|
3672
|
+
italicShortcut: string;
|
|
3673
|
+
underline: string;
|
|
3674
|
+
underlineShortcut: string;
|
|
3675
|
+
strike: string;
|
|
3676
|
+
superscript: string;
|
|
3677
|
+
subscript: string;
|
|
3678
|
+
code: string;
|
|
3679
|
+
wrap: string;
|
|
3680
|
+
align: string;
|
|
3681
|
+
clearFormatting: string;
|
|
3682
|
+
paragraph: string;
|
|
3683
|
+
heading1: string;
|
|
3684
|
+
heading2: string;
|
|
3685
|
+
heading3: string;
|
|
3686
|
+
blockquote: string;
|
|
3687
|
+
codeBlock: string;
|
|
3688
|
+
taskList: string;
|
|
3689
|
+
alignLeft: string;
|
|
3690
|
+
alignCenter: string;
|
|
3691
|
+
alignRight: string;
|
|
3692
|
+
alignJustify: string;
|
|
3693
|
+
tableProperties: string;
|
|
3694
|
+
deleteTable: string;
|
|
3695
|
+
row: string;
|
|
3696
|
+
column: string;
|
|
3697
|
+
cell: string;
|
|
3698
|
+
addRowBefore: string;
|
|
3699
|
+
addRowAfter: string;
|
|
3700
|
+
deleteRow: string;
|
|
3701
|
+
addColumnBefore: string;
|
|
3702
|
+
addColumnAfter: string;
|
|
3703
|
+
deleteColumn: string;
|
|
3704
|
+
mergeCells: string;
|
|
3705
|
+
splitCell: string;
|
|
3706
|
+
imageUpload: string;
|
|
3707
|
+
applySource: string;
|
|
3708
|
+
closeDialog: string;
|
|
3709
|
+
copyHtml: string;
|
|
3710
|
+
exportDefault: string;
|
|
3711
|
+
previewEmpty: string;
|
|
3712
|
+
sourceCodeHint: string;
|
|
3713
|
+
};
|
|
3632
3714
|
};
|
|
3633
3715
|
};
|
|
3634
3716
|
readonly vi: {
|
|
@@ -3926,6 +4008,83 @@ declare const underverseMessages: {
|
|
|
3926
4008
|
uploading: string;
|
|
3927
4009
|
uploadFailed: string;
|
|
3928
4010
|
};
|
|
4011
|
+
menubar: {
|
|
4012
|
+
file: string;
|
|
4013
|
+
edit: string;
|
|
4014
|
+
view: string;
|
|
4015
|
+
insert: string;
|
|
4016
|
+
format: string;
|
|
4017
|
+
tools: string;
|
|
4018
|
+
table: string;
|
|
4019
|
+
save: string;
|
|
4020
|
+
exportHtml: string;
|
|
4021
|
+
undo: string;
|
|
4022
|
+
undoShortcut: string;
|
|
4023
|
+
redo: string;
|
|
4024
|
+
redoShortcut: string;
|
|
4025
|
+
cut: string;
|
|
4026
|
+
cutShortcut: string;
|
|
4027
|
+
copy: string;
|
|
4028
|
+
copyShortcut: string;
|
|
4029
|
+
paste: string;
|
|
4030
|
+
pasteShortcut: string;
|
|
4031
|
+
pasteAsText: string;
|
|
4032
|
+
selectAll: string;
|
|
4033
|
+
selectAllShortcut: string;
|
|
4034
|
+
sourceCode: string;
|
|
4035
|
+
preview: string;
|
|
4036
|
+
fullscreen: string;
|
|
4037
|
+
fullscreenShortcut: string;
|
|
4038
|
+
image: string;
|
|
4039
|
+
link: string;
|
|
4040
|
+
linkShortcut: string;
|
|
4041
|
+
insertTable: string;
|
|
4042
|
+
horizontalRule: string;
|
|
4043
|
+
bold: string;
|
|
4044
|
+
boldShortcut: string;
|
|
4045
|
+
italic: string;
|
|
4046
|
+
italicShortcut: string;
|
|
4047
|
+
underline: string;
|
|
4048
|
+
underlineShortcut: string;
|
|
4049
|
+
strike: string;
|
|
4050
|
+
superscript: string;
|
|
4051
|
+
subscript: string;
|
|
4052
|
+
code: string;
|
|
4053
|
+
wrap: string;
|
|
4054
|
+
align: string;
|
|
4055
|
+
clearFormatting: string;
|
|
4056
|
+
paragraph: string;
|
|
4057
|
+
heading1: string;
|
|
4058
|
+
heading2: string;
|
|
4059
|
+
heading3: string;
|
|
4060
|
+
blockquote: string;
|
|
4061
|
+
codeBlock: string;
|
|
4062
|
+
taskList: string;
|
|
4063
|
+
alignLeft: string;
|
|
4064
|
+
alignCenter: string;
|
|
4065
|
+
alignRight: string;
|
|
4066
|
+
alignJustify: string;
|
|
4067
|
+
tableProperties: string;
|
|
4068
|
+
deleteTable: string;
|
|
4069
|
+
row: string;
|
|
4070
|
+
column: string;
|
|
4071
|
+
cell: string;
|
|
4072
|
+
addRowBefore: string;
|
|
4073
|
+
addRowAfter: string;
|
|
4074
|
+
deleteRow: string;
|
|
4075
|
+
addColumnBefore: string;
|
|
4076
|
+
addColumnAfter: string;
|
|
4077
|
+
deleteColumn: string;
|
|
4078
|
+
mergeCells: string;
|
|
4079
|
+
splitCell: string;
|
|
4080
|
+
imageUpload: string;
|
|
4081
|
+
applySource: string;
|
|
4082
|
+
closeDialog: string;
|
|
4083
|
+
copyHtml: string;
|
|
4084
|
+
exportDefault: string;
|
|
4085
|
+
previewEmpty: string;
|
|
4086
|
+
sourceCodeHint: string;
|
|
4087
|
+
};
|
|
3929
4088
|
};
|
|
3930
4089
|
};
|
|
3931
4090
|
readonly ko: {
|
|
@@ -4222,6 +4381,83 @@ declare const underverseMessages: {
|
|
|
4222
4381
|
uploading: string;
|
|
4223
4382
|
uploadFailed: string;
|
|
4224
4383
|
};
|
|
4384
|
+
menubar: {
|
|
4385
|
+
file: string;
|
|
4386
|
+
edit: string;
|
|
4387
|
+
view: string;
|
|
4388
|
+
insert: string;
|
|
4389
|
+
format: string;
|
|
4390
|
+
tools: string;
|
|
4391
|
+
table: string;
|
|
4392
|
+
save: string;
|
|
4393
|
+
exportHtml: string;
|
|
4394
|
+
undo: string;
|
|
4395
|
+
undoShortcut: string;
|
|
4396
|
+
redo: string;
|
|
4397
|
+
redoShortcut: string;
|
|
4398
|
+
cut: string;
|
|
4399
|
+
cutShortcut: string;
|
|
4400
|
+
copy: string;
|
|
4401
|
+
copyShortcut: string;
|
|
4402
|
+
paste: string;
|
|
4403
|
+
pasteShortcut: string;
|
|
4404
|
+
pasteAsText: string;
|
|
4405
|
+
selectAll: string;
|
|
4406
|
+
selectAllShortcut: string;
|
|
4407
|
+
sourceCode: string;
|
|
4408
|
+
preview: string;
|
|
4409
|
+
fullscreen: string;
|
|
4410
|
+
fullscreenShortcut: string;
|
|
4411
|
+
image: string;
|
|
4412
|
+
link: string;
|
|
4413
|
+
linkShortcut: string;
|
|
4414
|
+
insertTable: string;
|
|
4415
|
+
horizontalRule: string;
|
|
4416
|
+
bold: string;
|
|
4417
|
+
boldShortcut: string;
|
|
4418
|
+
italic: string;
|
|
4419
|
+
italicShortcut: string;
|
|
4420
|
+
underline: string;
|
|
4421
|
+
underlineShortcut: string;
|
|
4422
|
+
strike: string;
|
|
4423
|
+
superscript: string;
|
|
4424
|
+
subscript: string;
|
|
4425
|
+
code: string;
|
|
4426
|
+
wrap: string;
|
|
4427
|
+
align: string;
|
|
4428
|
+
clearFormatting: string;
|
|
4429
|
+
paragraph: string;
|
|
4430
|
+
heading1: string;
|
|
4431
|
+
heading2: string;
|
|
4432
|
+
heading3: string;
|
|
4433
|
+
blockquote: string;
|
|
4434
|
+
codeBlock: string;
|
|
4435
|
+
taskList: string;
|
|
4436
|
+
alignLeft: string;
|
|
4437
|
+
alignCenter: string;
|
|
4438
|
+
alignRight: string;
|
|
4439
|
+
alignJustify: string;
|
|
4440
|
+
tableProperties: string;
|
|
4441
|
+
deleteTable: string;
|
|
4442
|
+
row: string;
|
|
4443
|
+
column: string;
|
|
4444
|
+
cell: string;
|
|
4445
|
+
addRowBefore: string;
|
|
4446
|
+
addRowAfter: string;
|
|
4447
|
+
deleteRow: string;
|
|
4448
|
+
addColumnBefore: string;
|
|
4449
|
+
addColumnAfter: string;
|
|
4450
|
+
deleteColumn: string;
|
|
4451
|
+
mergeCells: string;
|
|
4452
|
+
splitCell: string;
|
|
4453
|
+
imageUpload: string;
|
|
4454
|
+
applySource: string;
|
|
4455
|
+
closeDialog: string;
|
|
4456
|
+
copyHtml: string;
|
|
4457
|
+
exportDefault: string;
|
|
4458
|
+
previewEmpty: string;
|
|
4459
|
+
sourceCodeHint: string;
|
|
4460
|
+
};
|
|
4225
4461
|
};
|
|
4226
4462
|
};
|
|
4227
4463
|
readonly ja: {
|
|
@@ -4518,6 +4754,83 @@ declare const underverseMessages: {
|
|
|
4518
4754
|
uploading: string;
|
|
4519
4755
|
uploadFailed: string;
|
|
4520
4756
|
};
|
|
4757
|
+
menubar: {
|
|
4758
|
+
file: string;
|
|
4759
|
+
edit: string;
|
|
4760
|
+
view: string;
|
|
4761
|
+
insert: string;
|
|
4762
|
+
format: string;
|
|
4763
|
+
tools: string;
|
|
4764
|
+
table: string;
|
|
4765
|
+
save: string;
|
|
4766
|
+
exportHtml: string;
|
|
4767
|
+
undo: string;
|
|
4768
|
+
undoShortcut: string;
|
|
4769
|
+
redo: string;
|
|
4770
|
+
redoShortcut: string;
|
|
4771
|
+
cut: string;
|
|
4772
|
+
cutShortcut: string;
|
|
4773
|
+
copy: string;
|
|
4774
|
+
copyShortcut: string;
|
|
4775
|
+
paste: string;
|
|
4776
|
+
pasteShortcut: string;
|
|
4777
|
+
pasteAsText: string;
|
|
4778
|
+
selectAll: string;
|
|
4779
|
+
selectAllShortcut: string;
|
|
4780
|
+
sourceCode: string;
|
|
4781
|
+
preview: string;
|
|
4782
|
+
fullscreen: string;
|
|
4783
|
+
fullscreenShortcut: string;
|
|
4784
|
+
image: string;
|
|
4785
|
+
link: string;
|
|
4786
|
+
linkShortcut: string;
|
|
4787
|
+
insertTable: string;
|
|
4788
|
+
horizontalRule: string;
|
|
4789
|
+
bold: string;
|
|
4790
|
+
boldShortcut: string;
|
|
4791
|
+
italic: string;
|
|
4792
|
+
italicShortcut: string;
|
|
4793
|
+
underline: string;
|
|
4794
|
+
underlineShortcut: string;
|
|
4795
|
+
strike: string;
|
|
4796
|
+
superscript: string;
|
|
4797
|
+
subscript: string;
|
|
4798
|
+
code: string;
|
|
4799
|
+
wrap: string;
|
|
4800
|
+
align: string;
|
|
4801
|
+
clearFormatting: string;
|
|
4802
|
+
paragraph: string;
|
|
4803
|
+
heading1: string;
|
|
4804
|
+
heading2: string;
|
|
4805
|
+
heading3: string;
|
|
4806
|
+
blockquote: string;
|
|
4807
|
+
codeBlock: string;
|
|
4808
|
+
taskList: string;
|
|
4809
|
+
alignLeft: string;
|
|
4810
|
+
alignCenter: string;
|
|
4811
|
+
alignRight: string;
|
|
4812
|
+
alignJustify: string;
|
|
4813
|
+
tableProperties: string;
|
|
4814
|
+
deleteTable: string;
|
|
4815
|
+
row: string;
|
|
4816
|
+
column: string;
|
|
4817
|
+
cell: string;
|
|
4818
|
+
addRowBefore: string;
|
|
4819
|
+
addRowAfter: string;
|
|
4820
|
+
deleteRow: string;
|
|
4821
|
+
addColumnBefore: string;
|
|
4822
|
+
addColumnAfter: string;
|
|
4823
|
+
deleteColumn: string;
|
|
4824
|
+
mergeCells: string;
|
|
4825
|
+
splitCell: string;
|
|
4826
|
+
imageUpload: string;
|
|
4827
|
+
applySource: string;
|
|
4828
|
+
closeDialog: string;
|
|
4829
|
+
copyHtml: string;
|
|
4830
|
+
exportDefault: string;
|
|
4831
|
+
previewEmpty: string;
|
|
4832
|
+
sourceCodeHint: string;
|
|
4833
|
+
};
|
|
4521
4834
|
};
|
|
4522
4835
|
};
|
|
4523
4836
|
};
|
|
@@ -4818,6 +5131,83 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4818
5131
|
uploading: string;
|
|
4819
5132
|
uploadFailed: string;
|
|
4820
5133
|
};
|
|
5134
|
+
menubar: {
|
|
5135
|
+
file: string;
|
|
5136
|
+
edit: string;
|
|
5137
|
+
view: string;
|
|
5138
|
+
insert: string;
|
|
5139
|
+
format: string;
|
|
5140
|
+
tools: string;
|
|
5141
|
+
table: string;
|
|
5142
|
+
save: string;
|
|
5143
|
+
exportHtml: string;
|
|
5144
|
+
undo: string;
|
|
5145
|
+
undoShortcut: string;
|
|
5146
|
+
redo: string;
|
|
5147
|
+
redoShortcut: string;
|
|
5148
|
+
cut: string;
|
|
5149
|
+
cutShortcut: string;
|
|
5150
|
+
copy: string;
|
|
5151
|
+
copyShortcut: string;
|
|
5152
|
+
paste: string;
|
|
5153
|
+
pasteShortcut: string;
|
|
5154
|
+
pasteAsText: string;
|
|
5155
|
+
selectAll: string;
|
|
5156
|
+
selectAllShortcut: string;
|
|
5157
|
+
sourceCode: string;
|
|
5158
|
+
preview: string;
|
|
5159
|
+
fullscreen: string;
|
|
5160
|
+
fullscreenShortcut: string;
|
|
5161
|
+
image: string;
|
|
5162
|
+
link: string;
|
|
5163
|
+
linkShortcut: string;
|
|
5164
|
+
insertTable: string;
|
|
5165
|
+
horizontalRule: string;
|
|
5166
|
+
bold: string;
|
|
5167
|
+
boldShortcut: string;
|
|
5168
|
+
italic: string;
|
|
5169
|
+
italicShortcut: string;
|
|
5170
|
+
underline: string;
|
|
5171
|
+
underlineShortcut: string;
|
|
5172
|
+
strike: string;
|
|
5173
|
+
superscript: string;
|
|
5174
|
+
subscript: string;
|
|
5175
|
+
code: string;
|
|
5176
|
+
wrap: string;
|
|
5177
|
+
align: string;
|
|
5178
|
+
clearFormatting: string;
|
|
5179
|
+
paragraph: string;
|
|
5180
|
+
heading1: string;
|
|
5181
|
+
heading2: string;
|
|
5182
|
+
heading3: string;
|
|
5183
|
+
blockquote: string;
|
|
5184
|
+
codeBlock: string;
|
|
5185
|
+
taskList: string;
|
|
5186
|
+
alignLeft: string;
|
|
5187
|
+
alignCenter: string;
|
|
5188
|
+
alignRight: string;
|
|
5189
|
+
alignJustify: string;
|
|
5190
|
+
tableProperties: string;
|
|
5191
|
+
deleteTable: string;
|
|
5192
|
+
row: string;
|
|
5193
|
+
column: string;
|
|
5194
|
+
cell: string;
|
|
5195
|
+
addRowBefore: string;
|
|
5196
|
+
addRowAfter: string;
|
|
5197
|
+
deleteRow: string;
|
|
5198
|
+
addColumnBefore: string;
|
|
5199
|
+
addColumnAfter: string;
|
|
5200
|
+
deleteColumn: string;
|
|
5201
|
+
mergeCells: string;
|
|
5202
|
+
splitCell: string;
|
|
5203
|
+
imageUpload: string;
|
|
5204
|
+
applySource: string;
|
|
5205
|
+
closeDialog: string;
|
|
5206
|
+
copyHtml: string;
|
|
5207
|
+
exportDefault: string;
|
|
5208
|
+
previewEmpty: string;
|
|
5209
|
+
sourceCodeHint: string;
|
|
5210
|
+
};
|
|
4821
5211
|
};
|
|
4822
5212
|
} | {
|
|
4823
5213
|
Common: {
|
|
@@ -5114,6 +5504,83 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5114
5504
|
uploading: string;
|
|
5115
5505
|
uploadFailed: string;
|
|
5116
5506
|
};
|
|
5507
|
+
menubar: {
|
|
5508
|
+
file: string;
|
|
5509
|
+
edit: string;
|
|
5510
|
+
view: string;
|
|
5511
|
+
insert: string;
|
|
5512
|
+
format: string;
|
|
5513
|
+
tools: string;
|
|
5514
|
+
table: string;
|
|
5515
|
+
save: string;
|
|
5516
|
+
exportHtml: string;
|
|
5517
|
+
undo: string;
|
|
5518
|
+
undoShortcut: string;
|
|
5519
|
+
redo: string;
|
|
5520
|
+
redoShortcut: string;
|
|
5521
|
+
cut: string;
|
|
5522
|
+
cutShortcut: string;
|
|
5523
|
+
copy: string;
|
|
5524
|
+
copyShortcut: string;
|
|
5525
|
+
paste: string;
|
|
5526
|
+
pasteShortcut: string;
|
|
5527
|
+
pasteAsText: string;
|
|
5528
|
+
selectAll: string;
|
|
5529
|
+
selectAllShortcut: string;
|
|
5530
|
+
sourceCode: string;
|
|
5531
|
+
preview: string;
|
|
5532
|
+
fullscreen: string;
|
|
5533
|
+
fullscreenShortcut: string;
|
|
5534
|
+
image: string;
|
|
5535
|
+
link: string;
|
|
5536
|
+
linkShortcut: string;
|
|
5537
|
+
insertTable: string;
|
|
5538
|
+
horizontalRule: string;
|
|
5539
|
+
bold: string;
|
|
5540
|
+
boldShortcut: string;
|
|
5541
|
+
italic: string;
|
|
5542
|
+
italicShortcut: string;
|
|
5543
|
+
underline: string;
|
|
5544
|
+
underlineShortcut: string;
|
|
5545
|
+
strike: string;
|
|
5546
|
+
superscript: string;
|
|
5547
|
+
subscript: string;
|
|
5548
|
+
code: string;
|
|
5549
|
+
wrap: string;
|
|
5550
|
+
align: string;
|
|
5551
|
+
clearFormatting: string;
|
|
5552
|
+
paragraph: string;
|
|
5553
|
+
heading1: string;
|
|
5554
|
+
heading2: string;
|
|
5555
|
+
heading3: string;
|
|
5556
|
+
blockquote: string;
|
|
5557
|
+
codeBlock: string;
|
|
5558
|
+
taskList: string;
|
|
5559
|
+
alignLeft: string;
|
|
5560
|
+
alignCenter: string;
|
|
5561
|
+
alignRight: string;
|
|
5562
|
+
alignJustify: string;
|
|
5563
|
+
tableProperties: string;
|
|
5564
|
+
deleteTable: string;
|
|
5565
|
+
row: string;
|
|
5566
|
+
column: string;
|
|
5567
|
+
cell: string;
|
|
5568
|
+
addRowBefore: string;
|
|
5569
|
+
addRowAfter: string;
|
|
5570
|
+
deleteRow: string;
|
|
5571
|
+
addColumnBefore: string;
|
|
5572
|
+
addColumnAfter: string;
|
|
5573
|
+
deleteColumn: string;
|
|
5574
|
+
mergeCells: string;
|
|
5575
|
+
splitCell: string;
|
|
5576
|
+
imageUpload: string;
|
|
5577
|
+
applySource: string;
|
|
5578
|
+
closeDialog: string;
|
|
5579
|
+
copyHtml: string;
|
|
5580
|
+
exportDefault: string;
|
|
5581
|
+
previewEmpty: string;
|
|
5582
|
+
sourceCodeHint: string;
|
|
5583
|
+
};
|
|
5117
5584
|
};
|
|
5118
5585
|
} | {
|
|
5119
5586
|
Common: {
|
|
@@ -5409,6 +5876,83 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5409
5876
|
uploading: string;
|
|
5410
5877
|
uploadFailed: string;
|
|
5411
5878
|
};
|
|
5879
|
+
menubar: {
|
|
5880
|
+
file: string;
|
|
5881
|
+
edit: string;
|
|
5882
|
+
view: string;
|
|
5883
|
+
insert: string;
|
|
5884
|
+
format: string;
|
|
5885
|
+
tools: string;
|
|
5886
|
+
table: string;
|
|
5887
|
+
save: string;
|
|
5888
|
+
exportHtml: string;
|
|
5889
|
+
undo: string;
|
|
5890
|
+
undoShortcut: string;
|
|
5891
|
+
redo: string;
|
|
5892
|
+
redoShortcut: string;
|
|
5893
|
+
cut: string;
|
|
5894
|
+
cutShortcut: string;
|
|
5895
|
+
copy: string;
|
|
5896
|
+
copyShortcut: string;
|
|
5897
|
+
paste: string;
|
|
5898
|
+
pasteShortcut: string;
|
|
5899
|
+
pasteAsText: string;
|
|
5900
|
+
selectAll: string;
|
|
5901
|
+
selectAllShortcut: string;
|
|
5902
|
+
sourceCode: string;
|
|
5903
|
+
preview: string;
|
|
5904
|
+
fullscreen: string;
|
|
5905
|
+
fullscreenShortcut: string;
|
|
5906
|
+
image: string;
|
|
5907
|
+
link: string;
|
|
5908
|
+
linkShortcut: string;
|
|
5909
|
+
insertTable: string;
|
|
5910
|
+
horizontalRule: string;
|
|
5911
|
+
bold: string;
|
|
5912
|
+
boldShortcut: string;
|
|
5913
|
+
italic: string;
|
|
5914
|
+
italicShortcut: string;
|
|
5915
|
+
underline: string;
|
|
5916
|
+
underlineShortcut: string;
|
|
5917
|
+
strike: string;
|
|
5918
|
+
superscript: string;
|
|
5919
|
+
subscript: string;
|
|
5920
|
+
code: string;
|
|
5921
|
+
wrap: string;
|
|
5922
|
+
align: string;
|
|
5923
|
+
clearFormatting: string;
|
|
5924
|
+
paragraph: string;
|
|
5925
|
+
heading1: string;
|
|
5926
|
+
heading2: string;
|
|
5927
|
+
heading3: string;
|
|
5928
|
+
blockquote: string;
|
|
5929
|
+
codeBlock: string;
|
|
5930
|
+
taskList: string;
|
|
5931
|
+
alignLeft: string;
|
|
5932
|
+
alignCenter: string;
|
|
5933
|
+
alignRight: string;
|
|
5934
|
+
alignJustify: string;
|
|
5935
|
+
tableProperties: string;
|
|
5936
|
+
deleteTable: string;
|
|
5937
|
+
row: string;
|
|
5938
|
+
column: string;
|
|
5939
|
+
cell: string;
|
|
5940
|
+
addRowBefore: string;
|
|
5941
|
+
addRowAfter: string;
|
|
5942
|
+
deleteRow: string;
|
|
5943
|
+
addColumnBefore: string;
|
|
5944
|
+
addColumnAfter: string;
|
|
5945
|
+
deleteColumn: string;
|
|
5946
|
+
mergeCells: string;
|
|
5947
|
+
splitCell: string;
|
|
5948
|
+
imageUpload: string;
|
|
5949
|
+
applySource: string;
|
|
5950
|
+
closeDialog: string;
|
|
5951
|
+
copyHtml: string;
|
|
5952
|
+
exportDefault: string;
|
|
5953
|
+
previewEmpty: string;
|
|
5954
|
+
sourceCodeHint: string;
|
|
5955
|
+
};
|
|
5412
5956
|
};
|
|
5413
5957
|
} | {
|
|
5414
5958
|
Common: {
|
|
@@ -5704,6 +6248,83 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5704
6248
|
uploading: string;
|
|
5705
6249
|
uploadFailed: string;
|
|
5706
6250
|
};
|
|
6251
|
+
menubar: {
|
|
6252
|
+
file: string;
|
|
6253
|
+
edit: string;
|
|
6254
|
+
view: string;
|
|
6255
|
+
insert: string;
|
|
6256
|
+
format: string;
|
|
6257
|
+
tools: string;
|
|
6258
|
+
table: string;
|
|
6259
|
+
save: string;
|
|
6260
|
+
exportHtml: string;
|
|
6261
|
+
undo: string;
|
|
6262
|
+
undoShortcut: string;
|
|
6263
|
+
redo: string;
|
|
6264
|
+
redoShortcut: string;
|
|
6265
|
+
cut: string;
|
|
6266
|
+
cutShortcut: string;
|
|
6267
|
+
copy: string;
|
|
6268
|
+
copyShortcut: string;
|
|
6269
|
+
paste: string;
|
|
6270
|
+
pasteShortcut: string;
|
|
6271
|
+
pasteAsText: string;
|
|
6272
|
+
selectAll: string;
|
|
6273
|
+
selectAllShortcut: string;
|
|
6274
|
+
sourceCode: string;
|
|
6275
|
+
preview: string;
|
|
6276
|
+
fullscreen: string;
|
|
6277
|
+
fullscreenShortcut: string;
|
|
6278
|
+
image: string;
|
|
6279
|
+
link: string;
|
|
6280
|
+
linkShortcut: string;
|
|
6281
|
+
insertTable: string;
|
|
6282
|
+
horizontalRule: string;
|
|
6283
|
+
bold: string;
|
|
6284
|
+
boldShortcut: string;
|
|
6285
|
+
italic: string;
|
|
6286
|
+
italicShortcut: string;
|
|
6287
|
+
underline: string;
|
|
6288
|
+
underlineShortcut: string;
|
|
6289
|
+
strike: string;
|
|
6290
|
+
superscript: string;
|
|
6291
|
+
subscript: string;
|
|
6292
|
+
code: string;
|
|
6293
|
+
wrap: string;
|
|
6294
|
+
align: string;
|
|
6295
|
+
clearFormatting: string;
|
|
6296
|
+
paragraph: string;
|
|
6297
|
+
heading1: string;
|
|
6298
|
+
heading2: string;
|
|
6299
|
+
heading3: string;
|
|
6300
|
+
blockquote: string;
|
|
6301
|
+
codeBlock: string;
|
|
6302
|
+
taskList: string;
|
|
6303
|
+
alignLeft: string;
|
|
6304
|
+
alignCenter: string;
|
|
6305
|
+
alignRight: string;
|
|
6306
|
+
alignJustify: string;
|
|
6307
|
+
tableProperties: string;
|
|
6308
|
+
deleteTable: string;
|
|
6309
|
+
row: string;
|
|
6310
|
+
column: string;
|
|
6311
|
+
cell: string;
|
|
6312
|
+
addRowBefore: string;
|
|
6313
|
+
addRowAfter: string;
|
|
6314
|
+
deleteRow: string;
|
|
6315
|
+
addColumnBefore: string;
|
|
6316
|
+
addColumnAfter: string;
|
|
6317
|
+
deleteColumn: string;
|
|
6318
|
+
mergeCells: string;
|
|
6319
|
+
splitCell: string;
|
|
6320
|
+
imageUpload: string;
|
|
6321
|
+
applySource: string;
|
|
6322
|
+
closeDialog: string;
|
|
6323
|
+
copyHtml: string;
|
|
6324
|
+
exportDefault: string;
|
|
6325
|
+
previewEmpty: string;
|
|
6326
|
+
sourceCodeHint: string;
|
|
6327
|
+
};
|
|
5707
6328
|
};
|
|
5708
6329
|
};
|
|
5709
6330
|
|