@atlaskit/tmp-editor-statsig 12.3.0 → 12.4.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
|
+
## 12.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`5c1589424fcc4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5c1589424fcc4) -
|
|
8
|
+
ED-29088 - Add nodesInViewport metric to proseMirrorRendered events.
|
|
9
|
+
|
|
3
10
|
## 12.3.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -838,5 +838,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
838
838
|
},
|
|
839
839
|
param: 'isEnabled',
|
|
840
840
|
defaultValue: false
|
|
841
|
+
}),
|
|
842
|
+
// Added 2025-09-02
|
|
843
|
+
platform_editor_ttvc_nodes_in_viewport: (0, _experimentBuilders.createBooleanExperiment)({
|
|
844
|
+
productKeys: {
|
|
845
|
+
confluence: 'platform_editor_ttvc_nodes_in_viewport'
|
|
846
|
+
},
|
|
847
|
+
param: 'isEnabled',
|
|
848
|
+
defaultValue: false
|
|
841
849
|
})
|
|
842
850
|
};
|
|
@@ -832,5 +832,13 @@ export const editorExperimentsConfig = {
|
|
|
832
832
|
},
|
|
833
833
|
param: 'isEnabled',
|
|
834
834
|
defaultValue: false
|
|
835
|
+
}),
|
|
836
|
+
// Added 2025-09-02
|
|
837
|
+
platform_editor_ttvc_nodes_in_viewport: createBooleanExperiment({
|
|
838
|
+
productKeys: {
|
|
839
|
+
confluence: 'platform_editor_ttvc_nodes_in_viewport'
|
|
840
|
+
},
|
|
841
|
+
param: 'isEnabled',
|
|
842
|
+
defaultValue: false
|
|
835
843
|
})
|
|
836
844
|
};
|
|
@@ -832,5 +832,13 @@ export var editorExperimentsConfig = {
|
|
|
832
832
|
},
|
|
833
833
|
param: 'isEnabled',
|
|
834
834
|
defaultValue: false
|
|
835
|
+
}),
|
|
836
|
+
// Added 2025-09-02
|
|
837
|
+
platform_editor_ttvc_nodes_in_viewport: createBooleanExperiment({
|
|
838
|
+
productKeys: {
|
|
839
|
+
confluence: 'platform_editor_ttvc_nodes_in_viewport'
|
|
840
|
+
},
|
|
841
|
+
param: 'isEnabled',
|
|
842
|
+
defaultValue: false
|
|
835
843
|
})
|
|
836
844
|
};
|
|
@@ -617,4 +617,10 @@ export declare const editorExperimentsConfig: {
|
|
|
617
617
|
param: string;
|
|
618
618
|
productKeys?: import("./types").ProductKeys;
|
|
619
619
|
};
|
|
620
|
+
platform_editor_ttvc_nodes_in_viewport: {
|
|
621
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
622
|
+
defaultValue: boolean;
|
|
623
|
+
param: string;
|
|
624
|
+
productKeys?: import("./types").ProductKeys;
|
|
625
|
+
};
|
|
620
626
|
};
|
|
@@ -617,4 +617,10 @@ export declare const editorExperimentsConfig: {
|
|
|
617
617
|
param: string;
|
|
618
618
|
productKeys?: import("./types").ProductKeys;
|
|
619
619
|
};
|
|
620
|
+
platform_editor_ttvc_nodes_in_viewport: {
|
|
621
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
622
|
+
defaultValue: boolean;
|
|
623
|
+
param: string;
|
|
624
|
+
productKeys?: import("./types").ProductKeys;
|
|
625
|
+
};
|
|
620
626
|
};
|
package/package.json
CHANGED