@atlaskit/tmp-editor-statsig 17.12.0 → 18.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 +15 -0
- package/dist/cjs/exp-test-overrides.js +0 -1
- package/dist/cjs/experiments-config.js +8 -9
- package/dist/es2019/exp-test-overrides.js +0 -1
- package/dist/es2019/experiments-config.js +8 -9
- package/dist/esm/exp-test-overrides.js +0 -1
- package/dist/esm/experiments-config.js +8 -9
- package/dist/types/experiments-config.d.ts +6 -7
- package/dist/types-ts4.5/experiments-config.d.ts +6 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 18.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`e97bcf6a8bbf4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e97bcf6a8bbf4) -
|
|
8
|
+
[ux] Productionizes the experiment confluence_whiteboards_quick_insert by productionizing the
|
|
9
|
+
DIAGRAM variation of the experiment
|
|
10
|
+
|
|
11
|
+
## 17.13.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`38dee2c85c456`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/38dee2c85c456) -
|
|
16
|
+
[EDITOR-4486] add new experiment to config
|
|
17
|
+
|
|
3
18
|
## 17.12.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -8,7 +8,6 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
8
8
|
'example-multivariate': 'one',
|
|
9
9
|
'platform_editor_ai-prompts-placeholder': 'control',
|
|
10
10
|
platform_editor_controls: 'control',
|
|
11
|
-
confluence_whiteboards_quick_insert: 'control',
|
|
12
11
|
confluence_whiteboards_quick_insert_localised: 'control',
|
|
13
12
|
confluence_whiteboards_quick_insert_localised_aa: 'control',
|
|
14
13
|
cc_editor_ai_content_mode: 'control',
|
|
@@ -538,15 +538,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
538
538
|
param: 'isEnabled',
|
|
539
539
|
defaultValue: false
|
|
540
540
|
}),
|
|
541
|
-
// Added 2025-06-24
|
|
542
|
-
confluence_whiteboards_quick_insert: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
543
|
-
productKeys: {
|
|
544
|
-
confluence: 'confluence_whiteboards_quick_insert'
|
|
545
|
-
},
|
|
546
|
-
param: 'cohort',
|
|
547
|
-
values: ['control', 'test_blank', 'test_diagram'],
|
|
548
|
-
defaultValue: 'control'
|
|
549
|
-
}),
|
|
550
541
|
// Added 2025-06-26
|
|
551
542
|
platform_editor_feedback_mandatory_rating: (0, _experimentBuilders.createBooleanExperiment)({
|
|
552
543
|
productKeys: {
|
|
@@ -1326,5 +1317,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1326
1317
|
},
|
|
1327
1318
|
param: 'isEnabled',
|
|
1328
1319
|
defaultValue: false
|
|
1320
|
+
}),
|
|
1321
|
+
// Added 2026-02-02
|
|
1322
|
+
platform_editor_hide_toolbar_tooltips_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1323
|
+
productKeys: {
|
|
1324
|
+
confluence: 'platform_editor_hide_toolbar_tooltips_fix'
|
|
1325
|
+
},
|
|
1326
|
+
param: 'isEnabled',
|
|
1327
|
+
defaultValue: false
|
|
1329
1328
|
})
|
|
1330
1329
|
};
|
|
@@ -2,7 +2,6 @@ export const testMultivariateOverrides = {
|
|
|
2
2
|
'example-multivariate': 'one',
|
|
3
3
|
'platform_editor_ai-prompts-placeholder': 'control',
|
|
4
4
|
platform_editor_controls: 'control',
|
|
5
|
-
confluence_whiteboards_quick_insert: 'control',
|
|
6
5
|
confluence_whiteboards_quick_insert_localised: 'control',
|
|
7
6
|
confluence_whiteboards_quick_insert_localised_aa: 'control',
|
|
8
7
|
cc_editor_ai_content_mode: 'control',
|
|
@@ -532,15 +532,6 @@ export const editorExperimentsConfig = {
|
|
|
532
532
|
param: 'isEnabled',
|
|
533
533
|
defaultValue: false
|
|
534
534
|
}),
|
|
535
|
-
// Added 2025-06-24
|
|
536
|
-
confluence_whiteboards_quick_insert: createMultivariateExperiment({
|
|
537
|
-
productKeys: {
|
|
538
|
-
confluence: 'confluence_whiteboards_quick_insert'
|
|
539
|
-
},
|
|
540
|
-
param: 'cohort',
|
|
541
|
-
values: ['control', 'test_blank', 'test_diagram'],
|
|
542
|
-
defaultValue: 'control'
|
|
543
|
-
}),
|
|
544
535
|
// Added 2025-06-26
|
|
545
536
|
platform_editor_feedback_mandatory_rating: createBooleanExperiment({
|
|
546
537
|
productKeys: {
|
|
@@ -1320,5 +1311,13 @@ export const editorExperimentsConfig = {
|
|
|
1320
1311
|
},
|
|
1321
1312
|
param: 'isEnabled',
|
|
1322
1313
|
defaultValue: false
|
|
1314
|
+
}),
|
|
1315
|
+
// Added 2026-02-02
|
|
1316
|
+
platform_editor_hide_toolbar_tooltips_fix: createBooleanExperiment({
|
|
1317
|
+
productKeys: {
|
|
1318
|
+
confluence: 'platform_editor_hide_toolbar_tooltips_fix'
|
|
1319
|
+
},
|
|
1320
|
+
param: 'isEnabled',
|
|
1321
|
+
defaultValue: false
|
|
1323
1322
|
})
|
|
1324
1323
|
};
|
|
@@ -2,7 +2,6 @@ export var testMultivariateOverrides = {
|
|
|
2
2
|
'example-multivariate': 'one',
|
|
3
3
|
'platform_editor_ai-prompts-placeholder': 'control',
|
|
4
4
|
platform_editor_controls: 'control',
|
|
5
|
-
confluence_whiteboards_quick_insert: 'control',
|
|
6
5
|
confluence_whiteboards_quick_insert_localised: 'control',
|
|
7
6
|
confluence_whiteboards_quick_insert_localised_aa: 'control',
|
|
8
7
|
cc_editor_ai_content_mode: 'control',
|
|
@@ -532,15 +532,6 @@ export var editorExperimentsConfig = {
|
|
|
532
532
|
param: 'isEnabled',
|
|
533
533
|
defaultValue: false
|
|
534
534
|
}),
|
|
535
|
-
// Added 2025-06-24
|
|
536
|
-
confluence_whiteboards_quick_insert: createMultivariateExperiment({
|
|
537
|
-
productKeys: {
|
|
538
|
-
confluence: 'confluence_whiteboards_quick_insert'
|
|
539
|
-
},
|
|
540
|
-
param: 'cohort',
|
|
541
|
-
values: ['control', 'test_blank', 'test_diagram'],
|
|
542
|
-
defaultValue: 'control'
|
|
543
|
-
}),
|
|
544
535
|
// Added 2025-06-26
|
|
545
536
|
platform_editor_feedback_mandatory_rating: createBooleanExperiment({
|
|
546
537
|
productKeys: {
|
|
@@ -1320,5 +1311,13 @@ export var editorExperimentsConfig = {
|
|
|
1320
1311
|
},
|
|
1321
1312
|
param: 'isEnabled',
|
|
1322
1313
|
defaultValue: false
|
|
1314
|
+
}),
|
|
1315
|
+
// Added 2026-02-02
|
|
1316
|
+
platform_editor_hide_toolbar_tooltips_fix: createBooleanExperiment({
|
|
1317
|
+
productKeys: {
|
|
1318
|
+
confluence: 'platform_editor_hide_toolbar_tooltips_fix'
|
|
1319
|
+
},
|
|
1320
|
+
param: 'isEnabled',
|
|
1321
|
+
defaultValue: false
|
|
1323
1322
|
})
|
|
1324
1323
|
};
|
|
@@ -130,13 +130,6 @@ export declare const editorExperimentsConfig: {
|
|
|
130
130
|
productKeys?: ProductKeys;
|
|
131
131
|
typeGuard: IsBooleanType;
|
|
132
132
|
};
|
|
133
|
-
confluence_whiteboards_quick_insert: {
|
|
134
|
-
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
135
|
-
param: string;
|
|
136
|
-
productKeys?: ProductKeys;
|
|
137
|
-
typeGuard: (value: unknown) => value is 'control' | 'test_blank' | 'test_diagram';
|
|
138
|
-
values: ('control' | 'test_blank' | 'test_diagram')[];
|
|
139
|
-
};
|
|
140
133
|
confluence_whiteboards_quick_insert_localised: {
|
|
141
134
|
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
142
135
|
param: string;
|
|
@@ -982,5 +975,11 @@ export declare const editorExperimentsConfig: {
|
|
|
982
975
|
productKeys?: ProductKeys;
|
|
983
976
|
typeGuard: IsBooleanType;
|
|
984
977
|
};
|
|
978
|
+
platform_editor_hide_toolbar_tooltips_fix: {
|
|
979
|
+
defaultValue: boolean;
|
|
980
|
+
param: string;
|
|
981
|
+
productKeys?: ProductKeys;
|
|
982
|
+
typeGuard: IsBooleanType;
|
|
983
|
+
};
|
|
985
984
|
};
|
|
986
985
|
export {};
|
|
@@ -130,13 +130,6 @@ export declare const editorExperimentsConfig: {
|
|
|
130
130
|
productKeys?: ProductKeys;
|
|
131
131
|
typeGuard: IsBooleanType;
|
|
132
132
|
};
|
|
133
|
-
confluence_whiteboards_quick_insert: {
|
|
134
|
-
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
135
|
-
param: string;
|
|
136
|
-
productKeys?: ProductKeys;
|
|
137
|
-
typeGuard: (value: unknown) => value is 'control' | 'test_blank' | 'test_diagram';
|
|
138
|
-
values: ('control' | 'test_blank' | 'test_diagram')[];
|
|
139
|
-
};
|
|
140
133
|
confluence_whiteboards_quick_insert_localised: {
|
|
141
134
|
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
142
135
|
param: string;
|
|
@@ -982,5 +975,11 @@ export declare const editorExperimentsConfig: {
|
|
|
982
975
|
productKeys?: ProductKeys;
|
|
983
976
|
typeGuard: IsBooleanType;
|
|
984
977
|
};
|
|
978
|
+
platform_editor_hide_toolbar_tooltips_fix: {
|
|
979
|
+
defaultValue: boolean;
|
|
980
|
+
param: string;
|
|
981
|
+
productKeys?: ProductKeys;
|
|
982
|
+
typeGuard: IsBooleanType;
|
|
983
|
+
};
|
|
985
984
|
};
|
|
986
985
|
export {};
|
package/package.json
CHANGED