@atlaskit/tmp-editor-statsig 12.30.0 → 12.31.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 12.31.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`fb6997c75469f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fb6997c75469f) -
|
|
8
|
+
[ux] ED-29319 [CR-6a] Update full page toolbar responstiveness
|
|
9
|
+
|
|
3
10
|
## 12.30.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -729,6 +729,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
729
729
|
param: 'isEnabled',
|
|
730
730
|
defaultValue: false
|
|
731
731
|
}),
|
|
732
|
+
// Added 2025-09-19
|
|
733
|
+
platform_editor_toolbar_aifc_responsiveness_update: (0, _experimentBuilders.createBooleanExperiment)({
|
|
734
|
+
productKeys: {
|
|
735
|
+
confluence: 'platform_editor_toolbar_aifc_responsiveness_update'
|
|
736
|
+
},
|
|
737
|
+
param: 'isEnabled',
|
|
738
|
+
defaultValue: false
|
|
739
|
+
}),
|
|
732
740
|
// Added 2025-07-30
|
|
733
741
|
platform_editor_pasting_nested_table_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
734
742
|
productKeys: {
|
|
@@ -723,6 +723,14 @@ export const editorExperimentsConfig = {
|
|
|
723
723
|
param: 'isEnabled',
|
|
724
724
|
defaultValue: false
|
|
725
725
|
}),
|
|
726
|
+
// Added 2025-09-19
|
|
727
|
+
platform_editor_toolbar_aifc_responsiveness_update: createBooleanExperiment({
|
|
728
|
+
productKeys: {
|
|
729
|
+
confluence: 'platform_editor_toolbar_aifc_responsiveness_update'
|
|
730
|
+
},
|
|
731
|
+
param: 'isEnabled',
|
|
732
|
+
defaultValue: false
|
|
733
|
+
}),
|
|
726
734
|
// Added 2025-07-30
|
|
727
735
|
platform_editor_pasting_nested_table_fix: createBooleanExperiment({
|
|
728
736
|
productKeys: {
|
|
@@ -723,6 +723,14 @@ export var editorExperimentsConfig = {
|
|
|
723
723
|
param: 'isEnabled',
|
|
724
724
|
defaultValue: false
|
|
725
725
|
}),
|
|
726
|
+
// Added 2025-09-19
|
|
727
|
+
platform_editor_toolbar_aifc_responsiveness_update: createBooleanExperiment({
|
|
728
|
+
productKeys: {
|
|
729
|
+
confluence: 'platform_editor_toolbar_aifc_responsiveness_update'
|
|
730
|
+
},
|
|
731
|
+
param: 'isEnabled',
|
|
732
|
+
defaultValue: false
|
|
733
|
+
}),
|
|
726
734
|
// Added 2025-07-30
|
|
727
735
|
platform_editor_pasting_nested_table_fix: createBooleanExperiment({
|
|
728
736
|
productKeys: {
|
|
@@ -535,6 +535,12 @@ export declare const editorExperimentsConfig: {
|
|
|
535
535
|
param: string;
|
|
536
536
|
productKeys?: import("./types").ProductKeys;
|
|
537
537
|
};
|
|
538
|
+
platform_editor_toolbar_aifc_responsiveness_update: {
|
|
539
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
540
|
+
defaultValue: boolean;
|
|
541
|
+
param: string;
|
|
542
|
+
productKeys?: import("./types").ProductKeys;
|
|
543
|
+
};
|
|
538
544
|
platform_editor_pasting_nested_table_fix: {
|
|
539
545
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
540
546
|
defaultValue: boolean;
|
|
@@ -535,6 +535,12 @@ export declare const editorExperimentsConfig: {
|
|
|
535
535
|
param: string;
|
|
536
536
|
productKeys?: import("./types").ProductKeys;
|
|
537
537
|
};
|
|
538
|
+
platform_editor_toolbar_aifc_responsiveness_update: {
|
|
539
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
540
|
+
defaultValue: boolean;
|
|
541
|
+
param: string;
|
|
542
|
+
productKeys?: import("./types").ProductKeys;
|
|
543
|
+
};
|
|
538
544
|
platform_editor_pasting_nested_table_fix: {
|
|
539
545
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
540
546
|
defaultValue: boolean;
|
package/package.json
CHANGED