Skip to content

Commit

Permalink
Rename directories
Browse files Browse the repository at this point in the history
  • Loading branch information
mj12albert committed Jul 2, 2024
1 parent 1f865dd commit 8d1c24b
Show file tree
Hide file tree
Showing 21 changed files with 28 additions and 28 deletions.
28 changes: 14 additions & 14 deletions packages/mui-base/src/Slider/index.barrel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,38 @@ export type * from './Root/SliderRoot.types';
export { useSliderRoot } from './Root/useSliderRoot';
export * from './Root/SliderProvider';

export { SliderOutput } from './SliderOutput/SliderOutput';
export { SliderOutput } from './Output/SliderOutput';
export type {
SliderOutputProps as OutputProps,
UseSliderOutputParameters,
UseSliderOutputReturnValue,
} from './SliderOutput/SliderOutput.types';
export { useSliderOutput } from './SliderOutput/useSliderOutput';
} from './Output/SliderOutput.types';
export { useSliderOutput } from './Output/useSliderOutput';

export { SliderControl } from './SliderControl/SliderControl';
export { SliderControl } from './Control/SliderControl';
export type {
SliderControlProps as ControlProps,
UseSliderControlParameters,
UseSliderControlReturnValue,
} from './SliderControl/SliderControl.types';
export { useSliderControl } from './SliderControl/useSliderControl';
} from './Control/SliderControl.types';
export { useSliderControl } from './Control/useSliderControl';

export { SliderTrack } from './SliderTrack/SliderTrack';
export type { SliderTrackProps } from './SliderTrack/SliderTrack.types';
export { SliderTrack } from './Track/SliderTrack';
export type { SliderTrackProps } from './Track/SliderTrack.types';

export { SliderThumb } from './SliderThumb/SliderThumb';
export { SliderThumb } from './Thumb/SliderThumb';
export type {
SliderThumbOwnerState,
SliderThumbProps,
UseSliderThumbParameters,
UseSliderThumbReturnValue,
} from './SliderThumb/SliderThumb.types';
export { useSliderThumb } from './SliderThumb/useSliderThumb';
} from './Thumb/SliderThumb.types';
export { useSliderThumb } from './Thumb/useSliderThumb';

export { SliderIndicator } from './SliderIndicator/SliderIndicator';
export { SliderIndicator } from './Indicator/SliderIndicator';
export type {
SliderIndicatorProps as IndicatorProps,
UseSliderIndicatorParameters,
UseSliderIndicatorReturnValue,
} from './SliderIndicator/SliderIndicator.types';
export { useSliderIndicator } from './SliderIndicator/useSliderIndicator';
} from './Indicator/SliderIndicator.types';
export { useSliderIndicator } from './Indicator/useSliderIndicator';
28 changes: 14 additions & 14 deletions packages/mui-base/src/Slider/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,38 +12,38 @@ export {
export { useSliderRoot } from './Root/useSliderRoot';
export * from './Root/SliderProvider';

export { SliderOutput as Output } from './SliderOutput/SliderOutput';
export { SliderOutput as Output } from './Output/SliderOutput';
export type {
SliderOutputProps as OutputProps,
UseSliderOutputParameters,
UseSliderOutputReturnValue,
} from './SliderOutput/SliderOutput.types';
export { useSliderOutput } from './SliderOutput/useSliderOutput';
} from './Output/SliderOutput.types';
export { useSliderOutput } from './Output/useSliderOutput';

export { SliderControl as Control } from './SliderControl/SliderControl';
export { SliderControl as Control } from './Control/SliderControl';
export type {
SliderControlProps as ControlProps,
UseSliderControlParameters,
UseSliderControlReturnValue,
} from './SliderControl/SliderControl.types';
export { useSliderControl } from './SliderControl/useSliderControl';
} from './Control/SliderControl.types';
export { useSliderControl } from './Control/useSliderControl';

export { SliderTrack as Track } from './SliderTrack/SliderTrack';
export type { SliderTrackProps as TrackProps } from './SliderTrack/SliderTrack.types';
export { SliderTrack as Track } from './Track/SliderTrack';
export type { SliderTrackProps as TrackProps } from './Track/SliderTrack.types';

export { SliderThumb as Thumb } from './SliderThumb/SliderThumb';
export { SliderThumb as Thumb } from './Thumb/SliderThumb';
export type {
SliderThumbOwnerState as ThumbOwnerState,
SliderThumbProps as ThumbProps,
UseSliderThumbParameters,
UseSliderThumbReturnValue,
} from './SliderThumb/SliderThumb.types';
export { useSliderThumb } from './SliderThumb/useSliderThumb';
} from './Thumb/SliderThumb.types';
export { useSliderThumb } from './Thumb/useSliderThumb';

export { SliderIndicator as Indicator } from './SliderIndicator/SliderIndicator';
export { SliderIndicator as Indicator } from './Indicator/SliderIndicator';
export type {
SliderIndicatorProps as IndicatorProps,
UseSliderIndicatorParameters,
UseSliderIndicatorReturnValue,
} from './SliderIndicator/SliderIndicator.types';
export { useSliderIndicator } from './SliderIndicator/useSliderIndicator';
} from './Indicator/SliderIndicator.types';
export { useSliderIndicator } from './Indicator/useSliderIndicator';

0 comments on commit 8d1c24b

Please sign in to comment.