@atlaskit/tmp-editor-statsig 13.19.2 → 13.21.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 +19 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +17 -0
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +17 -0
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +17 -0
- package/dist/types/experiments-config.d.ts +13 -0
- package/dist/types-ts4.5/experiments-config.d.ts +13 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 13.21.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`28ba94dae8f9a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/28ba94dae8f9a) -
|
|
8
|
+
[ux] EDITOR-2458 Replace usage of \_\_suppressAllToolbars with userIntentPlugin
|
|
9
|
+
|
|
10
|
+
## 13.20.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`755d06b52ebe4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/755d06b52ebe4) -
|
|
15
|
+
Add table sticky header experiment
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [`b687f93157a72`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b687f93157a72) -
|
|
20
|
+
Typescript fixes
|
|
21
|
+
|
|
3
22
|
## 13.19.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -25,7 +25,8 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
25
25
|
confluence_content_mode_replace_dense_with_compact: 'control',
|
|
26
26
|
cc_editor_insm_outlier_events: 'test',
|
|
27
27
|
platform_editor_disable_table_overflow_shadows: 'control',
|
|
28
|
-
platform_editor_hoverlink_ui_fixes_exp: 'control'
|
|
28
|
+
platform_editor_hoverlink_ui_fixes_exp: 'control',
|
|
29
|
+
platform_editor_table_sticky_header_improvements: 'control'
|
|
29
30
|
};
|
|
30
31
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
31
32
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -989,6 +989,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
989
989
|
param: 'isEnabled',
|
|
990
990
|
defaultValue: false
|
|
991
991
|
}),
|
|
992
|
+
// Added 2025-10-24
|
|
993
|
+
platform_editor_lovability_user_intent: (0, _experimentBuilders.createBooleanExperiment)({
|
|
994
|
+
productKeys: {
|
|
995
|
+
confluence: 'platform_editor_lovability_user_intent'
|
|
996
|
+
},
|
|
997
|
+
param: 'isEnabled',
|
|
998
|
+
defaultValue: false
|
|
999
|
+
}),
|
|
992
1000
|
// Added 2025-09-17
|
|
993
1001
|
cc_complexit_fe_emoji_stability: (0, _experimentBuilders.createBooleanExperiment)({
|
|
994
1002
|
productKeys: {
|
|
@@ -1098,5 +1106,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1098
1106
|
},
|
|
1099
1107
|
param: 'isEnabled',
|
|
1100
1108
|
defaultValue: false
|
|
1109
|
+
}),
|
|
1110
|
+
// Added 2025-10-27
|
|
1111
|
+
platform_editor_table_sticky_header_improvements: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
1112
|
+
productKeys: {
|
|
1113
|
+
confluence: 'platform_editor_table_sticky_header_improvements'
|
|
1114
|
+
},
|
|
1115
|
+
param: 'cohort',
|
|
1116
|
+
values: ['control', 'test_with_overflow', 'test_without_overflow'],
|
|
1117
|
+
defaultValue: 'control'
|
|
1101
1118
|
})
|
|
1102
1119
|
};
|
|
@@ -19,7 +19,8 @@ export const testMultivariateOverrides = {
|
|
|
19
19
|
confluence_content_mode_replace_dense_with_compact: 'control',
|
|
20
20
|
cc_editor_insm_outlier_events: 'test',
|
|
21
21
|
platform_editor_disable_table_overflow_shadows: 'control',
|
|
22
|
-
platform_editor_hoverlink_ui_fixes_exp: 'control'
|
|
22
|
+
platform_editor_hoverlink_ui_fixes_exp: 'control',
|
|
23
|
+
platform_editor_table_sticky_header_improvements: 'control'
|
|
23
24
|
};
|
|
24
25
|
export const testBooleanOverrides = {
|
|
25
26
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -983,6 +983,14 @@ export const editorExperimentsConfig = {
|
|
|
983
983
|
param: 'isEnabled',
|
|
984
984
|
defaultValue: false
|
|
985
985
|
}),
|
|
986
|
+
// Added 2025-10-24
|
|
987
|
+
platform_editor_lovability_user_intent: createBooleanExperiment({
|
|
988
|
+
productKeys: {
|
|
989
|
+
confluence: 'platform_editor_lovability_user_intent'
|
|
990
|
+
},
|
|
991
|
+
param: 'isEnabled',
|
|
992
|
+
defaultValue: false
|
|
993
|
+
}),
|
|
986
994
|
// Added 2025-09-17
|
|
987
995
|
cc_complexit_fe_emoji_stability: createBooleanExperiment({
|
|
988
996
|
productKeys: {
|
|
@@ -1092,5 +1100,14 @@ export const editorExperimentsConfig = {
|
|
|
1092
1100
|
},
|
|
1093
1101
|
param: 'isEnabled',
|
|
1094
1102
|
defaultValue: false
|
|
1103
|
+
}),
|
|
1104
|
+
// Added 2025-10-27
|
|
1105
|
+
platform_editor_table_sticky_header_improvements: createMultivariateExperiment({
|
|
1106
|
+
productKeys: {
|
|
1107
|
+
confluence: 'platform_editor_table_sticky_header_improvements'
|
|
1108
|
+
},
|
|
1109
|
+
param: 'cohort',
|
|
1110
|
+
values: ['control', 'test_with_overflow', 'test_without_overflow'],
|
|
1111
|
+
defaultValue: 'control'
|
|
1095
1112
|
})
|
|
1096
1113
|
};
|
|
@@ -19,7 +19,8 @@ export var testMultivariateOverrides = {
|
|
|
19
19
|
confluence_content_mode_replace_dense_with_compact: 'control',
|
|
20
20
|
cc_editor_insm_outlier_events: 'test',
|
|
21
21
|
platform_editor_disable_table_overflow_shadows: 'control',
|
|
22
|
-
platform_editor_hoverlink_ui_fixes_exp: 'control'
|
|
22
|
+
platform_editor_hoverlink_ui_fixes_exp: 'control',
|
|
23
|
+
platform_editor_table_sticky_header_improvements: 'control'
|
|
23
24
|
};
|
|
24
25
|
export var testBooleanOverrides = {
|
|
25
26
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -983,6 +983,14 @@ export var editorExperimentsConfig = {
|
|
|
983
983
|
param: 'isEnabled',
|
|
984
984
|
defaultValue: false
|
|
985
985
|
}),
|
|
986
|
+
// Added 2025-10-24
|
|
987
|
+
platform_editor_lovability_user_intent: createBooleanExperiment({
|
|
988
|
+
productKeys: {
|
|
989
|
+
confluence: 'platform_editor_lovability_user_intent'
|
|
990
|
+
},
|
|
991
|
+
param: 'isEnabled',
|
|
992
|
+
defaultValue: false
|
|
993
|
+
}),
|
|
986
994
|
// Added 2025-09-17
|
|
987
995
|
cc_complexit_fe_emoji_stability: createBooleanExperiment({
|
|
988
996
|
productKeys: {
|
|
@@ -1092,5 +1100,14 @@ export var editorExperimentsConfig = {
|
|
|
1092
1100
|
},
|
|
1093
1101
|
param: 'isEnabled',
|
|
1094
1102
|
defaultValue: false
|
|
1103
|
+
}),
|
|
1104
|
+
// Added 2025-10-27
|
|
1105
|
+
platform_editor_table_sticky_header_improvements: createMultivariateExperiment({
|
|
1106
|
+
productKeys: {
|
|
1107
|
+
confluence: 'platform_editor_table_sticky_header_improvements'
|
|
1108
|
+
},
|
|
1109
|
+
param: 'cohort',
|
|
1110
|
+
values: ['control', 'test_with_overflow', 'test_without_overflow'],
|
|
1111
|
+
defaultValue: 'control'
|
|
1095
1112
|
})
|
|
1096
1113
|
};
|
|
@@ -724,6 +724,12 @@ export declare const editorExperimentsConfig: {
|
|
|
724
724
|
param: string;
|
|
725
725
|
productKeys?: import("./types").ProductKeys;
|
|
726
726
|
};
|
|
727
|
+
platform_editor_lovability_user_intent: {
|
|
728
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
729
|
+
defaultValue: boolean;
|
|
730
|
+
param: string;
|
|
731
|
+
productKeys?: import("./types").ProductKeys;
|
|
732
|
+
};
|
|
727
733
|
cc_complexit_fe_emoji_stability: {
|
|
728
734
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
729
735
|
defaultValue: boolean;
|
|
@@ -806,4 +812,11 @@ export declare const editorExperimentsConfig: {
|
|
|
806
812
|
param: string;
|
|
807
813
|
productKeys?: import("./types").ProductKeys;
|
|
808
814
|
};
|
|
815
|
+
platform_editor_table_sticky_header_improvements: {
|
|
816
|
+
values: ("control" | "test_with_overflow" | "test_without_overflow")[];
|
|
817
|
+
typeGuard: (value: unknown) => value is "control" | "test_with_overflow" | "test_without_overflow";
|
|
818
|
+
defaultValue: "control" | "test_with_overflow" | "test_without_overflow";
|
|
819
|
+
param: string;
|
|
820
|
+
productKeys?: import("./types").ProductKeys;
|
|
821
|
+
};
|
|
809
822
|
};
|
|
@@ -724,6 +724,12 @@ export declare const editorExperimentsConfig: {
|
|
|
724
724
|
param: string;
|
|
725
725
|
productKeys?: import("./types").ProductKeys;
|
|
726
726
|
};
|
|
727
|
+
platform_editor_lovability_user_intent: {
|
|
728
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
729
|
+
defaultValue: boolean;
|
|
730
|
+
param: string;
|
|
731
|
+
productKeys?: import("./types").ProductKeys;
|
|
732
|
+
};
|
|
727
733
|
cc_complexit_fe_emoji_stability: {
|
|
728
734
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
729
735
|
defaultValue: boolean;
|
|
@@ -806,4 +812,11 @@ export declare const editorExperimentsConfig: {
|
|
|
806
812
|
param: string;
|
|
807
813
|
productKeys?: import("./types").ProductKeys;
|
|
808
814
|
};
|
|
815
|
+
platform_editor_table_sticky_header_improvements: {
|
|
816
|
+
values: ("control" | "test_with_overflow" | "test_without_overflow")[];
|
|
817
|
+
typeGuard: (value: unknown) => value is "control" | "test_with_overflow" | "test_without_overflow";
|
|
818
|
+
defaultValue: "control" | "test_with_overflow" | "test_without_overflow";
|
|
819
|
+
param: string;
|
|
820
|
+
productKeys?: import("./types").ProductKeys;
|
|
821
|
+
};
|
|
809
822
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.21.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": "^4.
|
|
37
|
+
"@atlaskit/react-ufo": "^4.13.0",
|
|
38
38
|
"@babel/runtime": "^7.0.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|