@atlaskit/tmp-editor-statsig 22.1.0 → 22.2.1
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 +19 -0
- package/dist/cjs/experiments-config.js +17 -0
- package/dist/es2019/experiments-config.js +17 -0
- package/dist/esm/experiments-config.js +17 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/dist/types-ts4.5/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 22.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`69ca7c944953d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/69ca7c944953d) -
|
|
8
|
+
[EDITOR-3889] added ai mate analytics properties updater for headless component to fix missing
|
|
9
|
+
attributes from rovo inline chat g
|
|
10
|
+
|
|
11
|
+
## 22.2.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`d63d5af234d7f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d63d5af234d7f) -
|
|
16
|
+
Fix issue when expand is collapsed after streaming.
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
|
|
3
22
|
## 22.1.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
|
@@ -1181,6 +1181,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1181
1181
|
param: 'isEnabled',
|
|
1182
1182
|
defaultValue: false
|
|
1183
1183
|
}),
|
|
1184
|
+
// Added 2026-01-27 - AI create-page expand collapse fix
|
|
1185
|
+
platform_editor_aifc_expand_collapses_oncreate_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1186
|
+
productKeys: {
|
|
1187
|
+
confluence: 'platform_editor_aifc_expand_collapses_oncreate_fix',
|
|
1188
|
+
jira: 'platform_editor_aifc_expand_collapses_oncreate_fix'
|
|
1189
|
+
},
|
|
1190
|
+
param: 'isEnabled',
|
|
1191
|
+
defaultValue: false
|
|
1192
|
+
}),
|
|
1184
1193
|
// Added 2026-01-22
|
|
1185
1194
|
platform_editor_ai_loading_responsive_width: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1186
1195
|
productKeys: {
|
|
@@ -1322,5 +1331,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1322
1331
|
},
|
|
1323
1332
|
param: 'isEnabled',
|
|
1324
1333
|
defaultValue: false
|
|
1334
|
+
}),
|
|
1335
|
+
// Added 2026-02-06
|
|
1336
|
+
platform_rovo_inline_chat_missing_analytics_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1337
|
+
productKeys: {
|
|
1338
|
+
confluence: 'platform_rovo_inline_chat_missing_analytics_fix'
|
|
1339
|
+
},
|
|
1340
|
+
param: 'isEnabled',
|
|
1341
|
+
defaultValue: false
|
|
1325
1342
|
})
|
|
1326
1343
|
};
|
|
@@ -1175,6 +1175,15 @@ export const editorExperimentsConfig = {
|
|
|
1175
1175
|
param: 'isEnabled',
|
|
1176
1176
|
defaultValue: false
|
|
1177
1177
|
}),
|
|
1178
|
+
// Added 2026-01-27 - AI create-page expand collapse fix
|
|
1179
|
+
platform_editor_aifc_expand_collapses_oncreate_fix: createBooleanExperiment({
|
|
1180
|
+
productKeys: {
|
|
1181
|
+
confluence: 'platform_editor_aifc_expand_collapses_oncreate_fix',
|
|
1182
|
+
jira: 'platform_editor_aifc_expand_collapses_oncreate_fix'
|
|
1183
|
+
},
|
|
1184
|
+
param: 'isEnabled',
|
|
1185
|
+
defaultValue: false
|
|
1186
|
+
}),
|
|
1178
1187
|
// Added 2026-01-22
|
|
1179
1188
|
platform_editor_ai_loading_responsive_width: createBooleanExperiment({
|
|
1180
1189
|
productKeys: {
|
|
@@ -1316,5 +1325,13 @@ export const editorExperimentsConfig = {
|
|
|
1316
1325
|
},
|
|
1317
1326
|
param: 'isEnabled',
|
|
1318
1327
|
defaultValue: false
|
|
1328
|
+
}),
|
|
1329
|
+
// Added 2026-02-06
|
|
1330
|
+
platform_rovo_inline_chat_missing_analytics_fix: createBooleanExperiment({
|
|
1331
|
+
productKeys: {
|
|
1332
|
+
confluence: 'platform_rovo_inline_chat_missing_analytics_fix'
|
|
1333
|
+
},
|
|
1334
|
+
param: 'isEnabled',
|
|
1335
|
+
defaultValue: false
|
|
1319
1336
|
})
|
|
1320
1337
|
};
|
|
@@ -1175,6 +1175,15 @@ export var editorExperimentsConfig = {
|
|
|
1175
1175
|
param: 'isEnabled',
|
|
1176
1176
|
defaultValue: false
|
|
1177
1177
|
}),
|
|
1178
|
+
// Added 2026-01-27 - AI create-page expand collapse fix
|
|
1179
|
+
platform_editor_aifc_expand_collapses_oncreate_fix: createBooleanExperiment({
|
|
1180
|
+
productKeys: {
|
|
1181
|
+
confluence: 'platform_editor_aifc_expand_collapses_oncreate_fix',
|
|
1182
|
+
jira: 'platform_editor_aifc_expand_collapses_oncreate_fix'
|
|
1183
|
+
},
|
|
1184
|
+
param: 'isEnabled',
|
|
1185
|
+
defaultValue: false
|
|
1186
|
+
}),
|
|
1178
1187
|
// Added 2026-01-22
|
|
1179
1188
|
platform_editor_ai_loading_responsive_width: createBooleanExperiment({
|
|
1180
1189
|
productKeys: {
|
|
@@ -1316,5 +1325,13 @@ export var editorExperimentsConfig = {
|
|
|
1316
1325
|
},
|
|
1317
1326
|
param: 'isEnabled',
|
|
1318
1327
|
defaultValue: false
|
|
1328
|
+
}),
|
|
1329
|
+
// Added 2026-02-06
|
|
1330
|
+
platform_rovo_inline_chat_missing_analytics_fix: createBooleanExperiment({
|
|
1331
|
+
productKeys: {
|
|
1332
|
+
confluence: 'platform_rovo_inline_chat_missing_analytics_fix'
|
|
1333
|
+
},
|
|
1334
|
+
param: 'isEnabled',
|
|
1335
|
+
defaultValue: false
|
|
1319
1336
|
})
|
|
1320
1337
|
};
|
|
@@ -864,6 +864,12 @@ export declare const editorExperimentsConfig: {
|
|
|
864
864
|
productKeys?: ProductKeys;
|
|
865
865
|
typeGuard: IsBooleanType;
|
|
866
866
|
};
|
|
867
|
+
platform_editor_aifc_expand_collapses_oncreate_fix: {
|
|
868
|
+
defaultValue: boolean;
|
|
869
|
+
param: string;
|
|
870
|
+
productKeys?: ProductKeys;
|
|
871
|
+
typeGuard: IsBooleanType;
|
|
872
|
+
};
|
|
867
873
|
platform_editor_ai_loading_responsive_width: {
|
|
868
874
|
defaultValue: boolean;
|
|
869
875
|
param: string;
|
|
@@ -978,5 +984,11 @@ export declare const editorExperimentsConfig: {
|
|
|
978
984
|
productKeys?: ProductKeys;
|
|
979
985
|
typeGuard: IsBooleanType;
|
|
980
986
|
};
|
|
987
|
+
platform_rovo_inline_chat_missing_analytics_fix: {
|
|
988
|
+
defaultValue: boolean;
|
|
989
|
+
param: string;
|
|
990
|
+
productKeys?: ProductKeys;
|
|
991
|
+
typeGuard: IsBooleanType;
|
|
992
|
+
};
|
|
981
993
|
};
|
|
982
994
|
export {};
|
|
@@ -864,6 +864,12 @@ export declare const editorExperimentsConfig: {
|
|
|
864
864
|
productKeys?: ProductKeys;
|
|
865
865
|
typeGuard: IsBooleanType;
|
|
866
866
|
};
|
|
867
|
+
platform_editor_aifc_expand_collapses_oncreate_fix: {
|
|
868
|
+
defaultValue: boolean;
|
|
869
|
+
param: string;
|
|
870
|
+
productKeys?: ProductKeys;
|
|
871
|
+
typeGuard: IsBooleanType;
|
|
872
|
+
};
|
|
867
873
|
platform_editor_ai_loading_responsive_width: {
|
|
868
874
|
defaultValue: boolean;
|
|
869
875
|
param: string;
|
|
@@ -978,5 +984,11 @@ export declare const editorExperimentsConfig: {
|
|
|
978
984
|
productKeys?: ProductKeys;
|
|
979
985
|
typeGuard: IsBooleanType;
|
|
980
986
|
};
|
|
987
|
+
platform_rovo_inline_chat_missing_analytics_fix: {
|
|
988
|
+
defaultValue: boolean;
|
|
989
|
+
param: string;
|
|
990
|
+
productKeys?: ProductKeys;
|
|
991
|
+
typeGuard: IsBooleanType;
|
|
992
|
+
};
|
|
981
993
|
};
|
|
982
994
|
export {};
|
package/package.json
CHANGED