@atlaskit/tmp-editor-statsig 130.1.0 → 130.2.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
|
+
## 130.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`c5b1fc41ef2a8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c5b1fc41ef2a8) -
|
|
8
|
+
Fix keyboard resizing for full-width breakout nodes
|
|
9
|
+
|
|
3
10
|
## 130.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -2419,6 +2419,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2419
2419
|
param: 'isEnabled',
|
|
2420
2420
|
defaultValue: false
|
|
2421
2421
|
}),
|
|
2422
|
+
// Added 2026-07-20
|
|
2423
|
+
platform_editor_lovability_breakout_resizing_fixes: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2424
|
+
productKeys: {
|
|
2425
|
+
confluence: 'platform_editor_lovability_breakout_resizing_fixes'
|
|
2426
|
+
},
|
|
2427
|
+
param: 'isEnabled',
|
|
2428
|
+
defaultValue: false
|
|
2429
|
+
}),
|
|
2422
2430
|
// Added 2026-06-19
|
|
2423
2431
|
platform_editor_lovability_resize_dividers_panels: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2424
2432
|
productKeys: {
|
|
@@ -2413,6 +2413,14 @@ export const editorExperimentsConfig = {
|
|
|
2413
2413
|
param: 'isEnabled',
|
|
2414
2414
|
defaultValue: false
|
|
2415
2415
|
}),
|
|
2416
|
+
// Added 2026-07-20
|
|
2417
|
+
platform_editor_lovability_breakout_resizing_fixes: createBooleanExperiment({
|
|
2418
|
+
productKeys: {
|
|
2419
|
+
confluence: 'platform_editor_lovability_breakout_resizing_fixes'
|
|
2420
|
+
},
|
|
2421
|
+
param: 'isEnabled',
|
|
2422
|
+
defaultValue: false
|
|
2423
|
+
}),
|
|
2416
2424
|
// Added 2026-06-19
|
|
2417
2425
|
platform_editor_lovability_resize_dividers_panels: createBooleanExperiment({
|
|
2418
2426
|
productKeys: {
|
|
@@ -2413,6 +2413,14 @@ export var editorExperimentsConfig = {
|
|
|
2413
2413
|
param: 'isEnabled',
|
|
2414
2414
|
defaultValue: false
|
|
2415
2415
|
}),
|
|
2416
|
+
// Added 2026-07-20
|
|
2417
|
+
platform_editor_lovability_breakout_resizing_fixes: createBooleanExperiment({
|
|
2418
|
+
productKeys: {
|
|
2419
|
+
confluence: 'platform_editor_lovability_breakout_resizing_fixes'
|
|
2420
|
+
},
|
|
2421
|
+
param: 'isEnabled',
|
|
2422
|
+
defaultValue: false
|
|
2423
|
+
}),
|
|
2416
2424
|
// Added 2026-06-19
|
|
2417
2425
|
platform_editor_lovability_resize_dividers_panels: createBooleanExperiment({
|
|
2418
2426
|
productKeys: {
|
|
@@ -1763,6 +1763,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1763
1763
|
productKeys?: ProductKeys;
|
|
1764
1764
|
typeGuard: IsBooleanType;
|
|
1765
1765
|
};
|
|
1766
|
+
platform_editor_lovability_breakout_resizing_fixes: {
|
|
1767
|
+
defaultValue: boolean;
|
|
1768
|
+
param: string;
|
|
1769
|
+
productKeys?: ProductKeys;
|
|
1770
|
+
typeGuard: IsBooleanType;
|
|
1771
|
+
};
|
|
1766
1772
|
platform_editor_lovability_resize_dividers_panels: {
|
|
1767
1773
|
defaultValue: boolean;
|
|
1768
1774
|
param: string;
|
package/package.json
CHANGED