@atlaskit/tmp-editor-statsig 13.42.1 → 13.43.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,16 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 13.43.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`df2de2a8c87f1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/df2de2a8c87f1) -
|
|
8
|
+
Remove ncsStepMetricsPlugin from confluence fullpage editor preset
|
|
9
|
+
|
|
10
|
+
When the experiment `platform_editor_remove_ncsStepMetrics_plugin` is set to `isEnabled`,
|
|
11
|
+
`enabledOptionalPlugins.ncsStepMetrics` will no longer add the `ncsStepMetricsPlugin` to the
|
|
12
|
+
Confluence `fullPagePreset`
|
|
13
|
+
|
|
3
14
|
## 13.42.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -1135,5 +1135,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1135
1135
|
},
|
|
1136
1136
|
param: 'isEnabled',
|
|
1137
1137
|
defaultValue: false
|
|
1138
|
+
}),
|
|
1139
|
+
// Added 2025-11-25
|
|
1140
|
+
platform_editor_remove_ncsStepMetrics_plugin: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1141
|
+
productKeys: {
|
|
1142
|
+
confluence: 'platform_editor_remove_ncsStepMetrics_plugin'
|
|
1143
|
+
},
|
|
1144
|
+
param: 'isEnabled',
|
|
1145
|
+
defaultValue: false
|
|
1138
1146
|
})
|
|
1139
1147
|
};
|
|
@@ -1129,5 +1129,13 @@ export const editorExperimentsConfig = {
|
|
|
1129
1129
|
},
|
|
1130
1130
|
param: 'isEnabled',
|
|
1131
1131
|
defaultValue: false
|
|
1132
|
+
}),
|
|
1133
|
+
// Added 2025-11-25
|
|
1134
|
+
platform_editor_remove_ncsStepMetrics_plugin: createBooleanExperiment({
|
|
1135
|
+
productKeys: {
|
|
1136
|
+
confluence: 'platform_editor_remove_ncsStepMetrics_plugin'
|
|
1137
|
+
},
|
|
1138
|
+
param: 'isEnabled',
|
|
1139
|
+
defaultValue: false
|
|
1132
1140
|
})
|
|
1133
1141
|
};
|
|
@@ -1129,5 +1129,13 @@ export var editorExperimentsConfig = {
|
|
|
1129
1129
|
},
|
|
1130
1130
|
param: 'isEnabled',
|
|
1131
1131
|
defaultValue: false
|
|
1132
|
+
}),
|
|
1133
|
+
// Added 2025-11-25
|
|
1134
|
+
platform_editor_remove_ncsStepMetrics_plugin: createBooleanExperiment({
|
|
1135
|
+
productKeys: {
|
|
1136
|
+
confluence: 'platform_editor_remove_ncsStepMetrics_plugin'
|
|
1137
|
+
},
|
|
1138
|
+
param: 'isEnabled',
|
|
1139
|
+
defaultValue: false
|
|
1132
1140
|
})
|
|
1133
1141
|
};
|
|
@@ -836,4 +836,10 @@ export declare const editorExperimentsConfig: {
|
|
|
836
836
|
param: string;
|
|
837
837
|
productKeys?: import("./types").ProductKeys;
|
|
838
838
|
};
|
|
839
|
+
platform_editor_remove_ncsStepMetrics_plugin: {
|
|
840
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
841
|
+
defaultValue: boolean;
|
|
842
|
+
param: string;
|
|
843
|
+
productKeys?: import("./types").ProductKeys;
|
|
844
|
+
};
|
|
839
845
|
};
|
|
@@ -836,4 +836,10 @@ export declare const editorExperimentsConfig: {
|
|
|
836
836
|
param: string;
|
|
837
837
|
productKeys?: import("./types").ProductKeys;
|
|
838
838
|
};
|
|
839
|
+
platform_editor_remove_ncsStepMetrics_plugin: {
|
|
840
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
841
|
+
defaultValue: boolean;
|
|
842
|
+
param: string;
|
|
843
|
+
productKeys?: import("./types").ProductKeys;
|
|
844
|
+
};
|
|
839
845
|
};
|
package/package.json
CHANGED