@atlaskit/renderer 126.6.2 → 126.6.4
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 +14 -0
- package/dist/cjs/react/nodes/table/colgroup.js +1 -6
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/react/nodes/table/colgroup.js +1 -6
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/react/nodes/table/colgroup.js +1 -6
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/package.json +4 -4
- package/tsconfig.json +18 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 126.6.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`d20e0e448e8b7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d20e0e448e8b7) -
|
|
8
|
+
Cleanup experiment for style changes to prevent the numbered column from growing too big
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 126.6.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 126.6.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -178,7 +178,7 @@ var renderScaleDownColgroup = function renderScaleDownColgroup(props) {
|
|
|
178
178
|
isNumberColumnEnabled: isNumberColumnEnabled
|
|
179
179
|
});
|
|
180
180
|
}
|
|
181
|
-
if (isNumberColumnEnabled && (tableWidth < maxTableWidth || maxTableWidth === 0)
|
|
181
|
+
if (isNumberColumnEnabled && (tableWidth < maxTableWidth || maxTableWidth === 0)) {
|
|
182
182
|
var fixedColWidths = targetWidths.map(function (width) {
|
|
183
183
|
return fixColumnWidth({
|
|
184
184
|
columnWidth: width,
|
|
@@ -206,11 +206,6 @@ var renderScaleDownColgroup = function renderScaleDownColgroup(props) {
|
|
|
206
206
|
}
|
|
207
207
|
});
|
|
208
208
|
}
|
|
209
|
-
|
|
210
|
-
/**
|
|
211
|
-
* When cleaning up editor_prevent_numbered_column_too_big_jira_1 experiment,
|
|
212
|
-
* resuse the fixedColWidths const to avoid code duplication.
|
|
213
|
-
*/
|
|
214
209
|
return targetWidths.map(function (colWidth) {
|
|
215
210
|
var width = fixColumnWidth({
|
|
216
211
|
columnWidth: colWidth,
|
|
@@ -70,7 +70,7 @@ var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
70
70
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
71
71
|
var RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
72
72
|
var packageName = "@atlaskit/renderer";
|
|
73
|
-
var packageVersion = "126.6.
|
|
73
|
+
var packageVersion = "126.6.3";
|
|
74
74
|
var setAsQueryContainerStyles = (0, _react2.css)({
|
|
75
75
|
containerName: 'ak-renderer-wrapper',
|
|
76
76
|
containerType: 'inline-size'
|
|
@@ -165,7 +165,7 @@ const renderScaleDownColgroup = props => {
|
|
|
165
165
|
isNumberColumnEnabled: isNumberColumnEnabled
|
|
166
166
|
});
|
|
167
167
|
}
|
|
168
|
-
if (isNumberColumnEnabled && (tableWidth < maxTableWidth || maxTableWidth === 0)
|
|
168
|
+
if (isNumberColumnEnabled && (tableWidth < maxTableWidth || maxTableWidth === 0)) {
|
|
169
169
|
const fixedColWidths = targetWidths.map(width => fixColumnWidth({
|
|
170
170
|
columnWidth: width,
|
|
171
171
|
zeroWidthColumnsCount,
|
|
@@ -191,11 +191,6 @@ const renderScaleDownColgroup = props => {
|
|
|
191
191
|
}
|
|
192
192
|
});
|
|
193
193
|
}
|
|
194
|
-
|
|
195
|
-
/**
|
|
196
|
-
* When cleaning up editor_prevent_numbered_column_too_big_jira_1 experiment,
|
|
197
|
-
* resuse the fixedColWidths const to avoid code duplication.
|
|
198
|
-
*/
|
|
199
194
|
return targetWidths.map(colWidth => {
|
|
200
195
|
const width = fixColumnWidth({
|
|
201
196
|
columnWidth: colWidth,
|
|
@@ -56,7 +56,7 @@ export const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
56
56
|
const TABLE_INFO_TIMEOUT = 10000;
|
|
57
57
|
const RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
58
58
|
const packageName = "@atlaskit/renderer";
|
|
59
|
-
const packageVersion = "126.6.
|
|
59
|
+
const packageVersion = "126.6.3";
|
|
60
60
|
const setAsQueryContainerStyles = css({
|
|
61
61
|
containerName: 'ak-renderer-wrapper',
|
|
62
62
|
containerType: 'inline-size'
|
|
@@ -172,7 +172,7 @@ var renderScaleDownColgroup = function renderScaleDownColgroup(props) {
|
|
|
172
172
|
isNumberColumnEnabled: isNumberColumnEnabled
|
|
173
173
|
});
|
|
174
174
|
}
|
|
175
|
-
if (isNumberColumnEnabled && (tableWidth < maxTableWidth || maxTableWidth === 0)
|
|
175
|
+
if (isNumberColumnEnabled && (tableWidth < maxTableWidth || maxTableWidth === 0)) {
|
|
176
176
|
var fixedColWidths = targetWidths.map(function (width) {
|
|
177
177
|
return fixColumnWidth({
|
|
178
178
|
columnWidth: width,
|
|
@@ -200,11 +200,6 @@ var renderScaleDownColgroup = function renderScaleDownColgroup(props) {
|
|
|
200
200
|
}
|
|
201
201
|
});
|
|
202
202
|
}
|
|
203
|
-
|
|
204
|
-
/**
|
|
205
|
-
* When cleaning up editor_prevent_numbered_column_too_big_jira_1 experiment,
|
|
206
|
-
* resuse the fixedColWidths const to avoid code duplication.
|
|
207
|
-
*/
|
|
208
203
|
return targetWidths.map(function (colWidth) {
|
|
209
204
|
var width = fixColumnWidth({
|
|
210
205
|
columnWidth: colWidth,
|
|
@@ -61,7 +61,7 @@ export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
61
61
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
62
62
|
var RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
63
63
|
var packageName = "@atlaskit/renderer";
|
|
64
|
-
var packageVersion = "126.6.
|
|
64
|
+
var packageVersion = "126.6.3";
|
|
65
65
|
var setAsQueryContainerStyles = css({
|
|
66
66
|
containerName: 'ak-renderer-wrapper',
|
|
67
67
|
containerType: 'inline-size'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "126.6.
|
|
3
|
+
"version": "126.6.4",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
"@atlaskit/media-viewer": "^52.7.0",
|
|
53
53
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
54
54
|
"@atlaskit/platform-feature-flags-react": "^0.4.0",
|
|
55
|
-
"@atlaskit/react-ufo": "^5.
|
|
55
|
+
"@atlaskit/react-ufo": "^5.1.0",
|
|
56
56
|
"@atlaskit/smart-card": "^43.23.0",
|
|
57
57
|
"@atlaskit/status": "^3.1.0",
|
|
58
58
|
"@atlaskit/task-decision": "^19.2.0",
|
|
59
59
|
"@atlaskit/theme": "^21.0.0",
|
|
60
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
60
|
+
"@atlaskit/tmp-editor-statsig": "^20.0.0",
|
|
61
61
|
"@atlaskit/tokens": "^11.0.0",
|
|
62
62
|
"@atlaskit/tooltip": "^20.14.0",
|
|
63
63
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"@atlaskit/navigation-next": "patch:@atlaskit/navigation-next@npm%3A9.0.17#~/.yarn/patches/@atlaskit-navigation-next-npm-9.0.17-958ca0ab9d.patch",
|
|
93
93
|
"@atlaskit/profilecard": "^24.34.0",
|
|
94
94
|
"@atlaskit/util-data-test": "^18.5.0",
|
|
95
|
-
"@atlassian/a11y-jest-testing": "^0.
|
|
95
|
+
"@atlassian/a11y-jest-testing": "^0.9.0",
|
|
96
96
|
"@atlassian/feature-flags-test-utils": "^1.0.0",
|
|
97
97
|
"@atlassian/testing-library": "^0.4.0",
|
|
98
98
|
"@testing-library/react": "^16.3.0",
|
package/tsconfig.json
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
2
|
+
"extends": "../../../tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"moduleResolution": "node"
|
|
5
|
+
},
|
|
6
|
+
"include": [
|
|
7
|
+
"./src/**/*.ts",
|
|
8
|
+
"./src/**/*.tsx",
|
|
9
|
+
"./docs/**/*.ts",
|
|
10
|
+
"./docs/**/*.tsx",
|
|
11
|
+
"./examples/**/*.ts",
|
|
12
|
+
"./examples/**/*.tsx",
|
|
13
|
+
"**/stories.ts",
|
|
14
|
+
"**/stories.tsx",
|
|
15
|
+
"**/stories/*.ts",
|
|
16
|
+
"**/stories/*.tsx",
|
|
17
|
+
"**/stories/**/*.ts",
|
|
18
|
+
"**/stories/**/*.tsx"
|
|
19
|
+
]
|
|
18
20
|
}
|