@select-org/select-post-builder 1.1.39 → 1.1.42
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 +16 -16
- package/dist/post-builder.js +3868 -5341
- package/package.json +22 -22
package/dist/index.d.ts
CHANGED
|
@@ -281,17 +281,6 @@ declare type WithoutModalProps = BaseProps & {
|
|
|
281
281
|
export { }
|
|
282
282
|
|
|
283
283
|
|
|
284
|
-
declare module '@tiptap/core' {
|
|
285
|
-
interface Commands<ReturnType> {
|
|
286
|
-
poll: {
|
|
287
|
-
insertPoll: (attrs: {
|
|
288
|
-
choices: PollChoiceItem[];
|
|
289
|
-
}) => ReturnType;
|
|
290
|
-
};
|
|
291
|
-
}
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
|
|
295
284
|
declare module '@tiptap/core' {
|
|
296
285
|
interface Commands<ReturnType> {
|
|
297
286
|
media: {
|
|
@@ -320,6 +309,17 @@ declare module '@tiptap/core' {
|
|
|
320
309
|
}
|
|
321
310
|
|
|
322
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
323
|
declare module '@tiptap/core' {
|
|
324
324
|
interface Commands<ReturnType> {
|
|
325
325
|
customLink: {
|