@sproutsocial/racine 31.7.6 → 31.7.8

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/CHANGELOG.md CHANGED
@@ -1,5 +1,77 @@
1
1
  # Change Log
2
2
 
3
+ ## 31.7.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d21ae54]
8
+ - @sproutsocial/seeds-react-theme@4.2.1
9
+ - @sproutsocial/seeds-react-button@2.2.5
10
+ - @sproutsocial/seeds-react-theme-provider@1.1.23
11
+ - @sproutsocial/seeds-react-accordion@0.4.54
12
+ - @sproutsocial/seeds-react-avatar@1.1.21
13
+ - @sproutsocial/seeds-react-banner@1.1.26
14
+ - @sproutsocial/seeds-react-box@1.1.25
15
+ - @sproutsocial/seeds-react-breadcrumb@1.1.11
16
+ - @sproutsocial/seeds-react-card@1.1.46
17
+ - @sproutsocial/seeds-react-chart-legend@1.0.45
18
+ - @sproutsocial/seeds-react-container@0.3.19
19
+ - @sproutsocial/seeds-react-content-block@0.5.19
20
+ - @sproutsocial/seeds-react-data-table@2.6.27
21
+ - @sproutsocial/seeds-react-datepicker@1.0.43
22
+ - @sproutsocial/seeds-react-drawer@2.2.12
23
+ - @sproutsocial/seeds-react-duration@1.0.28
24
+ - @sproutsocial/seeds-react-empty-state@1.0.27
25
+ - @sproutsocial/seeds-react-fieldset@1.0.28
26
+ - @sproutsocial/seeds-react-form-field@1.1.22
27
+ - @sproutsocial/seeds-react-grid@0.2.9
28
+ - @sproutsocial/seeds-react-hooks@3.2.5
29
+ - @sproutsocial/seeds-react-icon@2.4.4
30
+ - @sproutsocial/seeds-react-image@1.0.25
31
+ - @sproutsocial/seeds-react-indicator@1.0.44
32
+ - @sproutsocial/seeds-react-keyboard-key@1.0.27
33
+ - @sproutsocial/seeds-react-label@1.0.27
34
+ - @sproutsocial/seeds-react-link@1.1.17
35
+ - @sproutsocial/seeds-react-list@0.3.31
36
+ - @sproutsocial/seeds-react-loader@1.0.27
37
+ - @sproutsocial/seeds-react-loader-button@1.0.50
38
+ - @sproutsocial/seeds-react-message@1.0.53
39
+ - @sproutsocial/seeds-react-mixins@4.3.10
40
+ - @sproutsocial/seeds-react-modal@2.5.27
41
+ - @sproutsocial/seeds-react-narrative-kit@0.6.1
42
+ - @sproutsocial/seeds-react-numeral@1.0.52
43
+ - @sproutsocial/seeds-react-pagination@0.1.25
44
+ - @sproutsocial/seeds-react-panel@1.0.5
45
+ - @sproutsocial/seeds-react-partner-logo@1.7.17
46
+ - @sproutsocial/seeds-react-progress@0.2.12
47
+ - @sproutsocial/seeds-react-rating@1.0.45
48
+ - @sproutsocial/seeds-react-segmented-control@1.1.26
49
+ - @sproutsocial/seeds-react-select@1.1.45
50
+ - @sproutsocial/seeds-react-skeleton@1.1.25
51
+ - @sproutsocial/seeds-react-stack@1.0.25
52
+ - @sproutsocial/seeds-react-table@1.0.46
53
+ - @sproutsocial/seeds-react-tabs@1.4.16
54
+ - @sproutsocial/seeds-react-textarea@1.0.26
55
+ - @sproutsocial/seeds-react-toast@1.0.46
56
+ - @sproutsocial/seeds-react-token@1.5.11
57
+ - @sproutsocial/seeds-react-token-input@1.4.54
58
+ - @sproutsocial/seeds-react-tooltip@1.1.31
59
+ - @sproutsocial/seeds-react-visually-hidden@1.0.26
60
+ - @sproutsocial/seeds-react-input@1.5.32
61
+ - @sproutsocial/seeds-react-peek-in@0.3.4
62
+ - @sproutsocial/seeds-react-popout@2.5.13
63
+ - @sproutsocial/seeds-react-badge@2.0.38
64
+ - @sproutsocial/seeds-react-checkbox@1.3.46
65
+ - @sproutsocial/seeds-react-content-header@0.2.24
66
+ - @sproutsocial/seeds-react-switch@1.2.44
67
+ - @sproutsocial/seeds-react-radio@1.3.28
68
+
69
+ ## 31.7.7
70
+
71
+ ### Patch Changes
72
+
73
+ - @sproutsocial/seeds-react-accordion@0.4.53
74
+
3
75
  ## 31.7.6
