antd-management-fast-component 2.1.30 → 2.2.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.
@@ -6,6 +6,17 @@ export class QueueBox extends React.PureComponent<any, any, any> {
6
6
  export namespace QueueBox {
7
7
  namespace defaultProps {
8
8
  let show: boolean;
9
+ let type: string[];
10
+ let style: null;
11
+ let animConfig: null;
12
+ let leaveReverse: boolean;
13
+ let ease: string;
14
+ let delay: number;
15
+ let duration: number;
16
+ let interval: number;
17
+ let appear: boolean;
18
+ let animatingClassName: string[];
19
+ let onEnd: null;
9
20
  }
10
21
  }
11
22
  import React from 'react';
@@ -1,14 +1,28 @@
1
1
  export class QueueListBox extends React.PureComponent<any, any, any> {
2
2
  constructor(props: any);
3
3
  constructor(props: any, context: any);
4
+ triggerEnd: ({ key, type }: {
5
+ key: any;
6
+ type: any;
7
+ }) => void;
4
8
  render(): React.JSX.Element;
5
9
  }
6
10
  export namespace QueueListBox {
7
11
  namespace defaultProps {
8
12
  let show: boolean;
13
+ let type: string;
9
14
  let style: null;
10
15
  let items: never[];
11
16
  let itemStyle: null;
17
+ let animConfig: null;
18
+ let leaveReverse: boolean;
19
+ let ease: string;
20
+ let delay: number;
21
+ let duration: number;
22
+ let interval: number;
23
+ let appear: boolean;
24
+ let animatingClassName: string[];
25
+ let onEnd: null;
12
26
  }
13
27
  }
14
28
  import React from 'react';
@@ -4,6 +4,8 @@ export namespace iconBuilder {
4
4
  export function plus(properties?: null): React.JSX.Element;
5
5
  export function addCircle(properties?: null, filled?: boolean): React.JSX.Element;
6
6
  export function plusCircle(properties?: null, filled?: boolean): React.JSX.Element;
7
+ export function customerService(properties?: null): React.JSX.Element;
8
+ export function comment(properties?: null): React.JSX.Element;
7
9
  export function reload(properties?: null): React.JSX.Element;
8
10
  export function edit(properties?: null, filled?: boolean): React.JSX.Element;
9
11
  export function enable(properties?: null, filled?: boolean): React.JSX.Element;
@@ -20,6 +20,8 @@ export namespace PageWrapper {
20
20
  let extraAction: null;
21
21
  let contentConfig: null;
22
22
  let extraContentConfig: null;
23
+ let footer: null;
24
+ let floatButton: null;
23
25
  }
24
26
  }
25
27
  import React from 'react';