@atlaskit/tmp-editor-statsig 2.1.2 → 2.1.3
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 +12 -0
- package/dist/cjs/experiments-config.js +9 -0
- package/dist/es2019/experiments-config.js +9 -0
- package/dist/esm/experiments-config.js +9 -0
- package/dist/types/experiments-config.d.ts +8 -0
- package/dist/types/setup.d.ts +1 -0
- package/dist/types-ts4.5/experiments-config.d.ts +8 -0
- package/dist/types-ts4.5/setup.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 2.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#137041](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/137041)
|
|
8
|
+
[`060aff106c5ac`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/060aff106c5ac) -
|
|
9
|
+
Add insert-right-rail experiment and reimplement right rail logic
|
|
10
|
+
- [#137041](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/137041)
|
|
11
|
+
[`060aff106c5ac`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/060aff106c5ac) -
|
|
12
|
+
Add new experiment for insert menu in right rail, allow right menu to be opened from main toolbar
|
|
13
|
+
'+' button
|
|
14
|
+
|
|
3
15
|
## 2.1.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -102,5 +102,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
102
102
|
param: 'isEnabled',
|
|
103
103
|
typeGuard: isBoolean,
|
|
104
104
|
defaultValue: false
|
|
105
|
+
},
|
|
106
|
+
// Added 2024-08-29
|
|
107
|
+
'insert-menu-in-right-rail': {
|
|
108
|
+
productKeys: {
|
|
109
|
+
confluence: 'platform_editor_insert_menu_in_right_rail'
|
|
110
|
+
},
|
|
111
|
+
param: 'isEnabled',
|
|
112
|
+
typeGuard: isBoolean,
|
|
113
|
+
defaultValue: false
|
|
105
114
|
}
|
|
106
115
|
};
|
|
@@ -96,5 +96,14 @@ export const editorExperimentsConfig = {
|
|
|
96
96
|
param: 'isEnabled',
|
|
97
97
|
typeGuard: isBoolean,
|
|
98
98
|
defaultValue: false
|
|
99
|
+
},
|
|
100
|
+
// Added 2024-08-29
|
|
101
|
+
'insert-menu-in-right-rail': {
|
|
102
|
+
productKeys: {
|
|
103
|
+
confluence: 'platform_editor_insert_menu_in_right_rail'
|
|
104
|
+
},
|
|
105
|
+
param: 'isEnabled',
|
|
106
|
+
typeGuard: isBoolean,
|
|
107
|
+
defaultValue: false
|
|
99
108
|
}
|
|
100
109
|
};
|
|
@@ -96,5 +96,14 @@ export var editorExperimentsConfig = {
|
|
|
96
96
|
param: 'isEnabled',
|
|
97
97
|
typeGuard: isBoolean,
|
|
98
98
|
defaultValue: false
|
|
99
|
+
},
|
|
100
|
+
// Added 2024-08-29
|
|
101
|
+
'insert-menu-in-right-rail': {
|
|
102
|
+
productKeys: {
|
|
103
|
+
confluence: 'platform_editor_insert_menu_in_right_rail'
|
|
104
|
+
},
|
|
105
|
+
param: 'isEnabled',
|
|
106
|
+
typeGuard: isBoolean,
|
|
107
|
+
defaultValue: false
|
|
99
108
|
}
|
|
100
109
|
};
|
|
@@ -79,5 +79,13 @@ export declare const editorExperimentsConfig: {
|
|
|
79
79
|
typeGuard: typeof isBoolean;
|
|
80
80
|
defaultValue: boolean;
|
|
81
81
|
};
|
|
82
|
+
'insert-menu-in-right-rail': {
|
|
83
|
+
productKeys: {
|
|
84
|
+
confluence: string;
|
|
85
|
+
};
|
|
86
|
+
param: string;
|
|
87
|
+
typeGuard: typeof isBoolean;
|
|
88
|
+
defaultValue: boolean;
|
|
89
|
+
};
|
|
82
90
|
};
|
|
83
91
|
export {};
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export declare let _overrides: Partial<{
|
|
|
12
12
|
'element-level-templates': boolean;
|
|
13
13
|
'nested-dnd': boolean;
|
|
14
14
|
'table-nested-dnd': boolean;
|
|
15
|
+
'insert-menu-in-right-rail': boolean;
|
|
15
16
|
}>;
|
|
16
17
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
17
18
|
/**
|
|
@@ -79,5 +79,13 @@ export declare const editorExperimentsConfig: {
|
|
|
79
79
|
typeGuard: typeof isBoolean;
|
|
80
80
|
defaultValue: boolean;
|
|
81
81
|
};
|
|
82
|
+
'insert-menu-in-right-rail': {
|
|
83
|
+
productKeys: {
|
|
84
|
+
confluence: string;
|
|
85
|
+
};
|
|
86
|
+
param: string;
|
|
87
|
+
typeGuard: typeof isBoolean;
|
|
88
|
+
defaultValue: boolean;
|
|
89
|
+
};
|
|
82
90
|
};
|
|
83
91
|
export {};
|
|
@@ -12,6 +12,7 @@ export declare let _overrides: Partial<{
|
|
|
12
12
|
'element-level-templates': boolean;
|
|
13
13
|
'nested-dnd': boolean;
|
|
14
14
|
'table-nested-dnd': boolean;
|
|
15
|
+
'insert-menu-in-right-rail': boolean;
|
|
15
16
|
}>;
|
|
16
17
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
17
18
|
/**
|
package/package.json
CHANGED