@zendeskgarden/react-forms 8.46.0 → 8.48.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/dist/index.cjs.js +734 -738
- package/dist/index.esm.js +533 -535
- package/dist/typings/elements/MultiThumbRange.d.ts +1 -2
- package/dist/typings/elements/Range.d.ts +1 -2
- package/dist/typings/elements/common/Field.d.ts +4 -1
- package/dist/typings/elements/common/Fieldset.d.ts +4 -6
- package/dist/typings/elements/{FauxInput.d.ts → faux-input/FauxInput.d.ts} +14 -13
- package/dist/typings/elements/faux-input/components/EndIcon.d.ts +24 -0
- package/dist/typings/elements/faux-input/components/StartIcon.d.ts +24 -0
- package/dist/typings/elements/file-list/FileList.d.ts +4 -6
- package/dist/typings/elements/file-list/components/File.d.ts +5 -7
- package/dist/typings/elements/tiles/Tiles.d.ts +8 -10
- package/dist/typings/elements/tiles/components/Description.d.ts +1 -1
- package/dist/typings/elements/tiles/components/Icon.d.ts +1 -1
- package/dist/typings/elements/tiles/components/Label.d.ts +1 -1
- package/dist/typings/elements/tiles/components/Tile.d.ts +4 -5
- package/dist/typings/index.d.ts +8 -3
- package/package.json +4 -4
package/dist/index.esm.js
CHANGED
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
|
|
8
8
|
import * as React from 'react';
|
|
9
9
|
import React__default, { createContext, useContext, Children, useState, useRef, useMemo, forwardRef, useCallback, useEffect, useLayoutEffect } from 'react';
|
|
10
|
-
import PropTypes from 'prop-types';
|
|
11
10
|
import { useField } from '@zendeskgarden/container-field';
|
|
12
|
-
import styled, { css } from 'styled-components';
|
|
13
|
-
import { retrieveComponentStyles, DEFAULT_THEME, getLineHeight, getColor,
|
|
11
|
+
import styled, { css, ThemeContext } from 'styled-components';
|
|
12
|
+
import { retrieveComponentStyles, DEFAULT_THEME, getLineHeight, getColor, useDocument } from '@zendeskgarden/react-theming';
|
|
14
13
|
import { hideVisually, math, rgba, em } from 'polished';
|
|
14
|
+
import PropTypes from 'prop-types';
|
|
15
15
|
import { composeEventHandlers, KEY_CODES, getControlledValue } from '@zendeskgarden/container-utilities';
|
|
16
16
|
import mergeRefs from 'react-merge-refs';
|
|
17
17
|
import debounce from 'lodash.debounce';
|
|
@@ -21,14 +21,9 @@ function ownKeys(object, enumerableOnly) {
|
|
|
21
21
|
|
|
22
22
|
if (Object.getOwnPropertySymbols) {
|
|
23
23
|
var symbols = Object.getOwnPropertySymbols(object);
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
keys.push.apply(keys, symbols);
|
|
24
|
+
enumerableOnly && (symbols = symbols.filter(function (sym) {
|
|
25
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
26
|
+
})), keys.push.apply(keys, symbols);
|
|
32
27
|
}
|
|
33
28
|
|
|
34
29
|
return keys;
|
|
@@ -36,19 +31,12 @@ function ownKeys(object, enumerableOnly) {
|
|
|
36
31
|
|
|
37
32
|
function _objectSpread2(target) {
|
|
38
33
|
for (var i = 1; i < arguments.length; i++) {
|
|
39
|
-
var source = arguments[i]
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
} else if (Object.getOwnPropertyDescriptors) {
|
|
46
|
-
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
47
|
-
} else {
|
|
48
|
-
ownKeys(Object(source)).forEach(function (key) {
|
|
49
|
-
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
50
|
-
});
|
|
51
|
-
}
|
|
34
|
+
var source = null != arguments[i] ? arguments[i] : {};
|
|
35
|
+
i % 2 ? ownKeys(Object(source), !0).forEach(function (key) {
|
|
36
|
+
_defineProperty(target, key, source[key]);
|
|
37
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) {
|
|
38
|
+
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
39
|
+
});
|
|
52
40
|
}
|
|
53
41
|
|
|
54
42
|
return target;
|
|
@@ -207,7 +195,7 @@ var useFieldContext = function useFieldContext() {
|
|
|
207
195
|
var COMPONENT_ID$K = 'forms.field';
|
|
208
196
|
var StyledField = styled.div.attrs({
|
|
209
197
|
'data-garden-id': COMPONENT_ID$K,
|
|
210
|
-
'data-garden-version': '8.
|
|
198
|
+
'data-garden-version': '8.48.0'
|
|
211
199
|
}).withConfig({
|
|
212
200
|
displayName: "StyledField",
|
|
213
201
|
componentId: "sc-12gzfsu-0"
|
|
@@ -224,7 +212,7 @@ var COMPONENT_ID$J = 'forms.fieldset';
|
|
|
224
212
|
var StyledFieldset = styled(StyledField).attrs({
|
|
225
213
|
as: 'fieldset',
|
|
226
214
|
'data-garden-id': COMPONENT_ID$J,
|
|
227
|
-
'data-garden-version': '8.
|
|
215
|
+
'data-garden-version': '8.48.0'
|
|
228
216
|
}).withConfig({
|
|
229
217
|
displayName: "StyledFieldset",
|
|
230
218
|
componentId: "sc-1vr4mxv-0"
|
|
@@ -240,7 +228,7 @@ StyledFieldset.defaultProps = {
|
|
|
240
228
|
var COMPONENT_ID$I = 'forms.input_label';
|
|
241
229
|
var StyledLabel = styled.label.attrs({
|
|
242
230
|
'data-garden-id': COMPONENT_ID$I,
|
|
243
|
-
'data-garden-version': '8.
|
|
231
|
+
'data-garden-version': '8.48.0'
|
|
244
232
|
}).withConfig({
|
|
245
233
|
displayName: "StyledLabel",
|
|
246
234
|
componentId: "sc-2utmsz-0"
|
|
@@ -275,7 +263,7 @@ var COMPONENT_ID$H = 'forms.fieldset_legend';
|
|
|
275
263
|
var StyledLegend = styled(StyledLabel).attrs({
|
|
276
264
|
as: 'legend',
|
|
277
265
|
'data-garden-id': COMPONENT_ID$H,
|
|
278
|
-
'data-garden-version': '8.
|
|
266
|
+
'data-garden-version': '8.48.0'
|
|
279
267
|
}).withConfig({
|
|
280
268
|
displayName: "StyledLegend",
|
|
281
269
|
componentId: "sc-6s0zwq-0"
|
|
@@ -289,7 +277,7 @@ StyledLegend.defaultProps = {
|
|
|
289
277
|
var COMPONENT_ID$G = 'forms.input_hint';
|
|
290
278
|
var StyledHint = styled.div.attrs({
|
|
291
279
|
'data-garden-id': COMPONENT_ID$G,
|
|
292
|
-
'data-garden-version': '8.
|
|
280
|
+
'data-garden-version': '8.48.0'
|
|
293
281
|
}).withConfig({
|
|
294
282
|
displayName: "StyledHint",
|
|
295
283
|
componentId: "sc-17c2wu8-0"
|
|
@@ -308,90 +296,86 @@ StyledHint.defaultProps = {
|
|
|
308
296
|
theme: DEFAULT_THEME
|
|
309
297
|
};
|
|
310
298
|
|
|
299
|
+
var _g$2, _circle$5;
|
|
300
|
+
|
|
311
301
|
function _extends$s() { _extends$s = 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$s.apply(this, arguments); }
|
|
312
302
|
|
|
313
|
-
var
|
|
314
|
-
fill: "none",
|
|
315
|
-
stroke: "currentColor"
|
|
316
|
-
}, /*#__PURE__*/React.createElement("circle", {
|
|
317
|
-
cx: 7.5,
|
|
318
|
-
cy: 8.5,
|
|
319
|
-
r: 7
|
|
320
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
321
|
-
strokeLinecap: "round",
|
|
322
|
-
d: "M7.5 4.5V9"
|
|
323
|
-
}));
|
|
324
|
-
|
|
325
|
-
var _ref2$5 = /*#__PURE__*/React.createElement("circle", {
|
|
326
|
-
cx: 7.5,
|
|
327
|
-
cy: 12,
|
|
328
|
-
r: 1,
|
|
329
|
-
fill: "currentColor"
|
|
330
|
-
});
|
|
331
|
-
|
|
332
|
-
function SvgAlertErrorStroke(props) {
|
|
303
|
+
var SvgAlertErrorStroke = function SvgAlertErrorStroke(props) {
|
|
333
304
|
return /*#__PURE__*/React.createElement("svg", _extends$s({
|
|
334
305
|
xmlns: "http://www.w3.org/2000/svg",
|
|
335
306
|
width: 16,
|
|
336
307
|
height: 16,
|
|
337
|
-
viewBox: "0 0 16 16",
|
|
338
308
|
focusable: "false",
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
|
|
309
|
+
viewBox: "0 0 16 16",
|
|
310
|
+
"aria-hidden": "true"
|
|
311
|
+
}, props), _g$2 || (_g$2 = /*#__PURE__*/React.createElement("g", {
|
|
312
|
+
fill: "none",
|
|
313
|
+
stroke: "currentColor"
|
|
314
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
315
|
+
cx: 7.5,
|
|
316
|
+
cy: 8.5,
|
|
317
|
+
r: 7
|
|
318
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
319
|
+
strokeLinecap: "round",
|
|
320
|
+
d: "M7.5 4.5V9"
|
|
321
|
+
}))), _circle$5 || (_circle$5 = /*#__PURE__*/React.createElement("circle", {
|
|
322
|
+
cx: 7.5,
|
|
323
|
+
cy: 12,
|
|
324
|
+
r: 1,
|
|
325
|
+
fill: "currentColor"
|
|
326
|
+
})));
|
|
327
|
+
};
|
|
344
328
|
|
|
345
|
-
var
|
|
346
|
-
fill: "none",
|
|
347
|
-
stroke: "currentColor",
|
|
348
|
-
strokeLinecap: "round",
|
|
349
|
-
d: "M.88 13.77L7.06 1.86c.19-.36.7-.36.89 0l6.18 11.91c.17.33-.07.73-.44.73H1.32c-.37 0-.61-.4-.44-.73zM7.5 6v3.5"
|
|
350
|
-
});
|
|
329
|
+
var _path$n, _circle$4;
|
|
351
330
|
|
|
352
|
-
|
|
353
|
-
cx: 7.5,
|
|
354
|
-
cy: 12,
|
|
355
|
-
r: 1,
|
|
356
|
-
fill: "currentColor"
|
|
357
|
-
});
|
|
331
|
+
function _extends$r() { _extends$r = 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$r.apply(this, arguments); }
|
|
358
332
|
|
|
359
|
-
function SvgAlertWarningStroke(props) {
|
|
333
|
+
var SvgAlertWarningStroke = function SvgAlertWarningStroke(props) {
|
|
360
334
|
return /*#__PURE__*/React.createElement("svg", _extends$r({
|
|
361
335
|
xmlns: "http://www.w3.org/2000/svg",
|
|
362
336
|
width: 16,
|
|
363
337
|
height: 16,
|
|
364
|
-
viewBox: "0 0 16 16",
|
|
365
338
|
focusable: "false",
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
}
|
|
339
|
+
viewBox: "0 0 16 16",
|
|
340
|
+
"aria-hidden": "true"
|
|
341
|
+
}, props), _path$n || (_path$n = /*#__PURE__*/React.createElement("path", {
|
|
342
|
+
fill: "none",
|
|
343
|
+
stroke: "currentColor",
|
|
344
|
+
strokeLinecap: "round",
|
|
345
|
+
d: "M.88 13.77L7.06 1.86c.19-.36.7-.36.89 0l6.18 11.91c.17.33-.07.73-.44.73H1.32c-.37 0-.61-.4-.44-.73zM7.5 6v3.5"
|
|
346
|
+
})), _circle$4 || (_circle$4 = /*#__PURE__*/React.createElement("circle", {
|
|
347
|
+
cx: 7.5,
|
|
348
|
+
cy: 12,
|
|
349
|
+
r: 1,
|
|
350
|
+
fill: "currentColor"
|
|
351
|
+
})));
|
|
352
|
+
};
|
|
353
|
+
|
|
354
|
+
var _g$1;
|
|
369
355
|
|
|
370
356
|
function _extends$q() { _extends$q = 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$q.apply(this, arguments); }
|
|
371
357
|
|
|
372
|
-
var
|
|
373
|
-
fill: "none",
|
|
374
|
-
stroke: "currentColor"
|
|
375
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
376
|
-
strokeLinecap: "round",
|
|
377
|
-
strokeLinejoin: "round",
|
|
378
|
-
d: "M4 9l2.5 2.5 5-5"
|
|
379
|
-
}), /*#__PURE__*/React.createElement("circle", {
|
|
380
|
-
cx: 7.5,
|
|
381
|
-
cy: 8.5,
|
|
382
|
-
r: 7
|
|
383
|
-
}));
|
|
384
|
-
|
|
385
|
-
function SvgCheckCircleStroke$1(props) {
|
|
358
|
+
var SvgCheckCircleStroke$1 = function SvgCheckCircleStroke(props) {
|
|
386
359
|
return /*#__PURE__*/React.createElement("svg", _extends$q({
|
|
387
360
|
xmlns: "http://www.w3.org/2000/svg",
|
|
388
361
|
width: 16,
|
|
389
362
|
height: 16,
|
|
390
|
-
viewBox: "0 0 16 16",
|
|
391
363
|
focusable: "false",
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
}
|
|
364
|
+
viewBox: "0 0 16 16",
|
|
365
|
+
"aria-hidden": "true"
|
|
366
|
+
}, props), _g$1 || (_g$1 = /*#__PURE__*/React.createElement("g", {
|
|
367
|
+
fill: "none",
|
|
368
|
+
stroke: "currentColor"
|
|
369
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
370
|
+
strokeLinecap: "round",
|
|
371
|
+
strokeLinejoin: "round",
|
|
372
|
+
d: "M4 9l2.5 2.5 5-5"
|
|
373
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
374
|
+
cx: 7.5,
|
|
375
|
+
cy: 8.5,
|
|
376
|
+
r: 7
|
|
377
|
+
}))));
|
|
378
|
+
};
|
|
395
379
|
|
|
396
380
|
var _excluded$i = ["children", "validation"];
|
|
397
381
|
var MessageIcon = function MessageIcon(_ref) {
|
|
@@ -413,7 +397,7 @@ var MessageIcon = function MessageIcon(_ref) {
|
|
|
413
397
|
var COMPONENT_ID$F = 'forms.input_message_icon';
|
|
414
398
|
var StyledMessageIcon = styled(MessageIcon).attrs({
|
|
415
399
|
'data-garden-id': COMPONENT_ID$F,
|
|
416
|
-
'data-garden-version': '8.
|
|
400
|
+
'data-garden-version': '8.48.0'
|
|
417
401
|
}).withConfig({
|
|
418
402
|
displayName: "StyledMessageIcon",
|
|
419
403
|
componentId: "sc-1ph2gba-0"
|
|
@@ -446,7 +430,7 @@ var validationStyles = function validationStyles(props) {
|
|
|
446
430
|
var COMPONENT_ID$E = 'forms.input_message';
|
|
447
431
|
var StyledMessage = styled.div.attrs({
|
|
448
432
|
'data-garden-id': COMPONENT_ID$E,
|
|
449
|
-
'data-garden-version': '8.
|
|
433
|
+
'data-garden-version': '8.48.0'
|
|
450
434
|
}).withConfig({
|
|
451
435
|
displayName: "StyledMessage",
|
|
452
436
|
componentId: "sc-30hgg7-0"
|
|
@@ -538,7 +522,7 @@ var sizeStyles$f = function sizeStyles(props) {
|
|
|
538
522
|
var StyledTextInput = styled.input.attrs(function (props) {
|
|
539
523
|
return {
|
|
540
524
|
'data-garden-id': COMPONENT_ID$D,
|
|
541
|
-
'data-garden-version': '8.
|
|
525
|
+
'data-garden-version': '8.48.0',
|
|
542
526
|
'aria-invalid': isInvalid(props.validation)
|
|
543
527
|
};
|
|
544
528
|
}).withConfig({
|
|
@@ -574,7 +558,7 @@ var hiddenStyles = "\n visibility: hidden;\n position: absolute;\n overflow:
|
|
|
574
558
|
var StyledTextarea = styled(StyledTextInput).attrs({
|
|
575
559
|
as: 'textarea',
|
|
576
560
|
'data-garden-id': COMPONENT_ID$C,
|
|
577
|
-
'data-garden-version': '8.
|
|
561
|
+
'data-garden-version': '8.48.0'
|
|
578
562
|
}).withConfig({
|
|
579
563
|
displayName: "StyledTextarea",
|
|
580
564
|
componentId: "sc-wxschl-0"
|
|
@@ -625,7 +609,7 @@ function (_ref) {
|
|
|
625
609
|
return React__default.cloneElement(Children.only(children), props);
|
|
626
610
|
}).attrs({
|
|
627
611
|
'data-garden-id': COMPONENT_ID$B,
|
|
628
|
-
'data-garden-version': '8.
|
|
612
|
+
'data-garden-version': '8.48.0'
|
|
629
613
|
}).withConfig({
|
|
630
614
|
displayName: "StyledTextMediaFigure",
|
|
631
615
|
componentId: "sc-1qepknj-0"
|
|
@@ -649,7 +633,7 @@ var StyledTextFauxInput = styled(StyledTextInput).attrs(function (props) {
|
|
|
649
633
|
'aria-readonly': props.isReadOnly,
|
|
650
634
|
'aria-disabled': props.isDisabled,
|
|
651
635
|
'data-garden-id': COMPONENT_ID$A,
|
|
652
|
-
'data-garden-version': '8.
|
|
636
|
+
'data-garden-version': '8.48.0'
|
|
653
637
|
};
|
|
654
638
|
}).withConfig({
|
|
655
639
|
displayName: "StyledTextFauxInput",
|
|
@@ -674,7 +658,7 @@ StyledTextFauxInput.defaultProps = {
|
|
|
674
658
|
var COMPONENT_ID$z = 'forms.media_input';
|
|
675
659
|
var StyledTextMediaInput = styled(StyledTextInput).attrs({
|
|
676
660
|
'data-garden-id': COMPONENT_ID$z,
|
|
677
|
-
'data-garden-version': '8.
|
|
661
|
+
'data-garden-version': '8.48.0',
|
|
678
662
|
isBare: true
|
|
679
663
|
}).withConfig({
|
|
680
664
|
displayName: "StyledTextMediaInput",
|
|
@@ -699,7 +683,7 @@ var itemStyles = function itemStyles(props) {
|
|
|
699
683
|
};
|
|
700
684
|
var StyledInputGroup = styled.div.attrs({
|
|
701
685
|
'data-garden-id': COMPONENT_ID$y,
|
|
702
|
-
'data-garden-version': '8.
|
|
686
|
+
'data-garden-version': '8.48.0'
|
|
703
687
|
}).withConfig({
|
|
704
688
|
displayName: "StyledInputGroup",
|
|
705
689
|
componentId: "sc-kjh1f0-0"
|
|
@@ -723,7 +707,7 @@ var sizeStyles$d = function sizeStyles(props) {
|
|
|
723
707
|
};
|
|
724
708
|
var StyledRadioLabel = styled(StyledLabel).attrs({
|
|
725
709
|
'data-garden-id': COMPONENT_ID$x,
|
|
726
|
-
'data-garden-version': '8.
|
|
710
|
+
'data-garden-version': '8.48.0',
|
|
727
711
|
isRadio: true
|
|
728
712
|
}).withConfig({
|
|
729
713
|
displayName: "StyledRadioLabel",
|
|
@@ -740,7 +724,7 @@ StyledRadioLabel.defaultProps = {
|
|
|
740
724
|
var COMPONENT_ID$w = 'forms.checkbox_label';
|
|
741
725
|
var StyledCheckLabel = styled(StyledRadioLabel).attrs({
|
|
742
726
|
'data-garden-id': COMPONENT_ID$w,
|
|
743
|
-
'data-garden-version': '8.
|
|
727
|
+
'data-garden-version': '8.48.0'
|
|
744
728
|
}).withConfig({
|
|
745
729
|
displayName: "StyledCheckLabel",
|
|
746
730
|
componentId: "sc-x7nr1-0"
|
|
@@ -754,7 +738,7 @@ StyledCheckLabel.defaultProps = {
|
|
|
754
738
|
var COMPONENT_ID$v = 'forms.radio_hint';
|
|
755
739
|
var StyledRadioHint = styled(StyledHint).attrs({
|
|
756
740
|
'data-garden-id': COMPONENT_ID$v,
|
|
757
|
-
'data-garden-version': '8.
|
|
741
|
+
'data-garden-version': '8.48.0'
|
|
758
742
|
}).withConfig({
|
|
759
743
|
displayName: "StyledRadioHint",
|
|
760
744
|
componentId: "sc-eo8twg-0"
|
|
@@ -772,7 +756,7 @@ StyledRadioHint.defaultProps = {
|
|
|
772
756
|
var COMPONENT_ID$u = 'forms.checkbox_hint';
|
|
773
757
|
var StyledCheckHint = styled(StyledRadioHint).attrs({
|
|
774
758
|
'data-garden-id': COMPONENT_ID$u,
|
|
775
|
-
'data-garden-version': '8.
|
|
759
|
+
'data-garden-version': '8.48.0'
|
|
776
760
|
}).withConfig({
|
|
777
761
|
displayName: "StyledCheckHint",
|
|
778
762
|
componentId: "sc-1kl8e8c-0"
|
|
@@ -812,16 +796,16 @@ var sizeStyles$c = function sizeStyles(props) {
|
|
|
812
796
|
var iconPosition = math("(".concat(size, " - ").concat(iconSize, ") / 2"));
|
|
813
797
|
var iconTop = math("".concat(iconPosition, " + ").concat(top));
|
|
814
798
|
var marginTop = "".concat(props.theme.space.base * (props.isCompact ? 1 : 2), "px");
|
|
815
|
-
return css(["
|
|
799
|
+
return css(["top:", ";width:", ";height:", ";& ~ ", "::before{top:", ";background-size:", ";width:", ";height:", ";box-sizing:border-box;}& ~ ", " > svg{top:", ";", ":", ";width:", ";height:", ";}&& ~ ", " ~ ", "{margin-top:", ";}"], top, size, size, StyledRadioLabel, top, props.theme.iconSizes.sm, size, size, StyledRadioLabel, iconTop, props.theme.rtl ? 'right' : 'left', iconPosition, iconSize, iconSize, StyledRadioLabel, StyledMessage, marginTop);
|
|
816
800
|
};
|
|
817
801
|
var StyledRadioInput = styled.input.attrs({
|
|
818
802
|
'data-garden-id': COMPONENT_ID$t,
|
|
819
|
-
'data-garden-version': '8.
|
|
803
|
+
'data-garden-version': '8.48.0',
|
|
820
804
|
type: 'radio'
|
|
821
805
|
}).withConfig({
|
|
822
806
|
displayName: "StyledRadioInput",
|
|
823
807
|
componentId: "sc-qsavpv-0"
|
|
824
|
-
})(["position:absolute;
|
|
808
|
+
})(["position:absolute;opacity:0;margin:0;& ~ ", "::before{position:absolute;", ":0;transition:border-color .25s ease-in-out,box-shadow .1s ease-in-out,background-color .25s ease-in-out,color .25s ease-in-out;border:", ";border-radius:50%;background-repeat:no-repeat;background-position:center;content:'';}& ~ ", " > svg{position:absolute;}", ";&:focus ~ ", "::before{outline:none;}& ~ ", ":active::before{transition:border-color 0.1s ease-in-out,background-color 0.1s ease-in-out,color 0.1s ease-in-out;}", ";&:disabled ~ ", "{cursor:default;}", ";"], StyledRadioLabel, function (props) {
|
|
825
809
|
return props.theme.rtl ? 'right' : 'left';
|
|
826
810
|
}, function (props) {
|
|
827
811
|
return props.theme.borders.sm;
|
|
@@ -848,7 +832,7 @@ var colorStyles$8 = function colorStyles(props) {
|
|
|
848
832
|
};
|
|
849
833
|
var StyledCheckInput = styled(StyledRadioInput).attrs({
|
|
850
834
|
'data-garden-id': COMPONENT_ID$s,
|
|
851
|
-
'data-garden-version': '8.
|
|
835
|
+
'data-garden-version': '8.48.0',
|
|
852
836
|
type: 'checkbox'
|
|
853
837
|
}).withConfig({
|
|
854
838
|
displayName: "StyledCheckInput",
|
|
@@ -867,7 +851,7 @@ StyledCheckInput.defaultProps = {
|
|
|
867
851
|
var COMPONENT_ID$r = 'forms.radio_message';
|
|
868
852
|
var StyledRadioMessage = styled(StyledMessage).attrs({
|
|
869
853
|
'data-garden-id': COMPONENT_ID$r,
|
|
870
|
-
'data-garden-version': '8.
|
|
854
|
+
'data-garden-version': '8.48.0'
|
|
871
855
|
}).withConfig({
|
|
872
856
|
displayName: "StyledRadioMessage",
|
|
873
857
|
componentId: "sc-1pmi0q8-0"
|
|
@@ -885,7 +869,7 @@ StyledRadioMessage.defaultProps = {
|
|
|
885
869
|
var COMPONENT_ID$q = 'forms.checkbox_message';
|
|
886
870
|
var StyledCheckMessage = styled(StyledRadioMessage).attrs({
|
|
887
871
|
'data-garden-id': COMPONENT_ID$q,
|
|
888
|
-
'data-garden-version': '8.
|
|
872
|
+
'data-garden-version': '8.48.0'
|
|
889
873
|
}).withConfig({
|
|
890
874
|
displayName: "StyledCheckMessage",
|
|
891
875
|
componentId: "sc-s4p6kd-0"
|
|
@@ -896,32 +880,32 @@ StyledCheckMessage.defaultProps = {
|
|
|
896
880
|
theme: DEFAULT_THEME
|
|
897
881
|
};
|
|
898
882
|
|
|
899
|
-
|
|
883
|
+
var _path$m;
|
|
900
884
|
|
|
901
|
-
|
|
902
|
-
fill: "none",
|
|
903
|
-
stroke: "currentColor",
|
|
904
|
-
strokeLinecap: "round",
|
|
905
|
-
strokeLinejoin: "round",
|
|
906
|
-
strokeWidth: 2,
|
|
907
|
-
d: "M3 6l2 2 4-4"
|
|
908
|
-
});
|
|
885
|
+
function _extends$p() { _extends$p = 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$p.apply(this, arguments); }
|
|
909
886
|
|
|
910
|
-
function SvgCheckSmFill(props) {
|
|
887
|
+
var SvgCheckSmFill = function SvgCheckSmFill(props) {
|
|
911
888
|
return /*#__PURE__*/React.createElement("svg", _extends$p({
|
|
912
889
|
xmlns: "http://www.w3.org/2000/svg",
|
|
913
890
|
width: 12,
|
|
914
891
|
height: 12,
|
|
915
|
-
viewBox: "0 0 12 12",
|
|
916
892
|
focusable: "false",
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
}
|
|
893
|
+
viewBox: "0 0 12 12",
|
|
894
|
+
"aria-hidden": "true"
|
|
895
|
+
}, props), _path$m || (_path$m = /*#__PURE__*/React.createElement("path", {
|
|
896
|
+
fill: "none",
|
|
897
|
+
stroke: "currentColor",
|
|
898
|
+
strokeLinecap: "round",
|
|
899
|
+
strokeLinejoin: "round",
|
|
900
|
+
strokeWidth: 2,
|
|
901
|
+
d: "M3 6l2 2 4-4"
|
|
902
|
+
})));
|
|
903
|
+
};
|
|
920
904
|
|
|
921
905
|
var COMPONENT_ID$p = 'forms.check_svg';
|
|
922
906
|
var StyledCheckSvg = styled(SvgCheckSmFill).attrs({
|
|
923
907
|
'data-garden-id': COMPONENT_ID$p,
|
|
924
|
-
'data-garden-version': '8.
|
|
908
|
+
'data-garden-version': '8.48.0'
|
|
925
909
|
}).withConfig({
|
|
926
910
|
displayName: "StyledCheckSvg",
|
|
927
911
|
componentId: "sc-fvxetk-0"
|
|
@@ -932,30 +916,30 @@ StyledCheckSvg.defaultProps = {
|
|
|
932
916
|
theme: DEFAULT_THEME
|
|
933
917
|
};
|
|
934
918
|
|
|
935
|
-
|
|
919
|
+
var _path$l;
|
|
936
920
|
|
|
937
|
-
|
|
938
|
-
stroke: "currentColor",
|
|
939
|
-
strokeLinecap: "round",
|
|
940
|
-
strokeWidth: 2,
|
|
941
|
-
d: "M3 6h6"
|
|
942
|
-
});
|
|
921
|
+
function _extends$o() { _extends$o = 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$o.apply(this, arguments); }
|
|
943
922
|
|
|
944
|
-
function SvgDashFill(props) {
|
|
923
|
+
var SvgDashFill = function SvgDashFill(props) {
|
|
945
924
|
return /*#__PURE__*/React.createElement("svg", _extends$o({
|
|
946
925
|
xmlns: "http://www.w3.org/2000/svg",
|
|
947
926
|
width: 12,
|
|
948
927
|
height: 12,
|
|
949
|
-
viewBox: "0 0 12 12",
|
|
950
928
|
focusable: "false",
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
}
|
|
929
|
+
viewBox: "0 0 12 12",
|
|
930
|
+
"aria-hidden": "true"
|
|
931
|
+
}, props), _path$l || (_path$l = /*#__PURE__*/React.createElement("path", {
|
|
932
|
+
stroke: "currentColor",
|
|
933
|
+
strokeLinecap: "round",
|
|
934
|
+
strokeWidth: 2,
|
|
935
|
+
d: "M3 6h6"
|
|
936
|
+
})));
|
|
937
|
+
};
|
|
954
938
|
|
|
955
939
|
var COMPONENT_ID$o = 'forms.dash_svg';
|
|
956
940
|
var StyledDashSvg = styled(SvgDashFill).attrs({
|
|
957
941
|
'data-garden-id': COMPONENT_ID$o,
|
|
958
|
-
'data-garden-version': '8.
|
|
942
|
+
'data-garden-version': '8.48.0'
|
|
959
943
|
}).withConfig({
|
|
960
944
|
displayName: "StyledDashSvg",
|
|
961
945
|
componentId: "sc-z3vq71-0"
|
|
@@ -986,7 +970,7 @@ var sizeStyles$b = function sizeStyles(props) {
|
|
|
986
970
|
};
|
|
987
971
|
var StyledFileUpload = styled.div.attrs({
|
|
988
972
|
'data-garden-id': COMPONENT_ID$n,
|
|
989
|
-
'data-garden-version': '8.
|
|
973
|
+
'data-garden-version': '8.48.0'
|
|
990
974
|
}).withConfig({
|
|
991
975
|
displayName: "StyledFileUpload",
|
|
992
976
|
componentId: "sc-1rodjgn-0"
|
|
@@ -1006,7 +990,7 @@ StyledFileUpload.defaultProps = {
|
|
|
1006
990
|
var COMPONENT_ID$m = 'forms.file.close';
|
|
1007
991
|
var StyledFileClose = styled.div.attrs({
|
|
1008
992
|
'data-garden-id': COMPONENT_ID$m,
|
|
1009
|
-
'data-garden-version': '8.
|
|
993
|
+
'data-garden-version': '8.48.0'
|
|
1010
994
|
}).withConfig({
|
|
1011
995
|
displayName: "StyledFileClose",
|
|
1012
996
|
componentId: "sc-1m31jbf-0"
|
|
@@ -1049,7 +1033,7 @@ var sizeStyles$a = function sizeStyles(props) {
|
|
|
1049
1033
|
};
|
|
1050
1034
|
var StyledFile = styled.div.attrs({
|
|
1051
1035
|
'data-garden-id': COMPONENT_ID$l,
|
|
1052
|
-
'data-garden-version': '8.
|
|
1036
|
+
'data-garden-version': '8.48.0'
|
|
1053
1037
|
}).withConfig({
|
|
1054
1038
|
displayName: "StyledFile",
|
|
1055
1039
|
componentId: "sc-195lzp1-0"
|
|
@@ -1065,7 +1049,7 @@ StyledFile.defaultProps = {
|
|
|
1065
1049
|
var COMPONENT_ID$k = 'forms.file.delete';
|
|
1066
1050
|
var StyledFileDelete = styled(StyledFileClose).attrs({
|
|
1067
1051
|
'data-garden-id': COMPONENT_ID$k,
|
|
1068
|
-
'data-garden-version': '8.
|
|
1052
|
+
'data-garden-version': '8.48.0'
|
|
1069
1053
|
}).withConfig({
|
|
1070
1054
|
displayName: "StyledFileDelete",
|
|
1071
1055
|
componentId: "sc-a8nnhx-0"
|
|
@@ -1088,7 +1072,7 @@ var StyledFileIcon = styled(function (_ref) {
|
|
|
1088
1072
|
return React__default.cloneElement(Children.only(children), props);
|
|
1089
1073
|
}).attrs({
|
|
1090
1074
|
'data-garden-id': COMPONENT_ID$j,
|
|
1091
|
-
'data-garden-version': '8.
|
|
1075
|
+
'data-garden-version': '8.48.0'
|
|
1092
1076
|
}).withConfig({
|
|
1093
1077
|
displayName: "StyledFileIcon",
|
|
1094
1078
|
componentId: "sc-7b3q0c-0"
|
|
@@ -1108,7 +1092,7 @@ StyledFileIcon.defaultProps = {
|
|
|
1108
1092
|
var COMPONENT_ID$i = 'forms.file_list';
|
|
1109
1093
|
var StyledFileList = styled.ul.attrs({
|
|
1110
1094
|
'data-garden-id': COMPONENT_ID$i,
|
|
1111
|
-
'data-garden-version': '8.
|
|
1095
|
+
'data-garden-version': '8.48.0'
|
|
1112
1096
|
}).withConfig({
|
|
1113
1097
|
displayName: "StyledFileList",
|
|
1114
1098
|
componentId: "sc-gbahjg-0"
|
|
@@ -1122,7 +1106,7 @@ StyledFileList.defaultProps = {
|
|
|
1122
1106
|
var COMPONENT_ID$h = 'forms.file_list.item';
|
|
1123
1107
|
var StyledFileListItem = styled.li.attrs({
|
|
1124
1108
|
'data-garden-id': COMPONENT_ID$h,
|
|
1125
|
-
'data-garden-version': '8.
|
|
1109
|
+
'data-garden-version': '8.48.0'
|
|
1126
1110
|
}).withConfig({
|
|
1127
1111
|
displayName: "StyledFileListItem",
|
|
1128
1112
|
componentId: "sc-1ova3lo-0"
|
|
@@ -1135,30 +1119,30 @@ StyledFileListItem.defaultProps = {
|
|
|
1135
1119
|
theme: DEFAULT_THEME
|
|
1136
1120
|
};
|
|
1137
1121
|
|
|
1138
|
-
|
|
1122
|
+
var _circle$3;
|
|
1139
1123
|
|
|
1140
|
-
|
|
1141
|
-
cx: 6,
|
|
1142
|
-
cy: 6,
|
|
1143
|
-
r: 2,
|
|
1144
|
-
fill: "currentColor"
|
|
1145
|
-
});
|
|
1124
|
+
function _extends$n() { _extends$n = 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$n.apply(this, arguments); }
|
|
1146
1125
|
|
|
1147
|
-
|
|
1126
|
+
var SvgCircleSmFill$1 = function SvgCircleSmFill(props) {
|
|
1148
1127
|
return /*#__PURE__*/React.createElement("svg", _extends$n({
|
|
1149
1128
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1150
1129
|
width: 12,
|
|
1151
1130
|
height: 12,
|
|
1152
|
-
viewBox: "0 0 12 12",
|
|
1153
1131
|
focusable: "false",
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
}
|
|
1132
|
+
viewBox: "0 0 12 12",
|
|
1133
|
+
"aria-hidden": "true"
|
|
1134
|
+
}, props), _circle$3 || (_circle$3 = /*#__PURE__*/React.createElement("circle", {
|
|
1135
|
+
cx: 6,
|
|
1136
|
+
cy: 6,
|
|
1137
|
+
r: 2,
|
|
1138
|
+
fill: "currentColor"
|
|
1139
|
+
})));
|
|
1140
|
+
};
|
|
1157
1141
|
|
|
1158
1142
|
var COMPONENT_ID$g = 'forms.radio_svg';
|
|
1159
1143
|
var StyledRadioSvg = styled(SvgCircleSmFill$1).attrs({
|
|
1160
1144
|
'data-garden-id': COMPONENT_ID$g,
|
|
1161
|
-
'data-garden-version': '8.
|
|
1145
|
+
'data-garden-version': '8.48.0'
|
|
1162
1146
|
}).withConfig({
|
|
1163
1147
|
displayName: "StyledRadioSvg",
|
|
1164
1148
|
componentId: "sc-1r1qtr1-0"
|
|
@@ -1177,7 +1161,7 @@ var sizeStyles$9 = function sizeStyles(props) {
|
|
|
1177
1161
|
};
|
|
1178
1162
|
var StyledToggleLabel = styled(StyledCheckLabel).attrs({
|
|
1179
1163
|
'data-garden-id': COMPONENT_ID$f,
|
|
1180
|
-
'data-garden-version': '8.
|
|
1164
|
+
'data-garden-version': '8.48.0'
|
|
1181
1165
|
}).withConfig({
|
|
1182
1166
|
displayName: "StyledToggleLabel",
|
|
1183
1167
|
componentId: "sc-e0asdk-0"
|
|
@@ -1193,7 +1177,7 @@ StyledToggleLabel.defaultProps = {
|
|
|
1193
1177
|
var COMPONENT_ID$e = 'forms.toggle_hint';
|
|
1194
1178
|
var StyledToggleHint = styled(StyledHint).attrs({
|
|
1195
1179
|
'data-garden-id': COMPONENT_ID$e,
|
|
1196
|
-
'data-garden-version': '8.
|
|
1180
|
+
'data-garden-version': '8.48.0'
|
|
1197
1181
|
}).withConfig({
|
|
1198
1182
|
displayName: "StyledToggleHint",
|
|
1199
1183
|
componentId: "sc-nziggu-0"
|
|
@@ -1222,11 +1206,11 @@ var sizeStyles$8 = function sizeStyles(props) {
|
|
|
1222
1206
|
var iconSize = props.theme.iconSizes.md;
|
|
1223
1207
|
var iconPosition = math("(".concat(height, " - ").concat(iconSize, ") / 2"));
|
|
1224
1208
|
var checkedIconPosition = math("".concat(width, " - ").concat(iconSize, " - ").concat(iconPosition));
|
|
1225
|
-
return css(["
|
|
1209
|
+
return css(["top:0;width:", ";height:", ";& ~ ", "::before{width:", ";height:", ";}& ~ ", " > svg{top:", ";", ":", ";width:", ";height:", ";}&:checked ~ ", " > svg{", ":", ";}"], width, height, StyledToggleLabel, width, height, StyledToggleLabel, iconPosition, props.theme.rtl ? 'right' : 'left', iconPosition, iconSize, iconSize, StyledToggleLabel, props.theme.rtl ? 'right' : 'left', checkedIconPosition);
|
|
1226
1210
|
};
|
|
1227
1211
|
var StyledToggleInput = styled(StyledCheckInput).attrs({
|
|
1228
1212
|
'data-garden-id': COMPONENT_ID$d,
|
|
1229
|
-
'data-garden-version': '8.
|
|
1213
|
+
'data-garden-version': '8.48.0'
|
|
1230
1214
|
}).withConfig({
|
|
1231
1215
|
displayName: "StyledToggleInput",
|
|
1232
1216
|
componentId: "sc-sgp47s-0"
|
|
@@ -1244,7 +1228,7 @@ StyledToggleInput.defaultProps = {
|
|
|
1244
1228
|
var COMPONENT_ID$c = 'forms.toggle_message';
|
|
1245
1229
|
var StyledToggleMessage = styled(StyledMessage).attrs({
|
|
1246
1230
|
'data-garden-id': COMPONENT_ID$c,
|
|
1247
|
-
'data-garden-version': '8.
|
|
1231
|
+
'data-garden-version': '8.48.0'
|
|
1248
1232
|
}).withConfig({
|
|
1249
1233
|
displayName: "StyledToggleMessage",
|
|
1250
1234
|
componentId: "sc-13vuvl1-0"
|
|
@@ -1263,30 +1247,30 @@ StyledToggleMessage.defaultProps = {
|
|
|
1263
1247
|
theme: DEFAULT_THEME
|
|
1264
1248
|
};
|
|
1265
1249
|
|
|
1266
|
-
|
|
1250
|
+
var _circle$2;
|
|
1267
1251
|
|
|
1268
|
-
|
|
1269
|
-
cx: 8,
|
|
1270
|
-
cy: 8,
|
|
1271
|
-
r: 6,
|
|
1272
|
-
fill: "currentColor"
|
|
1273
|
-
});
|
|
1252
|
+
function _extends$m() { _extends$m = 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$m.apply(this, arguments); }
|
|
1274
1253
|
|
|
1275
|
-
function SvgCircleSmFill(props) {
|
|
1254
|
+
var SvgCircleSmFill = function SvgCircleSmFill(props) {
|
|
1276
1255
|
return /*#__PURE__*/React.createElement("svg", _extends$m({
|
|
1277
1256
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1278
1257
|
width: 16,
|
|
1279
1258
|
height: 16,
|
|
1280
|
-
viewBox: "0 0 16 16",
|
|
1281
1259
|
focusable: "false",
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
}
|
|
1260
|
+
viewBox: "0 0 16 16",
|
|
1261
|
+
"aria-hidden": "true"
|
|
1262
|
+
}, props), _circle$2 || (_circle$2 = /*#__PURE__*/React.createElement("circle", {
|
|
1263
|
+
cx: 8,
|
|
1264
|
+
cy: 8,
|
|
1265
|
+
r: 6,
|
|
1266
|
+
fill: "currentColor"
|
|
1267
|
+
})));
|
|
1268
|
+
};
|
|
1285
1269
|
|
|
1286
1270
|
var COMPONENT_ID$b = 'forms.toggle_svg';
|
|
1287
1271
|
var StyledToggleSvg = styled(SvgCircleSmFill).attrs({
|
|
1288
1272
|
'data-garden-id': COMPONENT_ID$b,
|
|
1289
|
-
'data-garden-version': '8.
|
|
1273
|
+
'data-garden-version': '8.48.0'
|
|
1290
1274
|
}).withConfig({
|
|
1291
1275
|
displayName: "StyledToggleSvg",
|
|
1292
1276
|
componentId: "sc-162xbyx-0"
|
|
@@ -1310,7 +1294,7 @@ var sizeStyles$7 = function sizeStyles(props) {
|
|
|
1310
1294
|
};
|
|
1311
1295
|
var StyledSelect = styled(StyledTextInput).attrs({
|
|
1312
1296
|
'data-garden-id': COMPONENT_ID$a,
|
|
1313
|
-
'data-garden-version': '8.
|
|
1297
|
+
'data-garden-version': '8.48.0',
|
|
1314
1298
|
as: 'select'
|
|
1315
1299
|
}).withConfig({
|
|
1316
1300
|
displayName: "StyledSelect",
|
|
@@ -1329,7 +1313,7 @@ StyledSelect.defaultProps = {
|
|
|
1329
1313
|
var COMPONENT_ID$9 = 'forms.select_wrapper';
|
|
1330
1314
|
var StyledSelectWrapper = styled(StyledTextFauxInput).attrs({
|
|
1331
1315
|
'data-garden-id': COMPONENT_ID$9,
|
|
1332
|
-
'data-garden-version': '8.
|
|
1316
|
+
'data-garden-version': '8.48.0',
|
|
1333
1317
|
isBare: true
|
|
1334
1318
|
}).withConfig({
|
|
1335
1319
|
displayName: "StyledSelectWrapper",
|
|
@@ -1382,7 +1366,7 @@ var sizeStyles$6 = function sizeStyles(props) {
|
|
|
1382
1366
|
var StyledRangeInput = styled.input.attrs(function (props) {
|
|
1383
1367
|
return {
|
|
1384
1368
|
'data-garden-id': COMPONENT_ID$8,
|
|
1385
|
-
'data-garden-version': '8.
|
|
1369
|
+
'data-garden-version': '8.48.0',
|
|
1386
1370
|
type: 'range',
|
|
1387
1371
|
style: {
|
|
1388
1372
|
backgroundSize: props.hasLowerTrack && props.backgroundSize
|
|
@@ -1414,7 +1398,7 @@ var COMPONENT_ID$7 = 'forms.slider';
|
|
|
1414
1398
|
var StyledSlider = styled.div.attrs(function (props) {
|
|
1415
1399
|
return {
|
|
1416
1400
|
'data-garden-id': COMPONENT_ID$7,
|
|
1417
|
-
'data-garden-version': '8.
|
|
1401
|
+
'data-garden-version': '8.48.0',
|
|
1418
1402
|
'aria-disabled': props.isDisabled
|
|
1419
1403
|
};
|
|
1420
1404
|
}).withConfig({
|
|
@@ -1454,7 +1438,7 @@ var sizeStyles$5 = function sizeStyles(props) {
|
|
|
1454
1438
|
var StyledSliderThumb = styled.div.attrs(function (props) {
|
|
1455
1439
|
return {
|
|
1456
1440
|
'data-garden-id': COMPONENT_ID$6,
|
|
1457
|
-
'data-garden-version': '8.
|
|
1441
|
+
'data-garden-version': '8.48.0',
|
|
1458
1442
|
'aria-disabled': props.isDisabled
|
|
1459
1443
|
};
|
|
1460
1444
|
}).withConfig({
|
|
@@ -1498,7 +1482,7 @@ var sizeStyles$4 = function sizeStyles(props) {
|
|
|
1498
1482
|
var StyledSliderTrack = styled.div.attrs(function (props) {
|
|
1499
1483
|
return {
|
|
1500
1484
|
'data-garden-id': COMPONENT_ID$5,
|
|
1501
|
-
'data-garden-version': '8.
|
|
1485
|
+
'data-garden-version': '8.48.0',
|
|
1502
1486
|
'aria-disabled': props.isDisabled
|
|
1503
1487
|
};
|
|
1504
1488
|
}).withConfig({
|
|
@@ -1525,7 +1509,7 @@ var sizeStyles$3 = function sizeStyles(props) {
|
|
|
1525
1509
|
};
|
|
1526
1510
|
var StyledSliderTrackRail = styled.div.attrs({
|
|
1527
1511
|
'data-garden-id': COMPONENT_ID$4,
|
|
1528
|
-
'data-garden-version': '8.
|
|
1512
|
+
'data-garden-version': '8.48.0'
|
|
1529
1513
|
}).withConfig({
|
|
1530
1514
|
displayName: "StyledSliderTrackRail",
|
|
1531
1515
|
componentId: "sc-1o5owbd-0"
|
|
@@ -1556,7 +1540,7 @@ var sizeStyles$2 = function sizeStyles(props) {
|
|
|
1556
1540
|
};
|
|
1557
1541
|
var StyledTileIcon = styled.span.attrs({
|
|
1558
1542
|
'data-garden-id': COMPONENT_ID$3,
|
|
1559
|
-
'data-garden-version': '8.
|
|
1543
|
+
'data-garden-version': '8.48.0'
|
|
1560
1544
|
}).withConfig({
|
|
1561
1545
|
displayName: "StyledTileIcon",
|
|
1562
1546
|
componentId: "sc-1wazhg4-0"
|
|
@@ -1596,7 +1580,7 @@ var colorStyles = function colorStyles(props) {
|
|
|
1596
1580
|
var StyledTile = styled.label.attrs(function (props) {
|
|
1597
1581
|
return {
|
|
1598
1582
|
'data-garden-id': COMPONENT_ID$2,
|
|
1599
|
-
'data-garden-version': '8.
|
|
1583
|
+
'data-garden-version': '8.48.0',
|
|
1600
1584
|
'data-garden-focus-visible': props.isFocused,
|
|
1601
1585
|
'data-garden-selected': props.isSelected
|
|
1602
1586
|
};
|
|
@@ -1634,7 +1618,7 @@ var sizeStyles$1 = function sizeStyles(props) {
|
|
|
1634
1618
|
};
|
|
1635
1619
|
var StyledTileDescription = styled.span.attrs({
|
|
1636
1620
|
'data-garden-id': COMPONENT_ID$1,
|
|
1637
|
-
'data-garden-version': '8.
|
|
1621
|
+
'data-garden-version': '8.48.0'
|
|
1638
1622
|
}).withConfig({
|
|
1639
1623
|
displayName: "StyledTileDescription",
|
|
1640
1624
|
componentId: "sc-xfuu7u-0"
|
|
@@ -1677,7 +1661,7 @@ var sizeStyles = function sizeStyles(props) {
|
|
|
1677
1661
|
};
|
|
1678
1662
|
var StyledTileLabel = styled.span.attrs({
|
|
1679
1663
|
'data-garden-id': COMPONENT_ID,
|
|
1680
|
-
'data-garden-version': '8.
|
|
1664
|
+
'data-garden-version': '8.48.0'
|
|
1681
1665
|
}).withConfig({
|
|
1682
1666
|
displayName: "StyledTileLabel",
|
|
1683
1667
|
componentId: "sc-1mypv27-0"
|
|
@@ -1730,9 +1714,7 @@ var Field = React__default.forwardRef(function (props, ref) {
|
|
|
1730
1714
|
ref: ref
|
|
1731
1715
|
})));
|
|
1732
1716
|
});
|
|
1733
|
-
Field.
|
|
1734
|
-
id: PropTypes.string
|
|
1735
|
-
};
|
|
1717
|
+
Field.displayName = 'Field';
|
|
1736
1718
|
|
|
1737
1719
|
var FieldsetContext = createContext(undefined);
|
|
1738
1720
|
var useFieldsetContext = function useFieldsetContext() {
|
|
@@ -1740,15 +1722,16 @@ var useFieldsetContext = function useFieldsetContext() {
|
|
|
1740
1722
|
return fieldsetContext;
|
|
1741
1723
|
};
|
|
1742
1724
|
|
|
1743
|
-
var
|
|
1725
|
+
var LegendComponent = forwardRef(function (props, ref) {
|
|
1744
1726
|
var fieldsetContext = useFieldsetContext();
|
|
1745
1727
|
return React__default.createElement(StyledLegend, _extends$t({}, props, fieldsetContext, {
|
|
1746
1728
|
ref: ref
|
|
1747
1729
|
}));
|
|
1748
1730
|
});
|
|
1749
|
-
|
|
1731
|
+
LegendComponent.displayName = 'Fieldset.Legend';
|
|
1732
|
+
var Legend = LegendComponent;
|
|
1750
1733
|
|
|
1751
|
-
var
|
|
1734
|
+
var FieldsetComponent = forwardRef(function (props, ref) {
|
|
1752
1735
|
var fieldsetContext = useMemo(function () {
|
|
1753
1736
|
return {
|
|
1754
1737
|
isCompact: props.isCompact
|
|
@@ -1760,8 +1743,9 @@ var Fieldset = forwardRef(function (props, ref) {
|
|
|
1760
1743
|
ref: ref
|
|
1761
1744
|
})));
|
|
1762
1745
|
});
|
|
1746
|
+
FieldsetComponent.displayName = 'Fieldset';
|
|
1747
|
+
var Fieldset = FieldsetComponent;
|
|
1763
1748
|
Fieldset.Legend = Legend;
|
|
1764
|
-
Fieldset.displayName = 'Fieldset';
|
|
1765
1749
|
|
|
1766
1750
|
var InputContext = createContext(undefined);
|
|
1767
1751
|
var useInputContext = function useInputContext() {
|
|
@@ -1970,6 +1954,7 @@ Input.propTypes = {
|
|
|
1970
1954
|
focusInset: PropTypes.bool,
|
|
1971
1955
|
validation: PropTypes.oneOf(['success', 'warning', 'error'])
|
|
1972
1956
|
};
|
|
1957
|
+
Input.displayName = 'Input';
|
|
1973
1958
|
|
|
1974
1959
|
var _excluded$c = ["children"];
|
|
1975
1960
|
var Radio = React__default.forwardRef(function (_ref, ref) {
|
|
@@ -2041,6 +2026,7 @@ Range.defaultProps = {
|
|
|
2041
2026
|
max: 100,
|
|
2042
2027
|
step: 1
|
|
2043
2028
|
};
|
|
2029
|
+
Range.displayName = 'Range';
|
|
2044
2030
|
|
|
2045
2031
|
var _excluded$a = ["minRows", "maxRows", "style", "onChange", "onSelect"];
|
|
2046
2032
|
var parseStyleValue = function parseStyleValue(value) {
|
|
@@ -2165,6 +2151,7 @@ Textarea.propTypes = {
|
|
|
2165
2151
|
maxRows: PropTypes.number,
|
|
2166
2152
|
validation: PropTypes.oneOf(['success', 'warning', 'error'])
|
|
2167
2153
|
};
|
|
2154
|
+
Textarea.displayName = 'Textarea';
|
|
2168
2155
|
|
|
2169
2156
|
var _excluded$9 = ["children"];
|
|
2170
2157
|
var Toggle = React__default.forwardRef(function (_ref, ref) {
|
|
@@ -2184,36 +2171,42 @@ var Toggle = React__default.forwardRef(function (_ref, ref) {
|
|
|
2184
2171
|
});
|
|
2185
2172
|
Toggle.displayName = 'Toggle';
|
|
2186
2173
|
|
|
2187
|
-
|
|
2174
|
+
var _path$k;
|
|
2188
2175
|
|
|
2189
|
-
|
|
2190
|
-
fill: "currentColor",
|
|
2191
|
-
d: "M12.688 5.61a.5.5 0 01.69.718l-.066.062-5 4a.5.5 0 01-.542.054l-.082-.054-5-4a.5.5 0 01.55-.83l.074.05L8 9.359l4.688-3.75z"
|
|
2192
|
-
});
|
|
2176
|
+
function _extends$l() { _extends$l = 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$l.apply(this, arguments); }
|
|
2193
2177
|
|
|
2194
|
-
function SvgChevronDownStroke(props) {
|
|
2178
|
+
var SvgChevronDownStroke = function SvgChevronDownStroke(props) {
|
|
2195
2179
|
return /*#__PURE__*/React.createElement("svg", _extends$l({
|
|
2196
2180
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2197
2181
|
width: 16,
|
|
2198
2182
|
height: 16,
|
|
2199
|
-
viewBox: "0 0 16 16",
|
|
2200
2183
|
focusable: "false",
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
}
|
|
2184
|
+
viewBox: "0 0 16 16",
|
|
2185
|
+
"aria-hidden": "true"
|
|
2186
|
+
}, props), _path$k || (_path$k = /*#__PURE__*/React.createElement("path", {
|
|
2187
|
+
fill: "currentColor",
|
|
2188
|
+
d: "M12.688 5.61a.5.5 0 01.69.718l-.066.062-5 4a.5.5 0 01-.542.054l-.082-.054-5-4a.5.5 0 01.55-.83l.074.05L8 9.359l4.688-3.75z"
|
|
2189
|
+
})));
|
|
2190
|
+
};
|
|
2204
2191
|
|
|
2205
|
-
var
|
|
2206
|
-
var StartIcon = function StartIcon(props) {
|
|
2192
|
+
var StartIconComponent = function StartIconComponent(props) {
|
|
2207
2193
|
return React__default.createElement(StyledTextMediaFigure, _extends$t({
|
|
2208
2194
|
position: "start"
|
|
2209
2195
|
}, props));
|
|
2210
2196
|
};
|
|
2211
|
-
|
|
2197
|
+
StartIconComponent.displayName = 'FauxInput.StartIcon';
|
|
2198
|
+
var StartIcon = StartIconComponent;
|
|
2199
|
+
|
|
2200
|
+
var EndIconComponent = function EndIconComponent(props) {
|
|
2212
2201
|
return React__default.createElement(StyledTextMediaFigure, _extends$t({
|
|
2213
2202
|
position: "end"
|
|
2214
2203
|
}, props));
|
|
2215
2204
|
};
|
|
2216
|
-
|
|
2205
|
+
EndIconComponent.displayName = 'FauxInput.EndIcon';
|
|
2206
|
+
var EndIcon = EndIconComponent;
|
|
2207
|
+
|
|
2208
|
+
var _excluded$8 = ["onFocus", "onBlur", "disabled", "readOnly", "isFocused"];
|
|
2209
|
+
var FauxInputComponent = forwardRef(function (_ref, ref) {
|
|
2217
2210
|
var onFocus = _ref.onFocus,
|
|
2218
2211
|
onBlur = _ref.onBlur,
|
|
2219
2212
|
disabled = _ref.disabled,
|
|
@@ -2241,10 +2234,8 @@ var FauxInput = forwardRef(function (_ref, ref) {
|
|
|
2241
2234
|
ref: ref
|
|
2242
2235
|
}));
|
|
2243
2236
|
});
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
FauxInput.displayName = 'FauxInput';
|
|
2247
|
-
FauxInput.propTypes = {
|
|
2237
|
+
FauxInputComponent.displayName = 'FauxInput';
|
|
2238
|
+
FauxInputComponent.propTypes = {
|
|
2248
2239
|
isCompact: PropTypes.bool,
|
|
2249
2240
|
isBare: PropTypes.bool,
|
|
2250
2241
|
focusInset: PropTypes.bool,
|
|
@@ -2252,6 +2243,9 @@ FauxInput.propTypes = {
|
|
|
2252
2243
|
readOnly: PropTypes.bool,
|
|
2253
2244
|
validation: PropTypes.oneOf(['success', 'warning', 'error'])
|
|
2254
2245
|
};
|
|
2246
|
+
var FauxInput = FauxInputComponent;
|
|
2247
|
+
FauxInput.EndIcon = EndIcon;
|
|
2248
|
+
FauxInput.StartIcon = StartIcon;
|
|
2255
2249
|
|
|
2256
2250
|
var _excluded$7 = ["disabled", "isCompact"];
|
|
2257
2251
|
var Select = React__default.forwardRef(function (_ref, ref) {
|
|
@@ -2281,9 +2275,10 @@ Select.propTypes = {
|
|
|
2281
2275
|
focusInset: PropTypes.bool,
|
|
2282
2276
|
validation: PropTypes.oneOf(['success', 'warning', 'error'])
|
|
2283
2277
|
};
|
|
2278
|
+
Select.displayName = 'Select';
|
|
2284
2279
|
|
|
2285
|
-
var _excluded$6 = ["min", "max", "minValue", "maxValue", "disabled", "step", "onChange", "
|
|
2286
|
-
var MultiThumbRange = function
|
|
2280
|
+
var _excluded$6 = ["min", "max", "minValue", "maxValue", "disabled", "step", "onChange", "onMouseDown"];
|
|
2281
|
+
var MultiThumbRange = forwardRef(function (_ref, ref) {
|
|
2287
2282
|
var min = _ref.min,
|
|
2288
2283
|
max = _ref.max,
|
|
2289
2284
|
minValue = _ref.minValue,
|
|
@@ -2291,9 +2286,9 @@ var MultiThumbRange = function MultiThumbRange(_ref) {
|
|
|
2291
2286
|
disabled = _ref.disabled,
|
|
2292
2287
|
step = _ref.step,
|
|
2293
2288
|
onChange = _ref.onChange,
|
|
2294
|
-
theme = _ref.theme,
|
|
2295
2289
|
onMouseDown = _ref.onMouseDown,
|
|
2296
2290
|
props = _objectWithoutProperties(_ref, _excluded$6);
|
|
2291
|
+
var theme = useContext(ThemeContext);
|
|
2297
2292
|
var themedDocument = useDocument(theme);
|
|
2298
2293
|
var _useState = useState(false),
|
|
2299
2294
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -2524,6 +2519,7 @@ var MultiThumbRange = function MultiThumbRange(_ref) {
|
|
|
2524
2519
|
var sliderBackgroundSize = Math.abs(maxPosition) - Math.abs(minPosition);
|
|
2525
2520
|
var onSliderMouseDown = composeEventHandlers(onMouseDown, onTrackMouseDown);
|
|
2526
2521
|
return React__default.createElement(StyledSlider, _extends$t({
|
|
2522
|
+
ref: ref,
|
|
2527
2523
|
isDisabled: disabled,
|
|
2528
2524
|
onMouseDown: onSliderMouseDown
|
|
2529
2525
|
}, props), React__default.createElement(StyledSliderTrack, {
|
|
@@ -2579,7 +2575,8 @@ var MultiThumbRange = function MultiThumbRange(_ref) {
|
|
|
2579
2575
|
maxThumbRef.current && maxThumbRef.current.focus();
|
|
2580
2576
|
}
|
|
2581
2577
|
}))));
|
|
2582
|
-
};
|
|
2578
|
+
});
|
|
2579
|
+
MultiThumbRange.displayName = 'MultiThumbRange';
|
|
2583
2580
|
MultiThumbRange.propTypes = {
|
|
2584
2581
|
min: PropTypes.number,
|
|
2585
2582
|
max: PropTypes.number,
|
|
@@ -2594,10 +2591,8 @@ MultiThumbRange.defaultProps = {
|
|
|
2594
2591
|
max: 100,
|
|
2595
2592
|
minValue: 0,
|
|
2596
2593
|
maxValue: 100,
|
|
2597
|
-
step: 1
|
|
2598
|
-
theme: DEFAULT_THEME
|
|
2594
|
+
step: 1
|
|
2599
2595
|
};
|
|
2600
|
-
var MultiThumbRange$1 = withTheme(MultiThumbRange);
|
|
2601
2596
|
|
|
2602
2597
|
var TilesContext = createContext(undefined);
|
|
2603
2598
|
var useTilesContext = function useTilesContext() {
|
|
@@ -2605,7 +2600,7 @@ var useTilesContext = function useTilesContext() {
|
|
|
2605
2600
|
};
|
|
2606
2601
|
|
|
2607
2602
|
var _excluded$5 = ["children", "value", "disabled"];
|
|
2608
|
-
var
|
|
2603
|
+
var TileComponent = React__default.forwardRef(function (_ref, ref) {
|
|
2609
2604
|
var children = _ref.children,
|
|
2610
2605
|
value = _ref.value,
|
|
2611
2606
|
disabled = _ref.disabled,
|
|
@@ -2648,31 +2643,34 @@ var Tile = React__default.forwardRef(function (_ref, ref) {
|
|
|
2648
2643
|
ref: inputRef
|
|
2649
2644
|
})));
|
|
2650
2645
|
});
|
|
2651
|
-
|
|
2652
|
-
|
|
2646
|
+
TileComponent.displayName = 'Tiles.Tile';
|
|
2647
|
+
TileComponent.propTypes = {
|
|
2653
2648
|
value: PropTypes.string,
|
|
2654
2649
|
disabled: PropTypes.bool
|
|
2655
2650
|
};
|
|
2651
|
+
var Tile = TileComponent;
|
|
2656
2652
|
|
|
2657
|
-
var
|
|
2653
|
+
var DescriptionComponent = forwardRef(function (props, ref) {
|
|
2658
2654
|
var tilesContext = useTilesContext();
|
|
2659
2655
|
return React__default.createElement(StyledTileDescription, _extends$t({
|
|
2660
2656
|
ref: ref,
|
|
2661
2657
|
isCentered: tilesContext && tilesContext.isCentered
|
|
2662
2658
|
}, props));
|
|
2663
2659
|
});
|
|
2664
|
-
|
|
2660
|
+
DescriptionComponent.displayName = 'Tiles.Description';
|
|
2661
|
+
var Description = DescriptionComponent;
|
|
2665
2662
|
|
|
2666
|
-
var
|
|
2663
|
+
var IconComponent = forwardRef(function (props, ref) {
|
|
2667
2664
|
var tileContext = useTilesContext();
|
|
2668
2665
|
return React__default.createElement(StyledTileIcon, _extends$t({
|
|
2669
2666
|
ref: ref,
|
|
2670
2667
|
isCentered: tileContext && tileContext.isCentered
|
|
2671
2668
|
}, props));
|
|
2672
2669
|
});
|
|
2673
|
-
|
|
2670
|
+
IconComponent.displayName = 'Tiles.Icon';
|
|
2671
|
+
var Icon = IconComponent;
|
|
2674
2672
|
|
|
2675
|
-
var
|
|
2673
|
+
var LabelComponent = forwardRef(function (props, forwardedRef) {
|
|
2676
2674
|
var _useState = useState(''),
|
|
2677
2675
|
_useState2 = _slicedToArray(_useState, 2),
|
|
2678
2676
|
title = _useState2[0],
|
|
@@ -2690,10 +2688,11 @@ var Label = React__default.forwardRef(function (props, forwardedRef) {
|
|
|
2690
2688
|
isCentered: tilesContext && tilesContext.isCentered
|
|
2691
2689
|
}, props));
|
|
2692
2690
|
});
|
|
2693
|
-
|
|
2691
|
+
LabelComponent.displayName = 'Tiles.Label';
|
|
2692
|
+
var Label = LabelComponent;
|
|
2694
2693
|
|
|
2695
2694
|
var _excluded$4 = ["onChange", "value", "name", "isCentered"];
|
|
2696
|
-
var
|
|
2695
|
+
var TilesComponent = forwardRef(function (_ref, ref) {
|
|
2697
2696
|
var onChange = _ref.onChange,
|
|
2698
2697
|
controlledValue = _ref.value,
|
|
2699
2698
|
name = _ref.name,
|
|
@@ -2728,20 +2727,21 @@ var Tiles = React__default.forwardRef(function (_ref, ref) {
|
|
|
2728
2727
|
role: "radiogroup"
|
|
2729
2728
|
}, props)));
|
|
2730
2729
|
});
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
Tiles.Icon = Icon;
|
|
2734
|
-
Tiles.Label = Label;
|
|
2735
|
-
Tiles.Description = Description;
|
|
2736
|
-
Tiles.propTypes = {
|
|
2730
|
+
TilesComponent.displayName = 'Tiles';
|
|
2731
|
+
TilesComponent.propTypes = {
|
|
2737
2732
|
value: PropTypes.string,
|
|
2738
2733
|
onChange: PropTypes.func,
|
|
2739
2734
|
name: PropTypes.string.isRequired,
|
|
2740
2735
|
isCentered: PropTypes.bool
|
|
2741
2736
|
};
|
|
2742
|
-
|
|
2737
|
+
TilesComponent.defaultProps = {
|
|
2743
2738
|
isCentered: true
|
|
2744
2739
|
};
|
|
2740
|
+
var Tiles = TilesComponent;
|
|
2741
|
+
Tiles.Description = Description;
|
|
2742
|
+
Tiles.Icon = Icon;
|
|
2743
|
+
Tiles.Label = Label;
|
|
2744
|
+
Tiles.Tile = Tile;
|
|
2745
2745
|
|
|
2746
2746
|
var _excluded$3 = ["isCompact"];
|
|
2747
2747
|
var InputGroup = React__default.forwardRef(function (_ref, ref) {
|
|
@@ -2780,67 +2780,69 @@ FileUpload.propTypes = {
|
|
|
2780
2780
|
};
|
|
2781
2781
|
FileUpload.displayName = 'FileUpload';
|
|
2782
2782
|
|
|
2783
|
-
var
|
|
2783
|
+
var ItemComponent = forwardRef(function (_ref, ref) {
|
|
2784
2784
|
var props = _extends$t({}, _ref);
|
|
2785
2785
|
return React__default.createElement(StyledFileListItem, _extends$t({}, props, {
|
|
2786
2786
|
ref: ref
|
|
2787
2787
|
}));
|
|
2788
2788
|
});
|
|
2789
|
-
|
|
2789
|
+
ItemComponent.displayName = 'FileList.Item';
|
|
2790
|
+
var Item = ItemComponent;
|
|
2790
2791
|
|
|
2791
|
-
var
|
|
2792
|
+
var FileListComponent = forwardRef(function (_ref, ref) {
|
|
2792
2793
|
var props = _extends$t({}, _ref);
|
|
2793
2794
|
return React__default.createElement(StyledFileList, _extends$t({}, props, {
|
|
2794
2795
|
ref: ref
|
|
2795
2796
|
}));
|
|
2796
2797
|
});
|
|
2797
|
-
|
|
2798
|
+
FileListComponent.displayName = 'FileList';
|
|
2799
|
+
var FileList = FileListComponent;
|
|
2798
2800
|
FileList.Item = Item;
|
|
2799
2801
|
|
|
2800
|
-
|
|
2802
|
+
var _path$j;
|
|
2801
2803
|
|
|
2802
|
-
|
|
2803
|
-
stroke: "currentColor",
|
|
2804
|
-
strokeLinecap: "round",
|
|
2805
|
-
d: "M3 9l6-6m0 6L3 3"
|
|
2806
|
-
});
|
|
2804
|
+
function _extends$k() { _extends$k = 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$k.apply(this, arguments); }
|
|
2807
2805
|
|
|
2808
|
-
|
|
2806
|
+
var SvgXStroke$1 = function SvgXStroke(props) {
|
|
2809
2807
|
return /*#__PURE__*/React.createElement("svg", _extends$k({
|
|
2810
2808
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2811
2809
|
width: 12,
|
|
2812
2810
|
height: 12,
|
|
2813
|
-
viewBox: "0 0 12 12",
|
|
2814
2811
|
focusable: "false",
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
}
|
|
2812
|
+
viewBox: "0 0 12 12",
|
|
2813
|
+
"aria-hidden": "true"
|
|
2814
|
+
}, props), _path$j || (_path$j = /*#__PURE__*/React.createElement("path", {
|
|
2815
|
+
stroke: "currentColor",
|
|
2816
|
+
strokeLinecap: "round",
|
|
2817
|
+
d: "M3 9l6-6m0 6L3 3"
|
|
2818
|
+
})));
|
|
2819
|
+
};
|
|
2818
2820
|
|
|
2819
|
-
|
|
2821
|
+
var _path$i;
|
|
2820
2822
|
|
|
2821
|
-
|
|
2822
|
-
stroke: "currentColor",
|
|
2823
|
-
strokeLinecap: "round",
|
|
2824
|
-
d: "M3 13L13 3m0 10L3 3"
|
|
2825
|
-
});
|
|
2823
|
+
function _extends$j() { _extends$j = 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$j.apply(this, arguments); }
|
|
2826
2824
|
|
|
2827
|
-
function SvgXStroke(props) {
|
|
2825
|
+
var SvgXStroke = function SvgXStroke(props) {
|
|
2828
2826
|
return /*#__PURE__*/React.createElement("svg", _extends$j({
|
|
2829
2827
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2830
2828
|
width: 16,
|
|
2831
2829
|
height: 16,
|
|
2832
|
-
viewBox: "0 0 16 16",
|
|
2833
2830
|
focusable: "false",
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
}
|
|
2831
|
+
viewBox: "0 0 16 16",
|
|
2832
|
+
"aria-hidden": "true"
|
|
2833
|
+
}, props), _path$i || (_path$i = /*#__PURE__*/React.createElement("path", {
|
|
2834
|
+
stroke: "currentColor",
|
|
2835
|
+
strokeLinecap: "round",
|
|
2836
|
+
d: "M3 13L13 3m0 10L3 3"
|
|
2837
|
+
})));
|
|
2838
|
+
};
|
|
2837
2839
|
|
|
2838
2840
|
var FileContext = createContext(undefined);
|
|
2839
2841
|
var useFileContext = function useFileContext() {
|
|
2840
2842
|
return useContext(FileContext);
|
|
2841
2843
|
};
|
|
2842
2844
|
|
|
2843
|
-
var
|
|
2845
|
+
var CloseComponent = React__default.forwardRef(function (props, ref) {
|
|
2844
2846
|
var fileContext = useFileContext();
|
|
2845
2847
|
var onMouseDown = composeEventHandlers(props.onMouseDown, function (event) {
|
|
2846
2848
|
return event.preventDefault();
|
|
@@ -2852,49 +2854,50 @@ var Close = React__default.forwardRef(function (props, ref) {
|
|
|
2852
2854
|
onMouseDown: onMouseDown
|
|
2853
2855
|
}), fileContext && fileContext.isCompact ? React__default.createElement(SvgXStroke$1, null) : React__default.createElement(SvgXStroke, null));
|
|
2854
2856
|
});
|
|
2855
|
-
|
|
2857
|
+
CloseComponent.displayName = 'File.Close';
|
|
2858
|
+
var Close = CloseComponent;
|
|
2856
2859
|
|
|
2857
|
-
|
|
2860
|
+
var _path$h;
|
|
2858
2861
|
|
|
2859
|
-
|
|
2860
|
-
fill: "none",
|
|
2861
|
-
stroke: "currentColor",
|
|
2862
|
-
strokeLinecap: "round",
|
|
2863
|
-
d: "M4.5 2.5V1c0-.3.2-.5.5-.5h2c.3 0 .5.2.5.5v1.5M2 2.5h8m-5.5 7V5m3 4.5V5m-5-.5V11c0 .3.2.5.5.5h6c.3 0 .5-.2.5-.5V4.5"
|
|
2864
|
-
});
|
|
2862
|
+
function _extends$i() { _extends$i = 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$i.apply(this, arguments); }
|
|
2865
2863
|
|
|
2866
|
-
|
|
2864
|
+
var SvgTrashStroke$1 = function SvgTrashStroke(props) {
|
|
2867
2865
|
return /*#__PURE__*/React.createElement("svg", _extends$i({
|
|
2868
2866
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2869
2867
|
width: 12,
|
|
2870
2868
|
height: 12,
|
|
2871
|
-
viewBox: "0 0 12 12",
|
|
2872
2869
|
focusable: "false",
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
}
|
|
2870
|
+
viewBox: "0 0 12 12",
|
|
2871
|
+
"aria-hidden": "true"
|
|
2872
|
+
}, props), _path$h || (_path$h = /*#__PURE__*/React.createElement("path", {
|
|
2873
|
+
fill: "none",
|
|
2874
|
+
stroke: "currentColor",
|
|
2875
|
+
strokeLinecap: "round",
|
|
2876
|
+
d: "M4.5 2.5V1c0-.3.2-.5.5-.5h2c.3 0 .5.2.5.5v1.5M2 2.5h8m-5.5 7V5m3 4.5V5m-5-.5V11c0 .3.2.5.5.5h6c.3 0 .5-.2.5-.5V4.5"
|
|
2877
|
+
})));
|
|
2878
|
+
};
|
|
2876
2879
|
|
|
2877
|
-
|
|
2880
|
+
var _path$g;
|
|
2878
2881
|
|
|
2879
|
-
|
|
2880
|
-
fill: "none",
|
|
2881
|
-
stroke: "currentColor",
|
|
2882
|
-
strokeLinecap: "round",
|
|
2883
|
-
d: "M6.5 2.5V1c0-.3.2-.5.5-.5h2c.3 0 .5.2.5.5v1.5M3 2.5h10m-6.5 11v-8m3 8v-8m-6-1V15c0 .3.2.5.5.5h8c.3 0 .5-.2.5-.5V4.5"
|
|
2884
|
-
});
|
|
2882
|
+
function _extends$h() { _extends$h = 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$h.apply(this, arguments); }
|
|
2885
2883
|
|
|
2886
|
-
function SvgTrashStroke(props) {
|
|
2884
|
+
var SvgTrashStroke = function SvgTrashStroke(props) {
|
|
2887
2885
|
return /*#__PURE__*/React.createElement("svg", _extends$h({
|
|
2888
2886
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2889
2887
|
width: 16,
|
|
2890
2888
|
height: 16,
|
|
2891
|
-
viewBox: "0 0 16 16",
|
|
2892
2889
|
focusable: "false",
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
}
|
|
2890
|
+
viewBox: "0 0 16 16",
|
|
2891
|
+
"aria-hidden": "true"
|
|
2892
|
+
}, props), _path$g || (_path$g = /*#__PURE__*/React.createElement("path", {
|
|
2893
|
+
fill: "none",
|
|
2894
|
+
stroke: "currentColor",
|
|
2895
|
+
strokeLinecap: "round",
|
|
2896
|
+
d: "M6.5 2.5V1c0-.3.2-.5.5-.5h2c.3 0 .5.2.5.5v1.5M3 2.5h10m-6.5 11v-8m3 8v-8m-6-1V15c0 .3.2.5.5.5h8c.3 0 .5-.2.5-.5V4.5"
|
|
2897
|
+
})));
|
|
2898
|
+
};
|
|
2896
2899
|
|
|
2897
|
-
var
|
|
2900
|
+
var DeleteComponent = React__default.forwardRef(function (props, ref) {
|
|
2898
2901
|
var fileContext = useFileContext();
|
|
2899
2902
|
var onMouseDown = composeEventHandlers(props.onMouseDown, function (event) {
|
|
2900
2903
|
return event.preventDefault();
|
|
@@ -2906,384 +2909,377 @@ var Delete = React__default.forwardRef(function (props, ref) {
|
|
|
2906
2909
|
onMouseDown: onMouseDown
|
|
2907
2910
|
}), fileContext && fileContext.isCompact ? React__default.createElement(SvgTrashStroke$1, null) : React__default.createElement(SvgTrashStroke, null));
|
|
2908
2911
|
});
|
|
2909
|
-
|
|
2912
|
+
DeleteComponent.displayName = 'File.Delete';
|
|
2913
|
+
var Delete = DeleteComponent;
|
|
2910
2914
|
|
|
2911
|
-
|
|
2915
|
+
var _path$f, _rect$1;
|
|
2912
2916
|
|
|
2913
|
-
|
|
2914
|
-
fill: "none",
|
|
2915
|
-
stroke: "currentColor",
|
|
2916
|
-
strokeLinecap: "round",
|
|
2917
|
-
d: "M10.5 3.21V11a.5.5 0 01-.5.5H2a.5.5 0 01-.5-.5V1A.5.5 0 012 .5h5.79a.5.5 0 01.35.15l2.21 2.21a.5.5 0 01.15.35zM7.5.5V3a.5.5 0 00.5.5h2.5m-7 6h5"
|
|
2918
|
-
});
|
|
2919
|
-
|
|
2920
|
-
var _ref2$3 = /*#__PURE__*/React.createElement("rect", {
|
|
2921
|
-
width: 6,
|
|
2922
|
-
height: 3,
|
|
2923
|
-
x: 3,
|
|
2924
|
-
y: 5,
|
|
2925
|
-
fill: "currentColor",
|
|
2926
|
-
rx: 0.5,
|
|
2927
|
-
ry: 0.5
|
|
2928
|
-
});
|
|
2917
|
+
function _extends$g() { _extends$g = 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$g.apply(this, arguments); }
|
|
2929
2918
|
|
|
2930
|
-
|
|
2919
|
+
var SvgFilePdfStroke$1 = function SvgFilePdfStroke(props) {
|
|
2931
2920
|
return /*#__PURE__*/React.createElement("svg", _extends$g({
|
|
2932
2921
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2933
2922
|
width: 12,
|
|
2934
2923
|
height: 12,
|
|
2935
|
-
viewBox: "0 0 12 12",
|
|
2936
2924
|
focusable: "false",
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
}
|
|
2925
|
+
viewBox: "0 0 12 12",
|
|
2926
|
+
"aria-hidden": "true"
|
|
2927
|
+
}, props), _path$f || (_path$f = /*#__PURE__*/React.createElement("path", {
|
|
2928
|
+
fill: "none",
|
|
2929
|
+
stroke: "currentColor",
|
|
2930
|
+
strokeLinecap: "round",
|
|
2931
|
+
d: "M10.5 3.21V11a.5.5 0 01-.5.5H2a.5.5 0 01-.5-.5V1A.5.5 0 012 .5h5.79a.5.5 0 01.35.15l2.21 2.21a.5.5 0 01.15.35zM7.5.5V3a.5.5 0 00.5.5h2.5m-7 6h5"
|
|
2932
|
+
})), _rect$1 || (_rect$1 = /*#__PURE__*/React.createElement("rect", {
|
|
2933
|
+
width: 6,
|
|
2934
|
+
height: 3,
|
|
2935
|
+
x: 3,
|
|
2936
|
+
y: 5,
|
|
2937
|
+
fill: "currentColor",
|
|
2938
|
+
rx: 0.5,
|
|
2939
|
+
ry: 0.5
|
|
2940
|
+
})));
|
|
2941
|
+
};
|
|
2940
2942
|
|
|
2941
|
-
|
|
2943
|
+
var _path$e;
|
|
2942
2944
|
|
|
2943
|
-
|
|
2944
|
-
fill: "none",
|
|
2945
|
-
stroke: "currentColor",
|
|
2946
|
-
strokeLinecap: "round",
|
|
2947
|
-
d: "M4.5.5v8m0-6h1m-2 1h1m0 1h1m-2 1h1m0 1h1m-2 1h1m6-4.29V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM7.5.5V3c0 .28.22.5.5.5h2.5"
|
|
2948
|
-
});
|
|
2945
|
+
function _extends$f() { _extends$f = 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$f.apply(this, arguments); }
|
|
2949
2946
|
|
|
2950
|
-
|
|
2947
|
+
var SvgFileZipStroke$1 = function SvgFileZipStroke(props) {
|
|
2951
2948
|
return /*#__PURE__*/React.createElement("svg", _extends$f({
|
|
2952
2949
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2953
2950
|
width: 12,
|
|
2954
2951
|
height: 12,
|
|
2955
|
-
viewBox: "0 0 12 12",
|
|
2956
2952
|
focusable: "false",
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
}
|
|
2960
|
-
|
|
2961
|
-
|
|
2953
|
+
viewBox: "0 0 12 12",
|
|
2954
|
+
"aria-hidden": "true"
|
|
2955
|
+
}, props), _path$e || (_path$e = /*#__PURE__*/React.createElement("path", {
|
|
2956
|
+
fill: "none",
|
|
2957
|
+
stroke: "currentColor",
|
|
2958
|
+
strokeLinecap: "round",
|
|
2959
|
+
d: "M4.5.5v8m0-6h1m-2 1h1m0 1h1m-2 1h1m0 1h1m-2 1h1m6-4.29V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM7.5.5V3c0 .28.22.5.5.5h2.5"
|
|
2960
|
+
})));
|
|
2961
|
+
};
|
|
2962
2962
|
|
|
2963
|
-
var
|
|
2964
|
-
fill: "none",
|
|
2965
|
-
stroke: "currentColor",
|
|
2966
|
-
strokeLinecap: "round",
|
|
2967
|
-
strokeLinejoin: "round",
|
|
2968
|
-
d: "M10.5 3.21V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM7.5.5V3c0 .28.22.5.5.5h2.5m-7 6L5 8l1.5 1.5 1-1 1 1"
|
|
2969
|
-
});
|
|
2963
|
+
var _path$d, _circle$1;
|
|
2970
2964
|
|
|
2971
|
-
|
|
2972
|
-
cx: 8,
|
|
2973
|
-
cy: 6,
|
|
2974
|
-
r: 1,
|
|
2975
|
-
fill: "currentColor"
|
|
2976
|
-
});
|
|
2965
|
+
function _extends$e() { _extends$e = 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$e.apply(this, arguments); }
|
|
2977
2966
|
|
|
2978
|
-
|
|
2967
|
+
var SvgFileImageStroke$1 = function SvgFileImageStroke(props) {
|
|
2979
2968
|
return /*#__PURE__*/React.createElement("svg", _extends$e({
|
|
2980
2969
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2981
2970
|
width: 12,
|
|
2982
2971
|
height: 12,
|
|
2983
|
-
viewBox: "0 0 12 12",
|
|
2984
2972
|
focusable: "false",
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
}
|
|
2973
|
+
viewBox: "0 0 12 12",
|
|
2974
|
+
"aria-hidden": "true"
|
|
2975
|
+
}, props), _path$d || (_path$d = /*#__PURE__*/React.createElement("path", {
|
|
2976
|
+
fill: "none",
|
|
2977
|
+
stroke: "currentColor",
|
|
2978
|
+
strokeLinecap: "round",
|
|
2979
|
+
strokeLinejoin: "round",
|
|
2980
|
+
d: "M10.5 3.21V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM7.5.5V3c0 .28.22.5.5.5h2.5m-7 6L5 8l1.5 1.5 1-1 1 1"
|
|
2981
|
+
})), _circle$1 || (_circle$1 = /*#__PURE__*/React.createElement("circle", {
|
|
2982
|
+
cx: 8,
|
|
2983
|
+
cy: 6,
|
|
2984
|
+
r: 1,
|
|
2985
|
+
fill: "currentColor"
|
|
2986
|
+
})));
|
|
2987
|
+
};
|
|
2988
2988
|
|
|
2989
|
-
|
|
2989
|
+
var _path$c;
|
|
2990
2990
|
|
|
2991
|
-
|
|
2992
|
-
fill: "none",
|
|
2993
|
-
stroke: "currentColor",
|
|
2994
|
-
strokeLinecap: "round",
|
|
2995
|
-
d: "M3.5 5.5h5m-5 2h5m-5 2h5m2-6.29V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM7.5.5V3c0 .28.22.5.5.5h2.5"
|
|
2996
|
-
});
|
|
2991
|
+
function _extends$d() { _extends$d = 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$d.apply(this, arguments); }
|
|
2997
2992
|
|
|
2998
|
-
|
|
2993
|
+
var SvgFileDocumentStroke$1 = function SvgFileDocumentStroke(props) {
|
|
2999
2994
|
return /*#__PURE__*/React.createElement("svg", _extends$d({
|
|
3000
2995
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3001
2996
|
width: 12,
|
|
3002
2997
|
height: 12,
|
|
3003
|
-
viewBox: "0 0 12 12",
|
|
3004
2998
|
focusable: "false",
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
}
|
|
2999
|
+
viewBox: "0 0 12 12",
|
|
3000
|
+
"aria-hidden": "true"
|
|
3001
|
+
}, props), _path$c || (_path$c = /*#__PURE__*/React.createElement("path", {
|
|
3002
|
+
fill: "none",
|
|
3003
|
+
stroke: "currentColor",
|
|
3004
|
+
strokeLinecap: "round",
|
|
3005
|
+
d: "M3.5 5.5h5m-5 2h5m-5 2h5m2-6.29V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM7.5.5V3c0 .28.22.5.5.5h2.5"
|
|
3006
|
+
})));
|
|
3007
|
+
};
|
|
3008
3008
|
|
|
3009
|
-
|
|
3009
|
+
var _path$b;
|
|
3010
3010
|
|
|
3011
|
-
|
|
3012
|
-
fill: "none",
|
|
3013
|
-
stroke: "currentColor",
|
|
3014
|
-
strokeLinecap: "round",
|
|
3015
|
-
d: "M3.5 5.5h1m-1 2h1m-1 2h1m2-4h2m-2 2h2m-2 2h2m2-6.29V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM7.5.5V3c0 .28.22.5.5.5h2.5"
|
|
3016
|
-
});
|
|
3011
|
+
function _extends$c() { _extends$c = 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$c.apply(this, arguments); }
|
|
3017
3012
|
|
|
3018
|
-
|
|
3013
|
+
var SvgFileSpreadsheetStroke$1 = function SvgFileSpreadsheetStroke(props) {
|
|
3019
3014
|
return /*#__PURE__*/React.createElement("svg", _extends$c({
|
|
3020
3015
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3021
3016
|
width: 12,
|
|
3022
3017
|
height: 12,
|
|
3023
|
-
viewBox: "0 0 12 12",
|
|
3024
3018
|
focusable: "false",
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
}
|
|
3019
|
+
viewBox: "0 0 12 12",
|
|
3020
|
+
"aria-hidden": "true"
|
|
3021
|
+
}, props), _path$b || (_path$b = /*#__PURE__*/React.createElement("path", {
|
|
3022
|
+
fill: "none",
|
|
3023
|
+
stroke: "currentColor",
|
|
3024
|
+
strokeLinecap: "round",
|
|
3025
|
+
d: "M3.5 5.5h1m-1 2h1m-1 2h1m2-4h2m-2 2h2m-2 2h2m2-6.29V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM7.5.5V3c0 .28.22.5.5.5h2.5"
|
|
3026
|
+
})));
|
|
3027
|
+
};
|
|
3028
3028
|
|
|
3029
|
-
|
|
3029
|
+
var _path$a;
|
|
3030
3030
|
|
|
3031
|
-
|
|
3032
|
-
fill: "none",
|
|
3033
|
-
stroke: "currentColor",
|
|
3034
|
-
d: "M10.5 3.21V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM6 9.5h2c.28 0 .5-.22.5-.5V8c0-.28-.22-.5-.5-.5H6c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5zm-2-2h2c.28 0 .5-.22.5-.5V6c0-.28-.22-.5-.5-.5H4c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5zm3.5-7V3c0 .28.22.5.5.5h2.5"
|
|
3035
|
-
});
|
|
3031
|
+
function _extends$b() { _extends$b = 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$b.apply(this, arguments); }
|
|
3036
3032
|
|
|
3037
|
-
|
|
3033
|
+
var SvgFilePresentationStroke$1 = function SvgFilePresentationStroke(props) {
|
|
3038
3034
|
return /*#__PURE__*/React.createElement("svg", _extends$b({
|
|
3039
3035
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3040
3036
|
width: 12,
|
|
3041
3037
|
height: 12,
|
|
3042
|
-
viewBox: "0 0 12 12",
|
|
3043
3038
|
focusable: "false",
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
}
|
|
3039
|
+
viewBox: "0 0 12 12",
|
|
3040
|
+
"aria-hidden": "true"
|
|
3041
|
+
}, props), _path$a || (_path$a = /*#__PURE__*/React.createElement("path", {
|
|
3042
|
+
fill: "none",
|
|
3043
|
+
stroke: "currentColor",
|
|
3044
|
+
d: "M10.5 3.21V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM6 9.5h2c.28 0 .5-.22.5-.5V8c0-.28-.22-.5-.5-.5H6c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5zm-2-2h2c.28 0 .5-.22.5-.5V6c0-.28-.22-.5-.5-.5H4c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5zm3.5-7V3c0 .28.22.5.5.5h2.5"
|
|
3045
|
+
})));
|
|
3046
|
+
};
|
|
3047
3047
|
|
|
3048
|
-
|
|
3048
|
+
var _path$9;
|
|
3049
3049
|
|
|
3050
|
-
|
|
3051
|
-
fill: "none",
|
|
3052
|
-
stroke: "currentColor",
|
|
3053
|
-
d: "M10.5 3.21V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM7.5.5V3c0 .28.22.5.5.5h2.5"
|
|
3054
|
-
});
|
|
3050
|
+
function _extends$a() { _extends$a = 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$a.apply(this, arguments); }
|
|
3055
3051
|
|
|
3056
|
-
|
|
3052
|
+
var SvgFileGenericStroke$1 = function SvgFileGenericStroke(props) {
|
|
3057
3053
|
return /*#__PURE__*/React.createElement("svg", _extends$a({
|
|
3058
3054
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3059
3055
|
width: 12,
|
|
3060
3056
|
height: 12,
|
|
3061
|
-
viewBox: "0 0 12 12",
|
|
3062
3057
|
focusable: "false",
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
}
|
|
3058
|
+
viewBox: "0 0 12 12",
|
|
3059
|
+
"aria-hidden": "true"
|
|
3060
|
+
}, props), _path$9 || (_path$9 = /*#__PURE__*/React.createElement("path", {
|
|
3061
|
+
fill: "none",
|
|
3062
|
+
stroke: "currentColor",
|
|
3063
|
+
d: "M10.5 3.21V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM7.5.5V3c0 .28.22.5.5.5h2.5"
|
|
3064
|
+
})));
|
|
3065
|
+
};
|
|
3066
|
+
|
|
3067
|
+
var _g;
|
|
3066
3068
|
|
|
3067
3069
|
function _extends$9() { _extends$9 = 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$9.apply(this, arguments); }
|
|
3068
3070
|
|
|
3069
|
-
var
|
|
3070
|
-
fill: "none",
|
|
3071
|
-
stroke: "currentColor"
|
|
3072
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
3073
|
-
strokeLinecap: "round",
|
|
3074
|
-
strokeLinejoin: "round",
|
|
3075
|
-
d: "M3.5 6l2 2L9 4.5"
|
|
3076
|
-
}), /*#__PURE__*/React.createElement("circle", {
|
|
3077
|
-
cx: 6,
|
|
3078
|
-
cy: 6,
|
|
3079
|
-
r: 5.5
|
|
3080
|
-
}));
|
|
3081
|
-
|
|
3082
|
-
function SvgCheckCircleStroke(props) {
|
|
3071
|
+
var SvgCheckCircleStroke = function SvgCheckCircleStroke(props) {
|
|
3083
3072
|
return /*#__PURE__*/React.createElement("svg", _extends$9({
|
|
3084
3073
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3085
3074
|
width: 12,
|
|
3086
3075
|
height: 12,
|
|
3087
|
-
viewBox: "0 0 12 12",
|
|
3088
3076
|
focusable: "false",
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
}
|
|
3077
|
+
viewBox: "0 0 12 12",
|
|
3078
|
+
"aria-hidden": "true"
|
|
3079
|
+
}, props), _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
3080
|
+
fill: "none",
|
|
3081
|
+
stroke: "currentColor"
|
|
3082
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3083
|
+
strokeLinecap: "round",
|
|
3084
|
+
strokeLinejoin: "round",
|
|
3085
|
+
d: "M3.5 6l2 2L9 4.5"
|
|
3086
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
3087
|
+
cx: 6,
|
|
3088
|
+
cy: 6,
|
|
3089
|
+
r: 5.5
|
|
3090
|
+
}))));
|
|
3091
|
+
};
|
|
3092
3092
|
|
|
3093
|
-
|
|
3093
|
+
var _path$8;
|
|
3094
3094
|
|
|
3095
|
-
|
|
3096
|
-
fill: "none",
|
|
3097
|
-
stroke: "currentColor",
|
|
3098
|
-
strokeLinecap: "round",
|
|
3099
|
-
d: "M10.5 3.21V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM7.5.5V3c0 .28.22.5.5.5h2.5M4 9.5l4-4m0 4l-4-4"
|
|
3100
|
-
});
|
|
3095
|
+
function _extends$8() { _extends$8 = 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$8.apply(this, arguments); }
|
|
3101
3096
|
|
|
3102
|
-
|
|
3097
|
+
var SvgFileErrorStroke$1 = function SvgFileErrorStroke(props) {
|
|
3103
3098
|
return /*#__PURE__*/React.createElement("svg", _extends$8({
|
|
3104
3099
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3105
3100
|
width: 12,
|
|
3106
3101
|
height: 12,
|
|
3107
|
-
viewBox: "0 0 12 12",
|
|
3108
3102
|
focusable: "false",
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
}
|
|
3112
|
-
|
|
3113
|
-
|
|
3103
|
+
viewBox: "0 0 12 12",
|
|
3104
|
+
"aria-hidden": "true"
|
|
3105
|
+
}, props), _path$8 || (_path$8 = /*#__PURE__*/React.createElement("path", {
|
|
3106
|
+
fill: "none",
|
|
3107
|
+
stroke: "currentColor",
|
|
3108
|
+
strokeLinecap: "round",
|
|
3109
|
+
d: "M10.5 3.21V11c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h5.79c.13 0 .26.05.35.15l2.21 2.21c.1.09.15.21.15.35zM7.5.5V3c0 .28.22.5.5.5h2.5M4 9.5l4-4m0 4l-4-4"
|
|
3110
|
+
})));
|
|
3111
|
+
};
|
|
3114
3112
|
|
|
3115
|
-
var
|
|
3116
|
-
fill: "none",
|
|
3117
|
-
stroke: "currentColor",
|
|
3118
|
-
strokeLinecap: "round",
|
|
3119
|
-
d: "M14.5 4.2V15a.5.5 0 01-.5.5H2a.5.5 0 01-.5-.5V1A.5.5 0 012 .5h8.85a.5.5 0 01.36.15l3.15 3.2a.5.5 0 01.14.35zm-10 8.3h7m-7-2h7m-1-10V4a.5.5 0 00.5.5h3.5"
|
|
3120
|
-
});
|
|
3113
|
+
var _path$7, _rect;
|
|
3121
3114
|
|
|
3122
|
-
var
|
|
3123
|
-
width: 8,
|
|
3124
|
-
height: 2,
|
|
3125
|
-
x: 4,
|
|
3126
|
-
y: 7,
|
|
3127
|
-
fill: "currentColor",
|
|
3128
|
-
rx: 0.5,
|
|
3129
|
-
ry: 0.5
|
|
3130
|
-
});
|
|
3115
|
+
function _extends$7() { _extends$7 = 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$7.apply(this, arguments); }
|
|
3131
3116
|
|
|
3132
|
-
function SvgFilePdfStroke(props) {
|
|
3117
|
+
var SvgFilePdfStroke = function SvgFilePdfStroke(props) {
|
|
3133
3118
|
return /*#__PURE__*/React.createElement("svg", _extends$7({
|
|
3134
3119
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3135
3120
|
width: 16,
|
|
3136
3121
|
height: 16,
|
|
3137
|
-
viewBox: "0 0 16 16",
|
|
3138
3122
|
focusable: "false",
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
}
|
|
3123
|
+
viewBox: "0 0 16 16",
|
|
3124
|
+
"aria-hidden": "true"
|
|
3125
|
+
}, props), _path$7 || (_path$7 = /*#__PURE__*/React.createElement("path", {
|
|
3126
|
+
fill: "none",
|
|
3127
|
+
stroke: "currentColor",
|
|
3128
|
+
strokeLinecap: "round",
|
|
3129
|
+
d: "M14.5 4.2V15a.5.5 0 01-.5.5H2a.5.5 0 01-.5-.5V1A.5.5 0 012 .5h8.85a.5.5 0 01.36.15l3.15 3.2a.5.5 0 01.14.35zm-10 8.3h7m-7-2h7m-1-10V4a.5.5 0 00.5.5h3.5"
|
|
3130
|
+
})), _rect || (_rect = /*#__PURE__*/React.createElement("rect", {
|
|
3131
|
+
width: 8,
|
|
3132
|
+
height: 2,
|
|
3133
|
+
x: 4,
|
|
3134
|
+
y: 7,
|
|
3135
|
+
fill: "currentColor",
|
|
3136
|
+
rx: 0.5,
|
|
3137
|
+
ry: 0.5
|
|
3138
|
+
})));
|
|
3139
|
+
};
|
|
3142
3140
|
|
|
3143
|
-
|
|
3141
|
+
var _path$6;
|
|
3144
3142
|
|
|
3145
|
-
|
|
3146
|
-
fill: "none",
|
|
3147
|
-
stroke: "currentColor",
|
|
3148
|
-
strokeLinecap: "round",
|
|
3149
|
-
d: "M6.5.5v11M5 2.5h1.5m0 1H8m-3 1h1.5m0 1H8m-3 1h1.5m0 1H8m-3 1h1.5m0 1H8m-3 1h1.5m8-6.3V15c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h8.85c.13 0 .26.05.36.15l3.15 3.2c.09.1.14.22.14.35zm-4-3.7V4c0 .28.22.5.5.5h3.5"
|
|
3150
|
-
});
|
|
3143
|
+
function _extends$6() { _extends$6 = 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$6.apply(this, arguments); }
|
|
3151
3144
|
|
|
3152
|
-
function SvgFileZipStroke(props) {
|
|
3145
|
+
var SvgFileZipStroke = function SvgFileZipStroke(props) {
|
|
3153
3146
|
return /*#__PURE__*/React.createElement("svg", _extends$6({
|
|
3154
3147
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3155
3148
|
width: 16,
|
|
3156
3149
|
height: 16,
|
|
3157
|
-
viewBox: "0 0 16 16",
|
|
3158
3150
|
focusable: "false",
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
}
|
|
3162
|
-
|
|
3163
|
-
|
|
3151
|
+
viewBox: "0 0 16 16",
|
|
3152
|
+
"aria-hidden": "true"
|
|
3153
|
+
}, props), _path$6 || (_path$6 = /*#__PURE__*/React.createElement("path", {
|
|
3154
|
+
fill: "none",
|
|
3155
|
+
stroke: "currentColor",
|
|
3156
|
+
strokeLinecap: "round",
|
|
3157
|
+
d: "M6.5.5v11M5 2.5h1.5m0 1H8m-3 1h1.5m0 1H8m-3 1h1.5m0 1H8m-3 1h1.5m0 1H8m-3 1h1.5m8-6.3V15c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h8.85c.13 0 .26.05.36.15l3.15 3.2c.09.1.14.22.14.35zm-4-3.7V4c0 .28.22.5.5.5h3.5"
|
|
3158
|
+
})));
|
|
3159
|
+
};
|
|
3164
3160
|
|
|
3165
|
-
var
|
|
3166
|
-
fill: "none",
|
|
3167
|
-
stroke: "currentColor",
|
|
3168
|
-
strokeLinecap: "round",
|
|
3169
|
-
d: "M14.5 4.2V15c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h8.85c.13 0 .26.05.36.15l3.15 3.2c.09.1.14.22.14.35zm-4-3.7V4c0 .28.22.5.5.5h3.5m-11 9l2.65-2.65c.2-.2.51-.2.71 0l1.79 1.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l1.65 1.65"
|
|
3170
|
-
});
|
|
3161
|
+
var _path$5, _circle;
|
|
3171
3162
|
|
|
3172
|
-
var
|
|
3173
|
-
cx: 10.5,
|
|
3174
|
-
cy: 8.5,
|
|
3175
|
-
r: 1.5,
|
|
3176
|
-
fill: "currentColor"
|
|
3177
|
-
});
|
|
3163
|
+
function _extends$5() { _extends$5 = 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$5.apply(this, arguments); }
|
|
3178
3164
|
|
|
3179
|
-
function SvgFileImageStroke(props) {
|
|
3165
|
+
var SvgFileImageStroke = function SvgFileImageStroke(props) {
|
|
3180
3166
|
return /*#__PURE__*/React.createElement("svg", _extends$5({
|
|
3181
3167
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3182
3168
|
width: 16,
|
|
3183
3169
|
height: 16,
|
|
3184
|
-
viewBox: "0 0 16 16",
|
|
3185
3170
|
focusable: "false",
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
}
|
|
3171
|
+
viewBox: "0 0 16 16",
|
|
3172
|
+
"aria-hidden": "true"
|
|
3173
|
+
}, props), _path$5 || (_path$5 = /*#__PURE__*/React.createElement("path", {
|
|
3174
|
+
fill: "none",
|
|
3175
|
+
stroke: "currentColor",
|
|
3176
|
+
strokeLinecap: "round",
|
|
3177
|
+
d: "M14.5 4.2V15c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h8.85c.13 0 .26.05.36.15l3.15 3.2c.09.1.14.22.14.35zm-4-3.7V4c0 .28.22.5.5.5h3.5m-11 9l2.65-2.65c.2-.2.51-.2.71 0l1.79 1.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l1.65 1.65"
|
|
3178
|
+
})), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
|
|
3179
|
+
cx: 10.5,
|
|
3180
|
+
cy: 8.5,
|
|
3181
|
+
r: 1.5,
|
|
3182
|
+
fill: "currentColor"
|
|
3183
|
+
})));
|
|
3184
|
+
};
|
|
3189
3185
|
|
|
3190
|
-
|
|
3186
|
+
var _path$4;
|
|
3191
3187
|
|
|
3192
|
-
|
|
3193
|
-
fill: "none",
|
|
3194
|
-
stroke: "currentColor",
|
|
3195
|
-
strokeLinecap: "round",
|
|
3196
|
-
d: "M4.5 7.5h7m-7 1.97h7m-7 2h7m3-7.27V15c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h8.85c.13 0 .26.05.36.15l3.15 3.2c.09.1.14.22.14.35zm-4-3.7V4c0 .28.22.5.5.5h3.5"
|
|
3197
|
-
});
|
|
3188
|
+
function _extends$4() { _extends$4 = 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$4.apply(this, arguments); }
|
|
3198
3189
|
|
|
3199
|
-
function SvgFileDocumentStroke(props) {
|
|
3190
|
+
var SvgFileDocumentStroke = function SvgFileDocumentStroke(props) {
|
|
3200
3191
|
return /*#__PURE__*/React.createElement("svg", _extends$4({
|
|
3201
3192
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3202
3193
|
width: 16,
|
|
3203
3194
|
height: 16,
|
|
3204
|
-
viewBox: "0 0 16 16",
|
|
3205
3195
|
focusable: "false",
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
}
|
|
3196
|
+
viewBox: "0 0 16 16",
|
|
3197
|
+
"aria-hidden": "true"
|
|
3198
|
+
}, props), _path$4 || (_path$4 = /*#__PURE__*/React.createElement("path", {
|
|
3199
|
+
fill: "none",
|
|
3200
|
+
stroke: "currentColor",
|
|
3201
|
+
strokeLinecap: "round",
|
|
3202
|
+
d: "M4.5 7.5h7m-7 1.97h7m-7 2h7m3-7.27V15c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h8.85c.13 0 .26.05.36.15l3.15 3.2c.09.1.14.22.14.35zm-4-3.7V4c0 .28.22.5.5.5h3.5"
|
|
3203
|
+
})));
|
|
3204
|
+
};
|
|
3209
3205
|
|
|
3210
|
-
|
|
3206
|
+
var _path$3;
|
|
3211
3207
|
|
|
3212
|
-
|
|
3213
|
-
fill: "none",
|
|
3214
|
-
stroke: "currentColor",
|
|
3215
|
-
strokeLinecap: "round",
|
|
3216
|
-
d: "M4.5 7.5h2m-2 2h2m-2 2h2m2-4h3m-3 2h3m-3 2h3m3-7.3V15c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h8.85c.13 0 .26.05.36.15l3.15 3.2c.09.1.14.22.14.35zm-4-3.7V4c0 .28.22.5.5.5h3.5"
|
|
3217
|
-
});
|
|
3208
|
+
function _extends$3() { _extends$3 = 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$3.apply(this, arguments); }
|
|
3218
3209
|
|
|
3219
|
-
function SvgFileSpreadsheetStroke(props) {
|
|
3210
|
+
var SvgFileSpreadsheetStroke = function SvgFileSpreadsheetStroke(props) {
|
|
3220
3211
|
return /*#__PURE__*/React.createElement("svg", _extends$3({
|
|
3221
3212
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3222
3213
|
width: 16,
|
|
3223
3214
|
height: 16,
|
|
3224
|
-
viewBox: "0 0 16 16",
|
|
3225
3215
|
focusable: "false",
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
}
|
|
3216
|
+
viewBox: "0 0 16 16",
|
|
3217
|
+
"aria-hidden": "true"
|
|
3218
|
+
}, props), _path$3 || (_path$3 = /*#__PURE__*/React.createElement("path", {
|
|
3219
|
+
fill: "none",
|
|
3220
|
+
stroke: "currentColor",
|
|
3221
|
+
strokeLinecap: "round",
|
|
3222
|
+
d: "M4.5 7.5h2m-2 2h2m-2 2h2m2-4h3m-3 2h3m-3 2h3m3-7.3V15c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h8.85c.13 0 .26.05.36.15l3.15 3.2c.09.1.14.22.14.35zm-4-3.7V4c0 .28.22.5.5.5h3.5"
|
|
3223
|
+
})));
|
|
3224
|
+
};
|
|
3229
3225
|
|
|
3230
|
-
|
|
3226
|
+
var _path$2;
|
|
3231
3227
|
|
|
3232
|
-
|
|
3233
|
-
fill: "none",
|
|
3234
|
-
stroke: "currentColor",
|
|
3235
|
-
d: "M14.5 4.2V15c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h8.85c.13 0 .26.05.36.15l3.15 3.2c.09.1.14.22.14.35zm-4-3.7V4c0 .28.22.5.5.5h3.5M7 9.5h4c.28 0 .5.22.5.5v3c0 .28-.22.5-.5.5H7c-.28 0-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5zm-.5 2H5c-.28 0-.5-.22-.5-.5V8c0-.28.22-.5.5-.5h4c.28 0 .5.22.5.5v1.5"
|
|
3236
|
-
});
|
|
3228
|
+
function _extends$2() { _extends$2 = 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$2.apply(this, arguments); }
|
|
3237
3229
|
|
|
3238
|
-
function SvgFilePresentationStroke(props) {
|
|
3230
|
+
var SvgFilePresentationStroke = function SvgFilePresentationStroke(props) {
|
|
3239
3231
|
return /*#__PURE__*/React.createElement("svg", _extends$2({
|
|
3240
3232
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3241
3233
|
width: 16,
|
|
3242
3234
|
height: 16,
|
|
3243
|
-
viewBox: "0 0 16 16",
|
|
3244
3235
|
focusable: "false",
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
}
|
|
3236
|
+
viewBox: "0 0 16 16",
|
|
3237
|
+
"aria-hidden": "true"
|
|
3238
|
+
}, props), _path$2 || (_path$2 = /*#__PURE__*/React.createElement("path", {
|
|
3239
|
+
fill: "none",
|
|
3240
|
+
stroke: "currentColor",
|
|
3241
|
+
d: "M14.5 4.2V15c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h8.85c.13 0 .26.05.36.15l3.15 3.2c.09.1.14.22.14.35zm-4-3.7V4c0 .28.22.5.5.5h3.5M7 9.5h4c.28 0 .5.22.5.5v3c0 .28-.22.5-.5.5H7c-.28 0-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5zm-.5 2H5c-.28 0-.5-.22-.5-.5V8c0-.28.22-.5.5-.5h4c.28 0 .5.22.5.5v1.5"
|
|
3242
|
+
})));
|
|
3243
|
+
};
|
|
3248
3244
|
|
|
3249
|
-
|
|
3245
|
+
var _path$1;
|
|
3250
3246
|
|
|
3251
|
-
|
|
3252
|
-
fill: "none",
|
|
3253
|
-
stroke: "currentColor",
|
|
3254
|
-
d: "M14.5 4.2V15c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h8.85c.13 0 .26.05.36.15l3.15 3.2c.09.1.14.22.14.35zm-4-3.7V4c0 .28.22.5.5.5h3.5"
|
|
3255
|
-
});
|
|
3247
|
+
function _extends$1() { _extends$1 = 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$1.apply(this, arguments); }
|
|
3256
3248
|
|
|
3257
|
-
function SvgFileGenericStroke(props) {
|
|
3249
|
+
var SvgFileGenericStroke = function SvgFileGenericStroke(props) {
|
|
3258
3250
|
return /*#__PURE__*/React.createElement("svg", _extends$1({
|
|
3259
3251
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3260
3252
|
width: 16,
|
|
3261
3253
|
height: 16,
|
|
3262
|
-
viewBox: "0 0 16 16",
|
|
3263
3254
|
focusable: "false",
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
}
|
|
3255
|
+
viewBox: "0 0 16 16",
|
|
3256
|
+
"aria-hidden": "true"
|
|
3257
|
+
}, props), _path$1 || (_path$1 = /*#__PURE__*/React.createElement("path", {
|
|
3258
|
+
fill: "none",
|
|
3259
|
+
stroke: "currentColor",
|
|
3260
|
+
d: "M14.5 4.2V15c0 .28-.22.5-.5.5H2c-.28 0-.5-.22-.5-.5V1c0-.28.22-.5.5-.5h8.85c.13 0 .26.05.36.15l3.15 3.2c.09.1.14.22.14.35zm-4-3.7V4c0 .28.22.5.5.5h3.5"
|
|
3261
|
+
})));
|
|
3262
|
+
};
|
|
3267
3263
|
|
|
3268
|
-
|
|
3264
|
+
var _path;
|
|
3269
3265
|
|
|
3270
|
-
var
|
|
3271
|
-
fill: "none",
|
|
3272
|
-
stroke: "currentColor",
|
|
3273
|
-
strokeLinecap: "round",
|
|
3274
|
-
d: "M14.5 4.205V15a.5.5 0 01-.5.5H2a.5.5 0 01-.5-.5V1A.5.5 0 012 .5h8.853a.5.5 0 01.356.15l3.148 3.204a.5.5 0 01.143.35zM10.5.5V4a.5.5 0 00.5.5h3.5m-9 8l5-5m0 5l-5-5"
|
|
3275
|
-
});
|
|
3266
|
+
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); }
|
|
3276
3267
|
|
|
3277
|
-
function SvgFileErrorStroke(props) {
|
|
3268
|
+
var SvgFileErrorStroke = function SvgFileErrorStroke(props) {
|
|
3278
3269
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3279
3270
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3280
3271
|
width: 16,
|
|
3281
3272
|
height: 16,
|
|
3282
|
-
viewBox: "0 0 16 16",
|
|
3283
3273
|
focusable: "false",
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
}
|
|
3274
|
+
viewBox: "0 0 16 16",
|
|
3275
|
+
"aria-hidden": "true"
|
|
3276
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
3277
|
+
fill: "none",
|
|
3278
|
+
stroke: "currentColor",
|
|
3279
|
+
strokeLinecap: "round",
|
|
3280
|
+
d: "M14.5 4.205V15a.5.5 0 01-.5.5H2a.5.5 0 01-.5-.5V1A.5.5 0 012 .5h8.853a.5.5 0 01.356.15l3.148 3.204a.5.5 0 01.143.35zM10.5.5V4a.5.5 0 00.5.5h3.5m-9 8l5-5m0 5l-5-5"
|
|
3281
|
+
})));
|
|
3282
|
+
};
|
|
3287
3283
|
|
|
3288
3284
|
var FileType;
|
|
3289
3285
|
(function (FileType) {
|
|
@@ -3325,7 +3321,7 @@ var fileIconsCompact = {
|
|
|
3325
3321
|
};
|
|
3326
3322
|
|
|
3327
3323
|
var _excluded$1 = ["children", "type", "isCompact", "focusInset", "validation"];
|
|
3328
|
-
var
|
|
3324
|
+
var FileComponent = forwardRef(function (_ref, ref) {
|
|
3329
3325
|
var children = _ref.children,
|
|
3330
3326
|
type = _ref.type,
|
|
3331
3327
|
isCompact = _ref.isCompact,
|
|
@@ -3351,15 +3347,16 @@ var File = forwardRef(function (_ref, ref) {
|
|
|
3351
3347
|
return typeof child === 'string' ? React__default.createElement("span", null, child) : child;
|
|
3352
3348
|
})));
|
|
3353
3349
|
});
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
File.Delete = Delete;
|
|
3357
|
-
File.propTypes = {
|
|
3350
|
+
FileComponent.displayName = 'File';
|
|
3351
|
+
FileComponent.propTypes = {
|
|
3358
3352
|
focusInset: PropTypes.bool,
|
|
3359
3353
|
isCompact: PropTypes.bool,
|
|
3360
3354
|
type: PropTypes.oneOf(ARRAY_FILE_TYPE),
|
|
3361
3355
|
validation: PropTypes.oneOf(['success', 'error'])
|
|
3362
3356
|
};
|
|
3357
|
+
var File = FileComponent;
|
|
3358
|
+
File.Close = Close;
|
|
3359
|
+
File.Delete = Delete;
|
|
3363
3360
|
|
|
3364
3361
|
var _excluded = ["start", "end", "disabled", "isCompact", "isBare", "focusInset", "readOnly", "validation", "wrapperProps", "wrapperRef", "onSelect"],
|
|
3365
3362
|
_excluded2 = ["onClick", "onFocus", "onBlur", "onMouseOver", "onMouseOut"];
|
|
@@ -3461,5 +3458,6 @@ MediaInput.propTypes = {
|
|
|
3461
3458
|
validation: PropTypes.oneOf(['success', 'warning', 'error']),
|
|
3462
3459
|
wrapperProps: PropTypes.object
|
|
3463
3460
|
};
|
|
3461
|
+
MediaInput.displayName = 'MediaInput';
|
|
3464
3462
|
|
|
3465
|
-
export { Checkbox, FauxInput, Field, Fieldset, File, FileList, FileUpload, Hint, Input, InputGroup, Label$1 as Label, MediaInput, Message, MultiThumbRange
|
|
3463
|
+
export { Checkbox, FauxInput, Field, Fieldset, File, FileList, FileUpload, Hint, Input, InputGroup, Label$1 as Label, MediaInput, Message, MultiThumbRange, Radio, Range, Select, Textarea, Tiles, Toggle };
|