@oiij/chrome-tabs 0.0.14 → 0.0.16
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/dist/Tabs.vue.d.ts +3 -31
- package/package.json +7 -7
package/dist/Tabs.vue.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TabItemKey,
|
|
1
|
+
import { TabItemKey, TabsProps } from "./index.js";
|
|
2
2
|
import * as vue0 from "vue";
|
|
3
3
|
|
|
4
4
|
//#region src/Tabs.vue.d.ts
|
|
@@ -8,41 +8,13 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
} & {
|
|
9
9
|
suffix?: (props: typeof __VLS_23) => any;
|
|
10
10
|
};
|
|
11
|
-
declare const __VLS_base: vue0.DefineComponent<{
|
|
12
|
-
value?: TabItemKey;
|
|
13
|
-
colors?: {
|
|
14
|
-
active?: string;
|
|
15
|
-
primary?: string;
|
|
16
|
-
background?: string;
|
|
17
|
-
};
|
|
18
|
-
dropdown?: boolean;
|
|
19
|
-
addable?: boolean;
|
|
20
|
-
options?: TabsOption[];
|
|
21
|
-
loadingValue?: TabItemKey;
|
|
22
|
-
iconSize?: number;
|
|
23
|
-
contentClass?: string;
|
|
24
|
-
contentStyle?: vue0.CSSProperties | string;
|
|
25
|
-
}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {} & {
|
|
11
|
+
declare const __VLS_base: vue0.DefineComponent<TabsProps, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {} & {
|
|
26
12
|
click: (v: TabItemKey, index: number) => any;
|
|
27
13
|
close: (v: TabItemKey, index: number) => any;
|
|
28
14
|
contextmenu: (v: TabItemKey, index: number) => any;
|
|
29
15
|
"update:value": (v?: TabItemKey | null | undefined) => any;
|
|
30
16
|
add: () => any;
|
|
31
|
-
}, string, vue0.PublicProps, Readonly<{
|
|
32
|
-
value?: TabItemKey;
|
|
33
|
-
colors?: {
|
|
34
|
-
active?: string;
|
|
35
|
-
primary?: string;
|
|
36
|
-
background?: string;
|
|
37
|
-
};
|
|
38
|
-
dropdown?: boolean;
|
|
39
|
-
addable?: boolean;
|
|
40
|
-
options?: TabsOption[];
|
|
41
|
-
loadingValue?: TabItemKey;
|
|
42
|
-
iconSize?: number;
|
|
43
|
-
contentClass?: string;
|
|
44
|
-
contentStyle?: vue0.CSSProperties | string;
|
|
45
|
-
}> & Readonly<{
|
|
17
|
+
}, string, vue0.PublicProps, Readonly<TabsProps> & Readonly<{
|
|
46
18
|
onClick?: ((v: TabItemKey, index: number) => any) | undefined;
|
|
47
19
|
onClose?: ((v: TabItemKey, index: number) => any) | undefined;
|
|
48
20
|
onContextmenu?: ((v: TabItemKey, index: number) => any) | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oiij/chrome-tabs",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.16",
|
|
5
5
|
"description": "A Vue Component Likes Chrome Tabs Style.",
|
|
6
6
|
"author": "oiij",
|
|
7
7
|
"license": "MIT",
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
],
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"colord": "^2.9.3",
|
|
30
|
-
"vue": "^3.5.
|
|
31
|
-
"@oiij/use": "0.0.
|
|
32
|
-
"@oiij/css-render": "0.0.
|
|
30
|
+
"vue": "^3.5.26",
|
|
31
|
+
"@oiij/use": "0.0.32",
|
|
32
|
+
"@oiij/css-render": "0.0.9"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"colord": "^2.9.3",
|
|
36
|
-
"vue": "^3.5.
|
|
37
|
-
"@oiij/use": "0.0.
|
|
38
|
-
"@oiij/css-render": "0.0.
|
|
36
|
+
"vue": "^3.5.26",
|
|
37
|
+
"@oiij/use": "0.0.32",
|
|
38
|
+
"@oiij/css-render": "0.0.9"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|