@atlaskit/tmp-editor-statsig 133.3.1 → 134.0.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 134.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`591b0c312eed9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/591b0c312eed9) -
|
|
8
|
+
Clean up experiment `platform_editor_stricter_panelcolor_typecheck` and make stricter panel color
|
|
9
|
+
validation permanent.
|
|
10
|
+
|
|
3
11
|
## 133.3.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -1825,14 +1825,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1825
1825
|
defaultValue: false
|
|
1826
1826
|
}),
|
|
1827
1827
|
// Added 2026-03-15
|
|
1828
|
-
platform_editor_stricter_panelcolor_typecheck: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1829
|
-
productKeys: {
|
|
1830
|
-
confluence: 'platform_editor_stricter_panelcolor_typecheck'
|
|
1831
|
-
},
|
|
1832
|
-
param: 'isEnabled',
|
|
1833
|
-
defaultValue: false
|
|
1834
|
-
}),
|
|
1835
|
-
// Added 2026-03-15
|
|
1836
1828
|
platform_editor_sync_block_ssr_config: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1837
1829
|
productKeys: {
|
|
1838
1830
|
confluence: 'platform_editor_sync_block_ssr_config'
|
|
@@ -1819,14 +1819,6 @@ export const editorExperimentsConfig = {
|
|
|
1819
1819
|
defaultValue: false
|
|
1820
1820
|
}),
|
|
1821
1821
|
// Added 2026-03-15
|
|
1822
|
-
platform_editor_stricter_panelcolor_typecheck: createBooleanExperiment({
|
|
1823
|
-
productKeys: {
|
|
1824
|
-
confluence: 'platform_editor_stricter_panelcolor_typecheck'
|
|
1825
|
-
},
|
|
1826
|
-
param: 'isEnabled',
|
|
1827
|
-
defaultValue: false
|
|
1828
|
-
}),
|
|
1829
|
-
// Added 2026-03-15
|
|
1830
1822
|
platform_editor_sync_block_ssr_config: createBooleanExperiment({
|
|
1831
1823
|
productKeys: {
|
|
1832
1824
|
confluence: 'platform_editor_sync_block_ssr_config'
|
|
@@ -1819,14 +1819,6 @@ export var editorExperimentsConfig = {
|
|
|
1819
1819
|
defaultValue: false
|
|
1820
1820
|
}),
|
|
1821
1821
|
// Added 2026-03-15
|
|
1822
|
-
platform_editor_stricter_panelcolor_typecheck: createBooleanExperiment({
|
|
1823
|
-
productKeys: {
|
|
1824
|
-
confluence: 'platform_editor_stricter_panelcolor_typecheck'
|
|
1825
|
-
},
|
|
1826
|
-
param: 'isEnabled',
|
|
1827
|
-
defaultValue: false
|
|
1828
|
-
}),
|
|
1829
|
-
// Added 2026-03-15
|
|
1830
1822
|
platform_editor_sync_block_ssr_config: createBooleanExperiment({
|
|
1831
1823
|
productKeys: {
|
|
1832
1824
|
confluence: 'platform_editor_sync_block_ssr_config'
|
|
@@ -1401,12 +1401,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1401
1401
|
productKeys?: ProductKeys;
|
|
1402
1402
|
typeGuard: IsBooleanType;
|
|
1403
1403
|
};
|
|
1404
|
-
platform_editor_stricter_panelcolor_typecheck: {
|
|
1405
|
-
defaultValue: boolean;
|
|
1406
|
-
param: string;
|
|
1407
|
-
productKeys?: ProductKeys;
|
|
1408
|
-
typeGuard: IsBooleanType;
|
|
1409
|
-
};
|
|
1410
1404
|
platform_editor_sync_block_ssr_config: {
|
|
1411
1405
|
defaultValue: boolean;
|
|
1412
1406
|
param: string;
|
package/package.json
CHANGED