vue-intlayer 7.3.13 → 7.3.15

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.
@@ -1,14 +1,11 @@
1
1
  import { DeepTransformContent as DeepTransformContentCore, IInterpreterPluginState as IInterpreterPluginStateCore, Plugins } from '@intlayer/core';
2
2
  import { DeclaredLocales, LocalesValues, NodeType } from '@intlayer/types';
3
+ import { IntlayerNode as IntlayerNodeCore } from './renderIntlayerNode';
3
4
  /** ---------------------------------------------
4
5
  * INTLAYER NODE PLUGIN
5
6
  * --------------------------------------------- */
6
7
  export type IntlayerNodeCond<T> = T extends number | string ? IntlayerNode<T> : never;
7
- export interface IntlayerNode<T, P = {}> {
8
- value: T;
9
- children?: any;
10
- additionalProps?: P;
11
- }
8
+ export type IntlayerNode<T, P = {}> = IntlayerNodeCore<T> & P;
12
9
  /** Translation plugin. Replaces node with a locale string if nodeType = Translation. */
13
10
  export declare const intlayerNodePlugins: Plugins;
14
11
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-intlayer",
3
- "version": "7.3.13",
3
+ "version": "7.3.15",
4
4
  "private": false,
5
5
  "description": "Easily internationalize i18n your Vue applications with type-safe multilingual content management.",
6
6
  "keywords": [
@@ -87,12 +87,12 @@
87
87
  "typecheck": "vue-tsc --noEmit --project tsconfig.types.json"
88
88
  },
89
89
  "dependencies": {
90
- "@intlayer/api": "7.3.13",
91
- "@intlayer/config": "7.3.13",
92
- "@intlayer/core": "7.3.13",
93
- "@intlayer/editor": "7.3.13",
94
- "@intlayer/types": "7.3.13",
95
- "@intlayer/unmerged-dictionaries-entry": "7.3.13"
90
+ "@intlayer/api": "7.3.15",
91
+ "@intlayer/config": "7.3.15",
92
+ "@intlayer/core": "7.3.15",
93
+ "@intlayer/editor": "7.3.15",
94
+ "@intlayer/types": "7.3.15",
95
+ "@intlayer/unmerged-dictionaries-entry": "7.3.15"
96
96
  },
97
97
  "devDependencies": {
98
98
  "@types/node": "24.10.1",
@@ -105,13 +105,13 @@
105
105
  "rimraf": "6.1.2",
106
106
  "tsdown": "0.16.8",
107
107
  "typescript": "5.9.3",
108
- "vite": "7.2.6",
108
+ "vite": "7.2.7",
109
109
  "vite-plugin-dts": "4.5.4",
110
110
  "vitest": "4.0.15",
111
111
  "vue-tsc": "3.1.5"
112
112
  },
113
113
  "peerDependencies": {
114
- "intlayer": "7.3.13",
114
+ "intlayer": "7.3.15",
115
115
  "vue": ">=3.0.0"
116
116
  },
117
117
  "peerDependenciesMeta": {