@atlaskit/dynamic-table 14.17.0 → 14.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/CHANGELOG.md +995 -981
  2. package/README.md +2 -1
  3. package/dist/cjs/components/rankable/table-cell.js +3 -1
  4. package/dist/cjs/components/rankable/table-row.js +3 -1
  5. package/dist/cjs/components/stateless.js +1 -1
  6. package/dist/cjs/components/table-head-cell.js +3 -1
  7. package/dist/cjs/styled/constants.js +13 -2
  8. package/dist/cjs/styled/dynamic-table.js +19 -11
  9. package/dist/cjs/styled/empty-body.js +5 -3
  10. package/dist/cjs/styled/loading-container-advanced.js +7 -3
  11. package/dist/cjs/styled/loading-container.js +6 -0
  12. package/dist/cjs/styled/rankable/table-cell.js +4 -0
  13. package/dist/cjs/styled/rankable/table-row.js +4 -0
  14. package/dist/cjs/styled/table-cell.js +14 -1
  15. package/dist/cjs/styled/table-head.js +45 -7
  16. package/dist/cjs/styled/table-row.js +13 -4
  17. package/dist/cjs/types.js +3 -1
  18. package/dist/es2019/components/rankable/table-cell.js +3 -1
  19. package/dist/es2019/components/rankable/table-row.js +3 -1
  20. package/dist/es2019/components/stateless.js +1 -1
  21. package/dist/es2019/components/table-head-cell.js +3 -1
  22. package/dist/es2019/styled/constants.js +12 -2
  23. package/dist/es2019/styled/dynamic-table.js +24 -12
  24. package/dist/es2019/styled/empty-body.js +5 -4
  25. package/dist/es2019/styled/loading-container-advanced.js +8 -3
  26. package/dist/es2019/styled/loading-container.js +5 -0
  27. package/dist/es2019/styled/rankable/table-cell.js +4 -0
  28. package/dist/es2019/styled/rankable/table-row.js +5 -0
  29. package/dist/es2019/styled/table-cell.js +14 -1
  30. package/dist/es2019/styled/table-head.js +46 -7
  31. package/dist/es2019/styled/table-row.js +18 -4
  32. package/dist/es2019/types.js +1 -14
  33. package/dist/esm/components/rankable/table-cell.js +3 -1
  34. package/dist/esm/components/rankable/table-row.js +3 -1
  35. package/dist/esm/components/stateless.js +1 -1
  36. package/dist/esm/components/table-head-cell.js +3 -1
  37. package/dist/esm/styled/constants.js +12 -2
  38. package/dist/esm/styled/dynamic-table.js +20 -12
  39. package/dist/esm/styled/empty-body.js +5 -4
  40. package/dist/esm/styled/loading-container-advanced.js +8 -3
  41. package/dist/esm/styled/loading-container.js +5 -0
  42. package/dist/esm/styled/rankable/table-cell.js +4 -0
  43. package/dist/esm/styled/rankable/table-row.js +5 -0
  44. package/dist/esm/styled/table-cell.js +14 -1
  45. package/dist/esm/styled/table-head.js +46 -7
  46. package/dist/esm/styled/table-row.js +14 -4
  47. package/dist/esm/types.js +1 -14
  48. package/dist/types/components/body.d.ts +2 -2
  49. package/dist/types/components/error-boundary.d.ts +1 -1
  50. package/dist/types/components/managed-pagination.d.ts +1 -1
  51. package/dist/types/components/rankable/body.d.ts +3 -3
  52. package/dist/types/components/rankable/table-cell.d.ts +2 -2
  53. package/dist/types/components/rankable/table-head-cell.d.ts +2 -2
  54. package/dist/types/components/rankable/table-row.d.ts +2 -2
  55. package/dist/types/components/stateful.d.ts +2 -2
  56. package/dist/types/components/stateless.d.ts +2 -2
  57. package/dist/types/components/table-head-cell.d.ts +2 -2
  58. package/dist/types/components/table-head.d.ts +1 -1
  59. package/dist/types/components/table-row.d.ts +1 -1
  60. package/dist/types/hoc/with-dimensions.d.ts +1 -1
  61. package/dist/types/hoc/with-sorted-page-rows.d.ts +1 -1
  62. package/dist/types/internal/helpers.d.ts +1 -1
  63. package/dist/types/styled/constants.d.ts +1 -1
  64. package/dist/types/styled/dynamic-table.d.ts +4 -1
  65. package/dist/types/styled/empty-body.d.ts +4 -1
  66. package/dist/types/styled/loading-container-advanced.d.ts +4 -1
  67. package/dist/types/styled/loading-container.d.ts +4 -1
  68. package/dist/types/styled/rankable/table-cell.d.ts +5 -2
  69. package/dist/types/styled/rankable/table-row.d.ts +5 -2
  70. package/dist/types/styled/table-cell.d.ts +5 -2
  71. package/dist/types/styled/table-head.d.ts +6 -3
  72. package/dist/types/styled/table-row.d.ts +4 -1
  73. package/dist/types/types.d.ts +2 -2
  74. package/dist/types-ts4.5/components/body.d.ts +2 -2
  75. package/dist/types-ts4.5/components/error-boundary.d.ts +1 -1
  76. package/dist/types-ts4.5/components/managed-pagination.d.ts +1 -1
  77. package/dist/types-ts4.5/components/rankable/body.d.ts +3 -3
  78. package/dist/types-ts4.5/components/rankable/table-cell.d.ts +2 -2
  79. package/dist/types-ts4.5/components/rankable/table-head-cell.d.ts +2 -2
  80. package/dist/types-ts4.5/components/rankable/table-row.d.ts +2 -2
  81. package/dist/types-ts4.5/components/stateful.d.ts +2 -2
  82. package/dist/types-ts4.5/components/stateless.d.ts +2 -2
  83. package/dist/types-ts4.5/components/table-head-cell.d.ts +2 -2
  84. package/dist/types-ts4.5/components/table-head.d.ts +1 -1
  85. package/dist/types-ts4.5/components/table-row.d.ts +1 -1
  86. package/dist/types-ts4.5/hoc/with-dimensions.d.ts +1 -1
  87. package/dist/types-ts4.5/hoc/with-sorted-page-rows.d.ts +1 -1
  88. package/dist/types-ts4.5/internal/helpers.d.ts +1 -1
  89. package/dist/types-ts4.5/styled/constants.d.ts +1 -1
  90. package/dist/types-ts4.5/styled/dynamic-table.d.ts +4 -1
  91. package/dist/types-ts4.5/styled/empty-body.d.ts +4 -1
  92. package/dist/types-ts4.5/styled/loading-container-advanced.d.ts +4 -1
  93. package/dist/types-ts4.5/styled/loading-container.d.ts +4 -1
  94. package/dist/types-ts4.5/styled/rankable/table-cell.d.ts +5 -2
  95. package/dist/types-ts4.5/styled/rankable/table-row.d.ts +5 -2
  96. package/dist/types-ts4.5/styled/table-cell.d.ts +5 -2
  97. package/dist/types-ts4.5/styled/table-head.d.ts +6 -3
  98. package/dist/types-ts4.5/styled/table-row.d.ts +4 -1
  99. package/dist/types-ts4.5/types.d.ts +2 -2
  100. package/package.json +93 -89
  101. package/report.api.md +212 -214
package/CHANGELOG.md CHANGED
@@ -1,1909 +1,1923 @@
1
1
  # @atlaskit/dynamic-table
2
2
 
