@shipfox/react-ui 0.25.0 → 0.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/dist/components/index.d.ts +1 -0
  2. package/dist/components/index.js +1 -0
  3. package/dist/components/slider/index.d.ts +2 -0
  4. package/dist/components/slider/index.js +3 -0
  5. package/dist/components/slider/slider.d.ts +10 -0
  6. package/dist/components/slider/slider.js +38 -0
  7. package/dist/styles.css +1 -1
  8. package/package.json +4 -4
  9. package/dist/colors.stories.js +0 -61
  10. package/dist/components/alert/alert.stories.js +0 -227
  11. package/dist/components/avatar/avatar.stories.js +0 -267
  12. package/dist/components/badge/badge.stories.js +0 -802
  13. package/dist/components/button/button-link.stories.js +0 -127
  14. package/dist/components/button/button.stories.js +0 -187
  15. package/dist/components/button/icon-button.stories.js +0 -344
  16. package/dist/components/button-group/button-group.stories.js +0 -644
  17. package/dist/components/card/card.stories.js +0 -216
  18. package/dist/components/checkbox/checkbox.stories.js +0 -566
  19. package/dist/components/code-block/code-block.stories.js +0 -341
  20. package/dist/components/combobox/combobox.stories.js +0 -191
  21. package/dist/components/command/command.stories.js +0 -228
  22. package/dist/components/confetti/confetti.stories.js +0 -41
  23. package/dist/components/count-up/count-up.stories.js +0 -568
  24. package/dist/components/dashboard/components/charts/bar-chart.stories.js +0 -287
  25. package/dist/components/dashboard/components/charts/line-chart.stories.js +0 -257
  26. package/dist/components/dashboard/dashboard.stories.js +0 -23
  27. package/dist/components/date-picker/date-picker.stories.js +0 -349
  28. package/dist/components/dropdown-input/dropdown-input.stories.js +0 -240
  29. package/dist/components/dropdown-menu/dropdown-menu.stories.js +0 -462
  30. package/dist/components/dynamic-item/dynamic-item.stories.js +0 -385
  31. package/dist/components/empty-state/empty-state.stories.js +0 -74
  32. package/dist/components/form/form.stories.js +0 -587
  33. package/dist/components/icon/icon.stories.js +0 -38
  34. package/dist/components/inline-tips/inline-tips.stories.js +0 -219
  35. package/dist/components/input/input.stories.js +0 -265
  36. package/dist/components/interval-selector/interval-selector.stories.js +0 -232
  37. package/dist/components/item/item.stories.js +0 -239
  38. package/dist/components/kbd/kbd.stories.js +0 -119
  39. package/dist/components/label/label.stories.js +0 -105
  40. package/dist/components/modal/modal.stories.js +0 -566
  41. package/dist/components/search/search.stories.js +0 -630
  42. package/dist/components/select/select.stories.js +0 -393
  43. package/dist/components/sheet/sheet.stories.js +0 -368
  44. package/dist/components/skeleton/skeleton.stories.js +0 -345
  45. package/dist/components/table/table.stories.js +0 -302
  46. package/dist/components/tabs/tabs.stories.js +0 -179
  47. package/dist/components/textarea/textarea.stories.js +0 -339
  48. package/dist/components/toast/toast.stories.js +0 -326
  49. package/dist/components/tooltip/tooltip.stories.js +0 -560
  50. package/dist/components/typography/code.stories.js +0 -54
  51. package/dist/components/typography/header.stories.js +0 -34
  52. package/dist/components/typography/text.stories.js +0 -105
  53. package/dist/onboarding/sign-in.stories.js +0 -101
