antd-management-fast-component 2.1.18 → 2.1.21
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.
|
@@ -183,4 +183,8 @@ export function buildListViewItemActionSelect({ confirm, selectData, selectCallb
|
|
|
183
183
|
selectData: any;
|
|
184
184
|
selectCallback: any;
|
|
185
185
|
}): React.JSX.Element;
|
|
186
|
+
export function buildJsonView({ value, theme }: {
|
|
187
|
+
value?: string | undefined;
|
|
188
|
+
theme?: string | undefined;
|
|
189
|
+
}): React.JSX.Element;
|
|
186
190
|
import React from 'react';
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
export class VerticalBox extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
+
triggerClick: (event: any) => void;
|
|
4
5
|
render(): React.JSX.Element;
|
|
5
6
|
}
|
|
6
7
|
export namespace VerticalBox {
|
|
7
8
|
namespace defaultProps {
|
|
8
|
-
let fitWidth: boolean;
|
|
9
9
|
let style: {};
|
|
10
10
|
let bodyStyle: {};
|
|
11
11
|
let align: string;
|
|
12
12
|
let alignJustify: string;
|
|
13
|
+
let fillWidth: boolean;
|
|
14
|
+
let onClick: null;
|
|
13
15
|
}
|
|
14
16
|
}
|
|
15
17
|
import React from 'react';
|