-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from xyhomi3/dev
Enhancement(site, ui): accessibility
- Loading branch information
Showing
9 changed files
with
115 additions
and
88 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,11 @@ | ||
--- | ||
'@omi3/ui': patch | ||
'@omi3/site': patch | ||
--- | ||
|
||
This changeset includes minor updates and improvements to `@omi3/ui` package and `@omi3/site`: | ||
|
||
- `@omi3/ui`: Minor enhancements and bug fixes to UI components. | ||
- `@omi3/site`: Small improvements to the site's functionality and user interface. | ||
|
||
These patch updates aim to enhance stability and user experience without introducing major new features or breaking 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
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
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
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 |
---|---|---|
@@ -1,28 +1,34 @@ | ||
'use client' | ||
'use client'; | ||
|
||
import * as React from 'react' | ||
import * as SliderPrimitive from '@radix-ui/react-slider' | ||
import * as React from 'react'; | ||
import * as SliderPrimitive from '@radix-ui/react-slider'; | ||
|
||
import { cn } from '@omi3/utils' | ||
import { cn } from '@omi3/utils'; | ||
|
||
const Slider = React.forwardRef< | ||
React.ElementRef<typeof SliderPrimitive.Root>, | ||
React.ComponentPropsWithoutRef<typeof SliderPrimitive.Root> | ||
>(({ className, ...props }, ref) => ( | ||
<SliderPrimitive.Root | ||
ref={ref} | ||
className={cn( | ||
'relative flex w-full touch-none select-none items-center', | ||
className, | ||
)} | ||
{...props} | ||
> | ||
<SliderPrimitive.Track className="relative h-3 w-full grow overflow-hidden rounded-full border-2 border-border dark:border-darkBorder bg-bg dark:bg-darkBg"> | ||
<SliderPrimitive.Range className="absolute h-full bg-main" /> | ||
</SliderPrimitive.Track> | ||
<SliderPrimitive.Thumb className="block h-5 w-5 rounded-full border-2 border-border dark:border-darkBorder bg-bg dark:bg-darkBg ring-offset-white transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-black focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50" /> | ||
</SliderPrimitive.Root> | ||
)) | ||
Slider.displayName = SliderPrimitive.Root.displayName | ||
interface SliderProps extends React.ComponentPropsWithoutRef<typeof SliderPrimitive.Root> { | ||
thumbProps?: React.ComponentPropsWithoutRef<typeof SliderPrimitive.Thumb>; | ||
} | ||
|
||
export { Slider } | ||
const Slider = React.forwardRef<React.ElementRef<typeof SliderPrimitive.Root>, SliderProps>( | ||
({ className, thumbProps, ...props }, ref) => ( | ||
<SliderPrimitive.Root | ||
ref={ref} | ||
className={cn('relative flex w-full touch-none select-none items-center', className)} | ||
{...props} | ||
> | ||
<SliderPrimitive.Track className="border-border dark:border-darkBorder bg-bg dark:bg-secondaryBlack relative h-3 w-full grow overflow-hidden rounded-full border-2"> | ||
<SliderPrimitive.Range className="bg-main absolute h-full" /> | ||
</SliderPrimitive.Track> | ||
<SliderPrimitive.Thumb | ||
className={cn( | ||
'border-border dark:border-darkBorder bg-bg dark:bg-darkBg block h-5 w-5 rounded-full border-2 ring-offset-white transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-black focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50', | ||
thumbProps?.className, | ||
)} | ||
{...thumbProps} | ||
/> | ||
</SliderPrimitive.Root> | ||
), | ||
); | ||
Slider.displayName = SliderPrimitive.Root.displayName; | ||
|
||
export { Slider }; |