@atlaskit/table-tree 9.6.3 → 9.6.5
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 +51 -39
- package/dist/cjs/components/cell.js +1 -2
- package/dist/cjs/components/header.js +1 -2
- package/dist/cjs/components/headers.js +2 -3
- package/dist/cjs/components/internal/chevron.js +1 -2
- package/dist/cjs/components/internal/common-cell.js +1 -2
- package/dist/cjs/components/internal/item.js +1 -2
- package/dist/cjs/components/internal/items.js +1 -2
- package/dist/cjs/components/internal/loader-item.js +1 -2
- package/dist/cjs/components/internal/overflow-container.js +3 -10
- package/dist/cjs/components/internal/styled.js +7 -13
- package/dist/cjs/components/row.js +4 -6
- package/dist/cjs/components/rows.js +2 -3
- package/dist/cjs/components/table-tree.js +3 -5
- package/dist/cjs/utils/table-tree-data-helper.js +4 -5
- package/dist/es2019/components/internal/overflow-container.js +2 -8
- package/dist/es2019/components/row.js +1 -1
- package/dist/esm/components/internal/overflow-container.js +2 -8
- package/dist/esm/components/row.js +1 -1
- package/dist/esm/utils/table-tree-data-helper.js +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,54 +1,66 @@
|
|
|
1
1
|
# @atlaskit/table-tree
|
|
2
2
|
|
|
3
|
+
## 9.6.5
|
|
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
|
+
|
|
9
|
+
## 9.6.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#40838](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40838) [`ba9a249a153`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba9a249a153) - Add type any and remove null assignment to fix TS error in CFE
|
|
14
|
+
|
|
3
15
|
## 9.6.3
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
6
18
|
|
|
7
|
-
- [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
|
|
19
|
+
- [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162) [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
|
|
8
20
|
- Updated dependencies
|
|
9
21
|
|
|
10
22
|
## 9.6.2
|
|
11
23
|
|
|
12
24
|
### Patch Changes
|
|
13
25
|
|
|
14
|
-
- [`56b444b56a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56b444b56a8) - Fix a bug where text descenders were cut off at high zoom levels on Windows
|
|
26
|
+
- [#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
|
|
15
27
|
|
|
16
28
|
## 9.6.1
|
|
17
29
|
|
|
18
30
|
### Patch Changes
|
|
19
31
|
|
|
20
|
-
- [`fbce2074415`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fbce2074415) - Fix issues with inappropriate roles and `aria-controls` application.
|
|
32
|
+
- [#37624](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37624) [`fbce2074415`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fbce2074415) - Fix issues with inappropriate roles and `aria-controls` application.
|
|
21
33
|
|
|
22
34
|
## 9.6.0
|
|
23
35
|
|
|
24
36
|
### Minor Changes
|
|
25
37
|
|
|
26
|
-
- [`60b048eae5d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60b048eae5d) - Replaced legacy context with useContext for handling column widths
|
|
38
|
+
- [#35975](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35975) [`60b048eae5d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60b048eae5d) - Replaced legacy context with useContext for handling column widths
|
|
27
39
|
|
|
28
40
|
## 9.5.0
|
|
29
41
|
|
|
30
42
|
### Minor Changes
|
|
31
43
|
|
|
32
|
-
- [`6e5546981a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e5546981a3) - Accessibility: Fix the chevron button label.
|
|
44
|
+
- [#33849](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33849) [`6e5546981a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e5546981a3) - Accessibility: Fix the chevron button label.
|
|
33
45
|
Add a new prop `mainColumnForExpandCollapseLabel` that allows you to show a chevron label with row contents instead of a row index.
|
|
34
46
|
|
|
35
47
|
## 9.4.2
|
|
36
48
|
|
|
37
49
|
### Patch Changes
|
|
38
50
|
|
|
39
|
-
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
|
|
51
|
+
- [#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
|
|
40
52
|
|
|
41
53
|
## 9.4.1
|
|
42
54
|
|
|
43
55
|
### Patch Changes
|
|
44
56
|
|
|
45
|
-
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
|
|
57
|
+
- [#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`
|
|
46
58
|
|
|
47
59
|
## 9.4.0
|
|
48
60
|
|
|
49
61
|
### Minor Changes
|
|
50
62
|
|
|
51
|
-
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
63
|
+
- [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
52
64
|
|
|
53
65
|
### Patch Changes
|
|
54
66
|
|
|
@@ -58,25 +70,25 @@
|
|
|
58
70
|
|
|
59
71
|
### Patch Changes
|
|
60
72
|
|
|
61
|
-
- [`4ba10567310`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ba10567310) - Internal changes.
|
|
73
|
+
- [#32211](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32211) [`4ba10567310`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ba10567310) - Internal changes.
|
|
62
74
|
|
|
63
75
|
## 9.3.1
|
|
64
76
|
|
|
65
77
|
### Patch Changes
|
|
66
78
|
|
|
67
|
-
- [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
|
|
79
|
+
- [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424) [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
|
|
68
80
|
|
|
69
81
|
## 9.3.0
|
|
70
82
|
|
|
71
83
|
### Minor Changes
|
|
72
84
|
|
|
73
|
-
- [`6d99522bfa2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d99522bfa2) - [ux] Adds `shouldExpandOnClick` prop for both TableTree and Row. This allows expansion of expandable rows when a user clicks anywhere on the row, along with the chevron at the head of the row.
|
|
85
|
+
- [#31891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31891) [`6d99522bfa2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d99522bfa2) - [ux] Adds `shouldExpandOnClick` prop for both TableTree and Row. This allows expansion of expandable rows when a user clicks anywhere on the row, along with the chevron at the head of the row.
|
|
74
86
|
|
|
75
87
|
## 9.2.11
|
|
76
88
|
|
|
77
89
|
### Patch Changes
|
|
78
90
|
|
|
79
|
-
- [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades component types to support React 18.
|
|
91
|
+
- [#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.
|
|
80
92
|
- Updated dependencies
|
|
81
93
|
|
|
82
94
|
## 9.2.10
|
|
@@ -95,7 +107,7 @@
|
|
|
95
107
|
|
|
96
108
|
### Patch Changes
|
|
97
109
|
|
|
98
|
-
- [`4ee60bafc6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ee60bafc6d) - ED-16603: Remove tooltips from VR tests and make them opt in. To opt-in, add `allowedSideEffects` when loading the page.
|
|
110
|
+
- [#29227](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29227) [`4ee60bafc6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ee60bafc6d) - ED-16603: Remove tooltips from VR tests and make them opt in. To opt-in, add `allowedSideEffects` when loading the page.
|
|
99
111
|
|
|
100
112
|
## 9.2.7
|
|
101
113
|
|
|
@@ -113,13 +125,13 @@
|
|
|
113
125
|
|
|
114
126
|
### Patch Changes
|
|
115
127
|
|
|
116
|
-
- [`25348ec8a74`](https://bitbucket.org/atlassian/atlassian-frontend/commits/25348ec8a74) - Updated to use spacing and typography tokens. With spacing tokens enabled, padding inside cells has changed slightly from 10px vertical to 8px vertical, and from 25px inline to 24px inline. No visual changes without tokens enabled.
|
|
128
|
+
- [#28029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28029) [`25348ec8a74`](https://bitbucket.org/atlassian/atlassian-frontend/commits/25348ec8a74) - Updated to use spacing and typography tokens. With spacing tokens enabled, padding inside cells has changed slightly from 10px vertical to 8px vertical, and from 25px inline to 24px inline. No visual changes without tokens enabled.
|
|
117
129
|
|
|
118
130
|
## 9.2.4
|
|
119
131
|
|
|
120
132
|
### Patch Changes
|
|
121
133
|
|
|
122
|
-
- [`cb8f8e76d25`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb8f8e76d25) - Update types for react-select and @atlaskit/select upgrade
|
|
134
|
+
- [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712) [`cb8f8e76d25`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb8f8e76d25) - Update types for react-select and @atlaskit/select upgrade
|
|
123
135
|
Update commerce-ui entrypoints that caused a pipeline issue.
|
|
124
136
|
- Updated dependencies
|
|
125
137
|
|
|
@@ -133,19 +145,19 @@
|
|
|
133
145
|
|
|
134
146
|
### Patch Changes
|
|
135
147
|
|
|
136
|
-
- [`9827dcb82b8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9827dcb82b8) - No-op change to introduce spacing tokens to design system components.
|
|
148
|
+
- [#26303](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26303) [`9827dcb82b8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9827dcb82b8) - No-op change to introduce spacing tokens to design system components.
|
|
137
149
|
|
|
138
150
|
## 9.2.1
|
|
139
151
|
|
|
140
152
|
### Patch Changes
|
|
141
153
|
|
|
142
|
-
- [`d0e187cc5bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0e187cc5bd) - Fixed a babel issue causing `styled-components` to get injected, which broke our styling.
|
|
154
|
+
- [#24924](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24924) [`d0e187cc5bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0e187cc5bd) - Fixed a babel issue causing `styled-components` to get injected, which broke our styling.
|
|
143
155
|
|
|
144
156
|
## 9.2.0
|
|
145
157
|
|
|
146
158
|
### Minor Changes
|
|
147
159
|
|
|
148
|
-
- [`181c4b6cc3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/181c4b6cc3a) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
|
|
160
|
+
- [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004) [`181c4b6cc3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/181c4b6cc3a) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
|
|
149
161
|
|
|
150
162
|
### Patch Changes
|
|
151
163
|
|
|
@@ -155,13 +167,13 @@
|
|
|
155
167
|
|
|
156
168
|
### Patch Changes
|
|
157
169
|
|
|
158
|
-
- [`70c2c0e00ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70c2c0e00ea) - Updates `@emotion/core` v10 to `@emotion/react` v11. No expected behaviour change.
|
|
170
|
+
- [#23749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23749) [`70c2c0e00ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70c2c0e00ea) - Updates `@emotion/core` v10 to `@emotion/react` v11. No expected behaviour change.
|
|
159
171
|
|
|
160
172
|
## 9.1.9
|
|
161
173
|
|
|
162
174
|
### Patch Changes
|
|
163
175
|
|
|
164
|
-
- [`efa50ac72ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efa50ac72ba) - Adjusts jsdoc strings to improve prop documentation
|
|
176
|
+
- [#21545](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21545) [`efa50ac72ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efa50ac72ba) - Adjusts jsdoc strings to improve prop documentation
|
|
165
177
|
|
|
166
178
|
## 9.1.8
|
|
167
179
|
|
|
@@ -185,7 +197,7 @@
|
|
|
185
197
|
|
|
186
198
|
### Patch Changes
|
|
187
199
|
|
|
188
|
-
- [`ae03dc85756`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae03dc85756) - Moved homepage to atlassian.design.
|
|
200
|
+
- [#19646](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19646) [`ae03dc85756`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae03dc85756) - Moved homepage to atlassian.design.
|
|
189
201
|
|
|
190
202
|
## 9.1.4
|
|
191
203
|
|
|
@@ -197,7 +209,7 @@
|
|
|
197
209
|
|
|
198
210
|
### Patch Changes
|
|
199
211
|
|
|
200
|
-
- [`58884c2f6c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58884c2f6c1) - Internal code change turning on a new linting rule.
|
|
212
|
+
- [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752) [`58884c2f6c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58884c2f6c1) - Internal code change turning on a new linting rule.
|
|
201
213
|
|
|
202
214
|
## 9.1.2
|
|
203
215
|
|
|
@@ -216,7 +228,7 @@
|
|
|
216
228
|
|
|
217
229
|
### Minor Changes
|
|
218
230
|
|
|
219
|
-
- [`4dd20cb2110`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4dd20cb2110) - **Note**: It is a re-release of the wrongly `patched` version `21.9.2` that should have been a `minor` release.
|
|
231
|
+
- [#17576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17576) [`4dd20cb2110`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4dd20cb2110) - **Note**: It is a re-release of the wrongly `patched` version `21.9.2` that should have been a `minor` release.
|
|
220
232
|
|
|
221
233
|
Package has been migrated from `styled-components` to `@emotion/core`.
|
|
222
234
|
|
|
@@ -234,13 +246,13 @@
|
|
|
234
246
|
|
|
235
247
|
### Patch Changes
|
|
236
248
|
|
|
237
|
-
- [`c55c736ecea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55c736ecea) - Patch VULN AFP-3486 AFP-3487 AFP-3488 AFP-3489
|
|
249
|
+
- [#17475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17475) [`c55c736ecea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55c736ecea) - Patch VULN AFP-3486 AFP-3487 AFP-3488 AFP-3489
|
|
238
250
|
|
|
239
251
|
## 9.0.14
|
|
240
252
|
|
|
241
253
|
### Patch Changes
|
|
242
254
|
|
|
243
|
-
- [`ca37d9b9707`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca37d9b9707) - Hotfix to resolve an issue introduced in 9.0.12 which meant the indent of rows was not being applied correctly.
|
|
255
|
+
- [#17256](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17256) [`ca37d9b9707`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca37d9b9707) - Hotfix to resolve an issue introduced in 9.0.12 which meant the indent of rows was not being applied correctly.
|
|
244
256
|
|
|
245
257
|
## 9.0.13
|
|
246
258
|
|
|
@@ -248,7 +260,7 @@
|
|
|
248
260
|
|
|
249
261
|
_WRONG RELEASE TYPE - DON'T USE_
|
|
250
262
|
|
|
251
|
-
- [`3fe03999326`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3fe03999326) - Package has been migrated from `styled-components` to `@emotion/core`.
|
|
263
|
+
- [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998) [`3fe03999326`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3fe03999326) - Package has been migrated from `styled-components` to `@emotion/core`.
|
|
252
264
|
|
|
253
265
|
Other internal changes:
|
|
254
266
|
|
|
@@ -277,26 +289,26 @@ _WRONG RELEASE TYPE - DON'T USE_
|
|
|
277
289
|
|
|
278
290
|
### Patch Changes
|
|
279
291
|
|
|
280
|
-
- [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump `@atlaskit/theme` to version `^11.3.0`.
|
|
292
|
+
- [#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`.
|
|
281
293
|
|
|
282
294
|
## 9.0.9
|
|
283
295
|
|
|
284
296
|
### Patch Changes
|
|
285
297
|
|
|
286
|
-
- [`25e6994ab97`](https://bitbucket.org/atlassian/atlassian-frontend/commits/25e6994ab97) - Update internal component usage
|
|
298
|
+
- [#10569](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10569) [`25e6994ab97`](https://bitbucket.org/atlassian/atlassian-frontend/commits/25e6994ab97) - Update internal component usage
|
|
287
299
|
|
|
288
300
|
## 9.0.8
|
|
289
301
|
|
|
290
302
|
### Patch Changes
|
|
291
303
|
|
|
292
|
-
- [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use injected package name and version for analytics instead of version.json.
|
|
304
|
+
- [#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.
|
|
293
305
|
- Updated dependencies
|
|
294
306
|
|
|
295
307
|
## 9.0.7
|
|
296
308
|
|
|
297
309
|
### Patch Changes
|
|
298
310
|
|
|
299
|
-
- [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
|
|
311
|
+
- [#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
|
|
300
312
|
|
|
301
313
|
## 9.0.6
|
|
302
314
|
|
|
@@ -314,13 +326,13 @@ _WRONG RELEASE TYPE - DON'T USE_
|
|
|
314
326
|
|
|
315
327
|
### Patch Changes
|
|
316
328
|
|
|
317
|
-
- [`30853172ff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/30853172ff) - Reset babel config back to ie11 to prevent runtime issues in Jira and to unbreak the Confluence es5-check
|
|
329
|
+
- [#4573](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4573) [`30853172ff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/30853172ff) - Reset babel config back to ie11 to prevent runtime issues in Jira and to unbreak the Confluence es5-check
|
|
318
330
|
|
|
319
331
|
## 9.0.3
|
|
320
332
|
|
|
321
333
|
### Patch Changes
|
|
322
334
|
|
|
323
|
-
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
|
|
335
|
+
- [#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
|
|
324
336
|
|
|
325
337
|
Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
|
|
326
338
|
to prevent duplicates of tslib being bundled.
|
|
@@ -329,19 +341,19 @@ _WRONG RELEASE TYPE - DON'T USE_
|
|
|
329
341
|
|
|
330
342
|
### Patch Changes
|
|
331
343
|
|
|
332
|
-
- [`76165ad82f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76165ad82f) - Bump required because of conflicts on wadmal release
|
|
344
|
+
- [#4393](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4393) [`76165ad82f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76165ad82f) - Bump required because of conflicts on wadmal release
|
|
333
345
|
|
|
334
346
|
## 9.0.1
|
|
335
347
|
|
|
336
348
|
### Patch Changes
|
|
337
349
|
|
|
338
|
-
- [`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the 'lodash' package instead of single-function 'lodash.\*' packages
|
|
350
|
+
- [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823) [`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the 'lodash' package instead of single-function 'lodash.\*' packages
|
|
339
351
|
|
|
340
352
|
## 9.0.0
|
|
341
353
|
|
|
342
354
|
### Major Changes
|
|
343
355
|
|
|
344
|
-
- [`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.
|
|
356
|
+
- [#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.
|
|
345
357
|
For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
|
|
346
358
|
|
|
347
359
|
### Patch Changes
|
|
@@ -352,13 +364,13 @@ _WRONG RELEASE TYPE - DON'T USE_
|
|
|
352
364
|
|
|
353
365
|
### Patch Changes
|
|
354
366
|
|
|
355
|
-
- [`e80d58698b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e80d58698b) - Fixed alignment of Cell items
|
|
367
|
+
- [#2763](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2763) [`e80d58698b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e80d58698b) - Fixed alignment of Cell items
|
|
356
368
|
|
|
357
369
|
## 8.0.7
|
|
358
370
|
|
|
359
371
|
### Patch Changes
|
|
360
372
|
|
|
361
|
-
- [`eac08411a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eac08411a3) - Updated react-redux dependency to 5.1.0
|
|
373
|
+
- [#3229](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3229) [`eac08411a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eac08411a3) - Updated react-redux dependency to 5.1.0
|
|
362
374
|
|
|
363
375
|
## 8.0.6
|
|
364
376
|
|
|
@@ -370,7 +382,7 @@ _WRONG RELEASE TYPE - DON'T USE_
|
|
|
370
382
|
|
|
371
383
|
### Patch Changes
|
|
372
384
|
|
|
373
|
-
- [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and supporting files will no longer be published to npm
|
|
385
|
+
- [#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
|
|
374
386
|
|
|
375
387
|
## 8.0.4
|
|
376
388
|
|
|
@@ -740,7 +752,7 @@ _WRONG RELEASE TYPE - DON'T USE_
|
|
|
740
752
|
|
|
741
753
|
## 5.0.0
|
|
742
754
|
|
|
743
|
-
- [major][90109e9
|
|
755
|
+
- [major][90109e9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/90109e9"
|
|
744
756
|
d):
|
|
745
757
|
|
|
746
758
|
- added isDefaultExpanded flag to control default expansion state
|
|
@@ -18,7 +18,7 @@ var containerStyles = (0, _react2.css)({
|
|
|
18
18
|
display: 'flex',
|
|
19
19
|
borderBottom: "solid 2px ".concat("var(--ds-border, #dfe1e6)")
|
|
20
20
|
});
|
|
21
|
-
var Headers = /*#__PURE__*/function (_Component) {
|
|
21
|
+
var Headers = exports.default = /*#__PURE__*/function (_Component) {
|
|
22
22
|
(0, _inherits2.default)(Headers, _Component);
|
|
23
23
|
var _super = _createSuper(Headers);
|
|
24
24
|
function Headers() {
|
|
@@ -48,5 +48,4 @@ var Headers = /*#__PURE__*/function (_Component) {
|
|
|
48
48
|
}
|
|
49
49
|
}]);
|
|
50
50
|
return Headers;
|
|
51
|
-
}(_react.Component);
|
|
52
|
-
exports.default = Headers;
|
|
51
|
+
}(_react.Component);
|
|
@@ -23,7 +23,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
23
23
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
24
24
|
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); }; }
|
|
25
25
|
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/react/consistent-props-definitions */ /* eslint-disable react/prop-types */
|
|
26
|
-
var Chevron = /*#__PURE__*/function (_Component) {
|
|
26
|
+
var Chevron = exports.default = /*#__PURE__*/function (_Component) {
|
|
27
27
|
(0, _inherits2.default)(Chevron, _Component);
|
|
28
28
|
var _super = _createSuper(Chevron);
|
|
29
29
|
function Chevron() {
|
|
@@ -71,7 +71,6 @@ var Chevron = /*#__PURE__*/function (_Component) {
|
|
|
71
71
|
}]);
|
|
72
72
|
return Chevron;
|
|
73
73
|
}(_react.Component);
|
|
74
|
-
exports.default = Chevron;
|
|
75
74
|
(0, _defineProperty2.default)(Chevron, "defaultProps", {
|
|
76
75
|
expandLabel: 'Expand',
|
|
77
76
|
collapseLabel: 'Collapse'
|
|
@@ -17,7 +17,7 @@ var _toItemId = _interopRequireDefault(require("../../utils/to-item-id"));
|
|
|
17
17
|
var _items = _interopRequireDefault(require("./items"));
|
|
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; } } /** @jsx jsx */ /* eslint-disable @repo/internal/react/no-clone-element */
|
|
20
|
-
var Item = /*#__PURE__*/function (_Component) {
|
|
20
|
+
var Item = exports.default = /*#__PURE__*/function (_Component) {
|
|
21
21
|
(0, _inherits2.default)(Item, _Component);
|
|
22
22
|
var _super = _createSuper(Item);
|
|
23
23
|
function Item() {
|
|
@@ -57,7 +57,6 @@ var Item = /*#__PURE__*/function (_Component) {
|
|
|
57
57
|
}]);
|
|
58
58
|
return Item;
|
|
59
59
|
}(_react.Component);
|
|
60
|
-
exports.default = Item;
|
|
61
60
|
(0, _defineProperty2.default)(Item, "defaultProps", {
|
|
62
61
|
depth: 0
|
|
63
62
|
});
|
|
@@ -20,7 +20,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
20
20
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
21
21
|
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); }; }
|
|
22
22
|
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 react/prop-types */
|
|
23
|
-
var Items = /*#__PURE__*/function (_Component) {
|
|
23
|
+
var Items = exports.default = /*#__PURE__*/function (_Component) {
|
|
24
24
|
(0, _inherits2.default)(Items, _Component);
|
|
25
25
|
var _super = _createSuper(Items);
|
|
26
26
|
function Items() {
|
|
@@ -92,7 +92,6 @@ var Items = /*#__PURE__*/function (_Component) {
|
|
|
92
92
|
}]);
|
|
93
93
|
return Items;
|
|
94
94
|
}(_react.Component);
|
|
95
|
-
exports.default = Items;
|
|
96
95
|
(0, _defineProperty2.default)(Items, "defaultProps", {
|
|
97
96
|
depth: 0
|
|
98
97
|
});
|
|
@@ -21,7 +21,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
21
21
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
22
22
|
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); }; }
|
|
23
23
|
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 react/prop-types */
|
|
24
|
-
var LoaderItem = /*#__PURE__*/function (_Component) {
|
|
24
|
+
var LoaderItem = exports.default = /*#__PURE__*/function (_Component) {
|
|
25
25
|
(0, _inherits2.default)(LoaderItem, _Component);
|
|
26
26
|
var _super = _createSuper(LoaderItem);
|
|
27
27
|
function LoaderItem() {
|
|
@@ -73,7 +73,6 @@ var LoaderItem = /*#__PURE__*/function (_Component) {
|
|
|
73
73
|
}]);
|
|
74
74
|
return LoaderItem;
|
|
75
75
|
}(_react.Component);
|
|
76
|
-
exports.default = LoaderItem;
|
|
77
76
|
(0, _defineProperty2.default)(LoaderItem, "defaultProps", {
|
|
78
77
|
depth: 1
|
|
79
78
|
});
|
|
@@ -11,15 +11,9 @@ var _react = require("@emotion/react");
|
|
|
11
11
|
var _excluded = ["isSingleLine"];
|
|
12
12
|
/** @jsx jsx */
|
|
13
13
|
var overflowContainerStyles = (0, _react.css)({
|
|
14
|
+
overflow: 'hidden',
|
|
14
15
|
textOverflow: 'ellipsis',
|
|
15
|
-
whiteSpace: 'nowrap'
|
|
16
|
-
// Use "clip" overflow to allow ellipses on x-axis without clipping descenders
|
|
17
|
-
'@supports not (overflow-x: clip)': {
|
|
18
|
-
overflow: 'hidden'
|
|
19
|
-
},
|
|
20
|
-
'@supports (overflow-x: clip)': {
|
|
21
|
-
overflowX: 'clip'
|
|
22
|
-
}
|
|
16
|
+
whiteSpace: 'nowrap'
|
|
23
17
|
});
|
|
24
18
|
|
|
25
19
|
/**
|
|
@@ -35,5 +29,4 @@ var OverflowContainer = function OverflowContainer(_ref) {
|
|
|
35
29
|
}, props))
|
|
36
30
|
);
|
|
37
31
|
};
|
|
38
|
-
var _default = OverflowContainer;
|
|
39
|
-
exports.default = _default;
|
|
32
|
+
var _default = exports.default = OverflowContainer;
|
|
@@ -11,10 +11,8 @@ var _react = require("@emotion/react");
|
|
|
11
11
|
var _colors = require("@atlaskit/theme/colors");
|
|
12
12
|
var _excluded = ["isRoot"];
|
|
13
13
|
/** @jsx jsx */
|
|
14
|
-
var iconColor = "var(--ds-text, ".concat(_colors.N800, ")");
|
|
15
|
-
exports.
|
|
16
|
-
var indentBase = "var(--ds-space-300, 25px)";
|
|
17
|
-
exports.indentBase = indentBase;
|
|
14
|
+
var iconColor = exports.iconColor = "var(--ds-text, ".concat(_colors.N800, ")");
|
|
15
|
+
var indentBase = exports.indentBase = "var(--ds-space-300, 25px)";
|
|
18
16
|
var treeRowContainerStyles = (0, _react.css)({
|
|
19
17
|
display: 'flex',
|
|
20
18
|
borderBottom: "1px solid ".concat("var(--ds-border, ".concat(_colors.N30, ")"))
|
|
@@ -23,7 +21,7 @@ var treeRowContainerStyles = (0, _react.css)({
|
|
|
23
21
|
/**
|
|
24
22
|
* __Tree row container__
|
|
25
23
|
*/
|
|
26
|
-
var TreeRowContainer = function TreeRowContainer(props) {
|
|
24
|
+
var TreeRowContainer = exports.TreeRowContainer = function TreeRowContainer(props) {
|
|
27
25
|
return (
|
|
28
26
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
27
|
(0, _react.jsx)("div", (0, _extends2.default)({
|
|
@@ -31,7 +29,6 @@ var TreeRowContainer = function TreeRowContainer(props) {
|
|
|
31
29
|
}, props))
|
|
32
30
|
);
|
|
33
31
|
};
|
|
34
|
-
exports.TreeRowContainer = TreeRowContainer;
|
|
35
32
|
var commonChevronContainerStyles = (0, _react.css)({
|
|
36
33
|
display: 'flex',
|
|
37
34
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
@@ -46,14 +43,13 @@ var commonChevronContainerStyles = (0, _react.css)({
|
|
|
46
43
|
*
|
|
47
44
|
* A wrapper container around the expand table tree button.
|
|
48
45
|
*/
|
|
49
|
-
var ChevronContainer = function ChevronContainer(props
|
|
46
|
+
var ChevronContainer = exports.ChevronContainer = function ChevronContainer(props
|
|
50
47
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
51
48
|
) {
|
|
52
49
|
return (0, _react.jsx)("span", (0, _extends2.default)({}, props, {
|
|
53
50
|
css: commonChevronContainerStyles
|
|
54
51
|
}));
|
|
55
52
|
};
|
|
56
|
-
exports.ChevronContainer = ChevronContainer;
|
|
57
53
|
var chevronIconContainerStyles = (0, _react.css)({
|
|
58
54
|
position: 'relative',
|
|
59
55
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
@@ -65,14 +61,13 @@ var chevronIconContainerStyles = (0, _react.css)({
|
|
|
65
61
|
*
|
|
66
62
|
* A chevron icon container.
|
|
67
63
|
*/
|
|
68
|
-
var ChevronIconContainer = function ChevronIconContainer(props
|
|
64
|
+
var ChevronIconContainer = exports.ChevronIconContainer = function ChevronIconContainer(props
|
|
69
65
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
70
66
|
) {
|
|
71
67
|
return (0, _react.jsx)("span", (0, _extends2.default)({}, props, {
|
|
72
68
|
css: chevronIconContainerStyles
|
|
73
69
|
}));
|
|
74
70
|
};
|
|
75
|
-
exports.ChevronIconContainer = ChevronIconContainer;
|
|
76
71
|
var loadingItemContainerStyles = (0, _react.css)({
|
|
77
72
|
width: '100%',
|
|
78
73
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
@@ -87,12 +82,11 @@ var paddingLeftStyles = (0, _react.css)({
|
|
|
87
82
|
*
|
|
88
83
|
* A loader item container.
|
|
89
84
|
*/
|
|
90
|
-
var LoaderItemContainer = function LoaderItemContainer(_ref) {
|
|
85
|
+
var LoaderItemContainer = exports.LoaderItemContainer = function LoaderItemContainer(_ref) {
|
|
91
86
|
var isRoot = _ref.isRoot,
|
|
92
87
|
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
93
88
|
return (0, _react.jsx)("span", (0, _extends2.default)({
|
|
94
89
|
css: [commonChevronContainerStyles, loadingItemContainerStyles, isRoot && paddingLeftStyles]
|
|
95
90
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
96
91
|
}, props));
|
|
97
|
-
};
|
|
98
|
-
exports.LoaderItemContainer = LoaderItemContainer;
|
|
92
|
+
};
|
|
@@ -28,8 +28,8 @@ var treeRowClickableStyles = (0, _react2.css)({
|
|
|
28
28
|
cursor: 'pointer'
|
|
29
29
|
});
|
|
30
30
|
var packageName = "@atlaskit/table-tree";
|
|
31
|
-
var packageVersion = "9.6.
|
|
32
|
-
var Row = /*#__PURE__*/function (_Component) {
|
|
31
|
+
var packageVersion = "9.6.5";
|
|
32
|
+
var Row = exports.RowWithoutAnalytics = /*#__PURE__*/function (_Component) {
|
|
33
33
|
(0, _inherits2.default)(Row, _Component);
|
|
34
34
|
var _super = _createSuper(Row);
|
|
35
35
|
function Row() {
|
|
@@ -166,9 +166,8 @@ var Row = /*#__PURE__*/function (_Component) {
|
|
|
166
166
|
}]);
|
|
167
167
|
return Row;
|
|
168
168
|
}(_react.Component);
|
|
169
|
-
exports.RowWithoutAnalytics = Row;
|
|
170
169
|
var createAndFireEventOnAtlaskit = (0, _analyticsNext.createAndFireEvent)('atlaskit');
|
|
171
|
-
var _default = (0, _analyticsNext.withAnalyticsContext)({
|
|
170
|
+
var _default = exports.default = (0, _analyticsNext.withAnalyticsContext)({
|
|
172
171
|
componentName: 'row',
|
|
173
172
|
packageName: packageName,
|
|
174
173
|
packageVersion: packageVersion
|
|
@@ -191,5 +190,4 @@ var _default = (0, _analyticsNext.withAnalyticsContext)({
|
|
|
191
190
|
packageVersion: packageVersion
|
|
192
191
|
}
|
|
193
192
|
})
|
|
194
|
-
})(Row));
|
|
195
|
-
exports.default = _default;
|
|
193
|
+
})(Row));
|
|
@@ -17,7 +17,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
17
17
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
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 Rows = /*#__PURE__*/function (_Component) {
|
|
20
|
+
var Rows = exports.default = /*#__PURE__*/function (_Component) {
|
|
21
21
|
(0, _inherits2.default)(Rows, _Component);
|
|
22
22
|
var _super = _createSuper(Rows);
|
|
23
23
|
function Rows() {
|
|
@@ -37,5 +37,4 @@ var Rows = /*#__PURE__*/function (_Component) {
|
|
|
37
37
|
}
|
|
38
38
|
}]);
|
|
39
39
|
return Rows;
|
|
40
|
-
}(_react.Component);
|
|
41
|
-
exports.default = Rows;
|
|
40
|
+
}(_react.Component);
|
|
@@ -28,14 +28,13 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
|
|
|
28
28
|
* Context provider which maintains the column widths and access methods for use in descendent table cells
|
|
29
29
|
* Enables composed table-tree implementations to e.g. set width on header cells only
|
|
30
30
|
*/
|
|
31
|
-
var TableTreeContext = /*#__PURE__*/(0, _react.createContext)({
|
|
31
|
+
var TableTreeContext = exports.TableTreeContext = /*#__PURE__*/(0, _react.createContext)({
|
|
32
32
|
setColumnWidth: function setColumnWidth() {},
|
|
33
33
|
getColumnWidth: function getColumnWidth() {
|
|
34
34
|
return null;
|
|
35
35
|
}
|
|
36
36
|
});
|
|
37
|
-
exports.
|
|
38
|
-
var TableTree = /*#__PURE__*/function (_Component) {
|
|
37
|
+
var TableTree = exports.default = /*#__PURE__*/function (_Component) {
|
|
39
38
|
(0, _inherits2.default)(TableTree, _Component);
|
|
40
39
|
var _super = _createSuper(TableTree);
|
|
41
40
|
function TableTree() {
|
|
@@ -134,5 +133,4 @@ var TableTree = /*#__PURE__*/function (_Component) {
|
|
|
134
133
|
}
|
|
135
134
|
}]);
|
|
136
135
|
return TableTree;
|
|
137
|
-
}(_react.Component);
|
|
138
|
-
exports.default = TableTree;
|
|
136
|
+
}(_react.Component);
|
|
@@ -11,8 +11,8 @@ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers
|
|
|
11
11
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
12
12
|
var _get = _interopRequireDefault(require("lodash/get"));
|
|
13
13
|
var _set = _interopRequireDefault(require("lodash/set"));
|
|
14
|
-
function ownKeys(
|
|
15
|
-
function _objectSpread(
|
|
14
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
15
|
+
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; }
|
|
16
16
|
function updateRootItems(rootItems) {
|
|
17
17
|
var allItems = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
|
|
18
18
|
var _ref = arguments.length > 2 ? arguments[2] : undefined,
|
|
@@ -77,7 +77,7 @@ function updateChildItems(newitems, allTableItems, itemParent, _ref2) {
|
|
|
77
77
|
* Cache will look something like:
|
|
78
78
|
* {1: 0, 2: '0.children[0]'}
|
|
79
79
|
*/
|
|
80
|
-
var TableTreeDataHelper = /*#__PURE__*/function () {
|
|
80
|
+
var TableTreeDataHelper = exports.default = /*#__PURE__*/function () {
|
|
81
81
|
function TableTreeDataHelper() {
|
|
82
82
|
var _ref3 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
|
|
83
83
|
_ref3$key = _ref3.key,
|
|
@@ -134,5 +134,4 @@ var TableTreeDataHelper = /*#__PURE__*/function () {
|
|
|
134
134
|
}
|
|
135
135
|
}]);
|
|
136
136
|
return TableTreeDataHelper;
|
|
137
|
-
}();
|
|
138
|
-
exports.default = TableTreeDataHelper;
|
|
137
|
+
}();
|
|
@@ -3,15 +3,9 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
3
3
|
|
|
4
4
|
import { css, jsx } from '@emotion/react';
|
|
5
5
|
const overflowContainerStyles = css({
|
|
6
|
+
overflow: 'hidden',
|
|
6
7
|
textOverflow: 'ellipsis',
|
|
7
|
-
whiteSpace: 'nowrap'
|
|
8
|
-
// Use "clip" overflow to allow ellipses on x-axis without clipping descenders
|
|
9
|
-
'@supports not (overflow-x: clip)': {
|
|
10
|
-
overflow: 'hidden'
|
|
11
|
-
},
|
|
12
|
-
'@supports (overflow-x: clip)': {
|
|
13
|
-
overflowX: 'clip'
|
|
14
|
-
}
|
|
8
|
+
whiteSpace: 'nowrap'
|
|
15
9
|
});
|
|
16
10
|
|
|
17
11
|
/**
|
|
@@ -5,15 +5,9 @@ var _excluded = ["isSingleLine"];
|
|
|
5
5
|
|
|
6
6
|
import { css, jsx } from '@emotion/react';
|
|
7
7
|
var overflowContainerStyles = css({
|
|
8
|
+
overflow: 'hidden',
|
|
8
9
|
textOverflow: 'ellipsis',
|
|
9
|
-
whiteSpace: 'nowrap'
|
|
10
|
-
// Use "clip" overflow to allow ellipses on x-axis without clipping descenders
|
|
11
|
-
'@supports not (overflow-x: clip)': {
|
|
12
|
-
overflow: 'hidden'
|
|
13
|
-
},
|
|
14
|
-
'@supports (overflow-x: clip)': {
|
|
15
|
-
overflowX: 'clip'
|
|
16
|
-
}
|
|
10
|
+
whiteSpace: 'nowrap'
|
|
17
11
|
});
|
|
18
12
|
|
|
19
13
|
/**
|
|
@@ -20,7 +20,7 @@ var treeRowClickableStyles = css({
|
|
|
20
20
|
cursor: 'pointer'
|
|
21
21
|
});
|
|
22
22
|
var packageName = "@atlaskit/table-tree";
|
|
23
|
-
var packageVersion = "9.6.
|
|
23
|
+
var packageVersion = "9.6.5";
|
|
24
24
|
var Row = /*#__PURE__*/function (_Component) {
|
|
25
25
|
_inherits(Row, _Component);
|
|
26
26
|
var _super = _createSuper(Row);
|
|
@@ -2,8 +2,8 @@ import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
|
|
|
2
2
|
import _createClass from "@babel/runtime/helpers/createClass";
|
|
3
3
|
import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
|
|
4
4
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
5
|
-
function ownKeys(
|
|
6
|
-
function _objectSpread(
|
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
6
|
+
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) { _defineProperty(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; }
|
|
7
7
|
import get from 'lodash/get';
|
|
8
8
|
import set from 'lodash/set';
|
|
9
9
|
function updateRootItems(rootItems) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/table-tree",
|
|
3
|
-
"version": "9.6.
|
|
3
|
+
"version": "9.6.5",
|
|
4
4
|
"description": "A table tree is an expandable table for showing nested hierarchies of information.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@atlaskit/analytics-next": "^9.1.0",
|
|
27
|
-
"@atlaskit/button": "^16.
|
|
27
|
+
"@atlaskit/button": "^16.10.0",
|
|
28
28
|
"@atlaskit/icon": "^21.12.0",
|
|
29
|
-
"@atlaskit/spinner": "^15.
|
|
30
|
-
"@atlaskit/theme": "^12.
|
|
31
|
-
"@atlaskit/tokens": "^1.
|
|
29
|
+
"@atlaskit/spinner": "^15.6.0",
|
|
30
|
+
"@atlaskit/theme": "^12.6.0",
|
|
31
|
+
"@atlaskit/tokens": "^1.26.0",
|
|
32
32
|
"@babel/runtime": "^7.0.0",
|
|
33
33
|
"@emotion/react": "^11.7.1",
|
|
34
34
|
"lodash": "^4.17.21"
|