@atlaskit/tmp-editor-statsig 98.0.0 → 99.1.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 +20 -0
- package/dist/cjs/exp-test-overrides.js +1 -0
- package/dist/cjs/experiments-config.js +17 -8
- package/dist/es2019/exp-test-overrides.js +1 -0
- package/dist/es2019/experiments-config.js +17 -8
- package/dist/esm/exp-test-overrides.js +1 -0
- package/dist/esm/experiments-config.js +17 -8
- package/dist/types/experiments-config.d.ts +12 -6
- package/dist/types-ts4.5/experiments-config.d.ts +12 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 99.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`36d8b2815146e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/36d8b2815146e) -
|
|
8
|
+
Localize personalized prompt tile footer labels.
|
|
9
|
+
|
|
10
|
+
## 99.0.0
|
|
11
|
+
|
|
12
|
+
### Major Changes
|
|
13
|
+
|
|
14
|
+
- [`7f8f275864fb6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7f8f275864fb6) -
|
|
15
|
+
Cleanup experiment `platform_editor_analyse_table_with_merged_cells`.
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [`62bea93a6f5eb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/62bea93a6f5eb) -
|
|
20
|
+
Add the `platform_editor_external_embed_grid_fix` experiment and use it to align editor grid
|
|
21
|
+
guidelines to the editor viewport while resizing external embeds.
|
|
22
|
+
|
|
3
23
|
## 98.0.0
|
|
4
24
|
|
|
5
25
|
### Major Changes
|
|
@@ -60,6 +60,7 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
60
60
|
platform_editor_table_menu_updates: false,
|
|
61
61
|
platform_editor_core_static_css: false,
|
|
62
62
|
'cwr-modal-ui-refresh': false,
|
|
63
|
+
prompt_tile_content_type_localizaiton: false,
|
|
63
64
|
// [CCI-15904] New AIFC Editor Experience — AND-gated with
|
|
64
65
|
// `platform_editor_ai_xstate_migration` (see `isNewAifcExperienceEnabled`
|
|
65
66
|
// in `editor-plugin-ai/src/ui/utils/new-aifc-experience-enabled.ts`).
|
|
@@ -1396,6 +1396,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1396
1396
|
param: 'isEnabled',
|
|
1397
1397
|
defaultValue: false
|
|
1398
1398
|
}),
|
|
1399
|
+
// Added 2026-06-12
|
|
1400
|
+
prompt_tile_content_type_localizaiton: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1401
|
+
productKeys: {
|
|
1402
|
+
confluence: 'prompt_tile_content_type_localizaiton'
|
|
1403
|
+
},
|
|
1404
|
+
param: 'isEnabled',
|
|
1405
|
+
defaultValue: false
|
|
1406
|
+
}),
|
|
1399
1407
|
// Added 2026-04-01
|
|
1400
1408
|
confluence_fe_cwr_outcome_picker_prompt_autoselect: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1401
1409
|
productKeys: {
|
|
@@ -1635,14 +1643,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1635
1643
|
param: 'isEnabled',
|
|
1636
1644
|
defaultValue: false
|
|
1637
1645
|
}),
|
|
1638
|
-
// Added 2026-03-10
|
|
1639
|
-
platform_editor_analyse_table_with_merged_cells: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1640
|
-
productKeys: {
|
|
1641
|
-
confluence: 'platform_editor_analyse_table_with_merged_cells'
|
|
1642
|
-
},
|
|
1643
|
-
param: 'isEnabled',
|
|
1644
|
-
defaultValue: false
|
|
1645
|
-
}),
|
|
1646
1646
|
cc_editor_ttvc_media_hold_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1647
1647
|
productKeys: {
|
|
1648
1648
|
confluence: 'cc_editor_ttvc_media_hold_fix'
|
|
@@ -1900,6 +1900,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1900
1900
|
param: 'isEnabled',
|
|
1901
1901
|
defaultValue: false
|
|
1902
1902
|
}),
|
|
1903
|
+
// Added 2026-06-11
|
|
1904
|
+
platform_editor_external_embed_grid_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1905
|
+
productKeys: {
|
|
1906
|
+
confluence: 'platform_editor_external_embed_grid_fix',
|
|
1907
|
+
jira: 'platform_editor_external_embed_grid_fix'
|
|
1908
|
+
},
|
|
1909
|
+
param: 'isEnabled',
|
|
1910
|
+
defaultValue: false
|
|
1911
|
+
}),
|
|
1903
1912
|
// Added 2026-04-08
|
|
1904
1913
|
cc_fd_wb_jira_quick_insert_experiment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1905
1914
|
productKeys: {
|
|
@@ -54,6 +54,7 @@ export const testBooleanOverrides = {
|
|
|
54
54
|
platform_editor_table_menu_updates: false,
|
|
55
55
|
platform_editor_core_static_css: false,
|
|
56
56
|
'cwr-modal-ui-refresh': false,
|
|
57
|
+
prompt_tile_content_type_localizaiton: false,
|
|
57
58
|
// [CCI-15904] New AIFC Editor Experience — AND-gated with
|
|
58
59
|
// `platform_editor_ai_xstate_migration` (see `isNewAifcExperienceEnabled`
|
|
59
60
|
// in `editor-plugin-ai/src/ui/utils/new-aifc-experience-enabled.ts`).
|
|
@@ -1390,6 +1390,14 @@ export const editorExperimentsConfig = {
|
|
|
1390
1390
|
param: 'isEnabled',
|
|
1391
1391
|
defaultValue: false
|
|
1392
1392
|
}),
|
|
1393
|
+
// Added 2026-06-12
|
|
1394
|
+
prompt_tile_content_type_localizaiton: createBooleanExperiment({
|
|
1395
|
+
productKeys: {
|
|
1396
|
+
confluence: 'prompt_tile_content_type_localizaiton'
|
|
1397
|
+
},
|
|
1398
|
+
param: 'isEnabled',
|
|
1399
|
+
defaultValue: false
|
|
1400
|
+
}),
|
|
1393
1401
|
// Added 2026-04-01
|
|
1394
1402
|
confluence_fe_cwr_outcome_picker_prompt_autoselect: createBooleanExperiment({
|
|
1395
1403
|
productKeys: {
|
|
@@ -1629,14 +1637,6 @@ export const editorExperimentsConfig = {
|
|
|
1629
1637
|
param: 'isEnabled',
|
|
1630
1638
|
defaultValue: false
|
|
1631
1639
|
}),
|
|
1632
|
-
// Added 2026-03-10
|
|
1633
|
-
platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
|
|
1634
|
-
productKeys: {
|
|
1635
|
-
confluence: 'platform_editor_analyse_table_with_merged_cells'
|
|
1636
|
-
},
|
|
1637
|
-
param: 'isEnabled',
|
|
1638
|
-
defaultValue: false
|
|
1639
|
-
}),
|
|
1640
1640
|
cc_editor_ttvc_media_hold_fix: createBooleanExperiment({
|
|
1641
1641
|
productKeys: {
|
|
1642
1642
|
confluence: 'cc_editor_ttvc_media_hold_fix'
|
|
@@ -1894,6 +1894,15 @@ export const editorExperimentsConfig = {
|
|
|
1894
1894
|
param: 'isEnabled',
|
|
1895
1895
|
defaultValue: false
|
|
1896
1896
|
}),
|
|
1897
|
+
// Added 2026-06-11
|
|
1898
|
+
platform_editor_external_embed_grid_fix: createBooleanExperiment({
|
|
1899
|
+
productKeys: {
|
|
1900
|
+
confluence: 'platform_editor_external_embed_grid_fix',
|
|
1901
|
+
jira: 'platform_editor_external_embed_grid_fix'
|
|
1902
|
+
},
|
|
1903
|
+
param: 'isEnabled',
|
|
1904
|
+
defaultValue: false
|
|
1905
|
+
}),
|
|
1897
1906
|
// Added 2026-04-08
|
|
1898
1907
|
cc_fd_wb_jira_quick_insert_experiment: createBooleanExperiment({
|
|
1899
1908
|
productKeys: {
|
|
@@ -54,6 +54,7 @@ export var testBooleanOverrides = {
|
|
|
54
54
|
platform_editor_table_menu_updates: false,
|
|
55
55
|
platform_editor_core_static_css: false,
|
|
56
56
|
'cwr-modal-ui-refresh': false,
|
|
57
|
+
prompt_tile_content_type_localizaiton: false,
|
|
57
58
|
// [CCI-15904] New AIFC Editor Experience — AND-gated with
|
|
58
59
|
// `platform_editor_ai_xstate_migration` (see `isNewAifcExperienceEnabled`
|
|
59
60
|
// in `editor-plugin-ai/src/ui/utils/new-aifc-experience-enabled.ts`).
|
|
@@ -1390,6 +1390,14 @@ export var editorExperimentsConfig = {
|
|
|
1390
1390
|
param: 'isEnabled',
|
|
1391
1391
|
defaultValue: false
|
|
1392
1392
|
}),
|
|
1393
|
+
// Added 2026-06-12
|
|
1394
|
+
prompt_tile_content_type_localizaiton: createBooleanExperiment({
|
|
1395
|
+
productKeys: {
|
|
1396
|
+
confluence: 'prompt_tile_content_type_localizaiton'
|
|
1397
|
+
},
|
|
1398
|
+
param: 'isEnabled',
|
|
1399
|
+
defaultValue: false
|
|
1400
|
+
}),
|
|
1393
1401
|
// Added 2026-04-01
|
|
1394
1402
|
confluence_fe_cwr_outcome_picker_prompt_autoselect: createBooleanExperiment({
|
|
1395
1403
|
productKeys: {
|
|
@@ -1629,14 +1637,6 @@ export var editorExperimentsConfig = {
|
|
|
1629
1637
|
param: 'isEnabled',
|
|
1630
1638
|
defaultValue: false
|
|
1631
1639
|
}),
|
|
1632
|
-
// Added 2026-03-10
|
|
1633
|
-
platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
|
|
1634
|
-
productKeys: {
|
|
1635
|
-
confluence: 'platform_editor_analyse_table_with_merged_cells'
|
|
1636
|
-
},
|
|
1637
|
-
param: 'isEnabled',
|
|
1638
|
-
defaultValue: false
|
|
1639
|
-
}),
|
|
1640
1640
|
cc_editor_ttvc_media_hold_fix: createBooleanExperiment({
|
|
1641
1641
|
productKeys: {
|
|
1642
1642
|
confluence: 'cc_editor_ttvc_media_hold_fix'
|
|
@@ -1894,6 +1894,15 @@ export var editorExperimentsConfig = {
|
|
|
1894
1894
|
param: 'isEnabled',
|
|
1895
1895
|
defaultValue: false
|
|
1896
1896
|
}),
|
|
1897
|
+
// Added 2026-06-11
|
|
1898
|
+
platform_editor_external_embed_grid_fix: createBooleanExperiment({
|
|
1899
|
+
productKeys: {
|
|
1900
|
+
confluence: 'platform_editor_external_embed_grid_fix',
|
|
1901
|
+
jira: 'platform_editor_external_embed_grid_fix'
|
|
1902
|
+
},
|
|
1903
|
+
param: 'isEnabled',
|
|
1904
|
+
defaultValue: false
|
|
1905
|
+
}),
|
|
1897
1906
|
// Added 2026-04-08
|
|
1898
1907
|
cc_fd_wb_jira_quick_insert_experiment: createBooleanExperiment({
|
|
1899
1908
|
productKeys: {
|
|
@@ -1076,6 +1076,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1076
1076
|
productKeys?: ProductKeys;
|
|
1077
1077
|
typeGuard: IsBooleanType;
|
|
1078
1078
|
};
|
|
1079
|
+
prompt_tile_content_type_localizaiton: {
|
|
1080
|
+
defaultValue: boolean;
|
|
1081
|
+
param: string;
|
|
1082
|
+
productKeys?: ProductKeys;
|
|
1083
|
+
typeGuard: IsBooleanType;
|
|
1084
|
+
};
|
|
1079
1085
|
confluence_fe_cwr_outcome_picker_prompt_autoselect: {
|
|
1080
1086
|
defaultValue: boolean;
|
|
1081
1087
|
param: string;
|
|
@@ -1262,12 +1268,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1262
1268
|
productKeys?: ProductKeys;
|
|
1263
1269
|
typeGuard: IsBooleanType;
|
|
1264
1270
|
};
|
|
1265
|
-
platform_editor_analyse_table_with_merged_cells: {
|
|
1266
|
-
defaultValue: boolean;
|
|
1267
|
-
param: string;
|
|
1268
|
-
productKeys?: ProductKeys;
|
|
1269
|
-
typeGuard: IsBooleanType;
|
|
1270
|
-
};
|
|
1271
1271
|
cc_editor_ttvc_media_hold_fix: {
|
|
1272
1272
|
defaultValue: boolean;
|
|
1273
1273
|
param: string;
|
|
@@ -1334,6 +1334,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1334
1334
|
productKeys?: ProductKeys;
|
|
1335
1335
|
typeGuard: IsBooleanType;
|
|
1336
1336
|
};
|
|
1337
|
+
platform_editor_external_embed_grid_fix: {
|
|
1338
|
+
defaultValue: boolean;
|
|
1339
|
+
param: string;
|
|
1340
|
+
productKeys?: ProductKeys;
|
|
1341
|
+
typeGuard: IsBooleanType;
|
|
1342
|
+
};
|
|
1337
1343
|
platform_editor_stricter_panelcolor_typecheck: {
|
|
1338
1344
|
defaultValue: boolean;
|
|
1339
1345
|
param: string;
|
|
@@ -1076,6 +1076,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1076
1076
|
productKeys?: ProductKeys;
|
|
1077
1077
|
typeGuard: IsBooleanType;
|
|
1078
1078
|
};
|
|
1079
|
+
prompt_tile_content_type_localizaiton: {
|
|
1080
|
+
defaultValue: boolean;
|
|
1081
|
+
param: string;
|
|
1082
|
+
productKeys?: ProductKeys;
|
|
1083
|
+
typeGuard: IsBooleanType;
|
|
1084
|
+
};
|
|
1079
1085
|
confluence_fe_cwr_outcome_picker_prompt_autoselect: {
|
|
1080
1086
|
defaultValue: boolean;
|
|
1081
1087
|
param: string;
|
|
@@ -1262,12 +1268,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1262
1268
|
productKeys?: ProductKeys;
|
|
1263
1269
|
typeGuard: IsBooleanType;
|
|
1264
1270
|
};
|
|
1265
|
-
platform_editor_analyse_table_with_merged_cells: {
|
|
1266
|
-
defaultValue: boolean;
|
|
1267
|
-
param: string;
|
|
1268
|
-
productKeys?: ProductKeys;
|
|
1269
|
-
typeGuard: IsBooleanType;
|
|
1270
|
-
};
|
|
1271
1271
|
cc_editor_ttvc_media_hold_fix: {
|
|
1272
1272
|
defaultValue: boolean;
|
|
1273
1273
|
param: string;
|
|
@@ -1334,6 +1334,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1334
1334
|
productKeys?: ProductKeys;
|
|
1335
1335
|
typeGuard: IsBooleanType;
|
|
1336
1336
|
};
|
|
1337
|
+
platform_editor_external_embed_grid_fix: {
|
|
1338
|
+
defaultValue: boolean;
|
|
1339
|
+
param: string;
|
|
1340
|
+
productKeys?: ProductKeys;
|
|
1341
|
+
typeGuard: IsBooleanType;
|
|
1342
|
+
};
|
|
1337
1343
|
platform_editor_stricter_panelcolor_typecheck: {
|
|
1338
1344
|
defaultValue: boolean;
|
|
1339
1345
|
param: string;
|
package/package.json
CHANGED