@maxtropy/v-components 0.1.2-beta.0 → 0.1.2-beta.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.
@@ -12,4 +12,8 @@ export interface UserInfo {
12
12
  currentId?: number | null;
13
13
  }
14
14
  export declare function getCurrent(): Promise<UserInfo>;
15
+ export interface UserConfig {
16
+ customerUrl?: string;
17
+ }
18
+ export declare function getConfig(): Promise<UserConfig>;
15
19
  export declare function logout(): Promise<void>;
@@ -1,16 +1,12 @@
1
1
  interface Props {
2
2
  customClass?: string;
3
- localEnv?: string;
4
3
  }
5
4
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
6
5
  customClass: string;
7
- localEnv: string;
8
6
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
9
7
  customClass: string;
10
- localEnv: string;
11
8
  }>>>, {
12
9
  customClass: string;
13
- localEnv: string;
14
10
  }>;
15
11
  export default _default;
16
12
  declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxtropy/v-components",
3
- "version": "0.1.2-beta.0",
3
+ "version": "0.1.2-beta.1",
4
4
  "files": [
5
5
  "dist"
6
6
  ],