@atlaskit/tmp-editor-statsig 29.5.0 → 29.6.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
|
+
## 29.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`521f5d212eb21`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/521f5d212eb21) -
|
|
8
|
+
[ux] Add support for dynamic UI flow in AIFC
|
|
9
|
+
|
|
3
10
|
## 29.5.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1434,6 +1434,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1434
1434
|
param: 'isEnabled',
|
|
1435
1435
|
defaultValue: false
|
|
1436
1436
|
}),
|
|
1437
|
+
// Added 2026-02-23
|
|
1438
|
+
'cc-mui-experiment': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1439
|
+
productKeys: {
|
|
1440
|
+
confluence: 'cc-mui-experiment'
|
|
1441
|
+
},
|
|
1442
|
+
param: 'isEnabled',
|
|
1443
|
+
defaultValue: false
|
|
1444
|
+
}),
|
|
1437
1445
|
// Added 2026-02-12
|
|
1438
1446
|
platform_editor_a11y_escape_link_dialog: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1439
1447
|
productKeys: {
|
|
@@ -1428,6 +1428,14 @@ export const editorExperimentsConfig = {
|
|
|
1428
1428
|
param: 'isEnabled',
|
|
1429
1429
|
defaultValue: false
|
|
1430
1430
|
}),
|
|
1431
|
+
// Added 2026-02-23
|
|
1432
|
+
'cc-mui-experiment': createBooleanExperiment({
|
|
1433
|
+
productKeys: {
|
|
1434
|
+
confluence: 'cc-mui-experiment'
|
|
1435
|
+
},
|
|
1436
|
+
param: 'isEnabled',
|
|
1437
|
+
defaultValue: false
|
|
1438
|
+
}),
|
|
1431
1439
|
// Added 2026-02-12
|
|
1432
1440
|
platform_editor_a11y_escape_link_dialog: createBooleanExperiment({
|
|
1433
1441
|
productKeys: {
|
|
@@ -1428,6 +1428,14 @@ export var editorExperimentsConfig = {
|
|
|
1428
1428
|
param: 'isEnabled',
|
|
1429
1429
|
defaultValue: false
|
|
1430
1430
|
}),
|
|
1431
|
+
// Added 2026-02-23
|
|
1432
|
+
'cc-mui-experiment': createBooleanExperiment({
|
|
1433
|
+
productKeys: {
|
|
1434
|
+
confluence: 'cc-mui-experiment'
|
|
1435
|
+
},
|
|
1436
|
+
param: 'isEnabled',
|
|
1437
|
+
defaultValue: false
|
|
1438
|
+
}),
|
|
1431
1439
|
// Added 2026-02-12
|
|
1432
1440
|
platform_editor_a11y_escape_link_dialog: createBooleanExperiment({
|
|
1433
1441
|
productKeys: {
|
|
@@ -1068,6 +1068,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1068
1068
|
productKeys?: ProductKeys;
|
|
1069
1069
|
typeGuard: IsBooleanType;
|
|
1070
1070
|
};
|
|
1071
|
+
'cc-mui-experiment': {
|
|
1072
|
+
defaultValue: boolean;
|
|
1073
|
+
param: string;
|
|
1074
|
+
productKeys?: ProductKeys;
|
|
1075
|
+
typeGuard: IsBooleanType;
|
|
1076
|
+
};
|
|
1071
1077
|
platform_editor_a11y_escape_link_dialog: {
|
|
1072
1078
|
defaultValue: boolean;
|
|
1073
1079
|
param: string;
|
|
@@ -1068,6 +1068,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1068
1068
|
productKeys?: ProductKeys;
|
|
1069
1069
|
typeGuard: IsBooleanType;
|
|
1070
1070
|
};
|
|
1071
|
+
'cc-mui-experiment': {
|
|
1072
|
+
defaultValue: boolean;
|
|
1073
|
+
param: string;
|
|
1074
|
+
productKeys?: ProductKeys;
|
|
1075
|
+
typeGuard: IsBooleanType;
|
|
1076
|
+
};
|
|
1071
1077
|
platform_editor_a11y_escape_link_dialog: {
|
|
1072
1078
|
defaultValue: boolean;
|
|
1073
1079
|
param: string;
|
package/package.json
CHANGED