@atlaskit/tmp-editor-statsig 166.0.0 → 167.0.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
|
+
## 167.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`4df90d6af7dc0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4df90d6af7dc0) -
|
|
8
|
+
Clean up experiment `platform_editor_layout_keywords` and retain the launched layout search
|
|
9
|
+
keywords.
|
|
10
|
+
|
|
3
11
|
## 166.0.0
|
|
4
12
|
|
|
5
13
|
### Major Changes
|
|
@@ -506,15 +506,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
506
506
|
param: 'isEnabled',
|
|
507
507
|
defaultValue: false
|
|
508
508
|
}),
|
|
509
|
-
// Added 2026-06-02
|
|
510
|
-
platform_editor_layout_keywords: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
511
|
-
productKeys: {
|
|
512
|
-
confluence: 'platform_editor_layout_keywords',
|
|
513
|
-
jira: 'platform_editor_layout_keywords'
|
|
514
|
-
},
|
|
515
|
-
param: 'isEnabled',
|
|
516
|
-
defaultValue: false
|
|
517
|
-
}),
|
|
518
509
|
// Added 2025-04-17
|
|
519
510
|
platform_editor_tables_table_selector: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
520
511
|
productKeys: {
|
|
@@ -500,15 +500,6 @@ export const editorExperimentsConfig = {
|
|
|
500
500
|
param: 'isEnabled',
|
|
501
501
|
defaultValue: false
|
|
502
502
|
}),
|
|
503
|
-
// Added 2026-06-02
|
|
504
|
-
platform_editor_layout_keywords: createBooleanExperiment({
|
|
505
|
-
productKeys: {
|
|
506
|
-
confluence: 'platform_editor_layout_keywords',
|
|
507
|
-
jira: 'platform_editor_layout_keywords'
|
|
508
|
-
},
|
|
509
|
-
param: 'isEnabled',
|
|
510
|
-
defaultValue: false
|
|
511
|
-
}),
|
|
512
503
|
// Added 2025-04-17
|
|
513
504
|
platform_editor_tables_table_selector: createBooleanExperiment({
|
|
514
505
|
productKeys: {
|
|
@@ -500,15 +500,6 @@ export var editorExperimentsConfig = {
|
|
|
500
500
|
param: 'isEnabled',
|
|
501
501
|
defaultValue: false
|
|
502
502
|
}),
|
|
503
|
-
// Added 2026-06-02
|
|
504
|
-
platform_editor_layout_keywords: createBooleanExperiment({
|
|
505
|
-
productKeys: {
|
|
506
|
-
confluence: 'platform_editor_layout_keywords',
|
|
507
|
-
jira: 'platform_editor_layout_keywords'
|
|
508
|
-
},
|
|
509
|
-
param: 'isEnabled',
|
|
510
|
-
defaultValue: false
|
|
511
|
-
}),
|
|
512
503
|
// Added 2025-04-17
|
|
513
504
|
platform_editor_tables_table_selector: createBooleanExperiment({
|
|
514
505
|
productKeys: {
|
|
@@ -271,12 +271,6 @@ export declare const editorExperimentsConfig: {
|
|
|
271
271
|
typeGuard: (value: unknown) => value is 'control' | 'prioritizeLinkInQIM' | 'prioritizeEmbedInQIM';
|
|
272
272
|
values: ('control' | 'prioritizeLinkInQIM' | 'prioritizeEmbedInQIM')[];
|
|
273
273
|
};
|
|
274
|
-
platform_editor_layout_keywords: {
|
|
275
|
-
defaultValue: boolean;
|
|
276
|
-
param: string;
|
|
277
|
-
productKeys?: ProductKeys;
|
|
278
|
-
typeGuard: IsBooleanType;
|
|
279
|
-
};
|
|
280
274
|
confluence_remix_icon_right_side: {
|
|
281
275
|
defaultValue: boolean;
|
|
282
276
|
param: string;
|
package/package.json
CHANGED