@atlaskit/tmp-editor-statsig 29.6.2 → 30.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 +20 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +16 -8
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +16 -8
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +16 -8
- package/dist/types/experiments-config.d.ts +12 -6
- package/dist/types-ts4.5/experiments-config.d.ts +12 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 30.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`bd1a52462d558`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bd1a52462d558) -
|
|
8
|
+
Remove `platform_editor_ai_create_use_new_parser` experiment a it is fully rolled out.
|
|
9
|
+
|
|
10
|
+
### Minor Changes
|
|
11
|
+
|
|
12
|
+
- [`3ce77a10a8e99`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3ce77a10a8e99) -
|
|
13
|
+
EDITOR-5521 - escape early for unhealthy editor AIFC streaming fragment
|
|
14
|
+
|
|
15
|
+
## 29.7.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [`a0aa8f73bbd02`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a0aa8f73bbd02) -
|
|
20
|
+
[ux] EDITOR-5466 Introduce new popup menu for paste actions which includes existing functionality
|
|
21
|
+
used by the existing floatingToolbar implementation
|
|
22
|
+
|
|
3
23
|
## 29.6.2
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -50,5 +50,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
50
50
|
platform_editor_toggle_expand_on_match_found: false,
|
|
51
51
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
52
52
|
platform_editor_prosemirror_rendered_data: false,
|
|
53
|
-
confluence_compact_text_format: false
|
|
53
|
+
confluence_compact_text_format: false,
|
|
54
|
+
platform_editor_paste_actions_menu: false
|
|
54
55
|
};
|
|
@@ -165,14 +165,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
165
165
|
param: 'isEnabled',
|
|
166
166
|
defaultValue: false
|
|
167
167
|
}),
|
|
168
|
-
// Added 2026-01-26
|
|
169
|
-
platform_editor_ai_create_use_new_parser: (0, _experimentBuilders.createBooleanExperiment)({
|
|
170
|
-
productKeys: {
|
|
171
|
-
confluence: 'platform_editor_ai_create_use_new_parser'
|
|
172
|
-
},
|
|
173
|
-
param: 'isEnabled',
|
|
174
|
-
defaultValue: false
|
|
175
|
-
}),
|
|
176
168
|
// Added 2025-05-27
|
|
177
169
|
platform_editor_reduce_noisy_steps_ncs: (0, _experimentBuilders.createBooleanExperiment)({
|
|
178
170
|
productKeys: {
|
|
@@ -320,6 +312,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
320
312
|
param: 'isEnabled',
|
|
321
313
|
defaultValue: false
|
|
322
314
|
}),
|
|
315
|
+
// Added 2026-02-24
|
|
316
|
+
platform_editor_paste_actions_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
317
|
+
productKeys: {
|
|
318
|
+
confluence: 'platform_editor_paste_actions_menu'
|
|
319
|
+
},
|
|
320
|
+
param: 'isEnabled',
|
|
321
|
+
defaultValue: false
|
|
322
|
+
}),
|
|
323
323
|
// Added 2026-02-03
|
|
324
324
|
platform_editor_aifc_fix_button_viewed_analytics: (0, _experimentBuilders.createBooleanExperiment)({
|
|
325
325
|
productKeys: {
|
|
@@ -833,6 +833,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
833
833
|
param: 'isEnabled',
|
|
834
834
|
defaultValue: false
|
|
835
835
|
}),
|
|
836
|
+
// Added 2026-02-25
|
|
837
|
+
platform_editor_ai_escape_early_for_unhealthy_node: (0, _experimentBuilders.createBooleanExperiment)({
|
|
838
|
+
productKeys: {
|
|
839
|
+
confluence: 'platform_editor_ai_escape_early_for_unhealthy_node'
|
|
840
|
+
},
|
|
841
|
+
param: 'isEnabled',
|
|
842
|
+
defaultValue: false
|
|
843
|
+
}),
|
|
836
844
|
// Added 2025-12-04
|
|
837
845
|
confluence_compact_text_format: (0, _experimentBuilders.createBooleanExperiment)({
|
|
838
846
|
productKeys: {
|
|
@@ -44,5 +44,6 @@ export const testBooleanOverrides = {
|
|
|
44
44
|
platform_editor_toggle_expand_on_match_found: false,
|
|
45
45
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
46
46
|
platform_editor_prosemirror_rendered_data: false,
|
|
47
|
-
confluence_compact_text_format: false
|
|
47
|
+
confluence_compact_text_format: false,
|
|
48
|
+
platform_editor_paste_actions_menu: false
|
|
48
49
|
};
|
|
@@ -159,14 +159,6 @@ export const editorExperimentsConfig = {
|
|
|
159
159
|
param: 'isEnabled',
|
|
160
160
|
defaultValue: false
|
|
161
161
|
}),
|
|
162
|
-
// Added 2026-01-26
|
|
163
|
-
platform_editor_ai_create_use_new_parser: createBooleanExperiment({
|
|
164
|
-
productKeys: {
|
|
165
|
-
confluence: 'platform_editor_ai_create_use_new_parser'
|
|
166
|
-
},
|
|
167
|
-
param: 'isEnabled',
|
|
168
|
-
defaultValue: false
|
|
169
|
-
}),
|
|
170
162
|
// Added 2025-05-27
|
|
171
163
|
platform_editor_reduce_noisy_steps_ncs: createBooleanExperiment({
|
|
172
164
|
productKeys: {
|
|
@@ -314,6 +306,14 @@ export const editorExperimentsConfig = {
|
|
|
314
306
|
param: 'isEnabled',
|
|
315
307
|
defaultValue: false
|
|
316
308
|
}),
|
|
309
|
+
// Added 2026-02-24
|
|
310
|
+
platform_editor_paste_actions_menu: createBooleanExperiment({
|
|
311
|
+
productKeys: {
|
|
312
|
+
confluence: 'platform_editor_paste_actions_menu'
|
|
313
|
+
},
|
|
314
|
+
param: 'isEnabled',
|
|
315
|
+
defaultValue: false
|
|
316
|
+
}),
|
|
317
317
|
// Added 2026-02-03
|
|
318
318
|
platform_editor_aifc_fix_button_viewed_analytics: createBooleanExperiment({
|
|
319
319
|
productKeys: {
|
|
@@ -827,6 +827,14 @@ export const editorExperimentsConfig = {
|
|
|
827
827
|
param: 'isEnabled',
|
|
828
828
|
defaultValue: false
|
|
829
829
|
}),
|
|
830
|
+
// Added 2026-02-25
|
|
831
|
+
platform_editor_ai_escape_early_for_unhealthy_node: createBooleanExperiment({
|
|
832
|
+
productKeys: {
|
|
833
|
+
confluence: 'platform_editor_ai_escape_early_for_unhealthy_node'
|
|
834
|
+
},
|
|
835
|
+
param: 'isEnabled',
|
|
836
|
+
defaultValue: false
|
|
837
|
+
}),
|
|
830
838
|
// Added 2025-12-04
|
|
831
839
|
confluence_compact_text_format: createBooleanExperiment({
|
|
832
840
|
productKeys: {
|
|
@@ -44,5 +44,6 @@ export var testBooleanOverrides = {
|
|
|
44
44
|
platform_editor_toggle_expand_on_match_found: false,
|
|
45
45
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
46
46
|
platform_editor_prosemirror_rendered_data: false,
|
|
47
|
-
confluence_compact_text_format: false
|
|
47
|
+
confluence_compact_text_format: false,
|
|
48
|
+
platform_editor_paste_actions_menu: false
|
|
48
49
|
};
|
|
@@ -159,14 +159,6 @@ export var editorExperimentsConfig = {
|
|
|
159
159
|
param: 'isEnabled',
|
|
160
160
|
defaultValue: false
|
|
161
161
|
}),
|
|
162
|
-
// Added 2026-01-26
|
|
163
|
-
platform_editor_ai_create_use_new_parser: createBooleanExperiment({
|
|
164
|
-
productKeys: {
|
|
165
|
-
confluence: 'platform_editor_ai_create_use_new_parser'
|
|
166
|
-
},
|
|
167
|
-
param: 'isEnabled',
|
|
168
|
-
defaultValue: false
|
|
169
|
-
}),
|
|
170
162
|
// Added 2025-05-27
|
|
171
163
|
platform_editor_reduce_noisy_steps_ncs: createBooleanExperiment({
|
|
172
164
|
productKeys: {
|
|
@@ -314,6 +306,14 @@ export var editorExperimentsConfig = {
|
|
|
314
306
|
param: 'isEnabled',
|
|
315
307
|
defaultValue: false
|
|
316
308
|
}),
|
|
309
|
+
// Added 2026-02-24
|
|
310
|
+
platform_editor_paste_actions_menu: createBooleanExperiment({
|
|
311
|
+
productKeys: {
|
|
312
|
+
confluence: 'platform_editor_paste_actions_menu'
|
|
313
|
+
},
|
|
314
|
+
param: 'isEnabled',
|
|
315
|
+
defaultValue: false
|
|
316
|
+
}),
|
|
317
317
|
// Added 2026-02-03
|
|
318
318
|
platform_editor_aifc_fix_button_viewed_analytics: createBooleanExperiment({
|
|
319
319
|
productKeys: {
|
|
@@ -827,6 +827,14 @@ export var editorExperimentsConfig = {
|
|
|
827
827
|
param: 'isEnabled',
|
|
828
828
|
defaultValue: false
|
|
829
829
|
}),
|
|
830
|
+
// Added 2026-02-25
|
|
831
|
+
platform_editor_ai_escape_early_for_unhealthy_node: createBooleanExperiment({
|
|
832
|
+
productKeys: {
|
|
833
|
+
confluence: 'platform_editor_ai_escape_early_for_unhealthy_node'
|
|
834
|
+
},
|
|
835
|
+
param: 'isEnabled',
|
|
836
|
+
defaultValue: false
|
|
837
|
+
}),
|
|
830
838
|
// Added 2025-12-04
|
|
831
839
|
confluence_compact_text_format: createBooleanExperiment({
|
|
832
840
|
productKeys: {
|
|
@@ -124,6 +124,12 @@ export declare const editorExperimentsConfig: {
|
|
|
124
124
|
productKeys?: ProductKeys;
|
|
125
125
|
typeGuard: IsBooleanType;
|
|
126
126
|
};
|
|
127
|
+
platform_editor_ai_escape_early_for_unhealthy_node: {
|
|
128
|
+
defaultValue: boolean;
|
|
129
|
+
param: string;
|
|
130
|
+
productKeys?: ProductKeys;
|
|
131
|
+
typeGuard: IsBooleanType;
|
|
132
|
+
};
|
|
127
133
|
platform_editor_prosemirror_rendered_data: {
|
|
128
134
|
defaultValue: boolean;
|
|
129
135
|
param: string;
|
|
@@ -172,6 +178,12 @@ export declare const editorExperimentsConfig: {
|
|
|
172
178
|
productKeys?: ProductKeys;
|
|
173
179
|
typeGuard: IsBooleanType;
|
|
174
180
|
};
|
|
181
|
+
platform_editor_paste_actions_menu: {
|
|
182
|
+
defaultValue: boolean;
|
|
183
|
+
param: string;
|
|
184
|
+
productKeys?: ProductKeys;
|
|
185
|
+
typeGuard: IsBooleanType;
|
|
186
|
+
};
|
|
175
187
|
editor_tinymce_full_width_mode: {
|
|
176
188
|
defaultValue: boolean;
|
|
177
189
|
param: string;
|
|
@@ -288,12 +300,6 @@ export declare const editorExperimentsConfig: {
|
|
|
288
300
|
productKeys?: ProductKeys;
|
|
289
301
|
typeGuard: IsBooleanType;
|
|
290
302
|
};
|
|
291
|
-
platform_editor_ai_create_use_new_parser: {
|
|
292
|
-
defaultValue: boolean;
|
|
293
|
-
param: string;
|
|
294
|
-
productKeys?: ProductKeys;
|
|
295
|
-
typeGuard: IsBooleanType;
|
|
296
|
-
};
|
|
297
303
|
platform_editor_august_a11y: {
|
|
298
304
|
defaultValue: boolean;
|
|
299
305
|
param: string;
|
|
@@ -124,6 +124,12 @@ export declare const editorExperimentsConfig: {
|
|
|
124
124
|
productKeys?: ProductKeys;
|
|
125
125
|
typeGuard: IsBooleanType;
|
|
126
126
|
};
|
|
127
|
+
platform_editor_ai_escape_early_for_unhealthy_node: {
|
|
128
|
+
defaultValue: boolean;
|
|
129
|
+
param: string;
|
|
130
|
+
productKeys?: ProductKeys;
|
|
131
|
+
typeGuard: IsBooleanType;
|
|
132
|
+
};
|
|
127
133
|
platform_editor_prosemirror_rendered_data: {
|
|
128
134
|
defaultValue: boolean;
|
|
129
135
|
param: string;
|
|
@@ -172,6 +178,12 @@ export declare const editorExperimentsConfig: {
|
|
|
172
178
|
productKeys?: ProductKeys;
|
|
173
179
|
typeGuard: IsBooleanType;
|
|
174
180
|
};
|
|
181
|
+
platform_editor_paste_actions_menu: {
|
|
182
|
+
defaultValue: boolean;
|
|
183
|
+
param: string;
|
|
184
|
+
productKeys?: ProductKeys;
|
|
185
|
+
typeGuard: IsBooleanType;
|
|
186
|
+
};
|
|
175
187
|
editor_tinymce_full_width_mode: {
|
|
176
188
|
defaultValue: boolean;
|
|
177
189
|
param: string;
|
|
@@ -288,12 +300,6 @@ export declare const editorExperimentsConfig: {
|
|
|
288
300
|
productKeys?: ProductKeys;
|
|
289
301
|
typeGuard: IsBooleanType;
|
|
290
302
|
};
|
|
291
|
-
platform_editor_ai_create_use_new_parser: {
|
|
292
|
-
defaultValue: boolean;
|
|
293
|
-
param: string;
|
|
294
|
-
productKeys?: ProductKeys;
|
|
295
|
-
typeGuard: IsBooleanType;
|
|
296
|
-
};
|
|
297
303
|
platform_editor_august_a11y: {
|
|
298
304
|
defaultValue: boolean;
|
|
299
305
|
param: string;
|
package/package.json
CHANGED