@atlaskit/tmp-editor-statsig 72.2.0 → 73.0.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,18 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 73.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`b3e797be9eed5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b3e797be9eed5) -
|
|
8
|
+
Clean up platform_editor_floating_toolbar_button_aria_label experiment.
|
|
9
|
+
- Remove expValEquals gate in editor-plugin-floating-toolbar Toolbar.tsx, always pass
|
|
10
|
+
ariaLabel={item?.ariaLabel}
|
|
11
|
+
- Remove expValEquals gate in editor-plugin-ai floating-toolbar-button.tsx, always set ariaLabel
|
|
12
|
+
to formatted message
|
|
13
|
+
- Remove type definition and createBooleanExperiment config entry from tmp-editor-statsig
|
|
14
|
+
experiments-config.ts
|
|
15
|
+
|
|
3
16
|
## 72.2.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -680,14 +680,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
680
680
|
param: 'isEnabled',
|
|
681
681
|
defaultValue: false
|
|
682
682
|
}),
|
|
683
|
-
// Added 2025-08-04
|
|
684
|
-
platform_editor_floating_toolbar_button_aria_label: (0, _experimentBuilders.createBooleanExperiment)({
|
|
685
|
-
productKeys: {
|
|
686
|
-
confluence: 'platform_editor_floating_toolbar_button_aria_label'
|
|
687
|
-
},
|
|
688
|
-
param: 'isEnabled',
|
|
689
|
-
defaultValue: false
|
|
690
|
-
}),
|
|
691
683
|
// Added 2025-07-31
|
|
692
684
|
platform_editor_breakout_interaction_rerender: (0, _experimentBuilders.createBooleanExperiment)({
|
|
693
685
|
productKeys: {
|
|
@@ -674,14 +674,6 @@ export const editorExperimentsConfig = {
|
|
|
674
674
|
param: 'isEnabled',
|
|
675
675
|
defaultValue: false
|
|
676
676
|
}),
|
|
677
|
-
// Added 2025-08-04
|
|
678
|
-
platform_editor_floating_toolbar_button_aria_label: createBooleanExperiment({
|
|
679
|
-
productKeys: {
|
|
680
|
-
confluence: 'platform_editor_floating_toolbar_button_aria_label'
|
|
681
|
-
},
|
|
682
|
-
param: 'isEnabled',
|
|
683
|
-
defaultValue: false
|
|
684
|
-
}),
|
|
685
677
|
// Added 2025-07-31
|
|
686
678
|
platform_editor_breakout_interaction_rerender: createBooleanExperiment({
|
|
687
679
|
productKeys: {
|
|
@@ -674,14 +674,6 @@ export var editorExperimentsConfig = {
|
|
|
674
674
|
param: 'isEnabled',
|
|
675
675
|
defaultValue: false
|
|
676
676
|
}),
|
|
677
|
-
// Added 2025-08-04
|
|
678
|
-
platform_editor_floating_toolbar_button_aria_label: createBooleanExperiment({
|
|
679
|
-
productKeys: {
|
|
680
|
-
confluence: 'platform_editor_floating_toolbar_button_aria_label'
|
|
681
|
-
},
|
|
682
|
-
param: 'isEnabled',
|
|
683
|
-
defaultValue: false
|
|
684
|
-
}),
|
|
685
677
|
// Added 2025-07-31
|
|
686
678
|
platform_editor_breakout_interaction_rerender: createBooleanExperiment({
|
|
687
679
|
productKeys: {
|
|
@@ -451,12 +451,6 @@ export declare const editorExperimentsConfig: {
|
|
|
451
451
|
productKeys?: ProductKeys;
|
|
452
452
|
typeGuard: IsBooleanType;
|
|
453
453
|
};
|
|
454
|
-
platform_editor_floating_toolbar_button_aria_label: {
|
|
455
|
-
defaultValue: boolean;
|
|
456
|
-
param: string;
|
|
457
|
-
productKeys?: ProductKeys;
|
|
458
|
-
typeGuard: IsBooleanType;
|
|
459
|
-
};
|
|
460
454
|
platform_editor_inline_card_dispatch_guard: {
|
|
461
455
|
defaultValue: boolean;
|
|
462
456
|
param: string;
|
|
@@ -451,12 +451,6 @@ export declare const editorExperimentsConfig: {
|
|
|
451
451
|
productKeys?: ProductKeys;
|
|
452
452
|
typeGuard: IsBooleanType;
|
|
453
453
|
};
|
|
454
|
-
platform_editor_floating_toolbar_button_aria_label: {
|
|
455
|
-
defaultValue: boolean;
|
|
456
|
-
param: string;
|
|
457
|
-
productKeys?: ProductKeys;
|
|
458
|
-
typeGuard: IsBooleanType;
|
|
459
|
-
};
|
|
460
454
|
platform_editor_inline_card_dispatch_guard: {
|
|
461
455
|
defaultValue: boolean;
|
|
462
456
|
param: string;
|
package/package.json
CHANGED