@atlaskit/tmp-editor-statsig 31.1.0 → 31.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 31.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`19274be1b1972`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/19274be1b1972) -
|
|
8
|
+
[ux] EDITOR-5417 Flexible list indentation ADF schema + validator support
|
|
9
|
+
|
|
3
10
|
## 31.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1469,6 +1469,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1469
1469
|
param: 'isEnabled',
|
|
1470
1470
|
defaultValue: false
|
|
1471
1471
|
}),
|
|
1472
|
+
// Added 2026-02-19
|
|
1473
|
+
platform_editor_flexible_list_indentation: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1474
|
+
productKeys: {
|
|
1475
|
+
confluence: 'platform_editor_flexible_list_indentation'
|
|
1476
|
+
},
|
|
1477
|
+
param: 'isEnabled',
|
|
1478
|
+
defaultValue: false
|
|
1479
|
+
}),
|
|
1472
1480
|
// Added 2026-02-24
|
|
1473
1481
|
platform_editor_emoji_default_scale: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1474
1482
|
productKeys: {
|
|
@@ -1463,6 +1463,14 @@ export const editorExperimentsConfig = {
|
|
|
1463
1463
|
param: 'isEnabled',
|
|
1464
1464
|
defaultValue: false
|
|
1465
1465
|
}),
|
|
1466
|
+
// Added 2026-02-19
|
|
1467
|
+
platform_editor_flexible_list_indentation: createBooleanExperiment({
|
|
1468
|
+
productKeys: {
|
|
1469
|
+
confluence: 'platform_editor_flexible_list_indentation'
|
|
1470
|
+
},
|
|
1471
|
+
param: 'isEnabled',
|
|
1472
|
+
defaultValue: false
|
|
1473
|
+
}),
|
|
1466
1474
|
// Added 2026-02-24
|
|
1467
1475
|
platform_editor_emoji_default_scale: createBooleanExperiment({
|
|
1468
1476
|
productKeys: {
|
|
@@ -1463,6 +1463,14 @@ export var editorExperimentsConfig = {
|
|
|
1463
1463
|
param: 'isEnabled',
|
|
1464
1464
|
defaultValue: false
|
|
1465
1465
|
}),
|
|
1466
|
+
// Added 2026-02-19
|
|
1467
|
+
platform_editor_flexible_list_indentation: createBooleanExperiment({
|
|
1468
|
+
productKeys: {
|
|
1469
|
+
confluence: 'platform_editor_flexible_list_indentation'
|
|
1470
|
+
},
|
|
1471
|
+
param: 'isEnabled',
|
|
1472
|
+
defaultValue: false
|
|
1473
|
+
}),
|
|
1466
1474
|
// Added 2026-02-24
|
|
1467
1475
|
platform_editor_emoji_default_scale: createBooleanExperiment({
|
|
1468
1476
|
productKeys: {
|
|
@@ -1080,6 +1080,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1080
1080
|
productKeys?: ProductKeys;
|
|
1081
1081
|
typeGuard: IsBooleanType;
|
|
1082
1082
|
};
|
|
1083
|
+
platform_editor_flexible_list_indentation: {
|
|
1084
|
+
defaultValue: boolean;
|
|
1085
|
+
param: string;
|
|
1086
|
+
productKeys?: ProductKeys;
|
|
1087
|
+
typeGuard: IsBooleanType;
|
|
1088
|
+
};
|
|
1083
1089
|
platform_editor_vc90_transition_fixes_batch_1: {
|
|
1084
1090
|
defaultValue: boolean;
|
|
1085
1091
|
param: string;
|
|
@@ -1080,6 +1080,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1080
1080
|
productKeys?: ProductKeys;
|
|
1081
1081
|
typeGuard: IsBooleanType;
|
|
1082
1082
|
};
|
|
1083
|
+
platform_editor_flexible_list_indentation: {
|
|
1084
|
+
defaultValue: boolean;
|
|
1085
|
+
param: string;
|
|
1086
|
+
productKeys?: ProductKeys;
|
|
1087
|
+
typeGuard: IsBooleanType;
|
|
1088
|
+
};
|
|
1083
1089
|
platform_editor_vc90_transition_fixes_batch_1: {
|
|
1084
1090
|
defaultValue: boolean;
|
|
1085
1091
|
param: string;
|
package/package.json
CHANGED