antd-management-fast-component 2.6.99 → 2.6.102

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.
@@ -3,6 +3,7 @@ export class FlexSelect extends BaseComponent {
3
3
  }
4
4
  export namespace FlexSelect {
5
5
  namespace defaultProps {
6
+ let style: null;
6
7
  let label: string;
7
8
  let defaultValue: null;
8
9
  let separator: string;
@@ -1,3 +1,13 @@
1
+ export function buildDropdownMenu({ label, placement, icon, size, list, dataConvert, onClick: onClickCallback, innerProps: innerProperties, }: {
2
+ label?: string | undefined;
3
+ placement?: string | undefined;
4
+ icon?: null | undefined;
5
+ size?: string | undefined;
6
+ list?: any[] | undefined;
7
+ dataConvert?: null | undefined;
8
+ onClick: any;
9
+ innerProps?: null | undefined;
10
+ }): React.JSX.Element;
1
11
  export function buildMenu({ handleData: r, handleMenuClick, items, }: {
2
12
  handleData: any;
3
13
  handleMenuClick?: (() => void) | undefined;