@atlaskit/tmp-editor-statsig 70.5.0 → 70.6.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
|
+
## 70.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`f3300976cae54`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f3300976cae54) -
|
|
8
|
+
Use markdown plus for FE parser in streaming path instead of the legacy markdown transformer
|
|
9
|
+
|
|
3
10
|
## 70.5.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1984,6 +1984,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1984
1984
|
param: 'isEnabled',
|
|
1985
1985
|
defaultValue: false
|
|
1986
1986
|
}),
|
|
1987
|
+
// Added 2026-04-28
|
|
1988
|
+
platform_editor_use_markdown_plus_parser: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1989
|
+
productKeys: {
|
|
1990
|
+
confluence: 'platform_editor_use_markdown_plus_parser'
|
|
1991
|
+
},
|
|
1992
|
+
param: 'isEnabled',
|
|
1993
|
+
defaultValue: false
|
|
1994
|
+
}),
|
|
1987
1995
|
// Added 2026-04-10
|
|
1988
1996
|
platform_editor_static_css: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1989
1997
|
productKeys: {
|
|
@@ -1978,6 +1978,14 @@ export const editorExperimentsConfig = {
|
|
|
1978
1978
|
param: 'isEnabled',
|
|
1979
1979
|
defaultValue: false
|
|
1980
1980
|
}),
|
|
1981
|
+
// Added 2026-04-28
|
|
1982
|
+
platform_editor_use_markdown_plus_parser: createBooleanExperiment({
|
|
1983
|
+
productKeys: {
|
|
1984
|
+
confluence: 'platform_editor_use_markdown_plus_parser'
|
|
1985
|
+
},
|
|
1986
|
+
param: 'isEnabled',
|
|
1987
|
+
defaultValue: false
|
|
1988
|
+
}),
|
|
1981
1989
|
// Added 2026-04-10
|
|
1982
1990
|
platform_editor_static_css: createBooleanExperiment({
|
|
1983
1991
|
productKeys: {
|
|
@@ -1978,6 +1978,14 @@ export var editorExperimentsConfig = {
|
|
|
1978
1978
|
param: 'isEnabled',
|
|
1979
1979
|
defaultValue: false
|
|
1980
1980
|
}),
|
|
1981
|
+
// Added 2026-04-28
|
|
1982
|
+
platform_editor_use_markdown_plus_parser: createBooleanExperiment({
|
|
1983
|
+
productKeys: {
|
|
1984
|
+
confluence: 'platform_editor_use_markdown_plus_parser'
|
|
1985
|
+
},
|
|
1986
|
+
param: 'isEnabled',
|
|
1987
|
+
defaultValue: false
|
|
1988
|
+
}),
|
|
1981
1989
|
// Added 2026-04-10
|
|
1982
1990
|
platform_editor_static_css: createBooleanExperiment({
|
|
1983
1991
|
productKeys: {
|
|
@@ -1506,5 +1506,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1506
1506
|
productKeys?: ProductKeys;
|
|
1507
1507
|
typeGuard: IsBooleanType;
|
|
1508
1508
|
};
|
|
1509
|
+
platform_editor_use_markdown_plus_parser: {
|
|
1510
|
+
defaultValue: boolean;
|
|
1511
|
+
param: string;
|
|
1512
|
+
productKeys?: ProductKeys;
|
|
1513
|
+
typeGuard: IsBooleanType;
|
|
1514
|
+
};
|
|
1509
1515
|
};
|
|
1510
1516
|
export {};
|
|
@@ -1506,5 +1506,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1506
1506
|
productKeys?: ProductKeys;
|
|
1507
1507
|
typeGuard: IsBooleanType;
|
|
1508
1508
|
};
|
|
1509
|
+
platform_editor_use_markdown_plus_parser: {
|
|
1510
|
+
defaultValue: boolean;
|
|
1511
|
+
param: string;
|
|
1512
|
+
productKeys?: ProductKeys;
|
|
1513
|
+
typeGuard: IsBooleanType;
|
|
1514
|
+
};
|
|
1509
1515
|
};
|
|
1510
1516
|
export {};
|
package/package.json
CHANGED