@underverse-ui/underverse 1.0.137 → 1.0.139
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 +3310 -926
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +853 -1
- package/dist/index.d.ts +853 -1
- package/dist/index.js +3065 -648
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3299,6 +3299,23 @@ interface UEditorProps {
|
|
|
3299
3299
|
fontSizes?: UEditorFontSizeOption[];
|
|
3300
3300
|
lineHeights?: UEditorLineHeightOption[];
|
|
3301
3301
|
letterSpacings?: UEditorLetterSpacingOption[];
|
|
3302
|
+
fetchMetadata?: (url: string) => Promise<{
|
|
3303
|
+
title?: string;
|
|
3304
|
+
description?: string;
|
|
3305
|
+
image?: string;
|
|
3306
|
+
publisher?: string;
|
|
3307
|
+
}>;
|
|
3308
|
+
uploadFile?: (file: File) => Promise<string> | string;
|
|
3309
|
+
uploadFileForSave?: (file: File) => Promise<string | ({
|
|
3310
|
+
url: string;
|
|
3311
|
+
} & Record<string, unknown>)>;
|
|
3312
|
+
collaborationOptions?: any;
|
|
3313
|
+
extraExtensions?: any[];
|
|
3314
|
+
showMenuBar?: boolean;
|
|
3315
|
+
onSave?: () => void;
|
|
3316
|
+
onExport?: () => void;
|
|
3317
|
+
onSourceCode?: () => void;
|
|
3318
|
+
onPreview?: () => void;
|
|
3302
3319
|
}
|
|
3303
3320
|
type UEditorVariant = NonNullable<UEditorProps["variant"]>;
|
|
3304
3321
|
|
|
@@ -3310,9 +3327,12 @@ declare class UEditorPrepareContentForSaveError extends Error {
|
|
|
3310
3327
|
readonly result: UEditorPrepareContentForSaveResult;
|
|
3311
3328
|
constructor(result: UEditorPrepareContentForSaveResult);
|
|
3312
3329
|
}
|
|
3313
|
-
declare function prepareUEditorContentForSave({ html, uploadImageForSave, uploadConcurrency, }: {
|
|
3330
|
+
declare function prepareUEditorContentForSave({ html, uploadImageForSave, uploadFileForSave, uploadConcurrency, }: {
|
|
3314
3331
|
html: string;
|
|
3315
3332
|
uploadImageForSave?: UEditorUploadImageForSave;
|
|
3333
|
+
uploadFileForSave?: (file: File) => Promise<string | ({
|
|
3334
|
+
url: string;
|
|
3335
|
+
} & Record<string, unknown>)>;
|
|
3316
3336
|
uploadConcurrency?: number;
|
|
3317
3337
|
}): Promise<UEditorPrepareContentForSaveResult>;
|
|
3318
3338
|
|
|
@@ -3525,6 +3545,12 @@ declare const underverseMessages: {
|
|
|
3525
3545
|
table: string;
|
|
3526
3546
|
tableDesc: string;
|
|
3527
3547
|
noResults: string;
|
|
3548
|
+
callout: string;
|
|
3549
|
+
calloutDesc: string;
|
|
3550
|
+
bookmark: string;
|
|
3551
|
+
bookmarkDesc: string;
|
|
3552
|
+
fileCard: string;
|
|
3553
|
+
fileCardDesc: string;
|
|
3528
3554
|
};
|
|
3529
3555
|
floatingMenu: {
|
|
3530
3556
|
addBlock: string;
|
|
@@ -3586,6 +3612,104 @@ declare const underverseMessages: {
|
|
|
3586
3612
|
alignCenter: string;
|
|
3587
3613
|
alignRight: string;
|
|
3588
3614
|
cellBackground: string;
|
|
3615
|
+
cellBorder: string;
|
|
3616
|
+
borderStyle: string;
|
|
3617
|
+
borderWidth: string;
|
|
3618
|
+
borderColor: string;
|
|
3619
|
+
clearBorder: string;
|
|
3620
|
+
done: string;
|
|
3621
|
+
};
|
|
3622
|
+
callout: {
|
|
3623
|
+
selectEmoji: string;
|
|
3624
|
+
backgroundColor: string;
|
|
3625
|
+
};
|
|
3626
|
+
bookmark: {
|
|
3627
|
+
clickToOpenNewTab: string;
|
|
3628
|
+
clickToOpenLink: string;
|
|
3629
|
+
noDescription: string;
|
|
3630
|
+
failedToLoad: string;
|
|
3631
|
+
};
|
|
3632
|
+
fileCard: {
|
|
3633
|
+
unnamed: string;
|
|
3634
|
+
uploading: string;
|
|
3635
|
+
uploadFailed: string;
|
|
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;
|
|
3589
3713
|
};
|
|
3590
3714
|
};
|
|
3591
3715
|
};
|
|
@@ -3795,6 +3919,12 @@ declare const underverseMessages: {
|
|
|
3795
3919
|
table: string;
|
|
3796
3920
|
tableDesc: string;
|
|
3797
3921
|
noResults: string;
|
|
3922
|
+
callout: string;
|
|
3923
|
+
calloutDesc: string;
|
|
3924
|
+
bookmark: string;
|
|
3925
|
+
bookmarkDesc: string;
|
|
3926
|
+
fileCard: string;
|
|
3927
|
+
fileCardDesc: string;
|
|
3798
3928
|
};
|
|
3799
3929
|
floatingMenu: {
|
|
3800
3930
|
addBlock: string;
|
|
@@ -3856,6 +3986,104 @@ declare const underverseMessages: {
|
|
|
3856
3986
|
alignCenter: string;
|
|
3857
3987
|
alignRight: string;
|
|
3858
3988
|
cellBackground: string;
|
|
3989
|
+
cellBorder: string;
|
|
3990
|
+
borderStyle: string;
|
|
3991
|
+
borderWidth: string;
|
|
3992
|
+
borderColor: string;
|
|
3993
|
+
clearBorder: string;
|
|
3994
|
+
done: string;
|
|
3995
|
+
};
|
|
3996
|
+
callout: {
|
|
3997
|
+
selectEmoji: string;
|
|
3998
|
+
backgroundColor: string;
|
|
3999
|
+
};
|
|
4000
|
+
bookmark: {
|
|
4001
|
+
clickToOpenNewTab: string;
|
|
4002
|
+
clickToOpenLink: string;
|
|
4003
|
+
noDescription: string;
|
|
4004
|
+
failedToLoad: string;
|
|
4005
|
+
};
|
|
4006
|
+
fileCard: {
|
|
4007
|
+
unnamed: string;
|
|
4008
|
+
uploading: string;
|
|
4009
|
+
uploadFailed: string;
|
|
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;
|
|
3859
4087
|
};
|
|
3860
4088
|
};
|
|
3861
4089
|
};
|
|
@@ -4064,6 +4292,12 @@ declare const underverseMessages: {
|
|
|
4064
4292
|
dividerDesc: string;
|
|
4065
4293
|
table: string;
|
|
4066
4294
|
tableDesc: string;
|
|
4295
|
+
callout: string;
|
|
4296
|
+
calloutDesc: string;
|
|
4297
|
+
bookmark: string;
|
|
4298
|
+
bookmarkDesc: string;
|
|
4299
|
+
fileCard: string;
|
|
4300
|
+
fileCardDesc: string;
|
|
4067
4301
|
};
|
|
4068
4302
|
floatingMenu: {
|
|
4069
4303
|
addBlock: string;
|
|
@@ -4125,6 +4359,104 @@ declare const underverseMessages: {
|
|
|
4125
4359
|
alignCenter: string;
|
|
4126
4360
|
alignRight: string;
|
|
4127
4361
|
cellBackground: string;
|
|
4362
|
+
cellBorder: string;
|
|
4363
|
+
borderStyle: string;
|
|
4364
|
+
borderWidth: string;
|
|
4365
|
+
borderColor: string;
|
|
4366
|
+
clearBorder: string;
|
|
4367
|
+
done: string;
|
|
4368
|
+
};
|
|
4369
|
+
callout: {
|
|
4370
|
+
selectEmoji: string;
|
|
4371
|
+
backgroundColor: string;
|
|
4372
|
+
};
|
|
4373
|
+
bookmark: {
|
|
4374
|
+
clickToOpenNewTab: string;
|
|
4375
|
+
clickToOpenLink: string;
|
|
4376
|
+
noDescription: string;
|
|
4377
|
+
failedToLoad: string;
|
|
4378
|
+
};
|
|
4379
|
+
fileCard: {
|
|
4380
|
+
unnamed: string;
|
|
4381
|
+
uploading: string;
|
|
4382
|
+
uploadFailed: string;
|
|
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;
|
|
4128
4460
|
};
|
|
4129
4461
|
};
|
|
4130
4462
|
};
|
|
@@ -4333,6 +4665,12 @@ declare const underverseMessages: {
|
|
|
4333
4665
|
dividerDesc: string;
|
|
4334
4666
|
table: string;
|
|
4335
4667
|
tableDesc: string;
|
|
4668
|
+
callout: string;
|
|
4669
|
+
calloutDesc: string;
|
|
4670
|
+
bookmark: string;
|
|
4671
|
+
bookmarkDesc: string;
|
|
4672
|
+
fileCard: string;
|
|
4673
|
+
fileCardDesc: string;
|
|
4336
4674
|
};
|
|
4337
4675
|
floatingMenu: {
|
|
4338
4676
|
addBlock: string;
|
|
@@ -4394,6 +4732,104 @@ declare const underverseMessages: {
|
|
|
4394
4732
|
alignCenter: string;
|
|
4395
4733
|
alignRight: string;
|
|
4396
4734
|
cellBackground: string;
|
|
4735
|
+
cellBorder: string;
|
|
4736
|
+
borderStyle: string;
|
|
4737
|
+
borderWidth: string;
|
|
4738
|
+
borderColor: string;
|
|
4739
|
+
clearBorder: string;
|
|
4740
|
+
done: string;
|
|
4741
|
+
};
|
|
4742
|
+
callout: {
|
|
4743
|
+
selectEmoji: string;
|
|
4744
|
+
backgroundColor: string;
|
|
4745
|
+
};
|
|
4746
|
+
bookmark: {
|
|
4747
|
+
clickToOpenNewTab: string;
|
|
4748
|
+
clickToOpenLink: string;
|
|
4749
|
+
noDescription: string;
|
|
4750
|
+
failedToLoad: string;
|
|
4751
|
+
};
|
|
4752
|
+
fileCard: {
|
|
4753
|
+
unnamed: string;
|
|
4754
|
+
uploading: string;
|
|
4755
|
+
uploadFailed: string;
|
|
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;
|
|
4397
4833
|
};
|
|
4398
4834
|
};
|
|
4399
4835
|
};
|
|
@@ -4606,6 +5042,12 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4606
5042
|
table: string;
|
|
4607
5043
|
tableDesc: string;
|
|
4608
5044
|
noResults: string;
|
|
5045
|
+
callout: string;
|
|
5046
|
+
calloutDesc: string;
|
|
5047
|
+
bookmark: string;
|
|
5048
|
+
bookmarkDesc: string;
|
|
5049
|
+
fileCard: string;
|
|
5050
|
+
fileCardDesc: string;
|
|
4609
5051
|
};
|
|
4610
5052
|
floatingMenu: {
|
|
4611
5053
|
addBlock: string;
|
|
@@ -4667,6 +5109,104 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4667
5109
|
alignCenter: string;
|
|
4668
5110
|
alignRight: string;
|
|
4669
5111
|
cellBackground: string;
|
|
5112
|
+
cellBorder: string;
|
|
5113
|
+
borderStyle: string;
|
|
5114
|
+
borderWidth: string;
|
|
5115
|
+
borderColor: string;
|
|
5116
|
+
clearBorder: string;
|
|
5117
|
+
done: string;
|
|
5118
|
+
};
|
|
5119
|
+
callout: {
|
|
5120
|
+
selectEmoji: string;
|
|
5121
|
+
backgroundColor: string;
|
|
5122
|
+
};
|
|
5123
|
+
bookmark: {
|
|
5124
|
+
clickToOpenNewTab: string;
|
|
5125
|
+
clickToOpenLink: string;
|
|
5126
|
+
noDescription: string;
|
|
5127
|
+
failedToLoad: string;
|
|
5128
|
+
};
|
|
5129
|
+
fileCard: {
|
|
5130
|
+
unnamed: string;
|
|
5131
|
+
uploading: string;
|
|
5132
|
+
uploadFailed: string;
|
|
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;
|
|
4670
5210
|
};
|
|
4671
5211
|
};
|
|
4672
5212
|
} | {
|
|
@@ -4875,6 +5415,12 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4875
5415
|
table: string;
|
|
4876
5416
|
tableDesc: string;
|
|
4877
5417
|
noResults: string;
|
|
5418
|
+
callout: string;
|
|
5419
|
+
calloutDesc: string;
|
|
5420
|
+
bookmark: string;
|
|
5421
|
+
bookmarkDesc: string;
|
|
5422
|
+
fileCard: string;
|
|
5423
|
+
fileCardDesc: string;
|
|
4878
5424
|
};
|
|
4879
5425
|
floatingMenu: {
|
|
4880
5426
|
addBlock: string;
|
|
@@ -4936,6 +5482,104 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4936
5482
|
alignCenter: string;
|
|
4937
5483
|
alignRight: string;
|
|
4938
5484
|
cellBackground: string;
|
|
5485
|
+
cellBorder: string;
|
|
5486
|
+
borderStyle: string;
|
|
5487
|
+
borderWidth: string;
|
|
5488
|
+
borderColor: string;
|
|
5489
|
+
clearBorder: string;
|
|
5490
|
+
done: string;
|
|
5491
|
+
};
|
|
5492
|
+
callout: {
|
|
5493
|
+
selectEmoji: string;
|
|
5494
|
+
backgroundColor: string;
|
|
5495
|
+
};
|
|
5496
|
+
bookmark: {
|
|
5497
|
+
clickToOpenNewTab: string;
|
|
5498
|
+
clickToOpenLink: string;
|
|
5499
|
+
noDescription: string;
|
|
5500
|
+
failedToLoad: string;
|
|
5501
|
+
};
|
|
5502
|
+
fileCard: {
|
|
5503
|
+
unnamed: string;
|
|
5504
|
+
uploading: string;
|
|
5505
|
+
uploadFailed: string;
|
|
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;
|
|
4939
5583
|
};
|
|
4940
5584
|
};
|
|
4941
5585
|
} | {
|
|
@@ -5143,6 +5787,12 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5143
5787
|
dividerDesc: string;
|
|
5144
5788
|
table: string;
|
|
5145
5789
|
tableDesc: string;
|
|
5790
|
+
callout: string;
|
|
5791
|
+
calloutDesc: string;
|
|
5792
|
+
bookmark: string;
|
|
5793
|
+
bookmarkDesc: string;
|
|
5794
|
+
fileCard: string;
|
|
5795
|
+
fileCardDesc: string;
|
|
5146
5796
|
};
|
|
5147
5797
|
floatingMenu: {
|
|
5148
5798
|
addBlock: string;
|
|
@@ -5204,6 +5854,104 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5204
5854
|
alignCenter: string;
|
|
5205
5855
|
alignRight: string;
|
|
5206
5856
|
cellBackground: string;
|
|
5857
|
+
cellBorder: string;
|
|
5858
|
+
borderStyle: string;
|
|
5859
|
+
borderWidth: string;
|
|
5860
|
+
borderColor: string;
|
|
5861
|
+
clearBorder: string;
|
|
5862
|
+
done: string;
|
|
5863
|
+
};
|
|
5864
|
+
callout: {
|
|
5865
|
+
selectEmoji: string;
|
|
5866
|
+
backgroundColor: string;
|
|
5867
|
+
};
|
|
5868
|
+
bookmark: {
|
|
5869
|
+
clickToOpenNewTab: string;
|
|
5870
|
+
clickToOpenLink: string;
|
|
5871
|
+
noDescription: string;
|
|
5872
|
+
failedToLoad: string;
|
|
5873
|
+
};
|
|
5874
|
+
fileCard: {
|
|
5875
|
+
unnamed: string;
|
|
5876
|
+
uploading: string;
|
|
5877
|
+
uploadFailed: string;
|
|
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;
|
|
5207
5955
|
};
|
|
5208
5956
|
};
|
|
5209
5957
|
} | {
|
|
@@ -5411,6 +6159,12 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5411
6159
|
dividerDesc: string;
|
|
5412
6160
|
table: string;
|
|
5413
6161
|
tableDesc: string;
|
|
6162
|
+
callout: string;
|
|
6163
|
+
calloutDesc: string;
|
|
6164
|
+
bookmark: string;
|
|
6165
|
+
bookmarkDesc: string;
|
|
6166
|
+
fileCard: string;
|
|
6167
|
+
fileCardDesc: string;
|
|
5414
6168
|
};
|
|
5415
6169
|
floatingMenu: {
|
|
5416
6170
|
addBlock: string;
|
|
@@ -5472,6 +6226,104 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5472
6226
|
alignCenter: string;
|
|
5473
6227
|
alignRight: string;
|
|
5474
6228
|
cellBackground: string;
|
|
6229
|
+
cellBorder: string;
|
|
6230
|
+
borderStyle: string;
|
|
6231
|
+
borderWidth: string;
|
|
6232
|
+
borderColor: string;
|
|
6233
|
+
clearBorder: string;
|
|
6234
|
+
done: string;
|
|
6235
|
+
};
|
|
6236
|
+
callout: {
|
|
6237
|
+
selectEmoji: string;
|
|
6238
|
+
backgroundColor: string;
|
|
6239
|
+
};
|
|
6240
|
+
bookmark: {
|
|
6241
|
+
clickToOpenNewTab: string;
|
|
6242
|
+
clickToOpenLink: string;
|
|
6243
|
+
noDescription: string;
|
|
6244
|
+
failedToLoad: string;
|
|
6245
|
+
};
|
|
6246
|
+
fileCard: {
|
|
6247
|
+
unnamed: string;
|
|
6248
|
+
uploading: string;
|
|
6249
|
+
uploadFailed: string;
|
|
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;
|
|
5475
6327
|
};
|
|
5476
6328
|
};
|
|
5477
6329
|
};
|