@sproutsocial/racine 8.6.1-collapsible-fix.0 → 8.6.3-dar10.1

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.
@@ -118,7 +118,7 @@ var Panel = function Panel(_ref3) {
118
118
  }
119
119
  }, [isOpen]);
120
120
  return /*#__PURE__*/React.createElement(_styles.CollapsingBox, _extends({
121
- className: collapsedHeight > 0 ? "minimum" : "",
121
+ hasShadow: collapsedHeight || openHeight > 0,
122
122
  scrollable: isOpen,
123
123
  maxHeight: isOpen ? maxHeight : collapsedHeight,
124
124
  minHeight: collapsedHeight,
@@ -12,12 +12,14 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
12
12
  var CollapsingBox = (0, _styledComponents.default)(_Box.default).withConfig({
13
13
  displayName: "styles__CollapsingBox",
14
14
  componentId: "sc-1xvfbl7-0"
15
- })(["transition:max-height ", " ", ";will-change:max-height;position:relative;overflow:auto;&.minimum{background:linear-gradient( transparent 30%,rgba(255,255,255,0) ),linear-gradient(rgba(255,255,255,0),transparent 70%) 0 100%,radial-gradient( farthest-side at 50% 0,rgb(39 51 51 / 5%),rgba(0,0,0,0) ),radial-gradient( farthest-side at 50% 100%,rgb(39 51 51 / 5%),rgba(0,0,0,0) ) 0 100%;background-repeat:no-repeat;background-size:100% 40px,100% 40px,100% 14px,100% 14px;background-attachment:local,local,scroll,scroll;", ";}"], function (p) {
15
+ })(["transition:max-height ", " ", ";will-change:max-height;position:relative;overflow:auto;", ""], function (p) {
16
16
  return p.theme.duration.medium;
17
17
  }, function (p) {
18
18
  return p.theme.easing.ease_inout;
19
19
  }, function (_ref) {
20
- var scrollable = _ref.scrollable;
21
- return scrollable ? "overflow: auto" : "overflow: hidden";
20
+ var hasShadow = _ref.hasShadow,
21
+ theme = _ref.theme,
22
+ scrollable = _ref.scrollable;
23
+ return hasShadow ? "background: /* Shadow covers */ linear-gradient(\n transparent 30%,\n rgba(255, 255, 255, 0)\n ),\n linear-gradient(rgba(255, 255, 255, 0), transparent 70%) 0 100%,\n /* Shadows */\n radial-gradient(\n farthest-side at 50% 0,\n rgb(39 51 51 / 5%),\n rgba(0, 0, 0, 0)\n ),\n radial-gradient(\n farthest-side at 50% 100%,\n rgb(39 51 51 / 5%),\n rgba(0, 0, 0, 0)\n )\n 0 100%;\n background-repeat: no-repeat;\n background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;\n background-attachment: local, local, scroll, scroll;\n " + (scrollable ? "overflow: auto" : "overflow: hidden") + ";" : "";
22
24
  });
23
25
  exports.CollapsingBox = CollapsingBox;
@@ -25,7 +25,8 @@ var MenuContext = /*#__PURE__*/(0, _react.createContext)({
25
25
  state: {
26
26
  selectionIndex: 0,
27
27
  filterQuery: "",
28
- filteredItems: null
28
+ filteredItems: null,
29
+ isFilterInputFocused: false
29
30
  },
30
31
  setState: function setState() {},
31
32
  selectCallbacks: {
@@ -75,7 +76,8 @@ function useMenuKeyDown() {
75
76
  _useContext$state = _useContext.state,
76
77
  filterQuery = _useContext$state.filterQuery,
77
78
  selectionIndex = _useContext$state.selectionIndex,
78
- filteredItems = _useContext$state.filteredItems;
79
+ filteredItems = _useContext$state.filteredItems,
80
+ isFilterInputFocused = _useContext$state.isFilterInputFocused;
79
81
 
80
82
  var _useContext2 = (0, _react.useContext)(MenuButtonContext),
81
83
  closePopout = _useContext2.closePopout,
@@ -134,8 +136,15 @@ function useMenuKeyDown() {
134
136
  var key = event.key;
135
137
 
136
138
  switch (key) {
137
- case "Enter":
138
139
  case " ":
140
+ if (isFilterInputFocused) {
141
+ return;
142
+ }
143
+
144
+ // falls through
145
+ // eslint-disable-next-line no-fallthrough
146
+
147
+ case "Enter":
139
148
  var selected = items[selectionIndex];
140
149
 
141
150
  if (selected) {
@@ -296,18 +296,37 @@ var MenuDivider = function MenuDivider(props) {
296
296
  exports.MenuDivider = MenuDivider;
297
297
 
298
298
  var MenuFilterInput = function MenuFilterInput(props) {
299
+ var onChange = props.onChange,
300
+ onFocus = props.onFocus,
301
+ onBlur = props.onBlur;
302
+
299
303
  var _useContext3 = (0, React.useContext)(_hooks2.MenuContext),
300
304
  state = _useContext3.state,
301
305
  setState = _useContext3.setState;
302
306
 
303
- var updateFilterQuery = (0, React.useCallback)(function (event) {
304
- return setState({
305
- filterQuery: event.currentTarget.value
307
+ var handleOnChange = (0, React.useCallback)(function (event, value) {
308
+ onChange && onChange(event, value);
309
+ setState({
310
+ filterQuery: value
311
+ });
312
+ }, [setState, onChange]);
313
+ var handleOnFocus = (0, React.useCallback)(function (event) {
314
+ onFocus && onFocus(event);
315
+ setState({
316
+ isFilterInputFocused: true
317
+ });
318
+ }, [setState, onFocus]);
319
+ var handleOnBlur = (0, React.useCallback)(function (event) {
320
+ onBlur && onBlur(event);
321
+ setState({
322
+ isFilterInputFocused: false
306
323
  });
307
- }, [setState]);
324
+ }, [setState, onBlur]);
308
325
  return /*#__PURE__*/React.createElement(_Input.default, _extends({}, props, {
309
326
  value: state.filterQuery,
310
- onChange: updateFilterQuery
327
+ onChange: handleOnChange,
328
+ onFocus: handleOnFocus,
329
+ onBlur: handleOnBlur
311
330
  }));
312
331
  };
313
332
 
@@ -353,7 +372,8 @@ var Menu = function Menu(_ref4) {
353
372
  var _useState = (0, React.useState)({
354
373
  selectionIndex: 0,
355
374
  filterQuery: "",
356
- filteredItems: null
375
+ filteredItems: null,
376
+ isFilterInputFocused: false
357
377
  }),
358
378
  state = _useState[0],
359
379
  setState = _useState[1];
@@ -35,9 +35,11 @@ var MenuItemContainer = (0, _styledComponents.default)(_Box.default).withConfig(
35
35
  }, function (props) {
36
36
  return (0, _styledComponents.css)(["", ";"], props.theme.typography[200]);
37
37
  }, function (props) {
38
- return props.active && !props.disabled && (0, _styledComponents.css)(["color:", ";background-color:", ";"], function (props) {
38
+ return props.active && !props.disabled && (0, _styledComponents.css)(["color:", ";background-color:", ";.Icon-svg{color:", ";}"], function (props) {
39
39
  return props.theme.colors.text.inverse;
40
- }, props.theme.colors.listItem.background.selected);
40
+ }, props.theme.colors.listItem.background.selected, function (props) {
41
+ return props.theme.colors.text.inverse;
42
+ });
41
43
  }, function (props) {
42
44
  return props.selected && !props.isCheckboxOrRadio && (0, _styledComponents.css)(["font-weight:", ";"], function (props) {
43
45
  return props.theme.fontWeights.semibold;
@@ -0,0 +1,569 @@
1
+ $dark: (
2
+ __esModule: true,
3
+ default: (
4
+ breakpoints: (900px, 1200px, 1500px, 1800px),
5
+ colors: (
6
+ app: (
7
+ background: (
8
+ base: #162020
9
+ )
10
+ ),
11
+ container: (
12
+ background: (
13
+ base: #273333,
14
+ success: #006b40,
15
+ warning: #944c0c,
16
+ error: #992222,
17
+ info: #0c5689,
18
+ opportunity: #5e4eba,
19
+ danger: #992222,
20
+ decorative: (
21
+ green: #006b40,
22
+ blue: #0c5689,
23
+ purple: #5e4eba,
24
+ yellow: #944c0c,
25
+ orange: #962c0b,
26
+ red: #992222,
27
+ neutral: #273333
28
+ ),
29
+ selected: #FFFFFF
30
+ ),
31
+ border: (
32
+ base: #040404,
33
+ success: #59cb59,
34
+ warning: #ffbc00,
35
+ error: #ed4c42,
36
+ danger: #ed4c42,
37
+ info: #2b87d3,
38
+ opportunity: #9180f4,
39
+ decorative: (
40
+ green: #59cb59,
41
+ blue: #2b87d3,
42
+ purple: #9180f4,
43
+ yellow: #ffbc00,
44
+ orange: #f57d33,
45
+ red: #ed4c42,
46
+ neutral: #929a9b
47
+ ),
48
+ selected: #FFFFFF
49
+ )
50
+ ),
51
+ button: (
52
+ primary: (
53
+ background: (
54
+ base: #56adf5,
55
+ hover: #a1d2f8,
56
+ active: #c7e4f9
57
+ ),
58
+ border: (
59
+ base: transparent
60
+ ),
61
+ text: (
62
+ base: #273333,
63
+ hover: #162020
64
+ )
65
+ ),
66
+ secondary: (
67
+ background: (
68
+ base: transparent,
69
+ hover: #f3f4f4,
70
+ active: #FFFFFF
71
+ ),
72
+ border: (
73
+ base: #FFFFFF
74
+ ),
75
+ text: (
76
+ base: #FFFFFF,
77
+ hover: #364141
78
+ )
79
+ ),
80
+ pill: (
81
+ background: (
82
+ base: transparent,
83
+ hover: #162020,
84
+ active: #273333
85
+ ),
86
+ border: (
87
+ base: transparent
88
+ ),
89
+ text: (
90
+ base: #f3f4f4,
91
+ hover: #FFFFFF
92
+ )
93
+ ),
94
+ destructive: (
95
+ background: (
96
+ base: #ff7f6e,
97
+ hover: #ff9c8f,
98
+ active: #ffb8b1
99
+ ),
100
+ border: (
101
+ base: transparent
102
+ ),
103
+ text: (
104
+ base: #273333,
105
+ hover: #162020
106
+ )
107
+ ),
108
+ placeholder: (
109
+ background: (
110
+ base: transparent,
111
+ hover: #040404,
112
+ active: #040404
113
+ ),
114
+ border: (
115
+ base: #929a9b
116
+ ),
117
+ text: (
118
+ base: #56adf5,
119
+ hover: #a1d2f8
120
+ )
121
+ ),
122
+ unstyled: (
123
+ background: (
124
+ base: transparent
125
+ ),
126
+ border: (
127
+ base: transparent
128
+ ),
129
+ text: (
130
+ base: #c8cccc,
131
+ hover: #dee1e1
132
+ )
133
+ )
134
+ ),
135
+ link: (
136
+ base: #56adf5,
137
+ hover: #a1d2f8
138
+ ),
139
+ text: (
140
+ headline: #FFFFFF,
141
+ subtext: #c8cccc,
142
+ body: #f3f4f4,
143
+ inverse: #273333,
144
+ error: #ff7f6e
145
+ ),
146
+ icon: (
147
+ base: #f3f4f4,
148
+ inverse: #273333,
149
+ success: #d7f4d7,
150
+ warning: #fdefcd,
151
+ error: #ffd5d2,
152
+ danger: #ffd5d2,
153
+ info: #dcf2ff,
154
+ opportunity: #eaeaf9
155
+ ),
156
+ form: (
157
+ background: (
158
+ base: #273333,
159
+ selected: #FFFFFF
160
+ ),
161
+ border: (
162
+ base: #929a9b,
163
+ error: #ed4c42,
164
+ warning: #ffbc00,
165
+ selected: #FFFFFF
166
+ ),
167
+ placeholder: (
168
+ base: #929a9b
169
+ )
170
+ ),
171
+ listItem: (
172
+ background: (
173
+ base: transparent,
174
+ hover: #364141,
175
+ selected: #FFFFFF
176
+ )
177
+ ),
178
+ network: (
179
+ twitter: #1da1f2,
180
+ twitter_like: #e0245e,
181
+ facebook: #217bee,
182
+ facebook_audience_network: #58409B,
183
+ linkedin: #0A66C2,
184
+ instagram: #e4405f,
185
+ feedly: #2bb24c,
186
+ analytics: #ef6c00,
187
+ youtube: #ff0000,
188
+ messenger: #0084ff,
189
+ snapchat: #fffc00,
190
+ pinterest: #E60023,
191
+ tumblr: #35465c,
192
+ reddit: #ff4500,
193
+ tripadvisor: #00B087,
194
+ glassdoor: #0CAA41,
195
+ google_my_business: #4285F4,
196
+ google_business_messages: #1A73EA,
197
+ salesforce: #1589EE,
198
+ zendesk: #03363D,
199
+ hubspot: #FF7A59,
200
+ microsoft_dynamics: #002050,
201
+ yelp: #FF1A1A,
202
+ whatsapp: #25D366,
203
+ tiktok: #000000
204
+ ),
205
+ neutral: (
206
+ 0: #FFFFFF,
207
+ 100: #f3f4f4,
208
+ 200: #dee1e1,
209
+ 300: #c8cccc,
210
+ 400: #b0b6b7,
211
+ 500: #929a9b,
212
+ 600: #6e797a,
213
+ 700: #515e5f,
214
+ 800: #364141,
215
+ 900: #273333,
216
+ 1000: #162020
217
+ ),
218
+ green: (
219
+ 0: #ebf9eb,
220
+ 100: #d7f4d7,
221
+ 200: #c2f2bd,
222
+ 300: #98e58e,
223
+ 400: #75dd66,
224
+ 500: #59cb59,
225
+ 600: #2bb656,
226
+ 700: #0ca750,
227
+ 800: #008b46,
228
+ 900: #006b40,
229
+ 1000: #08422f,
230
+ 1100: #002b20
231
+ ),
232
+ red: (
233
+ 0: #ffeae9,
234
+ 100: #ffd5d2,
235
+ 200: #ffb8b1,
236
+ 300: #ff9c8f,
237
+ 400: #ff7f6e,
238
+ 500: #f76054,
239
+ 600: #ed4c42,
240
+ 700: #db3e3e,
241
+ 800: #c63434,
242
+ 900: #992222,
243
+ 1000: #6d1313
244
+ ),
245
+ blue: (
246
+ 0: #e9f8ff,
247
+ 100: #dcf2ff,
248
+ 200: #c7e4f9,
249
+ 300: #a1d2f8,
250
+ 400: #56adf5,
251
+ 500: #3896e3,
252
+ 600: #2b87d3,
253
+ 700: #2079c3,
254
+ 800: #116daa,
255
+ 900: #0c5689,
256
+ 1000: #0a3960,
257
+ 1100: #002138
258
+ ),
259
+ teal: (
260
+ 0: #e5f9f5,
261
+ 100: #cdf7ef,
262
+ 200: #b3f2e6,
263
+ 300: #7dead5,
264
+ 400: #24e0c5,
265
+ 500: #08c4b2,
266
+ 600: #00a99c,
267
+ 700: #0b968f,
268
+ 800: #067c7c,
269
+ 900: #026661,
270
+ 1000: #083f3f,
271
+ 1100: #002528
272
+ ),
273
+ aqua: (
274
+ 0: #d9fcfb,
275
+ 100: #c5f9f9,
276
+ 200: #a5f2f2,
277
+ 300: #76e5e2,
278
+ 400: #33d6e2,
279
+ 500: #17b8ce,
280
+ 600: #0797ae,
281
+ 700: #0b8599,
282
+ 800: #0f6e84,
283
+ 900: #035e73,
284
+ 1000: #083d4f,
285
+ 1100: #002838
286
+ ),
287
+ purple: (
288
+ 0: #f2f2f9,
289
+ 100: #eaeaf9,
290
+ 200: #d8d7f9,
291
+ 300: #c1c1f7,
292
+ 400: #a193f2,
293
+ 500: #9180f4,
294
+ 600: #816fea,
295
+ 700: #6f5ed3,
296
+ 800: #5e4eba,
297
+ 900: #483a9c,
298
+ 1000: #2d246b,
299
+ 1100: #1d1d38
300
+ ),
301
+ magenta: (
302
+ 0: #fef0ff,
303
+ 100: #f9e3fc,
304
+ 200: #f4c4f7,
305
+ 300: #edadf2,
306
+ 400: #f282f5,
307
+ 500: #db61db,
308
+ 600: #c44eb9,
309
+ 700: #ac44a8,
310
+ 800: #8f3896,
311
+ 900: #6c2277,
312
+ 1000: #451551,
313
+ 1100: #29192d
314
+ ),
315
+ yellow: (
316
+ 0: #fff8e2,
317
+ 100: #fdefcd,
318
+ 200: #ffe99a,
319
+ 300: #ffe16e,
320
+ 400: #ffd943,
321
+ 500: #ffcd1c,
322
+ 600: #ffbc00,
323
+ 700: #dd9903,
324
+ 800: #ba7506,
325
+ 900: #944c0c,
326
+ 1000: #542a00,
327
+ 1100: #2d1a05
328
+ ),
329
+ pink: (
330
+ 0: #ffe9f3,
331
+ 100: #fcdbeb,
332
+ 200: #ffb5d5,
333
+ 300: #ff95c1,
334
+ 400: #ff76ae,
335
+ 500: #ef588b,
336
+ 600: #e0447c,
337
+ 700: #ce3665,
338
+ 800: #b22f5b,
339
+ 900: #931847,
340
+ 1000: #561231,
341
+ 1100: #2b1721
342
+ ),
343
+ orange: (
344
+ 0: #ffede3,
345
+ 100: #fcdccc,
346
+ 200: #ffc6a4,
347
+ 300: #ffb180,
348
+ 400: #ff9c5d,
349
+ 500: #fc8943,
350
+ 600: #f57d33,
351
+ 700: #ed7024,
352
+ 800: #ce5511,
353
+ 900: #962c0b,
354
+ 1000: #601700,
355
+ 1100: #2d130e
356
+ ),
357
+ DATAVIZ_COLORS_LIST: (#24e0c5, #a193f2, #ff76ae, #ffcd1c, #56adf5, #f282f5, #75dd66, #ff9c5d, #db3e3e, #0b968f, #6f5ed3, #ce3665, #ba7506, #2079c3, #ac44a8, #0ca750, #ed7024, #ff7f6e, #c2f2bd, #ffe99a),
358
+ DATAVIZ_COLORS_MAP: (
359
+ 1: #24e0c5,
360
+ 2: #a193f2,
361
+ 3: #ff76ae,
362
+ 4: #ffcd1c,
363
+ 5: #56adf5,
364
+ 6: #f282f5,
365
+ 7: #75dd66,
366
+ 8: #ff9c5d,
367
+ 9: #db3e3e,
368
+ 10: #0b968f,
369
+ 11: #6f5ed3,
370
+ 12: #ce3665,
371
+ 13: #ba7506,
372
+ 14: #2079c3,
373
+ 15: #ac44a8,
374
+ 16: #0ca750,
375
+ 17: #ed7024,
376
+ 18: #ff7f6e,
377
+ 19: #c2f2bd,
378
+ 20: #ffe99a
379
+ )
380
+ ),
381
+ typography: (
382
+ 100: (
383
+ fontSize: 11px,
384
+ lineHeight: 18.666666666666668px
385
+ ),
386
+ 200: (
387
+ fontSize: 13px,
388
+ lineHeight: 21.333333333333332px
389
+ ),
390
+ 300: (
391
+ fontSize: 16px,
392
+ lineHeight: 24px
393
+ ),
394
+ 400: (
395
+ fontSize: 18px,
396
+ lineHeight: 26.666666666666668px
397
+ ),
398
+ 500: (
399
+ fontSize: 21px,
400
+ lineHeight: 29.333333333333332px
401
+ ),
402
+ 600: (
403
+ fontSize: 24px,
404
+ lineHeight: 32px
405
+ ),
406
+ 700: (
407
+ fontSize: 32px,
408
+ lineHeight: 40px
409
+ ),
410
+ 800: (
411
+ fontSize: 43px,
412
+ lineHeight: 50.666666666666664px
413
+ ),
414
+ 900: (
415
+ fontSize: 57px,
416
+ lineHeight: 64px
417
+ ),
418
+ 1000: (
419
+ fontSize: 76px,
420
+ lineHeight: 80px
421
+ ),
422
+ 1100: (
423
+ fontSize: 101px,
424
+ lineHeight: 101.33333333333333px
425
+ ),
426
+ 1200: (
427
+ fontSize: 135px,
428
+ lineHeight: 125.33333333333333px
429
+ ),
430
+ typography: (
431
+ 100: (
432
+ fontSize: 11px,
433
+ lineHeight: 18.666666666666668px
434
+ ),
435
+ 200: (
436
+ fontSize: 13px,
437
+ lineHeight: 21.333333333333332px
438
+ ),
439
+ 300: (
440
+ fontSize: 16px,
441
+ lineHeight: 24px
442
+ ),
443
+ 400: (
444
+ fontSize: 18px,
445
+ lineHeight: 26.666666666666668px
446
+ ),
447
+ 500: (
448
+ fontSize: 21px,
449
+ lineHeight: 29.333333333333332px
450
+ ),
451
+ 600: (
452
+ fontSize: 24px,
453
+ lineHeight: 32px
454
+ ),
455
+ 700: (
456
+ fontSize: 32px,
457
+ lineHeight: 40px
458
+ ),
459
+ 800: (
460
+ fontSize: 43px,
461
+ lineHeight: 50.666666666666664px
462
+ ),
463
+ 900: (
464
+ fontSize: 57px,
465
+ lineHeight: 64px
466
+ ),
467
+ 1000: (
468
+ fontSize: 76px,
469
+ lineHeight: 80px
470
+ ),
471
+ 1100: (
472
+ fontSize: 101px,
473
+ lineHeight: 101.33333333333333px
474
+ ),
475
+ 1200: (
476
+ fontSize: 135px,
477
+ lineHeight: 125.33333333333333px
478
+ )
479
+ )
480
+ ),
481
+ fontFamily: "system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif",
482
+ fontWeights: (
483
+ normal: 400,
484
+ semibold: 600,
485
+ bold: 700,
486
+ extrabold: 800
487
+ ),
488
+ space: (
489
+ 0: 0px,
490
+ 100: 2px,
491
+ 200: 4px,
492
+ 300: 8px,
493
+ 350: 12px,
494
+ 400: 16px,
495
+ 450: 24px,
496
+ 500: 32px,
497
+ 600: 40px,
498
+ space: (
499
+ 0: 0px,
500
+ 100: 2px,
501
+ 200: 4px,
502
+ 300: 8px,
503
+ 350: 12px,
504
+ 400: 16px,
505
+ 450: 24px,
506
+ 500: 32px,
507
+ 600: 40px
508
+ ),
509
+ -space: (
510
+ 0: -0px,
511
+ 100: -2px,
512
+ 200: -4px,
513
+ 300: -8px,
514
+ 350: -12px,
515
+ 400: -16px,
516
+ 450: -24px,
517
+ 500: -32px,
518
+ 600: -40px
519
+ )
520
+ ),
521
+ radii: (
522
+ 400: 4px,
523
+ 500: 6px,
524
+ 600: 8px,
525
+ 1000: 999999px,
526
+ inner: 6px,
527
+ outer: 8px,
528
+ pill: 999999px,
529
+ radii: (
530
+ 400: 4px,
531
+ 500: 6px,
532
+ 600: 8px,
533
+ 1000: 999999px,
534
+ inner: 6px,
535
+ outer: 8px,
536
+ pill: 999999px
537
+ )
538
+ ),
539
+ borders: (
540
+ 500: 1px solid
541
+ ),
542
+ borderWidths: (
543
+ 500: 1px
544
+ ),
545
+ shadows: (
546
+ 100: 0px 2px 4px rgba(39,51,51,.24),
547
+ 200: 0px 4px 8px rgba(39,51,51,.24),
548
+ 300: 0px 8px 16px rgba(39,51,51,.24),
549
+ 400: 0px 16px 32px rgba(39,51,51,.24),
550
+ shadows: (
551
+ 100: 0px 2px 4px rgba(39,51,51,.24),
552
+ 200: 0px 4px 8px rgba(39,51,51,.24),
553
+ 300: 0px 8px 16px rgba(39,51,51,.24),
554
+ 400: 0px 16px 32px rgba(39,51,51,.24)
555
+ )
556
+ ),
557
+ easing: (
558
+ ease_in: cubic-bezier(.4, 0, .7, .2),
559
+ ease_out: cubic-bezier(0, 0, .2, 1),
560
+ ease_inout: cubic-bezier(.4, 0, .2, 1)
561
+ ),
562
+ duration: (
563
+ fast: .15s,
564
+ medium: .3s,
565
+ slow: .6s
566
+ ),
567
+ mode: dark
568
+ )
569
+ );