@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,560 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Code } from '../../components/typography/index.js';
3
- import { Button } from '../button/index.js';
4
- import { Tooltip, TooltipContent, TooltipTrigger } from './tooltip.js';
5
- const meta = {
6
- title: 'Components/Tooltip',
7
- component: Tooltip,
8
- tags: [
9
- 'autodocs'
10
- ],
11
- argTypes: {
12
- defaultOpen: {
13
- control: 'boolean'
14
- },
15
- delayDuration: {
16
- control: 'number'
17
- },
18
- variant: {
19
- control: 'select',
20
- options: [
21
- 'default',
22
- 'inverted',
23
- 'muted'
24
- ]
25
- },
26
- size: {
27
- control: 'select',
28
- options: [
29
- 'sm',
30
- 'md',
31
- 'lg'
32
- ]
33
- },
34
- side: {
35
- control: 'select',
36
- options: [
37
- 'top',
38
- 'bottom',
39
- 'left',
40
- 'right'
41
- ]
42
- },
43
- align: {
44
- control: 'select',
45
- options: [
46
- 'start',
47
- 'center',
48
- 'end'
49
- ]
50
- },
51
- sideOffset: {
52
- control: 'number'
53
- },
54
- animated: {
55
- control: 'boolean'
56
- }
57
- },
58
- args: {
59
- defaultOpen: false,
60
- delayDuration: 0,
61
- variant: 'default',
62
- size: 'md',
63
- side: 'top',
64
- align: 'center',
65
- sideOffset: 8,
66
- animated: true
67
- }
68
- };
69
- export default meta;
70
- export const Default = {
71
- args: {
72
- defaultOpen: false
73
- },
74
- render: (args)=>{
75
- const { defaultOpen, delayDuration, variant, size, side, align, sideOffset, animated } = args;
76
- return /*#__PURE__*/ _jsx("div", {
77
- className: "flex items-center justify-center p-64",
78
- children: /*#__PURE__*/ _jsxs(Tooltip, {
79
- defaultOpen: defaultOpen,
80
- delayDuration: delayDuration,
81
- children: [
82
- /*#__PURE__*/ _jsx(TooltipTrigger, {
83
- asChild: true,
84
- children: /*#__PURE__*/ _jsx(Button, {
85
- children: "Hover me"
86
- })
87
- }),
88
- /*#__PURE__*/ _jsx(TooltipContent, {
89
- variant: variant,
90
- size: size,
91
- side: side,
92
- align: align,
93
- sideOffset: sideOffset,
94
- animated: animated,
95
- children: "Tooltip Text"
96
- })
97
- ]
98
- })
99
- });
100
- }
101
- };
102
- export const Types = {
103
- render: ()=>/*#__PURE__*/ _jsxs("div", {
104
- className: "flex flex-col gap-64 p-64",
105
- children: [
106
- /*#__PURE__*/ _jsx(Code, {
107
- variant: "label",
108
- className: "text-foreground-neutral-subtle",
109
- children: "TYPES"
110
- }),
111
- /*#__PURE__*/ _jsxs("div", {
112
- className: "flex flex-col gap-32",
113
- children: [
114
- /*#__PURE__*/ _jsxs("div", {
115
- className: "flex flex-col gap-16",
116
- children: [
117
- /*#__PURE__*/ _jsx(Code, {
118
- variant: "label",
119
- className: "text-foreground-neutral-subtle",
120
- children: "Type=Text"
121
- }),
122
- /*#__PURE__*/ _jsxs("div", {
123
- className: "flex gap-16",
124
- children: [
125
- /*#__PURE__*/ _jsxs(Tooltip, {
126
- children: [
127
- /*#__PURE__*/ _jsx(TooltipTrigger, {
128
- asChild: true,
129
- children: /*#__PURE__*/ _jsx(Button, {
130
- variant: "primary",
131
- children: "Tooltip Text"
132
- })
133
- }),
134
- /*#__PURE__*/ _jsx(TooltipContent, {
135
- variant: "inverted",
136
- children: "Tooltip Text"
137
- })
138
- ]
139
- }),
140
- /*#__PURE__*/ _jsxs(Tooltip, {
141
- children: [
142
- /*#__PURE__*/ _jsx(TooltipTrigger, {
143
- asChild: true,
144
- children: /*#__PURE__*/ _jsx(Button, {
145
- variant: "secondary",
146
- children: "Tooltip Text"
147
- })
148
- }),
149
- /*#__PURE__*/ _jsx(TooltipContent, {
150
- children: "Tooltip Text"
151
- })
152
- ]
153
- })
154
- ]
155
- })
156
- ]
157
- }),
158
- /*#__PURE__*/ _jsxs("div", {
159
- className: "flex flex-col gap-16",
160
- children: [
161
- /*#__PURE__*/ _jsx(Code, {
162
- variant: "label",
163
- className: "text-foreground-neutral-subtle",
164
- children: "Type=Shortcut"
165
- }),
166
- /*#__PURE__*/ _jsxs("div", {
167
- className: "flex gap-16",
168
- children: [
169
- /*#__PURE__*/ _jsxs(Tooltip, {
170
- children: [
171
- /*#__PURE__*/ _jsx(TooltipTrigger, {
172
- asChild: true,
173
- children: /*#__PURE__*/ _jsx(Button, {
174
- variant: "primary",
175
- children: "Tooltip Text"
176
- })
177
- }),
178
- /*#__PURE__*/ _jsx(TooltipContent, {
179
- variant: "inverted",
180
- children: /*#__PURE__*/ _jsxs("div", {
181
- className: "flex items-center gap-6",
182
- children: [
183
- /*#__PURE__*/ _jsx("span", {
184
- children: "Tooltip Text"
185
- }),
186
- /*#__PURE__*/ _jsxs("div", {
187
- className: "flex items-center gap-4",
188
- children: [
189
- /*#__PURE__*/ _jsx("kbd", {
190
- className: "flex h-16 w-16 items-center justify-center rounded-4 border border-border-neutral-base bg-background-field-base text-sm text-foreground-neutral-subtle",
191
- children: "⌘"
192
- }),
193
- /*#__PURE__*/ _jsx("kbd", {
194
- className: "flex h-16 w-16 items-center justify-center rounded-4 border border-border-neutral-base bg-background-field-base text-sm text-foreground-neutral-subtle",
195
- children: "/"
196
- })
197
- ]
198
- })
199
- ]
200
- })
201
- })
202
- ]
203
- }),
204
- /*#__PURE__*/ _jsxs(Tooltip, {
205
- children: [
206
- /*#__PURE__*/ _jsx(TooltipTrigger, {
207
- asChild: true,
208
- children: /*#__PURE__*/ _jsx(Button, {
209
- variant: "secondary",
210
- children: "Tooltip Text"
211
- })
212
- }),
213
- /*#__PURE__*/ _jsx(TooltipContent, {
214
- children: /*#__PURE__*/ _jsxs("div", {
215
- className: "flex items-center gap-6",
216
- children: [
217
- /*#__PURE__*/ _jsx("span", {
218
- children: "Tooltip Text"
219
- }),
220
- /*#__PURE__*/ _jsxs("div", {
221
- className: "flex items-center gap-4",
222
- children: [
223
- /*#__PURE__*/ _jsx("kbd", {
224
- className: "flex h-16 w-16 items-center justify-center rounded-4 border border-border-neutral-base bg-background-field-base text-xs text-foreground-neutral-subtle",
225
- children: "⌘"
226
- }),
227
- /*#__PURE__*/ _jsx("kbd", {
228
- className: "flex h-16 w-16 items-center justify-center rounded-4 border border-border-neutral-base bg-background-field-base text-xs text-foreground-neutral-subtle",
229
- children: "/"
230
- })
231
- ]
232
- })
233
- ]
234
- })
235
- })
236
- ]
237
- })
238
- ]
239
- })
240
- ]
241
- }),
242
- /*#__PURE__*/ _jsxs("div", {
243
- className: "flex flex-col gap-16",
244
- children: [
245
- /*#__PURE__*/ _jsx(Code, {
246
- variant: "label",
247
- className: "text-foreground-neutral-subtle",
248
- children: "Type=Graph"
249
- }),
250
- /*#__PURE__*/ _jsxs("div", {
251
- className: "flex gap-16",
252
- children: [
253
- /*#__PURE__*/ _jsxs(Tooltip, {
254
- children: [
255
- /*#__PURE__*/ _jsx(TooltipTrigger, {
256
- asChild: true,
257
- children: /*#__PURE__*/ _jsx(Button, {
258
- variant: "primary",
259
- children: "Hover for graph data"
260
- })
261
- }),
262
- /*#__PURE__*/ _jsx(TooltipContent, {
263
- variant: "inverted",
264
- className: "w-160",
265
- children: /*#__PURE__*/ _jsxs("div", {
266
- className: "flex flex-col gap-4",
267
- children: [
268
- /*#__PURE__*/ _jsx("div", {
269
- className: "text-xs text-foreground-neutral-subtle",
270
- children: "Jul 22, 2025"
271
- }),
272
- /*#__PURE__*/ _jsxs("div", {
273
- className: "flex flex-col gap-4",
274
- children: [
275
- /*#__PURE__*/ _jsxs("div", {
276
- className: "flex items-center justify-between gap-12",
277
- children: [
278
- /*#__PURE__*/ _jsxs("div", {
279
- className: "flex flex-1 items-center gap-4",
280
- children: [
281
- /*#__PURE__*/ _jsx("div", {
282
- className: "size-6 rounded-full bg-purple-500"
283
- }),
284
- /*#__PURE__*/ _jsx("span", {
285
- className: "text-xs",
286
- children: "Data A"
287
- })
288
- ]
289
- }),
290
- /*#__PURE__*/ _jsx("span", {
291
- className: "text-xs",
292
- children: "$6.14"
293
- })
294
- ]
295
- }),
296
- /*#__PURE__*/ _jsxs("div", {
297
- className: "flex items-center justify-between gap-12",
298
- children: [
299
- /*#__PURE__*/ _jsxs("div", {
300
- className: "flex flex-1 items-center gap-4",
301
- children: [
302
- /*#__PURE__*/ _jsx("div", {
303
- className: "size-6 rounded-full bg-green-500"
304
- }),
305
- /*#__PURE__*/ _jsx("span", {
306
- className: "text-xs",
307
- children: "Data B"
308
- })
309
- ]
310
- }),
311
- /*#__PURE__*/ _jsx("span", {
312
- className: "text-xs",
313
- children: "$4.37"
314
- })
315
- ]
316
- }),
317
- /*#__PURE__*/ _jsxs("div", {
318
- className: "flex items-center justify-between gap-12",
319
- children: [
320
- /*#__PURE__*/ _jsxs("div", {
321
- className: "flex flex-1 items-center gap-4",
322
- children: [
323
- /*#__PURE__*/ _jsx("div", {
324
- className: "size-6 rounded-full bg-orange-500"
325
- }),
326
- /*#__PURE__*/ _jsx("span", {
327
- className: "text-xs",
328
- children: "Data C"
329
- })
330
- ]
331
- }),
332
- /*#__PURE__*/ _jsx("span", {
333
- className: "text-xs",
334
- children: "$12.88"
335
- })
336
- ]
337
- }),
338
- /*#__PURE__*/ _jsxs("div", {
339
- className: "flex items-center justify-between gap-12",
340
- children: [
341
- /*#__PURE__*/ _jsxs("div", {
342
- className: "flex flex-1 items-center gap-4",
343
- children: [
344
- /*#__PURE__*/ _jsx("div", {
345
- className: "size-6 rounded-full bg-blue-500"
346
- }),
347
- /*#__PURE__*/ _jsx("span", {
348
- className: "text-xs",
349
- children: "Data D"
350
- })
351
- ]
352
- }),
353
- /*#__PURE__*/ _jsx("span", {
354
- className: "text-xs",
355
- children: "$2.91"
356
- })
357
- ]
358
- })
359
- ]
360
- })
361
- ]
362
- })
363
- })
364
- ]
365
- }),
366
- /*#__PURE__*/ _jsxs(Tooltip, {
367
- children: [
368
- /*#__PURE__*/ _jsx(TooltipTrigger, {
369
- asChild: true,
370
- children: /*#__PURE__*/ _jsx(Button, {
371
- variant: "secondary",
372
- children: "Hover for graph data"
373
- })
374
- }),
375
- /*#__PURE__*/ _jsx(TooltipContent, {
376
- className: "w-160",
377
- children: /*#__PURE__*/ _jsxs("div", {
378
- className: "flex flex-col gap-4",
379
- children: [
380
- /*#__PURE__*/ _jsx("div", {
381
- className: "text-xs text-foreground-neutral-subtle",
382
- children: "Jul 22, 2025"
383
- }),
384
- /*#__PURE__*/ _jsxs("div", {
385
- className: "flex flex-col gap-4",
386
- children: [
387
- /*#__PURE__*/ _jsxs("div", {
388
- className: "flex items-center justify-between gap-12",
389
- children: [
390
- /*#__PURE__*/ _jsxs("div", {
391
- className: "flex flex-1 items-center gap-4",
392
- children: [
393
- /*#__PURE__*/ _jsx("div", {
394
- className: "size-6 rounded-full bg-purple-500"
395
- }),
396
- /*#__PURE__*/ _jsx("span", {
397
- className: "text-xs",
398
- children: "Data A"
399
- })
400
- ]
401
- }),
402
- /*#__PURE__*/ _jsx("span", {
403
- className: "text-xs",
404
- children: "$6.14"
405
- })
406
- ]
407
- }),
408
- /*#__PURE__*/ _jsxs("div", {
409
- className: "flex items-center justify-between gap-12",
410
- children: [
411
- /*#__PURE__*/ _jsxs("div", {
412
- className: "flex flex-1 items-center gap-4",
413
- children: [
414
- /*#__PURE__*/ _jsx("div", {
415
- className: "size-6 rounded-full bg-green-500"
416
- }),
417
- /*#__PURE__*/ _jsx("span", {
418
- className: "text-xs",
419
- children: "Data B"
420
- })
421
- ]
422
- }),
423
- /*#__PURE__*/ _jsx("span", {
424
- className: "text-xs",
425
- children: "$4.37"
426
- })
427
- ]
428
- }),
429
- /*#__PURE__*/ _jsxs("div", {
430
- className: "flex items-center justify-between gap-12",
431
- children: [
432
- /*#__PURE__*/ _jsxs("div", {
433
- className: "flex flex-1 items-center gap-4",
434
- children: [
435
- /*#__PURE__*/ _jsx("div", {
436
- className: "size-6 rounded-full bg-orange-500"
437
- }),
438
- /*#__PURE__*/ _jsx("span", {
439
- className: "text-xs",
440
- children: "Data C"
441
- })
442
- ]
443
- }),
444
- /*#__PURE__*/ _jsx("span", {
445
- className: "text-xs",
446
- children: "$12.88"
447
- })
448
- ]
449
- }),
450
- /*#__PURE__*/ _jsxs("div", {
451
- className: "flex items-center justify-between gap-12",
452
- children: [
453
- /*#__PURE__*/ _jsxs("div", {
454
- className: "flex flex-1 items-center gap-4",
455
- children: [
456
- /*#__PURE__*/ _jsx("div", {
457
- className: "size-6 rounded-full bg-blue-500"
458
- }),
459
- /*#__PURE__*/ _jsx("span", {
460
- className: "text-xs",
461
- children: "Data D"
462
- })
463
- ]
464
- }),
465
- /*#__PURE__*/ _jsx("span", {
466
- className: "text-xs",
467
- children: "$2.91"
468
- })
469
- ]
470
- })
471
- ]
472
- })
473
- ]
474
- })
475
- })
476
- ]
477
- })
478
- ]
479
- })
480
- ]
481
- }),
482
- /*#__PURE__*/ _jsxs("div", {
483
- className: "flex flex-col gap-16",
484
- children: [
485
- /*#__PURE__*/ _jsx(Code, {
486
- variant: "label",
487
- className: "text-foreground-neutral-subtle",
488
- children: "Type=Breadcrumbs"
489
- }),
490
- /*#__PURE__*/ _jsxs("div", {
491
- className: "flex gap-16",
492
- children: [
493
- /*#__PURE__*/ _jsxs(Tooltip, {
494
- children: [
495
- /*#__PURE__*/ _jsx(TooltipTrigger, {
496
- asChild: true,
497
- children: /*#__PURE__*/ _jsx(Button, {
498
- variant: "primary",
499
- children: "Breadcrumb"
500
- })
501
- }),
502
- /*#__PURE__*/ _jsx(TooltipContent, {
503
- variant: "inverted",
504
- children: /*#__PURE__*/ _jsxs("div", {
505
- className: "flex items-center gap-6",
506
- children: [
507
- /*#__PURE__*/ _jsx("span", {
508
- children: "Breadcrumb"
509
- }),
510
- /*#__PURE__*/ _jsx("span", {
511
- className: "text-foreground-neutral-muted",
512
- children: "/"
513
- }),
514
- /*#__PURE__*/ _jsx("span", {
515
- children: "Breadcrumb"
516
- })
517
- ]
518
- })
519
- })
520
- ]
521
- }),
522
- /*#__PURE__*/ _jsxs(Tooltip, {
523
- children: [
524
- /*#__PURE__*/ _jsx(TooltipTrigger, {
525
- asChild: true,
526
- children: /*#__PURE__*/ _jsx(Button, {
527
- variant: "secondary",
528
- children: "Breadcrumb"
529
- })
530
- }),
531
- /*#__PURE__*/ _jsx(TooltipContent, {
532
- children: /*#__PURE__*/ _jsxs("div", {
533
- className: "flex items-center gap-6",
534
- children: [
535
- /*#__PURE__*/ _jsx("span", {
536
- children: "Breadcrumb"
537
- }),
538
- /*#__PURE__*/ _jsx("span", {
539
- className: "text-foreground-neutral-muted",
540
- children: "/"
541
- }),
542
- /*#__PURE__*/ _jsx("span", {
543
- children: "Breadcrumb"
544
- })
545
- ]
546
- })
547
- })
548
- ]
549
- })
550
- ]
551
- })
552
- ]
553
- })
554
- ]
555
- })
556
- ]
557
- })
558
- };
559
-
560
- //# sourceMappingURL=tooltip.stories.js.map
@@ -1,54 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Code } from './code.js';
3
- const meta = {
4
- title: 'Typography/Code'
5
- };
6
- export default meta;
7
- const variants = [
8
- 'label',
9
- 'paragraph'
10
- ];
11
- export const Default = {
12
- render: ()=>/*#__PURE__*/ _jsx("div", {
13
- className: "flex flex-col gap-16",
14
- children: variants.map((variant)=>/*#__PURE__*/ _jsxs("div", {
15
- className: "grid grid-cols-2 gap-8",
16
- children: [
17
- /*#__PURE__*/ _jsxs("div", {
18
- className: "flex flex-col gap-4",
19
- children: [
20
- /*#__PURE__*/ _jsx(Code, {
21
- variant: "label",
22
- className: "text-foreground-neutral-subtle",
23
- children: variant
24
- }),
25
- /*#__PURE__*/ _jsx(Code, {
26
- variant: variant,
27
- children: "The quick brown fox jumps over the lazy dog"
28
- })
29
- ]
30
- }),
31
- /*#__PURE__*/ _jsxs("div", {
32
- className: "flex flex-col gap-4",
33
- children: [
34
- /*#__PURE__*/ _jsxs(Code, {
35
- variant: "label",
36
- className: "text-foreground-neutral-subtle",
37
- children: [
38
- variant,
39
- " - Bold"
40
- ]
41
- }),
42
- /*#__PURE__*/ _jsx(Code, {
43
- variant: variant,
44
- bold: true,
45
- children: "The quick brown fox jumps over the lazy dog"
46
- })
47
- ]
48
- })
49
- ]
50
- }, variant))
51
- })
52
- };
53
-
54
- //# sourceMappingURL=code.stories.js.map
@@ -1,34 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Code } from './code.js';
3
- import { Header } from './header.js';
4
- const meta = {
5
- title: 'Typography/Header'
6
- };
7
- export default meta;
8
- const variants = [
9
- 'h1',
10
- 'h2',
11
- 'h3',
12
- 'h4'
13
- ];
14
- export const Default = {
15
- render: ()=>/*#__PURE__*/ _jsx("div", {
16
- className: "flex flex-col gap-16",
17
- children: variants.map((variant)=>/*#__PURE__*/ _jsxs("div", {
18
- className: "flex flex-col gap-4",
19
- children: [
20
- /*#__PURE__*/ _jsx(Code, {
21
- variant: "label",
22
- className: "text-foreground-neutral-subtle",
23
- children: variant
24
- }),
25
- /*#__PURE__*/ _jsx(Header, {
26
- variant: variant,
27
- children: "The quick brown fox jumps over the lazy dog"
28
- })
29
- ]
30
- }, variant))
31
- })
32
- };
33
-
34
- //# sourceMappingURL=header.stories.js.map