@atlaskit/tmp-editor-statsig 17.11.0 → 17.13.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 +14 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +23 -0
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +23 -0
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +23 -0
- package/dist/types/experiments-config.d.ts +18 -0
- package/dist/types-ts4.5/experiments-config.d.ts +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 17.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`38dee2c85c456`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/38dee2c85c456) -
|
|
8
|
+
[EDITOR-4486] add new experiment to config
|
|
9
|
+
|
|
10
|
+
## 17.12.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`d39135b9aecb7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d39135b9aecb7) -
|
|
15
|
+
Adds a fix to avoid initialising the bridge if the ai plugin is unavailable.
|
|
16
|
+
|
|
3
17
|
## 17.11.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -54,5 +54,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
54
54
|
platform_editor_toggle_expand_on_match_found: false,
|
|
55
55
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
56
56
|
platform_editor_text_highlight_padding: false,
|
|
57
|
-
confluence_compact_text_format: false
|
|
57
|
+
confluence_compact_text_format: false,
|
|
58
|
+
confluence_ttvc_inline_extensions: false
|
|
58
59
|
};
|
|
@@ -1182,6 +1182,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1182
1182
|
param: 'isEnabled',
|
|
1183
1183
|
defaultValue: false
|
|
1184
1184
|
}),
|
|
1185
|
+
// Added 2026-02-02
|
|
1186
|
+
platform_editor_ai_disable_bridge_without_ai: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1187
|
+
productKeys: {
|
|
1188
|
+
confluence: 'platform_editor_ai_disable_bridge_without_ai'
|
|
1189
|
+
},
|
|
1190
|
+
param: 'isEnabled',
|
|
1191
|
+
defaultValue: false
|
|
1192
|
+
}),
|
|
1185
1193
|
// Added 2025-01-15
|
|
1186
1194
|
platform_editor_table_toolbar_icon_ext_fix_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1187
1195
|
productKeys: {
|
|
@@ -1311,5 +1319,20 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1311
1319
|
},
|
|
1312
1320
|
param: 'isEnabled',
|
|
1313
1321
|
defaultValue: false
|
|
1322
|
+
}),
|
|
1323
|
+
confluence_ttvc_inline_extensions: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1324
|
+
productKeys: {
|
|
1325
|
+
confluence: 'confluence_ttvc_inline_extensions'
|
|
1326
|
+
},
|
|
1327
|
+
param: 'isEnabled',
|
|
1328
|
+
defaultValue: false
|
|
1329
|
+
}),
|
|
1330
|
+
// Added 2026-02-02
|
|
1331
|
+
platform_editor_hide_toolbar_tooltips_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1332
|
+
productKeys: {
|
|
1333
|
+
confluence: 'platform_editor_hide_toolbar_tooltips_fix'
|
|
1334
|
+
},
|
|
1335
|
+
param: 'isEnabled',
|
|
1336
|
+
defaultValue: false
|
|
1314
1337
|
})
|
|
1315
1338
|
};
|
|
@@ -48,5 +48,6 @@ export const testBooleanOverrides = {
|
|
|
48
48
|
platform_editor_toggle_expand_on_match_found: false,
|
|
49
49
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
50
50
|
platform_editor_text_highlight_padding: false,
|
|
51
|
-
confluence_compact_text_format: false
|
|
51
|
+
confluence_compact_text_format: false,
|
|
52
|
+
confluence_ttvc_inline_extensions: false
|
|
52
53
|
};
|
|
@@ -1176,6 +1176,14 @@ export const editorExperimentsConfig = {
|
|
|
1176
1176
|
param: 'isEnabled',
|
|
1177
1177
|
defaultValue: false
|
|
1178
1178
|
}),
|
|
1179
|
+
// Added 2026-02-02
|
|
1180
|
+
platform_editor_ai_disable_bridge_without_ai: createBooleanExperiment({
|
|
1181
|
+
productKeys: {
|
|
1182
|
+
confluence: 'platform_editor_ai_disable_bridge_without_ai'
|
|
1183
|
+
},
|
|
1184
|
+
param: 'isEnabled',
|
|
1185
|
+
defaultValue: false
|
|
1186
|
+
}),
|
|
1179
1187
|
// Added 2025-01-15
|
|
1180
1188
|
platform_editor_table_toolbar_icon_ext_fix_exp: createBooleanExperiment({
|
|
1181
1189
|
productKeys: {
|
|
@@ -1305,5 +1313,20 @@ export const editorExperimentsConfig = {
|
|
|
1305
1313
|
},
|
|
1306
1314
|
param: 'isEnabled',
|
|
1307
1315
|
defaultValue: false
|
|
1316
|
+
}),
|
|
1317
|
+
confluence_ttvc_inline_extensions: createBooleanExperiment({
|
|
1318
|
+
productKeys: {
|
|
1319
|
+
confluence: 'confluence_ttvc_inline_extensions'
|
|
1320
|
+
},
|
|
1321
|
+
param: 'isEnabled',
|
|
1322
|
+
defaultValue: false
|
|
1323
|
+
}),
|
|
1324
|
+
// Added 2026-02-02
|
|
1325
|
+
platform_editor_hide_toolbar_tooltips_fix: createBooleanExperiment({
|
|
1326
|
+
productKeys: {
|
|
1327
|
+
confluence: 'platform_editor_hide_toolbar_tooltips_fix'
|
|
1328
|
+
},
|
|
1329
|
+
param: 'isEnabled',
|
|
1330
|
+
defaultValue: false
|
|
1308
1331
|
})
|
|
1309
1332
|
};
|
|
@@ -48,5 +48,6 @@ export var testBooleanOverrides = {
|
|
|
48
48
|
platform_editor_toggle_expand_on_match_found: false,
|
|
49
49
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
50
50
|
platform_editor_text_highlight_padding: false,
|
|
51
|
-
confluence_compact_text_format: false
|
|
51
|
+
confluence_compact_text_format: false,
|
|
52
|
+
confluence_ttvc_inline_extensions: false
|
|
52
53
|
};
|
|
@@ -1176,6 +1176,14 @@ export var editorExperimentsConfig = {
|
|
|
1176
1176
|
param: 'isEnabled',
|
|
1177
1177
|
defaultValue: false
|
|
1178
1178
|
}),
|
|
1179
|
+
// Added 2026-02-02
|
|
1180
|
+
platform_editor_ai_disable_bridge_without_ai: createBooleanExperiment({
|
|
1181
|
+
productKeys: {
|
|
1182
|
+
confluence: 'platform_editor_ai_disable_bridge_without_ai'
|
|
1183
|
+
},
|
|
1184
|
+
param: 'isEnabled',
|
|
1185
|
+
defaultValue: false
|
|
1186
|
+
}),
|
|
1179
1187
|
// Added 2025-01-15
|
|
1180
1188
|
platform_editor_table_toolbar_icon_ext_fix_exp: createBooleanExperiment({
|
|
1181
1189
|
productKeys: {
|
|
@@ -1305,5 +1313,20 @@ export var editorExperimentsConfig = {
|
|
|
1305
1313
|
},
|
|
1306
1314
|
param: 'isEnabled',
|
|
1307
1315
|
defaultValue: false
|
|
1316
|
+
}),
|
|
1317
|
+
confluence_ttvc_inline_extensions: createBooleanExperiment({
|
|
1318
|
+
productKeys: {
|
|
1319
|
+
confluence: 'confluence_ttvc_inline_extensions'
|
|
1320
|
+
},
|
|
1321
|
+
param: 'isEnabled',
|
|
1322
|
+
defaultValue: false
|
|
1323
|
+
}),
|
|
1324
|
+
// Added 2026-02-02
|
|
1325
|
+
platform_editor_hide_toolbar_tooltips_fix: createBooleanExperiment({
|
|
1326
|
+
productKeys: {
|
|
1327
|
+
confluence: 'platform_editor_hide_toolbar_tooltips_fix'
|
|
1328
|
+
},
|
|
1329
|
+
param: 'isEnabled',
|
|
1330
|
+
defaultValue: false
|
|
1308
1331
|
})
|
|
1309
1332
|
};
|
|
@@ -826,6 +826,12 @@ export declare const editorExperimentsConfig: {
|
|
|
826
826
|
productKeys?: ProductKeys;
|
|
827
827
|
typeGuard: IsBooleanType;
|
|
828
828
|
};
|
|
829
|
+
platform_editor_ai_disable_bridge_without_ai: {
|
|
830
|
+
defaultValue: boolean;
|
|
831
|
+
param: string;
|
|
832
|
+
productKeys?: ProductKeys;
|
|
833
|
+
typeGuard: IsBooleanType;
|
|
834
|
+
};
|
|
829
835
|
platform_editor_ai_exp_suggestion_date_comma_delim: {
|
|
830
836
|
defaultValue: boolean;
|
|
831
837
|
param: string;
|
|
@@ -970,5 +976,17 @@ export declare const editorExperimentsConfig: {
|
|
|
970
976
|
productKeys?: ProductKeys;
|
|
971
977
|
typeGuard: IsBooleanType;
|
|
972
978
|
};
|
|
979
|
+
confluence_ttvc_inline_extensions: {
|
|
980
|
+
defaultValue: boolean;
|
|
981
|
+
param: string;
|
|
982
|
+
productKeys?: ProductKeys;
|
|
983
|
+
typeGuard: IsBooleanType;
|
|
984
|
+
};
|
|
985
|
+
platform_editor_hide_toolbar_tooltips_fix: {
|
|
986
|
+
defaultValue: boolean;
|
|
987
|
+
param: string;
|
|
988
|
+
productKeys?: ProductKeys;
|
|
989
|
+
typeGuard: IsBooleanType;
|
|
990
|
+
};
|
|
973
991
|
};
|
|
974
992
|
export {};
|
|
@@ -826,6 +826,12 @@ export declare const editorExperimentsConfig: {
|
|
|
826
826
|
productKeys?: ProductKeys;
|
|
827
827
|
typeGuard: IsBooleanType;
|
|
828
828
|
};
|
|
829
|
+
platform_editor_ai_disable_bridge_without_ai: {
|
|
830
|
+
defaultValue: boolean;
|
|
831
|
+
param: string;
|
|
832
|
+
productKeys?: ProductKeys;
|
|
833
|
+
typeGuard: IsBooleanType;
|
|
834
|
+
};
|
|
829
835
|
platform_editor_ai_exp_suggestion_date_comma_delim: {
|
|
830
836
|
defaultValue: boolean;
|
|
831
837
|
param: string;
|
|
@@ -970,5 +976,17 @@ export declare const editorExperimentsConfig: {
|
|
|
970
976
|
productKeys?: ProductKeys;
|
|
971
977
|
typeGuard: IsBooleanType;
|
|
972
978
|
};
|
|
979
|
+
confluence_ttvc_inline_extensions: {
|
|
980
|
+
defaultValue: boolean;
|
|
981
|
+
param: string;
|
|
982
|
+
productKeys?: ProductKeys;
|
|
983
|
+
typeGuard: IsBooleanType;
|
|
984
|
+
};
|
|
985
|
+
platform_editor_hide_toolbar_tooltips_fix: {
|
|
986
|
+
defaultValue: boolean;
|
|
987
|
+
param: string;
|
|
988
|
+
productKeys?: ProductKeys;
|
|
989
|
+
typeGuard: IsBooleanType;
|
|
990
|
+
};
|
|
973
991
|
};
|
|
974
992
|
export {};
|
package/package.json
CHANGED