@atlaskit/tmp-editor-statsig 90.0.0 → 90.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,14 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 90.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`1f87c5cc71aa3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1f87c5cc71aa3) -
|
|
8
|
+
Improve reliability of editor controls positioning by using ProseMirror node decorations to apply
|
|
9
|
+
CSS anchor-name, replacing fragile CSS adjacency selectors. Gated behind
|
|
10
|
+
platform_editor_controls_reliable_anchor experiment.
|
|
11
|
+
|
|
3
12
|
## 90.0.0
|
|
4
13
|
|
|
5
14
|
### Major Changes
|
|
@@ -447,6 +447,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
447
447
|
param: 'isEnabled',
|
|
448
448
|
defaultValue: false
|
|
449
449
|
}),
|
|
450
|
+
// Added 2026-05-19
|
|
451
|
+
platform_editor_controls_reliable_anchor: (0, _experimentBuilders.createBooleanExperiment)({
|
|
452
|
+
productKeys: {
|
|
453
|
+
confluence: 'platform_editor_controls_reliable_anchor'
|
|
454
|
+
},
|
|
455
|
+
param: 'isEnabled',
|
|
456
|
+
defaultValue: false
|
|
457
|
+
}),
|
|
450
458
|
// Added 2025-02-10
|
|
451
459
|
platform_editor_controls: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
452
460
|
productKeys: {
|
|
@@ -441,6 +441,14 @@ export const editorExperimentsConfig = {
|
|
|
441
441
|
param: 'isEnabled',
|
|
442
442
|
defaultValue: false
|
|
443
443
|
}),
|
|
444
|
+
// Added 2026-05-19
|
|
445
|
+
platform_editor_controls_reliable_anchor: createBooleanExperiment({
|
|
446
|
+
productKeys: {
|
|
447
|
+
confluence: 'platform_editor_controls_reliable_anchor'
|
|
448
|
+
},
|
|
449
|
+
param: 'isEnabled',
|
|
450
|
+
defaultValue: false
|
|
451
|
+
}),
|
|
444
452
|
// Added 2025-02-10
|
|
445
453
|
platform_editor_controls: createMultivariateExperiment({
|
|
446
454
|
productKeys: {
|
|
@@ -441,6 +441,14 @@ export var editorExperimentsConfig = {
|
|
|
441
441
|
param: 'isEnabled',
|
|
442
442
|
defaultValue: false
|
|
443
443
|
}),
|
|
444
|
+
// Added 2026-05-19
|
|
445
|
+
platform_editor_controls_reliable_anchor: createBooleanExperiment({
|
|
446
|
+
productKeys: {
|
|
447
|
+
confluence: 'platform_editor_controls_reliable_anchor'
|
|
448
|
+
},
|
|
449
|
+
param: 'isEnabled',
|
|
450
|
+
defaultValue: false
|
|
451
|
+
}),
|
|
444
452
|
// Added 2025-02-10
|
|
445
453
|
platform_editor_controls: createMultivariateExperiment({
|
|
446
454
|
productKeys: {
|
|
@@ -422,6 +422,12 @@ export declare const editorExperimentsConfig: {
|
|
|
422
422
|
productKeys?: ProductKeys;
|
|
423
423
|
typeGuard: IsBooleanType;
|
|
424
424
|
};
|
|
425
|
+
platform_editor_controls_reliable_anchor: {
|
|
426
|
+
defaultValue: boolean;
|
|
427
|
+
param: string;
|
|
428
|
+
productKeys?: ProductKeys;
|
|
429
|
+
typeGuard: IsBooleanType;
|
|
430
|
+
};
|
|
425
431
|
platform_editor_confluence_base_preset: {
|
|
426
432
|
defaultValue: boolean;
|
|
427
433
|
param: string;
|
|
@@ -422,6 +422,12 @@ export declare const editorExperimentsConfig: {
|
|
|
422
422
|
productKeys?: ProductKeys;
|
|
423
423
|
typeGuard: IsBooleanType;
|
|
424
424
|
};
|
|
425
|
+
platform_editor_controls_reliable_anchor: {
|
|
426
|
+
defaultValue: boolean;
|
|
427
|
+
param: string;
|
|
428
|
+
productKeys?: ProductKeys;
|
|
429
|
+
typeGuard: IsBooleanType;
|
|
430
|
+
};
|
|
425
431
|
platform_editor_confluence_base_preset: {
|
|
426
432
|
defaultValue: boolean;
|
|
427
433
|
param: string;
|
package/package.json
CHANGED