@atlaskit/tmp-editor-statsig 80.2.0 → 80.3.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
|
+
## 80.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`82ba5b494e83b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/82ba5b494e83b) -
|
|
8
|
+
add experiment for compiled css migration of editor-core except EditorContentContainer
|
|
9
|
+
|
|
3
10
|
## 80.2.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -2037,6 +2037,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2037
2037
|
param: 'isEnabled',
|
|
2038
2038
|
defaultValue: false
|
|
2039
2039
|
}),
|
|
2040
|
+
// Added 2026-05-15
|
|
2041
|
+
platform_editor_core_non_ecc_static_css: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2042
|
+
productKeys: {
|
|
2043
|
+
confluence: 'platform_editor_core_non_ecc_static_css'
|
|
2044
|
+
},
|
|
2045
|
+
param: 'isEnabled',
|
|
2046
|
+
defaultValue: false
|
|
2047
|
+
}),
|
|
2040
2048
|
// Added 2026-04-30
|
|
2041
2049
|
platform_editor_renderer_static_css: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2042
2050
|
productKeys: {
|
|
@@ -2031,6 +2031,14 @@ export const editorExperimentsConfig = {
|
|
|
2031
2031
|
param: 'isEnabled',
|
|
2032
2032
|
defaultValue: false
|
|
2033
2033
|
}),
|
|
2034
|
+
// Added 2026-05-15
|
|
2035
|
+
platform_editor_core_non_ecc_static_css: createBooleanExperiment({
|
|
2036
|
+
productKeys: {
|
|
2037
|
+
confluence: 'platform_editor_core_non_ecc_static_css'
|
|
2038
|
+
},
|
|
2039
|
+
param: 'isEnabled',
|
|
2040
|
+
defaultValue: false
|
|
2041
|
+
}),
|
|
2034
2042
|
// Added 2026-04-30
|
|
2035
2043
|
platform_editor_renderer_static_css: createBooleanExperiment({
|
|
2036
2044
|
productKeys: {
|
|
@@ -2031,6 +2031,14 @@ export var editorExperimentsConfig = {
|
|
|
2031
2031
|
param: 'isEnabled',
|
|
2032
2032
|
defaultValue: false
|
|
2033
2033
|
}),
|
|
2034
|
+
// Added 2026-05-15
|
|
2035
|
+
platform_editor_core_non_ecc_static_css: createBooleanExperiment({
|
|
2036
|
+
productKeys: {
|
|
2037
|
+
confluence: 'platform_editor_core_non_ecc_static_css'
|
|
2038
|
+
},
|
|
2039
|
+
param: 'isEnabled',
|
|
2040
|
+
defaultValue: false
|
|
2041
|
+
}),
|
|
2034
2042
|
// Added 2026-04-30
|
|
2035
2043
|
platform_editor_renderer_static_css: createBooleanExperiment({
|
|
2036
2044
|
productKeys: {
|
|
@@ -1465,6 +1465,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1465
1465
|
productKeys?: ProductKeys;
|
|
1466
1466
|
typeGuard: IsBooleanType;
|
|
1467
1467
|
};
|
|
1468
|
+
platform_editor_core_non_ecc_static_css: {
|
|
1469
|
+
defaultValue: boolean;
|
|
1470
|
+
param: string;
|
|
1471
|
+
productKeys?: ProductKeys;
|
|
1472
|
+
typeGuard: IsBooleanType;
|
|
1473
|
+
};
|
|
1468
1474
|
platform_editor_renderer_static_css: {
|
|
1469
1475
|
defaultValue: boolean;
|
|
1470
1476
|
param: string;
|
|
@@ -1465,6 +1465,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1465
1465
|
productKeys?: ProductKeys;
|
|
1466
1466
|
typeGuard: IsBooleanType;
|
|
1467
1467
|
};
|
|
1468
|
+
platform_editor_core_non_ecc_static_css: {
|
|
1469
|
+
defaultValue: boolean;
|
|
1470
|
+
param: string;
|
|
1471
|
+
productKeys?: ProductKeys;
|
|
1472
|
+
typeGuard: IsBooleanType;
|
|
1473
|
+
};
|
|
1468
1474
|
platform_editor_renderer_static_css: {
|
|
1469
1475
|
defaultValue: boolean;
|
|
1470
1476
|
param: string;
|
package/package.json
CHANGED