@atlaskit/tmp-editor-statsig 81.1.0 → 81.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 81.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`4f2e912c65ae3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4f2e912c65ae3) -
|
|
8
|
+
Gate table-in-panel ADF validation behind experiment (EDITOR-7168)
|
|
9
|
+
|
|
3
10
|
## 81.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -2209,6 +2209,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2209
2209
|
param: 'isEnabled',
|
|
2210
2210
|
defaultValue: false
|
|
2211
2211
|
}),
|
|
2212
|
+
// Added 2026-05-18
|
|
2213
|
+
platform_editor_nest_table_in_panel: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2214
|
+
productKeys: {
|
|
2215
|
+
confluence: 'platform_editor_nest_table_in_panel'
|
|
2216
|
+
},
|
|
2217
|
+
param: 'isEnabled',
|
|
2218
|
+
defaultValue: false
|
|
2219
|
+
}),
|
|
2212
2220
|
// Added 2026-05-15
|
|
2213
2221
|
platform_editor_fix_sticky_header_malfunction: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2214
2222
|
productKeys: {
|
|
@@ -2203,6 +2203,14 @@ export const editorExperimentsConfig = {
|
|
|
2203
2203
|
param: 'isEnabled',
|
|
2204
2204
|
defaultValue: false
|
|
2205
2205
|
}),
|
|
2206
|
+
// Added 2026-05-18
|
|
2207
|
+
platform_editor_nest_table_in_panel: createBooleanExperiment({
|
|
2208
|
+
productKeys: {
|
|
2209
|
+
confluence: 'platform_editor_nest_table_in_panel'
|
|
2210
|
+
},
|
|
2211
|
+
param: 'isEnabled',
|
|
2212
|
+
defaultValue: false
|
|
2213
|
+
}),
|
|
2206
2214
|
// Added 2026-05-15
|
|
2207
2215
|
platform_editor_fix_sticky_header_malfunction: createBooleanExperiment({
|
|
2208
2216
|
productKeys: {
|
|
@@ -2203,6 +2203,14 @@ export var editorExperimentsConfig = {
|
|
|
2203
2203
|
param: 'isEnabled',
|
|
2204
2204
|
defaultValue: false
|
|
2205
2205
|
}),
|
|
2206
|
+
// Added 2026-05-18
|
|
2207
|
+
platform_editor_nest_table_in_panel: createBooleanExperiment({
|
|
2208
|
+
productKeys: {
|
|
2209
|
+
confluence: 'platform_editor_nest_table_in_panel'
|
|
2210
|
+
},
|
|
2211
|
+
param: 'isEnabled',
|
|
2212
|
+
defaultValue: false
|
|
2213
|
+
}),
|
|
2206
2214
|
// Added 2026-05-15
|
|
2207
2215
|
platform_editor_fix_sticky_header_malfunction: createBooleanExperiment({
|
|
2208
2216
|
productKeys: {
|
|
@@ -1628,5 +1628,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1628
1628
|
productKeys?: ProductKeys;
|
|
1629
1629
|
typeGuard: IsBooleanType;
|
|
1630
1630
|
};
|
|
1631
|
+
platform_editor_nest_table_in_panel: {
|
|
1632
|
+
defaultValue: boolean;
|
|
1633
|
+
param: string;
|
|
1634
|
+
productKeys?: ProductKeys;
|
|
1635
|
+
typeGuard: IsBooleanType;
|
|
1636
|
+
};
|
|
1631
1637
|
};
|
|
1632
1638
|
export {};
|
|
@@ -1628,5 +1628,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1628
1628
|
productKeys?: ProductKeys;
|
|
1629
1629
|
typeGuard: IsBooleanType;
|
|
1630
1630
|
};
|
|
1631
|
+
platform_editor_nest_table_in_panel: {
|
|
1632
|
+
defaultValue: boolean;
|
|
1633
|
+
param: string;
|
|
1634
|
+
productKeys?: ProductKeys;
|
|
1635
|
+
typeGuard: IsBooleanType;
|
|
1636
|
+
};
|
|
1631
1637
|
};
|
|
1632
1638
|
export {};
|
package/package.json
CHANGED