@atlaskit/tmp-editor-statsig 17.8.0 → 17.10.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,24 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 17.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`25991b4c801ab`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/25991b4c801ab) -
8
+ [EDITOR-4884](https://hello.jira.atlassian.cloud/browse/EDITOR-4884) - set `display: none` for
9
+ collapsed Expand
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 17.9.0
16
+
17
+ ### Minor Changes
18
+
19
+ - [`b2780992bdc66`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b2780992bdc66) -
20
+ Send x-client-platform header when establishing socketio connection
21
+
3
22
  ## 17.8.0
4
23
 
5
24
  ### Minor Changes
@@ -516,6 +516,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
516
516
  param: 'isEnabled',
517
517
  defaultValue: false
518
518
  }),
519
+ platform_editor_display_none_to_expand: (0, _experimentBuilders.createBooleanExperiment)({
520
+ productKeys: {
521
+ confluence: 'platform_editor_display_none_to_expand'
522
+ },
523
+ param: 'isEnabled',
524
+ defaultValue: false
525
+ }),
519
526
  // Added 2025-06-24
520
527
  platform_editor_find_and_replace_improvements: (0, _experimentBuilders.createBooleanExperiment)({
521
528
  productKeys: {
@@ -1257,6 +1264,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1257
1264
  param: 'isEnabled',
1258
1265
  defaultValue: false
1259
1266
  }),
1267
+ // Added 2025-01-29
1268
+ platform_editor_send_client_platform_header: (0, _experimentBuilders.createBooleanExperiment)({
1269
+ productKeys: {
1270
+ confluence: 'platform_editor_send_client_platform_header'
1271
+ },
1272
+ param: 'isEnabled',
1273
+ defaultValue: false
1274
+ }),
1260
1275
  // Added 2026-01-29
1261
1276
  platform_editor_renderer_toolbar_updates: (0, _experimentBuilders.createBooleanExperiment)({
1262
1277
  productKeys: {
@@ -510,6 +510,13 @@ export const editorExperimentsConfig = {
510
510
  param: 'isEnabled',
511
511
  defaultValue: false
512
512
  }),
513
+ platform_editor_display_none_to_expand: createBooleanExperiment({
514
+ productKeys: {
515
+ confluence: 'platform_editor_display_none_to_expand'
516
+ },
517
+ param: 'isEnabled',
518
+ defaultValue: false
519
+ }),
513
520
  // Added 2025-06-24
514
521
  platform_editor_find_and_replace_improvements: createBooleanExperiment({
515
522
  productKeys: {
@@ -1251,6 +1258,14 @@ export const editorExperimentsConfig = {
1251
1258
  param: 'isEnabled',
1252
1259
  defaultValue: false
1253
1260
  }),
1261
+ // Added 2025-01-29
1262
+ platform_editor_send_client_platform_header: createBooleanExperiment({
1263
+ productKeys: {
1264
+ confluence: 'platform_editor_send_client_platform_header'
1265
+ },
1266
+ param: 'isEnabled',
1267
+ defaultValue: false
1268
+ }),
1254
1269
  // Added 2026-01-29
1255
1270
  platform_editor_renderer_toolbar_updates: createBooleanExperiment({
1256
1271
  productKeys: {
@@ -510,6 +510,13 @@ export var editorExperimentsConfig = {
510
510
  param: 'isEnabled',
511
511
  defaultValue: false
512
512
  }),
513
+ platform_editor_display_none_to_expand: createBooleanExperiment({
514
+ productKeys: {
515
+ confluence: 'platform_editor_display_none_to_expand'
516
+ },
517
+ param: 'isEnabled',
518
+ defaultValue: false
519
+ }),
513
520
  // Added 2025-06-24
514
521
  platform_editor_find_and_replace_improvements: createBooleanExperiment({
515
522
  productKeys: {
@@ -1251,6 +1258,14 @@ export var editorExperimentsConfig = {
1251
1258
  param: 'isEnabled',
1252
1259
  defaultValue: false
1253
1260
  }),
1261
+ // Added 2025-01-29
1262
+ platform_editor_send_client_platform_header: createBooleanExperiment({
1263
+ productKeys: {
1264
+ confluence: 'platform_editor_send_client_platform_header'
1265
+ },
1266
+ param: 'isEnabled',
1267
+ defaultValue: false
1268
+ }),
1254
1269
  // Added 2026-01-29
1255
1270
  platform_editor_renderer_toolbar_updates: createBooleanExperiment({
1256
1271
  productKeys: {
@@ -230,6 +230,12 @@ export declare const editorExperimentsConfig: {
230
230
  productKeys?: ProductKeys;
231
231
  typeGuard: IsBooleanType;
232
232
  };
233
+ platform_editor_display_none_to_expand: {
234
+ defaultValue: boolean;
235
+ param: string;
236
+ productKeys?: ProductKeys;
237
+ typeGuard: IsBooleanType;
238
+ };
233
239
  platform_editor_ai_quickstart_command: {
234
240
  defaultValue: boolean;
235
241
  param: string;
@@ -928,6 +934,12 @@ export declare const editorExperimentsConfig: {
928
934
  productKeys?: ProductKeys;
929
935
  typeGuard: IsBooleanType;
930
936
  };
937
+ platform_editor_send_client_platform_header: {
938
+ defaultValue: boolean;
939
+ param: string;
940
+ productKeys?: ProductKeys;
941
+ typeGuard: IsBooleanType;
942
+ };
931
943
  platform_editor_renderer_toolbar_updates: {
932
944
  defaultValue: boolean;
933
945
  param: string;
@@ -230,6 +230,12 @@ export declare const editorExperimentsConfig: {
230
230
  productKeys?: ProductKeys;
231
231
  typeGuard: IsBooleanType;
232
232
  };
233
+ platform_editor_display_none_to_expand: {
234
+ defaultValue: boolean;
235
+ param: string;
236
+ productKeys?: ProductKeys;
237
+ typeGuard: IsBooleanType;
238
+ };
233
239
  platform_editor_ai_quickstart_command: {
234
240
  defaultValue: boolean;
235
241
  param: string;
@@ -928,6 +934,12 @@ export declare const editorExperimentsConfig: {
928
934
  productKeys?: ProductKeys;
929
935
  typeGuard: IsBooleanType;
930
936
  };
937
+ platform_editor_send_client_platform_header: {
938
+ defaultValue: boolean;
939
+ param: string;
940
+ productKeys?: ProductKeys;
941
+ typeGuard: IsBooleanType;
942
+ };
931
943
  platform_editor_renderer_toolbar_updates: {
932
944
  defaultValue: boolean;
933
945
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "17.8.0",
3
+ "version": "17.10.0",
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",