@atlaskit/tmp-editor-statsig 133.0.0 → 133.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,42 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 133.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b90bdc71cdf99`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b90bdc71cdf99) -
|
|
8
|
+
Fix layout column delete shortcut deleting the whole column when the caret is a text selection
|
|
9
|
+
inside a column (e.g. a table nested in a layout), gated behind
|
|
10
|
+
platform_editor_layout_column_delete_shortcut_fix.
|
|
11
|
+
|
|
12
|
+
Adds a new experiment key `platform_editor_layout_column_delete_shortcut_fix` to
|
|
13
|
+
`@atlaskit/tmp-editor-statsig`. Usage:
|
|
14
|
+
|
|
15
|
+
```ts
|
|
16
|
+
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
17
|
+
|
|
18
|
+
if (expValEquals('platform_editor_layout_column_delete_shortcut_fix', 'isEnabled', true)) {
|
|
19
|
+
// new behaviour: preserve the column when the caret is a text selection inside it
|
|
20
|
+
}
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- [`0a6416897fb9f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0a6416897fb9f) -
|
|
26
|
+
A11Y-39563: Register the `platform_a11y_fixes_emoji_title_shortname` experiment in the editor
|
|
27
|
+
experiments config so it can be resolved via `expValEqualsNoExposure`.
|
|
28
|
+
|
|
29
|
+
## 133.1.0
|
|
30
|
+
|
|
31
|
+
### Minor Changes
|
|
32
|
+
|
|
33
|
+
- [`bed6e0c408de8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bed6e0c408de8) -
|
|
34
|
+
[ux] Fix: pressing Enter after a heading that has trailing whitespace now creates a paragraph
|
|
35
|
+
instead of another heading — but only when the caret sits after all heading content and
|
|
36
|
+
immediately before the trailing whitespace (so it looks like the end of the heading). Mid-heading
|
|
37
|
+
splits still produce a heading. Behind the `platform_editor_fix_new_line_after_heading`
|
|
38
|
+
experiment.
|
|
39
|
+
|
|
3
40
|
## 133.0.0
|
|
4
41
|
|
|
5
42
|
### Major Changes
|
|
@@ -39,6 +39,14 @@ var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_bloc
|
|
|
39
39
|
var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
40
40
|
// new format to avoid collisions with other users when updating the file
|
|
41
41
|
|
|
42
|
+
// Added 2026-07-24
|
|
43
|
+
platform_editor_layout_column_delete_shortcut_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
44
|
+
productKeys: {
|
|
45
|
+
confluence: 'platform_editor_layout_column_delete_shortcut_fix'
|
|
46
|
+
},
|
|
47
|
+
param: 'isEnabled',
|
|
48
|
+
defaultValue: false
|
|
49
|
+
}),
|
|
42
50
|
// Added 2026-07-21
|
|
43
51
|
// `isEnabled` is the gating param; the experiment's dynamic config also carries the numeric
|
|
44
52
|
// `durationMs` shimmer duration, read at runtime via `expVal`.
|
|
@@ -1175,6 +1183,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1175
1183
|
param: 'isEnabled',
|
|
1176
1184
|
defaultValue: false
|
|
1177
1185
|
}),
|
|
1186
|
+
// Added 2026-07-23
|
|
1187
|
+
platform_editor_fix_new_line_after_heading: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1188
|
+
productKeys: {
|
|
1189
|
+
confluence: 'platform_editor_fix_new_line_after_heading',
|
|
1190
|
+
jira: 'platform_editor_fix_new_line_after_heading'
|
|
1191
|
+
},
|
|
1192
|
+
param: 'isEnabled',
|
|
1193
|
+
defaultValue: false
|
|
1194
|
+
}),
|
|
1178
1195
|
// Added 2025-01-21
|
|
1179
1196
|
platform_editor_copy_link_a11y_inconsistency_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1180
1197
|
productKeys: {
|
|
@@ -2327,6 +2344,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2327
2344
|
param: 'isEnabled',
|
|
2328
2345
|
defaultValue: false
|
|
2329
2346
|
}),
|
|
2347
|
+
// Added 2026-07-16
|
|
2348
|
+
platform_a11y_fixes_emoji_title_shortname: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2349
|
+
productKeys: {
|
|
2350
|
+
confluence: 'platform_a11y_fixes_emoji_title_shortname',
|
|
2351
|
+
jira: 'platform_a11y_fixes_emoji_title_shortname'
|
|
2352
|
+
},
|
|
2353
|
+
param: 'isEnabled',
|
|
2354
|
+
defaultValue: false
|
|
2355
|
+
}),
|
|
2330
2356
|
// Added 2026-05-25
|
|
2331
2357
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2332
2358
|
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
@@ -33,6 +33,14 @@ export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_edi
|
|
|
33
33
|
export const editorExperimentsConfig = {
|
|
34
34
|
// new format to avoid collisions with other users when updating the file
|
|
35
35
|
|
|
36
|
+
// Added 2026-07-24
|
|
37
|
+
platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
|
|
38
|
+
productKeys: {
|
|
39
|
+
confluence: 'platform_editor_layout_column_delete_shortcut_fix'
|
|
40
|
+
},
|
|
41
|
+
param: 'isEnabled',
|
|
42
|
+
defaultValue: false
|
|
43
|
+
}),
|
|
36
44
|
// Added 2026-07-21
|
|
37
45
|
// `isEnabled` is the gating param; the experiment's dynamic config also carries the numeric
|
|
38
46
|
// `durationMs` shimmer duration, read at runtime via `expVal`.
|
|
@@ -1169,6 +1177,15 @@ export const editorExperimentsConfig = {
|
|
|
1169
1177
|
param: 'isEnabled',
|
|
1170
1178
|
defaultValue: false
|
|
1171
1179
|
}),
|
|
1180
|
+
// Added 2026-07-23
|
|
1181
|
+
platform_editor_fix_new_line_after_heading: createBooleanExperiment({
|
|
1182
|
+
productKeys: {
|
|
1183
|
+
confluence: 'platform_editor_fix_new_line_after_heading',
|
|
1184
|
+
jira: 'platform_editor_fix_new_line_after_heading'
|
|
1185
|
+
},
|
|
1186
|
+
param: 'isEnabled',
|
|
1187
|
+
defaultValue: false
|
|
1188
|
+
}),
|
|
1172
1189
|
// Added 2025-01-21
|
|
1173
1190
|
platform_editor_copy_link_a11y_inconsistency_fix: createBooleanExperiment({
|
|
1174
1191
|
productKeys: {
|
|
@@ -2321,6 +2338,15 @@ export const editorExperimentsConfig = {
|
|
|
2321
2338
|
param: 'isEnabled',
|
|
2322
2339
|
defaultValue: false
|
|
2323
2340
|
}),
|
|
2341
|
+
// Added 2026-07-16
|
|
2342
|
+
platform_a11y_fixes_emoji_title_shortname: createBooleanExperiment({
|
|
2343
|
+
productKeys: {
|
|
2344
|
+
confluence: 'platform_a11y_fixes_emoji_title_shortname',
|
|
2345
|
+
jira: 'platform_a11y_fixes_emoji_title_shortname'
|
|
2346
|
+
},
|
|
2347
|
+
param: 'isEnabled',
|
|
2348
|
+
defaultValue: false
|
|
2349
|
+
}),
|
|
2324
2350
|
// Added 2026-05-25
|
|
2325
2351
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2326
2352
|
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
@@ -33,6 +33,14 @@ export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_edito
|
|
|
33
33
|
export var editorExperimentsConfig = {
|
|
34
34
|
// new format to avoid collisions with other users when updating the file
|
|
35
35
|
|
|
36
|
+
// Added 2026-07-24
|
|
37
|
+
platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
|
|
38
|
+
productKeys: {
|
|
39
|
+
confluence: 'platform_editor_layout_column_delete_shortcut_fix'
|
|
40
|
+
},
|
|
41
|
+
param: 'isEnabled',
|
|
42
|
+
defaultValue: false
|
|
43
|
+
}),
|
|
36
44
|
// Added 2026-07-21
|
|
37
45
|
// `isEnabled` is the gating param; the experiment's dynamic config also carries the numeric
|
|
38
46
|
// `durationMs` shimmer duration, read at runtime via `expVal`.
|
|
@@ -1169,6 +1177,15 @@ export var editorExperimentsConfig = {
|
|
|
1169
1177
|
param: 'isEnabled',
|
|
1170
1178
|
defaultValue: false
|
|
1171
1179
|
}),
|
|
1180
|
+
// Added 2026-07-23
|
|
1181
|
+
platform_editor_fix_new_line_after_heading: createBooleanExperiment({
|
|
1182
|
+
productKeys: {
|
|
1183
|
+
confluence: 'platform_editor_fix_new_line_after_heading',
|
|
1184
|
+
jira: 'platform_editor_fix_new_line_after_heading'
|
|
1185
|
+
},
|
|
1186
|
+
param: 'isEnabled',
|
|
1187
|
+
defaultValue: false
|
|
1188
|
+
}),
|
|
1172
1189
|
// Added 2025-01-21
|
|
1173
1190
|
platform_editor_copy_link_a11y_inconsistency_fix: createBooleanExperiment({
|
|
1174
1191
|
productKeys: {
|
|
@@ -2321,6 +2338,15 @@ export var editorExperimentsConfig = {
|
|
|
2321
2338
|
param: 'isEnabled',
|
|
2322
2339
|
defaultValue: false
|
|
2323
2340
|
}),
|
|
2341
|
+
// Added 2026-07-16
|
|
2342
|
+
platform_a11y_fixes_emoji_title_shortname: createBooleanExperiment({
|
|
2343
|
+
productKeys: {
|
|
2344
|
+
confluence: 'platform_a11y_fixes_emoji_title_shortname',
|
|
2345
|
+
jira: 'platform_a11y_fixes_emoji_title_shortname'
|
|
2346
|
+
},
|
|
2347
|
+
param: 'isEnabled',
|
|
2348
|
+
defaultValue: false
|
|
2349
|
+
}),
|
|
2324
2350
|
// Added 2026-05-25
|
|
2325
2351
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2326
2352
|
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
@@ -21,6 +21,12 @@ export type ExperimentDefaultValue<ExperimentName extends keyof EditorExperiment
|
|
|
21
21
|
* existing experiments.
|
|
22
22
|
*/
|
|
23
23
|
export declare const editorExperimentsConfig: {
|
|
24
|
+
platform_editor_layout_column_delete_shortcut_fix: {
|
|
25
|
+
defaultValue: boolean;
|
|
26
|
+
param: string;
|
|
27
|
+
productKeys?: ProductKeys;
|
|
28
|
+
typeGuard: IsBooleanType;
|
|
29
|
+
};
|
|
24
30
|
platform_editor_agent_be_streaming: {
|
|
25
31
|
defaultValue: boolean;
|
|
26
32
|
param: string;
|
|
@@ -876,6 +882,12 @@ export declare const editorExperimentsConfig: {
|
|
|
876
882
|
productKeys?: ProductKeys;
|
|
877
883
|
typeGuard: IsBooleanType;
|
|
878
884
|
};
|
|
885
|
+
platform_editor_fix_new_line_after_heading: {
|
|
886
|
+
defaultValue: boolean;
|
|
887
|
+
param: string;
|
|
888
|
+
productKeys?: ProductKeys;
|
|
889
|
+
typeGuard: IsBooleanType;
|
|
890
|
+
};
|
|
879
891
|
platform_editor_copy_link_a11y_inconsistency_fix: {
|
|
880
892
|
defaultValue: boolean;
|
|
881
893
|
param: string;
|
|
@@ -1702,6 +1714,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1702
1714
|
productKeys?: ProductKeys;
|
|
1703
1715
|
typeGuard: IsBooleanType;
|
|
1704
1716
|
};
|
|
1717
|
+
platform_a11y_fixes_emoji_title_shortname: {
|
|
1718
|
+
defaultValue: boolean;
|
|
1719
|
+
param: string;
|
|
1720
|
+
productKeys?: ProductKeys;
|
|
1721
|
+
typeGuard: IsBooleanType;
|
|
1722
|
+
};
|
|
1705
1723
|
platform_editor_use_html_plus_streaming_parser: {
|
|
1706
1724
|
defaultValue: boolean;
|
|
1707
1725
|
param: string;
|
package/package.json
CHANGED