@atlaskit/tmp-editor-statsig 82.2.0 → 82.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 +16 -0
- package/dist/cjs/experiments-config.js +16 -0
- package/dist/es2019/experiments-config.js +16 -0
- package/dist/esm/experiments-config.js +16 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/dist/types-ts4.5/experiments-config.d.ts +12 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 82.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`8aa63d737699c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8aa63d737699c) -
|
|
8
|
+
Hide create with rovo content type picker pills for site disabled content types
|
|
9
|
+
- [`ab6159c301de9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ab6159c301de9) -
|
|
10
|
+
[ux] Change the fail safe for when typeSettings failed to return for whatever reason to be only
|
|
11
|
+
allow the AIFC finalized flow to create pages
|
|
12
|
+
|
|
13
|
+
Add the `aifc_space_typesettings` experiment to the typed tmp editor Statsig config.
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 82.2.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -58,6 +58,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
58
58
|
param: 'isEnabled',
|
|
59
59
|
defaultValue: false
|
|
60
60
|
}),
|
|
61
|
+
// Added 2026-05-08
|
|
62
|
+
aifc_space_typesettings: (0, _experimentBuilders.createBooleanExperiment)({
|
|
63
|
+
productKeys: {
|
|
64
|
+
confluence: 'aifc_space_typesettings'
|
|
65
|
+
},
|
|
66
|
+
param: 'isEnabled',
|
|
67
|
+
defaultValue: false
|
|
68
|
+
}),
|
|
61
69
|
// Added 22-12-2025
|
|
62
70
|
confluence_load_editor_title_on_transition: (0, _experimentBuilders.createBooleanExperiment)({
|
|
63
71
|
productKeys: {
|
|
@@ -1386,6 +1394,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1386
1394
|
param: 'isEnabled',
|
|
1387
1395
|
defaultValue: false
|
|
1388
1396
|
}),
|
|
1397
|
+
// Added 2026-05-11
|
|
1398
|
+
cfe_cwr_outcome_picker_respect_site_settings: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1399
|
+
productKeys: {
|
|
1400
|
+
confluence: 'cfe_cwr_outcome_picker_respect_site_settings'
|
|
1401
|
+
},
|
|
1402
|
+
param: 'isEnabled',
|
|
1403
|
+
defaultValue: false
|
|
1404
|
+
}),
|
|
1389
1405
|
// Added 2026-04-01
|
|
1390
1406
|
confluence_fe_cwr_outcome_picker_prompt_autoselect: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1391
1407
|
productKeys: {
|
|
@@ -52,6 +52,14 @@ export const editorExperimentsConfig = {
|
|
|
52
52
|
param: 'isEnabled',
|
|
53
53
|
defaultValue: false
|
|
54
54
|
}),
|
|
55
|
+
// Added 2026-05-08
|
|
56
|
+
aifc_space_typesettings: createBooleanExperiment({
|
|
57
|
+
productKeys: {
|
|
58
|
+
confluence: 'aifc_space_typesettings'
|
|
59
|
+
},
|
|
60
|
+
param: 'isEnabled',
|
|
61
|
+
defaultValue: false
|
|
62
|
+
}),
|
|
55
63
|
// Added 22-12-2025
|
|
56
64
|
confluence_load_editor_title_on_transition: createBooleanExperiment({
|
|
57
65
|
productKeys: {
|
|
@@ -1380,6 +1388,14 @@ export const editorExperimentsConfig = {
|
|
|
1380
1388
|
param: 'isEnabled',
|
|
1381
1389
|
defaultValue: false
|
|
1382
1390
|
}),
|
|
1391
|
+
// Added 2026-05-11
|
|
1392
|
+
cfe_cwr_outcome_picker_respect_site_settings: createBooleanExperiment({
|
|
1393
|
+
productKeys: {
|
|
1394
|
+
confluence: 'cfe_cwr_outcome_picker_respect_site_settings'
|
|
1395
|
+
},
|
|
1396
|
+
param: 'isEnabled',
|
|
1397
|
+
defaultValue: false
|
|
1398
|
+
}),
|
|
1383
1399
|
// Added 2026-04-01
|
|
1384
1400
|
confluence_fe_cwr_outcome_picker_prompt_autoselect: createBooleanExperiment({
|
|
1385
1401
|
productKeys: {
|
|
@@ -52,6 +52,14 @@ export var editorExperimentsConfig = {
|
|
|
52
52
|
param: 'isEnabled',
|
|
53
53
|
defaultValue: false
|
|
54
54
|
}),
|
|
55
|
+
// Added 2026-05-08
|
|
56
|
+
aifc_space_typesettings: createBooleanExperiment({
|
|
57
|
+
productKeys: {
|
|
58
|
+
confluence: 'aifc_space_typesettings'
|
|
59
|
+
},
|
|
60
|
+
param: 'isEnabled',
|
|
61
|
+
defaultValue: false
|
|
62
|
+
}),
|
|
55
63
|
// Added 22-12-2025
|
|
56
64
|
confluence_load_editor_title_on_transition: createBooleanExperiment({
|
|
57
65
|
productKeys: {
|
|
@@ -1380,6 +1388,14 @@ export var editorExperimentsConfig = {
|
|
|
1380
1388
|
param: 'isEnabled',
|
|
1381
1389
|
defaultValue: false
|
|
1382
1390
|
}),
|
|
1391
|
+
// Added 2026-05-11
|
|
1392
|
+
cfe_cwr_outcome_picker_respect_site_settings: createBooleanExperiment({
|
|
1393
|
+
productKeys: {
|
|
1394
|
+
confluence: 'cfe_cwr_outcome_picker_respect_site_settings'
|
|
1395
|
+
},
|
|
1396
|
+
param: 'isEnabled',
|
|
1397
|
+
defaultValue: false
|
|
1398
|
+
}),
|
|
1383
1399
|
// Added 2026-04-01
|
|
1384
1400
|
confluence_fe_cwr_outcome_picker_prompt_autoselect: createBooleanExperiment({
|
|
1385
1401
|
productKeys: {
|
|
@@ -45,6 +45,12 @@ export declare const editorExperimentsConfig: {
|
|
|
45
45
|
productKeys?: ProductKeys;
|
|
46
46
|
typeGuard: IsBooleanType;
|
|
47
47
|
};
|
|
48
|
+
aifc_space_typesettings: {
|
|
49
|
+
defaultValue: boolean;
|
|
50
|
+
param: string;
|
|
51
|
+
productKeys?: ProductKeys;
|
|
52
|
+
typeGuard: IsBooleanType;
|
|
53
|
+
};
|
|
48
54
|
'agent-managed_blocks_mvp': {
|
|
49
55
|
defaultValue: boolean;
|
|
50
56
|
param: string;
|
|
@@ -1069,6 +1075,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1069
1075
|
productKeys?: ProductKeys;
|
|
1070
1076
|
typeGuard: IsBooleanType;
|
|
1071
1077
|
};
|
|
1078
|
+
cfe_cwr_outcome_picker_respect_site_settings: {
|
|
1079
|
+
defaultValue: boolean;
|
|
1080
|
+
param: string;
|
|
1081
|
+
productKeys?: ProductKeys;
|
|
1082
|
+
typeGuard: IsBooleanType;
|
|
1083
|
+
};
|
|
1072
1084
|
confluence_fe_cwr_outcome_picker_prompt_autoselect: {
|
|
1073
1085
|
defaultValue: boolean;
|
|
1074
1086
|
param: string;
|
|
@@ -45,6 +45,12 @@ export declare const editorExperimentsConfig: {
|
|
|
45
45
|
productKeys?: ProductKeys;
|
|
46
46
|
typeGuard: IsBooleanType;
|
|
47
47
|
};
|
|
48
|
+
aifc_space_typesettings: {
|
|
49
|
+
defaultValue: boolean;
|
|
50
|
+
param: string;
|
|
51
|
+
productKeys?: ProductKeys;
|
|
52
|
+
typeGuard: IsBooleanType;
|
|
53
|
+
};
|
|
48
54
|
'agent-managed_blocks_mvp': {
|
|
49
55
|
defaultValue: boolean;
|
|
50
56
|
param: string;
|
|
@@ -1069,6 +1075,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1069
1075
|
productKeys?: ProductKeys;
|
|
1070
1076
|
typeGuard: IsBooleanType;
|
|
1071
1077
|
};
|
|
1078
|
+
cfe_cwr_outcome_picker_respect_site_settings: {
|
|
1079
|
+
defaultValue: boolean;
|
|
1080
|
+
param: string;
|
|
1081
|
+
productKeys?: ProductKeys;
|
|
1082
|
+
typeGuard: IsBooleanType;
|
|
1083
|
+
};
|
|
1072
1084
|
confluence_fe_cwr_outcome_picker_prompt_autoselect: {
|
|
1073
1085
|
defaultValue: boolean;
|
|
1074
1086
|
param: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "82.
|
|
3
|
+
"version": "82.3.0",
|
|
4
4
|
"description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@atlassian/feature-flags-test-utils": "^1.1.0"
|
|
47
|
+
"@atlassian/feature-flags-test-utils": "^1.1.0",
|
|
48
|
+
"react": "^18.2.0"
|
|
48
49
|
},
|
|
49
50
|
"peerDependencies": {
|
|
50
51
|
"react": "^18.2.0"
|