@atlaskit/tmp-editor-statsig 3.6.0 → 3.6.1
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 +8 -0
- package/dist/cjs/experiments-config.js +1 -1
- package/dist/es2019/experiments-config.js +1 -1
- package/dist/esm/experiments-config.js +1 -1
- package/dist/types/editor-experiments-test-utils.d.ts +1 -1
- package/dist/types/experiments-config.d.ts +1 -1
- package/dist/types-ts4.5/editor-experiments-test-utils.d.ts +1 -1
- package/dist/types-ts4.5/experiments-config.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 3.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#123036](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/123036)
|
|
8
|
+
[`08a3386cf1088`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/08a3386cf1088) -
|
|
9
|
+
Editor virtualization experiment adjustment, fixes
|
|
10
|
+
|
|
3
11
|
## 3.6.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -324,7 +324,7 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
324
324
|
confluence: 'platform_editor_inline_node_virtualization'
|
|
325
325
|
},
|
|
326
326
|
param: 'variant',
|
|
327
|
-
typeGuard: (0, _typeGuards.oneOf)(['control', '
|
|
327
|
+
typeGuard: (0, _typeGuards.oneOf)(['control', 'fallback-small', 'fallback-large']),
|
|
328
328
|
defaultValue: 'control'
|
|
329
329
|
},
|
|
330
330
|
// Added 2025-03-03
|
|
@@ -318,7 +318,7 @@ export const editorExperimentsConfig = {
|
|
|
318
318
|
confluence: 'platform_editor_inline_node_virtualization'
|
|
319
319
|
},
|
|
320
320
|
param: 'variant',
|
|
321
|
-
typeGuard: oneOf(['control', '
|
|
321
|
+
typeGuard: oneOf(['control', 'fallback-small', 'fallback-large']),
|
|
322
322
|
defaultValue: 'control'
|
|
323
323
|
},
|
|
324
324
|
// Added 2025-03-03
|
|
@@ -318,7 +318,7 @@ export var editorExperimentsConfig = {
|
|
|
318
318
|
confluence: 'platform_editor_inline_node_virtualization'
|
|
319
319
|
},
|
|
320
320
|
param: 'variant',
|
|
321
|
-
typeGuard: oneOf(['control', '
|
|
321
|
+
typeGuard: oneOf(['control', 'fallback-small', 'fallback-large']),
|
|
322
322
|
defaultValue: 'control'
|
|
323
323
|
},
|
|
324
324
|
// Added 2025-03-03
|
|
@@ -317,7 +317,7 @@ declare namespace eeTest {
|
|
|
317
317
|
confluence: string;
|
|
318
318
|
};
|
|
319
319
|
param: string;
|
|
320
|
-
typeGuard: (value: unknown) => value is "control" | "
|
|
320
|
+
typeGuard: (value: unknown) => value is "control" | "fallback-small" | "fallback-large";
|
|
321
321
|
defaultValue: string;
|
|
322
322
|
};
|
|
323
323
|
platform_editor_cmd_a_progressively_select_nodes: {
|
|
@@ -276,7 +276,7 @@ export declare const editorExperimentsConfig: {
|
|
|
276
276
|
confluence: string;
|
|
277
277
|
};
|
|
278
278
|
param: string;
|
|
279
|
-
typeGuard: (value: unknown) => value is "control" | "
|
|
279
|
+
typeGuard: (value: unknown) => value is "control" | "fallback-small" | "fallback-large";
|
|
280
280
|
defaultValue: string;
|
|
281
281
|
};
|
|
282
282
|
platform_editor_cmd_a_progressively_select_nodes: {
|
|
@@ -317,7 +317,7 @@ declare namespace eeTest {
|
|
|
317
317
|
confluence: string;
|
|
318
318
|
};
|
|
319
319
|
param: string;
|
|
320
|
-
typeGuard: (value: unknown) => value is "control" | "
|
|
320
|
+
typeGuard: (value: unknown) => value is "control" | "fallback-small" | "fallback-large";
|
|
321
321
|
defaultValue: string;
|
|
322
322
|
};
|
|
323
323
|
platform_editor_cmd_a_progressively_select_nodes: {
|
|
@@ -276,7 +276,7 @@ export declare const editorExperimentsConfig: {
|
|
|
276
276
|
confluence: string;
|
|
277
277
|
};
|
|
278
278
|
param: string;
|
|
279
|
-
typeGuard: (value: unknown) => value is "control" | "
|
|
279
|
+
typeGuard: (value: unknown) => value is "control" | "fallback-small" | "fallback-large";
|
|
280
280
|
defaultValue: string;
|
|
281
281
|
};
|
|
282
282
|
platform_editor_cmd_a_progressively_select_nodes: {
|
package/package.json
CHANGED