Skip to content

Commit

Permalink
chore: format files
Browse files Browse the repository at this point in the history
  • Loading branch information
cschroeter committed Apr 26, 2024
1 parent 9ee7db7 commit 4d9918a
Show file tree
Hide file tree
Showing 19 changed files with 0 additions and 33 deletions.
2 changes: 0 additions & 2 deletions frameworks/react/src/components/accordion/accordion-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ export const AccordionRoot = forwardRef<HTMLDivElement, AccordionRootProps>((pro
const [useAccordionProps, localProps] = createSplitProps<UseAccordionProps>()(accordionProps, [
'collapsible',
'defaultValue',

'disabled',

'id',
'ids',
'multiple',
Expand Down
1 change: 0 additions & 1 deletion frameworks/react/src/components/carousel/carousel-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export const CarouselRoot = forwardRef<HTMLDivElement, CarouselRootProps>((props
const [useCarouselProps, localProps] = createSplitProps<UseCarouselProps>()(props, [
'align',
'defaultIndex',

'id',
'ids',
'index',
Expand Down
2 changes: 0 additions & 2 deletions frameworks/react/src/components/checkbox/checkbox-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ export const CheckboxRoot = forwardRef<HTMLLabelElement, CheckboxRootProps>((pro
const [useCheckboxProps, localProps] = createSplitProps<UseCheckboxProps>()(props, [
'checked',
'defaultChecked',

'disabled',
'form',

'id',
'ids',
'invalid',
Expand Down
2 changes: 0 additions & 2 deletions frameworks/react/src/components/editable/editable-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,9 @@ export const EditableRoot = forwardRef<HTMLDivElement, EditableRootProps>((props
'activationMode',
'autoResize',
'defaultValue',

'disabled',
'finalFocusEl',
'form',

'id',
'ids',
'invalid',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ export const FileUploadRoot = forwardRef<HTMLDivElement, FileUploadRootProps>((p
'accept',
'allowDrop',
'capture',

'directory',
'disabled',

'id',
'ids',
'locale',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,10 @@ export const NumberInputRoot = forwardRef<HTMLDivElement, NumberInputRootProps>(
'allowOverflow',
'clampValueOnBlur',
'defaultValue',

'disabled',
'focusInputOnChange',
'form',
'formatOptions',

'id',
'ids',
'inputMode',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export const PaginationRoot = forwardRef<HTMLElement, PaginationRootProps>((prop
const [paginationProps, localProps] = createSplitProps<UsePaginationProps>()(props, [
'count',
'defaultPage',

'id',
'ids',
'onPageChange',
Expand Down
2 changes: 0 additions & 2 deletions frameworks/react/src/components/pin-input/pin-input-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ export const PinInputRoot = forwardRef<HTMLDivElement, PinInputRootProps>((props
'autoFocus',
'blurOnComplete',
'defaultValue',

'disabled',
'form',

'id',
'ids',
'invalid',
Expand Down
1 change: 0 additions & 1 deletion frameworks/react/src/components/progress/progress-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export interface ProgressRootProps extends Assign<HTMLArkProps<'div'>, UseProgre
export const ProgressRoot = forwardRef<HTMLDivElement, ProgressRootProps>((props, ref) => {
const [progressProps, localProps] = createSplitProps<UseProgressProps>()(props, [
'defaultValue',

'id',
'max',
'min',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@ export interface RadioGroupRootProps extends Assign<HTMLArkProps<'div'>, UseRadi
export const RadioGroupRoot = forwardRef<HTMLDivElement, RadioGroupRootProps>((props, ref) => {
const [useRadioGroupProps, localProps] = createSplitProps<UseRadioGroupProps>()(props, [
'defaultValue',

'disabled',
'form',

'id',
'ids',
'name',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@ export const RatingGroupRoot = forwardRef<HTMLDivElement, RatingGroupRootProps>(
'autoFocus',
'count',
'defaultValue',

'disabled',
'form',

'id',
'ids',
'name',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ export interface SegmentGroupRootProps extends Assign<HTMLArkProps<'div'>, UseSe
export const SegmentGroupRoot = forwardRef<HTMLDivElement, SegmentGroupRootProps>((props, ref) => {
const [useSegmentGroupProps, localProps] = createSplitProps<UseSegmentGroupProps>()(props, [
'defaultValue',

'disabled',
'form',

'id',
'ids',
'name',
Expand Down
2 changes: 0 additions & 2 deletions frameworks/react/src/components/slider/slider-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,9 @@ export const SliderRoot = forwardRef<HTMLDivElement, SliderRootProps>((props, re
'aria-label',
'aria-labelledby',
'defaultValue',

'disabled',
'form',
'getAriaValueText',

'id',
'ids',
'invalid',
Expand Down
1 change: 0 additions & 1 deletion frameworks/react/src/components/splitter/splitter-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export interface SplitterRootProps extends Assign<HTMLArkProps<'div'>, UseSplitt
export const SplitterRoot = forwardRef<HTMLDivElement, SplitterRootProps>((props, ref) => {
const [useSplitterProps, localProps] = createSplitProps<UseSplitterProps>()(props, [
'defaultSize',

'id',
'ids',
'onSizeChange',
Expand Down
2 changes: 0 additions & 2 deletions frameworks/react/src/components/switch/switch-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ export const SwitchRoot = forwardRef<HTMLLabelElement, SwitchRootProps>((props,
const [switchProps, localProps] = createSplitProps<UseSwitchProps>()(props, [
'checked',
'defaultChecked',

'disabled',
'form',

'id',
'ids',
'invalid',
Expand Down
1 change: 0 additions & 1 deletion frameworks/react/src/components/tabs/tabs-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export const TabsRoot = forwardRef<HTMLDivElement, TabsRootProps>((props, ref) =
const [useTabsProps, localprops] = createSplitProps<UseTabsProps>()(tabsProps, [
'activationMode',
'defaultValue',

'id',
'ids',
'loopFocus',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@ export const TagsInputRoot = forwardRef<HTMLInputElement, TagsInputRootProps>((p
'blurBehavior',
'defaultValue',
'delimiter',

'disabled',
'editable',
'form',

'id',
'ids',
'inputValue',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ export interface ToggleGroupRootProps extends Assign<HTMLArkProps<'div'>, UseTog
export const ToggleGroupRoot = forwardRef<HTMLDivElement, ToggleGroupRootProps>((props, ref) => {
const [useToggleGroupProps, localProps] = createSplitProps<UseToggleGroupProps>()(props, [
'defaultValue',

'disabled',

'id',
'ids',
'loopFocus',
Expand Down
2 changes: 0 additions & 2 deletions frameworks/react/src/components/tree-view/tree-view-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ export const TreeViewRoot = forwardRef<HTMLDivElement, TreeViewRootProps>((props
const [useTreeViewProps, localProps] = createSplitProps<UseTreeViewProps>()(props, [
'defaultExpandedValue',
'defaultSelectedValue',

'expandedValue',
'focusedValue',

'id',
'onExpandedChange',
'onFocusChange',
Expand Down

0 comments on commit 4d9918a

Please sign in to comment.