@codingfactory/mediables-vue 2.10.0 → 2.11.0
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/{PixiFrameExporter-hR8D733U.js → PixiFrameExporter-D9swI3PO.js} +2 -2
- package/dist/{PixiFrameExporter-hR8D733U.js.map → PixiFrameExporter-D9swI3PO.js.map} +1 -1
- package/dist/{PixiFrameExporter-CZ20kvpH.cjs → PixiFrameExporter-apC6SqIv.cjs} +2 -2
- package/dist/{PixiFrameExporter-CZ20kvpH.cjs.map → PixiFrameExporter-apC6SqIv.cjs.map} +1 -1
- package/dist/{index-DDDfEJgO.js → index-BFYtEc-Y.js} +6734 -6716
- package/dist/{index-DDDfEJgO.js.map → index-BFYtEc-Y.js.map} +1 -1
- package/dist/{index-CeeQFiXM.cjs → index-CAPdRZVb.cjs} +23 -23
- package/dist/{index-CeeQFiXM.cjs.map → index-CAPdRZVb.cjs.map} +1 -1
- package/dist/mediables-vue.cjs +1 -1
- package/dist/mediables-vue.mjs +1 -1
- package/dist/style.css +1 -1
- package/dist/types/mediaLibraryPicker.d.ts +12 -1
- package/package.json +1 -1
|
@@ -275,11 +275,22 @@ export interface MediaManagementTabsSlotProps {
|
|
|
275
275
|
trashTab: string;
|
|
276
276
|
};
|
|
277
277
|
}
|
|
278
|
-
/**
|
|
278
|
+
/**
|
|
279
|
+
* Payload for the management-view `bulk-actions` slot.
|
|
280
|
+
*
|
|
281
|
+
* `selectedItemIds`, `selectedItems`, and `clearSelection` were added in
|
|
282
|
+
* 2.11.0 so host apps can build custom bulk actions (e.g. "Create gallery
|
|
283
|
+
* from selection", "Create post from selection") without re-querying or
|
|
284
|
+
* reaching into the component's internal selection state. Existing fields
|
|
285
|
+
* remain unchanged for backward compatibility.
|
|
286
|
+
*/
|
|
279
287
|
export interface MediaManagementBulkActionsSlotProps {
|
|
280
288
|
selectedCount: number;
|
|
289
|
+
selectedItemIds: string[];
|
|
290
|
+
selectedItems: Media[];
|
|
281
291
|
isDeleting: boolean;
|
|
282
292
|
onBulkDelete: () => void | Promise<void>;
|
|
293
|
+
clearSelection: () => void;
|
|
283
294
|
labels: {
|
|
284
295
|
deleteButton: string;
|
|
285
296
|
selectedCount: (count: number) => string;
|