@opentiny/vue-design-smb 3.10.0 → 3.11.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.d.ts +14 -1
- package/index.js +15 -4
- package/package.json +2 -2
- package/src/dropdown/index.d.ts +1 -1
- package/src/form/index.d.ts +4 -0
- package/src/tree-node/index.d.ts +11 -0
package/index.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ declare const _default: {
|
|
|
29
29
|
};
|
|
30
30
|
Dropdown: {
|
|
31
31
|
icons: {
|
|
32
|
-
|
|
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
33
|
[key: string]: any;
|
|
34
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
35
|
};
|
|
@@ -41,6 +41,9 @@ declare const _default: {
|
|
|
41
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
42
|
};
|
|
43
43
|
};
|
|
44
|
+
Form: {
|
|
45
|
+
hideRequiredAsterisk: boolean;
|
|
46
|
+
};
|
|
44
47
|
Select: {
|
|
45
48
|
icons: {
|
|
46
49
|
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, {
|
|
@@ -51,6 +54,16 @@ declare const _default: {
|
|
|
51
54
|
initialInputHeight: number;
|
|
52
55
|
};
|
|
53
56
|
};
|
|
57
|
+
TreeNode: {
|
|
58
|
+
icons: {
|
|
59
|
+
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, {
|
|
60
|
+
[key: string]: any;
|
|
61
|
+
}>, {}, {}, {}, 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<{}>>, {}, {}>>;
|
|
62
|
+
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, {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
}>, {}, {}, {}, 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<{}>>, {}, {}>>;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
54
67
|
};
|
|
55
68
|
};
|
|
56
69
|
export default _default;
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { iconWarningTriangle, iconPromptExclamation, iconDownWard, iconLeftWardArrow } from "@opentiny/vue-icon";
|
|
1
|
+
import { iconWarningTriangle, iconPromptExclamation, iconDownWard, iconLeftWardArrow, iconExpand, iconPutAway } from "@opentiny/vue-icon";
|
|
2
2
|
var Alert = {
|
|
3
3
|
icons: {
|
|
4
4
|
warning: iconWarningTriangle(),
|
|
@@ -23,7 +23,7 @@ var Popconfirm = {
|
|
|
23
23
|
};
|
|
24
24
|
var Dropdown = {
|
|
25
25
|
icons: {
|
|
26
|
-
|
|
26
|
+
dropdownIcon: iconDownWard()
|
|
27
27
|
}
|
|
28
28
|
};
|
|
29
29
|
var DropdownItem = {
|
|
@@ -31,6 +31,9 @@ var DropdownItem = {
|
|
|
31
31
|
leftWardArrow: iconLeftWardArrow()
|
|
32
32
|
}
|
|
33
33
|
};
|
|
34
|
+
var Form = {
|
|
35
|
+
hideRequiredAsterisk: true
|
|
36
|
+
};
|
|
34
37
|
var Select = {
|
|
35
38
|
icons: {
|
|
36
39
|
dropdownIcon: iconDownWard()
|
|
@@ -39,7 +42,13 @@ var Select = {
|
|
|
39
42
|
initialInputHeight: 32
|
|
40
43
|
}
|
|
41
44
|
};
|
|
42
|
-
var
|
|
45
|
+
var TreeNode = {
|
|
46
|
+
icons: {
|
|
47
|
+
expanded: iconExpand(),
|
|
48
|
+
collapse: iconPutAway()
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
var version = "3.11.0-alpha.0";
|
|
43
52
|
var index = {
|
|
44
53
|
name: "smb",
|
|
45
54
|
version,
|
|
@@ -48,7 +57,9 @@ var index = {
|
|
|
48
57
|
Popconfirm,
|
|
49
58
|
Dropdown,
|
|
50
59
|
DropdownItem,
|
|
51
|
-
|
|
60
|
+
Form,
|
|
61
|
+
Select,
|
|
62
|
+
TreeNode
|
|
52
63
|
}
|
|
53
64
|
};
|
|
54
65
|
export {
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentiny/vue-design-smb",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.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.11.0-alpha.0"
|
|
9
9
|
},
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"module": "./index.js",
|
package/src/dropdown/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
icons: {
|
|
3
|
-
|
|
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
4
|
[key: string]: any;
|
|
5
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
6
|
};
|
|
@@ -0,0 +1,11 @@
|
|
|
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;
|