@customafk/lunas-ui 0.0.2 → 0.0.3-a
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/Atoms/AspectRatio/index.js +2 -0
- package/dist/Atoms/Avatar/index.js +3 -3
- package/dist/Atoms/Badge/index.js +2 -0
- package/dist/Atoms/Breadcrumb/index.js +7 -23
- package/dist/Atoms/Button/index.d.ts +2 -2
- package/dist/Atoms/Button/index.js +2 -0
- package/dist/Atoms/Card/index.js +2 -0
- package/dist/Atoms/Checkbox/index.d.ts +6 -0
- package/dist/Atoms/Checkbox/index.js +276 -0
- package/dist/Atoms/Command/index.d.ts +7 -7
- package/dist/Atoms/Command/index.js +39 -50
- package/dist/Atoms/Dialog/index.js +16 -31
- package/dist/Atoms/DropdownMenu/index.js +2 -0
- package/dist/Atoms/Form/index.js +32 -21
- package/dist/Atoms/Input/index.d.ts +5 -1
- package/dist/Atoms/Input/index.js +45 -543
- package/dist/Atoms/Label/index.js +2 -0
- package/dist/Atoms/MenuItem/index.d.ts +14 -0
- package/dist/Atoms/MenuItem/index.js +287 -0
- package/dist/Atoms/Money/index.js +2 -0
- package/dist/Atoms/Navbar/index.js +2 -0
- package/dist/Atoms/NavigationMenu/index.js +2 -0
- package/dist/Atoms/NumberInput/index.d.ts +7 -0
- package/dist/Atoms/NumberInput/index.js +321 -0
- package/dist/Atoms/Popover/index.d.ts +8 -0
- package/dist/Atoms/Popover/index.js +286 -0
- package/dist/Atoms/Progress/index.js +2 -0
- package/dist/Atoms/QuantityBtn/index.js +2 -0
- package/dist/Atoms/RadioGroup/index.d.ts +7 -0
- package/dist/Atoms/RadioGroup/index.js +285 -0
- package/dist/Atoms/ScrollBar/index.js +4 -2
- package/dist/Atoms/Select/index.js +2 -0
- package/dist/Atoms/Sheet/index.d.ts +29 -0
- package/dist/Atoms/Sheet/index.js +422 -0
- package/dist/Atoms/Slider/index.d.ts +6 -0
- package/dist/Atoms/Slider/index.js +286 -0
- package/dist/Atoms/SmallQuantityBtn/index.d.ts +9 -0
- package/dist/Atoms/SmallQuantityBtn/index.js +110 -0
- package/dist/Atoms/Switch/index.d.ts +6 -0
- package/dist/Atoms/Switch/index.js +293 -0
- package/dist/Atoms/Tabs/index.d.ts +9 -0
- package/dist/Atoms/Tabs/index.js +304 -0
- package/dist/Atoms/Textarea/index.d.ts +5 -0
- package/dist/Atoms/Textarea/index.js +283 -0
- package/dist/Atoms/Tooltip/index.d.ts +10 -0
- package/dist/Atoms/Tooltip/index.js +289 -0
- package/dist/Atoms/UserAvatar/index.d.ts +2 -2
- package/dist/Atoms/UserAvatar/index.js +24 -28
- package/dist/Atoms/XButton/index.d.ts +10 -0
- package/dist/Atoms/XButton/index.js +309 -0
- package/dist/Authentication/SignIn/index.d.ts +1 -1
- package/dist/Authentication/SignIn/index.js +129 -74
- package/dist/Authentication/SignUp/index.d.ts +5 -5
- package/dist/Authentication/SignUp/index.js +181 -110
- package/dist/Authentication/ThankYou/index.js +13 -4
- package/dist/Ecommerce/Categories/index.d.ts +33 -0
- package/dist/Ecommerce/Categories/index.js +1426 -0
- package/dist/Icons/index.d.ts +5 -3
- package/dist/Icons/index.js +126 -97
- package/dist/Molecules/AuthenForm/index.js +30 -21
- package/dist/Molecules/Search/index.js +46 -57
- package/dist/Molecules/UserDropdown/index.js +42 -33
- package/dist/Organisms/Header/index.d.ts +25 -3
- package/dist/Organisms/Header/index.js +585 -324
- package/dist/hooks/index.d.ts +1 -54
- package/dist/hooks/index.js +3 -127
- package/dist/{types-BgHhiNa-.d.ts → types-BlE003QY.d.ts} +1 -1
- package/package.json +85 -41
package/dist/Icons/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { I as IIconProps } from '../types-
|
|
2
|
+
import { I as IIconProps } from '../types-BlE003QY.js';
|
|
3
3
|
import { FC } from 'react';
|
|
4
4
|
|
|
5
5
|
declare const AvatarIcon: {
|
|
6
|
-
(
|
|
6
|
+
({ bgColor, color, size, ...Props }: IIconProps): react_jsx_runtime.JSX.Element;
|
|
7
7
|
displayName: string;
|
|
8
8
|
};
|
|
9
9
|
|
|
@@ -106,6 +106,8 @@ declare const Lucide2LayoutGrid: ({ color, size }: IIconProps) => react_jsx_runt
|
|
|
106
106
|
|
|
107
107
|
declare const Lucide2LayoutListIcon: ({ color, size, ...props }: IIconProps) => react_jsx_runtime.JSX.Element;
|
|
108
108
|
|
|
109
|
+
declare const Lucide2LoadingIcon: FC<IIconProps>;
|
|
110
|
+
|
|
109
111
|
declare const Lucide2LockIcon: {
|
|
110
112
|
(props: IIconProps): react_jsx_runtime.JSX.Element;
|
|
111
113
|
displayName: string;
|
|
@@ -183,4 +185,4 @@ declare const WhiteLogoWithIcon: {
|
|
|
183
185
|
displayName: string;
|
|
184
186
|
};
|
|
185
187
|
|
|
186
|
-
export { AvatarIcon, BlackDefaultLogo, BlackDefaultLogoWithIcon, DefaultLogo, DefaultLogoWithIcon, LocalCartIcon, LocalCoinIcon, LocalGoogleIcon, LocalHeartIcon, LocalListIcon, LocalLockIcon, LocalPhoneIcon, LocalUserIcon, Lucide2AddressIcon, Lucide2ChartBarIcon, Lucide2ChevronDownIcon, Lucide2ChevronRight as Lucide2ChevronRightIcon, Lucide2ChevronUpIcon, Lucide2CircleAlert, Lucide2DiamondIcon, Lucide2EyeIcon, Lucide2EyeOffIcon, Lucide2FillCartIcon, Lucide2LayoutGrid, Lucide2LayoutListIcon, Lucide2LockIcon, Lucide2LogOutIcon, Lucide2MainIcon as Lucide2MailIcon, Lucide2MapPinIcon, Lucide2MinusIcon, Lucide2NewPaperIcon, Lucide2NotiIcon, Lucide2PhoneIcon, Lucide2PlusIcon, Lucide2ReservationIcon, Lucide2Row2Icon, Lucide2SearchIcon, Lucide2SquarePenIcon, Lucide2TriangleAlertIcon, Lucide2UserIcon, Lucide2XIcon, SmallLogoIcon, WhiteLogo, WhiteLogoWithIcon };
|
|
188
|
+
export { AvatarIcon, BlackDefaultLogo, BlackDefaultLogoWithIcon, DefaultLogo, DefaultLogoWithIcon, LocalCartIcon, LocalCoinIcon, LocalGoogleIcon, LocalHeartIcon, LocalListIcon, LocalLockIcon, LocalPhoneIcon, LocalUserIcon, Lucide2AddressIcon, Lucide2ChartBarIcon, Lucide2ChevronDownIcon, Lucide2ChevronRight as Lucide2ChevronRightIcon, Lucide2ChevronUpIcon, Lucide2CircleAlert, Lucide2DiamondIcon, Lucide2EyeIcon, Lucide2EyeOffIcon, Lucide2FillCartIcon, Lucide2LayoutGrid, Lucide2LayoutListIcon, Lucide2LoadingIcon, Lucide2LockIcon, Lucide2LogOutIcon, Lucide2MainIcon as Lucide2MailIcon, Lucide2MapPinIcon, Lucide2MinusIcon, Lucide2NewPaperIcon, Lucide2NotiIcon, Lucide2PhoneIcon, Lucide2PlusIcon, Lucide2ReservationIcon, Lucide2Row2Icon, Lucide2SearchIcon, Lucide2SquarePenIcon, Lucide2TriangleAlertIcon, Lucide2UserIcon, Lucide2XIcon, SmallLogoIcon, WhiteLogo, WhiteLogoWithIcon };
|