@sikka/hawa 0.0.228 → 0.0.229

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.
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ type TNoPermission = {
3
+ variant?: "outlined" | "contained" | "neobrutalism";
4
+ };
5
+ export declare const NoPermission: React.FunctionComponent<TNoPermission>;
6
+ export {};
@@ -3,3 +3,4 @@ export * from "./EmptyState";
3
3
  export * from "./Newsletter";
4
4
  export * from "./Testimonial";
5
5
  export * from "./LeadGenerator";
6
+ export * from "./NoPermission";
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import React from "react";
2
2
  export declare const HawaCardInput: ({ cardHolder, cardMonth, cardYear, cardCvv, rememberMe, onUpdateState, cardNumberRef, cardHolderRef, cardDateRef, cardCvvRef, rememberMeRef, onCardInputFocus, onCardInputBlur, children, handlePaymentPayfort, selectedPaymentMethod, isRegister, accessCode, shaRequestPassphrase, transaction, signature, isCheckout, }: {
3
3
  cardHolder: any;
4
4
  cardMonth: any;
@@ -22,4 +22,4 @@ export declare const HawaCardInput: ({ cardHolder, cardMonth, cardYear, cardCvv,
22
22
  transaction: any;
23
23
  signature: any;
24
24
  isCheckout: any;
25
- }) => JSX.Element;
25
+ }) => React.JSX.Element;
@@ -14,6 +14,7 @@ interface TMenuTypes {
14
14
  }
15
15
  type MenuItems = {
16
16
  icon?: JSX.Element;
17
+ disabled?: boolean;
17
18
  label: string;
18
19
  action?: (e: any) => void;
19
20
  isButton?: boolean;
@@ -8,6 +8,7 @@ type THawaSnackBar = {
8
8
  position?: "top-left" | "top-center" | "top-right" | "bottom-right" | "bottom-center" | "bottom-left";
9
9
  actions?: [
10
10
  {
11
+ icon?: any;
11
12
  label: string;
12
13
  onClick: any;
13
14
  variant: "contained" | "outlined";