@atlaskit/tmp-editor-statsig 35.0.0 → 35.1.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
|
+
## 35.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`f9c6cc572b6cd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f9c6cc572b6cd) -
|
|
8
|
+
EDITOR-5829: Set up experiment in config
|
|
9
|
+
|
|
3
10
|
## 35.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -1631,5 +1631,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1631
1631
|
},
|
|
1632
1632
|
param: 'isEnabled',
|
|
1633
1633
|
defaultValue: false
|
|
1634
|
+
}),
|
|
1635
|
+
// Added 2026-03-10
|
|
1636
|
+
platform_editor_diff_plugin_extended: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1637
|
+
productKeys: {
|
|
1638
|
+
confluence: 'platform_editor_diff_plugin_extended'
|
|
1639
|
+
},
|
|
1640
|
+
param: 'isEnabled',
|
|
1641
|
+
defaultValue: false
|
|
1634
1642
|
})
|
|
1635
1643
|
};
|
|
@@ -1625,5 +1625,13 @@ export const editorExperimentsConfig = {
|
|
|
1625
1625
|
},
|
|
1626
1626
|
param: 'isEnabled',
|
|
1627
1627
|
defaultValue: false
|
|
1628
|
+
}),
|
|
1629
|
+
// Added 2026-03-10
|
|
1630
|
+
platform_editor_diff_plugin_extended: createBooleanExperiment({
|
|
1631
|
+
productKeys: {
|
|
1632
|
+
confluence: 'platform_editor_diff_plugin_extended'
|
|
1633
|
+
},
|
|
1634
|
+
param: 'isEnabled',
|
|
1635
|
+
defaultValue: false
|
|
1628
1636
|
})
|
|
1629
1637
|
};
|
|
@@ -1625,5 +1625,13 @@ export var editorExperimentsConfig = {
|
|
|
1625
1625
|
},
|
|
1626
1626
|
param: 'isEnabled',
|
|
1627
1627
|
defaultValue: false
|
|
1628
|
+
}),
|
|
1629
|
+
// Added 2026-03-10
|
|
1630
|
+
platform_editor_diff_plugin_extended: createBooleanExperiment({
|
|
1631
|
+
productKeys: {
|
|
1632
|
+
confluence: 'platform_editor_diff_plugin_extended'
|
|
1633
|
+
},
|
|
1634
|
+
param: 'isEnabled',
|
|
1635
|
+
defaultValue: false
|
|
1628
1636
|
})
|
|
1629
1637
|
};
|
|
@@ -1200,5 +1200,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1200
1200
|
productKeys?: ProductKeys;
|
|
1201
1201
|
typeGuard: IsBooleanType;
|
|
1202
1202
|
};
|
|
1203
|
+
platform_editor_diff_plugin_extended: {
|
|
1204
|
+
defaultValue: boolean;
|
|
1205
|
+
param: string;
|
|
1206
|
+
productKeys?: ProductKeys;
|
|
1207
|
+
typeGuard: IsBooleanType;
|
|
1208
|
+
};
|
|
1203
1209
|
};
|
|
1204
1210
|
export {};
|
|
@@ -1200,5 +1200,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1200
1200
|
productKeys?: ProductKeys;
|
|
1201
1201
|
typeGuard: IsBooleanType;
|
|
1202
1202
|
};
|
|
1203
|
+
platform_editor_diff_plugin_extended: {
|
|
1204
|
+
defaultValue: boolean;
|
|
1205
|
+
param: string;
|
|
1206
|
+
productKeys?: ProductKeys;
|
|
1207
|
+
typeGuard: IsBooleanType;
|
|
1208
|
+
};
|
|
1203
1209
|
};
|
|
1204
1210
|
export {};
|
package/package.json
CHANGED