mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-07 09:26:06 +08:00
feat: add default name generation for RadioGroup component better a11y (#52076)
* feat: add default name generation for RadioGroup component better a11y * feat(radio): implement useStableId hook for consistent ID generation in RadioGroup * test: update snapshot * chore: remove unused demo code snippet from form documentation * test: enhance demo testing by adding ignoreAttributes option for snapshot matching * fix(tests): correct logic for skipping tests and enhance snapshot matching for demo tests * Revert "test: enhance demo testing by adding ignoreAttributes option for snapshot matching" * test: mock useId for stable ID generation in snapshot tests * chore: trigger CI build * docs(radio): update name property description to clarify fallback behavior for RadioGroup * Update index.zh-CN.md Signed-off-by: Jony J <1844749591@qq.com> --------- Signed-off-by: Jony J <1844749591@qq.com>
This commit is contained in:
parent
02792b8973
commit
dfc20acd0c
@ -879,6 +879,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -898,6 +899,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -917,6 +919,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -2051,6 +2054,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="start"
|
||||
/>
|
||||
@ -2071,6 +2075,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="end"
|
||||
/>
|
||||
@ -3349,6 +3354,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -3368,6 +3374,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -3387,6 +3394,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
|
@ -860,6 +860,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -879,6 +880,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -898,6 +900,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -1872,6 +1875,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="start"
|
||||
/>
|
||||
@ -1892,6 +1896,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="end"
|
||||
/>
|
||||
@ -2862,6 +2867,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -2881,6 +2887,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -2900,6 +2907,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
|
@ -783,6 +783,7 @@ exports[`renders components/calendar/demo/basic.tsx extend context correctly 1`]
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -802,6 +803,7 @@ exports[`renders components/calendar/demo/basic.tsx extend context correctly 1`]
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -2376,6 +2378,7 @@ exports[`renders components/calendar/demo/card.tsx extend context correctly 1`]
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -2395,6 +2398,7 @@ exports[`renders components/calendar/demo/card.tsx extend context correctly 1`]
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -3968,6 +3972,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -3987,6 +3992,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -5554,6 +5560,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -5573,6 +5580,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -6397,6 +6405,7 @@ exports[`renders components/calendar/demo/customize-header.tsx extend context co
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -6416,6 +6425,7 @@ exports[`renders components/calendar/demo/customize-header.tsx extend context co
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -8788,6 +8798,7 @@ exports[`renders components/calendar/demo/notice-calendar.tsx extend context cor
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -8807,6 +8818,7 @@ exports[`renders components/calendar/demo/notice-calendar.tsx extend context cor
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -10791,6 +10803,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -10810,6 +10823,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -12383,6 +12397,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -12402,6 +12417,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -14026,6 +14042,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -14045,6 +14062,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
|
@ -145,6 +145,7 @@ exports[`renders components/calendar/demo/basic.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -164,6 +165,7 @@ exports[`renders components/calendar/demo/basic.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -1098,6 +1100,7 @@ exports[`renders components/calendar/demo/card.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -1117,6 +1120,7 @@ exports[`renders components/calendar/demo/card.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -2050,6 +2054,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -2069,6 +2074,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -2998,6 +3004,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -3017,6 +3024,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -3839,6 +3847,7 @@ exports[`renders components/calendar/demo/customize-header.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -3858,6 +3867,7 @@ exports[`renders components/calendar/demo/customize-header.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -4928,6 +4938,7 @@ exports[`renders components/calendar/demo/notice-calendar.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -4947,6 +4958,7 @@ exports[`renders components/calendar/demo/notice-calendar.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -6291,6 +6303,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -6310,6 +6323,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -7243,6 +7257,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -7262,6 +7277,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -8248,6 +8264,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -8267,6 +8284,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
|
@ -147,6 +147,7 @@ exports[`Calendar Calendar MonthSelect should display correct label 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -166,6 +167,7 @@ exports[`Calendar Calendar MonthSelect should display correct label 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -1099,6 +1101,7 @@ exports[`Calendar Calendar should support locale 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -1118,6 +1121,7 @@ exports[`Calendar Calendar should support locale 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -2051,6 +2055,7 @@ exports[`Calendar rtl render component should be rendered correctly in RTL direc
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -2070,6 +2075,7 @@ exports[`Calendar rtl render component should be rendered correctly in RTL direc
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -3003,6 +3009,7 @@ exports[`Calendar support Calendar.generateCalendar 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -3022,6 +3029,7 @@ exports[`Calendar support Calendar.generateCalendar 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
|
@ -1158,6 +1158,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="top"
|
||||
/>
|
||||
@ -1177,6 +1178,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottom"
|
||||
/>
|
||||
@ -1196,6 +1198,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="left"
|
||||
/>
|
||||
@ -1215,6 +1218,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="right"
|
||||
/>
|
||||
|
@ -1147,6 +1147,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="top"
|
||||
/>
|
||||
@ -1166,6 +1167,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottom"
|
||||
/>
|
||||
@ -1185,6 +1187,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="left"
|
||||
/>
|
||||
@ -1204,6 +1207,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="right"
|
||||
/>
|
||||
|
@ -2199,6 +2199,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -2218,6 +2219,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -2237,6 +2239,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -2256,6 +2259,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
|
@ -1087,6 +1087,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -1106,6 +1107,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -1125,6 +1127,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -1144,6 +1147,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
|
@ -1755,6 +1755,7 @@ exports[`ConfigProvider components Calendar configProvider 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -1774,6 +1775,7 @@ exports[`ConfigProvider components Calendar configProvider 1`] = `
|
||||
>
|
||||
<input
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -2639,6 +2641,7 @@ exports[`ConfigProvider components Calendar configProvider 1`] = `
|
||||
>
|
||||
<input
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -2659,6 +2662,7 @@ exports[`ConfigProvider components Calendar configProvider 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -3058,6 +3062,7 @@ exports[`ConfigProvider components Calendar configProvider componentDisabled 1`]
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -3078,6 +3083,7 @@ exports[`ConfigProvider components Calendar configProvider componentDisabled 1`]
|
||||
<input
|
||||
class="config-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -3945,6 +3951,7 @@ exports[`ConfigProvider components Calendar configProvider componentDisabled 1`]
|
||||
<input
|
||||
class="config-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -3966,6 +3973,7 @@ exports[`ConfigProvider components Calendar configProvider componentDisabled 1`]
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -4362,6 +4370,7 @@ exports[`ConfigProvider components Calendar configProvider componentSize large 1
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -4381,6 +4390,7 @@ exports[`ConfigProvider components Calendar configProvider componentSize large 1
|
||||
>
|
||||
<input
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -5246,6 +5256,7 @@ exports[`ConfigProvider components Calendar configProvider componentSize large 1
|
||||
>
|
||||
<input
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -5266,6 +5277,7 @@ exports[`ConfigProvider components Calendar configProvider componentSize large 1
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -5662,6 +5674,7 @@ exports[`ConfigProvider components Calendar configProvider componentSize middle
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -5681,6 +5694,7 @@ exports[`ConfigProvider components Calendar configProvider componentSize middle
|
||||
>
|
||||
<input
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -6546,6 +6560,7 @@ exports[`ConfigProvider components Calendar configProvider componentSize middle
|
||||
>
|
||||
<input
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -6566,6 +6581,7 @@ exports[`ConfigProvider components Calendar configProvider componentSize middle
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -6962,6 +6978,7 @@ exports[`ConfigProvider components Calendar configProvider componentSize small 1
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -6981,6 +6998,7 @@ exports[`ConfigProvider components Calendar configProvider componentSize small 1
|
||||
>
|
||||
<input
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -7846,6 +7864,7 @@ exports[`ConfigProvider components Calendar configProvider componentSize small 1
|
||||
>
|
||||
<input
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -7866,6 +7885,7 @@ exports[`ConfigProvider components Calendar configProvider componentSize small 1
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -8262,6 +8282,7 @@ exports[`ConfigProvider components Calendar normal 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -8281,6 +8302,7 @@ exports[`ConfigProvider components Calendar normal 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -9146,6 +9168,7 @@ exports[`ConfigProvider components Calendar normal 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -9166,6 +9189,7 @@ exports[`ConfigProvider components Calendar normal 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -9562,6 +9586,7 @@ exports[`ConfigProvider components Calendar prefixCls 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -9581,6 +9606,7 @@ exports[`ConfigProvider components Calendar prefixCls 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -10446,6 +10472,7 @@ exports[`ConfigProvider components Calendar prefixCls 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -10466,6 +10493,7 @@ exports[`ConfigProvider components Calendar prefixCls 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -22174,6 +22202,7 @@ exports[`ConfigProvider components Radio configProvider 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
@ -22197,6 +22226,7 @@ exports[`ConfigProvider components Radio configProvider 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
@ -22226,6 +22256,7 @@ exports[`ConfigProvider components Radio configProvider componentDisabled 1`] =
|
||||
checked=""
|
||||
class="config-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
@ -22250,6 +22281,7 @@ exports[`ConfigProvider components Radio configProvider componentDisabled 1`] =
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
@ -22278,6 +22310,7 @@ exports[`ConfigProvider components Radio configProvider componentSize large 1`]
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
@ -22301,6 +22334,7 @@ exports[`ConfigProvider components Radio configProvider componentSize large 1`]
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
@ -22329,6 +22363,7 @@ exports[`ConfigProvider components Radio configProvider componentSize middle 1`]
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
@ -22352,6 +22387,7 @@ exports[`ConfigProvider components Radio configProvider componentSize middle 1`]
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
@ -22380,6 +22416,7 @@ exports[`ConfigProvider components Radio configProvider componentSize small 1`]
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
@ -22403,6 +22440,7 @@ exports[`ConfigProvider components Radio configProvider componentSize small 1`]
|
||||
<input
|
||||
checked=""
|
||||
class="config-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
@ -22431,6 +22469,7 @@ exports[`ConfigProvider components Radio normal 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
@ -22454,6 +22493,7 @@ exports[`ConfigProvider components Radio normal 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
@ -22482,6 +22522,7 @@ exports[`ConfigProvider components Radio prefixCls 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="prefix-Radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
@ -22505,6 +22546,7 @@ exports[`ConfigProvider components Radio prefixCls 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="prefix-Radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
/>
|
||||
<span
|
||||
|
@ -47230,6 +47230,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -47249,6 +47250,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -47268,6 +47270,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -47287,6 +47290,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
@ -61481,6 +61485,7 @@ exports[`renders components/date-picker/demo/size.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -61501,6 +61506,7 @@ exports[`renders components/date-picker/demo/size.tsx extend context correctly 1
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -61520,6 +61526,7 @@ exports[`renders components/date-picker/demo/size.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
|
@ -4782,6 +4782,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -4801,6 +4802,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -4820,6 +4822,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -4839,6 +4842,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
@ -5999,6 +6003,7 @@ exports[`renders components/date-picker/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -6019,6 +6024,7 @@ exports[`renders components/date-picker/demo/size.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -6038,6 +6044,7 @@ exports[`renders components/date-picker/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
|
@ -513,6 +513,7 @@ exports[`renders components/descriptions/demo/component-token.tsx extend context
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -532,6 +533,7 @@ exports[`renders components/descriptions/demo/component-token.tsx extend context
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -551,6 +553,7 @@ exports[`renders components/descriptions/demo/component-token.tsx extend context
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -1604,6 +1607,7 @@ exports[`renders components/descriptions/demo/size.tsx extend context correctly
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -1623,6 +1627,7 @@ exports[`renders components/descriptions/demo/size.tsx extend context correctly
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -1642,6 +1647,7 @@ exports[`renders components/descriptions/demo/size.tsx extend context correctly
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -2060,6 +2066,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="horizontal"
|
||||
/>
|
||||
@ -2079,6 +2086,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="vertical"
|
||||
/>
|
||||
|
@ -467,6 +467,7 @@ exports[`renders components/descriptions/demo/component-token.tsx correctly 1`]
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -486,6 +487,7 @@ exports[`renders components/descriptions/demo/component-token.tsx correctly 1`]
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -505,6 +507,7 @@ exports[`renders components/descriptions/demo/component-token.tsx correctly 1`]
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -1486,6 +1489,7 @@ exports[`renders components/descriptions/demo/size.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -1505,6 +1509,7 @@ exports[`renders components/descriptions/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -1524,6 +1529,7 @@ exports[`renders components/descriptions/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -1908,6 +1914,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="horizontal"
|
||||
/>
|
||||
@ -1927,6 +1934,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="vertical"
|
||||
/>
|
||||
|
@ -500,6 +500,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="top"
|
||||
/>
|
||||
@ -520,6 +521,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="right"
|
||||
/>
|
||||
@ -539,6 +541,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottom"
|
||||
/>
|
||||
@ -558,6 +561,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="left"
|
||||
/>
|
||||
@ -3150,6 +3154,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="top"
|
||||
/>
|
||||
@ -3169,6 +3174,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="right"
|
||||
/>
|
||||
@ -3188,6 +3194,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottom"
|
||||
/>
|
||||
@ -3208,6 +3215,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="left"
|
||||
/>
|
||||
|
@ -136,6 +136,7 @@ exports[`renders components/drawer/demo/extra.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="top"
|
||||
/>
|
||||
@ -156,6 +157,7 @@ exports[`renders components/drawer/demo/extra.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="right"
|
||||
/>
|
||||
@ -175,6 +177,7 @@ exports[`renders components/drawer/demo/extra.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottom"
|
||||
/>
|
||||
@ -194,6 +197,7 @@ exports[`renders components/drawer/demo/extra.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="left"
|
||||
/>
|
||||
@ -310,6 +314,7 @@ exports[`renders components/drawer/demo/placement.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="top"
|
||||
/>
|
||||
@ -329,6 +334,7 @@ exports[`renders components/drawer/demo/placement.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="right"
|
||||
/>
|
||||
@ -348,6 +354,7 @@ exports[`renders components/drawer/demo/placement.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottom"
|
||||
/>
|
||||
@ -368,6 +375,7 @@ exports[`renders components/drawer/demo/placement.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="left"
|
||||
/>
|
||||
|
@ -227,6 +227,7 @@ exports[`renders components/flex/demo/basic.tsx extend context correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="horizontal"
|
||||
/>
|
||||
@ -246,6 +247,7 @@ exports[`renders components/flex/demo/basic.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="vertical"
|
||||
/>
|
||||
@ -379,6 +381,7 @@ exports[`renders components/flex/demo/gap.tsx extend context correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -398,6 +401,7 @@ exports[`renders components/flex/demo/gap.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -417,6 +421,7 @@ exports[`renders components/flex/demo/gap.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -436,6 +441,7 @@ exports[`renders components/flex/demo/gap.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="customize"
|
||||
/>
|
||||
|
@ -225,6 +225,7 @@ exports[`renders components/flex/demo/basic.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="horizontal"
|
||||
/>
|
||||
@ -244,6 +245,7 @@ exports[`renders components/flex/demo/basic.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="vertical"
|
||||
/>
|
||||
@ -371,6 +373,7 @@ exports[`renders components/flex/demo/gap.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -390,6 +393,7 @@ exports[`renders components/flex/demo/gap.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -409,6 +413,7 @@ exports[`renders components/flex/demo/gap.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -428,6 +433,7 @@ exports[`renders components/flex/demo/gap.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="customize"
|
||||
/>
|
||||
|
@ -2469,6 +2469,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="apple"
|
||||
/>
|
||||
@ -2489,6 +2490,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="pear"
|
||||
/>
|
||||
@ -8875,6 +8877,7 @@ exports[`renders components/form/demo/layout.tsx extend context correctly 1`] =
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="horizontal"
|
||||
/>
|
||||
@ -8894,6 +8897,7 @@ exports[`renders components/form/demo/layout.tsx extend context correctly 1`] =
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="vertical"
|
||||
/>
|
||||
@ -8913,6 +8917,7 @@ exports[`renders components/form/demo/layout.tsx extend context correctly 1`] =
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="inline"
|
||||
/>
|
||||
@ -11367,6 +11372,7 @@ exports[`renders components/form/demo/required-mark.tsx extend context correctly
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="true"
|
||||
/>
|
||||
@ -11387,6 +11393,7 @@ exports[`renders components/form/demo/required-mark.tsx extend context correctly
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="optional"
|
||||
/>
|
||||
@ -11406,6 +11413,7 @@ exports[`renders components/form/demo/required-mark.tsx extend context correctly
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="false"
|
||||
/>
|
||||
@ -11425,6 +11433,7 @@ exports[`renders components/form/demo/required-mark.tsx extend context correctly
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="customize"
|
||||
/>
|
||||
@ -11680,6 +11689,7 @@ exports[`renders components/form/demo/size.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -11700,6 +11710,7 @@ exports[`renders components/form/demo/size.tsx extend context correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -11719,6 +11730,7 @@ exports[`renders components/form/demo/size.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -22224,6 +22236,7 @@ exports[`renders components/form/demo/validate-other.tsx extend context correctl
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -22243,6 +22256,7 @@ exports[`renders components/form/demo/validate-other.tsx extend context correctl
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -22262,6 +22276,7 @@ exports[`renders components/form/demo/validate-other.tsx extend context correctl
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -22318,6 +22333,7 @@ exports[`renders components/form/demo/validate-other.tsx extend context correctl
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -22337,6 +22353,7 @@ exports[`renders components/form/demo/validate-other.tsx extend context correctl
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -22356,6 +22373,7 @@ exports[`renders components/form/demo/validate-other.tsx extend context correctl
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
|
@ -1871,6 +1871,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="apple"
|
||||
/>
|
||||
@ -1891,6 +1892,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="pear"
|
||||
/>
|
||||
@ -5219,6 +5221,7 @@ exports[`renders components/form/demo/layout.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="horizontal"
|
||||
/>
|
||||
@ -5238,6 +5241,7 @@ exports[`renders components/form/demo/layout.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="vertical"
|
||||
/>
|
||||
@ -5257,6 +5261,7 @@ exports[`renders components/form/demo/layout.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="inline"
|
||||
/>
|
||||
@ -7321,6 +7326,7 @@ exports[`renders components/form/demo/required-mark.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="true"
|
||||
/>
|
||||
@ -7341,6 +7347,7 @@ exports[`renders components/form/demo/required-mark.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="optional"
|
||||
/>
|
||||
@ -7360,6 +7367,7 @@ exports[`renders components/form/demo/required-mark.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="false"
|
||||
/>
|
||||
@ -7379,6 +7387,7 @@ exports[`renders components/form/demo/required-mark.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="customize"
|
||||
/>
|
||||
@ -7594,6 +7603,7 @@ exports[`renders components/form/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -7614,6 +7624,7 @@ exports[`renders components/form/demo/size.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -7633,6 +7644,7 @@ exports[`renders components/form/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -9644,6 +9656,7 @@ exports[`renders components/form/demo/validate-other.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -9663,6 +9676,7 @@ exports[`renders components/form/demo/validate-other.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -9682,6 +9696,7 @@ exports[`renders components/form/demo/validate-other.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -9738,6 +9753,7 @@ exports[`renders components/form/demo/validate-other.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -9757,6 +9773,7 @@ exports[`renders components/form/demo/validate-other.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -9776,6 +9793,7 @@ exports[`renders components/form/demo/validate-other.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
|
@ -189,6 +189,7 @@ exports[`Form form should support disabled 1`] = `
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="apple"
|
||||
/>
|
||||
@ -209,6 +210,7 @@ exports[`Form form should support disabled 1`] = `
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="pear"
|
||||
/>
|
||||
|
@ -5245,6 +5245,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -5264,6 +5265,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
|
@ -1153,6 +1153,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -1172,6 +1173,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
|
@ -1872,6 +1872,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="top"
|
||||
/>
|
||||
@ -1892,6 +1893,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottom"
|
||||
/>
|
||||
@ -1911,6 +1913,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="both"
|
||||
/>
|
||||
@ -1953,6 +1956,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="start"
|
||||
/>
|
||||
@ -1973,6 +1977,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="center"
|
||||
/>
|
||||
@ -1992,6 +1997,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="end"
|
||||
/>
|
||||
|
@ -1865,6 +1865,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="top"
|
||||
/>
|
||||
@ -1885,6 +1886,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottom"
|
||||
/>
|
||||
@ -1904,6 +1906,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="both"
|
||||
/>
|
||||
@ -1946,6 +1949,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="start"
|
||||
/>
|
||||
@ -1966,6 +1970,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="center"
|
||||
/>
|
||||
@ -1985,6 +1990,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="end"
|
||||
/>
|
||||
|
@ -6195,6 +6195,7 @@ exports[`Locale Provider should display the text as ar 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -6214,6 +6215,7 @@ exports[`Locale Provider should display the text as ar 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -11508,6 +11510,7 @@ exports[`Locale Provider should display the text as az 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -11527,6 +11530,7 @@ exports[`Locale Provider should display the text as az 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -16821,6 +16825,7 @@ exports[`Locale Provider should display the text as bg 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -16840,6 +16845,7 @@ exports[`Locale Provider should display the text as bg 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -22134,6 +22140,7 @@ exports[`Locale Provider should display the text as bn-bd 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -22153,6 +22160,7 @@ exports[`Locale Provider should display the text as bn-bd 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -27447,6 +27455,7 @@ exports[`Locale Provider should display the text as by 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -27466,6 +27475,7 @@ exports[`Locale Provider should display the text as by 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -32760,6 +32770,7 @@ exports[`Locale Provider should display the text as ca 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -32779,6 +32790,7 @@ exports[`Locale Provider should display the text as ca 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -38073,6 +38085,7 @@ exports[`Locale Provider should display the text as cs 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -38092,6 +38105,7 @@ exports[`Locale Provider should display the text as cs 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -43386,6 +43400,7 @@ exports[`Locale Provider should display the text as da 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -43405,6 +43420,7 @@ exports[`Locale Provider should display the text as da 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -48699,6 +48715,7 @@ exports[`Locale Provider should display the text as de 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -48718,6 +48735,7 @@ exports[`Locale Provider should display the text as de 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -54012,6 +54030,7 @@ exports[`Locale Provider should display the text as el 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -54031,6 +54050,7 @@ exports[`Locale Provider should display the text as el 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -59325,6 +59345,7 @@ exports[`Locale Provider should display the text as en 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -59344,6 +59365,7 @@ exports[`Locale Provider should display the text as en 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -64638,6 +64660,7 @@ exports[`Locale Provider should display the text as en-gb 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -64657,6 +64680,7 @@ exports[`Locale Provider should display the text as en-gb 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -69951,6 +69975,7 @@ exports[`Locale Provider should display the text as es 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -69970,6 +69995,7 @@ exports[`Locale Provider should display the text as es 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -75264,6 +75290,7 @@ exports[`Locale Provider should display the text as et 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -75283,6 +75310,7 @@ exports[`Locale Provider should display the text as et 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -80577,6 +80605,7 @@ exports[`Locale Provider should display the text as eu 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -80596,6 +80625,7 @@ exports[`Locale Provider should display the text as eu 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -85890,6 +85920,7 @@ exports[`Locale Provider should display the text as fa 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -85909,6 +85940,7 @@ exports[`Locale Provider should display the text as fa 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -91203,6 +91235,7 @@ exports[`Locale Provider should display the text as fi 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -91222,6 +91255,7 @@ exports[`Locale Provider should display the text as fi 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -96516,6 +96550,7 @@ exports[`Locale Provider should display the text as fr 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -96535,6 +96570,7 @@ exports[`Locale Provider should display the text as fr 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -101829,6 +101865,7 @@ exports[`Locale Provider should display the text as fr 2`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -101848,6 +101885,7 @@ exports[`Locale Provider should display the text as fr 2`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -107142,6 +107180,7 @@ exports[`Locale Provider should display the text as fr 3`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -107161,6 +107200,7 @@ exports[`Locale Provider should display the text as fr 3`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -112455,6 +112495,7 @@ exports[`Locale Provider should display the text as ga 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -112474,6 +112515,7 @@ exports[`Locale Provider should display the text as ga 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -117768,6 +117810,7 @@ exports[`Locale Provider should display the text as gl 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -117787,6 +117830,7 @@ exports[`Locale Provider should display the text as gl 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -123081,6 +123125,7 @@ exports[`Locale Provider should display the text as he 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -123100,6 +123145,7 @@ exports[`Locale Provider should display the text as he 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -128394,6 +128440,7 @@ exports[`Locale Provider should display the text as hi 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -128413,6 +128460,7 @@ exports[`Locale Provider should display the text as hi 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -133707,6 +133755,7 @@ exports[`Locale Provider should display the text as hr 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -133726,6 +133775,7 @@ exports[`Locale Provider should display the text as hr 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -139020,6 +139070,7 @@ exports[`Locale Provider should display the text as hu 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -139039,6 +139090,7 @@ exports[`Locale Provider should display the text as hu 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -144333,6 +144385,7 @@ exports[`Locale Provider should display the text as hy-am 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -144352,6 +144405,7 @@ exports[`Locale Provider should display the text as hy-am 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -149646,6 +149700,7 @@ exports[`Locale Provider should display the text as id 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -149665,6 +149720,7 @@ exports[`Locale Provider should display the text as id 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -154959,6 +155015,7 @@ exports[`Locale Provider should display the text as is 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -154978,6 +155035,7 @@ exports[`Locale Provider should display the text as is 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -160272,6 +160330,7 @@ exports[`Locale Provider should display the text as it 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -160291,6 +160350,7 @@ exports[`Locale Provider should display the text as it 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -165585,6 +165645,7 @@ exports[`Locale Provider should display the text as ja 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -165604,6 +165665,7 @@ exports[`Locale Provider should display the text as ja 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -170898,6 +170960,7 @@ exports[`Locale Provider should display the text as ka 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -170917,6 +170980,7 @@ exports[`Locale Provider should display the text as ka 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -176211,6 +176275,7 @@ exports[`Locale Provider should display the text as kk 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -176230,6 +176295,7 @@ exports[`Locale Provider should display the text as kk 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -181522,6 +181588,7 @@ exports[`Locale Provider should display the text as km 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -181541,6 +181608,7 @@ exports[`Locale Provider should display the text as km 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -186835,6 +186903,7 @@ exports[`Locale Provider should display the text as kn 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -186854,6 +186923,7 @@ exports[`Locale Provider should display the text as kn 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -192148,6 +192218,7 @@ exports[`Locale Provider should display the text as ko 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -192167,6 +192238,7 @@ exports[`Locale Provider should display the text as ko 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -197461,6 +197533,7 @@ exports[`Locale Provider should display the text as ku 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -197480,6 +197553,7 @@ exports[`Locale Provider should display the text as ku 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -202774,6 +202848,7 @@ exports[`Locale Provider should display the text as ku-iq 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -202793,6 +202868,7 @@ exports[`Locale Provider should display the text as ku-iq 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -208087,6 +208163,7 @@ exports[`Locale Provider should display the text as lt 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -208106,6 +208183,7 @@ exports[`Locale Provider should display the text as lt 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -213400,6 +213478,7 @@ exports[`Locale Provider should display the text as lv 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -213419,6 +213498,7 @@ exports[`Locale Provider should display the text as lv 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -218713,6 +218793,7 @@ exports[`Locale Provider should display the text as mk 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -218732,6 +218813,7 @@ exports[`Locale Provider should display the text as mk 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -224026,6 +224108,7 @@ exports[`Locale Provider should display the text as ml 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -224045,6 +224128,7 @@ exports[`Locale Provider should display the text as ml 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -229339,6 +229423,7 @@ exports[`Locale Provider should display the text as mn-mn 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -229358,6 +229443,7 @@ exports[`Locale Provider should display the text as mn-mn 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -234652,6 +234738,7 @@ exports[`Locale Provider should display the text as ms-my 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -234671,6 +234758,7 @@ exports[`Locale Provider should display the text as ms-my 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -239965,6 +240053,7 @@ exports[`Locale Provider should display the text as my 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -239984,6 +240073,7 @@ exports[`Locale Provider should display the text as my 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -245278,6 +245368,7 @@ exports[`Locale Provider should display the text as nb 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -245297,6 +245388,7 @@ exports[`Locale Provider should display the text as nb 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -250591,6 +250683,7 @@ exports[`Locale Provider should display the text as ne-np 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -250610,6 +250703,7 @@ exports[`Locale Provider should display the text as ne-np 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -255904,6 +255998,7 @@ exports[`Locale Provider should display the text as nl 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -255923,6 +256018,7 @@ exports[`Locale Provider should display the text as nl 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -261217,6 +261313,7 @@ exports[`Locale Provider should display the text as nl-be 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -261236,6 +261333,7 @@ exports[`Locale Provider should display the text as nl-be 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -266530,6 +266628,7 @@ exports[`Locale Provider should display the text as pl 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -266549,6 +266648,7 @@ exports[`Locale Provider should display the text as pl 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -271843,6 +271943,7 @@ exports[`Locale Provider should display the text as pt 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -271862,6 +271963,7 @@ exports[`Locale Provider should display the text as pt 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -277156,6 +277258,7 @@ exports[`Locale Provider should display the text as pt-br 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -277175,6 +277278,7 @@ exports[`Locale Provider should display the text as pt-br 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -282469,6 +282573,7 @@ exports[`Locale Provider should display the text as ro 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -282488,6 +282593,7 @@ exports[`Locale Provider should display the text as ro 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -287782,6 +287888,7 @@ exports[`Locale Provider should display the text as ru 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -287801,6 +287908,7 @@ exports[`Locale Provider should display the text as ru 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -293095,6 +293203,7 @@ exports[`Locale Provider should display the text as si 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -293114,6 +293223,7 @@ exports[`Locale Provider should display the text as si 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -298408,6 +298518,7 @@ exports[`Locale Provider should display the text as sk 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -298427,6 +298538,7 @@ exports[`Locale Provider should display the text as sk 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -303721,6 +303833,7 @@ exports[`Locale Provider should display the text as sl 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -303740,6 +303853,7 @@ exports[`Locale Provider should display the text as sl 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -309034,6 +309148,7 @@ exports[`Locale Provider should display the text as sr 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -309053,6 +309168,7 @@ exports[`Locale Provider should display the text as sr 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -314347,6 +314463,7 @@ exports[`Locale Provider should display the text as sv 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -314366,6 +314483,7 @@ exports[`Locale Provider should display the text as sv 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -319660,6 +319778,7 @@ exports[`Locale Provider should display the text as ta 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -319679,6 +319798,7 @@ exports[`Locale Provider should display the text as ta 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -324973,6 +325093,7 @@ exports[`Locale Provider should display the text as th 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -324992,6 +325113,7 @@ exports[`Locale Provider should display the text as th 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -330286,6 +330408,7 @@ exports[`Locale Provider should display the text as tk 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -330305,6 +330428,7 @@ exports[`Locale Provider should display the text as tk 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -335599,6 +335723,7 @@ exports[`Locale Provider should display the text as tr 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -335618,6 +335743,7 @@ exports[`Locale Provider should display the text as tr 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -340912,6 +341038,7 @@ exports[`Locale Provider should display the text as uk 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -340931,6 +341058,7 @@ exports[`Locale Provider should display the text as uk 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -346225,6 +346353,7 @@ exports[`Locale Provider should display the text as ur 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -346244,6 +346373,7 @@ exports[`Locale Provider should display the text as ur 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -351538,6 +351668,7 @@ exports[`Locale Provider should display the text as uz-latn 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -351557,6 +351688,7 @@ exports[`Locale Provider should display the text as uz-latn 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -356851,6 +356983,7 @@ exports[`Locale Provider should display the text as vi 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -356870,6 +357003,7 @@ exports[`Locale Provider should display the text as vi 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -362164,6 +362298,7 @@ exports[`Locale Provider should display the text as zh-cn 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -362183,6 +362318,7 @@ exports[`Locale Provider should display the text as zh-cn 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -367477,6 +367613,7 @@ exports[`Locale Provider should display the text as zh-hk 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -367496,6 +367633,7 @@ exports[`Locale Provider should display the text as zh-hk 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
@ -372790,6 +372928,7 @@ exports[`Locale Provider should display the text as zh-tw 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="month"
|
||||
/>
|
||||
@ -372809,6 +372948,7 @@ exports[`Locale Provider should display the text as zh-tw 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="year"
|
||||
/>
|
||||
|
@ -15,6 +15,7 @@ exports[`renders components/radio/demo/badge.tsx extend context correctly 1`] =
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="1"
|
||||
/>
|
||||
@ -56,6 +57,7 @@ exports[`renders components/radio/demo/badge.tsx extend context correctly 1`] =
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="2"
|
||||
/>
|
||||
@ -180,6 +182,7 @@ exports[`renders components/radio/demo/component-token.tsx extend context correc
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -199,6 +202,7 @@ exports[`renders components/radio/demo/component-token.tsx extend context correc
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -218,6 +222,7 @@ exports[`renders components/radio/demo/component-token.tsx extend context correc
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -237,6 +242,7 @@ exports[`renders components/radio/demo/component-token.tsx extend context correc
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -266,6 +272,7 @@ exports[`renders components/radio/demo/component-token.tsx extend context correc
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -286,6 +293,7 @@ exports[`renders components/radio/demo/component-token.tsx extend context correc
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -306,6 +314,7 @@ exports[`renders components/radio/demo/component-token.tsx extend context correc
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -326,6 +335,7 @@ exports[`renders components/radio/demo/component-token.tsx extend context correc
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -354,6 +364,7 @@ exports[`renders components/radio/demo/component-token.tsx extend context correc
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -373,6 +384,7 @@ exports[`renders components/radio/demo/component-token.tsx extend context correc
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -392,6 +404,7 @@ exports[`renders components/radio/demo/component-token.tsx extend context correc
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -411,6 +424,7 @@ exports[`renders components/radio/demo/component-token.tsx extend context correc
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -596,6 +610,7 @@ exports[`renders components/radio/demo/radiobutton.tsx extend context correctly
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -615,6 +630,7 @@ exports[`renders components/radio/demo/radiobutton.tsx extend context correctly
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -634,6 +650,7 @@ exports[`renders components/radio/demo/radiobutton.tsx extend context correctly
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -653,6 +670,7 @@ exports[`renders components/radio/demo/radiobutton.tsx extend context correctly
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -677,6 +695,7 @@ exports[`renders components/radio/demo/radiobutton.tsx extend context correctly
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -697,6 +716,7 @@ exports[`renders components/radio/demo/radiobutton.tsx extend context correctly
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -716,6 +736,7 @@ exports[`renders components/radio/demo/radiobutton.tsx extend context correctly
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -735,6 +756,7 @@ exports[`renders components/radio/demo/radiobutton.tsx extend context correctly
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -760,6 +782,7 @@ exports[`renders components/radio/demo/radiobutton.tsx extend context correctly
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -780,6 +803,7 @@ exports[`renders components/radio/demo/radiobutton.tsx extend context correctly
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -800,6 +824,7 @@ exports[`renders components/radio/demo/radiobutton.tsx extend context correctly
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -820,6 +845,7 @@ exports[`renders components/radio/demo/radiobutton.tsx extend context correctly
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -853,6 +879,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx extend context corr
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -872,6 +899,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx extend context corr
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -891,6 +919,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx extend context corr
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -910,6 +939,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx extend context corr
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -933,6 +963,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx extend context corr
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -953,6 +984,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx extend context corr
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -973,6 +1005,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx extend context corr
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -992,6 +1025,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx extend context corr
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -1022,6 +1056,7 @@ exports[`renders components/radio/demo/radiogroup.tsx extend context correctly 1
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="1"
|
||||
/>
|
||||
@ -1041,6 +1076,7 @@ exports[`renders components/radio/demo/radiogroup.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="2"
|
||||
/>
|
||||
@ -1060,6 +1096,7 @@ exports[`renders components/radio/demo/radiogroup.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="3"
|
||||
/>
|
||||
@ -1079,6 +1116,7 @@ exports[`renders components/radio/demo/radiogroup.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="4"
|
||||
/>
|
||||
@ -1111,6 +1149,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx extend context corre
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1130,6 +1169,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx extend context corre
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1149,6 +1189,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx extend context corre
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1173,6 +1214,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx extend context corre
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1192,6 +1234,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx extend context corre
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1211,6 +1254,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx extend context corre
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1234,6 +1278,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx extend context corre
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1254,6 +1299,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx extend context corre
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1273,6 +1319,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx extend context corre
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1309,6 +1356,7 @@ exports[`renders components/radio/demo/radiogroup-more.tsx extend context correc
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="1"
|
||||
/>
|
||||
@ -1332,6 +1380,7 @@ exports[`renders components/radio/demo/radiogroup-more.tsx extend context correc
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="2"
|
||||
/>
|
||||
@ -1355,6 +1404,7 @@ exports[`renders components/radio/demo/radiogroup-more.tsx extend context correc
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="3"
|
||||
/>
|
||||
@ -1378,6 +1428,7 @@ exports[`renders components/radio/demo/radiogroup-more.tsx extend context correc
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="4"
|
||||
/>
|
||||
@ -1410,6 +1461,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1429,6 +1481,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1448,6 +1501,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1473,6 +1527,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1492,6 +1547,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1512,6 +1568,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1538,6 +1595,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1557,6 +1615,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1577,6 +1636,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1603,6 +1663,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1622,6 +1683,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1642,6 +1704,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1765,6 +1828,7 @@ exports[`renders components/radio/demo/size.tsx extend context correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -1784,6 +1848,7 @@ exports[`renders components/radio/demo/size.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -1803,6 +1868,7 @@ exports[`renders components/radio/demo/size.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -1822,6 +1888,7 @@ exports[`renders components/radio/demo/size.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -1846,6 +1913,7 @@ exports[`renders components/radio/demo/size.tsx extend context correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -1865,6 +1933,7 @@ exports[`renders components/radio/demo/size.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -1884,6 +1953,7 @@ exports[`renders components/radio/demo/size.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -1903,6 +1973,7 @@ exports[`renders components/radio/demo/size.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -1927,6 +1998,7 @@ exports[`renders components/radio/demo/size.tsx extend context correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -1946,6 +2018,7 @@ exports[`renders components/radio/demo/size.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -1965,6 +2038,7 @@ exports[`renders components/radio/demo/size.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -1984,6 +2058,7 @@ exports[`renders components/radio/demo/size.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -2015,6 +2090,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="1"
|
||||
/>
|
||||
@ -2034,6 +2110,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="2"
|
||||
/>
|
||||
@ -2053,6 +2130,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="3"
|
||||
/>
|
||||
@ -2072,6 +2150,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="4"
|
||||
/>
|
||||
@ -2098,6 +2177,7 @@ Array [
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="1"
|
||||
/>
|
||||
@ -2118,6 +2198,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="2"
|
||||
/>
|
||||
@ -2138,6 +2219,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="3"
|
||||
/>
|
||||
@ -2158,6 +2240,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="4"
|
||||
/>
|
||||
|
@ -15,6 +15,7 @@ exports[`renders components/radio/demo/badge.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="1"
|
||||
/>
|
||||
@ -56,6 +57,7 @@ exports[`renders components/radio/demo/badge.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="2"
|
||||
/>
|
||||
@ -176,6 +178,7 @@ exports[`renders components/radio/demo/component-token.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -195,6 +198,7 @@ exports[`renders components/radio/demo/component-token.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -214,6 +218,7 @@ exports[`renders components/radio/demo/component-token.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -233,6 +238,7 @@ exports[`renders components/radio/demo/component-token.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -262,6 +268,7 @@ exports[`renders components/radio/demo/component-token.tsx correctly 1`] = `
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -282,6 +289,7 @@ exports[`renders components/radio/demo/component-token.tsx correctly 1`] = `
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -302,6 +310,7 @@ exports[`renders components/radio/demo/component-token.tsx correctly 1`] = `
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -322,6 +331,7 @@ exports[`renders components/radio/demo/component-token.tsx correctly 1`] = `
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -350,6 +360,7 @@ exports[`renders components/radio/demo/component-token.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -369,6 +380,7 @@ exports[`renders components/radio/demo/component-token.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -388,6 +400,7 @@ exports[`renders components/radio/demo/component-token.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -407,6 +420,7 @@ exports[`renders components/radio/demo/component-token.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -586,6 +600,7 @@ exports[`renders components/radio/demo/radiobutton.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -605,6 +620,7 @@ exports[`renders components/radio/demo/radiobutton.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -624,6 +640,7 @@ exports[`renders components/radio/demo/radiobutton.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -643,6 +660,7 @@ exports[`renders components/radio/demo/radiobutton.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -667,6 +685,7 @@ exports[`renders components/radio/demo/radiobutton.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -687,6 +706,7 @@ exports[`renders components/radio/demo/radiobutton.tsx correctly 1`] = `
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -706,6 +726,7 @@ exports[`renders components/radio/demo/radiobutton.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -725,6 +746,7 @@ exports[`renders components/radio/demo/radiobutton.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -750,6 +772,7 @@ exports[`renders components/radio/demo/radiobutton.tsx correctly 1`] = `
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -770,6 +793,7 @@ exports[`renders components/radio/demo/radiobutton.tsx correctly 1`] = `
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -790,6 +814,7 @@ exports[`renders components/radio/demo/radiobutton.tsx correctly 1`] = `
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -810,6 +835,7 @@ exports[`renders components/radio/demo/radiobutton.tsx correctly 1`] = `
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -841,6 +867,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -860,6 +887,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -879,6 +907,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -898,6 +927,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -921,6 +951,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -941,6 +972,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx correctly 1`] = `
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -961,6 +993,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -980,6 +1013,7 @@ exports[`renders components/radio/demo/radiobutton-solid.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -1008,6 +1042,7 @@ exports[`renders components/radio/demo/radiogroup.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="1"
|
||||
/>
|
||||
@ -1027,6 +1062,7 @@ exports[`renders components/radio/demo/radiogroup.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="2"
|
||||
/>
|
||||
@ -1046,6 +1082,7 @@ exports[`renders components/radio/demo/radiogroup.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="3"
|
||||
/>
|
||||
@ -1065,6 +1102,7 @@ exports[`renders components/radio/demo/radiogroup.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="4"
|
||||
/>
|
||||
@ -1095,6 +1133,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1114,6 +1153,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1133,6 +1173,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1157,6 +1198,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1176,6 +1218,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1195,6 +1238,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1218,6 +1262,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1238,6 +1283,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1257,6 +1303,7 @@ exports[`renders components/radio/demo/radiogroup-block.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1291,6 +1338,7 @@ exports[`renders components/radio/demo/radiogroup-more.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="1"
|
||||
/>
|
||||
@ -1314,6 +1362,7 @@ exports[`renders components/radio/demo/radiogroup-more.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="2"
|
||||
/>
|
||||
@ -1337,6 +1386,7 @@ exports[`renders components/radio/demo/radiogroup-more.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="3"
|
||||
/>
|
||||
@ -1360,6 +1410,7 @@ exports[`renders components/radio/demo/radiogroup-more.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="4"
|
||||
/>
|
||||
@ -1390,6 +1441,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1409,6 +1461,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1428,6 +1481,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1453,6 +1507,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1472,6 +1527,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1492,6 +1548,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1518,6 +1575,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1537,6 +1595,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1557,6 +1616,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1583,6 +1643,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -1602,6 +1663,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Pear"
|
||||
/>
|
||||
@ -1622,6 +1684,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
@ -1741,6 +1804,7 @@ exports[`renders components/radio/demo/size.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -1760,6 +1824,7 @@ exports[`renders components/radio/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -1779,6 +1844,7 @@ exports[`renders components/radio/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -1798,6 +1864,7 @@ exports[`renders components/radio/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -1822,6 +1889,7 @@ exports[`renders components/radio/demo/size.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -1841,6 +1909,7 @@ exports[`renders components/radio/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -1860,6 +1929,7 @@ exports[`renders components/radio/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -1879,6 +1949,7 @@ exports[`renders components/radio/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -1903,6 +1974,7 @@ exports[`renders components/radio/demo/size.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="a"
|
||||
/>
|
||||
@ -1922,6 +1994,7 @@ exports[`renders components/radio/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="b"
|
||||
/>
|
||||
@ -1941,6 +2014,7 @@ exports[`renders components/radio/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="c"
|
||||
/>
|
||||
@ -1960,6 +2034,7 @@ exports[`renders components/radio/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="d"
|
||||
/>
|
||||
@ -1989,6 +2064,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="1"
|
||||
/>
|
||||
@ -2008,6 +2084,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="2"
|
||||
/>
|
||||
@ -2027,6 +2104,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="3"
|
||||
/>
|
||||
@ -2046,6 +2124,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="4"
|
||||
/>
|
||||
@ -2072,6 +2151,7 @@ Array [
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="1"
|
||||
/>
|
||||
@ -2092,6 +2172,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="2"
|
||||
/>
|
||||
@ -2112,6 +2193,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="3"
|
||||
/>
|
||||
@ -2132,6 +2214,7 @@ Array [
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
disabled=""
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="4"
|
||||
/>
|
||||
|
@ -12,6 +12,7 @@ exports[`Radio Group passes prefixCls down to radio 1`] = `
|
||||
>
|
||||
<input
|
||||
class="my-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -32,6 +33,7 @@ exports[`Radio Group passes prefixCls down to radio 1`] = `
|
||||
>
|
||||
<input
|
||||
class="my-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
|
@ -51,6 +51,7 @@ exports[`Radio Group passes prefixCls down to radio 1`] = `
|
||||
>
|
||||
<input
|
||||
class="my-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Apple"
|
||||
/>
|
||||
@ -71,6 +72,7 @@ exports[`Radio Group passes prefixCls down to radio 1`] = `
|
||||
>
|
||||
<input
|
||||
class="my-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="Orange"
|
||||
/>
|
||||
|
@ -15,10 +15,13 @@ import type {
|
||||
} from './interface';
|
||||
import Radio from './radio';
|
||||
import useStyle from './style';
|
||||
import useId from 'rc-util/lib/hooks/useId';
|
||||
|
||||
const RadioGroup = React.forwardRef<HTMLDivElement, RadioGroupProps>((props, ref) => {
|
||||
const { getPrefixCls, direction } = React.useContext(ConfigContext);
|
||||
|
||||
const defaultName = useId();
|
||||
|
||||
const {
|
||||
prefixCls: customizePrefixCls,
|
||||
className,
|
||||
@ -31,7 +34,7 @@ const RadioGroup = React.forwardRef<HTMLDivElement, RadioGroupProps>((props, ref
|
||||
style,
|
||||
id,
|
||||
optionType,
|
||||
name,
|
||||
name = defaultName,
|
||||
defaultValue,
|
||||
value: customizedValue,
|
||||
block = false,
|
||||
|
@ -56,7 +56,7 @@ Radio group can wrap a group of `Radio`。
|
||||
| buttonStyle | The style type of radio button | `outline` \| `solid` | `outline` | |
|
||||
| defaultValue | Default selected value | any | - | |
|
||||
| disabled | Disable all radio buttons | boolean | false | |
|
||||
| name | The `name` property of all `input[type="radio"]` children | string | - | |
|
||||
| name | The `name` property of all `input[type="radio"]` children. If not set, it will fallback to a randomly generated name | string | - | |
|
||||
| options | Set children optional | string\[] \| number\[] \| Array<[CheckboxOptionType](#checkboxoptiontype)> | - | |
|
||||
| optionType | Set Radio optionType | `default` \| `button` | `default` | 4.4.0 |
|
||||
| size | The size of radio button style | `large` \| `middle` \| `small` | - | |
|
||||
|
@ -59,7 +59,7 @@ demo:
|
||||
| buttonStyle | RadioButton 的风格样式,目前有描边和填色两种风格 | `outline` \| `solid` | `outline` | | |
|
||||
| defaultValue | 默认选中的值 | any | - | | |
|
||||
| disabled | 禁选所有子单选器 | boolean | false | | |
|
||||
| name | RadioGroup 下所有 `input[type="radio"]` 的 `name` 属性 | string | - | | |
|
||||
| name | RadioGroup 下所有 `input[type="radio"]` 的 `name` 属性。若未设置,则将回退到随机生成的名称 | string | - | | |
|
||||
| options | 以配置形式设置子元素 | string\[] \| number\[] \| Array<[CheckboxOptionType](#checkboxoptiontype)> | - | | |
|
||||
| optionType | 用于设置 Radio `options` 类型 | `default` \| `button` | `default` | 4.4.0 | |
|
||||
| size | 大小,只对按钮样式生效 | `large` \| `middle` \| `small` | - | | |
|
||||
|
@ -11670,6 +11670,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -11689,6 +11690,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -11708,6 +11710,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -11727,6 +11730,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
@ -11917,6 +11921,7 @@ exports[`renders components/select/demo/placement-debug.tsx extend context corre
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -11936,6 +11941,7 @@ exports[`renders components/select/demo/placement-debug.tsx extend context corre
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -11955,6 +11961,7 @@ exports[`renders components/select/demo/placement-debug.tsx extend context corre
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -11974,6 +11981,7 @@ exports[`renders components/select/demo/placement-debug.tsx extend context corre
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
@ -14445,6 +14453,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -14465,6 +14474,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -14484,6 +14494,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
|
@ -4524,6 +4524,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -4543,6 +4544,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -4562,6 +4564,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -4581,6 +4584,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
@ -4685,6 +4689,7 @@ exports[`renders components/select/demo/placement-debug.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -4704,6 +4709,7 @@ exports[`renders components/select/demo/placement-debug.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -4723,6 +4729,7 @@ exports[`renders components/select/demo/placement-debug.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -4742,6 +4749,7 @@ exports[`renders components/select/demo/placement-debug.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
@ -5452,6 +5460,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -5472,6 +5481,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -5491,6 +5501,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
|
@ -432,6 +432,7 @@ exports[`renders components/skeleton/demo/element.tsx extend context correctly 1
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -451,6 +452,7 @@ exports[`renders components/skeleton/demo/element.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -470,6 +472,7 @@ exports[`renders components/skeleton/demo/element.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -528,6 +531,7 @@ exports[`renders components/skeleton/demo/element.tsx extend context correctly 1
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -547,6 +551,7 @@ exports[`renders components/skeleton/demo/element.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="square"
|
||||
/>
|
||||
@ -566,6 +571,7 @@ exports[`renders components/skeleton/demo/element.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="round"
|
||||
/>
|
||||
@ -585,6 +591,7 @@ exports[`renders components/skeleton/demo/element.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="circle"
|
||||
/>
|
||||
@ -642,6 +649,7 @@ exports[`renders components/skeleton/demo/element.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="square"
|
||||
/>
|
||||
@ -662,6 +670,7 @@ exports[`renders components/skeleton/demo/element.tsx extend context correctly 1
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="circle"
|
||||
/>
|
||||
|
@ -422,6 +422,7 @@ exports[`renders components/skeleton/demo/element.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -441,6 +442,7 @@ exports[`renders components/skeleton/demo/element.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -460,6 +462,7 @@ exports[`renders components/skeleton/demo/element.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -518,6 +521,7 @@ exports[`renders components/skeleton/demo/element.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
@ -537,6 +541,7 @@ exports[`renders components/skeleton/demo/element.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="square"
|
||||
/>
|
||||
@ -556,6 +561,7 @@ exports[`renders components/skeleton/demo/element.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="round"
|
||||
/>
|
||||
@ -575,6 +581,7 @@ exports[`renders components/skeleton/demo/element.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="circle"
|
||||
/>
|
||||
@ -632,6 +639,7 @@ exports[`renders components/skeleton/demo/element.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="square"
|
||||
/>
|
||||
@ -652,6 +660,7 @@ exports[`renders components/skeleton/demo/element.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="circle"
|
||||
/>
|
||||
|
@ -16659,6 +16659,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -16678,6 +16679,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -16697,6 +16699,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -16716,6 +16719,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="customize"
|
||||
/>
|
||||
|
@ -4505,6 +4505,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -4524,6 +4525,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -4543,6 +4545,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -4562,6 +4565,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="customize"
|
||||
/>
|
||||
|
@ -5341,6 +5341,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -5361,6 +5362,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
|
@ -4983,6 +4983,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -5003,6 +5004,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="default"
|
||||
/>
|
||||
|
@ -1407,6 +1407,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -1426,6 +1427,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -1445,6 +1447,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -1499,6 +1502,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="unset"
|
||||
/>
|
||||
@ -1518,6 +1522,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="scroll"
|
||||
/>
|
||||
@ -1537,6 +1542,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="fixed"
|
||||
/>
|
||||
@ -1591,6 +1597,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="unset"
|
||||
/>
|
||||
@ -1610,6 +1617,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="fixed"
|
||||
/>
|
||||
@ -1663,6 +1671,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -1682,6 +1691,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topCenter"
|
||||
/>
|
||||
@ -1701,6 +1711,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -1721,6 +1732,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="none"
|
||||
/>
|
||||
@ -1774,6 +1786,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -1793,6 +1806,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomCenter"
|
||||
/>
|
||||
@ -1813,6 +1827,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
@ -1832,6 +1847,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="none"
|
||||
/>
|
||||
@ -5956,6 +5972,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -5975,6 +5992,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -5994,6 +6012,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -6048,6 +6067,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="unset"
|
||||
/>
|
||||
@ -6067,6 +6087,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="scroll"
|
||||
/>
|
||||
@ -6086,6 +6107,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="fixed"
|
||||
/>
|
||||
@ -6140,6 +6162,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="unset"
|
||||
/>
|
||||
@ -6159,6 +6182,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="fixed"
|
||||
/>
|
||||
@ -6212,6 +6236,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -6231,6 +6256,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topCenter"
|
||||
/>
|
||||
@ -6250,6 +6276,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -6270,6 +6297,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="none"
|
||||
/>
|
||||
@ -6323,6 +6351,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -6342,6 +6371,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomCenter"
|
||||
/>
|
||||
@ -6362,6 +6392,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
@ -6381,6 +6412,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="none"
|
||||
/>
|
||||
@ -20752,6 +20784,7 @@ exports[`renders components/table/demo/pagination.tsx extend context correctly 1
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -20771,6 +20804,7 @@ exports[`renders components/table/demo/pagination.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topCenter"
|
||||
/>
|
||||
@ -20790,6 +20824,7 @@ exports[`renders components/table/demo/pagination.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -20809,6 +20844,7 @@ exports[`renders components/table/demo/pagination.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="none"
|
||||
/>
|
||||
@ -20834,6 +20870,7 @@ exports[`renders components/table/demo/pagination.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -20853,6 +20890,7 @@ exports[`renders components/table/demo/pagination.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomCenter"
|
||||
/>
|
||||
@ -20873,6 +20911,7 @@ exports[`renders components/table/demo/pagination.tsx extend context correctly 1
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
@ -20892,6 +20931,7 @@ exports[`renders components/table/demo/pagination.tsx extend context correctly 1
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="none"
|
||||
/>
|
||||
@ -22655,6 +22695,7 @@ exports[`renders components/table/demo/row-selection.tsx extend context correctl
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="checkbox"
|
||||
/>
|
||||
@ -22674,6 +22715,7 @@ exports[`renders components/table/demo/row-selection.tsx extend context correctl
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="radio"
|
||||
/>
|
||||
|
@ -1407,6 +1407,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -1426,6 +1427,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -1445,6 +1447,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -1499,6 +1502,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="unset"
|
||||
/>
|
||||
@ -1518,6 +1522,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="scroll"
|
||||
/>
|
||||
@ -1537,6 +1542,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="fixed"
|
||||
/>
|
||||
@ -1591,6 +1597,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="unset"
|
||||
/>
|
||||
@ -1610,6 +1617,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="fixed"
|
||||
/>
|
||||
@ -1663,6 +1671,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -1682,6 +1691,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topCenter"
|
||||
/>
|
||||
@ -1701,6 +1711,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -1721,6 +1732,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="none"
|
||||
/>
|
||||
@ -1774,6 +1786,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -1793,6 +1806,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomCenter"
|
||||
/>
|
||||
@ -1813,6 +1827,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
@ -1832,6 +1847,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="none"
|
||||
/>
|
||||
@ -5279,6 +5295,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -5298,6 +5315,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -5317,6 +5335,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -5371,6 +5390,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="unset"
|
||||
/>
|
||||
@ -5390,6 +5410,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="scroll"
|
||||
/>
|
||||
@ -5409,6 +5430,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="fixed"
|
||||
/>
|
||||
@ -5463,6 +5485,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="unset"
|
||||
/>
|
||||
@ -5482,6 +5505,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="fixed"
|
||||
/>
|
||||
@ -5535,6 +5559,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -5554,6 +5579,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topCenter"
|
||||
/>
|
||||
@ -5573,6 +5599,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -5593,6 +5620,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="none"
|
||||
/>
|
||||
@ -5646,6 +5674,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -5665,6 +5694,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomCenter"
|
||||
/>
|
||||
@ -5685,6 +5715,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
@ -5704,6 +5735,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="none"
|
||||
/>
|
||||
@ -20090,6 +20122,7 @@ exports[`renders components/table/demo/pagination.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -20109,6 +20142,7 @@ exports[`renders components/table/demo/pagination.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topCenter"
|
||||
/>
|
||||
@ -20128,6 +20162,7 @@ exports[`renders components/table/demo/pagination.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -20147,6 +20182,7 @@ exports[`renders components/table/demo/pagination.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="none"
|
||||
/>
|
||||
@ -20172,6 +20208,7 @@ exports[`renders components/table/demo/pagination.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -20191,6 +20228,7 @@ exports[`renders components/table/demo/pagination.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomCenter"
|
||||
/>
|
||||
@ -20211,6 +20249,7 @@ exports[`renders components/table/demo/pagination.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
@ -20230,6 +20269,7 @@ exports[`renders components/table/demo/pagination.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="none"
|
||||
/>
|
||||
@ -21649,6 +21689,7 @@ exports[`renders components/table/demo/row-selection.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="checkbox"
|
||||
/>
|
||||
@ -21668,6 +21709,7 @@ exports[`renders components/table/demo/row-selection.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="radio"
|
||||
/>
|
||||
|
@ -4678,6 +4678,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="top"
|
||||
/>
|
||||
@ -4697,6 +4698,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottom"
|
||||
/>
|
||||
@ -4717,6 +4719,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="left"
|
||||
/>
|
||||
@ -4736,6 +4739,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="right"
|
||||
/>
|
||||
@ -4907,6 +4911,7 @@ exports[`renders components/tabs/demo/size.tsx extend context correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -4926,6 +4931,7 @@ exports[`renders components/tabs/demo/size.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -4945,6 +4951,7 @@ exports[`renders components/tabs/demo/size.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -5527,6 +5534,7 @@ exports[`renders components/tabs/demo/slide.tsx extend context correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="top"
|
||||
/>
|
||||
@ -5546,6 +5554,7 @@ exports[`renders components/tabs/demo/slide.tsx extend context correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="left"
|
||||
/>
|
||||
|
@ -3622,6 +3622,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="top"
|
||||
/>
|
||||
@ -3641,6 +3642,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottom"
|
||||
/>
|
||||
@ -3661,6 +3663,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="left"
|
||||
/>
|
||||
@ -3680,6 +3683,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="right"
|
||||
/>
|
||||
@ -3824,6 +3828,7 @@ exports[`renders components/tabs/demo/size.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="small"
|
||||
/>
|
||||
@ -3843,6 +3848,7 @@ exports[`renders components/tabs/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="middle"
|
||||
/>
|
||||
@ -3862,6 +3868,7 @@ exports[`renders components/tabs/demo/size.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="large"
|
||||
/>
|
||||
@ -4367,6 +4374,7 @@ exports[`renders components/tabs/demo/slide.tsx correctly 1`] = `
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="top"
|
||||
/>
|
||||
@ -4386,6 +4394,7 @@ exports[`renders components/tabs/demo/slide.tsx correctly 1`] = `
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="left"
|
||||
/>
|
||||
|
@ -561,6 +561,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="left"
|
||||
/>
|
||||
@ -580,6 +581,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="right"
|
||||
/>
|
||||
@ -599,6 +601,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="alternate"
|
||||
/>
|
||||
|
@ -551,6 +551,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="left"
|
||||
/>
|
||||
@ -570,6 +571,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="right"
|
||||
/>
|
||||
@ -589,6 +591,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="alternate"
|
||||
/>
|
||||
|
@ -1353,6 +1353,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -1372,6 +1373,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -1391,6 +1393,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -1410,6 +1413,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
|
@ -342,6 +342,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topLeft"
|
||||
/>
|
||||
@ -361,6 +362,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="topRight"
|
||||
/>
|
||||
@ -380,6 +382,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomLeft"
|
||||
/>
|
||||
@ -399,6 +402,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-button-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="bottomRight"
|
||||
/>
|
||||
|
@ -895,6 +895,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="icon"
|
||||
/>
|
||||
@ -914,6 +915,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="text"
|
||||
/>
|
||||
@ -933,6 +935,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="both"
|
||||
/>
|
||||
|
@ -725,6 +725,7 @@ Array [
|
||||
<input
|
||||
checked=""
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="icon"
|
||||
/>
|
||||
@ -744,6 +745,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="text"
|
||||
/>
|
||||
@ -763,6 +765,7 @@ Array [
|
||||
>
|
||||
<input
|
||||
class="ant-radio-input"
|
||||
name="test-id"
|
||||
type="radio"
|
||||
value="both"
|
||||
/>
|
||||
|
@ -74,3 +74,9 @@ if (typeof MessageChannel === 'undefined') {
|
||||
return { port1, port2 };
|
||||
};
|
||||
}
|
||||
|
||||
// Mock useId to return a stable id for snapshot testing
|
||||
jest.mock('react', () => ({
|
||||
...jest.requireActual('react'),
|
||||
useId: () => 'test-id',
|
||||
}));
|
||||
|
Loading…
Reference in New Issue
Block a user