@atlaskit/tmp-editor-statsig 119.0.0 → 119.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 119.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`e8a2ffea2c9eb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e8a2ffea2c9eb) -
|
|
8
|
+
[ux] Paste actions popup no longer appears for link-only pastes.
|
|
9
|
+
|
|
3
10
|
## 119.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
package/compass.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
configVersion: 1
|
|
2
2
|
id: ari:cloud:compass:a436116f-02ce-4520-8fbb-7301462a1674:component/c5751cc6-3513-4070-9deb-af31e86aed34/80d90df9-b050-46f2-8563-aa320eca79e5
|
|
3
3
|
name: '@atlaskit/tmp-editor-statsig'
|
|
4
|
-
ownerId: ari:cloud:identity::team/
|
|
4
|
+
ownerId: ari:cloud:identity::team/0250ee69-f755-47fd-a468-bf8a9d10a3c5 # Editor AI
|
|
5
5
|
labels:
|
|
6
6
|
- platform-code
|
|
7
7
|
- platform-afm
|
|
@@ -24,6 +24,9 @@ customFields:
|
|
|
24
24
|
- name: Department
|
|
25
25
|
type: text
|
|
26
26
|
value: Eng - Editor
|
|
27
|
+
- name: Trusted Reviewer Teams
|
|
28
|
+
type: text
|
|
29
|
+
value: ari:cloud:identity::team/cf6a670b-5252-4c68-a769-9207de366beb
|
|
27
30
|
- name: Technical Owner
|
|
28
31
|
type: user
|
|
29
32
|
value: ari:cloud:identity::user/612646c53fe26c00694fbe6a # Chris Kimber
|
|
@@ -477,6 +477,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
477
477
|
param: 'isEnabled',
|
|
478
478
|
defaultValue: false
|
|
479
479
|
}),
|
|
480
|
+
// Added 2026-06-30
|
|
481
|
+
platform_editor_fix_link_paste_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
482
|
+
productKeys: {
|
|
483
|
+
confluence: 'platform_editor_fix_link_paste_menu',
|
|
484
|
+
jira: 'platform_editor_fix_link_paste_menu'
|
|
485
|
+
},
|
|
486
|
+
param: 'isEnabled',
|
|
487
|
+
defaultValue: false
|
|
488
|
+
}),
|
|
480
489
|
// Added 2025-10-31
|
|
481
490
|
platform_editor_lovability_suppress_toolbar_event: (0, _experimentBuilders.createBooleanExperiment)({
|
|
482
491
|
productKeys: {
|
|
@@ -471,6 +471,15 @@ export const editorExperimentsConfig = {
|
|
|
471
471
|
param: 'isEnabled',
|
|
472
472
|
defaultValue: false
|
|
473
473
|
}),
|
|
474
|
+
// Added 2026-06-30
|
|
475
|
+
platform_editor_fix_link_paste_menu: createBooleanExperiment({
|
|
476
|
+
productKeys: {
|
|
477
|
+
confluence: 'platform_editor_fix_link_paste_menu',
|
|
478
|
+
jira: 'platform_editor_fix_link_paste_menu'
|
|
479
|
+
},
|
|
480
|
+
param: 'isEnabled',
|
|
481
|
+
defaultValue: false
|
|
482
|
+
}),
|
|
474
483
|
// Added 2025-10-31
|
|
475
484
|
platform_editor_lovability_suppress_toolbar_event: createBooleanExperiment({
|
|
476
485
|
productKeys: {
|
|
@@ -471,6 +471,15 @@ export var editorExperimentsConfig = {
|
|
|
471
471
|
param: 'isEnabled',
|
|
472
472
|
defaultValue: false
|
|
473
473
|
}),
|
|
474
|
+
// Added 2026-06-30
|
|
475
|
+
platform_editor_fix_link_paste_menu: createBooleanExperiment({
|
|
476
|
+
productKeys: {
|
|
477
|
+
confluence: 'platform_editor_fix_link_paste_menu',
|
|
478
|
+
jira: 'platform_editor_fix_link_paste_menu'
|
|
479
|
+
},
|
|
480
|
+
param: 'isEnabled',
|
|
481
|
+
defaultValue: false
|
|
482
|
+
}),
|
|
474
483
|
// Added 2025-10-31
|
|
475
484
|
platform_editor_lovability_suppress_toolbar_event: createBooleanExperiment({
|
|
476
485
|
productKeys: {
|
|
@@ -549,6 +549,12 @@ export declare const editorExperimentsConfig: {
|
|
|
549
549
|
productKeys?: ProductKeys;
|
|
550
550
|
typeGuard: IsBooleanType;
|
|
551
551
|
};
|
|
552
|
+
platform_editor_fix_link_paste_menu: {
|
|
553
|
+
defaultValue: boolean;
|
|
554
|
+
param: string;
|
|
555
|
+
productKeys?: ProductKeys;
|
|
556
|
+
typeGuard: IsBooleanType;
|
|
557
|
+
};
|
|
552
558
|
platform_editor_prevent_taskitem_remount: {
|
|
553
559
|
defaultValue: boolean;
|
|
554
560
|
param: string;
|
package/package.json
CHANGED