@atlaskit/editor-common 116.40.1 → 116.41.0
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/CHANGELOG.md +26 -0
- package/dist/cjs/element-browser/components/ElementList/ElementList.js +1 -2
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/cjs/vanilla-tooltip/index.js +10 -0
- package/dist/es2019/element-browser/components/ElementList/ElementList.js +1 -2
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/es2019/vanilla-tooltip/index.js +10 -1
- package/dist/esm/element-browser/components/ElementList/ElementList.js +1 -2
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/esm/vanilla-tooltip/index.js +10 -0
- package/dist/types/analytics/types/ai-suggestions-events.d.ts +1 -7
- package/dist/types/block-menu/key.d.ts +5 -5
- package/dist/types/experiences/consts.d.ts +9 -9
- package/dist/types/extensions/combine-extension-providers.d.ts +2 -2
- package/dist/types/link/ConfigureLinkOverlay/useLinkOverlayAnalyticsEvents.d.ts +1 -1
- package/dist/types/media-single/getBadgeSize.d.ts +1 -1
- package/dist/types/paste/md-plugins/linkify-md-plugin.d.ts +1 -1
- package/dist/types/paste/md-plugins/newline-md-plugin.d.ts +1 -1
- package/dist/types/paste/md-plugins/paragraph-md-plugin.d.ts +1 -1
- package/dist/types/provider-helpers/combine-providers.d.ts +2 -2
- package/dist/types/quick-insert/assets/index.d.ts +1 -1
- package/dist/types/resizer/BreakoutResizer.d.ts +1 -1
- package/dist/types/resizer/ResizerBreakoutModeLabel.d.ts +1 -1
- package/dist/types/styles/shared/calcTableWidth.d.ts +1 -1
- package/dist/types/styles/shared/headings.d.ts +1 -1
- package/dist/types/sync-block/SyncedBlocksSSRErrorCodeMap.d.ts +3 -3
- package/dist/types/toolbar/keys.d.ts +337 -337
- package/dist/types/toolbar/shouldShowPrimaryToolbar.d.ts +1 -1
- package/dist/types/toolbar/shouldShowSelectionToolbar.d.ts +1 -1
- package/dist/types/types/supported-browsers.d.ts +1 -1
- package/dist/types/ui/FloatingToolbar/Separator.d.ts +1 -1
- package/dist/types/ui-color/ColorPalette/Palettes/mapPaletteColor.d.ts +1 -1
- package/dist/types/ui-menu/ArrowKeyNavigationProvider/ColorPaletteArrowKeyNavigationProvider/index.d.ts +1 -1
- package/dist/types/ui-menu/ArrowKeyNavigationProvider/MenuArrowKeyNavigationProvider/index.d.ts +1 -1
- package/dist/types/user-preferences/user-preferences.d.ts +1 -1
- package/dist/types/utils/ADFStages.d.ts +2 -2
- package/dist/types/utils/breakout.d.ts +1 -1
- package/dist/types/utils/getNextBreakoutMode.d.ts +1 -1
- package/dist/types/utils/isSubSupType.d.ts +1 -1
- package/dist/types/utils/track-unsupported-content.d.ts +1 -1
- package/dist/types/utils/unsupportedContent/get-unsupported-content-level-data.d.ts +1 -1
- package/dist/types/vanilla-tooltip/index.d.ts +7 -1
- package/package.json +6 -6
|
@@ -1,630 +1,630 @@
|
|
|
1
1
|
export declare const TOOLBARS: {
|
|
2
|
-
readonly INLINE_TEXT_TOOLBAR:
|
|
3
|
-
readonly PRIMARY_TOOLBAR:
|
|
2
|
+
readonly INLINE_TEXT_TOOLBAR: 'inline-text-toolbar';
|
|
3
|
+
readonly PRIMARY_TOOLBAR: 'primary-toolbar';
|
|
4
4
|
};
|
|
5
5
|
/**
|
|
6
6
|
* AI section
|
|
7
7
|
*/
|
|
8
8
|
export declare const AI_SECTION: {
|
|
9
|
-
readonly key:
|
|
10
|
-
readonly type:
|
|
9
|
+
readonly key: 'ai-section';
|
|
10
|
+
readonly type: 'section';
|
|
11
11
|
};
|
|
12
12
|
export declare const AI_VIEW_SECTION: {
|
|
13
|
-
readonly key:
|
|
14
|
-
readonly type:
|
|
13
|
+
readonly key: 'ai-view-section';
|
|
14
|
+
readonly type: 'section';
|
|
15
15
|
};
|
|
16
16
|
export declare const AI_SECTION_PRIMARY_TOOLBAR: {
|
|
17
|
-
readonly key:
|
|
18
|
-
readonly type:
|
|
17
|
+
readonly key: 'ai-section-primary-toolbar';
|
|
18
|
+
readonly type: 'section';
|
|
19
19
|
};
|
|
20
20
|
export declare const AI_SECTION_FULL_PAGE_PRIMARY_TOOLBAR: {
|
|
21
|
-
readonly key:
|
|
22
|
-
readonly type:
|
|
21
|
+
readonly key: 'ai-section-full-page-primary-toolbar';
|
|
22
|
+
readonly type: 'section';
|
|
23
23
|
};
|
|
24
24
|
export declare const AI_SECTION_COMMENT_PRIMARY_TOOLBAR: {
|
|
25
|
-
readonly key:
|
|
26
|
-
readonly type:
|
|
25
|
+
readonly key: 'ai-section-comment-primary-toolbar';
|
|
26
|
+
readonly type: 'section';
|
|
27
27
|
};
|
|
28
28
|
export declare const ROVO_GROUP: {
|
|
29
|
-
readonly key:
|
|
30
|
-
readonly type:
|
|
29
|
+
readonly key: 'rovo-group';
|
|
30
|
+
readonly type: 'group';
|
|
31
31
|
};
|
|
32
32
|
export declare const ROVO_GROUP_VIEW: {
|
|
33
|
-
readonly key:
|
|
34
|
-
readonly type:
|
|
33
|
+
readonly key: 'rovo-group-view';
|
|
34
|
+
readonly type: 'group';
|
|
35
35
|
};
|
|
36
36
|
export declare const ROVO_GROUP_PRIMARY_TOOLBAR: {
|
|
37
|
-
readonly key:
|
|
38
|
-
readonly type:
|
|
37
|
+
readonly key: 'rovo-group-primary-toolbar';
|
|
38
|
+
readonly type: 'group';
|
|
39
39
|
};
|
|
40
40
|
export declare const ROVO_GROUP_DISPLAY_SMALL: {
|
|
41
|
-
readonly key:
|
|
42
|
-
readonly type:
|
|
41
|
+
readonly key: 'rovo-group-display-small';
|
|
42
|
+
readonly type: 'group';
|
|
43
43
|
};
|
|
44
44
|
export declare const IMPROVE_WRITING_GROUP: {
|
|
45
|
-
readonly key:
|
|
46
|
-
readonly type:
|
|
45
|
+
readonly key: 'improve-writing-group';
|
|
46
|
+
readonly type: 'group';
|
|
47
47
|
};
|
|
48
48
|
export declare const IMPROVE_WRITING_BUTTON: {
|
|
49
|
-
readonly key:
|
|
50
|
-
readonly type:
|
|
49
|
+
readonly key: 'improve-writing-button';
|
|
50
|
+
readonly type: 'button';
|
|
51
51
|
};
|
|
52
52
|
export declare const HERO_PROMPT_BUTTON_GROUP: {
|
|
53
|
-
readonly key:
|
|
54
|
-
readonly type:
|
|
53
|
+
readonly key: 'hero-prompt-button-group';
|
|
54
|
+
readonly type: 'group';
|
|
55
55
|
};
|
|
56
56
|
export declare const HERO_PROMPT_BUTTON: {
|
|
57
|
-
readonly key:
|
|
58
|
-
readonly type:
|
|
57
|
+
readonly key: 'hero-prompt-button';
|
|
58
|
+
readonly type: 'button';
|
|
59
59
|
};
|
|
60
60
|
export declare const ROVO_HERO_BUTTON: {
|
|
61
|
-
readonly key:
|
|
62
|
-
readonly type:
|
|
61
|
+
readonly key: 'rovo-hero-button';
|
|
62
|
+
readonly type: 'button';
|
|
63
63
|
};
|
|
64
64
|
export declare const ROVO_WRITE_BUTTON_PRIMARY_TOOLBAR: {
|
|
65
|
-
readonly key:
|
|
66
|
-
readonly type:
|
|
65
|
+
readonly key: 'rovo-write-button-primary-toolbar';
|
|
66
|
+
readonly type: 'button';
|
|
67
67
|
};
|
|
68
68
|
export declare const ROVO_MENU: {
|
|
69
|
-
readonly key:
|
|
70
|
-
readonly type:
|
|
69
|
+
readonly key: 'rovo-menu';
|
|
70
|
+
readonly type: 'menu';
|
|
71
71
|
};
|
|
72
72
|
export declare const ROVO_MENU_DISPLAY_SMALL: {
|
|
73
|
-
readonly key:
|
|
74
|
-
readonly type:
|
|
73
|
+
readonly key: 'rovo-menu-display-small';
|
|
74
|
+
readonly type: 'menu';
|
|
75
75
|
};
|
|
76
76
|
export declare const ROVO_PROMPT_MENU_SECTION: {
|
|
77
|
-
readonly key:
|
|
78
|
-
readonly type:
|
|
77
|
+
readonly key: 'rovo-prompt-menu-section';
|
|
78
|
+
readonly type: 'menu-section';
|
|
79
79
|
};
|
|
80
80
|
export declare const ROVO_PROMPT_MENU_SECTION_DISPLAY_SMALL: {
|
|
81
|
-
readonly key:
|
|
82
|
-
readonly type:
|
|
81
|
+
readonly key: 'rovo-prompt-menu-section-display-small';
|
|
82
|
+
readonly type: 'menu-section';
|
|
83
83
|
};
|
|
84
84
|
export declare const IMPROVE_WRITING_MENU_ITEM: {
|
|
85
|
-
readonly key:
|
|
86
|
-
readonly type:
|
|
85
|
+
readonly key: 'improve-writing-menu-item';
|
|
86
|
+
readonly type: 'menu-item';
|
|
87
87
|
};
|
|
88
88
|
export declare const HERO_PROMPT_MENU_ITEM: {
|
|
89
|
-
readonly key:
|
|
90
|
-
readonly type:
|
|
89
|
+
readonly key: 'hero-prompt-menu-item';
|
|
90
|
+
readonly type: 'menu-item';
|
|
91
91
|
};
|
|
92
92
|
export declare const MAKE_SHORTER_MENU_ITEM: {
|
|
93
|
-
readonly key:
|
|
94
|
-
readonly type:
|
|
93
|
+
readonly key: 'make-shorter-menu-item';
|
|
94
|
+
readonly type: 'menu-item';
|
|
95
95
|
};
|
|
96
96
|
export declare const MAKE_LONGER_MENU_ITEM: {
|
|
97
|
-
readonly key:
|
|
98
|
-
readonly type:
|
|
97
|
+
readonly key: 'make-longer-menu-item';
|
|
98
|
+
readonly type: 'menu-item';
|
|
99
99
|
};
|
|
100
100
|
export declare const CHANGE_TONE_NESTED_MENU: {
|
|
101
|
-
readonly key:
|
|
102
|
-
readonly type:
|
|
101
|
+
readonly key: 'change-tone-nested-menu';
|
|
102
|
+
readonly type: 'nested-menu';
|
|
103
103
|
};
|
|
104
104
|
export declare const SPELLING_AND_GRAMMAR_MENU_ITEM: {
|
|
105
|
-
readonly key:
|
|
106
|
-
readonly type:
|
|
105
|
+
readonly key: 'spelling-and-grammar-menu-item';
|
|
106
|
+
readonly type: 'menu-item';
|
|
107
107
|
};
|
|
108
108
|
export declare const CHANGE_TONE_MENU_SECTION: {
|
|
109
|
-
readonly key:
|
|
110
|
-
readonly type:
|
|
109
|
+
readonly key: 'change-tone-default-menu-section';
|
|
110
|
+
readonly type: 'menu-section';
|
|
111
111
|
};
|
|
112
112
|
export declare const MORE_PROFESSIONAL_MENU_ITEM: {
|
|
113
|
-
readonly key:
|
|
114
|
-
readonly type:
|
|
113
|
+
readonly key: 'more-professional-menu-item';
|
|
114
|
+
readonly type: 'menu-item';
|
|
115
115
|
};
|
|
116
116
|
export declare const MORE_CASUAL_MENU_ITEM: {
|
|
117
|
-
readonly key:
|
|
118
|
-
readonly type:
|
|
117
|
+
readonly key: 'more-casual-menu-item';
|
|
118
|
+
readonly type: 'menu-item';
|
|
119
119
|
};
|
|
120
120
|
export declare const MORE_EMPATHETIC_MENU_ITEM: {
|
|
121
|
-
readonly key:
|
|
122
|
-
readonly type:
|
|
121
|
+
readonly key: 'more-empathetic-menu-item';
|
|
122
|
+
readonly type: 'menu-item';
|
|
123
123
|
};
|
|
124
124
|
export declare const TRANSLATE_NESTED_MENU: {
|
|
125
|
-
readonly key:
|
|
126
|
-
readonly type:
|
|
125
|
+
readonly key: 'translate-nested-menu';
|
|
126
|
+
readonly type: 'nested-menu';
|
|
127
127
|
};
|
|
128
128
|
export declare const TRANSLATE_MENU_SECTION: {
|
|
129
|
-
readonly key:
|
|
130
|
-
readonly type:
|
|
129
|
+
readonly key: 'translate-menu-section';
|
|
130
|
+
readonly type: 'menu-section';
|
|
131
131
|
};
|
|
132
132
|
export declare const DEFINE_MENU_ITEM: {
|
|
133
|
-
readonly key:
|
|
134
|
-
readonly type:
|
|
133
|
+
readonly key: 'define-menu-item';
|
|
134
|
+
readonly type: 'menu-item';
|
|
135
135
|
};
|
|
136
136
|
export declare const DEFINE_GROUP: {
|
|
137
|
-
readonly key:
|
|
138
|
-
readonly type:
|
|
137
|
+
readonly key: 'define-group';
|
|
138
|
+
readonly type: 'group';
|
|
139
139
|
};
|
|
140
140
|
export declare const DEFINE_BUTTON: {
|
|
141
|
-
readonly key:
|
|
142
|
-
readonly type:
|
|
141
|
+
readonly key: 'define-button';
|
|
142
|
+
readonly type: 'button';
|
|
143
143
|
};
|
|
144
144
|
export declare const ADD_POLISH_MENU_ITEM: {
|
|
145
|
-
readonly key:
|
|
146
|
-
readonly type:
|
|
145
|
+
readonly key: 'add-polish-menu-item';
|
|
146
|
+
readonly type: 'menu-item';
|
|
147
147
|
};
|
|
148
148
|
export declare const AI_SUGGESTIONS_GROUP: {
|
|
149
|
-
readonly key:
|
|
150
|
-
readonly type:
|
|
149
|
+
readonly key: 'ai-suggestions-group';
|
|
150
|
+
readonly type: 'group';
|
|
151
151
|
};
|
|
152
152
|
export declare const AI_SUGGESTIONS_BUTTON: {
|
|
153
|
-
readonly key:
|
|
154
|
-
readonly type:
|
|
153
|
+
readonly key: 'ai-suggestions-button';
|
|
154
|
+
readonly type: 'button';
|
|
155
155
|
};
|
|
156
156
|
/**
|
|
157
157
|
* Text section
|
|
158
158
|
*/
|
|
159
159
|
export declare const TEXT_SECTION: {
|
|
160
|
-
readonly key:
|
|
161
|
-
readonly type:
|
|
160
|
+
readonly key: 'text-section';
|
|
161
|
+
readonly type: 'section';
|
|
162
162
|
};
|
|
163
163
|
export declare const TEXT_SECTION_PRIMARY_TOOLBAR: {
|
|
164
|
-
readonly key:
|
|
165
|
-
readonly type:
|
|
164
|
+
readonly key: 'text-section-primary-toolbar';
|
|
165
|
+
readonly type: 'section';
|
|
166
166
|
};
|
|
167
167
|
export declare const TEXT_SECTION_COLLAPSED: {
|
|
168
|
-
readonly key:
|
|
169
|
-
readonly type:
|
|
168
|
+
readonly key: 'text-section-collapsed';
|
|
169
|
+
readonly type: 'section';
|
|
170
170
|
};
|
|
171
171
|
export declare const TEXT_COLLAPSED_GROUP: {
|
|
172
|
-
readonly key:
|
|
173
|
-
readonly type:
|
|
172
|
+
readonly key: 'text-collapsed-group';
|
|
173
|
+
readonly type: 'group';
|
|
174
174
|
};
|
|
175
175
|
export declare const TEXT_COLLAPSED_MENU: {
|
|
176
|
-
readonly key:
|
|
177
|
-
readonly type:
|
|
176
|
+
readonly key: 'text-collapsed-menu';
|
|
177
|
+
readonly type: 'menu';
|
|
178
178
|
};
|
|
179
179
|
/**
|
|
180
180
|
* Text styles group
|
|
181
181
|
*/
|
|
182
182
|
export declare const TEXT_STYLES_GROUP: {
|
|
183
|
-
readonly key:
|
|
184
|
-
readonly type:
|
|
183
|
+
readonly key: 'text-styles-group';
|
|
184
|
+
readonly type: 'group';
|
|
185
185
|
};
|
|
186
186
|
export declare const TEXT_STYLES_MENU: {
|
|
187
|
-
readonly key:
|
|
188
|
-
readonly type:
|
|
187
|
+
readonly key: 'text-styles-menu';
|
|
188
|
+
readonly type: 'menu';
|
|
189
189
|
};
|
|
190
190
|
export declare const TEXT_STYLES_MENU_SECTION: {
|
|
191
|
-
readonly key:
|
|
192
|
-
readonly type:
|
|
191
|
+
readonly key: 'text-styles-menu-section';
|
|
192
|
+
readonly type: 'menu-section';
|
|
193
193
|
};
|
|
194
194
|
export declare const NORMAL_TEXT_MENU_ITEM: {
|
|
195
|
-
readonly key:
|
|
196
|
-
readonly type:
|
|
195
|
+
readonly key: 'normal-text-menu-item';
|
|
196
|
+
readonly type: 'menu-item';
|
|
197
197
|
};
|
|
198
198
|
export declare const SMALL_TEXT_MENU_ITEM: {
|
|
199
|
-
readonly key:
|
|
200
|
-
readonly type:
|
|
199
|
+
readonly key: 'small-text-menu-item';
|
|
200
|
+
readonly type: 'menu-item';
|
|
201
201
|
};
|
|
202
202
|
export declare const HEADING_1_MENU_ITEM: {
|
|
203
|
-
readonly key:
|
|
204
|
-
readonly type:
|
|
203
|
+
readonly key: 'heading-1-menu-item';
|
|
204
|
+
readonly type: 'menu-item';
|
|
205
205
|
};
|
|
206
206
|
export declare const HEADING_2_MENU_ITEM: {
|
|
207
|
-
readonly key:
|
|
208
|
-
readonly type:
|
|
207
|
+
readonly key: 'heading-2-menu-item';
|
|
208
|
+
readonly type: 'menu-item';
|
|
209
209
|
};
|
|
210
210
|
export declare const HEADING_3_MENU_ITEM: {
|
|
211
|
-
readonly key:
|
|
212
|
-
readonly type:
|
|
211
|
+
readonly key: 'heading-3-menu-item';
|
|
212
|
+
readonly type: 'menu-item';
|
|
213
213
|
};
|
|
214
214
|
export declare const HEADING_4_MENU_ITEM: {
|
|
215
|
-
readonly key:
|
|
216
|
-
readonly type:
|
|
215
|
+
readonly key: 'heading-4-menu-item';
|
|
216
|
+
readonly type: 'menu-item';
|
|
217
217
|
};
|
|
218
218
|
export declare const HEADING_5_MENU_ITEM: {
|
|
219
|
-
readonly key:
|
|
220
|
-
readonly type:
|
|
219
|
+
readonly key: 'heading-5-menu-item';
|
|
220
|
+
readonly type: 'menu-item';
|
|
221
221
|
};
|
|
222
222
|
export declare const HEADING_6_MENU_ITEM: {
|
|
223
|
-
readonly key:
|
|
224
|
-
readonly type:
|
|
223
|
+
readonly key: 'heading-6-menu-item';
|
|
224
|
+
readonly type: 'menu-item';
|
|
225
225
|
};
|
|
226
226
|
export declare const BLOCK_QUOTE_MENU_ITEM: {
|
|
227
|
-
readonly key:
|
|
228
|
-
readonly type:
|
|
227
|
+
readonly key: 'block-quote-menu-item';
|
|
228
|
+
readonly type: 'menu-item';
|
|
229
229
|
};
|
|
230
230
|
/**
|
|
231
231
|
* Text formatting group
|
|
232
232
|
*/
|
|
233
233
|
export declare const TEXT_FORMATTING_GROUP: {
|
|
234
|
-
readonly key:
|
|
235
|
-
readonly type:
|
|
234
|
+
readonly key: 'text-formatting-group';
|
|
235
|
+
readonly type: 'group';
|
|
236
236
|
};
|
|
237
237
|
export declare const TEXT_FORMATTING_GROUP_COLLAPSED: {
|
|
238
|
-
readonly key:
|
|
239
|
-
readonly type:
|
|
238
|
+
readonly key: 'text-formatting-group-collapsed';
|
|
239
|
+
readonly type: 'group';
|
|
240
240
|
};
|
|
241
241
|
export declare const TEXT_FORMATTING_GROUP_INLINE: {
|
|
242
|
-
readonly key:
|
|
243
|
-
readonly type:
|
|
242
|
+
readonly key: 'text-formatting-group-inline';
|
|
243
|
+
readonly type: 'group';
|
|
244
244
|
};
|
|
245
245
|
export declare const BOLD_BUTTON_GROUP: {
|
|
246
|
-
readonly key:
|
|
247
|
-
readonly type:
|
|
246
|
+
readonly key: 'bold-button-group';
|
|
247
|
+
readonly type: 'group';
|
|
248
248
|
};
|
|
249
249
|
export declare const UNDERLINE_BUTTON_GROUP: {
|
|
250
|
-
readonly key:
|
|
251
|
-
readonly type:
|
|
250
|
+
readonly key: 'underline-button-group';
|
|
251
|
+
readonly type: 'group';
|
|
252
252
|
};
|
|
253
253
|
export declare const TEXT_FORMATTING_HERO_BUTTON: {
|
|
254
|
-
readonly key:
|
|
255
|
-
readonly type:
|
|
254
|
+
readonly key: 'text-formatting-hero-button';
|
|
255
|
+
readonly type: 'button';
|
|
256
256
|
};
|
|
257
257
|
export declare const TEXT_FORMATTING_HERO_BUTTON_COLLAPSED: {
|
|
258
|
-
readonly key:
|
|
259
|
-
readonly type:
|
|
258
|
+
readonly key: 'text-formatting-hero-button-collapsed';
|
|
259
|
+
readonly type: 'button';
|
|
260
260
|
};
|
|
261
261
|
export declare const BOLD_BUTTON: {
|
|
262
|
-
readonly key:
|
|
263
|
-
readonly type:
|
|
262
|
+
readonly key: 'bold-button';
|
|
263
|
+
readonly type: 'button';
|
|
264
264
|
};
|
|
265
265
|
export declare const UNDERLINE_BUTTON: {
|
|
266
|
-
readonly key:
|
|
267
|
-
readonly type:
|
|
266
|
+
readonly key: 'underline-button';
|
|
267
|
+
readonly type: 'button';
|
|
268
268
|
};
|
|
269
269
|
export declare const TEXT_FORMATTING_MENU: {
|
|
270
|
-
readonly key:
|
|
271
|
-
readonly type:
|
|
270
|
+
readonly key: 'text-formatting-menu';
|
|
271
|
+
readonly type: 'menu';
|
|
272
272
|
};
|
|
273
273
|
export declare const BOLD_MENU_ITEM: {
|
|
274
|
-
readonly key:
|
|
275
|
-
readonly type:
|
|
274
|
+
readonly key: 'bold-menu-item';
|
|
275
|
+
readonly type: 'menu-item';
|
|
276
276
|
};
|
|
277
277
|
export declare const ITALIC_MENU_ITEM: {
|
|
278
|
-
readonly key:
|
|
279
|
-
readonly type:
|
|
278
|
+
readonly key: 'italic-menu-item';
|
|
279
|
+
readonly type: 'menu-item';
|
|
280
280
|
};
|
|
281
281
|
export declare const UNDERLINE_MENU_ITEM: {
|
|
282
|
-
readonly key:
|
|
283
|
-
readonly type:
|
|
282
|
+
readonly key: 'underline-menu-item';
|
|
283
|
+
readonly type: 'menu-item';
|
|
284
284
|
};
|
|
285
285
|
export declare const STRIKE_MENU_ITEM: {
|
|
286
|
-
readonly key:
|
|
287
|
-
readonly type:
|
|
286
|
+
readonly key: 'strike-menu-item';
|
|
287
|
+
readonly type: 'menu-item';
|
|
288
288
|
};
|
|
289
289
|
export declare const CODE_MENU_ITEM: {
|
|
290
|
-
readonly key:
|
|
291
|
-
readonly type:
|
|
290
|
+
readonly key: 'code-menu-item';
|
|
291
|
+
readonly type: 'menu-item';
|
|
292
292
|
};
|
|
293
293
|
export declare const SUBSCRIPT_MENU_ITEM: {
|
|
294
|
-
readonly key:
|
|
295
|
-
readonly type:
|
|
294
|
+
readonly key: 'subscript-menu-item';
|
|
295
|
+
readonly type: 'menu-item';
|
|
296
296
|
};
|
|
297
297
|
export declare const SUPERSCRIPT_MENU_ITEM: {
|
|
298
|
-
readonly key:
|
|
299
|
-
readonly type:
|
|
298
|
+
readonly key: 'superscript-menu-item';
|
|
299
|
+
readonly type: 'menu-item';
|
|
300
300
|
};
|
|
301
301
|
export declare const TEXT_FORMATTING_MENU_SECTION: {
|
|
302
|
-
readonly key:
|
|
303
|
-
readonly type:
|
|
302
|
+
readonly key: 'text-formatting-menu-section';
|
|
303
|
+
readonly type: 'menu-section';
|
|
304
304
|
};
|
|
305
305
|
export declare const CLEAR_FORMARTTING_MENU_SECTION: {
|
|
306
|
-
readonly key:
|
|
307
|
-
readonly type:
|
|
306
|
+
readonly key: 'clear-formatting-menu-section';
|
|
307
|
+
readonly type: 'menu-section';
|
|
308
308
|
};
|
|
309
309
|
export declare const CLEAR_FORMATTING_MENU_ITEM: {
|
|
310
|
-
readonly key:
|
|
311
|
-
readonly type:
|
|
310
|
+
readonly key: 'clear-formatting-menu-item';
|
|
311
|
+
readonly type: 'menu-item';
|
|
312
312
|
};
|
|
313
313
|
/**
|
|
314
314
|
* Text color and Highlight color section
|
|
315
315
|
*/
|
|
316
316
|
export declare const TEXT_COLOR_HIGHLIGHT_GROUP: {
|
|
317
|
-
readonly key:
|
|
318
|
-
readonly type:
|
|
317
|
+
readonly key: 'text-color-highlight-group';
|
|
318
|
+
readonly type: 'group';
|
|
319
319
|
};
|
|
320
320
|
export declare const TEXT_COLOR_HIGHLIGHT_MENU: {
|
|
321
|
-
readonly key:
|
|
322
|
-
readonly type:
|
|
321
|
+
readonly key: 'text-color-highlight-menu';
|
|
322
|
+
readonly type: 'menu';
|
|
323
323
|
};
|
|
324
324
|
export declare const TEXT_COLOR_HIGHLIGHT_MENU_SECTION: {
|
|
325
|
-
readonly key:
|
|
326
|
-
readonly type:
|
|
325
|
+
readonly key: 'text-color-highlight-menu-section';
|
|
326
|
+
readonly type: 'menu-section';
|
|
327
327
|
};
|
|
328
328
|
export declare const TEXT_COLOR_MENU_ITEM: {
|
|
329
|
-
readonly key:
|
|
330
|
-
readonly type:
|
|
329
|
+
readonly key: 'text-color-menu-item';
|
|
330
|
+
readonly type: 'menu-item';
|
|
331
331
|
};
|
|
332
332
|
export declare const HIGHLIGHT_MENU_ITEM: {
|
|
333
|
-
readonly key:
|
|
334
|
-
readonly type:
|
|
333
|
+
readonly key: 'highlight-menu-item';
|
|
334
|
+
readonly type: 'menu-item';
|
|
335
335
|
};
|
|
336
336
|
export declare const CLEAR_COLOR_MENU_ITEM: {
|
|
337
|
-
readonly key:
|
|
338
|
-
readonly type:
|
|
337
|
+
readonly key: 'clear-color-menu-item';
|
|
338
|
+
readonly type: 'menu-item';
|
|
339
339
|
};
|
|
340
340
|
export declare const COLOR_ACCESSIBILITY_MENU_ITEM: {
|
|
341
|
-
readonly key:
|
|
342
|
-
readonly type:
|
|
341
|
+
readonly key: 'color-accessibility-menu-item';
|
|
342
|
+
readonly type: 'menu-item';
|
|
343
343
|
};
|
|
344
344
|
export declare const ALIGNMENT_GROUP: {
|
|
345
|
-
readonly key:
|
|
346
|
-
readonly type:
|
|
345
|
+
readonly key: 'alignment-group';
|
|
346
|
+
readonly type: 'group';
|
|
347
347
|
};
|
|
348
348
|
export declare const ALIGNMENT_MENU: {
|
|
349
|
-
readonly key:
|
|
350
|
-
readonly type:
|
|
349
|
+
readonly key: 'alignment-menu';
|
|
350
|
+
readonly type: 'menu';
|
|
351
351
|
};
|
|
352
352
|
export declare const ALIGNMENT_MENU_SECTION: {
|
|
353
|
-
readonly key:
|
|
354
|
-
readonly type:
|
|
353
|
+
readonly key: 'alignment-menu-section';
|
|
354
|
+
readonly type: 'menu-section';
|
|
355
355
|
};
|
|
356
356
|
export declare const ALIGN_LEFT_MENU_ITEM: {
|
|
357
|
-
readonly key:
|
|
358
|
-
readonly type:
|
|
357
|
+
readonly key: 'align-left-menu-item';
|
|
358
|
+
readonly type: 'menu-item';
|
|
359
359
|
};
|
|
360
360
|
export declare const ALIGN_CENTER_MENU_ITEM: {
|
|
361
|
-
readonly key:
|
|
362
|
-
readonly type:
|
|
361
|
+
readonly key: 'align-center-menu-item';
|
|
362
|
+
readonly type: 'menu-item';
|
|
363
363
|
};
|
|
364
364
|
export declare const ALIGN_RIGHT_MENU_ITEM: {
|
|
365
|
-
readonly key:
|
|
366
|
-
readonly type:
|
|
365
|
+
readonly key: 'align-right-menu-item';
|
|
366
|
+
readonly type: 'menu-item';
|
|
367
367
|
};
|
|
368
368
|
export declare const LISTS_INDENTATION_GROUP: {
|
|
369
|
-
readonly key:
|
|
370
|
-
readonly type:
|
|
369
|
+
readonly key: 'lists-indentation-group';
|
|
370
|
+
readonly type: 'group';
|
|
371
371
|
};
|
|
372
372
|
export declare const LISTS_INDENTATION_GROUP_COLLAPSED: {
|
|
373
|
-
readonly key:
|
|
374
|
-
readonly type:
|
|
373
|
+
readonly key: 'lists-indentation-group-collapsed';
|
|
374
|
+
readonly type: 'group';
|
|
375
375
|
};
|
|
376
376
|
export declare const LISTS_INDENTATION_GROUP_INLINE: {
|
|
377
|
-
readonly key:
|
|
378
|
-
readonly type:
|
|
377
|
+
readonly key: 'lists-indentation-group-inline';
|
|
378
|
+
readonly type: 'group';
|
|
379
379
|
};
|
|
380
380
|
export declare const BULLETED_LIST_BUTTON_GROUP: {
|
|
381
|
-
readonly key:
|
|
382
|
-
readonly type:
|
|
381
|
+
readonly key: 'bullet-list-button-group';
|
|
382
|
+
readonly type: 'group';
|
|
383
383
|
};
|
|
384
384
|
export declare const BULLETED_LIST_BUTTON: {
|
|
385
|
-
readonly key:
|
|
386
|
-
readonly type:
|
|
385
|
+
readonly key: 'bullet-list-button';
|
|
386
|
+
readonly type: 'button';
|
|
387
387
|
};
|
|
388
388
|
export declare const LISTS_INDENTATION_HERO_BUTTON_COLLAPSED: {
|
|
389
|
-
readonly key:
|
|
390
|
-
readonly type:
|
|
389
|
+
readonly key: 'lists-indentation-hero-button-collapsed';
|
|
390
|
+
readonly type: 'button';
|
|
391
391
|
};
|
|
392
392
|
export declare const LISTS_INDENTATION_HERO_BUTTON: {
|
|
393
|
-
readonly key:
|
|
394
|
-
readonly type:
|
|
393
|
+
readonly key: 'lists-indentation-hero-button';
|
|
394
|
+
readonly type: 'button';
|
|
395
395
|
};
|
|
396
396
|
export declare const LISTS_INDENTATION_MENU: {
|
|
397
|
-
readonly key:
|
|
398
|
-
readonly type:
|
|
397
|
+
readonly key: 'lists-indentation-menu';
|
|
398
|
+
readonly type: 'menu';
|
|
399
399
|
};
|
|
400
400
|
export declare const LISTS_INDENTATION_MENU_SECTION: {
|
|
401
|
-
readonly key:
|
|
402
|
-
readonly type:
|
|
401
|
+
readonly key: 'lists-indendation-menu-section';
|
|
402
|
+
readonly type: 'menu-section';
|
|
403
403
|
};
|
|
404
404
|
export declare const BULLETED_LIST_MENU_ITEM: {
|
|
405
|
-
readonly key:
|
|
406
|
-
readonly type:
|
|
405
|
+
readonly key: 'bullet-list-menu-item';
|
|
406
|
+
readonly type: 'menu-item';
|
|
407
407
|
};
|
|
408
408
|
export declare const NUMBERED_LIST_MENU_ITEM: {
|
|
409
|
-
readonly key:
|
|
410
|
-
readonly type:
|
|
409
|
+
readonly key: 'numbered-list-menu-item';
|
|
410
|
+
readonly type: 'menu-item';
|
|
411
411
|
};
|
|
412
412
|
export declare const TASK_LIST_MENU_ITEM: {
|
|
413
|
-
readonly key:
|
|
414
|
-
readonly type:
|
|
413
|
+
readonly key: 'task-list-menu-item';
|
|
414
|
+
readonly type: 'menu-item';
|
|
415
415
|
};
|
|
416
416
|
export declare const INDENT_MENU_ITEM: {
|
|
417
|
-
readonly key:
|
|
418
|
-
readonly type:
|
|
417
|
+
readonly key: 'indent-menu-item';
|
|
418
|
+
readonly type: 'menu-item';
|
|
419
419
|
};
|
|
420
420
|
export declare const OUTDENT_MENU_ITEM: {
|
|
421
|
-
readonly key:
|
|
422
|
-
readonly type:
|
|
421
|
+
readonly key: 'outdent-menu-item';
|
|
422
|
+
readonly type: 'menu-item';
|
|
423
423
|
};
|
|
424
424
|
export declare const INSERT_BLOCK_SECTION: {
|
|
425
|
-
readonly key:
|
|
426
|
-
readonly type:
|
|
425
|
+
readonly key: 'insert-block-section';
|
|
426
|
+
readonly type: 'section';
|
|
427
427
|
};
|
|
428
428
|
export declare const CODE_BLOCK_GROUP: {
|
|
429
|
-
readonly key:
|
|
430
|
-
readonly type:
|
|
429
|
+
readonly key: 'code-block-group';
|
|
430
|
+
readonly type: 'group';
|
|
431
431
|
};
|
|
432
432
|
export declare const CODE_BLOCK_BUTTON: {
|
|
433
|
-
readonly key:
|
|
434
|
-
readonly type:
|
|
433
|
+
readonly key: 'code-block-button';
|
|
434
|
+
readonly type: 'button';
|
|
435
435
|
};
|
|
436
436
|
export declare const TASK_LIST_GROUP: {
|
|
437
|
-
readonly key:
|
|
438
|
-
readonly type:
|
|
437
|
+
readonly key: 'task-list-group';
|
|
438
|
+
readonly type: 'group';
|
|
439
439
|
};
|
|
440
440
|
export declare const TASK_LIST_BUTTON: {
|
|
441
|
-
readonly key:
|
|
442
|
-
readonly type:
|
|
441
|
+
readonly key: 'task-list-button';
|
|
442
|
+
readonly type: 'button';
|
|
443
443
|
};
|
|
444
444
|
export declare const MEDIA_GROUP: {
|
|
445
|
-
readonly key:
|
|
446
|
-
readonly type:
|
|
445
|
+
readonly key: 'media-group';
|
|
446
|
+
readonly type: 'group';
|
|
447
447
|
};
|
|
448
448
|
export declare const MEDIA_BUTTON: {
|
|
449
|
-
readonly key:
|
|
450
|
-
readonly type:
|
|
449
|
+
readonly key: 'media-button';
|
|
450
|
+
readonly type: 'button';
|
|
451
451
|
};
|
|
452
452
|
export declare const MENTION_GROUP: {
|
|
453
|
-
readonly key:
|
|
454
|
-
readonly type:
|
|
453
|
+
readonly key: 'mention-group';
|
|
454
|
+
readonly type: 'group';
|
|
455
455
|
};
|
|
456
456
|
export declare const MENTION_BUTTON: {
|
|
457
|
-
readonly key:
|
|
458
|
-
readonly type:
|
|
457
|
+
readonly key: 'mention-button';
|
|
458
|
+
readonly type: 'button';
|
|
459
459
|
};
|
|
460
460
|
export declare const EMOJI_GROUP: {
|
|
461
|
-
readonly key:
|
|
462
|
-
readonly type:
|
|
461
|
+
readonly key: 'emoji-group';
|
|
462
|
+
readonly type: 'group';
|
|
463
463
|
};
|
|
464
464
|
export declare const EMOJI_BUTTON: {
|
|
465
|
-
readonly key:
|
|
466
|
-
readonly type:
|
|
465
|
+
readonly key: 'emoji-button';
|
|
466
|
+
readonly type: 'button';
|
|
467
467
|
};
|
|
468
468
|
export declare const LAYOUT_GROUP: {
|
|
469
|
-
readonly key:
|
|
470
|
-
readonly type:
|
|
469
|
+
readonly key: 'layout-group';
|
|
470
|
+
readonly type: 'group';
|
|
471
471
|
};
|
|
472
472
|
export declare const LAYOUT_BUTTON: {
|
|
473
|
-
readonly key:
|
|
474
|
-
readonly type:
|
|
473
|
+
readonly key: 'layout-button';
|
|
474
|
+
readonly type: 'button';
|
|
475
475
|
};
|
|
476
476
|
export declare const TABLE_GROUP: {
|
|
477
|
-
readonly key:
|
|
478
|
-
readonly type:
|
|
477
|
+
readonly key: 'table-group';
|
|
478
|
+
readonly type: 'group';
|
|
479
479
|
};
|
|
480
480
|
export declare const TABLE_BUTTON: {
|
|
481
|
-
readonly key:
|
|
482
|
-
readonly type:
|
|
481
|
+
readonly key: 'table-button';
|
|
482
|
+
readonly type: 'button';
|
|
483
483
|
};
|
|
484
484
|
export declare const TABLE_SIZE_PICKER: {
|
|
485
|
-
readonly key:
|
|
486
|
-
readonly type:
|
|
485
|
+
readonly key: 'table-size-picker';
|
|
486
|
+
readonly type: 'button';
|
|
487
487
|
};
|
|
488
488
|
export declare const INSERT_GROUP: {
|
|
489
|
-
readonly key:
|
|
490
|
-
readonly type:
|
|
489
|
+
readonly key: 'insert-group';
|
|
490
|
+
readonly type: 'group';
|
|
491
491
|
};
|
|
492
492
|
export declare const INSERT_BUTTON: {
|
|
493
|
-
readonly key:
|
|
494
|
-
readonly type:
|
|
493
|
+
readonly key: 'insert-button';
|
|
494
|
+
readonly type: 'button';
|
|
495
495
|
};
|
|
496
496
|
export declare const LINKING_SECTION: {
|
|
497
|
-
readonly key:
|
|
498
|
-
readonly type:
|
|
497
|
+
readonly key: 'linking-section';
|
|
498
|
+
readonly type: 'section';
|
|
499
499
|
};
|
|
500
500
|
export declare const LINKING_GROUP: {
|
|
501
|
-
readonly key:
|
|
502
|
-
readonly type:
|
|
501
|
+
readonly key: 'linking-group';
|
|
502
|
+
readonly type: 'group';
|
|
503
503
|
};
|
|
504
504
|
export declare const LINKING_BUTTON: {
|
|
505
|
-
readonly key:
|
|
506
|
-
readonly type:
|
|
505
|
+
readonly key: 'linking-button';
|
|
506
|
+
readonly type: 'button';
|
|
507
507
|
};
|
|
508
508
|
/**
|
|
509
509
|
* Synced Block group
|
|
510
510
|
*/
|
|
511
511
|
export declare const SYNCED_BLOCK_GROUP: {
|
|
512
|
-
readonly key:
|
|
513
|
-
readonly type:
|
|
512
|
+
readonly key: 'synced-block-group';
|
|
513
|
+
readonly type: 'group';
|
|
514
514
|
};
|
|
515
515
|
export declare const SYNCED_BLOCK_BUTTON: {
|
|
516
|
-
readonly key:
|
|
517
|
-
readonly type:
|
|
516
|
+
readonly key: 'synced-block-button';
|
|
517
|
+
readonly type: 'button';
|
|
518
518
|
};
|
|
519
519
|
export declare const SYNCED_BLOCK_SECTION: {
|
|
520
|
-
readonly key:
|
|
521
|
-
readonly type:
|
|
520
|
+
readonly key: 'synced-block-section';
|
|
521
|
+
readonly type: 'menu-section';
|
|
522
522
|
};
|
|
523
523
|
/**
|
|
524
524
|
* Collab section
|
|
525
525
|
*/
|
|
526
526
|
export declare const COLLAB_SECTION: {
|
|
527
|
-
readonly key:
|
|
528
|
-
readonly type:
|
|
527
|
+
readonly key: 'collab-section';
|
|
528
|
+
readonly type: 'section';
|
|
529
529
|
};
|
|
530
530
|
export declare const COMMENT_GROUP: {
|
|
531
|
-
readonly key:
|
|
532
|
-
readonly type:
|
|
531
|
+
readonly key: 'comment-group';
|
|
532
|
+
readonly type: 'group';
|
|
533
533
|
};
|
|
534
534
|
export declare const COMMENT_HERO_BUTTON: {
|
|
535
|
-
readonly key:
|
|
536
|
-
readonly type:
|
|
535
|
+
readonly key: 'comment-hero-button';
|
|
536
|
+
readonly type: 'button';
|
|
537
537
|
};
|
|
538
538
|
/**
|
|
539
539
|
* Apps section
|
|
540
540
|
*/
|
|
541
541
|
export declare const APPS_SECTION: {
|
|
542
|
-
readonly key:
|
|
543
|
-
readonly type:
|
|
542
|
+
readonly key: 'apps-section';
|
|
543
|
+
readonly type: 'section';
|
|
544
544
|
};
|
|
545
545
|
/**
|
|
546
546
|
* Track Changes Section
|
|
547
547
|
*/
|
|
548
548
|
export declare const TRACK_CHANGES_SECTION: {
|
|
549
|
-
readonly key:
|
|
550
|
-
readonly type:
|
|
549
|
+
readonly key: 'track-changes-section';
|
|
550
|
+
readonly type: 'section';
|
|
551
551
|
};
|
|
552
552
|
export declare const UNDO_CHANGES_GROUP: {
|
|
553
|
-
readonly key:
|
|
554
|
-
readonly type:
|
|
553
|
+
readonly key: 'undo-changes-group';
|
|
554
|
+
readonly type: 'group';
|
|
555
555
|
};
|
|
556
556
|
export declare const UNDO_BUTTON: {
|
|
557
|
-
readonly key:
|
|
558
|
-
readonly type:
|
|
557
|
+
readonly key: 'undo-button';
|
|
558
|
+
readonly type: 'button';
|
|
559
559
|
};
|
|
560
560
|
export declare const REDO_CHANGES_GROUP: {
|
|
561
|
-
readonly key:
|
|
562
|
-
readonly type:
|
|
561
|
+
readonly key: 'redo-changes-group';
|
|
562
|
+
readonly type: 'group';
|
|
563
563
|
};
|
|
564
564
|
export declare const REDO_BUTTON: {
|
|
565
|
-
readonly key:
|
|
566
|
-
readonly type:
|
|
565
|
+
readonly key: 'redo-button';
|
|
566
|
+
readonly type: 'button';
|
|
567
567
|
};
|
|
568
568
|
export declare const TRACK_CHANGES_GROUP: {
|
|
569
|
-
readonly key:
|
|
570
|
-
readonly type:
|
|
569
|
+
readonly key: 'track-changes-group';
|
|
570
|
+
readonly type: 'group';
|
|
571
571
|
};
|
|
572
572
|
export declare const TRACK_CHANGES_BUTTON: {
|
|
573
|
-
readonly key:
|
|
574
|
-
readonly type:
|
|
573
|
+
readonly key: 'track-changes-button';
|
|
574
|
+
readonly type: 'button';
|
|
575
575
|
};
|
|
576
576
|
/**
|
|
577
577
|
* Overflow section
|
|
578
578
|
*/
|
|
579
579
|
export declare const OVERFLOW_SECTION: {
|
|
580
|
-
readonly key:
|
|
581
|
-
readonly type:
|
|
580
|
+
readonly key: 'overflow-section';
|
|
581
|
+
readonly type: 'section';
|
|
582
582
|
};
|
|
583
583
|
export declare const OVERFLOW_GROUP: {
|
|
584
|
-
readonly key:
|
|
585
|
-
readonly type:
|
|
584
|
+
readonly key: 'overflow-group';
|
|
585
|
+
readonly type: 'group';
|
|
586
586
|
};
|
|
587
587
|
export declare const OVERFLOW_MENU: {
|
|
588
|
-
readonly key:
|
|
589
|
-
readonly type:
|
|
588
|
+
readonly key: 'overflow-menu';
|
|
589
|
+
readonly type: 'menu';
|
|
590
590
|
};
|
|
591
591
|
export declare const PIN_MENU_SECTION: {
|
|
592
|
-
readonly key:
|
|
593
|
-
readonly type:
|
|
592
|
+
readonly key: 'pin-menu-section';
|
|
593
|
+
readonly type: 'menu-section';
|
|
594
594
|
};
|
|
595
595
|
export declare const PIN_MENU_ITEM: {
|
|
596
|
-
readonly key:
|
|
597
|
-
readonly type:
|
|
596
|
+
readonly key: 'pin-menu-item';
|
|
597
|
+
readonly type: 'menu-item';
|
|
598
598
|
};
|
|
599
599
|
/**
|
|
600
600
|
* Overflow section in primary toolbar
|
|
601
601
|
*/
|
|
602
602
|
export declare const OVERFLOW_SECTION_PRIMARY_TOOLBAR: {
|
|
603
|
-
readonly key:
|
|
604
|
-
readonly type:
|
|
603
|
+
readonly key: 'overflow-section-primary-toolbar';
|
|
604
|
+
readonly type: 'section';
|
|
605
605
|
};
|
|
606
606
|
export declare const OVERFLOW_GROUP_PRIMARY_TOOLBAR: {
|
|
607
|
-
readonly key:
|
|
608
|
-
readonly type:
|
|
607
|
+
readonly key: 'overflow-group-primary-toolbar';
|
|
608
|
+
readonly type: 'group';
|
|
609
609
|
};
|
|
610
610
|
export declare const OVERFLOW_MENU_PRIMARY_TOOLBAR: {
|
|
611
|
-
readonly key:
|
|
612
|
-
readonly type:
|
|
611
|
+
readonly key: 'overflow-menu-primary-toolbar';
|
|
612
|
+
readonly type: 'menu';
|
|
613
613
|
};
|
|
614
614
|
/**
|
|
615
615
|
* Pin section
|
|
616
616
|
*/
|
|
617
617
|
export declare const PIN_SECTION: {
|
|
618
|
-
readonly key:
|
|
619
|
-
readonly type:
|
|
618
|
+
readonly key: 'pin-section';
|
|
619
|
+
readonly type: 'section';
|
|
620
620
|
};
|
|
621
621
|
export declare const PIN_GROUP: {
|
|
622
|
-
readonly key:
|
|
623
|
-
readonly type:
|
|
622
|
+
readonly key: 'pin-group';
|
|
623
|
+
readonly type: 'group';
|
|
624
624
|
};
|
|
625
625
|
export declare const PIN_BUTTON: {
|
|
626
|
-
readonly key:
|
|
627
|
-
readonly type:
|
|
626
|
+
readonly key: 'pin-button';
|
|
627
|
+
readonly type: 'button';
|
|
628
628
|
};
|
|
629
629
|
/**
|
|
630
630
|
* View-mode toggle section
|
|
@@ -639,28 +639,28 @@ export declare const PIN_BUTTON: {
|
|
|
639
639
|
* with shared internal state.
|
|
640
640
|
*/
|
|
641
641
|
export declare const VIEW_MODE_TOGGLE_SECTION: {
|
|
642
|
-
readonly key:
|
|
643
|
-
readonly type:
|
|
642
|
+
readonly key: 'view-mode-toggle-section';
|
|
643
|
+
readonly type: 'section';
|
|
644
644
|
};
|
|
645
645
|
/**
|
|
646
646
|
* Loom section
|
|
647
647
|
* - Only rendered in dropdown menu in primary toolbar
|
|
648
648
|
*/
|
|
649
649
|
export declare const LOOM_MENU_SECTION: {
|
|
650
|
-
readonly key:
|
|
651
|
-
readonly type:
|
|
650
|
+
readonly key: 'loom-menu-section';
|
|
651
|
+
readonly type: 'menu-section';
|
|
652
652
|
};
|
|
653
653
|
export declare const LOOM_MENU_ITEM: {
|
|
654
|
-
readonly key:
|
|
655
|
-
readonly type:
|
|
654
|
+
readonly key: 'loom-menu-item';
|
|
655
|
+
readonly type: 'menu-item';
|
|
656
656
|
};
|
|
657
657
|
/**
|
|
658
658
|
* @deprecated Replaced with OVERFLOW_EXTENSIONS_MENU_SECTION
|
|
659
659
|
* Selection extensions
|
|
660
660
|
*/
|
|
661
661
|
export declare const SELECTION_EXTENSION_MENU_SECTION: {
|
|
662
|
-
readonly key:
|
|
663
|
-
readonly type:
|
|
662
|
+
readonly key: 'selection-extension-menu-section';
|
|
663
|
+
readonly type: 'menu-section';
|
|
664
664
|
};
|
|
665
665
|
/**
|
|
666
666
|
* Overflow extensions menu section
|
|
@@ -668,67 +668,67 @@ export declare const SELECTION_EXTENSION_MENU_SECTION: {
|
|
|
668
668
|
* - Only rendered in selection toolbar, used to group both 1p and 3p extensions
|
|
669
669
|
*/
|
|
670
670
|
export declare const OVERFLOW_EXTENSIONS_MENU_SECTION: {
|
|
671
|
-
readonly key:
|
|
672
|
-
readonly type:
|
|
671
|
+
readonly key: 'overflow-extensions-menu-section';
|
|
672
|
+
readonly type: 'menu-section';
|
|
673
673
|
};
|
|
674
674
|
/**
|
|
675
675
|
* Extension menu items
|
|
676
676
|
*/
|
|
677
677
|
export declare const FIRST_PARTY_EXTENSIONS_MENU_ITEM: {
|
|
678
|
-
readonly key:
|
|
679
|
-
readonly type:
|
|
678
|
+
readonly key: 'first-party-extensions-menu-item';
|
|
679
|
+
readonly type: 'menu-item';
|
|
680
680
|
};
|
|
681
681
|
export declare const EXTERNAL_EXTENSIONS_MENU_ITEM: {
|
|
682
|
-
readonly key:
|
|
683
|
-
readonly type:
|
|
682
|
+
readonly key: 'external-extensions-menu-item';
|
|
683
|
+
readonly type: 'menu-item';
|
|
684
684
|
};
|
|
685
685
|
/**
|
|
686
686
|
* Paste options section
|
|
687
687
|
*/
|
|
688
688
|
export declare const PASTE_MENU: {
|
|
689
|
-
readonly key:
|
|
690
|
-
readonly type:
|
|
689
|
+
readonly key: 'paste-menu';
|
|
690
|
+
readonly type: 'menu';
|
|
691
691
|
};
|
|
692
692
|
export declare const PASTE_MENU_SECTION: {
|
|
693
|
-
readonly key:
|
|
694
|
-
readonly type:
|
|
693
|
+
readonly key: 'paste-menu-section';
|
|
694
|
+
readonly type: 'menu-section';
|
|
695
695
|
};
|
|
696
696
|
export declare const PASTE_NESTED_MENU: {
|
|
697
|
-
readonly key:
|
|
698
|
-
readonly type:
|
|
697
|
+
readonly key: 'paste-nested-menu';
|
|
698
|
+
readonly type: 'nested-menu';
|
|
699
699
|
};
|
|
700
700
|
export declare const PASTE_MENU_NESTED_SECTION: {
|
|
701
|
-
readonly key:
|
|
702
|
-
readonly type:
|
|
701
|
+
readonly key: 'paste-menu-nested-section';
|
|
702
|
+
readonly type: 'menu-section';
|
|
703
703
|
};
|
|
704
704
|
export declare const PASTE_RICH_TEXT_MENU_ITEM: {
|
|
705
|
-
readonly key:
|
|
706
|
-
readonly type:
|
|
705
|
+
readonly key: 'rich-text-menu-item';
|
|
706
|
+
readonly type: 'menu-item';
|
|
707
707
|
};
|
|
708
708
|
export declare const PASTE_MARKDOWN_MENU_ITEM: {
|
|
709
|
-
readonly key:
|
|
710
|
-
readonly type:
|
|
709
|
+
readonly key: 'markdown-menu-item';
|
|
710
|
+
readonly type: 'menu-item';
|
|
711
711
|
};
|
|
712
712
|
export declare const PASTE_PLAIN_TEXT_MENU_ITEM: {
|
|
713
|
-
readonly key:
|
|
714
|
-
readonly type:
|
|
713
|
+
readonly key: 'plain-text-menu-item';
|
|
714
|
+
readonly type: 'menu-item';
|
|
715
715
|
};
|
|
716
716
|
export declare const AI_PASTE_MENU_SECTION: {
|
|
717
|
-
readonly key:
|
|
718
|
-
readonly type:
|
|
717
|
+
readonly key: 'ai-paste-menu-section';
|
|
718
|
+
readonly type: 'menu-section';
|
|
719
719
|
};
|
|
720
720
|
export declare const SMART_LINK_DISPLAY_AS_PASTE_MENU_SECTION: {
|
|
721
|
-
readonly key:
|
|
722
|
-
readonly type:
|
|
721
|
+
readonly key: 'smart-link-display-as-paste-menu-section';
|
|
722
|
+
readonly type: 'menu-section';
|
|
723
723
|
};
|
|
724
724
|
export declare const TOOLBAR_BUTTON_TEST_ID: {
|
|
725
|
-
readonly INSERT:
|
|
726
|
-
readonly EMOJI:
|
|
727
|
-
readonly IMAGE:
|
|
728
|
-
readonly MEDIA:
|
|
729
|
-
readonly TABLE:
|
|
730
|
-
readonly TABLE_SELECTOR:
|
|
731
|
-
readonly MENTION:
|
|
732
|
-
readonly LAYOUT:
|
|
733
|
-
readonly TASK_LIST:
|
|
725
|
+
readonly INSERT: 'editor-toolbar-insert-button';
|
|
726
|
+
readonly EMOJI: 'editor-toolbar-emoji-button';
|
|
727
|
+
readonly IMAGE: 'editor-toolbar-image-button';
|
|
728
|
+
readonly MEDIA: 'editor-toolbar-media-button';
|
|
729
|
+
readonly TABLE: 'Table';
|
|
730
|
+
readonly TABLE_SELECTOR: 'editor-toolbar-table-selector-button';
|
|
731
|
+
readonly MENTION: 'editor-toolbar-mention-button';
|
|
732
|
+
readonly LAYOUT: 'editor-toolbar-layout-button';
|
|
733
|
+
readonly TASK_LIST: 'editor-toolbar-task-list-button';
|
|
734
734
|
};
|