@atlaskit/dynamic-table 14.11.6 → 14.11.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +58 -52
- package/dist/cjs/components/body.js +2 -3
- package/dist/cjs/components/loading-container-advanced.js +1 -2
- package/dist/cjs/components/loading-container.js +1 -2
- package/dist/cjs/components/managed-pagination.js +2 -3
- package/dist/cjs/components/rankable/body.js +3 -5
- package/dist/cjs/components/rankable/table-cell.js +2 -4
- package/dist/cjs/components/rankable/table-head-cell.js +1 -2
- package/dist/cjs/components/rankable/table-row.js +2 -4
- package/dist/cjs/components/stateful.js +1 -2
- package/dist/cjs/components/stateless.js +4 -6
- package/dist/cjs/components/table-head-cell.js +1 -2
- package/dist/cjs/components/table-head.js +1 -2
- package/dist/cjs/components/table-row.js +1 -2
- package/dist/cjs/internal/constants.js +5 -10
- package/dist/cjs/internal/helpers.js +7 -13
- package/dist/cjs/styled/constants.js +7 -18
- package/dist/cjs/styled/dynamic-table.js +5 -9
- package/dist/cjs/styled/empty-body.js +3 -5
- package/dist/cjs/styled/loading-container-advanced.js +4 -7
- package/dist/cjs/styled/loading-container.js +5 -9
- package/dist/cjs/styled/rankable/table-cell.js +2 -3
- package/dist/cjs/styled/rankable/table-row.js +2 -3
- package/dist/cjs/styled/table-cell.js +2 -3
- package/dist/cjs/styled/table-head.js +3 -5
- package/dist/cjs/styled/table-row.js +2 -3
- package/dist/cjs/theme.js +6 -11
- package/dist/es2019/components/stateless.js +1 -1
- package/dist/es2019/styled/constants.js +1 -7
- package/dist/esm/components/stateless.js +1 -1
- package/dist/esm/styled/constants.js +1 -7
- package/dist/types/styled/dynamic-table.d.ts +1 -1
- package/dist/types/styled/loading-container-advanced.d.ts +2 -2
- package/dist/types/styled/table-head.d.ts +1 -1
- package/dist/types-ts4.5/styled/dynamic-table.d.ts +1 -1
- package/dist/types-ts4.5/styled/loading-container-advanced.d.ts +2 -2
- package/dist/types-ts4.5/styled/table-head.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,52 +1,58 @@
|
|
|
1
1
|
# @atlaskit/dynamic-table
|
|
2
2
|
|
|
3
|
+
## 14.11.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#40650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40650) [`07aa588c8a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/07aa588c8a4) - Reverts the fix to text descender cut-off, due to incompatibilities with Firefox and Safari.
|
|
8
|
+
|
|
3
9
|
## 14.11.6
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
6
12
|
|
|
7
|
-
- [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal changes to use space tokens. There is no expected visual or behaviour change.
|
|
13
|
+
- [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787) [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal changes to use space tokens. There is no expected visual or behaviour change.
|
|
8
14
|
|
|
9
15
|
## 14.11.5
|
|
10
16
|
|
|
11
17
|
### Patch Changes
|
|
12
18
|
|
|
13
|
-
- [`9af31f3c1ae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9af31f3c1ae) - Delete version.json
|
|
19
|
+
- [#38731](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38731) [`9af31f3c1ae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9af31f3c1ae) - Delete version.json
|
|
14
20
|
|
|
15
21
|
## 14.11.4
|
|
16
22
|
|
|
17
23
|
### Patch Changes
|
|
18
24
|
|
|
19
|
-
- [`56b444b56a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56b444b56a8) - Fix a bug where text descenders were cut off at high zoom levels on Windows
|
|
25
|
+
- [#38209](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38209) [`56b444b56a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56b444b56a8) - Fix a bug where text descenders were cut off at high zoom levels on Windows
|
|
20
26
|
|
|
21
27
|
## 14.11.3
|
|
22
28
|
|
|
23
29
|
### Patch Changes
|
|
24
30
|
|
|
25
|
-
- [`a486e54d1ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a486e54d1ef) - Improved performance of built-in table sorting for stateful dynamic tables
|
|
31
|
+
- [#38128](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38128) [`a486e54d1ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a486e54d1ef) - Improved performance of built-in table sorting for stateful dynamic tables
|
|
26
32
|
|
|
27
33
|
## 14.11.2
|
|
28
34
|
|
|
29
35
|
### Patch Changes
|
|
30
36
|
|
|
31
|
-
- [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility testing.
|
|
37
|
+
- [#36754](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36754) [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility testing.
|
|
32
38
|
|
|
33
39
|
## 14.11.1
|
|
34
40
|
|
|
35
41
|
### Patch Changes
|
|
36
42
|
|
|
37
|
-
- [`599bfe90ee3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/599bfe90ee3) - Internal change to use shape tokens. There is no expected visual change.
|
|
43
|
+
- [#35441](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35441) [`599bfe90ee3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/599bfe90ee3) - Internal change to use shape tokens. There is no expected visual change.
|
|
38
44
|
|
|
39
45
|
## 14.11.0
|
|
40
46
|
|
|
41
47
|
### Minor Changes
|
|
42
48
|
|
|
43
|
-
- [`ec1f82f8027`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec1f82f8027) - Move away from findDOMNode API to refs
|
|
49
|
+
- [#34915](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34915) [`ec1f82f8027`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec1f82f8027) - Move away from findDOMNode API to refs
|
|
44
50
|
|
|
45
51
|
## 14.10.0
|
|
46
52
|
|
|
47
53
|
### Minor Changes
|
|
48
54
|
|
|
49
|
-
- [`12d9c63d4c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12d9c63d4c1) - [ux] pass pageLabel to dynamic-table component and updat prev label in examples, add description in the types file, update example files
|
|
55
|
+
- [#34947](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34947) [`12d9c63d4c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12d9c63d4c1) - [ux] pass pageLabel to dynamic-table component and updat prev label in examples, add description in the types file, update example files
|
|
50
56
|
|
|
51
57
|
### Patch Changes
|
|
52
58
|
|
|
@@ -56,25 +62,25 @@
|
|
|
56
62
|
|
|
57
63
|
### Patch Changes
|
|
58
64
|
|
|
59
|
-
- [`77766ad157d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/77766ad157d) - Enrol packages to push-model consumption in Jira.
|
|
65
|
+
- [#34124](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34124) [`77766ad157d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/77766ad157d) - Enrol packages to push-model consumption in Jira.
|
|
60
66
|
|
|
61
67
|
## 14.9.2
|
|
62
68
|
|
|
63
69
|
### Patch Changes
|
|
64
70
|
|
|
65
|
-
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
|
|
71
|
+
- [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793) [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
|
|
66
72
|
|
|
67
73
|
## 14.9.1
|
|
68
74
|
|
|
69
75
|
### Patch Changes
|
|
70
76
|
|
|
71
|
-
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
|
|
77
|
+
- [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649) [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
|
|
72
78
|
|
|
73
79
|
## 14.9.0
|
|
74
80
|
|
|
75
81
|
### Minor Changes
|
|
76
82
|
|
|
77
|
-
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
83
|
+
- [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
78
84
|
|
|
79
85
|
### Patch Changes
|
|
80
86
|
|
|
@@ -84,31 +90,31 @@
|
|
|
84
90
|
|
|
85
91
|
### Patch Changes
|
|
86
92
|
|
|
87
|
-
- [`cdb1910463d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cdb1910463d) - [ux] Adds buttons to sortable table head cells for better accessibility for keyboard and assistive technology users.
|
|
93
|
+
- [#32202](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32202) [`cdb1910463d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cdb1910463d) - [ux] Adds buttons to sortable table head cells for better accessibility for keyboard and assistive technology users.
|
|
88
94
|
|
|
89
95
|
## 14.8.16
|
|
90
96
|
|
|
91
97
|
### Patch Changes
|
|
92
98
|
|
|
93
|
-
- [`4ba10567310`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ba10567310) - Internal changes.
|
|
99
|
+
- [#32211](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32211) [`4ba10567310`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ba10567310) - Internal changes.
|
|
94
100
|
|
|
95
101
|
## 14.8.15
|
|
96
102
|
|
|
97
103
|
### Patch Changes
|
|
98
104
|
|
|
99
|
-
- [`e2f0271eaf9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2f0271eaf9) - This changeset exists because a PR touches these packages in a way that doesn't require a release
|
|
105
|
+
- [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424) [`e2f0271eaf9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2f0271eaf9) - This changeset exists because a PR touches these packages in a way that doesn't require a release
|
|
100
106
|
|
|
101
107
|
## 14.8.14
|
|
102
108
|
|
|
103
109
|
### Patch Changes
|
|
104
110
|
|
|
105
|
-
- [`df9b2633fe4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/df9b2633fe4) - [ux] Adds `aria-sort` to sortable headers when being used to sort.
|
|
111
|
+
- [#31299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31299) [`df9b2633fe4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/df9b2633fe4) - [ux] Adds `aria-sort` to sortable headers when being used to sort.
|
|
106
112
|
|
|
107
113
|
## 14.8.13
|
|
108
114
|
|
|
109
115
|
### Patch Changes
|
|
110
116
|
|
|
111
|
-
- [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades component types to support React 18.
|
|
117
|
+
- [#31206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31206) [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades component types to support React 18.
|
|
112
118
|
- Updated dependencies
|
|
113
119
|
|
|
114
120
|
## 14.8.12
|
|
@@ -127,19 +133,19 @@
|
|
|
127
133
|
|
|
128
134
|
### Patch Changes
|
|
129
135
|
|
|
130
|
-
- [`18aeca8c199`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18aeca8c199) - Internal change to update token references. There is no expected behaviour or visual change.
|
|
136
|
+
- [#29390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29390) [`18aeca8c199`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18aeca8c199) - Internal change to update token references. There is no expected behaviour or visual change.
|
|
131
137
|
|
|
132
138
|
## 14.8.9
|
|
133
139
|
|
|
134
140
|
### Patch Changes
|
|
135
141
|
|
|
136
|
-
- [`b0f6dd0bc35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0f6dd0bc35) - Updated to use typography tokens. There is no expected behaviour or visual change.
|
|
142
|
+
- [#28064](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28064) [`b0f6dd0bc35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0f6dd0bc35) - Updated to use typography tokens. There is no expected behaviour or visual change.
|
|
137
143
|
|
|
138
144
|
## 14.8.8
|
|
139
145
|
|
|
140
146
|
### Patch Changes
|
|
141
147
|
|
|
142
|
-
- [`f96f3ebd861`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f96f3ebd861) - [ux] Use color.background.neutral.subtle token to represent transparent background.
|
|
148
|
+
- [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090) [`f96f3ebd861`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f96f3ebd861) - [ux] Use color.background.neutral.subtle token to represent transparent background.
|
|
143
149
|
- [`d0298c778ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0298c778ed) - Added additional testId props for testing purposes
|
|
144
150
|
|
|
145
151
|
## 14.8.7
|
|
@@ -164,31 +170,31 @@
|
|
|
164
170
|
|
|
165
171
|
### Patch Changes
|
|
166
172
|
|
|
167
|
-
- [`bc989043572`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc989043572) - Internal changes to apply spacing tokens. This should be a no-op change.
|
|
173
|
+
- [#26488](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26488) [`bc989043572`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc989043572) - Internal changes to apply spacing tokens. This should be a no-op change.
|
|
168
174
|
|
|
169
175
|
## 14.8.3
|
|
170
176
|
|
|
171
177
|
### Patch Changes
|
|
172
178
|
|
|
173
|
-
- [`ba5370e80b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba5370e80b4) - Update table row background color on drag to better match design token semantics
|
|
179
|
+
- [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710) [`ba5370e80b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba5370e80b4) - Update table row background color on drag to better match design token semantics
|
|
174
180
|
|
|
175
181
|
## 14.8.2
|
|
176
182
|
|
|
177
183
|
### Patch Changes
|
|
178
184
|
|
|
179
|
-
- [`f9cd9e55e43`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f9cd9e55e43) - Update to disabled tokens which slightly affects the opacity in disabled states
|
|
185
|
+
- [#24968](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24968) [`f9cd9e55e43`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f9cd9e55e43) - Update to disabled tokens which slightly affects the opacity in disabled states
|
|
180
186
|
|
|
181
187
|
## 14.8.1
|
|
182
188
|
|
|
183
189
|
### Patch Changes
|
|
184
190
|
|
|
185
|
-
- [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
|
|
191
|
+
- [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874) [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
|
|
186
192
|
|
|
187
193
|
## 14.8.0
|
|
188
194
|
|
|
189
195
|
### Minor Changes
|
|
190
196
|
|
|
191
|
-
- [`f88eb89b356`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f88eb89b356) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
|
|
197
|
+
- [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004) [`f88eb89b356`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f88eb89b356) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
|
|
192
198
|
|
|
193
199
|
### Patch Changes
|
|
194
200
|
|
|
@@ -199,13 +205,13 @@
|
|
|
199
205
|
|
|
200
206
|
### Patch Changes
|
|
201
207
|
|
|
202
|
-
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
|
|
208
|
+
- [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492) [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
|
|
203
209
|
|
|
204
210
|
## 14.7.0
|
|
205
211
|
|
|
206
212
|
### Minor Changes
|
|
207
213
|
|
|
208
|
-
- [`266abf54eea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/266abf54eea) - [ux] Pagination no longer renders when rowsPerPage is set, but there's only one page of content
|
|
214
|
+
- [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381) [`266abf54eea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/266abf54eea) - [ux] Pagination no longer renders when rowsPerPage is set, but there's only one page of content
|
|
209
215
|
|
|
210
216
|
### Patch Changes
|
|
211
217
|
|
|
@@ -220,13 +226,13 @@
|
|
|
220
226
|
|
|
221
227
|
### Patch Changes
|
|
222
228
|
|
|
223
|
-
- [`deca22d60e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/deca22d60e1) - Update DynamicTable HeaderCellType to make it clear that the width prop takes a percentage not a pixel value
|
|
229
|
+
- [#23340](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23340) [`deca22d60e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/deca22d60e1) - Update DynamicTable HeaderCellType to make it clear that the width prop takes a percentage not a pixel value
|
|
224
230
|
|
|
225
231
|
## 14.6.0
|
|
226
232
|
|
|
227
233
|
### Minor Changes
|
|
228
234
|
|
|
229
|
-
- [`1cc3c9f1c8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1cc3c9f1c8f) - Add test ID to table pagination so it can be queried in tests. It will be prefixed with the `testId` prop: `{testId}--pagination`.
|
|
235
|
+
- [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570) [`1cc3c9f1c8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1cc3c9f1c8f) - Add test ID to table pagination so it can be queried in tests. It will be prefixed with the `testId` prop: `{testId}--pagination`.
|
|
230
236
|
|
|
231
237
|
### Patch Changes
|
|
232
238
|
|
|
@@ -242,7 +248,7 @@
|
|
|
242
248
|
|
|
243
249
|
### Patch Changes
|
|
244
250
|
|
|
245
|
-
- [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
|
|
251
|
+
- [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650) [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
|
|
246
252
|
|
|
247
253
|
## 14.5.3
|
|
248
254
|
|
|
@@ -254,7 +260,7 @@
|
|
|
254
260
|
|
|
255
261
|
### Patch Changes
|
|
256
262
|
|
|
257
|
-
- [`62edf20ab1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62edf20ab1e) - Migrates all usage of brand tokens to either selected or information tokens. This change is purely for semantic reasons, there are no visual or behavioural changes.
|
|
263
|
+
- [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618) [`62edf20ab1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62edf20ab1e) - Migrates all usage of brand tokens to either selected or information tokens. This change is purely for semantic reasons, there are no visual or behavioural changes.
|
|
258
264
|
- Updated dependencies
|
|
259
265
|
|
|
260
266
|
## 14.5.1
|
|
@@ -267,7 +273,7 @@
|
|
|
267
273
|
|
|
268
274
|
### Minor Changes
|
|
269
275
|
|
|
270
|
-
- [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Rows can now also be highlighted using the isHighlighted property inside the rows data
|
|
276
|
+
- [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752) [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Rows can now also be highlighted using the isHighlighted property inside the rows data
|
|
271
277
|
|
|
272
278
|
### Patch Changes
|
|
273
279
|
|
|
@@ -284,26 +290,26 @@
|
|
|
284
290
|
|
|
285
291
|
### Patch Changes
|
|
286
292
|
|
|
287
|
-
- [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving bundle size.
|
|
293
|
+
- [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998) [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving bundle size.
|
|
288
294
|
- Updated dependencies
|
|
289
295
|
|
|
290
296
|
## 14.4.2
|
|
291
297
|
|
|
292
298
|
### Patch Changes
|
|
293
299
|
|
|
294
|
-
- [`78a7ffa81f8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78a7ffa81f8) - Fixes a bug that meant an undefined width would still be stringifed and applied to the inline styles of table cells.
|
|
300
|
+
- [#16499](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16499) [`78a7ffa81f8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78a7ffa81f8) - Fixes a bug that meant an undefined width would still be stringifed and applied to the inline styles of table cells.
|
|
295
301
|
|
|
296
302
|
## 14.4.1
|
|
297
303
|
|
|
298
304
|
### Patch Changes
|
|
299
305
|
|
|
300
|
-
- [`1601e51ab32`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1601e51ab32) - Fixes for internal types.
|
|
306
|
+
- [#16038](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16038) [`1601e51ab32`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1601e51ab32) - Fixes for internal types.
|
|
301
307
|
|
|
302
308
|
## 14.4.0
|
|
303
309
|
|
|
304
310
|
### Minor Changes
|
|
305
311
|
|
|
306
|
-
- [`dc35866892f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc35866892f) - [ux] Instrumented dynamic-table with the new theming package, @atlaskit/tokens.
|
|
312
|
+
- [#14777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14777) [`dc35866892f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc35866892f) - [ux] Instrumented dynamic-table with the new theming package, @atlaskit/tokens.
|
|
307
313
|
|
|
308
314
|
New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).
|
|
309
315
|
These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
|
|
@@ -318,20 +324,20 @@
|
|
|
318
324
|
|
|
319
325
|
### Patch Changes
|
|
320
326
|
|
|
321
|
-
- [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - Internal changes to remove `@atlaskit/theme/math` usage.
|
|
327
|
+
- [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319) [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - Internal changes to remove `@atlaskit/theme/math` usage.
|
|
322
328
|
- Updated dependencies
|
|
323
329
|
|
|
324
330
|
## 14.3.1
|
|
325
331
|
|
|
326
332
|
### Patch Changes
|
|
327
333
|
|
|
328
|
-
- [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump `@atlaskit/theme` to version `^11.3.0`.
|
|
334
|
+
- [#12880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12880) [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump `@atlaskit/theme` to version `^11.3.0`.
|
|
329
335
|
|
|
330
336
|
## 14.3.0
|
|
331
337
|
|
|
332
338
|
### Minor Changes
|
|
333
339
|
|
|
334
|
-
- [`7da3e890032`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7da3e890032) - [ux] `highlightedRowIndex` now can be a list of numbers (`number[]`), as well as `number`. Also highlighted rows now have B50/B75 colour.
|
|
340
|
+
- [#11649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11649) [`7da3e890032`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7da3e890032) - [ux] `highlightedRowIndex` now can be a list of numbers (`number[]`), as well as `number`. Also highlighted rows now have B50/B75 colour.
|
|
335
341
|
- [`aa66648082f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa66648082f) - Add support for aria attributes on the table
|
|
336
342
|
|
|
337
343
|
### Patch Changes
|
|
@@ -342,7 +348,7 @@
|
|
|
342
348
|
|
|
343
349
|
### Patch Changes
|
|
344
350
|
|
|
345
|
-
- [`cbd4258c692`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cbd4258c692) - Update the `rows` prop types to extend HTML table row props
|
|
351
|
+
- [#11126](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11126) [`cbd4258c692`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cbd4258c692) - Update the `rows` prop types to extend HTML table row props
|
|
346
352
|
|
|
347
353
|
## 14.2.2
|
|
348
354
|
|
|
@@ -354,13 +360,13 @@
|
|
|
354
360
|
|
|
355
361
|
### Patch Changes
|
|
356
362
|
|
|
357
|
-
- [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use injected package name and version for analytics instead of version.json.
|
|
363
|
+
- [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644) [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use injected package name and version for analytics instead of version.json.
|
|
358
364
|
|
|
359
365
|
## 14.2.0
|
|
360
366
|
|
|
361
367
|
### Minor Changes
|
|
362
368
|
|
|
363
|
-
- [`cd41357bdb0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd41357bdb0) - Added total number of records for paginated data set to be passed as an optional prop
|
|
369
|
+
- [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762) [`cd41357bdb0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd41357bdb0) - Added total number of records for paginated data set to be passed as an optional prop
|
|
364
370
|
|
|
365
371
|
### Patch Changes
|
|
366
372
|
|
|
@@ -370,13 +376,13 @@
|
|
|
370
376
|
|
|
371
377
|
### Patch Changes
|
|
372
378
|
|
|
373
|
-
- [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
|
|
379
|
+
- [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857) [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
|
|
374
380
|
|
|
375
381
|
## 14.1.4
|
|
376
382
|
|
|
377
383
|
### Patch Changes
|
|
378
384
|
|
|
379
|
-
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
|
|
385
|
+
- [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497) [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
|
|
380
386
|
This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
|
|
381
387
|
Also add `typescript` to `devDependencies` to denote version that the package was built with.
|
|
382
388
|
|
|
@@ -390,13 +396,13 @@
|
|
|
390
396
|
|
|
391
397
|
### Patch Changes
|
|
392
398
|
|
|
393
|
-
- [`6360c46009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6360c46009) - Reenable integration tests for Edge browser
|
|
399
|
+
- [#4707](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4707) [`6360c46009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6360c46009) - Reenable integration tests for Edge browser
|
|
394
400
|
|
|
395
401
|
## 14.1.1
|
|
396
402
|
|
|
397
403
|
### Patch Changes
|
|
398
404
|
|
|
399
|
-
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
|
|
405
|
+
- [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885) [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
|
|
400
406
|
|
|
401
407
|
Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
|
|
402
408
|
to prevent duplicates of tslib being bundled.
|
|
@@ -405,7 +411,7 @@
|
|
|
405
411
|
|
|
406
412
|
### Minor Changes
|
|
407
413
|
|
|
408
|
-
- [`dff687b37a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dff687b37a) - Expose onKeyPress prop for dynamic-table and use it to show mediaViewer
|
|
414
|
+
- [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823) [`dff687b37a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dff687b37a) - Expose onKeyPress prop for dynamic-table and use it to show mediaViewer
|
|
409
415
|
- [`e9a1942ae0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9a1942ae0) - Set the attribute `data-testid` on the loading spinners. The convention follows the existing \${testId}--loadingSpinner.
|
|
410
416
|
|
|
411
417
|
### Patch Changes
|
|
@@ -416,13 +422,13 @@
|
|
|
416
422
|
|
|
417
423
|
### Patch Changes
|
|
418
424
|
|
|
419
|
-
- [`db053b24d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db053b24d8) - Update all the theme imports to be tree-shakable
|
|
425
|
+
- [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428) [`db053b24d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db053b24d8) - Update all the theme imports to be tree-shakable
|
|
420
426
|
|
|
421
427
|
## 14.0.0
|
|
422
428
|
|
|
423
429
|
### Major Changes
|
|
424
430
|
|
|
425
|
-
- [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
|
|
431
|
+
- [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335) [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
|
|
426
432
|
For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
|
|
427
433
|
|
|
428
434
|
### Patch Changes
|
|
@@ -433,7 +439,7 @@
|
|
|
433
439
|
|
|
434
440
|
### Patch Changes
|
|
435
441
|
|
|
436
|
-
- [`e8b1104637`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e8b1104637) - Previously when sorting the rows weren’t using a stable key - thus they would re-mount unexpectedly! This has been fixed now.
|
|
442
|
+
- [#2763](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2763) [`e8b1104637`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e8b1104637) - Previously when sorting the rows weren’t using a stable key - thus they would re-mount unexpectedly! This has been fixed now.
|
|
437
443
|
- [`3cac2203ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3cac2203ba) - Previously, sorting columns in dynamic table wouldn’t persist the page when table was updated, Now user will be able to apply sorting on dynamic table and page will be remain same even after updating table
|
|
438
444
|
|
|
439
445
|
## 13.7.8
|
|
@@ -446,13 +452,13 @@
|
|
|
446
452
|
|
|
447
453
|
### Patch Changes
|
|
448
454
|
|
|
449
|
-
- [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and supporting files will no longer be published to npm
|
|
455
|
+
- [#2866](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2866) [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and supporting files will no longer be published to npm
|
|
450
456
|
|
|
451
457
|
## 13.7.6
|
|
452
458
|
|
|
453
459
|
### Patch Changes
|
|
454
460
|
|
|
455
|
-
- [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove unused dependencies
|
|
461
|
+
- [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137) [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove unused dependencies
|
|
456
462
|
- [`baaad91b65`](https://bitbucket.org/atlassian/atlassian-frontend/commits/baaad91b65) - Updated to use the latest and more performant version of `@atlaskit/avatar`
|
|
457
463
|
- Updated dependencies
|
|
458
464
|
|
|
@@ -50,9 +50,8 @@ var Body = /*#__PURE__*/function (_React$Component) {
|
|
|
50
50
|
}]);
|
|
51
51
|
return Body;
|
|
52
52
|
}(_react.default.Component);
|
|
53
|
-
var _default = (0, _withSortedPageRows.default)( /*#__PURE__*/_react.default.forwardRef(function (props, ref) {
|
|
53
|
+
var _default = exports.default = (0, _withSortedPageRows.default)( /*#__PURE__*/_react.default.forwardRef(function (props, ref) {
|
|
54
54
|
return /*#__PURE__*/_react.default.createElement(Body, (0, _extends2.default)({}, props, {
|
|
55
55
|
forwardedRef: ref
|
|
56
56
|
}));
|
|
57
|
-
}));
|
|
58
|
-
exports.default = _default;
|
|
57
|
+
}));
|
|
@@ -19,7 +19,7 @@ var _constants = require("../internal/constants");
|
|
|
19
19
|
var _loadingContainerAdvanced = require("../styled/loading-container-advanced");
|
|
20
20
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
21
21
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /* eslint-disable @repo/internal/dom-events/no-unsafe-event-listeners */
|
|
22
|
-
var LoadingContainerAdvanced = /*#__PURE__*/function (_React$Component) {
|
|
22
|
+
var LoadingContainerAdvanced = exports.default = /*#__PURE__*/function (_React$Component) {
|
|
23
23
|
(0, _inherits2.default)(LoadingContainerAdvanced, _React$Component);
|
|
24
24
|
var _super = _createSuper(LoadingContainerAdvanced);
|
|
25
25
|
function LoadingContainerAdvanced() {
|
|
@@ -193,7 +193,6 @@ var LoadingContainerAdvanced = /*#__PURE__*/function (_React$Component) {
|
|
|
193
193
|
}]);
|
|
194
194
|
return LoadingContainerAdvanced;
|
|
195
195
|
}(_react.default.Component);
|
|
196
|
-
exports.default = LoadingContainerAdvanced;
|
|
197
196
|
(0, _defineProperty2.default)(LoadingContainerAdvanced, "defaultProps", {
|
|
198
197
|
isLoading: true,
|
|
199
198
|
spinnerSize: _constants.LARGE,
|
|
@@ -17,7 +17,7 @@ var _constants = require("../internal/constants");
|
|
|
17
17
|
var _loadingContainer = require("../styled/loading-container");
|
|
18
18
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
19
19
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
20
|
-
var LoadingContainer = /*#__PURE__*/function (_React$Component) {
|
|
20
|
+
var LoadingContainer = exports.default = /*#__PURE__*/function (_React$Component) {
|
|
21
21
|
(0, _inherits2.default)(LoadingContainer, _React$Component);
|
|
22
22
|
var _super = _createSuper(LoadingContainer);
|
|
23
23
|
function LoadingContainer() {
|
|
@@ -48,7 +48,6 @@ var LoadingContainer = /*#__PURE__*/function (_React$Component) {
|
|
|
48
48
|
}]);
|
|
49
49
|
return LoadingContainer;
|
|
50
50
|
}(_react.default.Component);
|
|
51
|
-
exports.default = LoadingContainer;
|
|
52
51
|
(0, _defineProperty2.default)(LoadingContainer, "defaultProps", {
|
|
53
52
|
isLoading: true,
|
|
54
53
|
spinnerSize: _constants.LARGE,
|
|
@@ -17,7 +17,7 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
17
17
|
var _pagination = _interopRequireDefault(require("@atlaskit/pagination"));
|
|
18
18
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
19
19
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
20
|
-
var ManagedPagination = /*#__PURE__*/function (_React$Component) {
|
|
20
|
+
var ManagedPagination = exports.default = /*#__PURE__*/function (_React$Component) {
|
|
21
21
|
(0, _inherits2.default)(ManagedPagination, _React$Component);
|
|
22
22
|
var _super = _createSuper(ManagedPagination);
|
|
23
23
|
function ManagedPagination() {
|
|
@@ -60,5 +60,4 @@ var ManagedPagination = /*#__PURE__*/function (_React$Component) {
|
|
|
60
60
|
}
|
|
61
61
|
}]);
|
|
62
62
|
return ManagedPagination;
|
|
63
|
-
}(_react.default.Component);
|
|
64
|
-
exports.default = ManagedPagination;
|
|
63
|
+
}(_react.default.Component);
|
|
@@ -39,7 +39,7 @@ var computeRankDestination = function computeRankDestination(result, pageRows) {
|
|
|
39
39
|
}
|
|
40
40
|
return undefined;
|
|
41
41
|
};
|
|
42
|
-
var RankableBody = /*#__PURE__*/function (_React$Component) {
|
|
42
|
+
var RankableBody = exports.RankableBody = /*#__PURE__*/function (_React$Component) {
|
|
43
43
|
(0, _inherits2.default)(RankableBody, _React$Component);
|
|
44
44
|
var _super = _createSuper(RankableBody);
|
|
45
45
|
function RankableBody() {
|
|
@@ -121,10 +121,8 @@ var RankableBody = /*#__PURE__*/function (_React$Component) {
|
|
|
121
121
|
}]);
|
|
122
122
|
return RankableBody;
|
|
123
123
|
}(_react.default.Component);
|
|
124
|
-
exports.
|
|
125
|
-
var _default = (0, _withSortedPageRows.default)( /*#__PURE__*/_react.default.forwardRef(function (props, ref) {
|
|
124
|
+
var _default = exports.default = (0, _withSortedPageRows.default)( /*#__PURE__*/_react.default.forwardRef(function (props, ref) {
|
|
126
125
|
return /*#__PURE__*/_react.default.createElement(RankableBody, (0, _extends2.default)({}, props, {
|
|
127
126
|
forwardedRef: ref
|
|
128
127
|
}));
|
|
129
|
-
}));
|
|
130
|
-
exports.default = _default;
|
|
128
|
+
}));
|
|
@@ -19,7 +19,7 @@ var _tableCell = require("../../styled/rankable/table-cell");
|
|
|
19
19
|
var _excluded = ["content"];
|
|
20
20
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
21
21
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
22
|
-
var RankableTableCell = /*#__PURE__*/function (_React$Component) {
|
|
22
|
+
var RankableTableCell = exports.RankableTableCell = /*#__PURE__*/function (_React$Component) {
|
|
23
23
|
(0, _inherits2.default)(RankableTableCell, _React$Component);
|
|
24
24
|
var _super = _createSuper(RankableTableCell);
|
|
25
25
|
function RankableTableCell() {
|
|
@@ -59,6 +59,4 @@ var RankableTableCell = /*#__PURE__*/function (_React$Component) {
|
|
|
59
59
|
}]);
|
|
60
60
|
return RankableTableCell;
|
|
61
61
|
}(_react.default.Component);
|
|
62
|
-
exports.
|
|
63
|
-
var _default = (0, _withDimensions.default)(RankableTableCell);
|
|
64
|
-
exports.default = _default;
|
|
62
|
+
var _default = exports.default = (0, _withDimensions.default)(RankableTableCell);
|
|
@@ -42,5 +42,4 @@ var RankableTableHeadCell = /*#__PURE__*/function (_React$Component) {
|
|
|
42
42
|
}]);
|
|
43
43
|
return RankableTableHeadCell;
|
|
44
44
|
}(_react.default.Component);
|
|
45
|
-
var _default = (0, _withDimensions.default)(RankableTableHeadCell);
|
|
46
|
-
exports.default = _default;
|
|
45
|
+
var _default = exports.default = (0, _withDimensions.default)(RankableTableHeadCell);
|
|
@@ -25,7 +25,7 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
|
|
|
25
25
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
26
26
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
27
27
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
28
|
-
var RankableTableRow = /*#__PURE__*/function (_React$Component) {
|
|
28
|
+
var RankableTableRow = exports.RankableTableRow = /*#__PURE__*/function (_React$Component) {
|
|
29
29
|
(0, _inherits2.default)(RankableTableRow, _React$Component);
|
|
30
30
|
var _super = _createSuper(RankableTableRow);
|
|
31
31
|
function RankableTableRow() {
|
|
@@ -97,6 +97,4 @@ var RankableTableRow = /*#__PURE__*/function (_React$Component) {
|
|
|
97
97
|
}]);
|
|
98
98
|
return RankableTableRow;
|
|
99
99
|
}(_react.default.Component);
|
|
100
|
-
exports.
|
|
101
|
-
var _default = (0, _withDimensions.default)(RankableTableRow);
|
|
102
|
-
exports.default = _default;
|
|
100
|
+
var _default = exports.default = (0, _withDimensions.default)(RankableTableRow);
|
|
@@ -44,7 +44,7 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
|
|
|
44
44
|
* }
|
|
45
45
|
* ```
|
|
46
46
|
*/
|
|
47
|
-
var DynamicTable = /*#__PURE__*/function (_React$Component) {
|
|
47
|
+
var DynamicTable = exports.default = /*#__PURE__*/function (_React$Component) {
|
|
48
48
|
(0, _inherits2.default)(DynamicTable, _React$Component);
|
|
49
49
|
var _super = _createSuper(DynamicTable);
|
|
50
50
|
function DynamicTable() {
|
|
@@ -174,7 +174,6 @@ var DynamicTable = /*#__PURE__*/function (_React$Component) {
|
|
|
174
174
|
}]);
|
|
175
175
|
return DynamicTable;
|
|
176
176
|
}(_react.default.Component);
|
|
177
|
-
exports.default = DynamicTable;
|
|
178
177
|
(0, _defineProperty2.default)(DynamicTable, "defaultProps", {
|
|
179
178
|
defaultPage: 1,
|
|
180
179
|
isLoading: false,
|
|
@@ -29,7 +29,7 @@ var _tableHead = _interopRequireDefault(require("./table-head"));
|
|
|
29
29
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
30
30
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
31
31
|
var packageName = "@atlaskit/dynamic-table";
|
|
32
|
-
var packageVersion = "14.11.
|
|
32
|
+
var packageVersion = "14.11.7";
|
|
33
33
|
function toggleSortOrder(currentSortOrder) {
|
|
34
34
|
switch (currentSortOrder) {
|
|
35
35
|
case _constants.DESC:
|
|
@@ -40,7 +40,7 @@ function toggleSortOrder(currentSortOrder) {
|
|
|
40
40
|
return currentSortOrder;
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
|
-
var DynamicTable = /*#__PURE__*/function (_React$Component) {
|
|
43
|
+
var DynamicTable = exports.DynamicTableWithoutAnalytics = /*#__PURE__*/function (_React$Component) {
|
|
44
44
|
(0, _inherits2.default)(DynamicTable, _React$Component);
|
|
45
45
|
var _super = _createSuper(DynamicTable);
|
|
46
46
|
function DynamicTable() {
|
|
@@ -251,7 +251,6 @@ var DynamicTable = /*#__PURE__*/function (_React$Component) {
|
|
|
251
251
|
}]);
|
|
252
252
|
return DynamicTable;
|
|
253
253
|
}(_react.default.Component);
|
|
254
|
-
exports.DynamicTableWithoutAnalytics = DynamicTable;
|
|
255
254
|
(0, _defineProperty2.default)(DynamicTable, "defaultProps", {
|
|
256
255
|
isLoading: false,
|
|
257
256
|
isFixedSize: false,
|
|
@@ -271,7 +270,7 @@ exports.DynamicTableWithoutAnalytics = DynamicTable;
|
|
|
271
270
|
}
|
|
272
271
|
});
|
|
273
272
|
var createAndFireEventOnAtlaskit = (0, _analyticsNext.createAndFireEvent)('atlaskit');
|
|
274
|
-
var _default = (0, _analyticsNext.withAnalyticsContext)({
|
|
273
|
+
var _default = exports.default = (0, _analyticsNext.withAnalyticsContext)({
|
|
275
274
|
componentName: 'dynamicTable',
|
|
276
275
|
packageName: packageName,
|
|
277
276
|
packageVersion: packageVersion
|
|
@@ -294,5 +293,4 @@ var _default = (0, _analyticsNext.withAnalyticsContext)({
|
|
|
294
293
|
packageVersion: packageVersion
|
|
295
294
|
}
|
|
296
295
|
})
|
|
297
|
-
})(DynamicTable));
|
|
298
|
-
exports.default = _default;
|
|
296
|
+
})(DynamicTable));
|
|
@@ -93,5 +93,4 @@ var TableHead = /*#__PURE__*/function (_React$Component) {
|
|
|
93
93
|
}]);
|
|
94
94
|
return TableHead;
|
|
95
95
|
}(_react.default.Component); // eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
96
|
-
var _default = TableHead;
|
|
97
|
-
exports.default = _default;
|
|
96
|
+
var _default = exports.default = TableHead;
|