4
76
 
5
77
  ### Patch Changes
@@ -172,6 +172,84 @@
172
172
  }
173
173
  }
174
174
 
175
+ /* --- seeds-react-badge --- */
176
+ /**
177
+ * Seeds Badge component classes
178
+ * Use these instead of writing out individual Tailwind utility classes.
179
+ *
180
+ * Requires @sproutsocial/seeds-react-theme/dist/theme-all.css imported for
181
+ * CSS variable definitions and dark mode support.
182
+ *
183
+ * All rules are wrapped in `@layer components` so that consumer Tailwind
184
+ * utilities (unlayered) win the cascade over these styles.
185
+ */
186
+
187
+ @layer components {
188
+ .seeds-badge {
189
+ font-family: var(--font-family);
190
+ border-radius: 9999px;
191
+ line-height: 16px;
192
+ display: inline-flex;
193
+ align-items: center;
194
+ justify-content: center;
195
+ color: var(--color-text-body);
196
+ }
197
+
198
+ .seeds-badge-sm {
199
+ font-size: var(--font-size-100);
200
+ padding: var(--space-0) var(--space-200);
201
+ }
202
+
203
+ .seeds-badge-lg {
204
+ font-size: var(--font-size-200);
205
+ padding: var(--space-300);
206
+ }
207
+
208
+ .seeds-badge-green {
209
+ background: var(--color-container-bg-decorative-green);
210
+ }
211
+
212
+ .seeds-badge-blue {
213
+ background: var(--color-container-bg-decorative-blue);
214
+ }
215
+
216
+ .seeds-badge-purple {
217
+ background: var(--color-container-bg-decorative-purple);
218
+ }
219
+
220
+ .seeds-badge-yellow {
221
+ background: var(--color-container-bg-decorative-yellow);
222
+ }
223
+
224
+ .seeds-badge-orange {
225
+ background: var(--color-container-bg-decorative-orange);
226
+ }
227
+
228
+ .seeds-badge-red {
229
+ background: var(--color-container-bg-decorative-red);
230
+ }
231
+
232
+ .seeds-badge-neutral {
233
+ background: var(--color-container-bg-decorative-neutral);
234
+ }
235
+
236
+ .seeds-badge-magenta {
237
+ background: var(--color-container-bg-decorative-magenta);
238
+ }
239
+
240
+ .seeds-badge-pink {
241
+ background: var(--color-container-bg-decorative-pink);
242
+ }
243
+
244
+ .seeds-badge-aqua {
245
+ background: var(--color-container-bg-decorative-aqua);
246
+ }
247
+
248
+ .seeds-badge-teal {
249
+ background: var(--color-container-bg-decorative-teal);
250
+ }
251
+ }
252
+
175
253
  /* --- seeds-react-banner --- */
