antd-management-fast-framework 2.11.157 → 2.11.159

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.
@@ -26,6 +26,7 @@ export namespace ElasticityExtraButton {
26
26
  style: null;
27
27
  color: null;
28
28
  showIcon: boolean;
29
+ confirmPanelZIndex: null;
29
30
  flag: string;
30
31
  interimIcon: null;
31
32
  };
@@ -0,0 +1,14 @@
1
+ export class ElasticityExtraColorPicker extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): React.JSX.Element;
5
+ }
6
+ export namespace ElasticityExtraColorPicker {
7
+ namespace defaultProps {
8
+ let flag: string;
9
+ let value: string;
10
+ let disabled: boolean;
11
+ let onChange: null;
12
+ }
13
+ }
14
+ import React from 'react';
@@ -22,4 +22,13 @@ export function buildExtraButton({ flag, confirm, title, placement, okText, canc
22
22
  style?: null | undefined;
23
23
  showIcon?: boolean | undefined;
24
24
  }): React.JSX.Element;
25
+ /**
26
+ * 构建按钮
27
+ */
28
+ export function buildExtraColorPicker({ flag, value, disabled, onChange, }: {
29
+ flag?: any[] | undefined;
30
+ value?: null | undefined;
31
+ disabled?: boolean | undefined;
32
+ onChange?: null | undefined;
33
+ }): React.JSX.Element;
25
34
  import React from 'react';
@@ -43,6 +43,7 @@ export class Base extends AuthorizationWrapper {
43
43
  metaOriginalData?: null | undefined;
44
44
  }) => void;
45
45
  onDateRangeChange: (dates: any, dateStrings: any) => void;
46
+ filterExtraValues: any;
46
47
  handleSelectRows: (rows: any) => void;
47
48
  clearSelectRow: () => void;
48
49
  getCanUseFrontendPagination: () => boolean;
@@ -11,7 +11,6 @@ export class MultiPage extends Base {
11
11
  supplementPageLoadRequestParams: () => void;
12
12
  supplementLoadRequestParams: (o: any) => any;
13
13
  filterNoFormValues: {} | undefined;
14
- filterExtraValues: any;
15
14
  /**
16
15
  * 轻微调整初始化请求数据体
17
16
  *
@@ -1,6 +1,5 @@
1
1
  export class SinglePage extends Base {
2
2
  filterNoFormValues: {} | undefined;
3
- filterExtraValues: any;
4
3
  /**
5
4
  * 轻微调整初始化请求数据体
6
5
  *