tinacms 3.11.0 → 3.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/admin/components/AnnouncementsBanner.d.ts +13 -0
- package/dist/admin/components/GetDocument.d.ts +1 -1
- package/dist/admin/components/UnableToLoadModal.d.ts +4 -0
- package/dist/auth/AuthModal.d.ts +3 -1
- package/dist/auth/authenticate.d.ts +7 -9
- package/dist/auth/pkce.d.ts +3 -0
- package/dist/auth/useTinaAuthRedirect.d.ts +6 -4
- package/dist/client.js +25 -3
- package/dist/index.js +4208 -3611
- package/dist/internalClient/authProvider.d.ts +8 -6
- package/dist/internalClient/index.d.ts +9 -2
- package/dist/react.js +5 -10
- package/dist/rich-text/index.js +1 -1
- package/dist/rich-text/static.js +1 -1
- package/dist/toolkit/components/media/media-item.d.ts +1 -0
- package/dist/toolkit/components/media/modal.d.ts +6 -0
- package/dist/toolkit/components/media/utils.d.ts +22 -0
- package/dist/toolkit/components/resize-overlay.d.ts +10 -0
- package/dist/toolkit/components/tina-ui.d.ts +1 -1
- package/dist/toolkit/components/transition.d.ts +23 -0
- package/dist/toolkit/core/media-store.default.d.ts +23 -0
- package/dist/toolkit/core/media.d.ts +31 -4
- package/dist/toolkit/fields/plugins/blocks-field-plugin/block-selector-big.d.ts +2 -1
- package/dist/toolkit/fields/plugins/blocks-field-plugin/block-selector.d.ts +2 -1
- package/dist/toolkit/fields/plugins/blocks-field-plugin/index.d.ts +1 -1
- package/dist/toolkit/fields/plugins/field-props.d.ts +12 -1
- package/dist/toolkit/fields/plugins/group-list-field-plugin.d.ts +3 -2
- package/dist/toolkit/fields/plugins/mdx-field-plugin/{monaco/error-message.d.ts → error-message.d.ts} +0 -15
- package/dist/toolkit/fields/plugins/mdx-field-plugin/index.d.ts +5 -1
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/core/formatting.d.ts +1 -17
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/create-mdx-plugins/component.d.ts +1 -1
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/editor-plugins.d.ts +2 -519
- package/dist/toolkit/form-builder/branch-deleted-modal.d.ts +1 -1
- package/dist/toolkit/form-builder/create-branch-modal.d.ts +1 -1
- package/dist/toolkit/plugin-branch-switcher/branch-switcher-legacy.d.ts +1 -1
- package/dist/toolkit/plugin-branch-switcher/branch-switcher.d.ts +6 -2
- package/dist/toolkit/plugin-branch-switcher/plugin.d.ts +2 -2
- package/dist/toolkit/react-cloud-config/cloud-config-plugin.d.ts +2 -2
- package/dist/toolkit/react-sidebar/components/sidebar.d.ts +1 -0
- package/dist/unifiedClient/asyncLock.d.ts +35 -0
- package/dist/unifiedClient/index.d.ts +2 -1
- package/dist/utils/branch-name.d.ts +3 -0
- package/package.json +11 -18
- package/dist/auth/useGenerator.d.ts +0 -8
- package/dist/toolkit/fields/plugins/mdx-field-plugin/monaco/index.d.ts +0 -4
- package/dist/toolkit/fields/plugins/mdx-field-plugin/monaco/use-debounce.d.ts +0 -1
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/ui/autocomplete.d.ts +0 -14
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/ui/dropdown.d.ts +0 -9
- package/dist/toolkit/plugin-branch-switcher/format-branch-name.d.ts +0 -8
|
@@ -1,526 +1,9 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { AutoformatRule } from '@udecode/plate-autoformat';
|
|
3
|
-
import { ListStyleType } from '@udecode/plate-indent-list';
|
|
4
|
-
import { createLowlight } from 'lowlight';
|
|
5
1
|
import type { HeadingLevel } from '@tinacms/schema-tools';
|
|
6
2
|
export declare const HANDLES_MDX: ("h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p")[];
|
|
7
|
-
export declare const viewPlugins:
|
|
8
|
-
levels?: import("@udecode/plate-heading").HeadingLevel | import("@udecode/plate-heading").HeadingLevel[];
|
|
9
|
-
}, {}, {}, {}>>, import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"p", {}, {}, {}, {}>>, import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"code_block", {
|
|
10
|
-
defaultLanguage?: string | null;
|
|
11
|
-
lowlight?: ReturnType<typeof createLowlight> | null;
|
|
12
|
-
}, {}, {}, {}>>, import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"blockquote", {}, {}, {}, {}>>];
|
|
3
|
+
export declare const viewPlugins: any[];
|
|
13
4
|
export interface CreateEditorPluginsOptions {
|
|
14
5
|
/** Heading levels exposed via markdown autoformat shortcuts (`# `, `## `, …).
|
|
15
6
|
* Omit to allow all levels 1-6. */
|
|
16
7
|
headingLevels?: readonly HeadingLevel[];
|
|
17
8
|
}
|
|
18
|
-
export declare const createEditorPlugins: ({ headingLevels, }?: CreateEditorPluginsOptions) =>
|
|
19
|
-
defaultLanguage?: string | null;
|
|
20
|
-
lowlight?: ReturnType<typeof createLowlight> | null;
|
|
21
|
-
}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"table", {
|
|
22
|
-
_cellIndices: Record<string, {
|
|
23
|
-
col: number;
|
|
24
|
-
row: number;
|
|
25
|
-
}>;
|
|
26
|
-
selectedCells: import("@udecode/plate").TElement[] | null;
|
|
27
|
-
selectedTables: import("@udecode/plate").TElement[] | null;
|
|
28
|
-
disableExpandOnInsert?: boolean;
|
|
29
|
-
disableMarginLeft?: boolean;
|
|
30
|
-
disableMerge?: boolean;
|
|
31
|
-
enableUnsetSingleColSize?: boolean;
|
|
32
|
-
initialTableWidth?: number;
|
|
33
|
-
minColumnWidth?: number;
|
|
34
|
-
}, {
|
|
35
|
-
create: {
|
|
36
|
-
table: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, { colCount, header, rowCount, ...cellOptions }?: import("@udecode/plate-table").GetEmptyTableNodeOptions) => import("@udecode/plate-table").TTableElement>;
|
|
37
|
-
tableCell: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, { children, header, row }?: import("@udecode/plate-table").CreateCellOptions) => {
|
|
38
|
-
children: import("@udecode/plate").Descendant[];
|
|
39
|
-
type: string;
|
|
40
|
-
}>;
|
|
41
|
-
tableRow: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, { colCount, ...cellOptions }?: import("@udecode/plate-table").GetEmptyRowNodeOptions) => {
|
|
42
|
-
children: {
|
|
43
|
-
children: import("@udecode/plate").Descendant[];
|
|
44
|
-
type: string;
|
|
45
|
-
}[];
|
|
46
|
-
type: string;
|
|
47
|
-
}>;
|
|
48
|
-
};
|
|
49
|
-
table: {
|
|
50
|
-
getCellBorders: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, { cellIndices, defaultBorder, element, }: {
|
|
51
|
-
element: import("@udecode/plate-table").TTableCellElement;
|
|
52
|
-
cellIndices?: import("@udecode/plate-table").CellIndices;
|
|
53
|
-
defaultBorder?: import("@udecode/plate-table").BorderStyle;
|
|
54
|
-
}) => import("@udecode/plate-table").BorderStylesDefault>;
|
|
55
|
-
getCellSize: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, { cellIndices, colSizes, element, rowSize, }: {
|
|
56
|
-
element: import("@udecode/plate-table").TTableCellElement;
|
|
57
|
-
cellIndices?: import("@udecode/plate-table").CellIndices;
|
|
58
|
-
colSizes?: number[];
|
|
59
|
-
rowSize?: number;
|
|
60
|
-
}) => {
|
|
61
|
-
minHeight: number | undefined;
|
|
62
|
-
width: number;
|
|
63
|
-
}>;
|
|
64
|
-
getColSpan: (cellElem: import("@udecode/plate-table").TTableCellElement) => number;
|
|
65
|
-
getRowSpan: (cellElem: import("@udecode/plate-table").TTableCellElement) => number;
|
|
66
|
-
getCellChildren: (cell: import("@udecode/plate-table").TTableCellElement) => import("@udecode/plate").Descendant[];
|
|
67
|
-
};
|
|
68
|
-
} & {
|
|
69
|
-
create: {
|
|
70
|
-
table: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, { colCount, header, rowCount, ...cellOptions }?: import("@udecode/plate-table").GetEmptyTableNodeOptions) => import("@udecode/plate-table").TTableElement>;
|
|
71
|
-
tableCell: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, { children, header, row }?: import("@udecode/plate-table").CreateCellOptions) => {
|
|
72
|
-
children: import("@udecode/plate").Descendant[];
|
|
73
|
-
type: string;
|
|
74
|
-
}>;
|
|
75
|
-
tableRow: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, { colCount, ...cellOptions }?: import("@udecode/plate-table").GetEmptyRowNodeOptions) => {
|
|
76
|
-
children: {
|
|
77
|
-
children: import("@udecode/plate").Descendant[];
|
|
78
|
-
type: string;
|
|
79
|
-
}[];
|
|
80
|
-
type: string;
|
|
81
|
-
}>;
|
|
82
|
-
};
|
|
83
|
-
table: {
|
|
84
|
-
getCellBorders: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, { cellIndices, defaultBorder, element, }: {
|
|
85
|
-
element: import("@udecode/plate-table").TTableCellElement;
|
|
86
|
-
cellIndices?: import("@udecode/plate-table").CellIndices;
|
|
87
|
-
defaultBorder?: import("@udecode/plate-table").BorderStyle;
|
|
88
|
-
}) => import("@udecode/plate-table").BorderStylesDefault>;
|
|
89
|
-
getCellSize: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, { cellIndices, colSizes, element, rowSize, }: {
|
|
90
|
-
element: import("@udecode/plate-table").TTableCellElement;
|
|
91
|
-
cellIndices?: import("@udecode/plate-table").CellIndices;
|
|
92
|
-
colSizes?: number[];
|
|
93
|
-
rowSize?: number;
|
|
94
|
-
}) => {
|
|
95
|
-
minHeight: number | undefined;
|
|
96
|
-
width: number;
|
|
97
|
-
}>;
|
|
98
|
-
getColSpan: (cellElem: import("@udecode/plate-table").TTableCellElement) => number;
|
|
99
|
-
getRowSpan: (cellElem: import("@udecode/plate-table").TTableCellElement) => number;
|
|
100
|
-
getCellChildren: (cell: import("@udecode/plate-table").TTableCellElement) => import("@udecode/plate").Descendant[];
|
|
101
|
-
};
|
|
102
|
-
}, {
|
|
103
|
-
insert: {
|
|
104
|
-
table: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, { colCount, header, rowCount }?: import("@udecode/plate-table").GetEmptyTableNodeOptions, { select: shouldSelect, ...options }?: import("@udecode/plate").InsertNodesOptions) => void>;
|
|
105
|
-
tableColumn: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, options?: {
|
|
106
|
-
at?: import("@udecode/plate").Path;
|
|
107
|
-
before?: boolean;
|
|
108
|
-
fromCell?: import("@udecode/plate").Path;
|
|
109
|
-
header?: boolean;
|
|
110
|
-
select?: boolean;
|
|
111
|
-
}) => void>;
|
|
112
|
-
tableRow: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, options?: {
|
|
113
|
-
at?: import("@udecode/plate").Path;
|
|
114
|
-
before?: boolean;
|
|
115
|
-
fromRow?: import("@udecode/plate").Path;
|
|
116
|
-
header?: boolean;
|
|
117
|
-
select?: boolean;
|
|
118
|
-
}) => void>;
|
|
119
|
-
};
|
|
120
|
-
remove: {
|
|
121
|
-
table: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor) => void>;
|
|
122
|
-
tableColumn: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor) => void>;
|
|
123
|
-
tableRow: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor) => void>;
|
|
124
|
-
};
|
|
125
|
-
table: {
|
|
126
|
-
merge: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor) => void>;
|
|
127
|
-
split: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor) => void>;
|
|
128
|
-
};
|
|
129
|
-
} & {
|
|
130
|
-
insert: {
|
|
131
|
-
table: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, { colCount, header, rowCount }?: import("@udecode/plate-table").GetEmptyTableNodeOptions, { select: shouldSelect, ...options }?: import("@udecode/plate").InsertNodesOptions) => void>;
|
|
132
|
-
tableColumn: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, options?: {
|
|
133
|
-
at?: import("@udecode/plate").Path;
|
|
134
|
-
before?: boolean;
|
|
135
|
-
fromCell?: import("@udecode/plate").Path;
|
|
136
|
-
header?: boolean;
|
|
137
|
-
select?: boolean;
|
|
138
|
-
}) => void>;
|
|
139
|
-
tableRow: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, options?: {
|
|
140
|
-
at?: import("@udecode/plate").Path;
|
|
141
|
-
before?: boolean;
|
|
142
|
-
fromRow?: import("@udecode/plate").Path;
|
|
143
|
-
header?: boolean;
|
|
144
|
-
select?: boolean;
|
|
145
|
-
}) => void>;
|
|
146
|
-
};
|
|
147
|
-
remove: {
|
|
148
|
-
table: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor) => void>;
|
|
149
|
-
tableColumn: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor) => void>;
|
|
150
|
-
tableRow: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor) => void>;
|
|
151
|
-
};
|
|
152
|
-
table: {
|
|
153
|
-
merge: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor) => void>;
|
|
154
|
-
split: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor) => void>;
|
|
155
|
-
};
|
|
156
|
-
}, {
|
|
157
|
-
cellIndices?: (id: string) => import("@udecode/plate-table").CellIndices;
|
|
158
|
-
}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"p", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"blockquote", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"a", {
|
|
159
|
-
allowedSchemes?: string[];
|
|
160
|
-
dangerouslySkipSanitization?: boolean;
|
|
161
|
-
defaultLinkAttributes?: React.AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
162
|
-
forceSubmit?: boolean;
|
|
163
|
-
keepSelectedTextOnPaste?: boolean;
|
|
164
|
-
rangeBeforeOptions?: import("@udecode/plate").EditorBeforeOptions;
|
|
165
|
-
triggerFloatingLinkHotkeys?: string[] | string;
|
|
166
|
-
getLinkUrl?: (prevUrl: string | null) => Promise<string | null>;
|
|
167
|
-
getUrlHref?: (url: string) => string | undefined;
|
|
168
|
-
isUrl?: (text: string) => boolean;
|
|
169
|
-
transformInput?: (url: string) => string | undefined;
|
|
170
|
-
} & {
|
|
171
|
-
isEditing: boolean;
|
|
172
|
-
mode: import("@udecode/plate-link/react").FloatingLinkMode;
|
|
173
|
-
mouseDown: boolean;
|
|
174
|
-
newTab: boolean;
|
|
175
|
-
openEditorId: string | null;
|
|
176
|
-
text: string;
|
|
177
|
-
updated: boolean;
|
|
178
|
-
url: string;
|
|
179
|
-
triggerFloatingLinkHotkeys?: string;
|
|
180
|
-
}, {
|
|
181
|
-
floatingLink: {
|
|
182
|
-
hide: () => void;
|
|
183
|
-
reset: () => void;
|
|
184
|
-
show: (mode: import("@udecode/plate-link/react").FloatingLinkMode, editorId: string) => void;
|
|
185
|
-
};
|
|
186
|
-
link: {
|
|
187
|
-
getAttributes: import("@udecode/plate").OmitFirst<(editor: import("@udecode/plate").SlateEditor, link: import("@udecode/plate-link").TLinkElement) => {
|
|
188
|
-
download?: any;
|
|
189
|
-
href?: string | undefined;
|
|
190
|
-
hrefLang?: string | undefined;
|
|
191
|
-
media?: string | undefined;
|
|
192
|
-
ping?: string | undefined;
|
|
193
|
-
target?: React.HTMLAttributeAnchorTarget | undefined;
|
|
194
|
-
type?: string | undefined;
|
|
195
|
-
referrerPolicy?: React.HTMLAttributeReferrerPolicy | undefined;
|
|
196
|
-
defaultChecked?: boolean | undefined;
|
|
197
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
198
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
199
|
-
suppressHydrationWarning?: boolean | undefined;
|
|
200
|
-
accessKey?: string | undefined;
|
|
201
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
202
|
-
autoFocus?: boolean | undefined;
|
|
203
|
-
className?: string | undefined;
|
|
204
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
205
|
-
contextMenu?: string | undefined;
|
|
206
|
-
dir?: string | undefined;
|
|
207
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
208
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
209
|
-
hidden?: boolean | undefined;
|
|
210
|
-
id?: string | undefined;
|
|
211
|
-
lang?: string | undefined;
|
|
212
|
-
nonce?: string | undefined;
|
|
213
|
-
slot?: string | undefined;
|
|
214
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
215
|
-
style?: React.CSSProperties | undefined;
|
|
216
|
-
tabIndex?: number | undefined;
|
|
217
|
-
title?: string | undefined;
|
|
218
|
-
translate?: "yes" | "no" | undefined;
|
|
219
|
-
radioGroup?: string | undefined;
|
|
220
|
-
role?: React.AriaRole | undefined;
|
|
221
|
-
about?: string | undefined;
|
|
222
|
-
content?: string | undefined;
|
|
223
|
-
datatype?: string | undefined;
|
|
224
|
-
inlist?: any;
|
|
225
|
-
prefix?: string | undefined;
|
|
226
|
-
property?: string | undefined;
|
|
227
|
-
rel?: string | undefined;
|
|
228
|
-
resource?: string | undefined;
|
|
229
|
-
rev?: string | undefined;
|
|
230
|
-
typeof?: string | undefined;
|
|
231
|
-
vocab?: string | undefined;
|
|
232
|
-
autoCorrect?: string | undefined;
|
|
233
|
-
autoSave?: string | undefined;
|
|
234
|
-
color?: string | undefined;
|
|
235
|
-
itemProp?: string | undefined;
|
|
236
|
-
itemScope?: boolean | undefined;
|
|
237
|
-
itemType?: string | undefined;
|
|
238
|
-
itemID?: string | undefined;
|
|
239
|
-
itemRef?: string | undefined;
|
|
240
|
-
results?: number | undefined;
|
|
241
|
-
security?: string | undefined;
|
|
242
|
-
unselectable?: "on" | "off" | undefined;
|
|
243
|
-
popover?: "" | "auto" | "manual" | undefined;
|
|
244
|
-
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
245
|
-
popoverTarget?: string | undefined;
|
|
246
|
-
inert?: boolean | undefined;
|
|
247
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
248
|
-
is?: string | undefined;
|
|
249
|
-
exportparts?: string | undefined;
|
|
250
|
-
part?: string | undefined;
|
|
251
|
-
"aria-activedescendant"?: string | undefined;
|
|
252
|
-
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
253
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
254
|
-
"aria-braillelabel"?: string | undefined;
|
|
255
|
-
"aria-brailleroledescription"?: string | undefined;
|
|
256
|
-
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
257
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
258
|
-
"aria-colcount"?: number | undefined;
|
|
259
|
-
"aria-colindex"?: number | undefined;
|
|
260
|
-
"aria-colindextext"?: string | undefined;
|
|
261
|
-
"aria-colspan"?: number | undefined;
|
|
262
|
-
"aria-controls"?: string | undefined;
|
|
263
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
264
|
-
"aria-describedby"?: string | undefined;
|
|
265
|
-
"aria-description"?: string | undefined;
|
|
266
|
-
"aria-details"?: string | undefined;
|
|
267
|
-
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
268
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
269
|
-
"aria-errormessage"?: string | undefined;
|
|
270
|
-
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
271
|
-
"aria-flowto"?: string | undefined;
|
|
272
|
-
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
273
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
274
|
-
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
275
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
276
|
-
"aria-keyshortcuts"?: string | undefined;
|
|
277
|
-
"aria-label"?: string | undefined;
|
|
278
|
-
"aria-labelledby"?: string | undefined;
|
|
279
|
-
"aria-level"?: number | undefined;
|
|
280
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
281
|
-
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
282
|
-
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
283
|
-
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
284
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
285
|
-
"aria-owns"?: string | undefined;
|
|
286
|
-
"aria-placeholder"?: string | undefined;
|
|
287
|
-
"aria-posinset"?: number | undefined;
|
|
288
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
289
|
-
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
290
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
291
|
-
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
292
|
-
"aria-roledescription"?: string | undefined;
|
|
293
|
-
"aria-rowcount"?: number | undefined;
|
|
294
|
-
"aria-rowindex"?: number | undefined;
|
|
295
|
-
"aria-rowindextext"?: string | undefined;
|
|
296
|
-
"aria-rowspan"?: number | undefined;
|
|
297
|
-
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
298
|
-
"aria-setsize"?: number | undefined;
|
|
299
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
300
|
-
"aria-valuemax"?: number | undefined;
|
|
301
|
-
"aria-valuemin"?: number | undefined;
|
|
302
|
-
"aria-valuenow"?: number | undefined;
|
|
303
|
-
"aria-valuetext"?: string | undefined;
|
|
304
|
-
children?: React.ReactNode | undefined;
|
|
305
|
-
dangerouslySetInnerHTML?: {
|
|
306
|
-
__html: string | TrustedHTML;
|
|
307
|
-
} | undefined;
|
|
308
|
-
onCopy?: React.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
309
|
-
onCopyCapture?: React.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
310
|
-
onCut?: React.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
311
|
-
onCutCapture?: React.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
312
|
-
onPaste?: React.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
313
|
-
onPasteCapture?: React.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
314
|
-
onCompositionEnd?: React.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
315
|
-
onCompositionEndCapture?: React.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
316
|
-
onCompositionStart?: React.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
317
|
-
onCompositionStartCapture?: React.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
318
|
-
onCompositionUpdate?: React.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
319
|
-
onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
320
|
-
onFocus?: React.FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
321
|
-
onFocusCapture?: React.FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
322
|
-
onBlur?: React.FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
323
|
-
onBlurCapture?: React.FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
324
|
-
onChange?: React.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
325
|
-
onChangeCapture?: React.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
326
|
-
onBeforeInput?: React.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
327
|
-
onBeforeInputCapture?: React.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
328
|
-
onInput?: React.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
329
|
-
onInputCapture?: React.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
330
|
-
onReset?: React.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
331
|
-
onResetCapture?: React.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
332
|
-
onSubmit?: React.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
333
|
-
onSubmitCapture?: React.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
334
|
-
onInvalid?: React.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
335
|
-
onInvalidCapture?: React.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
336
|
-
onLoad?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
337
|
-
onLoadCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
338
|
-
onError?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
339
|
-
onErrorCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
340
|
-
onKeyDown?: React.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
341
|
-
onKeyDownCapture?: React.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
342
|
-
onKeyPress?: React.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
343
|
-
onKeyPressCapture?: React.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
344
|
-
onKeyUp?: React.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
345
|
-
onKeyUpCapture?: React.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
346
|
-
onAbort?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
347
|
-
onAbortCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
348
|
-
onCanPlay?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
349
|
-
onCanPlayCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
350
|
-
onCanPlayThrough?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
351
|
-
onCanPlayThroughCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
352
|
-
onDurationChange?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
353
|
-
onDurationChangeCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
354
|
-
onEmptied?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
355
|
-
onEmptiedCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
356
|
-
onEncrypted?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
357
|
-
onEncryptedCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
358
|
-
onEnded?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
359
|
-
onEndedCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
360
|
-
onLoadedData?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
361
|
-
onLoadedDataCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
362
|
-
onLoadedMetadata?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
363
|
-
onLoadedMetadataCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
364
|
-
onLoadStart?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
365
|
-
onLoadStartCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
366
|
-
onPause?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
367
|
-
onPauseCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
368
|
-
onPlay?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
369
|
-
onPlayCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
370
|
-
onPlaying?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
371
|
-
onPlayingCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
372
|
-
onProgress?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
373
|
-
onProgressCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
374
|
-
onRateChange?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
375
|
-
onRateChangeCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
376
|
-
onResize?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
377
|
-
onResizeCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
378
|
-
onSeeked?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
379
|
-
onSeekedCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
380
|
-
onSeeking?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
381
|
-
onSeekingCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
382
|
-
onStalled?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
383
|
-
onStalledCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
384
|
-
onSuspend?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
385
|
-
onSuspendCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
386
|
-
onTimeUpdate?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
387
|
-
onTimeUpdateCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
388
|
-
onVolumeChange?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
389
|
-
onVolumeChangeCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
390
|
-
onWaiting?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
391
|
-
onWaitingCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
392
|
-
onAuxClick?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
393
|
-
onAuxClickCapture?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
394
|
-
onClick?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
395
|
-
onClickCapture?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
396
|
-
onContextMenu?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
397
|
-
onContextMenuCapture?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
398
|
-
onDoubleClick?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
399
|
-
onDoubleClickCapture?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
400
|
-
onDrag?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
401
|
-
onDragCapture?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
402
|
-
onDragEnd?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
403
|
-
onDragEndCapture?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
404
|
-
onDragEnter?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
405
|
-
onDragEnterCapture?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
406
|
-
onDragExit?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
407
|
-
onDragExitCapture?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
408
|
-
onDragLeave?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
409
|
-
onDragLeaveCapture?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
410
|
-
onDragOver?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
411
|
-
onDragOverCapture?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
412
|
-
onDragStart?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
413
|
-
onDragStartCapture?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
414
|
-
onDrop?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
415
|
-
onDropCapture?: React.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
416
|
-
onMouseDown?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
417
|
-
onMouseDownCapture?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
418
|
-
onMouseEnter?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
419
|
-
onMouseLeave?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
420
|
-
onMouseMove?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
421
|
-
onMouseMoveCapture?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
422
|
-
onMouseOut?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
423
|
-
onMouseOutCapture?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
424
|
-
onMouseOver?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
425
|
-
onMouseOverCapture?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
426
|
-
onMouseUp?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
427
|
-
onMouseUpCapture?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
428
|
-
onSelect?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
429
|
-
onSelectCapture?: React.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
430
|
-
onTouchCancel?: React.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
431
|
-
onTouchCancelCapture?: React.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
432
|
-
onTouchEnd?: React.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
433
|
-
onTouchEndCapture?: React.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
434
|
-
onTouchMove?: React.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
435
|
-
onTouchMoveCapture?: React.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
436
|
-
onTouchStart?: React.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
437
|
-
onTouchStartCapture?: React.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
438
|
-
onPointerDown?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
439
|
-
onPointerDownCapture?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
440
|
-
onPointerMove?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
441
|
-
onPointerMoveCapture?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
442
|
-
onPointerUp?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
443
|
-
onPointerUpCapture?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
444
|
-
onPointerCancel?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
445
|
-
onPointerCancelCapture?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
446
|
-
onPointerEnter?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
447
|
-
onPointerLeave?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
448
|
-
onPointerOver?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
449
|
-
onPointerOverCapture?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
450
|
-
onPointerOut?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
451
|
-
onPointerOutCapture?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
452
|
-
onGotPointerCapture?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
453
|
-
onGotPointerCaptureCapture?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
454
|
-
onLostPointerCapture?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
455
|
-
onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
456
|
-
onScroll?: React.UIEventHandler<HTMLAnchorElement> | undefined;
|
|
457
|
-
onScrollCapture?: React.UIEventHandler<HTMLAnchorElement> | undefined;
|
|
458
|
-
onScrollEnd?: React.UIEventHandler<HTMLAnchorElement> | undefined;
|
|
459
|
-
onScrollEndCapture?: React.UIEventHandler<HTMLAnchorElement> | undefined;
|
|
460
|
-
onWheel?: React.WheelEventHandler<HTMLAnchorElement> | undefined;
|
|
461
|
-
onWheelCapture?: React.WheelEventHandler<HTMLAnchorElement> | undefined;
|
|
462
|
-
onAnimationStart?: React.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
463
|
-
onAnimationStartCapture?: React.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
464
|
-
onAnimationEnd?: React.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
465
|
-
onAnimationEndCapture?: React.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
466
|
-
onAnimationIteration?: React.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
467
|
-
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
468
|
-
onToggle?: React$1.ToggleEventHandler<HTMLAnchorElement> | undefined;
|
|
469
|
-
onBeforeToggle?: React$1.ToggleEventHandler<HTMLAnchorElement> | undefined;
|
|
470
|
-
onTransitionCancel?: React.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
471
|
-
onTransitionCancelCapture?: React.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
472
|
-
onTransitionEnd?: React.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
473
|
-
onTransitionEndCapture?: React.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
474
|
-
onTransitionRun?: React.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
475
|
-
onTransitionRunCapture?: React.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
476
|
-
onTransitionStart?: React.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
477
|
-
onTransitionStartCapture?: React.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
478
|
-
}>;
|
|
479
|
-
};
|
|
480
|
-
}, {}, {
|
|
481
|
-
isOpen?: (editorId: string) => boolean;
|
|
482
|
-
}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"highlight", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"underline", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"hr", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"img", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"mdxJsxTextElement", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"mdxJsxFlowElement", {}, {}, {}, {}>> | import("@udecode/plate").SlatePlugin<import("@udecode/plate").PluginConfig<"trailingBlock", {
|
|
483
|
-
type: string;
|
|
484
|
-
} & {
|
|
485
|
-
level?: number;
|
|
486
|
-
type?: string;
|
|
487
|
-
} & import("@udecode/plate").QueryNodeOptions, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"autoformat", {
|
|
488
|
-
enableUndoOnDelete?: boolean;
|
|
489
|
-
rules?: AutoformatRule[];
|
|
490
|
-
}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"exitBreak", {
|
|
491
|
-
rules?: import("node_modules/@udecode/plate-break/dist/BaseSoftBreakPlugin-CeLtcSTo").E[];
|
|
492
|
-
}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"resetNode", {
|
|
493
|
-
disableEditorReset?: boolean;
|
|
494
|
-
disableFirstBlockReset?: boolean;
|
|
495
|
-
rules?: import("@udecode/plate-reset-node").ResetNodePluginRule[];
|
|
496
|
-
}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"softBreak", {
|
|
497
|
-
rules?: import("node_modules/@udecode/plate-break/dist/BaseSoftBreakPlugin-CeLtcSTo").b[];
|
|
498
|
-
}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"invalid_markdown", {
|
|
499
|
-
isElement: boolean;
|
|
500
|
-
isVoid: boolean;
|
|
501
|
-
isInline: boolean;
|
|
502
|
-
}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"floating-toolbar", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"html", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"html_inline", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"blockquote-enter-break", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"break", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"basicMarks", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"heading", {
|
|
503
|
-
levels?: import("@udecode/plate-heading").HeadingLevel | import("@udecode/plate-heading").HeadingLevel[];
|
|
504
|
-
}, {}, {}, {}>> | import("@udecode/plate").SlatePlugin<import("@udecode/plate").PluginConfig<"WITH_CORRECT_NODE_BEHAVIOR", {}, {}, {}, {}>> | import("@udecode/plate").SlatePlugin<import("@udecode/plate").PluginConfig<"CLEAR_HIGHLIGHT_ON_ENTER", {}, {}, {}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"list", {
|
|
505
|
-
enableResetOnShiftTab?: boolean;
|
|
506
|
-
validLiChildrenTypes?: string[];
|
|
507
|
-
}, {}, {
|
|
508
|
-
toggle: {
|
|
509
|
-
bulletedList: (() => boolean) & (() => boolean);
|
|
510
|
-
list: ((args_0: {
|
|
511
|
-
type: string;
|
|
512
|
-
}) => boolean) & ((args_0: {
|
|
513
|
-
type: string;
|
|
514
|
-
}) => boolean);
|
|
515
|
-
numberedList: (() => boolean) & (() => boolean);
|
|
516
|
-
};
|
|
517
|
-
}, {}>> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"listStyleType", {
|
|
518
|
-
getSiblingIndentListOptions?: import("@udecode/plate-indent-list").GetSiblingIndentListOptions<import("@udecode/plate").TElement>;
|
|
519
|
-
listStyleTypes?: Record<string, {
|
|
520
|
-
type: string;
|
|
521
|
-
isOrdered?: boolean;
|
|
522
|
-
liComponent?: React.FC<import("@udecode/plate").SlateRenderElementProps>;
|
|
523
|
-
markerComponent?: React.FC<Omit<import("@udecode/plate").SlateRenderElementProps, "children">>;
|
|
524
|
-
}>;
|
|
525
|
-
getListStyleType?: (element: HTMLElement) => ListStyleType;
|
|
526
|
-
}, {}, {}, {}>> | import("@udecode/plate").SlatePlugin<import("@udecode/plate-node-id").NodeIdConfig> | import("@udecode/plate/react").PlatePlugin<import("@udecode/plate").PluginConfig<"slash_command", import("@udecode/plate-combobox").TriggerComboboxPluginOptions, {}, {}, {}>>)[];
|
|
9
|
+
export declare const createEditorPlugins: ({ headingLevels, }?: CreateEditorPluginsOptions) => any[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
1
|
import { Form } from '../forms';
|
|
2
|
+
import * as React from 'react';
|
|
3
3
|
import { type SaveChoice } from './save-options';
|
|
4
4
|
export declare const CreateBranchModal: ({ close, safeSubmit, path, values, crudType, tinaForm, onBaseBranchDeleted, }: {
|
|
5
5
|
safeSubmit: (editorialWorkflowChoice?: SaveChoice) => Promise<void>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { Branch, BranchSwitcherProps } from './types';
|
|
3
|
-
export
|
|
3
|
+
export { formatBranchName } from '../../utils/branch-name';
|
|
4
4
|
export declare const BranchSwitcherLegacy: ({ listBranches, createBranch, chooseBranch, }: BranchSwitcherProps) => React.JSX.Element;
|
|
5
5
|
export declare const getFilteredBranchList: (branchList: Branch[], filter: string, currentBranchName: string) => Branch[];
|
|
6
6
|
export declare const CreateBranch: React.FC<{
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { Branch, BranchSwitcherProps } from './types';
|
|
3
3
|
export declare const tableHeadingStyle = "px-3 py-3 text-left text-xs font-bold text-gray-700 tracking-wider sticky top-0 bg-gray-100 z-20 border-b-2 border-gray-200 ";
|
|
4
|
-
|
|
5
|
-
export { formatBranchName };
|
|
4
|
+
export { formatBranchName } from '../../utils/branch-name';
|
|
6
5
|
export declare const BranchSwitcher: (props: BranchSwitcherProps) => React.JSX.Element;
|
|
7
6
|
export declare const EditoralBranchSwitcher: ({ listBranches, createBranch, chooseBranch, setModalTitle, }: BranchSwitcherProps) => React.JSX.Element;
|
|
8
7
|
export declare const getFilteredBranchList: (branchList: Branch[], search: string, currentBranchName: string, filter?: "content" | "all") => Branch[];
|
|
9
8
|
export declare const sortBranchListFn: (sortValue: "default" | "updated" | "name") => (a: Branch, b: Branch) => number;
|
|
9
|
+
export declare const BranchCreator: ({ setViewState, handleCreateBranch, currentBranch, }: {
|
|
10
|
+
setViewState: any;
|
|
11
|
+
handleCreateBranch: any;
|
|
12
|
+
currentBranch: any;
|
|
13
|
+
}) => React.JSX.Element;
|
|
10
14
|
export declare const extractPullRequestId: (url: string) => string;
|
|
11
15
|
export declare const BranchItem: ({ branch, currentBranch, onChange, refreshBranchList, previewFunction, cms, selectedBranch, onSelectBranch, }: {
|
|
12
16
|
branch: Branch;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
1
|
import { ScreenPlugin } from '../react-screens';
|
|
2
|
+
import * as React from 'react';
|
|
3
3
|
import { BranchSwitcherProps } from './types';
|
|
4
4
|
export declare class BranchSwitcherPlugin implements ScreenPlugin {
|
|
5
5
|
__type: "screen";
|
|
6
|
-
Icon: import("react
|
|
6
|
+
Icon: React.ForwardRefExoticComponent<Omit<import("lucide-react").LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
7
|
name: string;
|
|
8
8
|
layout: "popup";
|
|
9
9
|
listBranches: BranchSwitcherProps['listBranches'];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import { type LucideIcon } from 'lucide-react';
|
|
1
2
|
import { Plugin } from '../core';
|
|
2
|
-
import type { IconType } from 'react-icons';
|
|
3
3
|
/**
|
|
4
4
|
* Represents a TinaCloud Config that should be accessible via the CMS.
|
|
5
5
|
*
|
|
@@ -29,7 +29,7 @@ export interface CloudConfigOptions {
|
|
|
29
29
|
text: string;
|
|
30
30
|
href: string;
|
|
31
31
|
};
|
|
32
|
-
Icon?:
|
|
32
|
+
Icon?: LucideIcon;
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
35
|
* Creates cloud config plugins.
|
|
@@ -3,6 +3,7 @@ import type { SidebarState, SidebarStateOptions } from '../sidebar';
|
|
|
3
3
|
export declare const SidebarContext: React.Context<any>;
|
|
4
4
|
export declare const minPreviewWidth = 440;
|
|
5
5
|
export declare const minSidebarWidth = 360;
|
|
6
|
+
export declare const sidebarEdgeGap = 8;
|
|
6
7
|
export interface SidebarProviderProps {
|
|
7
8
|
sidebar: SidebarState;
|
|
8
9
|
resizingSidebar: boolean;
|