@i18n-micro/devtools-ui 1.2.2 → 1.2.3
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 +0 -7
- package/dist/composables/useI18nState.d.ts +4 -0
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.es.js +1961 -1938
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +7 -7
- package/dist/index.umd.js.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/vite/plugin.mjs +6 -5
- package/dist/vite/plugin.mjs.map +1 -1
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -29,6 +29,7 @@ export declare function createI18nState(): {
|
|
|
29
29
|
plugin?: boolean | undefined;
|
|
30
30
|
hooks?: boolean | undefined;
|
|
31
31
|
components?: boolean | undefined;
|
|
32
|
+
serverTranslationPreload?: boolean | undefined;
|
|
32
33
|
defaultLocale?: string | undefined;
|
|
33
34
|
apiBaseUrl?: string | undefined;
|
|
34
35
|
apiBaseClientHost?: string | undefined;
|
|
@@ -94,6 +95,7 @@ export declare function createI18nState(): {
|
|
|
94
95
|
plugin?: boolean | undefined;
|
|
95
96
|
hooks?: boolean | undefined;
|
|
96
97
|
components?: boolean | undefined;
|
|
98
|
+
serverTranslationPreload?: boolean | undefined;
|
|
97
99
|
defaultLocale?: string | undefined;
|
|
98
100
|
apiBaseUrl?: string | undefined;
|
|
99
101
|
apiBaseClientHost?: string | undefined;
|
|
@@ -184,6 +186,7 @@ export declare function useI18nState(): {
|
|
|
184
186
|
plugin?: boolean | undefined;
|
|
185
187
|
hooks?: boolean | undefined;
|
|
186
188
|
components?: boolean | undefined;
|
|
189
|
+
serverTranslationPreload?: boolean | undefined;
|
|
187
190
|
defaultLocale?: string | undefined;
|
|
188
191
|
apiBaseUrl?: string | undefined;
|
|
189
192
|
apiBaseClientHost?: string | undefined;
|
|
@@ -249,6 +252,7 @@ export declare function useI18nState(): {
|
|
|
249
252
|
plugin?: boolean | undefined;
|
|
250
253
|
hooks?: boolean | undefined;
|
|
251
254
|
components?: boolean | undefined;
|
|
255
|
+
serverTranslationPreload?: boolean | undefined;
|
|
252
256
|
defaultLocale?: string | undefined;
|
|
253
257
|
apiBaseUrl?: string | undefined;
|
|
254
258
|
apiBaseClientHost?: string | undefined;
|
package/dist/index.d.cts
CHANGED
|
@@ -16,4 +16,4 @@ export type { I18nDevToolsBridge } from './bridge/interface';
|
|
|
16
16
|
export { createRpcClient } from './rpc/client';
|
|
17
17
|
export { setupRpcHost } from './rpc/host';
|
|
18
18
|
export type { JsonRpcEvent, JsonRpcRequest, JsonRpcResponse } from './rpc/types';
|
|
19
|
-
export type { JSONValue, LocaleData, TranslationContent, TreeNode
|
|
19
|
+
export type { JSONValue, LocaleData, TranslationContent, TreeNode } from './types';
|
package/dist/index.d.ts
CHANGED
|
@@ -16,4 +16,4 @@ export type { I18nDevToolsBridge } from './bridge/interface';
|
|
|
16
16
|
export { createRpcClient } from './rpc/client';
|
|
17
17
|
export { setupRpcHost } from './rpc/host';
|
|
18
18
|
export type { JsonRpcEvent, JsonRpcRequest, JsonRpcResponse } from './rpc/types';
|
|
19
|
-
export type { JSONValue, LocaleData, TranslationContent, TreeNode
|
|
19
|
+
export type { JSONValue, LocaleData, TranslationContent, TreeNode } from './types';
|