@spothero/ui 16.2.0-beta.0 → 17.0.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (147) hide show
  1. package/dist/components/Accordion/Accordion.js +13 -0
  2. package/dist/components/Accordion/Accordion.stories.js +86 -0
  3. package/dist/components/Accordion/index.js +41 -0
  4. package/dist/components/Accordion/styles/button.js +23 -0
  5. package/dist/components/Accordion/styles/container.js +15 -0
  6. package/dist/components/Accordion/styles/index.js +32 -0
  7. package/dist/components/Accordion/styles/panel.js +13 -0
  8. package/dist/components/Alert/Alert.js +119 -0
  9. package/dist/components/Alert/Alert.stories.js +80 -0
  10. package/dist/components/Alert/index.js +15 -0
  11. package/dist/components/Alert/styles/index.js +192 -0
  12. package/dist/components/AutoSuggestSelect/AutoSuggestSelect.js +189 -0
  13. package/dist/components/AutoSuggestSelect/index.js +15 -0
  14. package/dist/components/Badge/Badge.js +13 -0
  15. package/dist/components/Badge/Badge.stories.js +38 -0
  16. package/dist/components/Badge/styles/index.js +40 -0
  17. package/dist/components/Button/Button.js +73 -0
  18. package/dist/components/Button/Button.spec.js +31 -0
  19. package/dist/components/Button/Button.styles.js +173 -0
  20. package/dist/components/Button/button-props.js +90 -0
  21. package/dist/components/Button/index.js +23 -0
  22. package/dist/components/Button/stories/button.js +59 -0
  23. package/dist/components/Button/stories/index.stories.js +124 -0
  24. package/dist/components/Button/stories/overview.js +96 -0
  25. package/dist/components/Card/Card.js +38 -0
  26. package/dist/components/Card/Card.stories.js +41 -0
  27. package/dist/components/Checkbox/Checkbox.js +13 -0
  28. package/dist/components/Checkbox/Checkbox.stories.js +44 -0
  29. package/dist/components/Checkbox/index.js +15 -0
  30. package/dist/components/Checkbox/styles/index.js +64 -0
  31. package/dist/components/Container/Container.js +34 -0
  32. package/dist/components/Container/Container.stories.js +74 -0
  33. package/dist/components/Container/Container.styles.js +17 -0
  34. package/dist/components/Divider/Divider.js +47 -0
  35. package/dist/components/Divider/Divider.stories.js +49 -0
  36. package/dist/components/Divider/Divider.styles.js +28 -0
  37. package/dist/components/FormControl/FormControl.js +79 -0
  38. package/dist/components/Grid/Grid.js +49 -0
  39. package/dist/components/Grid/Grid.stories.js +141 -0
  40. package/dist/components/Grid/Grid.styles.js +19 -0
  41. package/dist/components/Grid/GridItem.js +34 -0
  42. package/dist/components/Grid/GridItem.styles.js +13 -0
  43. package/dist/components/Grid/index.js +23 -0
  44. package/dist/components/Heading/Heading.js +49 -0
  45. package/dist/components/Heading/Heading.stories.js +54 -0
  46. package/dist/components/Heading/Heading.styles.js +79 -0
  47. package/dist/components/Icon/Icon.js +13 -0
  48. package/dist/components/Icon/Icon.stories.js +47 -0
  49. package/dist/components/Image/Image.js +106 -0
  50. package/dist/components/Image/Image.spec.js +83 -0
  51. package/dist/components/Image/Image.stories.js +92 -0
  52. package/dist/components/Input/Input.js +61 -0
  53. package/dist/components/Input/Input.stories.js +71 -0
  54. package/dist/components/Input/index.js +15 -0
  55. package/dist/components/Input/styles/index.js +71 -0
  56. package/dist/components/Link/Link.js +13 -0
  57. package/dist/components/Link/Link.stories.js +61 -0
  58. package/dist/components/Link/Link.styles.js +42 -0
  59. package/dist/components/List/List.js +88 -0
  60. package/dist/components/List/List.stories.js +124 -0
  61. package/dist/components/List/index.js +23 -0
  62. package/dist/components/List/styles/index.js +24 -0
  63. package/dist/components/List/styles/item.styles.js +11 -0
  64. package/dist/components/Loader/Loader.js +62 -0
  65. package/dist/components/Loader/Loader.stories.js +140 -0
  66. package/dist/components/Modal/Modal.js +52 -0
  67. package/dist/components/Modal/Modal.stories.js +236 -0
  68. package/dist/components/Modal/index.js +15 -0
  69. package/dist/components/Modal/styles/body.js +48 -0
  70. package/dist/components/Modal/styles/closeButton.js +27 -0
  71. package/dist/components/Modal/styles/dialog.js +25 -0
  72. package/dist/components/Modal/styles/dialogContainer.js +26 -0
  73. package/dist/components/Modal/styles/footer.js +12 -0
  74. package/dist/components/Modal/styles/header.js +20 -0
  75. package/dist/components/Modal/styles/index.js +70 -0
  76. package/dist/components/Modal/styles/overlay.js +12 -0
  77. package/dist/components/Popover/Popover.js +48 -0
  78. package/dist/components/Popover/Popover.stories.js +101 -0
  79. package/dist/components/Popover/PopoverArrow.js +34 -0
  80. package/dist/components/Popover/PopoverCloseButton.js +34 -0
  81. package/dist/components/Popover/PopoverContent.js +53 -0
  82. package/dist/components/Popover/index.js +37 -0
  83. package/dist/components/Popover/styles/index.js +38 -0
  84. package/dist/components/Popover/styles/popover-arrow.js +16 -0
  85. package/dist/components/Popover/styles/popover-body.js +15 -0
  86. package/dist/components/Popover/styles/popover-close-button.js +30 -0
  87. package/dist/components/Popover/styles/popover-content.js +29 -0
  88. package/dist/components/Popover/styles/popover-header.js +12 -0
  89. package/dist/components/Popover/styles/popper.js +11 -0
  90. package/dist/components/Radio/Radio.js +52 -0
  91. package/dist/components/Radio/Radio.stories.js +142 -0
  92. package/dist/components/Radio/RadioGroup.js +65 -0
  93. package/dist/components/Radio/index.js +23 -0
  94. package/dist/components/Radio/styles/index.js +65 -0
  95. package/dist/components/Select/Select.js +71 -0
  96. package/dist/components/Select/Select.stories.js +74 -0
  97. package/dist/components/Select/index.js +15 -0
  98. package/dist/components/Select/styles/index.js +57 -0
  99. package/dist/components/Skeleton/Skeleton.stories.js +41 -0
  100. package/dist/components/Skeleton/Skeleton.styles.js +13 -0
  101. package/dist/components/Skeleton/index.js +25 -0
  102. package/dist/components/Spinner/Spinner.js +47 -0
  103. package/dist/components/Spinner/Spinner.stories.js +134 -0
  104. package/dist/components/Spinner/Spinner.styles.js +76 -0
  105. package/dist/components/Switch/Switch.js +59 -0
  106. package/dist/components/Switch/Switch.stories.js +86 -0
  107. package/dist/components/Switch/index.js +15 -0
  108. package/dist/components/Switch/styles/index.js +46 -0
  109. package/dist/components/Table/Table.js +13 -0
  110. package/dist/components/Table/Table.stories.js +92 -0
  111. package/dist/components/Table/Table.styles.js +87 -0
  112. package/dist/components/Table/index.js +59 -0
  113. package/dist/components/Tabs/Tabs.js +48 -0
  114. package/dist/components/Tabs/Tabs.stories.js +51 -0
  115. package/dist/components/Tabs/combineSizeWithVariant.js +44 -0
  116. package/dist/components/Tabs/index.js +41 -0
  117. package/dist/components/Tabs/styles/index.js +52 -0
  118. package/dist/components/Text/Text.js +44 -0
  119. package/dist/components/Text/Text.stories.js +56 -0
  120. package/dist/components/Text/Text.styles.js +67 -0
  121. package/dist/components/Text/combineAsWithVariant.js +123 -0
  122. package/dist/components/Text/options.js +9 -0
  123. package/dist/components/ThemeProvider/ThemeProvider.js +66 -0
  124. package/dist/components/ThemeProvider/ThemeProvider.stories.js +63 -0
  125. package/dist/components/index.js +577 -0
  126. package/dist/components/styles.js +175 -0
  127. package/dist/theme/base/breakpoints.js +27 -0
  128. package/dist/theme/base/colors.js +148 -0
  129. package/dist/theme/base/index.js +59 -0
  130. package/dist/theme/base/sizes.js +88 -0
  131. package/dist/theme/base/typography.js +41 -0
  132. package/dist/theme/base/zindices.js +35 -0
  133. package/dist/theme/global.js +52 -0
  134. package/dist/theme/index.js +63 -0
  135. package/dist/utils/Spaces.js +27 -0
  136. package/package.json +4 -4
  137. package/.eslintignore +0 -7
  138. package/CHANGELOG.md +0 -1767
  139. package/__tests__/threshold-ratchet.js +0 -167
  140. package/babel.config.js +0 -1
  141. package/dex.config.js +0 -45
  142. package/jest.config.json +0 -64
  143. package/v2/assets-manifest.json +0 -5
  144. package/v2/index.html +0 -1
  145. package/v2/index.js +0 -3
  146. package/v2/index.js.LICENSE.txt +0 -14
  147. package/v2/index.js.map +0 -1
