diff --git a/.npmignore b/.npmignore index 74b59e474c..f2f0cd0977 100644 --- a/.npmignore +++ b/.npmignore @@ -1 +1,2 @@ ~* +dist/report.html \ No newline at end of file diff --git a/components/auto-complete/__tests__/__snapshots__/demo.test.js.snap b/components/auto-complete/__tests__/__snapshots__/demo.test.js.snap index d01290fe28..a32493f62a 100644 --- a/components/auto-complete/__tests__/__snapshots__/demo.test.js.snap +++ b/components/auto-complete/__tests__/__snapshots__/demo.test.js.snap @@ -250,6 +250,7 @@ exports[`renders ./components/auto-complete/demo/form-debug.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -330,6 +331,7 @@ exports[`renders ./components/auto-complete/demo/form-debug.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -514,6 +516,7 @@ exports[`renders ./components/auto-complete/demo/form-debug.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -650,6 +653,7 @@ exports[`renders ./components/auto-complete/demo/form-debug.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -787,6 +791,7 @@ exports[`renders ./components/auto-complete/demo/form-debug.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" diff --git a/components/button/style/mixin.less b/components/button/style/mixin.less index 29200db1e5..aa0ac3f3c6 100644 --- a/components/button/style/mixin.less +++ b/components/button/style/mixin.less @@ -179,11 +179,10 @@ // -------------------------------------------------- .btn() { position: relative; - display: inline-flex; - align-items: center; - justify-content: center; + display: inline-block; font-weight: @btn-font-weight; white-space: nowrap; + text-align: center; background-image: none; border: @btn-border-width @btn-border-style transparent; box-shadow: @btn-shadow; diff --git a/components/calendar/__tests__/__snapshots__/demo.test.js.snap b/components/calendar/__tests__/__snapshots__/demo.test.js.snap index 9b8217f374..93d54b0633 100644 --- a/components/calendar/__tests__/__snapshots__/demo.test.js.snap +++ b/components/calendar/__tests__/__snapshots__/demo.test.js.snap @@ -24,6 +24,7 @@ exports[`renders ./components/calendar/demo/basic.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -80,6 +81,7 @@ exports[`renders ./components/calendar/demo/basic.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -975,6 +977,7 @@ exports[`renders ./components/calendar/demo/card.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1031,6 +1034,7 @@ exports[`renders ./components/calendar/demo/card.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1988,6 +1992,7 @@ exports[`renders ./components/calendar/demo/customize-header.md correctly 1`] = aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -2049,6 +2054,7 @@ exports[`renders ./components/calendar/demo/customize-header.md correctly 1`] = aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -2901,6 +2907,7 @@ exports[`renders ./components/calendar/demo/notice-calendar.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -2957,6 +2964,7 @@ exports[`renders ./components/calendar/demo/notice-calendar.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -4260,6 +4268,7 @@ exports[`renders ./components/calendar/demo/select.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -4316,6 +4325,7 @@ exports[`renders ./components/calendar/demo/select.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" diff --git a/components/calendar/__tests__/__snapshots__/index.test.js.snap b/components/calendar/__tests__/__snapshots__/index.test.js.snap index a471c845ec..74dd50d29a 100644 --- a/components/calendar/__tests__/__snapshots__/index.test.js.snap +++ b/components/calendar/__tests__/__snapshots__/index.test.js.snap @@ -25,6 +25,7 @@ exports[`Calendar Calendar should support locale 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -82,6 +83,7 @@ exports[`Calendar Calendar should support locale 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" diff --git a/components/carousel/index.tsx b/components/carousel/index.tsx index 3f695a0b4e..b2535af642 100644 --- a/components/carousel/index.tsx +++ b/components/carousel/index.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import debounce from 'lodash/debounce'; -import { Settings } from 'react-slick'; +import { Settings } from '@ant-design/react-slick'; import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; import warning from '../_util/warning'; @@ -8,7 +8,7 @@ import warning from '../_util/warning'; // make sure matchMedia polyfill run before require('react-slick') // Fix https://github.com/ant-design/ant-design/issues/6560 // Fix https://github.com/ant-design/ant-design/issues/3308 -const SlickCarousel = require('react-slick').default; +const SlickCarousel = require('@ant-design/react-slick').default; export type CarouselEffect = 'scrollx' | 'fade'; export type DotPosition = 'top' | 'bottom' | 'left' | 'right'; diff --git a/components/collapse/__tests__/__snapshots__/demo.test.js.snap b/components/collapse/__tests__/__snapshots__/demo.test.js.snap index 3560eec830..9f1d35c1f6 100644 --- a/components/collapse/__tests__/__snapshots__/demo.test.js.snap +++ b/components/collapse/__tests__/__snapshots__/demo.test.js.snap @@ -367,7 +367,7 @@ exports[`renders ./components/collapse/demo/custom.md correctly 1`] = ` focusable="false" height="1em" style="-ms-transform:rotate(90deg);transform:rotate(90deg)" - viewBox="0 0 1024 1024" + viewBox="64 64 896 896" width="1em" > - @@ -158,7 +158,7 @@ exports[`Input.Password should change type when click 1`] = ` - + @@ -233,7 +233,7 @@ exports[`Input.Password should change type when click 2`] = ` onClick={[Function]} onMouseDown={[Function]} > - @@ -309,7 +309,7 @@ exports[`Input.Password should change type when click 2`] = ` - + @@ -384,7 +384,7 @@ exports[`Input.Password should change type when click 3`] = ` onClick={[Function]} onMouseDown={[Function]} > - @@ -476,7 +476,7 @@ exports[`Input.Password should change type when click 3`] = ` - + diff --git a/components/input/__tests__/__snapshots__/demo.test.js.snap b/components/input/__tests__/__snapshots__/demo.test.js.snap index f6d7eea10e..6a15ce5b8a 100644 --- a/components/input/__tests__/__snapshots__/demo.test.js.snap +++ b/components/input/__tests__/__snapshots__/demo.test.js.snap @@ -59,6 +59,7 @@ exports[`renders ./components/input/demo/addon.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -125,6 +126,7 @@ exports[`renders ./components/input/demo/addon.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -495,6 +497,7 @@ exports[`renders ./components/input/demo/align.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -552,6 +555,7 @@ exports[`renders ./components/input/demo/align.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -609,6 +613,7 @@ exports[`renders ./components/input/demo/align.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1008,6 +1013,7 @@ exports[`renders ./components/input/demo/group.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1075,6 +1081,7 @@ exports[`renders ./components/input/demo/group.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1269,6 +1276,7 @@ exports[`renders ./components/input/demo/group.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1325,6 +1333,7 @@ exports[`renders ./components/input/demo/group.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1386,6 +1395,7 @@ exports[`renders ./components/input/demo/group.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1469,6 +1479,7 @@ exports[`renders ./components/input/demo/group.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1560,6 +1571,7 @@ exports[`renders ./components/input/demo/group.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" diff --git a/components/input/__tests__/__snapshots__/index.test.js.snap b/components/input/__tests__/__snapshots__/index.test.js.snap index fe12a9f68f..1b3c1ef644 100644 --- a/components/input/__tests__/__snapshots__/index.test.js.snap +++ b/components/input/__tests__/__snapshots__/index.test.js.snap @@ -40,7 +40,7 @@ exports[`Input allowClear should change type when click 1`] = ` onClick={[Function]} role="button" > - @@ -115,7 +115,7 @@ exports[`Input allowClear should change type when click 1`] = ` - + @@ -512,7 +512,7 @@ exports[`Input.Search should support suffix 1`] = ` key="searchIcon" onClick={[Function]} > - @@ -586,7 +586,7 @@ exports[`Input.Search should support suffix 1`] = ` - + @@ -643,7 +643,7 @@ exports[`TextArea allowClear should change type when click 1`] = ` onClick={[Function]} role="button" > - @@ -718,7 +718,7 @@ exports[`TextArea allowClear should change type when click 1`] = ` - + diff --git a/components/list/__tests__/__snapshots__/pagination.test.js.snap b/components/list/__tests__/__snapshots__/pagination.test.js.snap index 5170e71cc7..557c5e6a89 100644 --- a/components/list/__tests__/__snapshots__/pagination.test.js.snap +++ b/components/list/__tests__/__snapshots__/pagination.test.js.snap @@ -212,6 +212,7 @@ exports[`List.pagination should change page size work 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -351,6 +352,7 @@ exports[`List.pagination should change page size work 2`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -626,6 +628,7 @@ exports[`List.pagination should default work 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" diff --git a/components/locale-provider/__tests__/__snapshots__/index.test.js.snap b/components/locale-provider/__tests__/__snapshots__/index.test.js.snap index 13151d22b8..a39601311d 100644 --- a/components/locale-provider/__tests__/__snapshots__/index.test.js.snap +++ b/components/locale-provider/__tests__/__snapshots__/index.test.js.snap @@ -2032,6 +2032,7 @@ exports[`Locale Provider should display the text as ar 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -2092,6 +2093,7 @@ exports[`Locale Provider should display the text as ar 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -5736,6 +5738,7 @@ exports[`Locale Provider should display the text as ar 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -5793,6 +5796,7 @@ exports[`Locale Provider should display the text as ar 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -7115,6 +7119,7 @@ exports[`Locale Provider should display the text as bg 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -7175,6 +7180,7 @@ exports[`Locale Provider should display the text as bg 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -10819,6 +10825,7 @@ exports[`Locale Provider should display the text as bg 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -10876,6 +10883,7 @@ exports[`Locale Provider should display the text as bg 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -12198,6 +12206,7 @@ exports[`Locale Provider should display the text as ca 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -12258,6 +12267,7 @@ exports[`Locale Provider should display the text as ca 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -15902,6 +15912,7 @@ exports[`Locale Provider should display the text as ca 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -15959,6 +15970,7 @@ exports[`Locale Provider should display the text as ca 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -17281,6 +17293,7 @@ exports[`Locale Provider should display the text as cs 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -17341,6 +17354,7 @@ exports[`Locale Provider should display the text as cs 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -20985,6 +20999,7 @@ exports[`Locale Provider should display the text as cs 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -21042,6 +21057,7 @@ exports[`Locale Provider should display the text as cs 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -22364,6 +22380,7 @@ exports[`Locale Provider should display the text as da 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -22424,6 +22441,7 @@ exports[`Locale Provider should display the text as da 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -26068,6 +26086,7 @@ exports[`Locale Provider should display the text as da 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -26125,6 +26144,7 @@ exports[`Locale Provider should display the text as da 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -27447,6 +27467,7 @@ exports[`Locale Provider should display the text as de 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -27507,6 +27528,7 @@ exports[`Locale Provider should display the text as de 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -31151,6 +31173,7 @@ exports[`Locale Provider should display the text as de 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -31208,6 +31231,7 @@ exports[`Locale Provider should display the text as de 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -32530,6 +32554,7 @@ exports[`Locale Provider should display the text as el 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -32590,6 +32615,7 @@ exports[`Locale Provider should display the text as el 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -36234,6 +36260,7 @@ exports[`Locale Provider should display the text as el 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -36291,6 +36318,7 @@ exports[`Locale Provider should display the text as el 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -37613,6 +37641,7 @@ exports[`Locale Provider should display the text as en 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -37673,6 +37702,7 @@ exports[`Locale Provider should display the text as en 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -41317,6 +41347,7 @@ exports[`Locale Provider should display the text as en 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -41374,6 +41405,7 @@ exports[`Locale Provider should display the text as en 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -42696,6 +42728,7 @@ exports[`Locale Provider should display the text as en-gb 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -42756,6 +42789,7 @@ exports[`Locale Provider should display the text as en-gb 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -46400,6 +46434,7 @@ exports[`Locale Provider should display the text as en-gb 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -46457,6 +46492,7 @@ exports[`Locale Provider should display the text as en-gb 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -47779,6 +47815,7 @@ exports[`Locale Provider should display the text as es 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -47839,6 +47876,7 @@ exports[`Locale Provider should display the text as es 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -51483,6 +51521,7 @@ exports[`Locale Provider should display the text as es 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -51540,6 +51579,7 @@ exports[`Locale Provider should display the text as es 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -52862,6 +52902,7 @@ exports[`Locale Provider should display the text as et 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -52922,6 +52963,7 @@ exports[`Locale Provider should display the text as et 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -56566,6 +56608,7 @@ exports[`Locale Provider should display the text as et 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -56623,6 +56666,7 @@ exports[`Locale Provider should display the text as et 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -57945,6 +57989,7 @@ exports[`Locale Provider should display the text as fa 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -58005,6 +58050,7 @@ exports[`Locale Provider should display the text as fa 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -61649,6 +61695,7 @@ exports[`Locale Provider should display the text as fa 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -61706,6 +61753,7 @@ exports[`Locale Provider should display the text as fa 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -63028,6 +63076,7 @@ exports[`Locale Provider should display the text as fi 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -63088,6 +63137,7 @@ exports[`Locale Provider should display the text as fi 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -66732,6 +66782,7 @@ exports[`Locale Provider should display the text as fi 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -66789,6 +66840,7 @@ exports[`Locale Provider should display the text as fi 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -68111,6 +68163,7 @@ exports[`Locale Provider should display the text as fr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -68171,6 +68224,7 @@ exports[`Locale Provider should display the text as fr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -71815,6 +71869,7 @@ exports[`Locale Provider should display the text as fr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -71872,6 +71927,7 @@ exports[`Locale Provider should display the text as fr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -73194,6 +73250,7 @@ exports[`Locale Provider should display the text as fr 2`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -73254,6 +73311,7 @@ exports[`Locale Provider should display the text as fr 2`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -76898,6 +76956,7 @@ exports[`Locale Provider should display the text as fr 2`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -76955,6 +77014,7 @@ exports[`Locale Provider should display the text as fr 2`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -78277,6 +78337,7 @@ exports[`Locale Provider should display the text as he 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -78337,6 +78398,7 @@ exports[`Locale Provider should display the text as he 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -81981,6 +82043,7 @@ exports[`Locale Provider should display the text as he 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -82038,6 +82101,7 @@ exports[`Locale Provider should display the text as he 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -83360,6 +83424,7 @@ exports[`Locale Provider should display the text as hi 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -83420,6 +83485,7 @@ exports[`Locale Provider should display the text as hi 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -87064,6 +87130,7 @@ exports[`Locale Provider should display the text as hi 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -87121,6 +87188,7 @@ exports[`Locale Provider should display the text as hi 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -88443,6 +88511,7 @@ exports[`Locale Provider should display the text as hr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -88503,6 +88572,7 @@ exports[`Locale Provider should display the text as hr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -92147,6 +92217,7 @@ exports[`Locale Provider should display the text as hr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -92204,6 +92275,7 @@ exports[`Locale Provider should display the text as hr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -93526,6 +93598,7 @@ exports[`Locale Provider should display the text as hu 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -93586,6 +93659,7 @@ exports[`Locale Provider should display the text as hu 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -97230,6 +97304,7 @@ exports[`Locale Provider should display the text as hu 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -97287,6 +97362,7 @@ exports[`Locale Provider should display the text as hu 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -98609,6 +98685,7 @@ exports[`Locale Provider should display the text as hy 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -98669,6 +98746,7 @@ exports[`Locale Provider should display the text as hy 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -102313,6 +102391,7 @@ exports[`Locale Provider should display the text as hy 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -102370,6 +102449,7 @@ exports[`Locale Provider should display the text as hy 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -103692,6 +103772,7 @@ exports[`Locale Provider should display the text as id 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -103752,6 +103833,7 @@ exports[`Locale Provider should display the text as id 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -107396,6 +107478,7 @@ exports[`Locale Provider should display the text as id 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -107453,6 +107536,7 @@ exports[`Locale Provider should display the text as id 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -108775,6 +108859,7 @@ exports[`Locale Provider should display the text as is 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -108835,6 +108920,7 @@ exports[`Locale Provider should display the text as is 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -112479,6 +112565,7 @@ exports[`Locale Provider should display the text as is 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -112536,6 +112623,7 @@ exports[`Locale Provider should display the text as is 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -113858,6 +113946,7 @@ exports[`Locale Provider should display the text as it 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -113918,6 +114007,7 @@ exports[`Locale Provider should display the text as it 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -117562,6 +117652,7 @@ exports[`Locale Provider should display the text as it 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -117619,6 +117710,7 @@ exports[`Locale Provider should display the text as it 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -118941,6 +119033,7 @@ exports[`Locale Provider should display the text as ja 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -119001,6 +119094,7 @@ exports[`Locale Provider should display the text as ja 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -122645,6 +122739,7 @@ exports[`Locale Provider should display the text as ja 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -122702,6 +122797,7 @@ exports[`Locale Provider should display the text as ja 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -124024,6 +124120,7 @@ exports[`Locale Provider should display the text as kn 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -124084,6 +124181,7 @@ exports[`Locale Provider should display the text as kn 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -127728,6 +127826,7 @@ exports[`Locale Provider should display the text as kn 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -127785,6 +127884,7 @@ exports[`Locale Provider should display the text as kn 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -129107,6 +129207,7 @@ exports[`Locale Provider should display the text as ko 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -129167,6 +129268,7 @@ exports[`Locale Provider should display the text as ko 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -132811,6 +132913,7 @@ exports[`Locale Provider should display the text as ko 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -132868,6 +132971,7 @@ exports[`Locale Provider should display the text as ko 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -134190,6 +134294,7 @@ exports[`Locale Provider should display the text as ku-iq 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -134250,6 +134355,7 @@ exports[`Locale Provider should display the text as ku-iq 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -137894,6 +138000,7 @@ exports[`Locale Provider should display the text as ku-iq 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -137951,6 +138058,7 @@ exports[`Locale Provider should display the text as ku-iq 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -139273,6 +139381,7 @@ exports[`Locale Provider should display the text as lv 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -139333,6 +139442,7 @@ exports[`Locale Provider should display the text as lv 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -142977,6 +143087,7 @@ exports[`Locale Provider should display the text as lv 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -143034,6 +143145,7 @@ exports[`Locale Provider should display the text as lv 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -144356,6 +144468,7 @@ exports[`Locale Provider should display the text as mk 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -144416,6 +144529,7 @@ exports[`Locale Provider should display the text as mk 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -148060,6 +148174,7 @@ exports[`Locale Provider should display the text as mk 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -148117,6 +148232,7 @@ exports[`Locale Provider should display the text as mk 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -149439,6 +149555,7 @@ exports[`Locale Provider should display the text as mn-mn 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -149499,6 +149616,7 @@ exports[`Locale Provider should display the text as mn-mn 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -153143,6 +153261,7 @@ exports[`Locale Provider should display the text as mn-mn 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -153200,6 +153319,7 @@ exports[`Locale Provider should display the text as mn-mn 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -154522,6 +154642,7 @@ exports[`Locale Provider should display the text as ms-my 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -154582,6 +154703,7 @@ exports[`Locale Provider should display the text as ms-my 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -158226,6 +158348,7 @@ exports[`Locale Provider should display the text as ms-my 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -158283,6 +158406,7 @@ exports[`Locale Provider should display the text as ms-my 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -159605,6 +159729,7 @@ exports[`Locale Provider should display the text as nb 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -159665,6 +159790,7 @@ exports[`Locale Provider should display the text as nb 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -163309,6 +163435,7 @@ exports[`Locale Provider should display the text as nb 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -163366,6 +163493,7 @@ exports[`Locale Provider should display the text as nb 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -164688,6 +164816,7 @@ exports[`Locale Provider should display the text as ne-np 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -164748,6 +164877,7 @@ exports[`Locale Provider should display the text as ne-np 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -168392,6 +168522,7 @@ exports[`Locale Provider should display the text as ne-np 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -168449,6 +168580,7 @@ exports[`Locale Provider should display the text as ne-np 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -169771,6 +169903,7 @@ exports[`Locale Provider should display the text as nl 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -169831,6 +169964,7 @@ exports[`Locale Provider should display the text as nl 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -173475,6 +173609,7 @@ exports[`Locale Provider should display the text as nl 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -173532,6 +173667,7 @@ exports[`Locale Provider should display the text as nl 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -174854,6 +174990,7 @@ exports[`Locale Provider should display the text as nl-be 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -174914,6 +175051,7 @@ exports[`Locale Provider should display the text as nl-be 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -178558,6 +178696,7 @@ exports[`Locale Provider should display the text as nl-be 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -178615,6 +178754,7 @@ exports[`Locale Provider should display the text as nl-be 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -179937,6 +180077,7 @@ exports[`Locale Provider should display the text as pl 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -179997,6 +180138,7 @@ exports[`Locale Provider should display the text as pl 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -183641,6 +183783,7 @@ exports[`Locale Provider should display the text as pl 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -183698,6 +183841,7 @@ exports[`Locale Provider should display the text as pl 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -185020,6 +185164,7 @@ exports[`Locale Provider should display the text as pt 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -185080,6 +185225,7 @@ exports[`Locale Provider should display the text as pt 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -188724,6 +188870,7 @@ exports[`Locale Provider should display the text as pt 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -188781,6 +188928,7 @@ exports[`Locale Provider should display the text as pt 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -190103,6 +190251,7 @@ exports[`Locale Provider should display the text as pt-br 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -190163,6 +190312,7 @@ exports[`Locale Provider should display the text as pt-br 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -193807,6 +193957,7 @@ exports[`Locale Provider should display the text as pt-br 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -193864,6 +194015,7 @@ exports[`Locale Provider should display the text as pt-br 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -195186,6 +195338,7 @@ exports[`Locale Provider should display the text as ro 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -195246,6 +195399,7 @@ exports[`Locale Provider should display the text as ro 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -198890,6 +199044,7 @@ exports[`Locale Provider should display the text as ro 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -198947,6 +199102,7 @@ exports[`Locale Provider should display the text as ro 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -200269,6 +200425,7 @@ exports[`Locale Provider should display the text as ru 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -200329,6 +200486,7 @@ exports[`Locale Provider should display the text as ru 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -203973,6 +204131,7 @@ exports[`Locale Provider should display the text as ru 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -204030,6 +204189,7 @@ exports[`Locale Provider should display the text as ru 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -205352,6 +205512,7 @@ exports[`Locale Provider should display the text as sk 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -205412,6 +205573,7 @@ exports[`Locale Provider should display the text as sk 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -209056,6 +209218,7 @@ exports[`Locale Provider should display the text as sk 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -209113,6 +209276,7 @@ exports[`Locale Provider should display the text as sk 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -210435,6 +210599,7 @@ exports[`Locale Provider should display the text as sl 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -210495,6 +210660,7 @@ exports[`Locale Provider should display the text as sl 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -214139,6 +214305,7 @@ exports[`Locale Provider should display the text as sl 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -214196,6 +214363,7 @@ exports[`Locale Provider should display the text as sl 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -215518,6 +215686,7 @@ exports[`Locale Provider should display the text as sr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -215578,6 +215747,7 @@ exports[`Locale Provider should display the text as sr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -219222,6 +219392,7 @@ exports[`Locale Provider should display the text as sr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -219279,6 +219450,7 @@ exports[`Locale Provider should display the text as sr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -220601,6 +220773,7 @@ exports[`Locale Provider should display the text as sv 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -220661,6 +220834,7 @@ exports[`Locale Provider should display the text as sv 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -224305,6 +224479,7 @@ exports[`Locale Provider should display the text as sv 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -224362,6 +224537,7 @@ exports[`Locale Provider should display the text as sv 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -225684,6 +225860,7 @@ exports[`Locale Provider should display the text as ta 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -225744,6 +225921,7 @@ exports[`Locale Provider should display the text as ta 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -229388,6 +229566,7 @@ exports[`Locale Provider should display the text as ta 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -229445,6 +229624,7 @@ exports[`Locale Provider should display the text as ta 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -230767,6 +230947,7 @@ exports[`Locale Provider should display the text as th 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -230827,6 +231008,7 @@ exports[`Locale Provider should display the text as th 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -234471,6 +234653,7 @@ exports[`Locale Provider should display the text as th 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -234528,6 +234711,7 @@ exports[`Locale Provider should display the text as th 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -235850,6 +236034,7 @@ exports[`Locale Provider should display the text as tr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -235910,6 +236095,7 @@ exports[`Locale Provider should display the text as tr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -239554,6 +239740,7 @@ exports[`Locale Provider should display the text as tr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -239611,6 +239798,7 @@ exports[`Locale Provider should display the text as tr 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -240933,6 +241121,7 @@ exports[`Locale Provider should display the text as uk 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -240993,6 +241182,7 @@ exports[`Locale Provider should display the text as uk 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -244637,6 +244827,7 @@ exports[`Locale Provider should display the text as uk 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -244694,6 +244885,7 @@ exports[`Locale Provider should display the text as uk 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -246016,6 +246208,7 @@ exports[`Locale Provider should display the text as vi 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -246076,6 +246269,7 @@ exports[`Locale Provider should display the text as vi 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -249720,6 +249914,7 @@ exports[`Locale Provider should display the text as vi 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -249777,6 +249972,7 @@ exports[`Locale Provider should display the text as vi 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -251099,6 +251295,7 @@ exports[`Locale Provider should display the text as zh-cn 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -251159,6 +251356,7 @@ exports[`Locale Provider should display the text as zh-cn 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -254803,6 +255001,7 @@ exports[`Locale Provider should display the text as zh-cn 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -254860,6 +255059,7 @@ exports[`Locale Provider should display the text as zh-cn 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -256182,6 +256382,7 @@ exports[`Locale Provider should display the text as zh-tw 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -256242,6 +256443,7 @@ exports[`Locale Provider should display the text as zh-tw 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -259886,6 +260088,7 @@ exports[`Locale Provider should display the text as zh-tw 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" @@ -259943,6 +260146,7 @@ exports[`Locale Provider should display the text as zh-tw 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" diff --git a/components/pagination/__tests__/__snapshots__/demo.test.js.snap b/components/pagination/__tests__/__snapshots__/demo.test.js.snap index ece9c2cbaf..b733c3ff56 100644 --- a/components/pagination/__tests__/__snapshots__/demo.test.js.snap +++ b/components/pagination/__tests__/__snapshots__/demo.test.js.snap @@ -295,6 +295,7 @@ exports[`renders ./components/pagination/demo/changer.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -517,6 +518,7 @@ exports[`renders ./components/pagination/demo/changer.md correctly 1`] = ` autocomplete="off" class="ant-select-selection-search-input" disabled="" + readonly="" role="combobox" style="opacity:0" value="" @@ -1392,6 +1394,7 @@ exports[`renders ./components/pagination/demo/mini.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" diff --git a/components/select/__tests__/__snapshots__/demo.test.js.snap b/components/select/__tests__/__snapshots__/demo.test.js.snap index d3f1fa73d5..3307ad3080 100644 --- a/components/select/__tests__/__snapshots__/demo.test.js.snap +++ b/components/select/__tests__/__snapshots__/demo.test.js.snap @@ -57,6 +57,7 @@ exports[`renders ./components/select/demo/basic.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -115,6 +116,7 @@ exports[`renders ./components/select/demo/basic.md correctly 1`] = ` autocomplete="off" class="ant-select-selection-search-input" disabled="" + readonly="" role="combobox" style="opacity:0" value="" @@ -172,6 +174,7 @@ exports[`renders ./components/select/demo/basic.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -229,6 +232,7 @@ exports[`renders ./components/select/demo/basic.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -374,6 +378,7 @@ exports[`renders ./components/select/demo/big-data.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -424,6 +429,7 @@ exports[`renders ./components/select/demo/coordinate.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -481,6 +487,7 @@ exports[`renders ./components/select/demo/coordinate.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -542,6 +549,7 @@ exports[`renders ./components/select/demo/custom-dropdown-menu.md correctly 1`] aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -609,6 +617,7 @@ exports[`renders ./components/select/demo/debug.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -703,6 +712,7 @@ exports[`renders ./components/select/demo/debug.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -750,6 +760,7 @@ exports[`renders ./components/select/demo/hide-selected.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -789,6 +800,7 @@ exports[`renders ./components/select/demo/label-in-value.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -922,6 +934,7 @@ exports[`renders ./components/select/demo/multiple.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -956,6 +969,7 @@ exports[`renders ./components/select/demo/optgroup.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1053,6 +1067,7 @@ exports[`renders ./components/select/demo/option-label-prop.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1087,6 +1102,7 @@ exports[`renders ./components/select/demo/search.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1147,6 +1163,7 @@ exports[`renders ./components/select/demo/search-box.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1181,6 +1198,7 @@ exports[`renders ./components/select/demo/select-users.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1285,6 +1303,7 @@ exports[`renders ./components/select/demo/size.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1416,6 +1435,7 @@ exports[`renders ./components/select/demo/size.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1556,6 +1576,7 @@ exports[`renders ./components/select/demo/suffix.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -1614,6 +1635,7 @@ exports[`renders ./components/select/demo/suffix.md correctly 1`] = ` autocomplete="off" class="ant-select-selection-search-input" disabled="" + readonly="" role="combobox" style="opacity:0" value="" diff --git a/components/select/__tests__/__snapshots__/index.test.js.snap b/components/select/__tests__/__snapshots__/index.test.js.snap index 0d4f8db7b7..08bdc67ee5 100644 --- a/components/select/__tests__/__snapshots__/index.test.js.snap +++ b/components/select/__tests__/__snapshots__/index.test.js.snap @@ -20,6 +20,7 @@ exports[`Select Select Custom Icons should support customized icons 1`] = ` autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" diff --git a/components/table/__tests__/__snapshots__/Table.sorter.test.js.snap b/components/table/__tests__/__snapshots__/Table.sorter.test.js.snap index 5a4c7cbff6..4665564b19 100644 --- a/components/table/__tests__/__snapshots__/Table.sorter.test.js.snap +++ b/components/table/__tests__/__snapshots__/Table.sorter.test.js.snap @@ -30,7 +30,7 @@ exports[`Table.sorter renders sorter icon correctly 1`] = ` fill="currentColor" focusable="false" height="1em" - viewBox="0 0 1024 1024" + viewBox="64 64 896 896" width="1em" > ((props, ref) => return ; }); -export interface TimePickerProps extends PickerTimeProps { +export interface TimePickerProps extends Omit, 'picker'> { addon?: () => React.ReactNode; } diff --git a/components/transfer/__tests__/__snapshots__/demo.test.js.snap b/components/transfer/__tests__/__snapshots__/demo.test.js.snap index 233226f331..545e9b5dbf 100644 --- a/components/transfer/__tests__/__snapshots__/demo.test.js.snap +++ b/components/transfer/__tests__/__snapshots__/demo.test.js.snap @@ -2934,7 +2934,7 @@ exports[`renders ./components/transfer/demo/tree-transfer.md correctly 1`] = ` fill="currentColor" focusable="false" height="1em" - viewBox="0 0 1024 1024" + viewBox="64 64 896 896" width="1em" > - @@ -762,7 +762,7 @@ exports[`Transfer should support render value and label in item 1`] = ` "tag": "svg", }, "name": "right", - "theme": "outline", + "theme": "outlined", } } > @@ -784,7 +784,7 @@ exports[`Transfer should support render value and label in item 1`] = ` - + @@ -808,7 +808,7 @@ exports[`Transfer should support render value and label in item 1`] = ` type="button" > - @@ -856,7 +856,7 @@ exports[`Transfer should support render value and label in item 1`] = ` "tag": "svg", }, "name": "left", - "theme": "outline", + "theme": "outlined", } } > @@ -878,7 +878,7 @@ exports[`Transfer should support render value and label in item 1`] = ` - + diff --git a/components/transfer/__tests__/__snapshots__/search.test.js.snap b/components/transfer/__tests__/__snapshots__/search.test.js.snap index 2b971125fd..ed9fc28531 100644 --- a/components/transfer/__tests__/__snapshots__/search.test.js.snap +++ b/components/transfer/__tests__/__snapshots__/search.test.js.snap @@ -45,7 +45,7 @@ exports[`Transfer.Search should show cross icon when input value exists 1`] = ` className="undefined-action" > - @@ -93,7 +93,7 @@ exports[`Transfer.Search should show cross icon when input value exists 1`] = ` "tag": "svg", }, "name": "search", - "theme": "outline", + "theme": "outlined", } } > @@ -115,7 +115,7 @@ exports[`Transfer.Search should show cross icon when input value exists 1`] = ` - + @@ -169,7 +169,7 @@ exports[`Transfer.Search should show cross icon when input value exists 2`] = ` onClick={[Function]} > - @@ -217,7 +217,7 @@ exports[`Transfer.Search should show cross icon when input value exists 2`] = ` "tag": "svg", }, "name": "close-circle", - "theme": "fill", + "theme": "filled", } } > @@ -239,7 +239,7 @@ exports[`Transfer.Search should show cross icon when input value exists 2`] = ` - + diff --git a/components/tree-select/__tests__/__snapshots__/demo.test.js.snap b/components/tree-select/__tests__/__snapshots__/demo.test.js.snap index fa8b505050..6b5b53f7c4 100644 --- a/components/tree-select/__tests__/__snapshots__/demo.test.js.snap +++ b/components/tree-select/__tests__/__snapshots__/demo.test.js.snap @@ -19,6 +19,7 @@ exports[`renders ./components/tree-select/demo/async.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -79,6 +80,7 @@ exports[`renders ./components/tree-select/demo/basic.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -176,6 +178,7 @@ exports[`renders ./components/tree-select/demo/checkable.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -212,6 +215,7 @@ exports[`renders ./components/tree-select/demo/multiple.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -251,6 +255,7 @@ exports[`renders ./components/tree-select/demo/suffix.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" @@ -311,6 +316,7 @@ exports[`renders ./components/tree-select/demo/treeData.md correctly 1`] = ` aria-owns="undefined_list" autocomplete="off" class="ant-select-selection-search-input" + readonly="" role="combobox" style="opacity:0" value="" diff --git a/components/tree-select/__tests__/__snapshots__/index.test.js.snap b/components/tree-select/__tests__/__snapshots__/index.test.js.snap index ada183de6c..472b2857b9 100644 --- a/components/tree-select/__tests__/__snapshots__/index.test.js.snap +++ b/components/tree-select/__tests__/__snapshots__/index.test.js.snap @@ -58,6 +58,7 @@ exports[`TreeSelect TreeSelect Custom Icons should support customized icons 1`] autocomplete="off" class="ant-select-selection-search-input" id="rc_select_TEST_OR_SSR" + readonly="" role="combobox" style="opacity: 0;" value="" diff --git a/components/tree/__tests__/__snapshots__/demo.test.js.snap b/components/tree/__tests__/__snapshots__/demo.test.js.snap index fdb582113e..75ee6836bd 100644 --- a/components/tree/__tests__/__snapshots__/demo.test.js.snap +++ b/components/tree/__tests__/__snapshots__/demo.test.js.snap @@ -39,7 +39,7 @@ exports[`renders ./components/tree/demo/basic.md correctly 1`] = ` fill="currentColor" focusable="false" height="1em" - viewBox="0 0 1024 1024" + viewBox="64 64 896 896" width="1em" > !['antd.min.js', 'antd.min.css'].includes(name), }), + new BundleAnalyzerPlugin({ + analyzerMode: 'static', + openAnalyzer: false, + }), ); } });