-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(*): resolve an issue that some types could not begenerated
- Loading branch information
1 parent
8bda320
commit 1cf9658
Showing
187 changed files
with
1,541 additions
and
976 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
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,7 @@ | ||
import { AccordionItem as Item } from './accordion-item' | ||
import { AccordionItemContent as ItemContent } from './accordion-item-content' | ||
import { AccordionItemIndicator as ItemIndicator } from './accordion-item-indicator' | ||
import { AccordionItemTrigger as ItemTrigger } from './accordion-item-trigger' | ||
import { AccordionRoot as Root } from './accordion-root' | ||
|
||
export { Item, ItemContent, ItemIndicator, ItemTrigger, Root } |
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,5 @@ | ||
import { AvatarFallback as Fallback } from './avatar-fallback' | ||
import { AvatarImage as Image } from './avatar-image' | ||
import { AvatarRoot as Root } from './avatar-root' | ||
|
||
export { Fallback, Image, Root } |
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,21 @@ | ||
import { CarouselControl as Control } from './carousel-control' | ||
import { CarouselIndicator as Indicator } from './carousel-indicator' | ||
import { CarouselIndicatorGroup as IndicatorGroup } from './carousel-indicator-group' | ||
import { CarouselItem as Item } from './carousel-item' | ||
import { CarouselItemGroup as ItemGroup } from './carousel-item-group' | ||
import { CarouselNextTrigger as NextTrigger } from './carousel-next-trigger' | ||
import { CarouselPrevTrigger as PrevTrigger } from './carousel-prev-trigger' | ||
import { CarouselRoot as Root } from './carousel-root' | ||
import { CarouselViewport as Viewport } from './carousel-viewport' | ||
|
||
export { | ||
Control, | ||
Indicator, | ||
IndicatorGroup, | ||
Item, | ||
ItemGroup, | ||
NextTrigger, | ||
PrevTrigger, | ||
Root, | ||
Viewport, | ||
} |
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,6 @@ | ||
import { CheckboxControl as Control } from './checkbox-control' | ||
import { CheckboxIndicator as Indicator } from './checkbox-indicator' | ||
import { CheckboxLabel as Label } from './checkbox-label' | ||
import { CheckboxRoot as Root } from './checkbox-root' | ||
|
||
export { Control, Indicator, Label, Root } |
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
49 changes: 49 additions & 0 deletions
49
packages/frameworks/react/src/color-picker/color-picker.tsx
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,49 @@ | ||
import { ColorPickerArea as Area } from './color-picker-area' | ||
import { ColorPickerAreaBackground as AreaBackground } from './color-picker-area-background' | ||
import { ColorPickerAreaThumb as AreaThumb } from './color-picker-area-thumb' | ||
import { ColorPickerChannelInput as ChannelInput } from './color-picker-channel-input' | ||
import { ColorPickerChannelSlider as ChannelSlider } from './color-picker-channel-slider' | ||
import { ColorPickerChannelSliderThumb as ChannelSliderThumb } from './color-picker-channel-slider-thumb' | ||
import { ColorPickerChannelSliderTrack as ChannelSliderTrack } from './color-picker-channel-slider-track' | ||
import { ColorPickerContent as Content } from './color-picker-content' | ||
import { ColorPickerControl as Control } from './color-picker-control' | ||
import { ColorPickerEyeDropperTrigger as EyeDropperTrigger } from './color-picker-eye-dropper-trigger' | ||
import { ColorPickerFormatSelect as FormatSelect } from './color-picker-format-select' | ||
import { ColorPickerFormatTrigger as FormatTrigger } from './color-picker-format-trigger' | ||
import { ColorPickerLabel as Label } from './color-picker-label' | ||
import { ColorPickerPositioner as Positioner } from './color-picker-positioner' | ||
import { ColorPickerRoot as Root } from './color-picker-root' | ||
import { ColorPickerSwatch as Swatch } from './color-picker-swatch' | ||
import { ColorPickerSwatchGroup as SwatchGroup } from './color-picker-swatch-group' | ||
import { ColorPickerSwatchIndicator as SwatchIndicator } from './color-picker-swatch-indicator' | ||
import { ColorPickerSwatchTrigger as SwatchTrigger } from './color-picker-swatch-trigger' | ||
import { ColorPickerTransparencyGrid as TransparencyGrid } from './color-picker-transparency-grid' | ||
import { ColorPickerTrigger as Trigger } from './color-picker-trigger' | ||
import { ColorPickerValueText as ValueText } from './color-picker-value-text' | ||
import { ColorPickerView as View } from './color-picker-view' | ||
|
||
export { | ||
Area, | ||
AreaBackground, | ||
AreaThumb, | ||
ChannelInput, | ||
ChannelSlider, | ||
ChannelSliderThumb, | ||
ChannelSliderTrack, | ||
Content, | ||
Control, | ||
EyeDropperTrigger, | ||
FormatSelect, | ||
FormatTrigger, | ||
Label, | ||
Positioner, | ||
Root, | ||
Swatch, | ||
SwatchGroup, | ||
SwatchIndicator, | ||
SwatchTrigger, | ||
TransparencyGrid, | ||
Trigger, | ||
ValueText, | ||
View, | ||
} |
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,29 @@ | ||
import { ComboboxClearTrigger as ClearTrigger } from './combobox-clear-trigger' | ||
import { ComboboxContent as Content } from './combobox-content' | ||
import { ComboboxControl as Control } from './combobox-control' | ||
import { ComboboxInput as Input } from './combobox-input' | ||
import { ComboboxItem as Item } from './combobox-item' | ||
import { ComboboxItemGroup as ItemGroup } from './combobox-item-group' | ||
import { ComboboxItemGroupLabel as ItemGroupLabel } from './combobox-item-group-label' | ||
import { ComboboxItemIndicator as ItemIndicator } from './combobox-item-indicator' | ||
import { ComboboxItemText as ItemText } from './combobox-item-text' | ||
import { ComboboxLabel as Label } from './combobox-label' | ||
import { ComboboxPositioner as Positioner } from './combobox-positioner' | ||
import { ComboboxRoot as Root } from './combobox-root' | ||
import { ComboboxTrigger as Trigger } from './combobox-trigger' | ||
|
||
export { | ||
ClearTrigger, | ||
Content, | ||
Control, | ||
Input, | ||
Item, | ||
ItemGroup, | ||
ItemGroupLabel, | ||
ItemIndicator, | ||
ItemText, | ||
Label, | ||
Positioner, | ||
Root, | ||
Trigger, | ||
} |
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,49 @@ | ||
import { DatePickerClearTrigger as ClearTrigger } from './date-picker-clear-trigger' | ||
import { DatePickerContent as Content } from './date-picker-content' | ||
import { DatePickerControl as Control } from './date-picker-control' | ||
import { DatePickerInput as Input } from './date-picker-input' | ||
import { DatePickerLabel as Label } from './date-picker-label' | ||
import { DatePickerMonthSelect as MonthSelect } from './date-picker-month-select' | ||
import { DatePickerNextTrigger as NextTrigger } from './date-picker-next-trigger' | ||
import { DatePickerPositioner as Positioner } from './date-picker-positioner' | ||
import { DatePickerPrevTrigger as PrevTrigger } from './date-picker-prev-trigger' | ||
import { DatePickerRangeText as RangeText } from './date-picker-range-text' | ||
import { DatePickerRoot as Root } from './date-picker-root' | ||
import { DatePickerTable as Table } from './date-picker-table' | ||
import { DatePickerTableBody as TableBody } from './date-picker-table-body' | ||
import { DatePickerTableCell as TableCell } from './date-picker-table-cell' | ||
import { DatePickerTableCellTrigger as TableCellTrigger } from './date-picker-table-cell-trigger' | ||
import { DatePickerTableHead as TableHead } from './date-picker-table-head' | ||
import { DatePickerTableHeader as TableHeader } from './date-picker-table-header' | ||
import { DatePickerTableRow as TableRow } from './date-picker-table-row' | ||
import { DatePickerTrigger as Trigger } from './date-picker-trigger' | ||
import { DatePickerView as View } from './date-picker-view' | ||
import { DatePickerViewControl as ViewControl } from './date-picker-view-control' | ||
import { DatePickerViewTrigger as ViewTrigger } from './date-picker-view-trigger' | ||
import { DatePickerYearSelect as YearSelect } from './date-picker-year-select' | ||
|
||
export { | ||
ClearTrigger, | ||
Content, | ||
Control, | ||
Input, | ||
Label, | ||
MonthSelect, | ||
NextTrigger, | ||
Positioner, | ||
PrevTrigger, | ||
RangeText, | ||
Root, | ||
Table, | ||
TableBody, | ||
TableCell, | ||
TableCellTrigger, | ||
TableHead, | ||
TableHeader, | ||
TableRow, | ||
Trigger, | ||
View, | ||
ViewControl, | ||
ViewTrigger, | ||
YearSelect, | ||
} |
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,10 @@ | ||
import { DialogBackdrop as Backdrop } from './dialog-backdrop' | ||
import { DialogCloseTrigger as CloseTrigger } from './dialog-close-trigger' | ||
import { DialogContent as Content } from './dialog-content' | ||
import { DialogDescription as Description } from './dialog-description' | ||
import { DialogPositioner as Positioner } from './dialog-positioner' | ||
import { DialogRoot as Root } from './dialog-root' | ||
import { DialogTitle as Title } from './dialog-title' | ||
import { DialogTrigger as Trigger } from './dialog-trigger' | ||
|
||
export { Backdrop, CloseTrigger, Content, Description, Positioner, Root, Title, Trigger } |
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
Oops, something went wrong.