@select-org/select-post-builder 1.1.42 → 1.1.43
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/index.d.ts +11 -11
- package/dist/post-builder.cjs.js +167 -24
- package/dist/post-builder.js +44428 -18095
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -309,17 +309,6 @@ declare module '@tiptap/core' {
|
|
|
309
309
|
}
|
|
310
310
|
|
|
311
311
|
|
|
312
|
-
declare module '@tiptap/core' {
|
|
313
|
-
interface Commands<ReturnType> {
|
|
314
|
-
poll: {
|
|
315
|
-
insertPoll: (attrs: {
|
|
316
|
-
choices: PollChoiceItem[];
|
|
317
|
-
}) => ReturnType;
|
|
318
|
-
};
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
|
|
323
312
|
declare module '@tiptap/core' {
|
|
324
313
|
interface Commands<ReturnType> {
|
|
325
314
|
customLink: {
|
|
@@ -364,6 +353,17 @@ declare module '@tiptap/core' {
|
|
|
364
353
|
}
|
|
365
354
|
|
|
366
355
|
|
|
356
|
+
declare module '@tiptap/core' {
|
|
357
|
+
interface Commands<ReturnType> {
|
|
358
|
+
poll: {
|
|
359
|
+
insertPoll: (attrs: {
|
|
360
|
+
choices: PollChoiceItem[];
|
|
361
|
+
}) => ReturnType;
|
|
362
|
+
};
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
|
|
367
367
|
declare module '@tiptap/core' {
|
|
368
368
|
interface Commands<ReturnType> {
|
|
369
369
|
smartMediaUpload: {
|