@atlaskit/tmp-editor-statsig 12.27.0 → 12.29.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 +17 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +24 -0
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +24 -0
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +24 -0
- package/dist/types/experiments-config.d.ts +18 -0
- package/dist/types-ts4.5/experiments-config.d.ts +18 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 12.29.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`6d186dc817ef9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6d186dc817ef9) -
|
|
8
|
+
[ux] ED-26884 fix bug where resize columns for nested table results in a scrollbar
|
|
9
|
+
- [`e49f1d35e507a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e49f1d35e507a) -
|
|
10
|
+
[https://product-fabric.atlassian.net/browse/ED-29349](ED-29349) - add one tick provider (SSR)
|
|
11
|
+
support for emojis in editor and live pages
|
|
12
|
+
|
|
13
|
+
## 12.28.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- [`6af30673f7cee`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6af30673f7cee) -
|
|
18
|
+
[ux] Adding padding to the left and right side of highlighted text
|
|
19
|
+
|
|
3
20
|
## 12.27.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
@@ -66,5 +66,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
66
66
|
platform_editor_toggle_expand_on_match_found: false,
|
|
67
67
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
68
68
|
cc_improve_writing_on_paste_v2: false,
|
|
69
|
-
platform_editor_ai_aifc: false
|
|
69
|
+
platform_editor_ai_aifc: false,
|
|
70
|
+
platform_editor_text_highlight_padding: false
|
|
70
71
|
};
|
|
@@ -592,6 +592,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
592
592
|
param: 'isEnabled',
|
|
593
593
|
defaultValue: false
|
|
594
594
|
}),
|
|
595
|
+
// Added 2025-09-16
|
|
596
|
+
platform_editor_emoji_otp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
597
|
+
productKeys: {
|
|
598
|
+
confluence: 'platform_editor_emoji_otp'
|
|
599
|
+
},
|
|
600
|
+
param: 'isEnabled',
|
|
601
|
+
defaultValue: false
|
|
602
|
+
}),
|
|
595
603
|
// Added 2025-07-23
|
|
596
604
|
platform_editor_renderer_breakout_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
597
605
|
productKeys: {
|
|
@@ -1025,6 +1033,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1025
1033
|
param: 'isEnabled',
|
|
1026
1034
|
defaultValue: false
|
|
1027
1035
|
}),
|
|
1036
|
+
// Added 2025-09-16
|
|
1037
|
+
platform_editor_nested_table_refresh_width_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1038
|
+
productKeys: {
|
|
1039
|
+
confluence: 'platform_editor_nested_table_refresh_width_fix'
|
|
1040
|
+
},
|
|
1041
|
+
param: 'isEnabled',
|
|
1042
|
+
defaultValue: false
|
|
1043
|
+
}),
|
|
1028
1044
|
// Added 10-09-2025
|
|
1029
1045
|
platform_editor_toolbar_task_list_menu_item: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1030
1046
|
productKeys: {
|
|
@@ -1040,5 +1056,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1040
1056
|
},
|
|
1041
1057
|
param: 'isEnabled',
|
|
1042
1058
|
defaultValue: false
|
|
1059
|
+
}),
|
|
1060
|
+
// Added 2025-09-15
|
|
1061
|
+
platform_editor_text_highlight_padding: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1062
|
+
productKeys: {
|
|
1063
|
+
confluence: 'platform_editor_text_highlight_padding'
|
|
1064
|
+
},
|
|
1065
|
+
param: 'isEnabled',
|
|
1066
|
+
defaultValue: false
|
|
1043
1067
|
})
|
|
1044
1068
|
};
|
|
@@ -60,5 +60,6 @@ export const testBooleanOverrides = {
|
|
|
60
60
|
platform_editor_toggle_expand_on_match_found: false,
|
|
61
61
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
62
62
|
cc_improve_writing_on_paste_v2: false,
|
|
63
|
-
platform_editor_ai_aifc: false
|
|
63
|
+
platform_editor_ai_aifc: false,
|
|
64
|
+
platform_editor_text_highlight_padding: false
|
|
64
65
|
};
|
|
@@ -586,6 +586,14 @@ export const editorExperimentsConfig = {
|
|
|
586
586
|
param: 'isEnabled',
|
|
587
587
|
defaultValue: false
|
|
588
588
|
}),
|
|
589
|
+
// Added 2025-09-16
|
|
590
|
+
platform_editor_emoji_otp: createBooleanExperiment({
|
|
591
|
+
productKeys: {
|
|
592
|
+
confluence: 'platform_editor_emoji_otp'
|
|
593
|
+
},
|
|
594
|
+
param: 'isEnabled',
|
|
595
|
+
defaultValue: false
|
|
596
|
+
}),
|
|
589
597
|
// Added 2025-07-23
|
|
590
598
|
platform_editor_renderer_breakout_fix: createBooleanExperiment({
|
|
591
599
|
productKeys: {
|
|
@@ -1019,6 +1027,14 @@ export const editorExperimentsConfig = {
|
|
|
1019
1027
|
param: 'isEnabled',
|
|
1020
1028
|
defaultValue: false
|
|
1021
1029
|
}),
|
|
1030
|
+
// Added 2025-09-16
|
|
1031
|
+
platform_editor_nested_table_refresh_width_fix: createBooleanExperiment({
|
|
1032
|
+
productKeys: {
|
|
1033
|
+
confluence: 'platform_editor_nested_table_refresh_width_fix'
|
|
1034
|
+
},
|
|
1035
|
+
param: 'isEnabled',
|
|
1036
|
+
defaultValue: false
|
|
1037
|
+
}),
|
|
1022
1038
|
// Added 10-09-2025
|
|
1023
1039
|
platform_editor_toolbar_task_list_menu_item: createBooleanExperiment({
|
|
1024
1040
|
productKeys: {
|
|
@@ -1034,5 +1050,13 @@ export const editorExperimentsConfig = {
|
|
|
1034
1050
|
},
|
|
1035
1051
|
param: 'isEnabled',
|
|
1036
1052
|
defaultValue: false
|
|
1053
|
+
}),
|
|
1054
|
+
// Added 2025-09-15
|
|
1055
|
+
platform_editor_text_highlight_padding: createBooleanExperiment({
|
|
1056
|
+
productKeys: {
|
|
1057
|
+
confluence: 'platform_editor_text_highlight_padding'
|
|
1058
|
+
},
|
|
1059
|
+
param: 'isEnabled',
|
|
1060
|
+
defaultValue: false
|
|
1037
1061
|
})
|
|
1038
1062
|
};
|
|
@@ -60,5 +60,6 @@ export var testBooleanOverrides = {
|
|
|
60
60
|
platform_editor_toggle_expand_on_match_found: false,
|
|
61
61
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
62
62
|
cc_improve_writing_on_paste_v2: false,
|
|
63
|
-
platform_editor_ai_aifc: false
|
|
63
|
+
platform_editor_ai_aifc: false,
|
|
64
|
+
platform_editor_text_highlight_padding: false
|
|
64
65
|
};
|
|
@@ -586,6 +586,14 @@ export var editorExperimentsConfig = {
|
|
|
586
586
|
param: 'isEnabled',
|
|
587
587
|
defaultValue: false
|
|
588
588
|
}),
|
|
589
|
+
// Added 2025-09-16
|
|
590
|
+
platform_editor_emoji_otp: createBooleanExperiment({
|
|
591
|
+
productKeys: {
|
|
592
|
+
confluence: 'platform_editor_emoji_otp'
|
|
593
|
+
},
|
|
594
|
+
param: 'isEnabled',
|
|
595
|
+
defaultValue: false
|
|
596
|
+
}),
|
|
589
597
|
// Added 2025-07-23
|
|
590
598
|
platform_editor_renderer_breakout_fix: createBooleanExperiment({
|
|
591
599
|
productKeys: {
|
|
@@ -1019,6 +1027,14 @@ export var editorExperimentsConfig = {
|
|
|
1019
1027
|
param: 'isEnabled',
|
|
1020
1028
|
defaultValue: false
|
|
1021
1029
|
}),
|
|
1030
|
+
// Added 2025-09-16
|
|
1031
|
+
platform_editor_nested_table_refresh_width_fix: createBooleanExperiment({
|
|
1032
|
+
productKeys: {
|
|
1033
|
+
confluence: 'platform_editor_nested_table_refresh_width_fix'
|
|
1034
|
+
},
|
|
1035
|
+
param: 'isEnabled',
|
|
1036
|
+
defaultValue: false
|
|
1037
|
+
}),
|
|
1022
1038
|
// Added 10-09-2025
|
|
1023
1039
|
platform_editor_toolbar_task_list_menu_item: createBooleanExperiment({
|
|
1024
1040
|
productKeys: {
|
|
@@ -1034,5 +1050,13 @@ export var editorExperimentsConfig = {
|
|
|
1034
1050
|
},
|
|
1035
1051
|
param: 'isEnabled',
|
|
1036
1052
|
defaultValue: false
|
|
1053
|
+
}),
|
|
1054
|
+
// Added 2025-09-15
|
|
1055
|
+
platform_editor_text_highlight_padding: createBooleanExperiment({
|
|
1056
|
+
productKeys: {
|
|
1057
|
+
confluence: 'platform_editor_text_highlight_padding'
|
|
1058
|
+
},
|
|
1059
|
+
param: 'isEnabled',
|
|
1060
|
+
defaultValue: false
|
|
1037
1061
|
})
|
|
1038
1062
|
};
|
|
@@ -437,6 +437,12 @@ export declare const editorExperimentsConfig: {
|
|
|
437
437
|
param: string;
|
|
438
438
|
productKeys?: import("./types").ProductKeys;
|
|
439
439
|
};
|
|
440
|
+
platform_editor_emoji_otp: {
|
|
441
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
442
|
+
defaultValue: boolean;
|
|
443
|
+
param: string;
|
|
444
|
+
productKeys?: import("./types").ProductKeys;
|
|
445
|
+
};
|
|
440
446
|
platform_editor_renderer_breakout_fix: {
|
|
441
447
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
442
448
|
defaultValue: boolean;
|
|
@@ -752,6 +758,12 @@ export declare const editorExperimentsConfig: {
|
|
|
752
758
|
param: string;
|
|
753
759
|
productKeys?: import("./types").ProductKeys;
|
|
754
760
|
};
|
|
761
|
+
platform_editor_nested_table_refresh_width_fix: {
|
|
762
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
763
|
+
defaultValue: boolean;
|
|
764
|
+
param: string;
|
|
765
|
+
productKeys?: import("./types").ProductKeys;
|
|
766
|
+
};
|
|
755
767
|
platform_editor_toolbar_task_list_menu_item: {
|
|
756
768
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
757
769
|
defaultValue: boolean;
|
|
@@ -764,4 +776,10 @@ export declare const editorExperimentsConfig: {
|
|
|
764
776
|
param: string;
|
|
765
777
|
productKeys?: import("./types").ProductKeys;
|
|
766
778
|
};
|
|
779
|
+
platform_editor_text_highlight_padding: {
|
|
780
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
781
|
+
defaultValue: boolean;
|
|
782
|
+
param: string;
|
|
783
|
+
productKeys?: import("./types").ProductKeys;
|
|
784
|
+
};
|
|
767
785
|
};
|
|
@@ -437,6 +437,12 @@ export declare const editorExperimentsConfig: {
|
|
|
437
437
|
param: string;
|
|
438
438
|
productKeys?: import("./types").ProductKeys;
|
|
439
439
|
};
|
|
440
|
+
platform_editor_emoji_otp: {
|
|
441
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
442
|
+
defaultValue: boolean;
|
|
443
|
+
param: string;
|
|
444
|
+
productKeys?: import("./types").ProductKeys;
|
|
445
|
+
};
|
|
440
446
|
platform_editor_renderer_breakout_fix: {
|
|
441
447
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
442
448
|
defaultValue: boolean;
|
|
@@ -752,6 +758,12 @@ export declare const editorExperimentsConfig: {
|
|
|
752
758
|
param: string;
|
|
753
759
|
productKeys?: import("./types").ProductKeys;
|
|
754
760
|
};
|
|
761
|
+
platform_editor_nested_table_refresh_width_fix: {
|
|
762
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
763
|
+
defaultValue: boolean;
|
|
764
|
+
param: string;
|
|
765
|
+
productKeys?: import("./types").ProductKeys;
|
|
766
|
+
};
|
|
755
767
|
platform_editor_toolbar_task_list_menu_item: {
|
|
756
768
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
757
769
|
defaultValue: boolean;
|
|
@@ -764,4 +776,10 @@ export declare const editorExperimentsConfig: {
|
|
|
764
776
|
param: string;
|
|
765
777
|
productKeys?: import("./types").ProductKeys;
|
|
766
778
|
};
|
|
779
|
+
platform_editor_text_highlight_padding: {
|
|
780
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
781
|
+
defaultValue: boolean;
|
|
782
|
+
param: string;
|
|
783
|
+
productKeys?: import("./types").ProductKeys;
|
|
784
|
+
};
|
|
767
785
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.29.0",
|
|
4
4
|
"description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"atlaskit:src": "src/index.ts",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
36
|
-
"@atlaskit/react-ufo": "^4.
|
|
36
|
+
"@atlaskit/react-ufo": "^4.9.0",
|
|
37
37
|
"@babel/runtime": "^7.0.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|