@nypl/design-system-react-components 0.25.9 → 0.25.10
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/CHANGELOG.md +45 -0
- package/dist/components/DatePicker/DatePicker.d.ts +1 -1
- package/dist/components/Fieldset/Fieldset.d.ts +1 -3
- package/dist/components/Form/Form.d.ts +13 -12
- package/dist/components/Form/FormTypes.d.ts +2 -2
- package/dist/components/HorizontalRule/HorizontalRule.d.ts +1 -1
- package/dist/components/RadioGroup/RadioGroup.d.ts +3 -3
- package/dist/components/SearchBar/SearchBar.d.ts +5 -5
- package/dist/components/Table/Table.d.ts +9 -3
- package/dist/components/Template/Template.d.ts +23 -4
- package/dist/design-system-react-components.cjs.development.js +197 -89
- package/dist/design-system-react-components.cjs.development.js.map +1 -1
- package/dist/design-system-react-components.cjs.production.min.js +1 -1
- package/dist/design-system-react-components.cjs.production.min.js.map +1 -1
- package/dist/design-system-react-components.esm.js +186 -91
- package/dist/design-system-react-components.esm.js.map +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/resources.scss +0 -2
- package/dist/theme/components/breadcrumb.d.ts +1 -1
- package/dist/theme/components/customTable.d.ts +12 -3
- package/package.json +40 -36
- package/src/components/Accordion/Accordion.stories.mdx +1 -1
- package/src/components/Accordion/Accordion.test.tsx +45 -1
- package/src/components/Accordion/Accordion.tsx +20 -8
- package/src/components/Accordion/__snapshots__/Accordion.test.tsx.snap +243 -0
- package/src/components/Breadcrumbs/Breadcrumbs.stories.mdx +13 -2
- package/src/components/Breadcrumbs/Breadcrumbs.test.tsx +15 -0
- package/src/components/Breadcrumbs/Breadcrumbs.tsx +9 -3
- package/src/components/Breadcrumbs/__snapshots__/Breadcrumbs.test.tsx.snap +5 -5
- package/src/components/Card/Card.stories.mdx +1 -1
- package/src/components/Card/Card.tsx +4 -1
- package/src/components/Chakra/Flex.stories.mdx +113 -0
- package/src/components/DatePicker/DatePicker.stories.mdx +1 -1
- package/src/components/DatePicker/DatePicker.test.tsx +6 -6
- package/src/components/DatePicker/DatePicker.tsx +3 -4
- package/src/components/Fieldset/Fieldset.stories.mdx +1 -1
- package/src/components/Fieldset/Fieldset.tsx +2 -4
- package/src/components/Form/Form.stories.mdx +34 -16
- package/src/components/Form/Form.test.tsx +92 -3
- package/src/components/Form/Form.tsx +25 -21
- package/src/components/Form/FormTypes.tsx +2 -2
- package/src/components/Form/__snapshots__/Form.test.tsx.snap +0 -1
- package/src/components/Hero/Hero.stories.mdx +1 -1
- package/src/components/HorizontalRule/HorizontalRule.stories.mdx +3 -2
- package/src/components/HorizontalRule/HorizontalRule.tsx +2 -2
- package/src/components/HorizontalRule/__snapshots__/HorizontalRule.test.tsx.snap +4 -4
- package/src/components/List/List.stories.mdx +1 -1
- package/src/components/List/List.tsx +1 -1
- package/src/components/Pagination/Pagination.stories.mdx +1 -1
- package/src/components/Pagination/Pagination.tsx +2 -2
- package/src/components/Radio/__snapshots__/Radio.test.tsx.snap +5 -5
- package/src/components/RadioGroup/RadioGroup.stories.mdx +1 -1
- package/src/components/RadioGroup/RadioGroup.test.tsx +13 -11
- package/src/components/RadioGroup/RadioGroup.tsx +88 -89
- package/src/components/RadioGroup/__snapshots__/RadioGroup.test.tsx.snap +18 -18
- package/src/components/SearchBar/SearchBar.Test.tsx +106 -28
- package/src/components/SearchBar/SearchBar.stories.mdx +7 -4
- package/src/components/SearchBar/SearchBar.tsx +19 -20
- package/src/components/Select/Select.test.tsx +89 -0
- package/src/components/Select/Select.tsx +7 -1
- package/src/components/Select/__snapshots__/Select.test.tsx.snap +545 -0
- package/src/components/Slider/__snapshots__/Slider.test.tsx.snap +7 -0
- package/src/components/Table/Table.stories.mdx +118 -19
- package/src/components/Table/Table.test.tsx +80 -3
- package/src/components/Table/Table.tsx +26 -16
- package/src/components/Table/__snapshots__/Table.test.tsx.snap +1179 -0
- package/src/components/Tabs/Tabs.stories.mdx +1 -1
- package/src/components/Tabs/Tabs.test.tsx +21 -5
- package/src/components/Tabs/Tabs.tsx +33 -18
- package/src/components/Tabs/__snapshots__/Tabs.test.tsx.snap +195 -0
- package/src/components/Template/Template.stories.mdx +79 -4
- package/src/components/Template/Template.test.tsx +65 -3
- package/src/components/Template/Template.tsx +58 -8
- package/src/components/Template/__snapshots__/Template.test.tsx.snap +93 -0
- package/src/index.ts +8 -2
- package/src/theme/components/breadcrumb.ts +1 -1
- package/src/theme/components/customTable.ts +16 -3
- package/src/utils/componentCategories.ts +1 -0
|
@@ -26,7 +26,7 @@ export const enumValues = getStorybookEnumValues(HeroTypes, "HeroTypes");
|
|
|
26
26
|
parameters={{
|
|
27
27
|
design: {
|
|
28
28
|
type: "figma",
|
|
29
|
-
url: "https://www.figma.com/file/qShodlfNCJHb8n03IFyApM/Main?node-id=
|
|
29
|
+
url: "https://www.figma.com/file/qShodlfNCJHb8n03IFyApM/Main?node-id=36817%3A23704",
|
|
30
30
|
},
|
|
31
31
|
jest: ["Hero.test.tsx"],
|
|
32
32
|
}}
|
|
@@ -9,6 +9,7 @@ import {
|
|
|
9
9
|
import { withDesign } from "storybook-addon-designs";
|
|
10
10
|
|
|
11
11
|
import HorizontalRule from "./HorizontalRule";
|
|
12
|
+
import SimpleGrid from "../Grid/SimpleGrid";
|
|
12
13
|
import { getCategory } from "../../utils/componentCategories";
|
|
13
14
|
|
|
14
15
|
<Meta
|
|
@@ -25,7 +26,7 @@ import { getCategory } from "../../utils/componentCategories";
|
|
|
25
26
|
argTypes={{
|
|
26
27
|
className: { control: false },
|
|
27
28
|
height: { table: { defaultValue: { summary: "2px" } } },
|
|
28
|
-
width: { table: { defaultValue: { summary: "
|
|
29
|
+
width: { table: { defaultValue: { summary: "100%" } } },
|
|
29
30
|
}}
|
|
30
31
|
/>
|
|
31
32
|
|
|
@@ -34,7 +35,7 @@ import { getCategory } from "../../utils/componentCategories";
|
|
|
34
35
|
| Component Version | DS Version |
|
|
35
36
|
| ----------------- | ---------- |
|
|
36
37
|
| Added | `0.23.0` |
|
|
37
|
-
| Latest | `0.25.
|
|
38
|
+
| Latest | `0.25.10` |
|
|
38
39
|
|
|
39
40
|
<Description of={HorizontalRule} />
|
|
40
41
|
|
|
@@ -16,12 +16,12 @@ export interface HorizontalRuleProps {
|
|
|
16
16
|
height?: string;
|
|
17
17
|
/** Optional width value. This value should be entered with the same
|
|
18
18
|
* formatting as a CSS width attribute (ex. `50%`, `640px`, `20rem`). If
|
|
19
|
-
* omitted, the horizontal rule will have a default width of "
|
|
19
|
+
* omitted, the horizontal rule will have a default width of "100%". */
|
|
20
20
|
width?: string;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
export default function HorizontalRule(props: HorizontalRuleProps) {
|
|
24
|
-
const { align, className, height = "2px", width = "
|
|
24
|
+
const { align, className, height = "2px", width = "100%" } = props;
|
|
25
25
|
const styles = useStyleConfig("HorizontalRule", { align });
|
|
26
26
|
let finalHeight = height;
|
|
27
27
|
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`HorizontalRule renders the UI snapshot correctly 1`] = `
|
|
4
4
|
<hr
|
|
5
|
-
className="css-
|
|
5
|
+
className="css-1bhbd2a"
|
|
6
6
|
/>
|
|
7
7
|
`;
|
|
8
8
|
|
|
9
9
|
exports[`HorizontalRule renders the UI snapshot correctly 2`] = `
|
|
10
10
|
<hr
|
|
11
|
-
className="css-
|
|
11
|
+
className="css-154goob"
|
|
12
12
|
/>
|
|
13
13
|
`;
|
|
14
14
|
|
|
@@ -20,12 +20,12 @@ exports[`HorizontalRule renders the UI snapshot correctly 3`] = `
|
|
|
20
20
|
|
|
21
21
|
exports[`HorizontalRule renders the UI snapshot correctly 4`] = `
|
|
22
22
|
<hr
|
|
23
|
-
className="css-
|
|
23
|
+
className="css-1bhbd2a"
|
|
24
24
|
/>
|
|
25
25
|
`;
|
|
26
26
|
|
|
27
27
|
exports[`HorizontalRule renders the UI snapshot correctly 5`] = `
|
|
28
28
|
<hr
|
|
29
|
-
className="css-
|
|
29
|
+
className="css-1bhbd2a"
|
|
30
30
|
/>
|
|
31
31
|
`;
|
|
@@ -98,7 +98,7 @@ export default function List(props: React.PropsWithChildren<ListProps>) {
|
|
|
98
98
|
*/
|
|
99
99
|
const checkListChildrenError = (listType: ListTypes) => {
|
|
100
100
|
React.Children.map(children, (child: React.ReactElement) => {
|
|
101
|
-
if (child?.type !== "li" && child?.props?.mdxType !== "li") {
|
|
101
|
+
if (child && child?.type !== "li" && child?.props?.mdxType !== "li") {
|
|
102
102
|
console.warn(
|
|
103
103
|
`Direct children of \`List\` (${listType}) should be \`<li>\`s.`
|
|
104
104
|
);
|
|
@@ -34,7 +34,7 @@ const Pagination: React.FC<PaginationProps> = (props: PaginationProps) => {
|
|
|
34
34
|
getPageHref,
|
|
35
35
|
id = generateUUID(),
|
|
36
36
|
initialPage = 1,
|
|
37
|
-
onPageChange
|
|
37
|
+
onPageChange,
|
|
38
38
|
pageCount,
|
|
39
39
|
} = props;
|
|
40
40
|
const [currentPage, setCurrentPage] = useState<number>(initialPage);
|
|
@@ -63,7 +63,7 @@ const Pagination: React.FC<PaginationProps> = (props: PaginationProps) => {
|
|
|
63
63
|
e.preventDefault && e.preventDefault();
|
|
64
64
|
if (currentPage === selectedPage) return;
|
|
65
65
|
setCurrentPage(selectedPage);
|
|
66
|
-
onPageChange(selectedPage);
|
|
66
|
+
onPageChange && onPageChange(selectedPage);
|
|
67
67
|
};
|
|
68
68
|
// Select the previous page.
|
|
69
69
|
const previousPage = (e: Event) => {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`Radio Button renders the UI snapshot correctly 1`] = `
|
|
4
4
|
<label
|
|
5
|
-
className="chakra-radio css-
|
|
5
|
+
className="chakra-radio css-1pw4d56"
|
|
6
6
|
>
|
|
7
7
|
<input
|
|
8
8
|
checked={false}
|
|
@@ -50,7 +50,7 @@ exports[`Radio Button renders the UI snapshot correctly 1`] = `
|
|
|
50
50
|
|
|
51
51
|
exports[`Radio Button renders the UI snapshot correctly 2`] = `
|
|
52
52
|
<label
|
|
53
|
-
className="chakra-radio css-
|
|
53
|
+
className="chakra-radio css-1pw4d56"
|
|
54
54
|
data-checked=""
|
|
55
55
|
>
|
|
56
56
|
<input
|
|
@@ -101,7 +101,7 @@ exports[`Radio Button renders the UI snapshot correctly 2`] = `
|
|
|
101
101
|
|
|
102
102
|
exports[`Radio Button renders the UI snapshot correctly 3`] = `
|
|
103
103
|
<label
|
|
104
|
-
className="chakra-radio css-
|
|
104
|
+
className="chakra-radio css-1pw4d56"
|
|
105
105
|
>
|
|
106
106
|
<input
|
|
107
107
|
aria-required={true}
|
|
@@ -150,7 +150,7 @@ exports[`Radio Button renders the UI snapshot correctly 3`] = `
|
|
|
150
150
|
|
|
151
151
|
exports[`Radio Button renders the UI snapshot correctly 4`] = `
|
|
152
152
|
<label
|
|
153
|
-
className="chakra-radio css-
|
|
153
|
+
className="chakra-radio css-1pw4d56"
|
|
154
154
|
data-invalid=""
|
|
155
155
|
>
|
|
156
156
|
<input
|
|
@@ -202,7 +202,7 @@ exports[`Radio Button renders the UI snapshot correctly 4`] = `
|
|
|
202
202
|
|
|
203
203
|
exports[`Radio Button renders the UI snapshot correctly 5`] = `
|
|
204
204
|
<label
|
|
205
|
-
className="chakra-radio css-
|
|
205
|
+
className="chakra-radio css-1pw4d56"
|
|
206
206
|
data-disabled=""
|
|
207
207
|
>
|
|
208
208
|
<input
|
|
@@ -3,7 +3,7 @@ import { render, screen } from "@testing-library/react";
|
|
|
3
3
|
import { axe } from "jest-axe";
|
|
4
4
|
import renderer from "react-test-renderer";
|
|
5
5
|
|
|
6
|
-
import * as generateUUID from "../../helpers/generateUUID";
|
|
6
|
+
// import * as generateUUID from "../../helpers/generateUUID";
|
|
7
7
|
import RadioGroup from "./RadioGroup";
|
|
8
8
|
import Radio from "../Radio/Radio";
|
|
9
9
|
import { RadioGroupLayoutTypes } from "./RadioGroupLayoutTypes";
|
|
@@ -131,16 +131,18 @@ describe("Radio Button", () => {
|
|
|
131
131
|
expect(newValue).toEqual("2");
|
|
132
132
|
});
|
|
133
133
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
134
|
+
// TODO: Figure out why this renders twice with two different calls
|
|
135
|
+
// to the render function.
|
|
136
|
+
// it("calls the UUID generation function if no id prop value is passed", () => {
|
|
137
|
+
// const generateUUIDSpy = jest.spyOn(generateUUID, "default");
|
|
138
|
+
// expect(generateUUIDSpy).toHaveBeenCalledTimes(0);
|
|
139
|
+
// render(
|
|
140
|
+
// <RadioGroup labelText="Test Label" name="test6">
|
|
141
|
+
// <Radio value="2" labelText="Radio 2" id="radio2" />
|
|
142
|
+
// </RadioGroup>
|
|
143
|
+
// );
|
|
144
|
+
// expect(generateUUIDSpy).toHaveBeenCalledTimes(1);
|
|
145
|
+
// });
|
|
144
146
|
|
|
145
147
|
it("sets the 'disabled' attribute for all its Radio children", () => {
|
|
146
148
|
render(
|
|
@@ -16,8 +16,6 @@ import { RadioGroupLayoutTypes } from "./RadioGroupLayoutTypes";
|
|
|
16
16
|
import generateUUID from "../../helpers/generateUUID";
|
|
17
17
|
|
|
18
18
|
export interface RadioGroupProps {
|
|
19
|
-
/** Any child node passed to the component. */
|
|
20
|
-
children: React.ReactNode;
|
|
21
19
|
/** Additional class name. */
|
|
22
20
|
className?: string;
|
|
23
21
|
/** Populates the initial value of the input */
|
|
@@ -58,101 +56,102 @@ export const onChangeDefault = () => {
|
|
|
58
56
|
return;
|
|
59
57
|
};
|
|
60
58
|
|
|
61
|
-
const RadioGroup = React.forwardRef<
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
59
|
+
const RadioGroup = React.forwardRef<
|
|
60
|
+
HTMLInputElement,
|
|
61
|
+
React.PropsWithChildren<RadioGroupProps>
|
|
62
|
+
>((props, ref?) => {
|
|
63
|
+
const {
|
|
64
|
+
children,
|
|
65
|
+
className = "",
|
|
66
|
+
defaultValue,
|
|
67
|
+
helperText,
|
|
68
|
+
id = generateUUID(),
|
|
69
|
+
invalidText,
|
|
70
|
+
isDisabled = false,
|
|
71
|
+
isInvalid = false,
|
|
72
|
+
isRequired = false,
|
|
73
|
+
labelText,
|
|
74
|
+
layout = RadioGroupLayoutTypes.Column,
|
|
75
|
+
name,
|
|
76
|
+
onChange = onChangeDefault,
|
|
77
|
+
optReqFlag = true,
|
|
78
|
+
showHelperInvalidText = true,
|
|
79
|
+
showLabel = true,
|
|
80
|
+
} = props;
|
|
81
|
+
const footnote: HelperErrorTextType = isInvalid ? invalidText : helperText;
|
|
82
|
+
const spacingProp =
|
|
83
|
+
layout === RadioGroupLayoutTypes.Column ? spacing.s : spacing.l;
|
|
84
|
+
const newChildren = [];
|
|
85
85
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
86
|
+
// Use Chakra's RadioGroup hook to set and get the proper props
|
|
87
|
+
// or the custom components.
|
|
88
|
+
const { getRootProps, getRadioProps } = useRadioGroup({
|
|
89
|
+
name,
|
|
90
|
+
defaultValue,
|
|
91
|
+
onChange,
|
|
92
|
+
});
|
|
93
|
+
const radioGroupProps = getRootProps();
|
|
94
94
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
}
|
|
95
|
+
// Go through the Radio children and update them as needed.
|
|
96
|
+
React.Children.map(children, (child: React.ReactElement, i) => {
|
|
97
|
+
if (child.type !== Radio) {
|
|
98
|
+
// Special case for Storybook MDX documentation.
|
|
99
|
+
if (child.props.mdxType && child.props.mdxType === "Radio") {
|
|
100
|
+
noop();
|
|
101
|
+
} else {
|
|
102
|
+
console.warn(
|
|
103
|
+
"Only `Radio` components are allowed inside the `RadioGroup` component."
|
|
104
|
+
);
|
|
106
105
|
}
|
|
106
|
+
}
|
|
107
107
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
108
|
+
const chakraRadioProps = getRadioProps({
|
|
109
|
+
value: child.props.value,
|
|
110
|
+
} as any);
|
|
111
111
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
}
|
|
117
|
-
newChildren.push(
|
|
118
|
-
React.cloneElement(child, { ...newProps, ...chakraRadioProps })
|
|
119
|
-
);
|
|
112
|
+
if (child !== undefined && child !== null) {
|
|
113
|
+
const newProps = { key: i, isDisabled, isInvalid, isRequired };
|
|
114
|
+
if (child.props.value === defaultValue) {
|
|
115
|
+
newProps["checked"] = true;
|
|
120
116
|
}
|
|
121
|
-
|
|
117
|
+
newChildren.push(
|
|
118
|
+
React.cloneElement(child, { ...newProps, ...chakraRadioProps })
|
|
119
|
+
);
|
|
120
|
+
}
|
|
121
|
+
});
|
|
122
122
|
|
|
123
|
-
|
|
124
|
-
|
|
123
|
+
// Get the Chakra-based styles for the custom elements in this component.
|
|
124
|
+
const styles = useMultiStyleConfig("RadioGroup", {});
|
|
125
125
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
126
|
+
return (
|
|
127
|
+
<Fieldset
|
|
128
|
+
className={className}
|
|
129
|
+
id={`radio-group-${id}`}
|
|
130
|
+
isLegendHidden={!showLabel}
|
|
131
|
+
legendText={labelText}
|
|
132
|
+
optReqFlag={optReqFlag}
|
|
133
|
+
>
|
|
134
|
+
<Stack
|
|
135
|
+
aria-label={!showLabel ? labelText : null}
|
|
136
|
+
direction={[layout]}
|
|
137
|
+
spacing={spacingProp}
|
|
138
|
+
ref={ref}
|
|
139
|
+
{...radioGroupProps}
|
|
140
|
+
sx={styles.stack}
|
|
133
141
|
>
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
</
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
isInvalid={isInvalid}
|
|
149
|
-
text={footnote}
|
|
150
|
-
/>
|
|
151
|
-
</Box>
|
|
152
|
-
)}
|
|
153
|
-
</Fieldset>
|
|
154
|
-
);
|
|
155
|
-
}
|
|
156
|
-
);
|
|
142
|
+
{newChildren}
|
|
143
|
+
</Stack>
|
|
144
|
+
{footnote && showHelperInvalidText && (
|
|
145
|
+
<Box __css={styles.helper}>
|
|
146
|
+
<HelperErrorText
|
|
147
|
+
id={`${id}-helperErrorText`}
|
|
148
|
+
isInvalid={isInvalid}
|
|
149
|
+
text={footnote}
|
|
150
|
+
/>
|
|
151
|
+
</Box>
|
|
152
|
+
)}
|
|
153
|
+
</Fieldset>
|
|
154
|
+
);
|
|
155
|
+
});
|
|
157
156
|
|
|
158
157
|
export default RadioGroup;
|
|
@@ -19,7 +19,7 @@ exports[`Radio Button renders the UI snapshot correctly 1`] = `
|
|
|
19
19
|
role="radiogroup"
|
|
20
20
|
>
|
|
21
21
|
<label
|
|
22
|
-
className="chakra-radio css-
|
|
22
|
+
className="chakra-radio css-1pw4d56"
|
|
23
23
|
>
|
|
24
24
|
<input
|
|
25
25
|
checked={false}
|
|
@@ -66,7 +66,7 @@ exports[`Radio Button renders the UI snapshot correctly 1`] = `
|
|
|
66
66
|
</span>
|
|
67
67
|
</label>
|
|
68
68
|
<label
|
|
69
|
-
className="chakra-radio css-
|
|
69
|
+
className="chakra-radio css-1pw4d56"
|
|
70
70
|
>
|
|
71
71
|
<input
|
|
72
72
|
checked={false}
|
|
@@ -135,7 +135,7 @@ exports[`Radio Button renders the UI snapshot correctly 2`] = `
|
|
|
135
135
|
role="radiogroup"
|
|
136
136
|
>
|
|
137
137
|
<label
|
|
138
|
-
className="chakra-radio css-
|
|
138
|
+
className="chakra-radio css-1pw4d56"
|
|
139
139
|
>
|
|
140
140
|
<input
|
|
141
141
|
checked={false}
|
|
@@ -182,7 +182,7 @@ exports[`Radio Button renders the UI snapshot correctly 2`] = `
|
|
|
182
182
|
</span>
|
|
183
183
|
</label>
|
|
184
184
|
<label
|
|
185
|
-
className="chakra-radio css-
|
|
185
|
+
className="chakra-radio css-1pw4d56"
|
|
186
186
|
>
|
|
187
187
|
<input
|
|
188
188
|
checked={false}
|
|
@@ -251,7 +251,7 @@ exports[`Radio Button renders the UI snapshot correctly 3`] = `
|
|
|
251
251
|
role="radiogroup"
|
|
252
252
|
>
|
|
253
253
|
<label
|
|
254
|
-
className="chakra-radio css-
|
|
254
|
+
className="chakra-radio css-1pw4d56"
|
|
255
255
|
>
|
|
256
256
|
<input
|
|
257
257
|
checked={false}
|
|
@@ -298,7 +298,7 @@ exports[`Radio Button renders the UI snapshot correctly 3`] = `
|
|
|
298
298
|
</span>
|
|
299
299
|
</label>
|
|
300
300
|
<label
|
|
301
|
-
className="chakra-radio css-
|
|
301
|
+
className="chakra-radio css-1pw4d56"
|
|
302
302
|
>
|
|
303
303
|
<input
|
|
304
304
|
checked={false}
|
|
@@ -367,7 +367,7 @@ exports[`Radio Button renders the UI snapshot correctly 4`] = `
|
|
|
367
367
|
role="radiogroup"
|
|
368
368
|
>
|
|
369
369
|
<label
|
|
370
|
-
className="chakra-radio css-
|
|
370
|
+
className="chakra-radio css-1pw4d56"
|
|
371
371
|
>
|
|
372
372
|
<input
|
|
373
373
|
checked={false}
|
|
@@ -414,7 +414,7 @@ exports[`Radio Button renders the UI snapshot correctly 4`] = `
|
|
|
414
414
|
</span>
|
|
415
415
|
</label>
|
|
416
416
|
<label
|
|
417
|
-
className="chakra-radio css-
|
|
417
|
+
className="chakra-radio css-1pw4d56"
|
|
418
418
|
>
|
|
419
419
|
<input
|
|
420
420
|
checked={false}
|
|
@@ -499,7 +499,7 @@ exports[`Radio Button renders the UI snapshot correctly 5`] = `
|
|
|
499
499
|
role="radiogroup"
|
|
500
500
|
>
|
|
501
501
|
<label
|
|
502
|
-
className="chakra-radio css-
|
|
502
|
+
className="chakra-radio css-1pw4d56"
|
|
503
503
|
>
|
|
504
504
|
<input
|
|
505
505
|
checked={false}
|
|
@@ -546,7 +546,7 @@ exports[`Radio Button renders the UI snapshot correctly 5`] = `
|
|
|
546
546
|
</span>
|
|
547
547
|
</label>
|
|
548
548
|
<label
|
|
549
|
-
className="chakra-radio css-
|
|
549
|
+
className="chakra-radio css-1pw4d56"
|
|
550
550
|
>
|
|
551
551
|
<input
|
|
552
552
|
checked={false}
|
|
@@ -610,7 +610,7 @@ exports[`Radio Button renders the UI snapshot correctly 6`] = `
|
|
|
610
610
|
role="radiogroup"
|
|
611
611
|
>
|
|
612
612
|
<label
|
|
613
|
-
className="chakra-radio css-
|
|
613
|
+
className="chakra-radio css-1pw4d56"
|
|
614
614
|
>
|
|
615
615
|
<input
|
|
616
616
|
checked={false}
|
|
@@ -657,7 +657,7 @@ exports[`Radio Button renders the UI snapshot correctly 6`] = `
|
|
|
657
657
|
</span>
|
|
658
658
|
</label>
|
|
659
659
|
<label
|
|
660
|
-
className="chakra-radio css-
|
|
660
|
+
className="chakra-radio css-1pw4d56"
|
|
661
661
|
>
|
|
662
662
|
<input
|
|
663
663
|
checked={false}
|
|
@@ -726,7 +726,7 @@ exports[`Radio Button renders the UI snapshot correctly 7`] = `
|
|
|
726
726
|
role="radiogroup"
|
|
727
727
|
>
|
|
728
728
|
<label
|
|
729
|
-
className="chakra-radio css-
|
|
729
|
+
className="chakra-radio css-1pw4d56"
|
|
730
730
|
>
|
|
731
731
|
<input
|
|
732
732
|
aria-required={true}
|
|
@@ -774,7 +774,7 @@ exports[`Radio Button renders the UI snapshot correctly 7`] = `
|
|
|
774
774
|
</span>
|
|
775
775
|
</label>
|
|
776
776
|
<label
|
|
777
|
-
className="chakra-radio css-
|
|
777
|
+
className="chakra-radio css-1pw4d56"
|
|
778
778
|
>
|
|
779
779
|
<input
|
|
780
780
|
aria-required={true}
|
|
@@ -844,7 +844,7 @@ exports[`Radio Button renders the UI snapshot correctly 8`] = `
|
|
|
844
844
|
role="radiogroup"
|
|
845
845
|
>
|
|
846
846
|
<label
|
|
847
|
-
className="chakra-radio css-
|
|
847
|
+
className="chakra-radio css-1pw4d56"
|
|
848
848
|
data-invalid=""
|
|
849
849
|
>
|
|
850
850
|
<input
|
|
@@ -895,7 +895,7 @@ exports[`Radio Button renders the UI snapshot correctly 8`] = `
|
|
|
895
895
|
</span>
|
|
896
896
|
</label>
|
|
897
897
|
<label
|
|
898
|
-
className="chakra-radio css-
|
|
898
|
+
className="chakra-radio css-1pw4d56"
|
|
899
899
|
data-invalid=""
|
|
900
900
|
>
|
|
901
901
|
<input
|
|
@@ -968,7 +968,7 @@ exports[`Radio Button renders the UI snapshot correctly 9`] = `
|
|
|
968
968
|
role="radiogroup"
|
|
969
969
|
>
|
|
970
970
|
<label
|
|
971
|
-
className="chakra-radio css-
|
|
971
|
+
className="chakra-radio css-1pw4d56"
|
|
972
972
|
data-disabled=""
|
|
973
973
|
>
|
|
974
974
|
<input
|
|
@@ -1019,7 +1019,7 @@ exports[`Radio Button renders the UI snapshot correctly 9`] = `
|
|
|
1019
1019
|
</span>
|
|
1020
1020
|
</label>
|
|
1021
1021
|
<label
|
|
1022
|
-
className="chakra-radio css-
|
|
1022
|
+
className="chakra-radio css-1pw4d56"
|
|
1023
1023
|
data-disabled=""
|
|
1024
1024
|
>
|
|
1025
1025
|
<input
|