svelte-intlayer 8.9.7 → 8.10.0-canary.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/README.md CHANGED
@@ -67,6 +67,7 @@ With **per-locale content files**, **TypeScript autocompletion**, **tree-shakabl
67
67
  | <img src="https://github.com/aymericzip/intlayer/blob/main/docs/assets/mcp.png?raw=true" alt="Feature" width="700"> | **MCP Server Integration**<br><br>Provides an MCP (Model Context Protocol) server for IDE automation, enabling seamless content management and i18n workflows directly within your development environment. <br><br> - [MCP Server](https://github.com/aymericzip/intlayer/blob/main/docs/docs/en/mcp_server.md) |
68
68
  | <img src="https://github.com/aymericzip/intlayer/blob/main/docs/assets/vscode_extension.png?raw=true" alt="Feature" width="700"> | **VSCode Extension**<br><br>Intlayer provides a VSCode extension to help you manage your content and translations, building your dictionaries, translating your content, and more. <br><br> - [VSCode Extension](https://intlayer.org/doc/vs-code-extension) |
69
69
  | <img src="https://github.com/aymericzip/intlayer/blob/main/docs/assets/interoperability.png?raw=true" alt="Feature" width="700"> | **Interoperability**<br><br>Allow interoperability with react-i18next, next-i18next, next-intl, react-intl, vue-i18n. <br><br> - [Intlayer and react-intl](https://intlayer.org/blog/intlayer-with-react-intl) <br> - [Intlayer and next-intl](https://intlayer.org/blog/intlayer-with-next-intl) <br> - [Intlayer and next-i18next](https://intlayer.org/blog/intlayer-with-next-i18next) <br> - [Intlayer and vue-i18n](https://intlayer.org/blog/intlayer-with-vue-i18n) |
70
+ | <img src="https://github.com/aymericzip/intlayer/blob/main/docs/assets/benchmark.png?raw=true" alt="Feature" width="700"> | **Performances & Benchmark**<br><br>Uses advanced tree-shaking and dynamic loading to boost performances and keep the solution as light as possible. <br><br> - [Performances & Benchmark](https://intlayer.org/doc/benchmark) |
70
71
 
71
72
  ---
72
73
 
@@ -249,6 +250,19 @@ Explore our comprehensive documentation to get started with Intlayer and learn h
249
250
  </ul>
250
251
  </details>
251
252
 
253
+ ## Multilingual content management system
254
+
255
+ More than an i18n library, Intlayer is a complete **multilingual content management system**. A full CMS is available for free at [app.intlayer.org](https://app.intlayer.org).
256
+
257
+ Intlayer connects **developers**, **copywriters**, and **AI agents** in one workflow for creating and maintaining multilingual websites effortlessly.Intlayer replaces the following stack in a single solution:
258
+
259
+ - i18n solutions (e.g. `i18next`, `next-intl`, `vue-i18n`)
260
+ - TMSs (Translation Management Systems) (e.g. Crowdin, Phrase, Lokalise)
261
+ - Feature flags
262
+ - Headless CMSs (e.g. Contentful, Strapi, Sanity)
263
+
264
+ ![CMS Preview](https://github.com/aymericzip/intlayer/blob/main/docs/assets/CMS.png?raw=true)
265
+
252
266
  ## 🌐 Readme in other languages
253
267
 
254
268
  <p align="center">
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
- export let Renderer: any = undefined;
3
- export let rendererProps: Record<string, any> = {};
4
- export let value: any = undefined;
2
+ export let Renderer: any = undefined;
3
+ export let rendererProps: Record<string, any> = {};
4
+ export let value: any = undefined;
5
5
  </script>
6
6
 
7
7
  {#if typeof Renderer === 'string'}
@@ -6,6 +6,7 @@ import type { HTMLComponents } from './types';
6
6
  export const components: HTMLComponents<'permissive', {}> = {};
7
7
 
8
8
  let customRenderHTML: ((html: string, overrides?: any) => string) | undefined;
9
+
9
10
  export { customRenderHTML as renderHTML };
10
11
 
11
12
  const internalRenderHTML = (html: string, overrides?: any) => {
@@ -5,7 +5,8 @@ import { setMarkdownContext } from './context';
5
5
 
6
6
  export const components: HTMLComponents<'permissive', {}> | undefined =
7
7
  undefined;
8
- export const wrapper: string | import('svelte').ComponentType | undefined = undefined;
8
+ export const wrapper: string | import('svelte').ComponentType | undefined =
9
+ undefined;
9
10
  export const forceBlock: boolean | undefined = undefined;
10
11
  export const forceInline: boolean | undefined = undefined;
11
12
  export const preserveFrontmatter: boolean | undefined = undefined;
@@ -19,6 +20,7 @@ let customRenderMarkdown:
19
20
  wrapper?: string | import('svelte').ComponentType
20
21
  ) => string | Promise<string>)
21
22
  | undefined;
23
+
22
24
  export { customRenderMarkdown as renderMarkdown };
23
25
 
24
26
  $: baseOptions = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-intlayer",
3
- "version": "8.9.7",
3
+ "version": "8.10.0-canary.0",
4
4
  "description": "Easily internationalize i18n your Svelte applications with type-safe multilingual content management.",
5
5
  "keywords": [
6
6
  "intlayer",
@@ -82,17 +82,17 @@
82
82
  "typecheck": "tsc --noEmit --project tsconfig.types.json"
83
83
  },
84
84
  "dependencies": {
85
- "@intlayer/api": "8.9.7",
86
- "@intlayer/config": "8.9.7",
87
- "@intlayer/core": "8.9.7",
88
- "@intlayer/editor": "8.9.7",
89
- "@intlayer/types": "8.9.7"
85
+ "@intlayer/api": "8.10.0-canary.0",
86
+ "@intlayer/config": "8.10.0-canary.0",
87
+ "@intlayer/core": "8.10.0-canary.0",
88
+ "@intlayer/editor": "8.10.0-canary.0",
89
+ "@intlayer/types": "8.10.0-canary.0"
90
90
  },
91
91
  "devDependencies": {
92
92
  "@sveltejs/adapter-auto": "7.0.1",
93
93
  "@sveltejs/package": "2.5.7",
94
94
  "@sveltejs/vite-plugin-svelte": "7.1.2",
95
- "@types/node": "25.8.0",
95
+ "@types/node": "25.9.0",
96
96
  "@utils/ts-config": "1.0.4",
97
97
  "@utils/ts-config-types": "1.0.4",
98
98
  "@utils/tsdown-config": "1.0.4",