@hi-ui/hiui 4.1.16 → 4.1.18-beta.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/CHANGELOG.md +17 -0
- package/lib/cjs/index.js +18 -0
- package/lib/esm/index.js +2 -0
- package/lib/types/index.d.ts +2 -0
- package/package.json +13 -12
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# @hi-ui/hiui
|
2
2
|
|
3
|
+
## 4.1.18-beta.0
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- d6c7feaf8: Descriptions Component add data api
|
8
|
+
- Updated dependencies [0f1420d36]
|
9
|
+
- @hi-ui/descriptions@4.1.0-beta.0
|
10
|
+
|
11
|
+
## 4.1.17
|
12
|
+
|
13
|
+
### Patch Changes
|
14
|
+
|
15
|
+
- [#2383](https://github.com/XiaoMi/hiui/pull/2383) [`6248e798b`](https://github.com/XiaoMi/hiui/commit/6248e798b4ad7b9256637027f6bbe79245ed68de) Thanks [@zyprepare](https://github.com/zyprepare)! - Menu 实现 expandedType="pop" 模式下,可以自定义弹出层样式类名
|
16
|
+
|
17
|
+
- Updated dependencies [[`6248e798b`](https://github.com/XiaoMi/hiui/commit/6248e798b4ad7b9256637027f6bbe79245ed68de)]:
|
18
|
+
- @hi-ui/menu@4.0.8
|
19
|
+
|
3
20
|
## 4.1.16
|
4
21
|
|
5
22
|
### Patch Changes
|
package/lib/cjs/index.js
CHANGED
@@ -51,6 +51,8 @@ var drawer = require('@hi-ui/drawer');
|
|
51
51
|
|
52
52
|
var dropdown = require('@hi-ui/dropdown');
|
53
53
|
|
54
|
+
var ellipsisTooltip = require('@hi-ui/ellipsis-tooltip');
|
55
|
+
|
54
56
|
var emptyState = require('@hi-ui/empty-state');
|
55
57
|
|
56
58
|
var filter = require('@hi-ui/filter');
|
@@ -189,6 +191,8 @@ var drawer__default = /*#__PURE__*/_interopDefaultLegacy(drawer);
|
|
189
191
|
|
190
192
|
var dropdown__default = /*#__PURE__*/_interopDefaultLegacy(dropdown);
|
191
193
|
|
194
|
+
var ellipsisTooltip__default = /*#__PURE__*/_interopDefaultLegacy(ellipsisTooltip);
|
195
|
+
|
192
196
|
var emptyState__default = /*#__PURE__*/_interopDefaultLegacy(emptyState);
|
193
197
|
|
194
198
|
var filter__default = /*#__PURE__*/_interopDefaultLegacy(filter);
|
@@ -389,6 +393,12 @@ Object.defineProperty(exports, 'Dropdown', {
|
|
389
393
|
return dropdown__default["default"];
|
390
394
|
}
|
391
395
|
});
|
396
|
+
Object.defineProperty(exports, 'EllipsisTooltip', {
|
397
|
+
enumerable: true,
|
398
|
+
get: function get() {
|
399
|
+
return ellipsisTooltip__default["default"];
|
400
|
+
}
|
401
|
+
});
|
392
402
|
Object.defineProperty(exports, 'EmptyState', {
|
393
403
|
enumerable: true,
|
394
404
|
get: function get() {
|
@@ -813,6 +823,14 @@ Object.keys(dropdown).forEach(function (k) {
|
|
813
823
|
}
|
814
824
|
});
|
815
825
|
});
|
826
|
+
Object.keys(ellipsisTooltip).forEach(function (k) {
|
827
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
828
|
+
enumerable: true,
|
829
|
+
get: function get() {
|
830
|
+
return ellipsisTooltip[k];
|
831
|
+
}
|
832
|
+
});
|
833
|
+
});
|
816
834
|
Object.keys(emptyState).forEach(function (k) {
|
817
835
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
818
836
|
enumerable: true,
|
package/lib/esm/index.js
CHANGED
@@ -43,6 +43,8 @@ export * from '@hi-ui/drawer';
|
|
43
43
|
export { default as Drawer } from '@hi-ui/drawer';
|
44
44
|
export * from '@hi-ui/dropdown';
|
45
45
|
export { default as Dropdown } from '@hi-ui/dropdown';
|
46
|
+
export * from '@hi-ui/ellipsis-tooltip';
|
47
|
+
export { default as EllipsisTooltip } from '@hi-ui/ellipsis-tooltip';
|
46
48
|
export * from '@hi-ui/empty-state';
|
47
49
|
export { default as EmptyState } from '@hi-ui/empty-state';
|
48
50
|
export * from '@hi-ui/filter';
|
package/lib/types/index.d.ts
CHANGED
@@ -34,6 +34,8 @@ export * from '@hi-ui/drawer';
|
|
34
34
|
export { default as Drawer } from '@hi-ui/drawer';
|
35
35
|
export * from '@hi-ui/dropdown';
|
36
36
|
export { default as Dropdown } from '@hi-ui/dropdown';
|
37
|
+
export * from '@hi-ui/ellipsis-tooltip';
|
38
|
+
export { default as EllipsisTooltip } from '@hi-ui/ellipsis-tooltip';
|
37
39
|
export * from '@hi-ui/empty-state';
|
38
40
|
export { default as EmptyState } from '@hi-ui/empty-state';
|
39
41
|
export * from '@hi-ui/filter';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hi-ui/hiui",
|
3
|
-
"version": "4.1.
|
3
|
+
"version": "4.1.18-beta.0",
|
4
4
|
"description": "The root-package for @hi-ui/hiui.",
|
5
5
|
"keywords": [],
|
6
6
|
"author": "HiUI <mi-hiui@xiaomi.com>",
|
@@ -50,19 +50,20 @@
|
|
50
50
|
"@hi-ui/badge": "^4.0.4",
|
51
51
|
"@hi-ui/breadcrumb": "^4.0.4",
|
52
52
|
"@hi-ui/button": "^4.0.5",
|
53
|
-
"@hi-ui/card": "^4.0.
|
53
|
+
"@hi-ui/card": "^4.0.6-beta.0",
|
54
54
|
"@hi-ui/carousel": "^4.0.4",
|
55
|
-
"@hi-ui/cascader": "^4.0.
|
56
|
-
"@hi-ui/check-cascader": "^4.0.
|
57
|
-
"@hi-ui/check-select": "^4.1.
|
58
|
-
"@hi-ui/check-tree-select": "^4.0.
|
55
|
+
"@hi-ui/cascader": "^4.0.10-beta.0",
|
56
|
+
"@hi-ui/check-cascader": "^4.0.10-beta.0",
|
57
|
+
"@hi-ui/check-select": "^4.1.2-beta.0",
|
58
|
+
"@hi-ui/check-tree-select": "^4.0.11-beta.0",
|
59
59
|
"@hi-ui/checkbox": "^4.0.5",
|
60
60
|
"@hi-ui/collapse": "^4.1.0",
|
61
61
|
"@hi-ui/counter": "^4.0.5",
|
62
62
|
"@hi-ui/date-picker": "^4.0.12",
|
63
|
-
"@hi-ui/descriptions": "^4.0.
|
63
|
+
"@hi-ui/descriptions": "^4.1.0-beta.0",
|
64
64
|
"@hi-ui/drawer": "^4.0.7",
|
65
65
|
"@hi-ui/dropdown": "^4.0.5",
|
66
|
+
"@hi-ui/ellipsis-tooltip": "^4.0.0-alpha.0",
|
66
67
|
"@hi-ui/empty-state": "^4.0.4",
|
67
68
|
"@hi-ui/filter": "^4.1.0",
|
68
69
|
"@hi-ui/form": "^4.1.2",
|
@@ -70,15 +71,15 @@
|
|
70
71
|
"@hi-ui/highlighter": "^4.0.5",
|
71
72
|
"@hi-ui/input": "^4.0.6",
|
72
73
|
"@hi-ui/input-group": "^4.0.3",
|
73
|
-
"@hi-ui/list": "^4.0.
|
74
|
-
"@hi-ui/loading": "^4.0.
|
74
|
+
"@hi-ui/list": "^4.0.9-beta.0",
|
75
|
+
"@hi-ui/loading": "^4.1.0-beta.0",
|
75
76
|
"@hi-ui/menu": "^4.0.7",
|
76
77
|
"@hi-ui/message": "^4.0.4",
|
77
78
|
"@hi-ui/modal": "^4.0.9",
|
78
79
|
"@hi-ui/notification": "^4.0.6",
|
79
80
|
"@hi-ui/number-input": "^4.0.5",
|
80
|
-
"@hi-ui/pagination": "^4.0.
|
81
|
-
"@hi-ui/picker": "^4.0.
|
81
|
+
"@hi-ui/pagination": "^4.0.9-beta.0",
|
82
|
+
"@hi-ui/picker": "^4.0.7-beta.0",
|
82
83
|
"@hi-ui/pop-confirm": "^4.0.6",
|
83
84
|
"@hi-ui/popover": "^4.0.5",
|
84
85
|
"@hi-ui/preview": "^4.0.4",
|
@@ -92,7 +93,7 @@
|
|
92
93
|
"@hi-ui/select": "^4.0.9",
|
93
94
|
"@hi-ui/slider": "^4.0.6",
|
94
95
|
"@hi-ui/space": "^4.0.6",
|
95
|
-
"@hi-ui/spinner": "^4.0.
|
96
|
+
"@hi-ui/spinner": "^4.0.5-beta.0",
|
96
97
|
"@hi-ui/stepper": "^4.0.4",
|
97
98
|
"@hi-ui/svg-icon": "^4.0.4",
|
98
99
|
"@hi-ui/switch": "^4.0.6",
|