@atlaskit/tmp-editor-statsig 108.3.0 → 108.4.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 108.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`298f9a506cb5f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/298f9a506cb5f) -
|
|
8
|
+
[EDITOR-6790] Allow inserting a column to the left of the first column, behind the
|
|
9
|
+
platform_editor_table_col_insert experiment
|
|
10
|
+
|
|
3
11
|
## 108.3.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -233,6 +233,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
233
233
|
param: 'isEnabled',
|
|
234
234
|
defaultValue: false
|
|
235
235
|
}),
|
|
236
|
+
// Added 2026-06-16
|
|
237
|
+
platform_editor_table_col_insert: (0, _experimentBuilders.createBooleanExperiment)({
|
|
238
|
+
productKeys: {
|
|
239
|
+
confluence: 'platform_editor_table_col_insert'
|
|
240
|
+
},
|
|
241
|
+
param: 'isEnabled',
|
|
242
|
+
defaultValue: false
|
|
243
|
+
}),
|
|
236
244
|
// Added 2026-03-06
|
|
237
245
|
platform_editor_media_reliability_observability: (0, _experimentBuilders.createBooleanExperiment)({
|
|
238
246
|
productKeys: {
|
|
@@ -227,6 +227,14 @@ export const editorExperimentsConfig = {
|
|
|
227
227
|
param: 'isEnabled',
|
|
228
228
|
defaultValue: false
|
|
229
229
|
}),
|
|
230
|
+
// Added 2026-06-16
|
|
231
|
+
platform_editor_table_col_insert: createBooleanExperiment({
|
|
232
|
+
productKeys: {
|
|
233
|
+
confluence: 'platform_editor_table_col_insert'
|
|
234
|
+
},
|
|
235
|
+
param: 'isEnabled',
|
|
236
|
+
defaultValue: false
|
|
237
|
+
}),
|
|
230
238
|
// Added 2026-03-06
|
|
231
239
|
platform_editor_media_reliability_observability: createBooleanExperiment({
|
|
232
240
|
productKeys: {
|
|
@@ -227,6 +227,14 @@ export var editorExperimentsConfig = {
|
|
|
227
227
|
param: 'isEnabled',
|
|
228
228
|
defaultValue: false
|
|
229
229
|
}),
|
|
230
|
+
// Added 2026-06-16
|
|
231
|
+
platform_editor_table_col_insert: createBooleanExperiment({
|
|
232
|
+
productKeys: {
|
|
233
|
+
confluence: 'platform_editor_table_col_insert'
|
|
234
|
+
},
|
|
235
|
+
param: 'isEnabled',
|
|
236
|
+
defaultValue: false
|
|
237
|
+
}),
|
|
230
238
|
// Added 2026-03-06
|
|
231
239
|
platform_editor_media_reliability_observability: createBooleanExperiment({
|
|
232
240
|
productKeys: {
|
|
@@ -616,6 +616,12 @@ export declare const editorExperimentsConfig: {
|
|
|
616
616
|
productKeys?: ProductKeys;
|
|
617
617
|
typeGuard: IsBooleanType;
|
|
618
618
|
};
|
|
619
|
+
platform_editor_table_col_insert: {
|
|
620
|
+
defaultValue: boolean;
|
|
621
|
+
param: string;
|
|
622
|
+
productKeys?: ProductKeys;
|
|
623
|
+
typeGuard: IsBooleanType;
|
|
624
|
+
};
|
|
619
625
|
platform_editor_tables_table_selector: {
|
|
620
626
|
defaultValue: boolean;
|
|
621
627
|
param: string;
|
package/package.json
CHANGED