@atlaskit/status 0.11.3

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 (175) hide show
  1. package/CHANGELOG.md +577 -0
  2. package/LICENSE +13 -0
  3. package/build/tsconfig.json +17 -0
  4. package/dist/cjs/components/Status.js +150 -0
  5. package/dist/cjs/components/StatusPicker.js +121 -0
  6. package/dist/cjs/components/analytics.js +40 -0
  7. package/dist/cjs/components/constants.js +8 -0
  8. package/dist/cjs/components/i18n.js +42 -0
  9. package/dist/cjs/components/internal/color-palette.js +67 -0
  10. package/dist/cjs/components/internal/color.js +139 -0
  11. package/dist/cjs/element.js +13 -0
  12. package/dist/cjs/i18n/cs.js +23 -0
  13. package/dist/cjs/i18n/da.js +23 -0
  14. package/dist/cjs/i18n/de.js +23 -0
  15. package/dist/cjs/i18n/en.js +16 -0
  16. package/dist/cjs/i18n/en_GB.js +16 -0
  17. package/dist/cjs/i18n/es.js +23 -0
  18. package/dist/cjs/i18n/et.js +23 -0
  19. package/dist/cjs/i18n/fi.js +23 -0
  20. package/dist/cjs/i18n/fr.js +23 -0
  21. package/dist/cjs/i18n/hu.js +23 -0
  22. package/dist/cjs/i18n/index.js +239 -0
  23. package/dist/cjs/i18n/is.js +16 -0
  24. package/dist/cjs/i18n/it.js +23 -0
  25. package/dist/cjs/i18n/ja.js +23 -0
  26. package/dist/cjs/i18n/ko.js +23 -0
  27. package/dist/cjs/i18n/languages.js +33 -0
  28. package/dist/cjs/i18n/nb.js +23 -0
  29. package/dist/cjs/i18n/nl.js +23 -0
  30. package/dist/cjs/i18n/pl.js +23 -0
  31. package/dist/cjs/i18n/pt_BR.js +23 -0
  32. package/dist/cjs/i18n/pt_PT.js +23 -0
  33. package/dist/cjs/i18n/ro.js +16 -0
  34. package/dist/cjs/i18n/ru.js +23 -0
  35. package/dist/cjs/i18n/sk.js +23 -0
  36. package/dist/cjs/i18n/sv.js +23 -0
  37. package/dist/cjs/i18n/th.js +23 -0
  38. package/dist/cjs/i18n/tr.js +23 -0
  39. package/dist/cjs/i18n/uk.js +23 -0
  40. package/dist/cjs/i18n/vi.js +23 -0
  41. package/dist/cjs/i18n/zh.js +23 -0
  42. package/dist/cjs/i18n/zh_TW.js +23 -0
  43. package/dist/cjs/index.js +21 -0
  44. package/dist/cjs/picker.js +13 -0
  45. package/dist/cjs/version.json +4 -0
  46. package/dist/es2019/components/Status.js +106 -0
  47. package/dist/es2019/components/StatusPicker.js +71 -0
  48. package/dist/es2019/components/analytics.js +18 -0
  49. package/dist/es2019/components/constants.js +1 -0
  50. package/dist/es2019/components/i18n.js +33 -0
  51. package/dist/es2019/components/internal/color-palette.js +33 -0
  52. package/dist/es2019/components/internal/color.js +102 -0
  53. package/dist/es2019/element.js +1 -0
  54. package/dist/es2019/i18n/cs.js +15 -0
  55. package/dist/es2019/i18n/da.js +15 -0
  56. package/dist/es2019/i18n/de.js +15 -0
  57. package/dist/es2019/i18n/en.js +9 -0
  58. package/dist/es2019/i18n/en_GB.js +9 -0
  59. package/dist/es2019/i18n/es.js +15 -0
  60. package/dist/es2019/i18n/et.js +15 -0
  61. package/dist/es2019/i18n/fi.js +15 -0
  62. package/dist/es2019/i18n/fr.js +15 -0
  63. package/dist/es2019/i18n/hu.js +15 -0
  64. package/dist/es2019/i18n/index.js +35 -0
  65. package/dist/es2019/i18n/is.js +9 -0
  66. package/dist/es2019/i18n/it.js +15 -0
  67. package/dist/es2019/i18n/ja.js +15 -0
  68. package/dist/es2019/i18n/ko.js +15 -0
  69. package/dist/es2019/i18n/languages.js +26 -0
  70. package/dist/es2019/i18n/nb.js +15 -0
  71. package/dist/es2019/i18n/nl.js +15 -0
  72. package/dist/es2019/i18n/pl.js +15 -0
  73. package/dist/es2019/i18n/pt_BR.js +15 -0
  74. package/dist/es2019/i18n/pt_PT.js +15 -0
  75. package/dist/es2019/i18n/ro.js +9 -0
  76. package/dist/es2019/i18n/ru.js +15 -0
  77. package/dist/es2019/i18n/sk.js +15 -0
  78. package/dist/es2019/i18n/sv.js +15 -0
  79. package/dist/es2019/i18n/th.js +15 -0
  80. package/dist/es2019/i18n/tr.js +15 -0
  81. package/dist/es2019/i18n/uk.js +15 -0
  82. package/dist/es2019/i18n/vi.js +15 -0
  83. package/dist/es2019/i18n/zh.js +15 -0
  84. package/dist/es2019/i18n/zh_TW.js +15 -0
  85. package/dist/es2019/index.js +2 -0
  86. package/dist/es2019/picker.js +1 -0
  87. package/dist/es2019/version.json +4 -0
  88. package/dist/esm/components/Status.js +130 -0
  89. package/dist/esm/components/StatusPicker.js +100 -0
  90. package/dist/esm/components/analytics.js +26 -0
  91. package/dist/esm/components/constants.js +1 -0
  92. package/dist/esm/components/i18n.js +33 -0
  93. package/dist/esm/components/internal/color-palette.js +42 -0
  94. package/dist/esm/components/internal/color.js +117 -0
  95. package/dist/esm/element.js +1 -0
  96. package/dist/esm/i18n/cs.js +15 -0
  97. package/dist/esm/i18n/da.js +15 -0
  98. package/dist/esm/i18n/de.js +15 -0
  99. package/dist/esm/i18n/en.js +9 -0
  100. package/dist/esm/i18n/en_GB.js +9 -0
  101. package/dist/esm/i18n/es.js +15 -0
  102. package/dist/esm/i18n/et.js +15 -0
  103. package/dist/esm/i18n/fi.js +15 -0
  104. package/dist/esm/i18n/fr.js +15 -0
  105. package/dist/esm/i18n/hu.js +15 -0
  106. package/dist/esm/i18n/index.js +35 -0
  107. package/dist/esm/i18n/is.js +9 -0
  108. package/dist/esm/i18n/it.js +15 -0
  109. package/dist/esm/i18n/ja.js +15 -0
  110. package/dist/esm/i18n/ko.js +15 -0
  111. package/dist/esm/i18n/languages.js +26 -0
  112. package/dist/esm/i18n/nb.js +15 -0
  113. package/dist/esm/i18n/nl.js +15 -0
  114. package/dist/esm/i18n/pl.js +15 -0
  115. package/dist/esm/i18n/pt_BR.js +15 -0
  116. package/dist/esm/i18n/pt_PT.js +15 -0
  117. package/dist/esm/i18n/ro.js +9 -0
  118. package/dist/esm/i18n/ru.js +15 -0
  119. package/dist/esm/i18n/sk.js +15 -0
  120. package/dist/esm/i18n/sv.js +15 -0
  121. package/dist/esm/i18n/th.js +15 -0
  122. package/dist/esm/i18n/tr.js +15 -0
  123. package/dist/esm/i18n/uk.js +15 -0
  124. package/dist/esm/i18n/vi.js +15 -0
  125. package/dist/esm/i18n/zh.js +15 -0
  126. package/dist/esm/i18n/zh_TW.js +15 -0
  127. package/dist/esm/index.js +2 -0
  128. package/dist/esm/picker.js +1 -0
  129. package/dist/esm/version.json +4 -0
  130. package/dist/types/components/Status.d.ts +14 -0
  131. package/dist/types/components/StatusPicker.d.ts +23 -0
  132. package/dist/types/components/analytics.d.ts +11 -0
  133. package/dist/types/components/constants.d.ts +1 -0
  134. package/dist/types/components/i18n.d.ts +2 -0
  135. package/dist/types/components/internal/color-palette.d.ts +10 -0
  136. package/dist/types/components/internal/color.d.ts +21 -0
  137. package/dist/types/element.d.ts +2 -0
  138. package/dist/types/i18n/cs.d.ts +15 -0
  139. package/dist/types/i18n/da.d.ts +15 -0
  140. package/dist/types/i18n/de.d.ts +15 -0
  141. package/dist/types/i18n/en.d.ts +9 -0
  142. package/dist/types/i18n/en_GB.d.ts +9 -0
  143. package/dist/types/i18n/es.d.ts +15 -0
  144. package/dist/types/i18n/et.d.ts +15 -0
  145. package/dist/types/i18n/fi.d.ts +15 -0
  146. package/dist/types/i18n/fr.d.ts +15 -0
  147. package/dist/types/i18n/hu.d.ts +15 -0
  148. package/dist/types/i18n/index.d.ts +35 -0
  149. package/dist/types/i18n/is.d.ts +9 -0
  150. package/dist/types/i18n/it.d.ts +15 -0
  151. package/dist/types/i18n/ja.d.ts +15 -0
  152. package/dist/types/i18n/ko.d.ts +15 -0
  153. package/dist/types/i18n/languages.d.ts +27 -0
  154. package/dist/types/i18n/nb.d.ts +15 -0
  155. package/dist/types/i18n/nl.d.ts +15 -0
  156. package/dist/types/i18n/pl.d.ts +15 -0
  157. package/dist/types/i18n/pt_BR.d.ts +15 -0
  158. package/dist/types/i18n/pt_PT.d.ts +15 -0
  159. package/dist/types/i18n/ro.d.ts +9 -0
  160. package/dist/types/i18n/ru.d.ts +15 -0
  161. package/dist/types/i18n/sk.d.ts +15 -0
  162. package/dist/types/i18n/sv.d.ts +15 -0
  163. package/dist/types/i18n/th.d.ts +15 -0
  164. package/dist/types/i18n/tr.d.ts +15 -0
  165. package/dist/types/i18n/uk.d.ts +15 -0
  166. package/dist/types/i18n/vi.d.ts +15 -0
  167. package/dist/types/i18n/zh.d.ts +15 -0
  168. package/dist/types/i18n/zh_TW.d.ts +15 -0
  169. package/dist/types/index.d.ts +4 -0
  170. package/dist/types/picker.d.ts +2 -0
  171. package/docs/0-intro.tsx +53 -0
  172. package/element/package.json +7 -0
  173. package/package.json +59 -0
  174. package/picker/package.json +7 -0
  175. package/tsconfig.json +14 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,577 @@