176
254
  /**
177
255
  * Seeds Banner component classes
@@ -251,6 +329,61 @@
251
329
  }
252
330
  }
253
331
 
332
+ /* --- seeds-react-breadcrumb --- */
333
+ /**
334
+ * Seeds Breadcrumb component classes
335
+ * Use these instead of writing out individual Tailwind utility classes.
336
+ *
337
+ * Requires @sproutsocial/seeds-react-theme/dist/theme-all.css imported for
338
+ * CSS variable definitions and dark mode support.
339
+ *
340
+ * All rules are wrapped in `@layer components` so that consumer Tailwind
341
+ * utilities (unlayered) win the cascade over these styles.
342
+ */
343
+
344
+ @layer components {
345
+ .seeds-breadcrumb ol {
346
+ font-size: var(--font-size-200);
347
+ line-height: var(--line-height-200);
348
+ margin: 0;
349
+ font-family: var(--font-family);
350
+ padding: 0;
351
+ display: flex;
352
+ }
353
+
354
+ .seeds-breadcrumb li {
355
+ margin-right: var(--space-200);
356
+ display: flex;
357
+ }
358
+
359
+ .seeds-breadcrumb a,
360
+ .seeds-breadcrumb button {
361
+ font-size: var(--font-size-200);
362
+ line-height: var(--line-height-200);
363
+ max-width: 200px;
364
+ overflow: hidden;
365
+ text-overflow: ellipsis;
366
+ white-space: nowrap;
367
+ }
368
+
369
+ .seeds-breadcrumb ol > div + li::before {
370
+ content: "/";
371
+ margin-right: var(--space-200);
372
+ }
373
+
374
+ .seeds-breadcrumb li:last-child a,
375
+ .seeds-breadcrumb li:last-child button {
376
+ color: var(--color-text-body);
377
+ font-weight: bold;
378
+ }
379
+
380
+ .seeds-breadcrumb li:not(:last-child)::after {
381
+ content: "/";
382
+ color: var(--color-text-body);
383
+ margin-left: var(--space-200);
384
+ }
385
+ }
386
+
254
387
  /* --- seeds-react-button --- */
255
388
  /**
256
389
  * Seeds Button component classes
@@ -395,8 +528,10 @@
395
528
  }
396
529
 
397
530
  .seeds-btn-ai-secondary {
398
- /* White base shows through the 20% gradient tint to produce the soft fill. */
399
- background-color: #fff;
531
+ /* The base surface shows through the 20% gradient tint to produce the soft
532
+ fill. Uses the themed container surface (white in light, dark surface in
533
+ dark mode) so the tint composites correctly in both modes. */
534
+ background-color: var(--color-container-bg-base);
400
535
  background-image: var(--color-button-ai-secondary-bg-base);
401
536
  background-origin: border-box;
402
537
  background-repeat: no-repeat;
@@ -495,6 +630,68 @@
495
630
  }
496
631
 
497
632
  /* end @layer components */
633
+ /* --- seeds-react-chat-bubble --- */
634
+ /**
635
+ * Seeds ChatBubble component classes
636
+ * Use these instead of writing out individual Tailwind utility classes.
637
+ *
638
+ * Requires @sproutsocial/seeds-react-theme/dist/theme-all.css imported for
639
+ * CSS variable definitions and dark mode support.
640
+ *
641
+ * All rules are wrapped in `@layer components` so that consumer Tailwind
642
+ * utilities (unlayered) win the cascade over these styles.
643
+ */
644
+
645
+ @layer components {
646
+ .seeds-chat-bubble {
647
+ font-family: var(--font-family);
648
+ display: inline-flex;
649
+ align-items: center;
650
+ max-width: 80%;
651
+ word-break: break-word;
652
+ }
653
+
654
+ .seeds-chat-bubble-default {
655
+ font-size: var(--font-size-300);
656
+ line-height: var(--line-height-300);
657
+ padding: var(--space-300) var(--space-400);
658
+ }
659
+
660
+ .seeds-chat-bubble-small {
661
+ font-size: var(--font-size-200);
662
+ line-height: var(--line-height-200);
663
+ padding: var(--space-200) var(--space-300);
664
+ }
665
+
666
+ .seeds-chat-bubble-sent {
667
+ align-self: flex-end;
668
+ color: var(--color-text-inverse);
669
+ background: var(--color-button-primary-bg-base);
670
+ }
671
+
672
+ .seeds-chat-bubble-received {
673
+ align-self: flex-start;
674
+ color: var(--color-text-body);
675
+ background: var(--color-container-bg-decorative-blue);
676
+ }
677
+
678
+ .seeds-chat-bubble-sent.seeds-chat-bubble-default {
679
+ border-radius: 16px 16px 0px 16px;
680
+ }
681
+
682
+ .seeds-chat-bubble-received.seeds-chat-bubble-default {
683
+ border-radius: 16px 16px 16px 0px;
684
+ }
685
+
686
+ .seeds-chat-bubble-sent.seeds-chat-bubble-small {
687
+ border-radius: 12px 12px 0px 12px;
688
+ }
689
+
690
+ .seeds-chat-bubble-received.seeds-chat-bubble-small {
691
+ border-radius: 12px 12px 12px 0px;
692
+ }
693
+ }
694
+
498
695
  /* --- seeds-react-collapsible --- */
