@aloudata/aloudata-design 2.6.2 → 2.7.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/dist/Badge/index.d.ts +18 -3
- package/dist/Badge/index.js +45 -2
- package/dist/Badge/style/index.less +23 -0
- package/dist/Form/style/index.less +9 -3
- package/dist/OverflowCount/index.d.ts +28 -0
- package/dist/OverflowCount/index.js +77 -0
- package/dist/OverflowCount/style/index.d.ts +2 -0
- package/dist/OverflowCount/style/index.js +2 -0
- package/dist/OverflowCount/style/index.less +51 -0
- package/dist/Switch/style/index.less +4 -0
- package/dist/Table/helper.d.ts +1 -1
- package/dist/Table/helper.js +1 -1
- package/dist/Table/index.js +1 -1
- package/dist/Table/style/index.less +47 -49
- package/dist/Tag/index.d.ts +37 -3
- package/dist/Tag/index.js +82 -2
- package/dist/Tag/style/index.less +66 -0
- package/dist/ald.min.css +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -0
- package/dist/index.less +1 -0
- package/dist/style/index.less +2 -0
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export { default as Menu } from './Menu';
|
|
|
55
55
|
export type { MenuDividerType, MenuHeaderType, MenuItemType, MenuProps, SubMenuType, } from './Menu';
|
|
56
56
|
export { default as Modal } from './Modal';
|
|
57
57
|
export type { ModalFuncProps, ModalProps } from './Modal';
|
|
58
|
+
export { default as OverflowCount } from './OverflowCount';
|
|
58
59
|
export { default as Pagination } from './Pagination';
|
|
59
60
|
export { default as Popconfirm } from './Popconfirm';
|
|
60
61
|
export type { PopconfirmProps } from './Popconfirm';
|
|
@@ -87,7 +88,7 @@ export type { ITableColumn, ITableProps, ITableRef } from './Table/types';
|
|
|
87
88
|
export { default as Tabs } from './Tabs';
|
|
88
89
|
export type { ITabsProps as TabsProps, TabsSize } from './Tabs';
|
|
89
90
|
export { default as Tag } from './Tag';
|
|
90
|
-
export type { TagProps
|
|
91
|
+
export type { TagProps } from './Tag';
|
|
91
92
|
export { default as TextLink } from './TextLink';
|
|
92
93
|
export { default as Tooltip } from './Tooltip';
|
|
93
94
|
export type { ActionType as TooltipActionType, ITooltipProps as TooltipProps, } from './Tooltip';
|
package/dist/index.js
CHANGED
|
@@ -30,6 +30,7 @@ export { default as Layout } from "./Layout";
|
|
|
30
30
|
export { default as MemberPicker } from "./MemberPicker";
|
|
31
31
|
export { default as Menu } from "./Menu";
|
|
32
32
|
export { default as Modal } from "./Modal";
|
|
33
|
+
export { default as OverflowCount } from "./OverflowCount";
|
|
33
34
|
export { default as Pagination } from "./Pagination";
|
|
34
35
|
export { default as Popconfirm } from "./Popconfirm";
|
|
35
36
|
export { default as Popover } from "./Popover";
|
package/dist/index.less
CHANGED
package/dist/style/index.less
CHANGED
|
@@ -11,6 +11,8 @@ body {
|
|
|
11
11
|
font-family: Inter, 'PingFang SC', system-ui, -apple-system,
|
|
12
12
|
blinkmacsystemfont, 'Helvetica Neue', 'Segoe UI', helvetica, arial,
|
|
13
13
|
'Microsoft YaHei', 'WenQuanYi Micro Hei', sans-serif;
|
|
14
|
+
-webkit-font-smoothing: antialiased;
|
|
15
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
16
|
}
|
|
15
17
|
|
|
16
18
|
.ald-icon {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aloudata/aloudata-design",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
"immer": "^10.0.3",
|
|
66
66
|
"memoize-one": "^6.0.0",
|
|
67
67
|
"rc-menu": "^9.8.0",
|
|
68
|
+
"rc-overflow": "^1.3.2",
|
|
68
69
|
"umi-request": "^1.4.0",
|
|
69
70
|
"zx": "^7.1.1"
|
|
70
71
|
},
|