@sikka/hawa 0.0.249 → 0.0.251
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/es/elements/HawaButton.d.ts +3 -3
- package/es/elements/HawaCardInput.d.ts +2 -2
- package/es/hooks/useHover.d.ts +2 -2
- package/es/index.es.js +3 -3
- package/lib/elements/HawaButton.d.ts +3 -3
- package/lib/elements/HawaCardInput.d.ts +2 -2
- package/lib/hooks/useHover.d.ts +2 -2
- package/lib/index.js +3 -3
- package/package.json +6 -6
- package/src/blocks/AuthForms/CodeConfirmation.tsx +1 -1
- package/src/blocks/AuthForms/NewPasswordForm.tsx +1 -1
- package/src/blocks/AuthForms/SignInPhone.tsx +1 -1
- package/src/blocks/Payment/ChargeWalletForm.tsx +1 -1
- package/src/blocks/Pricing/ComparingPlans.tsx +1 -1
- package/src/elements/ArrowCarousel.tsx +1 -1
- package/src/elements/BackToTop.tsx +1 -1
- package/src/elements/HawaAccordion.tsx +1 -1
- package/src/elements/HawaButton.tsx +4 -4
- package/src/elements/HawaCardInput.tsx +1 -1
- package/src/elements/HawaCheckbox.tsx +1 -1
- package/src/elements/HawaColorPicker.tsx +1 -1
- package/src/elements/HawaDatepicker.tsx +1 -1
- package/src/elements/HawaItemCard.tsx +1 -1
- package/src/elements/HawaMenu.tsx +1 -1
- package/src/elements/HawaModal.tsx +1 -1
- package/src/elements/HawaPanelTabs.tsx +1 -1
- package/src/elements/HawaPhoneInput.tsx +1 -1
- package/src/elements/HawaPinInput.tsx +1 -1
- package/src/elements/HawaRadio.tsx +1 -1
- package/src/elements/HawaRange.tsx +1 -1
- package/src/elements/HawaSnackbar.tsx +1 -1
- package/src/elements/HawaTable.tsx +1 -1
- package/src/elements/HawaTabs.tsx +1 -1
- package/src/elements/HawaTooltip.tsx +1 -1
- package/src/elements/InvoiceAccordion.tsx +1 -1
- package/src/elements/SubsectionList.tsx +1 -1
- package/src/elements/UserFeedback.tsx +1 -1
- package/src/hooks/useBreakpoint.ts +1 -1
- package/src/hooks/useDiscloser.ts +1 -1
- package/src/hooks/useHover.ts +1 -1
- package/src/hooks/useScrollPosition.ts +1 -1
- package/src/hooks/useTable.ts +1 -1
- package/src/layout/Footer.tsx +2 -5
- package/src/layout/HawaSiteLayout.tsx +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
interface ButtonProps extends
|
|
1
|
+
import { FC, ButtonHTMLAttributes } from "react";
|
|
2
|
+
interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
3
3
|
variant?: "contained" | "outlined";
|
|
4
4
|
tooltipDirection?: "rtl" | "ltr";
|
|
5
5
|
color?: "default" | "primary" | "secondary";
|
|
@@ -14,5 +14,5 @@ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
|
14
14
|
isLoading?: boolean;
|
|
15
15
|
badge?: any;
|
|
16
16
|
}
|
|
17
|
-
export declare const HawaButton:
|
|
17
|
+
export declare const HawaButton: FC<ButtonProps>;
|
|
18
18
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
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
|
-
}) =>
|
|
25
|
+
}) => React.JSX.Element;
|
package/es/hooks/useHover.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare function useHover(): (boolean |
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare function useHover(): (boolean | React.MutableRefObject<any>)[];
|
|
3
3
|
export default useHover;
|