@rescui/tab-list 0.18.5-RUI-308-Fix-select-issues-405b9fa40.12 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/_virtual/index.css.js +12 -12
- package/lib/_virtual/left-outline.js +294 -63
- package/lib/_virtual/right-outline.js +294 -63
- package/lib/index.css +79 -79
- package/lib/parts/separator.p.module.css.js +3 -3
- package/lib/parts/tab-list-context.js +3 -1
- package/lib/parts/tab-list.p.module.css.js +25 -25
- package/lib/parts/tab-separator.js +30 -6
- package/lib/parts/tab.js +191 -47
- package/lib/parts/use-indicator.js +130 -44
- package/lib/parts/use-roving-tab-index.js +51 -27
- package/lib/parts/use-scrollable-list.js +272 -131
- package/lib/tab-list.d.ts +1 -1
- package/lib/tab-list.js +377 -79
- package/package.json +12 -11
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
var styles = {
|
|
2
|
-
"icon": "
|
|
3
|
-
"sizeXS": "
|
|
4
|
-
"sizeS": "
|
|
5
|
-
"sizeM": "
|
|
6
|
-
"sizeL": "
|
|
7
|
-
"light": "
|
|
8
|
-
"dark": "
|
|
9
|
-
"allVariants": "
|
|
10
|
-
"variant16": "
|
|
11
|
-
"variant20": "
|
|
12
|
-
"variant24": "
|
|
13
|
-
"variant28": "
|
|
2
|
+
"icon": "_icon_1ohuzr2_4",
|
|
3
|
+
"sizeXS": "_sizeXS_1ohuzr2_14",
|
|
4
|
+
"sizeS": "_sizeS_1ohuzr2_18",
|
|
5
|
+
"sizeM": "_sizeM_1ohuzr2_22",
|
|
6
|
+
"sizeL": "_sizeL_1ohuzr2_26",
|
|
7
|
+
"light": "_light_1ohuzr2_30",
|
|
8
|
+
"dark": "_dark_1ohuzr2_34",
|
|
9
|
+
"allVariants": "_allVariants_1ohuzr2_48",
|
|
10
|
+
"variant16": "_variant16_1ohuzr2_53",
|
|
11
|
+
"variant20": "_variant20_1ohuzr2_54",
|
|
12
|
+
"variant24": "_variant24_1ohuzr2_55",
|
|
13
|
+
"variant28": "_variant28_1ohuzr2_58"
|
|
14
14
|
};
|
|
15
15
|
export { styles as default };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import _extends from '@babel/runtime-corejs3/helpers/esm/extends';
|
|
2
|
+
import { c } from 'react-compiler-runtime';
|
|
2
3
|
import React from 'react';
|
|
3
4
|
import PropTypes from 'prop-types';
|
|
4
5
|
import cn from 'classnames';
|
|
@@ -15,85 +16,315 @@ const Size = {
|
|
|
15
16
|
"m": "m",
|
|
16
17
|
"l": "l"
|
|
17
18
|
};
|
|
18
|
-
const LeftOutlineIcon16 = /*#__PURE__*/React.forwardRef((props, ref) =>
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
19
|
+
const LeftOutlineIcon16 = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
20
|
+
const $ = c(4);
|
|
21
|
+
let t0;
|
|
22
|
+
|
|
23
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
24
|
+
t0 = /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M9.854 11.354a.5.5 0 0 0 0-.708L7.207 8l2.647-2.646a.5.5 0 0 0-.708-.708l-3 3a.5.5 0 0 0 0 .708l3 3a.5.5 0 0 0 .708 0"
|
|
26
|
+
});
|
|
27
|
+
$[0] = t0;
|
|
28
|
+
} else {
|
|
29
|
+
t0 = $[0];
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
let t1;
|
|
33
|
+
|
|
34
|
+
if ($[1] !== props || $[2] !== ref) {
|
|
35
|
+
t1 = /*#__PURE__*/React.createElement("svg", _extends({
|
|
36
|
+
viewBox: "0 0 16 16"
|
|
37
|
+
}, props, {
|
|
38
|
+
ref: ref
|
|
39
|
+
}), t0);
|
|
40
|
+
$[1] = props;
|
|
41
|
+
$[2] = ref;
|
|
42
|
+
$[3] = t1;
|
|
43
|
+
} else {
|
|
44
|
+
t1 = $[3];
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
return t1;
|
|
48
|
+
});
|
|
25
49
|
LeftOutlineIcon16.displayName = 'LeftOutlineIcon16';
|
|
26
|
-
const LeftOutlineIcon20 = /*#__PURE__*/React.forwardRef((props, ref) =>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
50
|
+
const LeftOutlineIcon20 = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
51
|
+
const $ = c(4);
|
|
52
|
+
let t0;
|
|
53
|
+
|
|
54
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
55
|
+
t0 = /*#__PURE__*/React.createElement("path", {
|
|
56
|
+
d: "M12.53 14.53a.75.75 0 0 0 0-1.06L9.06 10l3.47-3.47a.75.75 0 0 0-1.06-1.06l-4 4a.75.75 0 0 0 0 1.06l4 4a.75.75 0 0 0 1.06 0"
|
|
57
|
+
});
|
|
58
|
+
$[0] = t0;
|
|
59
|
+
} else {
|
|
60
|
+
t0 = $[0];
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
let t1;
|
|
64
|
+
|
|
65
|
+
if ($[1] !== props || $[2] !== ref) {
|
|
66
|
+
t1 = /*#__PURE__*/React.createElement("svg", _extends({
|
|
67
|
+
viewBox: "0 0 20 20"
|
|
68
|
+
}, props, {
|
|
69
|
+
ref: ref
|
|
70
|
+
}), t0);
|
|
71
|
+
$[1] = props;
|
|
72
|
+
$[2] = ref;
|
|
73
|
+
$[3] = t1;
|
|
74
|
+
} else {
|
|
75
|
+
t1 = $[3];
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
return t1;
|
|
79
|
+
});
|
|
33
80
|
LeftOutlineIcon20.displayName = 'LeftOutlineIcon20';
|
|
34
|
-
const LeftOutlineIcon24 = /*#__PURE__*/React.forwardRef((props, ref) =>
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
81
|
+
const LeftOutlineIcon24 = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
82
|
+
const $ = c(4);
|
|
83
|
+
let t0;
|
|
84
|
+
|
|
85
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
86
|
+
t0 = /*#__PURE__*/React.createElement("path", {
|
|
87
|
+
d: "M15.707 18.707a1 1 0 0 0 0-1.414L10.414 12l5.293-5.293a1 1 0 0 0-1.414-1.414l-6 6a1 1 0 0 0 0 1.414l6 6a1 1 0 0 0 1.414 0"
|
|
88
|
+
});
|
|
89
|
+
$[0] = t0;
|
|
90
|
+
} else {
|
|
91
|
+
t0 = $[0];
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
let t1;
|
|
95
|
+
|
|
96
|
+
if ($[1] !== props || $[2] !== ref) {
|
|
97
|
+
t1 = /*#__PURE__*/React.createElement("svg", _extends({
|
|
98
|
+
viewBox: "0 0 24 24"
|
|
99
|
+
}, props, {
|
|
100
|
+
ref: ref
|
|
101
|
+
}), t0);
|
|
102
|
+
$[1] = props;
|
|
103
|
+
$[2] = ref;
|
|
104
|
+
$[3] = t1;
|
|
105
|
+
} else {
|
|
106
|
+
t1 = $[3];
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
return t1;
|
|
110
|
+
});
|
|
41
111
|
LeftOutlineIcon24.displayName = 'LeftOutlineIcon24';
|
|
42
|
-
const LeftOutlineIcon28 = /*#__PURE__*/React.forwardRef((props, ref) =>
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
112
|
+
const LeftOutlineIcon28 = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
113
|
+
const $ = c(4);
|
|
114
|
+
let t0;
|
|
115
|
+
|
|
116
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
117
|
+
t0 = /*#__PURE__*/React.createElement("path", {
|
|
118
|
+
d: "M18.207 21.707a1 1 0 0 0 0-1.414L11.914 14l6.293-6.293a1 1 0 0 0-1.414-1.414l-7 7a1 1 0 0 0 0 1.414l7 7a1 1 0 0 0 1.414 0"
|
|
119
|
+
});
|
|
120
|
+
$[0] = t0;
|
|
121
|
+
} else {
|
|
122
|
+
t0 = $[0];
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
let t1;
|
|
126
|
+
|
|
127
|
+
if ($[1] !== props || $[2] !== ref) {
|
|
128
|
+
t1 = /*#__PURE__*/React.createElement("svg", _extends({
|
|
129
|
+
viewBox: "0 0 28 28"
|
|
130
|
+
}, props, {
|
|
131
|
+
ref: ref
|
|
132
|
+
}), t0);
|
|
133
|
+
$[1] = props;
|
|
134
|
+
$[2] = ref;
|
|
135
|
+
$[3] = t1;
|
|
136
|
+
} else {
|
|
137
|
+
t1 = $[3];
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
return t1;
|
|
141
|
+
});
|
|
49
142
|
LeftOutlineIcon28.displayName = 'LeftOutlineIcon28';
|
|
50
|
-
const LeftOutlineIcon = /*#__PURE__*/React.forwardRef((
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
143
|
+
const LeftOutlineIcon = /*#__PURE__*/React.forwardRef((t0, ref) => {
|
|
144
|
+
const $ = c(34);
|
|
145
|
+
let className;
|
|
146
|
+
let props;
|
|
147
|
+
let style;
|
|
148
|
+
let t1;
|
|
149
|
+
let t2;
|
|
150
|
+
let theme;
|
|
151
|
+
|
|
152
|
+
if ($[0] !== t0) {
|
|
153
|
+
({
|
|
154
|
+
theme,
|
|
155
|
+
size: t1,
|
|
156
|
+
className,
|
|
157
|
+
style,
|
|
158
|
+
"data-render-all-sizes": t2,
|
|
159
|
+
...props
|
|
160
|
+
} = t0);
|
|
161
|
+
$[0] = t0;
|
|
162
|
+
$[1] = className;
|
|
163
|
+
$[2] = props;
|
|
164
|
+
$[3] = style;
|
|
165
|
+
$[4] = t1;
|
|
166
|
+
$[5] = t2;
|
|
167
|
+
$[6] = theme;
|
|
168
|
+
} else {
|
|
169
|
+
className = $[1];
|
|
170
|
+
props = $[2];
|
|
171
|
+
style = $[3];
|
|
172
|
+
t1 = $[4];
|
|
173
|
+
t2 = $[5];
|
|
174
|
+
theme = $[6];
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
const sizeFromProps = t1 === undefined ? "m" : t1;
|
|
178
|
+
const renderAllSizes = t2 === undefined ? false : t2;
|
|
59
179
|
const size = sizeFromProps in Size ? sizeFromProps : "m";
|
|
60
|
-
const
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
180
|
+
const t3 = styles[theme];
|
|
181
|
+
const t4 = sizeStyles[size];
|
|
182
|
+
const t5 = renderAllSizes && styles.allVariants;
|
|
183
|
+
let t6;
|
|
184
|
+
|
|
185
|
+
if ($[7] !== className || $[8] !== t3 || $[9] !== t4 || $[10] !== t5) {
|
|
186
|
+
t6 = cn(styles.icon, t3, t4, t5, className);
|
|
187
|
+
$[7] = className;
|
|
188
|
+
$[8] = t3;
|
|
189
|
+
$[9] = t4;
|
|
190
|
+
$[10] = t5;
|
|
191
|
+
$[11] = t6;
|
|
192
|
+
} else {
|
|
193
|
+
t6 = $[11];
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
let t7;
|
|
197
|
+
|
|
198
|
+
if ($[12] !== renderAllSizes || $[13] !== style) {
|
|
199
|
+
t7 = renderAllSizes ? {
|
|
200
|
+
"--rs-icon-ar-width": 28,
|
|
201
|
+
"--rs-icon-ar-height": 28,
|
|
65
202
|
...style
|
|
66
|
-
} : style
|
|
67
|
-
|
|
68
|
-
|
|
203
|
+
} : style;
|
|
204
|
+
$[12] = renderAllSizes;
|
|
205
|
+
$[13] = style;
|
|
206
|
+
$[14] = t7;
|
|
207
|
+
} else {
|
|
208
|
+
t7 = $[14];
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
let t8;
|
|
212
|
+
|
|
213
|
+
if ($[15] !== props || $[16] !== ref || $[17] !== t6 || $[18] !== t7) {
|
|
214
|
+
t8 = { ...props,
|
|
215
|
+
className: t6,
|
|
216
|
+
style: t7,
|
|
217
|
+
ref
|
|
218
|
+
};
|
|
219
|
+
$[15] = props;
|
|
220
|
+
$[16] = ref;
|
|
221
|
+
$[17] = t6;
|
|
222
|
+
$[18] = t7;
|
|
223
|
+
$[19] = t8;
|
|
224
|
+
} else {
|
|
225
|
+
t8 = $[19];
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
const mainProps = t8;
|
|
69
229
|
|
|
70
230
|
if (renderAllSizes) {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
231
|
+
let t10;
|
|
232
|
+
let t11;
|
|
233
|
+
let t12;
|
|
234
|
+
let t9;
|
|
235
|
+
|
|
236
|
+
if ($[20] === Symbol.for("react.memo_cache_sentinel")) {
|
|
237
|
+
t9 = /*#__PURE__*/React.createElement(LeftOutlineIcon16, {
|
|
238
|
+
className: styles.variant16
|
|
239
|
+
});
|
|
240
|
+
t10 = /*#__PURE__*/React.createElement(LeftOutlineIcon20, {
|
|
241
|
+
className: styles.variant20
|
|
242
|
+
});
|
|
243
|
+
t11 = /*#__PURE__*/React.createElement(LeftOutlineIcon24, {
|
|
244
|
+
className: styles.variant24
|
|
245
|
+
});
|
|
246
|
+
t12 = /*#__PURE__*/React.createElement(LeftOutlineIcon28, {
|
|
247
|
+
className: styles.variant28
|
|
248
|
+
});
|
|
249
|
+
$[20] = t10;
|
|
250
|
+
$[21] = t11;
|
|
251
|
+
$[22] = t12;
|
|
252
|
+
$[23] = t9;
|
|
253
|
+
} else {
|
|
254
|
+
t10 = $[20];
|
|
255
|
+
t11 = $[21];
|
|
256
|
+
t12 = $[22];
|
|
257
|
+
t9 = $[23];
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
let t13;
|
|
261
|
+
|
|
262
|
+
if ($[24] !== mainProps) {
|
|
263
|
+
t13 = /*#__PURE__*/React.createElement("svg", _extends({
|
|
264
|
+
viewBox: "0 0 28 28"
|
|
265
|
+
}, mainProps), t9, t10, t11, t12);
|
|
266
|
+
$[24] = mainProps;
|
|
267
|
+
$[25] = t13;
|
|
268
|
+
} else {
|
|
269
|
+
t13 = $[25];
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
return t13;
|
|
82
273
|
}
|
|
83
274
|
|
|
84
|
-
if (size === Size
|
|
85
|
-
|
|
275
|
+
if (size === Size.xs) {
|
|
276
|
+
let t9;
|
|
277
|
+
|
|
278
|
+
if ($[26] !== mainProps) {
|
|
279
|
+
t9 = /*#__PURE__*/React.createElement(LeftOutlineIcon16, mainProps);
|
|
280
|
+
$[26] = mainProps;
|
|
281
|
+
$[27] = t9;
|
|
282
|
+
} else {
|
|
283
|
+
t9 = $[27];
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
return t9;
|
|
86
287
|
}
|
|
87
288
|
|
|
88
|
-
if (size === Size
|
|
89
|
-
|
|
289
|
+
if (size === Size.s) {
|
|
290
|
+
let t9;
|
|
291
|
+
|
|
292
|
+
if ($[28] !== mainProps) {
|
|
293
|
+
t9 = /*#__PURE__*/React.createElement(LeftOutlineIcon20, mainProps);
|
|
294
|
+
$[28] = mainProps;
|
|
295
|
+
$[29] = t9;
|
|
296
|
+
} else {
|
|
297
|
+
t9 = $[29];
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
return t9;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
if (size === Size.m) {
|
|
304
|
+
let t9;
|
|
305
|
+
|
|
306
|
+
if ($[30] !== mainProps) {
|
|
307
|
+
t9 = /*#__PURE__*/React.createElement(LeftOutlineIcon24, mainProps);
|
|
308
|
+
$[30] = mainProps;
|
|
309
|
+
$[31] = t9;
|
|
310
|
+
} else {
|
|
311
|
+
t9 = $[31];
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
return t9;
|
|
90
315
|
}
|
|
91
316
|
|
|
92
|
-
|
|
93
|
-
|
|
317
|
+
let t9;
|
|
318
|
+
|
|
319
|
+
if ($[32] !== mainProps) {
|
|
320
|
+
t9 = /*#__PURE__*/React.createElement(LeftOutlineIcon28, mainProps);
|
|
321
|
+
$[32] = mainProps;
|
|
322
|
+
$[33] = t9;
|
|
323
|
+
} else {
|
|
324
|
+
t9 = $[33];
|
|
94
325
|
}
|
|
95
326
|
|
|
96
|
-
return
|
|
327
|
+
return t9;
|
|
97
328
|
});
|
|
98
329
|
LeftOutlineIcon.displayName = 'LeftOutlineIcon';
|
|
99
330
|
LeftOutlineIcon.propTypes = {
|