@react-email/editor 0.0.0-experimental.37 → 0.0.0-experimental.38
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/{extension-XZBBjuHO.mjs → extension-CnC8y63H.mjs} +3 -7
- package/dist/extension-CnC8y63H.mjs.map +1 -0
- package/dist/{extension-B8yvCdun.cjs → extension-dGpPpEvD.cjs} +2 -6
- package/dist/index-C4KcMQ0R.d.cts.map +1 -1
- package/dist/index-CxX7W63O.d.mts.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/plugins/index.cjs +1 -1
- package/dist/plugins/index.d.cts.map +1 -1
- package/dist/plugins/index.d.mts.map +1 -1
- package/dist/plugins/index.mjs +1 -1
- package/dist/ui/index.d.cts +73 -73
- package/dist/ui/index.d.mts +73 -73
- package/package.json +1 -1
- package/dist/extension-XZBBjuHO.mjs.map +0 -1
package/dist/ui/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime13 from "react/jsx-runtime";
|
|
4
4
|
import { Editor, Range } from "@tiptap/core";
|
|
5
5
|
|
|
6
6
|
//#region src/ui/bubble-menu/create-mark-bubble-item.d.ts
|
|
@@ -14,19 +14,19 @@ interface PreWiredItemProps {
|
|
|
14
14
|
declare function BubbleMenuAlignCenter({
|
|
15
15
|
className,
|
|
16
16
|
children
|
|
17
|
-
}: PreWiredItemProps):
|
|
17
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
18
18
|
//#endregion
|
|
19
19
|
//#region src/ui/bubble-menu/align-left.d.ts
|
|
20
20
|
declare function BubbleMenuAlignLeft({
|
|
21
21
|
className,
|
|
22
22
|
children
|
|
23
|
-
}: PreWiredItemProps):
|
|
23
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
24
24
|
//#endregion
|
|
25
25
|
//#region src/ui/bubble-menu/align-right.d.ts
|
|
26
26
|
declare function BubbleMenuAlignRight({
|
|
27
27
|
className,
|
|
28
28
|
children
|
|
29
|
-
}: PreWiredItemProps):
|
|
29
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
30
30
|
//#endregion
|
|
31
31
|
//#region src/ui/bubble-menu/default.d.ts
|
|
32
32
|
type ExcludableItem$2 = 'bold' | 'italic' | 'underline' | 'strike' | 'code' | 'uppercase' | 'align-left' | 'align-center' | 'align-right' | 'node-selector' | 'link-selector';
|
|
@@ -53,7 +53,7 @@ declare function BubbleMenuDefault({
|
|
|
53
53
|
onHide,
|
|
54
54
|
className,
|
|
55
55
|
...rest
|
|
56
|
-
}: BubbleMenuDefaultProps):
|
|
56
|
+
}: BubbleMenuDefaultProps): react_jsx_runtime13.JSX.Element;
|
|
57
57
|
//#endregion
|
|
58
58
|
//#region src/ui/bubble-menu/group.d.ts
|
|
59
59
|
interface BubbleMenuItemGroupProps {
|
|
@@ -63,7 +63,7 @@ interface BubbleMenuItemGroupProps {
|
|
|
63
63
|
declare function BubbleMenuItemGroup({
|
|
64
64
|
className,
|
|
65
65
|
children
|
|
66
|
-
}: BubbleMenuItemGroupProps):
|
|
66
|
+
}: BubbleMenuItemGroupProps): react_jsx_runtime13.JSX.Element;
|
|
67
67
|
//#endregion
|
|
68
68
|
//#region src/ui/bubble-menu/item.d.ts
|
|
69
69
|
interface BubbleMenuItemProps extends React.ComponentProps<'button'> {
|
|
@@ -81,7 +81,7 @@ declare function BubbleMenuItem({
|
|
|
81
81
|
className,
|
|
82
82
|
children,
|
|
83
83
|
...rest
|
|
84
|
-
}: BubbleMenuItemProps):
|
|
84
|
+
}: BubbleMenuItemProps): react_jsx_runtime13.JSX.Element;
|
|
85
85
|
//#endregion
|
|
86
86
|
//#region src/ui/bubble-menu/link-selector.d.ts
|
|
87
87
|
interface BubbleMenuLinkSelectorProps {
|
|
@@ -110,7 +110,7 @@ declare function BubbleMenuLinkSelector({
|
|
|
110
110
|
children,
|
|
111
111
|
open: controlledOpen,
|
|
112
112
|
onOpenChange
|
|
113
|
-
}: BubbleMenuLinkSelectorProps):
|
|
113
|
+
}: BubbleMenuLinkSelectorProps): react_jsx_runtime13.JSX.Element | null;
|
|
114
114
|
//#endregion
|
|
115
115
|
//#region src/ui/bubble-menu/node-selector.d.ts
|
|
116
116
|
type NodeType = 'Text' | 'Title' | 'Subtitle' | 'Heading' | 'Bullet List' | 'Numbered List' | 'Quote' | 'Code';
|
|
@@ -136,7 +136,7 @@ declare function NodeSelectorRoot({
|
|
|
136
136
|
onOpenChange,
|
|
137
137
|
className,
|
|
138
138
|
children
|
|
139
|
-
}: NodeSelectorRootProps):
|
|
139
|
+
}: NodeSelectorRootProps): react_jsx_runtime13.JSX.Element | null;
|
|
140
140
|
interface NodeSelectorTriggerProps {
|
|
141
141
|
className?: string;
|
|
142
142
|
children?: React.ReactNode;
|
|
@@ -144,7 +144,7 @@ interface NodeSelectorTriggerProps {
|
|
|
144
144
|
declare function NodeSelectorTrigger({
|
|
145
145
|
className,
|
|
146
146
|
children
|
|
147
|
-
}: NodeSelectorTriggerProps):
|
|
147
|
+
}: NodeSelectorTriggerProps): react_jsx_runtime13.JSX.Element;
|
|
148
148
|
interface NodeSelectorContentProps {
|
|
149
149
|
className?: string;
|
|
150
150
|
/** Popover alignment (default: "start") */
|
|
@@ -157,7 +157,7 @@ declare function NodeSelectorContent({
|
|
|
157
157
|
className,
|
|
158
158
|
align,
|
|
159
159
|
children
|
|
160
|
-
}: NodeSelectorContentProps):
|
|
160
|
+
}: NodeSelectorContentProps): react_jsx_runtime13.JSX.Element;
|
|
161
161
|
interface BubbleMenuNodeSelectorProps {
|
|
162
162
|
/** Block types to exclude */
|
|
163
163
|
omit?: string[];
|
|
@@ -175,7 +175,7 @@ declare function BubbleMenuNodeSelector({
|
|
|
175
175
|
triggerContent,
|
|
176
176
|
open,
|
|
177
177
|
onOpenChange
|
|
178
|
-
}: BubbleMenuNodeSelectorProps):
|
|
178
|
+
}: BubbleMenuNodeSelectorProps): react_jsx_runtime13.JSX.Element;
|
|
179
179
|
//#endregion
|
|
180
180
|
//#region src/ui/bubble-menu/root.d.ts
|
|
181
181
|
interface BubbleMenuRootProps extends Omit<React.ComponentPropsWithoutRef<'div'>, 'children'> {
|
|
@@ -200,7 +200,7 @@ declare function BubbleMenuRoot({
|
|
|
200
200
|
className,
|
|
201
201
|
children,
|
|
202
202
|
...rest
|
|
203
|
-
}: BubbleMenuRootProps):
|
|
203
|
+
}: BubbleMenuRootProps): react_jsx_runtime13.JSX.Element | null;
|
|
204
204
|
//#endregion
|
|
205
205
|
//#region src/ui/bubble-menu/separator.d.ts
|
|
206
206
|
interface BubbleMenuSeparatorProps {
|
|
@@ -208,14 +208,14 @@ interface BubbleMenuSeparatorProps {
|
|
|
208
208
|
}
|
|
209
209
|
declare function BubbleMenuSeparator({
|
|
210
210
|
className
|
|
211
|
-
}: BubbleMenuSeparatorProps):
|
|
211
|
+
}: BubbleMenuSeparatorProps): react_jsx_runtime13.JSX.Element;
|
|
212
212
|
//#endregion
|
|
213
213
|
//#region src/ui/bubble-menu/bold.d.ts
|
|
214
214
|
declare const BubbleMenuBold: {
|
|
215
215
|
({
|
|
216
216
|
className,
|
|
217
217
|
children
|
|
218
|
-
}: PreWiredItemProps):
|
|
218
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
219
219
|
displayName: string;
|
|
220
220
|
};
|
|
221
221
|
//#endregion
|
|
@@ -224,7 +224,7 @@ declare const BubbleMenuCode: {
|
|
|
224
224
|
({
|
|
225
225
|
className,
|
|
226
226
|
children
|
|
227
|
-
}: PreWiredItemProps):
|
|
227
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
228
228
|
displayName: string;
|
|
229
229
|
};
|
|
230
230
|
//#endregion
|
|
@@ -233,7 +233,7 @@ declare const BubbleMenuItalic: {
|
|
|
233
233
|
({
|
|
234
234
|
className,
|
|
235
235
|
children
|
|
236
|
-
}: PreWiredItemProps):
|
|
236
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
237
237
|
displayName: string;
|
|
238
238
|
};
|
|
239
239
|
//#endregion
|
|
@@ -242,7 +242,7 @@ declare const BubbleMenuStrike: {
|
|
|
242
242
|
({
|
|
243
243
|
className,
|
|
244
244
|
children
|
|
245
|
-
}: PreWiredItemProps):
|
|
245
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
246
246
|
displayName: string;
|
|
247
247
|
};
|
|
248
248
|
//#endregion
|
|
@@ -251,7 +251,7 @@ declare const BubbleMenuUnderline: {
|
|
|
251
251
|
({
|
|
252
252
|
className,
|
|
253
253
|
children
|
|
254
|
-
}: PreWiredItemProps):
|
|
254
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
255
255
|
displayName: string;
|
|
256
256
|
};
|
|
257
257
|
//#endregion
|
|
@@ -260,7 +260,7 @@ declare const BubbleMenuUppercase: {
|
|
|
260
260
|
({
|
|
261
261
|
className,
|
|
262
262
|
children
|
|
263
|
-
}: PreWiredItemProps):
|
|
263
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
264
264
|
displayName: string;
|
|
265
265
|
};
|
|
266
266
|
//#endregion
|
|
@@ -274,42 +274,42 @@ declare const BubbleMenu: {
|
|
|
274
274
|
({
|
|
275
275
|
className,
|
|
276
276
|
children
|
|
277
|
-
}: PreWiredItemProps):
|
|
277
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
278
278
|
displayName: string;
|
|
279
279
|
};
|
|
280
280
|
readonly Italic: {
|
|
281
281
|
({
|
|
282
282
|
className,
|
|
283
283
|
children
|
|
284
|
-
}: PreWiredItemProps):
|
|
284
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
285
285
|
displayName: string;
|
|
286
286
|
};
|
|
287
287
|
readonly Underline: {
|
|
288
288
|
({
|
|
289
289
|
className,
|
|
290
290
|
children
|
|
291
|
-
}: PreWiredItemProps):
|
|
291
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
292
292
|
displayName: string;
|
|
293
293
|
};
|
|
294
294
|
readonly Strike: {
|
|
295
295
|
({
|
|
296
296
|
className,
|
|
297
297
|
children
|
|
298
|
-
}: PreWiredItemProps):
|
|
298
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
299
299
|
displayName: string;
|
|
300
300
|
};
|
|
301
301
|
readonly Code: {
|
|
302
302
|
({
|
|
303
303
|
className,
|
|
304
304
|
children
|
|
305
|
-
}: PreWiredItemProps):
|
|
305
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
306
306
|
displayName: string;
|
|
307
307
|
};
|
|
308
308
|
readonly Uppercase: {
|
|
309
309
|
({
|
|
310
310
|
className,
|
|
311
311
|
children
|
|
312
|
-
}: PreWiredItemProps):
|
|
312
|
+
}: PreWiredItemProps): react_jsx_runtime13.JSX.Element;
|
|
313
313
|
displayName: string;
|
|
314
314
|
};
|
|
315
315
|
readonly AlignLeft: typeof BubbleMenuAlignLeft;
|
|
@@ -342,7 +342,7 @@ declare function ButtonBubbleMenuDefault({
|
|
|
342
342
|
onLinkApply,
|
|
343
343
|
onLinkRemove,
|
|
344
344
|
...rest
|
|
345
|
-
}: ButtonBubbleMenuDefaultProps):
|
|
345
|
+
}: ButtonBubbleMenuDefaultProps): react_jsx_runtime13.JSX.Element;
|
|
346
346
|
//#endregion
|
|
347
347
|
//#region src/ui/button-bubble-menu/edit-link.d.ts
|
|
348
348
|
interface ButtonBubbleMenuEditLinkProps extends Omit<React.ComponentProps<'button'>, 'type'> {}
|
|
@@ -352,7 +352,7 @@ declare function ButtonBubbleMenuEditLink({
|
|
|
352
352
|
onClick,
|
|
353
353
|
onMouseDown,
|
|
354
354
|
...rest
|
|
355
|
-
}: ButtonBubbleMenuEditLinkProps):
|
|
355
|
+
}: ButtonBubbleMenuEditLinkProps): react_jsx_runtime13.JSX.Element;
|
|
356
356
|
//#endregion
|
|
357
357
|
//#region src/ui/button-bubble-menu/form.d.ts
|
|
358
358
|
interface ButtonBubbleMenuFormProps {
|
|
@@ -366,7 +366,7 @@ declare function ButtonBubbleMenuForm({
|
|
|
366
366
|
validateUrl,
|
|
367
367
|
onLinkApply,
|
|
368
368
|
onLinkRemove
|
|
369
|
-
}: ButtonBubbleMenuFormProps):
|
|
369
|
+
}: ButtonBubbleMenuFormProps): react_jsx_runtime13.JSX.Element | null;
|
|
370
370
|
//#endregion
|
|
371
371
|
//#region src/ui/button-bubble-menu/root.d.ts
|
|
372
372
|
interface ButtonBubbleMenuRootProps extends Omit<React.ComponentPropsWithoutRef<'div'>, 'children'> {
|
|
@@ -385,14 +385,14 @@ declare function ButtonBubbleMenuRoot({
|
|
|
385
385
|
className,
|
|
386
386
|
children,
|
|
387
387
|
...rest
|
|
388
|
-
}: ButtonBubbleMenuRootProps):
|
|
388
|
+
}: ButtonBubbleMenuRootProps): react_jsx_runtime13.JSX.Element | null;
|
|
389
389
|
//#endregion
|
|
390
390
|
//#region src/ui/button-bubble-menu/toolbar.d.ts
|
|
391
391
|
interface ButtonBubbleMenuToolbarProps extends React.ComponentProps<'div'> {}
|
|
392
392
|
declare function ButtonBubbleMenuToolbar({
|
|
393
393
|
children,
|
|
394
394
|
...rest
|
|
395
|
-
}: ButtonBubbleMenuToolbarProps):
|
|
395
|
+
}: ButtonBubbleMenuToolbarProps): react_jsx_runtime13.JSX.Element | null;
|
|
396
396
|
//#endregion
|
|
397
397
|
//#region src/ui/button-bubble-menu/unlink.d.ts
|
|
398
398
|
interface ButtonBubbleMenuUnlinkProps extends Omit<React.ComponentProps<'button'>, 'type'> {
|
|
@@ -405,7 +405,7 @@ declare function ButtonBubbleMenuUnlink({
|
|
|
405
405
|
onMouseDown,
|
|
406
406
|
onLinkRemove,
|
|
407
407
|
...rest
|
|
408
|
-
}: ButtonBubbleMenuUnlinkProps):
|
|
408
|
+
}: ButtonBubbleMenuUnlinkProps): react_jsx_runtime13.JSX.Element;
|
|
409
409
|
//#endregion
|
|
410
410
|
//#region src/ui/button-bubble-menu/context.d.ts
|
|
411
411
|
interface ButtonBubbleMenuContextValue {
|
|
@@ -435,7 +435,7 @@ declare function AlignCenterIcon({
|
|
|
435
435
|
width,
|
|
436
436
|
height,
|
|
437
437
|
...props
|
|
438
|
-
}: IconProps$28):
|
|
438
|
+
}: IconProps$28): react_jsx_runtime13.JSX.Element;
|
|
439
439
|
//#endregion
|
|
440
440
|
//#region src/ui/icons/align-left.d.ts
|
|
441
441
|
interface IconProps$27 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -446,7 +446,7 @@ declare function AlignLeftIcon({
|
|
|
446
446
|
width,
|
|
447
447
|
height,
|
|
448
448
|
...props
|
|
449
|
-
}: IconProps$27):
|
|
449
|
+
}: IconProps$27): react_jsx_runtime13.JSX.Element;
|
|
450
450
|
//#endregion
|
|
451
451
|
//#region src/ui/icons/align-right.d.ts
|
|
452
452
|
interface IconProps$26 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -457,7 +457,7 @@ declare function AlignRightIcon({
|
|
|
457
457
|
width,
|
|
458
458
|
height,
|
|
459
459
|
...props
|
|
460
|
-
}: IconProps$26):
|
|
460
|
+
}: IconProps$26): react_jsx_runtime13.JSX.Element;
|
|
461
461
|
//#endregion
|
|
462
462
|
//#region src/ui/icons/bold.d.ts
|
|
463
463
|
interface IconProps$25 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -468,7 +468,7 @@ declare function BoldIcon({
|
|
|
468
468
|
width,
|
|
469
469
|
height,
|
|
470
470
|
...props
|
|
471
|
-
}: IconProps$25):
|
|
471
|
+
}: IconProps$25): react_jsx_runtime13.JSX.Element;
|
|
472
472
|
//#endregion
|
|
473
473
|
//#region src/ui/icons/case-upper.d.ts
|
|
474
474
|
interface IconProps$24 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -479,7 +479,7 @@ declare function CaseUpperIcon({
|
|
|
479
479
|
width,
|
|
480
480
|
height,
|
|
481
481
|
...props
|
|
482
|
-
}: IconProps$24):
|
|
482
|
+
}: IconProps$24): react_jsx_runtime13.JSX.Element;
|
|
483
483
|
//#endregion
|
|
484
484
|
//#region src/ui/icons/check.d.ts
|
|
485
485
|
interface IconProps$23 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -490,7 +490,7 @@ declare function Check({
|
|
|
490
490
|
width,
|
|
491
491
|
height,
|
|
492
492
|
...props
|
|
493
|
-
}: IconProps$23):
|
|
493
|
+
}: IconProps$23): react_jsx_runtime13.JSX.Element;
|
|
494
494
|
//#endregion
|
|
495
495
|
//#region src/ui/icons/chevron-down.d.ts
|
|
496
496
|
interface IconProps$22 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -501,7 +501,7 @@ declare function ChevronDown({
|
|
|
501
501
|
width,
|
|
502
502
|
height,
|
|
503
503
|
...props
|
|
504
|
-
}: IconProps$22):
|
|
504
|
+
}: IconProps$22): react_jsx_runtime13.JSX.Element;
|
|
505
505
|
//#endregion
|
|
506
506
|
//#region src/ui/icons/code.d.ts
|
|
507
507
|
interface IconProps$21 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -512,7 +512,7 @@ declare function CodeIcon({
|
|
|
512
512
|
width,
|
|
513
513
|
height,
|
|
514
514
|
...props
|
|
515
|
-
}: IconProps$21):
|
|
515
|
+
}: IconProps$21): react_jsx_runtime13.JSX.Element;
|
|
516
516
|
declare const Code: typeof CodeIcon;
|
|
517
517
|
//#endregion
|
|
518
518
|
//#region src/ui/icons/columns-2.d.ts
|
|
@@ -524,7 +524,7 @@ declare function Columns2({
|
|
|
524
524
|
width,
|
|
525
525
|
height,
|
|
526
526
|
...props
|
|
527
|
-
}: IconProps$20):
|
|
527
|
+
}: IconProps$20): react_jsx_runtime13.JSX.Element;
|
|
528
528
|
//#endregion
|
|
529
529
|
//#region src/ui/icons/columns-3.d.ts
|
|
530
530
|
interface IconProps$19 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -535,7 +535,7 @@ declare function Columns3({
|
|
|
535
535
|
width,
|
|
536
536
|
height,
|
|
537
537
|
...props
|
|
538
|
-
}: IconProps$19):
|
|
538
|
+
}: IconProps$19): react_jsx_runtime13.JSX.Element;
|
|
539
539
|
//#endregion
|
|
540
540
|
//#region src/ui/icons/columns-4.d.ts
|
|
541
541
|
interface IconProps$18 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -546,7 +546,7 @@ declare function Columns4({
|
|
|
546
546
|
width,
|
|
547
547
|
height,
|
|
548
548
|
...props
|
|
549
|
-
}: IconProps$18):
|
|
549
|
+
}: IconProps$18): react_jsx_runtime13.JSX.Element;
|
|
550
550
|
//#endregion
|
|
551
551
|
//#region src/ui/icons/external-link.d.ts
|
|
552
552
|
interface IconProps$17 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -557,7 +557,7 @@ declare function ExternalLinkIcon({
|
|
|
557
557
|
width,
|
|
558
558
|
height,
|
|
559
559
|
...props
|
|
560
|
-
}: IconProps$17):
|
|
560
|
+
}: IconProps$17): react_jsx_runtime13.JSX.Element;
|
|
561
561
|
//#endregion
|
|
562
562
|
//#region src/ui/icons/heading-1.d.ts
|
|
563
563
|
interface IconProps$16 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -568,7 +568,7 @@ declare function Heading1({
|
|
|
568
568
|
width,
|
|
569
569
|
height,
|
|
570
570
|
...props
|
|
571
|
-
}: IconProps$16):
|
|
571
|
+
}: IconProps$16): react_jsx_runtime13.JSX.Element;
|
|
572
572
|
//#endregion
|
|
573
573
|
//#region src/ui/icons/heading-2.d.ts
|
|
574
574
|
interface IconProps$15 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -579,7 +579,7 @@ declare function Heading2({
|
|
|
579
579
|
width,
|
|
580
580
|
height,
|
|
581
581
|
...props
|
|
582
|
-
}: IconProps$15):
|
|
582
|
+
}: IconProps$15): react_jsx_runtime13.JSX.Element;
|
|
583
583
|
//#endregion
|
|
584
584
|
//#region src/ui/icons/heading-3.d.ts
|
|
585
585
|
interface IconProps$14 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -590,7 +590,7 @@ declare function Heading3({
|
|
|
590
590
|
width,
|
|
591
591
|
height,
|
|
592
592
|
...props
|
|
593
|
-
}: IconProps$14):
|
|
593
|
+
}: IconProps$14): react_jsx_runtime13.JSX.Element;
|
|
594
594
|
//#endregion
|
|
595
595
|
//#region src/ui/icons/italic.d.ts
|
|
596
596
|
interface IconProps$13 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -601,7 +601,7 @@ declare function ItalicIcon({
|
|
|
601
601
|
width,
|
|
602
602
|
height,
|
|
603
603
|
...props
|
|
604
|
-
}: IconProps$13):
|
|
604
|
+
}: IconProps$13): react_jsx_runtime13.JSX.Element;
|
|
605
605
|
//#endregion
|
|
606
606
|
//#region src/ui/icons/link.d.ts
|
|
607
607
|
interface IconProps$12 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -612,7 +612,7 @@ declare function LinkIcon({
|
|
|
612
612
|
width,
|
|
613
613
|
height,
|
|
614
614
|
...props
|
|
615
|
-
}: IconProps$12):
|
|
615
|
+
}: IconProps$12): react_jsx_runtime13.JSX.Element;
|
|
616
616
|
//#endregion
|
|
617
617
|
//#region src/ui/icons/list.d.ts
|
|
618
618
|
interface IconProps$11 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -623,7 +623,7 @@ declare function List({
|
|
|
623
623
|
width,
|
|
624
624
|
height,
|
|
625
625
|
...props
|
|
626
|
-
}: IconProps$11):
|
|
626
|
+
}: IconProps$11): react_jsx_runtime13.JSX.Element;
|
|
627
627
|
//#endregion
|
|
628
628
|
//#region src/ui/icons/list-ordered.d.ts
|
|
629
629
|
interface IconProps$10 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -634,7 +634,7 @@ declare function ListOrdered({
|
|
|
634
634
|
width,
|
|
635
635
|
height,
|
|
636
636
|
...props
|
|
637
|
-
}: IconProps$10):
|
|
637
|
+
}: IconProps$10): react_jsx_runtime13.JSX.Element;
|
|
638
638
|
//#endregion
|
|
639
639
|
//#region src/ui/icons/mouse-pointer.d.ts
|
|
640
640
|
interface IconProps$9 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -645,7 +645,7 @@ declare function MousePointer({
|
|
|
645
645
|
width,
|
|
646
646
|
height,
|
|
647
647
|
...props
|
|
648
|
-
}: IconProps$9):
|
|
648
|
+
}: IconProps$9): react_jsx_runtime13.JSX.Element;
|
|
649
649
|
//#endregion
|
|
650
650
|
//#region src/ui/icons/pencil.d.ts
|
|
651
651
|
interface IconProps$8 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -656,7 +656,7 @@ declare function PencilIcon({
|
|
|
656
656
|
width,
|
|
657
657
|
height,
|
|
658
658
|
...props
|
|
659
|
-
}: IconProps$8):
|
|
659
|
+
}: IconProps$8): react_jsx_runtime13.JSX.Element;
|
|
660
660
|
//#endregion
|
|
661
661
|
//#region src/ui/icons/rows-2.d.ts
|
|
662
662
|
interface IconProps$7 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -667,7 +667,7 @@ declare function Rows2({
|
|
|
667
667
|
width,
|
|
668
668
|
height,
|
|
669
669
|
...props
|
|
670
|
-
}: IconProps$7):
|
|
670
|
+
}: IconProps$7): react_jsx_runtime13.JSX.Element;
|
|
671
671
|
//#endregion
|
|
672
672
|
//#region src/ui/icons/split-square-vertical.d.ts
|
|
673
673
|
interface IconProps$6 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -678,7 +678,7 @@ declare function SplitSquareVertical({
|
|
|
678
678
|
width,
|
|
679
679
|
height,
|
|
680
680
|
...props
|
|
681
|
-
}: IconProps$6):
|
|
681
|
+
}: IconProps$6): react_jsx_runtime13.JSX.Element;
|
|
682
682
|
//#endregion
|
|
683
683
|
//#region src/ui/icons/square-code.d.ts
|
|
684
684
|
interface IconProps$5 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -689,7 +689,7 @@ declare function SquareCode({
|
|
|
689
689
|
width,
|
|
690
690
|
height,
|
|
691
691
|
...props
|
|
692
|
-
}: IconProps$5):
|
|
692
|
+
}: IconProps$5): react_jsx_runtime13.JSX.Element;
|
|
693
693
|
//#endregion
|
|
694
694
|
//#region src/ui/icons/strikethrough.d.ts
|
|
695
695
|
interface IconProps$4 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -700,7 +700,7 @@ declare function StrikethroughIcon({
|
|
|
700
700
|
width,
|
|
701
701
|
height,
|
|
702
702
|
...props
|
|
703
|
-
}: IconProps$4):
|
|
703
|
+
}: IconProps$4): react_jsx_runtime13.JSX.Element;
|
|
704
704
|
//#endregion
|
|
705
705
|
//#region src/ui/icons/text.d.ts
|
|
706
706
|
interface IconProps$3 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -711,7 +711,7 @@ declare function TextIcon({
|
|
|
711
711
|
width,
|
|
712
712
|
height,
|
|
713
713
|
...props
|
|
714
|
-
}: IconProps$3):
|
|
714
|
+
}: IconProps$3): react_jsx_runtime13.JSX.Element;
|
|
715
715
|
declare const Text: typeof TextIcon;
|
|
716
716
|
//#endregion
|
|
717
717
|
//#region src/ui/icons/text-quote.d.ts
|
|
@@ -723,7 +723,7 @@ declare function TextQuote({
|
|
|
723
723
|
width,
|
|
724
724
|
height,
|
|
725
725
|
...props
|
|
726
|
-
}: IconProps$2):
|
|
726
|
+
}: IconProps$2): react_jsx_runtime13.JSX.Element;
|
|
727
727
|
//#endregion
|
|
728
728
|
//#region src/ui/icons/underline.d.ts
|
|
729
729
|
interface IconProps$1 extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -734,7 +734,7 @@ declare function UnderlineIcon({
|
|
|
734
734
|
width,
|
|
735
735
|
height,
|
|
736
736
|
...props
|
|
737
|
-
}: IconProps$1):
|
|
737
|
+
}: IconProps$1): react_jsx_runtime13.JSX.Element;
|
|
738
738
|
//#endregion
|
|
739
739
|
//#region src/ui/icons/unlink.d.ts
|
|
740
740
|
interface IconProps extends React.SVGAttributes<SVGSVGElement> {
|
|
@@ -745,7 +745,7 @@ declare function UnlinkIcon({
|
|
|
745
745
|
width,
|
|
746
746
|
height,
|
|
747
747
|
...props
|
|
748
|
-
}: IconProps):
|
|
748
|
+
}: IconProps): react_jsx_runtime13.JSX.Element;
|
|
749
749
|
//#endregion
|
|
750
750
|
//#region src/ui/image-bubble-menu/default.d.ts
|
|
751
751
|
type ExcludableItem$1 = 'edit-link';
|
|
@@ -762,7 +762,7 @@ declare function ImageBubbleMenuDefault({
|
|
|
762
762
|
onHide,
|
|
763
763
|
className,
|
|
764
764
|
...rest
|
|
765
|
-
}: ImageBubbleMenuDefaultProps):
|
|
765
|
+
}: ImageBubbleMenuDefaultProps): react_jsx_runtime13.JSX.Element;
|
|
766
766
|
//#endregion
|
|
767
767
|
//#region src/ui/image-bubble-menu/edit-link.d.ts
|
|
768
768
|
interface ImageBubbleMenuEditLinkProps extends Omit<React.ComponentProps<'button'>, 'type'> {}
|
|
@@ -772,7 +772,7 @@ declare function ImageBubbleMenuEditLink({
|
|
|
772
772
|
onClick,
|
|
773
773
|
onMouseDown,
|
|
774
774
|
...rest
|
|
775
|
-
}: ImageBubbleMenuEditLinkProps):
|
|
775
|
+
}: ImageBubbleMenuEditLinkProps): react_jsx_runtime13.JSX.Element;
|
|
776
776
|
//#endregion
|
|
777
777
|
//#region src/ui/image-bubble-menu/root.d.ts
|
|
778
778
|
interface ImageBubbleMenuRootProps extends Omit<React.ComponentPropsWithoutRef<'div'>, 'children'> {
|
|
@@ -791,14 +791,14 @@ declare function ImageBubbleMenuRoot({
|
|
|
791
791
|
className,
|
|
792
792
|
children,
|
|
793
793
|
...rest
|
|
794
|
-
}: ImageBubbleMenuRootProps):
|
|
794
|
+
}: ImageBubbleMenuRootProps): react_jsx_runtime13.JSX.Element | null;
|
|
795
795
|
//#endregion
|
|
796
796
|
//#region src/ui/image-bubble-menu/toolbar.d.ts
|
|
797
797
|
interface ImageBubbleMenuToolbarProps extends React.ComponentProps<'div'> {}
|
|
798
798
|
declare function ImageBubbleMenuToolbar({
|
|
799
799
|
children,
|
|
800
800
|
...rest
|
|
801
|
-
}: ImageBubbleMenuToolbarProps):
|
|
801
|
+
}: ImageBubbleMenuToolbarProps): react_jsx_runtime13.JSX.Element | null;
|
|
802
802
|
//#endregion
|
|
803
803
|
//#region src/ui/image-bubble-menu/context.d.ts
|
|
804
804
|
interface ImageBubbleMenuContextValue {
|
|
@@ -837,7 +837,7 @@ declare function LinkBubbleMenuDefault({
|
|
|
837
837
|
onLinkApply,
|
|
838
838
|
onLinkRemove,
|
|
839
839
|
...rest
|
|
840
|
-
}: LinkBubbleMenuDefaultProps):
|
|
840
|
+
}: LinkBubbleMenuDefaultProps): react_jsx_runtime13.JSX.Element;
|
|
841
841
|
//#endregion
|
|
842
842
|
//#region src/ui/link-bubble-menu/edit-link.d.ts
|
|
843
843
|
interface LinkBubbleMenuEditLinkProps extends Omit<React.ComponentProps<'button'>, 'type'> {}
|
|
@@ -847,7 +847,7 @@ declare function LinkBubbleMenuEditLink({
|
|
|
847
847
|
onClick,
|
|
848
848
|
onMouseDown,
|
|
849
849
|
...rest
|
|
850
|
-
}: LinkBubbleMenuEditLinkProps):
|
|
850
|
+
}: LinkBubbleMenuEditLinkProps): react_jsx_runtime13.JSX.Element;
|
|
851
851
|
//#endregion
|
|
852
852
|
//#region src/ui/link-bubble-menu/form.d.ts
|
|
853
853
|
interface LinkBubbleMenuFormProps {
|
|
@@ -867,7 +867,7 @@ declare function LinkBubbleMenuForm({
|
|
|
867
867
|
onLinkApply,
|
|
868
868
|
onLinkRemove,
|
|
869
869
|
children
|
|
870
|
-
}: LinkBubbleMenuFormProps):
|
|
870
|
+
}: LinkBubbleMenuFormProps): react_jsx_runtime13.JSX.Element | null;
|
|
871
871
|
//#endregion
|
|
872
872
|
//#region src/ui/link-bubble-menu/open-link.d.ts
|
|
873
873
|
interface LinkBubbleMenuOpenLinkProps extends Omit<React.ComponentProps<'a'>, 'href' | 'target' | 'rel'> {}
|
|
@@ -875,7 +875,7 @@ declare function LinkBubbleMenuOpenLink({
|
|
|
875
875
|
className,
|
|
876
876
|
children,
|
|
877
877
|
...rest
|
|
878
|
-
}: LinkBubbleMenuOpenLinkProps):
|
|
878
|
+
}: LinkBubbleMenuOpenLinkProps): react_jsx_runtime13.JSX.Element;
|
|
879
879
|
//#endregion
|
|
880
880
|
//#region src/ui/link-bubble-menu/root.d.ts
|
|
881
881
|
interface LinkBubbleMenuRootProps extends Omit<React.ComponentPropsWithoutRef<'div'>, 'children'> {
|
|
@@ -894,14 +894,14 @@ declare function LinkBubbleMenuRoot({
|
|
|
894
894
|
className,
|
|
895
895
|
children,
|
|
896
896
|
...rest
|
|
897
|
-
}: LinkBubbleMenuRootProps):
|
|
897
|
+
}: LinkBubbleMenuRootProps): react_jsx_runtime13.JSX.Element | null;
|
|
898
898
|
//#endregion
|
|
899
899
|
//#region src/ui/link-bubble-menu/toolbar.d.ts
|
|
900
900
|
interface LinkBubbleMenuToolbarProps extends React.ComponentProps<'div'> {}
|
|
901
901
|
declare function LinkBubbleMenuToolbar({
|
|
902
902
|
children,
|
|
903
903
|
...rest
|
|
904
|
-
}: LinkBubbleMenuToolbarProps):
|
|
904
|
+
}: LinkBubbleMenuToolbarProps): react_jsx_runtime13.JSX.Element | null;
|
|
905
905
|
//#endregion
|
|
906
906
|
//#region src/ui/link-bubble-menu/unlink.d.ts
|
|
907
907
|
interface LinkBubbleMenuUnlinkProps extends Omit<React.ComponentProps<'button'>, 'type'> {}
|
|
@@ -911,7 +911,7 @@ declare function LinkBubbleMenuUnlink({
|
|
|
911
911
|
onClick,
|
|
912
912
|
onMouseDown,
|
|
913
913
|
...rest
|
|
914
|
-
}: LinkBubbleMenuUnlinkProps):
|
|
914
|
+
}: LinkBubbleMenuUnlinkProps): react_jsx_runtime13.JSX.Element;
|
|
915
915
|
//#endregion
|
|
916
916
|
//#region src/ui/link-bubble-menu/context.d.ts
|
|
917
917
|
interface LinkBubbleMenuContextValue {
|
|
@@ -977,7 +977,7 @@ declare function CommandList({
|
|
|
977
977
|
query,
|
|
978
978
|
selectedIndex,
|
|
979
979
|
onSelect
|
|
980
|
-
}: CommandListProps):
|
|
980
|
+
}: CommandListProps): react_jsx_runtime13.JSX.Element;
|
|
981
981
|
//#endregion
|
|
982
982
|
//#region src/ui/slash-command/root.d.ts
|
|
983
983
|
declare function SlashCommandRoot({
|