@hi-ui/hiui 4.0.0-beta.61 → 4.0.0-beta.64
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/lib/cjs/index.js +18 -0
- package/lib/esm/index.js +2 -0
- package/lib/types/index.d.ts +8 -0
- package/package.json +54 -53
package/lib/cjs/index.js
CHANGED
|
@@ -39,6 +39,8 @@ var svgIcon = require('@hi-ui/svg-icon');
|
|
|
39
39
|
|
|
40
40
|
var card = require('@hi-ui/card');
|
|
41
41
|
|
|
42
|
+
var provider = require('@hi-ui/provider');
|
|
43
|
+
|
|
42
44
|
var localeContext = require('@hi-ui/locale-context');
|
|
43
45
|
|
|
44
46
|
var _switch = require('@hi-ui/switch');
|
|
@@ -157,6 +159,8 @@ var svgIcon__default = /*#__PURE__*/_interopDefaultLegacy(svgIcon);
|
|
|
157
159
|
|
|
158
160
|
var card__default = /*#__PURE__*/_interopDefaultLegacy(card);
|
|
159
161
|
|
|
162
|
+
var provider__default = /*#__PURE__*/_interopDefaultLegacy(provider);
|
|
163
|
+
|
|
160
164
|
var localeContext__default = /*#__PURE__*/_interopDefaultLegacy(localeContext);
|
|
161
165
|
|
|
162
166
|
var _switch__default = /*#__PURE__*/_interopDefaultLegacy(_switch);
|
|
@@ -317,6 +321,12 @@ Object.defineProperty(exports, 'Card', {
|
|
|
317
321
|
return card__default["default"];
|
|
318
322
|
}
|
|
319
323
|
});
|
|
324
|
+
Object.defineProperty(exports, 'Provider', {
|
|
325
|
+
enumerable: true,
|
|
326
|
+
get: function get() {
|
|
327
|
+
return provider__default["default"];
|
|
328
|
+
}
|
|
329
|
+
});
|
|
320
330
|
Object.defineProperty(exports, 'LocaleContext', {
|
|
321
331
|
enumerable: true,
|
|
322
332
|
get: function get() {
|
|
@@ -677,6 +687,14 @@ Object.keys(card).forEach(function (k) {
|
|
|
677
687
|
}
|
|
678
688
|
});
|
|
679
689
|
});
|
|
690
|
+
Object.keys(provider).forEach(function (k) {
|
|
691
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
692
|
+
enumerable: true,
|
|
693
|
+
get: function get() {
|
|
694
|
+
return provider[k];
|
|
695
|
+
}
|
|
696
|
+
});
|
|
697
|
+
});
|
|
680
698
|
Object.keys(localeContext).forEach(function (k) {
|
|
681
699
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
682
700
|
enumerable: true,
|
package/lib/esm/index.js
CHANGED
|
@@ -31,6 +31,8 @@ export * from '@hi-ui/svg-icon';
|
|
|
31
31
|
export { default as SvgIcon } from '@hi-ui/svg-icon';
|
|
32
32
|
export * from '@hi-ui/card';
|
|
33
33
|
export { default as Card } from '@hi-ui/card';
|
|
34
|
+
export * from '@hi-ui/provider';
|
|
35
|
+
export { default as Provider } from '@hi-ui/provider';
|
|
34
36
|
export * from '@hi-ui/locale-context';
|
|
35
37
|
export { default as LocaleContext } from '@hi-ui/locale-context';
|
|
36
38
|
export * from '@hi-ui/switch';
|
package/lib/types/index.d.ts
CHANGED
|
@@ -22,7 +22,15 @@ export * from '@hi-ui/svg-icon';
|
|
|
22
22
|
export { default as SvgIcon } from '@hi-ui/svg-icon';
|
|
23
23
|
export * from '@hi-ui/card';
|
|
24
24
|
export { default as Card } from '@hi-ui/card';
|
|
25
|
+
export * from '@hi-ui/provider';
|
|
26
|
+
export { default as Provider } from '@hi-ui/provider';
|
|
27
|
+
/**
|
|
28
|
+
* @deprecated
|
|
29
|
+
*/
|
|
25
30
|
export * from '@hi-ui/locale-context';
|
|
31
|
+
/**
|
|
32
|
+
* @deprecated
|
|
33
|
+
*/
|
|
26
34
|
export { default as LocaleContext } from '@hi-ui/locale-context';
|
|
27
35
|
export * from '@hi-ui/switch';
|
|
28
36
|
export { default as Switch } from '@hi-ui/switch';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hi-ui/hiui",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.64",
|
|
4
4
|
"description": "The root-package for @hi-ui/hiui.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "HIUI <mi-hiui@xiaomi.com>",
|
|
@@ -43,62 +43,63 @@
|
|
|
43
43
|
"url": "https://github.com/XiaoMi/hiui/issues"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@hi-ui/alert": "^4.0.0-beta.
|
|
46
|
+
"@hi-ui/alert": "^4.0.0-beta.14",
|
|
47
47
|
"@hi-ui/avatar": "^4.0.0-beta.13",
|
|
48
48
|
"@hi-ui/badge": "^4.0.0-beta.9",
|
|
49
|
-
"@hi-ui/breadcrumb": "^4.0.0-beta.
|
|
50
|
-
"@hi-ui/button": "^4.0.0-beta.
|
|
51
|
-
"@hi-ui/card": "^4.0.0-beta.
|
|
52
|
-
"@hi-ui/carousel": "^4.0.0-beta.
|
|
53
|
-
"@hi-ui/cascader": "^4.0.0-beta.
|
|
54
|
-
"@hi-ui/check-cascader": "^4.0.0-beta.
|
|
55
|
-
"@hi-ui/check-select": "^4.0.0-beta.
|
|
56
|
-
"@hi-ui/check-tree-select": "^4.0.0-beta.
|
|
57
|
-
"@hi-ui/checkbox": "^4.0.0-beta.
|
|
58
|
-
"@hi-ui/collapse": "^4.0.0-beta.
|
|
59
|
-
"@hi-ui/counter": "^4.0.0-beta.
|
|
60
|
-
"@hi-ui/date-picker": "^4.0.0-beta.
|
|
61
|
-
"@hi-ui/drawer": "^4.0.0-beta.
|
|
62
|
-
"@hi-ui/dropdown": "^4.0.0-beta.
|
|
63
|
-
"@hi-ui/empty-state": "^4.0.0-beta.
|
|
64
|
-
"@hi-ui/filter": "^4.0.0-beta.
|
|
65
|
-
"@hi-ui/form": "^4.0.0-beta.
|
|
66
|
-
"@hi-ui/grid": "^4.0.0-beta.
|
|
67
|
-
"@hi-ui/input": "^4.0.0-beta.
|
|
68
|
-
"@hi-ui/list": "^4.0.0-beta.
|
|
69
|
-
"@hi-ui/loading": "^4.0.0-beta.
|
|
49
|
+
"@hi-ui/breadcrumb": "^4.0.0-beta.10",
|
|
50
|
+
"@hi-ui/button": "^4.0.0-beta.13",
|
|
51
|
+
"@hi-ui/card": "^4.0.0-beta.21",
|
|
52
|
+
"@hi-ui/carousel": "^4.0.0-beta.13",
|
|
53
|
+
"@hi-ui/cascader": "^4.0.0-beta.27",
|
|
54
|
+
"@hi-ui/check-cascader": "^4.0.0-beta.31",
|
|
55
|
+
"@hi-ui/check-select": "^4.0.0-beta.31",
|
|
56
|
+
"@hi-ui/check-tree-select": "^4.0.0-beta.33",
|
|
57
|
+
"@hi-ui/checkbox": "^4.0.0-beta.12",
|
|
58
|
+
"@hi-ui/collapse": "^4.0.0-beta.12",
|
|
59
|
+
"@hi-ui/counter": "^4.0.0-beta.14",
|
|
60
|
+
"@hi-ui/date-picker": "^4.0.0-beta.29",
|
|
61
|
+
"@hi-ui/drawer": "^4.0.0-beta.25",
|
|
62
|
+
"@hi-ui/dropdown": "^4.0.0-beta.18",
|
|
63
|
+
"@hi-ui/empty-state": "^4.0.0-beta.20",
|
|
64
|
+
"@hi-ui/filter": "^4.0.0-beta.10",
|
|
65
|
+
"@hi-ui/form": "^4.0.0-beta.27",
|
|
66
|
+
"@hi-ui/grid": "^4.0.0-beta.15",
|
|
67
|
+
"@hi-ui/input": "^4.0.0-beta.15",
|
|
68
|
+
"@hi-ui/list": "^4.0.0-beta.31",
|
|
69
|
+
"@hi-ui/loading": "^4.0.0-beta.18",
|
|
70
70
|
"@hi-ui/locale-context": "^4.0.0-beta.18",
|
|
71
|
-
"@hi-ui/menu": "^4.0.0-beta.
|
|
72
|
-
"@hi-ui/message": "^4.0.0-beta.
|
|
73
|
-
"@hi-ui/modal": "^4.0.0-beta.
|
|
74
|
-
"@hi-ui/notification": "^4.0.0-beta.
|
|
75
|
-
"@hi-ui/pagination": "^4.0.0-beta.
|
|
76
|
-
"@hi-ui/picker": "^4.0.0-beta.
|
|
77
|
-
"@hi-ui/pop-confirm": "^4.0.0-beta.
|
|
78
|
-
"@hi-ui/popover": "^4.0.0-beta.
|
|
79
|
-
"@hi-ui/preview": "^4.0.0-beta.
|
|
71
|
+
"@hi-ui/menu": "^4.0.0-beta.17",
|
|
72
|
+
"@hi-ui/message": "^4.0.0-beta.13",
|
|
73
|
+
"@hi-ui/modal": "^4.0.0-beta.25",
|
|
74
|
+
"@hi-ui/notification": "^4.0.0-beta.13",
|
|
75
|
+
"@hi-ui/pagination": "^4.0.0-beta.29",
|
|
76
|
+
"@hi-ui/picker": "^4.0.0-beta.24",
|
|
77
|
+
"@hi-ui/pop-confirm": "^4.0.0-beta.24",
|
|
78
|
+
"@hi-ui/popover": "^4.0.0-beta.19",
|
|
79
|
+
"@hi-ui/preview": "^4.0.0-beta.12",
|
|
80
80
|
"@hi-ui/progress": "^4.0.0-beta.9",
|
|
81
|
-
"@hi-ui/
|
|
82
|
-
"@hi-ui/
|
|
83
|
-
"@hi-ui/
|
|
84
|
-
"@hi-ui/
|
|
85
|
-
"@hi-ui/
|
|
86
|
-
"@hi-ui/
|
|
81
|
+
"@hi-ui/provider": "^4.0.0-beta.6",
|
|
82
|
+
"@hi-ui/radio": "^4.0.0-beta.16",
|
|
83
|
+
"@hi-ui/rating": "^4.0.0-beta.18",
|
|
84
|
+
"@hi-ui/search": "^4.0.0-beta.22",
|
|
85
|
+
"@hi-ui/select": "^4.0.0-beta.27",
|
|
86
|
+
"@hi-ui/slider": "^4.0.0-beta.18",
|
|
87
|
+
"@hi-ui/stepper": "^4.0.0-beta.16",
|
|
87
88
|
"@hi-ui/svg-icon": "^4.0.0-beta.9",
|
|
88
|
-
"@hi-ui/switch": "^4.0.0-beta.
|
|
89
|
-
"@hi-ui/table": "^4.0.0-beta.
|
|
90
|
-
"@hi-ui/tabs": "^4.0.0-beta.
|
|
91
|
-
"@hi-ui/tag": "^4.0.0-beta.
|
|
92
|
-
"@hi-ui/textarea": "^4.0.0-beta.
|
|
93
|
-
"@hi-ui/time-picker": "^4.0.0-beta.
|
|
94
|
-
"@hi-ui/timeline": "^4.0.0-beta.
|
|
95
|
-
"@hi-ui/tooltip": "^4.0.0-beta.
|
|
96
|
-
"@hi-ui/transfer": "^4.0.0-beta.
|
|
97
|
-
"@hi-ui/tree": "^4.0.0-beta.
|
|
98
|
-
"@hi-ui/tree-select": "^4.0.0-beta.
|
|
99
|
-
"@hi-ui/upload": "^4.0.0-beta.
|
|
100
|
-
"@hi-ui/watermark": "^4.0.0-beta.
|
|
101
|
-
"@hi-ui/zen-mode": "^4.0.0-beta.
|
|
89
|
+
"@hi-ui/switch": "^4.0.0-beta.10",
|
|
90
|
+
"@hi-ui/table": "^4.0.0-beta.47",
|
|
91
|
+
"@hi-ui/tabs": "^4.0.0-beta.17",
|
|
92
|
+
"@hi-ui/tag": "^4.0.0-beta.24",
|
|
93
|
+
"@hi-ui/textarea": "^4.0.0-beta.16",
|
|
94
|
+
"@hi-ui/time-picker": "^4.0.0-beta.25",
|
|
95
|
+
"@hi-ui/timeline": "^4.0.0-beta.10",
|
|
96
|
+
"@hi-ui/tooltip": "^4.0.0-beta.18",
|
|
97
|
+
"@hi-ui/transfer": "^4.0.0-beta.33",
|
|
98
|
+
"@hi-ui/tree": "^4.0.0-beta.31",
|
|
99
|
+
"@hi-ui/tree-select": "^4.0.0-beta.33",
|
|
100
|
+
"@hi-ui/upload": "^4.0.0-beta.26",
|
|
101
|
+
"@hi-ui/watermark": "^4.0.0-beta.22",
|
|
102
|
+
"@hi-ui/zen-mode": "^4.0.0-beta.21"
|
|
102
103
|
},
|
|
103
104
|
"peerDependencies": {
|
|
104
105
|
"react": ">=16.8.6",
|
|
@@ -109,5 +110,5 @@
|
|
|
109
110
|
"react": "^17.0.1",
|
|
110
111
|
"react-dom": "^17.0.1"
|
|
111
112
|
},
|
|
112
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "a7652ac98d2a5b7f66dc49a249ba7cecb4fcb318"
|
|
113
114
|
}
|