@select-org/select-post-builder 1.1.0 → 1.1.2

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 CHANGED
@@ -186,30 +186,6 @@ declare type WithoutModalProps = BaseProps & {
186
186
  export { }
187
187
 
188
188
 
189
- declare module '@tiptap/core' {
190
- interface Commands<ReturnType> {
191
- media: {
192
- /**
193
- * Insert a media node (image, video, or audio)
194
- */
195
- insertMedia: (options: MediaAttrs) => ReturnType;
196
- /**
197
- * Update media node attributes by uid
198
- */
199
- updateMediaByUid: (uid: string, attrs: Partial<MediaAttrs>) => ReturnType;
200
- /**
201
- * Delete media node by uid
202
- */
203
- deleteMediaByUid: (uid: string) => ReturnType;
204
- /**
205
- * Update media upload progress by uid
206
- */
207
- updateMediaProgress: (uid: string, progress: number) => ReturnType;
208
- };
209
- }
210
- }
211
-
212
-
213
189
  declare module '@tiptap/core' {
214
190
  interface Commands<ReturnType> {
215
191
  poll: {
@@ -261,6 +237,30 @@ declare module '@tiptap/core' {
261
237
  }
262
238
 
263
239
 
240
+ declare module '@tiptap/core' {
241
+ interface Commands<ReturnType> {
242
+ media: {
243
+ /**
244
+ * Insert a media node (image, video, or audio)
245
+ */
246
+ insertMedia: (options: MediaAttrs) => ReturnType;
247
+ /**
248
+ * Update media node attributes by uid
249
+ */
250
+ updateMediaByUid: (uid: string, attrs: Partial<MediaAttrs>) => ReturnType;
251
+ /**
252
+ * Delete media node by uid
253
+ */
254
+ deleteMediaByUid: (uid: string) => ReturnType;
255
+ /**
256
+ * Update media upload progress by uid
257
+ */
258
+ updateMediaProgress: (uid: string, progress: number) => ReturnType;
259
+ };
260
+ }
261
+ }
262
+
263
+
264
264
  declare module '@tiptap/core' {
265
265
  interface Commands<ReturnType> {
266
266
  smartMediaUpload: {