@atlaskit/tmp-editor-statsig 12.2.0 → 12.3.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.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`659a799cb7f84`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/659a799cb7f84) -
|
|
8
|
+
Added platform_editor_hydratable_ui experiment
|
|
9
|
+
|
|
3
10
|
## 12.2.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -235,6 +235,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
235
235
|
values: ['control', 'variant1'],
|
|
236
236
|
defaultValue: 'control'
|
|
237
237
|
}),
|
|
238
|
+
// Added 2025-09-03
|
|
239
|
+
platform_editor_hydratable_ui: (0, _experimentBuilders.createBooleanExperiment)({
|
|
240
|
+
productKeys: {
|
|
241
|
+
confluence: 'platform_editor_hydratable_ui'
|
|
242
|
+
},
|
|
243
|
+
param: 'isEnabled',
|
|
244
|
+
defaultValue: false
|
|
245
|
+
}),
|
|
238
246
|
// Added 2025-04-01
|
|
239
247
|
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_vanilla_dom/setup
|
|
240
248
|
platform_editor_vanilla_dom: (0, _experimentBuilders.createBooleanExperiment)({
|
|
@@ -229,6 +229,14 @@ export const editorExperimentsConfig = {
|
|
|
229
229
|
values: ['control', 'variant1'],
|
|
230
230
|
defaultValue: 'control'
|
|
231
231
|
}),
|
|
232
|
+
// Added 2025-09-03
|
|
233
|
+
platform_editor_hydratable_ui: createBooleanExperiment({
|
|
234
|
+
productKeys: {
|
|
235
|
+
confluence: 'platform_editor_hydratable_ui'
|
|
236
|
+
},
|
|
237
|
+
param: 'isEnabled',
|
|
238
|
+
defaultValue: false
|
|
239
|
+
}),
|
|
232
240
|
// Added 2025-04-01
|
|
233
241
|
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_vanilla_dom/setup
|
|
234
242
|
platform_editor_vanilla_dom: createBooleanExperiment({
|
|
@@ -229,6 +229,14 @@ export var editorExperimentsConfig = {
|
|
|
229
229
|
values: ['control', 'variant1'],
|
|
230
230
|
defaultValue: 'control'
|
|
231
231
|
}),
|
|
232
|
+
// Added 2025-09-03
|
|
233
|
+
platform_editor_hydratable_ui: createBooleanExperiment({
|
|
234
|
+
productKeys: {
|
|
235
|
+
confluence: 'platform_editor_hydratable_ui'
|
|
236
|
+
},
|
|
237
|
+
param: 'isEnabled',
|
|
238
|
+
defaultValue: false
|
|
239
|
+
}),
|
|
232
240
|
// Added 2025-04-01
|
|
233
241
|
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_vanilla_dom/setup
|
|
234
242
|
platform_editor_vanilla_dom: createBooleanExperiment({
|
|
@@ -171,6 +171,12 @@ export declare const editorExperimentsConfig: {
|
|
|
171
171
|
param: string;
|
|
172
172
|
productKeys?: import("./types").ProductKeys;
|
|
173
173
|
};
|
|
174
|
+
platform_editor_hydratable_ui: {
|
|
175
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
176
|
+
defaultValue: boolean;
|
|
177
|
+
param: string;
|
|
178
|
+
productKeys?: import("./types").ProductKeys;
|
|
179
|
+
};
|
|
174
180
|
platform_editor_vanilla_dom: {
|
|
175
181
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
176
182
|
defaultValue: boolean;
|
|
@@ -171,6 +171,12 @@ export declare const editorExperimentsConfig: {
|
|
|
171
171
|
param: string;
|
|
172
172
|
productKeys?: import("./types").ProductKeys;
|
|
173
173
|
};
|
|
174
|
+
platform_editor_hydratable_ui: {
|
|
175
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
176
|
+
defaultValue: boolean;
|
|
177
|
+
param: string;
|
|
178
|
+
productKeys?: import("./types").ProductKeys;
|
|
179
|
+
};
|
|
174
180
|
platform_editor_vanilla_dom: {
|
|
175
181
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
176
182
|
defaultValue: boolean;
|
package/package.json
CHANGED