@stokelp/ui 1.11.0 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/index.d.ts +1 -0
- package/dist/components/radio-group/RadioGroup.d.ts +15 -0
- package/dist/components/radio-group/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/theme/recipes/index.d.ts +1 -0
- package/dist/theme/recipes/radio-group.d.ts +2 -0
- package/dist/ui.cjs +3 -3
- package/dist/ui.cjs.map +1 -1
- package/dist/ui.js +436 -298
- package/dist/ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RadioGroup as ArkRadioGroup } from '@ark-ui/react';
|
|
2
|
+
import { ComponentProps, ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
3
|
+
import { ComponentVariants } from '../../utils/slots';
|
|
4
|
+
import { StyledComponent } from '@stokelp/styled-system/jsx';
|
|
5
|
+
import { RadioGroupRecipe } from '@stokelp/styled-system/recipes';
|
|
6
|
+
|
|
7
|
+
export declare const RadioGroup: ComponentVariants<StyledComponent<ForwardRefExoticComponent<ArkRadioGroup.RootProps & RefAttributes<HTMLDivElement>>, {}>, RadioGroupRecipe>;
|
|
8
|
+
export declare const RadioGroupItem: StyledComponent<ForwardRefExoticComponent<Omit<ArkRadioGroup.ItemProps & RefAttributes<HTMLLabelElement>, "ref"> & RefAttributes<HTMLLabelElement>>, {}>;
|
|
9
|
+
export declare const RadioGroupLabel: StyledComponent<ForwardRefExoticComponent<ArkRadioGroup.LabelProps & RefAttributes<HTMLLabelElement>>, {}>;
|
|
10
|
+
export interface RadioGroupProps extends ComponentProps<typeof RadioGroup> {
|
|
11
|
+
}
|
|
12
|
+
export interface RadioGroupItemProps extends ComponentProps<typeof RadioGroupItem> {
|
|
13
|
+
}
|
|
14
|
+
export interface RadioGroupLabelProps extends ComponentProps<typeof RadioGroupLabel> {
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './RadioGroup';
|