@atlaskit/tmp-editor-statsig 16.1.0 → 16.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
|
+
## 16.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b10f0252621b0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b10f0252621b0) -
|
|
8
|
+
Set padding top and bottom on blockquote to avoid batch.css overrides
|
|
9
|
+
|
|
3
10
|
## 16.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1087,6 +1087,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1087
1087
|
param: 'isEnabled',
|
|
1088
1088
|
defaultValue: false
|
|
1089
1089
|
}),
|
|
1090
|
+
// Added 2025-12-18
|
|
1091
|
+
platform_editor_blockquote_zero_padding: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1092
|
+
productKeys: {
|
|
1093
|
+
confluence: 'platform_editor_blockquote_zero_padding'
|
|
1094
|
+
},
|
|
1095
|
+
param: 'isEnabled',
|
|
1096
|
+
defaultValue: false
|
|
1097
|
+
}),
|
|
1090
1098
|
// Added 2025-11-19
|
|
1091
1099
|
platform_editor_lovability_navigation_fixes: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1092
1100
|
productKeys: {
|
|
@@ -1081,6 +1081,14 @@ export const editorExperimentsConfig = {
|
|
|
1081
1081
|
param: 'isEnabled',
|
|
1082
1082
|
defaultValue: false
|
|
1083
1083
|
}),
|
|
1084
|
+
// Added 2025-12-18
|
|
1085
|
+
platform_editor_blockquote_zero_padding: createBooleanExperiment({
|
|
1086
|
+
productKeys: {
|
|
1087
|
+
confluence: 'platform_editor_blockquote_zero_padding'
|
|
1088
|
+
},
|
|
1089
|
+
param: 'isEnabled',
|
|
1090
|
+
defaultValue: false
|
|
1091
|
+
}),
|
|
1084
1092
|
// Added 2025-11-19
|
|
1085
1093
|
platform_editor_lovability_navigation_fixes: createBooleanExperiment({
|
|
1086
1094
|
productKeys: {
|
|
@@ -1081,6 +1081,14 @@ export var editorExperimentsConfig = {
|
|
|
1081
1081
|
param: 'isEnabled',
|
|
1082
1082
|
defaultValue: false
|
|
1083
1083
|
}),
|
|
1084
|
+
// Added 2025-12-18
|
|
1085
|
+
platform_editor_blockquote_zero_padding: createBooleanExperiment({
|
|
1086
|
+
productKeys: {
|
|
1087
|
+
confluence: 'platform_editor_blockquote_zero_padding'
|
|
1088
|
+
},
|
|
1089
|
+
param: 'isEnabled',
|
|
1090
|
+
defaultValue: false
|
|
1091
|
+
}),
|
|
1084
1092
|
// Added 2025-11-19
|
|
1085
1093
|
platform_editor_lovability_navigation_fixes: createBooleanExperiment({
|
|
1086
1094
|
productKeys: {
|
|
@@ -45,6 +45,12 @@ export declare const editorExperimentsConfig: {
|
|
|
45
45
|
productKeys?: ProductKeys;
|
|
46
46
|
typeGuard: IsBooleanType;
|
|
47
47
|
};
|
|
48
|
+
platform_editor_blockquote_zero_padding: {
|
|
49
|
+
defaultValue: boolean;
|
|
50
|
+
param: string;
|
|
51
|
+
productKeys?: ProductKeys;
|
|
52
|
+
typeGuard: IsBooleanType;
|
|
53
|
+
};
|
|
48
54
|
cc_editor_insm_outlier_events: {
|
|
49
55
|
defaultValue: 'control' | 'test';
|
|
50
56
|
param: string;
|
|
@@ -45,6 +45,12 @@ export declare const editorExperimentsConfig: {
|
|
|
45
45
|
productKeys?: ProductKeys;
|
|
46
46
|
typeGuard: IsBooleanType;
|
|
47
47
|
};
|
|
48
|
+
platform_editor_blockquote_zero_padding: {
|
|
49
|
+
defaultValue: boolean;
|
|
50
|
+
param: string;
|
|
51
|
+
productKeys?: ProductKeys;
|
|
52
|
+
typeGuard: IsBooleanType;
|
|
53
|
+
};
|
|
48
54
|
cc_editor_insm_outlier_events: {
|
|
49
55
|
defaultValue: 'control' | 'test';
|
|
50
56
|
param: string;
|
package/package.json
CHANGED