@atlaskit/tmp-editor-statsig 11.0.0 → 11.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
|
+
## 11.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`0412437292a6d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0412437292a6d) -
|
|
8
|
+
Switches linking changes for Preview Panel from FG to an experiment.
|
|
9
|
+
|
|
3
10
|
## 11.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -538,6 +538,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
538
538
|
param: 'isEnabled',
|
|
539
539
|
defaultValue: false
|
|
540
540
|
}),
|
|
541
|
+
// Added 2025-08-18
|
|
542
|
+
platform_editor_preview_panel_linking_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
543
|
+
productKeys: {
|
|
544
|
+
confluence: 'platform_editor_preview_panel_linking_exp',
|
|
545
|
+
jira: 'platform_editor_preview_panel_linking_exp'
|
|
546
|
+
},
|
|
547
|
+
param: 'isEnabled',
|
|
548
|
+
defaultValue: false
|
|
549
|
+
}),
|
|
541
550
|
// Added 2025--8-05
|
|
542
551
|
platform_editor_block_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
543
552
|
productKeys: {
|
|
@@ -532,6 +532,15 @@ export const editorExperimentsConfig = {
|
|
|
532
532
|
param: 'isEnabled',
|
|
533
533
|
defaultValue: false
|
|
534
534
|
}),
|
|
535
|
+
// Added 2025-08-18
|
|
536
|
+
platform_editor_preview_panel_linking_exp: createBooleanExperiment({
|
|
537
|
+
productKeys: {
|
|
538
|
+
confluence: 'platform_editor_preview_panel_linking_exp',
|
|
539
|
+
jira: 'platform_editor_preview_panel_linking_exp'
|
|
540
|
+
},
|
|
541
|
+
param: 'isEnabled',
|
|
542
|
+
defaultValue: false
|
|
543
|
+
}),
|
|
535
544
|
// Added 2025--8-05
|
|
536
545
|
platform_editor_block_menu: createBooleanExperiment({
|
|
537
546
|
productKeys: {
|
|
@@ -532,6 +532,15 @@ export var editorExperimentsConfig = {
|
|
|
532
532
|
param: 'isEnabled',
|
|
533
533
|
defaultValue: false
|
|
534
534
|
}),
|
|
535
|
+
// Added 2025-08-18
|
|
536
|
+
platform_editor_preview_panel_linking_exp: createBooleanExperiment({
|
|
537
|
+
productKeys: {
|
|
538
|
+
confluence: 'platform_editor_preview_panel_linking_exp',
|
|
539
|
+
jira: 'platform_editor_preview_panel_linking_exp'
|
|
540
|
+
},
|
|
541
|
+
param: 'isEnabled',
|
|
542
|
+
defaultValue: false
|
|
543
|
+
}),
|
|
535
544
|
// Added 2025--8-05
|
|
536
545
|
platform_editor_block_menu: createBooleanExperiment({
|
|
537
546
|
productKeys: {
|
|
@@ -398,6 +398,12 @@ export declare const editorExperimentsConfig: {
|
|
|
398
398
|
productKeys?: import("./types").ProductKeys;
|
|
399
399
|
param: string;
|
|
400
400
|
};
|
|
401
|
+
platform_editor_preview_panel_linking_exp: {
|
|
402
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
403
|
+
defaultValue: boolean;
|
|
404
|
+
productKeys?: import("./types").ProductKeys;
|
|
405
|
+
param: string;
|
|
406
|
+
};
|
|
401
407
|
platform_editor_block_menu: {
|
|
402
408
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
403
409
|
defaultValue: boolean;
|
|
@@ -398,6 +398,12 @@ export declare const editorExperimentsConfig: {
|
|
|
398
398
|
productKeys?: import("./types").ProductKeys;
|
|
399
399
|
param: string;
|
|
400
400
|
};
|
|
401
|
+
platform_editor_preview_panel_linking_exp: {
|
|
402
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
403
|
+
defaultValue: boolean;
|
|
404
|
+
productKeys?: import("./types").ProductKeys;
|
|
405
|
+
param: string;
|
|
406
|
+
};
|
|
401
407
|
platform_editor_block_menu: {
|
|
402
408
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
403
409
|
defaultValue: boolean;
|
package/package.json
CHANGED