@opentiny/vue-design-smb 2.8.0 → 2.8.2
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 +5 -10
- package/index.js +30 -3
- package/package.json +2 -2
- package/src/alert/index.d.ts +1 -0
- package/src/dropdown/index.d.ts +6 -0
- package/src/dropdown-item/index.d.ts +6 -0
- package/src/grid/index.d.ts +8 -0
- package/src/select/index.d.ts +6 -0
package/index.d.ts
CHANGED
|
@@ -2,16 +2,11 @@ declare const _default: {
|
|
|
2
2
|
name: string;
|
|
3
3
|
version: string;
|
|
4
4
|
components: {
|
|
5
|
-
Alert:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
emit: any;
|
|
11
|
-
}, api: any) => {
|
|
12
|
-
close(): void;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
5
|
+
Alert: any;
|
|
6
|
+
Dropdown: any;
|
|
7
|
+
DropdownItem: any;
|
|
8
|
+
Select: any;
|
|
9
|
+
Grid: any;
|
|
15
10
|
};
|
|
16
11
|
};
|
|
17
12
|
export default _default;
|
package/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { iconWarningTriangle } from "@opentiny/vue-icon";
|
|
1
|
+
import { iconWarningTriangle, iconPromptExclamation, iconDownWard, iconLeftWardArrow, iconSortTriangle, iconSortTriangleAscending, iconSortTriangleDescending } from "@opentiny/vue-icon";
|
|
2
2
|
var Alert = {
|
|
3
3
|
icons: {
|
|
4
|
-
warning: iconWarningTriangle()
|
|
4
|
+
warning: iconWarningTriangle(),
|
|
5
|
+
info: iconPromptExclamation()
|
|
5
6
|
},
|
|
6
7
|
renderless: function renderless(props, hooks, _ref, api) {
|
|
7
8
|
var emit = _ref.emit;
|
|
@@ -14,12 +15,38 @@ var Alert = {
|
|
|
14
15
|
};
|
|
15
16
|
}
|
|
16
17
|
};
|
|
18
|
+
var Dropdown = {
|
|
19
|
+
icons: {
|
|
20
|
+
downWard: iconDownWard()
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
var DropdownItem = {
|
|
24
|
+
icons: {
|
|
25
|
+
leftWardArrow: iconLeftWardArrow()
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
var Select = {
|
|
29
|
+
icons: {
|
|
30
|
+
downWard: iconDownWard()
|
|
31
|
+
}
|
|
32
|
+
};
|
|
17
33
|
var version = "3.7.14";
|
|
34
|
+
var Grid = {
|
|
35
|
+
icons: {
|
|
36
|
+
sort: iconSortTriangle(),
|
|
37
|
+
descending: iconSortTriangleAscending(),
|
|
38
|
+
ascending: iconSortTriangleDescending()
|
|
39
|
+
}
|
|
40
|
+
};
|
|
18
41
|
var index = {
|
|
19
42
|
name: "smb",
|
|
20
43
|
version,
|
|
21
44
|
components: {
|
|
22
|
-
Alert
|
|
45
|
+
Alert,
|
|
46
|
+
Dropdown,
|
|
47
|
+
DropdownItem,
|
|
48
|
+
Select,
|
|
49
|
+
Grid
|
|
23
50
|
}
|
|
24
51
|
};
|
|
25
52
|
export {
|
package/package.json
CHANGED
package/src/alert/index.d.ts
CHANGED