499
696
  /**
500
697
  * Seeds Collapsible component classes
@@ -1078,6 +1275,44 @@
1078
1275
  }
1079
1276
  }
1080
1277
 
1278
+ /* --- seeds-react-indicator --- */
1279
+ /**
1280
+ * Seeds Indicator component classes
1281
+ * Use these instead of writing out individual Tailwind utility classes.
1282
+ *
1283
+ * Requires @sproutsocial/seeds-react-theme/dist/theme-all.css imported for
1284
+ * CSS variable definitions and dark mode support.
1285
+ *
1286
+ * All rules are wrapped in `@layer components` so that consumer Tailwind
1287
+ * utilities (unlayered) win the cascade over these styles.
1288
+ */
1289
+
1290
+ @layer components {
1291
+ .seeds-indicator {
1292
+ position: relative;
1293
+ display: inline-flex;
1294
+ justify-content: center;
1295
+ align-items: center;
1296
+ width: var(--space-400);
1297
+ height: var(--space-400);
1298
+ font-size: 10px;
1299
+ line-height: 0;
1300
+ color: var(--color-icon-info);
1301
+ text-align: center;
1302
+ }
1303
+
1304
+ .seeds-indicator > div {
1305
+ position: absolute;
1306
+ width: 1px;
1307
+ height: 1px;
1308
+ padding: 0;
1309
+ margin: -1px;
1310
+ overflow: hidden;
1311
+ clip: rect(0 0 0 0);
1312
+ border: 0;
1313
+ }
1314
+ }
1315
+
1081
1316
  /* --- seeds-react-input --- */
1082
1317
  /**
1083
1318
  * Seeds Input component classes
@@ -1213,6 +1448,51 @@
1213
1448
  }
1214
1449
  }
1215
1450
 
1451
+ /* --- seeds-react-keyboard-key --- */
1452
+ /**
1453
+ * Seeds KeyboardKey component classes
1454
+ * Use these instead of writing out individual Tailwind utility classes.
1455
+ *
1456
+ * Requires @sproutsocial/seeds-react-theme/dist/theme-all.css imported for
1457
+ * CSS variable definitions and dark mode support.
1458
+ *
1459
+ * All rules are wrapped in `@layer components` so that consumer Tailwind
1460
+ * utilities (unlayered) win the cascade over these styles.
1461
+ */
1462
+
1463
+ @layer components {
1464
+ .seeds-keyboard-key {
1465
+ display: inline-flex;
1466
+ color: var(--color-text-body);
1467
+ background-color: var(--color-container-bg-base);
1468
+ border: 1px solid var(--color-container-border-base);
1469
+ border-radius: var(--radius-500);
1470
+ box-shadow: var(--shadow-low);
1471
+ padding: 0 var(--space-200);
1472
+ min-width: 20px;
1473
+ justify-content: center;
1474
+ }
1475
+ }
1476
+
1477
+ /* --- seeds-react-label --- */
1478
+ /**
1479
+ * Seeds Label component classes
1480
+ * Use these instead of writing out individual Tailwind utility classes.
1481
+ *
1482
+ * Requires @sproutsocial/seeds-react-theme/dist/theme-all.css imported for
1483
+ * CSS variable definitions and dark mode support.
1484
+ *
1485
+ * All rules are wrapped in `@layer components` so that consumer Tailwind
1486
+ * utilities (unlayered) win the cascade over these styles.
1487
+ */
1488
+
1489
+ @layer components {
1490
+ .seeds-label {
1491
+ display: flex;
1492
+ align-items: center;
1493
+ }
1494
+ }
1495
+
1216
1496
  /* --- seeds-react-link --- */
