@atlaskit/tmp-editor-statsig 75.0.0 → 75.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
|
+
## 75.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`6d1f823ad030b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6d1f823ad030b) -
|
|
8
|
+
Introduce HTML+ to ADF conversion in HtmlChunkStrategy
|
|
9
|
+
|
|
3
10
|
## 75.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -2004,6 +2004,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2004
2004
|
param: 'isEnabled',
|
|
2005
2005
|
defaultValue: false
|
|
2006
2006
|
}),
|
|
2007
|
+
// Added 2026-04-30
|
|
2008
|
+
platform_editor_use_html_plus_parser: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2009
|
+
productKeys: {
|
|
2010
|
+
confluence: 'platform_editor_use_html_plus_parser'
|
|
2011
|
+
},
|
|
2012
|
+
param: 'isEnabled',
|
|
2013
|
+
defaultValue: false
|
|
2014
|
+
}),
|
|
2007
2015
|
// Added 2026-04-10
|
|
2008
2016
|
platform_editor_static_css: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2009
2017
|
productKeys: {
|
|
@@ -1998,6 +1998,14 @@ export const editorExperimentsConfig = {
|
|
|
1998
1998
|
param: 'isEnabled',
|
|
1999
1999
|
defaultValue: false
|
|
2000
2000
|
}),
|
|
2001
|
+
// Added 2026-04-30
|
|
2002
|
+
platform_editor_use_html_plus_parser: createBooleanExperiment({
|
|
2003
|
+
productKeys: {
|
|
2004
|
+
confluence: 'platform_editor_use_html_plus_parser'
|
|
2005
|
+
},
|
|
2006
|
+
param: 'isEnabled',
|
|
2007
|
+
defaultValue: false
|
|
2008
|
+
}),
|
|
2001
2009
|
// Added 2026-04-10
|
|
2002
2010
|
platform_editor_static_css: createBooleanExperiment({
|
|
2003
2011
|
productKeys: {
|
|
@@ -1998,6 +1998,14 @@ export var editorExperimentsConfig = {
|
|
|
1998
1998
|
param: 'isEnabled',
|
|
1999
1999
|
defaultValue: false
|
|
2000
2000
|
}),
|
|
2001
|
+
// Added 2026-04-30
|
|
2002
|
+
platform_editor_use_html_plus_parser: createBooleanExperiment({
|
|
2003
|
+
productKeys: {
|
|
2004
|
+
confluence: 'platform_editor_use_html_plus_parser'
|
|
2005
|
+
},
|
|
2006
|
+
param: 'isEnabled',
|
|
2007
|
+
defaultValue: false
|
|
2008
|
+
}),
|
|
2001
2009
|
// Added 2026-04-10
|
|
2002
2010
|
platform_editor_static_css: createBooleanExperiment({
|
|
2003
2011
|
productKeys: {
|
|
@@ -1537,6 +1537,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1537
1537
|
productKeys?: ProductKeys;
|
|
1538
1538
|
typeGuard: IsBooleanType;
|
|
1539
1539
|
};
|
|
1540
|
+
platform_editor_use_html_plus_parser: {
|
|
1541
|
+
defaultValue: boolean;
|
|
1542
|
+
param: string;
|
|
1543
|
+
productKeys?: ProductKeys;
|
|
1544
|
+
typeGuard: IsBooleanType;
|
|
1545
|
+
};
|
|
1540
1546
|
platform_editor_korean_characters_split: {
|
|
1541
1547
|
defaultValue: boolean;
|
|
1542
1548
|
param: string;
|
|
@@ -1537,6 +1537,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1537
1537
|
productKeys?: ProductKeys;
|
|
1538
1538
|
typeGuard: IsBooleanType;
|
|
1539
1539
|
};
|
|
1540
|
+
platform_editor_use_html_plus_parser: {
|
|
1541
|
+
defaultValue: boolean;
|
|
1542
|
+
param: string;
|
|
1543
|
+
productKeys?: ProductKeys;
|
|
1544
|
+
typeGuard: IsBooleanType;
|
|
1545
|
+
};
|
|
1540
1546
|
platform_editor_korean_characters_split: {
|
|
1541
1547
|
defaultValue: boolean;
|
|
1542
1548
|
param: string;
|
package/package.json
CHANGED