@underverse-ui/underverse 2.0.29 → 2.0.31
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/{EmojiPicker-NV3GQYWI.js → EmojiPicker-ISJ6RXYG.js} +4 -4
- package/dist/{chunk-LK6YWBI6.js → chunk-2P7TSXEE.js} +82 -25
- package/dist/chunk-2P7TSXEE.js.map +1 -0
- package/dist/{chunk-5QWYO527.js → chunk-37MHVJMV.js} +846 -90
- package/dist/chunk-37MHVJMV.js.map +1 -0
- package/dist/{chunk-XTZTUDRE.js → chunk-57BKIC6J.js} +711 -800
- package/dist/chunk-57BKIC6J.js.map +1 -0
- package/dist/{chunk-LRIRY4DG.js → chunk-5W63IHIN.js} +11 -3
- package/dist/chunk-5W63IHIN.js.map +1 -0
- package/dist/{chunk-F7MX3XXK.js → chunk-S4UHFRL3.js} +3 -3
- package/dist/{chunk-A4GUPKHM.js → chunk-ZP7F4ZD7.js} +63 -43
- package/dist/chunk-ZP7F4ZD7.js.map +1 -0
- package/dist/index.cjs +2296 -1342
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +61 -2
- package/dist/index.d.ts +61 -2
- package/dist/index.js +94 -41
- package/dist/index.js.map +1 -1
- package/dist/{menu-bar-AHG64PEB.js → menu-bar-DPCNNUX5.js} +193 -47
- package/dist/menu-bar-DPCNNUX5.js.map +1 -0
- package/dist/ueditor.cjs +9407 -8506
- package/dist/ueditor.cjs.map +1 -1
- package/dist/ueditor.d.cts +10 -0
- package/dist/ueditor.d.ts +10 -0
- package/dist/ueditor.js +4 -4
- package/package.json +2 -1
- package/dist/chunk-5QWYO527.js.map +0 -1
- package/dist/chunk-A4GUPKHM.js.map +0 -1
- package/dist/chunk-LK6YWBI6.js.map +0 -1
- package/dist/chunk-LRIRY4DG.js.map +0 -1
- package/dist/chunk-XTZTUDRE.js.map +0 -1
- package/dist/menu-bar-AHG64PEB.js.map +0 -1
- /package/dist/{EmojiPicker-NV3GQYWI.js.map → EmojiPicker-ISJ6RXYG.js.map} +0 -0
- /package/dist/{chunk-F7MX3XXK.js.map → chunk-S4UHFRL3.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -592,6 +592,9 @@ interface ModalProps {
|
|
|
592
592
|
width?: string | number;
|
|
593
593
|
height?: string | number;
|
|
594
594
|
borderMode?: BorderMode;
|
|
595
|
+
/** Optional portal target, useful for iframe or isolated document realms. */
|
|
596
|
+
portalContainer?: HTMLElement | null;
|
|
597
|
+
ariaLabel?: string;
|
|
595
598
|
}
|
|
596
599
|
declare const Modal: React$1.FC<ModalProps>;
|
|
597
600
|
|
|
@@ -810,6 +813,10 @@ interface TabsProps {
|
|
|
810
813
|
tabs: Tab[];
|
|
811
814
|
defaultValue?: string;
|
|
812
815
|
className?: string;
|
|
816
|
+
tabClassName?: string;
|
|
817
|
+
activeTabClassName?: string;
|
|
818
|
+
inactiveTabClassName?: string;
|
|
819
|
+
indicatorClassName?: string;
|
|
813
820
|
contentClassName?: string;
|
|
814
821
|
variant?: "default" | "pills" | "underline" | "card" | "underline-card";
|
|
815
822
|
size?: "sm" | "md" | "lg";
|
|
@@ -1864,6 +1871,8 @@ interface ComboboxProps {
|
|
|
1864
1871
|
estimatedItemHeight?: number;
|
|
1865
1872
|
/** Number of extra rows rendered above and below the visible range. Default: 8 */
|
|
1866
1873
|
overscan?: number;
|
|
1874
|
+
/** Control whether the dropdown renders search UI and runs search logic. Defaults to automatic detection. */
|
|
1875
|
+
enableSearch?: boolean;
|
|
1867
1876
|
/** Use "manual" to let callers provide server-filtered options via onSearchChange. Default: "auto" */
|
|
1868
1877
|
searchMode?: "auto" | "manual";
|
|
1869
1878
|
/** Called whenever the search query changes. Required for manual/server search. */
|
|
@@ -1933,6 +1942,8 @@ interface MultiComboboxProps {
|
|
|
1933
1942
|
estimatedItemHeight?: number;
|
|
1934
1943
|
/** Number of extra rows rendered above and below the visible range. Default: 8 */
|
|
1935
1944
|
overscan?: number;
|
|
1945
|
+
/** Control whether the dropdown renders search UI and runs search logic. Defaults to automatic detection. */
|
|
1946
|
+
enableSearch?: boolean;
|
|
1936
1947
|
/** Use "manual" to let callers provide server-filtered options via onSearchChange. Default: "auto" */
|
|
1937
1948
|
searchMode?: "auto" | "manual";
|
|
1938
1949
|
/** Called whenever the search query changes. Required for manual/server search. */
|
|
@@ -2186,8 +2197,8 @@ interface CategoryTreeSelectBaseProps {
|
|
|
2186
2197
|
/** Called whenever expand/collapse changes the expanded branch ids. */
|
|
2187
2198
|
onExpandedChange?: (expandedIds: number[]) => void;
|
|
2188
2199
|
/**
|
|
2189
|
-
*
|
|
2190
|
-
*
|
|
2200
|
+
* Control whether search UI and search logic are enabled.
|
|
2201
|
+
* Defaults to automatic detection from category count and search-related props.
|
|
2191
2202
|
*/
|
|
2192
2203
|
enableSearch?: boolean;
|
|
2193
2204
|
/** Replace built-in labels for localization or custom wording. */
|
|
@@ -3763,6 +3774,9 @@ declare const underverseMessages: {
|
|
|
3763
3774
|
loading: string;
|
|
3764
3775
|
words: string;
|
|
3765
3776
|
characters: string;
|
|
3777
|
+
accessibility: {
|
|
3778
|
+
editorLabel: string;
|
|
3779
|
+
};
|
|
3766
3780
|
colors: {
|
|
3767
3781
|
default: string;
|
|
3768
3782
|
muted: string;
|
|
@@ -3887,6 +3901,7 @@ declare const underverseMessages: {
|
|
|
3887
3901
|
uploadTab: string;
|
|
3888
3902
|
urlLabel: string;
|
|
3889
3903
|
urlPlaceholder: string;
|
|
3904
|
+
invalid: string;
|
|
3890
3905
|
uploadLabel: string;
|
|
3891
3906
|
uploadPlaceholder: string;
|
|
3892
3907
|
uploading: string;
|
|
@@ -4015,6 +4030,7 @@ declare const underverseMessages: {
|
|
|
4015
4030
|
uploading: string;
|
|
4016
4031
|
uploadFailed: string;
|
|
4017
4032
|
retryUpload: string;
|
|
4033
|
+
download: string;
|
|
4018
4034
|
};
|
|
4019
4035
|
menubar: {
|
|
4020
4036
|
file: string;
|
|
@@ -4095,6 +4111,7 @@ declare const underverseMessages: {
|
|
|
4095
4111
|
exportDefault: string;
|
|
4096
4112
|
previewEmpty: string;
|
|
4097
4113
|
sourceCodeHint: string;
|
|
4114
|
+
invalidSource: string;
|
|
4098
4115
|
};
|
|
4099
4116
|
};
|
|
4100
4117
|
};
|
|
@@ -4216,6 +4233,9 @@ declare const underverseMessages: {
|
|
|
4216
4233
|
loading: string;
|
|
4217
4234
|
words: string;
|
|
4218
4235
|
characters: string;
|
|
4236
|
+
accessibility: {
|
|
4237
|
+
editorLabel: string;
|
|
4238
|
+
};
|
|
4219
4239
|
colors: {
|
|
4220
4240
|
default: string;
|
|
4221
4241
|
muted: string;
|
|
@@ -4340,6 +4360,7 @@ declare const underverseMessages: {
|
|
|
4340
4360
|
uploadTab: string;
|
|
4341
4361
|
urlLabel: string;
|
|
4342
4362
|
urlPlaceholder: string;
|
|
4363
|
+
invalid: string;
|
|
4343
4364
|
uploadLabel: string;
|
|
4344
4365
|
uploadPlaceholder: string;
|
|
4345
4366
|
uploading: string;
|
|
@@ -4468,6 +4489,7 @@ declare const underverseMessages: {
|
|
|
4468
4489
|
uploading: string;
|
|
4469
4490
|
uploadFailed: string;
|
|
4470
4491
|
retryUpload: string;
|
|
4492
|
+
download: string;
|
|
4471
4493
|
};
|
|
4472
4494
|
menubar: {
|
|
4473
4495
|
file: string;
|
|
@@ -4548,6 +4570,7 @@ declare const underverseMessages: {
|
|
|
4548
4570
|
exportDefault: string;
|
|
4549
4571
|
previewEmpty: string;
|
|
4550
4572
|
sourceCodeHint: string;
|
|
4573
|
+
invalidSource: string;
|
|
4551
4574
|
};
|
|
4552
4575
|
};
|
|
4553
4576
|
};
|
|
@@ -4669,6 +4692,9 @@ declare const underverseMessages: {
|
|
|
4669
4692
|
loading: string;
|
|
4670
4693
|
words: string;
|
|
4671
4694
|
characters: string;
|
|
4695
|
+
accessibility: {
|
|
4696
|
+
editorLabel: string;
|
|
4697
|
+
};
|
|
4672
4698
|
colors: {
|
|
4673
4699
|
default: string;
|
|
4674
4700
|
muted: string;
|
|
@@ -4793,6 +4819,7 @@ declare const underverseMessages: {
|
|
|
4793
4819
|
uploadTab: string;
|
|
4794
4820
|
urlLabel: string;
|
|
4795
4821
|
urlPlaceholder: string;
|
|
4822
|
+
invalid: string;
|
|
4796
4823
|
uploadLabel: string;
|
|
4797
4824
|
uploadPlaceholder: string;
|
|
4798
4825
|
uploading: string;
|
|
@@ -4921,6 +4948,7 @@ declare const underverseMessages: {
|
|
|
4921
4948
|
uploading: string;
|
|
4922
4949
|
uploadFailed: string;
|
|
4923
4950
|
retryUpload: string;
|
|
4951
|
+
download: string;
|
|
4924
4952
|
};
|
|
4925
4953
|
menubar: {
|
|
4926
4954
|
file: string;
|
|
@@ -5001,6 +5029,7 @@ declare const underverseMessages: {
|
|
|
5001
5029
|
exportDefault: string;
|
|
5002
5030
|
previewEmpty: string;
|
|
5003
5031
|
sourceCodeHint: string;
|
|
5032
|
+
invalidSource: string;
|
|
5004
5033
|
};
|
|
5005
5034
|
};
|
|
5006
5035
|
};
|
|
@@ -5122,6 +5151,9 @@ declare const underverseMessages: {
|
|
|
5122
5151
|
loading: string;
|
|
5123
5152
|
words: string;
|
|
5124
5153
|
characters: string;
|
|
5154
|
+
accessibility: {
|
|
5155
|
+
editorLabel: string;
|
|
5156
|
+
};
|
|
5125
5157
|
colors: {
|
|
5126
5158
|
default: string;
|
|
5127
5159
|
muted: string;
|
|
@@ -5246,6 +5278,7 @@ declare const underverseMessages: {
|
|
|
5246
5278
|
uploadTab: string;
|
|
5247
5279
|
urlLabel: string;
|
|
5248
5280
|
urlPlaceholder: string;
|
|
5281
|
+
invalid: string;
|
|
5249
5282
|
uploadLabel: string;
|
|
5250
5283
|
uploadPlaceholder: string;
|
|
5251
5284
|
uploading: string;
|
|
@@ -5374,6 +5407,7 @@ declare const underverseMessages: {
|
|
|
5374
5407
|
uploading: string;
|
|
5375
5408
|
uploadFailed: string;
|
|
5376
5409
|
retryUpload: string;
|
|
5410
|
+
download: string;
|
|
5377
5411
|
};
|
|
5378
5412
|
menubar: {
|
|
5379
5413
|
file: string;
|
|
@@ -5454,6 +5488,7 @@ declare const underverseMessages: {
|
|
|
5454
5488
|
exportDefault: string;
|
|
5455
5489
|
previewEmpty: string;
|
|
5456
5490
|
sourceCodeHint: string;
|
|
5491
|
+
invalidSource: string;
|
|
5457
5492
|
};
|
|
5458
5493
|
};
|
|
5459
5494
|
};
|
|
@@ -5578,6 +5613,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5578
5613
|
loading: string;
|
|
5579
5614
|
words: string;
|
|
5580
5615
|
characters: string;
|
|
5616
|
+
accessibility: {
|
|
5617
|
+
editorLabel: string;
|
|
5618
|
+
};
|
|
5581
5619
|
colors: {
|
|
5582
5620
|
default: string;
|
|
5583
5621
|
muted: string;
|
|
@@ -5702,6 +5740,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5702
5740
|
uploadTab: string;
|
|
5703
5741
|
urlLabel: string;
|
|
5704
5742
|
urlPlaceholder: string;
|
|
5743
|
+
invalid: string;
|
|
5705
5744
|
uploadLabel: string;
|
|
5706
5745
|
uploadPlaceholder: string;
|
|
5707
5746
|
uploading: string;
|
|
@@ -5830,6 +5869,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5830
5869
|
uploading: string;
|
|
5831
5870
|
uploadFailed: string;
|
|
5832
5871
|
retryUpload: string;
|
|
5872
|
+
download: string;
|
|
5833
5873
|
};
|
|
5834
5874
|
menubar: {
|
|
5835
5875
|
file: string;
|
|
@@ -5910,6 +5950,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5910
5950
|
exportDefault: string;
|
|
5911
5951
|
previewEmpty: string;
|
|
5912
5952
|
sourceCodeHint: string;
|
|
5953
|
+
invalidSource: string;
|
|
5913
5954
|
};
|
|
5914
5955
|
};
|
|
5915
5956
|
} | {
|
|
@@ -6030,6 +6071,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6030
6071
|
loading: string;
|
|
6031
6072
|
words: string;
|
|
6032
6073
|
characters: string;
|
|
6074
|
+
accessibility: {
|
|
6075
|
+
editorLabel: string;
|
|
6076
|
+
};
|
|
6033
6077
|
colors: {
|
|
6034
6078
|
default: string;
|
|
6035
6079
|
muted: string;
|
|
@@ -6154,6 +6198,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6154
6198
|
uploadTab: string;
|
|
6155
6199
|
urlLabel: string;
|
|
6156
6200
|
urlPlaceholder: string;
|
|
6201
|
+
invalid: string;
|
|
6157
6202
|
uploadLabel: string;
|
|
6158
6203
|
uploadPlaceholder: string;
|
|
6159
6204
|
uploading: string;
|
|
@@ -6282,6 +6327,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6282
6327
|
uploading: string;
|
|
6283
6328
|
uploadFailed: string;
|
|
6284
6329
|
retryUpload: string;
|
|
6330
|
+
download: string;
|
|
6285
6331
|
};
|
|
6286
6332
|
menubar: {
|
|
6287
6333
|
file: string;
|
|
@@ -6362,6 +6408,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6362
6408
|
exportDefault: string;
|
|
6363
6409
|
previewEmpty: string;
|
|
6364
6410
|
sourceCodeHint: string;
|
|
6411
|
+
invalidSource: string;
|
|
6365
6412
|
};
|
|
6366
6413
|
};
|
|
6367
6414
|
} | {
|
|
@@ -6482,6 +6529,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6482
6529
|
loading: string;
|
|
6483
6530
|
words: string;
|
|
6484
6531
|
characters: string;
|
|
6532
|
+
accessibility: {
|
|
6533
|
+
editorLabel: string;
|
|
6534
|
+
};
|
|
6485
6535
|
colors: {
|
|
6486
6536
|
default: string;
|
|
6487
6537
|
muted: string;
|
|
@@ -6606,6 +6656,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6606
6656
|
uploadTab: string;
|
|
6607
6657
|
urlLabel: string;
|
|
6608
6658
|
urlPlaceholder: string;
|
|
6659
|
+
invalid: string;
|
|
6609
6660
|
uploadLabel: string;
|
|
6610
6661
|
uploadPlaceholder: string;
|
|
6611
6662
|
uploading: string;
|
|
@@ -6734,6 +6785,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6734
6785
|
uploading: string;
|
|
6735
6786
|
uploadFailed: string;
|
|
6736
6787
|
retryUpload: string;
|
|
6788
|
+
download: string;
|
|
6737
6789
|
};
|
|
6738
6790
|
menubar: {
|
|
6739
6791
|
file: string;
|
|
@@ -6814,6 +6866,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6814
6866
|
exportDefault: string;
|
|
6815
6867
|
previewEmpty: string;
|
|
6816
6868
|
sourceCodeHint: string;
|
|
6869
|
+
invalidSource: string;
|
|
6817
6870
|
};
|
|
6818
6871
|
};
|
|
6819
6872
|
} | {
|
|
@@ -6934,6 +6987,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6934
6987
|
loading: string;
|
|
6935
6988
|
words: string;
|
|
6936
6989
|
characters: string;
|
|
6990
|
+
accessibility: {
|
|
6991
|
+
editorLabel: string;
|
|
6992
|
+
};
|
|
6937
6993
|
colors: {
|
|
6938
6994
|
default: string;
|
|
6939
6995
|
muted: string;
|
|
@@ -7058,6 +7114,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
7058
7114
|
uploadTab: string;
|
|
7059
7115
|
urlLabel: string;
|
|
7060
7116
|
urlPlaceholder: string;
|
|
7117
|
+
invalid: string;
|
|
7061
7118
|
uploadLabel: string;
|
|
7062
7119
|
uploadPlaceholder: string;
|
|
7063
7120
|
uploading: string;
|
|
@@ -7186,6 +7243,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
7186
7243
|
uploading: string;
|
|
7187
7244
|
uploadFailed: string;
|
|
7188
7245
|
retryUpload: string;
|
|
7246
|
+
download: string;
|
|
7189
7247
|
};
|
|
7190
7248
|
menubar: {
|
|
7191
7249
|
file: string;
|
|
@@ -7266,6 +7324,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
7266
7324
|
exportDefault: string;
|
|
7267
7325
|
previewEmpty: string;
|
|
7268
7326
|
sourceCodeHint: string;
|
|
7327
|
+
invalidSource: string;
|
|
7269
7328
|
};
|
|
7270
7329
|
};
|
|
7271
7330
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -592,6 +592,9 @@ interface ModalProps {
|
|
|
592
592
|
width?: string | number;
|
|
593
593
|
height?: string | number;
|
|
594
594
|
borderMode?: BorderMode;
|
|
595
|
+
/** Optional portal target, useful for iframe or isolated document realms. */
|
|
596
|
+
portalContainer?: HTMLElement | null;
|
|
597
|
+
ariaLabel?: string;
|
|
595
598
|
}
|
|
596
599
|
declare const Modal: React$1.FC<ModalProps>;
|
|
597
600
|
|
|
@@ -810,6 +813,10 @@ interface TabsProps {
|
|
|
810
813
|
tabs: Tab[];
|
|
811
814
|
defaultValue?: string;
|
|
812
815
|
className?: string;
|
|
816
|
+
tabClassName?: string;
|
|
817
|
+
activeTabClassName?: string;
|
|
818
|
+
inactiveTabClassName?: string;
|
|
819
|
+
indicatorClassName?: string;
|
|
813
820
|
contentClassName?: string;
|
|
814
821
|
variant?: "default" | "pills" | "underline" | "card" | "underline-card";
|
|
815
822
|
size?: "sm" | "md" | "lg";
|
|
@@ -1864,6 +1871,8 @@ interface ComboboxProps {
|
|
|
1864
1871
|
estimatedItemHeight?: number;
|
|
1865
1872
|
/** Number of extra rows rendered above and below the visible range. Default: 8 */
|
|
1866
1873
|
overscan?: number;
|
|
1874
|
+
/** Control whether the dropdown renders search UI and runs search logic. Defaults to automatic detection. */
|
|
1875
|
+
enableSearch?: boolean;
|
|
1867
1876
|
/** Use "manual" to let callers provide server-filtered options via onSearchChange. Default: "auto" */
|
|
1868
1877
|
searchMode?: "auto" | "manual";
|
|
1869
1878
|
/** Called whenever the search query changes. Required for manual/server search. */
|
|
@@ -1933,6 +1942,8 @@ interface MultiComboboxProps {
|
|
|
1933
1942
|
estimatedItemHeight?: number;
|
|
1934
1943
|
/** Number of extra rows rendered above and below the visible range. Default: 8 */
|
|
1935
1944
|
overscan?: number;
|
|
1945
|
+
/** Control whether the dropdown renders search UI and runs search logic. Defaults to automatic detection. */
|
|
1946
|
+
enableSearch?: boolean;
|
|
1936
1947
|
/** Use "manual" to let callers provide server-filtered options via onSearchChange. Default: "auto" */
|
|
1937
1948
|
searchMode?: "auto" | "manual";
|
|
1938
1949
|
/** Called whenever the search query changes. Required for manual/server search. */
|
|
@@ -2186,8 +2197,8 @@ interface CategoryTreeSelectBaseProps {
|
|
|
2186
2197
|
/** Called whenever expand/collapse changes the expanded branch ids. */
|
|
2187
2198
|
onExpandedChange?: (expandedIds: number[]) => void;
|
|
2188
2199
|
/**
|
|
2189
|
-
*
|
|
2190
|
-
*
|
|
2200
|
+
* Control whether search UI and search logic are enabled.
|
|
2201
|
+
* Defaults to automatic detection from category count and search-related props.
|
|
2191
2202
|
*/
|
|
2192
2203
|
enableSearch?: boolean;
|
|
2193
2204
|
/** Replace built-in labels for localization or custom wording. */
|
|
@@ -3763,6 +3774,9 @@ declare const underverseMessages: {
|
|
|
3763
3774
|
loading: string;
|
|
3764
3775
|
words: string;
|
|
3765
3776
|
characters: string;
|
|
3777
|
+
accessibility: {
|
|
3778
|
+
editorLabel: string;
|
|
3779
|
+
};
|
|
3766
3780
|
colors: {
|
|
3767
3781
|
default: string;
|
|
3768
3782
|
muted: string;
|
|
@@ -3887,6 +3901,7 @@ declare const underverseMessages: {
|
|
|
3887
3901
|
uploadTab: string;
|
|
3888
3902
|
urlLabel: string;
|
|
3889
3903
|
urlPlaceholder: string;
|
|
3904
|
+
invalid: string;
|
|
3890
3905
|
uploadLabel: string;
|
|
3891
3906
|
uploadPlaceholder: string;
|
|
3892
3907
|
uploading: string;
|
|
@@ -4015,6 +4030,7 @@ declare const underverseMessages: {
|
|
|
4015
4030
|
uploading: string;
|
|
4016
4031
|
uploadFailed: string;
|
|
4017
4032
|
retryUpload: string;
|
|
4033
|
+
download: string;
|
|
4018
4034
|
};
|
|
4019
4035
|
menubar: {
|
|
4020
4036
|
file: string;
|
|
@@ -4095,6 +4111,7 @@ declare const underverseMessages: {
|
|
|
4095
4111
|
exportDefault: string;
|
|
4096
4112
|
previewEmpty: string;
|
|
4097
4113
|
sourceCodeHint: string;
|
|
4114
|
+
invalidSource: string;
|
|
4098
4115
|
};
|
|
4099
4116
|
};
|
|
4100
4117
|
};
|
|
@@ -4216,6 +4233,9 @@ declare const underverseMessages: {
|
|
|
4216
4233
|
loading: string;
|
|
4217
4234
|
words: string;
|
|
4218
4235
|
characters: string;
|
|
4236
|
+
accessibility: {
|
|
4237
|
+
editorLabel: string;
|
|
4238
|
+
};
|
|
4219
4239
|
colors: {
|
|
4220
4240
|
default: string;
|
|
4221
4241
|
muted: string;
|
|
@@ -4340,6 +4360,7 @@ declare const underverseMessages: {
|
|
|
4340
4360
|
uploadTab: string;
|
|
4341
4361
|
urlLabel: string;
|
|
4342
4362
|
urlPlaceholder: string;
|
|
4363
|
+
invalid: string;
|
|
4343
4364
|
uploadLabel: string;
|
|
4344
4365
|
uploadPlaceholder: string;
|
|
4345
4366
|
uploading: string;
|
|
@@ -4468,6 +4489,7 @@ declare const underverseMessages: {
|
|
|
4468
4489
|
uploading: string;
|
|
4469
4490
|
uploadFailed: string;
|
|
4470
4491
|
retryUpload: string;
|
|
4492
|
+
download: string;
|
|
4471
4493
|
};
|
|
4472
4494
|
menubar: {
|
|
4473
4495
|
file: string;
|
|
@@ -4548,6 +4570,7 @@ declare const underverseMessages: {
|
|
|
4548
4570
|
exportDefault: string;
|
|
4549
4571
|
previewEmpty: string;
|
|
4550
4572
|
sourceCodeHint: string;
|
|
4573
|
+
invalidSource: string;
|
|
4551
4574
|
};
|
|
4552
4575
|
};
|
|
4553
4576
|
};
|
|
@@ -4669,6 +4692,9 @@ declare const underverseMessages: {
|
|
|
4669
4692
|
loading: string;
|
|
4670
4693
|
words: string;
|
|
4671
4694
|
characters: string;
|
|
4695
|
+
accessibility: {
|
|
4696
|
+
editorLabel: string;
|
|
4697
|
+
};
|
|
4672
4698
|
colors: {
|
|
4673
4699
|
default: string;
|
|
4674
4700
|
muted: string;
|
|
@@ -4793,6 +4819,7 @@ declare const underverseMessages: {
|
|
|
4793
4819
|
uploadTab: string;
|
|
4794
4820
|
urlLabel: string;
|
|
4795
4821
|
urlPlaceholder: string;
|
|
4822
|
+
invalid: string;
|
|
4796
4823
|
uploadLabel: string;
|
|
4797
4824
|
uploadPlaceholder: string;
|
|
4798
4825
|
uploading: string;
|
|
@@ -4921,6 +4948,7 @@ declare const underverseMessages: {
|
|
|
4921
4948
|
uploading: string;
|
|
4922
4949
|
uploadFailed: string;
|
|
4923
4950
|
retryUpload: string;
|
|
4951
|
+
download: string;
|
|
4924
4952
|
};
|
|
4925
4953
|
menubar: {
|
|
4926
4954
|
file: string;
|
|
@@ -5001,6 +5029,7 @@ declare const underverseMessages: {
|
|
|
5001
5029
|
exportDefault: string;
|
|
5002
5030
|
previewEmpty: string;
|
|
5003
5031
|
sourceCodeHint: string;
|
|
5032
|
+
invalidSource: string;
|
|
5004
5033
|
};
|
|
5005
5034
|
};
|
|
5006
5035
|
};
|
|
@@ -5122,6 +5151,9 @@ declare const underverseMessages: {
|
|
|
5122
5151
|
loading: string;
|
|
5123
5152
|
words: string;
|
|
5124
5153
|
characters: string;
|
|
5154
|
+
accessibility: {
|
|
5155
|
+
editorLabel: string;
|
|
5156
|
+
};
|
|
5125
5157
|
colors: {
|
|
5126
5158
|
default: string;
|
|
5127
5159
|
muted: string;
|
|
@@ -5246,6 +5278,7 @@ declare const underverseMessages: {
|
|
|
5246
5278
|
uploadTab: string;
|
|
5247
5279
|
urlLabel: string;
|
|
5248
5280
|
urlPlaceholder: string;
|
|
5281
|
+
invalid: string;
|
|
5249
5282
|
uploadLabel: string;
|
|
5250
5283
|
uploadPlaceholder: string;
|
|
5251
5284
|
uploading: string;
|
|
@@ -5374,6 +5407,7 @@ declare const underverseMessages: {
|
|
|
5374
5407
|
uploading: string;
|
|
5375
5408
|
uploadFailed: string;
|
|
5376
5409
|
retryUpload: string;
|
|
5410
|
+
download: string;
|
|
5377
5411
|
};
|
|
5378
5412
|
menubar: {
|
|
5379
5413
|
file: string;
|
|
@@ -5454,6 +5488,7 @@ declare const underverseMessages: {
|
|
|
5454
5488
|
exportDefault: string;
|
|
5455
5489
|
previewEmpty: string;
|
|
5456
5490
|
sourceCodeHint: string;
|
|
5491
|
+
invalidSource: string;
|
|
5457
5492
|
};
|
|
5458
5493
|
};
|
|
5459
5494
|
};
|
|
@@ -5578,6 +5613,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5578
5613
|
loading: string;
|
|
5579
5614
|
words: string;
|
|
5580
5615
|
characters: string;
|
|
5616
|
+
accessibility: {
|
|
5617
|
+
editorLabel: string;
|
|
5618
|
+
};
|
|
5581
5619
|
colors: {
|
|
5582
5620
|
default: string;
|
|
5583
5621
|
muted: string;
|
|
@@ -5702,6 +5740,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5702
5740
|
uploadTab: string;
|
|
5703
5741
|
urlLabel: string;
|
|
5704
5742
|
urlPlaceholder: string;
|
|
5743
|
+
invalid: string;
|
|
5705
5744
|
uploadLabel: string;
|
|
5706
5745
|
uploadPlaceholder: string;
|
|
5707
5746
|
uploading: string;
|
|
@@ -5830,6 +5869,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5830
5869
|
uploading: string;
|
|
5831
5870
|
uploadFailed: string;
|
|
5832
5871
|
retryUpload: string;
|
|
5872
|
+
download: string;
|
|
5833
5873
|
};
|
|
5834
5874
|
menubar: {
|
|
5835
5875
|
file: string;
|
|
@@ -5910,6 +5950,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5910
5950
|
exportDefault: string;
|
|
5911
5951
|
previewEmpty: string;
|
|
5912
5952
|
sourceCodeHint: string;
|
|
5953
|
+
invalidSource: string;
|
|
5913
5954
|
};
|
|
5914
5955
|
};
|
|
5915
5956
|
} | {
|
|
@@ -6030,6 +6071,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6030
6071
|
loading: string;
|
|
6031
6072
|
words: string;
|
|
6032
6073
|
characters: string;
|
|
6074
|
+
accessibility: {
|
|
6075
|
+
editorLabel: string;
|
|
6076
|
+
};
|
|
6033
6077
|
colors: {
|
|
6034
6078
|
default: string;
|
|
6035
6079
|
muted: string;
|
|
@@ -6154,6 +6198,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6154
6198
|
uploadTab: string;
|
|
6155
6199
|
urlLabel: string;
|
|
6156
6200
|
urlPlaceholder: string;
|
|
6201
|
+
invalid: string;
|
|
6157
6202
|
uploadLabel: string;
|
|
6158
6203
|
uploadPlaceholder: string;
|
|
6159
6204
|
uploading: string;
|
|
@@ -6282,6 +6327,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6282
6327
|
uploading: string;
|
|
6283
6328
|
uploadFailed: string;
|
|
6284
6329
|
retryUpload: string;
|
|
6330
|
+
download: string;
|
|
6285
6331
|
};
|
|
6286
6332
|
menubar: {
|
|
6287
6333
|
file: string;
|
|
@@ -6362,6 +6408,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6362
6408
|
exportDefault: string;
|
|
6363
6409
|
previewEmpty: string;
|
|
6364
6410
|
sourceCodeHint: string;
|
|
6411
|
+
invalidSource: string;
|
|
6365
6412
|
};
|
|
6366
6413
|
};
|
|
6367
6414
|
} | {
|
|
@@ -6482,6 +6529,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6482
6529
|
loading: string;
|
|
6483
6530
|
words: string;
|
|
6484
6531
|
characters: string;
|
|
6532
|
+
accessibility: {
|
|
6533
|
+
editorLabel: string;
|
|
6534
|
+
};
|
|
6485
6535
|
colors: {
|
|
6486
6536
|
default: string;
|
|
6487
6537
|
muted: string;
|
|
@@ -6606,6 +6656,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6606
6656
|
uploadTab: string;
|
|
6607
6657
|
urlLabel: string;
|
|
6608
6658
|
urlPlaceholder: string;
|
|
6659
|
+
invalid: string;
|
|
6609
6660
|
uploadLabel: string;
|
|
6610
6661
|
uploadPlaceholder: string;
|
|
6611
6662
|
uploading: string;
|
|
@@ -6734,6 +6785,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6734
6785
|
uploading: string;
|
|
6735
6786
|
uploadFailed: string;
|
|
6736
6787
|
retryUpload: string;
|
|
6788
|
+
download: string;
|
|
6737
6789
|
};
|
|
6738
6790
|
menubar: {
|
|
6739
6791
|
file: string;
|
|
@@ -6814,6 +6866,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6814
6866
|
exportDefault: string;
|
|
6815
6867
|
previewEmpty: string;
|
|
6816
6868
|
sourceCodeHint: string;
|
|
6869
|
+
invalidSource: string;
|
|
6817
6870
|
};
|
|
6818
6871
|
};
|
|
6819
6872
|
} | {
|
|
@@ -6934,6 +6987,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6934
6987
|
loading: string;
|
|
6935
6988
|
words: string;
|
|
6936
6989
|
characters: string;
|
|
6990
|
+
accessibility: {
|
|
6991
|
+
editorLabel: string;
|
|
6992
|
+
};
|
|
6937
6993
|
colors: {
|
|
6938
6994
|
default: string;
|
|
6939
6995
|
muted: string;
|
|
@@ -7058,6 +7114,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
7058
7114
|
uploadTab: string;
|
|
7059
7115
|
urlLabel: string;
|
|
7060
7116
|
urlPlaceholder: string;
|
|
7117
|
+
invalid: string;
|
|
7061
7118
|
uploadLabel: string;
|
|
7062
7119
|
uploadPlaceholder: string;
|
|
7063
7120
|
uploading: string;
|
|
@@ -7186,6 +7243,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
7186
7243
|
uploading: string;
|
|
7187
7244
|
uploadFailed: string;
|
|
7188
7245
|
retryUpload: string;
|
|
7246
|
+
download: string;
|
|
7189
7247
|
};
|
|
7190
7248
|
menubar: {
|
|
7191
7249
|
file: string;
|
|
@@ -7266,6 +7324,7 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
7266
7324
|
exportDefault: string;
|
|
7267
7325
|
previewEmpty: string;
|
|
7268
7326
|
sourceCodeHint: string;
|
|
7327
|
+
invalidSource: string;
|
|
7269
7328
|
};
|
|
7270
7329
|
};
|
|
7271
7330
|
};
|