@opentiny/vue-design-smb 3.12.0 → 3.13.0-alpha.0
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/index.js +20 -1
- package/package.json +2 -2
- package/index.d.ts +0 -87
- package/src/alert/index.d.ts +0 -16
- package/src/dropdown/index.d.ts +0 -8
- package/src/dropdown-item/index.d.ts +0 -8
- package/src/form/index.d.ts +0 -10
- package/src/popconfirm/index.d.ts +0 -11
- package/src/select/index.d.ts +0 -11
- package/src/tree-node/index.d.ts +0 -11
- package/src/upload-list/index.d.ts +0 -13
package/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var Alert = {
|
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
17
|
};
|
|
18
|
+
var ActionMenu = {
|
|
19
|
+
icons: {}
|
|
20
|
+
};
|
|
18
21
|
var Popconfirm = {
|
|
19
22
|
icons: {
|
|
20
23
|
warning: iconWarningTriangle(),
|
|
@@ -38,11 +41,25 @@ var Form = {
|
|
|
38
41
|
messageType: "block",
|
|
39
42
|
hideRequiredAsterisk: true
|
|
40
43
|
};
|
|
44
|
+
var Pager = {
|
|
45
|
+
state: {
|
|
46
|
+
showJumperSufix: false,
|
|
47
|
+
align: "right",
|
|
48
|
+
totalFixedLeft: true
|
|
49
|
+
}
|
|
50
|
+
};
|
|
41
51
|
var Select = {
|
|
42
52
|
icons: {
|
|
43
53
|
dropdownIcon: iconDownWard()
|
|
44
54
|
},
|
|
45
55
|
state: {
|
|
56
|
+
sizeMap: {
|
|
57
|
+
default: 32,
|
|
58
|
+
mini: 24,
|
|
59
|
+
small: 36,
|
|
60
|
+
medium: 40
|
|
61
|
+
},
|
|
62
|
+
spacingHeight: 0,
|
|
46
63
|
initialInputHeight: 32
|
|
47
64
|
}
|
|
48
65
|
};
|
|
@@ -64,16 +81,18 @@ var UploadList = {
|
|
|
64
81
|
preViewComponent: "icon-fullscreen-left"
|
|
65
82
|
}
|
|
66
83
|
};
|
|
67
|
-
var version = "3.
|
|
84
|
+
var version = "3.13.0-alpha.0";
|
|
68
85
|
var index = {
|
|
69
86
|
name: "smb",
|
|
70
87
|
version,
|
|
71
88
|
components: {
|
|
72
89
|
Alert,
|
|
90
|
+
ActionMenu,
|
|
73
91
|
Popconfirm,
|
|
74
92
|
Dropdown,
|
|
75
93
|
DropdownItem,
|
|
76
94
|
Form,
|
|
95
|
+
Pager,
|
|
77
96
|
Select,
|
|
78
97
|
TreeNode,
|
|
79
98
|
UploadList
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentiny/vue-design-smb",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.0-alpha.0",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@opentiny/vue-icon": "~3.
|
|
8
|
+
"@opentiny/vue-icon": "~3.13.0-alpha.0"
|
|
9
9
|
},
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"module": "./index.js",
|
package/index.d.ts
DELETED
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
name: string;
|
|
3
|
-
version: string;
|
|
4
|
-
components: {
|
|
5
|
-
Alert: {
|
|
6
|
-
icons: {
|
|
7
|
-
warning: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
8
|
-
[key: string]: any;
|
|
9
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
10
|
-
info: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
11
|
-
[key: string]: any;
|
|
12
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
13
|
-
};
|
|
14
|
-
renderless: (props: any, hooks: any, { emit }: {
|
|
15
|
-
emit: any;
|
|
16
|
-
}, api: any) => {
|
|
17
|
-
close(): void;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
Popconfirm: {
|
|
21
|
-
icons: {
|
|
22
|
-
warning: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
23
|
-
[key: string]: any;
|
|
24
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
25
|
-
info: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
26
|
-
[key: string]: any;
|
|
27
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
Dropdown: {
|
|
31
|
-
icons: {
|
|
32
|
-
dropdownIcon: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
33
|
-
[key: string]: any;
|
|
34
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
DropdownItem: {
|
|
38
|
-
icons: {
|
|
39
|
-
leftWardArrow: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
40
|
-
[key: string]: any;
|
|
41
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
42
|
-
};
|
|
43
|
-
};
|
|
44
|
-
Form: {
|
|
45
|
-
icons: {
|
|
46
|
-
validateIcon: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
47
|
-
[key: string]: any;
|
|
48
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
49
|
-
};
|
|
50
|
-
messageType: string;
|
|
51
|
-
hideRequiredAsterisk: boolean;
|
|
52
|
-
};
|
|
53
|
-
Select: {
|
|
54
|
-
icons: {
|
|
55
|
-
dropdownIcon: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
56
|
-
[key: string]: any;
|
|
57
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
58
|
-
};
|
|
59
|
-
state: {
|
|
60
|
-
initialInputHeight: number;
|
|
61
|
-
};
|
|
62
|
-
};
|
|
63
|
-
TreeNode: {
|
|
64
|
-
icons: {
|
|
65
|
-
expanded: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
66
|
-
[key: string]: any;
|
|
67
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
68
|
-
collapse: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
69
|
-
[key: string]: any;
|
|
70
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
71
|
-
};
|
|
72
|
-
};
|
|
73
|
-
UploadList: {
|
|
74
|
-
state: {
|
|
75
|
-
progressType: string;
|
|
76
|
-
progressWidth: string;
|
|
77
|
-
progressStrokeWidth: number;
|
|
78
|
-
tooltipDisabled: boolean;
|
|
79
|
-
};
|
|
80
|
-
icons: {
|
|
81
|
-
closeComponent: string;
|
|
82
|
-
preViewComponent: string;
|
|
83
|
-
};
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
};
|
|
87
|
-
export default _default;
|
package/src/alert/index.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
icons: {
|
|
3
|
-
warning: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
4
|
-
[key: string]: any;
|
|
5
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
6
|
-
info: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
7
|
-
[key: string]: any;
|
|
8
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
9
|
-
};
|
|
10
|
-
renderless: (props: any, hooks: any, { emit }: {
|
|
11
|
-
emit: any;
|
|
12
|
-
}, api: any) => {
|
|
13
|
-
close(): void;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
16
|
-
export default _default;
|
package/src/dropdown/index.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
icons: {
|
|
3
|
-
dropdownIcon: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
4
|
-
[key: string]: any;
|
|
5
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
6
|
-
};
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
icons: {
|
|
3
|
-
leftWardArrow: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
4
|
-
[key: string]: any;
|
|
5
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
6
|
-
};
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
package/src/form/index.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
icons: {
|
|
3
|
-
validateIcon: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
4
|
-
[key: string]: any;
|
|
5
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
6
|
-
};
|
|
7
|
-
messageType: string;
|
|
8
|
-
hideRequiredAsterisk: boolean;
|
|
9
|
-
};
|
|
10
|
-
export default _default;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
icons: {
|
|
3
|
-
warning: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
4
|
-
[key: string]: any;
|
|
5
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
6
|
-
info: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
7
|
-
[key: string]: any;
|
|
8
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
export default _default;
|
package/src/select/index.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
icons: {
|
|
3
|
-
dropdownIcon: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
4
|
-
[key: string]: any;
|
|
5
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
6
|
-
};
|
|
7
|
-
state: {
|
|
8
|
-
initialInputHeight: number;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
export default _default;
|
package/src/tree-node/index.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
icons: {
|
|
3
|
-
expanded: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
4
|
-
[key: string]: any;
|
|
5
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
6
|
-
collapse: import("@vue/reactivity").Raw<import("vue/dist/vue.js").DefineComponent<{}, () => import("vue/dist/vue.js").VNode<import("vue/dist/vue.js").RendererNode, import("vue/dist/vue.js").RendererElement, {
|
|
7
|
-
[key: string]: any;
|
|
8
|
-
}>, {}, {}, {}, import("vue/dist/vue.js").ComponentOptionsMixin, import("vue/dist/vue.js").ComponentOptionsMixin, {}, string, import("vue/dist/vue.js").VNodeProps & import("vue/dist/vue.js").AllowedComponentProps & import("vue/dist/vue.js").ComponentCustomProps, Readonly<import("vue/dist/vue.js").ExtractPropTypes<{}>>, {}, {}>>;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
export default _default;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
state: {
|
|
3
|
-
progressType: string;
|
|
4
|
-
progressWidth: string;
|
|
5
|
-
progressStrokeWidth: number;
|
|
6
|
-
tooltipDisabled: boolean;
|
|
7
|
-
};
|
|
8
|
-
icons: {
|
|
9
|
-
closeComponent: string;
|
|
10
|
-
preViewComponent: string;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
export default _default;
|