@atlaskit/tmp-editor-statsig 48.0.1 → 48.2.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/experiments-config.js +20 -2
- package/dist/es2019/experiments-config.js +20 -2
- package/dist/esm/experiments-config.js +20 -2
- 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
|
+
## 48.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`7ba3e1eb9de75`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7ba3e1eb9de75) -
|
|
8
|
+
[ux] Fix top border corners being cut off in comment boxes in Jira
|
|
9
|
+
|
|
10
|
+
## 48.1.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`31b465ec806b1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/31b465ec806b1) -
|
|
15
|
+
Fix INP buffered attribute - gate cc_editor_fix_insm_inp_buffer
|
|
16
|
+
|
|
3
17
|
## 48.0.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -149,6 +149,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
149
149
|
param: 'isEnabled',
|
|
150
150
|
defaultValue: false
|
|
151
151
|
}),
|
|
152
|
+
// Added 2026-03-26
|
|
153
|
+
cc_editor_fix_insm_inp_buffer: (0, _experimentBuilders.createBooleanExperiment)({
|
|
154
|
+
productKeys: {
|
|
155
|
+
confluence: 'cc_editor_fix_insm_inp_buffer'
|
|
156
|
+
},
|
|
157
|
+
param: 'isEnabled',
|
|
158
|
+
defaultValue: false
|
|
159
|
+
}),
|
|
152
160
|
// Added 2026-03-04
|
|
153
161
|
cwr_blank_object_experiment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
154
162
|
productKeys: {
|
|
@@ -423,7 +431,8 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
423
431
|
// Added 2025-02-10
|
|
424
432
|
platform_editor_controls: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
425
433
|
productKeys: {
|
|
426
|
-
confluence: 'platform_editor_controls'
|
|
434
|
+
confluence: 'platform_editor_controls',
|
|
435
|
+
jira: 'platform_editor_controls_jira'
|
|
427
436
|
},
|
|
428
437
|
param: 'cohort',
|
|
429
438
|
values: ['control', 'variant1'],
|
|
@@ -704,7 +713,8 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
704
713
|
// Added 2025--8-05
|
|
705
714
|
platform_editor_block_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
706
715
|
productKeys: {
|
|
707
|
-
confluence: 'platform_editor_block_menu'
|
|
716
|
+
confluence: 'platform_editor_block_menu',
|
|
717
|
+
jira: 'platform_editor_block_menu_jira'
|
|
708
718
|
},
|
|
709
719
|
param: 'isEnabled',
|
|
710
720
|
defaultValue: false
|
|
@@ -1862,5 +1872,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1862
1872
|
},
|
|
1863
1873
|
param: 'isEnabled',
|
|
1864
1874
|
defaultValue: false
|
|
1875
|
+
}),
|
|
1876
|
+
// Added 2026-03-26
|
|
1877
|
+
platform_editor_fix_comment_border: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1878
|
+
productKeys: {
|
|
1879
|
+
confluence: 'platform_editor_fix_comment_border'
|
|
1880
|
+
},
|
|
1881
|
+
param: 'isEnabled',
|
|
1882
|
+
defaultValue: false
|
|
1865
1883
|
})
|
|
1866
1884
|
};
|
|
@@ -143,6 +143,14 @@ export const editorExperimentsConfig = {
|
|
|
143
143
|
param: 'isEnabled',
|
|
144
144
|
defaultValue: false
|
|
145
145
|
}),
|
|
146
|
+
// Added 2026-03-26
|
|
147
|
+
cc_editor_fix_insm_inp_buffer: createBooleanExperiment({
|
|
148
|
+
productKeys: {
|
|
149
|
+
confluence: 'cc_editor_fix_insm_inp_buffer'
|
|
150
|
+
},
|
|
151
|
+
param: 'isEnabled',
|
|
152
|
+
defaultValue: false
|
|
153
|
+
}),
|
|
146
154
|
// Added 2026-03-04
|
|
147
155
|
cwr_blank_object_experiment: createBooleanExperiment({
|
|
148
156
|
productKeys: {
|
|
@@ -417,7 +425,8 @@ export const editorExperimentsConfig = {
|
|
|
417
425
|
// Added 2025-02-10
|
|
418
426
|
platform_editor_controls: createMultivariateExperiment({
|
|
419
427
|
productKeys: {
|
|
420
|
-
confluence: 'platform_editor_controls'
|
|
428
|
+
confluence: 'platform_editor_controls',
|
|
429
|
+
jira: 'platform_editor_controls_jira'
|
|
421
430
|
},
|
|
422
431
|
param: 'cohort',
|
|
423
432
|
values: ['control', 'variant1'],
|
|
@@ -698,7 +707,8 @@ export const editorExperimentsConfig = {
|
|
|
698
707
|
// Added 2025--8-05
|
|
699
708
|
platform_editor_block_menu: createBooleanExperiment({
|
|
700
709
|
productKeys: {
|
|
701
|
-
confluence: 'platform_editor_block_menu'
|
|
710
|
+
confluence: 'platform_editor_block_menu',
|
|
711
|
+
jira: 'platform_editor_block_menu_jira'
|
|
702
712
|
},
|
|
703
713
|
param: 'isEnabled',
|
|
704
714
|
defaultValue: false
|
|
@@ -1856,5 +1866,13 @@ export const editorExperimentsConfig = {
|
|
|
1856
1866
|
},
|
|
1857
1867
|
param: 'isEnabled',
|
|
1858
1868
|
defaultValue: false
|
|
1869
|
+
}),
|
|
1870
|
+
// Added 2026-03-26
|
|
1871
|
+
platform_editor_fix_comment_border: createBooleanExperiment({
|
|
1872
|
+
productKeys: {
|
|
1873
|
+
confluence: 'platform_editor_fix_comment_border'
|
|
1874
|
+
},
|
|
1875
|
+
param: 'isEnabled',
|
|
1876
|
+
defaultValue: false
|
|
1859
1877
|
})
|
|
1860
1878
|
};
|
|
@@ -143,6 +143,14 @@ export var editorExperimentsConfig = {
|
|
|
143
143
|
param: 'isEnabled',
|
|
144
144
|
defaultValue: false
|
|
145
145
|
}),
|
|
146
|
+
// Added 2026-03-26
|
|
147
|
+
cc_editor_fix_insm_inp_buffer: createBooleanExperiment({
|
|
148
|
+
productKeys: {
|
|
149
|
+
confluence: 'cc_editor_fix_insm_inp_buffer'
|
|
150
|
+
},
|
|
151
|
+
param: 'isEnabled',
|
|
152
|
+
defaultValue: false
|
|
153
|
+
}),
|
|
146
154
|
// Added 2026-03-04
|
|
147
155
|
cwr_blank_object_experiment: createBooleanExperiment({
|
|
148
156
|
productKeys: {
|
|
@@ -417,7 +425,8 @@ export var editorExperimentsConfig = {
|
|
|
417
425
|
// Added 2025-02-10
|
|
418
426
|
platform_editor_controls: createMultivariateExperiment({
|
|
419
427
|
productKeys: {
|
|
420
|
-
confluence: 'platform_editor_controls'
|
|
428
|
+
confluence: 'platform_editor_controls',
|
|
429
|
+
jira: 'platform_editor_controls_jira'
|
|
421
430
|
},
|
|
422
431
|
param: 'cohort',
|
|
423
432
|
values: ['control', 'variant1'],
|
|
@@ -698,7 +707,8 @@ export var editorExperimentsConfig = {
|
|
|
698
707
|
// Added 2025--8-05
|
|
699
708
|
platform_editor_block_menu: createBooleanExperiment({
|
|
700
709
|
productKeys: {
|
|
701
|
-
confluence: 'platform_editor_block_menu'
|
|
710
|
+
confluence: 'platform_editor_block_menu',
|
|
711
|
+
jira: 'platform_editor_block_menu_jira'
|
|
702
712
|
},
|
|
703
713
|
param: 'isEnabled',
|
|
704
714
|
defaultValue: false
|
|
@@ -1856,5 +1866,13 @@ export var editorExperimentsConfig = {
|
|
|
1856
1866
|
},
|
|
1857
1867
|
param: 'isEnabled',
|
|
1858
1868
|
defaultValue: false
|
|
1869
|
+
}),
|
|
1870
|
+
// Added 2026-03-26
|
|
1871
|
+
platform_editor_fix_comment_border: createBooleanExperiment({
|
|
1872
|
+
productKeys: {
|
|
1873
|
+
confluence: 'platform_editor_fix_comment_border'
|
|
1874
|
+
},
|
|
1875
|
+
param: 'isEnabled',
|
|
1876
|
+
defaultValue: false
|
|
1859
1877
|
})
|
|
1860
1878
|
};
|
|
@@ -51,6 +51,12 @@ export declare const editorExperimentsConfig: {
|
|
|
51
51
|
productKeys?: ProductKeys;
|
|
52
52
|
typeGuard: IsBooleanType;
|
|
53
53
|
};
|
|
54
|
+
cc_editor_fix_insm_inp_buffer: {
|
|
55
|
+
defaultValue: boolean;
|
|
56
|
+
param: string;
|
|
57
|
+
productKeys?: ProductKeys;
|
|
58
|
+
typeGuard: IsBooleanType;
|
|
59
|
+
};
|
|
54
60
|
editor_a11y_7152_profile_card_tab_order: {
|
|
55
61
|
defaultValue: boolean;
|
|
56
62
|
param: string;
|
|
@@ -1050,6 +1056,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1050
1056
|
productKeys?: ProductKeys;
|
|
1051
1057
|
typeGuard: IsBooleanType;
|
|
1052
1058
|
};
|
|
1059
|
+
platform_editor_fix_comment_border: {
|
|
1060
|
+
defaultValue: boolean;
|
|
1061
|
+
param: string;
|
|
1062
|
+
productKeys?: ProductKeys;
|
|
1063
|
+
typeGuard: IsBooleanType;
|
|
1064
|
+
};
|
|
1053
1065
|
confluence_frontend_fix_date_hydration_error: {
|
|
1054
1066
|
defaultValue: boolean;
|
|
1055
1067
|
param: string;
|
|
@@ -51,6 +51,12 @@ export declare const editorExperimentsConfig: {
|
|
|
51
51
|
productKeys?: ProductKeys;
|
|
52
52
|
typeGuard: IsBooleanType;
|
|
53
53
|
};
|
|
54
|
+
cc_editor_fix_insm_inp_buffer: {
|
|
55
|
+
defaultValue: boolean;
|
|
56
|
+
param: string;
|
|
57
|
+
productKeys?: ProductKeys;
|
|
58
|
+
typeGuard: IsBooleanType;
|
|
59
|
+
};
|
|
54
60
|
editor_a11y_7152_profile_card_tab_order: {
|
|
55
61
|
defaultValue: boolean;
|
|
56
62
|
param: string;
|
|
@@ -1050,6 +1056,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1050
1056
|
productKeys?: ProductKeys;
|
|
1051
1057
|
typeGuard: IsBooleanType;
|
|
1052
1058
|
};
|
|
1059
|
+
platform_editor_fix_comment_border: {
|
|
1060
|
+
defaultValue: boolean;
|
|
1061
|
+
param: string;
|
|
1062
|
+
productKeys?: ProductKeys;
|
|
1063
|
+
typeGuard: IsBooleanType;
|
|
1064
|
+
};
|
|
1053
1065
|
confluence_frontend_fix_date_hydration_error: {
|
|
1054
1066
|
defaultValue: boolean;
|
|
1055
1067
|
param: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "48.0
|
|
3
|
+
"version": "48.2.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",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"atlaskit:src": "src/index.ts",
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
37
|
-
"@atlaskit/react-ufo": "^5.
|
|
37
|
+
"@atlaskit/react-ufo": "^5.6.0",
|
|
38
38
|
"@babel/runtime": "^7.0.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|