@atlaskit/tmp-editor-statsig 17.9.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,17 @@
|
|
|
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
|
+
|
|
3
15
|
## 17.9.0
|
|
4
16
|
|
|
5
17
|
### 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: {
|
|
@@ -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: {
|
|
@@ -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: {
|
|
@@ -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;
|
|
@@ -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;
|
package/package.json
CHANGED