@@ -16,32 +16,32 @@ exports[`Tabs.Basic Normal 1`] = `
16
16
style = " transform: translate(0px, 0px);"
17
17
>
18
18
<button
19
- aria-controls = " rc-tabs-0 -panel-light"
19
+ aria-controls = " rc-tabs-test -panel-light"
20
20
aria-selected = " false"
21
21
class = " rc-tabs-tab"
22
- id = " rc-tabs-0 -tab-light"
22
+ id = " rc-tabs-test -tab-light"
23
23
role = " tab"
24
24
tabindex = " 0"
25
25
type = " button"
26
26
>
27
27
light
28
28
</button >
29
29
<button
30
- aria-controls = " rc-tabs-0 -panel-bamboo"
30
+ aria-controls = " rc-tabs-test -panel-bamboo"
31
31
aria-selected = " true"
32
32
class = " rc-tabs-tab rc-tabs-tab-active"
33
- id = " rc-tabs-0 -tab-bamboo"
33
+ id = " rc-tabs-test -tab-bamboo"
34
34
role = " tab"
35
35
tabindex = " 0"
36
36
type = " button"
37
37
>
38
38
bamboo
39
39
</button >
40
40
<button
41
- aria-controls = " rc-tabs-0 -panel-cute"
41
+ aria-controls = " rc-tabs-test -panel-cute"
42
42
aria-selected = " false"
43
43
class = " rc-tabs-tab"
44
- id = " rc-tabs-0 -tab-cute"
44
+ id = " rc-tabs-test -tab-cute"
45
45
role = " tab"
46
46
tabindex = " 0"
47
47
type = " button"
@@ -57,12 +57,12 @@ exports[`Tabs.Basic Normal 1`] = `
57
57
class = " rc-tabs-nav-operations rc-tabs-nav-operations-hidden"
58
58
>
59
59
<button
60
- aria-controls = " rc-tabs-0 -more-popup"
60
+ aria-controls = " rc-tabs-test -more-popup"
61
61
aria-expanded = " false"
62
62
aria-haspopup = " listbox"
63
63
aria-hidden = " true"
64
64
class = " rc-tabs-nav-more"
65
- id = " rc-tabs-0 -more"
65
+ id = " rc-tabs-test -more"
66
66
style = " visibility: hidden; order: 1;"
67
67
tabindex = " -1"
68
68
type = " button"
@@ -79,28 +79,28 @@ exports[`Tabs.Basic Normal 1`] = `
79
79
>
80
80
<div
81
81
aria-hidden = " true"
82
- aria-labelledby = " rc-tabs-0 -tab-light"
82
+ aria-labelledby = " rc-tabs-test -tab-light"
83
83
class = " rc-tabs-tabpane"
84
- id = " rc-tabs-0 -panel-light"
84
+ id = " rc-tabs-test -panel-light"
85
85
role = " tabpanel"
86
86
style = " display: none;"
87
87
tabindex = " -1"
88
88
/>
89
89
<div
90
90
aria-hidden = " false"
91
- aria-labelledby = " rc-tabs-0 -tab-bamboo"
91
+ aria-labelledby = " rc-tabs-test -tab-bamboo"
92
92
class = " rc-tabs-tabpane rc-tabs-tabpane-active"
93
- id = " rc-tabs-0 -panel-bamboo"
93
+ id = " rc-tabs-test -panel-bamboo"
94
94
role = " tabpanel"
95
95
tabindex = " 0"
96
96
>
97
97
Bamboo
98
98
</div >
99
99
<div
100
100
aria-hidden = " true"
101
- aria-labelledby = " rc-tabs-0 -tab-cute"
101
+ aria-labelledby = " rc-tabs-test -tab-cute"
102
102
class = " rc-tabs-tabpane"
103
- id = " rc-tabs-0 -panel-cute"
103
+ id = " rc-tabs-test -panel-cute"
104
104
role = " tabpanel"
105
105
style = " display: none;"
106
106
tabindex = " -1"
@@ -109,3 +109,73 @@ exports[`Tabs.Basic Normal 1`] = `
109
109
</div >
110
110
</div >
111
111
` ;
112
+
113
+ exports [` Tabs.Basic Skip invalidate children 1` ] = `
114
+ <div
115
+ class = " rc-tabs rc-tabs-top"
116
+ >
117
+ <div
118
+ class = " rc-tabs-nav"
119
+ role = " tablist"
120
+ >
121
+ <div
122
+ class = " rc-tabs-nav-wrap"
123
+ >
124
+ <div
125
+ class = " rc-tabs-nav-list"
126
+ style = " transform: translate(0px, 0px);"
127
+ >
128
+ <button
129
+ aria-controls = " rc-tabs-test-panel-light"
130
+ aria-selected = " true"
131
+ class = " rc-tabs-tab rc-tabs-tab-active"
132
+ id = " rc-tabs-test-tab-light"
133
+ role = " tab"
134
+ tabindex = " 0"
135
+ type = " button"
136
+ >
137
+ light
138
+ </button >
139
+ <div
140
+ class = " rc-tabs-ink-bar rc-tabs-ink-bar-animated"
141
+ />
142
+ </div >
143
+ </div >
144
+ <div
145
+ class = " rc-tabs-nav-operations rc-tabs-nav-operations-hidden"
146
+ >
147
+ <button
148
+ aria-controls = " rc-tabs-test-more-popup"
149
+ aria-expanded = " false"
150
+ aria-haspopup = " listbox"
151
+ aria-hidden = " true"
152
+ class = " rc-tabs-nav-more"
153
+ id = " rc-tabs-test-more"
154
+ style = " visibility: hidden; order: 1;"
155
+ tabindex = " -1"
156
+ type = " button"
157
+ >
158
+ More
159
+ </button >
160
+ </div >
161
+ </div >
162
+ <div
163
+ class = " rc-tabs-content-holder"
164
+ >
165
+ <div
166
+ class = " rc-tabs-content rc-tabs-content-top"
167
+ >
168
+ <div
169
+ aria-hidden = " false"
170
+ aria-labelledby = " rc-tabs-test-tab-light"
171
+ class = " rc-tabs-tabpane rc-tabs-tabpane-active"
172
+ id = " rc-tabs-test-panel-light"
173
+ role = " tabpanel"
174
+ tabindex = " 0"
175
+ >
176
+ Light
177
+ </div >
178
+ </div >
179
+ </div >
180
+ </div >
181
+ ` ;
0 commit comments