fix(tile-group): add name and required props (#1818)

This commit is contained in:
Eric Liu 2023-10-03 11:20:16 -07:00 committed by GitHub
commit 836b360b9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 127 additions and 45 deletions

View file

@ -3019,11 +3019,12 @@ None.
| checked | No | <code>let</code> | Yes | <code>boolean</code> | <code>false</code> | Set to `true` to check the tile | | checked | No | <code>let</code> | Yes | <code>boolean</code> | <code>false</code> | Set to `true` to check the tile |
| light | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to enable the light variant | | light | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to enable the light variant |
| disabled | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to disable the tile | | disabled | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to disable the tile |
| required | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to mark the field as required |
| value | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the value of the radio input | | value | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the value of the radio input |
| tabindex | No | <code>let</code> | No | <code>string</code> | <code>"0"</code> | Specify the tabindex | | tabindex | No | <code>let</code> | No | <code>string</code> | <code>"0"</code> | Specify the tabindex |
| iconDescription | No | <code>let</code> | No | <code>string</code> | <code>"Tile checkmark"</code> | Specify the ARIA label for the radio tile checkmark icon | | iconDescription | No | <code>let</code> | No | <code>string</code> | <code>"Tile checkmark"</code> | Specify the ARIA label for the radio tile checkmark icon |
| id | No | <code>let</code> | No | <code>string</code> | <code>"ccs-" + Math.random().toString(36)</code> | Set an id for the input element | | id | No | <code>let</code> | No | <code>string</code> | <code>"ccs-" + Math.random().toString(36)</code> | Set an id for the input element |
| name | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify a name attribute for the input | | name | No | <code>let</code> | No | <code>string</code> | <code>undefined</code> | Specify a name attribute for the radio tile input |
### Slots ### Slots
@ -4234,11 +4235,13 @@ export type CarbonTheme = "white" | "g10" | "g80" | "g90" | "g100";
### Props ### Props
| Prop name | Required | Kind | Reactive | Type | Default value | Description | | Prop name | Required | Kind | Reactive | Type | Default value | Description |
| :-------- | :------- | :--------------- | :------- | -------------------- | ---------------------- | --------------------------------------- | | :-------- | :------- | :--------------- | :------- | -------------------- | ---------------------- | -------------------------------------------------------- |
| selected | No | <code>let</code> | Yes | <code>string</code> | <code>undefined</code> | Specify the selected tile value | | selected | No | <code>let</code> | Yes | <code>string</code> | <code>undefined</code> | Specify the selected tile value |
| disabled | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to disable the tile group | | disabled | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to disable the tile group |
| legend | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the legend text | | required | No | <code>let</code> | No | <code>boolean</code> | <code>undefined</code> | Set to `true` to require the selection of a radio button |
| name | No | <code>let</code> | No | <code>string</code> | <code>undefined</code> | Specify a name attribute for the radio button inputs |
| legend | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the legend text |
### Slots ### Slots

View file

@ -9679,6 +9679,18 @@
"constant": false, "constant": false,
"reactive": false "reactive": false
}, },
{
"name": "required",
"kind": "let",
"description": "Set to `true` to mark the field as required",
"type": "boolean",
"value": "false",
"isFunction": false,
"isFunctionDeclaration": false,
"isRequired": false,
"constant": false,
"reactive": false
},
{ {
"name": "value", "name": "value",
"kind": "let", "kind": "let",
@ -9730,9 +9742,8 @@
{ {
"name": "name", "name": "name",
"kind": "let", "kind": "let",
"description": "Specify a name attribute for the input", "description": "Specify a name attribute for the radio tile input",
"type": "string", "type": "string",
"value": "\"\"",
"isFunction": false, "isFunction": false,
"isFunctionDeclaration": false, "isFunctionDeclaration": false,
"isRequired": false, "isRequired": false,
@ -13110,6 +13121,28 @@
"constant": false, "constant": false,
"reactive": false "reactive": false
}, },
{
"name": "required",
"kind": "let",
"description": "Set to `true` to require the selection of a radio button",
"type": "boolean",
"isFunction": false,
"isFunctionDeclaration": false,
"isRequired": false,
"constant": false,
"reactive": false
},
{
"name": "name",
"kind": "let",
"description": "Specify a name attribute for the radio button inputs",
"type": "string",
"isFunction": false,
"isFunctionDeclaration": false,
"isRequired": false,
"constant": false,
"reactive": false
},
{ {
"name": "legend", "name": "legend",
"kind": "let", "kind": "let",

View file

@ -23,7 +23,7 @@ It's recommended that you provide a legend for accessibility.
Use `hideLegend` to visually hide the legend text. Use `hideLegend` to visually hide the legend text.
<RadioButtonGroup hideLegend legendText="Storage tier (disk)" selected="standard"> <RadioButtonGroup hideLegend legendText="Storage tier (disk)" name="plan-legend" selected="standard">
<RadioButton labelText="Free (1 GB)" value="free" /> <RadioButton labelText="Free (1 GB)" value="free" />
<RadioButton labelText="Standard (10 GB)" value="standard" /> <RadioButton labelText="Standard (10 GB)" value="standard" />
<RadioButton labelText="Pro (128 GB)" value="pro" /> <RadioButton labelText="Pro (128 GB)" value="pro" />
@ -33,7 +33,7 @@ Use `hideLegend` to visually hide the legend text.
Use the named "legendText" slot to customize the legend text. Use the named "legendText" slot to customize the legend text.
<RadioButtonGroup name="plan" selected="standard"> <RadioButtonGroup name="plan-legend-slot" selected="standard">
<div slot="legendText" style:display="flex"> <div slot="legendText" style:display="flex">
Storage tier (disk) Storage tier (disk)
<Tooltip> <Tooltip>
@ -55,7 +55,7 @@ Use the `selected` prop to bind and update the selected value.
## Left-aligned label text ## Left-aligned label text
<RadioButtonGroup labelPosition="left" legendText="Storage tier (disk)" name="plan" selected="standard"> <RadioButtonGroup labelPosition="left" legendText="Storage tier (disk)" name="plan-left-aligned" selected="standard">
<RadioButton labelText="Free (1 GB)" value="free" /> <RadioButton labelText="Free (1 GB)" value="free" />
<RadioButton labelText="Standard (10 GB)" value="standard" /> <RadioButton labelText="Standard (10 GB)" value="standard" />
<RadioButton labelText="Pro (128 GB)" value="pro" /> <RadioButton labelText="Pro (128 GB)" value="pro" />
@ -63,7 +63,7 @@ Use the `selected` prop to bind and update the selected value.
## Disabled buttons ## Disabled buttons
<RadioButtonGroup labelPosition="left" legendText="Storage tier (disk)" name="plan" selected="standard"> <RadioButtonGroup labelPosition="left" legendText="Storage tier (disk)" name="plan-disabled" selected="standard">
<RadioButton disabled labelText="Free (1 GB)" value="free" /> <RadioButton disabled labelText="Free (1 GB)" value="free" />
<RadioButton labelText="Standard (10 GB)" value="standard" /> <RadioButton labelText="Standard (10 GB)" value="standard" />
<RadioButton disabled labelText="Pro (128 GB)" value="pro" /> <RadioButton disabled labelText="Pro (128 GB)" value="pro" />
@ -71,7 +71,7 @@ Use the `selected` prop to bind and update the selected value.
## Vertical orientation ## Vertical orientation
<RadioButtonGroup orientation="vertical" legendText="Storage tier (disk)" name="plan" selected="standard"> <RadioButtonGroup orientation="vertical" legendText="Storage tier (disk)" name="plan-vertical" selected="standard">
<RadioButton labelText="Free (1 GB)" value="free" /> <RadioButton labelText="Free (1 GB)" value="free" />
<RadioButton labelText="Standard (10 GB)" value="standard" /> <RadioButton labelText="Standard (10 GB)" value="standard" />
<RadioButton labelText="Pro (128 GB)" value="pro" /> <RadioButton labelText="Pro (128 GB)" value="pro" />

View file

@ -9,14 +9,14 @@ components: ["TileGroup", "RadioTile"]
## Default ## Default
<TileGroup legend="Service pricing tiers"> <TileGroup legend="Service pricing tiers" name="plan" selected="standard">
<RadioTile value="0" checked> <RadioTile value="lite">
Lite plan Lite plan
</RadioTile> </RadioTile>
<RadioTile value="1"> <RadioTile value="standard">
Standard plan Standard plan
</RadioTile> </RadioTile>
<RadioTile value="2"> <RadioTile value="plus">
Plus plan Plus plan
</RadioTile> </RadioTile>
</TileGroup> </TileGroup>
@ -33,28 +33,28 @@ Binding to the `selected` prop is a more concise approach to managing state.
## Light variant ## Light variant
<TileGroup legend="Service pricing tiers"> <TileGroup legend="Service pricing tiers" name="plan-light" selected="standard">
<RadioTile light value="0" checked> <RadioTile light value="lite">
Lite plan Lite plan
</RadioTile> </RadioTile>
<RadioTile light value="1"> <RadioTile light value="standard">
Standard plan Standard plan
</RadioTile> </RadioTile>
<RadioTile light value="2"> <RadioTile light value="plus">
Plus plan Plus plan
</RadioTile> </RadioTile>
</TileGroup> </TileGroup>
## Disabled state ## Disabled state
<TileGroup legend="Service pricing tiers"> <TileGroup legend="Service pricing tiers" name="plan-disabled" selected="standard">
<RadioTile value="0" checked> <RadioTile value="lite" disabled>
Lite plan Lite plan
</RadioTile> </RadioTile>
<RadioTile value="1" disabled> <RadioTile value="standard">
Standard plan Standard plan
</RadioTile> </RadioTile>
<RadioTile value="2" disabled> <RadioTile value="plus" disabled>
Plus plan Plus plan
</RadioTile> </RadioTile>
</TileGroup> </TileGroup>

View file

@ -3,10 +3,10 @@
const values = ["Lite plan", "Standard plan", "Plus plan"]; const values = ["Lite plan", "Standard plan", "Plus plan"];
let selected = values[0]; let selected = values[1];
</script> </script>
<TileGroup legend="Service pricing tiers" bind:selected> <TileGroup legend="Service pricing tiers" name="plan" bind:selected>
{#each values as value} {#each values as value}
<RadioTile value="{value}">{value}</RadioTile> <RadioTile value="{value}">{value}</RadioTile>
{/each} {/each}

View file

@ -3,16 +3,18 @@
const values = ["Lite plan", "Standard plan", "Plus plan"]; const values = ["Lite plan", "Standard plan", "Plus plan"];
let selected = values[0]; let selected = values[1];
</script> </script>
<TileGroup <TileGroup
legend="Service pricing tiers" legend="Service pricing tiers"
name="plan"
on:select="{({ detail }) => (selected = detail)}" on:select="{({ detail }) => (selected = detail)}"
> >
{#each values as value} {#each values as value}
<RadioTile value="{value}" checked="{selected === value}">{value}</RadioTile <RadioTile value="{value}" checked="{selected === value}">
> {value}
</RadioTile>
{/each} {/each}
</TileGroup> </TileGroup>

View file

@ -8,6 +8,9 @@
/** Set to `true` to disable the tile */ /** Set to `true` to disable the tile */
export let disabled = false; export let disabled = false;
/** Set to `true` to mark the field as required */
export let required = false;
/** Specify the value of the radio input */ /** Specify the value of the radio input */
export let value = ""; export let value = "";
@ -20,13 +23,23 @@
/** Set an id for the input element */ /** Set an id for the input element */
export let id = "ccs-" + Math.random().toString(36); export let id = "ccs-" + Math.random().toString(36);
/** Specify a name attribute for the input */ /**
export let name = ""; * Specify a name attribute for the radio tile input
* @type {string}
*/
export let name = undefined;
import { getContext } from "svelte"; import { getContext } from "svelte";
import { readable } from "svelte/store";
import CheckmarkFilled from "../icons/CheckmarkFilled.svelte"; import CheckmarkFilled from "../icons/CheckmarkFilled.svelte";
const { add, update, selectedValue } = getContext("TileGroup"); const { add, update, selectedValue, groupName, groupRequired } = getContext(
"TileGroup"
) ?? {
groupName: readable(undefined),
groupRequired: readable(undefined),
selectedValue: readable(checked ? value : undefined),
};
add({ value, checked }); add({ value, checked });
@ -36,11 +49,12 @@
<input <input
type="radio" type="radio"
id="{id}" id="{id}"
name="{name}" name="{$groupName ?? name}"
value="{value}" value="{value}"
checked="{checked}" checked="{checked}"
tabindex="{disabled ? undefined : tabindex}" tabindex="{disabled ? undefined : tabindex}"
disabled="{disabled}" disabled="{disabled}"
required="{$groupRequired ?? required}"
class:bx--tile-input="{true}" class:bx--tile-input="{true}"
on:change on:change
on:change="{() => { on:change="{() => {

View file

@ -8,17 +8,33 @@
/** Set to `true` to disable the tile group */ /** Set to `true` to disable the tile group */
export let disabled = false; export let disabled = false;
/**
* Set to `true` to require the selection of a radio button
* @type {boolean}
*/
export let required = undefined;
/**
* Specify a name attribute for the radio button inputs
* @type {string}
*/
export let name = undefined;
/** Specify the legend text */ /** Specify the legend text */
export let legend = ""; export let legend = "";
import { createEventDispatcher, setContext } from "svelte"; import { createEventDispatcher, setContext } from "svelte";
import { writable } from "svelte/store"; import { writable, readonly } from "svelte/store";
const dispatch = createEventDispatcher(); const dispatch = createEventDispatcher();
const selectedValue = writable(selected); const selectedValue = writable(selected);
const groupName = writable(name);
const groupRequired = writable(required);
setContext("TileGroup", { setContext("TileGroup", {
selectedValue, selectedValue,
groupName: readonly(groupName),
groupRequired: readonly(groupRequired),
add: ({ checked, value }) => { add: ({ checked, value }) => {
if (checked) { if (checked) {
selectedValue.set(value); selectedValue.set(value);
@ -32,6 +48,8 @@
$: selected = $selectedValue; $: selected = $selectedValue;
$: selectedValue.set(selected); $: selectedValue.set(selected);
$: $groupName = name;
$: $groupRequired = required;
</script> </script>
<fieldset disabled="{disabled}" class:bx--tile-group="{true}" {...$$restProps}> <fieldset disabled="{disabled}" class:bx--tile-group="{true}" {...$$restProps}>

View file

@ -2,14 +2,8 @@
import { TileGroup, RadioTile } from "../types"; import { TileGroup, RadioTile } from "../types";
</script> </script>
<TileGroup legend="Service pricing tiers"> <TileGroup name="plan" required legend="Service pricing tiers">
<RadioTile value="0" checked>Lite plan</RadioTile> <RadioTile light value="0" checked>Lite plan</RadioTile>
<RadioTile value="1">Standard plan</RadioTile> <RadioTile value="1">Standard plan</RadioTile>
<RadioTile value="2">Plus plan</RadioTile> <RadioTile value="2">Plus plan</RadioTile>
</TileGroup> </TileGroup>
<TileGroup legend="Service pricing tiers">
<RadioTile light value="0" checked>Lite plan</RadioTile>
<RadioTile light value="1">Standard plan</RadioTile>
<RadioTile light value="2">Plus plan</RadioTile>
</TileGroup>

View file

@ -22,6 +22,12 @@ export interface RadioTileProps extends RestProps {
*/ */
disabled?: boolean; disabled?: boolean;
/**
* Set to `true` to mark the field as required
* @default false
*/
required?: boolean;
/** /**
* Specify the value of the radio input * Specify the value of the radio input
* @default "" * @default ""
@ -47,8 +53,8 @@ export interface RadioTileProps extends RestProps {
id?: string; id?: string;
/** /**
* Specify a name attribute for the input * Specify a name attribute for the radio tile input
* @default "" * @default undefined
*/ */
name?: string; name?: string;

View file

@ -16,6 +16,18 @@ export interface TileGroupProps extends RestProps {
*/ */
disabled?: boolean; 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 * Specify the legend text
* @default "" * @default ""