@sproutsocial/racine 12.2.0-partner-logos.1 → 12.2.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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,3272 @@
1
+ # Change Log
2
+
3
+ ## 12.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0ceebbc: Adds new component that dynamically handles partner logos across modes
8
+ - 032436a: fix: remove racine as a dependancy
9
+
10
+ ## 12.1.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 76941e3: add growth specific colors to sprout theme for light and dark mode
15
+
16
+ ## 12.0.0
17
+
18
+ ### Major Changes
19
+
20
+ - 54639f5: Moved `theme.util.interact()` to a hook called `useInteractiveColor()`
21
+
22
+ - `theme.util.interact()` will no longer be available on the theme object and is moved to a hook called `useInteractiveColor()`
23
+ - To import the hook, use `import { useInteractiveColor } from '@sproutsocial/racine'`
24
+ - `useInteractiveColor()` accepts a theme color option and returns a lighten or darken version of that color depending on the theme mode currently in use('light' or 'dark')
25
+ - `useInteractiveColor()` can only be utilized within a theme context.
26
+
27
+ example:
28
+
29
+ ```jsx
30
+ import { useInteractiveColor } from '@sproutsocial/racine'
31
+
32
+ ....
33
+ &:hover,
34
+ &:active {
35
+ color: ${({theme}) => useInteract(theme.colors.icon.base)};
36
+ }
37
+ ```
38
+
39
+ ## 11.9.0
40
+
41
+ ### Minor Changes
42
+
43
+ - 6c3e703: Extend the sprout theme to add colors for trend arrows
44
+
45
+ ### Patch Changes
46
+
47
+ - 1c10a77: Fix args
48
+
49
+ ## 11.8.0
50
+
51
+ ### Minor Changes
52
+
53
+ - 1b66f38: Input.ClearButton no longer requires onClear prop
54
+ - Input has been updated to be able to clear itself for both controlled and uncontrolled Inputs
55
+ - The onChange function will be called upon clearing the input.
56
+ - Due to this change, Inputs with type "search" will now automatically include a ClearButton, whereas previously a ClearButton would not be rendered unless an onClear prop was provided.
57
+
58
+ ### Patch Changes
59
+
60
+ - 1b66f38: Adjust Input elemBefore and elemAfter positioning
61
+ - These elements were previously positioned 12px from the side of the Input
62
+ - They are now positioned 8px from the side of the Input, for better alignment with Input.ClearButton.
63
+ - 1b66f38: Expose Input.ClearButton for uncontrolled Inputs
64
+ - Previously, Input.ClearButton would not be usable for uncontrolled Inputs due to checking whether a value was in the input to clear only via the "value" prop.
65
+ - Now, Input.ClearButton is usable for uncontrolled Inputs because it is checking for updates to the value in its handleChange function.
66
+
67
+ ## 11.7.1
68
+
69
+ ### Patch Changes
70
+
71
+ - d7b2b1f: - Plug icon
72
+ - Alternate help icon
73
+
74
+ ## 11.7.0
75
+
76
+ ### Minor Changes
77
+
78
+ - 90438e2: Add \_themed.scss for Sprout theme
79
+ - This allows usage of Sprout theme-specific values in SCSS
80
+
81
+ ## 11.6.2
82
+
83
+ ### Patch Changes
84
+
85
+ - 560c463: Added a new extended theme for the compare to period for the date picker.
86
+
87
+ ## 11.6.1
88
+
89
+ ### Patch Changes
90
+
91
+ - eb27d01: Fix interact util in dark mode themes
92
+ - The `interact` util was located at a different location in the light and dark mode base theme objects. It was at the base level of the light theme and nested inside of `colors` for the dark theme.
93
+ - `interact` was seemingly available at the base level of the theme in both modes, because we spread the light theme as the basis of the dark theme. However, the `interact` util accessible at the base level of the theme would behave like light mode in either mode.
94
+ - The `interact` util located inside the `colors` object inside the dark mode theme object was not usable, due to only being defined in that location for dark mode, and has been removed.
95
+ - eb27d01: Remove 'just-clone' dependency
96
+ - eb27d01: Fix "navigation" colors in SproutTheme
97
+ - The "navigation" colors were not available in the theme due to being spread in incorrectly.
98
+ - eb27d01: Improve theme types to be more accurate
99
+
100
+ ## 11.6.0
101
+
102
+ ### Minor Changes
103
+
104
+ - 43adc28: Added a sprout theme to racine
105
+
106
+ ## 11.5.0
107
+
108
+ ### Minor Changes
109
+
110
+ - fa8a45d: Dependency upgrades: upgraded severe vulnerabilities as well as storybook and jest suite fixes. Upgraded styled components from beta to stable v5.2.3.
111
+
112
+ ## 11.4.1
113
+
114
+ ### Patch Changes
115
+
116
+ - 89c935f: Handle focus management in Input handleClear more consistently
117
+ - Previously, focus would be returned to the input when Input.ClearButton was triggered only if the innerRef prop was undefined or an object, not if it was a function.
118
+ - Now, focus is always returned to the input when the clear button is clicked, regardless of the type of the innerRef prop.
119
+
120
+ ## 11.4.0
121
+
122
+ ### Minor Changes
123
+
124
+ - d888fa0: Add search icon to type "search" Input
125
+ - "<Icon name="search" />" is added to Inputs with type "search" unless an elemBefore prop is passed to override it.
126
+ - d888fa0: Add Input.ClearButton
127
+ - This button is automatically included when Input has type "search" and no "elemAfter" prop is passed
128
+ - This button can be manually included with the "elemAfter" prop for non-search inputs
129
+ - In either case, the button will only be rendered if an "onClear" callback is passed to the Input component
130
+ - A "clearButtonLabel" prop should also be passed to the Input component
131
+
132
+ ## 11.3.0
133
+
134
+ ### Minor Changes
135
+
136
+ - e8a9df6: Add text highlight style to theme
137
+
138
+ ### Patch Changes
139
+
140
+ - 9e66592: Pass TokenInput autocomplete prop to input as autoComplete to suppress JSX console warnings
141
+
142
+ ## 11.2.5
143
+
144
+ ### Patch Changes
145
+
146
+ - a73cdfb: remove weird characters from props descriptions
147
+
148
+ ## 11.2.4
149
+
150
+ ### Patch Changes
151
+
152
+ - 206bd32: copy updates to the TypeProps comments that power Seeds prop tables
153
+
154
+ ## 11.2.3
155
+
156
+ ### Patch Changes
157
+
158
+ - 514d738: Patch badge component flow issue
159
+
160
+ ## 11.2.2
161
+
162
+ ### Patch Changes
163
+
164
+ - 9cc377e: Created extended theme directory
165
+
166
+ ## 11.2.1
167
+
168
+ ### Patch Changes
169
+
170
+ - 6968733: adds deprecation messaging to typeProps to be displayed on seeds page
171
+
172
+ ## 11.2.0
173
+
174
+ ### Minor Changes
175
+
176
+ - a71a431: backwards compatible style and api changes to the badge component
177
+
178
+ ## 11.1.2
179
+
180
+ ### Patch Changes
181
+
182
+ - 81f95bc: Add flow support for newer colors in theme
183
+
184
+ ## 11.1.1
185
+
186
+ ### Patch Changes
187
+
188
+ - 17cfdda: New Icon: power-up-outline
189
+
190
+ ## 11.1.0
191
+
192
+ ### Minor Changes
193
+
194
+ - 03d1f1a: Export system props
195
+
196
+ ## 11.0.2
197
+
198
+ ### Patch Changes
199
+
200
+ - f3b0741: Add icon.applied to theme file
201
+ - 521ee2b: Ensure subcomponents have proper displayName attributes
202
+
203
+ ## 11.0.1
204
+
205
+ ### Patch Changes
206
+
207
+ - 82a6a89: Adjusted styling of selected state to be less confusing for users based on org wide feedback
208
+
209
+ ## 11.0.0
210
+
211
+ ### Major Changes
212
+
213
+ - 3f25fab: Remove themed mixin in favor of functions only
214
+
215
+ - Changes in 10.0.0 made the mixin unnecessary
216
+ - The functions that were created for use with the mixin can now be used standalone for the same purpose.
217
+ - Migration requires removal of all `@include themed` mixin calls. The code inside can stay the same. For example:
218
+
219
+ ```scss
220
+ @include themed {
221
+ color: colors("text.body");
222
+ }
223
+ ```
224
+
225
+ becomes
226
+
227
+ ```scss
228
+ color: colors("text.body");
229
+ ```
230
+
231
+ ### Patch Changes
232
+
233
+ - f28456b: Add overlay theme object
234
+ - a3ed9eb: Patches Menu Group margin issue
235
+
236
+ ## 10.0.0
237
+
238
+ ### Major Changes
239
+
240
+ - 98f063a: Make theme names consistent by removing references to "default-light" and "default-dark"
241
+ - We no longer refer to the "light" theme as "default-light" in the theme object.
242
+ - We no longer refer to the "dark" theme as "default-dark" in the theme object.
243
+ - 98f063a: Change "themed" SCSS mixin setup
244
+ - A parent theme classname of 'theme--light' or 'theme--dark' is no longer required to use the mixin.
245
+ - A separate mixin is offered per theme, instead of a single mixin for all themes.
246
+ - 98f063a: Rename "default" theme to "light"
247
+
248
+ ## 9.0.3
249
+
250
+ ### Patch Changes
251
+
252
+ - a9a06a6: Added aliases for sentiment colors
253
+
254
+ ## 9.0.2
255
+
256
+ ### Patch Changes
257
+
258
+ - 3215099: bug fix for mix blend mode
259
+
260
+ ## 9.0.1
261
+
262
+ ### Patch Changes
263
+
264
+ - 52052ae: Update MenuGroupContainer so that it takes system props instead of css styling
265
+ - 2fc4f88: Adds a `palette` prop to Token and uses the proper accessible color tokens
266
+ - 7a87944: Update @storybook/react to resolve a vulnerability in one of its sub-dependencies (immer)
267
+
268
+ ## 9.0.0
269
+
270
+ ### Major Changes
271
+
272
+ - a71802f: convert shadow tokens to semantic tokens
273
+
274
+ ## 8.8.0
275
+
276
+ ### Minor Changes
277
+
278
+ - 2746920: Add SCSS themed mixin and functions
279
+
280
+ ### Patch Changes
281
+
282
+ - 69ddb8e: Replace instances of Icon colors with semantic names
283
+
284
+ ## 8.7.1
285
+
286
+ ### Patch Changes
287
+
288
+ - 1cf97da: Remove font weight rule from Breadcrumbs styles
289
+
290
+ ## 8.7.0
291
+
292
+ ### Minor Changes
293
+
294
+ - bcfb6eb: Export themes as scss variables
295
+
296
+ ## 8.6.3
297
+
298
+ ### Patch Changes
299
+
300
+ - 777fcd7: Unset inverted icon color when menu item is hovered and active
301
+
302
+ ## 8.6.2
303
+
304
+ ### Patch Changes
305
+
306
+ - 039da3f: Address visual bug on collapsible shadow
307
+
308
+ ## 8.6.1
309
+
310
+ ### Patch Changes
311
+
312
+ - c46c79d: Pressing space on a filter input in listbox triggers a submit, preventing users from entering text with spaces. This fix changes the behavior such that if the input is in focus, the space won't trigger a select.
313
+ - b34b463: Invert the icon colors in menu items to mirror the text behavior.
314
+
315
+ ## 8.6.0
316
+
317
+ ### Minor Changes
318
+
319
+ - d1c8003: Adds data-viz color rotation to the theme file to support data-viz across dark mode and future themes.
320
+
321
+ ## 8.5.2
322
+
323
+ ### Patch Changes
324
+
325
+ - 41b0717: Adds openHeight and collapsedHeight props to Collapsible component for more flexible collapse usage
326
+
327
+ ## 8.5.1
328
+
329
+ ### Patch Changes
330
+
331
+ - 48628f0: Sync icons from Figma
332
+
333
+ ## 8.5.0
334
+
335
+ ### Minor Changes
336
+
337
+ - 343c636: adds tiktok network color to theme, adds tiktok icon, adds sentiment icons
338
+
339
+ ## 8.4.0
340
+
341
+ ### Minor Changes
342
+
343
+ - 311f9bb: Added placement prop to menuButton component
344
+
345
+ ## 8.3.0
346
+
347
+ ### Minor Changes
348
+
349
+ - 13699d6: Updating Link component to include flexbox shorthand props
350
+
351
+ ## 8.2.0
352
+
353
+ ### Minor Changes
354
+
355
+ - a3887f0: Avatar now has an option for predefined color combos in line with design's accessibility and color guidelines. Overrides are still enabled via styled-system.
356
+
357
+ ## 8.1.4
358
+
359
+ ### Patch Changes
360
+
361
+ - c920778: removing duplicate icon
362
+
363
+ ## 8.1.3
364
+
365
+ ### Patch Changes
366
+
367
+ - 90dbdfc: update autosizer import
368
+
369
+ ## 8.1.2
370
+
371
+ ### Patch Changes
372
+
373
+ - e5bb567: update bigcommerce icon name
374
+
375
+ ## 8.1.1
376
+
377
+ ### Patch Changes
378
+
379
+ - b470c46: Fix big commerce icon and naming convention
380
+
381
+ ## 8.1.0
382
+
383
+ ### Minor Changes
384
+
385
+ - cda796b: adds bigcommerce icon
386
+
387
+ ## 8.0.0
388
+
389
+ ### Major Changes
390
+
391
+ - 856797e: This update includes major changes to the theme file structure that enables theming with a thoroughly tested and more intuitive devEx
392
+ - 856797e: This change includes the newest iteration of the theme file that updates a number of paths in the color object to create more logical semantic names.
393
+
394
+ ## 7.7.0
395
+
396
+ ### Minor Changes
397
+
398
+ - dfdb3b5: Added a forwardRef to Modal.Content.
399
+
400
+ ## 7.6.1
401
+
402
+ ### Patch Changes
403
+
404
+ - 9cd384f: Add new icons to the icon library
405
+
406
+ ## 7.6.0
407
+
408
+ ### Minor Changes
409
+
410
+ - b69f92a: fix(token) hover styling for invalid tokens
411
+
412
+ ## 7.5.0
413
+
414
+ ### Minor Changes
415
+
416
+ - 6700ead: This change allows consumers to specify whether or not a Link should be underlined. This work is part of our accessibility initiatives.
417
+
418
+ ## 7.4.2
419
+
420
+ ### Patch Changes
421
+
422
+ - da247d2: update whatsapp icon
423
+
424
+ ## 7.4.1
425
+
426
+ ### Patch Changes
427
+
428
+ - 17fcee6: Revert beta-release feature.
429
+
430
+ ## 7.4.0
431
+
432
+ ### Minor Changes
433
+
434
+ - e1cff9d: Add beta release capability to the Racine development process.
435
+
436
+ ## 7.3.8
437
+
438
+ ### Patch Changes
439
+
440
+ - 80f49f8: Remove npm deprecation from beta release action.
441
+
442
+ ## 7.3.7
443
+
444
+ ### Patch Changes
445
+
446
+ - df202ec: Use Node 15 for beta-release action.
447
+
448
+ ## 7.3.6
449
+
450
+ ### Patch Changes
451
+
452
+ - 3b01ae7: Fix NPM deprecation behavior.
453
+ - f1eabea: Add registry specifier.
454
+
455
+ ## 7.3.5
456
+
457
+ ### Patch Changes
458
+
459
+ - a929081: Fix quoting of package version in deprecate command in beta release action.
460
+
461
+ ## 7.3.4
462
+
463
+ ### Patch Changes
464
+
465
+ - 2fa8f19: Fix beta deprecation command in beta-release action.
466
+
467
+ ## 7.3.3
468
+
469
+ ### Patch Changes
470
+
471
+ - 4fc0375: Fix use of \$BETA_SEMVER env var.
472
+
473
+ ## 7.3.2
474
+
475
+ ### Patch Changes
476
+
477
+ - 9e41c57: Fix auth token access in beta release action.
478
+
479
+ ## 7.3.1
480
+
481
+ ### Patch Changes
482
+
483
+ - d5f607e: Add missing NPM token env var to beta-release action.
484
+
485
+ ## 7.3.0
486
+
487
+ ### Minor Changes
488
+
489
+ - 80a1ed7: Update seeds-networkcolor, add WhatsApp to theme.js
490
+
491
+ ## 7.2.2
492
+
493
+ ### Patch Changes
494
+
495
+ - 4db6157: Fix missing dash in beta-release action.
496
+
497
+ ## 7.2.1
498
+
499
+ ### Patch Changes
500
+
501
+ - 0175581: Update beta release Github action to publish to NPM.
502
+
503
+ ## 7.2.0
504
+
505
+ ### Minor Changes
506
+
507
+ - 4f1ea48: Add beta release Github action.
508
+ - a2f7821: Added subcomponents that support common type styles recommended for product use
509
+
510
+ ## 7.1.0
511
+
512
+ ### Minor Changes
513
+
514
+ - 0113a82: Update table components to render explicit children
515
+
516
+ ## 7.0.2
517
+
518
+ ### Patch Changes
519
+
520
+ - 482968e: Pass inputProps to Checkbox
521
+
522
+ ## 7.0.1
523
+
524
+ ### Patch Changes
525
+
526
+ - 145b487: Align icons within Banner components to the first line of the message, instead of centered
527
+
528
+ ## 7.0.0
529
+
530
+ ### Major Changes
531
+
532
+ - 052802b: This work includes adding semantic color tokens to our Racine theme and updating the Racine components to use the new tokens. Breaking changes include modifications to the the theme properties. Breaking changes include error -> error.color, warning -> warning.color, cta.primary -> cta.primary.color, cta.secondary -> cta.secondary.color, and cta.link -> cta.link.color
533
+
534
+ ## 6.25.2
535
+
536
+ ### Patch Changes
537
+
538
+ - 0a8ab22: fixes yelp addition in Theme.js
539
+ - 0a8ab22: Adds Yelp to theme.js file
540
+
541
+ ## 6.25.1
542
+
543
+ ### Patch Changes
544
+
545
+ - b0b1c60: delay triggering open of modal to run async and prevent render weirdness
546
+ - e97c613: Adds Yelp to theme.js file
547
+
548
+ ## 6.25.0
549
+
550
+ ### Minor Changes
551
+
552
+ - 38b94ac: Bump up seeds packet for Yelp token addition
553
+
554
+ ## 6.24.0
555
+
556
+ ### Minor Changes
557
+
558
+ - e5d8bcb: adds yelp star rating icon to seeds
559
+
560
+ ## 6.23.0
561
+
562
+ ### Minor Changes
563
+
564
+ - 49cb663: Add stories icon
565
+
566
+ ## 6.22.3
567
+
568
+ ### Patch Changes
569
+
570
+ - 4ec7f47: Removes the ARIA role of "button" from the Popout component
571
+
572
+ ## 6.22.2
573
+
574
+ ### Patch Changes
575
+
576
+ - 7a5e031: Make the new dependencies added for the date pickers be peer vs direct dependencies.
577
+
578
+ ## 6.22.1
579
+
580
+ ### Patch Changes
581
+
582
+ - 19d9d3f: revert Remove a11y labels changes
583
+
584
+ ## 6.22.0
585
+
586
+ ### Minor Changes
587
+
588
+ - 6aa35b4: add filled-in cart-plus icon and rename previous cart icon to cart-plus-outline
589
+
590
+ ## 6.21.0
591
+
592
+ ### Minor Changes
593
+
594
+ - cb6244e: make font-weight on Link configurable
595
+ - cc30795: Fix issue with Popout event propagation
596
+
597
+ ### Patch Changes
598
+
599
+ - ea40b82: remove a11y labels and fixed tests
600
+
601
+ ## 6.20.0
602
+
603
+ ### Minor Changes
604
+
605
+ - f0d70f5: add marketo icon
606
+
607
+ ### Patch Changes
608
+
609
+ - cd3d6da: update modal css to use flex for centering
610
+
611
+ ## 6.19.0
612
+
613
+ ### Minor Changes
614
+
615
+ - 9726c45: Add export for dark theme
616
+
617
+ ## 6.18.3
618
+
619
+ ### Patch Changes
620
+
621
+ - 3e505cf: Changes the hyphen for the null case in Numeral.js to an em dash
622
+
623
+ ## 6.18.2
624
+
625
+ ### Patch Changes
626
+
627
+ - b2015e3: # Changes
628
+
629
+ - Fix wording of abbreviation prop comment.
630
+
631
+ ## 6.18.1
632
+
633
+ ### Patch Changes
634
+
635
+ - 4aea53e: # Changes
636
+
637
+ - Update the comment for the abbreviate prop.
638
+ - Move TypeProps back into index.js in order for Seeds prop table to be able to find them automatically.
639
+
640
+ ## 6.18.0
641
+
642
+ ### Minor Changes
643
+
644
+ - 90eaa51: use "standard" when compact fails in Intl.NumberFormat
645
+
646
+ ## 6.17.0
647
+
648
+ ### Minor Changes
649
+
650
+ - 1c45fd1: Added additional color for "Suggestion" badge
651
+
652
+ ## 6.16.0
653
+
654
+ ### Minor Changes
655
+
656
+ - df8fd68: Added `appearance` to Input, with "secondary" being a borderless input.
657
+ - fcffab0: Added `ariaLabel` to the `Button` component.
658
+
659
+ ## 6.15.2
660
+
661
+ ### Patch Changes
662
+
663
+ - 1807bb7: Add Shopify network color from seeds packet
664
+
665
+ ## 6.15.1
666
+
667
+ ### Patch Changes
668
+
669
+ - 1bca469: Update Racine GitHub release process to use Node v14
670
+
671
+ ## 6.15.0
672
+
673
+ ### Minor Changes
674
+
675
+ - 9818e70: ## Improvements
676
+
677
+ ### Behavior Fixes
678
+
679
+ - Ensures abbreviated numbers always include 2 decimal places of precision, by default.
680
+ - Ensures _decimal_ numerals show up to 2 decimal places of precision, by default.
681
+ - Ensures _percent_ numerals show up to 1 decimal places of precision, by default.
682
+ - Ensures _currency_ numerals always display 2 decimal places of precision - in both the display _and_ tooltip text, by default.
683
+ - Makes abbreviated numerals show their _specified_ level of precision in _both_ the display text and tooltip text.
684
+
685
+ ### New Features
686
+
687
+ - Properly handles abbreviations in non-US locales, such as Spain, France, Brazil, and Germany.
688
+ - It also handles abbreviations in _non_-[arabic](https://en.wikipedia.org/wiki/Arabic_numerals) numerals such as [Eastern Arabic](https://en.wikipedia.org/wiki/Eastern_Arabic_numerals).
689
+ - Enables specifying a numeral as _currency_ by simply including the `currency` prop without the `format` prop.
690
+ - Enables specifying an abbreviation threshold (different from the default value of 10000) via the `abbreviate` prop.
691
+
692
+ ### Implementation Improvements
693
+
694
+ - Simplifies the formatting of numbers eliminating the `numeral` [package](https://www.npmjs.com/package/numeral), by relying solely upon the built-in [Intl.NumberFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat).
695
+ - Refactors away long `if-else-if` sequences.
696
+ - Refactors away magic numbers.
697
+
698
+ ### Implementation Fixes
699
+
700
+ - Fixes the use of the `lru-memoize` [package](https://www.npmjs.com/package/lru-memoize#api) to ensure its results are properly cached.
701
+
702
+ ### Other Improvements
703
+
704
+ - Improves the knobs in Numeral's storybook to include more options, including an _unset_ option for the optional props.
705
+
706
+ ## 6.14.1
707
+
708
+ ### Patch Changes
709
+
710
+ - 89dc334: Update Jenkins to use Node v14
711
+
712
+ ## 6.14.0
713
+
714
+ ### Minor Changes
715
+
716
+ - 686fa35: # Improvements
717
+
718
+ - Updates the required version of Node to v14.15.5
719
+
720
+ ## 6.13.0
721
+
722
+ ### Minor Changes
723
+
724
+ - 73e81d1: Updates FormField to accept a labelHidden prop
725
+
726
+ ## 6.12.0
727
+
728
+ ### Minor Changes
729
+
730
+ - e8a64f1: fix(tokeninput) add aria-describedby
731
+
732
+ ### Patch Changes
733
+
734
+ - 6be9173: Add gear icon
735
+
736
+ ## 6.11.2
737
+
738
+ ### Patch Changes
739
+
740
+ - 18ff3c9: Security updates
741
+ - 806b867: Fixes Arrays in Tooltips
742
+
743
+ ## 6.11.1
744
+
745
+ ### Patch Changes
746
+
747
+ - 51604f1: Pass readOnly prop to textarea
748
+
749
+ ## 6.11.0
750
+
751
+ ### Minor Changes
752
+
753
+ - 5c6591d: Smart aria-labels for listbox component
754
+
755
+ ## 6.10.2
756
+
757
+ ### Patch Changes
758
+
759
+ - ba44d23: Adds Canva Icon
760
+
761
+ ## 6.10.1
762
+
763
+ ### Patch Changes
764
+
765
+ - 5881622: Remove Collapsible animation when initially expanded
766
+
767
+ ## 6.10.0
768
+
769
+ ### Minor Changes
770
+
771
+ - 89f4ef8: Publishes individual SVGs in NPM package
772
+
773
+ ## 6.9.1
774
+
775
+ ### Patch Changes
776
+
777
+ - e673a62: [SEC-8155] Deploy CodeQL
778
+
779
+ ## 6.9.0
780
+
781
+ ### Minor Changes
782
+
783
+ - e7f7eac: Added support for individual token icons in TokenInput
784
+
785
+ ### Patch Changes
786
+
787
+ - e7f7eac: Export TypeToastOptions
788
+
789
+ ## 6.8.0
790
+
791
+ ### Minor Changes
792
+
793
+ - a314af7: Add whiteSpace system prop
794
+
795
+ ### Patch Changes
796
+
797
+ - 027eb60: Pass flex-align property into MenuItem
798
+
799
+ ## 6.7.4
800
+
801
+ ### Patch Changes
802
+
803
+ - a2100de: Added ariaDescribedby to FormField type props
804
+ - 26ea7b6: MenuCheckbox now supports indeterminate state
805
+
806
+ ## 6.7.3
807
+
808
+ ### Patch Changes
809
+
810
+ - 4cf1346: Fixes for performance issues in Menu and OverflowList
811
+
812
+ ## 6.7.2
813
+
814
+ ### Patch Changes
815
+
816
+ - d1b6ef7: Added aria-describedby association to FormField and other form components
817
+ - 2618ece: Use aria-pressed in Switch for more accessible component
818
+
819
+ ## 6.7.1
820
+
821
+ ### Patch Changes
822
+
823
+ - e918f98: Don't override menu item with an aria-label
824
+
825
+ ## 6.7.0
826
+
827
+ ### Minor Changes
828
+
829
+ - 0136d44: Update TokenInput event props logic
830
+
831
+ ## 6.6.0
832
+
833
+ ### Minor Changes
834
+
835
+ - 294759c: Add a truncated prop to the Tooltip component
836
+ - 99e34cc: Add border radius token 400
837
+
838
+ ## 6.5.0
839
+
840
+ ### Minor Changes
841
+
842
+ - 3ebb3dc: Add the ability to change the MenuGroup title's element
843
+
844
+ ## 6.4.1
845
+
846
+ ### Patch Changes
847
+
848
+ - b131840: Export TypeToastOptions
849
+
850
+ ## 6.4.0
851
+
852
+ ### Minor Changes
853
+
854
+ - 46e67fa: Export the MenuButtonContext so consumers can selectively close menus
855
+
856
+ ## 6.3.2
857
+
858
+ ### Patch Changes
859
+
860
+ - 3c58977: Remove unneccessary role from Collapsible component
861
+
862
+ ## 6.3.1
863
+
864
+ ### Patch Changes
865
+
866
+ - a5a9d29: Explicitly declared some table styles in DatePicker to prevent css stylesheet overrides on Seeds
867
+
868
+ ## 6.3.0
869
+
870
+ ### Minor Changes
871
+
872
+ - 951dfae: Add autocomplete as a prop to tokeninput so consumers can disable when using a menu
873
+
874
+ ## 6.2.1
875
+
876
+ ### Patch Changes
877
+
878
+ - e78d2c9: # Fix remaining node-fetch vulnerability
879
+
880
+ Use `resolutions` to force `react-popper` to use a more current version of its dependency, `create-react-context`, since we are unready to upgrade `react-popper`.
881
+
882
+ ```
883
+ yarn audit v1.21.1
884
+ ┌───────────────┬──────────────────────────────────────────────────────────────┐
885
+ │ low │ Denial of Service │
886
+ ├───────────────┼──────────────────────────────────────────────────────────────┤
887
+ │ Package │ node-fetch │
888
+ ├───────────────┼──────────────────────────────────────────────────────────────┤
889
+ │ Patched in │ >=2.6.1 <3.0.0-beta.1|| >= 3.0.0-beta.9 │
890
+ ├───────────────┼──────────────────────────────────────────────────────────────┤
891
+ │ Dependency of │ react-popper │
892
+ ├───────────────┼──────────────────────────────────────────────────────────────┤
893
+ │ Path │ react-popper > create-react-context > fbjs > │
894
+ │ │ isomorphic-fetch > node-fetch │
895
+ ├───────────────┼──────────────────────────────────────────────────────────────┤
896
+ │ More info │ https://www.npmjs.com/advisories/1556 │
897
+ └───────────────┴──────────────────────────────────────────────────────────────┘
898
+ ```
899
+
900
+ ## 6.2.0
901
+
902
+ ### Minor Changes
903
+
904
+ - 402e384: make Popout.Content system props overridable
905
+ - 402e384: add SingleDatePicker and DateRangePicker
906
+ - 402e384: add moment, moment flow types
907
+
908
+ ### Patch Changes
909
+
910
+ - 402e384: remove duplicate build process in watch
911
+
912
+ ## 6.1.4
913
+
914
+ ### Patch Changes
915
+
916
+ - d10ba31: Removes double box-shadow focus state on tokenInput
917
+
918
+ ## 6.1.3
919
+
920
+ ### Patch Changes
921
+
922
+ - c31b1d0: Update packages to handle highest priority security vulnerabilities
923
+
924
+ ## 6.1.2
925
+
926
+ ### Patch Changes
927
+
928
+ - 6274b87: Adjust the weight of external-link-alt to match other icons
929
+
930
+ ## 6.1.1
931
+
932
+ ### Patch Changes
933
+
934
+ - 0350000: Fix menu test broken when upgrading React Test Library
935
+
936
+ ## 6.1.0
937
+
938
+ ### Minor Changes
939
+
940
+ - 112712b: Modify the target element a user needs to click in order to close an opened Drawer"
941
+
942
+ ## 6.0.0
943
+
944
+ ### Major Changes
945
+
946
+ - 2e75622: # BREAKING CHANGES to the TokenInput component interface
947
+
948
+ ## Changes
949
+
950
+ ### Added props
951
+
952
+ - `onChangeTokens?: (tokens: TypeTokenSpec[]) => void`
953
+ - `onAddToken?: (tokenSpec: TypeTokenSpec) => void`
954
+ - `onRemoveToken?: (tokenId: string) => void`
955
+ - `onClickToken?: (e: SyntheticEvent<HTMLButtonElement>, tokenId: string) => void`
956
+ - `delimiters?: string[]`
957
+
958
+ ### Removed props
959
+
960
+ - `onTokenClick?: (e: SyntheticEvent<HTMLButtonElement>, token: TypeTokenInputToken) => void`
961
+
962
+ ### Added types
963
+
964
+ - `type TypeTokenSpec = { id: string, text: string, valid?: boolean, }`
965
+
966
+ ### Removed types
967
+
968
+ - `type TypeTokenInputToken = { ...React.ElementConfig<typeof Token>, id: string, children: string, }`
969
+
970
+ ## Discussion
971
+
972
+ The semantics of `TokenInput` have been changed to pass in data - ids and token specs - instead of elements as parameters to the token handler props.
973
+
974
+ Specifically, the `onTokenClick` prop has been replaced with the `onClickToken` to:
975
+
976
+ 1. simply pass the id of the clicked token as opposed to an entire element;
977
+ 1. be consistent with the naming of the other token-oriented props.
978
+
979
+ The `TokenInput` enables either simple or fine-grained control. In most cases, you can simply use the `onChangeTokens` prop. For more control over the creation and deletion of tokens, use the `onAddToken` and `onRemoveToken` props, instead.
980
+
981
+ Also, you can now specify the `delimiters` used to separate the inputted text into new tokens.
982
+
983
+ ### Patch Changes
984
+
985
+ - ff66ead: Update network colors to include new pinterest and linkedin values
986
+
987
+ ## 5.29.3
988
+
989
+ ### Patch Changes
990
+
991
+ - 56c299c: Put min-width on the correct wrapper
992
+
993
+ ## 5.29.2
994
+
995
+ ### Patch Changes
996
+
997
+ - 91e0a01: Add min-width:0 to MenuItem
998
+
999
+ ## 5.29.1
1000
+
1001
+ ### Patch Changes
1002
+
1003
+ - a0f4217: Reverting the upgrade to react-popper
1004
+
1005
+ ## 5.29.0
1006
+
1007
+ ### Minor Changes
1008
+
1009
+ - 9df6933: Bumped `react-popper` to 2.2.4. This is a major version bump which migrates to Popper V2. Now, `@popperjs/core` must be installed as a peer dependency. Additionally, there were two places in the Racine `Popout` component that needed to be updated. The `scheduleUpdate` method has been renamed to `update` and returns a promise, and the `outOfBoundaries` prop has been replaced with `isReferenceHidden` and `hasPopperEscaped`. See [here](https://github.com/popperjs/react-popper/pull/333) for the full release notes.
1010
+
1011
+ ## 5.28.0
1012
+
1013
+ ### Minor Changes
1014
+
1015
+ - e3e595e: Add opportunity type to banner component
1016
+
1017
+ ## 5.27.1
1018
+
1019
+ ### Patch Changes
1020
+
1021
+ - a314a7b: correctly pass readOnly prop to input
1022
+
1023
+ ## 5.27.0
1024
+
1025
+ ### Minor Changes
1026
+
1027
+ - 5ff0e02: Add onClear callback to useMultiSelect hook
1028
+
1029
+ ## 5.26.2
1030
+
1031
+ ### Patch Changes
1032
+
1033
+ - f9ea96f: Attempt to fix OverflowList in webapp jest env
1034
+
1035
+ ## 5.26.1
1036
+
1037
+ ### Patch Changes
1038
+
1039
+ - 8f9c842: Moves the element where a user can close the Drawer by clicking outside of it down to the first child element (the main app) from the body element. The fixes an issue where a user using the dropdown filters clicks inside it will cause the Drawer to accidentally close.
1040
+
1041
+ ## 5.26.0
1042
+
1043
+ ### Minor Changes
1044
+
1045
+ - 1d49713: Creates fall back for color prop on Icon component used in Toast Component
1046
+
1047
+ ## 5.25.0
1048
+
1049
+ ### Minor Changes
1050
+
1051
+ - 108b148: Updates Toast component to use more Icon options
1052
+
1053
+ ## 5.24.2
1054
+
1055
+ ### Patch Changes
1056
+
1057
+ - 0f1c7e6: Bump seeds-networkcolor version
1058
+
1059
+ ## 5.24.1
1060
+
1061
+ ### Patch Changes
1062
+
1063
+ - 9e0268e: fix swapped network colors
1064
+
1065
+ ## 5.24.0
1066
+
1067
+ ### Minor Changes
1068
+
1069
+ - 1effa28: Add network colors for Salesforce, Zendesk, and Hubspot
1070
+
1071
+ ## 5.23.3
1072
+
1073
+ ### Patch Changes
1074
+
1075
+ - 3a7df5e: Add book icon
1076
+
1077
+ ## 5.23.2
1078
+
1079
+ ### Patch Changes
1080
+
1081
+ - c000ba1: MenuItem - allow data-qa-menu-item prop to be overriden
1082
+ - ca38ab7: Various TokenInput type fixes
1083
+
1084
+ ## 5.23.1
1085
+
1086
+ ### Patch Changes
1087
+
1088
+ - 55c3bf8: Globally export TokenInput component
1089
+
1090
+ ## 5.23.0
1091
+
1092
+ ### Minor Changes
1093
+
1094
+ - 3e92a83: Add new TokenInput component
1095
+
1096
+ ## 5.22.4
1097
+
1098
+ ### Patch Changes
1099
+
1100
+ - 9196d49: Add closed caption icon
1101
+
1102
+ ## 5.22.3
1103
+
1104
+ ### Patch Changes
1105
+
1106
+ - 26b8664: Specify react-virtualized 9.18.5 to match webapp
1107
+
1108
+ ## 5.22.2
1109
+
1110
+ ### Patch Changes
1111
+
1112
+ - 42755dd: update Input isValid prop to force boolean values in rendered elements
1113
+
1114
+ ## 5.22.1
1115
+
1116
+ ### Patch Changes
1117
+
1118
+ - e5f8435: Fix spacing of form field title when using helper text
1119
+
1120
+ ## 5.22.0
1121
+
1122
+ ### Minor Changes
1123
+
1124
+ - 6d29a11: make Fieldset more composable with child components
1125
+
1126
+ ### Patch Changes
1127
+
1128
+ - 6d29a11: add jest flow typings
1129
+
1130
+ ## 5.21.0
1131
+
1132
+ ### Minor Changes
1133
+
1134
+ - 95b488d: Add OverflowList component
1135
+
1136
+ ## 5.20.0
1137
+
1138
+ ### Minor Changes
1139
+
1140
+ - ab4fb13: Add Google Business Messages network color to theme
1141
+
1142
+ ## 5.19.2
1143
+
1144
+ ### Patch Changes
1145
+
1146
+ - 1e1684d: Change children and content prop types of Tooltip to React.Node
1147
+ - 73b1380: Add Layout System Props group to Text component
1148
+
1149
+ ## 5.19.1
1150
+
1151
+ ### Patch Changes
1152
+
1153
+ - b232234: Only add aria-describedby on tooltips that are open
1154
+
1155
+ ## 5.19.0
1156
+
1157
+ ### Minor Changes
1158
+
1159
+ - ec1dde4: Remove unused icons: `gplus`, `gplus-alt`, `pinterest-square`, `reddit-square`, `rss-square`, `twitter2`, `youtube-square`
1160
+
1161
+ ### Patch Changes
1162
+
1163
+ - 5010b66: Add google-business-messages icon
1164
+
1165
+ ## 5.18.3
1166
+
1167
+ ### Patch Changes
1168
+
1169
+ - 2b30923: Add `disabled` prop for Menu.Group and Listbox.Group
1170
+ - 2b30923: Design tweaks for Menu and Listbox
1171
+
1172
+ ## 5.18.2
1173
+
1174
+ ### Patch Changes
1175
+
1176
+ - 31c5234: Update overflow props on breadcrumb component to be optional
1177
+
1178
+ ## 5.18.1
1179
+
1180
+ ### Patch Changes
1181
+
1182
+ - c39760f: Adds disabled styles for disabled Listbox items
1183
+ - c39760f: Align ListboxButton popouts to bottom-start by default
1184
+ - cdfedad: Fix flow issue with “size” prop on ListboxButton
1185
+
1186
+ ## 5.18.0
1187
+
1188
+ ### Minor Changes
1189
+
1190
+ - d6d3593: Add overflow menu capability to Breadcrumb
1191
+
1192
+ ## 5.17.6
1193
+
1194
+ ### Patch Changes
1195
+
1196
+ - b3d2014: Make Token a non-submit button
1197
+
1198
+ ## 5.17.5
1199
+
1200
+ ### Patch Changes
1201
+
1202
+ - 2ae8896: Set tabIndex on Checkbox input instead of container
1203
+ - 7809bce: Add archive icon
1204
+
1205
+ ## 5.17.4
1206
+
1207
+ ### Patch Changes
1208
+
1209
+ - 9a5f35e: Fix size of x icon in Toast
1210
+ - db90795: EmptyState: Hide wrapping box when media is not provided
1211
+
1212
+ ## 5.17.3
1213
+
1214
+ ### Patch Changes
1215
+
1216
+ - a0ec170: Makes EmptyState's media prop optional
1217
+ - 8ef9296: Flow fix for Menu
1218
+
1219
+ ## 5.17.2
1220
+
1221
+ ### Patch Changes
1222
+
1223
+ - 14c59ac: Minor bug fixes for Menu and Listbox
1224
+
1225
+ ## 5.17.1
1226
+
1227
+ ### Patch Changes
1228
+
1229
+ - 35a189c: Change version of scroll-into-view-if-needed to match web app
1230
+
1231
+ ## 5.17.0
1232
+
1233
+ ### Minor Changes
1234
+
1235
+ - ca65014: Add Menu and Listbox components
1236
+
1237
+ ## 5.16.0
1238
+
1239
+ ### Minor Changes
1240
+
1241
+ - ac3924c: Allow styling to FormField component and clean up of qa fields
1242
+
1243
+ ## 5.15.9
1244
+
1245
+ ### Patch Changes
1246
+
1247
+ - 1b7230b: Add Facebook Groups icon
1248
+
1249
+ ## 5.15.8
1250
+
1251
+ ### Patch Changes
1252
+
1253
+ - 7043ff1: raw-loader is used in Toast so it needs to be a dependency
1254
+ - d7016f9: Changing the default precision for the Numeral component when dealing with currencies
1255
+ - bfe073a: Making the content prop on the Popout and Tooltip components optional
1256
+ - c8f17c1: Add Glassdoor color
1257
+ - e6c98a1: Disable interactivity for "pill" tooltips
1258
+
1259
+ ## 5.15.7
1260
+
1261
+ ### Patch Changes
1262
+
1263
+ - 8f23014: Add Glassdoor icon
1264
+
1265
+ ## 5.15.6
1266
+
1267
+ ### Patch Changes
1268
+
1269
+ - 8b33446: Adjusted animation on skeleton component now communicates forward progress
1270
+ - 8ac502a: Toast updated to use semantic Seeds values
1271
+
1272
+ ## 5.15.5
1273
+
1274
+ ### Patch Changes
1275
+
1276
+ - 2a29537: Fixed a small bug on checkbox where the pill variation did not have a transition on hover.
1277
+ - 240ea47: Update Slack icon to match their new logo
1278
+
1279
+ ## 5.15.4
1280
+
1281
+ ### Patch Changes
1282
+
1283
+ - 9569ba6: Adjust toast font size and alignment
1284
+
1285
+ ## 5.15.3
1286
+
1287
+ ### Patch Changes
1288
+
1289
+ - d88ff57: Add qa attributes to Toast component
1290
+
1291
+ ## 5.15.2
1292
+
1293
+ ### Patch Changes
1294
+
1295
+ - b9fa5ba: Update react-toastify
1296
+
1297
+ ## 5.15.1
1298
+
1299
+ ### Patch Changes
1300
+
1301
+ - feeb946: Set correct width for toasts, regardless of content
1302
+ - 20c9fd4: Fix import statement for react-toastify css
1303
+
1304
+ ## 5.15.0
1305
+
1306
+ ### Minor Changes
1307
+
1308
+ - 8ccd0ba: Add Toast component
1309
+ - 841eaee: Add Skeleton component
1310
+
1311
+ ## 5.14.0
1312
+
1313
+ ### Minor Changes
1314
+
1315
+ - c81af7d: Make the `align`, `direction`, and `space` props of the Stack component accept responsive values
1316
+
1317
+ ## 5.13.2
1318
+
1319
+ ### Patch Changes
1320
+
1321
+ - 051d592: Set default background color on Card
1322
+
1323
+ ## 5.13.1
1324
+
1325
+ ### Patch Changes
1326
+
1327
+ - df2010b: Fix common `bg` prop not being respected
1328
+
1329
+ ## 5.13.0
1330
+
1331
+ ### Minor Changes
1332
+
1333
+ - 73bac2f: Add CSS grid props to Box component
1334
+
1335
+ ## 5.12.2
1336
+
1337
+ ### Patch Changes
1338
+
1339
+ - 5d46f54: Fix z-index bug on Card
1340
+
1341
+ ## 5.12.1
1342
+
1343
+ ### Patch Changes
1344
+
1345
+ - 6646e97: Add Card to package exports
1346
+
1347
+ ## 5.12.0
1348
+
1349
+ ### Minor Changes
1350
+
1351
+ - d26a365: Add a Card component
1352
+
1353
+ ### Patch Changes
1354
+
1355
+ - 79c0f4c: Additional condensed message spacing tweaks
1356
+
1357
+ ## 5.11.0
1358
+
1359
+ ### Minor Changes
1360
+
1361
+ - 55b5a44: The Drawer.Closebutton is changed into a pill button instead of the default in order to highlight the hover state
1362
+
1363
+ ### Patch Changes
1364
+
1365
+ - 270cb4d: Spacing adjustments for Messages
1366
+
1367
+ ## 5.10.0
1368
+
1369
+ ### Minor Changes
1370
+
1371
+ - 2462c04: Message.Footer should be nowrap when in condensed
1372
+
1373
+ ## 5.9.0
1374
+
1375
+ ### Minor Changes
1376
+
1377
+ - 8acb826: Add `stretch` alignment option for the Stack component
1378
+
1379
+ ### Patch Changes
1380
+
1381
+ - 83849af: add flow types for border(Top|Bottom)(Left|Right)Radius, fix className flow type collision on styled-components common props
1382
+
1383
+ ## 5.8.0
1384
+
1385
+ ### Minor Changes
1386
+
1387
+ - 1eab2a5: Add `trophy-outline` icon
1388
+
1389
+ ## 5.7.4
1390
+
1391
+ ### Patch Changes
1392
+
1393
+ - d36f49a: Adjust Message.Header padding for condensed density
1394
+
1395
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
1396
+
1397
+ <a name="5.7.3"></a>
1398
+
1399
+ ## [5.7.3](https://github.com/sproutsocial/racine/compare/v5.7.2...v5.7.3) (2020-04-13)
1400
+
1401
+ <a name="5.7.2"></a>
1402
+
1403
+ ## [5.7.2](https://github.com/sproutsocial/racine/compare/v5.7.1...v5.7.2) (2020-04-13)
1404
+
1405
+ ### Bug Fixes
1406
+
1407
+ - **Portal:** make component safe for SSR ([#780](https://github.com/sproutsocial/racine/issues/780)) ([51501c9](https://github.com/sproutsocial/racine/commit/51501c9))
1408
+
1409
+ <a name="5.7.1"></a>
1410
+
1411
+ ## [5.7.1](https://github.com/sproutsocial/racine/compare/v5.7.0...v5.7.1) (2020-04-09)
1412
+
1413
+ ### Bug Fixes
1414
+
1415
+ - **Message:** update condensed avatar size CUSTCARE-379 ([#778](https://github.com/sproutsocial/racine/issues/778)) ([317b77f](https://github.com/sproutsocial/racine/commit/317b77f))
1416
+
1417
+ <a name="5.7.0"></a>
1418
+
1419
+ # [5.7.0](https://github.com/sproutsocial/racine/compare/v5.6.1...v5.7.0) (2020-04-08)
1420
+
1421
+ ### Features
1422
+
1423
+ - **Message:** add condensed density CUSTCARE-379 ([#777](https://github.com/sproutsocial/racine/issues/777)) ([cdf5dd1](https://github.com/sproutsocial/racine/commit/cdf5dd1))
1424
+
1425
+ <a name="5.6.1"></a>
1426
+
1427
+ ## [5.6.1](https://github.com/sproutsocial/racine/compare/v5.6.0...v5.6.1) (2020-04-01)
1428
+
1429
+ ### Bug Fixes
1430
+
1431
+ - **Switch:** fix flow type definition ([#775](https://github.com/sproutsocial/racine/issues/775)) ([ede9326](https://github.com/sproutsocial/racine/commit/ede9326))
1432
+
1433
+ <a name="5.6.0"></a>
1434
+
1435
+ # [5.6.0](https://github.com/sproutsocial/racine/compare/v5.5.2...v5.6.0) (2020-03-31)
1436
+
1437
+ ### Features
1438
+
1439
+ - add standardized breakpoints for responsive props ([#764](https://github.com/sproutsocial/racine/issues/764)) ([87b8f56](https://github.com/sproutsocial/racine/commit/87b8f56))
1440
+
1441
+ <a name="5.5.2"></a>
1442
+
1443
+ ## [5.5.2](https://github.com/sproutsocial/racine/compare/v5.5.1...v5.5.2) (2020-03-24)
1444
+
1445
+ <a name="5.5.1"></a>
1446
+
1447
+ ## [5.5.1](https://github.com/sproutsocial/racine/compare/v5.5.0...v5.5.1) (2020-03-24)
1448
+
1449
+ ### Bug Fixes
1450
+
1451
+ - **Message:** correct innerRef prop flow type ([#772](https://github.com/sproutsocial/racine/issues/772)) ([624f1e8](https://github.com/sproutsocial/racine/commit/624f1e8))
1452
+
1453
+ <a name="5.5.0"></a>
1454
+
1455
+ # [5.5.0](https://github.com/sproutsocial/racine/compare/v5.4.2...v5.5.0) (2020-03-16)
1456
+
1457
+ ### Bug Fixes
1458
+
1459
+ - **LoaderButton:** fix secondary appearance ([#767](https://github.com/sproutsocial/racine/issues/767)) ([bc746a9](https://github.com/sproutsocial/racine/commit/bc746a9))
1460
+ - **Switch:** fix “on” state ([#769](https://github.com/sproutsocial/racine/issues/769)) ([e964b3d](https://github.com/sproutsocial/racine/commit/e964b3d))
1461
+
1462
+ ### Features
1463
+
1464
+ - **Message:** add Avatar subcomponent ([#766](https://github.com/sproutsocial/racine/issues/766)) ([9d9eaa3](https://github.com/sproutsocial/racine/commit/9d9eaa3))
1465
+
1466
+ <a name="5.4.2"></a>
1467
+
1468
+ ## [5.4.2](https://github.com/sproutsocial/racine/compare/v5.4.1...v5.4.2) (2020-03-11)
1469
+
1470
+ <a name="5.4.1"></a>
1471
+
1472
+ ## [5.4.1](https://github.com/sproutsocial/racine/compare/v5.4.0...v5.4.1) (2020-03-09)
1473
+
1474
+ <a name="5.4.0"></a>
1475
+
1476
+ # [5.4.0](https://github.com/sproutsocial/racine/compare/v5.3.0...v5.4.0) (2020-03-04)
1477
+
1478
+ ### Bug Fixes
1479
+
1480
+ - **Avatar:** add margin 0 to image ([f4432c9](https://github.com/sproutsocial/racine/commit/f4432c9))
1481
+
1482
+ ### Features
1483
+
1484
+ - **Breadcrumb:** creation of the breadcrumb component ([#759](https://github.com/sproutsocial/racine/issues/759)) ([9bb78a7](https://github.com/sproutsocial/racine/commit/9bb78a7))
1485
+
1486
+ <a name="5.3.0"></a>
1487
+
1488
+ # [5.3.0](https://github.com/sproutsocial/racine/compare/v5.2.0...v5.3.0) (2020-03-03)
1489
+
1490
+ ### Bug Fixes
1491
+
1492
+ - **Banner:** switch to correct icons ([7fa53a2](https://github.com/sproutsocial/racine/commit/7fa53a2))
1493
+ - **ChartLegend:** fix label text color ([#756](https://github.com/sproutsocial/racine/issues/756)) ([cd68cf9](https://github.com/sproutsocial/racine/commit/cd68cf9))
1494
+
1495
+ ### Features
1496
+
1497
+ - **utils:** added border radius system props ([#758](https://github.com/sproutsocial/racine/issues/758)) ([0fae6f0](https://github.com/sproutsocial/racine/commit/0fae6f0))
1498
+ - add Avatar component ([#760](https://github.com/sproutsocial/racine/issues/760)) ([227c042](https://github.com/sproutsocial/racine/commit/227c042))
1499
+
1500
+ <a name="5.2.0"></a>
1501
+
1502
+ # [5.2.0](https://github.com/sproutsocial/racine/compare/v5.1.0...v5.2.0) (2020-02-24)
1503
+
1504
+ ### Features
1505
+
1506
+ - **Banner:** rename Alert to Banner, new design ([#743](https://github.com/sproutsocial/racine/issues/743)) ([571761e](https://github.com/sproutsocial/racine/commit/571761e))
1507
+
1508
+ <a name="5.1.0"></a>
1509
+
1510
+ # [5.1.0](https://github.com/sproutsocial/racine/compare/v5.0.0...v5.1.0) (2020-02-20)
1511
+
1512
+ ### Bug Fixes
1513
+
1514
+ - **icons:** fix misspelling in icon deprecation map ([5d24ca3](https://github.com/sproutsocial/racine/commit/5d24ca3))
1515
+ - **icons:** update Tripadvisor Icon ([#734](https://github.com/sproutsocial/racine/issues/734)) ([a728543](https://github.com/sproutsocial/racine/commit/a728543))
1516
+ - **Modal:** add flow types for Modal.Content ([#741](https://github.com/sproutsocial/racine/issues/741)) ([f2e4f42](https://github.com/sproutsocial/racine/commit/f2e4f42))
1517
+
1518
+ ### Features
1519
+
1520
+ - **icons:** add comment lines alt outline icon ([#747](https://github.com/sproutsocial/racine/issues/747)) ([db669a7](https://github.com/sproutsocial/racine/commit/db669a7))
1521
+ - **icons:** add save assets icon ([#746](https://github.com/sproutsocial/racine/issues/746)) ([b3dedb0](https://github.com/sproutsocial/racine/commit/b3dedb0))
1522
+ - **Popout:** add focusLockProps prop ([#748](https://github.com/sproutsocial/racine/issues/748)) ([3600af6](https://github.com/sproutsocial/racine/commit/3600af6))
1523
+
1524
+ <a name="5.0.0"></a>
1525
+
1526
+ # [5.0.0](https://github.com/sproutsocial/racine/compare/v4.6.2...v5.0.0) (2020-02-05)
1527
+
1528
+ ### Chores
1529
+
1530
+ - merge nectar branch into master ([#732](https://github.com/sproutsocial/racine/issues/732)) ([2362a24](https://github.com/sproutsocial/racine/commit/2362a24))
1531
+
1532
+ ### BREAKING CHANGES
1533
+
1534
+ - All components have now been switched over to the refreshed, "Nectar" aesthetic.
1535
+
1536
+ <a name="4.6.2"></a>
1537
+
1538
+ ## [4.6.2](https://github.com/sproutsocial/racine/compare/v4.6.1...v4.6.2) (2020-01-29)
1539
+
1540
+ <a name="4.6.1"></a>
1541
+
1542
+ ## [4.6.1](https://github.com/sproutsocial/racine/compare/v4.6.0...v4.6.1) (2020-01-28)
1543
+
1544
+ <a name="4.6.0"></a>
1545
+
1546
+ # [4.6.0](https://github.com/sproutsocial/racine/compare/v4.5.0...v4.6.0) (2020-01-28)
1547
+
1548
+ ### Features
1549
+
1550
+ - **icons:** add density control icons ([#713](https://github.com/sproutsocial/racine/issues/713)) ([2ba7e11](https://github.com/sproutsocial/racine/commit/2ba7e11))
1551
+ - **icons:** add helper for including icons in new projects ([#580](https://github.com/sproutsocial/racine/issues/580)) ([ea9082d](https://github.com/sproutsocial/racine/commit/ea9082d))
1552
+
1553
+ ### Performance Improvements
1554
+
1555
+ - **FormField:** decrease render depth of FormField ([#714](https://github.com/sproutsocial/racine/issues/714)) ([4ec706e](https://github.com/sproutsocial/racine/commit/4ec706e))
1556
+
1557
+ <a name="4.5.0"></a>
1558
+
1559
+ # [4.5.0](https://github.com/sproutsocial/racine/compare/v4.4.3...v4.5.0) (2020-01-15)
1560
+
1561
+ ### Bug Fixes
1562
+
1563
+ - **Button:** outline and active buttons use neutral 800 ([#709](https://github.com/sproutsocial/racine/issues/709)) ([9065307](https://github.com/sproutsocial/racine/commit/9065307))
1564
+ - **Message:** adjust and clean up spacing on message ([#712](https://github.com/sproutsocial/racine/issues/712)) ([1c9c41c](https://github.com/sproutsocial/racine/commit/1c9c41c))
1565
+ - **Tooltip:** wire up zIndex prop ([#711](https://github.com/sproutsocial/racine/issues/711)) ([1733f62](https://github.com/sproutsocial/racine/commit/1733f62)), closes [#496](https://github.com/sproutsocial/racine/issues/496)
1566
+ - **utils:** fix bad ref. to network color for fb-aud-net in theme util ([#710](https://github.com/sproutsocial/racine/issues/710)) ([03451ba](https://github.com/sproutsocial/racine/commit/03451ba))
1567
+
1568
+ ### Features
1569
+
1570
+ - **icons:** puzzle piece ([#706](https://github.com/sproutsocial/racine/issues/706)) ([b32263c](https://github.com/sproutsocial/racine/commit/b32263c))
1571
+
1572
+ <a name="4.4.3"></a>
1573
+
1574
+ ## [4.4.3](https://github.com/sproutsocial/racine/compare/v4.4.2...v4.4.3) (2020-01-13)
1575
+
1576
+ ### Bug Fixes
1577
+
1578
+ - **Button:** enable backface visibility on pill button ([#707](https://github.com/sproutsocial/racine/issues/707)) ([331970d](https://github.com/sproutsocial/racine/commit/331970d))
1579
+ - **Message:** remove unneeded props from message button ([#708](https://github.com/sproutsocial/racine/issues/708)) ([ce8b129](https://github.com/sproutsocial/racine/commit/ce8b129))
1580
+ - **Popout:** fix onClose and onOpen trigger behavior ([#705](https://github.com/sproutsocial/racine/issues/705)) ([6773ed6](https://github.com/sproutsocial/racine/commit/6773ed6))
1581
+
1582
+ <a name="4.4.2"></a>
1583
+
1584
+ ## [4.4.2](https://github.com/sproutsocial/racine/compare/v4.4.1...v4.4.2) (2019-12-19)
1585
+
1586
+ ### Bug Fixes
1587
+
1588
+ - **Popout:** revert [#695](https://github.com/sproutsocial/racine/issues/695) ([68a478c](https://github.com/sproutsocial/racine/commit/68a478c))
1589
+
1590
+ <a name="4.4.1"></a>
1591
+
1592
+ ## [4.4.1](https://github.com/sproutsocial/racine/compare/v4.4.0...v4.4.1) (2019-12-18)
1593
+
1594
+ ### Bug Fixes
1595
+
1596
+ - **Stack:** wrap items in div to isolate styles ([#702](https://github.com/sproutsocial/racine/issues/702)) ([1f7589a](https://github.com/sproutsocial/racine/commit/1f7589a))
1597
+
1598
+ <a name="4.4.0"></a>
1599
+
1600
+ # [4.4.0](https://github.com/sproutsocial/racine/compare/v4.3.0...v4.4.0) (2019-12-17)
1601
+
1602
+ ### Bug Fixes
1603
+
1604
+ - **Popout:** clean up a11y for tooltip and popout ([#695](https://github.com/sproutsocial/racine/issues/695)) ([1b6a137](https://github.com/sproutsocial/racine/commit/1b6a137))
1605
+
1606
+ ### Features
1607
+
1608
+ - add Stack component ([#693](https://github.com/sproutsocial/racine/issues/693)) ([be75397](https://github.com/sproutsocial/racine/commit/be75397))
1609
+
1610
+ <a name="4.3.0"></a>
1611
+
1612
+ # [4.3.0](https://github.com/sproutsocial/racine/compare/v4.2.0...v4.3.0) (2019-12-16)
1613
+
1614
+ ### Features
1615
+
1616
+ - **icons:** add dropbox and google drive icons ([74dfa52](https://github.com/sproutsocial/racine/commit/74dfa52))
1617
+
1618
+ <a name="4.2.0"></a>
1619
+
1620
+ # [4.2.0](https://github.com/sproutsocial/racine/compare/v4.1.2...v4.2.0) (2019-12-12)
1621
+
1622
+ ### Features
1623
+
1624
+ - Enable icon linting + further icon optimization ([#694](https://github.com/sproutsocial/racine/issues/694)) ([5914497](https://github.com/sproutsocial/racine/commit/5914497))
1625
+
1626
+ <a name="4.1.2"></a>
1627
+
1628
+ ## [4.1.2](https://github.com/sproutsocial/racine/compare/v4.1.1...v4.1.2) (2019-12-11)
1629
+
1630
+ ### Bug Fixes
1631
+
1632
+ - **Modal:** fix ReactModalAdapter class names ([#692](https://github.com/sproutsocial/racine/issues/692)) ([8e184cc](https://github.com/sproutsocial/racine/commit/8e184cc))
1633
+
1634
+ <a name="4.1.1"></a>
1635
+
1636
+ ## [4.1.1](https://github.com/sproutsocial/racine/compare/v4.1.0...v4.1.1) (2019-12-04)
1637
+
1638
+ ### Bug Fixes
1639
+
1640
+ - **Message:** make densities and context available as subs of Me… ([#687](https://github.com/sproutsocial/racine/issues/687)) ([1bd9fdf](https://github.com/sproutsocial/racine/commit/1bd9fdf))
1641
+
1642
+ <a name="4.1.0"></a>
1643
+
1644
+ # [4.1.0](https://github.com/sproutsocial/racine/compare/v4.0.0...v4.1.0) (2019-12-03)
1645
+
1646
+ ### Features
1647
+
1648
+ - add Message component ([#671](https://github.com/sproutsocial/racine/issues/671)) ([1d279d4](https://github.com/sproutsocial/racine/commit/1d279d4))
1649
+ - **Drawer:** drawer content should accept system props ([#686](https://github.com/sproutsocial/racine/issues/686)) ([fb93deb](https://github.com/sproutsocial/racine/commit/fb93deb))
1650
+
1651
+ <a name="4.0.0"></a>
1652
+
1653
+ # [4.0.0](https://github.com/sproutsocial/racine/compare/v3.36.0...v4.0.0) (2019-12-02)
1654
+
1655
+ ### BREAKING CHANGES
1656
+
1657
+ - Components must be wrapped in a ThemeProvider
1658
+ - **Modal:** The API of the Modal component has changed. Visit Seeds for updated documentation.
1659
+ - **Drawer:** The API of the Drawer component has changed. Visit Seeds for updated documentation.
1660
+ - components must now be wrapped in a ThemeProvider
1661
+
1662
+ ### Bug Fixes
1663
+
1664
+ - remove theme object from default props ([#574](https://github.com/sproutsocial/racine/issues/574)) ([ffd5d1b](https://github.com/sproutsocial/racine/commit/ffd5d1b))
1665
+ - **Checkbox:** align check when labels wrap ([3ea0861](https://github.com/sproutsocial/racine/commit/3ea0861))
1666
+ - **Checkbox:** fix qa attributes ([0db753e](https://github.com/sproutsocial/racine/commit/0db753e))
1667
+ - **Checkbox:** keep border when checkbox is focused ([#683](https://github.com/sproutsocial/racine/issues/683)) ([fd7aaab](https://github.com/sproutsocial/racine/commit/fd7aaab))
1668
+ - **Checkbox:** refactor default checkboxes for perf ([#668](https://github.com/sproutsocial/racine/issues/668)) ([2b93677](https://github.com/sproutsocial/racine/commit/2b93677))
1669
+ - **Modal:** add border to footer via system prop ([38a0dbf](https://github.com/sproutsocial/racine/commit/38a0dbf))
1670
+ - **Modal:** add border top to footer ([a6e6544](https://github.com/sproutsocial/racine/commit/a6e6544))
1671
+ - **Modal:** fix logic for close button ([7fb5115](https://github.com/sproutsocial/racine/commit/7fb5115))
1672
+
1673
+ ### Chores
1674
+
1675
+ - remove hardcoded themes ([10d44b0](https://github.com/sproutsocial/racine/commit/10d44b0))
1676
+
1677
+ ### Features
1678
+
1679
+ - **Drawer:** add ability to customize components further ([#667](https://github.com/sproutsocial/racine/issues/667)) ([1b4dc99](https://github.com/sproutsocial/racine/commit/1b4dc99))
1680
+ - **Drawer:** remove layout opinions and header prop, add esc ke… ([#557](https://github.com/sproutsocial/racine/issues/557)) ([af3fd00](https://github.com/sproutsocial/racine/commit/af3fd00))
1681
+ - **Modal:** remove opinionated modal styles ([#629](https://github.com/sproutsocial/racine/issues/629)) ([6fb5dd5](https://github.com/sproutsocial/racine/commit/6fb5dd5))
1682
+ - **Select:** add innerRef to Select ([#673](https://github.com/sproutsocial/racine/issues/673)) ([fab3d79](https://github.com/sproutsocial/racine/commit/fab3d79))
1683
+
1684
+ <a name="3.36.0"></a>
1685
+
1686
+ # [3.36.0](https://github.com/sproutsocial/racine/compare/v3.35.3...v3.36.0) (2019-11-14)
1687
+
1688
+ ### Bug Fixes
1689
+
1690
+ - **Select:** fix onChange event type ([#670](https://github.com/sproutsocial/racine/issues/670)) ([da57248](https://github.com/sproutsocial/racine/commit/da57248))
1691
+ - **Tabs:** add bottom border to tabs ([#656](https://github.com/sproutsocial/racine/issues/656)) ([1c7bf62](https://github.com/sproutsocial/racine/commit/1c7bf62))
1692
+
1693
+ ### Features
1694
+
1695
+ - **Popout:** add option to mount using portal ([#666](https://github.com/sproutsocial/racine/issues/666)) ([672e760](https://github.com/sproutsocial/racine/commit/672e760))
1696
+
1697
+ <a name="3.35.3"></a>
1698
+
1699
+ ## [3.35.3](https://github.com/sproutsocial/racine/compare/v3.35.2...v3.35.3) (2019-11-06)
1700
+
1701
+ ### Bug Fixes
1702
+
1703
+ - **Link:** add default type to links as buttons ([#665](https://github.com/sproutsocial/racine/issues/665)) ([bf0d14f](https://github.com/sproutsocial/racine/commit/bf0d14f))
1704
+
1705
+ <a name="3.35.2"></a>
1706
+
1707
+ ## [3.35.2](https://github.com/sproutsocial/racine/compare/v3.35.1...v3.35.2) (2019-11-05)
1708
+
1709
+ <a name="3.35.1"></a>
1710
+
1711
+ ## [3.35.1](https://github.com/sproutsocial/racine/compare/v3.35.0...v3.35.1) (2019-11-04)
1712
+
1713
+ <a name="3.35.0"></a>
1714
+
1715
+ # [3.35.0](https://github.com/sproutsocial/racine/compare/v3.34.0...v3.35.0) (2019-11-04)
1716
+
1717
+ ### Bug Fixes
1718
+
1719
+ - **EmptyState:** generalize subtext flow type ([#657](https://github.com/sproutsocial/racine/issues/657)) ([4589744](https://github.com/sproutsocial/racine/commit/4589744))
1720
+ - **icons:** remove unused icons ([#640](https://github.com/sproutsocial/racine/issues/640)) ([3a27bef](https://github.com/sproutsocial/racine/commit/3a27bef))
1721
+
1722
+ ### Features
1723
+
1724
+ - **icons:** add keyboard icon ([#658](https://github.com/sproutsocial/racine/issues/658)) ([afe781b](https://github.com/sproutsocial/racine/commit/afe781b))
1725
+
1726
+ <a name="3.34.0"></a>
1727
+
1728
+ # [3.34.0](https://github.com/sproutsocial/racine/compare/v3.33.0...v3.34.0) (2019-10-28)
1729
+
1730
+ ### Bug Fixes
1731
+
1732
+ - **Link:** make selector casing consistent ([#655](https://github.com/sproutsocial/racine/issues/655)) ([830864a](https://github.com/sproutsocial/racine/commit/830864a))
1733
+
1734
+ ### Features
1735
+
1736
+ - **icons:** add arrow-left-line ([#653](https://github.com/sproutsocial/racine/issues/653)) ([8364a3d](https://github.com/sproutsocial/racine/commit/8364a3d))
1737
+ - **icons:** add click-to-view icon ([#652](https://github.com/sproutsocial/racine/issues/652)) ([7adb673](https://github.com/sproutsocial/racine/commit/7adb673))
1738
+
1739
+ <a name="3.33.0"></a>
1740
+
1741
+ # [3.33.0](https://github.com/sproutsocial/racine/compare/v3.32.0...v3.33.0) (2019-10-23)
1742
+
1743
+ ### Bug Fixes
1744
+
1745
+ - **icons:** clean up follow-outline icon markup ([#651](https://github.com/sproutsocial/racine/issues/651)) ([3052436](https://github.com/sproutsocial/racine/commit/3052436))
1746
+ - **LoaderButton:** center loader in all browsers ([#649](https://github.com/sproutsocial/racine/issues/649)) ([2c620f3](https://github.com/sproutsocial/racine/commit/2c620f3))
1747
+ - **Popout:** use referenceElement to workaround memory leak ([#642](https://github.com/sproutsocial/racine/issues/642)) ([7415261](https://github.com/sproutsocial/racine/commit/7415261))
1748
+
1749
+ ### Features
1750
+
1751
+ - **icons:** add dislike icons ([#650](https://github.com/sproutsocial/racine/issues/650)) ([89e1f86](https://github.com/sproutsocial/racine/commit/89e1f86))
1752
+ - **utils:** add cursor system prop ([#648](https://github.com/sproutsocial/racine/issues/648)) ([856e6ac](https://github.com/sproutsocial/racine/commit/856e6ac))
1753
+
1754
+ <a name="3.32.0"></a>
1755
+
1756
+ # [3.32.0](https://github.com/sproutsocial/racine/compare/v3.31.0...v3.32.0) (2019-10-22)
1757
+
1758
+ ### Bug Fixes
1759
+
1760
+ - **Collapsible:** remove default height ([#644](https://github.com/sproutsocial/racine/issues/644)) ([029462a](https://github.com/sproutsocial/racine/commit/029462a))
1761
+ - align qa selectors with standards ([#635](https://github.com/sproutsocial/racine/issues/635)) ([f552594](https://github.com/sproutsocial/racine/commit/f552594))
1762
+ - **icons:** asset library and asset library outline icons ([#646](https://github.com/sproutsocial/racine/issues/646)) ([0f60ec1](https://github.com/sproutsocial/racine/commit/0f60ec1))
1763
+ - **Image, Numeral:** design and attribute fixes ([bba32e5](https://github.com/sproutsocial/racine/commit/bba32e5))
1764
+ - **SegmentedControl, Modal, Drawer:** IE and Chrome fixes ([#647](https://github.com/sproutsocial/racine/issues/647)) ([294fab0](https://github.com/sproutsocial/racine/commit/294fab0))
1765
+
1766
+ ### Features
1767
+
1768
+ - **icons:** add flag outline icon ([#645](https://github.com/sproutsocial/racine/issues/645)) ([8331047](https://github.com/sproutsocial/racine/commit/8331047))
1769
+
1770
+ <a name="3.31.0"></a>
1771
+
1772
+ # [3.31.0](https://github.com/sproutsocial/racine/compare/v3.30.3...v3.31.0) (2019-10-17)
1773
+
1774
+ ### Features
1775
+
1776
+ - **icons:** add icons for images, camera story, and video camera story ([#639](https://github.com/sproutsocial/racine/issues/639)) ([6769218](https://github.com/sproutsocial/racine/commit/6769218))
1777
+ - **Popout:** use react-focus-lock for focusOnContent ([#624](https://github.com/sproutsocial/racine/issues/624)) ([b0634d6](https://github.com/sproutsocial/racine/commit/b0634d6))
1778
+ - **Table:** update table header alignment to default bottom ([#638](https://github.com/sproutsocial/racine/issues/638)) ([e2d9c8a](https://github.com/sproutsocial/racine/commit/e2d9c8a))
1779
+
1780
+ <a name="3.30.3"></a>
1781
+
1782
+ ## [3.30.3](https://github.com/sproutsocial/racine/compare/v3.30.2...v3.30.3) (2019-10-15)
1783
+
1784
+ ### Bug Fixes
1785
+
1786
+ - **icons:** swap triangle-nofill svg incon ([#634](https://github.com/sproutsocial/racine/issues/634)) ([fba8012](https://github.com/sproutsocial/racine/commit/fba8012))
1787
+
1788
+ <a name="3.30.2"></a>
1789
+
1790
+ ## [3.30.2](https://github.com/sproutsocial/racine/compare/v3.30.1...v3.30.2) (2019-10-09)
1791
+
1792
+ ### Bug Fixes
1793
+
1794
+ - **Icon:** change styled Icon property for size to iconSize ([#633](https://github.com/sproutsocial/racine/issues/633)) ([50635d8](https://github.com/sproutsocial/racine/commit/50635d8))
1795
+
1796
+ <a name="3.30.1"></a>
1797
+
1798
+ ## [3.30.1](https://github.com/sproutsocial/racine/compare/v3.30.0...v3.30.1) (2019-10-07)
1799
+
1800
+ ### Bug Fixes
1801
+
1802
+ - **utils:** check for DOM environment in hooks ([#628](https://github.com/sproutsocial/racine/issues/628)) ([c1bcee6](https://github.com/sproutsocial/racine/commit/c1bcee6))
1803
+
1804
+ <a name="3.30.0"></a>
1805
+
1806
+ # [3.30.0](https://github.com/sproutsocial/racine/compare/v3.29.1...v3.30.0) (2019-10-04)
1807
+
1808
+ ### Features
1809
+
1810
+ - **icons:** add outline icons for eye slash and unfollow ([#622](https://github.com/sproutsocial/racine/issues/622)) ([ce18f9c](https://github.com/sproutsocial/racine/commit/ce18f9c))
1811
+ - **Input, Textarea:** remove readonly prop ([#627](https://github.com/sproutsocial/racine/issues/627)) ([eaf3445](https://github.com/sproutsocial/racine/commit/eaf3445))
1812
+
1813
+ <a name="3.29.1"></a>
1814
+
1815
+ ## [3.29.1](https://github.com/sproutsocial/racine/compare/v3.29.0...v3.29.1) (2019-10-03)
1816
+
1817
+ ### Bug Fixes
1818
+
1819
+ - **Input:** readonly should be optional ([#625](https://github.com/sproutsocial/racine/issues/625)) ([9e08cdf](https://github.com/sproutsocial/racine/commit/9e08cdf))
1820
+
1821
+ <a name="3.29.0"></a>
1822
+
1823
+ # [3.29.0](https://github.com/sproutsocial/racine/compare/v3.28.0...v3.29.0) (2019-10-03)
1824
+
1825
+ ### Features
1826
+
1827
+ - **Input, Textarea:** add readonly prop ([#621](https://github.com/sproutsocial/racine/issues/621)) ([31c5f1d](https://github.com/sproutsocial/racine/commit/31c5f1d))
1828
+
1829
+ <a name="3.28.0"></a>
1830
+
1831
+ # [3.28.0](https://github.com/sproutsocial/racine/compare/v3.27.0...v3.28.0) (2019-10-03)
1832
+
1833
+ ### Bug Fixes
1834
+
1835
+ - **Fieldset:** Form updates ([#617](https://github.com/sproutsocial/racine/issues/617)) ([a83a98e](https://github.com/sproutsocial/racine/commit/a83a98e))
1836
+ - **icons:** updated compose icon ([9372018](https://github.com/sproutsocial/racine/commit/9372018))
1837
+ - **Numeral:** use border-bottom over underline ([#615](https://github.com/sproutsocial/racine/issues/615)) ([06e91e5](https://github.com/sproutsocial/racine/commit/06e91e5))
1838
+
1839
+ ### Features
1840
+
1841
+ - add Toggle Icon component ([#620](https://github.com/sproutsocial/racine/issues/620)) ([6067d63](https://github.com/sproutsocial/racine/commit/6067d63))
1842
+ - Automatically reposition Popout when content changes ([#619](https://github.com/sproutsocial/racine/issues/619)) ([03c74ea](https://github.com/sproutsocial/racine/commit/03c74ea))
1843
+
1844
+ <a name="3.27.0"></a>
1845
+
1846
+ # [3.27.0](https://github.com/sproutsocial/racine/compare/v3.26.0...v3.27.0) (2019-10-01)
1847
+
1848
+ ### Bug Fixes
1849
+
1850
+ - **Select:** update qa-selector for name ([#611](https://github.com/sproutsocial/racine/issues/611)) ([934639f](https://github.com/sproutsocial/racine/commit/934639f))
1851
+
1852
+ ### Features
1853
+
1854
+ - **ThemeProvider:** export theme ([#610](https://github.com/sproutsocial/racine/issues/610)) ([67b6638](https://github.com/sproutsocial/racine/commit/67b6638))
1855
+
1856
+ <a name="3.26.0"></a>
1857
+
1858
+ # [3.26.0](https://github.com/sproutsocial/racine/compare/v3.25.1...v3.26.0) (2019-09-30)
1859
+
1860
+ ### Features
1861
+
1862
+ - **Button:** add placeholder appearance ([ae58d95](https://github.com/sproutsocial/racine/commit/ae58d95))
1863
+
1864
+ <a name="3.25.1"></a>
1865
+
1866
+ ## [3.25.1](https://github.com/sproutsocial/racine/compare/v3.25.0...v3.25.1) (2019-09-30)
1867
+
1868
+ ### Bug Fixes
1869
+
1870
+ - Remove blur on click in Button and Link ([#608](https://github.com/sproutsocial/racine/issues/608)) ([4df721f](https://github.com/sproutsocial/racine/commit/4df721f))
1871
+
1872
+ <a name="3.25.0"></a>
1873
+
1874
+ # [3.25.0](https://github.com/sproutsocial/racine/compare/v3.24.0...v3.25.0) (2019-09-27)
1875
+
1876
+ ### Bug Fixes
1877
+
1878
+ - **KeyboardKey:** set minimum width ([#606](https://github.com/sproutsocial/racine/issues/606)) ([69803fb](https://github.com/sproutsocial/racine/commit/69803fb))
1879
+
1880
+ ### Features
1881
+
1882
+ - **icons:** add outline icons for bell and message ([#605](https://github.com/sproutsocial/racine/issues/605)) ([4d95352](https://github.com/sproutsocial/racine/commit/4d95352))
1883
+
1884
+ <a name="3.24.0"></a>
1885
+
1886
+ # [3.24.0](https://github.com/sproutsocial/racine/compare/v3.23.0...v3.24.0) (2019-09-25)
1887
+
1888
+ ### Features
1889
+
1890
+ - **icons:** update and add new sentiment icons ([#602](https://github.com/sproutsocial/racine/issues/602)) ([8539d4e](https://github.com/sproutsocial/racine/commit/8539d4e))
1891
+
1892
+ <a name="3.23.0"></a>
1893
+
1894
+ # [3.23.0](https://github.com/sproutsocial/racine/compare/v3.22.1...v3.23.0) (2019-09-24)
1895
+
1896
+ ### Features
1897
+
1898
+ - **Fieldset:** add Fieldset component ([#481](https://github.com/sproutsocial/racine/issues/481)) ([cbb88c0](https://github.com/sproutsocial/racine/commit/cbb88c0))
1899
+ - **icons:** add outline icons for publishing ([870fdaa](https://github.com/sproutsocial/racine/commit/870fdaa))
1900
+
1901
+ <a name="3.22.1"></a>
1902
+
1903
+ ## [3.22.1](https://github.com/sproutsocial/racine/compare/v3.22.0...v3.22.1) (2019-09-19)
1904
+
1905
+ ### Bug Fixes
1906
+
1907
+ - **Token:** flow issue with default props ([#598](https://github.com/sproutsocial/racine/issues/598)) ([522c432](https://github.com/sproutsocial/racine/commit/522c432))
1908
+
1909
+ <a name="3.22.0"></a>
1910
+
1911
+ # [3.22.0](https://github.com/sproutsocial/racine/compare/v3.21.0...v3.22.0) (2019-09-19)
1912
+
1913
+ ### Bug Fixes
1914
+
1915
+ - **icons:** update TripAdvisor icon outline ([#589](https://github.com/sproutsocial/racine/issues/589)) ([0dec893](https://github.com/sproutsocial/racine/commit/0dec893))
1916
+ - **EmptyState:** fix headline font size ([#596](https://github.com/sproutsocial/racine/issues/596)) ([656941d](https://github.com/sproutsocial/racine/commit/656941d))
1917
+
1918
+ ### Features
1919
+
1920
+ - **icons:** add user-circle icon ([#595](https://github.com/sproutsocial/racine/issues/595)) ([a1950ef](https://github.com/sproutsocial/racine/commit/a1950ef))
1921
+ - **Popout:** add scheduleUpdateRef prop ([#592](https://github.com/sproutsocial/racine/issues/592)) ([ea7ec73](https://github.com/sproutsocial/racine/commit/ea7ec73))
1922
+ - **Token:** Add data-qa-token attribute ([#588](https://github.com/sproutsocial/racine/issues/588)) ([9052c85](https://github.com/sproutsocial/racine/commit/9052c85))
1923
+
1924
+ <a name="3.21.0"></a>
1925
+
1926
+ # [3.21.0](https://github.com/sproutsocial/racine/compare/v3.20.0...v3.21.0) (2019-09-16)
1927
+
1928
+ ### Bug Fixes
1929
+
1930
+ - **Button, Checkbox:** add multiply blend to pill appearance ([#579](https://github.com/sproutsocial/racine/issues/579)) ([ab1cd36](https://github.com/sproutsocial/racine/commit/ab1cd36))
1931
+ - **Icon:** add focusable false for IE ([#584](https://github.com/sproutsocial/racine/issues/584)) ([2da4a32](https://github.com/sproutsocial/racine/commit/2da4a32))
1932
+ - **KeyboardKey:** allow system props ([#581](https://github.com/sproutsocial/racine/issues/581)) ([7eb4a09](https://github.com/sproutsocial/racine/commit/7eb4a09))
1933
+ - **Tabs:** add attribute for selected state([#585](https://github.com/sproutsocial/racine/issues/585)) ([56b02d1](https://github.com/sproutsocial/racine/commit/56b02d1))
1934
+ - add inputProps to Input, Select, Textarea ([#586](https://github.com/sproutsocial/racine/issues/586)) ([986239f](https://github.com/sproutsocial/racine/commit/986239f))
1935
+
1936
+ ### Features
1937
+
1938
+ - **Collapsible:** add offset prop ([#583](https://github.com/sproutsocial/racine/issues/583)) ([ccf387f](https://github.com/sproutsocial/racine/commit/ccf387f))
1939
+ - **FormField:** add FormField component ([#326](https://github.com/sproutsocial/racine/issues/326)) ([32df1c7](https://github.com/sproutsocial/racine/commit/32df1c7))
1940
+ - **theme:** allow prefixes for space, border radii, shadows, an… ([#457](https://github.com/sproutsocial/racine/issues/457)) ([d2e44f2](https://github.com/sproutsocial/racine/commit/d2e44f2))
1941
+
1942
+ <a name="3.20.0"></a>
1943
+
1944
+ # [3.20.0](https://github.com/sproutsocial/racine/compare/v3.19.1...v3.20.0) (2019-09-09)
1945
+
1946
+ ### Bug Fixes
1947
+
1948
+ - **icons:** update TripAdvisor outline color ([#573](https://github.com/sproutsocial/racine/issues/573)) ([3a9eb92](https://github.com/sproutsocial/racine/commit/3a9eb92))
1949
+ - **Select:** set select visibility ([#575](https://github.com/sproutsocial/racine/issues/575)) ([2c4e4d5](https://github.com/sproutsocial/racine/commit/2c4e4d5))
1950
+
1951
+ ### Features
1952
+
1953
+ - **icons:** add pause icon ([#571](https://github.com/sproutsocial/racine/issues/571)) ([3e27505](https://github.com/sproutsocial/racine/commit/3e27505))
1954
+
1955
+ <a name="3.19.1"></a>
1956
+
1957
+ ## [3.19.1](https://github.com/sproutsocial/racine/compare/v3.19.0...v3.19.1) (2019-09-05)
1958
+
1959
+ <a name="3.19.0"></a>
1960
+
1961
+ # [3.19.0](https://github.com/sproutsocial/racine/compare/v3.18.2...v3.19.0) (2019-09-05)
1962
+
1963
+ ### Bug Fixes
1964
+
1965
+ - **Button:** override visited styles for links ([#569](https://github.com/sproutsocial/racine/issues/569)) ([27004e9](https://github.com/sproutsocial/racine/commit/27004e9))
1966
+
1967
+ ### Features
1968
+
1969
+ - add EmptyState component ([#560](https://github.com/sproutsocial/racine/issues/560)) ([77f0dd3](https://github.com/sproutsocial/racine/commit/77f0dd3))
1970
+
1971
+ <a name="3.18.2"></a>
1972
+
1973
+ ## [3.18.2](https://github.com/sproutsocial/racine/compare/v3.18.1...v3.18.2) (2019-09-03)
1974
+
1975
+ <a name="3.18.1"></a>
1976
+
1977
+ ## [3.18.1](https://github.com/sproutsocial/racine/compare/v3.18.0...v3.18.1) (2019-08-28)
1978
+
1979
+ ### Bug Fixes
1980
+
1981
+ - add extrabold to fontWeights theme ([#555](https://github.com/sproutsocial/racine/issues/555)) ([e5ec437](https://github.com/sproutsocial/racine/commit/e5ec437))
1982
+ - **Button:** add a default type ([#556](https://github.com/sproutsocial/racine/issues/556)) ([82e4116](https://github.com/sproutsocial/racine/commit/82e4116))
1983
+
1984
+ <a name="3.18.0"></a>
1985
+
1986
+ # [3.18.0](https://github.com/sproutsocial/racine/compare/v3.17.2...v3.18.0) (2019-08-21)
1987
+
1988
+ ### Bug Fixes
1989
+
1990
+ - **Button:** use themeGet for hoverColor ([#549](https://github.com/sproutsocial/racine/issues/549)) ([af076ed](https://github.com/sproutsocial/racine/commit/af076ed))
1991
+ - **dependencies:** move seeds-packets to peerDependencies ([#542](https://github.com/sproutsocial/racine/issues/542)) ([db10988](https://github.com/sproutsocial/racine/commit/db10988))
1992
+ - **Image:** replace deprecated lifecycle method ([#547](https://github.com/sproutsocial/racine/issues/547)) ([0c34fde](https://github.com/sproutsocial/racine/commit/0c34fde))
1993
+
1994
+ ### Features
1995
+
1996
+ - **icons:** add filter icon address-card ([#554](https://github.com/sproutsocial/racine/issues/554)) ([1997d2f](https://github.com/sproutsocial/racine/commit/1997d2f))
1997
+ - **icons:** add follow-outline icon ([#553](https://github.com/sproutsocial/racine/issues/553)) ([10e9db7](https://github.com/sproutsocial/racine/commit/10e9db7))
1998
+ - **icons:** update grip icon ([#548](https://github.com/sproutsocial/racine/issues/548)) ([7468cc2](https://github.com/sproutsocial/racine/commit/7468cc2))
1999
+
2000
+ <a name="3.17.2"></a>
2001
+
2002
+ ## [3.17.2](https://github.com/sproutsocial/racine/compare/v3.17.1...v3.17.2) (2019-08-13)
2003
+
2004
+ ### Bug Fixes
2005
+
2006
+ - **Collapsible:** fix layout in Chrome ([#546](https://github.com/sproutsocial/racine/issues/546)) ([2827c1c](https://github.com/sproutsocial/racine/commit/2827c1c))
2007
+
2008
+ <a name="3.17.1"></a>
2009
+
2010
+ ## [3.17.1](https://github.com/sproutsocial/racine/compare/v3.17.0...v3.17.1) (2019-08-12)
2011
+
2012
+ ### Bug Fixes
2013
+
2014
+ - **Button:** add back inline block style ([#545](https://github.com/sproutsocial/racine/issues/545)) ([9c9d2d5](https://github.com/sproutsocial/racine/commit/9c9d2d5))
2015
+ - **Input:** change key up and key down prop flow types ([#544](https://github.com/sproutsocial/racine/issues/544)) ([bed7056](https://github.com/sproutsocial/racine/commit/bed7056))
2016
+
2017
+ <a name="3.17.0"></a>
2018
+
2019
+ # [3.17.0](https://github.com/sproutsocial/racine/compare/v3.16.0...v3.17.0) (2019-08-12)
2020
+
2021
+ ### Bug Fixes
2022
+
2023
+ - **Collapsible:** fixed flow issue ([#537](https://github.com/sproutsocial/racine/issues/537)) ([104f8f0](https://github.com/sproutsocial/racine/commit/104f8f0))
2024
+ - **Collapsible:** set hidden attribute when collapsed ([#541](https://github.com/sproutsocial/racine/issues/541)) ([5507ab6](https://github.com/sproutsocial/racine/commit/5507ab6))
2025
+ - **Numeral:** fixed flow issue ([#539](https://github.com/sproutsocial/racine/issues/539)) ([fe1fc72](https://github.com/sproutsocial/racine/commit/fe1fc72))
2026
+ - **Popout:** flow issues and a few dependency array mismatches ([#526](https://github.com/sproutsocial/racine/issues/526)) ([8de889e](https://github.com/sproutsocial/racine/commit/8de889e))
2027
+
2028
+ ### Features
2029
+
2030
+ - add pill style to Button and Checkbox ([#535](https://github.com/sproutsocial/racine/issues/535)) ([3277675](https://github.com/sproutsocial/racine/commit/3277675))
2031
+ - add SegmentedControl component ([#536](https://github.com/sproutsocial/racine/issues/536)) ([17d4e1b](https://github.com/sproutsocial/racine/commit/17d4e1b))
2032
+ - **Drawer:** allow drawer header customization ([#538](https://github.com/sproutsocial/racine/issues/538)) ([a4ec003](https://github.com/sproutsocial/racine/commit/a4ec003))
2033
+ - **icons:** add outline icon for Saved Replies ([#540](https://github.com/sproutsocial/racine/issues/540)) ([af8190e](https://github.com/sproutsocial/racine/commit/af8190e))
2034
+
2035
+ <a name="3.16.0"></a>
2036
+
2037
+ # [3.16.0](https://github.com/sproutsocial/racine/compare/v3.15.0...v3.16.0) (2019-08-07)
2038
+
2039
+ ### Bug Fixes
2040
+
2041
+ - **Checkbox:** fix IE 11 issue ([#533](https://github.com/sproutsocial/racine/issues/533)) ([0ce2987](https://github.com/sproutsocial/racine/commit/0ce2987))
2042
+
2043
+ ### Features
2044
+
2045
+ - **icons:** replace unlock icon ([#534](https://github.com/sproutsocial/racine/issues/534)) ([d01e91e](https://github.com/sproutsocial/racine/commit/d01e91e))
2046
+ - add Collapsible component ([#518](https://github.com/sproutsocial/racine/issues/518)) ([470b70c](https://github.com/sproutsocial/racine/commit/470b70c))
2047
+
2048
+ <a name="3.15.0"></a>
2049
+
2050
+ # [3.15.0](https://github.com/sproutsocial/racine/compare/v3.14.0...v3.15.0) (2019-08-06)
2051
+
2052
+ ### Bug Fixes
2053
+
2054
+ - **Drawer:** add height: 100% to drawer content ([#531](https://github.com/sproutsocial/racine/issues/531)) ([55ba450](https://github.com/sproutsocial/racine/commit/55ba450))
2055
+ - **Tabs:** fix focus ring, active state ([#530](https://github.com/sproutsocial/racine/issues/530)) ([81a559e](https://github.com/sproutsocial/racine/commit/81a559e))
2056
+
2057
+ ### Features
2058
+
2059
+ - **Popout:** pass keyboard/mouse events to setIsShown ([#532](https://github.com/sproutsocial/racine/issues/532)) ([cfff713](https://github.com/sproutsocial/racine/commit/cfff713))
2060
+
2061
+ <a name="3.14.0"></a>
2062
+
2063
+ # [3.14.0](https://github.com/sproutsocial/racine/compare/v3.13.1...v3.14.0) (2019-08-05)
2064
+
2065
+ ### Bug Fixes
2066
+
2067
+ - **Numeral:** handle 0 and include some tests ([#527](https://github.com/sproutsocial/racine/issues/527)) ([5702d69](https://github.com/sproutsocial/racine/commit/5702d69))
2068
+ - remove bg on link buttons, add new network colors ([#528](https://github.com/sproutsocial/racine/issues/528)) ([27317cf](https://github.com/sproutsocial/racine/commit/27317cf))
2069
+
2070
+ ### Features
2071
+
2072
+ - **icons:** add export icon ([#529](https://github.com/sproutsocial/racine/issues/529)) ([fdcc208](https://github.com/sproutsocial/racine/commit/fdcc208))
2073
+
2074
+ <a name="3.13.1"></a>
2075
+
2076
+ ## [3.13.1](https://github.com/sproutsocial/racine/compare/v3.13.0...v3.13.1) (2019-08-01)
2077
+
2078
+ ### Bug Fixes
2079
+
2080
+ - circle-check-inverse icon bug ([#525](https://github.com/sproutsocial/racine/issues/525)) ([a7f764b](https://github.com/sproutsocial/racine/commit/a7f764b))
2081
+
2082
+ <a name="3.13.0"></a>
2083
+
2084
+ # [3.13.0](https://github.com/sproutsocial/racine/compare/v3.12.1...v3.13.0) (2019-07-31)
2085
+
2086
+ ### Features
2087
+
2088
+ - **icons:** external-link-alt ([#519](https://github.com/sproutsocial/racine/issues/519)) ([45216b5](https://github.com/sproutsocial/racine/commit/45216b5))
2089
+
2090
+ <a name="3.12.1"></a>
2091
+
2092
+ ## [3.12.1](https://github.com/sproutsocial/racine/compare/v3.12.0...v3.12.1) (2019-07-30)
2093
+
2094
+ ### Bug Fixes
2095
+
2096
+ - **Checkbox:** block pointer events on check icon ([#517](https://github.com/sproutsocial/racine/issues/517)) ([709030b](https://github.com/sproutsocial/racine/commit/709030b))
2097
+ - **Checkbox, Radio:** use primary green ([#516](https://github.com/sproutsocial/racine/issues/516)) ([e5d9e32](https://github.com/sproutsocial/racine/commit/e5d9e32))
2098
+
2099
+ <a name="3.12.0"></a>
2100
+
2101
+ # [3.12.0](https://github.com/sproutsocial/racine/compare/v3.11.0...v3.12.0) (2019-07-29)
2102
+
2103
+ ### Features
2104
+
2105
+ - add Numeral component ([#387](https://github.com/sproutsocial/racine/issues/387)) ([900ffa4](https://github.com/sproutsocial/racine/commit/900ffa4))
2106
+ - **icons:** add outline icons for Nectar ([#514](https://github.com/sproutsocial/racine/issues/514)) ([97e30dd](https://github.com/sproutsocial/racine/commit/97e30dd))
2107
+
2108
+ <a name="3.11.0"></a>
2109
+
2110
+ # [3.11.0](https://github.com/sproutsocial/racine/compare/v3.10.1...v3.11.0) (2019-07-26)
2111
+
2112
+ ### Features
2113
+
2114
+ - **icons:** add tripadvisor-circle icons ([#511](https://github.com/sproutsocial/racine/issues/511)) ([2a9fac4](https://github.com/sproutsocial/racine/commit/2a9fac4))
2115
+ - add LoaderButton component ([#512](https://github.com/sproutsocial/racine/issues/512)) ([0f65046](https://github.com/sproutsocial/racine/commit/0f65046))
2116
+
2117
+ <a name="3.10.1"></a>
2118
+
2119
+ ## [3.10.1](https://github.com/sproutsocial/racine/compare/v3.10.0...v3.10.1) (2019-07-23)
2120
+
2121
+ ### Bug Fixes
2122
+
2123
+ - **Text:** leave vertical padding ([#505](https://github.com/sproutsocial/racine/issues/505)) ([728be5c](https://github.com/sproutsocial/racine/commit/728be5c))
2124
+
2125
+ <a name="3.10.0"></a>
2126
+
2127
+ # [3.10.0](https://github.com/sproutsocial/racine/compare/v3.9.0...v3.10.0) (2019-07-23)
2128
+
2129
+ ### Features
2130
+
2131
+ - labels for Checkbox and Radio ([#480](https://github.com/sproutsocial/racine/issues/480)) ([5713f9e](https://github.com/sproutsocial/racine/commit/5713f9e))
2132
+
2133
+ <a name="3.9.0"></a>
2134
+
2135
+ # [3.9.0](https://github.com/sproutsocial/racine/compare/v3.8.0...v3.9.0) (2019-07-16)
2136
+
2137
+ ### Features
2138
+
2139
+ - **icons:** add sparkles-solid icon ([#492](https://github.com/sproutsocial/racine/issues/492)) ([2904c00](https://github.com/sproutsocial/racine/commit/2904c00))
2140
+ - **Tooltip:** make tooltip content left aligned for box appearance ([#490](https://github.com/sproutsocial/racine/issues/490)) ([412aba8](https://github.com/sproutsocial/racine/commit/412aba8))
2141
+
2142
+ <a name="3.8.0"></a>
2143
+
2144
+ # [3.8.0](https://github.com/sproutsocial/racine/compare/v3.7.0...v3.8.0) (2019-07-15)
2145
+
2146
+ ### Features
2147
+
2148
+ - **icons:** add file edit icon ([#489](https://github.com/sproutsocial/racine/issues/489)) ([d9a8c01](https://github.com/sproutsocial/racine/commit/d9a8c01))
2149
+
2150
+ <a name="3.7.0"></a>
2151
+
2152
+ # [3.7.0](https://github.com/sproutsocial/racine/compare/v3.6.0...v3.7.0) (2019-07-11)
2153
+
2154
+ ### Features
2155
+
2156
+ - **Input:** add autocomplete prop ([#479](https://github.com/sproutsocial/racine/issues/479)) ([de9baf6](https://github.com/sproutsocial/racine/commit/de9baf6))
2157
+ - **Popout:** improvements for fully controlled Popouts ([#483](https://github.com/sproutsocial/racine/issues/483)) ([321ae00](https://github.com/sproutsocial/racine/commit/321ae00))
2158
+
2159
+ <a name="3.6.0"></a>
2160
+
2161
+ # [3.6.0](https://github.com/sproutsocial/racine/compare/v3.5.0...v3.6.0) (2019-07-10)
2162
+
2163
+ ### Bug Fixes
2164
+
2165
+ - **Popout & Tooltip:** remove unnecessary wrapper div ([#474](https://github.com/sproutsocial/racine/issues/474)) ([b3224ec](https://github.com/sproutsocial/racine/commit/b3224ec))
2166
+ - **Tabs:** fix fullWidth prop Flow type ([#473](https://github.com/sproutsocial/racine/issues/473)) ([05f3fd7](https://github.com/sproutsocial/racine/commit/05f3fd7))
2167
+ - **theme:** incorrect border prop value ([#469](https://github.com/sproutsocial/racine/issues/469)) ([f7bc46b](https://github.com/sproutsocial/racine/commit/f7bc46b))
2168
+ - **Tooltip:** change default tooltip fontsize from 11px to 13px ([#468](https://github.com/sproutsocial/racine/issues/468)) ([0b9cf45](https://github.com/sproutsocial/racine/commit/0b9cf45))
2169
+
2170
+ ### Features
2171
+
2172
+ - **Input:** added hasWarning to Input component ([#475](https://github.com/sproutsocial/racine/issues/475)) ([68821bf](https://github.com/sproutsocial/racine/commit/68821bf))
2173
+
2174
+ <a name="3.5.0"></a>
2175
+
2176
+ # [3.5.0](https://github.com/sproutsocial/racine/compare/v3.4.1...v3.5.0) (2019-07-08)
2177
+
2178
+ ### Bug Fixes
2179
+
2180
+ - **Drawer:** do not autofocus drawer contents ([#454](https://github.com/sproutsocial/racine/issues/454)) ([c2dc5f5](https://github.com/sproutsocial/racine/commit/c2dc5f5))
2181
+ - **Select:** do not spread props onto arrow ([#455](https://github.com/sproutsocial/racine/issues/455)) ([82a9095](https://github.com/sproutsocial/racine/commit/82a9095))
2182
+
2183
+ ### Features
2184
+
2185
+ - **Input:** add onPaste handler to Input ([#465](https://github.com/sproutsocial/racine/issues/465)) ([b527b1b](https://github.com/sproutsocial/racine/commit/b527b1b))
2186
+ - **Tabs:** add full width style ([#458](https://github.com/sproutsocial/racine/issues/458)) ([22a4af1](https://github.com/sproutsocial/racine/commit/22a4af1))
2187
+ - **textarea:** add max length prop to textarea ([#464](https://github.com/sproutsocial/racine/issues/464)) ([a7ef18c](https://github.com/sproutsocial/racine/commit/a7ef18c))
2188
+
2189
+ <a name="3.4.1"></a>
2190
+
2191
+ ## [3.4.1](https://github.com/sproutsocial/racine/compare/v3.4.0...v3.4.1) (2019-07-02)
2192
+
2193
+ ### Bug Fixes
2194
+
2195
+ - **Tooltip:** fix flow types for web-app ([#452](https://github.com/sproutsocial/racine/issues/452)) ([4a3df5f](https://github.com/sproutsocial/racine/commit/4a3df5f))
2196
+ - **Tooltip:** spread props onto tooltip container ([#447](https://github.com/sproutsocial/racine/issues/447)) ([e40a3fa](https://github.com/sproutsocial/racine/commit/e40a3fa))
2197
+
2198
+ <a name="3.4.0"></a>
2199
+
2200
+ # [3.4.0](https://github.com/sproutsocial/racine/compare/v3.3.1...v3.4.0) (2019-07-01)
2201
+
2202
+ ### Bug Fixes
2203
+
2204
+ - **theme:** add 0 shades for colors ([#446](https://github.com/sproutsocial/racine/issues/446)) ([5699915](https://github.com/sproutsocial/racine/commit/5699915))
2205
+
2206
+ ### Features
2207
+
2208
+ - **Drawer:** focus lock drawer ([#441](https://github.com/sproutsocial/racine/issues/441)) ([0ea2629](https://github.com/sproutsocial/racine/commit/0ea2629))
2209
+
2210
+ <a name="3.3.1"></a>
2211
+
2212
+ ## [3.3.1](https://github.com/sproutsocial/racine/compare/v3.3.0...v3.3.1) (2019-06-29)
2213
+
2214
+ ### Bug Fixes
2215
+
2216
+ - **Portal:** fix browser checks ([e8a1582](https://github.com/sproutsocial/racine/commit/e8a1582))
2217
+
2218
+ <a name="3.3.0"></a>
2219
+
2220
+ # [3.3.0](https://github.com/sproutsocial/racine/compare/v3.2.0...v3.3.0) (2019-06-28)
2221
+
2222
+ ### Bug Fixes
2223
+
2224
+ - **Drawer:** tweak styles ([#439](https://github.com/sproutsocial/racine/issues/439)) ([cef4c12](https://github.com/sproutsocial/racine/commit/cef4c12))
2225
+ - **Portal:** prevent fatal errors with SSR ([#438](https://github.com/sproutsocial/racine/issues/438)) ([18ac220](https://github.com/sproutsocial/racine/commit/18ac220))
2226
+ - **Tooltip:** infer content appearance from type ([#424](https://github.com/sproutsocial/racine/issues/424)) ([ded50ff](https://github.com/sproutsocial/racine/commit/ded50ff))
2227
+
2228
+ ### Features
2229
+
2230
+ - **icons:** add publishing failed posts icon, file-times ([#440](https://github.com/sproutsocial/racine/issues/440)) ([038c815](https://github.com/sproutsocial/racine/commit/038c815))
2231
+ - **Popout:** add onOpen and onClose callbacks ([#437](https://github.com/sproutsocial/racine/issues/437)) ([fecfc1d](https://github.com/sproutsocial/racine/commit/fecfc1d))
2232
+ - **theme:** add Nectar border radius shims ([#431](https://github.com/sproutsocial/racine/issues/431)) ([951866f](https://github.com/sproutsocial/racine/commit/951866f))
2233
+
2234
+ <a name="3.2.0"></a>
2235
+
2236
+ # [3.2.0](https://github.com/sproutsocial/racine/compare/v3.1.4...v3.2.0) (2019-06-26)
2237
+
2238
+ ### Bug Fixes
2239
+
2240
+ - **Modal:** suppress flow warning in web-app-core b/c of hooks ([#422](https://github.com/sproutsocial/racine/issues/422)) ([38113a2](https://github.com/sproutsocial/racine/commit/38113a2))
2241
+ - **Popout:** make viewport the default boundaries, expose prop ([#405](https://github.com/sproutsocial/racine/issues/405)) ([05b3d73](https://github.com/sproutsocial/racine/commit/05b3d73))
2242
+
2243
+ ### Features
2244
+
2245
+ - add Tooltip component ([#361](https://github.com/sproutsocial/racine/issues/361)) ([e522dc4](https://github.com/sproutsocial/racine/commit/e522dc4))
2246
+ - **Drawer:** add drawer component ([7c4bf4a](https://github.com/sproutsocial/racine/commit/7c4bf4a))
2247
+ - **Modal:** make onClose optional ([#411](https://github.com/sproutsocial/racine/issues/411)) ([210419d](https://github.com/sproutsocial/racine/commit/210419d))
2248
+ - **Popout:** add ability to autofocus on popout content ([#412](https://github.com/sproutsocial/racine/issues/412)) ([f1c2c5c](https://github.com/sproutsocial/racine/commit/f1c2c5c))
2249
+ - **theme:** add “warning” semantic token ([#404](https://github.com/sproutsocial/racine/issues/404)) ([c684457](https://github.com/sproutsocial/racine/commit/c684457))
2250
+
2251
+ <a name="3.1.4"></a>
2252
+
2253
+ ## [3.1.4](https://github.com/sproutsocial/racine/compare/v3.1.3...v3.1.4) (2019-06-24)
2254
+
2255
+ ### Bug Fixes
2256
+
2257
+ - **icons:** update Facebook icon to latest ([#403](https://github.com/sproutsocial/racine/issues/403)) ([fae5949](https://github.com/sproutsocial/racine/commit/fae5949))
2258
+ - **Input:** Remove IE clear button. fixes RS-420 ([#397](https://github.com/sproutsocial/racine/issues/397)) ([76bac23](https://github.com/sproutsocial/racine/commit/76bac23))
2259
+
2260
+ <a name="3.1.3"></a>
2261
+
2262
+ ## [3.1.3](https://github.com/sproutsocial/racine/compare/v3.1.2...v3.1.3) (2019-06-19)
2263
+
2264
+ ### Bug Fixes
2265
+
2266
+ - **icons:** fix fill issue with tripadvisor svg ([#379](https://github.com/sproutsocial/racine/issues/379)) ([1f3e5c2](https://github.com/sproutsocial/racine/commit/1f3e5c2))
2267
+
2268
+ <a name="3.1.2"></a>
2269
+
2270
+ ## [3.1.2](https://github.com/sproutsocial/racine/compare/v3.1.1...v3.1.2) (2019-06-18)
2271
+
2272
+ ### Bug Fixes
2273
+
2274
+ - add file to files ([940b9f3](https://github.com/sproutsocial/racine/commit/940b9f3))
2275
+
2276
+ <a name="3.1.1"></a>
2277
+
2278
+ ## [3.1.1](https://github.com/sproutsocial/racine/compare/v3.1.0...v3.1.1) (2019-06-18)
2279
+
2280
+ <a name="3.1.0"></a>
2281
+
2282
+ # [3.1.0](https://github.com/sproutsocial/racine/compare/v3.0.4...v3.1.0) (2019-06-18)
2283
+
2284
+ ### Features
2285
+
2286
+ - **icons:** add sticky-note icon ([#371](https://github.com/sproutsocial/racine/issues/371)) ([bb01292](https://github.com/sproutsocial/racine/commit/bb01292))
2287
+ - **icons:** add tripadvisor icon ([#369](https://github.com/sproutsocial/racine/issues/369)) ([9783703](https://github.com/sproutsocial/racine/commit/9783703))
2288
+
2289
+ <a name="3.0.4"></a>
2290
+
2291
+ ## [3.0.4](https://github.com/sproutsocial/racine/compare/v3.0.3...v3.0.4) (2019-06-18)
2292
+
2293
+ ### Bug Fixes
2294
+
2295
+ - **Link:** forward custom “as” prop ([#362](https://github.com/sproutsocial/racine/issues/362)) ([5af9836](https://github.com/sproutsocial/racine/commit/5af9836))
2296
+
2297
+ <a name="3.0.3"></a>
2298
+
2299
+ ## [3.0.3](https://github.com/sproutsocial/racine/compare/v3.0.2...v3.0.3) (2019-06-17)
2300
+
2301
+ ### Bug Fixes
2302
+
2303
+ - **Button:** select Icons in buttons using their classname ([#351](https://github.com/sproutsocial/racine/issues/351)) ([e06408a](https://github.com/sproutsocial/racine/commit/e06408a))
2304
+ - **Modal:** header rendering issue in react-hot-loader ([#352](https://github.com/sproutsocial/racine/issues/352)) ([358ad47](https://github.com/sproutsocial/racine/commit/358ad47))
2305
+
2306
+ <a name="3.0.2"></a>
2307
+
2308
+ ## [3.0.2](https://github.com/sproutsocial/racine/compare/v3.0.1...v3.0.2) (2019-06-13)
2309
+
2310
+ ### build
2311
+
2312
+ - remove webpack built output ([#349](https://github.com/sproutsocial/racine/issues/349)) ([611e979](https://github.com/sproutsocial/racine/commit/611e979))
2313
+ - rename output folders for clarity ([#348](https://github.com/sproutsocial/racine/issues/348)) ([91482c6](https://github.com/sproutsocial/racine/commit/91482c6))
2314
+
2315
+ ### Features
2316
+
2317
+ - **icons:** add columns icon ([#350](https://github.com/sproutsocial/racine/issues/350)) ([fb1e537](https://github.com/sproutsocial/racine/commit/fb1e537))
2318
+
2319
+ ### BREAKING CHANGES
2320
+
2321
+ These changes are only breaking if you were accessing the undocumented internals of the package.
2322
+
2323
+ - removes webpack output
2324
+ - `lib` now holds all esmodules, while `commonjs` is the folder for commonjs modules. The `src` folder was only used for Flow types, so to clarify its use the folder has been renamed to `__flow__`
2325
+
2326
+ <a name="3.0.1"></a>
2327
+
2328
+ ## [3.0.1](https://github.com/sproutsocial/racine/compare/v3.0.0...v3.0.1) (2019-06-13)
2329
+
2330
+ ### Bug Fixes
2331
+
2332
+ - update flow suppression comment ([#346](https://github.com/sproutsocial/racine/issues/346)) ([674a352](https://github.com/sproutsocial/racine/commit/674a352))
2333
+ - **Text:** restore functionality of fontSize prop ([#347](https://github.com/sproutsocial/racine/issues/347)) ([dbe20e4](https://github.com/sproutsocial/racine/commit/dbe20e4))
2334
+
2335
+ <a name="3.0.0"></a>
2336
+
2337
+ # [3.0.0](https://github.com/sproutsocial/racine/compare/v2.5.0...v3.0.0) (2019-06-13)
2338
+
2339
+ ### BREAKING CHANGES
2340
+
2341
+ - This requires Racine to be installed with an
2342
+ additional dependency. See the [Seeds docs for install instructions](https://sproutsocial.com/seeds/components/getting-started).
2343
+ - **Text:** This changes the default element type for Text from
2344
+ `div` to `span`. It also removes the default font size, so Text will
2345
+ inherit its font size by default. Finally, the deprecated
2346
+ `isItalicized`, `size` and `weight` props have been removed, and
2347
+ `overflow` and `isTruncated` props have been renamed to `breakWord`
2348
+ and `truncated`, respectively.
2349
+ - **Modal:** The Modal component now requires a label for the
2350
+ close button for accessibility.
2351
+
2352
+ ### Features
2353
+
2354
+ - **dependencies:** update styled-system to v5 ([#334](https://github.com/sproutsocial/racine/issues/334)) ([bd552aa](https://github.com/sproutsocial/racine/commit/bd552aa))
2355
+ - **icons:** add bitly, feedly, update facebook, notifcations, dashboard ([#339](https://github.com/sproutsocial/racine/issues/339)) ([67b5781](https://github.com/sproutsocial/racine/commit/67b5781))
2356
+ - **icons:** add new Compose icon ([#340](https://github.com/sproutsocial/racine/issues/340)) ([f41d5e8](https://github.com/sproutsocial/racine/commit/f41d5e8))
2357
+ - add Popout component ([0d51bb7](https://github.com/sproutsocial/racine/commit/0d51bb7))
2358
+ - add theme value for subtext ([#338](https://github.com/sproutsocial/racine/issues/338)) ([1516fed](https://github.com/sproutsocial/racine/commit/1516fed))
2359
+ - add ThemeProvider component ([#341](https://github.com/sproutsocial/racine/issues/341)) ([feab503](https://github.com/sproutsocial/racine/commit/feab503))
2360
+ - **Text:** default to span, inherit font size ([#335](https://github.com/sproutsocial/racine/issues/335)) ([5f2bd6c](https://github.com/sproutsocial/racine/commit/5f2bd6c))
2361
+ - move styled components to peer dependency ([#325](https://github.com/sproutsocial/racine/issues/325)) ([b13dbbb](https://github.com/sproutsocial/racine/commit/b13dbbb))
2362
+
2363
+ ### Bug Fixes
2364
+
2365
+ - make height of Select and Input match ([#344](https://github.com/sproutsocial/racine/issues/344)) ([843f198](https://github.com/sproutsocial/racine/commit/843f198))
2366
+ - **Input:** remove red ring in firefox ([#336](https://github.com/sproutsocial/racine/issues/336)) ([6b1f591](https://github.com/sproutsocial/racine/commit/6b1f591))
2367
+ - **Modal:** add close button aria-label ([#328](https://github.com/sproutsocial/racine/issues/328)) ([694ded7](https://github.com/sproutsocial/racine/commit/694ded7))
2368
+
2369
+ <a name="2.5.0"></a>
2370
+
2371
+ # [2.5.0](https://github.com/sproutsocial/racine/compare/v2.4.1...v2.5.0) (2019-06-06)
2372
+
2373
+ ### Bug Fixes
2374
+
2375
+ - **Button:** properly align icons in buttons ([#332](https://github.com/sproutsocial/racine/issues/332)) ([24d0125](https://github.com/sproutsocial/racine/commit/24d0125))
2376
+ - **Input:** add search to type prop ([#333](https://github.com/sproutsocial/racine/issues/333)) ([72a72dc](https://github.com/sproutsocial/racine/commit/72a72dc))
2377
+
2378
+ ### Features
2379
+
2380
+ - add large and small sizes to Select and Input ([#331](https://github.com/sproutsocial/racine/issues/331)) ([8d5a4fd](https://github.com/sproutsocial/racine/commit/8d5a4fd))
2381
+
2382
+ <a name="2.4.1"></a>
2383
+
2384
+ ## [2.4.1](https://github.com/sproutsocial/racine/compare/v2.4.0...v2.4.1) (2019-06-05)
2385
+
2386
+ ### Bug Fixes
2387
+
2388
+ - **Button:** remove hover state from default theme ([#329](https://github.com/sproutsocial/racine/issues/329)) ([e88834b](https://github.com/sproutsocial/racine/commit/e88834b))
2389
+
2390
+ <a name="2.4.0"></a>
2391
+
2392
+ # [2.4.0](https://github.com/sproutsocial/racine/compare/v2.3.0...v2.4.0) (2019-05-28)
2393
+
2394
+ ### Bug Fixes
2395
+
2396
+ - **system-props:** output line height after font size ([#327](https://github.com/sproutsocial/racine/issues/327)) ([5b7118b](https://github.com/sproutsocial/racine/commit/5b7118b))
2397
+
2398
+ ### Features
2399
+
2400
+ - add semantic theme values ([c4d5b8e](https://github.com/sproutsocial/racine/commit/c4d5b8e))
2401
+
2402
+ <a name="2.3.0"></a>
2403
+
2404
+ # [2.3.0](https://github.com/sproutsocial/racine/compare/v2.2.2...v2.3.0) (2019-05-20)
2405
+
2406
+ ### Features
2407
+
2408
+ - **icons:** add recommendation icon ([#321](https://github.com/sproutsocial/racine/issues/321)) ([f73470b](https://github.com/sproutsocial/racine/commit/f73470b))
2409
+ - **Modal:** expose COMMON system props ([#322](https://github.com/sproutsocial/racine/issues/322)) ([79e691e](https://github.com/sproutsocial/racine/commit/79e691e))
2410
+
2411
+ <a name="2.2.2"></a>
2412
+
2413
+ ## [2.2.2](https://github.com/sproutsocial/racine/compare/v2.2.1...v2.2.2) (2019-05-16)
2414
+
2415
+ ### Bug Fixes
2416
+
2417
+ - **Box:** FlowIssue Box component ([#318](https://github.com/sproutsocial/racine/issues/318)) ([2691128](https://github.com/sproutsocial/racine/commit/2691128))
2418
+
2419
+ <a name="2.2.1"></a>
2420
+
2421
+ ## [2.2.1](https://github.com/sproutsocial/racine/compare/v2.2.0...v2.2.1) (2019-05-15)
2422
+
2423
+ <a name="2.2.0"></a>
2424
+
2425
+ # [2.2.0](https://github.com/sproutsocial/racine/compare/v2.1.0...v2.2.0) (2019-05-15)
2426
+
2427
+ ### Bug Fixes
2428
+
2429
+ - add reset styles for Box and Button ([#304](https://github.com/sproutsocial/racine/issues/304)) ([974eda6](https://github.com/sproutsocial/racine/commit/974eda6))
2430
+ - IE 11 issues for Icon, Checkbox, and Select ([#306](https://github.com/sproutsocial/racine/issues/306)) ([8674cda](https://github.com/sproutsocial/racine/commit/8674cda))
2431
+ - **Box:** forward refs to component ([#313](https://github.com/sproutsocial/racine/issues/313)) ([291fb68](https://github.com/sproutsocial/racine/commit/291fb68))
2432
+ - **Button:** apply icon line height to Button ([#303](https://github.com/sproutsocial/racine/issues/303)) ([30ce806](https://github.com/sproutsocial/racine/commit/30ce806))
2433
+ - **Modal:** fix rendering on IE 11 and with forms ([228676d](https://github.com/sproutsocial/racine/commit/228676d))
2434
+ - **Radio:** fix IE 11 styles ([#308](https://github.com/sproutsocial/racine/issues/308)) ([53b58e3](https://github.com/sproutsocial/racine/commit/53b58e3))
2435
+ - **Switch:** spread down QA prop ([#312](https://github.com/sproutsocial/racine/issues/312)) ([39bebee](https://github.com/sproutsocial/racine/commit/39bebee))
2436
+ - **TableRowAccordion:** onToggle fires twice ([#310](https://github.com/sproutsocial/racine/issues/310)) ([c2f9564](https://github.com/sproutsocial/racine/commit/c2f9564))
2437
+ - **Text:** do not pass non-strings to QA prop ([#314](https://github.com/sproutsocial/racine/issues/314)) ([91f503d](https://github.com/sproutsocial/racine/commit/91f503d))
2438
+
2439
+ ### Features
2440
+
2441
+ - **Portal:** add portal helper component ([#295](https://github.com/sproutsocial/racine/issues/295)) ([f9654bd](https://github.com/sproutsocial/racine/commit/f9654bd))
2442
+
2443
+ <a name="2.1.0"></a>
2444
+
2445
+ # [2.1.0](https://github.com/sproutsocial/racine/compare/v2.0.0...v2.1.0) (2019-04-24)
2446
+
2447
+ ### Bug Fixes
2448
+
2449
+ - missing border-radius system prop ([cbafec9](https://github.com/sproutsocial/racine/commit/cbafec9))
2450
+
2451
+ ### Features
2452
+
2453
+ - add [@storybook](https://github.com/storybook)/knobs integration ([#290](https://github.com/sproutsocial/racine/issues/290)) ([da9f7a4](https://github.com/sproutsocial/racine/commit/da9f7a4))
2454
+
2455
+ <a name="2.0.0"></a>
2456
+
2457
+ # [2.0.0](https://github.com/sproutsocial/racine/compare/v1.4.0...v2.0.0) (2019-04-24)
2458
+
2459
+ ### Documentation
2460
+
2461
+ - replace custom app with Storybook ([#289](https://github.com/sproutsocial/racine/issues/289)) ([ccf3890](https://github.com/sproutsocial/racine/commit/ccf3890))
2462
+
2463
+ ### BREAKING CHANGES
2464
+
2465
+ - The custom Racine app has been replaced with Storybook. No changes to the package have been made. This was made as a breaking change because of the significance of the local development experience.
2466
+
2467
+ <a name="1.4.0"></a>
2468
+
2469
+ # [1.4.0](https://github.com/sproutsocial/racine/compare/v1.3.0...v1.4.0) (2019-04-23)
2470
+
2471
+ ### Bug Fixes
2472
+
2473
+ - **accessibility:** remove title element from icons ([#282](https://github.com/sproutsocial/racine/issues/282)) ([8478d10](https://github.com/sproutsocial/racine/commit/8478d10))
2474
+
2475
+ ### Features
2476
+
2477
+ - **icons:** add recommendation icon ([#286](https://github.com/sproutsocial/racine/issues/286)) ([0d0ea31](https://github.com/sproutsocial/racine/commit/0d0ea31))
2478
+ - **modal:** add customizable z-index ([#287](https://github.com/sproutsocial/racine/issues/287)) ([9e4a593](https://github.com/sproutsocial/racine/commit/9e4a593))
2479
+
2480
+ <a name="1.3.0"></a>
2481
+
2482
+ # [1.3.0](https://github.com/sproutsocial/racine/compare/v1.2.9...v1.3.0) (2019-04-18)
2483
+
2484
+ ### Bug Fixes
2485
+
2486
+ - fix bug with border system props ([#284](https://github.com/sproutsocial/racine/issues/284)) ([c46386c](https://github.com/sproutsocial/racine/commit/c46386c))
2487
+
2488
+ ### Features
2489
+
2490
+ - **icons:** add google-my-business icon ([#283](https://github.com/sproutsocial/racine/issues/283)) ([f7b0e2c](https://github.com/sproutsocial/racine/commit/f7b0e2c))
2491
+
2492
+ <a name="1.2.9"></a>
2493
+
2494
+ ## [1.2.9](https://github.com/sproutsocial/racine/compare/v1.2.8...v1.2.9) (2019-04-12)
2495
+
2496
+ <a name="1.2.8"></a>
2497
+
2498
+ ## [1.2.8](https://github.com/sproutsocial/racine/compare/v1.2.7...v1.2.8) (2019-04-12)
2499
+
2500
+ <a name="1.2.7"></a>
2501
+
2502
+ ## [1.2.7](https://github.com/sproutsocial/racine/compare/v1.2.6...v1.2.7) (2019-04-10)
2503
+
2504
+ ### Bug Fixes
2505
+
2506
+ - **icons:** fix fill of circle-check-filled ([#273](https://github.com/sproutsocial/racine/issues/273)) ([c633984](https://github.com/sproutsocial/racine/commit/c633984)), closes [#272](https://github.com/sproutsocial/racine/issues/272)
2507
+ - rename borders theme key to borderWidths ([#274](https://github.com/sproutsocial/racine/issues/274)) ([e20792f](https://github.com/sproutsocial/racine/commit/e20792f))
2508
+
2509
+ <a name="1.2.6"></a>
2510
+
2511
+ ## [1.2.6](https://github.com/sproutsocial/racine/compare/v1.2.5...v1.2.6) (2019-04-09)
2512
+
2513
+ ### Bug Fixes
2514
+
2515
+ - add qa props spread to forms for early adopters ([#271](https://github.com/sproutsocial/racine/issues/271)) ([069eee0](https://github.com/sproutsocial/racine/commit/069eee0))
2516
+
2517
+ <a name="1.2.5"></a>
2518
+
2519
+ ## [1.2.5](https://github.com/sproutsocial/racine/compare/v1.2.4...v1.2.5) (2019-04-04)
2520
+
2521
+ ### Bug Fixes
2522
+
2523
+ - **checkbox:** remove class name ([#269](https://github.com/sproutsocial/racine/issues/269)) ([b859bab](https://github.com/sproutsocial/racine/commit/b859bab))
2524
+
2525
+ <a name="1.2.4"></a>
2526
+
2527
+ ## [1.2.4](https://github.com/sproutsocial/racine/compare/v1.2.3...v1.2.4) (2019-04-04)
2528
+
2529
+ ### Bug Fixes
2530
+
2531
+ - adjust focus and disabled states ([#268](https://github.com/sproutsocial/racine/issues/268)) ([66b3963](https://github.com/sproutsocial/racine/commit/66b3963))
2532
+
2533
+ <a name="1.2.3"></a>
2534
+
2535
+ ## [1.2.3](https://github.com/sproutsocial/racine/compare/v1.2.2...v1.2.3) (2019-04-03)
2536
+
2537
+ ### Bug Fixes
2538
+
2539
+ - remove HTML tags from prop descriptions ([ee8d62a](https://github.com/sproutsocial/racine/commit/ee8d62a))
2540
+
2541
+ <a name="1.2.2"></a>
2542
+
2543
+ ## [1.2.2](https://github.com/sproutsocial/racine/compare/v1.2.1...v1.2.2) (2019-04-03)
2544
+
2545
+ ### Bug Fixes
2546
+
2547
+ - **forms:** add refs to textarea and input ([367eb81](https://github.com/sproutsocial/racine/commit/367eb81))
2548
+
2549
+ <a name="1.2.1"></a>
2550
+
2551
+ ## [1.2.1](https://github.com/sproutsocial/racine/compare/v1.2.0...v1.2.1) (2019-04-03)
2552
+
2553
+ <a name="1.2.0"></a>
2554
+
2555
+ # [1.2.0](https://github.com/sproutsocial/racine/compare/v1.1.0...v1.2.0) (2019-04-02)
2556
+
2557
+ ### Bug Fixes
2558
+
2559
+ - **link:** change link colors to current Sprout style ([#265](https://github.com/sproutsocial/racine/issues/265)) ([9351099](https://github.com/sproutsocial/racine/commit/9351099))
2560
+
2561
+ ### Features
2562
+
2563
+ - **forms:** add form components ([c1b1381](https://github.com/sproutsocial/racine/commit/c1b1381))
2564
+
2565
+ <a name="1.1.0"></a>
2566
+
2567
+ # [1.1.0](https://github.com/sproutsocial/racine/compare/v1.0.0...v1.1.0) (2019-03-28)
2568
+
2569
+ ### Features
2570
+
2571
+ - **modal:** add Modal component ([4989ffb](https://github.com/sproutsocial/racine/commit/4989ffb))
2572
+
2573
+ <a name="1.0.0"></a>
2574
+
2575
+ # [1.0.0](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.25...v1.0.0) (2019-03-20)
2576
+
2577
+ ### Bug Fixes
2578
+
2579
+ - prepare for 1.0.0 ([b812bca](https://github.com/sproutsocial/racine/commit/b812bca))
2580
+
2581
+ ### Features
2582
+
2583
+ - **icons:** add eye slash icon ([#261](https://github.com/sproutsocial/racine/issues/261)) ([cdfe612](https://github.com/sproutsocial/racine/commit/cdfe612))
2584
+
2585
+ <a name="1.0.0-beta.25"></a>
2586
+
2587
+ # [1.0.0-beta.25](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.24...v1.0.0-beta.25) (2019-03-19)
2588
+
2589
+ <a name="1.0.0-beta.24"></a>
2590
+
2591
+ # [1.0.0-beta.24](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.23...v1.0.0-beta.24) (2019-03-18)
2592
+
2593
+ ### Bug Fixes
2594
+
2595
+ - **Link:** reset bg color when Link is rendered as a button ([#258](https://github.com/sproutsocial/racine/issues/258)) ([30bda7d](https://github.com/sproutsocial/racine/commit/30bda7d))
2596
+
2597
+ ### Features
2598
+
2599
+ - **icons:** add star-half icon ([#254](https://github.com/sproutsocial/racine/issues/254)) ([b6dcb97](https://github.com/sproutsocial/racine/commit/b6dcb97))
2600
+ - **tabs:** new tabs component ([#243](https://github.com/sproutsocial/racine/issues/243)) ([7e71b98](https://github.com/sproutsocial/racine/commit/7e71b98))
2601
+
2602
+ <a name="1.0.0-beta.23"></a>
2603
+
2604
+ # [1.0.0-beta.23](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.22...v1.0.0-beta.23) (2019-03-15)
2605
+
2606
+ ### Features
2607
+
2608
+ - **icons:** add story icons ([#253](https://github.com/sproutsocial/racine/issues/253)) ([0937aff](https://github.com/sproutsocial/racine/commit/0937aff))
2609
+
2610
+ <a name="1.0.0-beta.22"></a>
2611
+
2612
+ # [1.0.0-beta.22](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.21...v1.0.0-beta.22) (2019-03-14)
2613
+
2614
+ ### Features
2615
+
2616
+ - add Token component ([#251](https://github.com/sproutsocial/racine/issues/251)) ([0677d54](https://github.com/sproutsocial/racine/commit/0677d54))
2617
+
2618
+ <a name="1.0.0-beta.21"></a>
2619
+
2620
+ # [1.0.0-beta.21](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.20...v1.0.0-beta.21) (2019-03-13)
2621
+
2622
+ ### Bug Fixes
2623
+
2624
+ - **Switch:** pass the event onClick ([#252](https://github.com/sproutsocial/racine/issues/252)) ([bf9313b](https://github.com/sproutsocial/racine/commit/bf9313b))
2625
+
2626
+ <a name="1.0.0-beta.20"></a>
2627
+
2628
+ # [1.0.0-beta.20](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.19...v1.0.0-beta.20) (2019-03-12)
2629
+
2630
+ ### Features
2631
+
2632
+ - **icons:** adding arrow-right-line and window-restore [COMPOSE-3600](<[#250](https://github.com/sproutsocial/racine/issues/250)>) ([958e1f0](https://github.com/sproutsocial/racine/commit/958e1f0))
2633
+
2634
+ <a name="1.0.0-beta.19"></a>
2635
+
2636
+ # [1.0.0-beta.19](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.18...v1.0.0-beta.19) (2019-03-12)
2637
+
2638
+ ### Features
2639
+
2640
+ - **icons:** update trend-up, trend-neutral, trend-down svgs ([#248](https://github.com/sproutsocial/racine/issues/248)) ([e165ec3](https://github.com/sproutsocial/racine/commit/e165ec3))
2641
+ - add Switch component ([#244](https://github.com/sproutsocial/racine/issues/244)) ([8a5ab3d](https://github.com/sproutsocial/racine/commit/8a5ab3d))
2642
+
2643
+ <a name="1.0.0-beta.18"></a>
2644
+
2645
+ # [1.0.0-beta.18](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.17...v1.0.0-beta.18) (2019-03-11)
2646
+
2647
+ ### Bug Fixes
2648
+
2649
+ - remove prop type objects from Badge and Link ([#240](https://github.com/sproutsocial/racine/issues/240)) ([183199a](https://github.com/sproutsocial/racine/commit/183199a))
2650
+ - **icon:** oprimize instagram icon ([#249](https://github.com/sproutsocial/racine/issues/249)) ([d4bb1c5](https://github.com/sproutsocial/racine/commit/d4bb1c5))
2651
+ - **Image:** fix accessibility and add alt-text rule ([#247](https://github.com/sproutsocial/racine/issues/247)) ([0de8770](https://github.com/sproutsocial/racine/commit/0de8770))
2652
+
2653
+ ### Features
2654
+
2655
+ - **Button:** add default font stack update focus outline ([#245](https://github.com/sproutsocial/racine/issues/245)) ([ab06e64](https://github.com/sproutsocial/racine/commit/ab06e64))
2656
+ - **Link:** add default font stack, inherit font size ([#246](https://github.com/sproutsocial/racine/issues/246)) ([5b66265](https://github.com/sproutsocial/racine/commit/5b66265))
2657
+
2658
+ <a name="1.0.0-beta.17"></a>
2659
+
2660
+ # [1.0.0-beta.17](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.16...v1.0.0-beta.17) (2019-03-06)
2661
+
2662
+ ### Bug Fixes
2663
+
2664
+ - **badge:** remove prop type objects ([#238](https://github.com/sproutsocial/racine/issues/238)) ([767447e](https://github.com/sproutsocial/racine/commit/767447e))
2665
+
2666
+ <a name="1.0.0-beta.16"></a>
2667
+
2668
+ # [1.0.0-beta.16](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.15...v1.0.0-beta.16) (2019-03-06)
2669
+
2670
+ ### Bug Fixes
2671
+
2672
+ - **Badge:** freeze enum objects ([#237](https://github.com/sproutsocial/racine/issues/237)) ([7883030](https://github.com/sproutsocial/racine/commit/7883030))
2673
+
2674
+ <a name="1.0.0-beta.15"></a>
2675
+
2676
+ # [1.0.0-beta.15](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.14...v1.0.0-beta.15) (2019-03-06)
2677
+
2678
+ ### Features
2679
+
2680
+ - **Button:** add layout package, normalize a and button size ([#236](https://github.com/sproutsocial/racine/issues/236)) ([2b8e26e](https://github.com/sproutsocial/racine/commit/2b8e26e))
2681
+
2682
+ <a name="1.0.0-beta.14"></a>
2683
+
2684
+ # [1.0.0-beta.14](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.13...v1.0.0-beta.14) (2019-03-04)
2685
+
2686
+ ### Features
2687
+
2688
+ - add Button component ([#224](https://github.com/sproutsocial/racine/issues/224)) ([78f0a9f](https://github.com/sproutsocial/racine/commit/78f0a9f))
2689
+ - **Button:** add aria tag, minor tweaks based on Link component ([#235](https://github.com/sproutsocial/racine/issues/235)) ([c03aad1](https://github.com/sproutsocial/racine/commit/c03aad1))
2690
+ - **Button:** apply current Sprout color theme to Button ([#231](https://github.com/sproutsocial/racine/issues/231)) ([96e2885](https://github.com/sproutsocial/racine/commit/96e2885))
2691
+ - add Link component ([#234](https://github.com/sproutsocial/racine/issues/234)) ([6e1d801](https://github.com/sproutsocial/racine/commit/6e1d801))
2692
+
2693
+ <a name="1.0.0-beta.13"></a>
2694
+
2695
+ # [1.0.0-beta.13](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.12...v1.0.0-beta.13) (2019-02-25)
2696
+
2697
+ ### Features
2698
+
2699
+ - **icon:** add play icon ([ef9b7aa](https://github.com/sproutsocial/racine/commit/ef9b7aa))
2700
+
2701
+ <a name="1.0.0-beta.12"></a>
2702
+
2703
+ # [1.0.0-beta.12](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.11...v1.0.0-beta.12) (2019-02-22)
2704
+
2705
+ ### Features
2706
+
2707
+ - **icons:** add spike alert icon ([#225](https://github.com/sproutsocial/racine/issues/225)) ([9de5c09](https://github.com/sproutsocial/racine/commit/9de5c09))
2708
+ - **icons:** replace filter with sliders-h ([#223](https://github.com/sproutsocial/racine/issues/223)) ([e5c9987](https://github.com/sproutsocial/racine/commit/e5c9987))
2709
+
2710
+ <a name="1.0.0-beta.11"></a>
2711
+
2712
+ # [1.0.0-beta.11](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2019-02-21)
2713
+
2714
+ ### Bug Fixes
2715
+
2716
+ - **dependencies:** remove svg-to-dataurl dependency ([#221](https://github.com/sproutsocial/racine/issues/221)) ([1ebb77c](https://github.com/sproutsocial/racine/commit/1ebb77c))
2717
+ - **Radio:** fix line break issue ([#222](https://github.com/sproutsocial/racine/issues/222)) ([db46f89](https://github.com/sproutsocial/racine/commit/db46f89))
2718
+
2719
+ <a name="1.0.0-beta.10"></a>
2720
+
2721
+ # [1.0.0-beta.10](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2019-02-20)
2722
+
2723
+ ### Features
2724
+
2725
+ - **icons:** fix filter + add cloud ([#219](https://github.com/sproutsocial/racine/issues/219)) ([a436f14](https://github.com/sproutsocial/racine/commit/a436f14))
2726
+
2727
+ <a name="1.0.0-beta.9"></a>
2728
+
2729
+ # [1.0.0-beta.9](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.8...v1.0.0-beta.9) (2019-02-20)
2730
+
2731
+ ### Features
2732
+
2733
+ - **icons:** add icons for filtering ([#216](https://github.com/sproutsocial/racine/issues/216)) ([0963a93](https://github.com/sproutsocial/racine/commit/0963a93))
2734
+ - **icons:** create "Unlink" icon ([#218](https://github.com/sproutsocial/racine/issues/218)) ([cca7252](https://github.com/sproutsocial/racine/commit/cca7252))
2735
+
2736
+ <a name="1.0.0-beta.8"></a>
2737
+
2738
+ # [1.0.0-beta.8](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.7...v1.0.0-beta.8) (2019-02-20)
2739
+
2740
+ <a name="1.0.0-beta.7"></a>
2741
+
2742
+ # [1.0.0-beta.7](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.6...v1.0.0-beta.7) (2019-02-20)
2743
+
2744
+ ### Bug Fixes
2745
+
2746
+ - **Icon:** fix typo ([#214](https://github.com/sproutsocial/racine/issues/214)) ([db6c71e](https://github.com/sproutsocial/racine/commit/db6c71e))
2747
+
2748
+ <a name="1.0.0-beta.6"></a>
2749
+
2750
+ # [1.0.0-beta.6](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2019-02-20)
2751
+
2752
+ ### Bug Fixes
2753
+
2754
+ - **icons:** replace trend arrow icons with new svgs ([#213](https://github.com/sproutsocial/racine/issues/213)) ([1a6d6f7](https://github.com/sproutsocial/racine/commit/1a6d6f7))
2755
+ - **theme:** fix shadows variable typo ([#215](https://github.com/sproutsocial/racine/issues/215)) ([69f44c4](https://github.com/sproutsocial/racine/commit/69f44c4))
2756
+
2757
+ <a name="1.0.0-beta.5"></a>
2758
+
2759
+ # [1.0.0-beta.5](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2019-02-18)
2760
+
2761
+ ### Bug Fixes
2762
+
2763
+ - revert 34fa3ff0020b3f988ca210f3fe5fb0a575506b98 ([#212](https://github.com/sproutsocial/racine/issues/212)) ([5795961](https://github.com/sproutsocial/racine/commit/5795961))
2764
+
2765
+ <a name="1.0.0-beta.4"></a>
2766
+
2767
+ # [1.0.0-beta.4](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2019-02-14)
2768
+
2769
+ ### Bug Fixes
2770
+
2771
+ - **Icon:** fix IE 11 hack ([#209](https://github.com/sproutsocial/racine/issues/209)) ([37b512e](https://github.com/sproutsocial/racine/commit/37b512e))
2772
+
2773
+ <a name="1.0.0-beta.3"></a>
2774
+
2775
+ # [1.0.0-beta.3](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2019-02-14)
2776
+
2777
+ ### Bug Fixes
2778
+
2779
+ - **Icon:** add pdf and IE 11 fix back in ([#202](https://github.com/sproutsocial/racine/issues/202)) ([41a9cad](https://github.com/sproutsocial/racine/commit/41a9cad))
2780
+ - **theme:** theme.shadows property name ([#201](https://github.com/sproutsocial/racine/issues/201)) ([a05ca8f](https://github.com/sproutsocial/racine/commit/a05ca8f))
2781
+ - revert c132148849ccbe61569f588e04d748db0b5ebaf4 ([#207](https://github.com/sproutsocial/racine/issues/207)) ([34fa3ff](https://github.com/sproutsocial/racine/commit/34fa3ff))
2782
+
2783
+ <a name="1.0.0-beta.2"></a>
2784
+
2785
+ # [1.0.0-beta.2](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2019-02-12)
2786
+
2787
+ ### Features
2788
+
2789
+ - convert Alert, ChartLegend, Loader, Radio, Checkbox, Table, TableCell, TableHeaderCell, TableRowAccordion, Text, and Textarea to styled components ([c132148](https://github.com/sproutsocial/racine/commit/c132148))
2790
+
2791
+ <a name="1.0.0-beta.1"></a>
2792
+
2793
+ # [1.0.0-beta.1](https://github.com/sproutsocial/racine/compare/v1.0.0-beta.0...v1.0.0-beta.1) (2019-02-07)
2794
+
2795
+ ### Bug Fixes
2796
+
2797
+ - **Indicator:** fix a11y ([#198](https://github.com/sproutsocial/racine/issues/198)) ([80877a7](https://github.com/sproutsocial/racine/commit/80877a7))
2798
+
2799
+ ### Features
2800
+
2801
+ - convert CharacterCounter, Icon, Image, Indicator, KeyboardKey, and ToggleHint to styled components ([36a0a5c](https://github.com/sproutsocial/racine/commit/36a0a5c))
2802
+
2803
+ <a name="1.0.0-beta.0"></a>
2804
+
2805
+ # [1.0.0-beta.0](https://github.com/sproutsocial/racine/compare/v0.3.3...v1.0.0-beta.0) (2019-02-05)
2806
+
2807
+ ### Features
2808
+
2809
+ - **dependencies:** add styled-components & styled-system ([0218df6](https://github.com/sproutsocial/racine/commit/0218df6))
2810
+
2811
+ <a name="0.3.3"></a>
2812
+
2813
+ ## [0.3.3](https://github.com/sproutsocial/racine/compare/v0.3.2...v0.3.3) (2019-01-15)
2814
+
2815
+ ### Features
2816
+
2817
+ - add Table component ([#160](https://github.com/sproutsocial/racine/issues/160)) ([047e743](https://github.com/sproutsocial/racine/commit/047e743))
2818
+ - **icons:** update Google Analytics icons ([#194](https://github.com/sproutsocial/racine/issues/194)) ([e234d7f](https://github.com/sproutsocial/racine/commit/e234d7f))
2819
+
2820
+ <a name="0.3.2"></a>
2821
+
2822
+ ## [0.3.2](https://github.com/sproutsocial/racine/compare/v0.3.1...v0.3.2) (2018-12-07)
2823
+
2824
+ ### Features
2825
+
2826
+ - **icons:** add share icon ([#191](https://github.com/sproutsocial/racine/issues/191)) ([39d9eb5](https://github.com/sproutsocial/racine/commit/39d9eb5))
2827
+
2828
+ <a name="0.3.1"></a>
2829
+
2830
+ ## [0.3.1](https://github.com/sproutsocial/racine/compare/v0.3.0...v0.3.1) (2018-12-07)
2831
+
2832
+ ### Features
2833
+
2834
+ - **icons:** add publishing times icon ([#190](https://github.com/sproutsocial/racine/issues/190)) ([60836e6](https://github.com/sproutsocial/racine/commit/60836e6))
2835
+
2836
+ <a name="0.3.0"></a>
2837
+
2838
+ # [0.3.0](https://github.com/sproutsocial/racine/compare/v0.2.41...v0.3.0) (2018-12-04)
2839
+
2840
+ ### Bug Fixes
2841
+
2842
+ - **Alert:** adds min width to icon in Alert component for IE11 ([#187](https://github.com/sproutsocial/racine/issues/187)) ([cf6ff41](https://github.com/sproutsocial/racine/commit/cf6ff41))
2843
+
2844
+ ### Chores
2845
+
2846
+ - upgrade react-scripts, babel ([#186](https://github.com/sproutsocial/racine/issues/186)) ([dda2ecc](https://github.com/sproutsocial/racine/commit/dda2ecc))
2847
+
2848
+ ### BREAKING CHANGES
2849
+
2850
+ - the upgrade of babel changed the components' outputs
2851
+
2852
+ <a name="0.2.41"></a>
2853
+
2854
+ ## [0.2.41](https://github.com/sproutsocial/racine/compare/v0.2.40...v0.2.41) (2018-12-03)
2855
+
2856
+ <a name="0.2.40"></a>
2857
+
2858
+ ## [0.2.40](https://github.com/sproutsocial/racine/compare/v0.2.39...v0.2.40) (2018-12-03)
2859
+
2860
+ <a name="0.2.39"></a>
2861
+
2862
+ ## [0.2.39](https://github.com/sproutsocial/racine/compare/v0.2.38...v0.2.39) (2018-11-30)
2863
+
2864
+ ### Features
2865
+
2866
+ - add ChartLegend component ([#181](https://github.com/sproutsocial/racine/issues/181)) ([6444a3f](https://github.com/sproutsocial/racine/commit/6444a3f))
2867
+
2868
+ <a name="0.2.38"></a>
2869
+
2870
+ ## [0.2.38](https://github.com/sproutsocial/racine/compare/v0.2.37...v0.2.38) (2018-11-29)
2871
+
2872
+ ### Features
2873
+
2874
+ - **icons:** story icon ([#183](https://github.com/sproutsocial/racine/issues/183)) ([19ba408](https://github.com/sproutsocial/racine/commit/19ba408))
2875
+
2876
+ <a name="0.2.37"></a>
2877
+
2878
+ ## [0.2.37](https://github.com/sproutsocial/racine/compare/v0.2.36...v0.2.37) (2018-11-19)
2879
+
2880
+ <a name="0.2.36"></a>
2881
+
2882
+ ## [0.2.36](https://github.com/sproutsocial/racine/compare/v0.2.35...v0.2.36) (2018-11-13)
2883
+
2884
+ ### Features
2885
+
2886
+ - add KeyboardKey component ([#177](https://github.com/sproutsocial/racine/issues/177)) ([efb8393](https://github.com/sproutsocial/racine/commit/efb8393))
2887
+
2888
+ <a name="0.2.35"></a>
2889
+
2890
+ ## [0.2.35](https://github.com/sproutsocial/racine/compare/v0.2.34...v0.2.35) (2018-11-13)
2891
+
2892
+ ### Features
2893
+
2894
+ - **icon:** update image-caption icon ([#174](https://github.com/sproutsocial/racine/issues/174)) ([7b2bbfb](https://github.com/sproutsocial/racine/commit/7b2bbfb))
2895
+
2896
+ <a name="0.2.34"></a>
2897
+
2898
+ ## [0.2.34](https://github.com/sproutsocial/racine/compare/v0.2.33...v0.2.34) (2018-11-09)
2899
+
2900
+ <a name="0.2.33"></a>
2901
+
2902
+ ## [0.2.33](https://github.com/sproutsocial/racine/compare/v0.2.32...v0.2.33) (2018-11-08)
2903
+
2904
+ ### Features
2905
+
2906
+ - **icon:** image caption icon ([#172](https://github.com/sproutsocial/racine/issues/172)) ([935d6a7](https://github.com/sproutsocial/racine/commit/935d6a7))
2907
+
2908
+ <a name="0.2.32"></a>
2909
+
2910
+ ## [0.2.32](https://github.com/sproutsocial/racine/compare/v0.2.31...v0.2.32) (2018-11-01)
2911
+
2912
+ ### Features
2913
+
2914
+ - **icons:** crop icon ([#170](https://github.com/sproutsocial/racine/issues/170)) ([fb85748](https://github.com/sproutsocial/racine/commit/fb85748))
2915
+
2916
+ <a name="0.2.31"></a>
2917
+
2918
+ ## [0.2.31](https://github.com/sproutsocial/racine/compare/v0.2.30...v0.2.31) (2018-10-31)
2919
+
2920
+ ### Bug Fixes
2921
+
2922
+ - point 'Meta Data & Changelog' links to racine repo ([#168](https://github.com/sproutsocial/racine/issues/168)) ([6e5502a](https://github.com/sproutsocial/racine/commit/6e5502a))
2923
+
2924
+ <a name="0.2.30"></a>
2925
+
2926
+ ## [0.2.30](https://github.com/sproutsocial/racine/compare/v0.2.29...v0.2.30) (2018-10-25)
2927
+
2928
+ ### Features
2929
+
2930
+ - **Badge:** update color options per seeds documentation ([#167](https://github.com/sproutsocial/racine/issues/167)) ([f53b98e](https://github.com/sproutsocial/racine/commit/f53b98e))
2931
+
2932
+ <a name="0.2.29"></a>
2933
+
2934
+ ## [0.2.29](https://github.com/sproutsocial/racine/compare/v0.2.28...v0.2.29) (2018-10-24)
2935
+
2936
+ ### Features
2937
+
2938
+ - add carousel icon ([#166](https://github.com/sproutsocial/racine/issues/166)) ([c774710](https://github.com/sproutsocial/racine/commit/c774710))
2939
+
2940
+ <a name="0.2.28"></a>
2941
+
2942
+ ## [0.2.28](https://github.com/sproutsocial/racine/compare/v0.2.27...v0.2.28) (2018-10-24)
2943
+
2944
+ ### Features
2945
+
2946
+ - add Image component ([#165](https://github.com/sproutsocial/racine/issues/165)) ([bbaf3d2](https://github.com/sproutsocial/racine/commit/bbaf3d2))
2947
+
2948
+ <a name="0.2.27"></a>
2949
+
2950
+ ## [0.2.27](https://github.com/sproutsocial/racine/compare/v0.2.26...v0.2.27) (2018-10-17)
2951
+
2952
+ <a name="0.2.26"></a>
2953
+
2954
+ ## [0.2.26](https://github.com/sproutsocial/racine/compare/v0.2.25...v0.2.26) (2018-10-17)
2955
+
2956
+ ### Features
2957
+
2958
+ - add arrows icon ([#163](https://github.com/sproutsocial/racine/issues/163)) ([ae39bc8](https://github.com/sproutsocial/racine/commit/ae39bc8))
2959
+
2960
+ <a name="0.2.25"></a>
2961
+
2962
+ ## [0.2.25](https://github.com/sproutsocial/racine/compare/v0.2.24...v0.2.25) (2018-10-04)
2963
+
2964
+ ### Features
2965
+
2966
+ - add glasses icon ([#161](https://github.com/sproutsocial/racine/issues/161)) ([988cd7b](https://github.com/sproutsocial/racine/commit/988cd7b))
2967
+
2968
+ <a name="0.2.24"></a>
2969
+
2970
+ ## [0.2.24](https://github.com/sproutsocial/racine/compare/v0.2.23...v0.2.24) (2018-10-02)
2971
+
2972
+ ### Features
2973
+
2974
+ - **Icon:** update documentation with link to seeds & search ([#155](https://github.com/sproutsocial/racine/issues/155)) ([e13ee7f](https://github.com/sproutsocial/racine/commit/e13ee7f))
2975
+ - **icons:** add file-chart-line icon ([#154](https://github.com/sproutsocial/racine/issues/154)) ([b5bb229](https://github.com/sproutsocial/racine/commit/b5bb229))
2976
+ - **Text:** fix category contxtual classification ([#157](https://github.com/sproutsocial/racine/issues/157)) ([78b94ed](https://github.com/sproutsocial/racine/commit/78b94ed))
2977
+
2978
+ <a name="0.2.23"></a>
2979
+
2980
+ ## [0.2.23](https://github.com/sproutsocial/racine/compare/v0.2.22...v0.2.23) (2018-09-26)
2981
+
2982
+ ### Features
2983
+
2984
+ - **icons:** update bots icon ([e309eb3](https://github.com/sproutsocial/racine/commit/e309eb3))
2985
+
2986
+ <a name="0.2.22"></a>
2987
+
2988
+ ## [0.2.22](https://github.com/sproutsocial/racine/compare/v0.2.21...v0.2.22) (2018-09-26)
2989
+
2990
+ ### Features
2991
+
2992
+ - **icons:** add new filled external-link icon ([#152](https://github.com/sproutsocial/racine/issues/152)) ([80b76e4](https://github.com/sproutsocial/racine/commit/80b76e4))
2993
+
2994
+ <a name="0.2.21"></a>
2995
+
2996
+ ## [0.2.21](https://github.com/sproutsocial/racine/compare/v0.2.20...v0.2.21) (2018-09-18)
2997
+
2998
+ ### Features
2999
+
3000
+ - **icons:** add external-link icon ([#151](https://github.com/sproutsocial/racine/issues/151)) ([a4e1c18](https://github.com/sproutsocial/racine/commit/a4e1c18))
3001
+
3002
+ <a name="0.2.20"></a>
3003
+
3004
+ ## [0.2.20](https://github.com/sproutsocial/racine/compare/v0.2.19...v0.2.20) (2018-09-13)
3005
+
3006
+ <a name="0.2.19"></a>
3007
+
3008
+ ## [0.2.19](https://github.com/sproutsocial/racine/compare/v0.2.18...v0.2.19) (2018-09-13)
3009
+
3010
+ ### Features
3011
+
3012
+ - **icons:** add exchange-alt icon ([#150](https://github.com/sproutsocial/racine/issues/150)) ([f53567a](https://github.com/sproutsocial/racine/commit/f53567a))
3013
+
3014
+ <a name="0.2.18"></a>
3015
+
3016
+ ## [0.2.18](https://github.com/sproutsocial/racine/compare/v0.2.17...v0.2.18) (2018-09-12)
3017
+
3018
+ ### Features
3019
+
3020
+ - **icons:** add square icons for reddit, rss, youtube, tumblr ([#146](https://github.com/sproutsocial/racine/issues/146)) ([b586238](https://github.com/sproutsocial/racine/commit/b586238))
3021
+
3022
+ <a name="0.2.17"></a>
3023
+
3024
+ ## [0.2.17](https://github.com/sproutsocial/racine/compare/v0.2.16...v0.2.17) (2018-09-11)
3025
+
3026
+ ### Features
3027
+
3028
+ - **icons:** add audience network icons ([#148](https://github.com/sproutsocial/racine/issues/148)) ([4787439](https://github.com/sproutsocial/racine/commit/4787439))
3029
+
3030
+ <a name="0.2.16"></a>
3031
+
3032
+ ## [0.2.16](https://github.com/sproutsocial/racine/compare/v0.2.15...v0.2.16) (2018-09-04)
3033
+
3034
+ ### Features
3035
+
3036
+ - **icons:** add barcode icon ([#145](https://github.com/sproutsocial/racine/issues/145)) ([85820be](https://github.com/sproutsocial/racine/commit/85820be))
3037
+ - add Text component ([#144](https://github.com/sproutsocial/racine/issues/144)) ([d33b103](https://github.com/sproutsocial/racine/commit/d33b103))
3038
+
3039
+ <a name="0.2.15"></a>
3040
+
3041
+ ## [0.2.15](https://github.com/sproutsocial/racine/compare/v0.2.14...v0.2.15) (2018-08-21)
3042
+
3043
+ ### Features
3044
+
3045
+ - **icons:** replace custom youtube icon with Font Awesome version ([#143](https://github.com/sproutsocial/racine/issues/143)) ([e138432](https://github.com/sproutsocial/racine/commit/e138432))
3046
+
3047
+ <a name="0.2.14"></a>
3048
+
3049
+ ## [0.2.14](https://github.com/sproutsocial/racine/compare/v0.2.13...v0.2.14) (2018-08-21)
3050
+
3051
+ ### Features
3052
+
3053
+ - **icons:** moved the old, misnamed youtube-sqaure icon and replaced it with the youtube icon. ([dc14dfa](https://github.com/sproutsocial/racine/commit/dc14dfa))
3054
+
3055
+ <a name="0.2.13"></a>
3056
+
3057
+ ## [0.2.13](https://github.com/sproutsocial/racine/compare/v0.2.12...v0.2.13) (2018-08-06)
3058
+
3059
+ ### Features
3060
+
3061
+ - **icons:** add paid calculator icon ([#138](https://github.com/sproutsocial/racine/issues/138)) ([ff3fe3b](https://github.com/sproutsocial/racine/commit/ff3fe3b))
3062
+
3063
+ <a name="0.2.12"></a>
3064
+
3065
+ ## [0.2.12](https://github.com/sproutsocial/racine/compare/v0.2.11...v0.2.12) (2018-07-31)
3066
+
3067
+ ### Bug Fixes
3068
+
3069
+ - **Loader:** make QA attribute optional ([#134](https://github.com/sproutsocial/racine/issues/134)) ([3f9eb9a](https://github.com/sproutsocial/racine/commit/3f9eb9a))
3070
+
3071
+ <a name="0.2.11"></a>
3072
+
3073
+ ## [0.2.11](https://github.com/sproutsocial/racine/compare/v0.2.10...v0.2.11) (2018-07-30)
3074
+
3075
+ ### Features
3076
+
3077
+ - add Loader component ([#128](https://github.com/sproutsocial/racine/issues/128)) ([7503b75](https://github.com/sproutsocial/racine/commit/7503b75))
3078
+
3079
+ <a name="0.2.10"></a>
3080
+
3081
+ ## [0.2.10](https://github.com/sproutsocial/racine/compare/v0.2.9...v0.2.10) (2018-07-26)
3082
+
3083
+ ### Features
3084
+
3085
+ - **icons:** adding new money icon for boosting ([#129](https://github.com/sproutsocial/racine/issues/129)) ([9da74ec](https://github.com/sproutsocial/racine/commit/9da74ec))
3086
+
3087
+ <a name="0.2.9"></a>
3088
+
3089
+ ## [0.2.9](https://github.com/sproutsocial/racine/compare/v0.2.8...v0.2.9) (2018-07-12)
3090
+
3091
+ ### Bug Fixes
3092
+
3093
+ - **Alert:** change Alert icon size to default ([#127](https://github.com/sproutsocial/racine/issues/127)) ([217ee74](https://github.com/sproutsocial/racine/commit/217ee74))
3094
+
3095
+ <a name="0.2.8"></a>
3096
+
3097
+ ## [0.2.8](https://github.com/sproutsocial/racine/compare/v0.2.7...v0.2.8) (2018-07-12)
3098
+
3099
+ ### Features
3100
+
3101
+ - **Alert:** add tests and CSS fixed to Alert ([93f173e](https://github.com/sproutsocial/racine/commit/93f173e))
3102
+ - **Alert:** add tests and CSS fixes to Alert ([e6ab868](https://github.com/sproutsocial/racine/commit/e6ab868))
3103
+
3104
+ <a name="0.2.7"></a>
3105
+
3106
+ ## [0.2.7](https://github.com/sproutsocial/racine/compare/v0.2.6...v0.2.7) (2018-07-11)
3107
+
3108
+ ### Bug Fixes
3109
+
3110
+ - **Icon:** fix Icon rendering in PDFs ([#126](https://github.com/sproutsocial/racine/issues/126)) ([eb4f195](https://github.com/sproutsocial/racine/commit/eb4f195))
3111
+
3112
+ <a name="0.2.6"></a>
3113
+
3114
+ ## [0.2.6](https://github.com/sproutsocial/racine/compare/v0.2.5...v0.2.6) (2018-07-11)
3115
+
3116
+ ### Bug Fixes
3117
+
3118
+ - **Icon:** add IE 11 fix ([#123](https://github.com/sproutsocial/racine/issues/123)) ([326380a](https://github.com/sproutsocial/racine/commit/326380a))
3119
+
3120
+ <a name="0.2.5"></a>
3121
+
3122
+ ## [0.2.5](https://github.com/sproutsocial/racine/compare/v0.2.4...v0.2.5) (2018-07-09)
3123
+
3124
+ ### Features
3125
+
3126
+ - **Icons:** add fixed width option to Icon component ([#122](https://github.com/sproutsocial/racine/issues/122)) ([41281e3](https://github.com/sproutsocial/racine/commit/41281e3))
3127
+ - **ToggleHint:** add ToggleHint component ([#121](https://github.com/sproutsocial/racine/issues/121)) ([a0115e0](https://github.com/sproutsocial/racine/commit/a0115e0))
3128
+
3129
+ <a name="0.2.4"></a>
3130
+
3131
+ ## [0.2.4](https://github.com/sproutsocial/racine/compare/v0.2.3...v0.2.4) (2018-06-29)
3132
+
3133
+ ### Bug Fixes
3134
+
3135
+ - **icons:** hotfix to revert fixedwidth CSS until PR is tested further ([#119](https://github.com/sproutsocial/racine/issues/119)) ([427b341](https://github.com/sproutsocial/racine/commit/427b341))
3136
+
3137
+ <a name="0.2.3"></a>
3138
+
3139
+ ## [0.2.3](https://github.com/sproutsocial/racine/compare/v0.2.2...v0.2.3) (2018-06-28)
3140
+
3141
+ ### Bug Fixes
3142
+
3143
+ - **icons:** updating and removing unused or redundant icons ([#118](https://github.com/sproutsocial/racine/issues/118)) ([8418fd8](https://github.com/sproutsocial/racine/commit/8418fd8))
3144
+
3145
+ ### Features
3146
+
3147
+ - **Icon:** proportional width icons ([7f3e38e](https://github.com/sproutsocial/racine/commit/7f3e38e))
3148
+
3149
+ <a name="0.2.2"></a>
3150
+
3151
+ ## [0.2.2](https://github.com/sproutsocial/racine/compare/v0.2.1...v0.2.2) (2018-06-22)
3152
+
3153
+ ### Bug Fixes
3154
+
3155
+ - **icons:** fix name of trash-can icon ([#116](https://github.com/sproutsocial/racine/issues/116)) ([b3923e4](https://github.com/sproutsocial/racine/commit/b3923e4))
3156
+
3157
+ <a name="0.2.1"></a>
3158
+
3159
+ ## [0.2.1](https://github.com/sproutsocial/racine/compare/v0.2.0...v0.2.1) (2018-06-22)
3160
+
3161
+ ### Bug Fixes
3162
+
3163
+ - **icons:** fixing SVG names to match SEEDS standards part 1 ([#114](https://github.com/sproutsocial/racine/issues/114)) ([e399bca](https://github.com/sproutsocial/racine/commit/e399bca))
3164
+ - **icons:** fixing SVG names to match SEEDS standards part 2 ([#115](https://github.com/sproutsocial/racine/issues/115)) ([53c3d09](https://github.com/sproutsocial/racine/commit/53c3d09))
3165
+
3166
+ <a name="0.2.0"></a>
3167
+
3168
+ # [0.2.0](https://github.com/sproutsocial/racine/compare/v0.1.4...v0.2.0) (2018-06-18)
3169
+
3170
+ ### Features
3171
+
3172
+ - add Textarea component ([#104](https://github.com/sproutsocial/racine/issues/104)) ([bea0984](https://github.com/sproutsocial/racine/commit/bea0984))
3173
+ - **Badge:** get badge up to parity with workshop ([#111](https://github.com/sproutsocial/racine/issues/111)) ([225efe9](https://github.com/sproutsocial/racine/commit/225efe9))
3174
+ - **Icon:** update to component defaults, add Font Awesome icons ([#112](https://github.com/sproutsocial/racine/issues/112)) ([89d83ea](https://github.com/sproutsocial/racine/commit/89d83ea))
3175
+ - **icons:** add Slack logo icon ([#110](https://github.com/sproutsocial/racine/issues/110)) ([e281f10](https://github.com/sproutsocial/racine/commit/e281f10))
3176
+
3177
+ ### BREAKING CHANGES
3178
+
3179
+ - **Icon:** changes all existing icons
3180
+
3181
+ <a name="0.1.5"></a>
3182
+
3183
+ ## [0.1.5](https://github.com/sproutsocial/racine/compare/v0.1.4...v0.1.5) (2018-06-12)
3184
+
3185
+ ### Features
3186
+
3187
+ - add Textarea component ([#104](https://github.com/sproutsocial/racine/issues/104)) ([bea0984](https://github.com/sproutsocial/racine/commit/bea0984))
3188
+ - **Badge:** get badge up to parity with workshop ([#111](https://github.com/sproutsocial/racine/issues/111)) ([225efe9](https://github.com/sproutsocial/racine/commit/225efe9))
3189
+
3190
+ <a name="0.1.4"></a>
3191
+
3192
+ ## [0.1.4](https://github.com/sproutsocial/racine/compare/v0.1.3...v0.1.4) (2018-05-23)
3193
+
3194
+ ### Features
3195
+
3196
+ - **Icon:** fix issue with fill being set on audio icon ([#97](https://github.com/sproutsocial/racine/issues/97)) ([4e52430](https://github.com/sproutsocial/racine/commit/4e52430))
3197
+
3198
+ <a name="0.1.3"></a>
3199
+
3200
+ ## [0.1.3](https://github.com/sproutsocial/racine/compare/v0.1.2...v0.1.3) (2018-05-17)
3201
+
3202
+ ### Features
3203
+
3204
+ - add Radio component ([#91](https://github.com/sproutsocial/racine/issues/91)) ([c2901e7](https://github.com/sproutsocial/racine/commit/c2901e7))
3205
+ - **icons:** add audio icon ([#93](https://github.com/sproutsocial/racine/issues/93)) ([b97268c](https://github.com/sproutsocial/racine/commit/b97268c))
3206
+
3207
+ <a name="0.1.2"></a>
3208
+
3209
+ ## [0.1.2](https://github.com/sproutsocial/racine/compare/v0.1.1...v0.1.2) (2018-05-10)
3210
+
3211
+ ### Bug Fixes
3212
+
3213
+ - **build:** ignore setupTests.js in published JS ([#89](https://github.com/sproutsocial/racine/issues/89)) ([23b55bf](https://github.com/sproutsocial/racine/commit/23b55bf))
3214
+ - **build:** remove postinstall script from package.json ([#90](https://github.com/sproutsocial/racine/issues/90)) ([82240a9](https://github.com/sproutsocial/racine/commit/82240a9))
3215
+
3216
+ <a name="0.1.1"></a>
3217
+
3218
+ ## [0.1.1](https://github.com/sproutsocial/racine/compare/v0.1.0...v0.1.1) (2018-05-10)
3219
+
3220
+ ### Features
3221
+
3222
+ - **icons:** add sprout social icon ([#84](https://github.com/sproutsocial/racine/issues/84)) ([29e9743](https://github.com/sproutsocial/racine/commit/29e9743))
3223
+ - **icons:** sync icons with web app ([#76](https://github.com/sproutsocial/racine/issues/76)) ([c1ff783](https://github.com/sproutsocial/racine/commit/c1ff783))
3224
+ - add Checkbox component ([#86](https://github.com/sproutsocial/racine/issues/86)) ([9cef219](https://github.com/sproutsocial/racine/commit/9cef219))
3225
+ - **icons:** sync icons with web-app ([#87](https://github.com/sproutsocial/racine/issues/87)) ([c42e63b](https://github.com/sproutsocial/racine/commit/c42e63b))
3226
+
3227
+ <a name="0.1.0"></a>
3228
+
3229
+ # [0.1.0](https://github.com/sproutsocial/racine/compare/v0.0.7...v0.1.0) (2018-04-04)
3230
+
3231
+ ### Features
3232
+
3233
+ - **EducationTip:** remove EducationTip component ([#74](https://github.com/sproutsocial/racine/issues/74)) ([18e72d3](https://github.com/sproutsocial/racine/commit/18e72d3))
3234
+
3235
+ ### BREAKING CHANGES
3236
+
3237
+ - **EducationTip:** remove EducationTip component
3238
+
3239
+ <a name="0.0.7"></a>
3240
+
3241
+ ## [0.0.7](https://github.com/sproutsocial/racine/compare/v0.0.6...v0.0.7) (2018-03-27)
3242
+
3243
+ ### Bug Fixes
3244
+
3245
+ - **build:** make exported flow types accessible ([#61](https://github.com/sproutsocial/racine/issues/61)) ([bc8db2f](https://github.com/sproutsocial/racine/commit/bc8db2f))
3246
+
3247
+ ### Features
3248
+
3249
+ - **build:** export propTypes converted from Flow Types ([#60](https://github.com/sproutsocial/racine/issues/60)) ([ba86eb7](https://github.com/sproutsocial/racine/commit/ba86eb7))
3250
+ - **icon:** add reporting period icon ([b314211](https://github.com/sproutsocial/racine/commit/b314211))
3251
+
3252
+ <a name="0.0.6"></a>
3253
+
3254
+ ## [0.0.6](https://github.com/sproutsocial/racine/compare/v0.0.5...v0.0.6) (2018-03-23)
3255
+
3256
+ ### Features
3257
+
3258
+ - **build:** add dist/iconList.js to package output ([#54](https://github.com/sproutsocial/racine/issues/54)) ([b6ea84a](https://github.com/sproutsocial/racine/commit/b6ea84a))
3259
+
3260
+ <a name="0.0.5"></a>
3261
+
3262
+ ## [0.0.5](https://github.com/sproutsocial/racine/compare/v0.0.2...v0.0.5) (2018-03-21)
3263
+
3264
+ (0.0.3 - 0.0.5-1 were invalid publishes are were removed)
3265
+
3266
+ ### Features
3267
+
3268
+ - **icons:** sync icons with web app ([#48](https://github.com/sproutsocial/racine/issues/48)) ([0d5c790](https://github.com/sproutsocial/racine/commit/0d5c790))
3269
+
3270
+ ### Bug Fixes
3271
+
3272
+ - **build:** build package before publishing ([1eea9be](https://github.com/sproutsocial/racine/commit/1eea9be))