carbon-react 106.2.2 → 106.3.2
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/esm/__internal__/input/input-presentation.component.js +13 -0
- package/esm/__internal__/input/input.component.js +294 -0
- package/esm/__internal__/input-behaviour/input-behaviour.component.js +4 -0
- package/esm/__internal__/input-behaviour/input-group-behaviour.component.js +5 -0
- package/esm/__internal__/validation-message/validation-message.component.js +5 -0
- package/esm/__internal__/validations/validation-icon.component.js +41 -1
- package/esm/components/alert/alert.component.js +38 -252
- package/esm/components/alert/index.d.ts +1 -0
- package/esm/components/badge/badge.component.js +20 -60
- package/esm/components/button/button.component.js +760 -3310
- package/esm/components/carbon-provider/carbon-provider.component.js +48 -106
- package/esm/components/date/__internal__/utils.js +1 -1
- package/esm/components/date/date.component.js +3 -1
- package/esm/components/heading/heading.style.d.ts +2 -2
- package/esm/components/hr/hr.component.js +171 -1305
- package/esm/components/hr/index.d.ts +1 -0
- package/esm/components/inline-inputs/inline-inputs.component.js +35 -90
- package/esm/components/link/index.d.ts +1 -0
- package/esm/components/link/link.component.js +123 -1228
- package/esm/components/navigation-bar/index.d.ts +1 -0
- package/esm/components/navigation-bar/navigation-bar.component.js +1018 -10761
- package/esm/components/pager/pager.style.d.ts +1 -1
- package/esm/components/pod/pod.style.d.ts +1 -1
- package/esm/components/progress-tracker/progress-tracker.component.d.ts +4 -1
- package/esm/components/progress-tracker/progress-tracker.component.js +25 -2
- package/esm/components/progress-tracker/progress-tracker.config.d.ts +0 -1
- package/esm/components/progress-tracker/progress-tracker.config.js +1 -1
- package/esm/components/progress-tracker/progress-tracker.d.ts +5 -3
- package/esm/components/progress-tracker/progress-tracker.style.js +9 -7
- package/esm/components/radio-button/radio-button-svg.component.js +16 -29
- package/esm/components/text-editor/__internal__/editor-link/editor-link.style.d.ts +1 -1
- package/esm/components/tooltip/tooltip.component.js +85 -254
- package/esm/components/vertical-divider/index.d.ts +1 -0
- package/esm/components/vertical-divider/vertical-divider.component.d.ts +2 -2
- package/esm/components/vertical-divider/vertical-divider.component.js +328 -1406
- package/esm/components/vertical-divider/vertical-divider.style.d.ts +3 -3
- package/lib/__internal__/input/input-presentation.component.js +16 -0
- package/lib/__internal__/input/input.component.js +295 -0
- package/lib/__internal__/input-behaviour/input-behaviour.component.js +6 -1
- package/lib/__internal__/input-behaviour/input-group-behaviour.component.js +7 -1
- package/lib/__internal__/validation-message/validation-message.component.js +6 -0
- package/lib/__internal__/validations/validation-icon.component.js +39 -0
- package/lib/components/alert/alert.component.js +42 -143
- package/lib/components/alert/index.d.ts +1 -0
- package/lib/components/badge/badge.component.js +24 -50
- package/lib/components/button/button.component.js +768 -3378
- package/lib/components/carbon-provider/carbon-provider.component.js +54 -110
- package/lib/components/date/__internal__/utils.js +1 -1
- package/lib/components/date/date.component.js +3 -1
- package/lib/components/heading/heading.style.d.ts +2 -2
- package/lib/components/hr/hr.component.js +175 -676
- package/lib/components/hr/index.d.ts +1 -0
- package/lib/components/inline-inputs/inline-inputs.component.js +43 -137
- package/lib/components/link/index.d.ts +1 -0
- package/lib/components/link/link.component.js +142 -746
- package/lib/components/navigation-bar/index.d.ts +1 -0
- package/lib/components/navigation-bar/navigation-bar.component.js +1022 -5426
- package/lib/components/pager/pager.style.d.ts +1 -1
- package/lib/components/pod/pod.style.d.ts +1 -1
- package/lib/components/progress-tracker/progress-tracker.component.d.ts +4 -1
- package/lib/components/progress-tracker/progress-tracker.component.js +30 -2
- package/lib/components/progress-tracker/progress-tracker.config.d.ts +0 -1
- package/lib/components/progress-tracker/progress-tracker.config.js +3 -3
- package/lib/components/progress-tracker/progress-tracker.d.ts +5 -3
- package/lib/components/progress-tracker/progress-tracker.style.js +8 -6
- package/lib/components/radio-button/radio-button-svg.component.js +20 -38
- package/lib/components/text-editor/__internal__/editor-link/editor-link.style.d.ts +1 -1
- package/lib/components/tooltip/tooltip.component.js +98 -215
- package/lib/components/vertical-divider/index.d.ts +1 -0
- package/lib/components/vertical-divider/vertical-divider.component.d.ts +2 -2
- package/lib/components/vertical-divider/vertical-divider.component.js +334 -1457
- package/lib/components/vertical-divider/vertical-divider.style.d.ts +3 -3
- package/package.json +4 -3
|
@@ -1,19 +1,4 @@
|
|
|
1
|
-
function _extends() {
|
|
2
|
-
_extends =
|
|
3
|
-
Object.assign ||
|
|
4
|
-
function (target) {
|
|
5
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
6
|
-
var source = arguments[i];
|
|
7
|
-
for (var key in source) {
|
|
8
|
-
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
9
|
-
target[key] = source[key];
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
return target;
|
|
14
|
-
};
|
|
15
|
-
return _extends.apply(this, arguments);
|
|
16
|
-
}
|
|
1
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
17
2
|
|
|
18
3
|
import React, { useContext } from "react";
|
|
19
4
|
import PropTypes from "prop-types";
|
|
@@ -27,1397 +12,334 @@ const VerticalDivider = ({
|
|
|
27
12
|
tint = 80,
|
|
28
13
|
...props
|
|
29
14
|
}) => {
|
|
30
|
-
const {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
),
|
|
46
|
-
/*#__PURE__*/ React.createElement(StyledDivider, {
|
|
47
|
-
tint: tint,
|
|
48
|
-
})
|
|
49
|
-
);
|
|
15
|
+
const {
|
|
16
|
+
inMenu
|
|
17
|
+
} = useContext(MenuContext);
|
|
18
|
+
return /*#__PURE__*/React.createElement(StyledVerticalWrapper, _extends({
|
|
19
|
+
"data-component": "vertical-divider",
|
|
20
|
+
p: props.p || 3,
|
|
21
|
+
height: h || height,
|
|
22
|
+
displayInline: displayInline
|
|
23
|
+
}, props, {
|
|
24
|
+
as: inMenu ? "li" : "div",
|
|
25
|
+
"aria-hidden": !!inMenu
|
|
26
|
+
}), /*#__PURE__*/React.createElement(StyledDivider, {
|
|
27
|
+
tint: tint
|
|
28
|
+
}));
|
|
50
29
|
};
|
|
51
30
|
|
|
52
31
|
VerticalDivider.propTypes = {
|
|
53
|
-
displayInline: PropTypes.bool,
|
|
54
|
-
h: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
55
|
-
height: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
PropTypes.
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
PropTypes.
|
|
83
|
-
|
|
84
|
-
PropTypes.
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
]),
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
PropTypes.
|
|
129
|
-
PropTypes.
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
PropTypes.
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
PropTypes.
|
|
173
|
-
PropTypes.
|
|
174
|
-
PropTypes.
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
PropTypes.string,
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
PropTypes.
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
PropTypes.
|
|
218
|
-
PropTypes.
|
|
219
|
-
PropTypes.
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
PropTypes.string,
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
PropTypes.
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
PropTypes.
|
|
263
|
-
PropTypes.
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
PropTypes.
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
PropTypes.
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
PropTypes.
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
PropTypes.
|
|
325
|
-
]),
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
PropTypes.
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
* Returns the primitive value of the specified object.
|
|
366
|
-
*/
|
|
367
|
-
valueOf: PropTypes.func.isRequired,
|
|
368
|
-
}),
|
|
369
|
-
PropTypes.string,
|
|
370
|
-
]),
|
|
371
|
-
/**
|
|
372
|
-
* Margin on top and bottom
|
|
373
|
-
*/
|
|
374
|
-
marginY: PropTypes.oneOfType([
|
|
375
|
-
PropTypes.arrayOf(
|
|
376
|
-
PropTypes.oneOfType([
|
|
377
|
-
PropTypes.oneOf([null]),
|
|
378
|
-
PropTypes.number,
|
|
379
|
-
PropTypes.shape({
|
|
380
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
381
|
-
/**
|
|
382
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
383
|
-
*/
|
|
384
|
-
description: PropTypes.string,
|
|
385
|
-
/**
|
|
386
|
-
* Returns a string representation of an object.
|
|
387
|
-
*/
|
|
388
|
-
toString: PropTypes.func.isRequired,
|
|
389
|
-
/**
|
|
390
|
-
* Returns the primitive value of the specified object.
|
|
391
|
-
*/
|
|
392
|
-
valueOf: PropTypes.func.isRequired,
|
|
393
|
-
}),
|
|
394
|
-
PropTypes.string,
|
|
395
|
-
])
|
|
396
|
-
),
|
|
397
|
-
PropTypes.number,
|
|
398
|
-
PropTypes.object,
|
|
399
|
-
PropTypes.shape({
|
|
400
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
401
|
-
/**
|
|
402
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
403
|
-
*/
|
|
404
|
-
description: PropTypes.string,
|
|
405
|
-
/**
|
|
406
|
-
* Returns a string representation of an object.
|
|
407
|
-
*/
|
|
408
|
-
toString: PropTypes.func.isRequired,
|
|
409
|
-
/**
|
|
410
|
-
* Returns the primitive value of the specified object.
|
|
411
|
-
*/
|
|
412
|
-
valueOf: PropTypes.func.isRequired,
|
|
413
|
-
}),
|
|
414
|
-
PropTypes.string,
|
|
415
|
-
]),
|
|
416
|
-
/**
|
|
417
|
-
* Margin on bottom
|
|
418
|
-
*/
|
|
419
|
-
mb: PropTypes.oneOfType([
|
|
420
|
-
PropTypes.arrayOf(
|
|
421
|
-
PropTypes.oneOfType([
|
|
422
|
-
PropTypes.oneOf([null]),
|
|
423
|
-
PropTypes.number,
|
|
424
|
-
PropTypes.shape({
|
|
425
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
426
|
-
/**
|
|
427
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
428
|
-
*/
|
|
429
|
-
description: PropTypes.string,
|
|
430
|
-
/**
|
|
431
|
-
* Returns a string representation of an object.
|
|
432
|
-
*/
|
|
433
|
-
toString: PropTypes.func.isRequired,
|
|
434
|
-
/**
|
|
435
|
-
* Returns the primitive value of the specified object.
|
|
436
|
-
*/
|
|
437
|
-
valueOf: PropTypes.func.isRequired,
|
|
438
|
-
}),
|
|
439
|
-
PropTypes.string,
|
|
440
|
-
])
|
|
441
|
-
),
|
|
442
|
-
PropTypes.number,
|
|
443
|
-
PropTypes.object,
|
|
444
|
-
PropTypes.shape({
|
|
445
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
446
|
-
/**
|
|
447
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
448
|
-
*/
|
|
449
|
-
description: PropTypes.string,
|
|
450
|
-
/**
|
|
451
|
-
* Returns a string representation of an object.
|
|
452
|
-
*/
|
|
453
|
-
toString: PropTypes.func.isRequired,
|
|
454
|
-
/**
|
|
455
|
-
* Returns the primitive value of the specified object.
|
|
456
|
-
*/
|
|
457
|
-
valueOf: PropTypes.func.isRequired,
|
|
458
|
-
}),
|
|
459
|
-
PropTypes.string,
|
|
460
|
-
]),
|
|
461
|
-
/**
|
|
462
|
-
* Margin on left
|
|
463
|
-
*/
|
|
464
|
-
ml: PropTypes.oneOfType([
|
|
465
|
-
PropTypes.arrayOf(
|
|
466
|
-
PropTypes.oneOfType([
|
|
467
|
-
PropTypes.oneOf([null]),
|
|
468
|
-
PropTypes.number,
|
|
469
|
-
PropTypes.shape({
|
|
470
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
471
|
-
/**
|
|
472
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
473
|
-
*/
|
|
474
|
-
description: PropTypes.string,
|
|
475
|
-
/**
|
|
476
|
-
* Returns a string representation of an object.
|
|
477
|
-
*/
|
|
478
|
-
toString: PropTypes.func.isRequired,
|
|
479
|
-
/**
|
|
480
|
-
* Returns the primitive value of the specified object.
|
|
481
|
-
*/
|
|
482
|
-
valueOf: PropTypes.func.isRequired,
|
|
483
|
-
}),
|
|
484
|
-
PropTypes.string,
|
|
485
|
-
])
|
|
486
|
-
),
|
|
487
|
-
PropTypes.number,
|
|
488
|
-
PropTypes.object,
|
|
489
|
-
PropTypes.shape({
|
|
490
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
491
|
-
/**
|
|
492
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
493
|
-
*/
|
|
494
|
-
description: PropTypes.string,
|
|
495
|
-
/**
|
|
496
|
-
* Returns a string representation of an object.
|
|
497
|
-
*/
|
|
498
|
-
toString: PropTypes.func.isRequired,
|
|
499
|
-
/**
|
|
500
|
-
* Returns the primitive value of the specified object.
|
|
501
|
-
*/
|
|
502
|
-
valueOf: PropTypes.func.isRequired,
|
|
503
|
-
}),
|
|
504
|
-
PropTypes.string,
|
|
505
|
-
]),
|
|
506
|
-
/**
|
|
507
|
-
* Margin on right
|
|
508
|
-
*/
|
|
509
|
-
mr: PropTypes.oneOfType([
|
|
510
|
-
PropTypes.arrayOf(
|
|
511
|
-
PropTypes.oneOfType([
|
|
512
|
-
PropTypes.oneOf([null]),
|
|
513
|
-
PropTypes.number,
|
|
514
|
-
PropTypes.shape({
|
|
515
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
516
|
-
/**
|
|
517
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
518
|
-
*/
|
|
519
|
-
description: PropTypes.string,
|
|
520
|
-
/**
|
|
521
|
-
* Returns a string representation of an object.
|
|
522
|
-
*/
|
|
523
|
-
toString: PropTypes.func.isRequired,
|
|
524
|
-
/**
|
|
525
|
-
* Returns the primitive value of the specified object.
|
|
526
|
-
*/
|
|
527
|
-
valueOf: PropTypes.func.isRequired,
|
|
528
|
-
}),
|
|
529
|
-
PropTypes.string,
|
|
530
|
-
])
|
|
531
|
-
),
|
|
532
|
-
PropTypes.number,
|
|
533
|
-
PropTypes.object,
|
|
534
|
-
PropTypes.shape({
|
|
535
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
536
|
-
/**
|
|
537
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
538
|
-
*/
|
|
539
|
-
description: PropTypes.string,
|
|
540
|
-
/**
|
|
541
|
-
* Returns a string representation of an object.
|
|
542
|
-
*/
|
|
543
|
-
toString: PropTypes.func.isRequired,
|
|
544
|
-
/**
|
|
545
|
-
* Returns the primitive value of the specified object.
|
|
546
|
-
*/
|
|
547
|
-
valueOf: PropTypes.func.isRequired,
|
|
548
|
-
}),
|
|
549
|
-
PropTypes.string,
|
|
550
|
-
]),
|
|
551
|
-
/**
|
|
552
|
-
* Margin on top
|
|
553
|
-
*/
|
|
554
|
-
mt: PropTypes.oneOfType([
|
|
555
|
-
PropTypes.arrayOf(
|
|
556
|
-
PropTypes.oneOfType([
|
|
557
|
-
PropTypes.oneOf([null]),
|
|
558
|
-
PropTypes.number,
|
|
559
|
-
PropTypes.shape({
|
|
560
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
561
|
-
/**
|
|
562
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
563
|
-
*/
|
|
564
|
-
description: PropTypes.string,
|
|
565
|
-
/**
|
|
566
|
-
* Returns a string representation of an object.
|
|
567
|
-
*/
|
|
568
|
-
toString: PropTypes.func.isRequired,
|
|
569
|
-
/**
|
|
570
|
-
* Returns the primitive value of the specified object.
|
|
571
|
-
*/
|
|
572
|
-
valueOf: PropTypes.func.isRequired,
|
|
573
|
-
}),
|
|
574
|
-
PropTypes.string,
|
|
575
|
-
])
|
|
576
|
-
),
|
|
577
|
-
PropTypes.number,
|
|
578
|
-
PropTypes.object,
|
|
579
|
-
PropTypes.shape({
|
|
580
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
581
|
-
/**
|
|
582
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
583
|
-
*/
|
|
584
|
-
description: PropTypes.string,
|
|
585
|
-
/**
|
|
586
|
-
* Returns a string representation of an object.
|
|
587
|
-
*/
|
|
588
|
-
toString: PropTypes.func.isRequired,
|
|
589
|
-
/**
|
|
590
|
-
* Returns the primitive value of the specified object.
|
|
591
|
-
*/
|
|
592
|
-
valueOf: PropTypes.func.isRequired,
|
|
593
|
-
}),
|
|
594
|
-
PropTypes.string,
|
|
595
|
-
]),
|
|
596
|
-
/**
|
|
597
|
-
* Margin on left and right
|
|
598
|
-
*/
|
|
599
|
-
mx: PropTypes.oneOfType([
|
|
600
|
-
PropTypes.arrayOf(
|
|
601
|
-
PropTypes.oneOfType([
|
|
602
|
-
PropTypes.oneOf([null]),
|
|
603
|
-
PropTypes.number,
|
|
604
|
-
PropTypes.shape({
|
|
605
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
606
|
-
/**
|
|
607
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
608
|
-
*/
|
|
609
|
-
description: PropTypes.string,
|
|
610
|
-
/**
|
|
611
|
-
* Returns a string representation of an object.
|
|
612
|
-
*/
|
|
613
|
-
toString: PropTypes.func.isRequired,
|
|
614
|
-
/**
|
|
615
|
-
* Returns the primitive value of the specified object.
|
|
616
|
-
*/
|
|
617
|
-
valueOf: PropTypes.func.isRequired,
|
|
618
|
-
}),
|
|
619
|
-
PropTypes.string,
|
|
620
|
-
])
|
|
621
|
-
),
|
|
622
|
-
PropTypes.number,
|
|
623
|
-
PropTypes.object,
|
|
624
|
-
PropTypes.shape({
|
|
625
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
626
|
-
/**
|
|
627
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
628
|
-
*/
|
|
629
|
-
description: PropTypes.string,
|
|
630
|
-
/**
|
|
631
|
-
* Returns a string representation of an object.
|
|
632
|
-
*/
|
|
633
|
-
toString: PropTypes.func.isRequired,
|
|
634
|
-
/**
|
|
635
|
-
* Returns the primitive value of the specified object.
|
|
636
|
-
*/
|
|
637
|
-
valueOf: PropTypes.func.isRequired,
|
|
638
|
-
}),
|
|
639
|
-
PropTypes.string,
|
|
640
|
-
]),
|
|
641
|
-
/**
|
|
642
|
-
* Margin on top and bottom
|
|
643
|
-
*/
|
|
644
|
-
my: PropTypes.oneOfType([
|
|
645
|
-
PropTypes.arrayOf(
|
|
646
|
-
PropTypes.oneOfType([
|
|
647
|
-
PropTypes.oneOf([null]),
|
|
648
|
-
PropTypes.number,
|
|
649
|
-
PropTypes.shape({
|
|
650
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
651
|
-
/**
|
|
652
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
653
|
-
*/
|
|
654
|
-
description: PropTypes.string,
|
|
655
|
-
/**
|
|
656
|
-
* Returns a string representation of an object.
|
|
657
|
-
*/
|
|
658
|
-
toString: PropTypes.func.isRequired,
|
|
659
|
-
/**
|
|
660
|
-
* Returns the primitive value of the specified object.
|
|
661
|
-
*/
|
|
662
|
-
valueOf: PropTypes.func.isRequired,
|
|
663
|
-
}),
|
|
664
|
-
PropTypes.string,
|
|
665
|
-
])
|
|
666
|
-
),
|
|
667
|
-
PropTypes.number,
|
|
668
|
-
PropTypes.object,
|
|
669
|
-
PropTypes.shape({
|
|
670
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
671
|
-
/**
|
|
672
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
673
|
-
*/
|
|
674
|
-
description: PropTypes.string,
|
|
675
|
-
/**
|
|
676
|
-
* Returns a string representation of an object.
|
|
677
|
-
*/
|
|
678
|
-
toString: PropTypes.func.isRequired,
|
|
679
|
-
/**
|
|
680
|
-
* Returns the primitive value of the specified object.
|
|
681
|
-
*/
|
|
682
|
-
valueOf: PropTypes.func.isRequired,
|
|
683
|
-
}),
|
|
684
|
-
PropTypes.string,
|
|
685
|
-
]),
|
|
686
|
-
/**
|
|
687
|
-
* Padding on top, left, bottom and right
|
|
688
|
-
*/
|
|
689
|
-
p: PropTypes.oneOfType([
|
|
690
|
-
PropTypes.arrayOf(
|
|
691
|
-
PropTypes.oneOfType([
|
|
692
|
-
PropTypes.oneOf([null]),
|
|
693
|
-
PropTypes.number,
|
|
694
|
-
PropTypes.shape({
|
|
695
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
696
|
-
/**
|
|
697
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
698
|
-
*/
|
|
699
|
-
description: PropTypes.string,
|
|
700
|
-
/**
|
|
701
|
-
* Returns a string representation of an object.
|
|
702
|
-
*/
|
|
703
|
-
toString: PropTypes.func.isRequired,
|
|
704
|
-
/**
|
|
705
|
-
* Returns the primitive value of the specified object.
|
|
706
|
-
*/
|
|
707
|
-
valueOf: PropTypes.func.isRequired,
|
|
708
|
-
}),
|
|
709
|
-
PropTypes.string,
|
|
710
|
-
])
|
|
711
|
-
),
|
|
712
|
-
PropTypes.number,
|
|
713
|
-
PropTypes.object,
|
|
714
|
-
PropTypes.shape({
|
|
715
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
716
|
-
/**
|
|
717
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
718
|
-
*/
|
|
719
|
-
description: PropTypes.string,
|
|
720
|
-
/**
|
|
721
|
-
* Returns a string representation of an object.
|
|
722
|
-
*/
|
|
723
|
-
toString: PropTypes.func.isRequired,
|
|
724
|
-
/**
|
|
725
|
-
* Returns the primitive value of the specified object.
|
|
726
|
-
*/
|
|
727
|
-
valueOf: PropTypes.func.isRequired,
|
|
728
|
-
}),
|
|
729
|
-
PropTypes.string,
|
|
730
|
-
]),
|
|
731
|
-
/**
|
|
732
|
-
* Padding on top, left, bottom and right
|
|
733
|
-
*/
|
|
734
|
-
padding: PropTypes.oneOfType([
|
|
735
|
-
PropTypes.arrayOf(
|
|
736
|
-
PropTypes.oneOfType([
|
|
737
|
-
PropTypes.oneOf([null]),
|
|
738
|
-
PropTypes.number,
|
|
739
|
-
PropTypes.shape({
|
|
740
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
741
|
-
/**
|
|
742
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
743
|
-
*/
|
|
744
|
-
description: PropTypes.string,
|
|
745
|
-
/**
|
|
746
|
-
* Returns a string representation of an object.
|
|
747
|
-
*/
|
|
748
|
-
toString: PropTypes.func.isRequired,
|
|
749
|
-
/**
|
|
750
|
-
* Returns the primitive value of the specified object.
|
|
751
|
-
*/
|
|
752
|
-
valueOf: PropTypes.func.isRequired,
|
|
753
|
-
}),
|
|
754
|
-
PropTypes.string,
|
|
755
|
-
])
|
|
756
|
-
),
|
|
757
|
-
PropTypes.number,
|
|
758
|
-
PropTypes.object,
|
|
759
|
-
PropTypes.shape({
|
|
760
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
761
|
-
/**
|
|
762
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
763
|
-
*/
|
|
764
|
-
description: PropTypes.string,
|
|
765
|
-
/**
|
|
766
|
-
* Returns a string representation of an object.
|
|
767
|
-
*/
|
|
768
|
-
toString: PropTypes.func.isRequired,
|
|
769
|
-
/**
|
|
770
|
-
* Returns the primitive value of the specified object.
|
|
771
|
-
*/
|
|
772
|
-
valueOf: PropTypes.func.isRequired,
|
|
773
|
-
}),
|
|
774
|
-
PropTypes.string,
|
|
775
|
-
]),
|
|
776
|
-
/**
|
|
777
|
-
* Padding on bottom
|
|
778
|
-
*/
|
|
779
|
-
paddingBottom: PropTypes.oneOfType([
|
|
780
|
-
PropTypes.arrayOf(
|
|
781
|
-
PropTypes.oneOfType([
|
|
782
|
-
PropTypes.oneOf([null]),
|
|
783
|
-
PropTypes.number,
|
|
784
|
-
PropTypes.shape({
|
|
785
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
786
|
-
/**
|
|
787
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
788
|
-
*/
|
|
789
|
-
description: PropTypes.string,
|
|
790
|
-
/**
|
|
791
|
-
* Returns a string representation of an object.
|
|
792
|
-
*/
|
|
793
|
-
toString: PropTypes.func.isRequired,
|
|
794
|
-
/**
|
|
795
|
-
* Returns the primitive value of the specified object.
|
|
796
|
-
*/
|
|
797
|
-
valueOf: PropTypes.func.isRequired,
|
|
798
|
-
}),
|
|
799
|
-
PropTypes.string,
|
|
800
|
-
])
|
|
801
|
-
),
|
|
802
|
-
PropTypes.number,
|
|
803
|
-
PropTypes.object,
|
|
804
|
-
PropTypes.shape({
|
|
805
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
806
|
-
/**
|
|
807
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
808
|
-
*/
|
|
809
|
-
description: PropTypes.string,
|
|
810
|
-
/**
|
|
811
|
-
* Returns a string representation of an object.
|
|
812
|
-
*/
|
|
813
|
-
toString: PropTypes.func.isRequired,
|
|
814
|
-
/**
|
|
815
|
-
* Returns the primitive value of the specified object.
|
|
816
|
-
*/
|
|
817
|
-
valueOf: PropTypes.func.isRequired,
|
|
818
|
-
}),
|
|
819
|
-
PropTypes.string,
|
|
820
|
-
]),
|
|
821
|
-
/**
|
|
822
|
-
* Padding on left
|
|
823
|
-
*/
|
|
824
|
-
paddingLeft: PropTypes.oneOfType([
|
|
825
|
-
PropTypes.arrayOf(
|
|
826
|
-
PropTypes.oneOfType([
|
|
827
|
-
PropTypes.oneOf([null]),
|
|
828
|
-
PropTypes.number,
|
|
829
|
-
PropTypes.shape({
|
|
830
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
831
|
-
/**
|
|
832
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
833
|
-
*/
|
|
834
|
-
description: PropTypes.string,
|
|
835
|
-
/**
|
|
836
|
-
* Returns a string representation of an object.
|
|
837
|
-
*/
|
|
838
|
-
toString: PropTypes.func.isRequired,
|
|
839
|
-
/**
|
|
840
|
-
* Returns the primitive value of the specified object.
|
|
841
|
-
*/
|
|
842
|
-
valueOf: PropTypes.func.isRequired,
|
|
843
|
-
}),
|
|
844
|
-
PropTypes.string,
|
|
845
|
-
])
|
|
846
|
-
),
|
|
847
|
-
PropTypes.number,
|
|
848
|
-
PropTypes.object,
|
|
849
|
-
PropTypes.shape({
|
|
850
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
851
|
-
/**
|
|
852
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
853
|
-
*/
|
|
854
|
-
description: PropTypes.string,
|
|
855
|
-
/**
|
|
856
|
-
* Returns a string representation of an object.
|
|
857
|
-
*/
|
|
858
|
-
toString: PropTypes.func.isRequired,
|
|
859
|
-
/**
|
|
860
|
-
* Returns the primitive value of the specified object.
|
|
861
|
-
*/
|
|
862
|
-
valueOf: PropTypes.func.isRequired,
|
|
863
|
-
}),
|
|
864
|
-
PropTypes.string,
|
|
865
|
-
]),
|
|
866
|
-
/**
|
|
867
|
-
* Padding on right
|
|
868
|
-
*/
|
|
869
|
-
paddingRight: PropTypes.oneOfType([
|
|
870
|
-
PropTypes.arrayOf(
|
|
871
|
-
PropTypes.oneOfType([
|
|
872
|
-
PropTypes.oneOf([null]),
|
|
873
|
-
PropTypes.number,
|
|
874
|
-
PropTypes.shape({
|
|
875
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
876
|
-
/**
|
|
877
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
878
|
-
*/
|
|
879
|
-
description: PropTypes.string,
|
|
880
|
-
/**
|
|
881
|
-
* Returns a string representation of an object.
|
|
882
|
-
*/
|
|
883
|
-
toString: PropTypes.func.isRequired,
|
|
884
|
-
/**
|
|
885
|
-
* Returns the primitive value of the specified object.
|
|
886
|
-
*/
|
|
887
|
-
valueOf: PropTypes.func.isRequired,
|
|
888
|
-
}),
|
|
889
|
-
PropTypes.string,
|
|
890
|
-
])
|
|
891
|
-
),
|
|
892
|
-
PropTypes.number,
|
|
893
|
-
PropTypes.object,
|
|
894
|
-
PropTypes.shape({
|
|
895
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
896
|
-
/**
|
|
897
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
898
|
-
*/
|
|
899
|
-
description: PropTypes.string,
|
|
900
|
-
/**
|
|
901
|
-
* Returns a string representation of an object.
|
|
902
|
-
*/
|
|
903
|
-
toString: PropTypes.func.isRequired,
|
|
904
|
-
/**
|
|
905
|
-
* Returns the primitive value of the specified object.
|
|
906
|
-
*/
|
|
907
|
-
valueOf: PropTypes.func.isRequired,
|
|
908
|
-
}),
|
|
909
|
-
PropTypes.string,
|
|
910
|
-
]),
|
|
911
|
-
/**
|
|
912
|
-
* Padding on top
|
|
913
|
-
*/
|
|
914
|
-
paddingTop: PropTypes.oneOfType([
|
|
915
|
-
PropTypes.arrayOf(
|
|
916
|
-
PropTypes.oneOfType([
|
|
917
|
-
PropTypes.oneOf([null]),
|
|
918
|
-
PropTypes.number,
|
|
919
|
-
PropTypes.shape({
|
|
920
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
921
|
-
/**
|
|
922
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
923
|
-
*/
|
|
924
|
-
description: PropTypes.string,
|
|
925
|
-
/**
|
|
926
|
-
* Returns a string representation of an object.
|
|
927
|
-
*/
|
|
928
|
-
toString: PropTypes.func.isRequired,
|
|
929
|
-
/**
|
|
930
|
-
* Returns the primitive value of the specified object.
|
|
931
|
-
*/
|
|
932
|
-
valueOf: PropTypes.func.isRequired,
|
|
933
|
-
}),
|
|
934
|
-
PropTypes.string,
|
|
935
|
-
])
|
|
936
|
-
),
|
|
937
|
-
PropTypes.number,
|
|
938
|
-
PropTypes.object,
|
|
939
|
-
PropTypes.shape({
|
|
940
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
941
|
-
/**
|
|
942
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
943
|
-
*/
|
|
944
|
-
description: PropTypes.string,
|
|
945
|
-
/**
|
|
946
|
-
* Returns a string representation of an object.
|
|
947
|
-
*/
|
|
948
|
-
toString: PropTypes.func.isRequired,
|
|
949
|
-
/**
|
|
950
|
-
* Returns the primitive value of the specified object.
|
|
951
|
-
*/
|
|
952
|
-
valueOf: PropTypes.func.isRequired,
|
|
953
|
-
}),
|
|
954
|
-
PropTypes.string,
|
|
955
|
-
]),
|
|
956
|
-
/**
|
|
957
|
-
* Padding on left and right
|
|
958
|
-
*/
|
|
959
|
-
paddingX: PropTypes.oneOfType([
|
|
960
|
-
PropTypes.arrayOf(
|
|
961
|
-
PropTypes.oneOfType([
|
|
962
|
-
PropTypes.oneOf([null]),
|
|
963
|
-
PropTypes.number,
|
|
964
|
-
PropTypes.shape({
|
|
965
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
966
|
-
/**
|
|
967
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
968
|
-
*/
|
|
969
|
-
description: PropTypes.string,
|
|
970
|
-
/**
|
|
971
|
-
* Returns a string representation of an object.
|
|
972
|
-
*/
|
|
973
|
-
toString: PropTypes.func.isRequired,
|
|
974
|
-
/**
|
|
975
|
-
* Returns the primitive value of the specified object.
|
|
976
|
-
*/
|
|
977
|
-
valueOf: PropTypes.func.isRequired,
|
|
978
|
-
}),
|
|
979
|
-
PropTypes.string,
|
|
980
|
-
])
|
|
981
|
-
),
|
|
982
|
-
PropTypes.number,
|
|
983
|
-
PropTypes.object,
|
|
984
|
-
PropTypes.shape({
|
|
985
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
986
|
-
/**
|
|
987
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
988
|
-
*/
|
|
989
|
-
description: PropTypes.string,
|
|
990
|
-
/**
|
|
991
|
-
* Returns a string representation of an object.
|
|
992
|
-
*/
|
|
993
|
-
toString: PropTypes.func.isRequired,
|
|
994
|
-
/**
|
|
995
|
-
* Returns the primitive value of the specified object.
|
|
996
|
-
*/
|
|
997
|
-
valueOf: PropTypes.func.isRequired,
|
|
998
|
-
}),
|
|
999
|
-
PropTypes.string,
|
|
1000
|
-
]),
|
|
1001
|
-
/**
|
|
1002
|
-
* Padding on top and bottom
|
|
1003
|
-
*/
|
|
1004
|
-
paddingY: PropTypes.oneOfType([
|
|
1005
|
-
PropTypes.arrayOf(
|
|
1006
|
-
PropTypes.oneOfType([
|
|
1007
|
-
PropTypes.oneOf([null]),
|
|
1008
|
-
PropTypes.number,
|
|
1009
|
-
PropTypes.shape({
|
|
1010
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1011
|
-
/**
|
|
1012
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1013
|
-
*/
|
|
1014
|
-
description: PropTypes.string,
|
|
1015
|
-
/**
|
|
1016
|
-
* Returns a string representation of an object.
|
|
1017
|
-
*/
|
|
1018
|
-
toString: PropTypes.func.isRequired,
|
|
1019
|
-
/**
|
|
1020
|
-
* Returns the primitive value of the specified object.
|
|
1021
|
-
*/
|
|
1022
|
-
valueOf: PropTypes.func.isRequired,
|
|
1023
|
-
}),
|
|
1024
|
-
PropTypes.string,
|
|
1025
|
-
])
|
|
1026
|
-
),
|
|
1027
|
-
PropTypes.number,
|
|
1028
|
-
PropTypes.object,
|
|
1029
|
-
PropTypes.shape({
|
|
1030
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1031
|
-
/**
|
|
1032
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1033
|
-
*/
|
|
1034
|
-
description: PropTypes.string,
|
|
1035
|
-
/**
|
|
1036
|
-
* Returns a string representation of an object.
|
|
1037
|
-
*/
|
|
1038
|
-
toString: PropTypes.func.isRequired,
|
|
1039
|
-
/**
|
|
1040
|
-
* Returns the primitive value of the specified object.
|
|
1041
|
-
*/
|
|
1042
|
-
valueOf: PropTypes.func.isRequired,
|
|
1043
|
-
}),
|
|
1044
|
-
PropTypes.string,
|
|
1045
|
-
]),
|
|
1046
|
-
/**
|
|
1047
|
-
* Padding on bottom
|
|
1048
|
-
*/
|
|
1049
|
-
pb: PropTypes.oneOfType([
|
|
1050
|
-
PropTypes.arrayOf(
|
|
1051
|
-
PropTypes.oneOfType([
|
|
1052
|
-
PropTypes.oneOf([null]),
|
|
1053
|
-
PropTypes.number,
|
|
1054
|
-
PropTypes.shape({
|
|
1055
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1056
|
-
/**
|
|
1057
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1058
|
-
*/
|
|
1059
|
-
description: PropTypes.string,
|
|
1060
|
-
/**
|
|
1061
|
-
* Returns a string representation of an object.
|
|
1062
|
-
*/
|
|
1063
|
-
toString: PropTypes.func.isRequired,
|
|
1064
|
-
/**
|
|
1065
|
-
* Returns the primitive value of the specified object.
|
|
1066
|
-
*/
|
|
1067
|
-
valueOf: PropTypes.func.isRequired,
|
|
1068
|
-
}),
|
|
1069
|
-
PropTypes.string,
|
|
1070
|
-
])
|
|
1071
|
-
),
|
|
1072
|
-
PropTypes.number,
|
|
1073
|
-
PropTypes.object,
|
|
1074
|
-
PropTypes.shape({
|
|
1075
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1076
|
-
/**
|
|
1077
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1078
|
-
*/
|
|
1079
|
-
description: PropTypes.string,
|
|
1080
|
-
/**
|
|
1081
|
-
* Returns a string representation of an object.
|
|
1082
|
-
*/
|
|
1083
|
-
toString: PropTypes.func.isRequired,
|
|
1084
|
-
/**
|
|
1085
|
-
* Returns the primitive value of the specified object.
|
|
1086
|
-
*/
|
|
1087
|
-
valueOf: PropTypes.func.isRequired,
|
|
1088
|
-
}),
|
|
1089
|
-
PropTypes.string,
|
|
1090
|
-
]),
|
|
1091
|
-
/**
|
|
1092
|
-
* Padding on left
|
|
1093
|
-
*/
|
|
1094
|
-
pl: PropTypes.oneOfType([
|
|
1095
|
-
PropTypes.arrayOf(
|
|
1096
|
-
PropTypes.oneOfType([
|
|
1097
|
-
PropTypes.oneOf([null]),
|
|
1098
|
-
PropTypes.number,
|
|
1099
|
-
PropTypes.shape({
|
|
1100
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1101
|
-
/**
|
|
1102
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1103
|
-
*/
|
|
1104
|
-
description: PropTypes.string,
|
|
1105
|
-
/**
|
|
1106
|
-
* Returns a string representation of an object.
|
|
1107
|
-
*/
|
|
1108
|
-
toString: PropTypes.func.isRequired,
|
|
1109
|
-
/**
|
|
1110
|
-
* Returns the primitive value of the specified object.
|
|
1111
|
-
*/
|
|
1112
|
-
valueOf: PropTypes.func.isRequired,
|
|
1113
|
-
}),
|
|
1114
|
-
PropTypes.string,
|
|
1115
|
-
])
|
|
1116
|
-
),
|
|
1117
|
-
PropTypes.number,
|
|
1118
|
-
PropTypes.object,
|
|
1119
|
-
PropTypes.shape({
|
|
1120
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1121
|
-
/**
|
|
1122
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1123
|
-
*/
|
|
1124
|
-
description: PropTypes.string,
|
|
1125
|
-
/**
|
|
1126
|
-
* Returns a string representation of an object.
|
|
1127
|
-
*/
|
|
1128
|
-
toString: PropTypes.func.isRequired,
|
|
1129
|
-
/**
|
|
1130
|
-
* Returns the primitive value of the specified object.
|
|
1131
|
-
*/
|
|
1132
|
-
valueOf: PropTypes.func.isRequired,
|
|
1133
|
-
}),
|
|
1134
|
-
PropTypes.string,
|
|
1135
|
-
]),
|
|
1136
|
-
/**
|
|
1137
|
-
* Padding on right
|
|
1138
|
-
*/
|
|
1139
|
-
pr: PropTypes.oneOfType([
|
|
1140
|
-
PropTypes.arrayOf(
|
|
1141
|
-
PropTypes.oneOfType([
|
|
1142
|
-
PropTypes.oneOf([null]),
|
|
1143
|
-
PropTypes.number,
|
|
1144
|
-
PropTypes.shape({
|
|
1145
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1146
|
-
/**
|
|
1147
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1148
|
-
*/
|
|
1149
|
-
description: PropTypes.string,
|
|
1150
|
-
/**
|
|
1151
|
-
* Returns a string representation of an object.
|
|
1152
|
-
*/
|
|
1153
|
-
toString: PropTypes.func.isRequired,
|
|
1154
|
-
/**
|
|
1155
|
-
* Returns the primitive value of the specified object.
|
|
1156
|
-
*/
|
|
1157
|
-
valueOf: PropTypes.func.isRequired,
|
|
1158
|
-
}),
|
|
1159
|
-
PropTypes.string,
|
|
1160
|
-
])
|
|
1161
|
-
),
|
|
1162
|
-
PropTypes.number,
|
|
1163
|
-
PropTypes.object,
|
|
1164
|
-
PropTypes.shape({
|
|
1165
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1166
|
-
/**
|
|
1167
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1168
|
-
*/
|
|
1169
|
-
description: PropTypes.string,
|
|
1170
|
-
/**
|
|
1171
|
-
* Returns a string representation of an object.
|
|
1172
|
-
*/
|
|
1173
|
-
toString: PropTypes.func.isRequired,
|
|
1174
|
-
/**
|
|
1175
|
-
* Returns the primitive value of the specified object.
|
|
1176
|
-
*/
|
|
1177
|
-
valueOf: PropTypes.func.isRequired,
|
|
1178
|
-
}),
|
|
1179
|
-
PropTypes.string,
|
|
1180
|
-
]),
|
|
1181
|
-
/**
|
|
1182
|
-
* Padding on top
|
|
1183
|
-
*/
|
|
1184
|
-
pt: PropTypes.oneOfType([
|
|
1185
|
-
PropTypes.arrayOf(
|
|
1186
|
-
PropTypes.oneOfType([
|
|
1187
|
-
PropTypes.oneOf([null]),
|
|
1188
|
-
PropTypes.number,
|
|
1189
|
-
PropTypes.shape({
|
|
1190
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1191
|
-
/**
|
|
1192
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1193
|
-
*/
|
|
1194
|
-
description: PropTypes.string,
|
|
1195
|
-
/**
|
|
1196
|
-
* Returns a string representation of an object.
|
|
1197
|
-
*/
|
|
1198
|
-
toString: PropTypes.func.isRequired,
|
|
1199
|
-
/**
|
|
1200
|
-
* Returns the primitive value of the specified object.
|
|
1201
|
-
*/
|
|
1202
|
-
valueOf: PropTypes.func.isRequired,
|
|
1203
|
-
}),
|
|
1204
|
-
PropTypes.string,
|
|
1205
|
-
])
|
|
1206
|
-
),
|
|
1207
|
-
PropTypes.number,
|
|
1208
|
-
PropTypes.object,
|
|
1209
|
-
PropTypes.shape({
|
|
1210
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1211
|
-
/**
|
|
1212
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1213
|
-
*/
|
|
1214
|
-
description: PropTypes.string,
|
|
1215
|
-
/**
|
|
1216
|
-
* Returns a string representation of an object.
|
|
1217
|
-
*/
|
|
1218
|
-
toString: PropTypes.func.isRequired,
|
|
1219
|
-
/**
|
|
1220
|
-
* Returns the primitive value of the specified object.
|
|
1221
|
-
*/
|
|
1222
|
-
valueOf: PropTypes.func.isRequired,
|
|
1223
|
-
}),
|
|
1224
|
-
PropTypes.string,
|
|
1225
|
-
]),
|
|
1226
|
-
/**
|
|
1227
|
-
* Padding on left and right
|
|
1228
|
-
*/
|
|
1229
|
-
px: PropTypes.oneOfType([
|
|
1230
|
-
PropTypes.arrayOf(
|
|
1231
|
-
PropTypes.oneOfType([
|
|
1232
|
-
PropTypes.oneOf([null]),
|
|
1233
|
-
PropTypes.number,
|
|
1234
|
-
PropTypes.shape({
|
|
1235
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1236
|
-
/**
|
|
1237
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1238
|
-
*/
|
|
1239
|
-
description: PropTypes.string,
|
|
1240
|
-
/**
|
|
1241
|
-
* Returns a string representation of an object.
|
|
1242
|
-
*/
|
|
1243
|
-
toString: PropTypes.func.isRequired,
|
|
1244
|
-
/**
|
|
1245
|
-
* Returns the primitive value of the specified object.
|
|
1246
|
-
*/
|
|
1247
|
-
valueOf: PropTypes.func.isRequired,
|
|
1248
|
-
}),
|
|
1249
|
-
PropTypes.string,
|
|
1250
|
-
])
|
|
1251
|
-
),
|
|
1252
|
-
PropTypes.number,
|
|
1253
|
-
PropTypes.object,
|
|
1254
|
-
PropTypes.shape({
|
|
1255
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1256
|
-
/**
|
|
1257
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1258
|
-
*/
|
|
1259
|
-
description: PropTypes.string,
|
|
1260
|
-
/**
|
|
1261
|
-
* Returns a string representation of an object.
|
|
1262
|
-
*/
|
|
1263
|
-
toString: PropTypes.func.isRequired,
|
|
1264
|
-
/**
|
|
1265
|
-
* Returns the primitive value of the specified object.
|
|
1266
|
-
*/
|
|
1267
|
-
valueOf: PropTypes.func.isRequired,
|
|
1268
|
-
}),
|
|
1269
|
-
PropTypes.string,
|
|
1270
|
-
]),
|
|
1271
|
-
/**
|
|
1272
|
-
* Padding on top and bottom
|
|
1273
|
-
*/
|
|
1274
|
-
py: PropTypes.oneOfType([
|
|
1275
|
-
PropTypes.arrayOf(
|
|
1276
|
-
PropTypes.oneOfType([
|
|
1277
|
-
PropTypes.oneOf([null]),
|
|
1278
|
-
PropTypes.number,
|
|
1279
|
-
PropTypes.shape({
|
|
1280
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1281
|
-
/**
|
|
1282
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1283
|
-
*/
|
|
1284
|
-
description: PropTypes.string,
|
|
1285
|
-
/**
|
|
1286
|
-
* Returns a string representation of an object.
|
|
1287
|
-
*/
|
|
1288
|
-
toString: PropTypes.func.isRequired,
|
|
1289
|
-
/**
|
|
1290
|
-
* Returns the primitive value of the specified object.
|
|
1291
|
-
*/
|
|
1292
|
-
valueOf: PropTypes.func.isRequired,
|
|
1293
|
-
}),
|
|
1294
|
-
PropTypes.string,
|
|
1295
|
-
])
|
|
1296
|
-
),
|
|
1297
|
-
PropTypes.number,
|
|
1298
|
-
PropTypes.object,
|
|
1299
|
-
PropTypes.shape({
|
|
1300
|
-
"__@toStringTag": PropTypes.string.isRequired,
|
|
1301
|
-
/**
|
|
1302
|
-
* Expose the [[Description]] internal slot of a symbol directly.
|
|
1303
|
-
*/
|
|
1304
|
-
description: PropTypes.string,
|
|
1305
|
-
/**
|
|
1306
|
-
* Returns a string representation of an object.
|
|
1307
|
-
*/
|
|
1308
|
-
toString: PropTypes.func.isRequired,
|
|
1309
|
-
/**
|
|
1310
|
-
* Returns the primitive value of the specified object.
|
|
1311
|
-
*/
|
|
1312
|
-
valueOf: PropTypes.func.isRequired,
|
|
1313
|
-
}),
|
|
1314
|
-
PropTypes.string,
|
|
1315
|
-
]),
|
|
1316
|
-
/**
|
|
1317
|
-
* the supported rage is 1-100
|
|
1318
|
-
*/
|
|
1319
|
-
tint: PropTypes.oneOf([
|
|
1320
|
-
1,
|
|
1321
|
-
2,
|
|
1322
|
-
3,
|
|
1323
|
-
4,
|
|
1324
|
-
5,
|
|
1325
|
-
6,
|
|
1326
|
-
7,
|
|
1327
|
-
8,
|
|
1328
|
-
9,
|
|
1329
|
-
10,
|
|
1330
|
-
11,
|
|
1331
|
-
12,
|
|
1332
|
-
13,
|
|
1333
|
-
14,
|
|
1334
|
-
15,
|
|
1335
|
-
16,
|
|
1336
|
-
17,
|
|
1337
|
-
18,
|
|
1338
|
-
19,
|
|
1339
|
-
20,
|
|
1340
|
-
21,
|
|
1341
|
-
22,
|
|
1342
|
-
23,
|
|
1343
|
-
24,
|
|
1344
|
-
25,
|
|
1345
|
-
26,
|
|
1346
|
-
27,
|
|
1347
|
-
28,
|
|
1348
|
-
29,
|
|
1349
|
-
30,
|
|
1350
|
-
31,
|
|
1351
|
-
32,
|
|
1352
|
-
33,
|
|
1353
|
-
34,
|
|
1354
|
-
35,
|
|
1355
|
-
36,
|
|
1356
|
-
37,
|
|
1357
|
-
38,
|
|
1358
|
-
39,
|
|
1359
|
-
40,
|
|
1360
|
-
41,
|
|
1361
|
-
42,
|
|
1362
|
-
43,
|
|
1363
|
-
44,
|
|
1364
|
-
45,
|
|
1365
|
-
46,
|
|
1366
|
-
47,
|
|
1367
|
-
48,
|
|
1368
|
-
49,
|
|
1369
|
-
50,
|
|
1370
|
-
51,
|
|
1371
|
-
52,
|
|
1372
|
-
53,
|
|
1373
|
-
54,
|
|
1374
|
-
55,
|
|
1375
|
-
56,
|
|
1376
|
-
57,
|
|
1377
|
-
58,
|
|
1378
|
-
59,
|
|
1379
|
-
60,
|
|
1380
|
-
61,
|
|
1381
|
-
62,
|
|
1382
|
-
63,
|
|
1383
|
-
64,
|
|
1384
|
-
65,
|
|
1385
|
-
66,
|
|
1386
|
-
67,
|
|
1387
|
-
68,
|
|
1388
|
-
69,
|
|
1389
|
-
70,
|
|
1390
|
-
71,
|
|
1391
|
-
72,
|
|
1392
|
-
73,
|
|
1393
|
-
74,
|
|
1394
|
-
75,
|
|
1395
|
-
76,
|
|
1396
|
-
77,
|
|
1397
|
-
78,
|
|
1398
|
-
79,
|
|
1399
|
-
80,
|
|
1400
|
-
81,
|
|
1401
|
-
82,
|
|
1402
|
-
83,
|
|
1403
|
-
84,
|
|
1404
|
-
85,
|
|
1405
|
-
86,
|
|
1406
|
-
87,
|
|
1407
|
-
88,
|
|
1408
|
-
89,
|
|
1409
|
-
90,
|
|
1410
|
-
91,
|
|
1411
|
-
92,
|
|
1412
|
-
93,
|
|
1413
|
-
94,
|
|
1414
|
-
95,
|
|
1415
|
-
96,
|
|
1416
|
-
97,
|
|
1417
|
-
98,
|
|
1418
|
-
99,
|
|
1419
|
-
100,
|
|
1420
|
-
]),
|
|
32
|
+
"displayInline": PropTypes.bool,
|
|
33
|
+
"h": PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
34
|
+
"height": PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
35
|
+
"m": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
36
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
37
|
+
"description": PropTypes.string,
|
|
38
|
+
"toString": PropTypes.func.isRequired,
|
|
39
|
+
"valueOf": PropTypes.func.isRequired
|
|
40
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
41
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
42
|
+
"description": PropTypes.string,
|
|
43
|
+
"toString": PropTypes.func.isRequired,
|
|
44
|
+
"valueOf": PropTypes.func.isRequired
|
|
45
|
+
}), PropTypes.string]),
|
|
46
|
+
"margin": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
47
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
48
|
+
"description": PropTypes.string,
|
|
49
|
+
"toString": PropTypes.func.isRequired,
|
|
50
|
+
"valueOf": PropTypes.func.isRequired
|
|
51
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
52
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
53
|
+
"description": PropTypes.string,
|
|
54
|
+
"toString": PropTypes.func.isRequired,
|
|
55
|
+
"valueOf": PropTypes.func.isRequired
|
|
56
|
+
}), PropTypes.string]),
|
|
57
|
+
"marginBottom": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
58
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
59
|
+
"description": PropTypes.string,
|
|
60
|
+
"toString": PropTypes.func.isRequired,
|
|
61
|
+
"valueOf": PropTypes.func.isRequired
|
|
62
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
63
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
64
|
+
"description": PropTypes.string,
|
|
65
|
+
"toString": PropTypes.func.isRequired,
|
|
66
|
+
"valueOf": PropTypes.func.isRequired
|
|
67
|
+
}), PropTypes.string]),
|
|
68
|
+
"marginLeft": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
69
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
70
|
+
"description": PropTypes.string,
|
|
71
|
+
"toString": PropTypes.func.isRequired,
|
|
72
|
+
"valueOf": PropTypes.func.isRequired
|
|
73
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
74
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
75
|
+
"description": PropTypes.string,
|
|
76
|
+
"toString": PropTypes.func.isRequired,
|
|
77
|
+
"valueOf": PropTypes.func.isRequired
|
|
78
|
+
}), PropTypes.string]),
|
|
79
|
+
"marginRight": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
80
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
81
|
+
"description": PropTypes.string,
|
|
82
|
+
"toString": PropTypes.func.isRequired,
|
|
83
|
+
"valueOf": PropTypes.func.isRequired
|
|
84
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
85
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
86
|
+
"description": PropTypes.string,
|
|
87
|
+
"toString": PropTypes.func.isRequired,
|
|
88
|
+
"valueOf": PropTypes.func.isRequired
|
|
89
|
+
}), PropTypes.string]),
|
|
90
|
+
"marginTop": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
91
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
92
|
+
"description": PropTypes.string,
|
|
93
|
+
"toString": PropTypes.func.isRequired,
|
|
94
|
+
"valueOf": PropTypes.func.isRequired
|
|
95
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
96
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
97
|
+
"description": PropTypes.string,
|
|
98
|
+
"toString": PropTypes.func.isRequired,
|
|
99
|
+
"valueOf": PropTypes.func.isRequired
|
|
100
|
+
}), PropTypes.string]),
|
|
101
|
+
"marginX": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
102
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
103
|
+
"description": PropTypes.string,
|
|
104
|
+
"toString": PropTypes.func.isRequired,
|
|
105
|
+
"valueOf": PropTypes.func.isRequired
|
|
106
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
107
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
108
|
+
"description": PropTypes.string,
|
|
109
|
+
"toString": PropTypes.func.isRequired,
|
|
110
|
+
"valueOf": PropTypes.func.isRequired
|
|
111
|
+
}), PropTypes.string]),
|
|
112
|
+
"marginY": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
113
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
114
|
+
"description": PropTypes.string,
|
|
115
|
+
"toString": PropTypes.func.isRequired,
|
|
116
|
+
"valueOf": PropTypes.func.isRequired
|
|
117
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
118
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
119
|
+
"description": PropTypes.string,
|
|
120
|
+
"toString": PropTypes.func.isRequired,
|
|
121
|
+
"valueOf": PropTypes.func.isRequired
|
|
122
|
+
}), PropTypes.string]),
|
|
123
|
+
"mb": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
124
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
125
|
+
"description": PropTypes.string,
|
|
126
|
+
"toString": PropTypes.func.isRequired,
|
|
127
|
+
"valueOf": PropTypes.func.isRequired
|
|
128
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
129
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
130
|
+
"description": PropTypes.string,
|
|
131
|
+
"toString": PropTypes.func.isRequired,
|
|
132
|
+
"valueOf": PropTypes.func.isRequired
|
|
133
|
+
}), PropTypes.string]),
|
|
134
|
+
"ml": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
135
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
136
|
+
"description": PropTypes.string,
|
|
137
|
+
"toString": PropTypes.func.isRequired,
|
|
138
|
+
"valueOf": PropTypes.func.isRequired
|
|
139
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
140
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
141
|
+
"description": PropTypes.string,
|
|
142
|
+
"toString": PropTypes.func.isRequired,
|
|
143
|
+
"valueOf": PropTypes.func.isRequired
|
|
144
|
+
}), PropTypes.string]),
|
|
145
|
+
"mr": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
146
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
147
|
+
"description": PropTypes.string,
|
|
148
|
+
"toString": PropTypes.func.isRequired,
|
|
149
|
+
"valueOf": PropTypes.func.isRequired
|
|
150
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
151
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
152
|
+
"description": PropTypes.string,
|
|
153
|
+
"toString": PropTypes.func.isRequired,
|
|
154
|
+
"valueOf": PropTypes.func.isRequired
|
|
155
|
+
}), PropTypes.string]),
|
|
156
|
+
"mt": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
157
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
158
|
+
"description": PropTypes.string,
|
|
159
|
+
"toString": PropTypes.func.isRequired,
|
|
160
|
+
"valueOf": PropTypes.func.isRequired
|
|
161
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
162
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
163
|
+
"description": PropTypes.string,
|
|
164
|
+
"toString": PropTypes.func.isRequired,
|
|
165
|
+
"valueOf": PropTypes.func.isRequired
|
|
166
|
+
}), PropTypes.string]),
|
|
167
|
+
"mx": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
168
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
169
|
+
"description": PropTypes.string,
|
|
170
|
+
"toString": PropTypes.func.isRequired,
|
|
171
|
+
"valueOf": PropTypes.func.isRequired
|
|
172
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
173
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
174
|
+
"description": PropTypes.string,
|
|
175
|
+
"toString": PropTypes.func.isRequired,
|
|
176
|
+
"valueOf": PropTypes.func.isRequired
|
|
177
|
+
}), PropTypes.string]),
|
|
178
|
+
"my": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
179
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
180
|
+
"description": PropTypes.string,
|
|
181
|
+
"toString": PropTypes.func.isRequired,
|
|
182
|
+
"valueOf": PropTypes.func.isRequired
|
|
183
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
184
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
185
|
+
"description": PropTypes.string,
|
|
186
|
+
"toString": PropTypes.func.isRequired,
|
|
187
|
+
"valueOf": PropTypes.func.isRequired
|
|
188
|
+
}), PropTypes.string]),
|
|
189
|
+
"p": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
190
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
191
|
+
"description": PropTypes.string,
|
|
192
|
+
"toString": PropTypes.func.isRequired,
|
|
193
|
+
"valueOf": PropTypes.func.isRequired
|
|
194
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
195
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
196
|
+
"description": PropTypes.string,
|
|
197
|
+
"toString": PropTypes.func.isRequired,
|
|
198
|
+
"valueOf": PropTypes.func.isRequired
|
|
199
|
+
}), PropTypes.string]),
|
|
200
|
+
"padding": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
201
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
202
|
+
"description": PropTypes.string,
|
|
203
|
+
"toString": PropTypes.func.isRequired,
|
|
204
|
+
"valueOf": PropTypes.func.isRequired
|
|
205
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
206
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
207
|
+
"description": PropTypes.string,
|
|
208
|
+
"toString": PropTypes.func.isRequired,
|
|
209
|
+
"valueOf": PropTypes.func.isRequired
|
|
210
|
+
}), PropTypes.string]),
|
|
211
|
+
"paddingBottom": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
212
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
213
|
+
"description": PropTypes.string,
|
|
214
|
+
"toString": PropTypes.func.isRequired,
|
|
215
|
+
"valueOf": PropTypes.func.isRequired
|
|
216
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
217
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
218
|
+
"description": PropTypes.string,
|
|
219
|
+
"toString": PropTypes.func.isRequired,
|
|
220
|
+
"valueOf": PropTypes.func.isRequired
|
|
221
|
+
}), PropTypes.string]),
|
|
222
|
+
"paddingLeft": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
223
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
224
|
+
"description": PropTypes.string,
|
|
225
|
+
"toString": PropTypes.func.isRequired,
|
|
226
|
+
"valueOf": PropTypes.func.isRequired
|
|
227
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
228
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
229
|
+
"description": PropTypes.string,
|
|
230
|
+
"toString": PropTypes.func.isRequired,
|
|
231
|
+
"valueOf": PropTypes.func.isRequired
|
|
232
|
+
}), PropTypes.string]),
|
|
233
|
+
"paddingRight": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
234
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
235
|
+
"description": PropTypes.string,
|
|
236
|
+
"toString": PropTypes.func.isRequired,
|
|
237
|
+
"valueOf": PropTypes.func.isRequired
|
|
238
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
239
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
240
|
+
"description": PropTypes.string,
|
|
241
|
+
"toString": PropTypes.func.isRequired,
|
|
242
|
+
"valueOf": PropTypes.func.isRequired
|
|
243
|
+
}), PropTypes.string]),
|
|
244
|
+
"paddingTop": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
245
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
246
|
+
"description": PropTypes.string,
|
|
247
|
+
"toString": PropTypes.func.isRequired,
|
|
248
|
+
"valueOf": PropTypes.func.isRequired
|
|
249
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
250
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
251
|
+
"description": PropTypes.string,
|
|
252
|
+
"toString": PropTypes.func.isRequired,
|
|
253
|
+
"valueOf": PropTypes.func.isRequired
|
|
254
|
+
}), PropTypes.string]),
|
|
255
|
+
"paddingX": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
256
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
257
|
+
"description": PropTypes.string,
|
|
258
|
+
"toString": PropTypes.func.isRequired,
|
|
259
|
+
"valueOf": PropTypes.func.isRequired
|
|
260
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
261
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
262
|
+
"description": PropTypes.string,
|
|
263
|
+
"toString": PropTypes.func.isRequired,
|
|
264
|
+
"valueOf": PropTypes.func.isRequired
|
|
265
|
+
}), PropTypes.string]),
|
|
266
|
+
"paddingY": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
267
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
268
|
+
"description": PropTypes.string,
|
|
269
|
+
"toString": PropTypes.func.isRequired,
|
|
270
|
+
"valueOf": PropTypes.func.isRequired
|
|
271
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
272
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
273
|
+
"description": PropTypes.string,
|
|
274
|
+
"toString": PropTypes.func.isRequired,
|
|
275
|
+
"valueOf": PropTypes.func.isRequired
|
|
276
|
+
}), PropTypes.string]),
|
|
277
|
+
"pb": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
278
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
279
|
+
"description": PropTypes.string,
|
|
280
|
+
"toString": PropTypes.func.isRequired,
|
|
281
|
+
"valueOf": PropTypes.func.isRequired
|
|
282
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
283
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
284
|
+
"description": PropTypes.string,
|
|
285
|
+
"toString": PropTypes.func.isRequired,
|
|
286
|
+
"valueOf": PropTypes.func.isRequired
|
|
287
|
+
}), PropTypes.string]),
|
|
288
|
+
"pl": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
289
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
290
|
+
"description": PropTypes.string,
|
|
291
|
+
"toString": PropTypes.func.isRequired,
|
|
292
|
+
"valueOf": PropTypes.func.isRequired
|
|
293
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
294
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
295
|
+
"description": PropTypes.string,
|
|
296
|
+
"toString": PropTypes.func.isRequired,
|
|
297
|
+
"valueOf": PropTypes.func.isRequired
|
|
298
|
+
}), PropTypes.string]),
|
|
299
|
+
"pr": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
300
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
301
|
+
"description": PropTypes.string,
|
|
302
|
+
"toString": PropTypes.func.isRequired,
|
|
303
|
+
"valueOf": PropTypes.func.isRequired
|
|
304
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
305
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
306
|
+
"description": PropTypes.string,
|
|
307
|
+
"toString": PropTypes.func.isRequired,
|
|
308
|
+
"valueOf": PropTypes.func.isRequired
|
|
309
|
+
}), PropTypes.string]),
|
|
310
|
+
"pt": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
311
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
312
|
+
"description": PropTypes.string,
|
|
313
|
+
"toString": PropTypes.func.isRequired,
|
|
314
|
+
"valueOf": PropTypes.func.isRequired
|
|
315
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
316
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
317
|
+
"description": PropTypes.string,
|
|
318
|
+
"toString": PropTypes.func.isRequired,
|
|
319
|
+
"valueOf": PropTypes.func.isRequired
|
|
320
|
+
}), PropTypes.string]),
|
|
321
|
+
"px": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
322
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
323
|
+
"description": PropTypes.string,
|
|
324
|
+
"toString": PropTypes.func.isRequired,
|
|
325
|
+
"valueOf": PropTypes.func.isRequired
|
|
326
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
327
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
328
|
+
"description": PropTypes.string,
|
|
329
|
+
"toString": PropTypes.func.isRequired,
|
|
330
|
+
"valueOf": PropTypes.func.isRequired
|
|
331
|
+
}), PropTypes.string]),
|
|
332
|
+
"py": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
333
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
334
|
+
"description": PropTypes.string,
|
|
335
|
+
"toString": PropTypes.func.isRequired,
|
|
336
|
+
"valueOf": PropTypes.func.isRequired
|
|
337
|
+
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
338
|
+
"__@toStringTag": PropTypes.string.isRequired,
|
|
339
|
+
"description": PropTypes.string,
|
|
340
|
+
"toString": PropTypes.func.isRequired,
|
|
341
|
+
"valueOf": PropTypes.func.isRequired
|
|
342
|
+
}), PropTypes.string]),
|
|
343
|
+
"tint": PropTypes.oneOf([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100])
|
|
1421
344
|
};
|
|
1422
|
-
|
|
1423
|
-
export default VerticalDivider;
|
|
345
|
+
export default VerticalDivider;
|