@atlaskit/tmp-editor-statsig 13.41.0 → 13.42.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
|
+
## 13.42.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`73b70015b0789`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/73b70015b0789) -
|
|
8
|
+
Adding exp gate: company-hub-config-panel-keyboard-nav
|
|
9
|
+
|
|
3
10
|
## 13.41.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -168,6 +168,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
168
168
|
param: 'isEnabled',
|
|
169
169
|
defaultValue: false
|
|
170
170
|
}),
|
|
171
|
+
// Added 2025-11-20
|
|
172
|
+
'company-hub-config-panel-keyboard-nav': (0, _experimentBuilders.createBooleanExperiment)({
|
|
173
|
+
productKeys: {
|
|
174
|
+
confluence: 'company-hub-config-panel-keyboard-nav'
|
|
175
|
+
},
|
|
176
|
+
param: 'isEnabled',
|
|
177
|
+
defaultValue: false
|
|
178
|
+
}),
|
|
171
179
|
// Added 2025-10-10
|
|
172
180
|
platform_editor_experience_tracking: (0, _experimentBuilders.createBooleanExperiment)({
|
|
173
181
|
productKeys: {
|
|
@@ -162,6 +162,14 @@ export const editorExperimentsConfig = {
|
|
|
162
162
|
param: 'isEnabled',
|
|
163
163
|
defaultValue: false
|
|
164
164
|
}),
|
|
165
|
+
// Added 2025-11-20
|
|
166
|
+
'company-hub-config-panel-keyboard-nav': createBooleanExperiment({
|
|
167
|
+
productKeys: {
|
|
168
|
+
confluence: 'company-hub-config-panel-keyboard-nav'
|
|
169
|
+
},
|
|
170
|
+
param: 'isEnabled',
|
|
171
|
+
defaultValue: false
|
|
172
|
+
}),
|
|
165
173
|
// Added 2025-10-10
|
|
166
174
|
platform_editor_experience_tracking: createBooleanExperiment({
|
|
167
175
|
productKeys: {
|
|
@@ -162,6 +162,14 @@ export var editorExperimentsConfig = {
|
|
|
162
162
|
param: 'isEnabled',
|
|
163
163
|
defaultValue: false
|
|
164
164
|
}),
|
|
165
|
+
// Added 2025-11-20
|
|
166
|
+
'company-hub-config-panel-keyboard-nav': createBooleanExperiment({
|
|
167
|
+
productKeys: {
|
|
168
|
+
confluence: 'company-hub-config-panel-keyboard-nav'
|
|
169
|
+
},
|
|
170
|
+
param: 'isEnabled',
|
|
171
|
+
defaultValue: false
|
|
172
|
+
}),
|
|
165
173
|
// Added 2025-10-10
|
|
166
174
|
platform_editor_experience_tracking: createBooleanExperiment({
|
|
167
175
|
productKeys: {
|
|
@@ -116,6 +116,12 @@ export declare const editorExperimentsConfig: {
|
|
|
116
116
|
param: string;
|
|
117
117
|
productKeys?: import("./types").ProductKeys;
|
|
118
118
|
};
|
|
119
|
+
'company-hub-config-panel-keyboard-nav': {
|
|
120
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
121
|
+
defaultValue: boolean;
|
|
122
|
+
param: string;
|
|
123
|
+
productKeys?: import("./types").ProductKeys;
|
|
124
|
+
};
|
|
119
125
|
platform_editor_experience_tracking: {
|
|
120
126
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
121
127
|
defaultValue: boolean;
|
|
@@ -116,6 +116,12 @@ export declare const editorExperimentsConfig: {
|
|
|
116
116
|
param: string;
|
|
117
117
|
productKeys?: import("./types").ProductKeys;
|
|
118
118
|
};
|
|
119
|
+
'company-hub-config-panel-keyboard-nav': {
|
|
120
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
121
|
+
defaultValue: boolean;
|
|
122
|
+
param: string;
|
|
123
|
+
productKeys?: import("./types").ProductKeys;
|
|
124
|
+
};
|
|
119
125
|
platform_editor_experience_tracking: {
|
|
120
126
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
121
127
|
defaultValue: boolean;
|
package/package.json
CHANGED