@@ -1,630 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { useState } from 'react';
3
- import { Icon } from '../icon/index.js';
4
- import { Search, SearchContent, SearchEmpty, SearchFooter, SearchGroup, SearchInline, SearchInput, SearchItem, SearchList, SearchSeparator, SearchTrigger } from './index.js';
5
- const meta = {
6
- title: 'Components/Search',
7
- tags: [
8
- 'autodocs'
9
- ],
10
- parameters: {
11
- docs: {
12
- description: {
13
- component: 'A search component with two types: inline (input-style) and modal (trigger + overlay). Supports primary/secondary variants, base/small sizes, and squared/rounded radius options.'
14
- }
15
- }
16
- }
17
- };
18
- export default meta;
19
- export const Inline = {
20
- render: ()=>{
21
- function InlineDemo() {
22
- const [value, setValue] = useState('');
23
- return /*#__PURE__*/ _jsxs("div", {
24
- className: "flex flex-col gap-16 max-w-400",
25
- children: [
26
- /*#__PURE__*/ _jsx(SearchInline, {
27
- placeholder: "Search...",
28
- value: value,
29
- onChange: (e)=>setValue(e.target.value),
30
- onClear: ()=>setValue('')
31
- }),
32
- value && /*#__PURE__*/ _jsxs("p", {
33
- className: "text-sm text-foreground-neutral-muted",
34
- children: [
35
- 'Searching for: "',
36
- value,
37
- '"'
38
- ]
39
- })
40
- ]
41
- });
42
- }
43
- return /*#__PURE__*/ _jsx(InlineDemo, {});
44
- }
45
- };
46
- export const InlineVariants = {
47
- render: ()=>/*#__PURE__*/ _jsxs("div", {
48
- className: "flex flex-col gap-16",
49
- children: [
50
- /*#__PURE__*/ _jsxs("div", {
51
- className: "flex flex-col gap-8",
52
- children: [
53
- /*#__PURE__*/ _jsx("span", {
54
- className: "text-xs text-foreground-neutral-muted",
55
- children: "Primary (default)"
56
- }),
57
- /*#__PURE__*/ _jsxs("div", {
58
- className: "flex gap-8",
59
- children: [
60
- /*#__PURE__*/ _jsx(SearchInline, {
61
- variant: "primary",
62
- radius: "squared",
63
- placeholder: "Search...",
64
- defaultValue: "random",
65
- className: "w-200"
66
- }),
67
- /*#__PURE__*/ _jsx(SearchInline, {
68
- variant: "primary",
69
- radius: "rounded",
70
- placeholder: "Search...",
71
- defaultValue: "random",
72
- className: "w-200"
73
- })
74
- ]
75
- })
76
- ]
77
- }),
78
- /*#__PURE__*/ _jsxs("div", {
79
- className: "flex flex-col gap-8",
80
- children: [
81
- /*#__PURE__*/ _jsx("span", {
82
- className: "text-xs text-foreground-neutral-muted",
83
- children: "Secondary"
84
- }),
85
- /*#__PURE__*/ _jsxs("div", {
86
- className: "flex gap-8",
87
- children: [
88
- /*#__PURE__*/ _jsx(SearchInline, {
89
- variant: "secondary",
90
- radius: "squared",
91
- placeholder: "Search...",
92
- defaultValue: "random",
93
- className: "w-200"
94
- }),
95
- /*#__PURE__*/ _jsx(SearchInline, {
96
- variant: "secondary",
97
- radius: "rounded",
98
- placeholder: "Search...",
99
- defaultValue: "random",
100
- className: "w-200"
101
- })
102
- ]
103
- })
104
- ]
105
- })
106
- ]
107
- })
108
- };
109
- export const InlineSizes = {
110
- render: ()=>/*#__PURE__*/ _jsxs("div", {
111
- className: "flex flex-col gap-16",
112
- children: [
113
- /*#__PURE__*/ _jsxs("div", {
114
- className: "flex flex-col gap-8",
115
- children: [
116
- /*#__PURE__*/ _jsx("span", {
117
- className: "text-xs text-foreground-neutral-muted",
118
- children: "Base (32px)"
119
- }),
120
- /*#__PURE__*/ _jsx("div", {
121
- className: "flex gap-8",
122
- children: /*#__PURE__*/ _jsx(SearchInline, {
123
- size: "base",
124
- placeholder: "Search...",
125
- defaultValue: "random",
126
- className: "w-200"
127
- })
128
- })
129
- ]
130
- }),
131
- /*#__PURE__*/ _jsxs("div", {
132
- className: "flex flex-col gap-8",
133
- children: [
134
- /*#__PURE__*/ _jsx("span", {
135
- className: "text-xs text-foreground-neutral-muted",
136
- children: "Small (28px)"
137
- }),
138
- /*#__PURE__*/ _jsx("div", {
139
- className: "flex gap-8",
140
- children: /*#__PURE__*/ _jsx(SearchInline, {
141
- size: "small",
142
- placeholder: "Search...",
143
- defaultValue: "random",
144
- className: "w-200"
145
- })
146
- })
147
- ]
148
- })
149
- ]
150
- })
151
- };
152
- function ModalSearchDemo() {
153
- const [open, setOpen] = useState(false);
154
- return /*#__PURE__*/ _jsxs(Search, {
155
- open: open,
156
- onOpenChange: setOpen,
157
- shortcutKey: "meta+k",
158
- children: [
159
- /*#__PURE__*/ _jsx(SearchTrigger, {
160
- placeholder: "Find...",
161
- className: "w-full max-w-280"
162
- }),
163
- /*#__PURE__*/ _jsxs(SearchContent, {
164
- "aria-describedby": undefined,
165
- children: [
166
- /*#__PURE__*/ _jsx(SearchInput, {
167
- placeholder: "Search for anything..."
168
- }),
169
- /*#__PURE__*/ _jsxs(SearchList, {
170
- children: [
171
- /*#__PURE__*/ _jsx(SearchEmpty, {
172
- children: "No results found."
173
- }),
174
- /*#__PURE__*/ _jsxs(SearchGroup, {
175
- heading: "Recent",
176
- children: [
177
- /*#__PURE__*/ _jsx(SearchItem, {
178
- icon: /*#__PURE__*/ _jsx(Icon, {
179
- name: "gitBranchLine",
180
- className: "size-16 text-foreground-neutral-subtle"
181
- }),
182
- description: "qr-attendance",
183
- children: "feat/data-processing"
184
- }),
185
- /*#__PURE__*/ _jsx(SearchItem, {
186
- icon: /*#__PURE__*/ _jsx(Icon, {
187
- name: "gitBranchLine",
188
- className: "size-16 text-foreground-neutral-subtle"
189
- }),
190
- description: "qr-attendance",
191
- children: "feat/pagination-polling"
192
- })
193
- ]
194
- }),
195
- /*#__PURE__*/ _jsx(SearchSeparator, {}),
196
- /*#__PURE__*/ _jsxs(SearchGroup, {
197
- heading: "Team",
198
- children: [
199
- /*#__PURE__*/ _jsx(SearchItem, {
200
- icon: /*#__PURE__*/ _jsx(Icon, {
201
- name: "rocketLine",
202
- className: "size-16 text-foreground-neutral-subtle"
203
- }),
204
- description: "Team",
205
- children: "Deployments"
206
- }),
207
- /*#__PURE__*/ _jsx(SearchItem, {
208
- icon: /*#__PURE__*/ _jsx(Icon, {
209
- name: "linksLine",
210
- className: "size-16 text-foreground-neutral-subtle"
211
- }),
212
- description: "Team",
213
- children: "Integrations"
214
- })
215
- ]
216
- })
217
- ]
218
- }),
219
- /*#__PURE__*/ _jsx(SearchFooter, {})
220
- ]
221
- })
222
- ]
223
- });
224
- }
225
- export const Modal = {
226
- render: ()=>/*#__PURE__*/ _jsx(ModalSearchDemo, {})
227
- };
228
- function TriggerPreview({ variant, size, radius, className }) {
229
- return /*#__PURE__*/ _jsx(Search, {
230
- children: /*#__PURE__*/ _jsx(SearchTrigger, {
231
- variant: variant,
232
- size: size,
233
- radius: radius,
234
- className: className
235
- })
236
- });
237
- }
238
- export const ModalTriggerVariants = {
239
- render: ()=>/*#__PURE__*/ _jsxs("div", {
240
- className: "flex flex-col gap-16",
241
- children: [
242
- /*#__PURE__*/ _jsxs("div", {
243
- className: "flex flex-col gap-8",
244
- children: [
245
- /*#__PURE__*/ _jsx("span", {
246
- className: "text-xs text-foreground-neutral-muted",
247
- children: "Primary (default)"
248
- }),
249
- /*#__PURE__*/ _jsxs("div", {
250
- className: "flex gap-8",
251
- children: [
252
- /*#__PURE__*/ _jsx(TriggerPreview, {
253
- variant: "primary",
254
- radius: "squared",
255
- className: "w-200"
256
- }),
257
- /*#__PURE__*/ _jsx(TriggerPreview, {
258
- variant: "primary",
259
- radius: "rounded",
260
- className: "w-200"
261
- })
262
- ]
263
- })
264
- ]
265
- }),
266
- /*#__PURE__*/ _jsxs("div", {
267
- className: "flex flex-col gap-8",
268
- children: [
269
- /*#__PURE__*/ _jsx("span", {
270
- className: "text-xs text-foreground-neutral-muted",
271
- children: "Secondary"
272
- }),
273
- /*#__PURE__*/ _jsxs("div", {
274
- className: "flex gap-8",
275
- children: [
276
- /*#__PURE__*/ _jsx(TriggerPreview, {
277
- variant: "secondary",
278
- radius: "squared",
279
- className: "w-200"
280
- }),
281
- /*#__PURE__*/ _jsx(TriggerPreview, {
282
- variant: "secondary",
283
- radius: "rounded",
284
- className: "w-200"
285
- })
286
- ]
287
- })
288
- ]
289
- })
290
- ]
291
- })
292
- };
293
- export const ModalTriggerSizes = {
294
- render: ()=>/*#__PURE__*/ _jsxs("div", {
295
- className: "flex flex-col gap-16",
296
- children: [
297
- /*#__PURE__*/ _jsxs("div", {
298
- className: "flex flex-col gap-8",
299
- children: [
300
- /*#__PURE__*/ _jsx("span", {
301
- className: "text-xs text-foreground-neutral-muted",
302
- children: "Base (32px)"
303
- }),
304
- /*#__PURE__*/ _jsxs("div", {
305
- className: "flex gap-8",
306
- children: [
307
- /*#__PURE__*/ _jsx(TriggerPreview, {
308
- size: "base",
309
- variant: "primary",
310
- className: "w-200"
311
- }),
312
- /*#__PURE__*/ _jsx(TriggerPreview, {
313
- size: "base",
314
- variant: "secondary",
315
- className: "w-200"
316
- })
317
- ]
318
- })
319
- ]
320
- }),
321
- /*#__PURE__*/ _jsxs("div", {
322
- className: "flex flex-col gap-8",
323
- children: [
324
- /*#__PURE__*/ _jsx("span", {
325
- className: "text-xs text-foreground-neutral-muted",
326
- children: "Small (28px)"
327
- }),
328
- /*#__PURE__*/ _jsxs("div", {
329
- className: "flex gap-8",
330
- children: [
331
- /*#__PURE__*/ _jsx(TriggerPreview, {
332
- size: "small",
333
- variant: "primary",
334
- className: "w-200"
335
- }),
336
- /*#__PURE__*/ _jsx(TriggerPreview, {
337
- size: "small",
338
- variant: "secondary",
339
- className: "w-200"
340
- })
341
- ]
342
- })
343
- ]
344
- })
345
- ]
346
- })
347
- };
348
- export const AllCombinations = {
349
- render: ()=>/*#__PURE__*/ _jsxs("div", {
350
- className: "flex flex-col gap-24",
351
- children: [
352
- /*#__PURE__*/ _jsxs("div", {
353
- children: [
354
- /*#__PURE__*/ _jsx("h3", {
355
- className: "text-sm font-medium text-foreground-neutral-base mb-12",
356
- children: "Inline Search"
357
- }),
358
- /*#__PURE__*/ _jsxs("div", {
359
- className: "grid grid-cols-4 gap-12",
360
- children: [
361
- /*#__PURE__*/ _jsxs("div", {
362
- className: "flex flex-col gap-4",
363
- children: [
364
- /*#__PURE__*/ _jsx("span", {
365
- className: "text-xs text-foreground-neutral-muted",
366
- children: "Primary / Squared / Base"
367
- }),
368
- /*#__PURE__*/ _jsx(SearchInline, {
369
- variant: "primary",
370
- radius: "squared",
371
- size: "base",
372
- placeholder: "Search...",
373
- className: "w-full"
374
- })
375
- ]
376
- }),
377
- /*#__PURE__*/ _jsxs("div", {
378
- className: "flex flex-col gap-4",
379
- children: [
380
- /*#__PURE__*/ _jsx("span", {
381
- className: "text-xs text-foreground-neutral-muted",
382
- children: "Primary / Squared / Small"
383
- }),
384
- /*#__PURE__*/ _jsx(SearchInline, {
385
- variant: "primary",
386
- radius: "squared",
387
- size: "small",
388
- placeholder: "Search...",
389
- className: "w-full"
390
- })
391
- ]
392
- }),
393
- /*#__PURE__*/ _jsxs("div", {
394
- className: "flex flex-col gap-4",
395
- children: [
396
- /*#__PURE__*/ _jsx("span", {
397
- className: "text-xs text-foreground-neutral-muted",
398
- children: "Primary / Rounded / Base"
399
- }),
400
- /*#__PURE__*/ _jsx(SearchInline, {
401
- variant: "primary",
402
- radius: "rounded",
403
- size: "base",
404
- placeholder: "Search...",
405
- className: "w-full"
406
- })
407
- ]
408
- }),
409
- /*#__PURE__*/ _jsxs("div", {
410
- className: "flex flex-col gap-4",
411
- children: [
412
- /*#__PURE__*/ _jsx("span", {
413
- className: "text-xs text-foreground-neutral-muted",
414
- children: "Primary / Rounded / Small"
415
- }),
416
- /*#__PURE__*/ _jsx(SearchInline, {
417
- variant: "primary",
418
- radius: "rounded",
419
- size: "small",
420
- placeholder: "Search...",
421
- className: "w-full"
422
- })
423
- ]
424
- }),
425
- /*#__PURE__*/ _jsxs("div", {
426
- className: "flex flex-col gap-4",
427
- children: [
428
- /*#__PURE__*/ _jsx("span", {
429
- className: "text-xs text-foreground-neutral-muted",
430
- children: "Secondary / Squared / Base"
431
- }),
432
- /*#__PURE__*/ _jsx(SearchInline, {
433
- variant: "secondary",
434
- radius: "squared",
435
- size: "base",
436
- placeholder: "Search...",
437
- className: "w-full"
438
- })
439
- ]
440
- }),
441
- /*#__PURE__*/ _jsxs("div", {
442
- className: "flex flex-col gap-4",
443
- children: [
444
- /*#__PURE__*/ _jsx("span", {
445
- className: "text-xs text-foreground-neutral-muted",
446
- children: "Secondary / Squared / Small"
447
- }),
448
- /*#__PURE__*/ _jsx(SearchInline, {
449
- variant: "secondary",
450
- radius: "squared",
451
- size: "small",
452
- placeholder: "Search...",
453
- className: "w-full"
454
- })
455
- ]
456
- }),
457
- /*#__PURE__*/ _jsxs("div", {
458
- className: "flex flex-col gap-4",
459
- children: [
460
- /*#__PURE__*/ _jsx("span", {
461
- className: "text-xs text-foreground-neutral-muted",
462
- children: "Secondary / Rounded / Base"
463
- }),
464
- /*#__PURE__*/ _jsx(SearchInline, {
465
- variant: "secondary",
466
- radius: "rounded",
467
- size: "base",
468
- placeholder: "Search...",
469
- className: "w-full"
470
- })
471
- ]
472
- }),
473
- /*#__PURE__*/ _jsxs("div", {
474
- className: "flex flex-col gap-4",
475
- children: [
476
- /*#__PURE__*/ _jsx("span", {
477
- className: "text-xs text-foreground-neutral-muted",
478
- children: "Secondary / Rounded / Small"
479
- }),
480
- /*#__PURE__*/ _jsx(SearchInline, {
481
- variant: "secondary",
482
- radius: "rounded",
483
- size: "small",
484
- placeholder: "Search...",
485
- className: "w-full"
486
- })
487
- ]
488
- })
489
- ]
490
- })
491
- ]
492
- }),
493
- /*#__PURE__*/ _jsxs("div", {
494
- children: [
495
- /*#__PURE__*/ _jsx("h3", {
496
- className: "text-sm font-medium text-foreground-neutral-base mb-12",
497
- children: "Modal Search Triggers"
498
- }),
499
- /*#__PURE__*/ _jsxs("div", {
500
- className: "grid grid-cols-4 gap-12",
501
- children: [
502
- /*#__PURE__*/ _jsxs("div", {
503
- className: "flex flex-col gap-4",
504
- children: [
505
- /*#__PURE__*/ _jsx("span", {
506
- className: "text-xs text-foreground-neutral-muted",
507
- children: "Primary / Squared / Base"
508
- }),
509
- /*#__PURE__*/ _jsx(TriggerPreview, {
510
- variant: "primary",
511
- radius: "squared",
512
- size: "base",
513
- className: "w-full"
514
- })
515
- ]
516
- }),
517
- /*#__PURE__*/ _jsxs("div", {
518
- className: "flex flex-col gap-4",
519
- children: [
520
- /*#__PURE__*/ _jsx("span", {
521
- className: "text-xs text-foreground-neutral-muted",
522
- children: "Primary / Squared / Small"
523
- }),
524
- /*#__PURE__*/ _jsx(TriggerPreview, {
525
- variant: "primary",
526
- radius: "squared",
527
- size: "small",
528
- className: "w-full"
529
- })
530
- ]
531
- }),
532
- /*#__PURE__*/ _jsxs("div", {
533
- className: "flex flex-col gap-4",
534
- children: [
535
- /*#__PURE__*/ _jsx("span", {
536
- className: "text-xs text-foreground-neutral-muted",
537
- children: "Primary / Rounded / Base"
538
- }),
539
- /*#__PURE__*/ _jsx(TriggerPreview, {
540
- variant: "primary",
541
- radius: "rounded",
542
- size: "base",
543
- className: "w-full"
544
- })
545
- ]
546
- }),
547
- /*#__PURE__*/ _jsxs("div", {
548
- className: "flex flex-col gap-4",
549
- children: [
550
- /*#__PURE__*/ _jsx("span", {
551
- className: "text-xs text-foreground-neutral-muted",
552
- children: "Primary / Rounded / Small"
553
- }),
554
- /*#__PURE__*/ _jsx(TriggerPreview, {
555
- variant: "primary",
556
- radius: "rounded",
557
- size: "small",
558
- className: "w-full"
559
- })
560
- ]
561
- }),
562
- /*#__PURE__*/ _jsxs("div", {
563
- className: "flex flex-col gap-4",
564
- children: [
565
- /*#__PURE__*/ _jsx("span", {
566
- className: "text-xs text-foreground-neutral-muted",
567
- children: "Secondary / Squared / Base"
568
- }),
569
- /*#__PURE__*/ _jsx(TriggerPreview, {
570
- variant: "secondary",
571
- radius: "squared",
572
- size: "base",
573
- className: "w-full"
574
- })
575
- ]
576
- }),
577
- /*#__PURE__*/ _jsxs("div", {
578
- className: "flex flex-col gap-4",
579
- children: [
580
- /*#__PURE__*/ _jsx("span", {
581
- className: "text-xs text-foreground-neutral-muted",
582
- children: "Secondary / Squared / Small"
583
- }),
584
- /*#__PURE__*/ _jsx(TriggerPreview, {
585
- variant: "secondary",
586
- radius: "squared",
587
- size: "small",
588
- className: "w-full"
589
- })
590
- ]
591
- }),
592
- /*#__PURE__*/ _jsxs("div", {
593
- className: "flex flex-col gap-4",
594
- children: [
595
- /*#__PURE__*/ _jsx("span", {
596
- className: "text-xs text-foreground-neutral-muted",
597
- children: "Secondary / Rounded / Base"
598
- }),
599
- /*#__PURE__*/ _jsx(TriggerPreview, {
600
- variant: "secondary",
601
- radius: "rounded",
602
- size: "base",
603
- className: "w-full"
604
- })
605
- ]
606
- }),
607
- /*#__PURE__*/ _jsxs("div", {
608
- className: "flex flex-col gap-4",
609
- children: [
610
- /*#__PURE__*/ _jsx("span", {
611
- className: "text-xs text-foreground-neutral-muted",
612
- children: "Secondary / Rounded / Small"
613
- }),
614
- /*#__PURE__*/ _jsx(TriggerPreview, {
615
- variant: "secondary",
616
- radius: "rounded",
617
- size: "small",
618
- className: "w-full"
619
- })
620
- ]
621
- })
622
- ]
623
- })
624
- ]
625
- })
626
- ]
627
- })
628
- };
629
-
630
- //# sourceMappingURL=search.stories.js.map