1217
1497
  /**
1218
1498
  * Seeds Link component classes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sproutsocial/racine",
3
- "version": "31.7.6",
3
+ "version": "31.7.8",
4
4
  "license": "MIT",
5
5
  "engines": {
6
6
  "node": ">=18"
@@ -73,74 +73,74 @@
73
73
  },
74
74
  "dependencies": {
75
75
  "@size-limit/file": "^11.1.6",
76
- "@sproutsocial/seeds-react-accordion": "^0.4.52",
77
- "@sproutsocial/seeds-react-avatar": "^1.1.20",
78
- "@sproutsocial/seeds-react-badge": "^2.0.37",
79
- "@sproutsocial/seeds-react-banner": "^1.1.25",
80
- "@sproutsocial/seeds-react-box": "^1.1.24",
81
- "@sproutsocial/seeds-react-breadcrumb": "^1.1.10",
82
- "@sproutsocial/seeds-react-button": "^2.2.4",
83
- "@sproutsocial/seeds-react-card": "^1.1.45",
76
+ "@sproutsocial/seeds-react-accordion": "^0.4.54",
77
+ "@sproutsocial/seeds-react-avatar": "^1.1.21",
78
+ "@sproutsocial/seeds-react-badge": "^2.0.38",
79
+ "@sproutsocial/seeds-react-banner": "^1.1.26",
80
+ "@sproutsocial/seeds-react-box": "^1.1.25",
81
+ "@sproutsocial/seeds-react-breadcrumb": "^1.1.11",
82
+ "@sproutsocial/seeds-react-button": "^2.2.5",
83
+ "@sproutsocial/seeds-react-card": "^1.1.46",
84
84
  "@sproutsocial/seeds-react-character-counter": "^1.0.5",
85
- "@sproutsocial/seeds-react-chart-legend": "^1.0.44",
85
+ "@sproutsocial/seeds-react-chart-legend": "^1.0.45",
86
86
  "@sproutsocial/seeds-react-chat-bubble": "^0.2.3",
87
- "@sproutsocial/seeds-react-checkbox": "^1.3.45",
87
+ "@sproutsocial/seeds-react-checkbox": "^1.3.46",
88
88
  "@sproutsocial/seeds-react-collapsible": "^2.0.1",
89
- "@sproutsocial/seeds-react-container": "^0.3.18",
90
- "@sproutsocial/seeds-react-content-block": "^0.5.18",
91
- "@sproutsocial/seeds-react-content-header": "^0.2.23",
92
- "@sproutsocial/seeds-react-data-table": "^2.6.26",
93
- "@sproutsocial/seeds-react-datepicker": "^1.0.42",
94
- "@sproutsocial/seeds-react-drawer": "^2.2.11",
95
- "@sproutsocial/seeds-react-duration": "^1.0.27",
96
- "@sproutsocial/seeds-react-empty-state": "^1.0.26",
97
- "@sproutsocial/seeds-react-fieldset": "^1.0.27",
98
- "@sproutsocial/seeds-react-form-field": "^1.1.21",
99
- "@sproutsocial/seeds-react-grid": "^0.2.8",
100
- "@sproutsocial/seeds-react-hooks": "^3.2.4",
101
- "@sproutsocial/seeds-react-icon": "^2.4.3",
102
- "@sproutsocial/seeds-react-image": "^1.0.24",
103
- "@sproutsocial/seeds-react-indicator": "^1.0.43",
104
- "@sproutsocial/seeds-react-input": "^1.5.31",
105
- "@sproutsocial/seeds-react-keyboard-key": "^1.0.26",
106
- "@sproutsocial/seeds-react-label": "^1.0.26",
107
- "@sproutsocial/seeds-react-link": "^1.1.16",
108
- "@sproutsocial/seeds-react-list": "^0.3.30",
109
- "@sproutsocial/seeds-react-loader": "^1.0.26",
110
- "@sproutsocial/seeds-react-loader-button": "^1.0.49",
111
- "@sproutsocial/seeds-react-message": "^1.0.52",
112
- "@sproutsocial/seeds-react-mixins": "^4.3.9",
113
- "@sproutsocial/seeds-react-modal": "^2.5.26",
114
- "@sproutsocial/seeds-react-narrative-kit": "^0.6.0",
115
- "@sproutsocial/seeds-react-numeral": "^1.0.51",
116
- "@sproutsocial/seeds-react-pagination": "^0.1.24",
117
- "@sproutsocial/seeds-react-panel": "^1.0.4",
118
- "@sproutsocial/seeds-react-peek-in": "^0.3.3",
119
- "@sproutsocial/seeds-react-partner-logo": "^1.7.16",
120
- "@sproutsocial/seeds-react-popout": "^2.5.12",
89
+ "@sproutsocial/seeds-react-container": "^0.3.19",
90
+ "@sproutsocial/seeds-react-content-block": "^0.5.19",
91
+ "@sproutsocial/seeds-react-content-header": "^0.2.24",
92
+ "@sproutsocial/seeds-react-data-table": "^2.6.27",
93
+ "@sproutsocial/seeds-react-datepicker": "^1.0.43",
94
+ "@sproutsocial/seeds-react-drawer": "^2.2.12",
95
+ "@sproutsocial/seeds-react-duration": "^1.0.28",
96
+ "@sproutsocial/seeds-react-empty-state": "^1.0.27",
97
+ "@sproutsocial/seeds-react-fieldset": "^1.0.28",
98
+ "@sproutsocial/seeds-react-form-field": "^1.1.22",
99
+ "@sproutsocial/seeds-react-grid": "^0.2.9",
100
+ "@sproutsocial/seeds-react-hooks": "^3.2.5",
101
+ "@sproutsocial/seeds-react-icon": "^2.4.4",
102
+ "@sproutsocial/seeds-react-image": "^1.0.25",
103
+ "@sproutsocial/seeds-react-indicator": "^1.0.44",
104
+ "@sproutsocial/seeds-react-input": "^1.5.32",
105
+ "@sproutsocial/seeds-react-keyboard-key": "^1.0.27",
106
+ "@sproutsocial/seeds-react-label": "^1.0.27",
107
+ "@sproutsocial/seeds-react-link": "^1.1.17",
108
+ "@sproutsocial/seeds-react-list": "^0.3.31",
109
+ "@sproutsocial/seeds-react-loader": "^1.0.27",
110
+ "@sproutsocial/seeds-react-loader-button": "^1.0.50",
111
+ "@sproutsocial/seeds-react-message": "^1.0.53",
112
+ "@sproutsocial/seeds-react-mixins": "^4.3.10",
113
+ "@sproutsocial/seeds-react-modal": "^2.5.27",
114
+ "@sproutsocial/seeds-react-narrative-kit": "^0.6.1",
115
+ "@sproutsocial/seeds-react-numeral": "^1.0.52",
116
+ "@sproutsocial/seeds-react-pagination": "^0.1.25",
117
+ "@sproutsocial/seeds-react-panel": "^1.0.5",
118
+ "@sproutsocial/seeds-react-peek-in": "^0.3.4",
119
+ "@sproutsocial/seeds-react-partner-logo": "^1.7.17",
120
+ "@sproutsocial/seeds-react-popout": "^2.5.13",
121
121
  "@sproutsocial/seeds-react-portal": "^1.2.0",
122
- "@sproutsocial/seeds-react-progress": "^0.2.11",
123
- "@sproutsocial/seeds-react-radio": "^1.3.27",
124
- "@sproutsocial/seeds-react-rating": "^1.0.44",
125
- "@sproutsocial/seeds-react-segmented-control": "^1.1.25",
122
+ "@sproutsocial/seeds-react-progress": "^0.2.12",
123
+ "@sproutsocial/seeds-react-radio": "^1.3.28",
124
+ "@sproutsocial/seeds-react-rating": "^1.0.45",
125
+ "@sproutsocial/seeds-react-segmented-control": "^1.1.26",
126
126
  "@sproutsocial/seeds-react-spot-illustration": "^1.2.4",
127
- "@sproutsocial/seeds-react-select": "^1.1.44",
128
- "@sproutsocial/seeds-react-skeleton": "^1.1.24",
129
- "@sproutsocial/seeds-react-stack": "^1.0.24",
130
- "@sproutsocial/seeds-react-switch": "^1.2.43",
127
+ "@sproutsocial/seeds-react-select": "^1.1.45",
128
+ "@sproutsocial/seeds-react-skeleton": "^1.1.25",
129
+ "@sproutsocial/seeds-react-stack": "^1.0.25",
130
+ "@sproutsocial/seeds-react-switch": "^1.2.44",
131
131
  "@sproutsocial/seeds-react-system-props": "^3.1.2",
132
- "@sproutsocial/seeds-react-table": "^1.0.45",
133
- "@sproutsocial/seeds-react-tabs": "^1.4.15",
132
+ "@sproutsocial/seeds-react-table": "^1.0.46",
133
+ "@sproutsocial/seeds-react-tabs": "^1.4.16",
134
134
  "@sproutsocial/seeds-react-text": "^1.5.1",
135
- "@sproutsocial/seeds-react-textarea": "^1.0.25",
136
- "@sproutsocial/seeds-react-toast": "^1.0.45",
137
- "@sproutsocial/seeds-react-token": "^1.5.10",
138
- "@sproutsocial/seeds-react-token-input": "^1.4.53",
139
- "@sproutsocial/seeds-react-tooltip": "^1.1.30",
140
- "@sproutsocial/seeds-react-theme": "^4.2.0",
141
- "@sproutsocial/seeds-react-theme-provider": "^1.1.22",
135
+ "@sproutsocial/seeds-react-textarea": "^1.0.26",
136
+ "@sproutsocial/seeds-react-toast": "^1.0.46",
137
+ "@sproutsocial/seeds-react-token": "^1.5.11",
138
+ "@sproutsocial/seeds-react-token-input": "^1.4.54",
139
+ "@sproutsocial/seeds-react-tooltip": "^1.1.31",
140
+ "@sproutsocial/seeds-react-theme": "^4.2.1",
141
+ "@sproutsocial/seeds-react-theme-provider": "^1.1.23",
142
142
  "@sproutsocial/seeds-react-utilities": "^4.3.0",
143
- "@sproutsocial/seeds-react-visually-hidden": "^1.0.25",
143
+ "@sproutsocial/seeds-react-visually-hidden": "^1.0.26",
144
144
  "scroll-into-view-if-needed": "^2.2.20",
145
145
  "lodash.uniqueid": "^4.0.1",
146
146
  "styled-system": "^5.1.5",
@@ -163,7 +163,7 @@
163
163
  "@sproutsocial/seeds-motion": "^1.8.2",
164
164
  "@sproutsocial/seeds-networkcolor": "^2.22.0",
165
165
  "@sproutsocial/seeds-partner-logos": "^2.4.1",
166
- "@sproutsocial/seeds-react-menu": "^1.16.5",
166
+ "@sproutsocial/seeds-react-menu": "^1.16.7",
167
167
  "@sproutsocial/seeds-react-testing-library": "*",
168
168
  "@sproutsocial/seeds-space": "^0.8.1",
169
169
  "@sproutsocial/seeds-testing": "*",