@sikka/hawa 0.27.23-next → 0.28.0-next
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/dist/blocks/auth/index.d.mts +29 -3
- package/dist/blocks/auth/index.d.ts +29 -3
- package/dist/blocks/auth/index.js +385 -382
- package/dist/blocks/auth/index.mjs +314 -308
- package/dist/blocks/feedback/index.d.mts +1 -1
- package/dist/blocks/feedback/index.d.ts +1 -1
- package/dist/blocks/feedback/index.mjs +5 -5
- package/dist/blocks/index.d.mts +28 -2
- package/dist/blocks/index.d.ts +28 -2
- package/dist/blocks/index.js +1244 -1174
- package/dist/blocks/index.mjs +19 -15
- package/dist/blocks/misc/index.d.mts +1 -1
- package/dist/blocks/misc/index.d.ts +1 -1
- package/dist/blocks/misc/index.js +87 -20
- package/dist/blocks/misc/index.mjs +92 -25
- package/dist/blocks/pricing/index.d.mts +1 -1
- package/dist/blocks/pricing/index.d.ts +1 -1
- package/dist/blocks/pricing/index.mjs +4 -4
- package/dist/{chunk-W5I4VB5Z.mjs → chunk-4F7LNY2V.mjs} +1 -1
- package/dist/{chunk-MMOEFJSP.mjs → chunk-6HOSGMTV.mjs} +1 -1
- package/dist/{chunk-M6XGGAPQ.mjs → chunk-KZCOE6V3.mjs} +1 -1
- package/dist/{chunk-EFWL3FFK.mjs → chunk-N5J4XNGU.mjs} +1 -1
- package/dist/{chunk-DUL6C2S2.mjs → chunk-NK7TELIV.mjs} +1 -1
- package/dist/{chunk-ZOWDRDAM.mjs → chunk-R2NAPFAZ.mjs} +221 -221
- package/dist/{chunk-7QEBDFLT.mjs → chunk-SYZ5JMYJ.mjs} +2 -4
- package/dist/{chunk-7CYXEZDV.mjs → chunk-TIQERSM3.mjs} +1 -1
- package/dist/{chunk-5UYZN5SQ.mjs → chunk-Y3HUZNCH.mjs} +88 -21
- package/dist/{chunk-DQHPOUHR.mjs → chunk-ZV3KYZ5G.mjs} +1 -1
- package/dist/elements/index.d.mts +5 -4
- package/dist/elements/index.d.ts +5 -4
- package/dist/elements/index.js +87 -20
- package/dist/elements/index.mjs +3 -3
- package/dist/index.css +29 -0
- package/dist/index.d.mts +54 -27
- package/dist/index.d.ts +54 -27
- package/dist/index.js +105 -33
- package/dist/index.mjs +104 -33
- package/dist/layout/index.mjs +2 -2
- package/dist/tabs/index.d.mts +2 -1
- package/dist/tabs/index.d.ts +2 -1
- package/dist/tabs/index.js +89 -20
- package/dist/tabs/index.js.map +1 -1
- package/dist/tabs/index.mjs +89 -20
- package/dist/tabs/index.mjs.map +1 -1
- package/dist/{textTypes-u4OSE-rn.d.ts → textTypes-ah2JJr8v.d.mts} +1 -1
- package/dist/{textTypes-u4OSE-rn.d.mts → textTypes-ah2JJr8v.d.ts} +1 -1
- package/package.json +2 -1
@@ -1,26 +1,26 @@
|
|
1
1
|
"use client";
|
2
2
|
import {
|
3
3
|
Textarea
|
4
|
-
} from "../../chunk-
|
4
|
+
} from "../../chunk-4F7LNY2V.mjs";
|
5
5
|
import {
|
6
6
|
Select
|
7
|
-
} from "../../chunk-
|
7
|
+
} from "../../chunk-ZV3KYZ5G.mjs";
|
8
8
|
import {
|
9
9
|
Radio
|
10
|
-
} from "../../chunk-
|
10
|
+
} from "../../chunk-NK7TELIV.mjs";
|
11
11
|
import {
|
12
12
|
BadEmoji,
|
13
13
|
GoodEmoji,
|
14
14
|
VeryBadEmoji,
|
15
15
|
VeryGoodEmoji
|
16
|
-
} from "../../chunk-
|
16
|
+
} from "../../chunk-N5J4XNGU.mjs";
|
17
17
|
import {
|
18
18
|
Button,
|
19
19
|
Card,
|
20
20
|
CardContent,
|
21
21
|
Label,
|
22
22
|
cn
|
23
|
-
} from "../../chunk-
|
23
|
+
} from "../../chunk-SYZ5JMYJ.mjs";
|
24
24
|
|
25
25
|
// blocks/feedback/UserReferralSource.tsx
|
26
26
|
import React, { useRef, useState } from "react";
|
package/dist/blocks/index.d.mts
CHANGED
@@ -1,10 +1,36 @@
|
|
1
1
|
import React__default, { FC, InputHTMLAttributes } from 'react';
|
2
|
+
import { ThirdPartyAuthTextsTypes, LoginFormTextsTypes, RegisterFormTextsTypes, NewPasswordTextsTypes, ResetPasswordTextsTypes, BaseInputType, TextInputType, PricingCardProps, PlanFeature, PricingPlanTexts } from '../types/index.mjs';
|
2
3
|
import { D as DirectionType, a as RadioOptionType, O as OrientationType } from '../commonTypes-CKtkuNFH.mjs';
|
3
|
-
import { LoginFormTextsTypes, RegisterFormTextsTypes, ThirdPartyAuthTextsTypes, NewPasswordTextsTypes, ResetPasswordTextsTypes, BaseInputType, TextInputType, PricingCardProps, PlanFeature, PricingPlanTexts } from '../types/index.mjs';
|
4
4
|
import { S as SelectOptionProps, L as LabelProps, R as RadioOptionsTypes } from '../Radio-RSPNWT03.mjs';
|
5
5
|
import { M as MenuItemType } from '../DropdownMenu-EUL-D3I3.mjs';
|
6
6
|
import '@radix-ui/react-dropdown-menu';
|
7
7
|
|
8
|
+
type AuthButtonsType = {
|
9
|
+
texts?: ThirdPartyAuthTextsTypes;
|
10
|
+
viaGoogle?: boolean;
|
11
|
+
viaTwitter?: boolean;
|
12
|
+
viaGithub?: boolean;
|
13
|
+
viaMicrosoft?: boolean;
|
14
|
+
viaEmail?: boolean;
|
15
|
+
viaPhone?: boolean;
|
16
|
+
viaApple?: boolean;
|
17
|
+
isGoogleLoading?: boolean;
|
18
|
+
isGithubLoading?: boolean;
|
19
|
+
isTwitterLoading?: boolean;
|
20
|
+
isMicrosoftLoading?: boolean;
|
21
|
+
isEmailLoading?: boolean;
|
22
|
+
isPhoneLoading?: boolean;
|
23
|
+
isAppleLoading?: boolean;
|
24
|
+
handleGoogle?: () => void;
|
25
|
+
handleTwitter?: () => void;
|
26
|
+
handleApple?: () => void;
|
27
|
+
handleMicrosoft?: () => void;
|
28
|
+
handleGithub?: () => void;
|
29
|
+
handleEmail?: () => void;
|
30
|
+
handlePhone?: () => void;
|
31
|
+
};
|
32
|
+
declare const AuthButtons: React__default.FC<AuthButtonsType>;
|
33
|
+
|
8
34
|
type LoginFormTypes = {
|
9
35
|
/** Object containing text labels used throughout the form. */
|
10
36
|
texts?: LoginFormTextsTypes;
|
@@ -498,4 +524,4 @@ type UsageCardTypes = {
|
|
498
524
|
};
|
499
525
|
declare const Usage: FC<UsageCardTypes>;
|
500
526
|
|
501
|
-
export { ActionCard, AdCard, Announcement, AppLanding, CheckEmail, CodeConfirmation, ComparingPlans, ContactForm, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, HorizontalPricing, ItemCard, LandingCard, LeadGenerator, LegalTexts, LoginForm, NewPasswordForm, NoPermission, NotFound, PricingCard, PricingPlans, RegisterForm, ResetPasswordForm, Testimonial, Usage, UserReferralSource };
|
527
|
+
export { ActionCard, AdCard, Announcement, AppLanding, AuthButtons, CheckEmail, CodeConfirmation, ComparingPlans, ContactForm, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, HorizontalPricing, ItemCard, LandingCard, LeadGenerator, LegalTexts, LoginForm, NewPasswordForm, NoPermission, NotFound, PricingCard, PricingPlans, RegisterForm, ResetPasswordForm, Testimonial, Usage, UserReferralSource };
|
package/dist/blocks/index.d.ts
CHANGED
@@ -1,10 +1,36 @@
|
|
1
1
|
import React__default, { FC, InputHTMLAttributes } from 'react';
|
2
|
+
import { ThirdPartyAuthTextsTypes, LoginFormTextsTypes, RegisterFormTextsTypes, NewPasswordTextsTypes, ResetPasswordTextsTypes, BaseInputType, TextInputType, PricingCardProps, PlanFeature, PricingPlanTexts } from '../types/index.js';
|
2
3
|
import { D as DirectionType, a as RadioOptionType, O as OrientationType } from '../commonTypes-CKtkuNFH.js';
|
3
|
-
import { LoginFormTextsTypes, RegisterFormTextsTypes, ThirdPartyAuthTextsTypes, NewPasswordTextsTypes, ResetPasswordTextsTypes, BaseInputType, TextInputType, PricingCardProps, PlanFeature, PricingPlanTexts } from '../types/index.js';
|
4
4
|
import { S as SelectOptionProps, L as LabelProps, R as RadioOptionsTypes } from '../Radio-PmNrOjLQ.js';
|
5
5
|
import { M as MenuItemType } from '../DropdownMenu-SPisqCzV.js';
|
6
6
|
import '@radix-ui/react-dropdown-menu';
|
7
7
|
|
8
|
+
type AuthButtonsType = {
|
9
|
+
texts?: ThirdPartyAuthTextsTypes;
|
10
|
+
viaGoogle?: boolean;
|
11
|
+
viaTwitter?: boolean;
|
12
|
+
viaGithub?: boolean;
|
13
|
+
viaMicrosoft?: boolean;
|
14
|
+
viaEmail?: boolean;
|
15
|
+
viaPhone?: boolean;
|
16
|
+
viaApple?: boolean;
|
17
|
+
isGoogleLoading?: boolean;
|
18
|
+
isGithubLoading?: boolean;
|
19
|
+
isTwitterLoading?: boolean;
|
20
|
+
isMicrosoftLoading?: boolean;
|
21
|
+
isEmailLoading?: boolean;
|
22
|
+
isPhoneLoading?: boolean;
|
23
|
+
isAppleLoading?: boolean;
|
24
|
+
handleGoogle?: () => void;
|
25
|
+
handleTwitter?: () => void;
|
26
|
+
handleApple?: () => void;
|
27
|
+
handleMicrosoft?: () => void;
|
28
|
+
handleGithub?: () => void;
|
29
|
+
handleEmail?: () => void;
|
30
|
+
handlePhone?: () => void;
|
31
|
+
};
|
32
|
+
declare const AuthButtons: React__default.FC<AuthButtonsType>;
|
33
|
+
|
8
34
|
type LoginFormTypes = {
|
9
35
|
/** Object containing text labels used throughout the form. */
|
10
36
|
texts?: LoginFormTextsTypes;
|
@@ -498,4 +524,4 @@ type UsageCardTypes = {
|
|
498
524
|
};
|
499
525
|
declare const Usage: FC<UsageCardTypes>;
|
500
526
|
|
501
|
-
export { ActionCard, AdCard, Announcement, AppLanding, CheckEmail, CodeConfirmation, ComparingPlans, ContactForm, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, HorizontalPricing, ItemCard, LandingCard, LeadGenerator, LegalTexts, LoginForm, NewPasswordForm, NoPermission, NotFound, PricingCard, PricingPlans, RegisterForm, ResetPasswordForm, Testimonial, Usage, UserReferralSource };
|
527
|
+
export { ActionCard, AdCard, Announcement, AppLanding, AuthButtons, CheckEmail, CodeConfirmation, ComparingPlans, ContactForm, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, HorizontalPricing, ItemCard, LandingCard, LeadGenerator, LegalTexts, LoginForm, NewPasswordForm, NoPermission, NotFound, PricingCard, PricingPlans, RegisterForm, ResetPasswordForm, Testimonial, Usage, UserReferralSource };
|