enwawa-ui 3.5.1 → 3.5.3

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.
package/lib/index.d.ts CHANGED
@@ -2402,6 +2402,10 @@ export interface OrSiderMenuProps {
2402
2402
  selectedKeys?: OrMenuProps['selectedKeys'];
2403
2403
  backgroundTopColor?: string;
2404
2404
  children?: React.ReactNode;
2405
+ /**
2406
+ * On Logo Click function
2407
+ */
2408
+ onLogoClick?: React.MouseEventHandler<HTMLDivElement> | undefined;
2405
2409
  }
2406
2410
  export const OrSiderMenu: React.FC<OrSiderMenuProps>;
2407
2411
  export interface AtSpaceProps {
@@ -2578,6 +2582,10 @@ export interface OrDashboardLayoutProps {
2578
2582
  * Or header props
2579
2583
  */
2580
2584
  headerProps?: OrHeaderProps;
2585
+ /**
2586
+ * On Logo Click function
2587
+ */
2588
+ onLogoClick?: React.MouseEventHandler<HTMLDivElement> | undefined;
2581
2589
  }
2582
2590
  export const OrDashboardLayout: React.FC<OrDashboardLayoutProps>;
2583
2591
  export interface OrDescriptionsProps extends DescriptionsProps {
@@ -4965,10 +4973,18 @@ export interface TmRequestsPageProps {
4965
4973
  * Main button label
4966
4974
  */
4967
4975
  cancelButtonLabel?: string;
4976
+ /**
4977
+ * refund button label
4978
+ */
4979
+ refundButtonLabel?: string;
4968
4980
  /**
4969
4981
  * cancel button icon
4970
4982
  */
4971
4983
  cancelButtonIcon?: AtIconProps['name'];
4984
+ /**
4985
+ * refund button icon
4986
+ */
4987
+ refundButtonIcon?: AtIconProps['name'];
4972
4988
  /**
4973
4989
  * Left arrow click event
4974
4990
  */
@@ -4981,10 +4997,18 @@ export interface TmRequestsPageProps {
4981
4997
  * cancel action click event
4982
4998
  */
4983
4999
  onClickCancelAction?: () => void;
5000
+ /**
5001
+ * refund action click event
5002
+ */
5003
+ onClickRefundAction?: () => void;
4984
5004
  /**
4985
5005
  * disabled cancel Button
4986
5006
  */
4987
5007
  disabledCancelButton?: boolean;
5008
+ /**
5009
+ * disabled refund Button
5010
+ */
5011
+ disabledRefundButton?: boolean;
4988
5012
  /**
4989
5013
  * disabled Main Button
4990
5014
  */