@atlaskit/tmp-editor-statsig 135.1.0 → 135.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 135.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b91c14d4dbad7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b91c14d4dbad7) -
|
|
8
|
+
Editor; Ensure only the first table row can become a sticky header when the rounded table patch is
|
|
9
|
+
enabled
|
|
10
|
+
|
|
11
|
+
Renderer; Patch table body elements to have rounded corners when overridden by consumers
|
|
12
|
+
|
|
3
13
|
## 135.1.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -2085,6 +2085,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2085
2085
|
param: 'isEnabled',
|
|
2086
2086
|
defaultValue: false
|
|
2087
2087
|
}),
|
|
2088
|
+
// Added 2026-07-22
|
|
2089
|
+
platform_editor_table_q4_patch_5: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2090
|
+
productKeys: {
|
|
2091
|
+
confluence: 'platform_editor_table_q4_patch_5',
|
|
2092
|
+
jira: 'platform_editor_table_q4_patch_5'
|
|
2093
|
+
},
|
|
2094
|
+
param: 'isEnabled',
|
|
2095
|
+
defaultValue: false
|
|
2096
|
+
}),
|
|
2088
2097
|
// Added 2026-05-11
|
|
2089
2098
|
platform_editor_table_menu_updates: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2090
2099
|
productKeys: {
|
|
@@ -2079,6 +2079,15 @@ export const editorExperimentsConfig = {
|
|
|
2079
2079
|
param: 'isEnabled',
|
|
2080
2080
|
defaultValue: false
|
|
2081
2081
|
}),
|
|
2082
|
+
// Added 2026-07-22
|
|
2083
|
+
platform_editor_table_q4_patch_5: createBooleanExperiment({
|
|
2084
|
+
productKeys: {
|
|
2085
|
+
confluence: 'platform_editor_table_q4_patch_5',
|
|
2086
|
+
jira: 'platform_editor_table_q4_patch_5'
|
|
2087
|
+
},
|
|
2088
|
+
param: 'isEnabled',
|
|
2089
|
+
defaultValue: false
|
|
2090
|
+
}),
|
|
2082
2091
|
// Added 2026-05-11
|
|
2083
2092
|
platform_editor_table_menu_updates: createBooleanExperiment({
|
|
2084
2093
|
productKeys: {
|
|
@@ -2079,6 +2079,15 @@ export var editorExperimentsConfig = {
|
|
|
2079
2079
|
param: 'isEnabled',
|
|
2080
2080
|
defaultValue: false
|
|
2081
2081
|
}),
|
|
2082
|
+
// Added 2026-07-22
|
|
2083
|
+
platform_editor_table_q4_patch_5: createBooleanExperiment({
|
|
2084
|
+
productKeys: {
|
|
2085
|
+
confluence: 'platform_editor_table_q4_patch_5',
|
|
2086
|
+
jira: 'platform_editor_table_q4_patch_5'
|
|
2087
|
+
},
|
|
2088
|
+
param: 'isEnabled',
|
|
2089
|
+
defaultValue: false
|
|
2090
|
+
}),
|
|
2082
2091
|
// Added 2026-05-11
|
|
2083
2092
|
platform_editor_table_menu_updates: createBooleanExperiment({
|
|
2084
2093
|
productKeys: {
|
|
@@ -1521,6 +1521,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1521
1521
|
productKeys?: ProductKeys;
|
|
1522
1522
|
typeGuard: IsBooleanType;
|
|
1523
1523
|
};
|
|
1524
|
+
platform_editor_table_q4_patch_5: {
|
|
1525
|
+
defaultValue: boolean;
|
|
1526
|
+
param: string;
|
|
1527
|
+
productKeys?: ProductKeys;
|
|
1528
|
+
typeGuard: IsBooleanType;
|
|
1529
|
+
};
|
|
1524
1530
|
platform_editor_table_menu_updates: {
|
|
1525
1531
|
defaultValue: boolean;
|
|
1526
1532
|
param: string;
|
package/package.json
CHANGED