
Company News
Jerod Santo Joins Socket as Head of Media
Allow myself to introduce... myself.
@templatical/media-library
Advanced tools
Media library for Templatical — composable, Vue components, and a standalone visual SDK.
Browse, upload, organize, crop, and replace media assets. Used by @templatical/editor behind a MediaProvider (the editor bundles the Browse UI — you do not install this package for init({ media })), and available as a standalone SDK for any app that needs a media manager.
npm install @templatical/media-library
Peer dep: vue@^3.5. Not needed next to @templatical/editor — that package already contains the modal.
Storage. The library is storage-agnostic. Pass a
MediaProvider— Cloud's adapter iscreateCloudMediaProviderfrom@templatical/core/cloud. See the media contract and the Cloud adapter.
import { init } from '@templatical/media-library';
import { createCloudMediaProvider } from '@templatical/core/cloud';
import '@templatical/media-library/style.css';
const media = await init({
container: '#media',
provider: createCloudMediaProvider(authManager),
onSelect(asset) {
console.log('Picked:', asset.url);
},
});
// Later
media.unmount();
onSelect is optional. accept narrows categories; omit it for every category. Any object implementing MediaProvider works — Cloud is one adapter.
Use MediaLibraryModal inside a Vue 3 app. See docs for the full prop reference.
import { MediaLibraryModal } from '@templatical/media-library';
import '@templatical/media-library/style.css';
<MediaLibraryModal
:visible="open"
:provider="provider"
:on-error="onError"
@select="onSelect"
@close="open = false"
/>
import { useMediaLibrary } from '@templatical/media-library';
import { createCloudMediaProvider } from '@templatical/core/cloud';
const lib = useMediaLibrary({
provider: createCloudMediaProvider(authManager),
onError(error) {
console.error(error);
},
});
For server-side or programmatic media operations, MediaApiClient is exported from @templatical/core/cloud. createCloudMediaProvider maps the response onto MediaProvider.
import { MediaApiClient, createCloudMediaProvider } from '@templatical/core/cloud';
const client = new MediaApiClient(authManager);
const response = await client.browseMedia({ folderId: null });
const provider = createCloudMediaProvider(authManager);
const page = await provider.list();
init(), unmount()MediaLibraryModal + 12 sub-components (grid, upload zone, folder tree, preview panel, edit/replace/import modals)useMediaLibrary, useMediaCategories, useMediaPicker, useI18nMediaAsset, MediaFolder, MediaCategory, MediaRequestContext, MediaUsageInfo, MediaResult (re-exported from @templatical/types)The MediaProvider / MediaAsset contract lives in @templatical/types.
When the editor mounts in its default shadow-DOM mode (shadowDom: true), the media library invocation teleports into the editor's shadow-aware popover root rather than document.body. The MediaLibraryModal accepts an optional popoverTarget?: HTMLElement | null prop and provides it to its three nested sub-modals (replace, edit, import-url) so the entire media UI lives inside the editor's shadow root. Standalone-SDK consumers (init({ container })) mount at document.body.
If you embed MediaLibraryModal manually inside another shadow-DOM-mounted UI, pass popoverTarget to keep its sub-modals scoped to your shadow root.
Full reference at docs.templatical.com.
FSL-1.1-MIT — free for any non-competing commercial use, automatically converts to MIT after 2 years per release.
FAQs
Media library management for Templatical email editor
The npm package @templatical/media-library receives a total of 3,617 weekly downloads. As such, @templatical/media-library popularity was classified as popular.
We found that @templatical/media-library demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Allow myself to introduce... myself.

Research
/Security News
A Twitch browser extension on Chrome and Firefox forwards users’ live OAuth session tokens through proxies controlled by a Russian bot service.

Security News
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.