@kolkrabbi/kol-component 0.143.0 → 0.144.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/package.json +1 -1
- package/src/index.js +1 -1
- package/src/organisms/MediaLibrary.jsx +0 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-component",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.144.0",
|
|
4
4
|
"description": "KOL design-system components — atoms through organisms, emitting canonical kol-* classes. Pairs with @kolkrabbi/kol-theme for styling.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
package/src/index.js
CHANGED
|
@@ -134,7 +134,7 @@ export { default as SectionFaq } from './organisms/SectionFaq.jsx'
|
|
|
134
134
|
export { default as LoaderOverlay } from './utilities/LoaderOverlay.jsx'
|
|
135
135
|
/* dev chrome: name an element, agree on a cell, emit one sync line */
|
|
136
136
|
export { default as QuadrantSync } from './utilities/QuadrantSync.jsx'
|
|
137
|
-
export { default as MediaLibrary, MediaLibraryProvider, useMediaLibrary, MediaPicker
|
|
137
|
+
export { default as MediaLibrary, MediaLibraryProvider, useMediaLibrary, MediaPicker } from './organisms/MediaLibrary.jsx'
|
|
138
138
|
export { default as MediaTileGallery } from './organisms/MediaTileGallery.jsx'
|
|
139
139
|
export { default as MediaViewer } from './organisms/MediaViewer.jsx'
|
|
140
140
|
export { default as SettingsPanel, LabeledControlSection, SettingsRow, SettingsSwitch, SettingsChoice, SettingsMulti, SettingsChipRow, SettingsFooter } from './organisms/SettingsPanel.jsx'
|
|
@@ -1019,9 +1019,3 @@ export function MediaPicker({ open, client, accept = 'all', onClose, onPick }) {
|
|
|
1019
1019
|
/>
|
|
1020
1020
|
)
|
|
1021
1021
|
}
|
|
1022
|
-
|
|
1023
|
-
/** @deprecated 2026-08-01 — alias of `MediaLibrary variant="page"`. Drops when
|
|
1024
|
-
* nobody imports it (04-retirements.md). */
|
|
1025
|
-
export function MediaBrowser({ client, accept = 'all', onSelect = null, ...rest }) {
|
|
1026
|
-
return <MediaLibrary variant="page" client={client} accept={accept} onSelect={onSelect} {...rest} />
|
|
1027
|
-
}
|