@atlaskit/tmp-editor-statsig 2.1.10 → 2.1.12
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 +21 -0
- package/dist/cjs/experiments-config.js +38 -0
- package/dist/es2019/experiments-config.js +38 -0
- package/dist/esm/experiments-config.js +38 -0
- package/dist/types/experiments-config.d.ts +32 -0
- package/dist/types/setup.d.ts +4 -0
- package/dist/types-ts4.5/experiments-config.d.ts +32 -0
- package/dist/types-ts4.5/setup.d.ts +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 2.1.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#139038](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/139038)
|
|
8
|
+
[`86a6dad9fb62e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/86a6dad9fb62e) -
|
|
9
|
+
[ux] Enables Table sticky scrollbar in Renderer under an experiment FF.
|
|
10
|
+
- [#141778](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/141778)
|
|
11
|
+
[`1c6f578277694`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1c6f578277694) -
|
|
12
|
+
ED-24870 & ED-24864 - Add the logic to gate the nested media in quotes functionality behind the
|
|
13
|
+
nest-media-and-codeblock-in-quote experiment. Also adjust the logic so the nested expands are now
|
|
14
|
+
behind the nested-expand-in-expand experiment.
|
|
15
|
+
|
|
16
|
+
## 2.1.11
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- [#140707](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/140707)
|
|
21
|
+
[`972fb840acf35`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/972fb840acf35) -
|
|
22
|
+
Switch from fg to experiment for media-from-url
|
|
23
|
+
|
|
3
24
|
## 2.1.10
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -95,6 +95,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
95
95
|
typeGuard: isBoolean,
|
|
96
96
|
defaultValue: false
|
|
97
97
|
},
|
|
98
|
+
// Added 2024-08-29
|
|
99
|
+
'add-media-from-url': {
|
|
100
|
+
productKeys: {
|
|
101
|
+
confluence: 'platform_editor_add_media_from_url'
|
|
102
|
+
},
|
|
103
|
+
param: 'isEnabled',
|
|
104
|
+
typeGuard: isBoolean,
|
|
105
|
+
defaultValue: false
|
|
106
|
+
},
|
|
98
107
|
// Added 2024-08-30
|
|
99
108
|
'nested-dnd': {
|
|
100
109
|
productKeys: {
|
|
@@ -158,5 +167,34 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
158
167
|
param: 'cohort',
|
|
159
168
|
typeGuard: oneOf(['control', 'test']),
|
|
160
169
|
defaultValue: 'control'
|
|
170
|
+
},
|
|
171
|
+
// Added 2024-09-18
|
|
172
|
+
platform_renderer_table_sticky_scrollbar: {
|
|
173
|
+
productKeys: {
|
|
174
|
+
confluence: 'platform_renderer_table_sticky_scrollbar'
|
|
175
|
+
},
|
|
176
|
+
param: 'isEnabled',
|
|
177
|
+
typeGuard: isBoolean,
|
|
178
|
+
defaultValue: false
|
|
179
|
+
},
|
|
180
|
+
// Added 2024-09-18
|
|
181
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_nest_media_and_codeblock_in_quotes/setup
|
|
182
|
+
'nest-media-and-codeblock-in-quote': {
|
|
183
|
+
productKeys: {
|
|
184
|
+
confluence: 'platform_editor_nest_media_and_codeblock_in_quotes'
|
|
185
|
+
},
|
|
186
|
+
param: 'isEnabled',
|
|
187
|
+
typeGuard: isBoolean,
|
|
188
|
+
defaultValue: false
|
|
189
|
+
},
|
|
190
|
+
// Added 2024-09-18
|
|
191
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_nest_nested_expand_in_expand/setup
|
|
192
|
+
'nested-expand-in-expand': {
|
|
193
|
+
productKeys: {
|
|
194
|
+
confluence: 'platform_editor_nest_nested_expand_in_expand'
|
|
195
|
+
},
|
|
196
|
+
param: 'isEnabled',
|
|
197
|
+
typeGuard: isBoolean,
|
|
198
|
+
defaultValue: false
|
|
161
199
|
}
|
|
162
200
|
};
|
|
@@ -89,6 +89,15 @@ export const editorExperimentsConfig = {
|
|
|
89
89
|
typeGuard: isBoolean,
|
|
90
90
|
defaultValue: false
|
|
91
91
|
},
|
|
92
|
+
// Added 2024-08-29
|
|
93
|
+
'add-media-from-url': {
|
|
94
|
+
productKeys: {
|
|
95
|
+
confluence: 'platform_editor_add_media_from_url'
|
|
96
|
+
},
|
|
97
|
+
param: 'isEnabled',
|
|
98
|
+
typeGuard: isBoolean,
|
|
99
|
+
defaultValue: false
|
|
100
|
+
},
|
|
92
101
|
// Added 2024-08-30
|
|
93
102
|
'nested-dnd': {
|
|
94
103
|
productKeys: {
|
|
@@ -152,5 +161,34 @@ export const editorExperimentsConfig = {
|
|
|
152
161
|
param: 'cohort',
|
|
153
162
|
typeGuard: oneOf(['control', 'test']),
|
|
154
163
|
defaultValue: 'control'
|
|
164
|
+
},
|
|
165
|
+
// Added 2024-09-18
|
|
166
|
+
platform_renderer_table_sticky_scrollbar: {
|
|
167
|
+
productKeys: {
|
|
168
|
+
confluence: 'platform_renderer_table_sticky_scrollbar'
|
|
169
|
+
},
|
|
170
|
+
param: 'isEnabled',
|
|
171
|
+
typeGuard: isBoolean,
|
|
172
|
+
defaultValue: false
|
|
173
|
+
},
|
|
174
|
+
// Added 2024-09-18
|
|
175
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_nest_media_and_codeblock_in_quotes/setup
|
|
176
|
+
'nest-media-and-codeblock-in-quote': {
|
|
177
|
+
productKeys: {
|
|
178
|
+
confluence: 'platform_editor_nest_media_and_codeblock_in_quotes'
|
|
179
|
+
},
|
|
180
|
+
param: 'isEnabled',
|
|
181
|
+
typeGuard: isBoolean,
|
|
182
|
+
defaultValue: false
|
|
183
|
+
},
|
|
184
|
+
// Added 2024-09-18
|
|
185
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_nest_nested_expand_in_expand/setup
|
|
186
|
+
'nested-expand-in-expand': {
|
|
187
|
+
productKeys: {
|
|
188
|
+
confluence: 'platform_editor_nest_nested_expand_in_expand'
|
|
189
|
+
},
|
|
190
|
+
param: 'isEnabled',
|
|
191
|
+
typeGuard: isBoolean,
|
|
192
|
+
defaultValue: false
|
|
155
193
|
}
|
|
156
194
|
};
|
|
@@ -89,6 +89,15 @@ export var editorExperimentsConfig = {
|
|
|
89
89
|
typeGuard: isBoolean,
|
|
90
90
|
defaultValue: false
|
|
91
91
|
},
|
|
92
|
+
// Added 2024-08-29
|
|
93
|
+
'add-media-from-url': {
|
|
94
|
+
productKeys: {
|
|
95
|
+
confluence: 'platform_editor_add_media_from_url'
|
|
96
|
+
},
|
|
97
|
+
param: 'isEnabled',
|
|
98
|
+
typeGuard: isBoolean,
|
|
99
|
+
defaultValue: false
|
|
100
|
+
},
|
|
92
101
|
// Added 2024-08-30
|
|
93
102
|
'nested-dnd': {
|
|
94
103
|
productKeys: {
|
|
@@ -152,5 +161,34 @@ export var editorExperimentsConfig = {
|
|
|
152
161
|
param: 'cohort',
|
|
153
162
|
typeGuard: oneOf(['control', 'test']),
|
|
154
163
|
defaultValue: 'control'
|
|
164
|
+
},
|
|
165
|
+
// Added 2024-09-18
|
|
166
|
+
platform_renderer_table_sticky_scrollbar: {
|
|
167
|
+
productKeys: {
|
|
168
|
+
confluence: 'platform_renderer_table_sticky_scrollbar'
|
|
169
|
+
},
|
|
170
|
+
param: 'isEnabled',
|
|
171
|
+
typeGuard: isBoolean,
|
|
172
|
+
defaultValue: false
|
|
173
|
+
},
|
|
174
|
+
// Added 2024-09-18
|
|
175
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_nest_media_and_codeblock_in_quotes/setup
|
|
176
|
+
'nest-media-and-codeblock-in-quote': {
|
|
177
|
+
productKeys: {
|
|
178
|
+
confluence: 'platform_editor_nest_media_and_codeblock_in_quotes'
|
|
179
|
+
},
|
|
180
|
+
param: 'isEnabled',
|
|
181
|
+
typeGuard: isBoolean,
|
|
182
|
+
defaultValue: false
|
|
183
|
+
},
|
|
184
|
+
// Added 2024-09-18
|
|
185
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_nest_nested_expand_in_expand/setup
|
|
186
|
+
'nested-expand-in-expand': {
|
|
187
|
+
productKeys: {
|
|
188
|
+
confluence: 'platform_editor_nest_nested_expand_in_expand'
|
|
189
|
+
},
|
|
190
|
+
param: 'isEnabled',
|
|
191
|
+
typeGuard: isBoolean,
|
|
192
|
+
defaultValue: false
|
|
155
193
|
}
|
|
156
194
|
};
|
|
@@ -71,6 +71,14 @@ export declare const editorExperimentsConfig: {
|
|
|
71
71
|
typeGuard: typeof isBoolean;
|
|
72
72
|
defaultValue: boolean;
|
|
73
73
|
};
|
|
74
|
+
'add-media-from-url': {
|
|
75
|
+
productKeys: {
|
|
76
|
+
confluence: string;
|
|
77
|
+
};
|
|
78
|
+
param: string;
|
|
79
|
+
typeGuard: typeof isBoolean;
|
|
80
|
+
defaultValue: boolean;
|
|
81
|
+
};
|
|
74
82
|
'nested-dnd': {
|
|
75
83
|
productKeys: {
|
|
76
84
|
confluence: string;
|
|
@@ -127,5 +135,29 @@ export declare const editorExperimentsConfig: {
|
|
|
127
135
|
typeGuard: (value: unknown) => value is "control" | "test";
|
|
128
136
|
defaultValue: "control" | "test";
|
|
129
137
|
};
|
|
138
|
+
platform_renderer_table_sticky_scrollbar: {
|
|
139
|
+
productKeys: {
|
|
140
|
+
confluence: string;
|
|
141
|
+
};
|
|
142
|
+
param: string;
|
|
143
|
+
typeGuard: typeof isBoolean;
|
|
144
|
+
defaultValue: boolean;
|
|
145
|
+
};
|
|
146
|
+
'nest-media-and-codeblock-in-quote': {
|
|
147
|
+
productKeys: {
|
|
148
|
+
confluence: string;
|
|
149
|
+
};
|
|
150
|
+
param: string;
|
|
151
|
+
typeGuard: typeof isBoolean;
|
|
152
|
+
defaultValue: boolean;
|
|
153
|
+
};
|
|
154
|
+
'nested-expand-in-expand': {
|
|
155
|
+
productKeys: {
|
|
156
|
+
confluence: string;
|
|
157
|
+
};
|
|
158
|
+
param: string;
|
|
159
|
+
typeGuard: typeof isBoolean;
|
|
160
|
+
defaultValue: boolean;
|
|
161
|
+
};
|
|
130
162
|
};
|
|
131
163
|
export {};
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export declare let _overrides: Partial<{
|
|
|
11
11
|
'platform-editor-ai-condensed-floating-toobar': "control" | "dropdown" | "editor_ai_button";
|
|
12
12
|
'dnd-input-performance-optimisation': boolean;
|
|
13
13
|
'element-level-templates': boolean;
|
|
14
|
+
'add-media-from-url': boolean;
|
|
14
15
|
'nested-dnd': boolean;
|
|
15
16
|
'table-nested-dnd': boolean;
|
|
16
17
|
'insert-menu-in-right-rail': boolean;
|
|
@@ -18,6 +19,9 @@ export declare let _overrides: Partial<{
|
|
|
18
19
|
support_table_in_comment: boolean;
|
|
19
20
|
platform_editor_exp_lazy_node_views: boolean;
|
|
20
21
|
platform_editor_ai_ai_button_block_elements: "control" | "test";
|
|
22
|
+
platform_renderer_table_sticky_scrollbar: boolean;
|
|
23
|
+
'nest-media-and-codeblock-in-quote': boolean;
|
|
24
|
+
'nested-expand-in-expand': boolean;
|
|
21
25
|
}>;
|
|
22
26
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
23
27
|
/**
|
|
@@ -71,6 +71,14 @@ export declare const editorExperimentsConfig: {
|
|
|
71
71
|
typeGuard: typeof isBoolean;
|
|
72
72
|
defaultValue: boolean;
|
|
73
73
|
};
|
|
74
|
+
'add-media-from-url': {
|
|
75
|
+
productKeys: {
|
|
76
|
+
confluence: string;
|
|
77
|
+
};
|
|
78
|
+
param: string;
|
|
79
|
+
typeGuard: typeof isBoolean;
|
|
80
|
+
defaultValue: boolean;
|
|
81
|
+
};
|
|
74
82
|
'nested-dnd': {
|
|
75
83
|
productKeys: {
|
|
76
84
|
confluence: string;
|
|
@@ -127,5 +135,29 @@ export declare const editorExperimentsConfig: {
|
|
|
127
135
|
typeGuard: (value: unknown) => value is "control" | "test";
|
|
128
136
|
defaultValue: "control" | "test";
|
|
129
137
|
};
|
|
138
|
+
platform_renderer_table_sticky_scrollbar: {
|
|
139
|
+
productKeys: {
|
|
140
|
+
confluence: string;
|
|
141
|
+
};
|
|
142
|
+
param: string;
|
|
143
|
+
typeGuard: typeof isBoolean;
|
|
144
|
+
defaultValue: boolean;
|
|
145
|
+
};
|
|
146
|
+
'nest-media-and-codeblock-in-quote': {
|
|
147
|
+
productKeys: {
|
|
148
|
+
confluence: string;
|
|
149
|
+
};
|
|
150
|
+
param: string;
|
|
151
|
+
typeGuard: typeof isBoolean;
|
|
152
|
+
defaultValue: boolean;
|
|
153
|
+
};
|
|
154
|
+
'nested-expand-in-expand': {
|
|
155
|
+
productKeys: {
|
|
156
|
+
confluence: string;
|
|
157
|
+
};
|
|
158
|
+
param: string;
|
|
159
|
+
typeGuard: typeof isBoolean;
|
|
160
|
+
defaultValue: boolean;
|
|
161
|
+
};
|
|
130
162
|
};
|
|
131
163
|
export {};
|
|
@@ -11,6 +11,7 @@ export declare let _overrides: Partial<{
|
|
|
11
11
|
'platform-editor-ai-condensed-floating-toobar': "control" | "dropdown" | "editor_ai_button";
|
|
12
12
|
'dnd-input-performance-optimisation': boolean;
|
|
13
13
|
'element-level-templates': boolean;
|
|
14
|
+
'add-media-from-url': boolean;
|
|
14
15
|
'nested-dnd': boolean;
|
|
15
16
|
'table-nested-dnd': boolean;
|
|
16
17
|
'insert-menu-in-right-rail': boolean;
|
|
@@ -18,6 +19,9 @@ export declare let _overrides: Partial<{
|
|
|
18
19
|
support_table_in_comment: boolean;
|
|
19
20
|
platform_editor_exp_lazy_node_views: boolean;
|
|
20
21
|
platform_editor_ai_ai_button_block_elements: "control" | "test";
|
|
22
|
+
platform_renderer_table_sticky_scrollbar: boolean;
|
|
23
|
+
'nest-media-and-codeblock-in-quote': boolean;
|
|
24
|
+
'nested-expand-in-expand': boolean;
|
|
21
25
|
}>;
|
|
22
26
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
23
27
|
/**
|
package/package.json
CHANGED