@atlaskit/tmp-editor-statsig 12.26.0 → 12.28.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 +14 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +16 -0
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +16 -0
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +16 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/dist/types-ts4.5/experiments-config.d.ts +12 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 12.28.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`6af30673f7cee`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6af30673f7cee) -
|
|
8
|
+
[ux] Adding padding to the left and right side of highlighted text
|
|
9
|
+
|
|
10
|
+
## 12.27.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`d5e5b25fe885a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d5e5b25fe885a) -
|
|
15
|
+
[ux] ED-29226 Open block menu when drag handle is focussed and space or enter key is pressed
|
|
16
|
+
|
|
3
17
|
## 12.26.0
|
|
4
18
|
|
|
5
19
|
### 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
|
};
|
|
@@ -1001,6 +1001,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1001
1001
|
param: 'isEnabled',
|
|
1002
1002
|
defaultValue: false
|
|
1003
1003
|
}),
|
|
1004
|
+
// Added 2025-09-17
|
|
1005
|
+
platform_editor_block_menu_keyboard_navigation: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1006
|
+
productKeys: {
|
|
1007
|
+
confluence: 'platform_editor_block_menu_keyboard_navigation'
|
|
1008
|
+
},
|
|
1009
|
+
param: 'isEnabled',
|
|
1010
|
+
defaultValue: false
|
|
1011
|
+
}),
|
|
1004
1012
|
// Added 2025-09-11
|
|
1005
1013
|
platform_editor_add_aria_checked_to_inline_img_btn: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1006
1014
|
productKeys: {
|
|
@@ -1032,5 +1040,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1032
1040
|
},
|
|
1033
1041
|
param: 'isEnabled',
|
|
1034
1042
|
defaultValue: false
|
|
1043
|
+
}),
|
|
1044
|
+
// Added 2025-09-15
|
|
1045
|
+
platform_editor_text_highlight_padding: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1046
|
+
productKeys: {
|
|
1047
|
+
confluence: 'platform_editor_text_highlight_padding'
|
|
1048
|
+
},
|
|
1049
|
+
param: 'isEnabled',
|
|
1050
|
+
defaultValue: false
|
|
1035
1051
|
})
|
|
1036
1052
|
};
|
|
@@ -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
|
};
|
|
@@ -995,6 +995,14 @@ export const editorExperimentsConfig = {
|
|
|
995
995
|
param: 'isEnabled',
|
|
996
996
|
defaultValue: false
|
|
997
997
|
}),
|
|
998
|
+
// Added 2025-09-17
|
|
999
|
+
platform_editor_block_menu_keyboard_navigation: createBooleanExperiment({
|
|
1000
|
+
productKeys: {
|
|
1001
|
+
confluence: 'platform_editor_block_menu_keyboard_navigation'
|
|
1002
|
+
},
|
|
1003
|
+
param: 'isEnabled',
|
|
1004
|
+
defaultValue: false
|
|
1005
|
+
}),
|
|
998
1006
|
// Added 2025-09-11
|
|
999
1007
|
platform_editor_add_aria_checked_to_inline_img_btn: createBooleanExperiment({
|
|
1000
1008
|
productKeys: {
|
|
@@ -1026,5 +1034,13 @@ export const editorExperimentsConfig = {
|
|
|
1026
1034
|
},
|
|
1027
1035
|
param: 'isEnabled',
|
|
1028
1036
|
defaultValue: false
|
|
1037
|
+
}),
|
|
1038
|
+
// Added 2025-09-15
|
|
1039
|
+
platform_editor_text_highlight_padding: createBooleanExperiment({
|
|
1040
|
+
productKeys: {
|
|
1041
|
+
confluence: 'platform_editor_text_highlight_padding'
|
|
1042
|
+
},
|
|
1043
|
+
param: 'isEnabled',
|
|
1044
|
+
defaultValue: false
|
|
1029
1045
|
})
|
|
1030
1046
|
};
|
|
@@ -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
|
};
|
|
@@ -995,6 +995,14 @@ export var editorExperimentsConfig = {
|
|
|
995
995
|
param: 'isEnabled',
|
|
996
996
|
defaultValue: false
|
|
997
997
|
}),
|
|
998
|
+
// Added 2025-09-17
|
|
999
|
+
platform_editor_block_menu_keyboard_navigation: createBooleanExperiment({
|
|
1000
|
+
productKeys: {
|
|
1001
|
+
confluence: 'platform_editor_block_menu_keyboard_navigation'
|
|
1002
|
+
},
|
|
1003
|
+
param: 'isEnabled',
|
|
1004
|
+
defaultValue: false
|
|
1005
|
+
}),
|
|
998
1006
|
// Added 2025-09-11
|
|
999
1007
|
platform_editor_add_aria_checked_to_inline_img_btn: createBooleanExperiment({
|
|
1000
1008
|
productKeys: {
|
|
@@ -1026,5 +1034,13 @@ export var editorExperimentsConfig = {
|
|
|
1026
1034
|
},
|
|
1027
1035
|
param: 'isEnabled',
|
|
1028
1036
|
defaultValue: false
|
|
1037
|
+
}),
|
|
1038
|
+
// Added 2025-09-15
|
|
1039
|
+
platform_editor_text_highlight_padding: createBooleanExperiment({
|
|
1040
|
+
productKeys: {
|
|
1041
|
+
confluence: 'platform_editor_text_highlight_padding'
|
|
1042
|
+
},
|
|
1043
|
+
param: 'isEnabled',
|
|
1044
|
+
defaultValue: false
|
|
1029
1045
|
})
|
|
1030
1046
|
};
|
|
@@ -734,6 +734,12 @@ export declare const editorExperimentsConfig: {
|
|
|
734
734
|
param: string;
|
|
735
735
|
productKeys?: import("./types").ProductKeys;
|
|
736
736
|
};
|
|
737
|
+
platform_editor_block_menu_keyboard_navigation: {
|
|
738
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
739
|
+
defaultValue: boolean;
|
|
740
|
+
param: string;
|
|
741
|
+
productKeys?: import("./types").ProductKeys;
|
|
742
|
+
};
|
|
737
743
|
platform_editor_add_aria_checked_to_inline_img_btn: {
|
|
738
744
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
739
745
|
defaultValue: boolean;
|
|
@@ -758,4 +764,10 @@ export declare const editorExperimentsConfig: {
|
|
|
758
764
|
param: string;
|
|
759
765
|
productKeys?: import("./types").ProductKeys;
|
|
760
766
|
};
|
|
767
|
+
platform_editor_text_highlight_padding: {
|
|
768
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
769
|
+
defaultValue: boolean;
|
|
770
|
+
param: string;
|
|
771
|
+
productKeys?: import("./types").ProductKeys;
|
|
772
|
+
};
|
|
761
773
|
};
|
|
@@ -734,6 +734,12 @@ export declare const editorExperimentsConfig: {
|
|
|
734
734
|
param: string;
|
|
735
735
|
productKeys?: import("./types").ProductKeys;
|
|
736
736
|
};
|
|
737
|
+
platform_editor_block_menu_keyboard_navigation: {
|
|
738
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
739
|
+
defaultValue: boolean;
|
|
740
|
+
param: string;
|
|
741
|
+
productKeys?: import("./types").ProductKeys;
|
|
742
|
+
};
|
|
737
743
|
platform_editor_add_aria_checked_to_inline_img_btn: {
|
|
738
744
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
739
745
|
defaultValue: boolean;
|
|
@@ -758,4 +764,10 @@ export declare const editorExperimentsConfig: {
|
|
|
758
764
|
param: string;
|
|
759
765
|
productKeys?: import("./types").ProductKeys;
|
|
760
766
|
};
|
|
767
|
+
platform_editor_text_highlight_padding: {
|
|
768
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
769
|
+
defaultValue: boolean;
|
|
770
|
+
param: string;
|
|
771
|
+
productKeys?: import("./types").ProductKeys;
|
|
772
|
+
};
|
|
761
773
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.28.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": {
|