@sikka/hawa 0.1.52 → 0.1.54
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/.github/ISSUE_TEMPLATE.yml +121 -0
- package/.github/config.yml +8 -0
- package/dist/index.d.mts +25 -11
- package/dist/index.d.ts +25 -11
- package/dist/index.js +1030 -925
- package/dist/index.mjs +810 -714
- package/dist/styles.css +62 -7
- package/package.json +2 -4
- package/src/blocks/AuthForms/SignInForm.tsx +1 -1
- package/src/blocks/Misc/Announcement.tsx +32 -0
- package/src/blocks/Misc/index.ts +1 -0
- package/src/elements/BackToTop.tsx +16 -18
- package/src/elements/Carousel.tsx +191 -0
- package/src/elements/HawaCodeBlock.tsx +36 -67
- package/src/elements/index.ts +1 -0
- package/src/hooks/index.ts +1 -0
- package/src/hooks/useCarousel.ts +58 -0
- package/src/styles.css +62 -7
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
name: Bug Report
|
|
2
|
+
description: Create a bug report for Hawa UI Kit
|
|
3
|
+
labels: ['template: bug']
|
|
4
|
+
body:
|
|
5
|
+
- type: markdown
|
|
6
|
+
attributes:
|
|
7
|
+
value: |
|
|
8
|
+
This template is to report Next.js bugs. [Examples](https://github.com/vercel/next.js/tree/canary/examples) related issues should be reported using [this](https://github.com/vercel/next.js/issues/new?assignees=&labels=type%3A+example%2Ctemplate%3A+bug&template=2.example_bug_report.yml) issue template instead.
|
|
9
|
+
Feature requests should be opened as [discussions](https://github.com/vercel/next.js/discussions/new?category=ideas). [Read more](https://github.com/vercel/next.js/blob/canary/contributing/core/adding-features.md).
|
|
10
|
+
|
|
11
|
+
Before opening a new issue, please do a [search](https://github.com/vercel/next.js/issues) of existing issues and :+1: upvote the existing issue instead. This will result in a quicker resolution.
|
|
12
|
+
|
|
13
|
+
If you need help with your own project, you can:
|
|
14
|
+
- Start a discussion in the ["Help" section](https://github.com/vercel/next.js/discussions/categories/help)
|
|
15
|
+
- Ask a question on the [Next.js Discord](https://discord.com/invite/nextjs) server
|
|
16
|
+
- type: input
|
|
17
|
+
attributes:
|
|
18
|
+
label: Link to the code that reproduces this issue or a replay of the bug
|
|
19
|
+
description: |
|
|
20
|
+
A link to a **public** [GitHub repository](https://github.com/vercel/next.js/tree/canary/examples/reproduction-template) or a [CodeSandbox](https://codesandbox.io/p/sandbox/github/vercel/next.js/tree/canary/examples/reproduction-template) minimal reproduction. Minimal reproductions should be created from our [bug report template with `npx create-next-app -e reproduction-template`](https://github.com/vercel/next.js/tree/canary/examples/reproduction-template) and should include only changes that contribute to the issue. To report a Pages Router related issue, you can use these templates: [`npx create-next-app -e reproduction-template-pages`](https://github.com/vercel/next.js/tree/canary/examples/reproduction-template-pages) or [CodeSandbox](https://codesandbox.io/p/sandbox/github/vercel/next.js/tree/canary/examples/reproduction-template-pages)
|
|
21
|
+
|
|
22
|
+
If a minimal reproduction can't be created, please share a [replay](https://www.replay.io/) of the bug which doesn't require sharing a private repo.
|
|
23
|
+
|
|
24
|
+
**Skipping this/providing an invalid link will result in the issue being closed**
|
|
25
|
+
placeholder: 'https://github.com/user/my-minimal-nextjs-issue-reproduction'
|
|
26
|
+
validations:
|
|
27
|
+
required: true
|
|
28
|
+
- type: textarea
|
|
29
|
+
attributes:
|
|
30
|
+
label: To Reproduce
|
|
31
|
+
description: A step-by-step description of how to reproduce the issue, based on the linked reproduction. Screenshots can be provided in the issue body below. If using code blocks, make sure that [syntax highlighting is correct](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks#syntax-highlighting) and double check that the rendered preview is not broken.
|
|
32
|
+
placeholder: |
|
|
33
|
+
1. Start the application in development (next dev)
|
|
34
|
+
2. Click X
|
|
35
|
+
3. Y will happen
|
|
36
|
+
validations:
|
|
37
|
+
required: true
|
|
38
|
+
- type: textarea
|
|
39
|
+
attributes:
|
|
40
|
+
label: Current vs. Expected behavior
|
|
41
|
+
description: A clear and concise description of what the bug is, and what you expected to happen.
|
|
42
|
+
placeholder: 'Following the steps from the previous section, I expected A to happen, but I observed B instead'
|
|
43
|
+
validations:
|
|
44
|
+
required: true
|
|
45
|
+
- type: checkboxes
|
|
46
|
+
attributes:
|
|
47
|
+
label: Verify canary release
|
|
48
|
+
description: 'Please run `npm install next@canary` to try the canary version of Next.js that ships daily. It includes all features and fixes that have not been released to the stable version yet. Some issues may already be fixed in the canary version, so please verify that your issue reproduces before opening a new issue.'
|
|
49
|
+
options:
|
|
50
|
+
- label: I verified that the issue exists in the latest Next.js canary release
|
|
51
|
+
required: true
|
|
52
|
+
- type: textarea
|
|
53
|
+
attributes:
|
|
54
|
+
label: Provide environment information
|
|
55
|
+
description: Please run `next info` in the root directory of your project and paste the results. You might need to use `npx --no-install next info` if next is not in the current PATH.
|
|
56
|
+
render: bash
|
|
57
|
+
placeholder: |
|
|
58
|
+
Operating System:
|
|
59
|
+
Platform: darwin
|
|
60
|
+
Arch: arm64
|
|
61
|
+
Version: Darwin Kernel Version 22.5.0
|
|
62
|
+
Binaries:
|
|
63
|
+
Node: 18.17.1
|
|
64
|
+
npm: 9.5.1
|
|
65
|
+
Yarn: 1.22.19
|
|
66
|
+
pnpm: N/A
|
|
67
|
+
Relevant Packages:
|
|
68
|
+
next: 13.4.20
|
|
69
|
+
eslint-config-next: 13.4.20
|
|
70
|
+
react: 18.2.0
|
|
71
|
+
react-dom: 18.2.0
|
|
72
|
+
typescript: 5.2.2
|
|
73
|
+
Next.js Config:
|
|
74
|
+
output: N/A
|
|
75
|
+
validations:
|
|
76
|
+
required: true
|
|
77
|
+
- type: dropdown
|
|
78
|
+
attributes:
|
|
79
|
+
label: Which area(s) are affected? (Select all that apply)
|
|
80
|
+
multiple: true
|
|
81
|
+
options:
|
|
82
|
+
- 'Not sure'
|
|
83
|
+
- 'App Router'
|
|
84
|
+
- 'CLI (create-next-app)'
|
|
85
|
+
- 'Data fetching (gS(S)P, getInitialProps)'
|
|
86
|
+
- 'Dynamic imports (next/dynamic)'
|
|
87
|
+
- 'ESLint (eslint-config-next)'
|
|
88
|
+
- 'Font optimization (next/font)'
|
|
89
|
+
- 'Image optimization (next/image, next/legacy/image)'
|
|
90
|
+
- 'Internationalization (i18n)'
|
|
91
|
+
- 'Jest (next/jest)'
|
|
92
|
+
- 'MDX (@next/mdx)'
|
|
93
|
+
- 'Metadata (metadata, generateMetadata, next/head)'
|
|
94
|
+
- 'Middleware / Edge (API routes, runtime)'
|
|
95
|
+
- 'Operating System (Windows, MacOS, Linux)'
|
|
96
|
+
- 'Package manager (npm, pnpm, Yarn)'
|
|
97
|
+
- 'Routing (next/router, next/navigation, next/link)'
|
|
98
|
+
- 'Script optimization (next/script)'
|
|
99
|
+
- 'Standalone mode (output: "standalone")'
|
|
100
|
+
- 'Static HTML Export (output: "export")'
|
|
101
|
+
- 'SWC minifier (swcMinify: true)'
|
|
102
|
+
- 'SWC transpilation'
|
|
103
|
+
- 'Turbopack (--turbo)'
|
|
104
|
+
- 'TypeScript (plugin, built-in types)'
|
|
105
|
+
validations:
|
|
106
|
+
required: true
|
|
107
|
+
- type: markdown
|
|
108
|
+
attributes:
|
|
109
|
+
value: |
|
|
110
|
+
Another way you can help the maintainers' job is to pinpoint the `canary` version of `next` that introduced the issue. Check out our [releases](https://github.com/vercel/next.js/releases), and try to find the first `canary` release that introduced the issue. This will help us narrow down the scope of the issue, and possibly point to the PR/code change that introduced it. You can install a specific version of `next` by running `npm install next@<version>`.
|
|
111
|
+
- type: textarea
|
|
112
|
+
attributes:
|
|
113
|
+
label: Additional context
|
|
114
|
+
description: |
|
|
115
|
+
Any extra information that might help us investigate. For example, where are you deploying your application (Vercel, Docker, other platform)? Is it only reproducible on that platform, or locally too? Is the issue only happening in a specific browser? etc.
|
|
116
|
+
placeholder: |
|
|
117
|
+
I tested my reproduction against different canary releases, and the first one that introduced the bug was "13.4.20-canary.13", since reverting to "13.4.20-canary.12" works.
|
|
118
|
+
|
|
119
|
+
or
|
|
120
|
+
|
|
121
|
+
I am hosting via Docker with the recommended `output: "standalone"` option", and if I remove that option or try a different hosting option, I cannot reproduce the same issue.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
blank_issues_enabled: false
|
|
2
|
+
contact_links:
|
|
3
|
+
- name: Ask a question
|
|
4
|
+
url: https://github.com/sikka-software/hawa/discussions
|
|
5
|
+
about: Ask questions and discuss with other community members
|
|
6
|
+
- name: Feature request
|
|
7
|
+
url: https://github.com/sikka-software/hawa/discussions/new?category=ideas
|
|
8
|
+
about: Feature requests should be opened as discussions
|
package/dist/index.d.mts
CHANGED
|
@@ -493,7 +493,7 @@ type InvoiceAccordionTypes = {
|
|
|
493
493
|
};
|
|
494
494
|
declare const InvoiceAccordion: FC<InvoiceAccordionTypes>;
|
|
495
495
|
|
|
496
|
-
type ComponentTypes$
|
|
496
|
+
type ComponentTypes$3 = {
|
|
497
497
|
title?: string;
|
|
498
498
|
question: string;
|
|
499
499
|
options?: [];
|
|
@@ -504,21 +504,21 @@ type ComponentTypes$4 = {
|
|
|
504
504
|
position?: "bottom-right" | "bottom-left";
|
|
505
505
|
onOptionClicked?: (option: any) => void;
|
|
506
506
|
};
|
|
507
|
-
declare const UserFeedback: FC<ComponentTypes$
|
|
507
|
+
declare const UserFeedback: FC<ComponentTypes$3>;
|
|
508
508
|
|
|
509
509
|
type Item$4 = {
|
|
510
510
|
label?: string;
|
|
511
511
|
icon?: JSX.Element;
|
|
512
512
|
};
|
|
513
|
-
type ComponentTypes$
|
|
513
|
+
type ComponentTypes$2 = {
|
|
514
514
|
items: Item$4[];
|
|
515
515
|
index?: number;
|
|
516
516
|
arrowSize?: number;
|
|
517
517
|
labelSize?: "small" | "medium" | "big";
|
|
518
518
|
};
|
|
519
|
-
declare const ArrowCarousel: FC<ComponentTypes$
|
|
519
|
+
declare const ArrowCarousel: FC<ComponentTypes$2>;
|
|
520
520
|
|
|
521
|
-
type ComponentTypes$
|
|
521
|
+
type ComponentTypes$1 = {
|
|
522
522
|
rtl?: "enabled" | "disabled" | "auto";
|
|
523
523
|
onSubmit?: (content: string, stylings: {
|
|
524
524
|
type: keyof typeof stylers;
|
|
@@ -547,7 +547,7 @@ declare const stylers: {
|
|
|
547
547
|
content: string;
|
|
548
548
|
};
|
|
549
549
|
};
|
|
550
|
-
declare const FloatingComment: React__default.FunctionComponent<ComponentTypes$
|
|
550
|
+
declare const FloatingComment: React__default.FunctionComponent<ComponentTypes$1>;
|
|
551
551
|
|
|
552
552
|
type CustomElement = {
|
|
553
553
|
type: "paragraph";
|
|
@@ -565,17 +565,17 @@ declare module "slate" {
|
|
|
565
565
|
}
|
|
566
566
|
declare const FloatingCommentSlate: () => React__default.JSX.Element;
|
|
567
567
|
|
|
568
|
-
type ComponentTypes
|
|
569
|
-
declare const FloatingCommentExec: React__default.FC<ComponentTypes
|
|
568
|
+
type ComponentTypes = {};
|
|
569
|
+
declare const FloatingCommentExec: React__default.FC<ComponentTypes>;
|
|
570
570
|
|
|
571
|
-
type
|
|
571
|
+
type BackToTopTypes = {
|
|
572
572
|
paddingX?: number;
|
|
573
573
|
paddingY?: number;
|
|
574
574
|
paddingThreshold?: number;
|
|
575
575
|
corner?: "top-left" | "top-right" | "bottom-left" | "bottom-right";
|
|
576
576
|
anchor: RefObject<HTMLInputElement>;
|
|
577
577
|
};
|
|
578
|
-
declare const BackToTop: FC<
|
|
578
|
+
declare const BackToTop: FC<BackToTopTypes>;
|
|
579
579
|
|
|
580
580
|
type InlineCodeTypes = {
|
|
581
581
|
text: string;
|
|
@@ -755,6 +755,11 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, V
|
|
|
755
755
|
}
|
|
756
756
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
757
757
|
|
|
758
|
+
interface CarouselProps {
|
|
759
|
+
images: string[];
|
|
760
|
+
}
|
|
761
|
+
declare const Carousel: React__default.FC<CarouselProps>;
|
|
762
|
+
|
|
758
763
|
declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_dist_types.ClassProp) => string> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
759
764
|
|
|
760
765
|
interface InputProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
|
|
@@ -1612,6 +1617,15 @@ type TLeadGenerator = {
|
|
|
1612
1617
|
};
|
|
1613
1618
|
declare const LeadGenerator: FC<TLeadGenerator>;
|
|
1614
1619
|
|
|
1620
|
+
type AnnouncementTypes = {
|
|
1621
|
+
variant?: "outlined" | "contained" | "neobrutalism";
|
|
1622
|
+
onActionClick: () => void;
|
|
1623
|
+
actionText?: string;
|
|
1624
|
+
title?: string;
|
|
1625
|
+
subtitle?: string;
|
|
1626
|
+
};
|
|
1627
|
+
declare const Announcement: FC<AnnouncementTypes>;
|
|
1628
|
+
|
|
1615
1629
|
type TNoPermission = {
|
|
1616
1630
|
variant?: "outlined" | "contained" | "neobrutalism";
|
|
1617
1631
|
texts?: {
|
|
@@ -1664,4 +1678,4 @@ declare function useToast(): {
|
|
|
1664
1678
|
toasts: ToasterToast[];
|
|
1665
1679
|
};
|
|
1666
1680
|
|
|
1667
|
-
export { AppLanding, AppLayout, AppSidebar, ArrowCarousel, BackToTop, Box, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChargeWalletForm, CheckoutForm, CodeConfirmation, ComparingPlans, ConfirmationPage, CreditCardForm, DragDropImages, DraggableCard, DropdownMenu, EmptyState, FloatingComment, FloatingCommentExec, FloatingCommentSlate, Footer, HawaAccordion, HawaAdCard, HawaAlert, HawaAppLayout, HawaAppLayoutSimplified, HawaBanner, HawaBottomAppBar, HawaButton, HawaCheckbox, HawaChip, HawaCodeBlock, HawaColorPicker, HawaContainer, HawaCopyrights, HawaDatepicker, HawaDropdownMenu, HawaGrid, HawaIconCount, HawaInlineCode, HawaItemCard, HawaLandingCard, HawaLoading, HawaLogoButton, HawaMenu, HawaModal, HawaPanelTabs, HawaPhoneInput, HawaPinInput, HawaPricingCard, HawaRadio, HawaRange, HawaSearchBar, HawaSelect, HawaSettingsRow, HawaSiteLayout, HawaSnackbar, HawaStats, HawaStepper, HawaStoreButtons, HawaSwitch, HawaTable, HawaTabs, HawaTextField, HawaTooltip, HawaTypography, HorizontalPricing, Input, InputProps, InterfaceSettings, InvoiceAccordion, Label, LeadGenerator, NewPasswordForm, NoPermission, NotFound, PayWithWallet, Popover, PricingPlans, ReferralAccount, ReferralSettlement, ReferralStats, ResetPasswordForm, SelectPayment, Separator, SidebarGroup, SidebarItem, SignInBlock, SignInForm, SignInPhone, SignUpForm, Skeleton, SubsectionList, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, TextareaProps, Timeline, Toast$1 as Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, UsageCard, UserFeedback, UserProfileForm, UserSettingsForm, buttonVariants, reducer, toast, useToast };
|
|
1681
|
+
export { Announcement, AppLanding, AppLayout, AppSidebar, ArrowCarousel, BackToTop, Box, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, ChargeWalletForm, CheckoutForm, CodeConfirmation, ComparingPlans, ConfirmationPage, CreditCardForm, DragDropImages, DraggableCard, DropdownMenu, EmptyState, FloatingComment, FloatingCommentExec, FloatingCommentSlate, Footer, HawaAccordion, HawaAdCard, HawaAlert, HawaAppLayout, HawaAppLayoutSimplified, HawaBanner, HawaBottomAppBar, HawaButton, HawaCheckbox, HawaChip, HawaCodeBlock, HawaColorPicker, HawaContainer, HawaCopyrights, HawaDatepicker, HawaDropdownMenu, HawaGrid, HawaIconCount, HawaInlineCode, HawaItemCard, HawaLandingCard, HawaLoading, HawaLogoButton, HawaMenu, HawaModal, HawaPanelTabs, HawaPhoneInput, HawaPinInput, HawaPricingCard, HawaRadio, HawaRange, HawaSearchBar, HawaSelect, HawaSettingsRow, HawaSiteLayout, HawaSnackbar, HawaStats, HawaStepper, HawaStoreButtons, HawaSwitch, HawaTable, HawaTabs, HawaTextField, HawaTooltip, HawaTypography, HorizontalPricing, Input, InputProps, InterfaceSettings, InvoiceAccordion, Label, LeadGenerator, NewPasswordForm, NoPermission, NotFound, PayWithWallet, Popover, PricingPlans, ReferralAccount, ReferralSettlement, ReferralStats, ResetPasswordForm, SelectPayment, Separator, SidebarGroup, SidebarItem, SignInBlock, SignInForm, SignInPhone, SignUpForm, Skeleton, SubsectionList, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, TextareaProps, Timeline, Toast$1 as Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, UsageCard, UserFeedback, UserProfileForm, UserSettingsForm, buttonVariants, reducer, toast, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -493,7 +493,7 @@ type InvoiceAccordionTypes = {
|
|
|
493
493
|
};
|
|
494
494
|
declare const InvoiceAccordion: FC<InvoiceAccordionTypes>;
|
|
495
495
|
|
|
496
|
-
type ComponentTypes$
|
|
496
|
+
type ComponentTypes$3 = {
|
|
497
497
|
title?: string;
|
|
498
498
|
question: string;
|
|
499
499
|
options?: [];
|
|
@@ -504,21 +504,21 @@ type ComponentTypes$4 = {
|
|
|
504
504
|
position?: "bottom-right" | "bottom-left";
|
|
505
505
|
onOptionClicked?: (option: any) => void;
|
|
506
506
|
};
|
|
507
|
-
declare const UserFeedback: FC<ComponentTypes$
|
|
507
|
+
declare const UserFeedback: FC<ComponentTypes$3>;
|
|
508
508
|
|
|
509
509
|
type Item$4 = {
|
|
510
510
|
label?: string;
|
|
511
511
|
icon?: JSX.Element;
|
|
512
512
|
};
|
|
513
|
-
type ComponentTypes$
|
|
513
|
+
type ComponentTypes$2 = {
|
|
514
514
|
items: Item$4[];
|
|
515
515
|
index?: number;
|
|
516
516
|
arrowSize?: number;
|
|
517
517
|
labelSize?: "small" | "medium" | "big";
|
|
518
518
|
};
|
|
519
|
-
declare const ArrowCarousel: FC<ComponentTypes$
|
|
519
|
+
declare const ArrowCarousel: FC<ComponentTypes$2>;
|
|
520
520
|
|
|
521
|
-
type ComponentTypes$
|
|
521
|
+
type ComponentTypes$1 = {
|
|
522
522
|
rtl?: "enabled" | "disabled" | "auto";
|
|
523
523
|
onSubmit?: (content: string, stylings: {
|
|
524
524
|
type: keyof typeof stylers;
|
|
@@ -547,7 +547,7 @@ declare const stylers: {
|
|
|
547
547
|
content: string;
|
|
548
548
|
};
|
|
549
549
|
};
|
|
550
|
-
declare const FloatingComment: React__default.FunctionComponent<ComponentTypes$
|
|
550
|
+
declare const FloatingComment: React__default.FunctionComponent<ComponentTypes$1>;
|
|
551
551
|
|
|
552
552
|
type CustomElement = {
|
|
553
553
|
type: "paragraph";
|
|
@@ -565,17 +565,17 @@ declare module "slate" {
|
|
|
565
565
|
}
|
|
566
566
|
declare const FloatingCommentSlate: () => React__default.JSX.Element;
|
|
567
567
|
|
|
568
|
-
type ComponentTypes
|
|
569
|
-
declare const FloatingCommentExec: React__default.FC<ComponentTypes
|
|
568
|
+
type ComponentTypes = {};
|
|
569
|
+
declare const FloatingCommentExec: React__default.FC<ComponentTypes>;
|
|
570
570
|
|
|
571
|
-
type
|
|
571
|
+
type BackToTopTypes = {
|
|
572
572
|
paddingX?: number;
|
|
573
573
|
paddingY?: number;
|
|
574
574
|
paddingThreshold?: number;
|
|
575
575
|
corner?: "top-left" | "top-right" | "bottom-left" | "bottom-right";
|
|
576
576
|
anchor: RefObject<HTMLInputElement>;
|
|
577
577
|
};
|
|
578
|
-
declare const BackToTop: FC<
|
|
578
|
+
declare const BackToTop: FC<BackToTopTypes>;
|
|
579
579
|
|
|
580
580
|
type InlineCodeTypes = {
|
|
581
581
|
text: string;
|
|
@@ -755,6 +755,11 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, V
|
|
|
755
755
|
}
|
|
756
756
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
757
757
|
|
|
758
|
+
interface CarouselProps {
|
|
759
|
+
images: string[];
|
|
760
|
+
}
|
|
761
|
+
declare const Carousel: React__default.FC<CarouselProps>;
|
|
762
|
+
|
|
758
763
|
declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_dist_types.ClassProp) => string> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
759
764
|
|
|
760
765
|
interface InputProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
|
|
@@ -1612,6 +1617,15 @@ type TLeadGenerator = {
|
|
|
1612
1617
|
};
|
|
1613
1618
|
declare const LeadGenerator: FC<TLeadGenerator>;
|
|
1614
1619
|
|
|
1620
|
+
type AnnouncementTypes = {
|
|
1621
|
+
variant?: "outlined" | "contained" | "neobrutalism";
|
|
1622
|
+
onActionClick: () => void;
|
|
1623
|
+
actionText?: string;
|
|
1624
|
+
title?: string;
|
|
1625
|
+
subtitle?: string;
|
|
1626
|
+
};
|
|
1627
|
+
declare const Announcement: FC<AnnouncementTypes>;
|
|
1628
|
+
|
|
1615
1629
|
type TNoPermission = {
|
|
1616
1630
|
variant?: "outlined" | "contained" | "neobrutalism";
|
|
1617
1631
|
texts?: {
|
|
@@ -1664,4 +1678,4 @@ declare function useToast(): {
|
|
|
1664
1678
|
toasts: ToasterToast[];
|
|
1665
1679
|
};
|
|
1666
1680
|
|
|
1667
|
-
export { AppLanding, AppLayout, AppSidebar, ArrowCarousel, BackToTop, Box, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChargeWalletForm, CheckoutForm, CodeConfirmation, ComparingPlans, ConfirmationPage, CreditCardForm, DragDropImages, DraggableCard, DropdownMenu, EmptyState, FloatingComment, FloatingCommentExec, FloatingCommentSlate, Footer, HawaAccordion, HawaAdCard, HawaAlert, HawaAppLayout, HawaAppLayoutSimplified, HawaBanner, HawaBottomAppBar, HawaButton, HawaCheckbox, HawaChip, HawaCodeBlock, HawaColorPicker, HawaContainer, HawaCopyrights, HawaDatepicker, HawaDropdownMenu, HawaGrid, HawaIconCount, HawaInlineCode, HawaItemCard, HawaLandingCard, HawaLoading, HawaLogoButton, HawaMenu, HawaModal, HawaPanelTabs, HawaPhoneInput, HawaPinInput, HawaPricingCard, HawaRadio, HawaRange, HawaSearchBar, HawaSelect, HawaSettingsRow, HawaSiteLayout, HawaSnackbar, HawaStats, HawaStepper, HawaStoreButtons, HawaSwitch, HawaTable, HawaTabs, HawaTextField, HawaTooltip, HawaTypography, HorizontalPricing, Input, InputProps, InterfaceSettings, InvoiceAccordion, Label, LeadGenerator, NewPasswordForm, NoPermission, NotFound, PayWithWallet, Popover, PricingPlans, ReferralAccount, ReferralSettlement, ReferralStats, ResetPasswordForm, SelectPayment, Separator, SidebarGroup, SidebarItem, SignInBlock, SignInForm, SignInPhone, SignUpForm, Skeleton, SubsectionList, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, TextareaProps, Timeline, Toast$1 as Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, UsageCard, UserFeedback, UserProfileForm, UserSettingsForm, buttonVariants, reducer, toast, useToast };
|
|
1681
|
+
export { Announcement, AppLanding, AppLayout, AppSidebar, ArrowCarousel, BackToTop, Box, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, ChargeWalletForm, CheckoutForm, CodeConfirmation, ComparingPlans, ConfirmationPage, CreditCardForm, DragDropImages, DraggableCard, DropdownMenu, EmptyState, FloatingComment, FloatingCommentExec, FloatingCommentSlate, Footer, HawaAccordion, HawaAdCard, HawaAlert, HawaAppLayout, HawaAppLayoutSimplified, HawaBanner, HawaBottomAppBar, HawaButton, HawaCheckbox, HawaChip, HawaCodeBlock, HawaColorPicker, HawaContainer, HawaCopyrights, HawaDatepicker, HawaDropdownMenu, HawaGrid, HawaIconCount, HawaInlineCode, HawaItemCard, HawaLandingCard, HawaLoading, HawaLogoButton, HawaMenu, HawaModal, HawaPanelTabs, HawaPhoneInput, HawaPinInput, HawaPricingCard, HawaRadio, HawaRange, HawaSearchBar, HawaSelect, HawaSettingsRow, HawaSiteLayout, HawaSnackbar, HawaStats, HawaStepper, HawaStoreButtons, HawaSwitch, HawaTable, HawaTabs, HawaTextField, HawaTooltip, HawaTypography, HorizontalPricing, Input, InputProps, InterfaceSettings, InvoiceAccordion, Label, LeadGenerator, NewPasswordForm, NoPermission, NotFound, PayWithWallet, Popover, PricingPlans, ReferralAccount, ReferralSettlement, ReferralStats, ResetPasswordForm, SelectPayment, Separator, SidebarGroup, SidebarItem, SignInBlock, SignInForm, SignInPhone, SignUpForm, Skeleton, SubsectionList, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, TextareaProps, Timeline, Toast$1 as Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, UsageCard, UserFeedback, UserProfileForm, UserSettingsForm, buttonVariants, reducer, toast, useToast };
|