@sikka/hawa 0.1.109 → 0.2.0
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/workflows/{hawa-ci.yml → hawa-beta.yml} +4 -3
- package/.github/workflows/hawa-main.yml +40 -0
- package/dist/index.d.mts +22 -1
- package/dist/index.d.ts +22 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/elements/index.ts +1 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
name: Hawa CI
|
|
1
|
+
name: Hawa CI - @beta
|
|
2
2
|
|
|
3
3
|
env:
|
|
4
4
|
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|
|
5
5
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
6
|
+
NPM_PUBLISH_TAG: beta # Specify the tag for publishing
|
|
6
7
|
|
|
7
8
|
on:
|
|
8
9
|
push:
|
|
@@ -36,8 +37,8 @@ jobs:
|
|
|
36
37
|
run: npm run build:styles
|
|
37
38
|
- name: Generate Tailwind Styles
|
|
38
39
|
run: npm run generate-css
|
|
39
|
-
- name: Publish to NPM
|
|
40
|
-
run: npm publish
|
|
40
|
+
- name: Publish to NPM @beta tag
|
|
41
|
+
run: npm publish --tag $NPM_PUBLISH_TAG # Specify the tag here
|
|
41
42
|
|
|
42
43
|
deploy-landing:
|
|
43
44
|
if: ${{ !contains(github.event.head_commit.message, 'skip_landing') }}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
name: Hawa CI - @latest
|
|
2
|
+
|
|
3
|
+
env:
|
|
4
|
+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|
|
5
|
+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
6
|
+
|
|
7
|
+
on:
|
|
8
|
+
release:
|
|
9
|
+
types:
|
|
10
|
+
- created
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
publish-package:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
strategy:
|
|
16
|
+
matrix:
|
|
17
|
+
node-version: [16.x]
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/checkout@v2
|
|
20
|
+
|
|
21
|
+
- name: Use Node.js v16
|
|
22
|
+
uses: actions/setup-node@v2
|
|
23
|
+
with:
|
|
24
|
+
node-version: 16
|
|
25
|
+
registry-url: https://registry.npmjs.org/
|
|
26
|
+
- name: Install dependencies
|
|
27
|
+
run: |
|
|
28
|
+
if [ -e 'package-lock.json' ]; then
|
|
29
|
+
npm ci
|
|
30
|
+
else
|
|
31
|
+
npm install
|
|
32
|
+
fi
|
|
33
|
+
- name: Build Library
|
|
34
|
+
run: npm run build-up
|
|
35
|
+
- name: Build Styles
|
|
36
|
+
run: npm run build:styles
|
|
37
|
+
- name: Generate Tailwind Styles
|
|
38
|
+
run: npm run generate-css
|
|
39
|
+
- name: Publish to NPM main tag
|
|
40
|
+
run: npm publish
|
package/dist/index.d.mts
CHANGED
|
@@ -778,6 +778,27 @@ type ComponentTypes = {
|
|
|
778
778
|
};
|
|
779
779
|
declare const UserReferralSource: FC<ComponentTypes>;
|
|
780
780
|
|
|
781
|
+
type IconProps = React.HTMLAttributes<SVGElement>;
|
|
782
|
+
declare const Icons: {
|
|
783
|
+
logo: (props: IconProps) => React$1.JSX.Element;
|
|
784
|
+
mail: (props: IconProps) => React$1.JSX.Element;
|
|
785
|
+
phone: (props: IconProps) => React$1.JSX.Element;
|
|
786
|
+
twitter: (props: IconProps) => React$1.JSX.Element;
|
|
787
|
+
microsoft: (props: IconProps) => React$1.JSX.Element;
|
|
788
|
+
gitHub: (props: IconProps) => React$1.JSX.Element;
|
|
789
|
+
radix: (props: IconProps) => React$1.JSX.Element;
|
|
790
|
+
aria: (props: IconProps) => React$1.JSX.Element;
|
|
791
|
+
npm: (props: IconProps) => React$1.JSX.Element;
|
|
792
|
+
yarn: (props: IconProps) => React$1.JSX.Element;
|
|
793
|
+
pnpm: (props: IconProps) => React$1.JSX.Element;
|
|
794
|
+
react: (props: IconProps) => React$1.JSX.Element;
|
|
795
|
+
tailwind: (props: IconProps) => React$1.JSX.Element;
|
|
796
|
+
google: (props: IconProps) => React$1.JSX.Element;
|
|
797
|
+
apple: (props: IconProps) => React$1.JSX.Element;
|
|
798
|
+
paypal: (props: IconProps) => React$1.JSX.Element;
|
|
799
|
+
spinner: (props: IconProps) => React$1.JSX.Element;
|
|
800
|
+
};
|
|
801
|
+
|
|
781
802
|
declare const buttonVariants: (props?: {
|
|
782
803
|
variant?: "link" | "default" | "outline" | "light" | "destructive" | "secondary" | "ghost" | "neoBrutalism";
|
|
783
804
|
size?: "icon" | "default" | "sm" | "lg" | "xl" | "heightless" | "xs" | "smallIcon";
|
|
@@ -1723,4 +1744,4 @@ declare function useToast(): {
|
|
|
1723
1744
|
toasts: ToasterToast[];
|
|
1724
1745
|
};
|
|
1725
1746
|
|
|
1726
|
-
export { ActionCard, Announcement, AppLanding, AppLayout, AppSidebar, ArrowCarousel, BackToTop, Box, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, ChargeWalletForm, CheckEmail, CheckoutForm, CodeConfirmation, ComparingPlans, ConfirmationPage, CreditCardForm, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DragDropImages, DraggableCard, DropdownMenu, EmptyState, FloatingComment, FloatingCommentExec, FloatingCommentSlate, Footer, HawaAccordion, HawaAdCard, HawaAlert, HawaAppLayout, HawaAppLayoutSimplified, HawaBanner, HawaBottomAppBar, HawaButton, HawaCheckbox, HawaChip, HawaCodeBlock, HawaColorPicker, HawaContainer, HawaCopyrights, HawaDatepicker, HawaGrid, HawaIconCount, HawaInlineCode, HawaItemCard, HawaLandingCard, HawaLoading, HawaMenu, HawaModal, HawaPanelTabs, HawaPhoneInput, HawaPinInput, HawaPricingCard, HawaRadio, HawaRange, HawaSearchBar, HawaSelect, HawaSettingsRow, HawaSiteLayout, HawaStats, HawaStepper, HawaStoreButtons, HawaTable, HawaTabs, HawaTextField, HawaTypography, HorizontalPricing, Input, InputProps, InterfaceSettings, InvoiceAccordion, Label, LeadGenerator, MenuItemType, NewPasswordForm, NoPermission, NotFound, PayWithWallet, Popover, PricingPlans, ReferralAccount, ReferralSettlement, ReferralStats, ResetPasswordForm, SelectPayment, Separator, SidebarGroup, SidebarItem, SignInBlock, SignInForm, SignInPhone, SignUpForm, Skeleton, StickyFeatures, SubItem$2 as SubItem, SubsectionList, Switch, 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, UserReferralSource, UserSettingsForm, buttonVariants, reducer, toast, useToast };
|
|
1747
|
+
export { ActionCard, Announcement, AppLanding, AppLayout, AppSidebar, ArrowCarousel, BackToTop, Box, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, ChargeWalletForm, CheckEmail, CheckoutForm, CodeConfirmation, ComparingPlans, ConfirmationPage, CreditCardForm, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DragDropImages, DraggableCard, DropdownMenu, EmptyState, FloatingComment, FloatingCommentExec, FloatingCommentSlate, Footer, HawaAccordion, HawaAdCard, HawaAlert, HawaAppLayout, HawaAppLayoutSimplified, HawaBanner, HawaBottomAppBar, HawaButton, HawaCheckbox, HawaChip, HawaCodeBlock, HawaColorPicker, HawaContainer, HawaCopyrights, HawaDatepicker, HawaGrid, HawaIconCount, HawaInlineCode, HawaItemCard, HawaLandingCard, HawaLoading, HawaMenu, HawaModal, HawaPanelTabs, HawaPhoneInput, HawaPinInput, HawaPricingCard, HawaRadio, HawaRange, HawaSearchBar, HawaSelect, HawaSettingsRow, HawaSiteLayout, HawaStats, HawaStepper, HawaStoreButtons, HawaTable, HawaTabs, HawaTextField, HawaTypography, HorizontalPricing, Icons, Input, InputProps, InterfaceSettings, InvoiceAccordion, Label, LeadGenerator, MenuItemType, NewPasswordForm, NoPermission, NotFound, PayWithWallet, Popover, PricingPlans, ReferralAccount, ReferralSettlement, ReferralStats, ResetPasswordForm, SelectPayment, Separator, SidebarGroup, SidebarItem, SignInBlock, SignInForm, SignInPhone, SignUpForm, Skeleton, StickyFeatures, SubItem$2 as SubItem, SubsectionList, Switch, 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, UserReferralSource, UserSettingsForm, buttonVariants, reducer, toast, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -778,6 +778,27 @@ type ComponentTypes = {
|
|
|
778
778
|
};
|
|
779
779
|
declare const UserReferralSource: FC<ComponentTypes>;
|
|
780
780
|
|
|
781
|
+
type IconProps = React.HTMLAttributes<SVGElement>;
|
|
782
|
+
declare const Icons: {
|
|
783
|
+
logo: (props: IconProps) => React$1.JSX.Element;
|
|
784
|
+
mail: (props: IconProps) => React$1.JSX.Element;
|
|
785
|
+
phone: (props: IconProps) => React$1.JSX.Element;
|
|
786
|
+
twitter: (props: IconProps) => React$1.JSX.Element;
|
|
787
|
+
microsoft: (props: IconProps) => React$1.JSX.Element;
|
|
788
|
+
gitHub: (props: IconProps) => React$1.JSX.Element;
|
|
789
|
+
radix: (props: IconProps) => React$1.JSX.Element;
|
|
790
|
+
aria: (props: IconProps) => React$1.JSX.Element;
|
|
791
|
+
npm: (props: IconProps) => React$1.JSX.Element;
|
|
792
|
+
yarn: (props: IconProps) => React$1.JSX.Element;
|
|
793
|
+
pnpm: (props: IconProps) => React$1.JSX.Element;
|
|
794
|
+
react: (props: IconProps) => React$1.JSX.Element;
|
|
795
|
+
tailwind: (props: IconProps) => React$1.JSX.Element;
|
|
796
|
+
google: (props: IconProps) => React$1.JSX.Element;
|
|
797
|
+
apple: (props: IconProps) => React$1.JSX.Element;
|
|
798
|
+
paypal: (props: IconProps) => React$1.JSX.Element;
|
|
799
|
+
spinner: (props: IconProps) => React$1.JSX.Element;
|
|
800
|
+
};
|
|
801
|
+
|
|
781
802
|
declare const buttonVariants: (props?: {
|
|
782
803
|
variant?: "link" | "default" | "outline" | "light" | "destructive" | "secondary" | "ghost" | "neoBrutalism";
|
|
783
804
|
size?: "icon" | "default" | "sm" | "lg" | "xl" | "heightless" | "xs" | "smallIcon";
|
|
@@ -1723,4 +1744,4 @@ declare function useToast(): {
|
|
|
1723
1744
|
toasts: ToasterToast[];
|
|
1724
1745
|
};
|
|
1725
1746
|
|
|
1726
|
-
export { ActionCard, Announcement, AppLanding, AppLayout, AppSidebar, ArrowCarousel, BackToTop, Box, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, ChargeWalletForm, CheckEmail, CheckoutForm, CodeConfirmation, ComparingPlans, ConfirmationPage, CreditCardForm, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DragDropImages, DraggableCard, DropdownMenu, EmptyState, FloatingComment, FloatingCommentExec, FloatingCommentSlate, Footer, HawaAccordion, HawaAdCard, HawaAlert, HawaAppLayout, HawaAppLayoutSimplified, HawaBanner, HawaBottomAppBar, HawaButton, HawaCheckbox, HawaChip, HawaCodeBlock, HawaColorPicker, HawaContainer, HawaCopyrights, HawaDatepicker, HawaGrid, HawaIconCount, HawaInlineCode, HawaItemCard, HawaLandingCard, HawaLoading, HawaMenu, HawaModal, HawaPanelTabs, HawaPhoneInput, HawaPinInput, HawaPricingCard, HawaRadio, HawaRange, HawaSearchBar, HawaSelect, HawaSettingsRow, HawaSiteLayout, HawaStats, HawaStepper, HawaStoreButtons, HawaTable, HawaTabs, HawaTextField, HawaTypography, HorizontalPricing, Input, InputProps, InterfaceSettings, InvoiceAccordion, Label, LeadGenerator, MenuItemType, NewPasswordForm, NoPermission, NotFound, PayWithWallet, Popover, PricingPlans, ReferralAccount, ReferralSettlement, ReferralStats, ResetPasswordForm, SelectPayment, Separator, SidebarGroup, SidebarItem, SignInBlock, SignInForm, SignInPhone, SignUpForm, Skeleton, StickyFeatures, SubItem$2 as SubItem, SubsectionList, Switch, 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, UserReferralSource, UserSettingsForm, buttonVariants, reducer, toast, useToast };
|
|
1747
|
+
export { ActionCard, Announcement, AppLanding, AppLayout, AppSidebar, ArrowCarousel, BackToTop, Box, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, ChargeWalletForm, CheckEmail, CheckoutForm, CodeConfirmation, ComparingPlans, ConfirmationPage, CreditCardForm, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DragDropImages, DraggableCard, DropdownMenu, EmptyState, FloatingComment, FloatingCommentExec, FloatingCommentSlate, Footer, HawaAccordion, HawaAdCard, HawaAlert, HawaAppLayout, HawaAppLayoutSimplified, HawaBanner, HawaBottomAppBar, HawaButton, HawaCheckbox, HawaChip, HawaCodeBlock, HawaColorPicker, HawaContainer, HawaCopyrights, HawaDatepicker, HawaGrid, HawaIconCount, HawaInlineCode, HawaItemCard, HawaLandingCard, HawaLoading, HawaMenu, HawaModal, HawaPanelTabs, HawaPhoneInput, HawaPinInput, HawaPricingCard, HawaRadio, HawaRange, HawaSearchBar, HawaSelect, HawaSettingsRow, HawaSiteLayout, HawaStats, HawaStepper, HawaStoreButtons, HawaTable, HawaTabs, HawaTextField, HawaTypography, HorizontalPricing, Icons, Input, InputProps, InterfaceSettings, InvoiceAccordion, Label, LeadGenerator, MenuItemType, NewPasswordForm, NoPermission, NotFound, PayWithWallet, Popover, PricingPlans, ReferralAccount, ReferralSettlement, ReferralStats, ResetPasswordForm, SelectPayment, Separator, SidebarGroup, SidebarItem, SignInBlock, SignInForm, SignInPhone, SignUpForm, Skeleton, StickyFeatures, SubItem$2 as SubItem, SubsectionList, Switch, 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, UserReferralSource, UserSettingsForm, buttonVariants, reducer, toast, useToast };
|