@v-c/tabs 0.0.2 → 0.0.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.
@@ -57,12 +57,9 @@ export interface TabPaneProps {
57
57
  active?: boolean;
58
58
  destroyOnHidden?: boolean;
59
59
  }
60
- export interface Tab extends Omit<TabPaneProps, 'tab' | 'children' | 'className'> {
60
+ export interface Tab extends Omit<TabPaneProps, 'tab'> {
61
61
  key: string;
62
62
  label: VueNode;
63
- class?: string;
64
- style?: CSSProperties;
65
- content?: VueNode;
66
63
  }
67
64
  export type moreIcon = VueNode;
68
65
  export type MoreProps = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@v-c/tabs",
3
3
  "type": "module",
4
- "version": "0.0.2",
4
+ "version": "0.0.3",
5
5
  "description": "tabs ui component for react",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -30,10 +30,10 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "@v-c/dropdown": "^1.0.0",
33
- "@v-c/overflow": "^1.0.0",
34
- "@v-c/menu": "^1.0.0",
35
33
  "@v-c/util": "^1.0.1",
36
- "@v-c/resize-observer": "^1.0.0"
34
+ "@v-c/menu": "^1.0.0",
35
+ "@v-c/resize-observer": "^1.0.0",
36
+ "@v-c/overflow": "^1.0.0"
37
37
  },
38
38
  "scripts": {
39
39
  "build": "vite build",