@i18n-micro/devtools-ui 1.1.0 → 1.1.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.
@@ -1,5 +1,5 @@
1
- import { I18nDevToolsBridge, TranslationContent } from './interface';
2
1
  import { Locale } from '@i18n-micro/types';
2
+ import { I18nDevToolsBridge, TranslationContent } from './interface';
3
3
  /**
4
4
  * Adapter interface for accessing i18n instance data
5
5
  * Each framework package will implement this adapter for their specific i18n instance
@@ -3,7 +3,7 @@ interface LoaderProps {
3
3
  size?: 'sm' | 'md' | 'lg';
4
4
  }
5
5
  declare const _default: import('vue').DefineComponent<LoaderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<LoaderProps> & Readonly<{}>, {
6
- size: "sm" | "md" | "lg";
7
6
  message: string;
7
+ size: "sm" | "md" | "lg";
8
8
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
9
9
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import { InjectionKey } from 'vue';
2
- import { I18nDevToolsBridge, LocaleData, TranslationContent, ModuleOptions } from '../types';
2
+ import { I18nDevToolsBridge, LocaleData, ModuleOptions, TranslationContent } from '../types';
3
3
  export declare const I18N_STATE_KEY: InjectionKey<ReturnType<typeof createI18nState>>;
4
4
  export declare function createI18nState(): {
5
5
  isLoading: import('vue').Ref<boolean, boolean>;
package/dist/index.d.ts CHANGED
@@ -10,10 +10,10 @@ export { I18nDevToolsElement };
10
10
  * This should be called once before using the element
11
11
  */
12
12
  export declare function register(): void;
13
- export type { I18nDevToolsBridge } from './bridge/interface';
14
- export { createBridge } from './bridge/create-bridge';
15
13
  export type { BridgeAdapter, CreateBridgeOptions } from './bridge/create-bridge';
14
+ export { createBridge } from './bridge/create-bridge';
15
+ export type { I18nDevToolsBridge } from './bridge/interface';
16
16
  export { createRpcClient } from './rpc/client';
17
17
  export { setupRpcHost } from './rpc/host';
18
- export type { JsonRpcRequest, JsonRpcResponse, JsonRpcEvent } from './rpc/types';
19
- export type { LocaleData, TranslationContent, JSONValue, TreeNode, } from './types';
18
+ export type { JsonRpcEvent, JsonRpcRequest, JsonRpcResponse } from './rpc/types';
19
+ export type { JSONValue, LocaleData, TranslationContent, TreeNode, } from './types';