package/CHANGELOG.md DELETED
@@ -1,1767 +0,0 @@
1
- # 14.8.5 - 06/22/2022
2
-
3
- ## Miscellaneous Updates
4
- * [[bff3c9d](https://github.com/spothero/fe-ui/commit/bff3c9d)] - `fix:` Fix imports in v1 modal ([#302](https://github.com/spothero/fe-ui/pull/302)) (Mick Johnson)
5
-
6
- # 14.8.4 - 06/21/2022
7
- ## Miscellaneous Updates
8
- * [[2809609](https://github.com/spothero/fe-ui/commit/2809609)] - `feature:` Add Modal to V2 ([#299](https://github.com/spothero/fe-ui/pull/299)) (Mick Johnson)
9
-
10
- # 14.8.3 - 06/21/2022
11
-
12
- ## Miscellaneous Updates
13
- * [[9d66803](https://github.com/spothero/fe-ui/commit/9d66803)] - `fix:` Adds legacy-peer-deps to npmrc to support npm changes ([#301](https://github.com/spothero/fe-ui/pull/301)) (Max Rashes)
14
- * [[c254ac0](https://github.com/spothero/fe-ui/commit/c254ac0)] - `chore:` Refactored Layer stories to increase clarity ([#300](https://github.com/spothero/fe-ui/pull/300)) (Nathan Caraker)
15
-
16
- # 14.8.2 - 05/24/2022
17
-
18
- ## Miscellaneous Updates
19
- * [[e1703b6](https://github.com/spothero/fe-ui/commit/e1703b6)] - `fix:` Update components with optional chaining and required props ([#298](https://github.com/spothero/fe-ui/pull/298)) (Janavi Anand)
20
-
21
- # 14.8.2-beta.0 - 05/23/2022
22
-
23
- ## Miscellaneous Updates
24
- * [[910c646](https://github.com/spothero/fe-ui/commit/910c646)] - `fix:` Update components with optional chaining and required props (JanaviAnand_SpotHero)
25
-
26
- # 14.8.1 - 05/20/2022
27
- ## Miscellaneous Updates
28
- * [[63d43ff](https://github.com/spothero/fe-ui/commit/63d43ff)] - Sear 2077 - replace rollup with dex ([#297](https://github.com/spothero/fe-ui/pull/297)) (Tyler Williams)
29
-
30
- # 14.8.0 - 05/19/2022
31
-
32
- ## New Features
33
- * [[c5dcc22](https://github.com/spothero/fe-ui/commit/c5dcc22)] - Removed textButton and textButtonOnDark from fe-ui. Also removed underline for now ([#296](https://github.com/spothero/fe-ui/pull/296)) (Max Rashes)
34
-
35
- # 14.7.6 - 05/18/2022
36
-
37
- ## Miscellaneous Updates
38
- * [[5dbc9cf](https://github.com/spothero/fe-ui/commit/5dbc9cf)] - `fix:` Updated Icon import to use chakra instead of local ([#294](https://github.com/spothero/fe-ui/pull/294)) (Nathan Caraker)
39
- * `fix:` Removed icon from select component to fix rollup issues
40
-
41
- # 14.7.6-beta.0 - 05/17/2022
42
-
43
- ## Miscellaneous Updates
44
- * [[a9d0a6b](https://github.com/spothero/fe-ui/commit/a9d0a6b)] - `fix:` Updated Icon import to use chakra instead of local (Nathan)
45
-
46
- # 14.7.5 - 05/17/2022
47
-
48
- ## Miscellaneous Updates
49
- * [[20382aa](https://github.com/spothero/fe-ui/commit/20382aa)] - `fix:` Make font weight normal in Input ([#293](https://github.com/spothero/fe-ui/pull/293)) (annaliarosed)
50
- * `fix:` Make font weight normal in Input
51
- * `refactor:` Explicitely write out font weight normalCo-authored-by: Annalia Destefano <annalia.destefano@spothero.com>
52
-
53
- # 14.7.4 - 05/17/2022
54
-
55
- ## Miscellaneous Updates
56
- * [[4adc1b1](https://github.com/spothero/fe-ui/commit/4adc1b1)] - `fix:` Icon inside select updated to match design file ([#291](https://github.com/spothero/fe-ui/pull/291)) (annaliarosed)
57
- * `Co-authored-by:` Annalia Destefano <annalia.destefano@spothero.com>
58
-
59
- # 14.7.3 - 05/16/2022
60
-
61
- ## Miscellaneous Updates
62
- * [[147d2d6](https://github.com/spothero/fe-ui/commit/147d2d6)] - `fix:` Adjusted z-index so popover should always be on top ([#292](https://github.com/spothero/fe-ui/pull/292)) (Nathan Caraker)
63
-
64
- # 14.7.2 - 05/16/2022
65
-
66
- ## Miscellaneous Updates
67
- * [[d967c18](https://github.com/spothero/fe-ui/commit/d967c18)] - `fix:` border color change on invalid and focused ([#290](https://github.com/spothero/fe-ui/pull/290)) (annaliarosed)
68
- * `fix:` Border color change on invalid and focused
69
- * `fix:` Fix font size of error message to match designCo-authored-by: Annalia Destefano <annalia.destefano@spothero.com>
70
-
71
- # 14.7.1 - 05/13/2022
72
-
73
- ## Miscellaneous Updates
74
- * [[7141cca](https://github.com/spothero/fe-ui/commit/7141cca)] - `fix:` Kebab case style property was throwing terminal warning ([#289](https://github.com/spothero/fe-ui/pull/289)) (Mick Johnson)
75
-
76
- # 14.7.0 - 05/12/2022
77
-
78
- ## New Features
79
- * [[bf20c4f](https://github.com/spothero/fe-ui/commit/bf20c4f)] - Add classname to input and select so it doesn't break in prod ([#287](https://github.com/spothero/fe-ui/pull/287)) (annaliarosed)
80
- * `Co-authored-by:` Annalia Destefano <annalia.destefano@spothero.com>
81
-
82
- # 14.6.0 - 05/10/2022
83
-
84
- ## New Features
85
- * [[119cc85](https://github.com/spothero/fe-ui/commit/119cc85)] - Wrap Select component in FormControl component ([#285](https://github.com/spothero/fe-ui/pull/285)) (annaliarosed)
86
- * `feat:` Wrap Select in FormControl and update stories for Select
87
- * `feat:` Update styles to match design
88
- * `chore:` Remove FormControl stories for now
89
- * `fix:` Connect label and input
90
- * `fix:` Connect label and inputCo-authored-by: Annalia Destefano <annalia.destefano@spothero.com>
91
-
92
- # 14.5.2 - 05/10/2022
93
-
94
- ## Miscellaneous Updates
95
- * [[d59e284](https://github.com/spothero/fe-ui/commit/d59e284)] - `fix:` Link new Input and Label using htmlFor ([#286](https://github.com/spothero/fe-ui/pull/286)) (Mick Johnson)
96
-
97
- # 14.5.1 - 05/05/2022
98
- ## Miscellaneous Updates
99
- * [[87e838a](https://github.com/spothero/fe-ui/commit/87e838a)] - `feature:` FED 321 secondary button updates, add tertiary and destructive buttons ([#284](https://github.com/spothero/fe-ui/pull/284)) (Mick Johnson)
100
-
101
- # 14.5.0 - 05/03/2022
102
-
103
- ## New Features
104
- * [[173526f](https://github.com/spothero/fe-ui/commit/173526f)] - FED-354 feat: adds Input component ([#283](https://github.com/spothero/fe-ui/pull/283)) (annaliarosed)
105
- * `feat:` Set up TextInput component
106
- * `refactor:` Rename component and set up styles
107
- * `feat:` Unlabeled, placeholder styles added
108
- * `feat:` Unlabeled, value styles added
109
- * `feat:` Unlabeled, focus styles added
110
- * `feat:` Unlabeled, error and disabled styles added
111
- * `feat:` Add label prop and styles
112
- * `feat:` Add helperText prop and styles
113
- * `feat:` Add errorMessage prop and styles
114
- * `feat:` Add isReadOnly prop to stories
115
- * `fix:` Clean up
116
- * `fix:` Change value color when isInvalid
117
- * `fix:` Add missing ref
118
- * `refactor:` Extract FormControl
119
- * `fix:` Remove imported interfaces
120
- * `fix:` Pass only isInvalid prop to FormControl
121
- * `fix:` Pass only isDisabled and isRequired prop to FormControl
122
- * `fix:` Pass forgotten propsCo-authored-by: Annalia Destefano <annalia.destefano@spothero.com>
123
-
124
- # 14.4.0 - 04/21/2022
125
-
126
- ## Dependency Updates
127
- * [[d04c143](https://github.com/spothero/fe-ui/commit/d04c143)] - Upgrade to React 17 ([#282](https://github.com/spothero/fe-ui/pull/282)) (Gru Singh)
128
-
129
- # 14.3.5 - 04/11/2022
130
-
131
- ## Miscellaneous Updates
132
- * [[af1a36c](https://github.com/spothero/fe-ui/commit/af1a36c)] - `fix:` Remove ImageCarousel from fe-ui ([#281](https://github.com/spothero/fe-ui/pull/281)) (Gru Singh)
133
-
134
- # 14.3.4 - 04/11/2022
135
-
136
- # 14.3.3 - 04/07/2022
137
-
138
- ## Miscellaneous Updates
139
- * [[8511f03](https://github.com/spothero/fe-ui/commit/8511f03)] - `refactor:` Add controls to checkbox stories ([#279](https://github.com/spothero/fe-ui/pull/279)) (annaliarosed)
140
- * `refactor:` Add controls to checkbox stories
141
-
142
- # 14.3.2 - 04/07/2022
143
-
144
- ## Miscellaneous Updates
145
- * [[2588e13](https://github.com/spothero/fe-ui/commit/2588e13)] - `fix:` Revert commit 346683 feat: Use dynamic import for Image Carousel ([#278](https://github.com/spothero/fe-ui/pull/278)) (Gru Singh)
146
-
147
- # 14.3.1 - 04/07/2022
148
-
149
- ## Miscellaneous Updates
150
- * [[714ec08](https://github.com/spothero/fe-ui/commit/714ec08)] - `fix:` Storybook working with old babel-preset 0.2.0 ([#277](https://github.com/spothero/fe-ui/pull/277)) (Gru Singh)
151
-
152
- # 14.3.0 - 04/05/2022
153
-
154
- ## Dependency Updates
155
- * [[b70fb46](https://github.com/spothero/fe-ui/commit/b70fb46)] - Upgrade dependencies ([#276](https://github.com/spothero/fe-ui/pull/276)) (Gru Singh)
156
-
157
- # 14.2.0 - 04/05/2022
158
-
159
- ## Dependency Updates
160
- * [[15c9010](https://github.com/spothero/fe-ui/commit/15c9010)] - Relax peer deps version ([#275](https://github.com/spothero/fe-ui/pull/275)) (Gru Singh)
161
-
162
- # 14.1.0 - 04/04/2022
163
-
164
- ## Dependency Updates
165
- * [[53b28bf](https://github.com/spothero/fe-ui/commit/53b28bf)] - Upgrade SpotHero packages ([#274](https://github.com/spothero/fe-ui/pull/274)) (Gru Singh)
166
-
167
- # 14.0.0 - 04/01/2022
168
-
169
- ## Breaking Changes
170
- * [[3e0ee21](https://github.com/spothero/fe-ui/commit/3e0ee21)] - Upgrade to nodejs 16 ([#273](https://github.com/spothero/fe-ui/pull/273)) (Gru Singh)
171
-
172
- # 13.10.1 - 03/11/2022
173
- ## Miscellaneous Updates
174
- * [[4a3b6b0](https://github.com/spothero/fe-ui/commit/4a3b6b0)] - Add support for creating custom icons ([#271](https://github.com/spothero/fe-ui/pull/271)) (Eddie Padin)
175
- * `feature:` Add support for creating custom icons using the chakra customIcon helperCo-authored-by: sh-devtools-bot <sh-dev-tools-bot@spothero.com>
176
-
177
- # 13.10.1-beta.0 - 03/11/2022
178
- ## Miscellaneous Updates
179
- * [[815224c](https://github.com/spothero/fe-ui/commit/815224c)] - `feature:` Add support for creating custom icons (eddielee394)
180
-
181
- # 13.10.0 - 02/28/2022
182
-
183
- ## New Features
184
- * [[39d3b1d](https://github.com/spothero/fe-ui/commit/39d3b1d)] - DRAC-365 - Updated Autocomplete to accept biasing options ([#269](https://github.com/spothero/fe-ui/pull/269)) (Nathan Caraker)
185
- * `feat:` Updated Autocomplete to accept biasing options
186
- * `chore:` Updated PropTypes for geolocation biasing
187
- * `chore:` Updated location options
188
- * `chore:` Added logging for suggestions, and added origin to biasing options
189
-
190
- # 13.10.0-beta.3 - 02/22/2022
191
-
192
- ## Miscellaneous Updates
193
- * [[2437627](https://github.com/spothero/fe-ui/commit/2437627)] - `chore:` Reworked proptypes and location biasing (Nathan)
194
-
195
- # 13.10.0-beta.2 - 02/22/2022
196
-
197
- ## Miscellaneous Updates
198
- * [[762fc94](https://github.com/spothero/fe-ui/commit/762fc94)] - `chore:` Removed logging (Nathan)
199
-
200
- # 13.10.0-beta.1 - 02/22/2022
201
-
202
- ## Miscellaneous Updates
203
- * [[1f46e18](https://github.com/spothero/fe-ui/commit/1f46e18)] - `chore:` Added logging for suggestions, and added origin to biasing options (Nathan)
204
-
205
- # 13.10.0-beta.0 - 02/22/2022
206
- ## Miscellaneous Updates
207
-
208
- ## New Features
209
- * [[4193a26](https://github.com/spothero/fe-ui/commit/4193a26)] - Updated Autocomplete to accept biasing options (Nathan)
210
-
211
- ## Miscellaneous Updates
212
- * [[3a93a18](https://github.com/spothero/fe-ui/commit/3a93a18)] - 13.9.0-beta.0 (sh-devtools-bot)
213
- * [[e6ab74b](https://github.com/spothero/fe-ui/commit/e6ab74b)] - `chore:` Updated location options (Nathan)
214
- * [[19f8451](https://github.com/spothero/fe-ui/commit/19f8451)] - `chore:` Updated PropTypes for geolocation biasing (Nathan)
215
-
216
- # 13.9.0 - 02/17/2022
217
-
218
- ## New Features
219
- * [[5229309](https://github.com/spothero/fe-ui/commit/5229309)] - Adds Popover component ([#270](https://github.com/spothero/fe-ui/pull/270)) (Tyler Williams)
220
-
221
- # 13.8.0 - 01/26/2022
222
-
223
- ## New Features
224
- * [[c7de948](https://github.com/spothero/fe-ui/commit/c7de948)] - Checkbox Component ([#266](https://github.com/spothero/fe-ui/pull/266)) (Max Rashes)
225
- * `feat:` Checkbox component
226
- * `feat:` Add focus, hover, disabled state
227
-
228
- # 13.7.0 - 01/20/2022
229
-
230
- ## New Features
231
- * [[54478be](https://github.com/spothero/fe-ui/commit/54478be)] - Select component ([#263](https://github.com/spothero/fe-ui/pull/263)) (Gru Singh)
232
-
233
- # 13.6.1 - 01/11/2022
234
-
235
- ## Miscellaneous Updates
236
- * [[ca65c92](https://github.com/spothero/fe-ui/commit/ca65c92)] - `fix:` Expose Tabs components and focus style ([#261](https://github.com/spothero/fe-ui/pull/261)) (Gru Singh)
237
-
238
- # 13.6.0 - 01/10/2022
239
-
240
- ## New Features
241
- * [[5c2c63c](https://github.com/spothero/fe-ui/commit/5c2c63c)] - Tabs components ([#260](https://github.com/spothero/fe-ui/pull/260)) (Gru Singh)
242
-
243
- # 13.5.1 - 12/17/2021
244
- ## Miscellaneous Updates
245
- * [[95aca21](https://github.com/spothero/fe-ui/commit/95aca21)] - Fixed backlog loader export ([#257](https://github.com/spothero/fe-ui/pull/257)) (Nathan Caraker)
246
- * `fix:` Fixed backlog loader export
247
- * `chore:` Added a missed backlog export
248
- * `chore:` Last fix for backlog export
249
-
250
- # 13.5.0 - 12/17/2021
251
-
252
- ## New Features
253
- * [[0a4397e](https://github.com/spothero/fe-ui/commit/0a4397e)] - FED-320 Primary Button Design System Updates ([#258](https://github.com/spothero/fe-ui/pull/258)) (Mick Johnson)
254
- * `squash:` Initial styling changes
255
- * `squash:` Story styling changes
256
- * `squash:` Fix button stories to change when dark does + styling notes
257
- * `squash:` More design tweaks after fedback + make it possible to link to chakra docs from story
258
- * `squash:` Make chakra link inline block, last button style changes, make textbutton lineHeight of 1 for now until we work on it and decide what it should be
259
-
260
- # 13.4.0 - 12/14/2021
261
-
262
- ## New Features
263
- * [[6bac5ec](https://github.com/spothero/fe-ui/commit/6bac5ec)] - FED-335/336 - Loader V2 ([#256](https://github.com/spothero/fe-ui/pull/256)) (Nathan Caraker)
264
- * `feat:` Implemented Loader v2, moved old loader to v1 folder
265
- * `chore:` Resolved old import paths
266
- * `chore:` Fixed sass import for v1 loader
267
- * `chore:` Addressed PR feedback; reverted ImageCarousel import in index, updated Loader propTypes
268
- * `chore:` Addressed PR feedback
269
-
270
- # 13.3.0 - 12/08/2021
271
- ## Miscellaneous Updates
272
-
273
- ## New Features
274
- * [[3466838](https://github.com/spothero/fe-ui/commit/3466838)] - Use dynamic import for Image Carousel ([#254](https://github.com/spothero/fe-ui/pull/254)) (Gru Singh)
275
-
276
- ## Miscellaneous Updates
277
- * [[d6fd186](https://github.com/spothero/fe-ui/commit/d6fd186)] - 13.2.5 (sh-devtools-bot)
278
- * [[f12db89](https://github.com/spothero/fe-ui/commit/f12db89)] - `fix:` Update button style ([#255](https://github.com/spothero/fe-ui/pull/255)) (Gru Singh)
279
-
280
- # 13.2.5 - 12/07/2021
281
-
282
- ## Miscellaneous Updates
283
- * [[f12db89](https://github.com/spothero/fe-ui/commit/f12db89)] - `fix:` Update button style ([#255](https://github.com/spothero/fe-ui/pull/255)) (Gru Singh)
284
-
285
- # 13.2.4 - 12/03/2021
286
-
287
- ## Miscellaneous Updates
288
- * [[645ca61](https://github.com/spothero/fe-ui/commit/645ca61)] - `fix:` Multiple clicks on prev/next should not slow scroll ([#253](https://github.com/spothero/fe-ui/pull/253)) (Gru Singh)
289
-
290
- # 13.2.3 - 12/02/2021
291
- ## Miscellaneous Updates
292
-
293
- ## Miscellaneous Updates
294
- * [[f1e74a2](https://github.com/spothero/fe-ui/commit/f1e74a2)] - DRAC-328 button style fixes ([#251](https://github.com/spothero/fe-ui/pull/251)) (Gru Singh)
295
- * `fix:` Anchor type=button causes link to be shown as button on real mobile devices
296
- * `fix:` Missing background color for secondaryOnDark button style
297
- * `chore:` Missing Icon height causes issues on real mobile devices
298
- * [[1fe4813](https://github.com/spothero/fe-ui/commit/1fe4813)] - `chore:` Update readme with publish reminder ([#252](https://github.com/spothero/fe-ui/pull/252)) (Gru Singh)
299
- * `chore:` Update readme with publish reminder
300
- * `chore:` Clarify publish instructions
301
-
302
- # 13.2.2 - 11/23/2021
303
-
304
- ## Miscellaneous Updates
305
- * [[5978e62](https://github.com/spothero/fe-ui/commit/5978e62)] - `chore:` Change unordered list type from "bullet" to "disc" ([#249](https://github.com/spothero/fe-ui/pull/249)) (Matt Ritsman)
306
-
307
- # 13.2.1 - 11/19/2021
308
-
309
- ## Miscellaneous Updates
310
- * [[b618567](https://github.com/spothero/fe-ui/commit/b618567)] - `fix:` Don't spread all props to flyout wrapper ([#248](https://github.com/spothero/fe-ui/pull/248)) (Tyler Williams)
311
-
312
- # 13.2.1-beta.0 - 11/18/2021
313
-
314
- ## Miscellaneous Updates
315
- * [[392dec6](https://github.com/spothero/fe-ui/commit/392dec6)] - `fix:` Don't spread all props to flyout wrapper (Tyler Williams)
316
-
317
- # 13.2.0 - 11/16/2021
318
- ## Miscellaneous Updates
319
-
320
- ## New Features
321
- * [[1f34f42](https://github.com/spothero/fe-ui/commit/1f34f42)] - Add Chakra Image ([#246](https://github.com/spothero/fe-ui/pull/246)) (Boiar Qin)
322
-
323
- ## Miscellaneous Updates
324
- * [[5936109](https://github.com/spothero/fe-ui/commit/5936109)] - 13.1.2 (sh-devtools-bot)
325
- * [[a1c07b6](https://github.com/spothero/fe-ui/commit/a1c07b6)] - `chore:` Update version of chakra ([#247](https://github.com/spothero/fe-ui/pull/247)) (Matt Ritsman)
326
- * `chore:` Update version of chakra
327
- * `chore:` Update framer-motion and several spothero library versions
328
- * `chore:` Downgrade framer-motion to 4.1.17 because of bug in 5.x
329
-
330
- # 13.2.0-beta.1 - 11/05/2021
331
-
332
- ## Miscellaneous Updates
333
- * [[a02d6da](https://github.com/spothero/fe-ui/commit/a02d6da)] - `fix:` Fix export and remove unused prop (Boiar Qin)
334
-
335
- # 13.2.0-beta.0 - 11/05/2021
336
-
337
- ## New Features
338
- * [[4fc9dfc](https://github.com/spothero/fe-ui/commit/4fc9dfc)] - Working Image and stories (Boiar Qin)
339
- * [[c61b7e3](https://github.com/spothero/fe-ui/commit/c61b7e3)] - Chakra Image wip (Boiar Qin)
340
-
341
- ## Miscellaneous Updates
342
- * [[9a69ec6](https://github.com/spothero/fe-ui/commit/9a69ec6)] - `fix:` Fix prop (Boiar Qin)
343
- * [[573b27d](https://github.com/spothero/fe-ui/commit/573b27d)] - `fix:` Fix formatting and V1 Image imports (Boiar Qin)
344
- * [[76f059e](https://github.com/spothero/fe-ui/commit/76f059e)] - `fix:` Remove ambiguity of height and width (Boiar Qin)
345
- * [[c3b75b8](https://github.com/spothero/fe-ui/commit/c3b75b8)] - `refactor:` Default cloudinary template (Boiar Qin)
346
- * [[19b51f9](https://github.com/spothero/fe-ui/commit/19b51f9)] - `chore:` Move Image backlog into v1 folder (Boiar Qin)
347
- * [[d179a17](https://github.com/spothero/fe-ui/commit/d179a17)] - `docs:` Add story on custom styling (Boiar Qin)
348
- * [[80f1c6f](https://github.com/spothero/fe-ui/commit/80f1c6f)] - `test:` Tests and fixes for Image (Boiar Qin)
349
- # 13.1.2 - 11/10/2021
350
-
351
- ## Miscellaneous Updates
352
- * [[a1c07b6](https://github.com/spothero/fe-ui/commit/a1c07b6)] - `chore:` Update version of chakra ([#247](https://github.com/spothero/fe-ui/pull/247)) (Matt Ritsman)
353
- * `chore:` Update version of chakra
354
- * `chore:` Update framer-motion and several spothero library versions
355
- * `chore:` Downgrade framer-motion to 4.1.17 because of bug in 5.x
356
-
357
- # 13.1.1 - 10/20/2021
358
- ## Miscellaneous Updates
359
- * [[7731029](https://github.com/spothero/fe-ui/commit/7731029)] - CONWEB-38 image carousel button color ([#245](https://github.com/spothero/fe-ui/pull/245)) (Matt Ritsman)
360
- * `chore:` Update carousel button color
361
-
362
- # 13.1.0 - 10/20/2021
363
-
364
- ## New Features
365
- * [[6f92d14](https://github.com/spothero/fe-ui/commit/6f92d14)] - Change mobile breakpoint name to mobileXL ([#244](https://github.com/spothero/fe-ui/pull/244)) (Boiar Qin)
366
-
367
- # 13.0.1 - 10/07/2021
368
- ## Miscellaneous Updates
369
- * [[b48f1b6](https://github.com/spothero/fe-ui/commit/b48f1b6)] - CONWEB-38 New Image Carousel ([#243](https://github.com/spothero/fe-ui/pull/243)) (Matt Ritsman)
370
-
371
- # 13.0.0 - 09/29/2021
372
-
373
- ## Breaking Changes
374
- * [[9ae01b2](https://github.com/spothero/fe-ui/commit/9ae01b2)] - FED-319 - DS-Typography ([#242](https://github.com/spothero/fe-ui/pull/242)) (Nathan Caraker)
375
- * `breaking:` Updated Typography definitions, removed "strong" variant from Text component
376
- * `chore:` Updated Typography stories
377
- * `chore:` Renamed `small` variant, to `caption`
378
- * `chore:` Update story names to match story components
379
- * `chore:` Updated Text component to merge default markup styles with variant style
380
- * `chore:` PR feedback
381
- * `chore:` Fixed PR change around typography story
382
- * `publish:` Changelog update for 13.0.0-beta.0 release
383
- * 13.0.0-beta.0
384
-
385
- # 13.0.0-beta.0 - 09/29/2021
386
-
387
- ## Breaking Changes
388
- * [[34f085c](https://github.com/spothero/fe-ui/commit/34f085c)] - Updated Typography definitions, removed "strong" variant from Text component (Nathan)
389
-
390
- ## Miscellaneous Updates
391
- * [[bd91a7e](https://github.com/spothero/fe-ui/commit/bd91a7e)] - `chore:` Fixed PR change around typography story (Nathan)
392
- * [[400b7f9](https://github.com/spothero/fe-ui/commit/400b7f9)] - `chore:` PR feedback (Nathan)
393
- * [[529fbe4](https://github.com/spothero/fe-ui/commit/529fbe4)] - `chore:` Updated Text component to merge default markup syles with variant style (Nathan)
394
- * [[dfcc21c](https://github.com/spothero/fe-ui/commit/dfcc21c)] - `chore:` Update stroy names to match stroy components (Nathan)
395
- * [[72b844e](https://github.com/spothero/fe-ui/commit/72b844e)] - `chore:` Renamed `small` variant, to `caption` (Nathan)
396
- * [[eb59f46](https://github.com/spothero/fe-ui/commit/eb59f46)] - `chore:` Updated Typography stories (Nathan)
397
-
398
- # 12.10.0 - 09/27/2021
399
-
400
- ## New Features
401
- * [[aa1c2d0](https://github.com/spothero/fe-ui/commit/aa1c2d0)] - FED-318 - DS-Colors ([#241](https://github.com/spothero/fe-ui/pull/241)) (Nathan Caraker)
402
- * `feat:` Added new semantic color names, updated color usage within project
403
- * `chore:` Added more semantic text color definitions
404
- * `chore:` Fix color storyCo-authored-by: Tyler Williams <tsw38@cornell.edu>
405
-
406
- # 12.9.4 - 09/21/2021
407
-
408
- ## Miscellaneous Updates
409
- * [[be5fe22](https://github.com/spothero/fe-ui/commit/be5fe22)] - `ci:` Push empty commit to retrigger CI 2 (Boiar Qin)
410
-
411
- # 12.9.3 - 09/21/2021
412
-
413
- ## Miscellaneous Updates
414
- * [[59bca0e](https://github.com/spothero/fe-ui/commit/59bca0e)] - `ci:` Push empty commit to retrigger CI (Boiar Qin)
415
-
416
- # 12.9.2 - 09/21/2021
417
-
418
- ## Miscellaneous Updates
419
- * [[675d02f](https://github.com/spothero/fe-ui/commit/675d02f)] - `ci:` Fix publishing storybook docs to github pages ([#240](https://github.com/spothero/fe-ui/pull/240)) (Boiar Qin)
420
-
421
- # 12.9.1 - 09/20/2021
422
- ## Miscellaneous Updates
423
-
424
- ## Miscellaneous Updates
425
- * [[44259a4](https://github.com/spothero/fe-ui/commit/44259a4)] - Cleanup Button v2 styleProps ([#239](https://github.com/spothero/fe-ui/pull/239)) (Nathan Caraker)
426
- * `chore:` Cleanup Button v2 styleProps
427
- * `chore:` Removed opacity form text button disabled styles
428
- * `chore:` Empty commit to rerun concourse
429
- * [[b55982e](https://github.com/spothero/fe-ui/commit/b55982e)] - `docs:` Annotate z-index with equivalent values from fe-core ([#233](https://github.com/spothero/fe-ui/pull/233)) (Boiar Qin)
430
- * [[071d35f](https://github.com/spothero/fe-ui/commit/071d35f)] - `style:` Fixed hover states for disabled buttons ([#238](https://github.com/spothero/fe-ui/pull/238)) (Nathan Caraker)
431
-
432
- # 12.9.0 - 08/04/2021
433
-
434
- ## Dependency Updates
435
- * [[fdb636e](https://github.com/spothero/fe-ui/commit/fdb636e)] - Update to latest dependencies to fix security vulnerabilities ([#237](https://github.com/spothero/fe-ui/pull/237)) (Gru Singh)
436
-
437
- # 12.8.0 - 07/26/2021
438
-
439
- ## Dependency Updates
440
- * [[2d12b2d](https://github.com/spothero/fe-ui/commit/2d12b2d)] - Update to latest dependencies to fix security vulnerabilities ([#235](https://github.com/spothero/fe-ui/pull/235)) (Gru Singh)
441
-
442
- ## Miscellaneous Updates
443
- * [[f6940ae](https://github.com/spothero/fe-ui/commit/f6940ae)] - `test:` Exclude flaky tests ([#236](https://github.com/spothero/fe-ui/pull/236)) (Gru Singh)
444
-
445
- # 12.7.0 - 07/12/2021
446
-
447
- ## New Features
448
- * [[899f771](https://github.com/spothero/fe-ui/commit/899f771)] - Add Chakra icon and examples of usage ([#234](https://github.com/spothero/fe-ui/pull/234)) (Boiar Qin)
449
-
450
- # 12.6.0 - 06/11/2021
451
-
452
- ## New Features
453
- * [[2e9b48a](https://github.com/spothero/fe-ui/commit/2e9b48a)] - Create Card component; Add data-testid and aria-labels to Modal ([#232](https://github.com/spothero/fe-ui/pull/232)) (Boiar Qin)
454
-
455
- # 12.5.2 - 06/01/2021
456
-
457
- ## Miscellaneous Updates
458
- * [[c41fe6f](https://github.com/spothero/fe-ui/commit/c41fe6f)] - `chore:` Bump package version number after attempting to publish from wrong commit (Boiar Qin)
459
- * [[45c9b29](https://github.com/spothero/fe-ui/commit/45c9b29)] - `fix:` Allow target and rel to be optional on anchor button ([#231](https://github.com/spothero/fe-ui/pull/231)) (Boiar Qin)
460
-
461
- # 12.5.0 - 05/21/2021
462
-
463
- ## Dependency Updates
464
- * [[a28ac03](https://github.com/spothero/fe-ui/commit/a28ac03)] - Update browserslist-config, eslint-config, fe-icons, fe-arg, npm-publisher, fe-utils and commitlint-config deps ([#230](https://github.com/spothero/fe-ui/pull/230)) (Eddie Padin)
465
-
466
- # 12.4.1 - 05/17/2021
467
- ## Miscellaneous Updates
468
- * [[58297ac](https://github.com/spothero/fe-ui/commit/58297ac)] - Updated v1 Table export path ([#229](https://github.com/spothero/fe-ui/pull/229)) (Nathan Caraker)
469
- * `chore:` Updated v1 Table export path
470
- * `publish:` Changelog update for 12.4.1-beta.0 release
471
- * 12.4.1-beta.0
472
-
473
- # 12.4.1-beta.0 - 05/17/2021
474
-
475
- ## Miscellaneous Updates
476
- * [[0841080](https://github.com/spothero/fe-ui/commit/0841080)] - `chore:` Updated v1 Table export path (Nathan)
477
-
478
- # 12.4.0 - 05/14/2021
479
-
480
- ## Dependency Updates
481
- * [[2a03f45](https://github.com/spothero/fe-ui/commit/2a03f45)] - Update lodash version to address security issue, also update fe-icons and fe-utils versions ([#228](https://github.com/spothero/fe-ui/pull/228)) (Matt Ritsman)
482
-
483
- # 12.3.1 - 05/11/2021
484
- ## Miscellaneous Updates
485
- * [[5012798](https://github.com/spothero/fe-ui/commit/5012798)] - Link styles ([#227](https://github.com/spothero/fe-ui/pull/227)) (Nathan Caraker)
486
- * `chore:` Updated Link styles to include onDark variant
487
- * `chore:` Updated Link hover styles
488
- * `chore:` Cleaned up Link story
489
-
490
- # 12.3.0 - 05/11/2021
491
-
492
- ## New Features
493
- * [[29189fb](https://github.com/spothero/fe-ui/commit/29189fb)] - Added Table Component to v2 ([#226](https://github.com/spothero/fe-ui/pull/226)) (Nathan Caraker)
494
- * `feat:` Exported ChakraUI Table component, added custom variant styles
495
- * `chore:` Added deprecation warning to v1 Table, moved into the backlog folder
496
- * `publish:` Changelog update for 12.3.0-beta.3 release
497
- * 12.3.0-beta.3
498
-
499
- # 12.3.0-beta.3 - 05/11/2021
500
-
501
- ## Miscellaneous Updates
502
- * [[eb2c662](https://github.com/spothero/fe-ui/commit/eb2c662)] - `chore:` One more time (Nathan)
503
- * [[a257ea4](https://github.com/spothero/fe-ui/commit/a257ea4)] - `chore:` Tried to fix imports for Select again (Nathan)
504
-
505
- # 12.3.0-beta.2 - 05/11/2021
506
-
507
- ## Miscellaneous Updates
508
- * [[1f91e62](https://github.com/spothero/fe-ui/commit/1f91e62)] - `chore:` Fixed importfor select in v1 component (Nathan)
509
-
510
- # 12.3.0-beta.1 - 05/11/2021
511
-
512
- ## Miscellaneous Updates
513
- * [[1bad589](https://github.com/spothero/fe-ui/commit/1bad589)] - `chore:` Updated index to account for move of v1 Table component (Nathan)
514
-
515
- # 12.3.0-beta.0 - 05/11/2021
516
-
517
- ## New Features
518
- * [[0a97370](https://github.com/spothero/fe-ui/commit/0a97370)] - Exported ChakraUI Table component, added custom variant styles (Nathan)
519
-
520
- ## Miscellaneous Updates
521
- * [[afe0487](https://github.com/spothero/fe-ui/commit/afe0487)] - `chore:` Cleaned up variants for Table styles (Nathan)
522
- * [[82f3909](https://github.com/spothero/fe-ui/commit/82f3909)] - `chore:` Update sass file path for v1 Table in index.scss (Nathan)
523
- * [[ae40dad](https://github.com/spothero/fe-ui/commit/ae40dad)] - `chore:` Updated storybook controls (Nathan)
524
- * [[db5e062](https://github.com/spothero/fe-ui/commit/db5e062)] - `chore:` Added deprecation warning to v1 Table, moved into the backlog folder (Nathan)
525
-
526
- # 12.2.0 - 05/10/2021
527
- ## Miscellaneous Updates
528
-
529
- ## New Features
530
- * [[41a30f4](https://github.com/spothero/fe-ui/commit/41a30f4)] - Keyboard users can scroll AutoSuggestionInput list ([#225](https://github.com/spothero/fe-ui/pull/225)) (Harry Nicholls)
531
- * `feat:` Keyboard users can scroll AutoSuggestionInput list
532
- * `refactor:` Uses optional chaining in AutoSuggestInputtest: Reduces repetition in AutoSuggestInput test
533
-
534
- ## Miscellaneous Updates
535
- * [[69b0728](https://github.com/spothero/fe-ui/commit/69b0728)] - 12.1.4 (sh-devtools-bot)
536
- * [[7327a34](https://github.com/spothero/fe-ui/commit/7327a34)] - 12.1.3 (sh-devtools-bot)
537
- * [[dda3921](https://github.com/spothero/fe-ui/commit/dda3921)] - 12.1.2 (sh-devtools-bot)
538
- * [[c9a676a](https://github.com/spothero/fe-ui/commit/c9a676a)] - Added ButtonGroup to exports ([#222](https://github.com/spothero/fe-ui/pull/222)) (Nathan Caraker)
539
- * `chore:` Added index for Button and exported ButtonGroup, updated component exports
540
- * [[482cd31](https://github.com/spothero/fe-ui/commit/482cd31)] - 12.1.1 (sh-devtools-bot)
541
- * [[006a12e](https://github.com/spothero/fe-ui/commit/006a12e)] - `fix:` Add label to Flyout Button and spread props (Tyler Williams)
542
- * [[e99102a](https://github.com/spothero/fe-ui/commit/e99102a)] - `style:` Adjust all accordion font sizes to be h4-sized ([#223](https://github.com/spothero/fe-ui/pull/223)) (Boiar Qin)
543
- * [[7f60e13](https://github.com/spothero/fe-ui/commit/7f60e13)] - `chore:` Explicity defined v2 Button text color in hover states ([#221](https://github.com/spothero/fe-ui/pull/221)) (Nathan Caraker)
544
-
545
- # 12.1.4 - 04/30/2021
546
- ## Miscellaneous Updates
547
-
548
- ## Miscellaneous Updates
549
- * [[7327a34](https://github.com/spothero/fe-ui/commit/7327a34)] - 12.1.3 (sh-devtools-bot)
550
- * [[dda3921](https://github.com/spothero/fe-ui/commit/dda3921)] - 12.1.2 (sh-devtools-bot)
551
- * [[c9a676a](https://github.com/spothero/fe-ui/commit/c9a676a)] - Added ButtonGroup to exports ([#222](https://github.com/spothero/fe-ui/pull/222)) (Nathan Caraker)
552
- * `chore:` Added index for Button and exported ButtonGroup, updated component exports
553
- * [[482cd31](https://github.com/spothero/fe-ui/commit/482cd31)] - 12.1.1 (sh-devtools-bot)
554
- * [[006a12e](https://github.com/spothero/fe-ui/commit/006a12e)] - `fix:` Add label to Flyout Button and spread props (Tyler Williams)
555
- * [[e99102a](https://github.com/spothero/fe-ui/commit/e99102a)] - `style:` Adjust all accordion font sizes to be h4-sized ([#223](https://github.com/spothero/fe-ui/pull/223)) (Boiar Qin)
556
- * [[7f60e13](https://github.com/spothero/fe-ui/commit/7f60e13)] - `chore:` Explicity defined v2 Button text color in hover states ([#221](https://github.com/spothero/fe-ui/pull/221)) (Nathan Caraker)
557
-
558
- # 12.1.3 - 04/29/2021
559
- ## Miscellaneous Updates
560
-
561
- ## Miscellaneous Updates
562
- * [[dda3921](https://github.com/spothero/fe-ui/commit/dda3921)] - 12.1.2 (sh-devtools-bot)
563
- * [[c9a676a](https://github.com/spothero/fe-ui/commit/c9a676a)] - Added ButtonGroup to exports ([#222](https://github.com/spothero/fe-ui/pull/222)) (Nathan Caraker)
564
- * `chore:` Added index for Button and exported ButtonGroup, updated component exports
565
- * [[482cd31](https://github.com/spothero/fe-ui/commit/482cd31)] - 12.1.1 (sh-devtools-bot)
566
- * [[e99102a](https://github.com/spothero/fe-ui/commit/e99102a)] - `style:` Adjust all accordion font sizes to be h4-sized ([#223](https://github.com/spothero/fe-ui/pull/223)) (Boiar Qin)
567
- * [[7f60e13](https://github.com/spothero/fe-ui/commit/7f60e13)] - `chore:` Explicity defined v2 Button text color in hover states ([#221](https://github.com/spothero/fe-ui/pull/221)) (Nathan Caraker)
568
-
569
- # 12.1.2 - 04/28/2021
570
- ## Miscellaneous Updates
571
-
572
- ## Miscellaneous Updates
573
- * [[c9a676a](https://github.com/spothero/fe-ui/commit/c9a676a)] - Added ButtonGroup to exports ([#222](https://github.com/spothero/fe-ui/pull/222)) (Nathan Caraker)
574
- * `chore:` Added index for Button and exported ButtonGroup, updated component exports
575
- * [[482cd31](https://github.com/spothero/fe-ui/commit/482cd31)] - 12.1.1 (sh-devtools-bot)
576
- * [[7f60e13](https://github.com/spothero/fe-ui/commit/7f60e13)] - `chore:` Explicity defined v2 Button text color in hover states ([#221](https://github.com/spothero/fe-ui/pull/221)) (Nathan Caraker)
577
-
578
- # 12.1.1 - 04/26/2021
579
-
580
- ## Miscellaneous Updates
581
- * [[7f60e13](https://github.com/spothero/fe-ui/commit/7f60e13)] - `chore:` Explicity defined v2 Button text color in hover states ([#221](https://github.com/spothero/fe-ui/pull/221)) (Nathan Caraker)
582
-
583
- # 12.1.0 - 04/15/2021
584
-
585
- ## New Features
586
- * [[946a9fb](https://github.com/spothero/fe-ui/commit/946a9fb)] - Adds v2 Link component to v2 exports (Nathan Caraker)
587
-
588
- # 12.1.0-beta.7 - 04/13/2021
589
-
590
- ## Miscellaneous Updates
591
- * [[364ac7b](https://github.com/spothero/fe-ui/commit/364ac7b)] - `chore:` Bumped beta version to fix build (Nathan)
592
- * [[007e5d5](https://github.com/spothero/fe-ui/commit/007e5d5)] - `chore:` Updated the inport path for the Link component (Nathan)
593
- * [[272f95d](https://github.com/spothero/fe-ui/commit/272f95d)] - `fix:` Updated exports to include the link componenet (Nathan)
594
-
595
- # 12.0.3 - 04/01/2021
596
-
597
- ## Miscellaneous Updates
598
- * [[e309589](https://github.com/spothero/fe-ui/commit/e309589)] - `fix:` Remove beta version? (Tyler Williams)
599
- * [[e69fb7e](https://github.com/spothero/fe-ui/commit/e69fb7e)] - `chore:` Update fe-core dependency (Tyler Williams)
600
-
601
- # 12.0.2-beta.22 - 04/01/2021
602
-
603
- ## Miscellaneous Updates
604
- * [[e443aba](https://github.com/spothero/fe-ui/commit/e443aba)] - `chore:` Update package version (Tyler Williams)
605
- * [[5e12095](https://github.com/spothero/fe-ui/commit/5e12095)] - `chore:` Update fe-core dependency (Tyler Williams)
606
-
607
- # 12.0.2 - 03/24/2021
608
-
609
- ## Miscellaneous Updates
610
- * [[722773a](https://github.com/spothero/fe-ui/commit/722773a)] - `fix:` Remove position from checkbox before selector (Tyler Williams)
611
-
612
- # 12.0.2-beta.0 - 03/24/2021
613
-
614
- ## Miscellaneous Updates
615
- * [[b86b475](https://github.com/spothero/fe-ui/commit/b86b475)] - `fix:` Remove position from checkbox before (Tyler Williams)
616
-
617
- # 12.0.1 - 03/24/2021
618
- ## Miscellaneous Updates
619
-
620
- ## Miscellaneous Updates
621
- * [[15377e7](https://github.com/spothero/fe-ui/commit/15377e7)] - Set theme jekyll-theme-cayman (Tyler Williams)
622
- * [[34223d7](https://github.com/spothero/fe-ui/commit/34223d7)] - `fix:` Remove lookbehind, not supported in safari (Tyler Williams)
623
- * [[dbf3775](https://github.com/spothero/fe-ui/commit/dbf3775)] - `refactor:` Place storybook static into docs for github pages to work properly (Tyler Williams)
624
- * [[e7eab3c](https://github.com/spothero/fe-ui/commit/e7eab3c)] - `refactor:` Add storbook-static back to checkout files for simple github pages (Tyler Williams)
625
-
626
- # 12.0.0 - 03/16/2021
627
-
628
- ## Breaking Changes
629
- * [[3cf324c](https://github.com/spothero/fe-ui/commit/3cf324c)] - V2 - Chakra Implementation ([#203](https://github.com/spothero/fe-ui/pull/203)) (Tyler Williams)
630
-
631
- # 11.10.0 - 02/08/2021
632
-
633
- ## New Features
634
- * [[2035569](https://github.com/spothero/fe-ui/commit/2035569)] - Pass totalPages to the onPageChange function ([#200](https://github.com/spothero/fe-ui/pull/200)) (Tyler Williams)
635
-
636
- # 11.9.0 - 01/08/2021
637
-
638
- ## New Features
639
- * [[487343e](https://github.com/spothero/fe-ui/commit/487343e)] - Add support for custom props to Loader component ([#198](https://github.com/spothero/fe-ui/pull/198)) (Eddie Padin)
640
-
641
- # 11.8.0 - 12/01/2020
642
-
643
- ## New Features
644
- * [[bc092a1](https://github.com/spothero/fe-ui/commit/bc092a1)] - Fix focus on blur for Datepicker ([#197](https://github.com/spothero/fe-ui/pull/197)) (Tyler Williams)
645
-
646
- # 11.7.1 - 11/24/2020
647
-
648
- ## Miscellaneous Updates
649
- * [[56cba35](https://github.com/spothero/fe-ui/commit/56cba35)] - `ci:` Triggering new publish with Concourse updates (Boiar Qin)
650
-
651
- # 11.7.0 - 11/24/2020
652
-
653
- ## Dependency Updates
654
- * [[79bc4ae](https://github.com/spothero/fe-ui/commit/79bc4ae)] - Upgrade npm-publisher and commitlint-config ([#196](https://github.com/spothero/fe-ui/pull/196)) (Boiar Qin)
655
-
656
- ## Miscellaneous Updates
657
- * [[1f95b42](https://github.com/spothero/fe-ui/commit/1f95b42)] - `chore:` Remove verbose flag from push-dir (Boiar Qin)
658
-
659
- # 11.6.1 - 11/19/2020
660
-
661
- ## Miscellaneous Updates
662
- * [[de00a8a](https://github.com/spothero/fe-ui/commit/de00a8a)] - `fix:` Modal conditional check for window.transitionEnd ([#195](https://github.com/spothero/fe-ui/pull/195)) (Harry Nicholls)
663
- * `fix:` Modal conditional check for window.transitionEnd
664
- * `refactor:` Remove extraneous conditional checkfix: TimePicker: Prevent spread of `selectedTime` propCo-authored-by: Harry Nicholls <dave.vannoten@SH-MBPD-ENG-069.local>
665
-
666
- # 11.6.0 - 10/06/2020
667
-
668
- ## New Features
669
- * [[55e306d](https://github.com/spothero/fe-ui/commit/55e306d)] - Adds disabled style for toggle Checkbox ([#192](https://github.com/spothero/fe-ui/pull/192)) (Harry Nicholls)
670
- * `build:` Moves Storybook addon-docs above -controls
671
- * `feat:` Adds 'disabled' style for toggle Checkbox
672
-
673
- # 11.5.0 - 10/02/2020
674
-
675
- ## New Features
676
- * [[c9eac34](https://github.com/spothero/fe-ui/commit/c9eac34)] - Adds SelectControlled component ([#187](https://github.com/spothero/fe-ui/pull/187)) (Harry Nicholls)
677
-
678
- ## Miscellaneous Updates
679
- * [[b475d85](https://github.com/spothero/fe-ui/commit/b475d85)] - `refactor:` Changes Checkbox toggle styling ([#191](https://github.com/spothero/fe-ui/pull/191)) (Harry Nicholls)
680
-
681
- # 11.4.1 - 10/01/2020
682
-
683
- ## Miscellaneous Updates
684
- * [[8b8633f](https://github.com/spothero/fe-ui/commit/8b8633f)] - `fix:` Omits props from TimePicker spreadProps ([#190](https://github.com/spothero/fe-ui/pull/190)) (Harry Nicholls)
685
-
686
- # 11.4.0 - 09/30/2020
687
-
688
- ## New Features
689
- * [[6819651](https://github.com/spothero/fe-ui/commit/6819651)] - Spreads extra attributes on underlying element ([#189](https://github.com/spothero/fe-ui/pull/189)) (Harry Nicholls)
690
-
691
- ## Miscellaneous Updates
692
- * [[4061b93](https://github.com/spothero/fe-ui/commit/4061b93)] - `docs:` Storybook version 6 + dex exports ([#188](https://github.com/spothero/fe-ui/pull/188)) (Seth Thomas)
693
- * - story book 6 - addon-controls - replacing custom webpack settings with dex - converting Alert to use args
694
-
695
- # 11.3.0 - 09/18/2020
696
-
697
- ## New Features
698
- * [[d0a93cb](https://github.com/spothero/fe-ui/commit/d0a93cb)] - Allow Modal to have a fullscreen mobile view ([#186](https://github.com/spothero/fe-ui/pull/186)) (Tyler Williams)
699
-
700
- # 11.2.0 - 09/17/2020
701
-
702
- ## New Features
703
- * [[bf3eb8f](https://github.com/spothero/fe-ui/commit/bf3eb8f)] - Add a separator to DateTimeRangePicker ([#185](https://github.com/spothero/fe-ui/pull/185)) (Tyler Williams)
704
-
705
- # 11.1.0 - 09/04/2020
706
-
707
- ## New Features
708
- * [[d64cdf2](https://github.com/spothero/fe-ui/commit/d64cdf2)] - Pass additional attributes to Select ([#183](https://github.com/spothero/fe-ui/pull/183)) (Harry Nicholls)
709
- * [[5cda5d9](https://github.com/spothero/fe-ui/commit/5cda5d9)] - Changes TabNavigation element from `<nav>` to `<div>` to improve a11y ([#184](https://github.com/spothero/fe-ui/pull/184)) (Harry Nicholls)
710
-
711
- # 11.0.0 - 09/01/2020
712
-
713
- ## Breaking Changes
714
- * [[1a1dc3a](https://github.com/spothero/fe-ui/commit/1a1dc3a)] - Flyout removal of Flyout-open classname and isBackgroundScrollable prop support ([#182](https://github.com/spothero/fe-ui/pull/182)) (Seth Thomas)
715
-
716
- ## Miscellaneous Updates
717
- * [[699aee1](https://github.com/spothero/fe-ui/commit/699aee1)] - `ci:` Add test runs to Github Actions workflow ([#181](https://github.com/spothero/fe-ui/pull/181)) (Matt Przybylski)
718
-
719
- # 10.11.0 - 08/19/2020
720
- ## New Features
721
- * [[60b729f](https://github.com/spothero/fe-ui/commit/60b729f)] - Flyout closeOnShimClick prop support ([#180](https://github.com/spothero/fe-ui/pull/180)) (Seth Thomas)
722
-
723
- # 10.10.0 - 08/03/2020
724
- ## New Features
725
- * [[f31aefb](https://github.com/spothero/fe-ui/commit/f31aefb)] - Add Table row class name option ([#179](https://github.com/spothero/fe-ui/pull/179)) (Tyler Williams)
726
- * `feat:` Add Table row class name option
727
- * `chore:` Cleanup bad comment
728
-
729
- # 10.9.1 - 07/27/2020
730
-
731
- ## Miscellaneous Updates
732
- * [[8cb8c58](https://github.com/spothero/fe-ui/commit/8cb8c58)] - `chore:` Remove unnecessary devDependency (Matt)
733
- * [[713baf8](https://github.com/spothero/fe-ui/commit/713baf8)] - `test:` Cypress using Storybook ([#136](https://github.com/spothero/fe-ui/pull/136)) (Matt Przybylski)
734
-
735
- # 10.9.0 - 07/09/2020
736
- ## New Features
737
- * [[1c8f32d](https://github.com/spothero/fe-ui/commit/1c8f32d)] - Updated color-fuel to color-black for a some form elements, radio labels, checkbox labels and date time pickers based on UX feedback ([#161](https://github.com/spothero/fe-ui/pull/161)) (Matt Ritsman)
738
-
739
- # 10.8.0 - 07/06/2020
740
- ## New Features
741
- * [[5d1e18a](https://github.com/spothero/fe-ui/commit/5d1e18a)] - CONWEB-37 Update Colors ([#133](https://github.com/spothero/fe-ui/pull/133)) (Matt Ritsman)
742
- * `feat:` Update colors to be more compliant with accessibility standards. Remove use of color-accelerate
743
- * `feat:` Bump version of fe-core to 2.0.0
744
- * `fix:` Remove unused Color-accelerate style
745
- * `feat:` Bump version of fe-core to 2.1.0
746
-
747
- ## Miscellaneous Updates
748
- * [[507a7c6](https://github.com/spothero/fe-ui/commit/507a7c6)] - `docs:` Add GooglePlacesSearchInput stories ([#134](https://github.com/spothero/fe-ui/pull/134)) (boiarqin)
749
- * [[1192529](https://github.com/spothero/fe-ui/commit/1192529)] - `docs:` Add Form stories ([#132](https://github.com/spothero/fe-ui/pull/132)) (boiarqin)
750
- * [[30398f4](https://github.com/spothero/fe-ui/commit/30398f4)] - `docs:` Add DateTimeRangePicker stories ([#131](https://github.com/spothero/fe-ui/pull/131)) (boiarqin)
751
- * [[9607a65](https://github.com/spothero/fe-ui/commit/9607a65)] - `docs:` Add TimePicker stories ([#130](https://github.com/spothero/fe-ui/pull/130)) (boiarqin)
752
- * [[43373b8](https://github.com/spothero/fe-ui/commit/43373b8)] - `docs:` Add DatePicker and DateTimePicker stories ([#129](https://github.com/spothero/fe-ui/pull/129)) (boiarqin)
753
- * [[3919b1d](https://github.com/spothero/fe-ui/commit/3919b1d)] - `docs:` Add Image stories ([#126](https://github.com/spothero/fe-ui/pull/126)) (boiarqin)
754
- * [[6a30d39](https://github.com/spothero/fe-ui/commit/6a30d39)] - `docs:` Modal stories ([#124](https://github.com/spothero/fe-ui/pull/124)) (Matt Ritsman)
755
- * `docs:` Modal stories
756
- * `docs:` Combined open and hidden into toggle
757
- * [[d74fd2e](https://github.com/spothero/fe-ui/commit/d74fd2e)] - `docs:` ErrorBoundary stories ([#116](https://github.com/spothero/fe-ui/pull/116)) (Seth Thomas)
758
- * `docs:` ErrorBoundary stories
759
- * `docs:` ErrorBoundary stories
760
- * `docs:` ErrorBoundary stories
761
- * [[d6dcab5](https://github.com/spothero/fe-ui/commit/d6dcab5)] - `docs:` TextInput stories ([#120](https://github.com/spothero/fe-ui/pull/120)) (Seth Thomas)
762
- * `docs:` TextInput stories
763
- * `docs:` TextInput stories
764
- * `docs:` TextInput stories
765
- * [[47b403e](https://github.com/spothero/fe-ui/commit/47b403e)] - `docs:` Radio stories ([#119](https://github.com/spothero/fe-ui/pull/119)) (Seth Thomas)
766
- * `docs:` Radio stories
767
- * `docs:` Radio stories
768
- * [[42bccc5](https://github.com/spothero/fe-ui/commit/42bccc5)] - `docs:` AutoSuggestInput stories ([#118](https://github.com/spothero/fe-ui/pull/118)) (Seth Thomas)
769
- * `docs:` AutoSuggestInput stories
770
- * `docs:` AutoSuggestInput stories
771
- * `docs:` AutoSuggestInput stories
772
- * [[d3327b6](https://github.com/spothero/fe-ui/commit/d3327b6)] - `docs:` PulseLoader stories ([#121](https://github.com/spothero/fe-ui/pull/121)) (Seth Thomas)
773
- * [[9ef34ae](https://github.com/spothero/fe-ui/commit/9ef34ae)] - `docs:` Adds Carousel stories ([#123](https://github.com/spothero/fe-ui/pull/123)) (Harry Nicholls)
774
- * `docs:` Adds Carousel stories
775
- * `docs:` Moves carousel exmaple scss and data to /helpers
776
- * [[e722df9](https://github.com/spothero/fe-ui/commit/e722df9)] - `docs:` RangeSlider stories ([#117](https://github.com/spothero/fe-ui/pull/117)) (Seth Thomas)
777
- * [[212685d](https://github.com/spothero/fe-ui/commit/212685d)] - `docs:` Select stories ([#122](https://github.com/spothero/fe-ui/pull/122)) (Matt Ritsman)
778
- * `docs:` Select stories
779
- * `docs:` Removed unused imports
780
- * [[668838d](https://github.com/spothero/fe-ui/commit/668838d)] - `docs:` Add PostCSS autoprefixes ([#115](https://github.com/spothero/fe-ui/pull/115)) (Matt Ritsman)
781
- * `docs:` Add PostCSS autoprefixes
782
- * `docs:` Simplifying postCSS code
783
- * [[dfeac8a](https://github.com/spothero/fe-ui/commit/dfeac8a)] - `docs:` Add Notification stories ([#114](https://github.com/spothero/fe-ui/pull/114)) (Matt Przybylski)
784
- * [[8a72bb9](https://github.com/spothero/fe-ui/commit/8a72bb9)] - `docs:` Add Panel stories ([#112](https://github.com/spothero/fe-ui/pull/112)) (Matt Ritsman)
785
- * `docs:` Add Panel stories
786
- * `chore:` Store placeholder text as variable
787
- * [[5bc0e6d](https://github.com/spothero/fe-ui/commit/5bc0e6d)] - `docs:` Add Tooltip stories ([#113](https://github.com/spothero/fe-ui/pull/113)) (Matt Przybylski)
788
- * [[2550082](https://github.com/spothero/fe-ui/commit/2550082)] - `docs:` Add Portal stories ([#111](https://github.com/spothero/fe-ui/pull/111)) (Matt Przybylski)
789
- * [[9e17d17](https://github.com/spothero/fe-ui/commit/9e17d17)] - `docs:` Add TextButton stories ([#108](https://github.com/spothero/fe-ui/pull/108)) (Matt Ritsman)
790
- * [[00986d9](https://github.com/spothero/fe-ui/commit/00986d9)] - `docs:` Add Badge stories ([#107](https://github.com/spothero/fe-ui/pull/107)) (Matt Ritsman)
791
- * [[67599ab](https://github.com/spothero/fe-ui/commit/67599ab)] - `docs:` Add RenderInBody stories ([#109](https://github.com/spothero/fe-ui/pull/109)) (Matt Przybylski)
792
- * [[91ecfb0](https://github.com/spothero/fe-ui/commit/91ecfb0)] - `docs:` Add Label stories ([#106](https://github.com/spothero/fe-ui/pull/106)) (Matt Przybylski)
793
- * [[2abe925](https://github.com/spothero/fe-ui/commit/2abe925)] - `docs:` Add Flyout stories ([#104](https://github.com/spothero/fe-ui/pull/104)) (Tyler Williams)
794
- * `docs:` Add Flyout stories
795
- * `chore:` Inline module exportCo-authored-by: Tyler Williams <tyler.williams@spothero.com>
796
- * [[d72260d](https://github.com/spothero/fe-ui/commit/d72260d)] - `docs:` Add PasswordControl stories ([#105](https://github.com/spothero/fe-ui/pull/105)) (Tyler Williams)
797
- * `docs:` Add password control stories
798
- * `chore:` Inline module exportCo-authored-by: Tyler Williams <tyler.williams@spothero.com>
799
- * [[f3dbbfa](https://github.com/spothero/fe-ui/commit/f3dbbfa)] - `docs:` Add table story ([#103](https://github.com/spothero/fe-ui/pull/103)) (Tyler Williams)
800
- * `docs:` Add table story
801
- * `chore:` Cleanup with PrettierCo-authored-by: Tyler Williams <tyler.williams@spothero.com>
802
- * [[7654d47](https://github.com/spothero/fe-ui/commit/7654d47)] - `docs:` FED-162 - Adds Loader Stories ([#99](https://github.com/spothero/fe-ui/pull/99)) (Tyler Williams)
803
- * `docs:` FED-162 - Adds Loader Stories
804
- * `chore:` Add new line at end of file
805
- * `chore:` Cleanup props
806
- * `docs:` Code cleanup
807
- * `docs:` Fix label routeCo-authored-by: Tyler Williams <tyler.williams@spothero.com>
808
- * [[d39a48a](https://github.com/spothero/fe-ui/commit/d39a48a)] - `docs:` Add Tabs Story ([#100](https://github.com/spothero/fe-ui/pull/100)) (Tyler Williams)
809
- * `docs:` Add Tabs Story
810
- * `docs:` Add Tabs story
811
- * `Update methods.stories.jsCo-authored-by:` Tyler Williams <tyler.williams@spothero.com>
812
- * [[742b6a7](https://github.com/spothero/fe-ui/commit/742b6a7)] - `docs:` Adds Checkbox stories ([#102](https://github.com/spothero/fe-ui/pull/102)) (Harry Nicholls)
813
- * [[b799a47](https://github.com/spothero/fe-ui/commit/b799a47)] - `docs:` Adds Chart stories ([#101](https://github.com/spothero/fe-ui/pull/101)) (Harry Nicholls)
814
- * `docs:` Adds Chart stories
815
- * `docs:` Rename some of the Chart stories
816
- * [[e672ff3](https://github.com/spothero/fe-ui/commit/e672ff3)] - `docs:` Adds TextArea stories ([#97](https://github.com/spothero/fe-ui/pull/97)) (Harry Nicholls)
817
- * [[83b530e](https://github.com/spothero/fe-ui/commit/83b530e)] - `fix:` Correct imports (Tyler Williams)
818
- * [[e1c2834](https://github.com/spothero/fe-ui/commit/e1c2834)] - FED-152 Move HorizontalRule component to Storybook ([#128](https://github.com/spothero/fe-ui/pull/128)) (Nathan Caraker)
819
- * `docs:` Adds HorizontalRule stories
820
- * `docs:` Updated names and order for clarityCo-authored-by: Nathan Caraker <nathan@spothero.com>
821
- * [[4124187](https://github.com/spothero/fe-ui/commit/4124187)] - Fed 164 add table stories ([#110](https://github.com/spothero/fe-ui/pull/110)) (Tyler Williams)
822
- * `docs:` Add table story
823
- * `chore:` Cleanup with Prettier
824
- * `chore:` Change story helper architecture
825
- * [[69b8720](https://github.com/spothero/fe-ui/commit/69b8720)] - Adds Sprite to Storybook ([#96](https://github.com/spothero/fe-ui/pull/96)) (Harry Nicholls)
826
-
827
- # 10.7.0 - 05/28/2020
828
- ## New Features
829
- * [[4c097a6](https://github.com/spothero/fe-ui/commit/4c097a6)] - Update Tooltip styling to be darker background and rounded corners ([#95](https://github.com/spothero/fe-ui/pull/95)) (Matt Przybylski)
830
- * [[1767d64](https://github.com/spothero/fe-ui/commit/1767d64)] - Makes underlying Button element configurable ([#93](https://github.com/spothero/fe-ui/pull/93)) (Harry Nicholls)
831
- * `feat:` Makes underlying Button element configurable
832
- * `feat:` Replaces Button element prop with asAnchor
833
- * `test:` Adds tests
834
- * `docs:` Update src/Button/Button.jsxCo-authored-by: Matt Przybylski <mattp@spothero.com>Co-authored-by: Matt Przybylski <mattp@spothero.com>
835
- * [[da10a52](https://github.com/spothero/fe-ui/commit/da10a52)] - Makes underlying Button element configurable ([#93](https://github.com/spothero/fe-ui/pull/93)) (Harry Nicholls)
836
- * `feat:` Makes underlying Button element configurable
837
- * `feat:` Replaces Button element prop with asAnchorAdds tests
838
- * `Update src/Button/Button.jsxCo-authored-by:` Matt Przybylski <mattp@spothero.com>Co-authored-by: Matt Przybylski <mattp@spothero.com>
839
-
840
- ## Miscellaneous Updates
841
- * [[f79686e](https://github.com/spothero/fe-ui/commit/f79686e)] - Initial Storybook Integration ([#94](https://github.com/spothero/fe-ui/pull/94)) (Matt Przybylski)
842
- * [[823c696](https://github.com/spothero/fe-ui/commit/823c696)] - Initial Storybook Integration ([#94](https://github.com/spothero/fe-ui/pull/94)) (Matt Przybylski)
843
-
844
- # 10.6.1 - 05/20/2020
845
-
846
- # 10.6.0 - 05/20/2020
847
- ## New Features
848
- * [[38d61f3](https://github.com/spothero/fe-ui/commit/38d61f3)] - Makes underlying Button element configurable ([#93](https://github.com/spothero/fe-ui/pull/93)) (Harry Nicholls)
849
-
850
- ## Miscellaneous Updates
851
- * [[c7c13b5](https://github.com/spothero/fe-ui/commit/c7c13b5)] - Initial Storybook Integration ([#94](https://github.com/spothero/fe-ui/pull/94)) (Matt Przybylski)
852
-
853
- # 10.5.1 - 05/07/2020
854
-
855
- ## Miscellaneous Updates
856
- * [[cd1c398](https://github.com/spothero/fe-ui/commit/cd1c398)] - `fix:` FED-123 - cleanup class removal on componentWillUnmount for Flyo… ([#92](https://github.com/spothero/fe-ui/pull/92)) (Seth Thomas)
857
- * `fix:` FED-123 - cleanup class removal on componentWillUnmount for Flyout component
858
- * `fix:` FED-123 - no need for public method
859
-
860
- # 10.5.0 - 04/24/2020
861
- ## New Features
862
- * [[9125042](https://github.com/spothero/fe-ui/commit/9125042)] - Add disableBefore, disableAfter, and overrideInitialMonthWithSelected props to DatePickerCalendarWithRange ([#91](https://github.com/spothero/fe-ui/pull/91)) (boiarqin)
863
-
864
- # 10.4.0 - 04/17/2020
865
- ## New Features
866
- * [[2781a9a](https://github.com/spothero/fe-ui/commit/2781a9a)] - Simplify the logic for updating a date range in DatePickerCalendarWithRange (boiarqin)
867
-
868
- # 10.3.1 - 03/25/2020
869
-
870
- ## Miscellaneous Updates
871
- * [[dd93ca1](https://github.com/spothero/fe-ui/commit/dd93ca1)] - `fix:` Fix hover state on outside dates and background on single selected date inside DatePickerCalendarWithRange (boiarqin)
872
-
873
- # 10.3.0 - 02/11/2020
874
- ## New Features
875
- * [[07fefca](https://github.com/spothero/fe-ui/commit/07fefca)] - Add DatePickerCalendarWithRange component (boiarqin)
876
-
877
- # 10.2.0 - 01/10/2020
878
- ## New Features
879
- * [[92eeea0](https://github.com/spothero/fe-ui/commit/92eeea0)] - Add option to display current and total page numbers on Carousel (boiarqin)
880
-
881
- # 10.1.7 - 11/14/2019
882
-
883
- ## Miscellaneous Updates
884
- * [[0136f2f](https://github.com/spothero/fe-ui/commit/0136f2f)] - `fix:` Set option font weight and color back to browser default to prevent inheriting parent/select properties (boiarqin)
885
-
886
- # 10.1.6 - 10/22/2019
887
-
888
- ## Miscellaneous Updates
889
- * [[88d88db](https://github.com/spothero/fe-ui/commit/88d88db)] - `fix:` Remove cloudinaryCloudName from being passed to HTML img tag to avoid React errors for unknown attributes (Matt Przybylski)
890
-
891
- # 10.1.5 - 10/17/2019
892
-
893
- ## Miscellaneous Updates
894
- * [[faad5e6](https://github.com/spothero/fe-ui/commit/faad5e6)] - `fix:` Add prop for changing cloudinary account name (boiarqin)
895
-
896
- # 10.1.4 - 10/16/2019
897
-
898
- ## Miscellaneous Updates
899
- * [[2a20d7f](https://github.com/spothero/fe-ui/commit/2a20d7f)] - `fix:` Remove flash on initial load of Select with placeholder ([#84](https://github.com/spothero/fe-ui/pull/84)) (Matt Przybylski)
900
-
901
- # 10.1.3 - 09/30/2019
902
-
903
- ## Miscellaneous Updates
904
- * [[73baa06](https://github.com/spothero/fe-ui/commit/73baa06)] - `test:` Update Image test for proper class naming based on recent Image changes (Matt Przybylski)
905
-
906
- # 10.1.2 - 09/30/2019
907
-
908
- ## Miscellaneous Updates
909
- * [[56c8afb](https://github.com/spothero/fe-ui/commit/56c8afb)] - `fix:` Set Image-container to maxWidth and maxHeight instead of hard width and height (Matt Przybylski)
910
-
911
- # 10.1.1 - 09/30/2019
912
-
913
- ## Miscellaneous Updates
914
- * [[91ab768](https://github.com/spothero/fe-ui/commit/91ab768)] - `fix:` Remove z-index from PulseLoader in Image (Matt Przybylski)
915
-
916
- # 10.1.0 - 09/30/2019
917
- ## New Features
918
- * [[63739c4](https://github.com/spothero/fe-ui/commit/63739c4)] - Add showLoader prop to Image and enable it by default ([#83](https://github.com/spothero/fe-ui/pull/83)) (Matt Przybylski)
919
-
920
- # 10.0.1 - 09/26/2019
921
-
922
- ## Miscellaneous Updates
923
- * [[b8240d1](https://github.com/spothero/fe-ui/commit/b8240d1)] - `fix:` Hide dropdown icon in Select if a custom icon is provided to show on the right (Matt Przybylski)
924
-
925
- # 10.0.0 - 09/26/2019
926
- ## Breaking Changes
927
- * [[fab44a5](https://github.com/spothero/fe-ui/commit/fab44a5)] - Remove CloudinaryImage and cloudinary-sdk from dependencies and add Cloudinary support to Image ([#82](https://github.com/spothero/fe-ui/pull/82)) (Matt Przybylski)
928
- * [[95697e0](https://github.com/spothero/fe-ui/commit/95697e0)] - Icon updates ([#80](https://github.com/spothero/fe-ui/pull/80)) (Matt Przybylski)
929
- * `fix:` Update icons to use new fe-icons instead of Icon component
930
- * `breaking:` Remove leftArrowIconName and rightArrowIconName in CarouselSlides in favor of internal components
931
- * `breaking:` Removed Checkbox iconName property in favor of new icon property that takes an icon node directly
932
- * `breaking:` Remove Icon and IconPropTypes and clean up tests
933
- * [[b512a12](https://github.com/spothero/fe-ui/commit/b512a12)] - Remove PropTypes from production builds (Matt Przybylski)
934
-
935
- ## Miscellaneous Updates
936
- * [[e5e45ad](https://github.com/spothero/fe-ui/commit/e5e45ad)] - `chore:` Update to latest dependencies (Matt Przybylski)
937
-
938
- # 9.0.2 - 09/04/2019
939
-
940
- ## Miscellaneous Updates
941
- * [[3657841](https://github.com/spothero/fe-ui/commit/3657841)] - `fix:` Local aliasing and run Prettier on playground files (Matt Przybylski)
942
- * [[3b41bf6](https://github.com/spothero/fe-ui/commit/3b41bf6)] - `ci:` Fix export aliases during publishes (Matt Przybylski)
943
-
944
- # 9.0.1 - 09/04/2019
945
-
946
- ## Miscellaneous Updates
947
- * [[ba46f20](https://github.com/spothero/fe-ui/commit/ba46f20)] - `style:` Prettier integration ([#79](https://github.com/spothero/fe-ui/pull/79)) (Matt Przybylski)
948
-
949
- # 9.0.0 - 09/04/2019
950
- ## Breaking Changes
951
- * [[cba8b7e](https://github.com/spothero/fe-ui/commit/cba8b7e)] - Proper peerDependencies ([#78](https://github.com/spothero/fe-ui/pull/78)) (Matt Przybylski)
952
- * `breaking:` Move shared dependencies to peerDependencies to avoid bundling them in published module
953
- * `refactor:` Remove recompose from codebase
954
- * `fix:` Remove react-hot-loader from published module
955
-
956
- # 8.12.0 - 08/19/2019
957
- ## New Features
958
- * [[3605984](https://github.com/spothero/fe-ui/commit/3605984)] - Add sessionToken to Google Place Autocomplete requests (Matt Ritsman)
959
-
960
- # 8.11.1 - 08/14/2019
961
-
962
- ## Miscellaneous Updates
963
- * [[a708a7b](https://github.com/spothero/fe-ui/commit/a708a7b)] - `fix:` Make clock icon in TimePicker not clickable (Matt Przybylski)
964
- * [[973ba01](https://github.com/spothero/fe-ui/commit/973ba01)] - `docs:` Clean up changelog again (Matt Przybylski)
965
-
966
- # 8.11.0 - 08/13/2019
967
- ## New Features
968
- * [[1a0a593](https://github.com/spothero/fe-ui/commit/1a0a593)] - Datepickers formatting ([#76](https://github.com/spothero/fe-ui/pull/76)) (Matt Przybylski)
969
- * `feat:` Add ability to set display format for all date and time picker components
970
- * `fix:` Adjust AutoSuggestInput clear button to be larger and shift colored as per new designs
971
- * `test:` Add test for TimePicker display format
972
- * `test:` Remove .only call in TimePicker spec
973
-
974
- # 8.10.0 - 08/12/2019
975
- * [[de0f5b0](https://github.com/spothero/fe-ui/commit/de0f5b0)] - `fix:` Remove mobile css that causes background scrolling. Add mobile class to playground app (boiarqin)
976
-
977
- # 8.9.0 - 08/08/2019
978
- ## Miscellaneous Updates
979
- * [[902c864](https://github.com/spothero/fe-ui/commit/902c864)] - `fix:` Properly add Image-loaded class to images after they have loaded (Matt Przybylski)
980
-
981
- # 8.8.0 - 08/06/2019
982
- ## New Features
983
- * [[0306bd0](https://github.com/spothero/fe-ui/commit/0306bd0)] - Allow icon position control in all date and time components as well as Select (Matt Przybylski)
984
-
985
- # 8.7.0 - 07/05/2019
986
- ## Miscellaneous Updates
987
- * [[a2a877a](https://github.com/spothero/fe-ui/commit/a2a877a)] - `chore:` Update dependencies and fix tests (Matt Przybylski)
988
- * [[ee60eb5](https://github.com/spothero/fe-ui/commit/ee60eb5)] - `chore:` Update deps to get ellipsis mixin from fe-core (Matt Przybylski)
989
- * [[74d1b17](https://github.com/spothero/fe-ui/commit/74d1b17)] - `chore:` Update react-swipeable to latest version and change import syntax (Matt Przybylski)
990
- * [[87ce853](https://github.com/spothero/fe-ui/commit/87ce853)] - `chore:` Update ACE to v6 (Matt Przybylski)
991
- * [[4543e74](https://github.com/spothero/fe-ui/commit/4543e74)] - `chore:` Update deps to latest (Matt Przybylski)
992
- * [[2a814b6](https://github.com/spothero/fe-ui/commit/2a814b6)] - `chore:` Updated to latest dependencies (Matt Przybylski)
993
- * [[55d3e47](https://github.com/spothero/fe-ui/commit/55d3e47)] - `docs:` Fix changelog entries (Boiar Qin)
994
- * [[1031853](https://github.com/spothero/fe-ui/commit/1031853)] - `docs:` Fix errant CHANGELOG (Zachary Wagner)
995
- * [[3024bbb](https://github.com/spothero/fe-ui/commit/3024bbb)] - `docs:` Fix errant Changelog entries (Matt Przybylski)
996
- * [[accd7d1](https://github.com/spothero/fe-ui/commit/accd7d1)] - `docs:` Update style guide to include new accelerate color and update pavement hex (Matt Przybylski)
997
-
998
- # 8.6.0 - 07/01/2019
999
-
1000
- ## Miscellaneous Updates
1001
- * [[b63f3f7](https://github.com/spothero/fe-ui/commit/b63f3f7)] - `fix:` Add one-tap icon (boiarqin)
1002
-
1003
- # 8.5.0 - 06/10/2019
1004
- ## New Features
1005
- * [[bfda0ef](https://github.com/spothero/fe-ui/commit/bfda0ef)] - Added disableStartDateTimePicker and disableEndDateTimePicker props to DateTimeRangePicker (Zachary Wagner)
1006
-
1007
- # 8.4.7 - 05/31/2019
1008
-
1009
- ## Miscellaneous Updates
1010
- * [[0718f01](https://github.com/spothero/fe-ui/commit/0718f01)] - `fix:` Incorrect destructure in GooglePlacesSearchInput country search suggestions (Matt Przybylski)
1011
-
1012
- # 8.4.6 - 05/31/2019
1013
-
1014
- ## Miscellaneous Updates
1015
- * [[853b2a1](https://github.com/spothero/fe-ui/commit/853b2a1)] - `fix:` Remove bounds calculation from GooglePlacesSearchInput to aid in automatic bounds generation by Google services (Matt Przybylski)
1016
-
1017
- # 8.4.5 - 05/24/2019
1018
-
1019
- ## Miscellaneous Updates
1020
- * [[de9ca91](https://github.com/spothero/fe-ui/commit/de9ca91)] - `fix:` Update check icon to latest from design (Matt Przybylski)
1021
-
1022
- # 8.4.4 - 05/13/2019
1023
-
1024
- ## Miscellaneous Updates
1025
- * [[73feb39](https://github.com/spothero/fe-ui/commit/73feb39)] - `style:` Radio/Checkbox color updates, add codeowners file (boiarqin)
1026
-
1027
- # 8.4.3 - 05/07/2019
1028
-
1029
- ## Miscellaneous Updates
1030
- * [[19756b8](https://github.com/spothero/fe-ui/commit/19756b8)] - `fix:` Update to latest dependencies, including react-tether update to fix SSR issues in DatePicker (Matt Przybylski)
1031
-
1032
- # 8.4.2 - 04/23/2019
1033
-
1034
- ## Miscellaneous Updates
1035
- * [[7daa310](https://github.com/spothero/fe-ui/commit/7daa310)] - `fix:` Modal not showing right away if animateOnShow is off in SSR environments (Matt Przybylski)
1036
- * [[29178e7](https://github.com/spothero/fe-ui/commit/29178e7)] - `fix:` Styleguide not updating properly (Matt Przybylski)
1037
-
1038
- # 8.4.1 - 04/08/2019
1039
-
1040
- ## Miscellaneous Updates
1041
- * [[8d7aa72](https://github.com/spothero/fe-ui/commit/8d7aa72)] - `fix:` DatePicker body click issue and update dependencies to latest ([#66](https://github.com/spothero/fe-ui/pull/66)) (Matt Przybylski)
1042
- * [[3024bbb](https://github.com/spothero/fe-ui/commit/3024bbb)] - `docs:` Fix errant Changelog entries (Matt Przybylski)
1043
-
1044
- # 8.4.0 - 03/19/2019
1045
-
1046
- ## Miscellaneous Updates
1047
- * [[e50e882](https://github.com/spothero/fe-ui/commit/e50e882)] - `fix:` Make Table prop totalDataRowCount optional (Zachary Wagner)
1048
-
1049
- # 8.3.0 - 03/14/2019
1050
- ## New Features
1051
- * [[7f82f00](https://github.com/spothero/fe-ui/commit/7f82f00)] - Update Table styling, add options for sortable Table headers, add a Table footer, and include exportable TableSortType enum (Zachary Wagner)
1052
-
1053
- # 8.2.3 - 03/06/2019
1054
-
1055
- ## Miscellaneous Updates
1056
- * [[045223e](https://github.com/spothero/fe-ui/commit/045223e)] - `fix:` Set span in DatePicker to be inline-block so it eats up the height of the container properly (Matt Przybylski)
1057
-
1058
- # 8.2.2 - 03/06/2019
1059
-
1060
- ## Miscellaneous Updates
1061
- * [[541958b](https://github.com/spothero/fe-ui/commit/541958b)] - `fix:` DatePicker tether in a div caused misalignment in inlined DatePickers so now its in a span (Matt Przybylski)
1062
- * [[e8bd6ba](https://github.com/spothero/fe-ui/commit/e8bd6ba)] - `refactor:` Update playground Navigation component to have collapsible sections (Zachary Wagner)
1063
-
1064
- # 8.2.1 - 03/05/2019
1065
-
1066
- ## Miscellaneous Updates
1067
- * [[ee60eb5](https://github.com/spothero/fe-ui/commit/ee60eb5)] - `chore:` Update deps to get ellipsis mixin from fe-core (Matt Przybylski)
1068
-
1069
- # 8.2.0 - 03/05/2019
1070
- ## Dependency Updates
1071
- * [[00fee73](https://github.com/spothero/fe-ui/commit/00fee73)] - New react-tether syntax inside of DatePicker ([#61](https://github.com/spothero/fe-ui/pull/61)) (Matt Przybylski)
1072
-
1073
- ## New Features
1074
- * [[20b79c4](https://github.com/spothero/fe-ui/commit/20b79c4)] - Add ability to customize dropdown icons in Select component (Matt Przybylski)
1075
-
1076
- ## Miscellaneous Updates
1077
- * [[83c4b84](https://github.com/spothero/fe-ui/commit/83c4b84)] - `refactor:` Modal uses Portal instead of RenderInBody when a store is passed (Matt Przybylski)
1078
- * [[74d1b17](https://github.com/spothero/fe-ui/commit/74d1b17)] - `chore:` Update react-swipeable to latest version and change import syntax (Matt Przybylski)
1079
- * [[87ce853](https://github.com/spothero/fe-ui/commit/87ce853)] - `chore:` Update ACE to v6 (Matt Przybylski)
1080
- * [[4543e74](https://github.com/spothero/fe-ui/commit/4543e74)] - `chore:` Update deps to latest (Matt Przybylski)
1081
-
1082
- # 8.1.2 - 01/23/2019
1083
-
1084
- ## Miscellaneous Updates
1085
- * [[accd7d1](https://github.com/spothero/fe-ui/commit/accd7d1)] - `docs:` Update style guide to include new accelerate color and update pavement hex (Matt Przybylski)
1086
-
1087
- # 8.1.1 - 01/08/2019
1088
-
1089
- ## Miscellaneous Updates
1090
- * [[2a814b6](https://github.com/spothero/fe-ui/commit/2a814b6)] - `chore:` Updated to latest dependencies (Matt Przybylski)
1091
-
1092
- # 8.1.0 - 01/04/2019
1093
- ## New Features
1094
- * [[9d5dcc3](https://github.com/spothero/fe-ui/commit/9d5dcc3)] - Enable passing a custom cloudinary image quality property (Rose Bui)
1095
-
1096
- ## Miscellaneous Updates
1097
- * [[a2e4347](https://github.com/spothero/fe-ui/commit/a2e4347)] - `docs:` Update path to include playground (Rose Bui)
1098
-
1099
- # 8.0.0 - 12/11/2018
1100
- ## Breaking Changes
1101
- * [[590ae89](https://github.com/spothero/fe-ui/commit/590ae89)] - Added required ID props to support SSR in Checkbox, DatePicker, DateTimePicker, DateTimeRangePicker, Form, and RadioGroup components (Matt Przybylski)
1102
-
1103
- ## Miscellaneous Updates
1104
- * [[090e3c8](https://github.com/spothero/fe-ui/commit/090e3c8)] - `ci:` Added deploy env var for style guide production deploys (Matt Przybylski)
1105
- * [[b03b43b](https://github.com/spothero/fe-ui/commit/b03b43b)] - Update google maps api key (Matt Przybylski)
1106
- * [[ab6b865](https://github.com/spothero/fe-ui/commit/ab6b865)] - Update google maps API key (Matt Przybylski)
1107
-
1108
- # 7.3.0 - 12/04/2018
1109
- ## Dependency Updates
1110
- * [[6891414](https://github.com/spothero/fe-ui/commit/6891414)] - ACE v5 ([#56](https://github.com/spothero/fe-ui/pull/56)) (Matt Przybylski)
1111
- * `upgrade:` Bump all dependencies and implement ACE v5
1112
- * `chore:` License under Apache 2.0 instead of MIT
1113
-
1114
- ## Miscellaneous Updates
1115
- * [[e622047](https://github.com/spothero/fe-ui/commit/e622047)] - `docs:` Minor fixes to coding standards (Matt Przybylski)
1116
- * [[6689abc](https://github.com/spothero/fe-ui/commit/6689abc)] - `chore:` Update deps to latest (Matt Przybylski)
1117
- * [[0773ffe](https://github.com/spothero/fe-ui/commit/0773ffe)] - `chore:` Upgrade to latest ACE version to avoid ESLint false positives (Matt Przybylski)
1118
- * [[2fb1443](https://github.com/spothero/fe-ui/commit/2fb1443)] - `test:` Add no delays to type commands in tests (Matt Przybylski)
1119
- * [[e971de7](https://github.com/spothero/fe-ui/commit/e971de7)] - `test:` Add RangeSlider component tests (Brett Kellgren)
1120
- * [[fa5ec65](https://github.com/spothero/fe-ui/commit/fa5ec65)] - `test:` Date and time component tests (Brett Kellgren)
1121
- * [[5eaf29b](https://github.com/spothero/fe-ui/commit/5eaf29b)] - Test runs ([#55](https://github.com/spothero/fe-ui/pull/55)) (Matt Przybylski)
1122
- * `squash:` In progress trying to get test runs to run on each publish
1123
- * `ci:` Add ability to run tests before publish
1124
- * `chore:` Bump packages to latest
1125
-
1126
- # 7.2.0 - 11/05/2018
1127
- ## New Features
1128
- * [[ea97c55](https://github.com/spothero/fe-ui/commit/ea97c55)] - Upgraded all dependencies and React 16.6.0 to latest (Matt Przybylski)
1129
-
1130
- ## Miscellaneous Updates
1131
- * [[03058c1](https://github.com/spothero/fe-ui/commit/03058c1)] - `docs:` Change title of style guide to read Uniform (Matt Przybylski)
1132
- * [[aef3994](https://github.com/spothero/fe-ui/commit/aef3994)] - `docs:` Update js and react coding standards heading links (Matt Przybylski)
1133
- * [[f492d16](https://github.com/spothero/fe-ui/commit/f492d16)] - `test:` Add Cypress tests for Tabs component (boiarqin)
1134
-
1135
- # 7.1.1 - 10/23/2018
1136
-
1137
- ## Miscellaneous Updates
1138
- * [[d86726b](https://github.com/spothero/fe-ui/commit/d86726b)] - `fix:` Bug preventing selection of end months after disabling dates based on start month selected in DateTimeRangePicker ([#53](https://github.com/spothero/fe-ui/pull/53)) (Matt Przybylski)
1139
- * [[a76f178](https://github.com/spothero/fe-ui/commit/a76f178)] - `test:` Add Cypress tests for Checkbox properties (Megan Bui)
1140
-
1141
- # 7.1.0 - 10/18/2018
1142
- ## New Features
1143
- * [[190e073](https://github.com/spothero/fe-ui/commit/190e073)] - Enable optgroup on Select component (Rose Bui)
1144
-
1145
- ## Miscellaneous Updates
1146
- * [[3ca8069](https://github.com/spothero/fe-ui/commit/3ca8069)] - `refactor:` Refactor some Chart component internals (Zachary Wagner)
1147
- * [[63fc186](https://github.com/spothero/fe-ui/commit/63fc186)] - `test:` Cypress tests for GooglePlacesSearchInput component (boiarqin)
1148
- * [[06f8cb5](https://github.com/spothero/fe-ui/commit/06f8cb5)] - `test:` Add tests for Table component (Zachary Wagner)
1149
- * [[733960b](https://github.com/spothero/fe-ui/commit/733960b)] - 7.0.4 (Zach Wagner)
1150
-
1151
- # 7.0.4 - 10/18/2018
1152
-
1153
- ## Miscellaneous Updates
1154
- * [[3ca8069](https://github.com/spothero/fe-ui/commit/3ca8069)] - `refactor:` Refactor some Chart component internals (Zachary Wagner)
1155
- * [[63fc186](https://github.com/spothero/fe-ui/commit/63fc186)] - `test:` Cypress tests for GooglePlacesSearchInput component (boiarqin)
1156
- * [[06f8cb5](https://github.com/spothero/fe-ui/commit/06f8cb5)] - `test:` Add tests for Table component (Zachary Wagner)
1157
-
1158
- # 7.0.3 - 10/15/2018
1159
-
1160
- ## Miscellaneous Updates
1161
- * [[aa1f40d](https://github.com/spothero/fe-ui/commit/aa1f40d)] - `chore:` Upgrade to latest commitlint config and husky script format (Matt Przybylski)
1162
-
1163
- # 7.0.2 - 10/04/2018
1164
-
1165
- ## Miscellaneous Updates
1166
- * [[7c1f4ba](https://github.com/spothero/fe-ui/commit/7c1f4ba)] - `fix:` Refactor Panel title to be consistent ([#45](https://github.com/spothero/fe-ui/pull/45)) (Zachary Wagner)
1167
-
1168
- # 7.0.1 - 10/03/2018
1169
-
1170
- ## Miscellaneous Updates
1171
- * [[e48bb55](https://github.com/spothero/fe-ui/commit/e48bb55)] - `docs:` Add coding standards to Uniform (Matt Przybylski)
1172
- * [[7c325b0](https://github.com/spothero/fe-ui/commit/7c325b0)] - `docs:` Updated styleguidist @babel/polyfill import path (Matt Przybylski)
1173
- * [[bb99822](https://github.com/spothero/fe-ui/commit/bb99822)] - `docs:` Update README with correct publishing path (Matt Przybylski)
1174
- * [[eb496e8](https://github.com/spothero/fe-ui/commit/eb496e8)] - `docs:` Update babel-polyfill usage to @babel/polyfill for Babel 7 support (Matt Przybylski)
1175
- * [[05ce9eb](https://github.com/spothero/fe-ui/commit/05ce9eb)] - `test:` PasswordControl Cypress tests (boiarqin)
1176
-
1177
- # 7.0.0 - 09/25/2018
1178
- ## Breaking Changes
1179
- * [[7951199](https://github.com/spothero/fe-ui/commit/7951199)] - Upgrades for Babel v7 (Matt Przybylski)
1180
-
1181
- ## Dependency Updates
1182
- * [[53dbe28](https://github.com/spothero/fe-ui/commit/53dbe28)] - Updated dependencies to latest (Matt Przybylski)
1183
-
1184
- # 6.2.2 - 09/24/2018
1185
-
1186
- ## Miscellaneous Updates
1187
- * [[97fd69d](https://github.com/spothero/fe-ui/commit/97fd69d)] - `refactor:` Remove duplicate disabled prop from DatePicker TextInput (Zachary Wagner)
1188
-
1189
- # 6.2.1 - 09/18/2018
1190
-
1191
- ## Miscellaneous Updates
1192
- * [[b85e550](https://github.com/spothero/fe-ui/commit/b85e550)] - `fix:` After React 16.4 the value of Checkbox was blank instead of set to on like prior versions (Matt Przybylski)
1193
-
1194
- # 6.2.0 - 09/18/2018
1195
- ## New Features
1196
- * [[c7ddf91](https://github.com/spothero/fe-ui/commit/c7ddf91)] - SSR Updates ([#41](https://github.com/spothero/fe-ui/pull/41)) (Matt Przybylski)
1197
- * `feat:` Added support for SSR
1198
- * `fix:` Remove requirement of googleMaps on GooglePlacesSearchInput and add isBrowser check to support SSR
1199
- * `fix:` Make CloudinaryImage responsible for showing source on componentDidMount to help with SSR
1200
- * `fix:` Issue with CloudinaryImage not returning a null source and Portal PropType issues
1201
- * `chore:` Updated react-styleguidist to latest version
1202
-
1203
- ## Miscellaneous Updates
1204
- * [[1b30b4c](https://github.com/spothero/fe-ui/commit/1b30b4c)] - `test:` Add TextInput Cypress tests (boiarqin)
1205
- * [[dc3fe21](https://github.com/spothero/fe-ui/commit/dc3fe21)] - `fix:` Component GooglePlacesSearchInput suggestions should leverage place_id on suggestion rather than placesPlaceId ([#39](https://github.com/spothero/fe-ui/pull/39)) (Brett Kellgren)
1206
- * [[6734529](https://github.com/spothero/fe-ui/commit/6734529)] - `fix:` Pass disabled prop through to TextInput when passed into DatePicker ([#40](https://github.com/spothero/fe-ui/pull/40)) (Brett Kellgren)
1207
- * [[d11d1e2](https://github.com/spothero/fe-ui/commit/d11d1e2)] - 6.1.2 (Brett Kellgren)
1208
- * [[073192e](https://github.com/spothero/fe-ui/commit/073192e)] - React 16.4 ([#30](https://github.com/spothero/fe-ui/pull/30)) (Matt Przybylski)
1209
-
1210
- # 6.2.0-beta.6 - 09/12/2018
1211
-
1212
- ## Miscellaneous Updates
1213
- * [[d7c0966](https://github.com/spothero/fe-ui/commit/d7c0966)] - `fix:` Issue with CloudinaryImage not returning a null source and Portal PropType issues (Matt Przybylski)
1214
-
1215
- # 6.2.0-beta.5 - 09/12/2018
1216
-
1217
- ## Miscellaneous Updates
1218
- * [[f2e740b](https://github.com/spothero/fe-ui/commit/f2e740b)] - `fix:` Revert AutoSuggestInput changes and make CloudinaryImage responsible for showing source on componentDidMount to help with SSR (Matt Przybylski)
1219
-
1220
- # 6.2.0-beta.4 - 09/12/2018
1221
-
1222
- ## Miscellaneous Updates
1223
- * [[ccb3be4](https://github.com/spothero/fe-ui/commit/ccb3be4)] - `fix:` Make AutoSuggestInput only render the footer upon first showing of suggestions to help with SSR (Matt Przybylski)
1224
-
1225
- # 6.2.0-beta.3 - 09/12/2018
1226
- ## Miscellaneous Updates
1227
- * [[5851afe](https://github.com/spothero/fe-ui/commit/5851afe)] - `test:` Add TextArea Cypress tests (boiarqin)
1228
- * [[fae40e1](https://github.com/spothero/fe-ui/commit/fae40e1)] - `perf:` Update setTimeout for Modal initial display from 100 to 0 ms ([#37](https://github.com/spothero/fe-ui/pull/37)) (Brett Kellgren)
1229
- * [[6725757](https://github.com/spothero/fe-ui/commit/6725757)] - 5.6.1 (Brett Kellgren)
1230
-
1231
- # 6.2.0-beta.2 - 09/12/2018
1232
-
1233
- ## Miscellaneous Updates
1234
- * [[25e0598](https://github.com/spothero/fe-ui/commit/25e0598)] - `fix:` Remove requirement of googleMaps on GooglePlacesSearchInput and add isBrowser check to support SSR (Matt Przybylski)
1235
-
1236
- # 6.2.0-beta.1 - 09/10/2018
1237
- ## New Features
1238
- * [[0254434](https://github.com/spothero/fe-ui/commit/0254434)] - Added support for SSR (Matt Przybylski)
1239
-
1240
- # 6.2.0-beta.0 - 09/10/2018
1241
- ## New Features
1242
- * [[b176da5](https://github.com/spothero/fe-ui/commit/b176da5)] - Optional function prop onBeforeFirstRender on Modal ([#34](https://github.com/spothero/fe-ui/pull/34)) (Brett Kellgren)
1243
- * [[9cb3f7b](https://github.com/spothero/fe-ui/commit/9cb3f7b)] - Added optional disabled prop to DatePicker component ([#35](https://github.com/spothero/fe-ui/pull/35)) (Brett Kellgren)
1244
-
1245
- ## Miscellaneous Updates
1246
- * [[befb62b](https://github.com/spothero/fe-ui/commit/befb62b)] - `refactor:` Removed documentOffset package in favor of DOMUtils.getDocumentOffset method to support SSR (Matt Przybylski)
1247
- * [[a75166f](https://github.com/spothero/fe-ui/commit/a75166f)] - 6.1.2-beta.0 (Matt Przybylski)
1248
- * [[832e622](https://github.com/spothero/fe-ui/commit/832e622)] - 6.1.2 (Matt Przybylski)
1249
- * [[ff73d76](https://github.com/spothero/fe-ui/commit/ff73d76)] - 5.6.0 (Brett Kellgren)
1250
-
1251
- # 6.1.1 - 09/04/2018
1252
-
1253
- ## Miscellaneous Updates
1254
- * [[7887e4c](https://github.com/spothero/fe-ui/commit/7887e4c)] - `fix:` Refactor dependencies to make Panel component work (Zach Wagner)
1255
-
1256
- # 6.1.0 - 09/04/2018
1257
- ## New Features
1258
- * [[b7b7059](https://github.com/spothero/fe-ui/commit/b7b7059)] - Add Panel component (Zachary Wagner)
1259
-
1260
- ## Miscellaneous Updates
1261
- * [[6a3d381](https://github.com/spothero/fe-ui/commit/6a3d381)] - `test:` Add Cypress tests for Select component (Zachary Wagner)
1262
-
1263
- # 6.0.6 - 08/28/2018
1264
-
1265
- ## Miscellaneous Updates
1266
- * [[acdad41](https://github.com/spothero/fe-ui/commit/acdad41)] - `build:` Update to using newest npm-publisher for publishing to proper npm registry (Matt Przybylski)
1267
- * [[b3bb754](https://github.com/spothero/fe-ui/commit/b3bb754)] - `build:` Add export sorting in package json for easier identification of available exports (Matt Przybylski)
1268
- * [[ba587d9](https://github.com/spothero/fe-ui/commit/ba587d9)] - `docs:` Added sections to style guide and documented core Sass module (Matt Przybylski)
1269
- * [[7ddca3f](https://github.com/spothero/fe-ui/commit/7ddca3f)] - `chore:` Fix error in documentation of Select component (Matt Przybylski)
1270
- * [[b470824](https://github.com/spothero/fe-ui/commit/b470824)] - `chore:` Update to latest ACE to upgrade Cypress and fix failing SVG ui tests (Matt Przybylski)
1271
- * [[7a424b8](https://github.com/spothero/fe-ui/commit/7a424b8)] - `test:` Add tests for Portal (Zachary Wagner)
1272
-
1273
- # 6.0.5 - 08/15/2018
1274
-
1275
- ## Miscellaneous Updates
1276
- * [[f28fd0d](https://github.com/spothero/fe-ui/commit/f28fd0d)] - `fix:` The DateTimeRangePicker was not firing onEndChange properly in some situations (Matt Przybylski)
1277
- * [[a4d0ea9](https://github.com/spothero/fe-ui/commit/a4d0ea9)] - `chore:` Cleanup main.js file (Matt Przybylski)
1278
-
1279
- # 6.0.4 - 08/14/2018
1280
-
1281
- ## Miscellaneous Updates
1282
- * [[186afdb](https://github.com/spothero/fe-ui/commit/186afdb)] - `fix:` If both start and end are set in DateTimeRangePicker, disable end times before start times on same day (Matt Przybylski)
1283
- * [[0a8961c](https://github.com/spothero/fe-ui/commit/0a8961c)] - `fix:` The DateTimeRangePicker was disabling selectable times if start date pushed times over to the next day on change (Matt Przybylski)
1284
-
1285
- # 6.0.3 - 08/14/2018
1286
-
1287
- ## Miscellaneous Updates
1288
- * [[4e382d1](https://github.com/spothero/fe-ui/commit/4e382d1)] - `fix:` React update broke TabNavigation not highlighting the correct active tab (Matt Przybylski)
1289
- * [[40f7695](https://github.com/spothero/fe-ui/commit/40f7695)] - `fix:` Added proper updating of end date and time when autoBumpInvalidEnabled is enabled in DateTimeRangePicker and re-added highlight class (Matt Przybylski)
1290
-
1291
- # 6.0.2 - 08/14/2018
1292
-
1293
- ## Miscellaneous Updates
1294
- * [[0916593](https://github.com/spothero/fe-ui/commit/0916593)] - `fix:` Another update to npmignore to actually ignore the correct files this time (Matt Przybylski)
1295
-
1296
- # 6.0.1 - 08/14/2018
1297
-
1298
- ## Miscellaneous Updates
1299
- * [[36ac3f5](https://github.com/spothero/fe-ui/commit/36ac3f5)] - `fix:` Only add root sass directory to npmignore for proper sass publishes in common directory (Matt Przybylski)
1300
- * [[76b440c](https://github.com/spothero/fe-ui/commit/76b440c)] - `docs:` Use https images in examples instead of just http to avoid security warnings (Matt Przybylski)
1301
-
1302
- # 6.0.0 - 08/14/2018
1303
- ## Breaking Changes
1304
- * [[688c9f7](https://github.com/spothero/fe-ui/commit/688c9f7)] - Date/Time Refactoring ([#29](https://github.com/spothero/fe-ui/pull/29)) (Matt Przybylski)
1305
- * `breaking:` Change main Sass import path from src to lib directory
1306
- * `breaking:` Remove native mobile date picker support in DatePicker and default to using the calendar in all scenarios
1307
- * `breaking:` Removed tooltip support from DateTimePicker in favor of manual tooltip management in a parent component
1308
- * `breaking:` Renamed DateTimePicker disableBefore prop to disableDateBefore
1309
- * `breaking:` Renamed DateTimePicker disableAfter prop to disableDateAfter
1310
- * `breaking:` Removed tooltip support from DateTimeRangePicker in favor of manual tooltip management in a parent component
1311
- * `breaking:` Renamed DateTimeRangePicker disableStartBefore prop to disableStartDateBefore
1312
- * `breaking:` Renamed DateTimeRangePicker disableStartAfter prop to disableStartDateAfter
1313
- * `breaking:` Renamed DateTimeRangePicker disableStartAfter prop to disableStartDateAfter
1314
- * `breaking:` Renamed DateTimeRangePicker disableEndBefore prop to disableEndDateBefore
1315
- * `breaking:` Renamed DateTimeRangePicker disableEndAfter prop to disableEndDateAfter
1316
- * `feat:` Added autoBumpInvalidEnabled prop in DateTimeRangePicker to enable auto bumping of invalid end dates
1317
- * `feat:` Added disableBefore and disableAfter props to TimePicker
1318
- * `feat:` Added disableTimeBefore and disableTimeAfter props to DateTimePicker
1319
- * `feat:` DateTimeRangePicker will now automatically disable times before the selected start time in the end time picker if the same day is selected for both
1320
-
1321
- ## Dependency Updates
1322
- * [[dfa633f](https://github.com/spothero/fe-ui/commit/dfa633f)] - All dependencies that were not latest, other than React, bumped in preparation for React 16.4.x upgrade (Matt Przybylski)
1323
-
1324
- ## Miscellaneous Updates
1325
- * [[fcb6829](https://github.com/spothero/fe-ui/commit/fcb6829)] - `fix:` When useTetherShim was set on DatePicker it was not centering properly on the screen (Matt Przybylski)
1326
- * [[69c990b](https://github.com/spothero/fe-ui/commit/69c990b)] - `docs:` Add available icons to Icon documentation and spruce up the UI of the generated style guide (Matt Przybylski)
1327
- * [[3fa4e21](https://github.com/spothero/fe-ui/commit/3fa4e21)] - `docs:` Updated to latest react-styleguidist for default method param value support (Matt Przybylski)
1328
- * [[6a91e86](https://github.com/spothero/fe-ui/commit/6a91e86)] - `chore:` Upgrade dependencies (Matt Przybylski)
1329
- * [[382e2ae](https://github.com/spothero/fe-ui/commit/382e2ae)] - `refactor:` Refactored all but DateTimePicker to be React 16.4 friendly (Matt Przybylski)
1330
-
1331
- # 5.6.1 - 09/10/2018
1332
- ## Miscellaneous Updates
1333
- * [[fae40e1](https://github.com/spothero/fe-ui/commit/fae40e1)] - `perf:` Update setTimeout for Modal initial display from 100 to 0 ms (#37) (Brett Kellgren)
1334
-
1335
- # 5.6.0 - 09/05/2018
1336
- ## New Features
1337
- * [[b176da5](https://github.com/spothero/fe-ui/commit/b176da5)] - Optional function prop onBeforeFirstRender on Modal (#34) (Brett Kellgren)
1338
- * [[9cb3f7b](https://github.com/spothero/fe-ui/commit/9cb3f7b)] - Added optional disabled prop to DatePicker component (#35) (Brett Kellgren)
1339
-
1340
- # 5.5.1 - 08/08/2018
1341
- ## Miscellaneous Updates
1342
- * [[821a1e8](https://github.com/spothero/fe-ui/commit/821a1e8)] - `fix:` Radio and Checkbox components should default to a white background (Brett Kellgren)
1343
- * [[ffbe4cc](https://github.com/spothero/fe-ui/commit/ffbe4cc)] - `test:` Cypress tests for the Label component (Brett Kellgren)
1344
- * [[8c25ac9](https://github.com/spothero/fe-ui/commit/8c25ac9)] - `test:` Add Cypress test for Tooltip close button (boiarqin)
1345
- * [[89a669d](https://github.com/spothero/fe-ui/commit/89a669d)] - `test:` Cypress tests for the TextButton component (Brett Kellgren)
1346
- * [[e30e12c](https://github.com/spothero/fe-ui/commit/e30e12c)] - `test:` Add Tooltip component Cypress tests (boiarqin)
1347
- * [[c051f0a](https://github.com/spothero/fe-ui/commit/c051f0a)] - `test:` Add Cypress tests for Radio and Radio Group components (boiarqin)
1348
- * [[bb280dc](https://github.com/spothero/fe-ui/commit/bb280dc)] - `test:` Add Cypress tests for Loader component (boiarqin)
1349
- * [[d1770b4](https://github.com/spothero/fe-ui/commit/d1770b4)] - `refactor:` Moved to using exist checks instead of checking length in spec files (Matt Przybylski)
1350
- * [[ed65d03](https://github.com/spothero/fe-ui/commit/ed65d03)] - `refactor:` Update eslint-config and fix lint errors (Matt Przybylski)
1351
- * [[5d246c7](https://github.com/spothero/fe-ui/commit/5d246c7)] - `refactor:` Updated watch path for JS to include JSX files (Matt Przybylski)
1352
- * [[1e82304](https://github.com/spothero/fe-ui/commit/1e82304)] - `chore:` Upgrade to latest eslint-config to remove more false positives after updating ESLint (Matt Przybylski)
1353
- * [[e41971c](https://github.com/spothero/fe-ui/commit/e41971c)] - `chore:` Bump commitlint version to allow longer commit messages (Matt Przybylski)
1354
-
1355
- # 5.5.0 - 07/24/2018
1356
- ## New Features
1357
- * [[ca6d361](https://github.com/spothero/fe-ui/commit/ca6d361)] - Added tether.io "constraints" option to DatePicker so it never renders outside of the window (#20) (Brett Kellgren)
1358
- ## Miscellaneous Updates
1359
- * [[652dca6](https://github.com/spothero/fe-ui/commit/652dca6)] - `test:` Add tests for Notification components (Matt Przybylski)
1360
- * [[4e1cbeb](https://github.com/spothero/fe-ui/commit/4e1cbeb)] - `test:` Added tests for RenderInBody (Matt Przybylski)
1361
- * [[ae6d477](https://github.com/spothero/fe-ui/commit/ae6d477)] - `test:` Added Sprite tests (Matt Przybylski)
1362
- * [[0ddd163](https://github.com/spothero/fe-ui/commit/0ddd163)] - `test:` Added tests for Modal component (Matt Przybylski)
1363
- * [[0a3965f](https://github.com/spothero/fe-ui/commit/0a3965f)] - `test:` Cypress tests for HorizontalRule component (boiarqin)
1364
- * [[655d8f1](https://github.com/spothero/fe-ui/commit/655d8f1)] - `test:` Cypress tests for `ErrorBoundary` component (Zachary Wagner)
1365
- * [[1859a9b](https://github.com/spothero/fe-ui/commit/1859a9b)] - `test:` Cypress tests for `PulseLoader` component (Zachary Wagner)
1366
- * [[8c7b490](https://github.com/spothero/fe-ui/commit/8c7b490)] - `test:` Added tests for Image and CloudinaryImage components (Matt Przybylski)
1367
- * [[b93657a](https://github.com/spothero/fe-ui/commit/b93657a)] - `test:` Added tests for the Icon component (Matt Przybylski)
1368
- * [[e62dbaa](https://github.com/spothero/fe-ui/commit/e62dbaa)] - `test:` Added tests for Form component (Matt Przybylski)
1369
- * [[4aab859](https://github.com/spothero/fe-ui/commit/4aab859)] - `test:` Added Badge and Carousel tests (Matt Przybylski)
1370
- * [[aa9e864](https://github.com/spothero/fe-ui/commit/aa9e864)] - `test:` Set up Cypress testing and test Alert, AutoSuggestInput, and Button (Matt Przybylski)
1371
-
1372
- # 5.4.0 - 07/03/2018
1373
- ## New Features
1374
- * [[1eb491e](https://github.com/spothero/fe-ui/commit/1eb491e)] - Added `Flyout` component (Zachary Wagner)
1375
- ## Miscellaneous Updates
1376
- * [[687bde0](https://github.com/spothero/fe-ui/commit/687bde0)] - `fix:` Updated gitignore to ignore specific build style-guide directory (Matt Przybylski)
1377
- * [[1475f22](https://github.com/spothero/fe-ui/commit/1475f22)] - `docs:` Update TextButton to remove error and fix Table docs spacing (Matt Przybylski)
1378
- * [[17c50a3](https://github.com/spothero/fe-ui/commit/17c50a3)] - `docs:` Added documentation for public methods in components (Matt Przybylski)
1379
-
1380
- # 5.3.0 - 07/02/2018
1381
- ## New Features
1382
- * [[dadf011](https://github.com/spothero/fe-ui/commit/dadf011)] - Added validation to Checkbox (Matt Przybylski)
1383
- ## Miscellaneous Updates
1384
- * [[6d7a43f](https://github.com/spothero/fe-ui/commit/6d7a43f)] - `docs:` Added more documentation around Radio states (Matt Przybylski)
1385
-
1386
- # 5.2.7 - 07/02/2018
1387
- ## Miscellaneous Updates
1388
- * [[cc6b870](https://github.com/spothero/fe-ui/commit/cc6b870)] - `docs:` Added react-styleguidist Integration for documentation and style guide (Matt Przybylski)
1389
-
1390
- # 5.2.6 - 06/28/2018
1391
- ## Miscellaneous Updates
1392
- * [[c4d4f2c](https://github.com/spothero/fe-ui/commit/c4d4f2c)] - `chore:` Bump react and react-dom from 16.0.0 to 16.2.0 (Brett Kellgren)
1393
- * [[f407e6d](https://github.com/spothero/fe-ui/commit/f407e6d)] - `chore:` Deleted lib directory and added it to gitignore since its generated each time on a publish (Matt Przybylski)
1394
- * [[f12d327](https://github.com/spothero/fe-ui/commit/f12d327)] - `fix:` Updated publishing to properly use a generated .babelrc file by ACE (Matt Przybylski)
1395
-
1396
- # 5.2.5 - 06/28/2018
1397
- ## Miscellaneous Updates
1398
- * [[0dc3a0d](https://github.com/spothero/fe-ui/commit/0dc3a0d)] - `fix:` Lowered Carousel z-index values to coordinate with desktop header dropdown menus (Brett Kellgren)
1399
- * [[b1ffc4f](https://github.com/spothero/fe-ui/commit/b1ffc4f)] - `fix:` Tests now run in their own index file (Matt Przybylski)
1400
- * [[1926a7a](https://github.com/spothero/fe-ui/commit/1926a7a)] - `chore:` Upgrade to latest ACE (Matt Przybylski)
1401
- * [[ff21201](https://github.com/spothero/fe-ui/commit/ff21201)] - `chore:` Small update to deps (Matt Przybylski)
1402
- * [[ac64ea8](https://github.com/spothero/fe-ui/commit/ac64ea8)] - `build:` Use ACE for internal dev builds (Matt Przybylski)
1403
- * [[a2e2f6c](https://github.com/spothero/fe-ui/commit/a2e2f6c)] - `build:` Post-publish add of untracked files (Zach Wagner)
1404
-
1405
- # 5.2.4 - 06/22/2018
1406
- ## New Features
1407
- * [[426aa34](https://github.com/spothero/fe-ui/commit/426aa34)] - `feat:` Added `pageSize` prop to `Table` component (Zachary Wagner)
1408
-
1409
- # 5.2.3 - 06/22/2018
1410
- ## Miscellaneous Updates
1411
- * [[66c5040](https://github.com/spothero/fe-ui/commit/66c5040)] - `build:` Re-release to fix Nexus issues (Brett Kellgren)
1412
-
1413
- # 5.2.2 - 06/22/2018
1414
- ## Miscellaneous Updates
1415
- * [[1e73afb](https://github.com/spothero/fe-ui/commit/1e73afb)] - `fix:` Moved form inputs to hard-coded height (Brett Kellgren)
1416
- * [[dd84841](https://github.com/spothero/fe-ui/commit/dd84841)] - `build:` Updated to latest @spothero/nexus (Matt Przybylski)
1417
-
1418
- # 5.2.1 - 06/21/2018
1419
- ## Miscellaneous Updates
1420
- * [[56ff9b9](https://github.com/spothero/fe-ui/commit/56ff9b9)] - `build:` Added @spothero/nexus to publish builds and commit linting (Matt Przybylski)
1421
-
1422
- # 5.2.0 - 06/19/2018 - [Zach Wagner](mailto:zach.wagner@spothero.com)
1423
- - Added `PulseLoader` component.
1424
-
1425
- # 5.1.0 - 06/11/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1426
- - **BREAKING:** Changed module to `@spothero/ui`. Not a major bump because nobody was using the prior version yet so unnecessary.
1427
-
1428
- # 5.0.0 - 06/08/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1429
- - **BREAKING:** Added `@spothero` scope and renamed module to `@spothero/fe-ui`.
1430
-
1431
- # 4.2.23 - 05/31/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1432
- - Added `adjustArrow` and `closeOnBodyClick` to `Tooltip`.
1433
-
1434
- # 4.2.22 - 05/30/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1435
- - Corrected Sass error from build 4.2.21.
1436
-
1437
- # 4.2.21 - 05/30/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1438
- - **DO NOT INSTALL** Fixed error colors on `DateTimePicker` to properly set red color on all interior elements.
1439
-
1440
- # 4.2.20 - 05/29/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1441
- - Added `placeholder` to `Select` and `TimePicker`.
1442
- - Added `datePlaceholder` and `timePlaceholder` to `DateTimePicker`.
1443
- - Added `areAllFieldsEmpty` and `onInvalid` to `DateTimeRangePicker`.
1444
-
1445
- # 4.2.19 - 05/23/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1446
- - Added `onLoad` support to `Image` and `CloudinaryImage`.
1447
-
1448
- # 4.2.18 - 05/11/2018 - [Brett Kellgren](mailto:brett@spothero.com)
1449
- - Included `autoComplete: 'off'` within `AutoSuggestInput` `additionalInputProps` to disable native autocomplete in child `TextInput`.
1450
-
1451
- # 4.2.17 - 05/09/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1452
- - Fixed bug in `GooglePlacesSearchInput` where it would error if suggestions was null while typing in the field because there was nothing to map over.
1453
-
1454
- # 4.2.16 - 05/08/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1455
- - Changed `facebook-circle` and `twitter-circle` icons definitions to new style.
1456
- - Added `instagram-circle` and `youtube-circle` icon definitions.
1457
-
1458
- # 4.2.15 - 04/24/2018 - [Brett Kellgren](mailto:brett@spothero.com)
1459
- - Added `animateOnShow` prop to `Modal` (defaulted to true) which allows the disabling of animation on show.
1460
-
1461
- # 4.2.14 - 04/20/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1462
- - Added `containerClassName` to `Tooltip` which passes a class names to the containing 'Portal' component.
1463
-
1464
- # 4.2.13 - 04/20/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1465
- - Added `additionalProps` for `Label` to pass through any additional props to the internal label element.
1466
- - Fixed bug where a `Checkbox` label wasn't clickable to select the checkbox.
1467
- - Fixed bug where a `Radio` label wasn't clickable to select the radio.
1468
-
1469
- # 4.2.12 - 04/16/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1470
- - Fixed bug in `AutoSuggestInput` where clicking the clear button didn't actually clear the field's input value.
1471
-
1472
- # 4.2.11 - 04/16/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1473
- - Added `onChange` firing to `GooglePlacesSearchInput` to pass up to calling component.
1474
-
1475
- # 4.2.10 - 04/13/2018 - [Brett Kellgren](mailto:brett@spothero.com)
1476
- - Allow `DatePickerCalendar` usage to select currently selected date.
1477
-
1478
- # 4.2.9 - 04/12/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1479
- - Added `loading` prop to `TextInput`.
1480
-
1481
- # 4.2.8 - 04/11/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1482
- - Added removal of `.Modal-open` class to `Modal` when the component is unmounted so that in the event that its not hidden through code it won't retain the class on the `html` element.
1483
-
1484
- # 4.2.7 - 04/06/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1485
- - Fixed inability to use multiple modals loading over each other due to not selecting their own internal components for height calculations in `ModalContent`.
1486
-
1487
- # 4.2.6 - 03/27/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1488
- - Add `node` getters to `AutoSuggestInput` and `GooglePlacesSearchInput`.
1489
-
1490
- # 4.2.5 - 02/09/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1491
- - Fix the 4.2.4 release to actually work properly. :)
1492
-
1493
- # 4.2.4 - 02/09/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1494
- - Modify `title` property on `Modal` to support passing node instead of string only.
1495
-
1496
- # 4.2.3 - 02/06/2018 - [Zach Wagner](mailto:zach.wagner@spothero.com)
1497
- - Updated `GooglePlacesSearchInput`, `AutoSuggestInput`, and `TextInput` to be able to use the newly created `TextInputPropTypes`.
1498
-
1499
- # 4.2.2 - 02/05/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1500
- - Add a call to fire `onEndChange` in `DateTimeRangePicker` if the end time was updated because it was before the start time on change of start time.
1501
-
1502
- # 4.2.1 - 01/31/2018 - [Zach Wagner](mailto:zach.wagner@spothero.com)
1503
- - Update `TabNavigation` and `TabContent` to accept conditionally rendered children and to handle when the condition is falsy.
1504
-
1505
- # 4.2.0 - 01/30/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1506
- - Added `Sprite` component.
1507
-
1508
- # 4.1.1 - 01/24/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1509
- - Added `submit` convenience method to `Form`.
1510
-
1511
- # 4.1.0 - 01/23/2018 - [Zach Wagner](mailto:zach.wagner@spothero.com)
1512
- - Added `RangeSlider` component.
1513
-
1514
- # 4.0.5 - 01/22/2018 - [Zach Wagner](mailto:zach.wagner@spothero.com)
1515
- - Added `iconName` prop to `Checkbox` component so icons other than `check` can be used.
1516
-
1517
- # 4.0.4 - 01/18/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1518
- - Made `onSubmit` prop not required in `Form` for cases where we want a form but only have the ability to submit it programmatically through the `submit` method.
1519
-
1520
- # 4.0.3 - 01/18/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1521
- - Removed `Form` from `PasswordControl` to eliminate bug with `form` element nesting. Made `submit` method give back value or null based on what's currently in the input.
1522
-
1523
- # 4.0.2 - 01/18/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1524
- - Added ability to pass through additional props in `TextButton` as `...attrs`.
1525
-
1526
- # 4.0.1 - 01/18/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1527
- - Bump `react-tether` version to support React 16.2.0.
1528
-
1529
- # 4.0.0 - 01/16/2018 - [Zach Wagner](mailto:zach.wagner@spothero.com)
1530
- - **BREAKING:** Changed `HorizontalRule` component's `style` prop to be `lineStyle`.
1531
- - Added `Alert`, `AutoSuggestInput`, `GooglePlacesSearchInput`, `PasswordControl`, and `PoweredByGoogle` components.
1532
- - Update `Tooltip` component to use `Portal` instead of `RenderInBody` and added a `hide` method.
1533
- - Added `isValid` and `node` getter to `Form`.
1534
- - Added `share` icon.
1535
- - Update icon name references.
1536
-
1537
- # 3.0.0 - 01/02/2018 - [Matt Przybylski](mailto:mattp@spothero.com)
1538
- - **BREAKING:** Changed icon names to better align with what they actually represent. `Old name on the left` -> `New name on the right`.
1539
- - `arrow-down` -> `chevron-down`
1540
- - `arrow-down-bold` -> `chevron-down-bold`
1541
- - `arrow-left` -> `chevron-left`
1542
- - `arrow-left-bold` -> `chevron-left-bold`
1543
- - `arrow-right` -> `chevron-right`
1544
- - `arrow-right-bold` -> `chevron-right-bold`
1545
- - `arrow-up` -> `chevron-up`
1546
- - `arrow-up-bold` -> `chevron-up-bold`
1547
- - `cancel` -> `times`
1548
- - The following icons have been updated to new versions (visually only).
1549
- - `instagram`
1550
- - Added new icon definitions from old consumer icons that should be shared between projects.
1551
-
1552
- # 2.3.0 - 12/18/2017 - [Zach Wagner](mailto:zach.wagner@spothero.com)
1553
- - Added `Carousel`, `CarouselPage`, `CarouselPaginator`, `CarouselSlide`, and `CarouselSlides` components.
1554
- - Added `Portal` component to make use of React 16's portal functionality.
1555
-
1556
- # 2.2.2 - 10/31/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1557
- - Changed dependencies to install ranges instead of specific version.
1558
-
1559
- # 2.2.1 - 10/31/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1560
- - Update all npm dependencies to latest versions.
1561
-
1562
- # 2.2.0 - 10/19/2017 - [Zach Wagner](mailto:zach.wagner@spothero.com)
1563
- - Bump React dependencies to 16.0.0.
1564
- - Added `ErrorBoundary` component for React 16's `componentDidCatch` lifecycle method.
1565
-
1566
- # 2.1.4 - 10/03/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1567
- - Changed `Modal` to add the `.Modal-open` class to the `html` tag instead of the `body` tag.
1568
- - When a `Select` is disabled, changed the color of the down arrow to look disabled as well.
1569
-
1570
- # 2.1.3 - 10/02/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1571
- - Removed `box-shadow` on `FormElement-item` when the `:invalid` pseudo selector is active to get rid of red borders in Firefox on input boxes that have yet to be validated.
1572
-
1573
- # 2.1.2 - 09/22/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1574
- - Added `disabled` prop to `SelectItemPropTypes` to allow disabling of specific options in the dropdown.
1575
-
1576
- # 2.1.1 - 09/18/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1577
- - Added `loading` prop to `Select` component.
1578
-
1579
- # 2.1.0 - 09/13/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1580
- - Removed `showToggleOnOffText` prop from `Checkbox` to support updated UI from design team (no more text, smaller background area on toggle, different colors).
1581
-
1582
- # 2.0.5 - 09/01/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1583
- - Changed arrow positioning in `DatePickerCalendar` for the month selection to better display when longer month names are visible.
1584
-
1585
- # 2.0.4 - 08/07/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1586
- - Fix `SelectItemPropTypes` export to properly map to the given file.
1587
-
1588
- # 2.0.3 - 08/07/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1589
- - Added `action` being passed to the underlying `form` in `Form` so that inputs with different types register proper buttons on mobile (i.e. input of type search has a Search button).
1590
-
1591
- # 2.0.2 - 08/01/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1592
- - Added `Modal-open` class being added to the body when a `Modal` component is shown;
1593
-
1594
- # 2.0.1 - 07/27/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1595
- - Updated `Tab` height to be `16px` tall and changed the font size to `1.4rem`.
1596
-
1597
- # 2.0.0 - 07/26/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1598
- - **BREAKING:** Renamed `SelectItemsPropTypes` to `SelectItemPropTypes` and corrected the exports so that single-module importing would not error.
1599
-
1600
- # 1.1.0 - 07/26/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1601
- - Added ability to import modules separately rather than importing all of `spothero-ui`.
1602
-
1603
- # 1.0.1 - 07/07/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1604
- - Added proper styling to `TimePicker` when it contains an error and has the `FormElement-contains-error` class attached.
1605
-
1606
- # 1.0.0 - 07/06/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1607
- - **BREAKING:** Removed `DateTimeRangePicker` updating its internal state in `componentWillReceiveProps`. This was causing an issue with the timing of firing events/callbacks as well as modifying internal state incorrectly to report erroneous times. If you need to update the display of what's being selected in `DateTimeRangePicker` manually based on some outside source you'll have to keep a `key` in your state that re-renders `DateTimeRangePicker` whenever it changes according to your needs.
1608
-
1609
- # 0.3.11 - 07/06/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1610
- - Changed default dropdown arrow color to `shift` on the `Select` component.
1611
- - Added new `Badge` color (`info`) and made the internal font bold.
1612
-
1613
- # 0.3.10 - 06/20/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1614
- - Added `disabled` prop to `TimePicker`.
1615
- - Bump React dependencies to 15.6.1.
1616
-
1617
- # 0.3.9 - 06/20/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1618
- - Changed `SelectItemsPropTypes` to be a valid export as a prop type.
1619
-
1620
- # 0.3.8 - 06/19/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1621
- - Added `plus` to icon definitions.
1622
-
1623
- # 0.3.7 - 06/12/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1624
- - Added `SelectItemsPropTypes` to make create the `items` property of `Select` easier in a component that needs it passed down to multiple children.
1625
-
1626
- # 0.3.6 - 05/16/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1627
- - Added automatic removal of tooltips to `Chart` if `appendToBody` is set to true on the tooltip.
1628
-
1629
- # 0.3.5 - 05/09/2017 - [Zach Wagner](mailto:zach.wagner@spothero.com)
1630
- - Added ability to have html data attributes (`data-`) be passed into the button rendered in the `Button` component.
1631
-
1632
- # 0.3.4 - 05/09/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1633
- - Added a check for `this._trigger` being undefined in `Tooltip` to prevent Sentry errors.
1634
-
1635
- # 0.3.3 - 05/01/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1636
- - Added `TextArea` component.
1637
-
1638
- # 0.3.2 - 04/27/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1639
- - Bump `react-tether` version to support React 15.5.4.
1640
-
1641
- # 0.3.1 - 04/24/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1642
- - Fixed `ct-circle` in `Chart` not showing any stroke color if it wasn't part of a series.
1643
-
1644
- # 0.3.0 - 04/24/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1645
- - Upgrade React to 15.5.4 which includes removing `PropTypes` imports from React directly and importing instead from `prop-types` package.
1646
- - Updated all other packages to latest npm versions.
1647
-
1648
- # 0.2.26 - 04/24/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1649
- - Made `TableCellPropTypes` take `PropTypes.any` for greater flexibility.
1650
-
1651
- # 0.2.25 - 04/20/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1652
- - Removed erroneous `isRequired` on `Form`'s `invalidElementToScroll` prop.
1653
-
1654
- # 0.2.24 - 04/20/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1655
- - Added `invalidElementScrollOffset` prop to `Form` so that an offset can be accounted for on the `invalidElementToScroll`.
1656
-
1657
- # 0.2.23 - 04/20/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1658
- - Added `invalidElementToScroll` prop to `Form` so that the element that gets scrolled when the form is invalid can be controlled externally. It will still default to the document if none is provided.
1659
-
1660
- # 0.2.22 - 04/20/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1661
- - Removed erroneous `classes` prop on `TimePicker` `Select` component which was causing classes to be added to the container and the element.
1662
-
1663
- # 0.2.21 - 04/19/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1664
- - Allowed `TableCellPropTypes.value` to take objects as well.
1665
-
1666
- # 0.2.20 - 04/19/2017 - [Zach Wagner](mailto:zach.wagner@spothero.com)
1667
- - Added `ModalFooter` component.
1668
- - Added new property (`contentAreaHeight`) to `ModalContent` component to help facilitate creating custom scrollable modal content.
1669
- - Added the ability to pass a node or array of nodes as children to the `Modal` component.
1670
-
1671
- # 0.2.19 - 04/12/2017 - [Zach Wagner](mailto:zach.wagner@spothero.com)
1672
- - Added `TableControls` component to exportable as part of the package.
1673
-
1674
- # 0.2.18 - 03/30/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1675
- - Added `amenity-time-24-7` icon to `icon-defs.js`.
1676
-
1677
- # 0.2.17 - 03/20/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1678
- - Changed `Chart` Sass to pick colors from color map for points that are marked with the `ct-circle` class.
1679
-
1680
- # 0.2.16 - 03/20/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1681
- - Changed Chartist color map to better align with colors designers are using in proper order.
1682
-
1683
- # 0.2.15 - 03/16/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1684
- - Added CSS styling for a `DatePicker` with an error.
1685
-
1686
- # 0.2.14 - 03/16/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1687
- - Added `autoFocus` prop to `DatePicker` so you can focus the input field the same way you can on a `TextInput` upon mounting.
1688
-
1689
- # 0.2.13 - 03/16/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1690
- - Added `focus` prop to `DatePicker` so you can focus the input field the same way you can on a `TextInput` after a prop update.
1691
-
1692
- # 0.2.12 - 03/15/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1693
- - Fixed CSS styling for `Table` headings and pagination controls in IE.
1694
-
1695
- # 0.2.11 - 03/08/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1696
- - Added ability to only render the active `TabContent` in the `Tabs` component using `renderActiveOnly`.
1697
-
1698
- # 0.2.10 - 03/07/2017 - [Zach Wagner](mailto:zach.wagner@spothero.com)
1699
- - Add 'tertiary' color option to `Button` component.
1700
-
1701
- # 0.2.9 - 03/07/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1702
- - Changed display of Tables with no data to properly fill the full width container when on smaller viewports.
1703
-
1704
- # 0.2.8 - 03/06/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1705
- - Added the `Badge` component.
1706
- - Added the `pencil` icon to `icon-defs.js`.
1707
-
1708
- # 0.2.7 - 03/03/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1709
- - Fixed `NotificationContainer` to properly look for an empty queue before calling `onQueueEmpty`.
1710
-
1711
- # 0.2.6 - 03/03/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1712
- - Added `onQueueEmpty` to `NotificationContainer` so that you can clear your local notification queue/state when the internal queue is emptied.
1713
-
1714
- # 0.2.5 - 02/28/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1715
- - Added `HorizontalRule` component.
1716
-
1717
- # 0.2.4 - 02/28/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1718
- - Added `defaultChecked` support to `Radio`.
1719
-
1720
- # 0.2.3 - 02/24/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1721
- - Added `Image` and `CloudinaryImage` components.
1722
-
1723
- # 0.2.2 - 02/24/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1724
- - Added new global icons to `icon-defs.js`.
1725
- - Changed notifications to come up from the bottom of the screen with new styling.
1726
- - Properly styled the `FormGroupError` as per the UI kit.
1727
-
1728
- # 0.2.1 - 02/22/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1729
- - Added a `type` of `button` to `TextButton` when no `href` is provided.
1730
-
1731
- # 0.2.0 - 02/20/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1732
- - Added new property (`iconDefinitions`) to the `Icon` component to help facilitate creating custom icons for each specific project.
1733
- - Exporting `IconPropTypes` so they can be used in creating custom `Icon` component extensions.
1734
- - Added more common icons as well as social icons to `icon-defs.js`.
1735
- - Fixed `TableControls` using old `secondary-alternate` button style.
1736
- - Added ability to pass a node rather to Table's `noDataAvailableMessage` prop.
1737
- - Refactored `Radio` and `RadioGroup` to include validation logic and not use `initialItems` in favor of using actual `Radio` components as children.
1738
- - Added the ability to pass a node as the message in a notification.
1739
- - Added the `FormGroup` and `FormGroupError` components.
1740
-
1741
- # 0.1.7 - 02/14/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1742
- - Added old amenity icons to current icon set for use in operator/consumer projects.
1743
- - Added `marker` and bold arrow icons and updated `filter` icon to new rounded design.
1744
- - Removed `secondary-alternate` button style in favor of new `secondary` style that fits all backgrounds.
1745
-
1746
- # 0.1.6 - 02/13/2017 - [Zach Wagner](mailto:zach.wagner@spothero.com)
1747
- - Added the ability to create a `Radio` or `RadioGroup` component.
1748
-
1749
- # 0.1.5 - 02/10/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1750
- - Added the ability to create a `customRowRender` function in Table's `data` array to customize row rendering.
1751
-
1752
- # 0.1.4 - 02/10/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1753
- - Adjusted tables to break down properly below large breakpoints instead of extra large.
1754
-
1755
- # 0.1.3 - 02/10/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1756
- - Changed `Button` and `TextButton` icon spacing so it doesn't alter the height of the buttons incorrectly.
1757
- - Added proper styling for `loading` prop in `TextButton`.
1758
-
1759
- # 0.1.2 - 02/10/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1760
- - Changed disabled color of form elements to have opacity of 1 since mobile Safari sets it to 0.4 instead.
1761
- - Changed padding of notifications on mobile and tablet so that the copy takes up more space on edges.
1762
-
1763
- # 0.1.1 - 02/09/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1764
- - Reversioning to break Nexus cache for small updates to initial release.
1765
-
1766
- # 0.1.0 - 01/26/2017 - [Matt Przybylski](mailto:mattp@spothero.com)
1767
- - Initial release.