mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
76 lines
1.6 KiB
TypeScript
76 lines
1.6 KiB
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
import type { SvelteHTMLElements } from "svelte/elements";
|
|
|
|
type $RestProps = SvelteHTMLElements["div"];
|
|
|
|
type $Props = {
|
|
/**
|
|
* Set the selected radio button value
|
|
* @default undefined
|
|
*/
|
|
selected?: string | number;
|
|
|
|
/**
|
|
* Set to `true` to disable the radio buttons
|
|
* @default false
|
|
*/
|
|
disabled?: boolean;
|
|
|
|
/**
|
|
* Set to `true` to require the selection of a radio button
|
|
* @default undefined
|
|
*/
|
|
required?: boolean;
|
|
|
|
/**
|
|
* Specify a name attribute for the radio button inputs
|
|
* @default undefined
|
|
*/
|
|
name?: string;
|
|
|
|
/**
|
|
* Specify the legend text
|
|
* @default ""
|
|
*/
|
|
legendText?: string;
|
|
|
|
/**
|
|
* Set to `true` to visually hide the legend
|
|
* @default false
|
|
*/
|
|
hideLegend?: boolean;
|
|
|
|
/**
|
|
* Specify the label position
|
|
* @default "right"
|
|
*/
|
|
labelPosition?: "right" | "left";
|
|
|
|
/**
|
|
* Specify the orientation of the radio buttons
|
|
* @default "horizontal"
|
|
*/
|
|
orientation?: "horizontal" | "vertical";
|
|
|
|
/**
|
|
* Set an id for the container div element
|
|
* @default undefined
|
|
*/
|
|
id?: string;
|
|
|
|
[key: `data-${string}`]: any;
|
|
};
|
|
|
|
export type RadioButtonGroupProps = Omit<$RestProps, keyof $Props> & $Props;
|
|
|
|
export default class RadioButtonGroup extends SvelteComponentTyped<
|
|
RadioButtonGroupProps,
|
|
{
|
|
change: CustomEvent<string | number>;
|
|
click: WindowEventMap["click"];
|
|
mouseover: WindowEventMap["mouseover"];
|
|
mouseenter: WindowEventMap["mouseenter"];
|
|
mouseleave: WindowEventMap["mouseleave"];
|
|
},
|
|
{ default: {}; legendText: {} }
|
|
> {}
|