@atlaskit/tmp-editor-statsig 133.1.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,31 @@
|
|
|
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
|
+
|
|
3
29
|
## 133.1.0
|
|
4
30
|
|
|
5
31
|
### Minor 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`.
|
|
@@ -2336,6 +2344,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2336
2344
|
param: 'isEnabled',
|
|
2337
2345
|
defaultValue: false
|
|
2338
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
|
+
}),
|
|
2339
2356
|
// Added 2026-05-25
|
|
2340
2357
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2341
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`.
|
|
@@ -2330,6 +2338,15 @@ export const editorExperimentsConfig = {
|
|
|
2330
2338
|
param: 'isEnabled',
|
|
2331
2339
|
defaultValue: false
|
|
2332
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
|
+
}),
|
|
2333
2350
|
// Added 2026-05-25
|
|
2334
2351
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2335
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`.
|
|
@@ -2330,6 +2338,15 @@ export var editorExperimentsConfig = {
|
|
|
2330
2338
|
param: 'isEnabled',
|
|
2331
2339
|
defaultValue: false
|
|
2332
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
|
+
}),
|
|
2333
2350
|
// Added 2026-05-25
|
|
2334
2351
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2335
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;
|
|
@@ -1708,6 +1714,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1708
1714
|
productKeys?: ProductKeys;
|
|
1709
1715
|
typeGuard: IsBooleanType;
|
|
1710
1716
|
};
|
|
1717
|
+
platform_a11y_fixes_emoji_title_shortname: {
|
|
1718
|
+
defaultValue: boolean;
|
|
1719
|
+
param: string;
|
|
1720
|
+
productKeys?: ProductKeys;
|
|
1721
|
+
typeGuard: IsBooleanType;
|
|
1722
|
+
};
|
|
1711
1723
|
platform_editor_use_html_plus_streaming_parser: {
|
|
1712
1724
|
defaultValue: boolean;
|
|
1713
1725
|
param: string;
|
package/package.json
CHANGED