@atlaskit/tmp-editor-statsig 46.2.0 → 47.0.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,17 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 47.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`369e414179c61`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/369e414179c61) -
|
|
8
|
+
Cleanup feature flag platform_editor_fix_gapcursor_on_paste. The fix for gapcursor on paste is now
|
|
9
|
+
enabled by default.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 46.2.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -1331,15 +1331,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1331
1331
|
param: 'isEnabled',
|
|
1332
1332
|
defaultValue: false
|
|
1333
1333
|
}),
|
|
1334
|
-
// Added 2026-02-02
|
|
1335
|
-
platform_editor_fix_gapcursor_on_paste: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1336
|
-
productKeys: {
|
|
1337
|
-
confluence: 'platform_editor_fix_gapcursor_on_paste',
|
|
1338
|
-
jira: 'platform_editor_fix_gapcursor_on_paste'
|
|
1339
|
-
},
|
|
1340
|
-
param: 'isEnabled',
|
|
1341
|
-
defaultValue: false
|
|
1342
|
-
}),
|
|
1343
1334
|
confluence_ttvc_inline_extensions: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1344
1335
|
productKeys: {
|
|
1345
1336
|
confluence: 'confluence_ttvc_inline_extensions'
|
|
@@ -1325,15 +1325,6 @@ export const editorExperimentsConfig = {
|
|
|
1325
1325
|
param: 'isEnabled',
|
|
1326
1326
|
defaultValue: false
|
|
1327
1327
|
}),
|
|
1328
|
-
// Added 2026-02-02
|
|
1329
|
-
platform_editor_fix_gapcursor_on_paste: createBooleanExperiment({
|
|
1330
|
-
productKeys: {
|
|
1331
|
-
confluence: 'platform_editor_fix_gapcursor_on_paste',
|
|
1332
|
-
jira: 'platform_editor_fix_gapcursor_on_paste'
|
|
1333
|
-
},
|
|
1334
|
-
param: 'isEnabled',
|
|
1335
|
-
defaultValue: false
|
|
1336
|
-
}),
|
|
1337
1328
|
confluence_ttvc_inline_extensions: createBooleanExperiment({
|
|
1338
1329
|
productKeys: {
|
|
1339
1330
|
confluence: 'confluence_ttvc_inline_extensions'
|
|
@@ -1325,15 +1325,6 @@ export var editorExperimentsConfig = {
|
|
|
1325
1325
|
param: 'isEnabled',
|
|
1326
1326
|
defaultValue: false
|
|
1327
1327
|
}),
|
|
1328
|
-
// Added 2026-02-02
|
|
1329
|
-
platform_editor_fix_gapcursor_on_paste: createBooleanExperiment({
|
|
1330
|
-
productKeys: {
|
|
1331
|
-
confluence: 'platform_editor_fix_gapcursor_on_paste',
|
|
1332
|
-
jira: 'platform_editor_fix_gapcursor_on_paste'
|
|
1333
|
-
},
|
|
1334
|
-
param: 'isEnabled',
|
|
1335
|
-
defaultValue: false
|
|
1336
|
-
}),
|
|
1337
1328
|
confluence_ttvc_inline_extensions: createBooleanExperiment({
|
|
1338
1329
|
productKeys: {
|
|
1339
1330
|
confluence: 'confluence_ttvc_inline_extensions'
|
|
@@ -971,12 +971,6 @@ export declare const editorExperimentsConfig: {
|
|
|
971
971
|
productKeys?: ProductKeys;
|
|
972
972
|
typeGuard: IsBooleanType;
|
|
973
973
|
};
|
|
974
|
-
platform_editor_fix_gapcursor_on_paste: {
|
|
975
|
-
defaultValue: boolean;
|
|
976
|
-
param: string;
|
|
977
|
-
productKeys?: ProductKeys;
|
|
978
|
-
typeGuard: IsBooleanType;
|
|
979
|
-
};
|
|
980
974
|
platform_editor_ai_fix_insert_after_selection: {
|
|
981
975
|
defaultValue: boolean;
|
|
982
976
|
param: string;
|
|
@@ -971,12 +971,6 @@ export declare const editorExperimentsConfig: {
|
|
|
971
971
|
productKeys?: ProductKeys;
|
|
972
972
|
typeGuard: IsBooleanType;
|
|
973
973
|
};
|
|
974
|
-
platform_editor_fix_gapcursor_on_paste: {
|
|
975
|
-
defaultValue: boolean;
|
|
976
|
-
param: string;
|
|
977
|
-
productKeys?: ProductKeys;
|
|
978
|
-
typeGuard: IsBooleanType;
|
|
979
|
-
};
|
|
980
974
|
platform_editor_ai_fix_insert_after_selection: {
|
|
981
975
|
defaultValue: boolean;
|
|
982
976
|
param: string;
|
package/package.json
CHANGED