@bluepic/embed 0.4.0-next.111 → 0.4.0-next.113
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/bluepic-embed.iife.js +95 -94
- package/dist/bluepic-embed.umd.js +101 -100
- package/dist/embed/embed.d.ts +51 -1
- package/dist/main.cjs +89 -88
- package/dist/main.d.ts +8 -0
- package/dist/main.mjs +14924 -14784
- package/dist/style.css +1 -1
- package/dist/theme/resolve.d.ts +2 -0
- package/dist/theme/tokens.d.ts +31 -3
- package/dist/theme/types-contract.d.ts +13 -0
- package/dist/theme.cjs +1 -0
- package/dist/theme.mjs +1299 -0
- package/dist/util/useTheme.d.ts +6 -0
- package/package.json +9 -3
package/dist/main.d.ts
CHANGED
|
@@ -67,9 +67,17 @@ export { default as BluepicLogo } from './components/BluepicLogo.vue';
|
|
|
67
67
|
export * from './util/bluepicEmbed';
|
|
68
68
|
export * from './util/useTheme';
|
|
69
69
|
export * from './theme';
|
|
70
|
+
/**
|
|
71
|
+
* @deprecated Legacy preset dumps (theme system v1). They only exist so campaigns without
|
|
72
|
+
* `config.theme` keep rendering unchanged. New themes are `ThemeInput`s resolved by `resolveTheme()`
|
|
73
|
+
* (see `THEME_PRESETS` / `THEME_HOUSE_PRESETS`). Do not build new features on these.
|
|
74
|
+
*/
|
|
70
75
|
export { default as BxEmbedThemeDarkmode } from './styles/darkmode.scss?raw';
|
|
76
|
+
/** @deprecated see BxEmbedThemeDarkmode */
|
|
71
77
|
export { default as BxEmbedThemeLightmode } from './styles/lightmode.scss?raw';
|
|
78
|
+
/** @deprecated see BxEmbedThemeDarkmode — high contrast is `{ contrast: 'high' }` in theme v2 */
|
|
72
79
|
export { default as BxEmbedThemeDarkmodeWcag } from './styles/darkmode-wcag.scss?raw';
|
|
80
|
+
/** @deprecated see BxEmbedThemeDarkmode — high contrast is `{ contrast: 'high' }` in theme v2 */
|
|
73
81
|
export { default as BxEmbedThemeLightmodeWcag } from './styles/lightmode-wcag.scss?raw';
|
|
74
82
|
export { initEmbeds } from './embed/embed';
|
|
75
83
|
export { getInitials } from './util/getInitials';
|