1
+ # @atlaskit/status
2
+
3
+ ## 0.11.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 0.11.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [`3dd496d620b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3dd496d620b) - Remove unneeded css prop from status component.
14
+ - Updated dependencies
15
+
16
+ ## 0.11.1
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+
22
+ ## 0.11.0
23
+
24
+ ### Minor Changes
25
+
26
+ - [`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux] Updated and added new translations
27
+
28
+ ## 0.10.7
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies
33
+
34
+ ## 0.10.6
35
+
36
+ ### Patch Changes
37
+
38
+ - [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
39
+
40
+ ## 0.10.5
41
+
42
+ ### Patch Changes
43
+
44
+ - [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
45
+ This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
46
+ Also add `typescript` to `devDependencies` to denote version that the package was built with.
47
+
48
+ ## 0.10.4
49
+
50
+ ### Patch Changes
51
+
52
+ - [`de40912b0a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de40912b0a) - Fix types not resolving correctly due to an incorrect types path in package.json
53
+
54
+ ## 0.10.3
55
+
56
+ ### Patch Changes
57
+
58
+ - Updated dependencies
59
+
60
+ ## 0.10.2
61
+
62
+ ### Patch Changes
63
+
64
+ - [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
65
+
66
+ Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
67
+ to prevent duplicates of tslib being bundled.
68
+
69
+ ## 0.10.1
70
+
71
+ ### Patch Changes
72
+
73
+ - [`d03bff2147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d03bff2147) - updated translations
74
+
75
+ ## 0.10.0
76
+
77
+ ### Minor Changes
78
+
79
+ - [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
80
+ For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
81
+
82
+ ### Patch Changes
83
+
84
+ - Updated dependencies
85
+
86
+ ## 0.9.25
87
+
88
+ ### Patch Changes
89
+
90
+ - [`fc83c36503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc83c36503) - Update translation files via Traduki build
91
+
92
+ ## 0.9.24
93
+
94
+ ### Patch Changes
95
+
96
+ - [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove unused dependencies
97
+
98
+ ## 0.9.23
99
+
100
+ ### Patch Changes
101
+
102
+ - Updated dependencies [4bec09aa74](https://bitbucket.org/atlassian/atlassian-frontend/commits/4bec09aa74):
103
+ - Updated dependencies [d63888b5e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/d63888b5e5):
104
+ - Updated dependencies [8c9e4f1ec6](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c9e4f1ec6):
105
+ - Updated dependencies [bdf25b1c4c](https://bitbucket.org/atlassian/atlassian-frontend/commits/bdf25b1c4c):
106
+ - Updated dependencies [645918eda6](https://bitbucket.org/atlassian/atlassian-frontend/commits/645918eda6):
107
+ - Updated dependencies [fad8a16962](https://bitbucket.org/atlassian/atlassian-frontend/commits/fad8a16962):
108
+ - @atlaskit/editor-test-helpers@11.0.0
109
+ - @atlaskit/docs@8.5.0
110
+
111
+ ## 0.9.22
112
+
113
+ ### Patch Changes
114
+
115
+ - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
116
+
117
+ Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
118
+
119
+ - @atlaskit/docs@8.3.2
120
+ - @atlaskit/visual-regression@0.1.9
121
+ - @atlaskit/analytics-next@6.3.5
122
+ - @atlaskit/icon@20.0.1
123
+ - @atlaskit/lozenge@9.1.4
124
+ - @atlaskit/textfield@3.1.6
125
+ - @atlaskit/theme@9.5.1
126
+ - @atlaskit/editor-test-helpers@10.5.1
127
+ - @atlaskit/analytics-gas-types@4.0.13
128
+ - @atlaskit/elements-test-helpers@0.6.7
129
+
130
+ ## 0.9.21
131
+
132
+ ### Patch Changes
133
+
134
+ - Updated dependencies [3b19e30129](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b19e30129):
135
+ - Updated dependencies [fe4eaf06fc](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe4eaf06fc):
136
+ - Updated dependencies [c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
137
+ - @atlaskit/editor-test-helpers@10.5.0
138
+ - @atlaskit/icon@20.0.0
139
+ - @atlaskit/docs@8.3.1
140
+ - @atlaskit/textfield@3.1.5
141
+
142
+ ## 0.9.20
143
+
144
+ ### Patch Changes
145
+
146
+ - [patch][45cb48558f](https://bitbucket.org/atlassian/atlassian-frontend/commits/45cb48558f):
147
+
148
+ ED-8246 Fix focus outline on status buttons when tab is used to navigate- Updated dependencies [edc4a4a7ae](https://bitbucket.org/atlassian/atlassian-frontend/commits/edc4a4a7ae):
149
+
150
+ - @atlaskit/editor-test-helpers@10.4.1
151
+
152
+ ## 0.9.19
153
+
154
+ ### Patch Changes
155
+
156
+ - [patch][e0daa78402](https://bitbucket.org/atlassian/atlassian-frontend/commits/e0daa78402):
157
+
158
+ ED-7928: Pressing enter on tab focus colour sets status- Updated dependencies [28f8f0e089](https://bitbucket.org/atlassian/atlassian-frontend/commits/28f8f0e089):
159
+
160
+ - Updated dependencies [82747f2922](https://bitbucket.org/atlassian/atlassian-frontend/commits/82747f2922):
161
+ - Updated dependencies [46e6693eb3](https://bitbucket.org/atlassian/atlassian-frontend/commits/46e6693eb3):
162
+ - Updated dependencies [83300f0b6d](https://bitbucket.org/atlassian/atlassian-frontend/commits/83300f0b6d):
163
+ - Updated dependencies [e5dd37f7a4](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5dd37f7a4):
164
+ - Updated dependencies [4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
165
+ - @atlaskit/icon@19.1.0
166
+ - @atlaskit/theme@9.5.0
167
+ - @atlaskit/editor-test-helpers@10.4.0
168
+ - @atlaskit/lozenge@9.1.3
169
+
170
+ ## 0.9.18
171
+
172
+ ### Patch Changes
173
+
174
+ - [patch][24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
175
+
176
+ ED-8143: Add browser native tooltip to a status node
177
+
178
+ Now it's possible to read status text when it's truncated because of either being too long or being placed in a small container.- Updated dependencies [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
179
+
180
+ - Updated dependencies [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
181
+ - Updated dependencies [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
182
+ - Updated dependencies [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
183
+ - @atlaskit/analytics-next@6.3.3
184
+ - @atlaskit/textfield@3.1.4
185
+
186
+ ## 0.9.17
187
+
188
+ ### Patch Changes
189
+
190
+ - [patch][bcd4884c64](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bcd4884c64):
191
+
192
+ ED-7654 Replace deprecated @atlaskit/field-text for @atlaskit/text-field
193
+
194
+ ## 0.9.16
195
+
196
+ - Updated dependencies [ae4f336a3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae4f336a3a):
197
+ - @atlaskit/i18n-tools@0.6.0
198
+ - @atlaskit/editor-test-helpers@10.1.2
199
+
200
+ ## 0.9.15
201
+
202
+ ### Patch Changes
203
+
204
+ - [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
205
+
206
+ Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
207
+
208
+ ## 0.9.14
209
+
210
+ ### Patch Changes
211
+
212
+ - [patch][a2d0043716](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d0043716):
213
+
214
+ Updated version of analytics-next to fix potential incompatibilities with TS 3.6
215
+
216
+ ## 0.9.13
217
+
218
+ - Updated dependencies [80adfefba2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80adfefba2):
219
+ - @atlaskit/editor-test-helpers@10.0.0
220
+
221
+ ## 0.9.12
222
+
223
+ ### Patch Changes
224
+
225
+ - [patch][c8bb1c7896](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c8bb1c7896):
226
+
227
+ Fix some packages having a 'modules' field in package.json rather than 'module'
228
+
229
+ ## 0.9.11
230
+
231
+ ### Patch Changes
232
+
233
+ - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
234
+
235
+ Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving non-relative imports as relative imports
236
+
237
+ ## 0.9.10
238
+
239
+ ### Patch Changes
240
+
241
+ - [patch][ecca4d1dbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4d1dbb):
242
+
243
+ Upgraded Typescript to 3.3.x
244
+
245
+ ## 0.9.9
246
+
247
+ ### Patch Changes
248
+
249
+ - [patch][926b43142b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926b43142b):
250
+
251
+ Analytics-next has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided. No behavioural changes.
252
+
253
+ **Breaking changes**
254
+
255
+ - `withAnalyticsForSumTypeProps` alias has been removed, please use `withAnalyticsEvents`
256
+ - `AnalyticsContextWrappedComp` alias has been removed, please use `withAnalyticsContext`
257
+
258
+ **Breaking changes to TypeScript annotations**
259
+
260
+ - `withAnalyticsEvents` now infers proptypes automatically, consumers no longer need to provide props as a generic type.
261
+ - `withAnalyticsContext` now infers proptypes automatically, consumers no longer need to provide props as a generic type.
262
+ - Type `WithAnalyticsEventProps` has been renamed to `WithAnalyticsEventsProps` to match source code
263
+ - Type `CreateUIAnalyticsEventSignature` has been renamed to `CreateUIAnalyticsEvent` to match source code
264
+ - Type `UIAnalyticsEventHandlerSignature` has been renamed to `UIAnalyticsEventHandler` to match source code
265
+ - Type `AnalyticsEventsPayload` has been renamed to `AnalyticsEventPayload`
266
+ - Type `ObjectType` has been removed, please use `Record<string, any>` or `[key: string]: any`
267
+ - Type `UIAnalyticsEventInterface` has been removed, please use `UIAnalyticsEvent`
268
+ - Type `AnalyticsEventInterface` has been removed, please use `AnalyticsEvent`
269
+ - Type `CreateAndFireEventFunction` removed and should now be inferred by TypeScript
270
+ - Type `AnalyticsEventUpdater` removed and should now be inferred by TypeScript
271
+
272
+ ## 0.9.8
273
+
274
+ ### Patch Changes
275
+
276
+ - [patch][688f2957ca](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/688f2957ca):
277
+
278
+ Fixes various TypeScript errors which were previously failing silently
279
+
280
+ ## 0.9.7
281
+
282
+ ### Patch Changes
283
+
284
+ - [patch][9f8ab1084b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9f8ab1084b):
285
+
286
+ Consume analytics-next ts type definitions as an ambient declaration.
287
+
288
+ ## 0.9.6
289
+
290
+ ### Patch Changes
291
+
292
+ - [patch][bbff8a7d87](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bbff8a7d87):
293
+
294
+ Fixes bug, missing version.json file
295
+
296
+ ## 0.9.5
297
+
298
+ ### Patch Changes
299
+
300
+ - [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
301
+
302
+ In this PR, we are:
303
+
304
+ - Re-introducing dist build folders
305
+ - Adding back cjs
306
+ - Replacing es5 by cjs and es2015 by esm
307
+ - Creating folders at the root for entry-points
308
+ - Removing the generation of the entry-points at the root
309
+ Please see this [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points) for further details
310
+
311
+ ## 0.9.4
312
+
313
+ ### Patch Changes
314
+
315
+ - [patch][d0db01b410](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d0db01b410):
316
+
317
+ TypeScript users of withAnalyticsEvents and withAnalyticsContext are now required to provide props as a generic type. This is so that TypeScript can correctly calculate the props and defaultProps of the returned component.
318
+
319
+ Before:
320
+
321
+ ```typescript
322
+ withAnalyticsEvents()(Button) as ComponentClass<Props>;
323
+ ```
324
+
325
+ After:
326
+
327
+ ```typescript
328
+ withAnalyticsEvents<Props>()(Button);
329
+ ```
330
+
331
+ ## 0.9.3
332
+
333
+ - Updated dependencies [06326ef3f7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06326ef3f7):
334
+ - @atlaskit/docs@8.1.3
335
+ - @atlaskit/editor-test-helpers@9.5.2
336
+ - @atlaskit/icon@19.0.0
337
+
338
+ ## 0.9.2
339
+
340
+ - Updated dependencies [cfc3c8adb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cfc3c8adb3):
341
+ - @atlaskit/docs@8.1.2
342
+ - @atlaskit/editor-test-helpers@9.3.9
343
+ - @atlaskit/icon@18.0.0
344
+
345
+ ## 0.9.1
346
+
347
+ - Updated dependencies [ed41cac6ac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ed41cac6ac):
348
+ - @atlaskit/theme@9.0.3
349
+ - @atlaskit/lozenge@9.0.0
350
+
351
+ ## 0.9.0
352
+
353
+ - [minor][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
354
+
355
+ - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use this package, please ensure you use at least this version of react and react-dom.
356
+
357
+ ## 0.8.3
358
+
359
+ - Updated dependencies [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
360
+ - @atlaskit/docs@7.0.3
361
+ - @atlaskit/field-text@8.0.3
362
+ - @atlaskit/icon@16.0.9
363
+ - @atlaskit/lozenge@7.0.2
364
+ - @atlaskit/theme@8.1.7
365
+
366
+ ## 0.8.2
367
+
368
+ - [patch][3f28e6443c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3f28e6443c):
369
+
370
+ - @atlaskit/analytics-next-types is deprecated. Now you can use types for @atlaskit/analytics-next supplied from itself.
371
+
372
+ ## 0.8.1
373
+
374
+ - [patch][351e23aeb5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/351e23aeb5):
375
+
376
+ - ED-6102: fixed inline node deletion on Android
377
+
378
+ ## 0.8.0
379
+
380
+ - [minor][97abf5e006](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/97abf5e006):
381
+
382
+ - Support entry points for Status and StatusPicker for selective imports
383
+
384
+ ## 0.7.2
385
+
386
+ - Updated dependencies [b0210d7ccc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0210d7ccc):
387
+ - @atlaskit/elements-test-helpers@0.5.0
388
+
389
+ ## 0.7.1
390
+
391
+ - [patch][1bcaa1b991](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1bcaa1b991):
392
+
393
+ - Add npmignore for index.ts to prevent some jest tests from resolving that instead of index.js
394
+
395
+ ## 0.7.0
396
+
397
+ - [minor][b684722884](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b684722884):
398
+
399
+ - improvement of SSR tests and examples for Fabric Elements
400
+
401
+ ## 0.6.0
402
+
403
+ - [minor][9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
404
+
405
+ - Dropped ES5 distributables from the typescript packages
406
+
407
+ ## 0.5.2
408
+
409
+ - Updated dependencies [7261577953](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7261577953):
410
+ - @atlaskit/elements-test-helpers@0.3.0
411
+
412
+ ## 0.5.1
413
+
414
+ - Updated dependencies [76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
415
+ - @atlaskit/icon@16.0.4
416
+ - @atlaskit/analytics-gas-types@3.2.5
417
+ - @atlaskit/docs@7.0.0
418
+ - @atlaskit/analytics-next@4.0.0
419
+ - @atlaskit/field-text@8.0.0
420
+ - @atlaskit/lozenge@7.0.0
421
+ - @atlaskit/theme@8.0.0
422
+
423
+ ## 0.5.0
424
+
425
+ - [minor][4072865c1c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4072865c1c):
426
+
427
+ - added SSR tests to task-decision
428
+
429
+ ## 0.4.0
430
+
431
+ - [minor][36bb743af0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36bb743af0):
432
+
433
+ - added/cleaned up ssr tests
434
+
435
+ ## 0.3.8
436
+
437
+ - [patch][e27ba4f443](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e27ba4f443):
438
+
439
+ - added SSR tests to status
440
+
441
+ ## 0.3.7
442
+
443
+ - [patch][0e4dedafc1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0e4dedafc1):
444
+
445
+ - Fix incorrect dependency listings
446
+
447
+ ## 0.3.6
448
+
449
+ - Updated dependencies [4af5bd2a58](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4af5bd2a58):
450
+ - @atlaskit/editor-test-helpers@7.0.0
451
+
452
+ ## 0.3.5
453
+
454
+ - [patch][1856738865](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1856738865):
455
+
456
+ - Update status picker example to be interactive
457
+
458
+ ## 0.3.4
459
+
460
+ - [patch][109cf449d6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/109cf449d6):
461
+
462
+ - enable noImplicitAny for status. fix related issues
463
+
464
+ ## 0.3.3
465
+
466
+ - [patch][9696b18dec](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9696b18dec):
467
+
468
+ - disabled automatic correction and spelling in the StatusPicker texfield (safari bug)
469
+
470
+ ## 0.3.2
471
+
472
+ - Updated dependencies [d7ef59d432](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7ef59d432):
473
+ - @atlaskit/docs@6.0.1
474
+ - @atlaskit/icon@16.0.0
475
+
476
+ ## 0.3.1
477
+
478
+ - [patch][7d9ccd7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7d9ccd7):
479
+
480
+ - fixed copy/paste status from renderer to editor
481
+
482
+ ## 0.3.0
483
+
484
+ - [minor][00c648e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/00c648e):
485
+
486
+ - fixed typo in i18n messages and code improvements
487
+
488
+ - [minor][a17bb0e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a17bb0e):
489
+
490
+ - added i18n translations
491
+
492
+ - [minor][99f08a0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/99f08a0):
493
+
494
+ - added i18n support to Fabric Status
495
+
496
+ ## 0.2.11
497
+
498
+ - [patch][d3f3e19](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d3f3e19):
499
+
500
+ - restored StatusContainer to editor-core, avoid re-rendering on event handlers, removed unused props in the renderer
501
+
502
+ - [patch][44cc61d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/44cc61d):
503
+
504
+ - added native status analytics
505
+
506
+ ## 0.2.10
507
+
508
+ - Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
509
+ - @atlaskit/field-text@7.0.18
510
+ - @atlaskit/icon@15.0.2
511
+ - @atlaskit/lozenge@6.2.4
512
+ - @atlaskit/theme@7.0.1
513
+ - @atlaskit/docs@6.0.0
514
+
515
+ ## 0.2.9
516
+
517
+ - [patch][48640fb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/48640fb):
518
+
519
+ - FS-3227 - Prevent status popup focus from scrolling editor
520
+
521
+ ## 0.2.8
522
+
523
+ - Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
524
+ - @atlaskit/docs@5.2.3
525
+ - @atlaskit/field-text@7.0.16
526
+ - @atlaskit/icon@15.0.1
527
+ - @atlaskit/theme@7.0.0
528
+ - @atlaskit/lozenge@6.2.3
529
+
530
+ ## 0.2.7
531
+
532
+ - [patch][3061b52](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3061b52):
533
+
534
+ - AK-5723 - adjust files in package.json to ensure correct publishing of dist/package.json
535
+
536
+ ## 0.2.6
537
+
538
+ - Updated dependencies [ab9b69c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ab9b69c):
539
+ - @atlaskit/docs@5.2.2
540
+ - @atlaskit/icon@15.0.0
541
+
542
+ ## 0.2.5
543
+
544
+ - [patch][d518ce0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d518ce0):
545
+
546
+ - FS-3118 - Only focus status input field on initial insertion. FS-3158 - Fix focus flicker in status input field.
547
+
548
+ ## 0.2.4
549
+
550
+ - [patch][36c362f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36c362f):
551
+
552
+ - FS-3174 - Fix usage of gridSize() and borderRadius()
553
+
554
+ ## 0.2.3
555
+
556
+ - [patch][527b954](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/527b954):
557
+
558
+ - FS-3174 - Remove usage of util-shared-styles from elements components
559
+
560
+ ## 0.2.2
561
+
562
+ - [patch] ED-5529 Fix JSON Schema [d286ab3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d286ab3)
563
+
564
+ ## 0.2.1
565
+
566
+ - [patch] Updated dependencies [65c6514](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65c6514)
567
+ - @atlaskit/docs@5.0.8
568
+ - @atlaskit/icon@14.0.0
569
+
570
+ ## 0.2.0
571
+
572
+ - [minor] FS-2963 When inserting a status, I can pick a colour from a predefined colour picker [a633d77](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a633d77)
573
+ - [minor] FS-2963 Change status color [547b3d9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/547b3d9)
574
+
575
+ ## 0.1.0
576
+
577
+ - [minor] FS-2961 Introduce status component and status node in editor [7fe2b0a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7fe2b0a)