@atlaskit/tmp-editor-statsig 74.3.0 → 74.5.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 +16 -0
- package/dist/cjs/experiments-config.js +16 -0
- package/dist/es2019/experiments-config.js +16 -0
- package/dist/esm/experiments-config.js +16 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/dist/types-ts4.5/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 74.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`d5eb28ba8a0f8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d5eb28ba8a0f8) -
|
|
8
|
+
EDITOR-6724: Fix object assignment issue in attrs comparison util to avoid attrs being dropped in
|
|
9
|
+
ProseMirror when they're being compared.
|
|
10
|
+
|
|
11
|
+
## 74.4.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`3d7541ec5f1e8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3d7541ec5f1e8) -
|
|
16
|
+
[ux] [EDITOR-5936] centralise AI screen alignment and fix error screen width and centering in
|
|
17
|
+
FloatingContainer behind platform_editor_ai_screen_layout_refactor
|
|
18
|
+
|
|
3
19
|
## 74.3.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -2023,6 +2023,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2023
2023
|
param: 'isEnabled',
|
|
2024
2024
|
defaultValue: false
|
|
2025
2025
|
}),
|
|
2026
|
+
// Added 2026-04-22
|
|
2027
|
+
platform_editor_ai_screen_layout_refactor: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2028
|
+
productKeys: {
|
|
2029
|
+
confluence: 'platform_editor_ai_screen_layout_refactor'
|
|
2030
|
+
},
|
|
2031
|
+
param: 'isEnabled',
|
|
2032
|
+
defaultValue: false
|
|
2033
|
+
}),
|
|
2026
2034
|
// Added 2026-04-23
|
|
2027
2035
|
platform_editor_emojis_in_renderer_smart_links: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2028
2036
|
productKeys: {
|
|
@@ -2071,5 +2079,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2071
2079
|
},
|
|
2072
2080
|
param: 'isEnabled',
|
|
2073
2081
|
defaultValue: false
|
|
2082
|
+
}),
|
|
2083
|
+
// Added 2026-05-04
|
|
2084
|
+
platform_editor_show_diff_fix_missing_attrs: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2085
|
+
productKeys: {
|
|
2086
|
+
confluence: 'platform_editor_show_diff_fix_missing_attrs'
|
|
2087
|
+
},
|
|
2088
|
+
param: 'isEnabled',
|
|
2089
|
+
defaultValue: false
|
|
2074
2090
|
})
|
|
2075
2091
|
};
|
|
@@ -2017,6 +2017,14 @@ export const editorExperimentsConfig = {
|
|
|
2017
2017
|
param: 'isEnabled',
|
|
2018
2018
|
defaultValue: false
|
|
2019
2019
|
}),
|
|
2020
|
+
// Added 2026-04-22
|
|
2021
|
+
platform_editor_ai_screen_layout_refactor: createBooleanExperiment({
|
|
2022
|
+
productKeys: {
|
|
2023
|
+
confluence: 'platform_editor_ai_screen_layout_refactor'
|
|
2024
|
+
},
|
|
2025
|
+
param: 'isEnabled',
|
|
2026
|
+
defaultValue: false
|
|
2027
|
+
}),
|
|
2020
2028
|
// Added 2026-04-23
|
|
2021
2029
|
platform_editor_emojis_in_renderer_smart_links: createBooleanExperiment({
|
|
2022
2030
|
productKeys: {
|
|
@@ -2065,5 +2073,13 @@ export const editorExperimentsConfig = {
|
|
|
2065
2073
|
},
|
|
2066
2074
|
param: 'isEnabled',
|
|
2067
2075
|
defaultValue: false
|
|
2076
|
+
}),
|
|
2077
|
+
// Added 2026-05-04
|
|
2078
|
+
platform_editor_show_diff_fix_missing_attrs: createBooleanExperiment({
|
|
2079
|
+
productKeys: {
|
|
2080
|
+
confluence: 'platform_editor_show_diff_fix_missing_attrs'
|
|
2081
|
+
},
|
|
2082
|
+
param: 'isEnabled',
|
|
2083
|
+
defaultValue: false
|
|
2068
2084
|
})
|
|
2069
2085
|
};
|
|
@@ -2017,6 +2017,14 @@ export var editorExperimentsConfig = {
|
|
|
2017
2017
|
param: 'isEnabled',
|
|
2018
2018
|
defaultValue: false
|
|
2019
2019
|
}),
|
|
2020
|
+
// Added 2026-04-22
|
|
2021
|
+
platform_editor_ai_screen_layout_refactor: createBooleanExperiment({
|
|
2022
|
+
productKeys: {
|
|
2023
|
+
confluence: 'platform_editor_ai_screen_layout_refactor'
|
|
2024
|
+
},
|
|
2025
|
+
param: 'isEnabled',
|
|
2026
|
+
defaultValue: false
|
|
2027
|
+
}),
|
|
2020
2028
|
// Added 2026-04-23
|
|
2021
2029
|
platform_editor_emojis_in_renderer_smart_links: createBooleanExperiment({
|
|
2022
2030
|
productKeys: {
|
|
@@ -2065,5 +2073,13 @@ export var editorExperimentsConfig = {
|
|
|
2065
2073
|
},
|
|
2066
2074
|
param: 'isEnabled',
|
|
2067
2075
|
defaultValue: false
|
|
2076
|
+
}),
|
|
2077
|
+
// Added 2026-05-04
|
|
2078
|
+
platform_editor_show_diff_fix_missing_attrs: createBooleanExperiment({
|
|
2079
|
+
productKeys: {
|
|
2080
|
+
confluence: 'platform_editor_show_diff_fix_missing_attrs'
|
|
2081
|
+
},
|
|
2082
|
+
param: 'isEnabled',
|
|
2083
|
+
defaultValue: false
|
|
2068
2084
|
})
|
|
2069
2085
|
};
|
|
@@ -1482,6 +1482,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1482
1482
|
productKeys?: ProductKeys;
|
|
1483
1483
|
typeGuard: IsBooleanType;
|
|
1484
1484
|
};
|
|
1485
|
+
platform_editor_ai_screen_layout_refactor: {
|
|
1486
|
+
defaultValue: boolean;
|
|
1487
|
+
param: string;
|
|
1488
|
+
productKeys?: ProductKeys;
|
|
1489
|
+
typeGuard: IsBooleanType;
|
|
1490
|
+
};
|
|
1485
1491
|
platform_editor_emojis_in_renderer_smart_links: {
|
|
1486
1492
|
defaultValue: boolean;
|
|
1487
1493
|
param: string;
|
|
@@ -1524,5 +1530,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1524
1530
|
productKeys?: ProductKeys;
|
|
1525
1531
|
typeGuard: IsBooleanType;
|
|
1526
1532
|
};
|
|
1533
|
+
platform_editor_show_diff_fix_missing_attrs: {
|
|
1534
|
+
defaultValue: boolean;
|
|
1535
|
+
param: string;
|
|
1536
|
+
productKeys?: ProductKeys;
|
|
1537
|
+
typeGuard: IsBooleanType;
|
|
1538
|
+
};
|
|
1527
1539
|
};
|
|
1528
1540
|
export {};
|
|
@@ -1482,6 +1482,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1482
1482
|
productKeys?: ProductKeys;
|
|
1483
1483
|
typeGuard: IsBooleanType;
|
|
1484
1484
|
};
|
|
1485
|
+
platform_editor_ai_screen_layout_refactor: {
|
|
1486
|
+
defaultValue: boolean;
|
|
1487
|
+
param: string;
|
|
1488
|
+
productKeys?: ProductKeys;
|
|
1489
|
+
typeGuard: IsBooleanType;
|
|
1490
|
+
};
|
|
1485
1491
|
platform_editor_emojis_in_renderer_smart_links: {
|
|
1486
1492
|
defaultValue: boolean;
|
|
1487
1493
|
param: string;
|
|
@@ -1524,5 +1530,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1524
1530
|
productKeys?: ProductKeys;
|
|
1525
1531
|
typeGuard: IsBooleanType;
|
|
1526
1532
|
};
|
|
1533
|
+
platform_editor_show_diff_fix_missing_attrs: {
|
|
1534
|
+
defaultValue: boolean;
|
|
1535
|
+
param: string;
|
|
1536
|
+
productKeys?: ProductKeys;
|
|
1537
|
+
typeGuard: IsBooleanType;
|
|
1538
|
+
};
|
|
1527
1539
|
};
|
|
1528
1540
|
export {};
|
package/package.json
CHANGED