@atlaskit/tmp-editor-statsig 133.1.0 → 133.3.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 +33 -0
- package/dist/cjs/exp-val-equals-internal.js +1 -1
- package/dist/cjs/experiments-config.js +25 -0
- package/dist/es2019/exp-val-equals-internal.js +1 -1
- package/dist/es2019/experiments-config.js +25 -0
- package/dist/esm/exp-val-equals-internal.js +1 -1
- package/dist/esm/experiments-config.js +25 -0
- package/dist/types/experiments-config.d.ts +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 133.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`4f0a4f4c814fa`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4f0a4f4c814fa) -
|
|
8
|
+
only aa experiment exposure
|
|
9
|
+
|
|
10
|
+
## 133.2.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`b90bdc71cdf99`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b90bdc71cdf99) -
|
|
15
|
+
Fix layout column delete shortcut deleting the whole column when the caret is a text selection
|
|
16
|
+
inside a column (e.g. a table nested in a layout), gated behind
|
|
17
|
+
platform_editor_layout_column_delete_shortcut_fix.
|
|
18
|
+
|
|
19
|
+
Adds a new experiment key `platform_editor_layout_column_delete_shortcut_fix` to
|
|
20
|
+
`@atlaskit/tmp-editor-statsig`. Usage:
|
|
21
|
+
|
|
22
|
+
```ts
|
|
23
|
+
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
24
|
+
|
|
25
|
+
if (expValEquals('platform_editor_layout_column_delete_shortcut_fix', 'isEnabled', true)) {
|
|
26
|
+
// new behaviour: preserve the column when the caret is a text selection inside it
|
|
27
|
+
}
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- [`0a6416897fb9f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0a6416897fb9f) -
|
|
33
|
+
A11Y-39563: Register the `platform_a11y_fixes_emoji_title_shortname` experiment in the editor
|
|
34
|
+
experiments config so it can be resolved via `expValEqualsNoExposure`.
|
|
35
|
+
|
|
3
36
|
## 133.1.0
|
|
4
37
|
|
|
5
38
|
### Minor Changes
|
|
@@ -12,7 +12,7 @@ var _setup = require("./setup");
|
|
|
12
12
|
// This internal representation doesn't currently support productKeys
|
|
13
13
|
// the way expVal(...) does, this adds temporary support for some keys while
|
|
14
14
|
// we determine our preferred approach forward
|
|
15
|
-
var allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'platform_use_unicode_emojis'];
|
|
15
|
+
var allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'cc_maui_create_keyword_aa', 'platform_use_unicode_emojis'];
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
18
|
* Check the value if an editor experiment.
|
|
@@ -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`.
|
|
@@ -1402,6 +1410,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1402
1410
|
param: 'isEnabled',
|
|
1403
1411
|
defaultValue: false
|
|
1404
1412
|
}),
|
|
1413
|
+
// A/A experiment paired with cc_maui_create_keyword, used only to balance exposures.
|
|
1414
|
+
cc_maui_create_keyword_aa: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1415
|
+
productKeys: {
|
|
1416
|
+
confluence: 'cc_maui_create_keyword_aa'
|
|
1417
|
+
},
|
|
1418
|
+
param: 'isEnabled',
|
|
1419
|
+
defaultValue: false
|
|
1420
|
+
}),
|
|
1405
1421
|
// Added 2026-07-13
|
|
1406
1422
|
confluence_native_tabs_experiment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1407
1423
|
productKeys: {
|
|
@@ -2336,6 +2352,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2336
2352
|
param: 'isEnabled',
|
|
2337
2353
|
defaultValue: false
|
|
2338
2354
|
}),
|
|
2355
|
+
// Added 2026-07-16
|
|
2356
|
+
platform_a11y_fixes_emoji_title_shortname: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2357
|
+
productKeys: {
|
|
2358
|
+
confluence: 'platform_a11y_fixes_emoji_title_shortname',
|
|
2359
|
+
jira: 'platform_a11y_fixes_emoji_title_shortname'
|
|
2360
|
+
},
|
|
2361
|
+
param: 'isEnabled',
|
|
2362
|
+
defaultValue: false
|
|
2363
|
+
}),
|
|
2339
2364
|
// Added 2026-05-25
|
|
2340
2365
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2341
2366
|
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
@@ -6,7 +6,7 @@ import { _overrides, _product } from './setup';
|
|
|
6
6
|
// This internal representation doesn't currently support productKeys
|
|
7
7
|
// the way expVal(...) does, this adds temporary support for some keys while
|
|
8
8
|
// we determine our preferred approach forward
|
|
9
|
-
const allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'platform_use_unicode_emojis'];
|
|
9
|
+
const allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'cc_maui_create_keyword_aa', 'platform_use_unicode_emojis'];
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* Check the value if an editor experiment.
|
|
@@ -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`.
|
|
@@ -1396,6 +1404,14 @@ export const editorExperimentsConfig = {
|
|
|
1396
1404
|
param: 'isEnabled',
|
|
1397
1405
|
defaultValue: false
|
|
1398
1406
|
}),
|
|
1407
|
+
// A/A experiment paired with cc_maui_create_keyword, used only to balance exposures.
|
|
1408
|
+
cc_maui_create_keyword_aa: createBooleanExperiment({
|
|
1409
|
+
productKeys: {
|
|
1410
|
+
confluence: 'cc_maui_create_keyword_aa'
|
|
1411
|
+
},
|
|
1412
|
+
param: 'isEnabled',
|
|
1413
|
+
defaultValue: false
|
|
1414
|
+
}),
|
|
1399
1415
|
// Added 2026-07-13
|
|
1400
1416
|
confluence_native_tabs_experiment: createBooleanExperiment({
|
|
1401
1417
|
productKeys: {
|
|
@@ -2330,6 +2346,15 @@ export const editorExperimentsConfig = {
|
|
|
2330
2346
|
param: 'isEnabled',
|
|
2331
2347
|
defaultValue: false
|
|
2332
2348
|
}),
|
|
2349
|
+
// Added 2026-07-16
|
|
2350
|
+
platform_a11y_fixes_emoji_title_shortname: createBooleanExperiment({
|
|
2351
|
+
productKeys: {
|
|
2352
|
+
confluence: 'platform_a11y_fixes_emoji_title_shortname',
|
|
2353
|
+
jira: 'platform_a11y_fixes_emoji_title_shortname'
|
|
2354
|
+
},
|
|
2355
|
+
param: 'isEnabled',
|
|
2356
|
+
defaultValue: false
|
|
2357
|
+
}),
|
|
2333
2358
|
// Added 2026-05-25
|
|
2334
2359
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2335
2360
|
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
@@ -6,7 +6,7 @@ import { _overrides, _product } from './setup';
|
|
|
6
6
|
// This internal representation doesn't currently support productKeys
|
|
7
7
|
// the way expVal(...) does, this adds temporary support for some keys while
|
|
8
8
|
// we determine our preferred approach forward
|
|
9
|
-
var allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'platform_use_unicode_emojis'];
|
|
9
|
+
var allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'cc_maui_create_keyword_aa', 'platform_use_unicode_emojis'];
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* Check the value if an editor experiment.
|
|
@@ -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`.
|
|
@@ -1396,6 +1404,14 @@ export var editorExperimentsConfig = {
|
|
|
1396
1404
|
param: 'isEnabled',
|
|
1397
1405
|
defaultValue: false
|
|
1398
1406
|
}),
|
|
1407
|
+
// A/A experiment paired with cc_maui_create_keyword, used only to balance exposures.
|
|
1408
|
+
cc_maui_create_keyword_aa: createBooleanExperiment({
|
|
1409
|
+
productKeys: {
|
|
1410
|
+
confluence: 'cc_maui_create_keyword_aa'
|
|
1411
|
+
},
|
|
1412
|
+
param: 'isEnabled',
|
|
1413
|
+
defaultValue: false
|
|
1414
|
+
}),
|
|
1399
1415
|
// Added 2026-07-13
|
|
1400
1416
|
confluence_native_tabs_experiment: createBooleanExperiment({
|
|
1401
1417
|
productKeys: {
|
|
@@ -2330,6 +2346,15 @@ export var editorExperimentsConfig = {
|
|
|
2330
2346
|
param: 'isEnabled',
|
|
2331
2347
|
defaultValue: false
|
|
2332
2348
|
}),
|
|
2349
|
+
// Added 2026-07-16
|
|
2350
|
+
platform_a11y_fixes_emoji_title_shortname: createBooleanExperiment({
|
|
2351
|
+
productKeys: {
|
|
2352
|
+
confluence: 'platform_a11y_fixes_emoji_title_shortname',
|
|
2353
|
+
jira: 'platform_a11y_fixes_emoji_title_shortname'
|
|
2354
|
+
},
|
|
2355
|
+
param: 'isEnabled',
|
|
2356
|
+
defaultValue: false
|
|
2357
|
+
}),
|
|
2333
2358
|
// Added 2026-05-25
|
|
2334
2359
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2335
2360
|
// 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;
|
|
@@ -1076,6 +1082,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1076
1082
|
productKeys?: ProductKeys;
|
|
1077
1083
|
typeGuard: IsBooleanType;
|
|
1078
1084
|
};
|
|
1085
|
+
cc_maui_create_keyword_aa: {
|
|
1086
|
+
defaultValue: boolean;
|
|
1087
|
+
param: string;
|
|
1088
|
+
productKeys?: ProductKeys;
|
|
1089
|
+
typeGuard: IsBooleanType;
|
|
1090
|
+
};
|
|
1079
1091
|
confluence_native_tabs_experiment: {
|
|
1080
1092
|
defaultValue: boolean;
|
|
1081
1093
|
param: string;
|
|
@@ -1708,6 +1720,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1708
1720
|
productKeys?: ProductKeys;
|
|
1709
1721
|
typeGuard: IsBooleanType;
|
|
1710
1722
|
};
|
|
1723
|
+
platform_a11y_fixes_emoji_title_shortname: {
|
|
1724
|
+
defaultValue: boolean;
|
|
1725
|
+
param: string;
|
|
1726
|
+
productKeys?: ProductKeys;
|
|
1727
|
+
typeGuard: IsBooleanType;
|
|
1728
|
+
};
|
|
1711
1729
|
platform_editor_use_html_plus_streaming_parser: {
|
|
1712
1730
|
defaultValue: boolean;
|
|
1713
1731
|
param: string;
|
package/package.json
CHANGED