3
+ ## 14.18.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#111878](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/111878)
8
+ [`223959ef57c80`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/223959ef57c80) -
9
+ Explicitly set jsxRuntime to classic via pragma comments in order to avoid issues where jsxRuntime
10
+ is implicitly set to automatic.
11
+
12
+ ## 14.17.1
13
+
14
+ ### Patch Changes
15
+
16
+ - [#101939](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/101939)
17
+ [`07080a7364c9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/07080a7364c9) -
18
+ Update dimension and font size values to be in rem. Internal change to use typography tokens.
19
+
3
20
  ## 14.17.0
4
21
 
5
22
  ### Minor Changes
6
23
 
7
- - [#99378](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99378)
8
- [`7929beb24f4b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7929beb24f4b) -
9
- Add support for React 18.
24
+ - [#99378](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99378)
25
+ [`7929beb24f4b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7929beb24f4b) -
26
+ Add support for React 18 in non-strict mode.
10
27
 
11
28
  ## 14.16.3
12
29
 
13
30
  ### Patch Changes
14
31
 
15
- - [#91429](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91429)
16
- [`e66644a98985`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e66644a98985) -
17
- Updated TypeScript types for the `forwardedRef` prop in `withSortedPageRows` to improve
18
- compatibility with React 18
32
+ - [#91429](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91429)
33
+ [`e66644a98985`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e66644a98985) -
34
+ Updated TypeScript types for the `forwardedRef` prop in `withSortedPageRows` to improve
35
+ compatibility with React 18
19
36
 
20
37
  ## 14.16.2
21
38
 
22
39
  ### Patch Changes
23
40
 
24
- - [#83297](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83297)
25
- [`6b1707c169e0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6b1707c169e0) -
26
- The internal composition of this component has changed. There is no expected change in
27
- behaviour.
41
+ - [#83297](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83297)
42
+ [`6b1707c169e0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6b1707c169e0) -
43
+ The internal composition of this component has changed. There is no expected change in behaviour.
28
44
 
29
45
  ## 14.16.1
30
46
 
31
47
  ### Patch Changes
32
48
 
33
- - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
34
- [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
35
- Upgrade Typescript from `4.9.5` to `5.4.2`
49
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
50
+ [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
51
+ Upgrade Typescript from `4.9.5` to `5.4.2`
36
52
 
37
53
  ## 14.16.0
38
54
 
39
55
  ### Minor Changes
40
56
 
41
- - [#81825](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81825)
42
- [`6d27545ac997`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6d27545ac997) -
43
- Dynamic table now also respects test IDs when passed in at the row level.
57
+ - [#81825](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81825)
58
+ [`6d27545ac997`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6d27545ac997) -
59
+ Dynamic table now also respects test IDs when passed in at the row level.
44
60
 
45
61
  ## 14.15.0
46
62
 
47
63
  ### Minor Changes
48
64
 
49
- - [#81321](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81321)
50
- [`2579643f7ac8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2579643f7ac8) -
51
- Dynamic table now respects test IDs when passed in at the cell level. Note that there are no
52
- prefixes applied to this test ID. It is assumed that if you are providing a test ID at the cell
53
- level, you are wanting to target a single cell in an isolated context. If you're looking to gain
54
- insight to a particular cell in the context of its surrounding elements, it might be preferrable
55
- to supply a test ID to the root of the table and use the generated test IDs for querying
56
- instead.
65
+ - [#81321](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81321)
66
+ [`2579643f7ac8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2579643f7ac8) -
67
+ Dynamic table now respects test IDs when passed in at the cell level. Note that there are no
68
+ prefixes applied to this test ID. It is assumed that if you are providing a test ID at the cell
69
+ level, you are wanting to target a single cell in an isolated context. If you're looking to gain
70
+ insight to a particular cell in the context of its surrounding elements, it might be preferrable
71
+ to supply a test ID to the root of the table and use the generated test IDs for querying instead.
57
72
 
58
73
  ## 14.14.0
59
74
 
60
75
  ### Minor Changes
61
76
 
62
- - [#68812](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68812)
63
- [`91d4a48c1430`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/91d4a48c1430) -
64
- Support better loading state for assistive tech
77
+ - [#68812](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68812)
78
+ [`91d4a48c1430`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/91d4a48c1430) -
79
+ Support better loading state for assistive tech
65
80
 
66
81
  ### Patch Changes
67
82
 
68
- - Updated dependencies
83
+ - Updated dependencies
69
84
 
70
85
  ## 14.13.1
71
86
 
72
87
  ### Patch Changes
73
88
 
74
- - [#69022](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69022)
75
- [`395c74147990`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/395c74147990) -
76
- Migrate packages to use declarative entry points
89
+ - [#69022](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69022)
90
+ [`395c74147990`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/395c74147990) -
91
+ Migrate packages to use declarative entry points
77
92
 
78
93
  ## 14.13.0
79
94
 
80
95
  ### Minor Changes
81
96
 
82
- - [#66438](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66438)
83
- [`334df1af360b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/334df1af360b) -
84
- [ux] `react-beautiful-dnd` is now lazy loaded for rankable tables. It will no longer be loaded
85
- for non-rankable tables.
97
+ - [#66438](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66438)
98
+ [`334df1af360b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/334df1af360b) -
99
+ [ux] `react-beautiful-dnd` is now lazy loaded for rankable tables. It will no longer be loaded for
100
+ non-rankable tables.
86
101
 
87
- Tests relying on ranking being synchronously available may need to be modified.
102
+ Tests relying on ranking being synchronously available may need to be modified.
88
103
 
89
104
  ### Patch Changes
90
105
 
91
- - Updated dependencies
106
+ - Updated dependencies
92
107
 
93
108
  ## 14.12.1
94
109
 
95
110
  ### Patch Changes
96
111
 
97
- - [#66234](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66234)
98
- [`eca303e7af0a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eca303e7af0a) -
99
- Changed :focus selector with :focus-visible
112
+ - [#66234](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66234)
113
+ [`eca303e7af0a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eca303e7af0a) -
114
+ Changed :focus selector with :focus-visible
100
115
 
101
116
  ## 14.12.0
102
117
 
103
118
  ### Minor Changes
104
119
 
105
- - [#64300](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64300)
106
- [`9897d788b9ea`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9897d788b9ea) -
107
- Export prop types
120
+ - [#64300](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64300)
121
+ [`9897d788b9ea`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9897d788b9ea) -
122
+ Export prop types
108
123
 
109
124
  ## 14.11.11
110
125
 
111
126
  ### Patch Changes
112
127
 
113
- - [#58292](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58292)
114
- [`0dc821f0ecba`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0dc821f0ecba) -
115
- [ux] Use `td` over `th` when a table head cell has no content.
128
+ - [#58292](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58292)
129
+ [`0dc821f0ecba`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0dc821f0ecba) -
130
+ [ux] Use `td` over `th` when a table head cell has no content.
116
131
 
117
132
  ## 14.11.10
118
133
 
119
134
  ### Patch Changes
120
135
 
121
- - [#43686](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43686)
122
- [`da342e5ab42`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da342e5ab42) - Remove
123
- extraneous `span` from head cell.
124
- - [#43686](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43686)
125
- [`da342e5ab42`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da342e5ab42) - test
136
+ - [#43686](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43686)
137
+ [`da342e5ab42`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da342e5ab42) - Remove
138
+ extraneous `span` from head cell.
139
+ - [#43686](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43686)
140
+ [`da342e5ab42`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da342e5ab42) - test
126
141
 
127
142
  ## 14.11.9
128
143
 
129
144
  ### Patch Changes
130
145
 
131
- - Updated dependencies
146
+ - Updated dependencies
132
147
 
133
148
  ## 14.11.8
134
149
 
135
150
  ### Patch Changes
136
151
 
137
- - [#42646](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42646)
138
- [`97c42c39867`](https://bitbucket.org/atlassian/atlassian-frontend/commits/97c42c39867) - Fix
139
- screen reader announcements for table row
152
+ - [#42646](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42646)
153
+ [`97c42c39867`](https://bitbucket.org/atlassian/atlassian-frontend/commits/97c42c39867) - Fix
154
+ screen reader announcements for table row
140
155
 
141
156
  ## 14.11.7
142
157
 
143
158
  ### Patch Changes
144
159
 
145
- - [#40650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40650)
146
- [`07aa588c8a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/07aa588c8a4) -
147
- Reverts the fix to text descender cut-off, due to incompatibilities with Firefox and Safari.
160
+ - [#40650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40650)
161
+ [`07aa588c8a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/07aa588c8a4) - Reverts
162
+ the fix to text descender cut-off, due to incompatibilities with Firefox and Safari.
148
163
 
149
164
  ## 14.11.6
150
165
 
151
166
  ### Patch Changes
152
167
 
153
- - [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787)
154
- [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) -
155
- Internal changes to use space tokens. There is no expected visual or behaviour change.
168
+ - [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787)
169
+ [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal
170
+ changes to use space tokens. There is no expected visual or behaviour change.
156
171
 
157
172
  ## 14.11.5
158
173
 
159
174
  ### Patch Changes
160
175
 
161
- - [#38731](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38731)
162
- [`9af31f3c1ae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9af31f3c1ae) - Delete
163
- version.json
176
+ - [#38731](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38731)
177
+ [`9af31f3c1ae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9af31f3c1ae) - Delete
178
+ version.json
164
179
 
165
180
  ## 14.11.4
166
181
 
167
182
  ### Patch Changes
168
183
 
169
- - [#38209](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38209)
170
- [`56b444b56a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56b444b56a8) - Fix a
171
- bug where text descenders were cut off at high zoom levels on Windows
184
+ - [#38209](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38209)
185
+ [`56b444b56a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56b444b56a8) - Fix a
186
+ bug where text descenders were cut off at high zoom levels on Windows
172
187
 
173
188
  ## 14.11.3
174
189
 
175
190
  ### Patch Changes
176
191
 
177
- - [#38128](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38128)
178
- [`a486e54d1ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a486e54d1ef) -
179
- Improved performance of built-in table sorting for stateful dynamic tables
192
+ - [#38128](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38128)
193
+ [`a486e54d1ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a486e54d1ef) - Improved
194
+ performance of built-in table sorting for stateful dynamic tables
180
195
 
181
196
  ## 14.11.2
182
197
 
183
198
  ### Patch Changes
184
199
 
185
- - [#36754](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36754)
186
- [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use
187
- `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility
188
- testing.
200
+ - [#36754](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36754)
201
+ [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use
202
+ `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility
203
+ testing.
189
204
 
190
205
  ## 14.11.1
191
206
 
192
207
  ### Patch Changes
193
208
 
194
- - [#35441](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35441)
195
- [`599bfe90ee3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/599bfe90ee3) -
196
- Internal change to use shape tokens. There is no expected visual change.
209
+ - [#35441](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35441)
210
+ [`599bfe90ee3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/599bfe90ee3) - Internal
211
+ change to use shape tokens. There is no expected visual change.
197
212
 
198
213
  ## 14.11.0
199
214
 
200
215
  ### Minor Changes
201
216
 
202
- - [#34915](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34915)
203
- [`ec1f82f8027`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec1f82f8027) - Move
204
- away from findDOMNode API to refs
217
+ - [#34915](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34915)
218
+ [`ec1f82f8027`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec1f82f8027) - Move
219
+ away from findDOMNode API to refs
205
220
 
206
221
  ## 14.10.0
207
222
 
208
223
  ### Minor Changes
209
224
 
210
- - [#34947](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34947)
211
- [`12d9c63d4c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12d9c63d4c1) - [ux]
212
- pass pageLabel to dynamic-table component and updat prev label in examples, add description in
213
- the types file, update example files
225
+ - [#34947](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34947)
226
+ [`12d9c63d4c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12d9c63d4c1) - [ux]
227
+ pass pageLabel to dynamic-table component and updat prev label in examples, add description in the
228
+ types file, update example files
214
229
 
215
230
  ### Patch Changes
216
231
 
217
- - Updated dependencies
232
+ - Updated dependencies
218
233
 
219
234
  ## 14.9.3
220
235
 
221
236
  ### Patch Changes
222
237
 
223
- - [#34124](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34124)
224
- [`77766ad157d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/77766ad157d) - Enrol
225
- packages to push-model consumption in Jira.
238
+ - [#34124](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34124)
239
+ [`77766ad157d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/77766ad157d) - Enrol
240
+ packages to push-model consumption in Jira.
226
241
 
227
242
  ## 14.9.2
228
243
 
229
244
  ### Patch Changes
230
245
 
231
- - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
232
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
233
- legacy types are published for TS 4.5-4.8
246
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
247
+ [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
248
+ legacy types are published for TS 4.5-4.8
234
249
 
235
250
  ## 14.9.1
236
251
 
237
252
  ### Patch Changes
238
253
 
239
- - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
240
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) -
241
- Upgrade Typescript from `4.5.5` to `4.9.5`
254
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
255
+ [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
256
+ Typescript from `4.5.5` to `4.9.5`
242
257
 
243
258
  ## 14.9.0
244
259
 
245
260
  ### Minor Changes
246
261
 
247
- - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
248
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
249
- minor dependency bump
262
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
263
+ [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
264
+ minor dependency bump
250
265
 
251
266
  ### Patch Changes
252
267
 
253
- - Updated dependencies
268
+ - Updated dependencies
254
269
 
255
270
  ## 14.8.17
256
271
 
257
272
  ### Patch Changes
258
273
 
259
- - [#32202](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32202)
260
- [`cdb1910463d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cdb1910463d) - [ux]
261
- Adds buttons to sortable table head cells for better accessibility for keyboard and assistive
262
- technology users.
274
+ - [#32202](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32202)
275
+ [`cdb1910463d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cdb1910463d) - [ux]
276
+ Adds buttons to sortable table head cells for better accessibility for keyboard and assistive
277
+ technology users.
263
278
 
264
279
  ## 14.8.16
265
280
 
266
281
  ### Patch Changes
267
282
 
268
- - [#32211](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32211)
269
- [`4ba10567310`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ba10567310) -
270
- Internal changes.
283
+ - [#32211](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32211)
284
+ [`4ba10567310`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ba10567310) - Internal
285
+ changes.
271
286
 
272
287
  ## 14.8.15
273
288
 
274
289
  ### Patch Changes
275
290
 
276
- - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
277
- [`e2f0271eaf9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2f0271eaf9) - This
278
- changeset exists because a PR touches these packages in a way that doesn't require a release
291
+ - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
292
+ [`e2f0271eaf9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2f0271eaf9) - This
293
+ changeset exists because a PR touches these packages in a way that doesn't require a release
279
294
 
280
295
  ## 14.8.14
281
296
 
282
297
  ### Patch Changes
283
298
 
284
- - [#31299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31299)
285
- [`df9b2633fe4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/df9b2633fe4) - [ux]
286
- Adds `aria-sort` to sortable headers when being used to sort.
299
+ - [#31299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31299)
300
+ [`df9b2633fe4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/df9b2633fe4) - [ux]
301
+ Adds `aria-sort` to sortable headers when being used to sort.
287
302
 
288
303
  ## 14.8.13
289
304
 
290
305
  ### Patch Changes
291
306
 
292
- - [#31206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31206)
293
- [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) -
294
- Upgrades component types to support React 18.
295
- - Updated dependencies
307
+ - [#31206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31206)
308
+ [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades
309
+ component types to support React 18.
310
+ - Updated dependencies
296
311
 
297
312
  ## 14.8.12
298
313
 
299
314
  ### Patch Changes
300
315
 
301
- - Updated dependencies
316
+ - Updated dependencies
302
317
 
303
318
  ## 14.8.11
304
319
 
305
320
  ### Patch Changes
306
321
 
307
- - Updated dependencies
322
+ - Updated dependencies
308
323
 
309
324
  ## 14.8.10
310
325
 
311
326
  ### Patch Changes
312
327
 
313
- - [#29390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29390)
314
- [`18aeca8c199`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18aeca8c199) -
315
- Internal change to update token references. There is no expected behaviour or visual change.
328
+ - [#29390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29390)
329
+ [`18aeca8c199`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18aeca8c199) - Internal
330
+ change to update token references. There is no expected behaviour or visual change.
316
331
 
317
332
  ## 14.8.9
318
333
 
319
334
  ### Patch Changes
320
335
 
321
- - [#28064](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28064)
322
- [`b0f6dd0bc35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0f6dd0bc35) -
323
- Updated to use typography tokens. There is no expected behaviour or visual change.
336
+ - [#28064](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28064)
337
+ [`b0f6dd0bc35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0f6dd0bc35) - Updated
338
+ to use typography tokens. There is no expected behaviour or visual change.
324
339
 
325
340
  ## 14.8.8
326
341
 
327
342
  ### Patch Changes
328
343
 
329
- - [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090)
330
- [`f96f3ebd861`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f96f3ebd861) - [ux]
331
- Use color.background.neutral.subtle token to represent transparent background.
332
- - [`d0298c778ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0298c778ed) - Added
333
- additional testId props for testing purposes
344
+ - [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090)
345
+ [`f96f3ebd861`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f96f3ebd861) - [ux] Use
346
+ color.background.neutral.subtle token to represent transparent background.
347
+ - [`d0298c778ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0298c778ed) - Added
348
+ additional testId props for testing purposes
334
349
 
335
350
  ## 14.8.7
336
351
 
337
352
  ### Patch Changes
338
353
 
339
- - Updated dependencies
354
+ - Updated dependencies
340
355
 
341
356
  ## 14.8.6
342
357
 
343
358
  ### Patch Changes
344
359
 
345
- - Updated dependencies
360
+ - Updated dependencies
346
361
 
347
362
  ## 14.8.5
348
363
 
349
364
  ### Patch Changes
350
365
 
351
- - Updated dependencies
366
+ - Updated dependencies
352
367
 
353
368
  ## 14.8.4
354
369
 
355
370
  ### Patch Changes
356
371
 
357
- - [#26488](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26488)
358
- [`bc989043572`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc989043572) -
359
- Internal changes to apply spacing tokens. This should be a no-op change.
372
+ - [#26488](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26488)
373
+ [`bc989043572`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc989043572) - Internal
374
+ changes to apply spacing tokens. This should be a no-op change.
360
375
 
361
376
  ## 14.8.3
362
377
 
363
378
  ### Patch Changes
364
379
 
365
- - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710)
366
- [`ba5370e80b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba5370e80b4) - Update
367
- table row background color on drag to better match design token semantics
380
+ - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710)
381
+ [`ba5370e80b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba5370e80b4) - Update
382
+ table row background color on drag to better match design token semantics
368
383
 
369
384
  ## 14.8.2
370
385
 
371
386
  ### Patch Changes
372
387
 
373
- - [#24968](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24968)
374
- [`f9cd9e55e43`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f9cd9e55e43) - Update
375
- to disabled tokens which slightly affects the opacity in disabled states
388
+ - [#24968](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24968)
389
+ [`f9cd9e55e43`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f9cd9e55e43) - Update
390
+ to disabled tokens which slightly affects the opacity in disabled states
376
391
 
377
392
  ## 14.8.1
378
393
 
379
394
  ### Patch Changes
380
395
 
381
- - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
382
- [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) -
383
- Upgrade Typescript from `4.3.5` to `4.5.5`
396
+ - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
397
+ [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade
398
+ Typescript from `4.3.5` to `4.5.5`
384
399
 
385
400
  ## 14.8.0
386
401
 
387
402
  ### Minor Changes
388
403
 
389
- - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004)
390
- [`f88eb89b356`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f88eb89b356) -
391
- Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
404
+ - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004)
405
+ [`f88eb89b356`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f88eb89b356) - Updates
406
+ `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
392
407
 
393
408
  ### Patch Changes
394
409
 
395
- - [`12e03c6416b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12e03c6416b) - Allow
396
- `className` on internal components for css prop functionality. There should be no change in
397
- behaviour.
398
- - Updated dependencies
410
+ - [`12e03c6416b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12e03c6416b) - Allow
411
+ `className` on internal components for css prop functionality. There should be no change in
412
+ behaviour.
413
+ - Updated dependencies
399
414
 
400
415
  ## 14.7.1
401
416
 
402
417
  ### Patch Changes
403
418
 
404
- - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
405
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) -
406
- Upgrade Typescript from `4.2.4` to `4.3.5`.
419
+ - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
420
+ [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade
421
+ Typescript from `4.2.4` to `4.3.5`.
407
422
 
408
423
  ## 14.7.0
409
424
 
410
425
  ### Minor Changes
411
426
 
412
- - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
413
- [`266abf54eea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/266abf54eea) - [ux]
414
- Pagination no longer renders when rowsPerPage is set, but there's only one page of content
427
+ - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
428
+ [`266abf54eea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/266abf54eea) - [ux]
429
+ Pagination no longer renders when rowsPerPage is set, but there's only one page of content
415
430
 
416
431
  ### Patch Changes
417
432
 
418
- - [`39e49a80bee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39e49a80bee) - Remove
419
- adding undefined to css if width is 'undefined'
420
- - [`f619b95cd00`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f619b95cd00) - [ux]
421
- bug fix: table no longer shows empty page, when number of pages reduced
422
- - [`31cf385e99b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31cf385e99b) -
423
- DSP-2011 Change dynamically generated styles to be static
424
- - [`8202e37941b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8202e37941b) -
425
- Internal code change turning on new linting rules.
426
- - [`02eb9c1c335`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02eb9c1c335) - [ux]
427
- Fix table row shift 1px when dragging first table row issue
428
- - Updated dependencies
433
+ - [`39e49a80bee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39e49a80bee) - Remove
434
+ adding undefined to css if width is 'undefined'
435
+ - [`f619b95cd00`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f619b95cd00) - [ux] bug
436
+ fix: table no longer shows empty page, when number of pages reduced
437
+ - [`31cf385e99b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31cf385e99b) - DSP-2011
438
+ Change dynamically generated styles to be static
439
+ - [`8202e37941b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8202e37941b) - Internal
440
+ code change turning on new linting rules.
441
+ - [`02eb9c1c335`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02eb9c1c335) - [ux] Fix
442
+ table row shift 1px when dragging first table row issue
443
+ - Updated dependencies
429
444
 
430
445
  ## 14.6.1
431
446
 
432
447
  ### Patch Changes
433
448
 
434
- - [#23340](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23340)
435
- [`deca22d60e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/deca22d60e1) - Update
436
- DynamicTable HeaderCellType to make it clear that the width prop takes a percentage not a pixel
437
- value
449
+ - [#23340](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23340)
450
+ [`deca22d60e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/deca22d60e1) - Update
451
+ DynamicTable HeaderCellType to make it clear that the width prop takes a percentage not a pixel
452
+ value
438
453
 
439
454
  ## 14.6.0
440
455
 
441
456
  ### Minor Changes
442
457
 
443
- - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570)
444
- [`1cc3c9f1c8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1cc3c9f1c8f) - Add
445
- test ID to table pagination so it can be queried in tests. It will be prefixed with the `testId`
446
- prop: `{testId}--pagination`.
458
+ - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570)
459
+ [`1cc3c9f1c8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1cc3c9f1c8f) - Add test
460
+ ID to table pagination so it can be queried in tests. It will be prefixed with the `testId` prop:
461
+ `{testId}--pagination`.
447
462
 
448
463
  ### Patch Changes
449
464
 
450
- - [`0b545855a57`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b545855a57) - [ux]
451
- Updated tokens in `@atlaskit/dynamic-table`
465
+ - [`0b545855a57`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b545855a57) - [ux]
466
+ Updated tokens in `@atlaskit/dynamic-table`
452
467
 
453
468
  ## 14.5.5
454
469
 
455
470
  ### Patch Changes
456
471
 
457
- - Updated dependencies
472
+ - Updated dependencies
458
473
 
459
474
  ## 14.5.4
460
475
 
461
476
  ### Patch Changes
462
477
 
463
- - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
464
- [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) -
465
- Upgrade to TypeScript 4.2.4
478
+ - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
479
+ [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade
480
+ to TypeScript 4.2.4
466
481
 
467
482
  ## 14.5.3
468
483
 
469
484
  ### Patch Changes
470
485
 
471
- - Updated dependencies
486
+ - Updated dependencies
472
487
 
473
488
  ## 14.5.2
474
489
 
475
490
  ### Patch Changes
476
491
 
477
- - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
478
- [`62edf20ab1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62edf20ab1e) -
479
- Migrates all usage of brand tokens to either selected or information tokens. This change is
480
- purely for semantic reasons, there are no visual or behavioural changes.
481
- - Updated dependencies
492
+ - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
493
+ [`62edf20ab1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62edf20ab1e) - Migrates
494
+ all usage of brand tokens to either selected or information tokens. This change is purely for
495
+ semantic reasons, there are no visual or behavioural changes.
496
+ - Updated dependencies
482
497
 
483
498
  ## 14.5.1
484
499
 
485
500
  ### Patch Changes
486
501
 
487
- - Updated dependencies
502
+ - Updated dependencies
488
503
 
489
504
  ## 14.5.0
490
505
 
491
506
  ### Minor Changes
492
507
 
493
- - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
494
- [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Rows
495
- can now also be highlighted using the isHighlighted property inside the rows data
508
+ - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
509
+ [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Rows can
510
+ now also be highlighted using the isHighlighted property inside the rows data
496
511
 
497
512
  ### Patch Changes
498
513
 
499
- - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) -
500
- Updates usage of deprecated token names so they're aligned with the latest naming conventions.
501
- No UI or visual changes
502
- - Updated dependencies
514
+ - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Updates
515
+ usage of deprecated token names so they're aligned with the latest naming conventions. No UI or
516
+ visual changes
517
+ - Updated dependencies
503
518
 
504
519
  ## 14.4.4
505
520
 
506
521
  ### Patch Changes
507
522
 
508
- - Updated dependencies
523
+ - Updated dependencies
509
524
 
510
525
  ## 14.4.3
511
526
 
512
527
  ### Patch Changes
513
528
 
514
- - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
515
- [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds
516
- for this package now pass through a tokens babel plugin, removing runtime invocations of the
517
- tokens() function and improving bundle size.
518
- - Updated dependencies
529
+ - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
530
+ [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds
531
+ for this package now pass through a tokens babel plugin, removing runtime invocations of the
532
+ tokens() function and improving bundle size.
533
+ - Updated dependencies
519
534
 
520
535
  ## 14.4.2
521
536
 
522
537
  ### Patch Changes
523
538
 
524
- - [#16499](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16499)
525
- [`78a7ffa81f8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78a7ffa81f8) - Fixes
526
- a bug that meant an undefined width would still be stringifed and applied to the inline styles
527
- of table cells.
539
+ - [#16499](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16499)
540
+ [`78a7ffa81f8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78a7ffa81f8) - Fixes a
541
+ bug that meant an undefined width would still be stringifed and applied to the inline styles of
542
+ table cells.
528
543
 
529
544
  ## 14.4.1
530
545
 
531
546
  ### Patch Changes
532
547
 
533
- - [#16038](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16038)
534
- [`1601e51ab32`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1601e51ab32) - Fixes
535
- for internal types.
548
+ - [#16038](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16038)
549
+ [`1601e51ab32`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1601e51ab32) - Fixes
550
+ for internal types.
536
551
 
537
552
  ## 14.4.0
538
553
 
539
554
  ### Minor Changes
540
555
 
541
- - [#14777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14777)
542
- [`dc35866892f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc35866892f) - [ux]
543
- Instrumented dynamic-table with the new theming package, @atlaskit/tokens.
556
+ - [#14777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14777)
557
+ [`dc35866892f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc35866892f) - [ux]
558
+ Instrumented dynamic-table with the new theming package, @atlaskit/tokens.
544
559
 
545
- New tokens will be visible only in applications configured to use the new Tokens API (currently
546
- in alpha). These changes are intended to be interoperable with the legacy theme implementation.
547
- Legacy dark mode users should expect no visual or breaking changes.
560
+ New tokens will be visible only in applications configured to use the new Tokens API (currently in
561
+ alpha). These changes are intended to be interoperable with the legacy theme implementation.
562
+ Legacy dark mode users should expect no visual or breaking changes.
548
563
 
549
- - [`ca00a7783a9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca00a7783a9) -
550
- Removes `styled-components` as a peer dependency in favour of a direct dependency on `emotion`.
564
+ - [`ca00a7783a9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca00a7783a9) - Removes
565
+ `styled-components` as a peer dependency in favour of a direct dependency on `emotion`.
551
566
 
552
567
  ### Patch Changes
553
568
 
554
- - Updated dependencies
569
+ - Updated dependencies
555
570
 
556
571
  ## 14.3.2
557
572
 
558
573
  ### Patch Changes
559
574
 
560
- - [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319)
561
- [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) -
562
- Internal changes to remove `@atlaskit/theme/math` usage.
563
- - Updated dependencies
575
+ - [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319)
576
+ [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - Internal
577
+ changes to remove `@atlaskit/theme/math` usage.
578
+ - Updated dependencies
564
579
 
565
580
  ## 14.3.1
566
581
 
567
582
  ### Patch Changes
568
583
 
569
- - [#12880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12880)
570
- [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump
571
- `@atlaskit/theme` to version `^11.3.0`.
584
+ - [#12880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12880)
585
+ [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump
586
+ `@atlaskit/theme` to version `^11.3.0`.
572
587
 
573
588
  ## 14.3.0
574
589
 
575
590
  ### Minor Changes
576
591
 
577
- - [#11649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11649)
578
- [`7da3e890032`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7da3e890032) - [ux]
579
- `highlightedRowIndex` now can be a list of numbers (`number[]`), as well as `number`. Also
580
- highlighted rows now have B50/B75 colour.
581
- - [`aa66648082f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa66648082f) - Add
582
- support for aria attributes on the table
592
+ - [#11649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11649)
593
+ [`7da3e890032`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7da3e890032) - [ux]
594
+ `highlightedRowIndex` now can be a list of numbers (`number[]`), as well as `number`. Also
595
+ highlighted rows now have B50/B75 colour.
596
+ - [`aa66648082f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa66648082f) - Add
597
+ support for aria attributes on the table
583
598
 
584
599
  ### Patch Changes
585
600
 
586
- - [`bf041942c3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bf041942c3a) - Added
587
- styles to `HeadCell` to be visible when windows high contrast mode is turned on.
601
+ - [`bf041942c3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bf041942c3a) - Added
602
+ styles to `HeadCell` to be visible when windows high contrast mode is turned on.
588
603
 
589
604
  ## 14.2.3
590
605
 
591
606
  ### Patch Changes
592
607
 
593
- - [#11126](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11126)
594
- [`cbd4258c692`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cbd4258c692) - Update
595
- the `rows` prop types to extend HTML table row props
608
+ - [#11126](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11126)
609
+ [`cbd4258c692`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cbd4258c692) - Update
610
+ the `rows` prop types to extend HTML table row props
596
611
 
597
612
  ## 14.2.2
598
613
 
599
614
  ### Patch Changes
600
615
 
601
- - Updated dependencies
616
+ - Updated dependencies
602
617
 
603
618
  ## 14.2.1
604
619
 
605
620
  ### Patch Changes
606
621
 
607
- - [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644)
608
- [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use
609
- injected package name and version for analytics instead of version.json.
622
+ - [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644)
623
+ [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use
624
+ injected package name and version for analytics instead of version.json.
610
625
 
611
626
  ## 14.2.0
612
627
 
613
628
  ### Minor Changes
614
629
 
615
- - [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762)
616
- [`cd41357bdb0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd41357bdb0) - Added
617
- total number of records for paginated data set to be passed as an optional prop
630
+ - [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762)
631
+ [`cd41357bdb0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd41357bdb0) - Added
632
+ total number of records for paginated data set to be passed as an optional prop
618
633
 
619
634
  ### Patch Changes
620
635
 
621
- - [`952019cfd39`](https://bitbucket.org/atlassian/atlassian-frontend/commits/952019cfd39) -
622
- Removed extraneous/unnecessary dependencies for design system components.
636
+ - [`952019cfd39`](https://bitbucket.org/atlassian/atlassian-frontend/commits/952019cfd39) - Removed
637
+ extraneous/unnecessary dependencies for design system components.
623
638
 
624
639
  ## 14.1.5
625
640
 
626
641
  ### Patch Changes
627
642
 
628
- - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
629
- [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) -
630
- Transpile packages using babel rather than tsc
643
+ - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
644
+ [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile
645
+ packages using babel rather than tsc
631
646
 
632
647
  ## 14.1.4
633
648
 
634
649
  ### Patch Changes
635
650
 
636
- - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
637
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
638
- types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
639
- compiler option. This requires version 3.8 of Typescript, read more about how we handle
640
- Typescript versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
641
- `devDependencies` to denote version that the package was built with.
651
+ - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
652
+ [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
653
+ types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
654
+ compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript
655
+ versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
656
+ `devDependencies` to denote version that the package was built with.
642
657
 
643
658
  ## 14.1.3
644
659
 
645
660
  ### Patch Changes
646
661
 
647
- - Updated dependencies
662
+ - Updated dependencies
648
663
 
649
664
  ## 14.1.2
650
665
 
651
666
  ### Patch Changes
652
667
 
653
- - [#4707](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4707)
654
- [`6360c46009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6360c46009) - Reenable
655
- integration tests for Edge browser
668
+ - [#4707](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4707)
669
+ [`6360c46009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6360c46009) - Reenable
670
+ integration tests for Edge browser
656
671
 
657
672
  ## 14.1.1
658
673
 
659
674
  ### Patch Changes
660
675
 
661
- - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
662
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
663
- to TypeScript 3.9.6 and tslib to 2.0.0
676
+ - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
677
+ [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
678
+ to TypeScript 3.9.6 and tslib to 2.0.0
664
679
 
665
- Since tslib is a dependency for all our packages we recommend that products also follow this
666
- tslib upgrade to prevent duplicates of tslib being bundled.
680
+ Since tslib is a dependency for all our packages we recommend that products also follow this tslib
681
+ upgrade to prevent duplicates of tslib being bundled.
667
682
 
668
683
  ## 14.1.0
669
684
 
670
685
  ### Minor Changes
671
686
 
672
- - [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823)
673
- [`dff687b37a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dff687b37a) - Expose
674
- onKeyPress prop for dynamic-table and use it to show mediaViewer
675
- - [`e9a1942ae0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9a1942ae0) - Set the
676
- attribute `data-testid` on the loading spinners. The convention follows the existing
677
- \${testId}--loadingSpinner.
687
+ - [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823)
688
+ [`dff687b37a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dff687b37a) - Expose
689
+ onKeyPress prop for dynamic-table and use it to show mediaViewer
690
+ - [`e9a1942ae0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9a1942ae0) - Set the
691
+ attribute `data-testid` on the loading spinners. The convention follows the existing
692
+ \${testId}--loadingSpinner.
678
693
 
679
694
  ### Patch Changes
680
695
 
681
- - [`930e4aea2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/930e4aea2b) - fix a
682
- bug where DynamicTable is used with Suspense
696
+ - [`930e4aea2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/930e4aea2b) - fix a bug
697
+ where DynamicTable is used with Suspense
683
698
 
684
699
  ## 14.0.1
685
700
 
686
701
  ### Patch Changes
687
702
 
688
- - [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428)
689
- [`db053b24d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db053b24d8) - Update
690
- all the theme imports to be tree-shakable
703
+ - [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428)
704
+ [`db053b24d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db053b24d8) - Update all
705
+ the theme imports to be tree-shakable
691
706
 
692
707
  ## 14.0.0
693
708
 
694
709
  ### Major Changes
695
710
 
696
- - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
697
- [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) -
698
- Officially dropping IE11 support, from this version onwards there are no warranties of the
699
- package working in IE11. For more information see:
700
- https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
711
+ - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
712
+ [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially
713
+ dropping IE11 support, from this version onwards there are no warranties of the package working in
714
+ IE11. For more information see:
715
+ https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
701
716
 
702
717
  ### Patch Changes
703
718
 
704
- - Updated dependencies
719
+ - Updated dependencies
705
720
 
706
721
  ## 13.7.9
707
722
 
708
723
  ### Patch Changes
709
724
 
710
- - [#2763](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2763)
711
- [`e8b1104637`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e8b1104637) -
712
- Previously when sorting the rows weren’t using a stable key - thus they would re-mount
713
- unexpectedly! This has been fixed now.
714
- - [`3cac2203ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3cac2203ba) -
715
- Previously, sorting columns in dynamic table wouldn’t persist the page when table was updated,
716
- Now user will be able to apply sorting on dynamic table and page will be remain same even after
717
- updating table
725
+ - [#2763](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2763)
726
+ [`e8b1104637`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e8b1104637) - Previously
727
+ when sorting the rows weren’t using a stable key - thus they would re-mount unexpectedly! This has
728
+ been fixed now.
729
+ - [`3cac2203ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3cac2203ba) -
730
+ Previously, sorting columns in dynamic table wouldn’t persist the page when table was updated, Now
731
+ user will be able to apply sorting on dynamic table and page will be remain same even after
732
+ updating table
718
733
 
719
734
  ## 13.7.8
720
735
 
721
736
  ### Patch Changes
722
737
 
723
- - Updated dependencies
738
+ - Updated dependencies
724
739
 
725
740
  ## 13.7.7
726
741
 
727
742
  ### Patch Changes
728
743
 
729
- - [#2866](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2866)
730
- [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build
731
- and supporting files will no longer be published to npm
744
+ - [#2866](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2866)
745
+ [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and
746
+ supporting files will no longer be published to npm
732
747
 
733
748
  ## 13.7.6
734
749
 
735
750
  ### Patch Changes
736
751
 
737
- - [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137)
738
- [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove
739
- unused dependencies
740
- - [`baaad91b65`](https://bitbucket.org/atlassian/atlassian-frontend/commits/baaad91b65) - Updated
741
- to use the latest and more performant version of `@atlaskit/avatar`
742
- - Updated dependencies
752
+ - [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137)
753
+ [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove
754
+ unused dependencies
755
+ - [`baaad91b65`](https://bitbucket.org/atlassian/atlassian-frontend/commits/baaad91b65) - Updated to
756
+ use the latest and more performant version of `@atlaskit/avatar`
757
+ - Updated dependencies
743
758
 
744
759
  ## 13.7.5
745
760
 
746
761
  ### Patch Changes
747
762
 
748
- - Updated dependencies
763
+ - Updated dependencies
749
764
 
750
765
  ## 13.7.4
751
766
 
752
767
  ### Patch Changes
753
768
 
754
- - [patch][dfc4dba1b3](https://bitbucket.org/atlassian/atlassian-frontend/commits/dfc4dba1b3):
769
+ - [patch][dfc4dba1b3](https://bitbucket.org/atlassian/atlassian-frontend/commits/dfc4dba1b3):
755
770
 
756
- Change imports to comply with Atlassian conventions- Updated dependencies
757
- [9e4b195732](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e4b195732):
771
+ Change imports to comply with Atlassian conventions- Updated dependencies
772
+ [9e4b195732](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e4b195732):
758
773
 
759
- - Updated dependencies
760
- [6b8e60827e](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b8e60827e):
761
- - Updated dependencies
762
- [167a55fd7a](https://bitbucket.org/atlassian/atlassian-frontend/commits/167a55fd7a):
763
- - Updated dependencies
764
- [57c0487a02](https://bitbucket.org/atlassian/atlassian-frontend/commits/57c0487a02):
765
- - Updated dependencies
766
- [fd41d77c29](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd41d77c29):
767
- - Updated dependencies
768
- [7a2540821c](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a2540821c):
769
- - @atlaskit/toggle@8.1.7
770
- - @atlaskit/button@13.3.11
771
- - @atlaskit/avatar@17.1.10
772
- - @atlaskit/webdriver-runner@0.3.4
773
- - @atlaskit/dropdown-menu@9.0.3
774
+ - Updated dependencies
775
+ [6b8e60827e](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b8e60827e):
776
+ - Updated dependencies
777
+ [167a55fd7a](https://bitbucket.org/atlassian/atlassian-frontend/commits/167a55fd7a):
778
+ - Updated dependencies
779
+ [57c0487a02](https://bitbucket.org/atlassian/atlassian-frontend/commits/57c0487a02):
780
+ - Updated dependencies
781
+ [fd41d77c29](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd41d77c29):
782
+ - Updated dependencies
783
+ [7a2540821c](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a2540821c):
784
+ - @atlaskit/toggle@8.1.7
785
+ - @atlaskit/button@13.3.11
786
+ - @atlaskit/avatar@17.1.10
787
+ - @atlaskit/webdriver-runner@0.3.4
788
+ - @atlaskit/dropdown-menu@9.0.3
774
789
 
775
790
  ## 13.7.3
776
791
 
777
792
  ### Patch Changes
778
793
 
779
- - [patch][109004a98e](https://bitbucket.org/atlassian/atlassian-frontend/commits/109004a98e):
794
+ - [patch][109004a98e](https://bitbucket.org/atlassian/atlassian-frontend/commits/109004a98e):
780
795
 
781
- Deletes internal package @atlaskit/type-helpers and removes all usages. @atlaskit/type-helpers
782
- has been superseded by native typescript helper utilities.- Updated dependencies
783
- [168b5f90e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/168b5f90e5):
796
+ Deletes internal package @atlaskit/type-helpers and removes all usages. @atlaskit/type-helpers has
797
+ been superseded by native typescript helper utilities.- Updated dependencies
798
+ [168b5f90e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/168b5f90e5):
784
799
 
785
- - Updated dependencies
786
- [0c270847cb](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c270847cb):
787
- - Updated dependencies
788
- [109004a98e](https://bitbucket.org/atlassian/atlassian-frontend/commits/109004a98e):
789
- - Updated dependencies
790
- [b9903e773a](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9903e773a):
791
- - @atlaskit/docs@8.5.1
792
- - @atlaskit/theme@9.5.3
793
- - @atlaskit/analytics-next@6.3.6
794
- - @atlaskit/button@13.3.10
800
+ - Updated dependencies
801
+ [0c270847cb](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c270847cb):
802
+ - Updated dependencies
803
+ [109004a98e](https://bitbucket.org/atlassian/atlassian-frontend/commits/109004a98e):
804
+ - Updated dependencies
805
+ [b9903e773a](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9903e773a):
806
+ - @atlaskit/docs@8.5.1
807
+ - @atlaskit/theme@9.5.3
808
+ - @atlaskit/analytics-next@6.3.6
809
+ - @atlaskit/button@13.3.10
795
810
 
796
811
  ## 13.7.2
797
812
 
798
813
  ### Patch Changes
799
814
 
800
- - Updated dependencies
801
- [66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
802
- - Updated dependencies
803
- [64fb94fb1e](https://bitbucket.org/atlassian/atlassian-frontend/commits/64fb94fb1e):
804
- - Updated dependencies
805
- [eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
806
- - Updated dependencies
807
- [109c1a2c0a](https://bitbucket.org/atlassian/atlassian-frontend/commits/109c1a2c0a):
808
- - Updated dependencies
809
- [c57bb32f6d](https://bitbucket.org/atlassian/atlassian-frontend/commits/c57bb32f6d):
810
- - @atlaskit/docs@8.4.0
811
- - @atlaskit/webdriver-runner@0.3.0
812
- - @atlaskit/avatar@17.1.9
813
- - @atlaskit/button@13.3.9
814
- - @atlaskit/dropdown-menu@9.0.2
815
- - @atlaskit/spinner@12.1.6
816
- - @atlaskit/toggle@8.1.6
815
+ - Updated dependencies
816
+ [66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
817
+ - Updated dependencies
818
+ [64fb94fb1e](https://bitbucket.org/atlassian/atlassian-frontend/commits/64fb94fb1e):
819
+ - Updated dependencies
820
+ [eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
821
+ - Updated dependencies
822
+ [109c1a2c0a](https://bitbucket.org/atlassian/atlassian-frontend/commits/109c1a2c0a):
823
+ - Updated dependencies
824
+ [c57bb32f6d](https://bitbucket.org/atlassian/atlassian-frontend/commits/c57bb32f6d):
825
+ - @atlaskit/docs@8.4.0
826
+ - @atlaskit/webdriver-runner@0.3.0
827
+ - @atlaskit/avatar@17.1.9
828
+ - @atlaskit/button@13.3.9
829
+ - @atlaskit/dropdown-menu@9.0.2
830
+ - @atlaskit/spinner@12.1.6
831
+ - @atlaskit/toggle@8.1.6
817
832
 
818
833
  ## 13.7.1
819
834
 
820
835
  ### Patch Changes
821
836
 
822
- - Updated dependencies
823
- [e3f01787dd](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3f01787dd):
824
- - @atlaskit/webdriver-runner@0.2.0
825
- - @atlaskit/avatar@17.1.8
826
- - @atlaskit/button@13.3.8
827
- - @atlaskit/dropdown-menu@9.0.1
828
- - @atlaskit/spinner@12.1.5
829
- - @atlaskit/toggle@8.1.5
837
+ - Updated dependencies
838
+ [e3f01787dd](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3f01787dd):
839
+ - @atlaskit/webdriver-runner@0.2.0
840
+ - @atlaskit/avatar@17.1.8
841
+ - @atlaskit/button@13.3.8
842
+ - @atlaskit/dropdown-menu@9.0.1
843
+ - @atlaskit/spinner@12.1.5
844
+ - @atlaskit/toggle@8.1.5
830
845
 
831
846
  ## 13.7.0
832
847
 
833
848
  ### Minor Changes
834
849
 
835
- - [minor][0b09f8a6ca](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b09f8a6ca):
850
+ - [minor][0b09f8a6ca](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b09f8a6ca):
836
851
 
837
- add focus style using blue outline
852
+ add focus style using blue outline
838
853
 
839
854
  ### Patch Changes
840
855
 
841
- - Updated dependencies
842
- [9e87af4685](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e87af4685):
843
- - @atlaskit/dropdown-menu@9.0.0
856
+ - Updated dependencies
857
+ [9e87af4685](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e87af4685):
858
+ - @atlaskit/dropdown-menu@9.0.0
844
859
 
845
860
  ## 13.6.2
846
861
 
847
862
  ### Patch Changes
848
863
 
849
- - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
864
+ - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
850
865
 
851
- Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
852
- [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
866
+ Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
867
+ [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
853
868
 
854
- - @atlaskit/docs@8.3.2
855
- - @atlaskit/visual-regression@0.1.9
856
- - @atlaskit/analytics-next@6.3.5
857
- - @atlaskit/avatar@17.1.7
858
- - @atlaskit/button@13.3.7
859
- - @atlaskit/dropdown-menu@8.2.4
860
- - @atlaskit/pagination@12.0.19
861
- - @atlaskit/spinner@12.1.4
862
- - @atlaskit/theme@9.5.1
863
- - @atlaskit/toggle@8.1.4
864
- - @atlaskit/type-helpers@4.2.3
869
+ - @atlaskit/docs@8.3.2
870
+ - @atlaskit/visual-regression@0.1.9
871
+ - @atlaskit/analytics-next@6.3.5
872
+ - @atlaskit/avatar@17.1.7
873
+ - @atlaskit/button@13.3.7
874
+ - @atlaskit/dropdown-menu@8.2.4
875
+ - @atlaskit/pagination@12.0.19
876
+ - @atlaskit/spinner@12.1.4
877
+ - @atlaskit/theme@9.5.1
878
+ - @atlaskit/toggle@8.1.4
879
+ - @atlaskit/type-helpers@4.2.3
865
880
 
866
881
  ## 13.6.1
867
882
 
868
883
  ### Patch Changes
869
884
 
870
- - [patch][4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
885
+ - [patch][4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
871
886
 
872
- Removes babel/runtime from dependencies. Users should see a smaller bundlesize as a result-
873
- Updated dependencies
874
- [6dccb16bfc](https://bitbucket.org/atlassian/atlassian-frontend/commits/6dccb16bfc):
887
+ Removes babel/runtime from dependencies. Users should see a smaller bundlesize as a result-
888
+ Updated dependencies
889
+ [6dccb16bfc](https://bitbucket.org/atlassian/atlassian-frontend/commits/6dccb16bfc):
875
890
 
876
- - Updated dependencies
877
- [82747f2922](https://bitbucket.org/atlassian/atlassian-frontend/commits/82747f2922):
878
- - Updated dependencies
879
- [4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
880
- - @atlaskit/toggle@8.1.3
881
- - @atlaskit/theme@9.5.0
882
- - @atlaskit/button@13.3.5
883
- - @atlaskit/pagination@12.0.17
884
- - @atlaskit/spinner@12.1.3
885
- - @atlaskit/dropdown-menu@8.2.2
891
+ - Updated dependencies
892
+ [82747f2922](https://bitbucket.org/atlassian/atlassian-frontend/commits/82747f2922):
893
+ - Updated dependencies
894
+ [4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
895
+ - @atlaskit/toggle@8.1.3
896
+ - @atlaskit/theme@9.5.0
897
+ - @atlaskit/button@13.3.5
898
+ - @atlaskit/pagination@12.0.17
899
+ - @atlaskit/spinner@12.1.3
900
+ - @atlaskit/dropdown-menu@8.2.2
886
901
 
887
902
  ## 13.6.0
888
903
 
889
904
  ### Minor Changes
890
905
 
891
- - [minor][24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
906
+ - [minor][24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
892
907
 
893
- Moving to react-beautiful-dnd 12.x internally. No API changes
908
+ Moving to react-beautiful-dnd 12.x internally. No API changes
894
909
 
895
910
  ### Patch Changes
896
911
 
897
- - Updated dependencies
898
- [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
899
- - Updated dependencies
900
- [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
901
- - Updated dependencies
902
- [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
903
- - @atlaskit/analytics-next@6.3.3
904
- - @atlaskit/avatar@17.1.5
912
+ - Updated dependencies
913
+ [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
914
+ - Updated dependencies
915
+ [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
916
+ - Updated dependencies
917
+ [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
918
+ - @atlaskit/analytics-next@6.3.3
919
+ - @atlaskit/avatar@17.1.5
905
920
 
906
921
  ## 13.5.1
907
922
 
908
923
  ### Patch Changes
909
924
 
910
- - [patch][d222c2b987](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d222c2b987):
925
+ - [patch][d222c2b987](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d222c2b987):
911
926
 
912
- Theme has been converted to Typescript. Typescript consumers will now get static type safety.
913
- Flow types are no longer provided.
927
+ Theme has been converted to Typescript. Typescript consumers will now get static type safety. Flow
928
+ types are no longer provided.
914
929
 
915
- ### Breaking
930
+ ### Breaking
916
931
 
917
- ** getTokens props changes ** When defining the value function passed into a ThemeProvider, the
918
- getTokens parameter cannot be called without props; if no props are provided an empty object
919
- `{}` must be passed in:
932
+ ** getTokens props changes ** When defining the value function passed into a ThemeProvider, the
933
+ getTokens parameter cannot be called without props; if no props are provided an empty object `{}`
934
+ must be passed in:
920
935
 
921
- ```javascript
922
- <CustomTheme.Provider
923
- value={t => ({ ...t(), backgroundColor: '#333'})}
924
- >
925
- ```
936
+ ```javascript
937
+ <CustomTheme.Provider
938
+ value={t => ({ ...t(), backgroundColor: '#333'})}
939
+ >
940
+ ```
926
941
 
927
- becomes:
942
+ becomes:
928
943
 
929
- ```javascript
930
- <CustomTheme.Provider
931
- value={t => ({ ...t({}), backgroundColor: '#333'})}
932
- >
933
- ```
944
+ ```javascript
945
+ <CustomTheme.Provider
946
+ value={t => ({ ...t({}), backgroundColor: '#333'})}
947
+ >
948
+ ```
934
949
 
935
- ** Color palette changes ** Color palettes have been moved into their own file. Users will need
936
- to update imports from this:
950
+ ** Color palette changes ** Color palettes have been moved into their own file. Users will need to
951
+ update imports from this:
937
952
 
938
- ```javascript
939
- import { colors } from '@atlaskit/theme';
953
+ ```javascript
954
+ import { colors } from '@atlaskit/theme';
940
955
 
941
- colors.colorPalette('8');
942
- ```
956
+ colors.colorPalette('8');
957
+ ```
943
958
 
944
- to this:
959
+ to this:
945
960
 
946
- ```javascript
947
- import { colorPalette } from '@atlaskit/theme';
961
+ ```javascript
962
+ import { colorPalette } from '@atlaskit/theme';
948
963
 
949
- colorPalette.colorPalette('8');
950
- ```
964
+ colorPalette.colorPalette('8');
965
+ ```
951
966
 
952
- or for multi entry-point users:
967
+ or for multi entry-point users:
953
968
 
954
- ```javascript
955
- import * as colors from '@atlaskit/theme/colors';
969
+ ```javascript
970
+ import * as colors from '@atlaskit/theme/colors';
956
971
 
957
- colors.colorPalette('8');
958
- ```
972
+ colors.colorPalette('8');
973
+ ```
959
974
 
960
- to this:
975
+ to this:
961
976
 
962
- ```javascript
963
- import * as colorPalettes from '@atlaskit/theme/color-palette';
977
+ ```javascript
978
+ import * as colorPalettes from '@atlaskit/theme/color-palette';
964
979
 
965
- colorPalettes.colorPalette('8');
966
- ```
980
+ colorPalettes.colorPalette('8');
981
+ ```
967
982
 
968
983
  ## 13.5.0
969
984
 
970
985
  ### Minor Changes
971
986
 
972
- - [minor][19e5d77c84](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/19e5d77c84):
987
+ - [minor][19e5d77c84](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/19e5d77c84):
973
988
 
974
- Adding an optional prop `testId` that will set the attribute value `data-testid`. It will help
975
- products to write better integration and end to end tests.
989
+ Adding an optional prop `testId` that will set the attribute value `data-testid`. It will help
990
+ products to write better integration and end to end tests.
976
991
 
977
992
  ## 13.4.0
978
993
 
979
994
  ### Minor Changes
980
995
 
981
- - [minor][97a4a48f58](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/97a4a48f58):
996
+ - [minor][97a4a48f58](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/97a4a48f58):
982
997
 
983
- - use more obvious hover background color for highlighted row
984
- - add onClick into RowType typing and add examples of its usage
998
+ - use more obvious hover background color for highlighted row
999
+ - add onClick into RowType typing and add examples of its usage
985
1000
 
986
1001
  ## 13.3.3
987
1002
 
988
1003
  ### Patch Changes
989
1004
 
990
- - [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
1005
+ - [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
991
1006
 
992
- Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
1007
+ Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
993
1008
 
994
1009
  ## 13.3.2
995
1010
 
996
1011
  ### Patch Changes
997
1012
 
998
- - [patch][a2d0043716](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d0043716):
1013
+ - [patch][a2d0043716](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d0043716):
999
1014
 
1000
- Updated version of analytics-next to fix potential incompatibilities with TS 3.6
1015
+ Updated version of analytics-next to fix potential incompatibilities with TS 3.6
1001
1016
 
1002
1017
  ## 13.3.1
1003
1018
 
1004
1019
  ### Patch Changes
1005
1020
 
1006
- - [patch][8a244b1dfd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8a244b1dfd):
1021
+ - [patch][8a244b1dfd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8a244b1dfd):
1007
1022
 
1008
- DynamicTable Stateful now sends analytics events via the onSort prop
1023
+ DynamicTable Stateful now sends analytics events via the onSort prop
1009
1024
 
1010
1025
  ## 13.3.0
1011
1026
 
1012
1027
  ### Minor Changes
1013
1028
 
1014
- - [minor][565e5c71db](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/565e5c71db):
1029
+ - [minor][565e5c71db](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/565e5c71db):
1015
1030
 
1016
- Add ability to highlight a row in the table based on the index (0 based index) of the current
1017
- visible page.
1031
+ Add ability to highlight a row in the table based on the index (0 based index) of the current
1032
+ visible page.
1018
1033
 
1019
1034
  ## 13.2.1
1020
1035
 
1021
- - Updated dependencies
1022
- [8d0f37c23e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8d0f37c23e):
1023
- - @atlaskit/dropdown-menu@8.1.1
1024
- - @atlaskit/avatar@17.0.0
1025
- - @atlaskit/theme@9.2.2
1036
+ - Updated dependencies
1037
+ [8d0f37c23e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8d0f37c23e):
1038
+ - @atlaskit/dropdown-menu@8.1.1
1039
+ - @atlaskit/avatar@17.0.0
1040
+ - @atlaskit/theme@9.2.2
1026
1041
 
1027
1042
  ## 13.2.0
1028
1043
 
1029
1044
  ### Minor Changes
1030
1045
 
1031
- - [minor][c6efb2f5b6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c6efb2f5b6):
1046
+ - [minor][c6efb2f5b6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c6efb2f5b6):
1032
1047
 
1033
- Prefix the legacy lifecycle methods with UNSAFE\_\* to avoid warning in React 16.9+
1048
+ Prefix the legacy lifecycle methods with UNSAFE\_\* to avoid warning in React 16.9+
1034
1049
 
1035
- More information about the deprecation of lifecycles methods can be found here:
1036
- https://reactjs.org/blog/2018/03/29/react-v-16-3.html#component-lifecycle-changes
1050
+ More information about the deprecation of lifecycles methods can be found here:
1051
+ https://reactjs.org/blog/2018/03/29/react-v-16-3.html#component-lifecycle-changes
1037
1052
 
1038
1053
  ## 13.1.13
1039
1054
 
1040
1055
  ### Patch Changes
1041
1056
 
1042
- - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
1057
+ - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
1043
1058
 
1044
- Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
1045
- non-relative imports as relative imports
1059
+ Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
1060
+ non-relative imports as relative imports
1046
1061
 
1047
1062
  ## 13.1.12
1048
1063
 
1049
1064
  ### Patch Changes
1050
1065
 
1051
- - [patch][ecca4d1dbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4d1dbb):
1066
+ - [patch][ecca4d1dbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4d1dbb):
1052
1067
 
1053
- Upgraded Typescript to 3.3.x
1068
+ Upgraded Typescript to 3.3.x
1054
1069
 
1055
1070
  ## 13.1.11
1056
1071
 
1057
1072
  ### Patch Changes
1058
1073
 
1059
- - [patch][708028db86](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/708028db86):
1074
+ - [patch][708028db86](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/708028db86):
1060
1075
 
1061
- Change all the imports to theme in Core to use multi entry points
1076
+ Change all the imports to theme in Core to use multi entry points
1062
1077
 
1063
1078
  ## 13.1.10
1064
1079
 
1065
1080
  ### Patch Changes
1066
1081
 
1067
- - [patch][de35ce8c67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/de35ce8c67):
1082
+ - [patch][de35ce8c67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/de35ce8c67):
1068
1083
 
1069
- Updates component maintainers
1084
+ Updates component maintainers
1070
1085
 
1071
1086
  ## 13.1.9
1072
1087
 
1073
1088
  ### Patch Changes
1074
1089
 
1075
- - [patch][926b43142b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926b43142b):
1090
+ - [patch][926b43142b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926b43142b):
1076
1091
 
1077
- Analytics-next has been converted to Typescript. Typescript consumers will now get static type
1078
- safety. Flow types are no longer provided. No behavioural changes.
1092
+ Analytics-next has been converted to Typescript. Typescript consumers will now get static type
1093
+ safety. Flow types are no longer provided. No behavioural changes.
1079
1094
 
1080
- **Breaking changes**
1095
+ **Breaking changes**
1081
1096
 
1082
- - `withAnalyticsForSumTypeProps` alias has been removed, please use `withAnalyticsEvents`
1083
- - `AnalyticsContextWrappedComp` alias has been removed, please use `withAnalyticsContext`
1097
+ - `withAnalyticsForSumTypeProps` alias has been removed, please use `withAnalyticsEvents`
1098
+ - `AnalyticsContextWrappedComp` alias has been removed, please use `withAnalyticsContext`
1084
1099
 
1085
- **Breaking changes to TypeScript annotations**
1100
+ **Breaking changes to TypeScript annotations**
1086
1101
 
1087
- - `withAnalyticsEvents` now infers proptypes automatically, consumers no longer need to
1088
- provide props as a generic type.
1089
- - `withAnalyticsContext` now infers proptypes automatically, consumers no longer need to
1090
- provide props as a generic type.
1091
- - Type `WithAnalyticsEventProps` has been renamed to `WithAnalyticsEventsProps` to match
1092
- source code
1093
- - Type `CreateUIAnalyticsEventSignature` has been renamed to `CreateUIAnalyticsEvent` to match
1094
- source code
1095
- - Type `UIAnalyticsEventHandlerSignature` has been renamed to `UIAnalyticsEventHandler` to
1096
- match source code
1097
- - Type `AnalyticsEventsPayload` has been renamed to `AnalyticsEventPayload`
1098
- - Type `ObjectType` has been removed, please use `Record<string, any>` or `[key: string]: any`
1099
- - Type `UIAnalyticsEventInterface` has been removed, please use `UIAnalyticsEvent`
1100
- - Type `AnalyticsEventInterface` has been removed, please use `AnalyticsEvent`
1101
- - Type `CreateAndFireEventFunction` removed and should now be inferred by TypeScript
1102
- - Type `AnalyticsEventUpdater` removed and should now be inferred by TypeScript
1102
+ - `withAnalyticsEvents` now infers proptypes automatically, consumers no longer need to provide
1103
+ props as a generic type.
1104
+ - `withAnalyticsContext` now infers proptypes automatically, consumers no longer need to provide
1105
+ props as a generic type.
1106
+ - Type `WithAnalyticsEventProps` has been renamed to `WithAnalyticsEventsProps` to match source
1107
+ code
1108
+ - Type `CreateUIAnalyticsEventSignature` has been renamed to `CreateUIAnalyticsEvent` to match
1109
+ source code
1110
+ - Type `UIAnalyticsEventHandlerSignature` has been renamed to `UIAnalyticsEventHandler` to match
1111
+ source code
1112
+ - Type `AnalyticsEventsPayload` has been renamed to `AnalyticsEventPayload`
1113
+ - Type `ObjectType` has been removed, please use `Record<string, any>` or `[key: string]: any`
1114
+ - Type `UIAnalyticsEventInterface` has been removed, please use `UIAnalyticsEvent`
1115
+ - Type `AnalyticsEventInterface` has been removed, please use `AnalyticsEvent`
1116
+ - Type `CreateAndFireEventFunction` removed and should now be inferred by TypeScript
1117
+ - Type `AnalyticsEventUpdater` removed and should now be inferred by TypeScript
1103
1118
 
1104
1119
  ## 13.1.8
1105
1120
 
1106
1121
  ### Patch Changes
1107
1122
 
1108
- - [patch][60e3ba3eed](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/60e3ba3eed):
1123
+ - [patch][60e3ba3eed](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/60e3ba3eed):
1109
1124
 
1110
- Made table headers accessible and sortable with keyboard
1125
+ Made table headers accessible and sortable with keyboard
1111
1126
 
1112
1127
  ## 13.1.7
1113
1128
 
1114
- - Updated dependencies
1115
- [7e9d653278](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e9d653278):
1116
- - @atlaskit/avatar@16.0.8
1117
- - @atlaskit/toggle@8.0.0
1129
+ - Updated dependencies
1130
+ [7e9d653278](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e9d653278):
1131
+ - @atlaskit/avatar@16.0.8
1132
+ - @atlaskit/toggle@8.0.0
1118
1133
 
1119
1134
  ## 13.1.6
1120
1135
 
1121
1136
  ### Patch Changes
1122
1137
 
1123
- - [patch][9f8ab1084b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9f8ab1084b):
1138
+ - [patch][9f8ab1084b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9f8ab1084b):
1124
1139
 
1125
- Consume analytics-next ts type definitions as an ambient declaration.
1140
+ Consume analytics-next ts type definitions as an ambient declaration.
1126
1141
 
1127
1142
  ## 13.1.5
1128
1143
 
1129
1144
  ### Patch Changes
1130
1145
 
1131
- - [patch][bbff8a7d87](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bbff8a7d87):
1146
+ - [patch][bbff8a7d87](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bbff8a7d87):
1132
1147
 
1133
- Fixes bug, missing version.json file
1148
+ Fixes bug, missing version.json file
1134
1149
 
1135
1150
  ## 13.1.4
1136
1151
 
1137
1152
  ### Patch Changes
1138
1153
 
1139
- - [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
1154
+ - [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
1140
1155
 
1141
- In this PR, we are:
1156
+ In this PR, we are:
1142
1157
 
1143
- - Re-introducing dist build folders
1144
- - Adding back cjs
1145
- - Replacing es5 by cjs and es2015 by esm
1146
- - Creating folders at the root for entry-points
1147
- - Removing the generation of the entry-points at the root Please see this
1148
- [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this
1149
- [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points)
1150
- for further details
1158
+ - Re-introducing dist build folders
1159
+ - Adding back cjs
1160
+ - Replacing es5 by cjs and es2015 by esm
1161
+ - Creating folders at the root for entry-points
1162
+ - Removing the generation of the entry-points at the root Please see this
1163
+ [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this
1164
+ [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points)
1165
+ for further details
1151
1166
 
1152
1167
  ## 13.1.3
1153
1168
 
1154
1169
  ### Patch Changes
1155
1170
 
1156
- - [patch][d0db01b410](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d0db01b410):
1171
+ - [patch][d0db01b410](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d0db01b410):
1157
1172
 
1158
- TypeScript users of withAnalyticsEvents and withAnalyticsContext are now required to provide
1159
- props as a generic type. This is so that TypeScript can correctly calculate the props and
1160
- defaultProps of the returned component.
1173
+ TypeScript users of withAnalyticsEvents and withAnalyticsContext are now required to provide props
1174
+ as a generic type. This is so that TypeScript can correctly calculate the props and defaultProps
1175
+ of the returned component.
1161
1176
 
1162
- Before:
1177
+ Before:
1163
1178
 
1164
- ```typescript
1165
- withAnalyticsEvents()(Button) as ComponentClass<Props>;
1166
- ```
1179
+ ```typescript
1180
+ withAnalyticsEvents()(Button) as ComponentClass<Props>;
1181
+ ```
1167
1182
 
1168
- After:
1183
+ After:
1169
1184
 
1170
- ```typescript
1171
- withAnalyticsEvents<Props>()(Button);
1172
- ```
1185
+ ```typescript
1186
+ withAnalyticsEvents<Props>()(Button);
1187
+ ```
1173
1188
 
1174
1189
  ## 13.1.2
1175
1190
 
1176
1191
  ### Patch Changes
1177
1192
 
1178
- - [patch][29a1f158c1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/29a1f158c1):
1193
+ - [patch][29a1f158c1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/29a1f158c1):
1179
1194
 
1180
- Use default react import in typescript files.
1195
+ Use default react import in typescript files.
1181
1196
 
1182
1197
  ## 13.1.1
1183
1198
 
1184
1199
  ### Patch Changes
1185
1200
 
1186
- - [patch][93bcf314c6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/93bcf314c6):
1201
+ - [patch][93bcf314c6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/93bcf314c6):
1187
1202
 
1188
- Added missing tslib dep
1203
+ Added missing tslib dep
1189
1204
 
1190
1205
  ## 13.1.0
1191
1206
 
1192
- - [minor][647118a5ce](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/647118a5ce):
1207
+ - [minor][647118a5ce](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/647118a5ce):
1193
1208
 
1194
- - Added onPageRowUpdate function prop to dynamic table to be passed the currently shown table
1195
- items and moved validateSortKey from the deprecated componentWillMount and
1196
- componentWillRecieveProps to getDerivedStateFromProps
1209
+ - Added onPageRowUpdate function prop to dynamic table to be passed the currently shown table
1210
+ items and moved validateSortKey from the deprecated componentWillMount and
1211
+ componentWillRecieveProps to getDerivedStateFromProps
1197
1212
 
1198
1213
  ## 13.0.2
1199
1214
 
1200
- - [patch][b0ef06c685](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0ef06c685):
1215
+ - [patch][b0ef06c685](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0ef06c685):
1201
1216
 
1202
- - This is just a safety release in case anything strange happened in in the previous one. See
1203
- Pull Request #5942 for details
1217
+ - This is just a safety release in case anything strange happened in in the previous one. See Pull
1218
+ Request #5942 for details
1204
1219
 
1205
1220
  ## 13.0.1
1206
1221
 
1207
- - Updated dependencies
1208
- [215688984e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/215688984e):
1209
- - Updated dependencies
1210
- [8c65f23d32](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8c65f23d32):
1211
- - @atlaskit/button@13.0.4
1212
- - @atlaskit/spinner@12.0.0
1213
- - @atlaskit/pagination@12.0.0
1222
+ - Updated dependencies
1223
+ [215688984e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/215688984e):
1224
+ - Updated dependencies
1225
+ [8c65f23d32](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8c65f23d32):
1226
+ - @atlaskit/button@13.0.4
1227
+ - @atlaskit/spinner@12.0.0
1228
+ - @atlaskit/pagination@12.0.0
1214
1229
 
1215
1230
  ## 13.0.0
1216
1231
 
1217
- - [major][3d95467c4b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3d95467c4b):
1232
+ - [major][3d95467c4b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3d95467c4b):
1218
1233
 
1219
- - Dynamic table has been internally converted to TypeScript.
1220
- - Drops Flow support.
1221
- - TypeScript consumers will get static type safety.
1222
- - No longer falls back to cell.content for ordering when cell.key is not provided. When
1223
- cell.key is not provided, it will now preserve original ordering, while still respecting
1224
- sort order (i.e. ASC and DESC).
1225
- - No other API or behavioural changes.
1234
+ - Dynamic table has been internally converted to TypeScript.
1235
+ - Drops Flow support.
1236
+ - TypeScript consumers will get static type safety.
1237
+ - No longer falls back to cell.content for ordering when cell.key is not provided. When cell.key
1238
+ is not provided, it will now preserve original ordering, while still respecting sort order (i.e.
1239
+ ASC and DESC).
1240
+ - No other API or behavioural changes.
1226
1241
 
1227
1242
  ## 12.0.0
1228
1243
 
1229
- - [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
1244
+ - [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
1230
1245
 
1231
- - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
1232
- this package, please ensure you use at least this version of react and react-dom.
1246
+ - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
1247
+ this package, please ensure you use at least this version of react and react-dom.
1233
1248
 
1234
1249
  ## 11.0.4
1235
1250
 
1236
- - [patch][08321f585d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/08321f585d):
1251
+ - [patch][08321f585d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/08321f585d):
1237
1252
 
1238
- - Internal changes only. Makes DynamicTable compatible with SSR.
1253
+ - Internal changes only. Makes DynamicTable compatible with SSR.
1239
1254
 
1240
1255
  ## 11.0.3
1241
1256
 
1242
- - Updated dependencies
1243
- [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
1244
- - @atlaskit/docs@7.0.3
1245
- - @atlaskit/avatar@15.0.4
1246
- - @atlaskit/button@12.0.3
1247
- - @atlaskit/dropdown-menu@7.0.6
1248
- - @atlaskit/pagination@10.0.4
1249
- - @atlaskit/spinner@10.0.7
1250
- - @atlaskit/toggle@6.0.4
1251
- - @atlaskit/theme@8.1.7
1257
+ - Updated dependencies
1258
+ [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
1259
+ - @atlaskit/docs@7.0.3
1260
+ - @atlaskit/avatar@15.0.4
1261
+ - @atlaskit/button@12.0.3
1262
+ - @atlaskit/dropdown-menu@7.0.6
1263
+ - @atlaskit/pagination@10.0.4
1264
+ - @atlaskit/spinner@10.0.7
1265
+ - @atlaskit/toggle@6.0.4
1266
+ - @atlaskit/theme@8.1.7
1252
1267
 
1253
1268
  ## 11.0.2
1254
1269
 
1255
- - Updated dependencies
1256
- [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
1257
- - @atlaskit/docs@7.0.2
1258
- - @atlaskit/analytics-next@4.0.3
1259
- - @atlaskit/avatar@15.0.3
1260
- - @atlaskit/dropdown-menu@7.0.4
1261
- - @atlaskit/pagination@10.0.3
1262
- - @atlaskit/spinner@10.0.5
1263
- - @atlaskit/theme@8.1.6
1264
- - @atlaskit/toggle@6.0.3
1265
- - @atlaskit/button@12.0.0
1270
+ - Updated dependencies
1271
+ [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
1272
+ - @atlaskit/docs@7.0.2
1273
+ - @atlaskit/analytics-next@4.0.3
1274
+ - @atlaskit/avatar@15.0.3
1275
+ - @atlaskit/dropdown-menu@7.0.4
1276
+ - @atlaskit/pagination@10.0.3
1277
+ - @atlaskit/spinner@10.0.5
1278
+ - @atlaskit/theme@8.1.6
1279
+ - @atlaskit/toggle@6.0.3
1280
+ - @atlaskit/button@12.0.0
1266
1281
 
1267
1282
  ## 11.0.1
1268
1283
 
1269
- - Updated dependencies
1270
- [9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
1271
- - @atlaskit/docs@7.0.1
1272
- - @atlaskit/analytics-next@4.0.1
1273
- - @atlaskit/avatar@15.0.1
1274
- - @atlaskit/dropdown-menu@7.0.1
1275
- - @atlaskit/pagination@10.0.1
1276
- - @atlaskit/spinner@10.0.1
1277
- - @atlaskit/theme@8.0.1
1278
- - @atlaskit/toggle@6.0.1
1279
- - @atlaskit/button@11.0.0
1284
+ - Updated dependencies
1285
+ [9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
1286
+ - @atlaskit/docs@7.0.1
1287
+ - @atlaskit/analytics-next@4.0.1
1288
+ - @atlaskit/avatar@15.0.1
1289
+ - @atlaskit/dropdown-menu@7.0.1
1290
+ - @atlaskit/pagination@10.0.1
1291
+ - @atlaskit/spinner@10.0.1
1292
+ - @atlaskit/theme@8.0.1
1293
+ - @atlaskit/toggle@6.0.1
1294
+ - @atlaskit/button@11.0.0
1280
1295
 
1281
1296
  ## 11.0.0
1282
1297
 
1283
- - [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
1298
+ - [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
1284
1299
 
1285
- - Drop ES5 from all the flow modules
1300
+ - Drop ES5 from all the flow modules
1286
1301
 
1287
- ### Dropping CJS support in all @atlaskit packages
1302
+ ### Dropping CJS support in all @atlaskit packages
1288
1303
 
1289
- As a breaking change, all @atlaskit packages will be dropping cjs distributions and will only
1290
- distribute esm. This means all distributed code will be transpiled, but will still contain
1291
- `import` and `export` declarations.
1304
+ As a breaking change, all @atlaskit packages will be dropping cjs distributions and will only
1305
+ distribute esm. This means all distributed code will be transpiled, but will still contain
1306
+ `import` and `export` declarations.
1292
1307
 
1293
- The major reason for doing this is to allow us to support multiple entry points in packages,
1294
- e.g:
1308
+ The major reason for doing this is to allow us to support multiple entry points in packages, e.g:
1295
1309
 
1296
- ```js
1297
- import colors from `@atlaskit/theme/colors`;
1298
- ```
1310
+ ```js
1311
+ import colors from `@atlaskit/theme/colors`;
1312
+ ```
1299
1313
 
1300
- Previously this was sort of possible for consumers by doing something like:
1314
+ Previously this was sort of possible for consumers by doing something like:
1301
1315
 
1302
- ```js
1303
- import colors from `@atlaskit/theme/dist/esm/colors`;
1304
- ```
1316
+ ```js
1317
+ import colors from `@atlaskit/theme/dist/esm/colors`;
1318
+ ```
1305
1319
 
1306
- This has a couple of issues. 1, it treats the file system as API making internal refactors
1307
- harder, we have to worry about how consumers might be using things that aren't _actually_
1308
- supposed to be used. 2. We are unable to do this _internally_ in @atlaskit packages. This leads
1309
- to lots of packages bundling all of theme, just to use a single color, especially in situations
1310
- where tree shaking fails.
1320
+ This has a couple of issues. 1, it treats the file system as API making internal refactors harder,
1321
+ we have to worry about how consumers might be using things that aren't _actually_ supposed to be
1322
+ used. 2. We are unable to do this _internally_ in @atlaskit packages. This leads to lots of
1323
+ packages bundling all of theme, just to use a single color, especially in situations where tree
1324
+ shaking fails.
1311
1325
 
1312
- To support being able to use multiple entrypoints internally, we unfortunately cannot have
1313
- multiple distributions as they would need to have very different imports from of their own
1314
- internal dependencies.
1326
+ To support being able to use multiple entrypoints internally, we unfortunately cannot have
1327
+ multiple distributions as they would need to have very different imports from of their own
1328
+ internal dependencies.
1315
1329
 
1316
- ES Modules are widely supported by all modern bundlers and can be worked around in node
1317
- environments.
1330
+ ES Modules are widely supported by all modern bundlers and can be worked around in node
1331
+ environments.
1318
1332
 
1319
- We may choose to revisit this solution in the future if we find any unintended condequences, but
1320
- we see this as a pretty sane path forward which should lead to some major bundle size decreases,
1321
- saner API's and simpler package architecture.
1333
+ We may choose to revisit this solution in the future if we find any unintended condequences, but
1334
+ we see this as a pretty sane path forward which should lead to some major bundle size decreases,
1335
+ saner API's and simpler package architecture.
1322
1336
 
1323
- Please reach out to #fabric-build (if in Atlassian) or create an issue in
1324
- [Design System Support](https://ecosystem.atlassian.net/secure/CreateIssue.jspa?pid=24670) (for
1325
- external) if you have any questions or queries about this.
1337
+ Please reach out to #fabric-build (if in Atlassian) or create an issue in
1338
+ [Design System Support](https://ecosystem.atlassian.net/secure/CreateIssue.jspa?pid=24670) (for
1339
+ external) if you have any questions or queries about this.
1326
1340
 
1327
1341
  ## 10.0.23
1328
1342
 
1329
- - [patch][d026472527](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d026472527):
1343
+ - [patch][d026472527](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d026472527):
1330
1344
 
1331
- - Sorting behaviour fixed for integers. New behaviour groups datatypes with integers first,
1332
- then strings, then other values, and sorting is performed within those groups.
1333
- - Fixed sorting for strings; lowercase, uppercase and accented characters will be treated as
1334
- equivalent.
1345
+ - Sorting behaviour fixed for integers. New behaviour groups datatypes with integers first, then
1346
+ strings, then other values, and sorting is performed within those groups.
1347
+ - Fixed sorting for strings; lowercase, uppercase and accented characters will be treated as
1348
+ equivalent.
1335
1349
 
1336
1350
  ## 10.0.22
1337
1351
 
1338
- - Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
1339
- - @atlaskit/analytics-next@3.1.2
1340
- - @atlaskit/avatar@14.1.7
1341
- - @atlaskit/button@10.1.1
1342
- - @atlaskit/dropdown-menu@6.1.25
1343
- - @atlaskit/pagination@9.0.1
1344
- - @atlaskit/spinner@9.0.13
1345
- - @atlaskit/theme@7.0.1
1346
- - @atlaskit/toggle@5.0.14
1347
- - @atlaskit/docs@6.0.0
1352
+ - Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
1353
+ - @atlaskit/analytics-next@3.1.2
1354
+ - @atlaskit/avatar@14.1.7
1355
+ - @atlaskit/button@10.1.1
1356
+ - @atlaskit/dropdown-menu@6.1.25
1357
+ - @atlaskit/pagination@9.0.1
1358
+ - @atlaskit/spinner@9.0.13
1359
+ - @atlaskit/theme@7.0.1
1360
+ - @atlaskit/toggle@5.0.14
1361
+ - @atlaskit/docs@6.0.0
1348
1362
 
1349
1363
  ## 10.0.21
1350
1364
 
1351
- - Updated dependencies [1a09599](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1a09599):
1352
- - @atlaskit/pagination@9.0.0
1365
+ - Updated dependencies [1a09599](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1a09599):
1366
+ - @atlaskit/pagination@9.0.0
1353
1367
 
1354
1368
  ## 10.0.20
1355
1369
 
1356
- - Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
1357
- - @atlaskit/docs@5.2.3
1358
- - @atlaskit/button@10.0.4
1359
- - @atlaskit/dropdown-menu@6.1.24
1360
- - @atlaskit/pagination@8.0.8
1361
- - @atlaskit/spinner@9.0.12
1362
- - @atlaskit/toggle@5.0.13
1363
- - @atlaskit/theme@7.0.0
1364
- - @atlaskit/avatar@14.1.6
1370
+ - Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
1371
+ - @atlaskit/docs@5.2.3
1372
+ - @atlaskit/button@10.0.4
1373
+ - @atlaskit/dropdown-menu@6.1.24
1374
+ - @atlaskit/pagination@8.0.8
1375
+ - @atlaskit/spinner@9.0.12
1376
+ - @atlaskit/toggle@5.0.13
1377
+ - @atlaskit/theme@7.0.0
1378
+ - @atlaskit/avatar@14.1.6
1365
1379
 
1366
1380
  ## 10.0.19
1367
1381
 
1368
- - [patch][492b8ea](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/492b8ea):
1382
+ - [patch][492b8ea](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/492b8ea):
1369
1383
 
1370
- - Added `colspan` to cell type. Added example using `colspan`.
1384
+ - Added `colspan` to cell type. Added example using `colspan`.
1371
1385
 
1372
1386
  ## 10.0.18
1373
1387
 
1374
- - Updated dependencies [6998f11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6998f11):
1375
- - @atlaskit/docs@5.2.1
1376
- - @atlaskit/analytics-next@3.1.1
1377
- - @atlaskit/avatar@14.1.4
1378
- - @atlaskit/dropdown-menu@6.1.22
1379
- - @atlaskit/pagination@8.0.6
1380
- - @atlaskit/spinner@9.0.11
1381
- - @atlaskit/theme@6.2.1
1382
- - @atlaskit/toggle@5.0.11
1383
- - @atlaskit/button@10.0.0
1388
+ - Updated dependencies [6998f11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6998f11):
1389
+ - @atlaskit/docs@5.2.1
1390
+ - @atlaskit/analytics-next@3.1.1
1391
+ - @atlaskit/avatar@14.1.4
1392
+ - @atlaskit/dropdown-menu@6.1.22
1393
+ - @atlaskit/pagination@8.0.6
1394
+ - @atlaskit/spinner@9.0.11
1395
+ - @atlaskit/theme@6.2.1
1396
+ - @atlaskit/toggle@5.0.11
1397
+ - @atlaskit/button@10.0.0
1384
1398
 
1385
1399
  ## 10.0.17
1386
1400
 
1387
- - [patch][abd3a39](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/abd3a39):
1401
+ - [patch][abd3a39](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/abd3a39):
1388
1402
 
1389
- - Bump react-beautiful-dnd dependency to v10.0.2
1403
+ - Bump react-beautiful-dnd dependency to v10.0.2
1390
1404
 
1391
1405
  ## 10.0.16
1392
1406
 
1393
- - [patch][85b3592](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/85b3592):
1407
+ - [patch][85b3592](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/85b3592):
1394
1408
 
1395
- - Passes analytics event through onSetPage prop when pagination component is clicked on
1409
+ - Passes analytics event through onSetPage prop when pagination component is clicked on
1396
1410
 
1397
1411
  ## 10.0.15
1398
1412
 
1399
- - [patch] Fixing blank state for datetime-picker in Firefox.
1400
- [0e6d838](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0e6d838)
1413
+ - [patch] Fixing blank state for datetime-picker in Firefox.
1414
+ [0e6d838](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0e6d838)
1401
1415
 
1402
1416
  ## 10.0.14
1403
1417
 
1404
- - [patch] Adds missing implicit @babel/runtime dependency
1405
- [b71751b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b71751b)
1418
+ - [patch] Adds missing implicit @babel/runtime dependency
1419
+ [b71751b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b71751b)
1406
1420
 
1407
1421
  ## 10.0.13
1408
1422
 
1409
- - [patch] Added space of 3x gridSize between table and pagination component
1410
- [83a3471](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/83a3471)
1411
- - [patch] Updated dependencies
1412
- [8276156](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8276156)
1413
- - @atlaskit/pagination@8.0.0
1423
+ - [patch] Added space of 3x gridSize between table and pagination component
1424
+ [83a3471](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/83a3471)
1425
+ - [patch] Updated dependencies
1426
+ [8276156](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8276156)
1427
+ - @atlaskit/pagination@8.0.0
1414
1428
 
1415
1429
  ## 10.0.12
1416
1430
 
1417
- - [patch] Pulling the shared styles from @atlaskit/theme and removed dependency on
1418
- util-shraed-styles [7d51a09](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7d51a09)
1431
+ - [patch] Pulling the shared styles from @atlaskit/theme and removed dependency on
1432
+ util-shraed-styles [7d51a09](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7d51a09)
1419
1433
 
1420
1434
  ## 10.0.11
1421
1435
 
1422
- - [patch] Adds sideEffects: false to allow proper tree shaking
1423
- [b5d6d04](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b5d6d04)
1436
+ - [patch] Adds sideEffects: false to allow proper tree shaking
1437
+ [b5d6d04](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b5d6d04)
1424
1438
 
1425
1439
  ## 10.0.9
1426
1440
 
1427
- - [patch] Updated dependencies
1428
- [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
1429
- - @atlaskit/theme@6.0.0
1430
- - @atlaskit/toggle@5.0.6
1431
- - @atlaskit/spinner@9.0.6
1432
- - @atlaskit/dropdown-menu@6.1.8
1433
- - @atlaskit/button@9.0.6
1434
- - @atlaskit/avatar@14.0.8
1435
- - @atlaskit/docs@5.0.6
1441
+ - [patch] Updated dependencies
1442
+ [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
1443
+ - @atlaskit/theme@6.0.0
1444
+ - @atlaskit/toggle@5.0.6
1445
+ - @atlaskit/spinner@9.0.6
1446
+ - @atlaskit/dropdown-menu@6.1.8
1447
+ - @atlaskit/button@9.0.6
1448
+ - @atlaskit/avatar@14.0.8
1449
+ - @atlaskit/docs@5.0.6
1436
1450
 
1437
1451
  ## 10.0.8
1438
1452
 
1439
- - [patch] Bumping react-beautiful-dnd to version 9. Making use of use onBeforeDragStart for
1440
- dynamic table [9cbd494](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9cbd494)
1441
- - [none] Updated dependencies
1442
- [9cbd494](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9cbd494)
1453
+ - [patch] Bumping react-beautiful-dnd to version 9. Making use of use onBeforeDragStart for dynamic
1454
+ table [9cbd494](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9cbd494)
1455
+ - [none] Updated dependencies
1456
+ [9cbd494](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9cbd494)
1443
1457
 
1444
1458
  ## 10.0.7
1445
1459
 
1446
- - [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions
1447
- read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details
1448
- [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1449
- - [none] Updated dependencies
1450
- [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1451
- - @atlaskit/analytics-next@3.0.4
1452
- - @atlaskit/toggle@5.0.5
1453
- - @atlaskit/pagination@7.0.4
1454
- - @atlaskit/button@9.0.5
1455
- - @atlaskit/theme@5.1.3
1456
- - @atlaskit/spinner@9.0.5
1457
- - @atlaskit/dropdown-menu@6.1.5
1458
- - @atlaskit/avatar@14.0.6
1460
+ - [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions
1461
+ read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details
1462
+ [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1463
+ - [none] Updated dependencies
1464
+ [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1465
+ - @atlaskit/analytics-next@3.0.4
1466
+ - @atlaskit/toggle@5.0.5
1467
+ - @atlaskit/pagination@7.0.4
1468
+ - @atlaskit/button@9.0.5
1469
+ - @atlaskit/theme@5.1.3
1470
+ - @atlaskit/spinner@9.0.5
1471
+ - @atlaskit/dropdown-menu@6.1.5
1472
+ - @atlaskit/avatar@14.0.6
1459
1473
 
1460
1474
  ## 10.0.6
1461
1475
 
1462
- - [patch] Bumping react-beautiful-dnd to 8.0.7 to fix timing issue with onDragStart
1463
- [812a39c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/812a39c)
1476
+ - [patch] Bumping react-beautiful-dnd to 8.0.7 to fix timing issue with onDragStart
1477
+ [812a39c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/812a39c)
1464
1478
 
1465
1479
  ## 10.0.5
1466
1480
 
1467
- - [patch] Updated dependencies
1468
- [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
1469
- - @atlaskit/toggle@5.0.4
1470
- - @atlaskit/button@9.0.4
1471
- - @atlaskit/theme@5.1.2
1472
- - @atlaskit/spinner@9.0.4
1473
- - @atlaskit/pagination@7.0.3
1474
- - @atlaskit/analytics-next@3.0.3
1475
- - @atlaskit/docs@5.0.2
1476
- - @atlaskit/dropdown-menu@6.1.4
1477
- - @atlaskit/avatar@14.0.5
1481
+ - [patch] Updated dependencies
1482
+ [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
1483
+ - @atlaskit/toggle@5.0.4
1484
+ - @atlaskit/button@9.0.4
1485
+ - @atlaskit/theme@5.1.2
1486
+ - @atlaskit/spinner@9.0.4
1487
+ - @atlaskit/pagination@7.0.3
1488
+ - @atlaskit/analytics-next@3.0.3
1489
+ - @atlaskit/docs@5.0.2
1490
+ - @atlaskit/dropdown-menu@6.1.4
1491
+ - @atlaskit/avatar@14.0.5
1478
1492
 
1479
1493
  ## 10.0.4
1480
1494
 
1481
- - [patch] Add a SSR test for every package, add react-dom and build-utils in devDependencies
1482
- [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
1483
- - [none] Updated dependencies
1484
- [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
1485
- - @atlaskit/analytics-next@3.0.2
1486
- - @atlaskit/toggle@5.0.3
1487
- - @atlaskit/pagination@7.0.2
1488
- - @atlaskit/button@9.0.3
1489
- - @atlaskit/theme@5.1.1
1490
- - @atlaskit/spinner@9.0.3
1491
- - @atlaskit/dropdown-menu@6.1.3
1492
- - @atlaskit/avatar@14.0.4
1495
+ - [patch] Add a SSR test for every package, add react-dom and build-utils in devDependencies
1496
+ [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
1497
+ - [none] Updated dependencies
1498
+ [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
1499
+ - @atlaskit/analytics-next@3.0.2
1500
+ - @atlaskit/toggle@5.0.3
1501
+ - @atlaskit/pagination@7.0.2
1502
+ - @atlaskit/button@9.0.3
1503
+ - @atlaskit/theme@5.1.1
1504
+ - @atlaskit/spinner@9.0.3
1505
+ - @atlaskit/dropdown-menu@6.1.3
1506
+ - @atlaskit/avatar@14.0.4
1493
1507
 
1494
1508
  ## 10.0.3
1495
1509
 
1496
- - [patch] Upgrading react-beautiful-dnd to 8.0.1
1497
- [87cd977](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/87cd977)
1498
- - [patch] Upgrading react-beautiful-dnd to 8.0.0
1499
- [22efc08](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/22efc08)
1500
- - [none] Updated dependencies
1501
- [87cd977](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/87cd977)
1502
- - [none] Updated dependencies
1503
- [22efc08](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/22efc08)
1510
+ - [patch] Upgrading react-beautiful-dnd to 8.0.1
1511
+ [87cd977](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/87cd977)
1512
+ - [patch] Upgrading react-beautiful-dnd to 8.0.0
1513
+ [22efc08](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/22efc08)
1514
+ - [none] Updated dependencies
1515
+ [87cd977](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/87cd977)
1516
+ - [none] Updated dependencies
1517
+ [22efc08](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/22efc08)
1504
1518
 
1505
1519
  ## 10.0.2
1506
1520
 
1507
- - [patch] Upgrading react-beautiful-dnd to 8.0.5
1508
- [6052132](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6052132)
1509
- - [none] Updated dependencies
1510
- [6052132](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6052132)
1521
+ - [patch] Upgrading react-beautiful-dnd to 8.0.5
1522
+ [6052132](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6052132)
1523
+ - [none] Updated dependencies
1524
+ [6052132](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6052132)
1511
1525
 
1512
1526
  ## 10.0.1
1513
1527
 
1514
- - [patch] Move analytics tests and replace elements to core
1515
- [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
1516
- - [none] Updated dependencies
1517
- [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
1518
- - @atlaskit/analytics-next@3.0.1
1519
- - @atlaskit/toggle@5.0.1
1520
- - @atlaskit/pagination@7.0.1
1521
- - @atlaskit/button@9.0.2
1522
- - @atlaskit/spinner@9.0.2
1523
- - @atlaskit/docs@5.0.1
1524
- - @atlaskit/dropdown-menu@6.1.2
1525
- - @atlaskit/avatar@14.0.2
1528
+ - [patch] Move analytics tests and replace elements to core
1529
+ [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
1530
+ - [none] Updated dependencies
1531
+ [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
1532
+ - @atlaskit/analytics-next@3.0.1
1533
+ - @atlaskit/toggle@5.0.1
1534
+ - @atlaskit/pagination@7.0.1
1535
+ - @atlaskit/button@9.0.2
1536
+ - @atlaskit/spinner@9.0.2
1537
+ - @atlaskit/docs@5.0.1
1538
+ - @atlaskit/dropdown-menu@6.1.2
1539
+ - @atlaskit/avatar@14.0.2
1526
1540
 
1527
1541
  ## 10.0.0
1528
1542
 
1529
- - [major] Provides analytics for common component interations. See the
1530
- [Instrumented Components](https://atlaskit.atlassian.com/packages/core/analytics-next) section
1531
- for more details. If you are using enzyme for testing you will have to use
1532
- [our forked version of the library](https://atlaskit.atlassian.com/docs/guides/testing#we-use-a-forked-version-of-enzyme).
1533
- [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1534
- - [major] Updates to React ^16.4.0
1535
- [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1536
- - [major] Updated dependencies
1537
- [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1538
- - @atlaskit/analytics-next@3.0.0
1539
- - @atlaskit/toggle@5.0.0
1540
- - @atlaskit/pagination@7.0.0
1541
- - @atlaskit/button@9.0.0
1542
- - @atlaskit/theme@5.0.0
1543
- - @atlaskit/spinner@9.0.0
1544
- - @atlaskit/docs@5.0.0
1545
- - @atlaskit/dropdown-menu@6.0.0
1546
- - @atlaskit/avatar@14.0.0
1547
- - [major] Updated dependencies
1548
- [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1549
- - @atlaskit/analytics-next@3.0.0
1550
- - @atlaskit/toggle@5.0.0
1551
- - @atlaskit/pagination@7.0.0
1552
- - @atlaskit/button@9.0.0
1553
- - @atlaskit/theme@5.0.0
1554
- - @atlaskit/spinner@9.0.0
1555
- - @atlaskit/docs@5.0.0
1556
- - @atlaskit/dropdown-menu@6.0.0
1557
- - @atlaskit/avatar@14.0.0
1543
+ - [major] Provides analytics for common component interations. See the
1544
+ [Instrumented Components](https://atlaskit.atlassian.com/packages/core/analytics-next) section for
1545
+ more details. If you are using enzyme for testing you will have to use
1546
+ [our forked version of the library](https://atlaskit.atlassian.com/docs/guides/testing#we-use-a-forked-version-of-enzyme).
1547
+ [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1548
+ - [major] Updates to React ^16.4.0
1549
+ [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1550
+ - [major] Updated dependencies
1551
+ [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1552
+ - @atlaskit/analytics-next@3.0.0
1553
+ - @atlaskit/toggle@5.0.0
1554
+ - @atlaskit/pagination@7.0.0
1555
+ - @atlaskit/button@9.0.0
1556
+ - @atlaskit/theme@5.0.0
1557
+ - @atlaskit/spinner@9.0.0
1558
+ - @atlaskit/docs@5.0.0
1559
+ - @atlaskit/dropdown-menu@6.0.0
1560
+ - @atlaskit/avatar@14.0.0
1561
+ - [major] Updated dependencies
1562
+ [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1563
+ - @atlaskit/analytics-next@3.0.0
1564
+ - @atlaskit/toggle@5.0.0
1565
+ - @atlaskit/pagination@7.0.0
1566
+ - @atlaskit/button@9.0.0
1567
+ - @atlaskit/theme@5.0.0
1568
+ - @atlaskit/spinner@9.0.0
1569
+ - @atlaskit/docs@5.0.0
1570
+ - @atlaskit/dropdown-menu@6.0.0
1571
+ - @atlaskit/avatar@14.0.0
1558
1572
 
1559
1573
  ## 9.2.6
1560
1574
 
1561
- - [none] Updated dependencies
1562
- [da63331](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/da63331)
1563
- - @atlaskit/button@8.2.5
1564
- - @atlaskit/dropdown-menu@5.2.3
1565
- - @atlaskit/avatar@13.0.0
1566
- - [patch] Updated dependencies
1567
- [7724115](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7724115)
1568
- - @atlaskit/avatar@13.0.0
1569
- - @atlaskit/button@8.2.5
1570
- - @atlaskit/dropdown-menu@5.2.3
1575
+ - [none] Updated dependencies
1576
+ [da63331](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/da63331)
1577
+ - @atlaskit/button@8.2.5
1578
+ - @atlaskit/dropdown-menu@5.2.3
1579
+ - @atlaskit/avatar@13.0.0
1580
+ - [patch] Updated dependencies
1581
+ [7724115](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7724115)
1582
+ - @atlaskit/avatar@13.0.0
1583
+ - @atlaskit/button@8.2.5
1584
+ - @atlaskit/dropdown-menu@5.2.3
1571
1585
 
1572
1586
  ## 9.2.5
1573
1587
 
1574
- - [patch] Updated dependencies
1575
- [8a01bcd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8a01bcd)
1576
- - @atlaskit/avatar@12.0.0
1577
- - @atlaskit/dropdown-menu@5.2.2
1588
+ - [patch] Updated dependencies
1589
+ [8a01bcd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8a01bcd)
1590
+ - @atlaskit/avatar@12.0.0
1591
+ - @atlaskit/dropdown-menu@5.2.2
1578
1592
 
1579
1593
  ## 9.2.4
1580
1594
 
1581
- - [patch] Remove or update \$FlowFixMe
1582
- [e8ad98a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e8ad98a)
1583
- - [none] Updated dependencies
1584
- [e8ad98a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e8ad98a)
1585
- - @atlaskit/button@8.2.4
1586
- - @atlaskit/dropdown-menu@5.2.1
1587
- - @atlaskit/avatar@11.2.2
1595
+ - [patch] Remove or update \$FlowFixMe
1596
+ [e8ad98a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e8ad98a)
1597
+ - [none] Updated dependencies
1598
+ [e8ad98a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e8ad98a)
1599
+ - @atlaskit/button@8.2.4
1600
+ - @atlaskit/dropdown-menu@5.2.1
1601
+ - @atlaskit/avatar@11.2.2
1588
1602
 
1589
1603
  ## 9.2.3
1590
1604
 
1591
- - [patch] Button should be a dev dependency
1592
- [50ca31b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/50ca31b)
1593
- - [none] Updated dependencies
1594
- [50ca31b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/50ca31b)
1605
+ - [patch] Button should be a dev dependency
1606
+ [50ca31b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/50ca31b)
1607
+ - [none] Updated dependencies
1608
+ [50ca31b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/50ca31b)
1595
1609
 
1596
1610
  ## 9.2.2
1597
1611
 
1598
- - [patch] Updated dependencies
1599
- [cdba8b3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cdba8b3)
1600
- - @atlaskit/spinner@8.0.0
1601
- - @atlaskit/button@8.2.3
1612
+ - [patch] Updated dependencies
1613
+ [cdba8b3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cdba8b3)
1614
+ - @atlaskit/spinner@8.0.0
1615
+ - @atlaskit/button@8.2.3
1602
1616
 
1603
1617
  ## 9.2.1
1604
1618
 
1605
- - [patch] Upgrading react-beautiful-dnd dependency to ^7.1.3
1606
- [024b7fb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/024b7fb)
1607
- - [none] Updated dependencies
1608
- [024b7fb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/024b7fb)
1619
+ - [patch] Upgrading react-beautiful-dnd dependency to ^7.1.3
1620
+ [024b7fb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/024b7fb)
1621
+ - [none] Updated dependencies
1622
+ [024b7fb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/024b7fb)
1609
1623
 
1610
1624
  ## 9.2.0
1611
1625
 
1612
- - [minor] Fixes types for Flow 0.74
1613
- [dc50cd2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dc50cd2)
1614
- - [none] Updated dependencies
1615
- [dc50cd2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dc50cd2)
1616
- - @atlaskit/button@8.2.0
1617
- - @atlaskit/spinner@7.1.0
1618
- - @atlaskit/dropdown-menu@5.1.0
1619
- - @atlaskit/avatar@11.2.0
1626
+ - [minor] Fixes types for Flow 0.74
1627
+ [dc50cd2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dc50cd2)
1628
+ - [none] Updated dependencies
1629
+ [dc50cd2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dc50cd2)
1630
+ - @atlaskit/button@8.2.0
1631
+ - @atlaskit/spinner@7.1.0
1632
+ - @atlaskit/dropdown-menu@5.1.0
1633
+ - @atlaskit/avatar@11.2.0
1620
1634
 
1621
1635
  ## 9.1.2
1622
1636
 
1623
- - [patch] Clean Changelogs - remove duplicates and empty entries
1624
- [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1625
- - [none] Updated dependencies
1626
- [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1627
- - @atlaskit/button@8.1.2
1628
- - @atlaskit/toggle@4.0.3
1629
- - @atlaskit/theme@4.0.4
1630
- - @atlaskit/spinner@7.0.2
1631
- - @atlaskit/pagination@6.0.5
1632
- - @atlaskit/dropdown-menu@5.0.4
1637
+ - [patch] Clean Changelogs - remove duplicates and empty entries
1638
+ [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1639
+ - [none] Updated dependencies
1640
+ [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1641
+ - @atlaskit/button@8.1.2
1642
+ - @atlaskit/toggle@4.0.3
1643
+ - @atlaskit/theme@4.0.4
1644
+ - @atlaskit/spinner@7.0.2
1645
+ - @atlaskit/pagination@6.0.5
1646
+ - @atlaskit/dropdown-menu@5.0.4
1633
1647
 
1634
1648
  ## 9.1.1
1635
1649
 
1636
- - [patch] Update changelogs to remove duplicate
1637
- [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
1638
- - [none] Updated dependencies
1639
- [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
1640
- - @atlaskit/theme@4.0.3
1641
- - @atlaskit/spinner@7.0.1
1642
- - @atlaskit/dropdown-menu@5.0.3
1643
- - @atlaskit/button@8.1.1
1644
- - @atlaskit/pagination@6.0.4
1645
- - @atlaskit/avatar@11.1.1
1646
- - @atlaskit/docs@4.1.1
1650
+ - [patch] Update changelogs to remove duplicate
1651
+ [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
1652
+ - [none] Updated dependencies
1653
+ [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
1654
+ - @atlaskit/theme@4.0.3
1655
+ - @atlaskit/spinner@7.0.1
1656
+ - @atlaskit/dropdown-menu@5.0.3
1657
+ - @atlaskit/button@8.1.1
1658
+ - @atlaskit/pagination@6.0.4
1659
+ - @atlaskit/avatar@11.1.1
1660
+ - @atlaskit/docs@4.1.1
1647
1661
 
1648
1662
  ## 9.1.0
1649
1663
 
1650
- - [minor] Update examples [9d20f54](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d20f54)
1651
- - [patch] Updated dependencies
1652
- [9d20f54](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d20f54)
1653
- - @atlaskit/spinner@7.0.0
1654
- - @atlaskit/dropdown-menu@5.0.2
1655
- - @atlaskit/avatar@11.1.0
1656
- - @atlaskit/toggle@4.0.2
1657
- - @atlaskit/docs@4.1.0
1658
- - @atlaskit/theme@4.0.2
1659
- - @atlaskit/pagination@6.0.3
1660
- - @atlaskit/button@8.1.0
1664
+ - [minor] Update examples [9d20f54](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d20f54)
1665
+ - [patch] Updated dependencies
1666
+ [9d20f54](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d20f54)
1667
+ - @atlaskit/spinner@7.0.0
1668
+ - @atlaskit/dropdown-menu@5.0.2
1669
+ - @atlaskit/avatar@11.1.0
1670
+ - @atlaskit/toggle@4.0.2
1671
+ - @atlaskit/docs@4.1.0
1672
+ - @atlaskit/theme@4.0.2
1673
+ - @atlaskit/pagination@6.0.3
1674
+ - @atlaskit/button@8.1.0
1661
1675
 
1662
1676
  ## 9.0.1
1663
1677
 
1664
- - [patch] Update readme's [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
1665
- - [patch] Updated dependencies
1666
- [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
1667
- - @atlaskit/toggle@4.0.1
1668
- - @atlaskit/button@8.0.1
1669
- - @atlaskit/theme@4.0.1
1670
- - @atlaskit/spinner@6.0.1
1671
- - @atlaskit/pagination@6.0.1
1672
- - @atlaskit/docs@4.0.1
1673
- - @atlaskit/dropdown-menu@5.0.1
1674
- - @atlaskit/avatar@11.0.1
1678
+ - [patch] Update readme's [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
1679
+ - [patch] Updated dependencies
1680
+ [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
1681
+ - @atlaskit/toggle@4.0.1
1682
+ - @atlaskit/button@8.0.1
1683
+ - @atlaskit/theme@4.0.1
1684
+ - @atlaskit/spinner@6.0.1
1685
+ - @atlaskit/pagination@6.0.1
1686
+ - @atlaskit/docs@4.0.1
1687
+ - @atlaskit/dropdown-menu@5.0.1
1688
+ - @atlaskit/avatar@11.0.1
1675
1689
 
1676
1690
  ## 9.0.0
1677
1691
 
1678
- - [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to
1679
- ^3.2.6 [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1680
- - [patch] Updated dependencies
1681
- [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1682
- - @atlaskit/toggle@4.0.0
1683
- - @atlaskit/button@8.0.0
1684
- - @atlaskit/theme@4.0.0
1685
- - @atlaskit/spinner@6.0.0
1686
- - @atlaskit/pagination@6.0.0
1687
- - @atlaskit/docs@4.0.0
1688
- - @atlaskit/dropdown-menu@5.0.0
1689
- - @atlaskit/avatar@11.0.0
1692
+ - [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to
1693
+ ^3.2.6 [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1694
+ - [patch] Updated dependencies
1695
+ [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1696
+ - @atlaskit/toggle@4.0.0
1697
+ - @atlaskit/button@8.0.0
1698
+ - @atlaskit/theme@4.0.0
1699
+ - @atlaskit/spinner@6.0.0
1700
+ - @atlaskit/pagination@6.0.0
1701
+ - @atlaskit/docs@4.0.0
1702
+ - @atlaskit/dropdown-menu@5.0.0
1703
+ - @atlaskit/avatar@11.0.0
1690
1704
 
1691
1705
  ## 8.1.0
1692
1706
 
1693
- - [minor] Add paginationi18n prop to dynamic-table which passes this to the i18n of its pagination
1694
- component [08054b1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/08054b1)
1707
+ - [minor] Add paginationi18n prop to dynamic-table which passes this to the i18n of its pagination
1708
+ component [08054b1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/08054b1)
1695
1709
 
1696
1710
  ## 8.0.3
1697
1711
 
1698
- - [patch] Updated dependencies
1699
- [d662caa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d662caa)
1700
- - @atlaskit/toggle@3.0.2
1701
- - @atlaskit/dropdown-menu@4.0.3
1702
- - @atlaskit/button@7.2.5
1703
- - @atlaskit/theme@3.2.2
1704
- - @atlaskit/spinner@5.0.2
1705
- - @atlaskit/pagination@5.0.1
1706
- - @atlaskit/avatar@10.0.6
1707
- - @atlaskit/docs@3.0.4
1712
+ - [patch] Updated dependencies
1713
+ [d662caa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d662caa)
1714
+ - @atlaskit/toggle@3.0.2
1715
+ - @atlaskit/dropdown-menu@4.0.3
1716
+ - @atlaskit/button@7.2.5
1717
+ - @atlaskit/theme@3.2.2
1718
+ - @atlaskit/spinner@5.0.2
1719
+ - @atlaskit/pagination@5.0.1
1720
+ - @atlaskit/avatar@10.0.6
1721
+ - @atlaskit/docs@3.0.4
1708
1722
 
1709
1723
  ## 8.0.1
1710
1724
 
1711
- - [patch] Remove unused dependencies
1712
- [3cfb3fe](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3cfb3fe)
1725
+ - [patch] Remove unused dependencies
1726
+ [3cfb3fe](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3cfb3fe)
1713
1727
 
1714
1728
  ## 8.0.0
1715
1729
 
1716
- - [major] Bump to React 16.3.
1717
- [4251858](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4251858)
1730
+ - [major] Bump to React 16.3.
1731
+ [4251858](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4251858)
1718
1732
 
1719
1733
  ## 7.2.2
1720
1734
 
1721
- - [patch] Combines stateless and stateful components into one. Deletes stateless export. Renames
1722
- pagination props. [a4b6c86](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4b6c86)
1735
+ - [patch] Combines stateless and stateful components into one. Deletes stateless export. Renames
1736
+ pagination props. [a4b6c86](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4b6c86)
1723
1737
 
1724
1738
  ## 7.2.1
1725
1739
 
1726
- - [patch] Re-releasing due to potentially broken babel release
1727
- [9ed0bba](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9ed0bba)
1740
+ - [patch] Re-releasing due to potentially broken babel release
1741
+ [9ed0bba](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9ed0bba)
1728
1742
 
1729
1743
  ## 7.2.0
1730
1744
 
1731
- - [minor] Update styled-components dependency to support versions 1.4.6 - 3
1732
- [ceccf30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ceccf30)
1745
+ - [minor] Update styled-components dependency to support versions 1.4.6 - 3
1746
+ [ceccf30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ceccf30)
1733
1747
 
1734
1748
  ## 7.1.2
1735
1749
 
1736
- - [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2
1737
- [1e57e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e57e5a)
1750
+ - [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2
1751
+ [1e57e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e57e5a)
1738
1752
 
1739
1753
  ## 7.1.1
1740
1754
 
1741
- - [patch] Packages Flow types for elements components
1742
- [3111e74](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3111e74)
1755
+ - [patch] Packages Flow types for elements components
1756
+ [3111e74](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3111e74)
1743
1757
 
1744
1758
  ## 7.1.0
1745
1759
 
1746
- - [minor] Added possibility to drag and drop rows in dynamic table.
1747
- [e69e6f4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e69e6f4)
1760
+ - [minor] Added possibility to drag and drop rows in dynamic table.
1761
+ [e69e6f4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e69e6f4)
1748
1762
 
1749
1763
  ## 7.0.1
1750
1764
 
1751
- - [patch] package bump to resolve discrepencies with npm
1752
- [be745da](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/be745da)
1765
+ - [patch] package bump to resolve discrepencies with npm
1766
+ [be745da](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/be745da)
1753
1767
 
1754
1768
  ## 6.2.0
1755
1769
 
1756
- - [minor] Add React 16 support.
1757
- [12ea6e4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/12ea6e4)
1770
+ - [minor] Add React 16 support.
1771
+ [12ea6e4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/12ea6e4)
1758
1772
 
1759
1773
  ## 6.1.5
1760
1774
 
1761
- - [patch] Fix manual bump bug from migration
1762
- [fefd96c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fefd96c)
1775
+ - [patch] Fix manual bump bug from migration
1776
+ [fefd96c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fefd96c)
1763
1777
 
1764
1778
  ## 7.0.0
1765
1779
 
1766
- - There were no major changes in this release.
1780
+ - There were no major changes in this release.
1767
1781
 
1768
1782
  ## 6.1.4
1769
1783
 
1770
- - [patch] fix examples so that name is truly sortable, resolve prop error, fix rowCellType key
1771
- prop type [e5981fb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e5981fb)
1784
+ - [patch] fix examples so that name is truly sortable, resolve prop error, fix rowCellType key prop
1785
+ type [e5981fb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e5981fb)
1772
1786
 
1773
1787
  ## 6.1.3
1774
1788
 
1775
- - [patch] Migrate dynamic-table to ak-mk-2 repo
1776
- [8402863](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8402863)
1789
+ - [patch] Migrate dynamic-table to ak-mk-2 repo
1790
+ [8402863](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8402863)
1777
1791
 
1778
1792
  ## 6.1.2 (2017-12-07)
1779
1793
 
1780
- - bug fix; add story to demonstrate toggling pagination (issues closed: ak-3052)
1781
- ([3f66ce8](https://bitbucket.org/atlassian/atlaskit/commits/3f66ce8))
1794
+ - bug fix; add story to demonstrate toggling pagination (issues closed: ak-3052)
1795
+ ([3f66ce8](https://bitbucket.org/atlassian/atlaskit/commits/3f66ce8))
1782
1796
 
1783
1797
  ## 6.1.1 (2017-11-15)
1784
1798
 
1785
- - bug fix; bumping internal dependencies to the latest major versions
1786
- ([dd59c0a](https://bitbucket.org/atlassian/atlaskit/commits/dd59c0a))
1799
+ - bug fix; bumping internal dependencies to the latest major versions
1800
+ ([dd59c0a](https://bitbucket.org/atlassian/atlaskit/commits/dd59c0a))
1787
1801
 
1788
1802
  ## 6.1.0 (2017-11-13)
1789
1803
 
1790
- - feature; add a loading state to the dynamic table
1791
- ([08974ae](https://bitbucket.org/atlassian/atlaskit/commits/08974ae))
1804
+ - feature; add a loading state to the dynamic table
1805
+ ([08974ae](https://bitbucket.org/atlassian/atlaskit/commits/08974ae))
1792
1806
 
1793
1807
  ## 6.0.2 (2017-10-26)
1794
1808
 
1795
- - bug fix; fix to rebuild stories
1796
- ([793b2a7](https://bitbucket.org/atlassian/atlaskit/commits/793b2a7))
1809
+ - bug fix; fix to rebuild stories
1810
+ ([793b2a7](https://bitbucket.org/atlassian/atlaskit/commits/793b2a7))
1797
1811
 
1798
1812
  ## 6.0.1 (2017-10-22)
1799
1813
 
1800
- - bug fix; update dependencies for react-16
1801
- ([077d1ad](https://bitbucket.org/atlassian/atlaskit/commits/077d1ad))
1814
+ - bug fix; update dependencies for react-16
1815
+ ([077d1ad](https://bitbucket.org/atlassian/atlaskit/commits/077d1ad))
1802
1816
 
1803
1817
  ## 6.0.0 (2017-08-11)
1804
1818
 
1805
- - bug fix; fix the theme-dependency
1806
- ([db90333](https://bitbucket.org/atlassian/atlaskit/commits/db90333))
1807
- - breaking; affects internal styled-components implementation
1808
- ([d14522a](https://bitbucket.org/atlassian/atlaskit/commits/d14522a))
1809
- - breaking; implement dark mode theme
1810
- ([d14522a](https://bitbucket.org/atlassian/atlaskit/commits/d14522a))
1819
+ - bug fix; fix the theme-dependency
1820
+ ([db90333](https://bitbucket.org/atlassian/atlaskit/commits/db90333))
1821
+ - breaking; affects internal styled-components implementation
1822
+ ([d14522a](https://bitbucket.org/atlassian/atlaskit/commits/d14522a))
1823
+ - breaking; implement dark mode theme
1824
+ ([d14522a](https://bitbucket.org/atlassian/atlaskit/commits/d14522a))
1811
1825
 
1812
1826
  ## 5.0.0 (2017-08-11)
1813
1827
 
1814
- - breaking; affects internal styled-components implementation
1815
- ([d14522a](https://bitbucket.org/atlassian/atlaskit/commits/d14522a))
1816
- - breaking; implement dark mode theme
1817
- ([d14522a](https://bitbucket.org/atlassian/atlaskit/commits/d14522a))
1828
+ - breaking; affects internal styled-components implementation
1829
+ ([d14522a](https://bitbucket.org/atlassian/atlaskit/commits/d14522a))
1830
+ - breaking; implement dark mode theme
1831
+ ([d14522a](https://bitbucket.org/atlassian/atlaskit/commits/d14522a))
1818
1832
 
1819
1833
  ## 4.5.2 (2017-07-27)
1820
1834
 
1821
- - fix; rename jsnext:main to jsnext:experimental:main temporarily
1822
- ([c7508e0](https://bitbucket.org/atlassian/atlaskit/commits/c7508e0))
1835
+ - fix; rename jsnext:main to jsnext:experimental:main temporarily
1836
+ ([c7508e0](https://bitbucket.org/atlassian/atlaskit/commits/c7508e0))
1823
1837
 
1824
1838
  ## 4.5.1 (2017-07-25)
1825
1839
 
1826
- - fix; use class transform in loose mode in babel to improve load performance in apps
1827
- ([fde719a](https://bitbucket.org/atlassian/atlaskit/commits/fde719a))
1840
+ - fix; use class transform in loose mode in babel to improve load performance in apps
1841
+ ([fde719a](https://bitbucket.org/atlassian/atlaskit/commits/fde719a))
1828
1842
 
1829
1843
  ## 4.2.0 (2017-07-17)
1830
1844
 
1831
- - fix; rerelease, failed prepublish scripts
1832
- ([5fd82f8](https://bitbucket.org/atlassian/atlaskit/commits/5fd82f8))
1845
+ - fix; rerelease, failed prepublish scripts
1846
+ ([5fd82f8](https://bitbucket.org/atlassian/atlaskit/commits/5fd82f8))
1833
1847
 
1834
1848
  ## 4.2.0 (2017-07-17)
1835
1849
 
1836
- - feature; added ES module builds to dist and add jsnext:main to most ADG packages
1837
- ([ea76507](https://bitbucket.org/atlassian/atlaskit/commits/ea76507))
1850
+ - feature; added ES module builds to dist and add jsnext:main to most ADG packages
1851
+ ([ea76507](https://bitbucket.org/atlassian/atlaskit/commits/ea76507))
1838
1852
 
1839
1853
  ## 4.1.0 (2017-07-12)
1840
1854
 
1841
- - fix; removes rowIndex prop from body render method
1842
- ([9394455](https://bitbucket.org/atlassian/atlaskit/commits/9394455))
1855
+ - fix; removes rowIndex prop from body render method
1856
+ ([9394455](https://bitbucket.org/atlassian/atlaskit/commits/9394455))
1843
1857
 
1844
1858
  ## 4.0.1 (2017-07-10)
1845
1859
 
1846
- - fix; fixes '0' being displayed when rows prop is empty array
1847
- ([8ce1453](https://bitbucket.org/atlassian/atlaskit/commits/8ce1453))
1848
- - fix; fixes react console error by adding key prop to TableRow in render method of Body
1849
- ([c2e08cb](https://bitbucket.org/atlassian/atlaskit/commits/c2e08cb))
1850
- - feature; updates pagination dependency to 3.1.0 to get ellipsis when there are lots of pages
1851
- ([391db73](https://bitbucket.org/atlassian/atlaskit/commits/391db73))
1860
+ - fix; fixes '0' being displayed when rows prop is empty array
1861
+ ([8ce1453](https://bitbucket.org/atlassian/atlaskit/commits/8ce1453))
1862
+ - fix; fixes react console error by adding key prop to TableRow in render method of Body
1863
+ ([c2e08cb](https://bitbucket.org/atlassian/atlaskit/commits/c2e08cb))
1864
+ - feature; updates pagination dependency to 3.1.0 to get ellipsis when there are lots of pages
1865
+ ([391db73](https://bitbucket.org/atlassian/atlaskit/commits/391db73))
1852
1866
 
1853
1867
  ## 4.0.0 (2017-07-03)
1854
1868
 
1855
- - fix; updates dynamic-table to always display table header
1856
- ([ee35148](https://bitbucket.org/atlassian/atlaskit/commits/ee35148))
1857
- - fix; updates dynamic-table to have headerless emptyView
1858
- ([aa87745](https://bitbucket.org/atlassian/atlaskit/commits/aa87745))
1859
- - fix; updates tests to check against Component not string
1860
- ([a91743b](https://bitbucket.org/atlassian/atlaskit/commits/a91743b))
1861
- - fix; add prop-types as a dependency to avoid React 15.x warnings
1862
- ([92598eb](https://bitbucket.org/atlassian/atlaskit/commits/92598eb))
1863
- - updates description for dynamic-table stories
1864
- ([bde2081](https://bitbucket.org/atlassian/atlaskit/commits/bde2081))
1865
- - breaking; Table will now render the Header by default, even if no rows are displayed
1869
+ - fix; updates dynamic-table to always display table header
1870
+ ([ee35148](https://bitbucket.org/atlassian/atlaskit/commits/ee35148))
1871
+ - fix; updates dynamic-table to have headerless emptyView
1872
+ ([aa87745](https://bitbucket.org/atlassian/atlaskit/commits/aa87745))
1873
+ - fix; updates tests to check against Component not string
1874
+ ([a91743b](https://bitbucket.org/atlassian/atlaskit/commits/a91743b))
1875
+ - fix; add prop-types as a dependency to avoid React 15.x warnings
1876
+ ([92598eb](https://bitbucket.org/atlassian/atlaskit/commits/92598eb))
1877
+ - updates description for dynamic-table stories
1878
+ ([bde2081](https://bitbucket.org/atlassian/atlaskit/commits/bde2081))
1879
+ - breaking; Table will now render the Header by default, even if no rows are displayed
1866
1880
 
1867
1881
  ## 3.0.0 (2017-05-24)
1868
1882
 
1869
- - refactor dynamic-table as part of styled-components refactor
1870
- ([3f52aff](https://bitbucket.org/atlassian/atlaskit/commits/3f52aff))
1871
- - breaking; DynamicTable export renamed to DynamicTableStateless, for consistency with other
1872
- packages.
1873
- - ISSUES CLOSED: #AK-2385
1883
+ - refactor dynamic-table as part of styled-components refactor
1884
+ ([3f52aff](https://bitbucket.org/atlassian/atlaskit/commits/3f52aff))
1885
+ - breaking; DynamicTable export renamed to DynamicTableStateless, for consistency with other
1886
+ packages.
1887
+ - ISSUES CLOSED: #AK-2385
1874
1888
 
1875
1889
  ## 2.1.5 (2017-04-27)
1876
1890
 
1877
- - fix; update legal copy to be more clear. Not all modules include ADG license.
1878
- ([f3a945e](https://bitbucket.org/atlassian/atlaskit/commits/f3a945e))
1891
+ - fix; update legal copy to be more clear. Not all modules include ADG license.
1892
+ ([f3a945e](https://bitbucket.org/atlassian/atlaskit/commits/f3a945e))
1879
1893
 
1880
1894
  ## 2.1.4 (2017-04-26)
1881
1895
 
1882
- - fix; update legal copy and fix broken links for component README on npm. New contribution and
1883
- ([0b3e454](https://bitbucket.org/atlassian/atlaskit/commits/0b3e454))
1896
+ - fix; update legal copy and fix broken links for component README on npm. New contribution and
1897
+ ([0b3e454](https://bitbucket.org/atlassian/atlaskit/commits/0b3e454))
1884
1898
 
1885
1899
  ## 2.1.3 (2017-03-23)
1886
1900
 
1887
- - fix; Empty commit to release the component
1888
- ([49c08ee](https://bitbucket.org/atlassian/atlaskit/commits/49c08ee))
1901
+ - fix; Empty commit to release the component
1902
+ ([49c08ee](https://bitbucket.org/atlassian/atlaskit/commits/49c08ee))
1889
1903
 
1890
1904
  ## 2.1.1 (2017-03-21)
1891
1905
 
1892
- - fix; maintainers for all the packages were added
1893
- ([261d00a](https://bitbucket.org/atlassian/atlaskit/commits/261d00a))
1906
+ - fix; maintainers for all the packages were added
1907
+ ([261d00a](https://bitbucket.org/atlassian/atlaskit/commits/261d00a))
1894
1908
 
1895
1909
  ## 2.1.0 (2017-03-08)
1896
1910
 
1897
- - feature; use createError helper function from util-common package
1898
- ([3466262](https://bitbucket.org/atlassian/atlaskit/commits/3466262))
1911
+ - feature; use createError helper function from util-common package
1912
+ ([3466262](https://bitbucket.org/atlassian/atlaskit/commits/3466262))
1899
1913
 
1900
1914
  ## 2.0.1 (2017-03-08)
1901
1915
 
1902
- - fix; import DynamicTable from its own package
1903
- ([61f6e86](https://bitbucket.org/atlassian/atlaskit/commits/61f6e86))
1916
+ - fix; import DynamicTable from its own package
1917
+ ([61f6e86](https://bitbucket.org/atlassian/atlaskit/commits/61f6e86))
1904
1918
 
1905
1919
  ## 1.0.0 (2017-03-07)
1906
1920
 
1907
- - fix; pR suggestions ([aee611e](https://bitbucket.org/atlassian/atlaskit/commits/aee611e))
1908
- - feature; dynamicTable component
1909
- ([9861b3e](https://bitbucket.org/atlassian/atlaskit/commits/9861b3e))
1921
+ - fix; pR suggestions ([aee611e](https://bitbucket.org/atlassian/atlaskit/commits/aee611e))
1922
+ - feature; dynamicTable component
1923
+ ([9861b3e](https://bitbucket.org/atlassian/atlaskit/commits/9861b3e))