@atlaskit/tmp-editor-statsig 75.1.0 → 75.2.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 +10 -0
- package/dist/cjs/experiments-config.js +24 -0
- package/dist/es2019/experiments-config.js +24 -0
- package/dist/esm/experiments-config.js +24 -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,15 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 75.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`5e3e8cbdce9a2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5e3e8cbdce9a2) -
|
|
8
|
+
NAVX-4609 Adding platform_sl_3p_auth_rovo_block_card_jira and
|
|
9
|
+
platform_sl_3p_auth_rovo_block_card_confluence to experiment config
|
|
10
|
+
- [`826bc966b7b64`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/826bc966b7b64) -
|
|
11
|
+
ED-6586: Lazy init sync block
|
|
12
|
+
|
|
3
13
|
## 75.1.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -1015,6 +1015,22 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1015
1015
|
param: 'isEnabled',
|
|
1016
1016
|
defaultValue: false
|
|
1017
1017
|
}),
|
|
1018
|
+
// Added 2026-05-01 — Block card rovo action on resolved block card smart links in confluence
|
|
1019
|
+
platform_sl_3p_auth_rovo_block_card_confluence: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1020
|
+
productKeys: {
|
|
1021
|
+
confluence: 'platform_sl_3p_auth_rovo_block_card_confluence'
|
|
1022
|
+
},
|
|
1023
|
+
param: 'isEnabled',
|
|
1024
|
+
defaultValue: false
|
|
1025
|
+
}),
|
|
1026
|
+
// Added 2026-05-01 — Block card rovo action on resolved block card smart links in jira
|
|
1027
|
+
platform_sl_3p_auth_rovo_block_card_jira: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1028
|
+
productKeys: {
|
|
1029
|
+
jira: 'platform_sl_3p_auth_rovo_block_card_jira'
|
|
1030
|
+
},
|
|
1031
|
+
param: 'isEnabled',
|
|
1032
|
+
defaultValue: false
|
|
1033
|
+
}),
|
|
1018
1034
|
// Added 2025-01-23
|
|
1019
1035
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1020
1036
|
productKeys: {
|
|
@@ -2124,6 +2140,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2124
2140
|
param: 'isEnabled',
|
|
2125
2141
|
defaultValue: false
|
|
2126
2142
|
}),
|
|
2143
|
+
// Added 2026-05-05
|
|
2144
|
+
editor_synced_block_perf: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2145
|
+
productKeys: {
|
|
2146
|
+
confluence: 'editor_synced_block_perf'
|
|
2147
|
+
},
|
|
2148
|
+
param: 'isEnabled',
|
|
2149
|
+
defaultValue: false
|
|
2150
|
+
}),
|
|
2127
2151
|
// Added 2026-04-30
|
|
2128
2152
|
platform_editor_insert_menu_ai: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2129
2153
|
productKeys: {
|
|
@@ -1009,6 +1009,22 @@ export const editorExperimentsConfig = {
|
|
|
1009
1009
|
param: 'isEnabled',
|
|
1010
1010
|
defaultValue: false
|
|
1011
1011
|
}),
|
|
1012
|
+
// Added 2026-05-01 — Block card rovo action on resolved block card smart links in confluence
|
|
1013
|
+
platform_sl_3p_auth_rovo_block_card_confluence: createBooleanExperiment({
|
|
1014
|
+
productKeys: {
|
|
1015
|
+
confluence: 'platform_sl_3p_auth_rovo_block_card_confluence'
|
|
1016
|
+
},
|
|
1017
|
+
param: 'isEnabled',
|
|
1018
|
+
defaultValue: false
|
|
1019
|
+
}),
|
|
1020
|
+
// Added 2026-05-01 — Block card rovo action on resolved block card smart links in jira
|
|
1021
|
+
platform_sl_3p_auth_rovo_block_card_jira: createBooleanExperiment({
|
|
1022
|
+
productKeys: {
|
|
1023
|
+
jira: 'platform_sl_3p_auth_rovo_block_card_jira'
|
|
1024
|
+
},
|
|
1025
|
+
param: 'isEnabled',
|
|
1026
|
+
defaultValue: false
|
|
1027
|
+
}),
|
|
1012
1028
|
// Added 2025-01-23
|
|
1013
1029
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
|
|
1014
1030
|
productKeys: {
|
|
@@ -2118,6 +2134,14 @@ export const editorExperimentsConfig = {
|
|
|
2118
2134
|
param: 'isEnabled',
|
|
2119
2135
|
defaultValue: false
|
|
2120
2136
|
}),
|
|
2137
|
+
// Added 2026-05-05
|
|
2138
|
+
editor_synced_block_perf: createBooleanExperiment({
|
|
2139
|
+
productKeys: {
|
|
2140
|
+
confluence: 'editor_synced_block_perf'
|
|
2141
|
+
},
|
|
2142
|
+
param: 'isEnabled',
|
|
2143
|
+
defaultValue: false
|
|
2144
|
+
}),
|
|
2121
2145
|
// Added 2026-04-30
|
|
2122
2146
|
platform_editor_insert_menu_ai: createBooleanExperiment({
|
|
2123
2147
|
productKeys: {
|
|
@@ -1009,6 +1009,22 @@ export var editorExperimentsConfig = {
|
|
|
1009
1009
|
param: 'isEnabled',
|
|
1010
1010
|
defaultValue: false
|
|
1011
1011
|
}),
|
|
1012
|
+
// Added 2026-05-01 — Block card rovo action on resolved block card smart links in confluence
|
|
1013
|
+
platform_sl_3p_auth_rovo_block_card_confluence: createBooleanExperiment({
|
|
1014
|
+
productKeys: {
|
|
1015
|
+
confluence: 'platform_sl_3p_auth_rovo_block_card_confluence'
|
|
1016
|
+
},
|
|
1017
|
+
param: 'isEnabled',
|
|
1018
|
+
defaultValue: false
|
|
1019
|
+
}),
|
|
1020
|
+
// Added 2026-05-01 — Block card rovo action on resolved block card smart links in jira
|
|
1021
|
+
platform_sl_3p_auth_rovo_block_card_jira: createBooleanExperiment({
|
|
1022
|
+
productKeys: {
|
|
1023
|
+
jira: 'platform_sl_3p_auth_rovo_block_card_jira'
|
|
1024
|
+
},
|
|
1025
|
+
param: 'isEnabled',
|
|
1026
|
+
defaultValue: false
|
|
1027
|
+
}),
|
|
1012
1028
|
// Added 2025-01-23
|
|
1013
1029
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
|
|
1014
1030
|
productKeys: {
|
|
@@ -2118,6 +2134,14 @@ export var editorExperimentsConfig = {
|
|
|
2118
2134
|
param: 'isEnabled',
|
|
2119
2135
|
defaultValue: false
|
|
2120
2136
|
}),
|
|
2137
|
+
// Added 2026-05-05
|
|
2138
|
+
editor_synced_block_perf: createBooleanExperiment({
|
|
2139
|
+
productKeys: {
|
|
2140
|
+
confluence: 'editor_synced_block_perf'
|
|
2141
|
+
},
|
|
2142
|
+
param: 'isEnabled',
|
|
2143
|
+
defaultValue: false
|
|
2144
|
+
}),
|
|
2121
2145
|
// Added 2026-04-30
|
|
2122
2146
|
platform_editor_insert_menu_ai: createBooleanExperiment({
|
|
2123
2147
|
productKeys: {
|
|
@@ -724,6 +724,18 @@ export declare const editorExperimentsConfig: {
|
|
|
724
724
|
productKeys?: ProductKeys;
|
|
725
725
|
typeGuard: IsBooleanType;
|
|
726
726
|
};
|
|
727
|
+
platform_sl_3p_auth_rovo_block_card_jira: {
|
|
728
|
+
defaultValue: boolean;
|
|
729
|
+
param: string;
|
|
730
|
+
productKeys?: ProductKeys;
|
|
731
|
+
typeGuard: IsBooleanType;
|
|
732
|
+
};
|
|
733
|
+
platform_sl_3p_auth_rovo_block_card_confluence: {
|
|
734
|
+
defaultValue: boolean;
|
|
735
|
+
param: string;
|
|
736
|
+
productKeys?: ProductKeys;
|
|
737
|
+
typeGuard: IsBooleanType;
|
|
738
|
+
};
|
|
727
739
|
platform_synced_block: {
|
|
728
740
|
defaultValue: boolean;
|
|
729
741
|
param: string;
|
|
@@ -742,6 +754,12 @@ export declare const editorExperimentsConfig: {
|
|
|
742
754
|
productKeys?: ProductKeys;
|
|
743
755
|
typeGuard: IsBooleanType;
|
|
744
756
|
};
|
|
757
|
+
editor_synced_block_perf: {
|
|
758
|
+
defaultValue: boolean;
|
|
759
|
+
param: string;
|
|
760
|
+
productKeys?: ProductKeys;
|
|
761
|
+
typeGuard: IsBooleanType;
|
|
762
|
+
};
|
|
745
763
|
platform_editor_table_sticky_header_patch_9: {
|
|
746
764
|
defaultValue: boolean;
|
|
747
765
|
param: string;
|
|
@@ -724,6 +724,18 @@ export declare const editorExperimentsConfig: {
|
|
|
724
724
|
productKeys?: ProductKeys;
|
|
725
725
|
typeGuard: IsBooleanType;
|
|
726
726
|
};
|
|
727
|
+
platform_sl_3p_auth_rovo_block_card_jira: {
|
|
728
|
+
defaultValue: boolean;
|
|
729
|
+
param: string;
|
|
730
|
+
productKeys?: ProductKeys;
|
|
731
|
+
typeGuard: IsBooleanType;
|
|
732
|
+
};
|
|
733
|
+
platform_sl_3p_auth_rovo_block_card_confluence: {
|
|
734
|
+
defaultValue: boolean;
|
|
735
|
+
param: string;
|
|
736
|
+
productKeys?: ProductKeys;
|
|
737
|
+
typeGuard: IsBooleanType;
|
|
738
|
+
};
|
|
727
739
|
platform_synced_block: {
|
|
728
740
|
defaultValue: boolean;
|
|
729
741
|
param: string;
|
|
@@ -742,6 +754,12 @@ export declare const editorExperimentsConfig: {
|
|
|
742
754
|
productKeys?: ProductKeys;
|
|
743
755
|
typeGuard: IsBooleanType;
|
|
744
756
|
};
|
|
757
|
+
editor_synced_block_perf: {
|
|
758
|
+
defaultValue: boolean;
|
|
759
|
+
param: string;
|
|
760
|
+
productKeys?: ProductKeys;
|
|
761
|
+
typeGuard: IsBooleanType;
|
|
762
|
+
};
|
|
745
763
|
platform_editor_table_sticky_header_patch_9: {
|
|
746
764
|
defaultValue: boolean;
|
|
747
765
|
param: string;
|
package/package.json
CHANGED