@atlaskit/tmp-editor-statsig 82.3.0 → 82.4.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
|
+
## 82.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`41962dd9dccb2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/41962dd9dccb2) -
|
|
8
|
+
NO-ISSUE: adds a default toolbar state so we can render the toolbar on initial load without
|
|
9
|
+
relying on editor state
|
|
10
|
+
|
|
3
11
|
## 82.3.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -2225,6 +2225,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2225
2225
|
param: 'isEnabled',
|
|
2226
2226
|
defaultValue: false
|
|
2227
2227
|
}),
|
|
2228
|
+
// Added 2026-05-20
|
|
2229
|
+
platform_editor_default_toolbar_state: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2230
|
+
productKeys: {
|
|
2231
|
+
confluence: 'platform_editor_default_toolbar_state'
|
|
2232
|
+
},
|
|
2233
|
+
param: 'isEnabled',
|
|
2234
|
+
defaultValue: false
|
|
2235
|
+
}),
|
|
2228
2236
|
// Added 2026-05-15
|
|
2229
2237
|
platform_editor_fix_sticky_header_malfunction: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2230
2238
|
productKeys: {
|
|
@@ -2219,6 +2219,14 @@ export const editorExperimentsConfig = {
|
|
|
2219
2219
|
param: 'isEnabled',
|
|
2220
2220
|
defaultValue: false
|
|
2221
2221
|
}),
|
|
2222
|
+
// Added 2026-05-20
|
|
2223
|
+
platform_editor_default_toolbar_state: createBooleanExperiment({
|
|
2224
|
+
productKeys: {
|
|
2225
|
+
confluence: 'platform_editor_default_toolbar_state'
|
|
2226
|
+
},
|
|
2227
|
+
param: 'isEnabled',
|
|
2228
|
+
defaultValue: false
|
|
2229
|
+
}),
|
|
2222
2230
|
// Added 2026-05-15
|
|
2223
2231
|
platform_editor_fix_sticky_header_malfunction: createBooleanExperiment({
|
|
2224
2232
|
productKeys: {
|
|
@@ -2219,6 +2219,14 @@ export var editorExperimentsConfig = {
|
|
|
2219
2219
|
param: 'isEnabled',
|
|
2220
2220
|
defaultValue: false
|
|
2221
2221
|
}),
|
|
2222
|
+
// Added 2026-05-20
|
|
2223
|
+
platform_editor_default_toolbar_state: createBooleanExperiment({
|
|
2224
|
+
productKeys: {
|
|
2225
|
+
confluence: 'platform_editor_default_toolbar_state'
|
|
2226
|
+
},
|
|
2227
|
+
param: 'isEnabled',
|
|
2228
|
+
defaultValue: false
|
|
2229
|
+
}),
|
|
2222
2230
|
// Added 2026-05-15
|
|
2223
2231
|
platform_editor_fix_sticky_header_malfunction: createBooleanExperiment({
|
|
2224
2232
|
productKeys: {
|
|
@@ -1634,6 +1634,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1634
1634
|
productKeys?: ProductKeys;
|
|
1635
1635
|
typeGuard: IsBooleanType;
|
|
1636
1636
|
};
|
|
1637
|
+
platform_editor_default_toolbar_state: {
|
|
1638
|
+
defaultValue: boolean;
|
|
1639
|
+
param: string;
|
|
1640
|
+
productKeys?: ProductKeys;
|
|
1641
|
+
typeGuard: IsBooleanType;
|
|
1642
|
+
};
|
|
1637
1643
|
platform_editor_nest_table_in_panel: {
|
|
1638
1644
|
defaultValue: boolean;
|
|
1639
1645
|
param: string;
|
|
@@ -1634,6 +1634,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1634
1634
|
productKeys?: ProductKeys;
|
|
1635
1635
|
typeGuard: IsBooleanType;
|
|
1636
1636
|
};
|
|
1637
|
+
platform_editor_default_toolbar_state: {
|
|
1638
|
+
defaultValue: boolean;
|
|
1639
|
+
param: string;
|
|
1640
|
+
productKeys?: ProductKeys;
|
|
1641
|
+
typeGuard: IsBooleanType;
|
|
1642
|
+
};
|
|
1637
1643
|
platform_editor_nest_table_in_panel: {
|
|
1638
1644
|
defaultValue: boolean;
|
|
1639
1645
|
param: string;
|
package/package.json
CHANGED