@opentiny/vue-design-smb 2.8.3 → 2.10.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 CHANGED
@@ -13,6 +13,12 @@ declare const _default: {
13
13
  close(): void;
14
14
  };
15
15
  };
16
+ Popconfirm: {
17
+ icons: {
18
+ warning: any;
19
+ info: any;
20
+ };
21
+ };
16
22
  Dropdown: {
17
23
  icons: {
18
24
  downWard: any;
@@ -25,14 +31,10 @@ declare const _default: {
25
31
  };
26
32
  Select: {
27
33
  icons: {
28
- downWard: any;
34
+ dropdownIcon: any;
29
35
  };
30
- };
31
- Grid: {
32
- icons: {
33
- sortDefault: any;
34
- sortAsc: any;
35
- sortDesc: any;
36
+ state: {
37
+ initialInputHeight: number;
36
38
  };
37
39
  };
38
40
  };
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { iconWarningTriangle, iconPromptExclamation, iconDownWard, iconLeftWardArrow, iconSortTriangle, iconSortTriangleAscending, iconSortTriangleDescending } from "@opentiny/vue-icon";
1
+ import { iconWarningTriangle, iconPromptExclamation, iconDownWard, iconLeftWardArrow } from "@opentiny/vue-icon";
2
2
  var Alert = {
3
3
  icons: {
4
4
  warning: iconWarningTriangle(),
@@ -15,6 +15,12 @@ var Alert = {
15
15
  };
16
16
  }
17
17
  };
18
+ var Popconfirm = {
19
+ icons: {
20
+ warning: iconWarningTriangle(),
21
+ info: iconPromptExclamation()
22
+ }
23
+ };
18
24
  var Dropdown = {
19
25
  icons: {
20
26
  downWard: iconDownWard()
@@ -27,26 +33,22 @@ var DropdownItem = {
27
33
  };
28
34
  var Select = {
29
35
  icons: {
30
- downWard: iconDownWard()
31
- }
32
- };
33
- var version = "3.7.14";
34
- var Grid = {
35
- icons: {
36
- sortDefault: iconSortTriangle(),
37
- sortAsc: iconSortTriangleAscending(),
38
- sortDesc: iconSortTriangleDescending()
36
+ dropdownIcon: iconDownWard()
37
+ },
38
+ state: {
39
+ initialInputHeight: 32
39
40
  }
40
41
  };
42
+ var version = "2.10.0";
41
43
  var index = {
42
44
  name: "smb",
43
45
  version,
44
46
  components: {
45
47
  Alert,
48
+ Popconfirm,
46
49
  Dropdown,
47
50
  DropdownItem,
48
- Select,
49
- Grid
51
+ Select
50
52
  }
51
53
  };
52
54
  export {
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@opentiny/vue-design-smb",
3
- "version": "2.8.3",
3
+ "version": "2.10.0",
4
4
  "sideEffects": false,
5
+ "type": "module",
5
6
  "main": "./index.js",
6
7
  "dependencies": {
7
- "@opentiny/vue-icon": "~2.8.3"
8
+ "@opentiny/vue-icon": "~2.10.0"
8
9
  },
9
10
  "license": "MIT",
10
11
  "module": "./index.js",
@@ -1,8 +1,7 @@
1
1
  declare const _default: {
2
2
  icons: {
3
- sortDefault: any;
4
- sortAsc: any;
5
- sortDesc: any;
3
+ warning: any;
4
+ info: any;
6
5
  };
7
6
  };
8
7
  export default _default;
@@ -1,6 +1,9 @@
1
1
  declare const _default: {
2
2
  icons: {
3
- downWard: any;
3
+ dropdownIcon: any;
4
+ };
5
+ state: {
6
+ initialInputHeight: number;
4
7
  };
5
8
  };
6
9
  export default _default;