@opentiny/vue-design-smb 2.11.0-alpha.1 → 2.11.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
@@ -30,6 +30,10 @@ declare const _default: {
30
30
  };
31
31
  };
32
32
  Form: {
33
+ icons: {
34
+ validateIcon: any;
35
+ };
36
+ messageType: string;
33
37
  hideRequiredAsterisk: boolean;
34
38
  };
35
39
  Select: {
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { iconWarningTriangle, iconPromptExclamation, iconDownWard, iconLeftWardArrow, iconExpand, iconPutAway } from "@opentiny/vue-icon";
1
+ import { iconWarningTriangle, iconPromptExclamation, iconDownWard, iconLeftWardArrow, iconError, iconExpand, iconPutAway } from "@opentiny/vue-icon";
2
2
  var Alert = {
3
3
  icons: {
4
4
  warning: iconWarningTriangle(),
@@ -32,6 +32,10 @@ var DropdownItem = {
32
32
  }
33
33
  };
34
34
  var Form = {
35
+ icons: {
36
+ validateIcon: iconError()
37
+ },
38
+ messageType: "block",
35
39
  hideRequiredAsterisk: true
36
40
  };
37
41
  var Select = {
@@ -48,7 +52,7 @@ var TreeNode = {
48
52
  collapse: iconPutAway()
49
53
  }
50
54
  };
51
- var version = "2.11.0-alpha.1";
55
+ var version = "2.11.0";
52
56
  var index = {
53
57
  name: "smb",
54
58
  version,
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@opentiny/vue-design-smb",
3
- "version": "2.11.0-alpha.1",
3
+ "version": "2.11.0",
4
4
  "sideEffects": false,
5
5
  "type": "module",
6
6
  "main": "./index.js",
7
7
  "dependencies": {
8
- "@opentiny/vue-icon": "~2.11.0-alpha.0"
8
+ "@opentiny/vue-icon": "~2.11.0"
9
9
  },
10
10
  "license": "MIT",
11
11
  "module": "./index.js",
@@ -1,4 +1,8 @@
1
1
  declare const _default: {
2
+ icons: {
3
+ validateIcon: any;
4
+ };
5
+ messageType: string;
2
6
  hideRequiredAsterisk: boolean;
3
7
  };
4
8
  export default _default;