@atlaskit/tmp-editor-statsig 135.4.0 → 135.5.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 135.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`90510b2e6e5af`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/90510b2e6e5af) -
|
|
8
|
+
Prevent nested renderer tables from incorrectly using content-width mode
|
|
9
|
+
|
|
3
10
|
## 135.4.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1801,6 +1801,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1801
1801
|
param: 'isEnabled',
|
|
1802
1802
|
defaultValue: false
|
|
1803
1803
|
}),
|
|
1804
|
+
// Added 2026-07-28
|
|
1805
|
+
platform_editor_table_nested_content_mode_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1806
|
+
productKeys: {
|
|
1807
|
+
confluence: 'platform_editor_table_nested_content_mode_fix'
|
|
1808
|
+
},
|
|
1809
|
+
param: 'isEnabled',
|
|
1810
|
+
defaultValue: false
|
|
1811
|
+
}),
|
|
1804
1812
|
platform_editor_table_fit_to_content_on_demand: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1805
1813
|
productKeys: {
|
|
1806
1814
|
confluence: 'platform_editor_table_fit_to_content_on_demand'
|
|
@@ -1795,6 +1795,14 @@ export const editorExperimentsConfig = {
|
|
|
1795
1795
|
param: 'isEnabled',
|
|
1796
1796
|
defaultValue: false
|
|
1797
1797
|
}),
|
|
1798
|
+
// Added 2026-07-28
|
|
1799
|
+
platform_editor_table_nested_content_mode_fix: createBooleanExperiment({
|
|
1800
|
+
productKeys: {
|
|
1801
|
+
confluence: 'platform_editor_table_nested_content_mode_fix'
|
|
1802
|
+
},
|
|
1803
|
+
param: 'isEnabled',
|
|
1804
|
+
defaultValue: false
|
|
1805
|
+
}),
|
|
1798
1806
|
platform_editor_table_fit_to_content_on_demand: createBooleanExperiment({
|
|
1799
1807
|
productKeys: {
|
|
1800
1808
|
confluence: 'platform_editor_table_fit_to_content_on_demand'
|
|
@@ -1795,6 +1795,14 @@ export var editorExperimentsConfig = {
|
|
|
1795
1795
|
param: 'isEnabled',
|
|
1796
1796
|
defaultValue: false
|
|
1797
1797
|
}),
|
|
1798
|
+
// Added 2026-07-28
|
|
1799
|
+
platform_editor_table_nested_content_mode_fix: createBooleanExperiment({
|
|
1800
|
+
productKeys: {
|
|
1801
|
+
confluence: 'platform_editor_table_nested_content_mode_fix'
|
|
1802
|
+
},
|
|
1803
|
+
param: 'isEnabled',
|
|
1804
|
+
defaultValue: false
|
|
1805
|
+
}),
|
|
1798
1806
|
platform_editor_table_fit_to_content_on_demand: createBooleanExperiment({
|
|
1799
1807
|
productKeys: {
|
|
1800
1808
|
confluence: 'platform_editor_table_fit_to_content_on_demand'
|
|
@@ -1401,6 +1401,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1401
1401
|
productKeys?: ProductKeys;
|
|
1402
1402
|
typeGuard: IsBooleanType;
|
|
1403
1403
|
};
|
|
1404
|
+
platform_editor_table_nested_content_mode_fix: {
|
|
1405
|
+
defaultValue: boolean;
|
|
1406
|
+
param: string;
|
|
1407
|
+
productKeys?: ProductKeys;
|
|
1408
|
+
typeGuard: IsBooleanType;
|
|
1409
|
+
};
|
|
1404
1410
|
platform_editor_table_fit_to_content_on_demand: {
|
|
1405
1411
|
defaultValue: boolean;
|
|
1406
1412
|
param: string;
|
package/package.json
CHANGED