@atlaskit/tmp-editor-statsig 36.0.1 → 36.1.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 36.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`14aa7871be0b7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/14aa7871be0b7) -
|
|
8
|
+
[ux] EDITOR-5513: fix(editor-plugin-card): guard inline card cleanup to dispatch removeCard at
|
|
9
|
+
most once per effect cycle
|
|
10
|
+
|
|
3
11
|
## 36.0.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -435,6 +435,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
435
435
|
param: 'isEnabled',
|
|
436
436
|
defaultValue: false
|
|
437
437
|
}),
|
|
438
|
+
// Added 2026-03-02
|
|
439
|
+
platform_editor_inline_card_dispatch_guard: (0, _experimentBuilders.createBooleanExperiment)({
|
|
440
|
+
productKeys: {
|
|
441
|
+
jira: 'platform_editor_inline_card_dispatch_guard'
|
|
442
|
+
},
|
|
443
|
+
param: 'isEnabled',
|
|
444
|
+
defaultValue: false
|
|
445
|
+
}),
|
|
438
446
|
// Added 2025-04-14
|
|
439
447
|
// https://switcheroo.atlassian.com/ui/gates/b159b45a-86d9-4f4b-b482-f9aca5b615d6/key/platform_editor_offline_editing_web
|
|
440
448
|
platform_editor_offline_editing_web: (0, _experimentBuilders.createBooleanExperiment)({
|
|
@@ -429,6 +429,14 @@ export const editorExperimentsConfig = {
|
|
|
429
429
|
param: 'isEnabled',
|
|
430
430
|
defaultValue: false
|
|
431
431
|
}),
|
|
432
|
+
// Added 2026-03-02
|
|
433
|
+
platform_editor_inline_card_dispatch_guard: createBooleanExperiment({
|
|
434
|
+
productKeys: {
|
|
435
|
+
jira: 'platform_editor_inline_card_dispatch_guard'
|
|
436
|
+
},
|
|
437
|
+
param: 'isEnabled',
|
|
438
|
+
defaultValue: false
|
|
439
|
+
}),
|
|
432
440
|
// Added 2025-04-14
|
|
433
441
|
// https://switcheroo.atlassian.com/ui/gates/b159b45a-86d9-4f4b-b482-f9aca5b615d6/key/platform_editor_offline_editing_web
|
|
434
442
|
platform_editor_offline_editing_web: createBooleanExperiment({
|
|
@@ -429,6 +429,14 @@ export var editorExperimentsConfig = {
|
|
|
429
429
|
param: 'isEnabled',
|
|
430
430
|
defaultValue: false
|
|
431
431
|
}),
|
|
432
|
+
// Added 2026-03-02
|
|
433
|
+
platform_editor_inline_card_dispatch_guard: createBooleanExperiment({
|
|
434
|
+
productKeys: {
|
|
435
|
+
jira: 'platform_editor_inline_card_dispatch_guard'
|
|
436
|
+
},
|
|
437
|
+
param: 'isEnabled',
|
|
438
|
+
defaultValue: false
|
|
439
|
+
}),
|
|
432
440
|
// Added 2025-04-14
|
|
433
441
|
// https://switcheroo.atlassian.com/ui/gates/b159b45a-86d9-4f4b-b482-f9aca5b615d6/key/platform_editor_offline_editing_web
|
|
434
442
|
platform_editor_offline_editing_web: createBooleanExperiment({
|
|
@@ -493,6 +493,12 @@ export declare const editorExperimentsConfig: {
|
|
|
493
493
|
productKeys?: ProductKeys;
|
|
494
494
|
typeGuard: IsBooleanType;
|
|
495
495
|
};
|
|
496
|
+
platform_editor_inline_card_dispatch_guard: {
|
|
497
|
+
defaultValue: boolean;
|
|
498
|
+
param: string;
|
|
499
|
+
productKeys?: ProductKeys;
|
|
500
|
+
typeGuard: IsBooleanType;
|
|
501
|
+
};
|
|
496
502
|
platform_editor_locale_datepicker: {
|
|
497
503
|
defaultValue: boolean;
|
|
498
504
|
param: string;
|
|
@@ -493,6 +493,12 @@ export declare const editorExperimentsConfig: {
|
|
|
493
493
|
productKeys?: ProductKeys;
|
|
494
494
|
typeGuard: IsBooleanType;
|
|
495
495
|
};
|
|
496
|
+
platform_editor_inline_card_dispatch_guard: {
|
|
497
|
+
defaultValue: boolean;
|
|
498
|
+
param: string;
|
|
499
|
+
productKeys?: ProductKeys;
|
|
500
|
+
typeGuard: IsBooleanType;
|
|
501
|
+
};
|
|
496
502
|
platform_editor_locale_datepicker: {
|
|
497
503
|
defaultValue: boolean;
|
|
498
504
|
param: string;
|
package/package.json
CHANGED