antd-management-fast-component 2.7.7 → 2.7.9

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.
@@ -21,7 +21,7 @@ export namespace ElasticityButton {
21
21
  let handleData: null;
22
22
  let processing: boolean;
23
23
  let iconProcessing: React.JSX.Element;
24
- let style: null;
24
+ let styles: {};
25
25
  let color: null;
26
26
  let showIcon: boolean;
27
27
  let confirmPanelZIndex: null;
@@ -20,7 +20,7 @@ export function buildMenu({ handleData: r, handleMenuClick, items, }: {
20
20
  /**
21
21
  * 构建按钮
22
22
  */
23
- export function buildButton({ confirm, title, placement, okText, cancelText, type, size, text, icon, handleClick, hidden, danger, disabled, handleData, processing, iconProcessing, style, showIcon, }: {
23
+ export function buildButton({ confirm, title, placement, okText, cancelText, type, size, text, icon, handleClick, hidden, danger, disabled, handleData, processing, iconProcessing, styles, showIcon, }: {
24
24
  confirm?: boolean | undefined;
25
25
  title?: string | undefined;
26
26
  placement?: string | undefined;
@@ -37,7 +37,7 @@ export function buildButton({ confirm, title, placement, okText, cancelText, typ
37
37
  handleData?: null | undefined;
38
38
  processing?: boolean | undefined;
39
39
  iconProcessing?: React.JSX.Element | undefined;
40
- style?: null | undefined;
40
+ styles?: {} | undefined;
41
41
  showIcon?: boolean | undefined;
42
42
  }): React.JSX.Element;
43
43
  export function buildDropdown({ key, ellipsisMode, confirm, title, placement, okText, cancelText, type, size, text, icon, handleData, arrow, disabled, hidden, handleButtonClick, handleMenuClick, items, itemPanelTitle, itemPanelZIndex, processing, iconProcessing, }: {