@atlaskit/tmp-editor-statsig 89.3.0 → 89.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 89.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`aaf0bc9f036a7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/aaf0bc9f036a7) -
|
|
8
|
+
[ux] Experiment change, update priority of link quick insert item
|
|
9
|
+
|
|
3
10
|
## 89.3.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -147,6 +147,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
147
147
|
param: 'isEnabled',
|
|
148
148
|
defaultValue: false
|
|
149
149
|
}),
|
|
150
|
+
confluence_quick_insert_embeds: (0, _experimentBuilders.createBooleanExperiment)({
|
|
151
|
+
productKeys: {
|
|
152
|
+
confluence: 'confluence_quick_insert_embeds'
|
|
153
|
+
},
|
|
154
|
+
param: 'isEnabled',
|
|
155
|
+
defaultValue: false
|
|
156
|
+
}),
|
|
150
157
|
confluence_remix_icon_right_side: (0, _experimentBuilders.createBooleanExperiment)({
|
|
151
158
|
productKeys: {
|
|
152
159
|
confluence: 'confluence_remix_icon_right_side'
|
|
@@ -141,6 +141,13 @@ export const editorExperimentsConfig = {
|
|
|
141
141
|
param: 'isEnabled',
|
|
142
142
|
defaultValue: false
|
|
143
143
|
}),
|
|
144
|
+
confluence_quick_insert_embeds: createBooleanExperiment({
|
|
145
|
+
productKeys: {
|
|
146
|
+
confluence: 'confluence_quick_insert_embeds'
|
|
147
|
+
},
|
|
148
|
+
param: 'isEnabled',
|
|
149
|
+
defaultValue: false
|
|
150
|
+
}),
|
|
144
151
|
confluence_remix_icon_right_side: createBooleanExperiment({
|
|
145
152
|
productKeys: {
|
|
146
153
|
confluence: 'confluence_remix_icon_right_side'
|
|
@@ -141,6 +141,13 @@ export var editorExperimentsConfig = {
|
|
|
141
141
|
param: 'isEnabled',
|
|
142
142
|
defaultValue: false
|
|
143
143
|
}),
|
|
144
|
+
confluence_quick_insert_embeds: createBooleanExperiment({
|
|
145
|
+
productKeys: {
|
|
146
|
+
confluence: 'confluence_quick_insert_embeds'
|
|
147
|
+
},
|
|
148
|
+
param: 'isEnabled',
|
|
149
|
+
defaultValue: false
|
|
150
|
+
}),
|
|
144
151
|
confluence_remix_icon_right_side: createBooleanExperiment({
|
|
145
152
|
productKeys: {
|
|
146
153
|
confluence: 'confluence_remix_icon_right_side'
|
|
@@ -275,6 +275,12 @@ export declare const editorExperimentsConfig: {
|
|
|
275
275
|
productKeys?: ProductKeys;
|
|
276
276
|
typeGuard: IsBooleanType;
|
|
277
277
|
};
|
|
278
|
+
confluence_quick_insert_embeds: {
|
|
279
|
+
defaultValue: boolean;
|
|
280
|
+
param: string;
|
|
281
|
+
productKeys?: ProductKeys;
|
|
282
|
+
typeGuard: IsBooleanType;
|
|
283
|
+
};
|
|
278
284
|
platform_editor_layout_keywords: {
|
|
279
285
|
defaultValue: boolean;
|
|
280
286
|
param: string;
|
|
@@ -275,6 +275,12 @@ export declare const editorExperimentsConfig: {
|
|
|
275
275
|
productKeys?: ProductKeys;
|
|
276
276
|
typeGuard: IsBooleanType;
|
|
277
277
|
};
|
|
278
|
+
confluence_quick_insert_embeds: {
|
|
279
|
+
defaultValue: boolean;
|
|
280
|
+
param: string;
|
|
281
|
+
productKeys?: ProductKeys;
|
|
282
|
+
typeGuard: IsBooleanType;
|
|
283
|
+
};
|
|
278
284
|
platform_editor_layout_keywords: {
|
|
279
285
|
defaultValue: boolean;
|
|
280
286
|
param: string;
|
package/package.json
CHANGED