-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
50 changed files
with
396 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { | ||
Accordion as NextAccordion, | ||
AccordionItem as NextAccordionItem, | ||
} from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Accordion = withFragment(NextAccordion, 'accordion'); | ||
export const AccordionItem = withFragment(NextAccordionItem, 'accordionItem'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { | ||
Autocomplete as NextAutocomplete, | ||
AutocompleteItem as NextAutocompleteItem, | ||
AutocompleteSection as NextAutocompleteSection, | ||
} from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Autocomplete = withFragment(NextAutocomplete, 'autocomplete'); | ||
export const AutocompleteItem = withFragment(NextAutocompleteItem, 'autocompleteItem'); | ||
export const AutocompleteSection = withFragment(NextAutocompleteSection, 'autocompleteSection'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { | ||
Avatar as NextAvatar, | ||
AvatarGroup as NextAvatarGroup, | ||
} from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Avatar = withFragment(NextAvatar, 'avatar'); | ||
export const AvatarGroup = withFragment(NextAvatarGroup, 'avatarGroup'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Badge as NextBadge } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Badge = withFragment(NextBadge, 'badge'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { | ||
Breadcrumbs as NextBreadcrumbs, | ||
BreadcrumbItem as NextBreadcrumbItem, | ||
} from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Breadcrumbs = withFragment(NextBreadcrumbs, 'breadcrumbs'); | ||
export const BreadcrumbItem = withFragment(NextBreadcrumbItem, 'breadcrumbItem'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Button as NextButton } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Button = withFragment(NextButton, 'button'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { Card as NextCard } from '@nextui-org/react'; | ||
import { withFragment } from '../../withFragment'; | ||
|
||
export const Card = withFragment(NextCard, 'card'); | ||
export { CardBody, CardFooter, CardHeader } from '@nextui-org/react'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { | ||
Checkbox as NextCheckbox, | ||
Checkbox as NextCheckboxGroup, | ||
} from '@nextui-org/react'; | ||
import { withFragment } from '../../withFragment'; | ||
|
||
export const Checkbox = withFragment(NextCheckbox, 'checkbox'); | ||
export const CheckboxGroup = withFragment(NextCheckboxGroup, 'checkboxGroup'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Chip as NextChip } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Chip = withFragment(NextChip, 'chip'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { CircularProgress as NextCircularProgress } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const CircularProgress = withFragment(NextCircularProgress, 'circularProgress'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Code as NextCode } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Code = withFragment(NextCode, 'code'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Divider as NextDivider } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Divider = withFragment(NextDivider, 'divider'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { | ||
Dropdown as NextDropdown, | ||
DropdownItem as NextDropdownItem, | ||
DropdownMenu as NextDropdownMenu, | ||
DropdownSection as NextDropdownSection, | ||
DropdownTrigger as NextDropdownTrigger, | ||
} from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Dropdown = withFragment(NextDropdown, 'dropdown'); | ||
export const DropdownItem = withFragment(NextDropdownItem, 'dropdownItem'); | ||
export const DropdownMenu = withFragment(NextDropdownMenu, 'dropdownMenu'); | ||
export const DropdownSection = withFragment(NextDropdownSection, 'dropdownSection'); | ||
export const DropdownTrigger = withFragment(NextDropdownTrigger, 'dropdownTrigger'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Image as NextImage } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Image = withFragment(NextImage, 'image'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Input as NextInput } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Input = withFragment(NextInput, 'input'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Kbd as NextKbd } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Kbd = withFragment(NextKbd, 'kbd'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Link as NextLink } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Link = withFragment(NextLink, 'link'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { | ||
Listbox as NextListbox, | ||
ListboxItem as NextListboxItem, | ||
ListboxSection as NextListboxSection, | ||
} from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Listbox = withFragment(NextListbox, 'listbox'); | ||
export const ListboxItem = withFragment(NextListboxItem, 'listboxItem'); | ||
export const ListboxSection = withFragment(NextListboxSection, 'listboxSection'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { | ||
Modal as NextModal, | ||
ModalBody as NextModalBody, | ||
ModalContent as NextModalContent, | ||
ModalFooter as NextModalFooter, | ||
ModalHeader as NextModalHeader, | ||
} from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Modal = withFragment(NextModal, 'modal'); | ||
export const ModalBody = withFragment(NextModalBody, 'modalBody'); | ||
export const ModalContent = withFragment(NextModalContent, 'modalContent'); | ||
export const ModalFooter = withFragment(NextModalFooter, 'modalFooter'); | ||
export const ModalHeader = withFragment(NextModalHeader, 'modalHeader'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { | ||
Navbar as NextNavbar, | ||
NavbarBrand as NextNavbarBrand, | ||
NavbarContent as NextNavbarContent, | ||
NavbarItem as NextNavbarItem, | ||
NavbarMenu as NextNavbarMenu, | ||
NavbarMenuItem as NextNavbarMenuItem, | ||
NavbarMenuToggle as NextNavbarMenuToggle, | ||
} from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Navbar = withFragment(NextNavbar, 'navbar'); | ||
export const NavbarBrand = withFragment(NextNavbarBrand, 'navbarBrand'); | ||
export const NavbarContent = withFragment(NextNavbarContent, 'navbarContent'); | ||
export const NavbarItem = withFragment(NextNavbarItem, 'navbarItem'); | ||
export const NavbarMenu = withFragment(NextNavbarMenu, 'navbarMenu'); | ||
export const NavbarMenuItem = withFragment(NextNavbarMenuItem, 'navbarMenuItem'); | ||
export const NavbarMenuToggle = withFragment(NextNavbarMenuToggle, 'navbarMenuToggle'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { | ||
Pagination as NextPagination, | ||
PaginationItem as NextPaginationItem, | ||
PaginationCursor as NextPaginationCursor, | ||
} from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Pagination = withFragment(NextPagination, 'pagination'); | ||
export const PaginationItem = withFragment(NextPaginationItem, 'paginationItem'); | ||
export const PaginationCursor = withFragment(NextPaginationCursor, 'paginationCursor'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { | ||
Popover as NextPopover, | ||
PopoverContent as NextPopoverContent, | ||
PopoverTrigger as NextPopoverTrigger, | ||
} from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Popover = withFragment(NextPopover, 'popover'); | ||
export const PopoverContent = withFragment(NextPopoverContent, 'popoverContent'); | ||
export const PopoverTrigger = withFragment(NextPopoverTrigger, 'popoverTrigger'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Progress as NextProgress } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Progress = withFragment(NextProgress, 'progress'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { | ||
Radio as NextRadio, | ||
RadioGroup as NextRadioGroup, | ||
} from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Radio = withFragment(NextRadio, 'radio'); | ||
export const RadioGroup = withFragment(NextRadioGroup, 'radioGroup'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { ScrollShadow as NextScrollShadow } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const ScrollShadow = withFragment(NextScrollShadow, 'scrollShadow'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { | ||
Select as NextSelect, | ||
SelectItem as NextSelectItem, | ||
SelectSection as NextSelectSection, | ||
} from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Select = withFragment(NextSelect, 'select'); | ||
export const SelectItem = withFragment(NextSelectItem, 'selectItem'); | ||
export const SelectSection = withFragment(NextSelectSection, 'selectSection'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Skeleton as NextSkeleton } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Skeleton = withFragment(NextSkeleton, 'skeleton'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Slider as NextSlider } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Slider = withFragment(NextSlider, 'slider'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Snippet as NextSnippet } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Snippet = withFragment(NextSnippet, 'snippet'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Spacer as NextSpacer } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Spacer = withFragment(NextSpacer, 'spacer'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Spinner as NextSpinner } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Spinner = withFragment(NextSpinner, 'spinner'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Switch as NextSwitch } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Switch = withFragment(NextSwitch, 'switch'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { | ||
Tab as NextTab, | ||
Tabs as NextTabs, | ||
} from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Tab = withFragment(NextTab, 'tab'); | ||
export const Tabs = withFragment(NextTabs, 'tabs'); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Textarea as NextTextarea } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Textarea = withFragment(NextTextarea, 'textArea'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { Tooltip as NextTooltip } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const Tooltip = withFragment(NextTooltip, 'tooltip'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { User as NextUser } from '@nextui-org/react' | ||
import { withFragment } from '../../withFragment' | ||
|
||
export const User = withFragment(NextUser, 'user'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
export * from './Accordion' | ||
export * from './Autocomplete' | ||
export * from './Avatar' | ||
export * from './Badge' | ||
export * from './Breadcrumbs' | ||
export * from './Button' | ||
export * from './Card' | ||
export * from './Checkbox' | ||
export * from './Chip' | ||
export * from './CircularProgress' | ||
export * from './Code' | ||
export * from './Divider' | ||
export * from './Dropdown' | ||
export * from './Image' | ||
export * from './Input' | ||
export * from './Kbd' | ||
export * from './Link' | ||
export * from './Listbox' | ||
export * from './Modal' | ||
export * from './Navbar' | ||
export * from './Pagination' | ||
export * from './Popover' | ||
export * from './Progress' | ||
export * from './Radio' | ||
export * from './ScrollShadow' | ||
export * from './Select' | ||
export * from './Skeleton' | ||
export * from './Slider' | ||
export * from './Snippet' | ||
export * from './Spacer' | ||
export * from './Spinner' | ||
export * from './Switch' | ||
export * from './Tab' | ||
export * from './Table' | ||
export * from './Textarea' | ||
export * from './Tooltip' | ||
export * from './User' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export * from './base'; | ||
export * from './color-input/ColorInput'; | ||
export * from './color-selector/ColorSelector'; |
Oops, something went wrong.