@hi-ui/grid 5.0.0-canary.0 → 5.0.0-canary.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @hi-ui/grid
2
2
 
3
+ ## 5.0.0-canary.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 4b09e728b: build: 将 package.json 中 exports 配置中的 types 配置放在最上面 (5.0)
8
+ - Updated dependencies [4b09e728b]
9
+ - @hi-ui/core@5.0.0-canary.1
10
+ - @hi-ui/classname@5.0.0-canary.1
11
+ - @hi-ui/env@5.0.0-canary.1
12
+ - @hi-ui/type-assertion@5.0.0-canary.1
13
+
14
+ ## 5.0.0-canary.1
15
+
16
+ ### Patch Changes
17
+
18
+ - 3903bd4ff: chore: 将代码中 v4 改为 v5 (5.0)
19
+
3
20
  ## 5.0.0-canary.0
4
21
 
5
22
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hi-ui/grid",
3
- "version": "5.0.0-canary.0",
3
+ "version": "5.0.0-canary.2",
4
4
  "description": "A sub-package for @hi-ui/hiui.",
5
5
  "keywords": [],
6
6
  "author": "HiUI <mi-hiui@xiaomi.com>",
@@ -19,9 +19,9 @@
19
19
  "typings": "lib/types/index.d.ts",
20
20
  "exports": {
21
21
  ".": {
22
+ "types": "./lib/types/index.d.ts",
22
23
  "require": "./lib/cjs/index.js",
23
- "default": "./lib/esm/index.js",
24
- "types": "./lib/types/index.d.ts"
24
+ "default": "./lib/esm/index.js"
25
25
  }
26
26
  },
27
27
  "publishConfig": {
@@ -44,18 +44,18 @@
44
44
  "url": "https://github.com/XiaoMi/hiui/issues"
45
45
  },
46
46
  "dependencies": {
47
- "@hi-ui/classname": "^5.0.0-canary.0",
48
- "@hi-ui/env": "^5.0.0-canary.0",
49
- "@hi-ui/type-assertion": "^5.0.0-canary.0"
47
+ "@hi-ui/classname": "^5.0.0-canary.1",
48
+ "@hi-ui/env": "^5.0.0-canary.1",
49
+ "@hi-ui/type-assertion": "^5.0.0-canary.1"
50
50
  },
51
51
  "peerDependencies": {
52
- "@hi-ui/core": ">=5.0.0-canary.0",
52
+ "@hi-ui/core": ">=5.0.0-canary.1",
53
53
  "react": ">=16.8.6",
54
54
  "react-dom": ">=16.8.6"
55
55
  },
56
56
  "devDependencies": {
57
- "@hi-ui/core": "^5.0.0-canary.0",
58
- "@hi-ui/core-css": "^5.0.0-canary.0",
57
+ "@hi-ui/core": "^5.0.0-canary.1",
58
+ "@hi-ui/core-css": "^5.0.0-canary.5",
59
59
  "react": "^17.0.1",
60
60
  "react-dom": "^17.0.1"
61
61
  }