@atlaskit/tmp-editor-statsig 56.0.0 → 56.1.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
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 56.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`cfc9d74ff4070`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cfc9d74ff4070) -
|
|
8
|
+
Add experiment to changes for adding suggest reply markdown
|
|
9
|
+
|
|
3
10
|
## 56.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -1977,5 +1977,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1977
1977
|
},
|
|
1978
1978
|
param: 'isEnabled',
|
|
1979
1979
|
defaultValue: false
|
|
1980
|
+
}),
|
|
1981
|
+
// Added 2026-04-01
|
|
1982
|
+
show_mentions_in_suggest_reply: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1983
|
+
productKeys: {
|
|
1984
|
+
jira: 'show_mentions_in_suggest_reply'
|
|
1985
|
+
},
|
|
1986
|
+
param: 'isEnabled',
|
|
1987
|
+
defaultValue: false
|
|
1980
1988
|
})
|
|
1981
1989
|
};
|
|
@@ -1971,5 +1971,13 @@ export const editorExperimentsConfig = {
|
|
|
1971
1971
|
},
|
|
1972
1972
|
param: 'isEnabled',
|
|
1973
1973
|
defaultValue: false
|
|
1974
|
+
}),
|
|
1975
|
+
// Added 2026-04-01
|
|
1976
|
+
show_mentions_in_suggest_reply: createBooleanExperiment({
|
|
1977
|
+
productKeys: {
|
|
1978
|
+
jira: 'show_mentions_in_suggest_reply'
|
|
1979
|
+
},
|
|
1980
|
+
param: 'isEnabled',
|
|
1981
|
+
defaultValue: false
|
|
1974
1982
|
})
|
|
1975
1983
|
};
|
|
@@ -1971,5 +1971,13 @@ export var editorExperimentsConfig = {
|
|
|
1971
1971
|
},
|
|
1972
1972
|
param: 'isEnabled',
|
|
1973
1973
|
defaultValue: false
|
|
1974
|
+
}),
|
|
1975
|
+
// Added 2026-04-01
|
|
1976
|
+
show_mentions_in_suggest_reply: createBooleanExperiment({
|
|
1977
|
+
productKeys: {
|
|
1978
|
+
jira: 'show_mentions_in_suggest_reply'
|
|
1979
|
+
},
|
|
1980
|
+
param: 'isEnabled',
|
|
1981
|
+
defaultValue: false
|
|
1974
1982
|
})
|
|
1975
1983
|
};
|
|
@@ -1453,5 +1453,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1453
1453
|
productKeys?: ProductKeys;
|
|
1454
1454
|
typeGuard: IsBooleanType;
|
|
1455
1455
|
};
|
|
1456
|
+
show_mentions_in_suggest_reply: {
|
|
1457
|
+
defaultValue: boolean;
|
|
1458
|
+
param: string;
|
|
1459
|
+
productKeys?: ProductKeys;
|
|
1460
|
+
typeGuard: IsBooleanType;
|
|
1461
|
+
};
|
|
1456
1462
|
};
|
|
1457
1463
|
export {};
|
|
@@ -1453,5 +1453,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1453
1453
|
productKeys?: ProductKeys;
|
|
1454
1454
|
typeGuard: IsBooleanType;
|
|
1455
1455
|
};
|
|
1456
|
+
show_mentions_in_suggest_reply: {
|
|
1457
|
+
defaultValue: boolean;
|
|
1458
|
+
param: string;
|
|
1459
|
+
productKeys?: ProductKeys;
|
|
1460
|
+
typeGuard: IsBooleanType;
|
|
1461
|
+
};
|
|
1456
1462
|
};
|
|
1457
1463
|
export {};
|
package/package.json
CHANGED