@aloudata/aloudata-design 2.0.5 → 2.1.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/index.d.ts CHANGED
@@ -44,6 +44,7 @@ export { default as Input } from './Input';
44
44
  export type { IInputProps as InputProps, InputRef, TSize, TextAreaRef, } from './Input';
45
45
  export { default as InputNumber } from './InputNumber';
46
46
  export type { IInputNumberProps as InputNumberProps } from './InputNumber';
47
+ export { default as InputSearch } from './InputSearch';
47
48
  export { default as Layout } from './Layout';
48
49
  export type { LayoutProps } from './Layout';
49
50
  export { default as MemberPicker } from './MemberPicker';
@@ -61,6 +62,7 @@ export { default as Progress } from './Progress';
61
62
  export type { IProgressRef, IProps as ProgressProps } from './Progress';
62
63
  export { default as Radio } from './Radio';
63
64
  export type { RadioGroupProps, RadioProps } from './Radio';
65
+ export { default as RenameInput } from './RenameInput';
64
66
  export { default as Result } from './Result';
65
67
  export { default as Row } from './Row';
66
68
  export type { RowProps } from './Row';
@@ -92,6 +94,7 @@ export { default as Typography } from './Typography';
92
94
  export type { TypographyProps } from './Typography';
93
95
  export { default as Upload } from './Upload';
94
96
  export type { UploadFile, UploadProps } from './Upload';
97
+ export { default as User } from './User';
95
98
  export { default as message } from './message';
96
99
  export type { MessageArgsProps } from './message';
97
100
  export { default as notification } from './notification';
package/dist/index.js CHANGED
@@ -24,6 +24,7 @@ export { default as HighlightText } from "./HighlightText";
24
24
  export { default as IconButton } from "./IconButton";
25
25
  export { default as Input } from "./Input";
26
26
  export { default as InputNumber } from "./InputNumber";
27
+ export { default as InputSearch } from "./InputSearch";
27
28
  export { default as Layout } from "./Layout";
28
29
  export { default as MemberPicker } from "./MemberPicker";
29
30
  export { default as Menu } from "./Menu";
@@ -33,6 +34,7 @@ export { default as Popconfirm } from "./Popconfirm";
33
34
  export { default as Popover } from "./Popover";
34
35
  export { default as Progress } from "./Progress";
35
36
  export { default as Radio } from "./Radio";
37
+ export { default as RenameInput } from "./RenameInput";
36
38
  export { default as Result } from "./Result";
37
39
  export { default as Row } from "./Row";
38
40
  export { default as ScrollArea } from "./ScrollArea";
@@ -50,6 +52,7 @@ export { default as Tooltip } from "./Tooltip";
50
52
  export { default as Tree } from "./Tree";
51
53
  export { default as Typography } from "./Typography";
52
54
  export { default as Upload } from "./Upload";
55
+ export { default as User } from "./User";
53
56
  export { default as message } from "./message";
54
57
  // alias, keep API the same as antd
55
58
 
package/dist/index.less CHANGED
@@ -49,3 +49,6 @@
49
49
  @import './Typography/style/index.less';
50
50
  @import './TextLink/style/index.less';
51
51
  @import './HighlightText/style/index.less';
52
+ @import './InputSearch/style/index.less';
53
+ @import './RenameInput/style/index.less';
54
+ @import './User/style/index.less';
@@ -1,10 +1,14 @@
1
1
  import type { ArgsProps } from 'antd/lib/notification/interface';
2
+ import React from 'react';
3
+ interface IAldArgsProps extends ArgsProps {
4
+ footer?: React.ReactNode;
5
+ }
2
6
  declare const notification: {
3
7
  open: (config: ArgsProps) => void;
4
- success: (config: ArgsProps) => void;
5
- error: (config: ArgsProps) => void;
6
- warning: (config: ArgsProps) => void;
7
- info: (config: ArgsProps) => void;
8
+ success: (config: IAldArgsProps) => void;
9
+ error: (config: IAldArgsProps) => void;
10
+ warning: (config: IAldArgsProps) => void;
11
+ info: (config: IAldArgsProps) => void;
8
12
  destroy: (key?: string) => void;
9
13
  };
10
14
  export default notification;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloudata/aloudata-design",
3
- "version": "2.0.5",
3
+ "version": "2.1.0",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "module": "dist/index.js",