@app-studio/web 0.8.17 → 0.8.19
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/components/Icon/Icon.d.ts +57 -0
- package/dist/components/Layout/Center/Center/Center.view.d.ts +2 -2
- package/dist/components/Layout/Horizontal/Horizontal/Horizontal.view.d.ts +2 -2
- package/dist/components/Layout/Horizontal/Horizontal.d.ts +2 -2
- package/dist/components/Layout/Vertical/Vertical/Vertical.view.d.ts +2 -2
- package/dist/components/Layout/View/View.d.ts +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/pages/icon.page.d.ts +3 -0
- package/dist/web.cjs.development.js +1172 -595
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +1123 -596
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +1174 -599
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/package.json +2 -2
- package/dist/components/Svg/ArrowDown.d.ts +0 -8
- package/dist/components/Svg/ArrowUp.d.ts +0 -8
- package/dist/components/Svg/Check.d.ts +0 -8
- package/dist/components/Svg/Close.d.ts +0 -8
- package/dist/components/Svg/CloseEye.d.ts +0 -8
- package/dist/components/Svg/DustBin.d.ts +0 -8
- package/dist/components/Svg/Edit.d.ts +0 -8
- package/dist/components/Svg/Error.d.ts +0 -8
- package/dist/components/Svg/ExternalLink.d.ts +0 -8
- package/dist/components/Svg/Indeterminate.d.ts +0 -8
- package/dist/components/Svg/Info.d.ts +0 -8
- package/dist/components/Svg/OpenEye.d.ts +0 -8
- package/dist/components/Svg/Plus.d.ts +0 -8
- package/dist/components/Svg/Profile.d.ts +0 -8
- package/dist/components/Svg/RightArrow.d.ts +0 -8
- package/dist/components/Svg/Search.d.ts +0 -8
- package/dist/components/Svg/Success.d.ts +0 -8
- package/dist/components/Svg/Tick.d.ts +0 -8
- package/dist/components/Svg/Warning.d.ts +0 -8
- package/dist/components/Svg/index.d.ts +0 -16
|
@@ -16,9 +16,11 @@ var reactRouterDom = require('react-router-dom');
|
|
|
16
16
|
require('core-js/modules/es.array.includes.js');
|
|
17
17
|
require('core-js/modules/es.string.includes.js');
|
|
18
18
|
require('core-js/modules/es.string.starts-with.js');
|
|
19
|
+
var Icon = require('src/components/Icon/Icon');
|
|
19
20
|
var format = _interopDefault(require('date-fns/format'));
|
|
20
21
|
var formik = require('formik');
|
|
21
22
|
var zustand = require('zustand');
|
|
23
|
+
var Layout = require('src/components/Layout');
|
|
22
24
|
|
|
23
25
|
var Top = props => (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
|
|
24
26
|
marginBottom: "auto"
|
|
@@ -50,33 +52,33 @@ function _objectWithoutPropertiesLoose(r, e) {
|
|
|
50
52
|
|
|
51
53
|
var HeadingSizes = {
|
|
52
54
|
h1: {
|
|
53
|
-
fontSize: 96,
|
|
54
|
-
lineHeight: 112,
|
|
55
|
-
letterSpacing: -1.5
|
|
56
|
-
},
|
|
57
|
-
h2: {
|
|
58
55
|
fontSize: 60,
|
|
59
56
|
lineHeight: 71,
|
|
60
57
|
letterSpacing: -0.5
|
|
61
58
|
},
|
|
62
|
-
|
|
59
|
+
h2: {
|
|
63
60
|
fontSize: 48,
|
|
64
61
|
lineHeight: 57,
|
|
65
62
|
letterSpacing: 0
|
|
66
63
|
},
|
|
67
|
-
|
|
64
|
+
h3: {
|
|
68
65
|
fontSize: 34,
|
|
69
66
|
lineHeight: 40,
|
|
70
67
|
letterSpacing: 0.25
|
|
71
68
|
},
|
|
72
|
-
|
|
69
|
+
h4: {
|
|
73
70
|
fontSize: 24,
|
|
74
71
|
lineHeight: 28,
|
|
75
72
|
letterSpacing: 0
|
|
76
73
|
},
|
|
74
|
+
h5: {
|
|
75
|
+
fontSize: 18,
|
|
76
|
+
lineHeight: 22,
|
|
77
|
+
letterSpacing: 0.15
|
|
78
|
+
},
|
|
77
79
|
h6: {
|
|
78
|
-
fontSize:
|
|
79
|
-
lineHeight:
|
|
80
|
+
fontSize: 14,
|
|
81
|
+
lineHeight: 18,
|
|
80
82
|
letterSpacing: 0.15
|
|
81
83
|
}
|
|
82
84
|
};
|
|
@@ -171,12 +173,11 @@ var TextComponent = props => {
|
|
|
171
173
|
var Text = TextComponent;
|
|
172
174
|
|
|
173
175
|
var _excluded$1 = ["justifyContent", "isReversed"];
|
|
174
|
-
|
|
175
|
-
var VerticalView = _ref => {
|
|
176
|
+
var VerticalView = /*#__PURE__*/React__default.forwardRef((_ref, ref) => {
|
|
176
177
|
var {
|
|
177
|
-
// Sets a default alignment for content within the
|
|
178
|
+
// Sets a default alignment for content within the Vertical container to 'flex-start'
|
|
178
179
|
justifyContent = 'flex-start',
|
|
179
|
-
// Determines the direction in which the
|
|
180
|
+
// Determines the direction in which the Vertical elements are stacked, default not reversed
|
|
180
181
|
isReversed = false
|
|
181
182
|
} = _ref,
|
|
182
183
|
props = _objectWithoutPropertiesLoose(_ref, _excluded$1);
|
|
@@ -184,447 +185,1029 @@ var VerticalView = _ref => {
|
|
|
184
185
|
display: "flex",
|
|
185
186
|
justifyContent: justifyContent,
|
|
186
187
|
flexDirection: isReversed ? 'column-reverse' : 'column'
|
|
187
|
-
}, props
|
|
188
|
-
|
|
188
|
+
}, props, {
|
|
189
|
+
ref: ref
|
|
190
|
+
}));
|
|
191
|
+
});
|
|
192
|
+
VerticalView.displayName = 'VerticalView';
|
|
189
193
|
|
|
190
|
-
|
|
191
|
-
var VerticalComponent = props => (
|
|
192
|
-
/*#__PURE__*/
|
|
193
|
-
// Renders the VerticalView component, passing all of the received props through to it.
|
|
194
|
-
React__default.createElement(VerticalView, Object.assign({}, props)));
|
|
195
|
-
// Exports the VerticalComponent as Vertical for use in other parts of the application.
|
|
196
|
-
var Vertical = VerticalComponent;
|
|
194
|
+
var Vertical = props => (/*#__PURE__*/React__default.createElement(VerticalView, Object.assign({}, props)));
|
|
197
195
|
|
|
198
|
-
|
|
199
|
-
var
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
//
|
|
204
|
-
|
|
196
|
+
var _excluded$2 = ["justifyContent", "isReversed"];
|
|
197
|
+
var HorizontalView = /*#__PURE__*/React__default.forwardRef((_ref, ref) => {
|
|
198
|
+
var {
|
|
199
|
+
// Sets a default alignment for content within the Horizontal container to 'flex-start'
|
|
200
|
+
justifyContent = 'flex-start',
|
|
201
|
+
// Determines the direction in which the Horizontal elements are stacked, default not reversed
|
|
202
|
+
isReversed = false
|
|
203
|
+
} = _ref,
|
|
204
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2);
|
|
205
|
+
return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
|
|
206
|
+
display: "flex",
|
|
207
|
+
justifyContent: justifyContent,
|
|
208
|
+
flexDirection: isReversed ? 'row-reverse' : 'row'
|
|
209
|
+
}, props, {
|
|
210
|
+
ref: ref
|
|
211
|
+
}));
|
|
212
|
+
});
|
|
213
|
+
HorizontalView.displayName = 'Horizontal';
|
|
205
214
|
|
|
206
|
-
|
|
207
|
-
var CenterView = props => (
|
|
208
|
-
/*#__PURE__*/
|
|
209
|
-
// Renders a 'View' component with display flex and center alignment applied on both axes, passing all received props.
|
|
210
|
-
React__default.createElement(appStudio.View, Object.assign({
|
|
211
|
-
display: "flex",
|
|
212
|
-
justifyContent: "center",
|
|
213
|
-
alignItems: "center"
|
|
214
|
-
}, props)));
|
|
215
|
+
var Horizontal = props => (/*#__PURE__*/React__default.createElement(HorizontalView, Object.assign({}, props)));
|
|
215
216
|
|
|
216
|
-
|
|
217
|
-
var
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
217
|
+
var _excluded$3 = ["isReversed"];
|
|
218
|
+
var CenterView = /*#__PURE__*/React__default.forwardRef((_ref, ref) => {
|
|
219
|
+
var props = _objectWithoutPropertiesLoose(_ref, _excluded$3);
|
|
220
|
+
return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
|
|
221
|
+
display: "flex",
|
|
222
|
+
justifyContent: "center",
|
|
223
|
+
alignItems: "center"
|
|
224
|
+
}, props, {
|
|
225
|
+
ref: ref
|
|
226
|
+
}));
|
|
227
|
+
});
|
|
228
|
+
CenterView.displayName = 'Center';
|
|
229
|
+
|
|
230
|
+
var Center = props => (/*#__PURE__*/React__default.createElement(CenterView, Object.assign({}, props)));
|
|
223
231
|
|
|
224
|
-
var _excluded$
|
|
225
|
-
|
|
232
|
+
var _excluded$4 = ["size", "color"],
|
|
233
|
+
_excluded2 = ["size", "color"],
|
|
234
|
+
_excluded3 = ["size", "color"],
|
|
235
|
+
_excluded4 = ["size", "color"],
|
|
236
|
+
_excluded5 = ["size", "color"],
|
|
237
|
+
_excluded6 = ["size", "color"],
|
|
238
|
+
_excluded7 = ["size", "color"],
|
|
239
|
+
_excluded8 = ["size", "color"],
|
|
240
|
+
_excluded9 = ["size", "color"],
|
|
241
|
+
_excluded10 = ["size", "color"],
|
|
242
|
+
_excluded11 = ["size", "color"],
|
|
243
|
+
_excluded12 = ["size", "color"],
|
|
244
|
+
_excluded13 = ["size", "color"],
|
|
245
|
+
_excluded14 = ["size", "color"],
|
|
246
|
+
_excluded15 = ["size", "color"],
|
|
247
|
+
_excluded16 = ["size", "color"],
|
|
248
|
+
_excluded17 = ["size", "color"],
|
|
249
|
+
_excluded18 = ["size", "color"],
|
|
250
|
+
_excluded19 = ["size", "color"],
|
|
251
|
+
_excluded20 = ["size", "color"],
|
|
252
|
+
_excluded21 = ["size", "color"],
|
|
253
|
+
_excluded22 = ["size", "color"],
|
|
254
|
+
_excluded23 = ["size", "color"],
|
|
255
|
+
_excluded24 = ["size", "color"],
|
|
256
|
+
_excluded25 = ["size", "color"],
|
|
257
|
+
_excluded26 = ["size", "color"],
|
|
258
|
+
_excluded27 = ["size", "color"],
|
|
259
|
+
_excluded28 = ["size", "color"],
|
|
260
|
+
_excluded29 = ["size", "color"],
|
|
261
|
+
_excluded30 = ["size", "color"],
|
|
262
|
+
_excluded31 = ["size", "color"],
|
|
263
|
+
_excluded32 = ["size", "color"],
|
|
264
|
+
_excluded33 = ["size", "color"],
|
|
265
|
+
_excluded34 = ["size", "color"],
|
|
266
|
+
_excluded35 = ["size", "color"],
|
|
267
|
+
_excluded36 = ["size", "color"],
|
|
268
|
+
_excluded37 = ["size", "color"],
|
|
269
|
+
_excluded38 = ["size", "color"],
|
|
270
|
+
_excluded39 = ["size", "color"],
|
|
271
|
+
_excluded40 = ["size", "color"],
|
|
272
|
+
_excluded41 = ["size", "color"],
|
|
273
|
+
_excluded42 = ["size", "color"],
|
|
274
|
+
_excluded43 = ["size", "color"],
|
|
275
|
+
_excluded44 = ["size", "color"],
|
|
276
|
+
_excluded45 = ["size", "color"],
|
|
277
|
+
_excluded46 = ["size", "color"],
|
|
278
|
+
_excluded47 = ["size", "color"],
|
|
279
|
+
_excluded48 = ["size", "color"],
|
|
280
|
+
_excluded49 = ["size", "color"],
|
|
281
|
+
_excluded50 = ["size", "color"];
|
|
282
|
+
// Default wrapper component for consistent sizing
|
|
283
|
+
var IconWrapper = _ref => {
|
|
226
284
|
var {
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
285
|
+
size,
|
|
286
|
+
color = 'black',
|
|
287
|
+
transform,
|
|
288
|
+
orientation,
|
|
289
|
+
children
|
|
290
|
+
} = _ref;
|
|
231
291
|
return /*#__PURE__*/React__default.createElement(Center, {
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
292
|
+
size: size,
|
|
293
|
+
lineHeight: size,
|
|
294
|
+
color: color,
|
|
295
|
+
display: "flex",
|
|
296
|
+
transform: transform ? transform : orientation == 'left' ? 'rotate(-90deg)' : orientation == 'right' ? 'rotate(90deg)' : orientation == 'up' ? 'rotate(0deg)' : orientation == 'down' ? 'rotate(180deg)' : 'none'
|
|
297
|
+
}, children);
|
|
298
|
+
};
|
|
299
|
+
var ChevronIcon = _ref2 => {
|
|
300
|
+
var {
|
|
301
|
+
size = 24,
|
|
302
|
+
color = 'currentColor'
|
|
303
|
+
} = _ref2,
|
|
304
|
+
props = _objectWithoutPropertiesLoose(_ref2, _excluded$4);
|
|
305
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
306
|
+
size: size,
|
|
307
|
+
color: color
|
|
308
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
309
|
+
width: "16",
|
|
310
|
+
height: "16",
|
|
311
|
+
fill: "currentColor",
|
|
312
|
+
viewBox: "0 0 24 24"
|
|
313
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
314
|
+
d: "M12.771 7.115a.829.829 0 0 0-1.2 0L3 15.686l1.2 1.2 7.971-7.971 7.972 7.971 1.2-1.2-8.572-8.571Z"
|
|
315
|
+
})));
|
|
316
|
+
};
|
|
317
|
+
var CheckIcon = _ref3 => {
|
|
318
|
+
var {
|
|
319
|
+
size = 24,
|
|
320
|
+
color = 'currentColor'
|
|
321
|
+
} = _ref3,
|
|
322
|
+
props = _objectWithoutPropertiesLoose(_ref3, _excluded2);
|
|
323
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
324
|
+
size: size,
|
|
325
|
+
color: color
|
|
326
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
327
|
+
viewBox: "0 0 24 24",
|
|
328
|
+
fill: "none",
|
|
329
|
+
stroke: 'currentColor',
|
|
330
|
+
strokeWidth: "1"
|
|
331
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
332
|
+
d: "M17.0001 9L10 16L7 13",
|
|
243
333
|
strokeLinecap: "round",
|
|
244
334
|
strokeLinejoin: "round"
|
|
245
|
-
})
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
335
|
+
})));
|
|
336
|
+
};
|
|
337
|
+
var CloseIcon = _ref4 => {
|
|
338
|
+
var {
|
|
339
|
+
size = 24,
|
|
340
|
+
color = 'currentColor'
|
|
341
|
+
} = _ref4,
|
|
342
|
+
props = _objectWithoutPropertiesLoose(_ref4, _excluded3);
|
|
343
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
344
|
+
size: size,
|
|
345
|
+
color: color
|
|
346
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
347
|
+
viewBox: "0 0 24 24",
|
|
348
|
+
fill: 'currentColor'
|
|
349
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
350
|
+
d: "M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z"
|
|
351
|
+
})));
|
|
352
|
+
};
|
|
353
|
+
var CloseEyeIcon = _ref5 => {
|
|
354
|
+
var {
|
|
355
|
+
size = 24,
|
|
356
|
+
color = 'currentColor'
|
|
357
|
+
} = _ref5,
|
|
358
|
+
props = _objectWithoutPropertiesLoose(_ref5, _excluded4);
|
|
359
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
360
|
+
size: size,
|
|
361
|
+
color: color
|
|
362
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
363
|
+
viewBox: "0 0 24 24",
|
|
364
|
+
fill: color,
|
|
365
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
366
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
367
|
+
d: "M19.7071 5.70711C20.0976 5.31658 20.0976 4.68342 19.7071 4.29289C19.3166 3.90237 18.6834 3.90237 18.2929 4.29289L14.032 8.55382C13.4365 8.20193 12.7418 8 12 8C9.79086 8 8 9.79086 8 12C8 12.7418 8.20193 13.4365 8.55382 14.032L4.29289 18.2929C3.90237 18.6834 3.90237 19.3166 4.29289 19.7071C4.68342 20.0976 5.31658 20.0976 5.70711 19.7071L9.96803 15.4462C10.5635 15.7981 11.2582 16 12 16C14.2091 16 16 14.2091 16 12C16 11.2582 15.7981 10.5635 15.4462 9.96803L19.7071 5.70711ZM12.518 10.0677C12.3528 10.0236 12.1792 10 12 10C10.8954 10 10 10.8954 10 12C10 12.1792 10.0236 12.3528 10.0677 12.518L12.518 10.0677ZM11.482 13.9323L13.9323 11.482C13.9764 11.6472 14 11.8208 14 12C14 13.1046 13.1046 14 12 14C11.8208 14 11.6472 13.9764 11.482 13.9323ZM15.7651 4.8207C14.6287 4.32049 13.3675 4 12 4C9.14754 4 6.75717 5.39462 4.99812 6.90595C3.23268 8.42276 2.00757 10.1376 1.46387 10.9698C1.05306 11.5985 1.05306 12.4015 1.46387 13.0302C1.92276 13.7326 2.86706 15.0637 4.21194 16.3739L5.62626 14.9596C4.4555 13.8229 3.61144 12.6531 3.18002 12C3.6904 11.2274 4.77832 9.73158 6.30147 8.42294C7.87402 7.07185 9.81574 6 12 6C12.7719 6 13.5135 6.13385 14.2193 6.36658L15.7651 4.8207ZM12 18C11.2282 18 10.4866 17.8661 9.78083 17.6334L8.23496 19.1793C9.37136 19.6795 10.6326 20 12 20C14.8525 20 17.2429 18.6054 19.002 17.0941C20.7674 15.5772 21.9925 13.8624 22.5362 13.0302C22.947 12.4015 22.947 11.5985 22.5362 10.9698C22.0773 10.2674 21.133 8.93627 19.7881 7.62611L18.3738 9.04043C19.5446 10.1771 20.3887 11.3469 20.8201 12C20.3097 12.7726 19.2218 14.2684 17.6986 15.5771C16.1261 16.9282 14.1843 18 12 18Z",
|
|
368
|
+
fill: "currentColor"
|
|
369
|
+
})));
|
|
370
|
+
};
|
|
371
|
+
var DustBinIcon = _ref6 => {
|
|
372
|
+
var {
|
|
373
|
+
size = 24,
|
|
374
|
+
color = 'currentColor'
|
|
375
|
+
} = _ref6,
|
|
376
|
+
props = _objectWithoutPropertiesLoose(_ref6, _excluded5);
|
|
377
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
378
|
+
size: size,
|
|
379
|
+
color: color
|
|
380
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
381
|
+
viewBox: "0 0 24 24",
|
|
382
|
+
fill: 'currentColor'
|
|
383
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
384
|
+
d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
385
|
+
})));
|
|
386
|
+
};
|
|
387
|
+
var EditIcon = _ref7 => {
|
|
388
|
+
var {
|
|
389
|
+
size = 24,
|
|
390
|
+
color = 'currentColor'
|
|
391
|
+
} = _ref7,
|
|
392
|
+
props = _objectWithoutPropertiesLoose(_ref7, _excluded6);
|
|
393
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
394
|
+
size: size,
|
|
395
|
+
color: color
|
|
396
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
397
|
+
viewBox: "0 0 24 24",
|
|
251
398
|
fill: "none",
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
id: "Dribbble-Light-Preview",
|
|
255
|
-
transform: "translate(-220.000000, -6684.000000)",
|
|
256
|
-
fill: "#000000"
|
|
257
|
-
}, /*#__PURE__*/React__default.createElement("g", {
|
|
258
|
-
id: "icons",
|
|
259
|
-
transform: "translate(56.000000, 160.000000)"
|
|
399
|
+
stroke: 'currentColor',
|
|
400
|
+
strokeWidth: "1"
|
|
260
401
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
261
|
-
d: "
|
|
262
|
-
|
|
263
|
-
})))))));
|
|
402
|
+
d: "M18.3785 8.44975L8.9636 17.8648C8.6844 18.144 8.3288 18.3343 7.94161 18.4117L4.99988 19.0001L5.58823 16.0583C5.66566 15.6711 5.85597 15.3155 6.13517 15.0363L15.5501 5.62132M18.3785 8.44975L19.7927 7.03553C20.1832 6.64501 20.1832 6.01184 19.7927 5.62132L18.3785 4.20711C17.988 3.81658 17.3548 3.81658 16.9643 4.20711L15.5501 5.62132M18.3785 8.44975L15.5501 5.62132"
|
|
403
|
+
})));
|
|
264
404
|
};
|
|
265
|
-
|
|
266
|
-
var _excluded$3 = ["size", "color"];
|
|
267
|
-
var ArrowUpSvg = _ref => {
|
|
405
|
+
var ExternalLinkIcon = _ref8 => {
|
|
268
406
|
var {
|
|
269
|
-
size =
|
|
270
|
-
color = '
|
|
271
|
-
} =
|
|
272
|
-
props = _objectWithoutPropertiesLoose(
|
|
273
|
-
return /*#__PURE__*/React__default.createElement(
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
}, /*#__PURE__*/React__default.createElement("svg",
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
407
|
+
size = 24,
|
|
408
|
+
color = 'currentColor'
|
|
409
|
+
} = _ref8,
|
|
410
|
+
props = _objectWithoutPropertiesLoose(_ref8, _excluded7);
|
|
411
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
412
|
+
size: size,
|
|
413
|
+
color: color
|
|
414
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
415
|
+
viewBox: "0 0 24 24",
|
|
416
|
+
fill: 'currentColor'
|
|
417
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
418
|
+
d: "M14 3h7v7h-2V5.41l-9.29 9.3-1.42-1.42 9.3-9.29H14V3ZM5 5h5v2H6v11h11v-4h2v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1Z"
|
|
419
|
+
})));
|
|
420
|
+
};
|
|
421
|
+
var MinusIcon = _ref9 => {
|
|
422
|
+
var {
|
|
423
|
+
size = 24,
|
|
424
|
+
color = 'currentColor'
|
|
425
|
+
} = _ref9,
|
|
426
|
+
props = _objectWithoutPropertiesLoose(_ref9, _excluded8);
|
|
427
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
428
|
+
padding: 2,
|
|
429
|
+
size: size,
|
|
430
|
+
color: color
|
|
431
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
432
|
+
viewBox: "0 0 24 24",
|
|
433
|
+
fill: "none",
|
|
434
|
+
stroke: 'currentColor',
|
|
435
|
+
strokeWidth: "2"
|
|
436
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
437
|
+
d: "M7 12h10",
|
|
287
438
|
strokeLinecap: "round",
|
|
288
439
|
strokeLinejoin: "round"
|
|
289
|
-
})
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
transform: "translate(56.000000, 160.000000)"
|
|
440
|
+
})));
|
|
441
|
+
};
|
|
442
|
+
var InfoIcon = _ref10 => {
|
|
443
|
+
var {
|
|
444
|
+
size = 24,
|
|
445
|
+
color = 'currentColor'
|
|
446
|
+
} = _ref10,
|
|
447
|
+
props = _objectWithoutPropertiesLoose(_ref10, _excluded9);
|
|
448
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
449
|
+
size: size,
|
|
450
|
+
color: color
|
|
451
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
452
|
+
viewBox: "0 0 24 24",
|
|
453
|
+
fill: 'currentColor'
|
|
304
454
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
305
|
-
d: "
|
|
306
|
-
|
|
307
|
-
})))))));
|
|
455
|
+
d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"
|
|
456
|
+
})));
|
|
308
457
|
};
|
|
309
|
-
|
|
310
|
-
var _excluded$4 = ["size", "color"];
|
|
311
|
-
var CheckSvg = _ref => {
|
|
458
|
+
var OpenEyeIcon = _ref11 => {
|
|
312
459
|
var {
|
|
313
|
-
size =
|
|
314
|
-
color = '
|
|
315
|
-
} =
|
|
316
|
-
props = _objectWithoutPropertiesLoose(
|
|
317
|
-
return /*#__PURE__*/React__default.createElement(
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
}, /*#__PURE__*/React__default.createElement("svg",
|
|
321
|
-
|
|
322
|
-
|
|
460
|
+
size = 24,
|
|
461
|
+
color = 'currentColor'
|
|
462
|
+
} = _ref11,
|
|
463
|
+
props = _objectWithoutPropertiesLoose(_ref11, _excluded10);
|
|
464
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
465
|
+
size: size,
|
|
466
|
+
color: color
|
|
467
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
468
|
+
viewBox: "0 0 24 24",
|
|
469
|
+
fill: 'currentColor'
|
|
470
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
471
|
+
d: "M12 4C7 4 2.73 7.11 1 12c1.73 4.89 6 8 11 8s9.27-3.11 11-8c-1.73-4.89-6-8-11-8zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"
|
|
472
|
+
})));
|
|
473
|
+
};
|
|
474
|
+
var PlusIcon = _ref12 => {
|
|
475
|
+
var {
|
|
476
|
+
size = 24,
|
|
477
|
+
color = 'currentColor'
|
|
478
|
+
} = _ref12,
|
|
479
|
+
props = _objectWithoutPropertiesLoose(_ref12, _excluded11);
|
|
480
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
481
|
+
size: size,
|
|
482
|
+
color: color
|
|
483
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
484
|
+
viewBox: "0 0 24 24",
|
|
485
|
+
fill: 'currentColor'
|
|
486
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
487
|
+
d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
|
|
488
|
+
})));
|
|
489
|
+
};
|
|
490
|
+
var SpinnerIcon = _ref13 => {
|
|
491
|
+
var {
|
|
492
|
+
size = 24,
|
|
493
|
+
color = 'currentColor'
|
|
494
|
+
} = _ref13,
|
|
495
|
+
props = _objectWithoutPropertiesLoose(_ref13, _excluded12);
|
|
496
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
497
|
+
size: size,
|
|
498
|
+
color: color
|
|
499
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
323
500
|
viewBox: "0 0 24 24",
|
|
324
501
|
fill: "none",
|
|
325
502
|
xmlns: "http://www.w3.org/2000/svg"
|
|
326
|
-
},
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
id: "SVGRepo_tracerCarrier",
|
|
331
|
-
strokeLinecap: "round",
|
|
332
|
-
strokeLinejoin: "round",
|
|
333
|
-
stroke: "#CCCCCC",
|
|
334
|
-
strokeWidth: "0.048"
|
|
335
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
336
|
-
id: "SVGRepo_iconCarrier"
|
|
337
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
338
|
-
d: "M17.0001 9L10 16L7 13",
|
|
503
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
504
|
+
cx: "12",
|
|
505
|
+
cy: "12",
|
|
506
|
+
r: "10",
|
|
339
507
|
stroke: color,
|
|
340
|
-
strokeWidth: "
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
508
|
+
strokeWidth: "2",
|
|
509
|
+
opacity: "0.3"
|
|
510
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
511
|
+
d: "M22 12a10 10 0 1 1-4.93-8.62",
|
|
512
|
+
stroke: color,
|
|
513
|
+
strokeWidth: "2",
|
|
514
|
+
strokeLinecap: "round"
|
|
515
|
+
})));
|
|
344
516
|
};
|
|
345
|
-
|
|
346
|
-
var _excluded$5 = ["size", "color"];
|
|
347
|
-
var CloseSvg = _ref => {
|
|
517
|
+
var ProfileIcon = _ref14 => {
|
|
348
518
|
var {
|
|
349
|
-
size =
|
|
350
|
-
color = '
|
|
351
|
-
} =
|
|
352
|
-
props = _objectWithoutPropertiesLoose(
|
|
353
|
-
return /*#__PURE__*/React__default.createElement(
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
}, /*#__PURE__*/React__default.createElement("svg",
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
519
|
+
size = 24,
|
|
520
|
+
color = 'currentColor'
|
|
521
|
+
} = _ref14,
|
|
522
|
+
props = _objectWithoutPropertiesLoose(_ref14, _excluded13);
|
|
523
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
524
|
+
size: size,
|
|
525
|
+
color: color
|
|
526
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
527
|
+
viewBox: "0 0 24 24",
|
|
528
|
+
fill: 'currentColor'
|
|
529
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
530
|
+
fill: "currentColor",
|
|
531
|
+
d: "M12 13c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4zm0-9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z M12 2C9.79 2 8 3.79 8 6s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z M12 13c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z"
|
|
532
|
+
})));
|
|
533
|
+
};
|
|
534
|
+
var ArrowIcon = _ref15 => {
|
|
535
|
+
var {
|
|
536
|
+
size = 24,
|
|
537
|
+
color = 'currentColor'
|
|
538
|
+
} = _ref15,
|
|
539
|
+
props = _objectWithoutPropertiesLoose(_ref15, _excluded14);
|
|
540
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
541
|
+
size: size,
|
|
542
|
+
color: color
|
|
543
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
544
|
+
viewBox: "0 0 24 24",
|
|
545
|
+
fill: 'currentColor'
|
|
546
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
547
|
+
d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
|
|
548
|
+
})));
|
|
549
|
+
};
|
|
550
|
+
var SearchIcon = _ref16 => {
|
|
551
|
+
var {
|
|
552
|
+
size = 24,
|
|
553
|
+
color = 'currentColor'
|
|
554
|
+
} = _ref16,
|
|
555
|
+
props = _objectWithoutPropertiesLoose(_ref16, _excluded15);
|
|
556
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
557
|
+
size: size,
|
|
558
|
+
color: color
|
|
559
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
560
|
+
viewBox: "0 0 24 24",
|
|
561
|
+
fill: 'currentColor'
|
|
562
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
563
|
+
d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
|
|
564
|
+
})));
|
|
565
|
+
};
|
|
566
|
+
var SuccessIcon = _ref17 => {
|
|
567
|
+
var {
|
|
568
|
+
size = 24,
|
|
569
|
+
color = 'currentColor'
|
|
570
|
+
} = _ref17,
|
|
571
|
+
props = _objectWithoutPropertiesLoose(_ref17, _excluded16);
|
|
572
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
573
|
+
size: size,
|
|
574
|
+
color: color
|
|
575
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
576
|
+
viewBox: "0 0 24 24",
|
|
577
|
+
fill: 'currentColor'
|
|
578
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
579
|
+
d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
|
|
580
|
+
})));
|
|
581
|
+
};
|
|
582
|
+
var TickIcon = _ref18 => {
|
|
583
|
+
var {
|
|
584
|
+
size = 24,
|
|
585
|
+
color = 'currentColor'
|
|
586
|
+
} = _ref18,
|
|
587
|
+
props = _objectWithoutPropertiesLoose(_ref18, _excluded17);
|
|
588
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
589
|
+
size: size,
|
|
590
|
+
color: color
|
|
591
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
592
|
+
viewBox: "0 0 24 24",
|
|
593
|
+
fill: "none",
|
|
594
|
+
stroke: 'currentColor',
|
|
595
|
+
strokeWidth: "2"
|
|
596
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
597
|
+
d: "M5 13l4 4L19 7",
|
|
367
598
|
strokeLinecap: "round",
|
|
368
599
|
strokeLinejoin: "round"
|
|
369
|
-
})
|
|
370
|
-
|
|
600
|
+
})));
|
|
601
|
+
};
|
|
602
|
+
var NotificationIcon = _ref19 => {
|
|
603
|
+
var {
|
|
604
|
+
size = 24,
|
|
605
|
+
color = 'currentColor'
|
|
606
|
+
} = _ref19,
|
|
607
|
+
props = _objectWithoutPropertiesLoose(_ref19, _excluded18);
|
|
608
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
609
|
+
size: size,
|
|
610
|
+
color: color
|
|
611
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
612
|
+
viewBox: "0 0 24 24",
|
|
613
|
+
fill: "none",
|
|
614
|
+
stroke: 'currentColor',
|
|
615
|
+
strokeWidth: "1"
|
|
371
616
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
617
|
+
d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z"
|
|
618
|
+
})));
|
|
619
|
+
};
|
|
620
|
+
var SettingsIcon = _ref20 => {
|
|
621
|
+
var {
|
|
622
|
+
size = 24,
|
|
623
|
+
color = 'currentColor'
|
|
624
|
+
} = _ref20,
|
|
625
|
+
props = _objectWithoutPropertiesLoose(_ref20, _excluded19);
|
|
626
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
627
|
+
size: size,
|
|
628
|
+
color: color
|
|
629
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
630
|
+
viewBox: "0 0 24 24",
|
|
631
|
+
fill: "none",
|
|
632
|
+
stroke: 'currentColor',
|
|
633
|
+
strokeWidth: "1"
|
|
634
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
635
|
+
d: "M19.4 13c0-.3.1-.6.1-1s0-.7-.1-1l2.1-1.6c.2-.2.2-.4.1-.6l-2-3.5c-.1-.2-.4-.3-.6-.2l-2.5 1c-.5-.4-1.1-.7-1.7-.9l-.4-2.6c0-.2-.3-.4-.5-.4h-4c-.2 0-.5.2-.5.4l-.4 2.6c-.6.2-1.2.5-1.7.9l-2.5-1c-.2-.1-.5 0-.6.2l-2 3.5c-.1.2-.1.4.1.6L4.6 11c0 .3-.1.6-.1 1s0 .7.1 1l-2.1 1.6c-.2.2-.2.4-.1.6l2 3.5c.1.2.4.3.6.2l2.5-1c.5.4 1.1.7 1.7.9l.4 2.6c0 .2.3.4.5.4h4c.2 0 .5-.2.5-.4l.4-2.6c.6-.2 1.2-.5 1.7-.9l2.5 1c.2.1.5 0 .6-.2l2-3.5c.1-.2.1-.4-.1-.6L19.4 13zM12 15.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z"
|
|
636
|
+
})));
|
|
637
|
+
};
|
|
638
|
+
var CalendarIcon = _ref21 => {
|
|
639
|
+
var {
|
|
640
|
+
size = 24,
|
|
641
|
+
color = 'currentColor'
|
|
642
|
+
} = _ref21,
|
|
643
|
+
props = _objectWithoutPropertiesLoose(_ref21, _excluded20);
|
|
644
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
645
|
+
size: size,
|
|
646
|
+
color: color
|
|
647
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
648
|
+
viewBox: "0 0 24 24",
|
|
649
|
+
fill: "none",
|
|
650
|
+
stroke: 'currentColor',
|
|
651
|
+
strokeWidth: "1"
|
|
652
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
653
|
+
d: "M19 4h-1V3c0-.55-.45-1-1-1s-1 .45-1 1v1H8V3c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z"
|
|
654
|
+
})));
|
|
655
|
+
};
|
|
656
|
+
var AddIcon = _ref22 => {
|
|
657
|
+
var {
|
|
658
|
+
size = 24,
|
|
659
|
+
color = 'currentColor'
|
|
660
|
+
} = _ref22,
|
|
661
|
+
props = _objectWithoutPropertiesLoose(_ref22, _excluded21);
|
|
662
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
663
|
+
size: size,
|
|
664
|
+
color: color
|
|
665
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
666
|
+
width: "16",
|
|
667
|
+
height: "16",
|
|
668
|
+
fill: "currentColor",
|
|
669
|
+
viewBox: "0 0 24 24"
|
|
670
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
671
|
+
d: "M22.286 11.143h-9.429V1.715h-1.714v9.428H1.714v1.715h9.429v9.428h1.714v-9.428h9.429v-1.715Z"
|
|
672
|
+
})));
|
|
673
|
+
};
|
|
674
|
+
var DownloadIcon = _ref23 => {
|
|
675
|
+
var {
|
|
676
|
+
size = 24,
|
|
677
|
+
color = 'currentColor'
|
|
678
|
+
} = _ref23,
|
|
679
|
+
props = _objectWithoutPropertiesLoose(_ref23, _excluded22);
|
|
680
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
681
|
+
size: size,
|
|
682
|
+
color: color
|
|
683
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
684
|
+
viewBox: "0 0 24 24",
|
|
685
|
+
fill: "none",
|
|
686
|
+
stroke: 'currentColor',
|
|
687
|
+
strokeWidth: "1"
|
|
688
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
689
|
+
d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
|
|
690
|
+
})));
|
|
691
|
+
};
|
|
692
|
+
var UploadIcon = _ref24 => {
|
|
693
|
+
var {
|
|
694
|
+
size = 24,
|
|
695
|
+
color = 'currentColor'
|
|
696
|
+
} = _ref24,
|
|
697
|
+
props = _objectWithoutPropertiesLoose(_ref24, _excluded23);
|
|
698
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
699
|
+
size: size,
|
|
700
|
+
color: color
|
|
701
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
702
|
+
viewBox: "0 0 24 24",
|
|
703
|
+
fill: "none",
|
|
704
|
+
stroke: 'currentColor',
|
|
705
|
+
strokeWidth: "1"
|
|
706
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
707
|
+
d: "M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z"
|
|
708
|
+
})));
|
|
709
|
+
};
|
|
710
|
+
var BookmarkIcon = _ref25 => {
|
|
711
|
+
var {
|
|
712
|
+
size = 24,
|
|
713
|
+
color = 'currentColor'
|
|
714
|
+
} = _ref25,
|
|
715
|
+
props = _objectWithoutPropertiesLoose(_ref25, _excluded24);
|
|
716
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
717
|
+
size: size,
|
|
718
|
+
color: color
|
|
719
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
720
|
+
viewBox: "0 0 24 24",
|
|
721
|
+
fill: "none",
|
|
722
|
+
stroke: 'currentColor',
|
|
723
|
+
strokeWidth: "1"
|
|
724
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
725
|
+
d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
|
|
726
|
+
})));
|
|
727
|
+
};
|
|
728
|
+
var HomeIcon = _ref26 => {
|
|
729
|
+
var {
|
|
730
|
+
size = 24,
|
|
731
|
+
color = 'currentColor'
|
|
732
|
+
} = _ref26,
|
|
733
|
+
props = _objectWithoutPropertiesLoose(_ref26, _excluded25);
|
|
734
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
735
|
+
size: size,
|
|
736
|
+
color: color
|
|
737
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
738
|
+
viewBox: "0 0 24 24",
|
|
739
|
+
fill: "none",
|
|
740
|
+
stroke: 'currentColor',
|
|
741
|
+
strokeWidth: "1"
|
|
742
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
743
|
+
d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
|
|
744
|
+
})));
|
|
745
|
+
};
|
|
746
|
+
var MenuIcon = _ref27 => {
|
|
747
|
+
var {
|
|
748
|
+
size = 24,
|
|
749
|
+
color = 'currentColor'
|
|
750
|
+
} = _ref27,
|
|
751
|
+
props = _objectWithoutPropertiesLoose(_ref27, _excluded26);
|
|
752
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
753
|
+
size: size,
|
|
754
|
+
color: color
|
|
755
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
756
|
+
viewBox: "0 0 24 24",
|
|
757
|
+
fill: "none",
|
|
758
|
+
stroke: 'currentColor',
|
|
759
|
+
strokeWidth: "1"
|
|
760
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
761
|
+
d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"
|
|
762
|
+
})));
|
|
763
|
+
};
|
|
764
|
+
var ShareIcon = _ref28 => {
|
|
765
|
+
var {
|
|
766
|
+
size = 24,
|
|
767
|
+
color = 'currentColor'
|
|
768
|
+
} = _ref28,
|
|
769
|
+
props = _objectWithoutPropertiesLoose(_ref28, _excluded27);
|
|
770
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
771
|
+
size: size,
|
|
772
|
+
color: color
|
|
773
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
774
|
+
viewBox: "0 0 24 24",
|
|
775
|
+
fill: "none",
|
|
776
|
+
stroke: 'currentColor',
|
|
777
|
+
strokeWidth: "1"
|
|
778
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
779
|
+
d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"
|
|
780
|
+
})));
|
|
781
|
+
};
|
|
782
|
+
var FilterIcon = _ref29 => {
|
|
783
|
+
var {
|
|
784
|
+
size = 24,
|
|
785
|
+
color = 'currentColor'
|
|
786
|
+
} = _ref29,
|
|
787
|
+
props = _objectWithoutPropertiesLoose(_ref29, _excluded28);
|
|
788
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
789
|
+
size: size,
|
|
790
|
+
color: color
|
|
791
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
792
|
+
viewBox: "0 0 24 24",
|
|
793
|
+
fill: "none",
|
|
794
|
+
stroke: 'currentColor',
|
|
795
|
+
strokeWidth: "1"
|
|
796
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
797
|
+
d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z"
|
|
798
|
+
})));
|
|
799
|
+
};
|
|
800
|
+
var RefreshIcon = _ref30 => {
|
|
801
|
+
var {
|
|
802
|
+
size = 24,
|
|
803
|
+
color = 'currentColor'
|
|
804
|
+
} = _ref30,
|
|
805
|
+
props = _objectWithoutPropertiesLoose(_ref30, _excluded29);
|
|
806
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
807
|
+
size: size,
|
|
808
|
+
color: color
|
|
809
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
810
|
+
viewBox: "0 0 24 24",
|
|
811
|
+
fill: "none",
|
|
812
|
+
stroke: 'currentColor',
|
|
813
|
+
strokeWidth: "1"
|
|
814
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
815
|
+
d: "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"
|
|
816
|
+
})));
|
|
817
|
+
};
|
|
818
|
+
var CopyIcon = _ref31 => {
|
|
819
|
+
var {
|
|
820
|
+
size = 24,
|
|
821
|
+
color = 'currentColor'
|
|
822
|
+
} = _ref31,
|
|
823
|
+
props = _objectWithoutPropertiesLoose(_ref31, _excluded30);
|
|
824
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
825
|
+
size: size,
|
|
826
|
+
color: color
|
|
827
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
828
|
+
viewBox: "0 0 24 24",
|
|
829
|
+
fill: "none",
|
|
830
|
+
stroke: 'currentColor',
|
|
831
|
+
strokeWidth: "1"
|
|
832
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
833
|
+
d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"
|
|
834
|
+
})));
|
|
835
|
+
};
|
|
836
|
+
var SaveIcon = _ref32 => {
|
|
837
|
+
var {
|
|
838
|
+
size = 24,
|
|
839
|
+
color = 'currentColor'
|
|
840
|
+
} = _ref32,
|
|
841
|
+
props = _objectWithoutPropertiesLoose(_ref32, _excluded31);
|
|
842
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
843
|
+
size: size,
|
|
844
|
+
color: color
|
|
845
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
846
|
+
viewBox: "0 0 24 24",
|
|
847
|
+
fill: "none",
|
|
848
|
+
stroke: 'currentColor',
|
|
849
|
+
strokeWidth: "1"
|
|
850
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
851
|
+
d: "M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z"
|
|
852
|
+
})));
|
|
853
|
+
};
|
|
854
|
+
var PrintIcon = _ref33 => {
|
|
855
|
+
var {
|
|
856
|
+
size = 24,
|
|
857
|
+
color = 'currentColor'
|
|
858
|
+
} = _ref33,
|
|
859
|
+
props = _objectWithoutPropertiesLoose(_ref33, _excluded32);
|
|
860
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
861
|
+
size: size,
|
|
862
|
+
color: color
|
|
863
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
864
|
+
viewBox: "0 0 24 24",
|
|
865
|
+
fill: "none",
|
|
866
|
+
stroke: 'currentColor',
|
|
867
|
+
strokeWidth: "1"
|
|
868
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
869
|
+
d: "M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z"
|
|
870
|
+
})));
|
|
871
|
+
};
|
|
872
|
+
var LockIcon = _ref34 => {
|
|
873
|
+
var {
|
|
874
|
+
size = 24,
|
|
875
|
+
color = 'currentColor'
|
|
876
|
+
} = _ref34,
|
|
877
|
+
props = _objectWithoutPropertiesLoose(_ref34, _excluded33);
|
|
878
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
879
|
+
size: size,
|
|
880
|
+
color: color
|
|
881
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
882
|
+
viewBox: "0 0 24 24",
|
|
883
|
+
fill: "none",
|
|
884
|
+
stroke: 'currentColor',
|
|
885
|
+
strokeWidth: "1"
|
|
886
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
887
|
+
d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"
|
|
888
|
+
})));
|
|
889
|
+
};
|
|
890
|
+
// Previous icons remain the same...
|
|
891
|
+
var UnlockIcon = _ref35 => {
|
|
892
|
+
var {
|
|
893
|
+
size = 24,
|
|
894
|
+
color = 'currentColor'
|
|
895
|
+
} = _ref35,
|
|
896
|
+
props = _objectWithoutPropertiesLoose(_ref35, _excluded34);
|
|
897
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
898
|
+
size: size,
|
|
899
|
+
color: color
|
|
900
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
901
|
+
viewBox: "0 0 24 24",
|
|
902
|
+
fill: "none",
|
|
903
|
+
stroke: 'currentColor',
|
|
904
|
+
strokeWidth: "1"
|
|
905
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
906
|
+
d: "M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2z"
|
|
907
|
+
})));
|
|
908
|
+
};
|
|
909
|
+
var StarIcon = _ref36 => {
|
|
910
|
+
var {
|
|
911
|
+
size = 24,
|
|
912
|
+
color = 'currentColor'
|
|
913
|
+
} = _ref36,
|
|
914
|
+
props = _objectWithoutPropertiesLoose(_ref36, _excluded35);
|
|
915
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
916
|
+
size: size,
|
|
917
|
+
color: color
|
|
918
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
919
|
+
viewBox: "0 0 24 24",
|
|
920
|
+
fill: "none",
|
|
921
|
+
stroke: 'currentColor',
|
|
922
|
+
strokeWidth: "1"
|
|
923
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
924
|
+
d: "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"
|
|
925
|
+
})));
|
|
926
|
+
};
|
|
927
|
+
var HeartIcon = _ref37 => {
|
|
928
|
+
var {
|
|
929
|
+
size = 24,
|
|
930
|
+
color = 'currentColor'
|
|
931
|
+
} = _ref37,
|
|
932
|
+
props = _objectWithoutPropertiesLoose(_ref37, _excluded36);
|
|
933
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
934
|
+
size: size,
|
|
935
|
+
color: color
|
|
936
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
937
|
+
viewBox: "0 0 24 24",
|
|
938
|
+
fill: "none",
|
|
939
|
+
stroke: 'currentColor',
|
|
940
|
+
strokeWidth: "1"
|
|
941
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
942
|
+
d: "M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"
|
|
943
|
+
})));
|
|
944
|
+
};
|
|
945
|
+
var ThumbUpIcon = _ref38 => {
|
|
946
|
+
var {
|
|
947
|
+
size = 24,
|
|
948
|
+
color = 'currentColor'
|
|
949
|
+
} = _ref38,
|
|
950
|
+
props = _objectWithoutPropertiesLoose(_ref38, _excluded37);
|
|
951
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
952
|
+
size: size,
|
|
953
|
+
color: color
|
|
954
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
955
|
+
viewBox: "0 0 24 24",
|
|
956
|
+
fill: "none",
|
|
957
|
+
stroke: 'currentColor',
|
|
958
|
+
strokeWidth: "1"
|
|
959
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
960
|
+
d: "M1 21h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z"
|
|
961
|
+
})));
|
|
962
|
+
};
|
|
963
|
+
var ThumbDownIcon = _ref39 => {
|
|
964
|
+
var {
|
|
965
|
+
size = 24,
|
|
966
|
+
color = 'currentColor'
|
|
967
|
+
} = _ref39,
|
|
968
|
+
props = _objectWithoutPropertiesLoose(_ref39, _excluded38);
|
|
969
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
970
|
+
size: size,
|
|
971
|
+
color: color
|
|
972
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
973
|
+
viewBox: "0 0 24 24",
|
|
974
|
+
fill: "none",
|
|
975
|
+
stroke: 'currentColor',
|
|
976
|
+
strokeWidth: "1"
|
|
977
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
978
|
+
d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4 0v12h4V3h-4z"
|
|
979
|
+
})));
|
|
980
|
+
};
|
|
981
|
+
var LocationIcon = _ref40 => {
|
|
982
|
+
var {
|
|
983
|
+
size = 24,
|
|
984
|
+
color = 'currentColor'
|
|
985
|
+
} = _ref40,
|
|
986
|
+
props = _objectWithoutPropertiesLoose(_ref40, _excluded39);
|
|
987
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
988
|
+
size: size,
|
|
989
|
+
color: color
|
|
990
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
991
|
+
viewBox: "0 0 24 24",
|
|
992
|
+
fill: "none",
|
|
993
|
+
stroke: 'currentColor',
|
|
994
|
+
strokeWidth: "1"
|
|
995
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
996
|
+
d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"
|
|
997
|
+
})));
|
|
998
|
+
};
|
|
999
|
+
var ClockIcon = _ref41 => {
|
|
1000
|
+
var {
|
|
1001
|
+
size = 24,
|
|
1002
|
+
color = 'currentColor'
|
|
1003
|
+
} = _ref41,
|
|
1004
|
+
props = _objectWithoutPropertiesLoose(_ref41, _excluded40);
|
|
1005
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
1006
|
+
size: size,
|
|
1007
|
+
color: color
|
|
1008
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
1009
|
+
viewBox: "0 0 24 24",
|
|
1010
|
+
fill: "none",
|
|
1011
|
+
stroke: 'currentColor',
|
|
1012
|
+
strokeWidth: "1"
|
|
1013
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
1014
|
+
d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"
|
|
1015
|
+
})));
|
|
375
1016
|
};
|
|
376
|
-
|
|
377
|
-
var _excluded$6 = ["size", "color"];
|
|
378
|
-
var CloseEyeSvg = _ref => {
|
|
1017
|
+
var CameraIcon = _ref42 => {
|
|
379
1018
|
var {
|
|
380
|
-
size =
|
|
381
|
-
color = '
|
|
382
|
-
} =
|
|
383
|
-
props = _objectWithoutPropertiesLoose(
|
|
384
|
-
return /*#__PURE__*/React__default.createElement(
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
}, /*#__PURE__*/React__default.createElement("svg",
|
|
1019
|
+
size = 24,
|
|
1020
|
+
color = 'currentColor'
|
|
1021
|
+
} = _ref42,
|
|
1022
|
+
props = _objectWithoutPropertiesLoose(_ref42, _excluded41);
|
|
1023
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
1024
|
+
size: size,
|
|
1025
|
+
color: color
|
|
1026
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
388
1027
|
viewBox: "0 0 24 24",
|
|
389
1028
|
fill: "none",
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
id: "SVGRepo_bgCarrier",
|
|
393
|
-
strokeWidth: "0"
|
|
394
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
395
|
-
id: "SVGRepo_tracerCarrier",
|
|
396
|
-
strokeLinecap: "round",
|
|
397
|
-
strokeLinejoin: "round"
|
|
398
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
399
|
-
id: "SVGRepo_iconCarrier"
|
|
1029
|
+
stroke: 'currentColor',
|
|
1030
|
+
strokeWidth: "1"
|
|
400
1031
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
d: "
|
|
404
|
-
|
|
405
|
-
}))));
|
|
1032
|
+
d: "M9 3L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.17L15 3H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"
|
|
1033
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
1034
|
+
d: "M12 17c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3z"
|
|
1035
|
+
})));
|
|
406
1036
|
};
|
|
407
|
-
|
|
408
|
-
var _excluded$7 = ["size", "color"];
|
|
409
|
-
var ExternalLinkSvg = _ref => {
|
|
1037
|
+
var MicrophoneIcon = _ref43 => {
|
|
410
1038
|
var {
|
|
411
|
-
size =
|
|
412
|
-
color = '
|
|
413
|
-
} =
|
|
414
|
-
props = _objectWithoutPropertiesLoose(
|
|
415
|
-
return /*#__PURE__*/React__default.createElement(
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
}, /*#__PURE__*/React__default.createElement("svg",
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
424
|
-
stroke: color
|
|
425
|
-
}, props), /*#__PURE__*/React__default.createElement("g", {
|
|
426
|
-
id: "SVGRepo_bgCarrier",
|
|
427
|
-
strokeWidth: "0"
|
|
428
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
429
|
-
id: "SVGRepo_tracerCarrier",
|
|
430
|
-
strokeLinecap: "round",
|
|
431
|
-
strokeLinejoin: "round"
|
|
432
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
433
|
-
id: "SVGRepo_iconCarrier"
|
|
1039
|
+
size = 24,
|
|
1040
|
+
color = 'currentColor'
|
|
1041
|
+
} = _ref43,
|
|
1042
|
+
props = _objectWithoutPropertiesLoose(_ref43, _excluded42);
|
|
1043
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
1044
|
+
size: size,
|
|
1045
|
+
color: color
|
|
1046
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
1047
|
+
viewBox: "0 0 24 24",
|
|
1048
|
+
fill: "none",
|
|
1049
|
+
stroke: 'currentColor',
|
|
1050
|
+
strokeWidth: "1"
|
|
434
1051
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
435
|
-
d: "
|
|
436
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
437
|
-
d: "M40 20h-2v-8h-8v-2h10z"
|
|
1052
|
+
d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3z"
|
|
438
1053
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
439
|
-
d: "
|
|
440
|
-
})))
|
|
1054
|
+
d: "M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z"
|
|
1055
|
+
})));
|
|
441
1056
|
};
|
|
442
|
-
|
|
443
|
-
var _excluded$8 = ["size", "color"];
|
|
444
|
-
var IndeterminateSvg = _ref => {
|
|
1057
|
+
var WifiIcon = _ref44 => {
|
|
445
1058
|
var {
|
|
446
|
-
size =
|
|
447
|
-
color = '
|
|
448
|
-
} =
|
|
449
|
-
props = _objectWithoutPropertiesLoose(
|
|
450
|
-
return /*#__PURE__*/React__default.createElement(
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
}, /*#__PURE__*/React__default.createElement("svg",
|
|
1059
|
+
size = 24,
|
|
1060
|
+
color = 'currentColor'
|
|
1061
|
+
} = _ref44,
|
|
1062
|
+
props = _objectWithoutPropertiesLoose(_ref44, _excluded43);
|
|
1063
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
1064
|
+
size: size,
|
|
1065
|
+
color: color
|
|
1066
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
454
1067
|
viewBox: "0 0 24 24",
|
|
455
1068
|
fill: "none",
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
id: "SVGRepo_bgCarrier",
|
|
459
|
-
strokeWidth: "0"
|
|
460
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
461
|
-
id: "SVGRepo_tracerCarrier",
|
|
462
|
-
strokeLinecap: "round",
|
|
463
|
-
strokeLinejoin: "round"
|
|
464
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
465
|
-
id: "SVGRepo_iconCarrier"
|
|
1069
|
+
stroke: 'currentColor',
|
|
1070
|
+
strokeWidth: "1"
|
|
466
1071
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
467
|
-
d: "
|
|
468
|
-
|
|
469
|
-
strokeWidth: "1.5",
|
|
470
|
-
strokeLinecap: "round",
|
|
471
|
-
strokeLinejoin: "round"
|
|
472
|
-
}), ' ')));
|
|
1072
|
+
d: "M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z"
|
|
1073
|
+
})));
|
|
473
1074
|
};
|
|
474
|
-
|
|
475
|
-
var _excluded$9 = ["size", "color"];
|
|
476
|
-
var OpenEyeSvg = _ref => {
|
|
1075
|
+
var BluetoothIcon = _ref45 => {
|
|
477
1076
|
var {
|
|
478
|
-
size =
|
|
479
|
-
color = '
|
|
480
|
-
} =
|
|
481
|
-
props = _objectWithoutPropertiesLoose(
|
|
482
|
-
return /*#__PURE__*/React__default.createElement(
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
}, /*#__PURE__*/React__default.createElement("svg",
|
|
1077
|
+
size = 24,
|
|
1078
|
+
color = 'currentColor'
|
|
1079
|
+
} = _ref45,
|
|
1080
|
+
props = _objectWithoutPropertiesLoose(_ref45, _excluded44);
|
|
1081
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
1082
|
+
size: size,
|
|
1083
|
+
color: color
|
|
1084
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
1085
|
+
viewBox: "0 0 24 24",
|
|
1086
|
+
fill: 'currentColor'
|
|
1087
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
1088
|
+
d: "M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z"
|
|
1089
|
+
})));
|
|
1090
|
+
};
|
|
1091
|
+
var BatteryIcon = _ref46 => {
|
|
1092
|
+
var {
|
|
1093
|
+
size = 24,
|
|
1094
|
+
color = 'currentColor'
|
|
1095
|
+
} = _ref46,
|
|
1096
|
+
props = _objectWithoutPropertiesLoose(_ref46, _excluded45);
|
|
1097
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
1098
|
+
size: size,
|
|
1099
|
+
color: color
|
|
1100
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
486
1101
|
viewBox: "0 0 24 24",
|
|
487
1102
|
fill: "none",
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
id: "SVGRepo_bgCarrier",
|
|
491
|
-
strokeWidth: "0"
|
|
492
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
493
|
-
id: "SVGRepo_tracerCarrier",
|
|
494
|
-
strokeLinecap: "round",
|
|
495
|
-
strokeLinejoin: "round"
|
|
496
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
497
|
-
id: "SVGRepo_iconCarrier"
|
|
1103
|
+
stroke: 'currentColor',
|
|
1104
|
+
strokeWidth: "1"
|
|
498
1105
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
d: "M6.30147 15.5771C4.77832 14.2684 3.6904 12.7726 3.18002 12C3.6904 11.2274 4.77832 9.73158 6.30147 8.42294C7.87402 7.07185 9.81574 6 12 6C14.1843 6 16.1261 7.07185 17.6986 8.42294C19.2218 9.73158 20.3097 11.2274 20.8201 12C20.3097 12.7726 19.2218 14.2684 17.6986 15.5771C16.1261 16.9282 14.1843 18 12 18C9.81574 18 7.87402 16.9282 6.30147 15.5771ZM12 4C9.14754 4 6.75717 5.39462 4.99812 6.90595C3.23268 8.42276 2.00757 10.1376 1.46387 10.9698C1.05306 11.5985 1.05306 12.4015 1.46387 13.0302C2.00757 13.8624 3.23268 15.5772 4.99812 17.0941C6.75717 18.6054 9.14754 20 12 20C14.8525 20 17.2429 18.6054 19.002 17.0941C20.7674 15.5772 21.9925 13.8624 22.5362 13.0302C22.947 12.4015 22.947 11.5985 22.5362 10.9698C21.9925 10.1376 20.7674 8.42276 19.002 6.90595C17.2429 5.39462 14.8525 4 12 4ZM10 12C10 10.8954 10.8955 10 12 10C13.1046 10 14 10.8954 14 12C14 13.1046 13.1046 14 12 14C10.8955 14 10 13.1046 10 12ZM12 8C9.7909 8 8.00004 9.79086 8.00004 12C8.00004 14.2091 9.7909 16 12 16C14.2092 16 16 14.2091 16 12C16 9.79086 14.2092 8 12 8Z",
|
|
502
|
-
fill: color
|
|
503
|
-
}))));
|
|
1106
|
+
d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"
|
|
1107
|
+
})));
|
|
504
1108
|
};
|
|
505
|
-
|
|
506
|
-
var
|
|
507
|
-
var WarningSvg = _ref => {
|
|
1109
|
+
// More modern UI icons
|
|
1110
|
+
var SunIcon = _ref47 => {
|
|
508
1111
|
var {
|
|
509
|
-
size =
|
|
510
|
-
color = '
|
|
511
|
-
} =
|
|
512
|
-
props = _objectWithoutPropertiesLoose(
|
|
513
|
-
return /*#__PURE__*/React__default.createElement(
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
}, /*#__PURE__*/React__default.createElement("svg",
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
529
|
-
id: "SVGRepo_iconCarrier"
|
|
530
|
-
}, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("path", {
|
|
531
|
-
d: "M108.186,144.372c0,7.054-4.729,12.32-12.037,12.32h-0.254c-7.054,0-11.92-5.266-11.92-12.32 c0-7.298,5.012-12.31,12.174-12.31C103.311,132.062,108.059,137.054,108.186,144.372z M88.44,125.301h15.447l2.951-61.298H85.46 L88.44,125.301z M190.372,177.034c-2.237,3.664-6.214,5.921-10.493,5.921H12.282c-4.426,0-8.51-2.384-10.698-6.233 c-2.159-3.849-2.11-8.549,0.147-12.349l84.111-149.22c2.208-3.722,6.204-5.96,10.522-5.96h0.332 c4.445,0.107,8.441,2.618,10.513,6.546l83.515,149.229C192.717,168.768,192.629,173.331,190.372,177.034z M179.879,170.634 L96.354,21.454L12.292,170.634H179.879z"
|
|
532
|
-
})))))));
|
|
1112
|
+
size = 24,
|
|
1113
|
+
color = 'currentColor'
|
|
1114
|
+
} = _ref47,
|
|
1115
|
+
props = _objectWithoutPropertiesLoose(_ref47, _excluded46);
|
|
1116
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
1117
|
+
size: size,
|
|
1118
|
+
color: color
|
|
1119
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
1120
|
+
viewBox: "0 0 24 24",
|
|
1121
|
+
fill: "none",
|
|
1122
|
+
stroke: 'currentColor',
|
|
1123
|
+
strokeWidth: "1"
|
|
1124
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
1125
|
+
cx: "12",
|
|
1126
|
+
cy: "12",
|
|
1127
|
+
r: "5"
|
|
1128
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
1129
|
+
d: "M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"
|
|
1130
|
+
})));
|
|
533
1131
|
};
|
|
534
|
-
|
|
535
|
-
var
|
|
536
|
-
|
|
1132
|
+
var MoonIcon = _ref48 => {
|
|
1133
|
+
var {
|
|
1134
|
+
size = 24,
|
|
1135
|
+
color = 'currentColor'
|
|
1136
|
+
} = _ref48,
|
|
1137
|
+
props = _objectWithoutPropertiesLoose(_ref48, _excluded47);
|
|
1138
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
1139
|
+
size: size,
|
|
1140
|
+
color: color
|
|
1141
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
1142
|
+
viewBox: "0 0 24 24",
|
|
1143
|
+
fill: "none",
|
|
1144
|
+
stroke: 'currentColor',
|
|
1145
|
+
strokeWidth: "1"
|
|
1146
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
1147
|
+
d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
|
|
1148
|
+
})));
|
|
1149
|
+
};
|
|
1150
|
+
var ErrorIcon = _ref49 => {
|
|
537
1151
|
var {
|
|
538
|
-
size =
|
|
1152
|
+
size = 24,
|
|
539
1153
|
color = 'white'
|
|
540
|
-
} =
|
|
541
|
-
props = _objectWithoutPropertiesLoose(
|
|
542
|
-
return /*#__PURE__*/React__default.createElement(
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
}, /*#__PURE__*/React__default.createElement("svg",
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
}
|
|
554
|
-
id: "SVGRepo_bgCarrier"
|
|
555
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
556
|
-
id: "SVGRepo_tracerCarrier"
|
|
557
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
558
|
-
id: "SVGRepo_iconCarrier"
|
|
559
|
-
}, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("path", {
|
|
560
|
-
d: "M242.4,0C108.6,0,0,108.6,0,242.4S108.6,484.8,242.4,484.8S484.8,376.2,484.8,242.4S376.2,0,242.4,0z M198.4,358.8l-120-120L84,228l114.4,114.4l188-188l28.8,28.8L198.4,358.8z",
|
|
561
|
-
fill: color
|
|
562
|
-
}))))));
|
|
1154
|
+
} = _ref49,
|
|
1155
|
+
props = _objectWithoutPropertiesLoose(_ref49, _excluded48);
|
|
1156
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
1157
|
+
size: size,
|
|
1158
|
+
color: color
|
|
1159
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
1160
|
+
viewBox: "0 0 510 510"
|
|
1161
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
1162
|
+
d: "M255,0C114.615,0,0,114.615,0,255s114.615,255,255,255s255-114.615,255-255S395.385,0,255,0z M255,459c-114.75,0-207-92.25-207-207c0-114.75,92.25-207,207-207c114.75,0,207,92.25,207,207C462,366.75,369.75,459,255,459z"
|
|
1163
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
1164
|
+
d: "M255,140.25c11.05,0,20-8.95,20-20s-8.95-20-20-20s-20,8.95-20,20S243.95,140.25,255,140.25z"
|
|
1165
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
1166
|
+
d: "M265,357c0,11.05-8.95,20-20,20s-20-8.95-20-20v-175c0-11.05,8.95-20,20-20s20,8.95,20,20V357z"
|
|
1167
|
+
})));
|
|
563
1168
|
};
|
|
564
|
-
|
|
565
|
-
var _excluded$c = ["size", "color"];
|
|
566
|
-
var InfoSvg = _ref => {
|
|
1169
|
+
var WarningIcon = _ref50 => {
|
|
567
1170
|
var {
|
|
568
|
-
size =
|
|
1171
|
+
size = 24,
|
|
569
1172
|
color = 'white'
|
|
570
|
-
} =
|
|
571
|
-
props = _objectWithoutPropertiesLoose(
|
|
572
|
-
return /*#__PURE__*/React__default.createElement(
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
}, /*#__PURE__*/React__default.createElement("svg",
|
|
576
|
-
height: size + "px",
|
|
577
|
-
width: size + "px",
|
|
1173
|
+
} = _ref50,
|
|
1174
|
+
props = _objectWithoutPropertiesLoose(_ref50, _excluded49);
|
|
1175
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
1176
|
+
size: size,
|
|
1177
|
+
color: color
|
|
1178
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
578
1179
|
version: "1.1",
|
|
579
1180
|
id: "Capa_1",
|
|
580
1181
|
xmlns: "http://www.w3.org/2000/svg",
|
|
581
1182
|
viewBox: "0 0 192.146 192.146",
|
|
582
|
-
fill:
|
|
583
|
-
},
|
|
1183
|
+
fill: 'currentColor'
|
|
1184
|
+
}, /*#__PURE__*/React__default.createElement("g", {
|
|
584
1185
|
id: "SVGRepo_bgCarrier"
|
|
585
1186
|
}), /*#__PURE__*/React__default.createElement("g", {
|
|
586
1187
|
id: "SVGRepo_tracerCarrier"
|
|
587
1188
|
}), /*#__PURE__*/React__default.createElement("g", {
|
|
588
1189
|
id: "SVGRepo_iconCarrier"
|
|
589
1190
|
}, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("path", {
|
|
590
|
-
d: "
|
|
1191
|
+
d: "M108.186,144.372c0,7.054-4.729,12.32-12.037,12.32h-0.254c-7.054,0-11.92-5.266-11.92-12.32 c0-7.298,5.012-12.31,12.174-12.31C103.311,132.062,108.059,137.054,108.186,144.372z M88.44,125.301h15.447l2.951-61.298H85.46 L88.44,125.301z M190.372,177.034c-2.237,3.664-6.214,5.921-10.493,5.921H12.282c-4.426,0-8.51-2.384-10.698-6.233 c-2.159-3.849-2.11-8.549,0.147-12.349l84.111-149.22c2.208-3.722,6.204-5.96,10.522-5.96h0.332 c4.445,0.107,8.441,2.618,10.513,6.546l83.515,149.229C192.717,168.768,192.629,173.331,190.372,177.034z M179.879,170.634 L96.354,21.454L12.292,170.634H179.879z"
|
|
591
1192
|
})))))));
|
|
592
1193
|
};
|
|
593
|
-
|
|
594
|
-
var _excluded$d = ["size", "color"];
|
|
595
|
-
var ErrorSvg = _ref => {
|
|
1194
|
+
var CloudIcon = _ref51 => {
|
|
596
1195
|
var {
|
|
597
|
-
size =
|
|
598
|
-
color = '
|
|
599
|
-
} =
|
|
600
|
-
props = _objectWithoutPropertiesLoose(
|
|
601
|
-
return /*#__PURE__*/React__default.createElement(
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
}, /*#__PURE__*/React__default.createElement("svg",
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
}, props), /*#__PURE__*/React__default.createElement("g", {
|
|
613
|
-
id: "SVGRepo_bgCarrier"
|
|
614
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
615
|
-
id: "SVGRepo_tracerCarrier"
|
|
616
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
617
|
-
id: "SVGRepo_iconCarrier"
|
|
618
|
-
}, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("path", {
|
|
619
|
-
d: "M255,0C114.615,0,0,114.615,0,255s114.615,255,255,255s255-114.615,255-255S395.385,0,255,0z M255,459c-114.75,0-207-92.25-207-207c0-114.75,92.25-207,207-207c114.75,0,207,92.25,207,207C462,366.75,369.75,459,255,459z",
|
|
620
|
-
fill: color
|
|
621
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
622
|
-
d: "M255,140.25c11.05,0,20-8.95,20-20s-8.95-20-20-20s-20,8.95-20,20S243.95,140.25,255,140.25z",
|
|
623
|
-
fill: color
|
|
624
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
625
|
-
d: "M265,357c0,11.05-8.95,20-20,20s-20-8.95-20-20v-175c0-11.05,8.95-20,20-20s20,8.95,20,20V357z",
|
|
626
|
-
fill: color
|
|
627
|
-
}))))));
|
|
1196
|
+
size = 24,
|
|
1197
|
+
color = 'currentColor'
|
|
1198
|
+
} = _ref51,
|
|
1199
|
+
props = _objectWithoutPropertiesLoose(_ref51, _excluded50);
|
|
1200
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
1201
|
+
size: size,
|
|
1202
|
+
color: color
|
|
1203
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", {
|
|
1204
|
+
viewBox: "0 0 24 24",
|
|
1205
|
+
fill: "none",
|
|
1206
|
+
stroke: 'currentColor',
|
|
1207
|
+
strokeWidth: "1"
|
|
1208
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
1209
|
+
d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
|
|
1210
|
+
})));
|
|
628
1211
|
};
|
|
629
1212
|
|
|
630
1213
|
// Define a constant object 'Themes' exporting various theme styles.
|
|
@@ -706,7 +1289,7 @@ var AlertView = _ref => {
|
|
|
706
1289
|
flexWrap: "nowrap"
|
|
707
1290
|
}, styles == null ? void 0 : styles.container), /*#__PURE__*/React__default.createElement(View, {
|
|
708
1291
|
alignSelf: 'center'
|
|
709
|
-
}, icon ? icon : (/*#__PURE__*/React__default.createElement(
|
|
1292
|
+
}, icon ? icon : (/*#__PURE__*/React__default.createElement(WarningIcon, {
|
|
710
1293
|
size: 24,
|
|
711
1294
|
color: (_styles$icon$color = styles == null ? void 0 : styles.icon.color) != null ? _styles$icon$color : Themes[variant].content.color
|
|
712
1295
|
}))), /*#__PURE__*/React__default.createElement(Vertical, {
|
|
@@ -740,7 +1323,7 @@ var AlertComponent = _ref => {
|
|
|
740
1323
|
// Exporting the AlertComponent as 'Alert' for use in other parts of the application.
|
|
741
1324
|
var Alert = AlertComponent;
|
|
742
1325
|
|
|
743
|
-
var _excluded$
|
|
1326
|
+
var _excluded$5 = ["ratio", "children"];
|
|
744
1327
|
// Declaration of a functional component named AspectRatioView.
|
|
745
1328
|
var AspectRatioView = _ref => {
|
|
746
1329
|
var {
|
|
@@ -750,7 +1333,7 @@ var AspectRatioView = _ref => {
|
|
|
750
1333
|
children
|
|
751
1334
|
// Spread the rest of the props to inherit additional properties.
|
|
752
1335
|
} = _ref,
|
|
753
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1336
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$5);
|
|
754
1337
|
return /*#__PURE__*/React__default.createElement(Center, Object.assign({
|
|
755
1338
|
width: '100%',
|
|
756
1339
|
position: "relative",
|
|
@@ -766,14 +1349,14 @@ var AspectRatioView = _ref => {
|
|
|
766
1349
|
}, children));
|
|
767
1350
|
};
|
|
768
1351
|
|
|
769
|
-
var _excluded$
|
|
1352
|
+
var _excluded$6 = ["ratio", "children"];
|
|
770
1353
|
// Declaration of the AspectRatioComponent functional component with destructured props.
|
|
771
1354
|
var AspectRatioComponent = _ref => {
|
|
772
1355
|
var {
|
|
773
1356
|
ratio,
|
|
774
1357
|
children
|
|
775
1358
|
} = _ref,
|
|
776
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1359
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$6);
|
|
777
1360
|
// Beginning of the return statement in the functional component.
|
|
778
1361
|
return /*#__PURE__*/React__default.createElement(AspectRatioView, Object.assign({
|
|
779
1362
|
ratio: ratio
|
|
@@ -1043,7 +1626,7 @@ var IconSizes = {
|
|
|
1043
1626
|
'6xl': 64
|
|
1044
1627
|
};
|
|
1045
1628
|
|
|
1046
|
-
var _excluded$
|
|
1629
|
+
var _excluded$7 = ["children", "href", "iconSize", "underline", "isHovered", "isExternal", "styles", "setIsHovered"];
|
|
1047
1630
|
// Component definition for 'LinkView', a functional component with props defined by 'LinkViewProps'.
|
|
1048
1631
|
var LinkView = _ref => {
|
|
1049
1632
|
var {
|
|
@@ -1066,7 +1649,7 @@ var LinkView = _ref => {
|
|
|
1066
1649
|
// Setter function for the hover state, noop function provided by default.
|
|
1067
1650
|
setIsHovered = () => {}
|
|
1068
1651
|
} = _ref,
|
|
1069
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1652
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$7);
|
|
1070
1653
|
// Function to handle mouse enter/leave events to toggle hover state.
|
|
1071
1654
|
var handleHover = () => {
|
|
1072
1655
|
if (underline === 'hover') setIsHovered(true);
|
|
@@ -1082,7 +1665,7 @@ var LinkView = _ref => {
|
|
|
1082
1665
|
gap: 3,
|
|
1083
1666
|
alignItems: "center",
|
|
1084
1667
|
flexWrap: "nowrap"
|
|
1085
|
-
}, children, isExternal && (/*#__PURE__*/React__default.createElement(
|
|
1668
|
+
}, children, isExternal && (/*#__PURE__*/React__default.createElement(ExternalLinkIcon, {
|
|
1086
1669
|
size: IconSizes[iconSize],
|
|
1087
1670
|
style: styles.icon
|
|
1088
1671
|
})))));
|
|
@@ -1107,9 +1690,9 @@ var ButtonSizes = {
|
|
|
1107
1690
|
paddingBottom: 8,
|
|
1108
1691
|
paddingLeft: 12,
|
|
1109
1692
|
paddingRight: 12,
|
|
1110
|
-
fontWeight:
|
|
1111
|
-
fontSize:
|
|
1112
|
-
lineHeight:
|
|
1693
|
+
fontWeight: 400,
|
|
1694
|
+
fontSize: 11,
|
|
1695
|
+
lineHeight: 14,
|
|
1113
1696
|
letterSpacing: 1.25
|
|
1114
1697
|
},
|
|
1115
1698
|
sm: {
|
|
@@ -1118,10 +1701,10 @@ var ButtonSizes = {
|
|
|
1118
1701
|
paddingBottom: 10,
|
|
1119
1702
|
paddingLeft: 16,
|
|
1120
1703
|
paddingRight: 16,
|
|
1121
|
-
fontWeight:
|
|
1122
|
-
fontSize:
|
|
1704
|
+
fontWeight: 400,
|
|
1705
|
+
fontSize: 12,
|
|
1123
1706
|
// Establishes style configuration for medium (md) button size.
|
|
1124
|
-
lineHeight:
|
|
1707
|
+
lineHeight: 16,
|
|
1125
1708
|
letterSpacing: 1.25
|
|
1126
1709
|
},
|
|
1127
1710
|
md: {
|
|
@@ -1131,9 +1714,9 @@ var ButtonSizes = {
|
|
|
1131
1714
|
paddingLeft: 18,
|
|
1132
1715
|
paddingRight: 18,
|
|
1133
1716
|
// Establishes style configuration for large (lg) button size.
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
lineHeight:
|
|
1717
|
+
fontSize: 14,
|
|
1718
|
+
fontWeight: 400,
|
|
1719
|
+
lineHeight: 18,
|
|
1137
1720
|
letterSpacing: 1.25
|
|
1138
1721
|
},
|
|
1139
1722
|
lg: {
|
|
@@ -1143,8 +1726,8 @@ var ButtonSizes = {
|
|
|
1143
1726
|
// Establishes style configuration for extra-large (xl) button size.
|
|
1144
1727
|
paddingLeft: 22,
|
|
1145
1728
|
paddingRight: 22,
|
|
1146
|
-
fontWeight:
|
|
1147
|
-
fontSize:
|
|
1729
|
+
fontWeight: 400,
|
|
1730
|
+
fontSize: 18,
|
|
1148
1731
|
lineHeight: 24,
|
|
1149
1732
|
letterSpacing: 1.25
|
|
1150
1733
|
},
|
|
@@ -1158,10 +1741,10 @@ var ButtonSizes = {
|
|
|
1158
1741
|
// Sets the border-radius for a rounded button shape to '4'.
|
|
1159
1742
|
paddingRight: 26,
|
|
1160
1743
|
// Sets the border-radius for a pill-shaped button to '24'.
|
|
1161
|
-
fontWeight:
|
|
1162
|
-
fontSize:
|
|
1744
|
+
fontWeight: 400,
|
|
1745
|
+
fontSize: 22,
|
|
1163
1746
|
// Defines a constant 'IconSizes' as a mapping from 'Size' to corresponding 'CSSProperties' for icons.
|
|
1164
|
-
lineHeight:
|
|
1747
|
+
lineHeight: 28,
|
|
1165
1748
|
// Sets the width, height, and padding for icons of extra-small size.
|
|
1166
1749
|
letterSpacing: 1.25
|
|
1167
1750
|
}
|
|
@@ -1224,17 +1807,17 @@ var DefaultSpeeds = {
|
|
|
1224
1807
|
slow: 300
|
|
1225
1808
|
};
|
|
1226
1809
|
|
|
1227
|
-
var _excluded$
|
|
1228
|
-
_excluded2 = ["size", "speed", "color"],
|
|
1229
|
-
_excluded3 = ["size", "speed", "color"],
|
|
1230
|
-
_excluded4 = ["size", "children", "textColor", "loaderColor", "type", "speed", "textPosition"];
|
|
1810
|
+
var _excluded$8 = ["size", "speed", "color"],
|
|
1811
|
+
_excluded2$1 = ["size", "speed", "color"],
|
|
1812
|
+
_excluded3$1 = ["size", "speed", "color"],
|
|
1813
|
+
_excluded4$1 = ["size", "children", "textColor", "loaderColor", "type", "speed", "textPosition"];
|
|
1231
1814
|
var DefaultSpinner = _ref => {
|
|
1232
1815
|
var {
|
|
1233
1816
|
size = 'md',
|
|
1234
1817
|
speed = 'normal',
|
|
1235
1818
|
color = 'theme.loading'
|
|
1236
1819
|
} = _ref,
|
|
1237
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1820
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$8);
|
|
1238
1821
|
var theme = appStudio.useTheme();
|
|
1239
1822
|
var colorStyle = theme.getColor(color);
|
|
1240
1823
|
var sizeStyle = typeof size === 'number' ? size : DefaultSizes[size];
|
|
@@ -1277,7 +1860,7 @@ var Dotted = _ref2 => {
|
|
|
1277
1860
|
speed = 'normal',
|
|
1278
1861
|
color = 'theme.loading'
|
|
1279
1862
|
} = _ref2,
|
|
1280
|
-
props = _objectWithoutPropertiesLoose(_ref2, _excluded2);
|
|
1863
|
+
props = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
|
|
1281
1864
|
var theme = appStudio.useTheme();
|
|
1282
1865
|
var colorStyle = theme.getColor(color);
|
|
1283
1866
|
var sizeStyle = typeof size === 'number' ? size : DefaultSizes[size];
|
|
@@ -1319,7 +1902,7 @@ var Quarter = _ref3 => {
|
|
|
1319
1902
|
speed = 'normal',
|
|
1320
1903
|
color = 'theme.loading'
|
|
1321
1904
|
} = _ref3,
|
|
1322
|
-
props = _objectWithoutPropertiesLoose(_ref3, _excluded3);
|
|
1905
|
+
props = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
|
|
1323
1906
|
var theme = appStudio.useTheme();
|
|
1324
1907
|
var colorStyle = theme.getColor(color);
|
|
1325
1908
|
var sizeStyle = typeof size === 'number' ? size : DefaultSizes[size];
|
|
@@ -1358,7 +1941,7 @@ var LoaderView = _ref4 => {
|
|
|
1358
1941
|
speed = 'normal',
|
|
1359
1942
|
textPosition = 'right'
|
|
1360
1943
|
} = _ref4,
|
|
1361
|
-
props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
|
|
1944
|
+
props = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
|
|
1362
1945
|
var style = {
|
|
1363
1946
|
size,
|
|
1364
1947
|
speed,
|
|
@@ -1387,7 +1970,7 @@ React__default.createElement(LoaderView, Object.assign({}, props)));
|
|
|
1387
1970
|
// Exports the LoaderComponent as Loader, making it available for use in other parts of the application.
|
|
1388
1971
|
var Loader = LoaderComponent;
|
|
1389
1972
|
|
|
1390
|
-
var _excluded$
|
|
1973
|
+
var _excluded$9 = ["icon", "shadow", "children", "ariaLabel", "externalHref", "isAuto", "isFilled", "isIconRounded", "isLoading", "isDisabled", "size", "variant", "iconPosition", "colorScheme", "shape", "onClick", "loaderProps", "loaderPosition", "effect", "isHovered", "setIsHovered"];
|
|
1391
1974
|
var contrast = /*#__PURE__*/require('contrast');
|
|
1392
1975
|
var ButtonView = _ref => {
|
|
1393
1976
|
var _props$onClick;
|
|
@@ -1423,7 +2006,7 @@ var ButtonView = _ref => {
|
|
|
1423
2006
|
setIsHovered = () => {}
|
|
1424
2007
|
// Defines CSS properties for 'outline' variant of the button with conditional styles based on reverse state.
|
|
1425
2008
|
} = _ref,
|
|
1426
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2009
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$9);
|
|
1427
2010
|
var {
|
|
1428
2011
|
getColor
|
|
1429
2012
|
} = appStudio.useTheme();
|
|
@@ -1538,14 +2121,14 @@ var ButtonComponent = props => {
|
|
|
1538
2121
|
};
|
|
1539
2122
|
var Button = ButtonComponent;
|
|
1540
2123
|
|
|
1541
|
-
var _excluded$
|
|
1542
|
-
_excluded2$
|
|
2124
|
+
var _excluded$a = ["src", "color"],
|
|
2125
|
+
_excluded2$2 = ["path"];
|
|
1543
2126
|
var FileSVG = _ref => {
|
|
1544
2127
|
var {
|
|
1545
2128
|
src,
|
|
1546
2129
|
color
|
|
1547
2130
|
} = _ref,
|
|
1548
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2131
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$a);
|
|
1549
2132
|
var {
|
|
1550
2133
|
getColor
|
|
1551
2134
|
} = appStudio.useTheme();
|
|
@@ -1563,7 +2146,7 @@ var FileImage = _ref2 => {
|
|
|
1563
2146
|
var {
|
|
1564
2147
|
path
|
|
1565
2148
|
} = _ref2,
|
|
1566
|
-
props = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
2149
|
+
props = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
|
|
1567
2150
|
return /*#__PURE__*/React__default.createElement(appStudio.Image, Object.assign({
|
|
1568
2151
|
src: path
|
|
1569
2152
|
}, props));
|
|
@@ -1613,7 +2196,7 @@ var useItemState = () => {
|
|
|
1613
2196
|
};
|
|
1614
2197
|
};
|
|
1615
2198
|
|
|
1616
|
-
var _excluded$
|
|
2199
|
+
var _excluded$b = ["children", "styles"];
|
|
1617
2200
|
var HelperText = _ref => {
|
|
1618
2201
|
var {
|
|
1619
2202
|
children,
|
|
@@ -1621,7 +2204,7 @@ var HelperText = _ref => {
|
|
|
1621
2204
|
helperText: {}
|
|
1622
2205
|
}
|
|
1623
2206
|
} = _ref,
|
|
1624
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2207
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$b);
|
|
1625
2208
|
return /*#__PURE__*/React__default.createElement(Text, Object.assign({
|
|
1626
2209
|
size: "xs",
|
|
1627
2210
|
marginVertical: 0,
|
|
@@ -1630,7 +2213,7 @@ var HelperText = _ref => {
|
|
|
1630
2213
|
}, styles['helperText'], props), children);
|
|
1631
2214
|
};
|
|
1632
2215
|
|
|
1633
|
-
var _excluded$
|
|
2216
|
+
var _excluded$c = ["children", "helperText", "error", "styles"];
|
|
1634
2217
|
var FieldContainer = _ref => {
|
|
1635
2218
|
var {
|
|
1636
2219
|
children,
|
|
@@ -1638,7 +2221,7 @@ var FieldContainer = _ref => {
|
|
|
1638
2221
|
error = false,
|
|
1639
2222
|
styles
|
|
1640
2223
|
} = _ref,
|
|
1641
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2224
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$c);
|
|
1642
2225
|
return /*#__PURE__*/React__default.createElement(Vertical, Object.assign({
|
|
1643
2226
|
gap: 5,
|
|
1644
2227
|
position: "relative"
|
|
@@ -1697,7 +2280,7 @@ var PaddingWithoutLabel = {
|
|
|
1697
2280
|
paddingRight: 36
|
|
1698
2281
|
};
|
|
1699
2282
|
|
|
1700
|
-
var _excluded$
|
|
2283
|
+
var _excluded$d = ["label", "shadow", "children", "value", "size", "shape", "variant", "error", "isWithLabel", "isFocused", "isHovered", "isDisabled", "isReadOnly", "colorScheme", "styles"];
|
|
1701
2284
|
var FieldContent = _ref => {
|
|
1702
2285
|
var {
|
|
1703
2286
|
shadow,
|
|
@@ -1716,7 +2299,7 @@ var FieldContent = _ref => {
|
|
|
1716
2299
|
pickerBox: {}
|
|
1717
2300
|
}
|
|
1718
2301
|
} = _ref,
|
|
1719
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2302
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$d);
|
|
1720
2303
|
var isInteractive = (isHovered || isFocused) && !isDisabled;
|
|
1721
2304
|
var color = error ? 'error' : isInteractive ? colorScheme : 'midgray';
|
|
1722
2305
|
return /*#__PURE__*/React__default.createElement(Horizontal, Object.assign({
|
|
@@ -1737,12 +2320,12 @@ var FieldContent = _ref => {
|
|
|
1737
2320
|
}, isWithLabel ? PadddingWithLabel : PaddingWithoutLabel, shadow, Shapes[shape], InputVariants[variant], styles['box'], props), children);
|
|
1738
2321
|
};
|
|
1739
2322
|
|
|
1740
|
-
var _excluded$
|
|
2323
|
+
var _excluded$e = ["children"];
|
|
1741
2324
|
var FieldIcons = _ref => {
|
|
1742
2325
|
var {
|
|
1743
2326
|
children
|
|
1744
2327
|
} = _ref,
|
|
1745
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2328
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$e);
|
|
1746
2329
|
return /*#__PURE__*/React__default.createElement(Center, Object.assign({
|
|
1747
2330
|
gap: 10,
|
|
1748
2331
|
right: 16,
|
|
@@ -1794,7 +2377,7 @@ var HeadingSizes$1 = {
|
|
|
1794
2377
|
}
|
|
1795
2378
|
};
|
|
1796
2379
|
|
|
1797
|
-
var _excluded$
|
|
2380
|
+
var _excluded$f = ["children", "heading", "isItalic", "isUnderlined", "isStriked", "weight", "size"];
|
|
1798
2381
|
var LabelView = _ref => {
|
|
1799
2382
|
var {
|
|
1800
2383
|
children,
|
|
@@ -1810,7 +2393,7 @@ var LabelView = _ref => {
|
|
|
1810
2393
|
size = 'sm'
|
|
1811
2394
|
// The fontSize prop for the Element is determined by the 'size' prop passed to LabelView.
|
|
1812
2395
|
} = _ref,
|
|
1813
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2396
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$f);
|
|
1814
2397
|
// The fontStyle prop toggles between 'italic' and 'normal' based on the 'isItalic' boolean prop.
|
|
1815
2398
|
var headingStyles = heading ? HeadingSizes$1[heading] : {};
|
|
1816
2399
|
// fontWeight is derived from the Typography module, ensuring consistent font weighting across the app.
|
|
@@ -1842,7 +2425,7 @@ React__default.createElement(LabelView, Object.assign({}, props))
|
|
|
1842
2425
|
var Label = LabelComponent;
|
|
1843
2426
|
// Export the 'LabelComponent' as 'Label' to be reused throughout the project.
|
|
1844
2427
|
|
|
1845
|
-
var _excluded$
|
|
2428
|
+
var _excluded$g = ["children", "size", "error", "color", "styles", "helperText"];
|
|
1846
2429
|
var FieldLabel = _ref => {
|
|
1847
2430
|
var {
|
|
1848
2431
|
children,
|
|
@@ -1853,7 +2436,7 @@ var FieldLabel = _ref => {
|
|
|
1853
2436
|
label: {}
|
|
1854
2437
|
}
|
|
1855
2438
|
} = _ref,
|
|
1856
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2439
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$g);
|
|
1857
2440
|
return /*#__PURE__*/React__default.createElement(Label, Object.assign({
|
|
1858
2441
|
top: 6,
|
|
1859
2442
|
zIndex: 1000,
|
|
@@ -1866,12 +2449,12 @@ var FieldLabel = _ref => {
|
|
|
1866
2449
|
}, styles['label'], props), children);
|
|
1867
2450
|
};
|
|
1868
2451
|
|
|
1869
|
-
var _excluded$
|
|
2452
|
+
var _excluded$h = ["children"];
|
|
1870
2453
|
var FieldWrapper = _ref => {
|
|
1871
2454
|
var {
|
|
1872
2455
|
children
|
|
1873
2456
|
} = _ref,
|
|
1874
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2457
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$h);
|
|
1875
2458
|
return /*#__PURE__*/React__default.createElement(Vertical, Object.assign({
|
|
1876
2459
|
width: "100%"
|
|
1877
2460
|
}, props), children);
|
|
@@ -1887,10 +2470,10 @@ var IconSizes$2 = {
|
|
|
1887
2470
|
xl: 16
|
|
1888
2471
|
};
|
|
1889
2472
|
|
|
1890
|
-
var _excluded$
|
|
1891
|
-
_excluded2$
|
|
1892
|
-
_excluded3$
|
|
1893
|
-
_excluded4$
|
|
2473
|
+
var _excluded$i = ["isHovered", "setIsHovered", "option", "size", "callback", "style"],
|
|
2474
|
+
_excluded2$3 = ["id", "name", "value", "onChange", "isMulti", "isDisabled", "isReadOnly", "options"],
|
|
2475
|
+
_excluded3$2 = ["option", "size", "removeOption"],
|
|
2476
|
+
_excluded4$2 = ["id", "name", "label", "value", "placeholder", "helperText", "hide", "error", "isMulti", "isFocused", "isHovered", "isDisabled", "isReadOnly", "options", "shadow", "size", "colorScheme", "shape", "variant", "styles", "onChange", "setHide", "setValue", "setIsHovered", "setIsFocused", "setHighlightedIndex", "highlightedIndex"];
|
|
1894
2477
|
// Defines a component to render individual selection items within a list.
|
|
1895
2478
|
var Item = _ref => {
|
|
1896
2479
|
var {
|
|
@@ -1901,7 +2484,7 @@ var Item = _ref => {
|
|
|
1901
2484
|
callback = () => {},
|
|
1902
2485
|
style
|
|
1903
2486
|
} = _ref,
|
|
1904
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2487
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$i);
|
|
1905
2488
|
// Handles the click event on an option by invoking the callback with the selected option's value.
|
|
1906
2489
|
var handleOptionClick = option => callback(option);
|
|
1907
2490
|
// Toggles the hover state on the item.
|
|
@@ -1966,7 +2549,7 @@ var HiddenSelect = _ref3 => {
|
|
|
1966
2549
|
isReadOnly = false,
|
|
1967
2550
|
options = []
|
|
1968
2551
|
} = _ref3,
|
|
1969
|
-
props = _objectWithoutPropertiesLoose(_ref3, _excluded2$
|
|
2552
|
+
props = _objectWithoutPropertiesLoose(_ref3, _excluded2$3);
|
|
1970
2553
|
var handleChange = event => {
|
|
1971
2554
|
if (onChange) onChange(event);
|
|
1972
2555
|
};
|
|
@@ -2056,7 +2639,7 @@ var MultiSelect = _ref5 => {
|
|
|
2056
2639
|
size = 'md',
|
|
2057
2640
|
removeOption = () => {}
|
|
2058
2641
|
} = _ref5,
|
|
2059
|
-
props = _objectWithoutPropertiesLoose(_ref5, _excluded3$
|
|
2642
|
+
props = _objectWithoutPropertiesLoose(_ref5, _excluded3$2);
|
|
2060
2643
|
var handleClick = () => removeOption(option);
|
|
2061
2644
|
return /*#__PURE__*/React__default.createElement(Horizontal, Object.assign({
|
|
2062
2645
|
gap: 10,
|
|
@@ -2068,7 +2651,7 @@ var MultiSelect = _ref5 => {
|
|
|
2068
2651
|
onClick: event => event.stopPropagation()
|
|
2069
2652
|
}, props), /*#__PURE__*/React__default.createElement(Text, {
|
|
2070
2653
|
size: size
|
|
2071
|
-
}, option), /*#__PURE__*/React__default.createElement(
|
|
2654
|
+
}, option), /*#__PURE__*/React__default.createElement(CloseIcon, {
|
|
2072
2655
|
role: "close-button",
|
|
2073
2656
|
color: "inherit",
|
|
2074
2657
|
size: IconSizes$2[size],
|
|
@@ -2112,7 +2695,7 @@ var SelectView = _ref6 => {
|
|
|
2112
2695
|
setHighlightedIndex,
|
|
2113
2696
|
highlightedIndex
|
|
2114
2697
|
} = _ref6,
|
|
2115
|
-
props = _objectWithoutPropertiesLoose(_ref6, _excluded4$
|
|
2698
|
+
props = _objectWithoutPropertiesLoose(_ref6, _excluded4$2);
|
|
2116
2699
|
var isWithLabel = !!(isFocused && label);
|
|
2117
2700
|
var handleHover = () => setIsHovered(!isHovered);
|
|
2118
2701
|
var handleFocus = () => setIsFocused(true);
|
|
@@ -2182,12 +2765,14 @@ var SelectView = _ref6 => {
|
|
|
2182
2765
|
isDisabled: isDisabled,
|
|
2183
2766
|
placeholder: placeholder,
|
|
2184
2767
|
removeOption: handleRemoveOption
|
|
2185
|
-
})), /*#__PURE__*/React__default.createElement(FieldIcons, null, !isReadOnly && !isDisabled && (/*#__PURE__*/React__default.createElement(React__default.Fragment, null, hide ? (/*#__PURE__*/React__default.createElement(
|
|
2768
|
+
})), /*#__PURE__*/React__default.createElement(FieldIcons, null, !isReadOnly && !isDisabled && (/*#__PURE__*/React__default.createElement(React__default.Fragment, null, hide ? (/*#__PURE__*/React__default.createElement(ChevronIcon, {
|
|
2186
2769
|
color: "inherit",
|
|
2187
2770
|
size: IconSizes$2[size],
|
|
2188
|
-
style: styles.icon
|
|
2189
|
-
|
|
2771
|
+
style: styles.icon,
|
|
2772
|
+
orientation: "down"
|
|
2773
|
+
})) : (/*#__PURE__*/React__default.createElement(ChevronIcon, {
|
|
2190
2774
|
color: "inherit",
|
|
2775
|
+
orientation: "up",
|
|
2191
2776
|
size: IconSizes$2[size],
|
|
2192
2777
|
style: styles.icon
|
|
2193
2778
|
})))))), !hide && (/*#__PURE__*/React__default.createElement(DropDown, {
|
|
@@ -2356,7 +2941,7 @@ var SliderPadding = {
|
|
|
2356
2941
|
}
|
|
2357
2942
|
};
|
|
2358
2943
|
|
|
2359
|
-
var _excluded$
|
|
2944
|
+
var _excluded$j = ["id", "name", "label", "inActiveChild", "activeChild", "labelPosition", "shadow", "size", "colorScheme", "value", "isHovered", "isDisabled", "isReadOnly", "on", "setOn", "onChange", "setValue", "setIsHovered", "helperText", "styles"];
|
|
2360
2945
|
var SwitchContent = props => /*#__PURE__*/React__default.createElement(appStudio.Input, Object.assign({
|
|
2361
2946
|
type: "checkbox"
|
|
2362
2947
|
}, props));
|
|
@@ -2386,7 +2971,7 @@ var SwitchView = _ref => {
|
|
|
2386
2971
|
label: {}
|
|
2387
2972
|
}
|
|
2388
2973
|
} = _ref,
|
|
2389
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2974
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$j);
|
|
2390
2975
|
var handleToggle = event => {
|
|
2391
2976
|
if (!isReadOnly) {
|
|
2392
2977
|
setValue(!value);
|
|
@@ -2476,7 +3061,7 @@ var useTextAreaState = _ref => {
|
|
|
2476
3061
|
// Export of the useTextAreaState hook for external usage.
|
|
2477
3062
|
};
|
|
2478
3063
|
|
|
2479
|
-
var _excluded$
|
|
3064
|
+
var _excluded$k = ["id", "name", "hint", "error", "value", "label", "shadow", "helperText", "placeholder", "size", "shape", "variant", "colorScheme", "isHovered", "isFocused", "isEditable", "isReadOnly", "isDisabled", "isAutoFocus", "isMultiline", "maxRows", "maxCols", "onBlur", "onChange", "onFocus", "onChangeText", "setHint", "setValue", "setIsFocused", "setIsHovered", "styles"];
|
|
2480
3065
|
var TextAreaView = _ref => {
|
|
2481
3066
|
var {
|
|
2482
3067
|
id,
|
|
@@ -2516,7 +3101,7 @@ var TextAreaView = _ref => {
|
|
|
2516
3101
|
field: {}
|
|
2517
3102
|
}
|
|
2518
3103
|
} = _ref,
|
|
2519
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3104
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$k);
|
|
2520
3105
|
var isWithLabel = !!(isFocused && label);
|
|
2521
3106
|
var fieldStyles = Object.assign({
|
|
2522
3107
|
margin: 0,
|
|
@@ -2646,7 +3231,7 @@ var useTextFieldState = _ref => {
|
|
|
2646
3231
|
};
|
|
2647
3232
|
};
|
|
2648
3233
|
|
|
2649
|
-
var _excluded$
|
|
3234
|
+
var _excluded$l = ["id", "name", "label", "hint", "value", "onChange", "leftChild", "rightChild", "helperText", "placeholder", "onChangeText", "shadow", "styles", "size", "shape", "variant", "colorScheme", "error", "isFocused", "isHovered", "isDisabled", "isReadOnly", "isClearable", "isAutoFocus", "setHint", "setIsFocused", "setIsHovered", "setValue", "onClick", "onFocus", "onBlur"];
|
|
2650
3235
|
var TextFieldInput = props => /*#__PURE__*/React__default.createElement(appStudio.Input, Object.assign({
|
|
2651
3236
|
type: "text"
|
|
2652
3237
|
}, props));
|
|
@@ -2689,7 +3274,7 @@ var TextFieldView = _ref => {
|
|
|
2689
3274
|
onFocus,
|
|
2690
3275
|
onBlur = () => {}
|
|
2691
3276
|
} = _ref,
|
|
2692
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3277
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$l);
|
|
2693
3278
|
var {
|
|
2694
3279
|
getColor
|
|
2695
3280
|
} = appStudio.useTheme();
|
|
@@ -2785,7 +3370,7 @@ var TextFieldView = _ref => {
|
|
|
2785
3370
|
}, fieldStyles, props, {
|
|
2786
3371
|
onChange: handleChange,
|
|
2787
3372
|
value: value
|
|
2788
|
-
}))), (rightChild || isClearable && value) && (/*#__PURE__*/React__default.createElement(FieldIcons, null, isClearable && value && !isReadOnly && !isDisabled && (/*#__PURE__*/React__default.createElement(
|
|
3373
|
+
}))), (rightChild || isClearable && value) && (/*#__PURE__*/React__default.createElement(FieldIcons, null, isClearable && value && !isReadOnly && !isDisabled && (/*#__PURE__*/React__default.createElement(CloseIcon, {
|
|
2789
3374
|
size: appStudio.Typography.fontSizes[size],
|
|
2790
3375
|
color: IconColor,
|
|
2791
3376
|
onClick: handleClear
|
|
@@ -2870,7 +3455,7 @@ var IconSizes$3 = {
|
|
|
2870
3455
|
'6xl': 60
|
|
2871
3456
|
};
|
|
2872
3457
|
|
|
2873
|
-
var _excluded$
|
|
3458
|
+
var _excluded$m = ["id", "icon", "name", "label", "isChecked", "onChange", "onValueChange", "shadow", "labelPosition", "size", "colorScheme", "error", "isSelected", "isHovered", "isDisabled", "isReadOnly", "isIndeterminate", "defaultIsSelected", "setIsSelected", "setIsHovered", "styles", "infoText", "helperText"];
|
|
2874
3459
|
var CheckboxView = _ref => {
|
|
2875
3460
|
var {
|
|
2876
3461
|
id,
|
|
@@ -2898,7 +3483,7 @@ var CheckboxView = _ref => {
|
|
|
2898
3483
|
},
|
|
2899
3484
|
infoText
|
|
2900
3485
|
} = _ref,
|
|
2901
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3486
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$m);
|
|
2902
3487
|
var handleHover = () => setIsHovered(!isHovered);
|
|
2903
3488
|
var handleChange = () => {
|
|
2904
3489
|
if (!isReadOnly && !isDisabled) {
|
|
@@ -2945,8 +3530,12 @@ var CheckboxView = _ref => {
|
|
|
2945
3530
|
alignItems: "center"
|
|
2946
3531
|
}, labelPosition === 'left' && label && (/*#__PURE__*/React__default.createElement(Text, Object.assign({
|
|
2947
3532
|
size: size
|
|
2948
|
-
}, styles == null ? void 0 : styles.label), label)), /*#__PURE__*/React__default.createElement(Center, Object.assign({}, checkboxStyle.checkbox), isIndeterminate ? (/*#__PURE__*/React__default.createElement(
|
|
2949
|
-
size: IconSizes$3[size]
|
|
3533
|
+
}, styles == null ? void 0 : styles.label), label)), /*#__PURE__*/React__default.createElement(Center, Object.assign({}, checkboxStyle.checkbox), isIndeterminate ? (/*#__PURE__*/React__default.createElement(MinusIcon, {
|
|
3534
|
+
size: IconSizes$3[size],
|
|
3535
|
+
color: "white"
|
|
3536
|
+
})) : (isChecked || isSelected) && (icon != null ? icon : /*#__PURE__*/React__default.createElement(TickIcon, {
|
|
3537
|
+
size: IconSizes$3[size],
|
|
3538
|
+
color: "white"
|
|
2950
3539
|
}))), labelPosition === 'right' && label && (/*#__PURE__*/React__default.createElement(Text, Object.assign({
|
|
2951
3540
|
size: size
|
|
2952
3541
|
}, styles == null ? void 0 : styles.label), label))), infoText && (/*#__PURE__*/React__default.createElement(Text, Object.assign({
|
|
@@ -4453,11 +5042,11 @@ var IconSizes$4 = {
|
|
|
4453
5042
|
xl: 16
|
|
4454
5043
|
};
|
|
4455
5044
|
|
|
4456
|
-
var _excluded$
|
|
4457
|
-
_excluded2$
|
|
4458
|
-
_excluded3$
|
|
5045
|
+
var _excluded$n = ["size"],
|
|
5046
|
+
_excluded2$4 = ["size"],
|
|
5047
|
+
_excluded3$3 = ["id", "name", "label", "value", "placeholder", "helperText", "hide", "error", "isHovered", "isFocused", "isAutoFocus", "isDisabled", "isReadOnly", "shadow", "newOptions", "size", "variant", "shape", "colorScheme", "onChange", "onBlur", "setHide", "setNewOptions", "setIsHovered", "setIsFocused", "setValue", "styles"];
|
|
4459
5048
|
var CountryList = _ref => {
|
|
4460
|
-
var props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5049
|
+
var props = _objectWithoutPropertiesLoose(_ref, _excluded$n);
|
|
4461
5050
|
return /*#__PURE__*/React__default.createElement(appStudio.Element, Object.assign({
|
|
4462
5051
|
as: "ul"
|
|
4463
5052
|
}, props));
|
|
@@ -4466,7 +5055,7 @@ var CountrySelector = props => (/*#__PURE__*/React__default.createElement(appStu
|
|
|
4466
5055
|
type: "country"
|
|
4467
5056
|
}, props)));
|
|
4468
5057
|
var CountryItem = _ref2 => {
|
|
4469
|
-
var props = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
5058
|
+
var props = _objectWithoutPropertiesLoose(_ref2, _excluded2$4);
|
|
4470
5059
|
return /*#__PURE__*/React__default.createElement(appStudio.Element, Object.assign({
|
|
4471
5060
|
as: "li"
|
|
4472
5061
|
}, props));
|
|
@@ -4490,6 +5079,7 @@ var DropDownItem = _ref3 => {
|
|
|
4490
5079
|
margin: 0,
|
|
4491
5080
|
role: "DropDownItem",
|
|
4492
5081
|
listStyleType: "none",
|
|
5082
|
+
fontWeight: "normal",
|
|
4493
5083
|
paddingVertical: 6,
|
|
4494
5084
|
paddingHorizontal: 12,
|
|
4495
5085
|
onMouseEnter: handleHover,
|
|
@@ -4568,7 +5158,7 @@ var CountryPickerView = _ref5 => {
|
|
|
4568
5158
|
box: {}
|
|
4569
5159
|
}
|
|
4570
5160
|
} = _ref5,
|
|
4571
|
-
props = _objectWithoutPropertiesLoose(_ref5, _excluded3$
|
|
5161
|
+
props = _objectWithoutPropertiesLoose(_ref5, _excluded3$3);
|
|
4572
5162
|
var {
|
|
4573
5163
|
getColor
|
|
4574
5164
|
} = appStudio.useTheme();
|
|
@@ -4653,11 +5243,13 @@ var CountryPickerView = _ref5 => {
|
|
|
4653
5243
|
}, fieldStyles, props, {
|
|
4654
5244
|
value: value,
|
|
4655
5245
|
onChange: handleChange
|
|
4656
|
-
}))), /*#__PURE__*/React__default.createElement(FieldIcons, null, hide ? (/*#__PURE__*/React__default.createElement(
|
|
5246
|
+
}))), /*#__PURE__*/React__default.createElement(FieldIcons, null, hide ? (/*#__PURE__*/React__default.createElement(Icon.ChevronIcon, {
|
|
5247
|
+
orientation: "down",
|
|
4657
5248
|
size: IconSizes$4[size],
|
|
4658
5249
|
color: IconColor,
|
|
4659
5250
|
style: styles['icon']
|
|
4660
|
-
})) : (/*#__PURE__*/React__default.createElement(
|
|
5251
|
+
})) : (/*#__PURE__*/React__default.createElement(Icon.ChevronIcon, {
|
|
5252
|
+
orientation: "up",
|
|
4661
5253
|
size: IconSizes$4[size],
|
|
4662
5254
|
color: IconColor,
|
|
4663
5255
|
style: styles['icon']
|
|
@@ -4693,7 +5285,7 @@ var useDatePickerState = () => {
|
|
|
4693
5285
|
};
|
|
4694
5286
|
};
|
|
4695
5287
|
|
|
4696
|
-
var _excluded$
|
|
5288
|
+
var _excluded$o = ["id", "icon", "name", "label", "date", "children", "helperText", "shadow", "size", "variant", "shape", "colorScheme", "styles", "error", "isHovered", "isFocused", "isDisabled", "isReadOnly", "setDate", "setIsFocused", "setIsHovered", "onChange", "onChangeText"];
|
|
4697
5289
|
var DatePickerContent = props => /*#__PURE__*/React__default.createElement(appStudio.Input, Object.assign({
|
|
4698
5290
|
type: "date"
|
|
4699
5291
|
}, props));
|
|
@@ -4727,7 +5319,7 @@ var DatePickerView = _ref => {
|
|
|
4727
5319
|
onChange,
|
|
4728
5320
|
onChangeText
|
|
4729
5321
|
} = _ref,
|
|
4730
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5322
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$o);
|
|
4731
5323
|
var isWithLabel = !!(isFocused && label);
|
|
4732
5324
|
var handleHover = () => setIsHovered(!isHovered);
|
|
4733
5325
|
var handleFocus = () => setIsFocused(true);
|
|
@@ -4815,24 +5407,24 @@ var usePasswordState = props => {
|
|
|
4815
5407
|
}, props, textFieldStates);
|
|
4816
5408
|
};
|
|
4817
5409
|
|
|
4818
|
-
var _excluded$
|
|
4819
|
-
_excluded2$
|
|
5410
|
+
var _excluded$p = ["visibleIcon", "hiddenIcon"],
|
|
5411
|
+
_excluded2$5 = ["isVisible", "setIsVisible"];
|
|
4820
5412
|
var PasswordComponent = _ref => {
|
|
4821
5413
|
var {
|
|
4822
|
-
visibleIcon = /*#__PURE__*/React__default.createElement(
|
|
5414
|
+
visibleIcon = /*#__PURE__*/React__default.createElement(OpenEyeIcon, {
|
|
4823
5415
|
size: 14
|
|
4824
5416
|
}),
|
|
4825
|
-
hiddenIcon = /*#__PURE__*/React__default.createElement(
|
|
5417
|
+
hiddenIcon = /*#__PURE__*/React__default.createElement(CloseEyeIcon, {
|
|
4826
5418
|
size: 14
|
|
4827
5419
|
})
|
|
4828
5420
|
} = _ref,
|
|
4829
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5421
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$p);
|
|
4830
5422
|
var _usePasswordState = usePasswordState(props),
|
|
4831
5423
|
{
|
|
4832
5424
|
isVisible,
|
|
4833
5425
|
setIsVisible
|
|
4834
5426
|
} = _usePasswordState,
|
|
4835
|
-
passwordProps = _objectWithoutPropertiesLoose(_usePasswordState, _excluded2$
|
|
5427
|
+
passwordProps = _objectWithoutPropertiesLoose(_usePasswordState, _excluded2$5);
|
|
4836
5428
|
return /*#__PURE__*/React__default.createElement(TextFieldView, Object.assign({}, passwordProps, {
|
|
4837
5429
|
type: isVisible ? 'text' : 'password',
|
|
4838
5430
|
isClearable: false,
|
|
@@ -4880,74 +5472,7 @@ var useComboBoxState = (items, placeholder, searchPlaceholder) => {
|
|
|
4880
5472
|
};
|
|
4881
5473
|
};
|
|
4882
5474
|
|
|
4883
|
-
var _excluded$
|
|
4884
|
-
var TickSvg = _ref => {
|
|
4885
|
-
var {
|
|
4886
|
-
size = 16,
|
|
4887
|
-
color = '#c0c0c0'
|
|
4888
|
-
} = _ref,
|
|
4889
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
|
|
4890
|
-
return /*#__PURE__*/React__default.createElement(Center, {
|
|
4891
|
-
width: size + "px",
|
|
4892
|
-
height: size + "px"
|
|
4893
|
-
}, /*#__PURE__*/React__default.createElement("svg", Object.assign({
|
|
4894
|
-
width: size + "px",
|
|
4895
|
-
height: size + "px",
|
|
4896
|
-
viewBox: "0 -0.5 25 25",
|
|
4897
|
-
fill: "none",
|
|
4898
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
4899
|
-
}, props), /*#__PURE__*/React__default.createElement("g", {
|
|
4900
|
-
id: "SVGRepo_bgCarrier",
|
|
4901
|
-
strokeWidth: "0"
|
|
4902
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
4903
|
-
id: "SVGRepo_tracerCarrier",
|
|
4904
|
-
strokeLinecap: "round",
|
|
4905
|
-
strokeLinejoin: "round"
|
|
4906
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
4907
|
-
id: "SVGRepo_iconCarrier"
|
|
4908
|
-
}, ' ', /*#__PURE__*/React__default.createElement("path", {
|
|
4909
|
-
d: "M5.5 12.5L10.167 17L19.5 8",
|
|
4910
|
-
stroke: "#444444",
|
|
4911
|
-
strokeWidth: "1.5",
|
|
4912
|
-
strokeLinecap: "round",
|
|
4913
|
-
strokeLinejoin: "round"
|
|
4914
|
-
}), ' ')));
|
|
4915
|
-
};
|
|
4916
|
-
|
|
4917
|
-
var _excluded$A = ["size", "color"];
|
|
4918
|
-
var SearchLoopSvg = _ref => {
|
|
4919
|
-
var {
|
|
4920
|
-
size = 14,
|
|
4921
|
-
color = '#c0c0c0'
|
|
4922
|
-
} = _ref,
|
|
4923
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$A);
|
|
4924
|
-
return /*#__PURE__*/React__default.createElement(Center, {
|
|
4925
|
-
width: size + "px",
|
|
4926
|
-
height: size + "px"
|
|
4927
|
-
}, /*#__PURE__*/React__default.createElement("svg", Object.assign({
|
|
4928
|
-
fill: "#c0c0c0",
|
|
4929
|
-
width: size + "px",
|
|
4930
|
-
height: size + "px",
|
|
4931
|
-
version: "1.1",
|
|
4932
|
-
id: "Capa_1",
|
|
4933
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
4934
|
-
viewBox: "0 0 488.4 488.4",
|
|
4935
|
-
stroke: color
|
|
4936
|
-
}, props), /*#__PURE__*/React__default.createElement("g", {
|
|
4937
|
-
id: "SVGRepo_bgCarrier",
|
|
4938
|
-
strokeWidth: "9.279599999999999"
|
|
4939
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
4940
|
-
id: "SVGRepo_tracerCarrier",
|
|
4941
|
-
strokeLinecap: "round",
|
|
4942
|
-
strokeLinejoin: "round"
|
|
4943
|
-
}), /*#__PURE__*/React__default.createElement("g", {
|
|
4944
|
-
id: "SVGRepo_iconCarrier"
|
|
4945
|
-
}, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("path", {
|
|
4946
|
-
d: "M0,203.25c0,112.1,91.2,203.2,203.2,203.2c51.6,0,98.8-19.4,134.7-51.2l129.5,129.5c2.4,2.4,5.5,3.6,8.7,3.6 s6.3-1.2,8.7-3.6c4.8-4.8,4.8-12.5,0-17.3l-129.6-129.5c31.8-35.9,51.2-83,51.2-134.7c0-112.1-91.2-203.2-203.2-203.2 S0,91.15,0,203.25z M381.9,203.25c0,98.5-80.2,178.7-178.7,178.7s-178.7-80.2-178.7-178.7s80.2-178.7,178.7-178.7 S381.9,104.65,381.9,203.25z"
|
|
4947
|
-
}), ' ')))));
|
|
4948
|
-
};
|
|
4949
|
-
|
|
4950
|
-
var _excluded$B = ["placeholder", "items", "showTick", "onSelect", "searchEnabled", "left", "right", "label", "filteredItems", "setSelectedItem", "selectedItem", "highlightedIndex", "setHighlightedIndex", "searchQuery", "setSearchQuery", "setFilteredItems", "styles", "isDropdownVisible", "setIsDropdownVisible"];
|
|
5475
|
+
var _excluded$q = ["placeholder", "items", "showTick", "onSelect", "searchEnabled", "left", "right", "label", "filteredItems", "setSelectedItem", "selectedItem", "highlightedIndex", "setHighlightedIndex", "searchQuery", "setSearchQuery", "setFilteredItems", "styles", "isDropdownVisible", "setIsDropdownVisible"];
|
|
4951
5476
|
// Defines the functional component 'ComboBoxView' with destructured props.
|
|
4952
5477
|
var ComboBoxView = _ref => {
|
|
4953
5478
|
var {
|
|
@@ -4972,7 +5497,7 @@ var ComboBoxView = _ref => {
|
|
|
4972
5497
|
setIsDropdownVisible
|
|
4973
5498
|
// Collects all further props not destructured explicitly.
|
|
4974
5499
|
} = _ref,
|
|
4975
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5500
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$q);
|
|
4976
5501
|
// Sets up an effect to handle clicking outside the dropdown to close it.
|
|
4977
5502
|
React.useEffect(() => {
|
|
4978
5503
|
var handleClickOutside = event => {
|
|
@@ -5056,7 +5581,7 @@ var ComboBoxView = _ref => {
|
|
|
5056
5581
|
onChange: value => handleSearch(value),
|
|
5057
5582
|
hint: placeholder,
|
|
5058
5583
|
isClearable: false,
|
|
5059
|
-
leftChild: /*#__PURE__*/React__default.createElement(
|
|
5584
|
+
leftChild: /*#__PURE__*/React__default.createElement(Icon.SearchIcon, {
|
|
5060
5585
|
size: 12
|
|
5061
5586
|
}),
|
|
5062
5587
|
styles: {
|
|
@@ -5078,10 +5603,12 @@ var ComboBoxView = _ref => {
|
|
|
5078
5603
|
backgroundColor: index === highlightedIndex ? 'color.gray.100' : 'transparent',
|
|
5079
5604
|
onMouseEnter: () => setHighlightedIndex(index),
|
|
5080
5605
|
onClick: () => handleSelect(item)
|
|
5081
|
-
}, styles == null ? void 0 : styles.item), /*#__PURE__*/React__default.createElement(Text, null, item.label), /*#__PURE__*/React__default.createElement(React__default.Fragment, null, item.icon && item.icon, item.value === selectedItem.value && showTick && !item.icon && /*#__PURE__*/React__default.createElement(
|
|
5606
|
+
}, styles == null ? void 0 : styles.item), /*#__PURE__*/React__default.createElement(Text, null, item.label), /*#__PURE__*/React__default.createElement(React__default.Fragment, null, item.icon && item.icon, item.value === selectedItem.value && showTick && !item.icon && /*#__PURE__*/React__default.createElement(Icon.TickIcon, {
|
|
5607
|
+
size: 20
|
|
5608
|
+
}))))))))))));
|
|
5082
5609
|
};
|
|
5083
5610
|
|
|
5084
|
-
var _excluded$
|
|
5611
|
+
var _excluded$r = ["id", "name", "items", "placeholder", "searchPlaceholder"];
|
|
5085
5612
|
// Defines the ComboBoxComponent functional component with ComboBoxProps
|
|
5086
5613
|
var ComboBoxComponent = _ref => {
|
|
5087
5614
|
var {
|
|
@@ -5097,7 +5624,7 @@ var ComboBoxComponent = _ref => {
|
|
|
5097
5624
|
searchPlaceholder
|
|
5098
5625
|
// Destructures the rest of the props not explicitly defined
|
|
5099
5626
|
} = _ref,
|
|
5100
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5627
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$r);
|
|
5101
5628
|
// Initializes ComboBox state using custom hook with items and placeholders
|
|
5102
5629
|
var state = useComboBoxState(items, placeholder, searchPlaceholder);
|
|
5103
5630
|
return (
|
|
@@ -5113,7 +5640,7 @@ var ComboBoxComponent = _ref => {
|
|
|
5113
5640
|
// Exports the ComboBoxComponent as ComboBox
|
|
5114
5641
|
var ComboBox = ComboBoxComponent;
|
|
5115
5642
|
|
|
5116
|
-
var _excluded$
|
|
5643
|
+
var _excluded$s = ["children", "autoFocus", "initFocus", "onChange"];
|
|
5117
5644
|
var FocusContext = /*#__PURE__*/React.createContext({
|
|
5118
5645
|
active: false,
|
|
5119
5646
|
focusNextInput: () => {},
|
|
@@ -5129,7 +5656,7 @@ var FormikForm = _ref => {
|
|
|
5129
5656
|
initFocus,
|
|
5130
5657
|
onChange = () => {}
|
|
5131
5658
|
} = _ref,
|
|
5132
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5659
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$s);
|
|
5133
5660
|
var formik$1 = formik.useFormikContext();
|
|
5134
5661
|
React.useEffect(() => {
|
|
5135
5662
|
onChange(formik$1.values);
|
|
@@ -5177,7 +5704,7 @@ var FormikForm = _ref => {
|
|
|
5177
5704
|
}, /*#__PURE__*/React__default.createElement(appStudio.Form, Object.assign({}, props), children));
|
|
5178
5705
|
};
|
|
5179
5706
|
|
|
5180
|
-
var _excluded$
|
|
5707
|
+
var _excluded$t = ["name", "type"];
|
|
5181
5708
|
var getInputTypeProps = type => {
|
|
5182
5709
|
switch (type) {
|
|
5183
5710
|
case 'email':
|
|
@@ -5216,7 +5743,7 @@ var useFormikInput = _ref => {
|
|
|
5216
5743
|
name,
|
|
5217
5744
|
type
|
|
5218
5745
|
} = _ref,
|
|
5219
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5746
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$t);
|
|
5220
5747
|
var focus = useFormFocus();
|
|
5221
5748
|
var {
|
|
5222
5749
|
touched,
|
|
@@ -5260,13 +5787,13 @@ var useFormikInput = _ref => {
|
|
|
5260
5787
|
} : {});
|
|
5261
5788
|
};
|
|
5262
5789
|
|
|
5263
|
-
var _excluded$
|
|
5790
|
+
var _excluded$u = ["value"];
|
|
5264
5791
|
var CheckboxComponent$1 = props => {
|
|
5265
5792
|
var _useFormikInput = useFormikInput(props),
|
|
5266
5793
|
{
|
|
5267
5794
|
value
|
|
5268
5795
|
} = _useFormikInput,
|
|
5269
|
-
formProps = _objectWithoutPropertiesLoose(_useFormikInput, _excluded$
|
|
5796
|
+
formProps = _objectWithoutPropertiesLoose(_useFormikInput, _excluded$u);
|
|
5270
5797
|
formProps.isChecked = value;
|
|
5271
5798
|
var checkboxStates = useCheckboxState(props);
|
|
5272
5799
|
return /*#__PURE__*/React__default.createElement(CheckboxView, Object.assign({}, checkboxStates, formProps));
|
|
@@ -5324,11 +5851,11 @@ var TextAreaComponent$1 = props => {
|
|
|
5324
5851
|
*/
|
|
5325
5852
|
var FormikTextArea = TextAreaComponent$1;
|
|
5326
5853
|
|
|
5327
|
-
var _excluded$
|
|
5854
|
+
var _excluded$v = ["value"];
|
|
5328
5855
|
var TextFieldComponent$1 = props => {
|
|
5329
5856
|
var formProps = useFormikInput(props);
|
|
5330
5857
|
var _useTextFieldState = useTextFieldState(props),
|
|
5331
|
-
textFieldStates = _objectWithoutPropertiesLoose(_useTextFieldState, _excluded$
|
|
5858
|
+
textFieldStates = _objectWithoutPropertiesLoose(_useTextFieldState, _excluded$v);
|
|
5332
5859
|
return /*#__PURE__*/React__default.createElement(TextFieldView, Object.assign({}, textFieldStates, formProps));
|
|
5333
5860
|
};
|
|
5334
5861
|
/**
|
|
@@ -5336,25 +5863,25 @@ var TextFieldComponent$1 = props => {
|
|
|
5336
5863
|
*/
|
|
5337
5864
|
var FormikTextField = TextFieldComponent$1;
|
|
5338
5865
|
|
|
5339
|
-
var _excluded$
|
|
5340
|
-
_excluded2$
|
|
5866
|
+
var _excluded$w = ["visibleIcon", "hiddenIcon"],
|
|
5867
|
+
_excluded2$6 = ["isVisible", "setIsVisible"];
|
|
5341
5868
|
var PasswordComponent$1 = _ref => {
|
|
5342
5869
|
var {
|
|
5343
|
-
visibleIcon = /*#__PURE__*/React__default.createElement(
|
|
5870
|
+
visibleIcon = /*#__PURE__*/React__default.createElement(OpenEyeIcon, {
|
|
5344
5871
|
size: 14
|
|
5345
5872
|
}),
|
|
5346
|
-
hiddenIcon = /*#__PURE__*/React__default.createElement(
|
|
5873
|
+
hiddenIcon = /*#__PURE__*/React__default.createElement(CloseEyeIcon, {
|
|
5347
5874
|
size: 14
|
|
5348
5875
|
})
|
|
5349
5876
|
} = _ref,
|
|
5350
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5877
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$w);
|
|
5351
5878
|
var formProps = useFormikInput(props);
|
|
5352
5879
|
var _usePasswordState = usePasswordState(formProps),
|
|
5353
5880
|
{
|
|
5354
5881
|
isVisible,
|
|
5355
5882
|
setIsVisible
|
|
5356
5883
|
} = _usePasswordState,
|
|
5357
|
-
passwordProps = _objectWithoutPropertiesLoose(_usePasswordState, _excluded2$
|
|
5884
|
+
passwordProps = _objectWithoutPropertiesLoose(_usePasswordState, _excluded2$6);
|
|
5358
5885
|
return /*#__PURE__*/React__default.createElement(TextFieldView, Object.assign({}, passwordProps, {
|
|
5359
5886
|
type: isVisible ? 'text' : 'password',
|
|
5360
5887
|
isClearable: false,
|
|
@@ -5372,14 +5899,14 @@ var PasswordComponent$1 = _ref => {
|
|
|
5372
5899
|
*/
|
|
5373
5900
|
var FormikPassword = PasswordComponent$1;
|
|
5374
5901
|
|
|
5375
|
-
var _excluded$
|
|
5902
|
+
var _excluded$x = ["items", "placeholder", "searchPlaceholder"];
|
|
5376
5903
|
var ComboBoxComponent$1 = _ref => {
|
|
5377
5904
|
var {
|
|
5378
5905
|
items,
|
|
5379
5906
|
placeholder,
|
|
5380
5907
|
searchPlaceholder
|
|
5381
5908
|
} = _ref,
|
|
5382
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5909
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$x);
|
|
5383
5910
|
var formProps = useFormikInput(props);
|
|
5384
5911
|
var ComboBoxStates = useComboBoxState(items, placeholder, searchPlaceholder);
|
|
5385
5912
|
// Ensure the onChange function from formProps is being called when an item is selected
|
|
@@ -5447,14 +5974,14 @@ var Themes$1 = {
|
|
|
5447
5974
|
},
|
|
5448
5975
|
icon: {
|
|
5449
5976
|
color: 'color.blue.500',
|
|
5450
|
-
name: '
|
|
5977
|
+
name: 'InformationIcon'
|
|
5451
5978
|
},
|
|
5452
5979
|
content: {
|
|
5453
5980
|
color: 'color.blue.500'
|
|
5454
5981
|
},
|
|
5455
5982
|
close: {
|
|
5456
5983
|
color: 'color.blue.500',
|
|
5457
|
-
name: '
|
|
5984
|
+
name: 'CloseIcon'
|
|
5458
5985
|
}
|
|
5459
5986
|
},
|
|
5460
5987
|
success: {
|
|
@@ -5464,14 +5991,14 @@ var Themes$1 = {
|
|
|
5464
5991
|
},
|
|
5465
5992
|
icon: {
|
|
5466
5993
|
color: 'color.green.500',
|
|
5467
|
-
name: '
|
|
5994
|
+
name: 'CheckCircleIcon'
|
|
5468
5995
|
},
|
|
5469
5996
|
content: {
|
|
5470
5997
|
color: 'color.green.500'
|
|
5471
5998
|
},
|
|
5472
5999
|
close: {
|
|
5473
6000
|
color: 'color.green.500',
|
|
5474
|
-
name: '
|
|
6001
|
+
name: 'CloseIcon'
|
|
5475
6002
|
}
|
|
5476
6003
|
},
|
|
5477
6004
|
error: {
|
|
@@ -5481,14 +6008,14 @@ var Themes$1 = {
|
|
|
5481
6008
|
},
|
|
5482
6009
|
icon: {
|
|
5483
6010
|
color: 'color.red.500',
|
|
5484
|
-
name: '
|
|
6011
|
+
name: 'ErrrorIcon'
|
|
5485
6012
|
},
|
|
5486
6013
|
content: {
|
|
5487
6014
|
color: 'color.red.500'
|
|
5488
6015
|
},
|
|
5489
6016
|
close: {
|
|
5490
6017
|
color: 'color.red.500',
|
|
5491
|
-
name: '
|
|
6018
|
+
name: 'CloseIcon'
|
|
5492
6019
|
}
|
|
5493
6020
|
},
|
|
5494
6021
|
warning: {
|
|
@@ -5498,14 +6025,14 @@ var Themes$1 = {
|
|
|
5498
6025
|
},
|
|
5499
6026
|
icon: {
|
|
5500
6027
|
color: 'color.orange.500',
|
|
5501
|
-
name: '
|
|
6028
|
+
name: 'ErrrorIcon'
|
|
5502
6029
|
},
|
|
5503
6030
|
content: {
|
|
5504
6031
|
color: 'color.orange.500'
|
|
5505
6032
|
},
|
|
5506
6033
|
close: {
|
|
5507
6034
|
color: 'color.orange.500',
|
|
5508
|
-
name: '
|
|
6035
|
+
name: 'CloseIcon'
|
|
5509
6036
|
}
|
|
5510
6037
|
}
|
|
5511
6038
|
};
|
|
@@ -5552,19 +6079,19 @@ var MessageView = _ref => {
|
|
|
5552
6079
|
error: '#ef4444'
|
|
5553
6080
|
}[variant];
|
|
5554
6081
|
var iconComponent = {
|
|
5555
|
-
info: /*#__PURE__*/React__default.createElement(
|
|
6082
|
+
info: /*#__PURE__*/React__default.createElement(InfoIcon, Object.assign({
|
|
5556
6083
|
size: 24,
|
|
5557
6084
|
color: iconColor
|
|
5558
6085
|
}, styles == null ? void 0 : styles.icon)),
|
|
5559
|
-
success: /*#__PURE__*/React__default.createElement(
|
|
6086
|
+
success: /*#__PURE__*/React__default.createElement(SuccessIcon, Object.assign({
|
|
5560
6087
|
size: 24,
|
|
5561
6088
|
color: iconColor
|
|
5562
6089
|
}, styles == null ? void 0 : styles.icon)),
|
|
5563
|
-
warning: /*#__PURE__*/React__default.createElement(
|
|
6090
|
+
warning: /*#__PURE__*/React__default.createElement(WarningIcon, Object.assign({
|
|
5564
6091
|
size: 24,
|
|
5565
6092
|
color: iconColor
|
|
5566
6093
|
}, styles == null ? void 0 : styles.icon)),
|
|
5567
|
-
error: /*#__PURE__*/React__default.createElement(
|
|
6094
|
+
error: /*#__PURE__*/React__default.createElement(ErrorIcon, Object.assign({
|
|
5568
6095
|
size: 24,
|
|
5569
6096
|
color: iconColor
|
|
5570
6097
|
}, styles == null ? void 0 : styles.icon))
|
|
@@ -5605,7 +6132,7 @@ var MessageView = _ref => {
|
|
|
5605
6132
|
onClick: () => {
|
|
5606
6133
|
hide();
|
|
5607
6134
|
}
|
|
5608
|
-
}, styles == null || (_styles$closingIcon = styles.closingIcon) == null ? void 0 : _styles$closingIcon.container), /*#__PURE__*/React__default.createElement(
|
|
6135
|
+
}, styles == null || (_styles$closingIcon = styles.closingIcon) == null ? void 0 : _styles$closingIcon.container), /*#__PURE__*/React__default.createElement(CloseIcon, Object.assign({
|
|
5609
6136
|
size: 18,
|
|
5610
6137
|
color: iconColor
|
|
5611
6138
|
}, styles == null || (_styles$closingIcon2 = styles.closingIcon) == null ? void 0 : _styles$closingIcon2.icon)))));
|
|
@@ -5748,11 +6275,11 @@ var HeaderIconSizes = {
|
|
|
5748
6275
|
xl: 28
|
|
5749
6276
|
};
|
|
5750
6277
|
|
|
5751
|
-
var _excluded$
|
|
5752
|
-
_excluded2$
|
|
5753
|
-
_excluded3$
|
|
5754
|
-
_excluded4$
|
|
5755
|
-
_excluded5 = ["children"];
|
|
6278
|
+
var _excluded$y = ["children", "blur", "isOpen", "isClosePrevented", "onClose", "position"],
|
|
6279
|
+
_excluded2$7 = ["children", "shadow", "isFullScreen", "shape"],
|
|
6280
|
+
_excluded3$4 = ["children", "buttonColor", "iconSize", "buttonPosition"],
|
|
6281
|
+
_excluded4$3 = ["children"],
|
|
6282
|
+
_excluded5$1 = ["children"];
|
|
5756
6283
|
var ModalOverlay = _ref => {
|
|
5757
6284
|
var {
|
|
5758
6285
|
children,
|
|
@@ -5762,7 +6289,7 @@ var ModalOverlay = _ref => {
|
|
|
5762
6289
|
onClose = () => {},
|
|
5763
6290
|
position = 'center'
|
|
5764
6291
|
} = _ref,
|
|
5765
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6292
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$y);
|
|
5766
6293
|
var handleClick = () => {
|
|
5767
6294
|
if (!isClosePrevented) onClose();
|
|
5768
6295
|
};
|
|
@@ -5795,7 +6322,7 @@ var ModalContainer = _ref2 => {
|
|
|
5795
6322
|
isFullScreen = false,
|
|
5796
6323
|
shape = 'rounded'
|
|
5797
6324
|
} = _ref2,
|
|
5798
|
-
props = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
6325
|
+
props = _objectWithoutPropertiesLoose(_ref2, _excluded2$7);
|
|
5799
6326
|
var defaultShadow = typeof document !== undefined ? {
|
|
5800
6327
|
boxShadow: '0px 2px 8px rgba(0, 0, 0, 0.3)'
|
|
5801
6328
|
} : {
|
|
@@ -5826,12 +6353,12 @@ var ModalHeader = _ref3 => {
|
|
|
5826
6353
|
iconSize = 'md',
|
|
5827
6354
|
buttonPosition = 'right'
|
|
5828
6355
|
} = _ref3,
|
|
5829
|
-
props = _objectWithoutPropertiesLoose(_ref3, _excluded3$
|
|
6356
|
+
props = _objectWithoutPropertiesLoose(_ref3, _excluded3$4);
|
|
5830
6357
|
var onClose = props.onClose ? props.onClose : hideModal;
|
|
5831
6358
|
var buttonIcon = /*#__PURE__*/React__default.createElement(Button, {
|
|
5832
6359
|
onClick: onClose,
|
|
5833
6360
|
colorScheme: "transparent",
|
|
5834
|
-
icon: /*#__PURE__*/React__default.createElement(
|
|
6361
|
+
icon: /*#__PURE__*/React__default.createElement(CloseIcon, {
|
|
5835
6362
|
size: HeaderIconSizes[iconSize],
|
|
5836
6363
|
color: buttonColor
|
|
5837
6364
|
}),
|
|
@@ -5851,7 +6378,7 @@ var ModalBody = _ref4 => {
|
|
|
5851
6378
|
var {
|
|
5852
6379
|
children
|
|
5853
6380
|
} = _ref4,
|
|
5854
|
-
props = _objectWithoutPropertiesLoose(_ref4, _excluded4$
|
|
6381
|
+
props = _objectWithoutPropertiesLoose(_ref4, _excluded4$3);
|
|
5855
6382
|
var defaultBorder = {
|
|
5856
6383
|
borderBottomWidth: 2,
|
|
5857
6384
|
borderTopWidth: 2,
|
|
@@ -5867,7 +6394,7 @@ var ModalFooter = _ref5 => {
|
|
|
5867
6394
|
var {
|
|
5868
6395
|
children
|
|
5869
6396
|
} = _ref5,
|
|
5870
|
-
props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
|
|
6397
|
+
props = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
|
|
5871
6398
|
return /*#__PURE__*/React__default.createElement(Horizontal, Object.assign({
|
|
5872
6399
|
marginTop: "auto",
|
|
5873
6400
|
alignItems: "center",
|
|
@@ -6086,7 +6613,7 @@ var TabsView = props => {
|
|
|
6086
6613
|
// Returns a boolean indicating if the given tab is identical to the first tab in 'tabsState'.
|
|
6087
6614
|
return tab.value === tabsState[0].value;
|
|
6088
6615
|
};
|
|
6089
|
-
return /*#__PURE__*/React__default.createElement(
|
|
6616
|
+
return /*#__PURE__*/React__default.createElement(Layout.Vertical, Object.assign({
|
|
6090
6617
|
width: "100w",
|
|
6091
6618
|
height: '100%'
|
|
6092
6619
|
}, styles == null ? void 0 : styles.container), /*#__PURE__*/React__default.createElement(Horizontal, Object.assign({
|
|
@@ -6151,7 +6678,7 @@ var ToggleShapes = {
|
|
|
6151
6678
|
pillShaped: 24
|
|
6152
6679
|
};
|
|
6153
6680
|
|
|
6154
|
-
var _excluded$
|
|
6681
|
+
var _excluded$z = ["children", "shape", "colorScheme", "variant", "isHovered", "setIsHovered", "isDisabled", "isToggle", "setIsToggled", "onToggle"];
|
|
6155
6682
|
var ToggleView = _ref => {
|
|
6156
6683
|
var {
|
|
6157
6684
|
children,
|
|
@@ -6165,7 +6692,7 @@ var ToggleView = _ref => {
|
|
|
6165
6692
|
setIsToggled,
|
|
6166
6693
|
onToggle
|
|
6167
6694
|
} = _ref,
|
|
6168
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6695
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
|
|
6169
6696
|
var toggleColor = !isDisabled ? colorScheme : 'theme.disabled';
|
|
6170
6697
|
var isActive = !!(isToggle || isHovered);
|
|
6171
6698
|
var ToggleVariants = {
|
|
@@ -6207,7 +6734,7 @@ var ToggleView = _ref => {
|
|
|
6207
6734
|
}, ToggleVariants[variant], props), children);
|
|
6208
6735
|
};
|
|
6209
6736
|
|
|
6210
|
-
var _excluded$
|
|
6737
|
+
var _excluded$A = ["children", "shape", "colorScheme", "variant", "isDisabled", "isToggled", "onToggle"];
|
|
6211
6738
|
// Destructuring properties from ToggleProps to be used within the ToggleComponent.
|
|
6212
6739
|
var ToggleComponent = _ref => {
|
|
6213
6740
|
var {
|
|
@@ -6220,7 +6747,7 @@ var ToggleComponent = _ref => {
|
|
|
6220
6747
|
isToggled = false,
|
|
6221
6748
|
onToggle
|
|
6222
6749
|
} = _ref,
|
|
6223
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6750
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$A);
|
|
6224
6751
|
// Initializing toggle state and set state functions using the custom hook useToggleState.
|
|
6225
6752
|
var {
|
|
6226
6753
|
isHovered,
|
|
@@ -6335,19 +6862,39 @@ var ToggleGroupComponent = _ref => {
|
|
|
6335
6862
|
// Expose the ToggleGroupComponent for import into other modules
|
|
6336
6863
|
var ToggleGroup = ToggleGroupComponent;
|
|
6337
6864
|
|
|
6865
|
+
exports.AddIcon = AddIcon;
|
|
6338
6866
|
exports.Alert = Alert;
|
|
6867
|
+
exports.ArrowIcon = ArrowIcon;
|
|
6339
6868
|
exports.AspectRatio = AspectRatio;
|
|
6340
6869
|
exports.Avatar = Avatar;
|
|
6341
6870
|
exports.Badge = Badge;
|
|
6871
|
+
exports.BatteryIcon = BatteryIcon;
|
|
6872
|
+
exports.BluetoothIcon = BluetoothIcon;
|
|
6873
|
+
exports.BookmarkIcon = BookmarkIcon;
|
|
6342
6874
|
exports.Bottom = Bottom;
|
|
6343
6875
|
exports.Button = Button;
|
|
6876
|
+
exports.CalendarIcon = CalendarIcon;
|
|
6877
|
+
exports.CameraIcon = CameraIcon;
|
|
6344
6878
|
exports.Center = Center;
|
|
6879
|
+
exports.CheckIcon = CheckIcon;
|
|
6345
6880
|
exports.Checkbox = Checkbox;
|
|
6881
|
+
exports.ChevronIcon = ChevronIcon;
|
|
6882
|
+
exports.ClockIcon = ClockIcon;
|
|
6883
|
+
exports.CloseEyeIcon = CloseEyeIcon;
|
|
6884
|
+
exports.CloseIcon = CloseIcon;
|
|
6885
|
+
exports.CloudIcon = CloudIcon;
|
|
6346
6886
|
exports.ComboBox = ComboBox;
|
|
6887
|
+
exports.CopyIcon = CopyIcon;
|
|
6347
6888
|
exports.CountryPicker = CountryPicker;
|
|
6348
6889
|
exports.DatePicker = DatePicker;
|
|
6890
|
+
exports.DownloadIcon = DownloadIcon;
|
|
6891
|
+
exports.DustBinIcon = DustBinIcon;
|
|
6892
|
+
exports.EditIcon = EditIcon;
|
|
6893
|
+
exports.ErrorIcon = ErrorIcon;
|
|
6894
|
+
exports.ExternalLinkIcon = ExternalLinkIcon;
|
|
6349
6895
|
exports.FileImage = FileImage;
|
|
6350
6896
|
exports.FileSVG = FileSVG;
|
|
6897
|
+
exports.FilterIcon = FilterIcon;
|
|
6351
6898
|
exports.FormikCheckbox = FormikCheckbox;
|
|
6352
6899
|
exports.FormikComboBox = FormikComboBox;
|
|
6353
6900
|
exports.FormikCountryPicker = FormikCountryPicker;
|
|
@@ -6358,28 +6905,58 @@ exports.FormikSelect = FormikSelect;
|
|
|
6358
6905
|
exports.FormikSwitch = FormikSwitch;
|
|
6359
6906
|
exports.FormikTextArea = FormikTextArea;
|
|
6360
6907
|
exports.FormikTextField = FormikTextField;
|
|
6908
|
+
exports.HeartIcon = HeartIcon;
|
|
6909
|
+
exports.HomeIcon = HomeIcon;
|
|
6361
6910
|
exports.Horizontal = Horizontal;
|
|
6911
|
+
exports.InfoIcon = InfoIcon;
|
|
6362
6912
|
exports.Inline = Inline;
|
|
6363
6913
|
exports.Left = Left;
|
|
6364
6914
|
exports.Link = Link;
|
|
6365
6915
|
exports.Loader = Loader;
|
|
6916
|
+
exports.LocationIcon = LocationIcon;
|
|
6917
|
+
exports.LockIcon = LockIcon;
|
|
6918
|
+
exports.MenuIcon = MenuIcon;
|
|
6366
6919
|
exports.MessageLayout = MessageLayout;
|
|
6367
6920
|
exports.MessageView = MessageView;
|
|
6921
|
+
exports.MicrophoneIcon = MicrophoneIcon;
|
|
6922
|
+
exports.MinusIcon = MinusIcon;
|
|
6368
6923
|
exports.Modal = Modal;
|
|
6924
|
+
exports.MoonIcon = MoonIcon;
|
|
6925
|
+
exports.NotificationIcon = NotificationIcon;
|
|
6926
|
+
exports.OpenEyeIcon = OpenEyeIcon;
|
|
6369
6927
|
exports.Password = Password;
|
|
6928
|
+
exports.PlusIcon = PlusIcon;
|
|
6929
|
+
exports.PrintIcon = PrintIcon;
|
|
6930
|
+
exports.ProfileIcon = ProfileIcon;
|
|
6931
|
+
exports.RefreshIcon = RefreshIcon;
|
|
6370
6932
|
exports.Right = Right;
|
|
6933
|
+
exports.SaveIcon = SaveIcon;
|
|
6934
|
+
exports.SearchIcon = SearchIcon;
|
|
6371
6935
|
exports.Select = Select;
|
|
6936
|
+
exports.SettingsIcon = SettingsIcon;
|
|
6937
|
+
exports.ShareIcon = ShareIcon;
|
|
6938
|
+
exports.SpinnerIcon = SpinnerIcon;
|
|
6939
|
+
exports.StarIcon = StarIcon;
|
|
6940
|
+
exports.SuccessIcon = SuccessIcon;
|
|
6941
|
+
exports.SunIcon = SunIcon;
|
|
6372
6942
|
exports.Switch = Switch;
|
|
6373
6943
|
exports.Table = Table;
|
|
6374
6944
|
exports.Tabs = Tabs;
|
|
6375
6945
|
exports.Text = Text;
|
|
6376
6946
|
exports.TextArea = TextArea;
|
|
6377
6947
|
exports.TextField = TextField;
|
|
6948
|
+
exports.ThumbDownIcon = ThumbDownIcon;
|
|
6949
|
+
exports.ThumbUpIcon = ThumbUpIcon;
|
|
6950
|
+
exports.TickIcon = TickIcon;
|
|
6378
6951
|
exports.Toggle = Toggle;
|
|
6379
6952
|
exports.ToggleGroup = ToggleGroup;
|
|
6380
6953
|
exports.Top = Top;
|
|
6954
|
+
exports.UnlockIcon = UnlockIcon;
|
|
6955
|
+
exports.UploadIcon = UploadIcon;
|
|
6381
6956
|
exports.Vertical = Vertical;
|
|
6382
6957
|
exports.View = View;
|
|
6958
|
+
exports.WarningIcon = WarningIcon;
|
|
6959
|
+
exports.WifiIcon = WifiIcon;
|
|
6383
6960
|
exports.hideMessage = hideMessage;
|
|
6384
6961
|
exports.hideModal = hideModal;
|
|
6385
6962
|
exports.showMessage = showMessage;
|