next-element-vue 0.8.0 → 0.8.1-dev.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.
@@ -5,7 +5,7 @@ export declare const NextTabs: import("../../utils/install").SFCWithInstall<impo
5
5
  default: string;
6
6
  };
7
7
  tabs: {
8
- type: import("vue").PropType<import("./src/interface").TabInterface[]>;
8
+ type: import("vue").PropType<import("./src/interface").ITabItem[]>;
9
9
  default: () => any[];
10
10
  };
11
11
  }>, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "select" | "close")[], "change" | "select" | "close", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
@@ -14,7 +14,7 @@ export declare const NextTabs: import("../../utils/install").SFCWithInstall<impo
14
14
  default: string;
15
15
  };
16
16
  tabs: {
17
- type: import("vue").PropType<import("./src/interface").TabInterface[]>;
17
+ type: import("vue").PropType<import("./src/interface").ITabItem[]>;
18
18
  default: () => any[];
19
19
  };
20
20
  }>> & Readonly<{
@@ -23,6 +23,6 @@ export declare const NextTabs: import("../../utils/install").SFCWithInstall<impo
23
23
  onClose?: (...args: any[]) => any;
24
24
  }>, {
25
25
  activeTab: string | number;
26
- tabs: import("./src/interface").TabInterface[];
26
+ tabs: import("./src/interface").ITabItem[];
27
27
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>> & Record<string, any>;
28
28
  export default NextTabs;
@@ -1,12 +1,12 @@
1
1
  import type { PropType } from 'vue';
2
- import type { TabInterface } from './interface';
2
+ import type { ITabItem } from './interface';
3
3
  declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  activeTab: {
5
5
  type: (StringConstructor | NumberConstructor)[];
6
6
  default: string;
7
7
  };
8
8
  tabs: {
9
- type: PropType<TabInterface[]>;
9
+ type: PropType<ITabItem[]>;
10
10
  default: () => any[];
11
11
  };
12
12
  }>, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "select" | "close")[], "change" | "select" | "close", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
@@ -15,7 +15,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
15
15
  default: string;
16
16
  };
17
17
  tabs: {
18
- type: PropType<TabInterface[]>;
18
+ type: PropType<ITabItem[]>;
19
19
  default: () => any[];
20
20
  };
21
21
  }>> & Readonly<{
@@ -23,7 +23,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
23
23
  onSelect?: (...args: any[]) => any;
24
24
  onClose?: (...args: any[]) => any;
25
25
  }>, {
26
- tabs: TabInterface[];
26
+ tabs: ITabItem[];
27
27
  activeTab: string | number;
28
28
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
29
29
  export default _default;
@@ -1,4 +1,4 @@
1
- export interface TabInterface {
1
+ export interface ITabItem {
2
2
  name?: string;
3
3
  title: string;
4
4
  path: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-element-vue",
3
- "version": "0.8.0",
3
+ "version": "0.8.1-dev.1",
4
4
  "author": {
5
5
  "name": "huangteng",
6
6
  "email": "junehunter@163.com"