@fluenti/vue 0.6.0 → 0.6.1
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/vue/src/msg.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { msg } from '
|
|
1
|
+
export { msg } from '@fluenti/core';
|
|
2
2
|
//# sourceMappingURL=msg.d.ts.map
|
package/dist/vue/src/plugin.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { App, Ref } from 'vue';
|
|
2
|
-
import { AllMessages, Locale, LocalizedString, Messages, CompiledMessage, MessageDescriptor, DiagnosticsConfig, CustomFormatter } from '
|
|
2
|
+
import { AllMessages, Locale, LocalizedString, Messages, CompiledMessage, MessageDescriptor, DiagnosticsConfig, CustomFormatter } from '@fluenti/core';
|
|
3
3
|
/** Compiled message chunk loader for lazy locale loading */
|
|
4
4
|
export type ChunkLoader = (locale: string) => Promise<Record<string, CompiledMessage> | {
|
|
5
5
|
default: Record<string, CompiledMessage>;
|
package/dist/vue/src/server.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FluentiCoreInstanceFull, Locale, Messages, DateFormatOptions, NumberFormatOptions } from '
|
|
2
|
-
export { detectLocale, getSSRLocaleScript, getHydratedLocale, isRTL, getDirection } from '
|
|
3
|
-
export type { DetectLocaleOptions } from '
|
|
1
|
+
import { FluentiCoreInstanceFull, Locale, Messages, DateFormatOptions, NumberFormatOptions } from '@fluenti/core';
|
|
2
|
+
export { detectLocale, getSSRLocaleScript, getHydratedLocale, isRTL, getDirection } from '@fluenti/core';
|
|
3
|
+
export type { DetectLocaleOptions } from '@fluenti/core';
|
|
4
4
|
/**
|
|
5
5
|
* Configuration for `createServerI18n`.
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Plugin } from 'vite';
|
|
2
|
-
import { FluentiPluginOptions } from '
|
|
3
|
-
export type { FluentiPluginOptions as FluentiVueOptions } from '
|
|
2
|
+
import { FluentiPluginOptions } from '@fluenti/vite-plugin';
|
|
3
|
+
export type { FluentiPluginOptions as FluentiVueOptions } from '@fluenti/vite-plugin';
|
|
4
4
|
/**
|
|
5
5
|
* Fluenti Vue 3 Vite plugin.
|
|
6
6
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluenti/vue",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Vue 3 compile-time i18n — v-t directive, Trans/Plural/Select components, useI18n composable",
|
|
6
6
|
"homepage": "https://fluenti.dev",
|
|
@@ -87,8 +87,8 @@
|
|
|
87
87
|
}
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@fluenti/core": "0.6.
|
|
91
|
-
"@fluenti/vite-plugin": "0.6.
|
|
90
|
+
"@fluenti/core": "0.6.1",
|
|
91
|
+
"@fluenti/vite-plugin": "0.6.1"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
94
|
"typescript": "^5.9",
|