@atlaskit/tmp-editor-statsig 12.1.0 → 12.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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 12.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`50976babce55d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/50976babce55d) -
|
|
8
|
+
Add new 'onClick' to dropdown menu, hook up new toolbar api to regsiter components on selection
|
|
9
|
+
change, add new safeRegistry method to replace existing objects
|
|
10
|
+
|
|
3
11
|
## 12.1.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -617,6 +617,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
617
617
|
param: 'isEnabled',
|
|
618
618
|
defaultValue: false
|
|
619
619
|
}),
|
|
620
|
+
// Added 2025-09-29
|
|
621
|
+
platform_editor_toolbar_aifc_selection_extension: (0, _experimentBuilders.createBooleanExperiment)({
|
|
622
|
+
productKeys: {
|
|
623
|
+
confluence: 'platform_editor_toolbar_aifc_selection_extension',
|
|
624
|
+
jira: 'platform_editor_toolbar_aifc_selection_extension'
|
|
625
|
+
},
|
|
626
|
+
param: 'isEnabled',
|
|
627
|
+
defaultValue: false
|
|
628
|
+
}),
|
|
620
629
|
// Added 2025-08-04
|
|
621
630
|
platform_editor_floating_toolbar_button_aria_label: (0, _experimentBuilders.createBooleanExperiment)({
|
|
622
631
|
productKeys: {
|
|
@@ -611,6 +611,15 @@ export const editorExperimentsConfig = {
|
|
|
611
611
|
param: 'isEnabled',
|
|
612
612
|
defaultValue: false
|
|
613
613
|
}),
|
|
614
|
+
// Added 2025-09-29
|
|
615
|
+
platform_editor_toolbar_aifc_selection_extension: createBooleanExperiment({
|
|
616
|
+
productKeys: {
|
|
617
|
+
confluence: 'platform_editor_toolbar_aifc_selection_extension',
|
|
618
|
+
jira: 'platform_editor_toolbar_aifc_selection_extension'
|
|
619
|
+
},
|
|
620
|
+
param: 'isEnabled',
|
|
621
|
+
defaultValue: false
|
|
622
|
+
}),
|
|
614
623
|
// Added 2025-08-04
|
|
615
624
|
platform_editor_floating_toolbar_button_aria_label: createBooleanExperiment({
|
|
616
625
|
productKeys: {
|
|
@@ -611,6 +611,15 @@ export var editorExperimentsConfig = {
|
|
|
611
611
|
param: 'isEnabled',
|
|
612
612
|
defaultValue: false
|
|
613
613
|
}),
|
|
614
|
+
// Added 2025-09-29
|
|
615
|
+
platform_editor_toolbar_aifc_selection_extension: createBooleanExperiment({
|
|
616
|
+
productKeys: {
|
|
617
|
+
confluence: 'platform_editor_toolbar_aifc_selection_extension',
|
|
618
|
+
jira: 'platform_editor_toolbar_aifc_selection_extension'
|
|
619
|
+
},
|
|
620
|
+
param: 'isEnabled',
|
|
621
|
+
defaultValue: false
|
|
622
|
+
}),
|
|
614
623
|
// Added 2025-08-04
|
|
615
624
|
platform_editor_floating_toolbar_button_aria_label: createBooleanExperiment({
|
|
616
625
|
productKeys: {
|
|
@@ -455,6 +455,12 @@ export declare const editorExperimentsConfig: {
|
|
|
455
455
|
param: string;
|
|
456
456
|
productKeys?: import("./types").ProductKeys;
|
|
457
457
|
};
|
|
458
|
+
platform_editor_toolbar_aifc_selection_extension: {
|
|
459
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
460
|
+
defaultValue: boolean;
|
|
461
|
+
param: string;
|
|
462
|
+
productKeys?: import("./types").ProductKeys;
|
|
463
|
+
};
|
|
458
464
|
platform_editor_floating_toolbar_button_aria_label: {
|
|
459
465
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
460
466
|
defaultValue: boolean;
|
|
@@ -455,6 +455,12 @@ export declare const editorExperimentsConfig: {
|
|
|
455
455
|
param: string;
|
|
456
456
|
productKeys?: import("./types").ProductKeys;
|
|
457
457
|
};
|
|
458
|
+
platform_editor_toolbar_aifc_selection_extension: {
|
|
459
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
460
|
+
defaultValue: boolean;
|
|
461
|
+
param: string;
|
|
462
|
+
productKeys?: import("./types").ProductKeys;
|
|
463
|
+
};
|
|
458
464
|
platform_editor_floating_toolbar_button_aria_label: {
|
|
459
465
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
460
466
|
defaultValue: boolean;
|
package/package.json
CHANGED