@atlaskit/tmp-editor-statsig 12.7.0 → 12.9.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 +23 -0
- package/dist/cjs/experiments-config.js +17 -8
- package/dist/es2019/experiments-config.js +17 -8
- 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,28 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 12.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`3764ac0028e9d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3764ac0028e9d) -
|
|
8
|
+
[ux] CONFCLOUD-68427-allow-elements-in-expands-to-be-aligned
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- [`0d0fe7a300841`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0d0fe7a300841) -
|
|
13
|
+
Cleanup platform_editor_usesharedpluginstatewithselector experiment
|
|
14
|
+
|
|
15
|
+
- BREAKING CHANGE: sharedPluginStateHookMigratorFactory is deleted from @atlaskit/editor-common
|
|
16
|
+
|
|
17
|
+
## 12.8.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- [`c0113eeccb2df`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c0113eeccb2df) -
|
|
22
|
+
[ux] ED-29120 add a new config option for default editor preset
|
|
23
|
+
(`toolbar.enableNewToolbarExperience`) which allows the new toolbar to be disabled. This is needed
|
|
24
|
+
for editors that can't be excluded at the experiment level.
|
|
25
|
+
|
|
3
26
|
## 12.7.0
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
|
@@ -303,14 +303,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
303
303
|
param: 'isEnabled',
|
|
304
304
|
defaultValue: false
|
|
305
305
|
}),
|
|
306
|
-
// Added 2025-07-24
|
|
307
|
-
platform_editor_usesharedpluginstatewithselector: (0, _experimentBuilders.createBooleanExperiment)({
|
|
308
|
-
productKeys: {
|
|
309
|
-
confluence: 'platform_editor_usesharedpluginstatewithselector'
|
|
310
|
-
},
|
|
311
|
-
param: 'isEnabled',
|
|
312
|
-
defaultValue: false
|
|
313
|
-
}),
|
|
314
306
|
// Added 2025-04-23
|
|
315
307
|
platform_renderer_fix_analytics_memo_callback: (0, _experimentBuilders.createBooleanExperiment)({
|
|
316
308
|
productKeys: {
|
|
@@ -749,6 +741,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
749
741
|
param: 'isEnabled',
|
|
750
742
|
defaultValue: false
|
|
751
743
|
}),
|
|
744
|
+
// Added 2025-08-28
|
|
745
|
+
editor_enable_image_alignment_in_expand: (0, _experimentBuilders.createBooleanExperiment)({
|
|
746
|
+
productKeys: {
|
|
747
|
+
confluence: 'editor_enable_image_alignment_in_expand'
|
|
748
|
+
},
|
|
749
|
+
param: 'isEnabled',
|
|
750
|
+
defaultValue: false
|
|
751
|
+
}),
|
|
752
752
|
// Added 2025-08-05
|
|
753
753
|
platform_editor_august_a11y: (0, _experimentBuilders.createBooleanExperiment)({
|
|
754
754
|
productKeys: {
|
|
@@ -797,6 +797,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
797
797
|
param: 'isEnabled',
|
|
798
798
|
defaultValue: false
|
|
799
799
|
}),
|
|
800
|
+
// Added 2025-08-29
|
|
801
|
+
platform_editor_toolbar_aifc_exp_code_toggle: (0, _experimentBuilders.createBooleanExperiment)({
|
|
802
|
+
productKeys: {
|
|
803
|
+
confluence: 'platform_editor_toolbar_aifc_exp_code_toggle',
|
|
804
|
+
jira: 'platform_editor_toolbar_aifc_exp_code_toggle'
|
|
805
|
+
},
|
|
806
|
+
param: 'isEnabled',
|
|
807
|
+
defaultValue: false
|
|
808
|
+
}),
|
|
800
809
|
// Added 2025-08-27
|
|
801
810
|
platform_editor_toolbar_support_custom_components: (0, _experimentBuilders.createBooleanExperiment)({
|
|
802
811
|
productKeys: {
|
|
@@ -297,14 +297,6 @@ export const editorExperimentsConfig = {
|
|
|
297
297
|
param: 'isEnabled',
|
|
298
298
|
defaultValue: false
|
|
299
299
|
}),
|
|
300
|
-
// Added 2025-07-24
|
|
301
|
-
platform_editor_usesharedpluginstatewithselector: createBooleanExperiment({
|
|
302
|
-
productKeys: {
|
|
303
|
-
confluence: 'platform_editor_usesharedpluginstatewithselector'
|
|
304
|
-
},
|
|
305
|
-
param: 'isEnabled',
|
|
306
|
-
defaultValue: false
|
|
307
|
-
}),
|
|
308
300
|
// Added 2025-04-23
|
|
309
301
|
platform_renderer_fix_analytics_memo_callback: createBooleanExperiment({
|
|
310
302
|
productKeys: {
|
|
@@ -743,6 +735,14 @@ export const editorExperimentsConfig = {
|
|
|
743
735
|
param: 'isEnabled',
|
|
744
736
|
defaultValue: false
|
|
745
737
|
}),
|
|
738
|
+
// Added 2025-08-28
|
|
739
|
+
editor_enable_image_alignment_in_expand: createBooleanExperiment({
|
|
740
|
+
productKeys: {
|
|
741
|
+
confluence: 'editor_enable_image_alignment_in_expand'
|
|
742
|
+
},
|
|
743
|
+
param: 'isEnabled',
|
|
744
|
+
defaultValue: false
|
|
745
|
+
}),
|
|
746
746
|
// Added 2025-08-05
|
|
747
747
|
platform_editor_august_a11y: createBooleanExperiment({
|
|
748
748
|
productKeys: {
|
|
@@ -791,6 +791,15 @@ export const editorExperimentsConfig = {
|
|
|
791
791
|
param: 'isEnabled',
|
|
792
792
|
defaultValue: false
|
|
793
793
|
}),
|
|
794
|
+
// Added 2025-08-29
|
|
795
|
+
platform_editor_toolbar_aifc_exp_code_toggle: createBooleanExperiment({
|
|
796
|
+
productKeys: {
|
|
797
|
+
confluence: 'platform_editor_toolbar_aifc_exp_code_toggle',
|
|
798
|
+
jira: 'platform_editor_toolbar_aifc_exp_code_toggle'
|
|
799
|
+
},
|
|
800
|
+
param: 'isEnabled',
|
|
801
|
+
defaultValue: false
|
|
802
|
+
}),
|
|
794
803
|
// Added 2025-08-27
|
|
795
804
|
platform_editor_toolbar_support_custom_components: createBooleanExperiment({
|
|
796
805
|
productKeys: {
|
|
@@ -297,14 +297,6 @@ export var editorExperimentsConfig = {
|
|
|
297
297
|
param: 'isEnabled',
|
|
298
298
|
defaultValue: false
|
|
299
299
|
}),
|
|
300
|
-
// Added 2025-07-24
|
|
301
|
-
platform_editor_usesharedpluginstatewithselector: createBooleanExperiment({
|
|
302
|
-
productKeys: {
|
|
303
|
-
confluence: 'platform_editor_usesharedpluginstatewithselector'
|
|
304
|
-
},
|
|
305
|
-
param: 'isEnabled',
|
|
306
|
-
defaultValue: false
|
|
307
|
-
}),
|
|
308
300
|
// Added 2025-04-23
|
|
309
301
|
platform_renderer_fix_analytics_memo_callback: createBooleanExperiment({
|
|
310
302
|
productKeys: {
|
|
@@ -743,6 +735,14 @@ export var editorExperimentsConfig = {
|
|
|
743
735
|
param: 'isEnabled',
|
|
744
736
|
defaultValue: false
|
|
745
737
|
}),
|
|
738
|
+
// Added 2025-08-28
|
|
739
|
+
editor_enable_image_alignment_in_expand: createBooleanExperiment({
|
|
740
|
+
productKeys: {
|
|
741
|
+
confluence: 'editor_enable_image_alignment_in_expand'
|
|
742
|
+
},
|
|
743
|
+
param: 'isEnabled',
|
|
744
|
+
defaultValue: false
|
|
745
|
+
}),
|
|
746
746
|
// Added 2025-08-05
|
|
747
747
|
platform_editor_august_a11y: createBooleanExperiment({
|
|
748
748
|
productKeys: {
|
|
@@ -791,6 +791,15 @@ export var editorExperimentsConfig = {
|
|
|
791
791
|
param: 'isEnabled',
|
|
792
792
|
defaultValue: false
|
|
793
793
|
}),
|
|
794
|
+
// Added 2025-08-29
|
|
795
|
+
platform_editor_toolbar_aifc_exp_code_toggle: createBooleanExperiment({
|
|
796
|
+
productKeys: {
|
|
797
|
+
confluence: 'platform_editor_toolbar_aifc_exp_code_toggle',
|
|
798
|
+
jira: 'platform_editor_toolbar_aifc_exp_code_toggle'
|
|
799
|
+
},
|
|
800
|
+
param: 'isEnabled',
|
|
801
|
+
defaultValue: false
|
|
802
|
+
}),
|
|
794
803
|
// Added 2025-08-27
|
|
795
804
|
platform_editor_toolbar_support_custom_components: createBooleanExperiment({
|
|
796
805
|
productKeys: {
|
|
@@ -221,12 +221,6 @@ export declare const editorExperimentsConfig: {
|
|
|
221
221
|
param: string;
|
|
222
222
|
productKeys?: import("./types").ProductKeys;
|
|
223
223
|
};
|
|
224
|
-
platform_editor_usesharedpluginstatewithselector: {
|
|
225
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
226
|
-
defaultValue: boolean;
|
|
227
|
-
param: string;
|
|
228
|
-
productKeys?: import("./types").ProductKeys;
|
|
229
|
-
};
|
|
230
224
|
platform_renderer_fix_analytics_memo_callback: {
|
|
231
225
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
232
226
|
defaultValue: boolean;
|
|
@@ -552,6 +546,12 @@ export declare const editorExperimentsConfig: {
|
|
|
552
546
|
param: string;
|
|
553
547
|
productKeys?: import("./types").ProductKeys;
|
|
554
548
|
};
|
|
549
|
+
editor_enable_image_alignment_in_expand: {
|
|
550
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
551
|
+
defaultValue: boolean;
|
|
552
|
+
param: string;
|
|
553
|
+
productKeys?: import("./types").ProductKeys;
|
|
554
|
+
};
|
|
555
555
|
platform_editor_august_a11y: {
|
|
556
556
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
557
557
|
defaultValue: boolean;
|
|
@@ -588,6 +588,12 @@ export declare const editorExperimentsConfig: {
|
|
|
588
588
|
param: string;
|
|
589
589
|
productKeys?: import("./types").ProductKeys;
|
|
590
590
|
};
|
|
591
|
+
platform_editor_toolbar_aifc_exp_code_toggle: {
|
|
592
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
593
|
+
defaultValue: boolean;
|
|
594
|
+
param: string;
|
|
595
|
+
productKeys?: import("./types").ProductKeys;
|
|
596
|
+
};
|
|
591
597
|
platform_editor_toolbar_support_custom_components: {
|
|
592
598
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
593
599
|
defaultValue: boolean;
|
|
@@ -221,12 +221,6 @@ export declare const editorExperimentsConfig: {
|
|
|
221
221
|
param: string;
|
|
222
222
|
productKeys?: import("./types").ProductKeys;
|
|
223
223
|
};
|
|
224
|
-
platform_editor_usesharedpluginstatewithselector: {
|
|
225
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
226
|
-
defaultValue: boolean;
|
|
227
|
-
param: string;
|
|
228
|
-
productKeys?: import("./types").ProductKeys;
|
|
229
|
-
};
|
|
230
224
|
platform_renderer_fix_analytics_memo_callback: {
|
|
231
225
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
232
226
|
defaultValue: boolean;
|
|
@@ -552,6 +546,12 @@ export declare const editorExperimentsConfig: {
|
|
|
552
546
|
param: string;
|
|
553
547
|
productKeys?: import("./types").ProductKeys;
|
|
554
548
|
};
|
|
549
|
+
editor_enable_image_alignment_in_expand: {
|
|
550
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
551
|
+
defaultValue: boolean;
|
|
552
|
+
param: string;
|
|
553
|
+
productKeys?: import("./types").ProductKeys;
|
|
554
|
+
};
|
|
555
555
|
platform_editor_august_a11y: {
|
|
556
556
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
557
557
|
defaultValue: boolean;
|
|
@@ -588,6 +588,12 @@ export declare const editorExperimentsConfig: {
|
|
|
588
588
|
param: string;
|
|
589
589
|
productKeys?: import("./types").ProductKeys;
|
|
590
590
|
};
|
|
591
|
+
platform_editor_toolbar_aifc_exp_code_toggle: {
|
|
592
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
593
|
+
defaultValue: boolean;
|
|
594
|
+
param: string;
|
|
595
|
+
productKeys?: import("./types").ProductKeys;
|
|
596
|
+
};
|
|
591
597
|
platform_editor_toolbar_support_custom_components: {
|
|
592
598
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
593
599
|
defaultValue: boolean;
|
package/package.json
CHANGED