@atlaskit/tmp-editor-statsig 2.1.11 → 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 CHANGED
@@ -1,5 +1,18 @@
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
+
3
16
  ## 2.1.11
4
17
 
5
18
  ### Patch Changes
@@ -167,5 +167,34 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
167
167
  param: 'cohort',
168
168
  typeGuard: oneOf(['control', 'test']),
169
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
170
199
  }
171
200
  };
@@ -161,5 +161,34 @@ export const editorExperimentsConfig = {
161
161
  param: 'cohort',
162
162
  typeGuard: oneOf(['control', 'test']),
163
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
164
193
  }
165
194
  };
@@ -161,5 +161,34 @@ export var editorExperimentsConfig = {
161
161
  param: 'cohort',
162
162
  typeGuard: oneOf(['control', 'test']),
163
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
164
193
  }
165
194
  };
@@ -135,5 +135,29 @@ export declare const editorExperimentsConfig: {
135
135
  typeGuard: (value: unknown) => value is "control" | "test";
136
136
  defaultValue: "control" | "test";
137
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
+ };
138
162
  };
139
163
  export {};
@@ -19,6 +19,9 @@ export declare let _overrides: Partial<{
19
19
  support_table_in_comment: boolean;
20
20
  platform_editor_exp_lazy_node_views: boolean;
21
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;
22
25
  }>;
23
26
  export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
24
27
  /**
@@ -135,5 +135,29 @@ export declare const editorExperimentsConfig: {
135
135
  typeGuard: (value: unknown) => value is "control" | "test";
136
136
  defaultValue: "control" | "test";
137
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
+ };
138
162
  };
139
163
  export {};
@@ -19,6 +19,9 @@ export declare let _overrides: Partial<{
19
19
  support_table_in_comment: boolean;
20
20
  platform_editor_exp_lazy_node_views: boolean;
21
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;
22
25
  }>;
23
26
  export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
24
27
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "2.1.11",
3
+ "version": "2.1.12",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",