@atlaskit/tmp-editor-statsig 11.2.0 → 11.3.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 +21 -0
- package/dist/cjs/exp-test-overrides.js +1 -0
- package/dist/cjs/experiments-config.js +24 -0
- package/dist/es2019/exp-test-overrides.js +1 -0
- package/dist/es2019/experiments-config.js +24 -0
- package/dist/esm/exp-test-overrides.js +1 -0
- package/dist/esm/experiments-config.js +24 -0
- package/dist/types/experiments-config.d.ts +18 -0
- package/dist/types-ts4.5/experiments-config.d.ts +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 11.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`3cb013fc55d88`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3cb013fc55d88) -
|
|
8
|
+
Add initial trigger for Improve Writing on Paste experiment
|
|
9
|
+
|
|
10
|
+
## 11.3.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`45b7e7965939b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/45b7e7965939b) -
|
|
15
|
+
[ux] [I18N-2877] add locale to datepicker i18n and day of week
|
|
16
|
+
- [`205cf133d4d59`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/205cf133d4d59) -
|
|
17
|
+
[ux] Update max width for breakout to be the same as for non-breakout nodes to fix vc90 regression
|
|
18
|
+
behind platform_editor_breakout_resizing_vc90_fix and platform_editor_breakout_resizing
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
|
|
3
24
|
## 11.2.0
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
|
@@ -63,5 +63,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
63
63
|
cc_editor_ufo_hold_table_till_resize_complete: false,
|
|
64
64
|
platform_editor_toggle_expand_on_match_found: false,
|
|
65
65
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
66
|
+
cc_improve_writing_on_paste: false,
|
|
66
67
|
platform_editor_ai_aifc: false
|
|
67
68
|
};
|
|
@@ -711,6 +711,22 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
711
711
|
param: 'isEnabled',
|
|
712
712
|
defaultValue: false
|
|
713
713
|
}),
|
|
714
|
+
// Added 2025-08-06
|
|
715
|
+
cc_improve_writing_on_paste: (0, _experimentBuilders.createBooleanExperiment)({
|
|
716
|
+
productKeys: {
|
|
717
|
+
confluence: 'cc_improve_writing_on_paste'
|
|
718
|
+
},
|
|
719
|
+
param: 'isEnabled',
|
|
720
|
+
defaultValue: false
|
|
721
|
+
}),
|
|
722
|
+
// Added 2025-08-18
|
|
723
|
+
platform_editor_locale_datepicker: (0, _experimentBuilders.createBooleanExperiment)({
|
|
724
|
+
productKeys: {
|
|
725
|
+
confluence: 'platform_editor_locale_datepicker'
|
|
726
|
+
},
|
|
727
|
+
param: 'isEnabled',
|
|
728
|
+
defaultValue: false
|
|
729
|
+
}),
|
|
714
730
|
// Added 2025-08-18
|
|
715
731
|
platform_editor_find_replace_a11y_fixes: (0, _experimentBuilders.createBooleanExperiment)({
|
|
716
732
|
productKeys: {
|
|
@@ -718,5 +734,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
718
734
|
},
|
|
719
735
|
param: 'isEnabled',
|
|
720
736
|
defaultValue: false
|
|
737
|
+
}),
|
|
738
|
+
// Added 2025-08-19
|
|
739
|
+
platform_editor_breakout_resizing_vc90_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
740
|
+
productKeys: {
|
|
741
|
+
confluence: 'platform_editor_breakout_resizing_vc90_fix'
|
|
742
|
+
},
|
|
743
|
+
param: 'isEnabled',
|
|
744
|
+
defaultValue: false
|
|
721
745
|
})
|
|
722
746
|
};
|
|
@@ -57,5 +57,6 @@ export const testBooleanOverrides = {
|
|
|
57
57
|
cc_editor_ufo_hold_table_till_resize_complete: false,
|
|
58
58
|
platform_editor_toggle_expand_on_match_found: false,
|
|
59
59
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
60
|
+
cc_improve_writing_on_paste: false,
|
|
60
61
|
platform_editor_ai_aifc: false
|
|
61
62
|
};
|
|
@@ -705,6 +705,22 @@ export const editorExperimentsConfig = {
|
|
|
705
705
|
param: 'isEnabled',
|
|
706
706
|
defaultValue: false
|
|
707
707
|
}),
|
|
708
|
+
// Added 2025-08-06
|
|
709
|
+
cc_improve_writing_on_paste: createBooleanExperiment({
|
|
710
|
+
productKeys: {
|
|
711
|
+
confluence: 'cc_improve_writing_on_paste'
|
|
712
|
+
},
|
|
713
|
+
param: 'isEnabled',
|
|
714
|
+
defaultValue: false
|
|
715
|
+
}),
|
|
716
|
+
// Added 2025-08-18
|
|
717
|
+
platform_editor_locale_datepicker: createBooleanExperiment({
|
|
718
|
+
productKeys: {
|
|
719
|
+
confluence: 'platform_editor_locale_datepicker'
|
|
720
|
+
},
|
|
721
|
+
param: 'isEnabled',
|
|
722
|
+
defaultValue: false
|
|
723
|
+
}),
|
|
708
724
|
// Added 2025-08-18
|
|
709
725
|
platform_editor_find_replace_a11y_fixes: createBooleanExperiment({
|
|
710
726
|
productKeys: {
|
|
@@ -712,5 +728,13 @@ export const editorExperimentsConfig = {
|
|
|
712
728
|
},
|
|
713
729
|
param: 'isEnabled',
|
|
714
730
|
defaultValue: false
|
|
731
|
+
}),
|
|
732
|
+
// Added 2025-08-19
|
|
733
|
+
platform_editor_breakout_resizing_vc90_fix: createBooleanExperiment({
|
|
734
|
+
productKeys: {
|
|
735
|
+
confluence: 'platform_editor_breakout_resizing_vc90_fix'
|
|
736
|
+
},
|
|
737
|
+
param: 'isEnabled',
|
|
738
|
+
defaultValue: false
|
|
715
739
|
})
|
|
716
740
|
};
|
|
@@ -57,5 +57,6 @@ export var testBooleanOverrides = {
|
|
|
57
57
|
cc_editor_ufo_hold_table_till_resize_complete: false,
|
|
58
58
|
platform_editor_toggle_expand_on_match_found: false,
|
|
59
59
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
60
|
+
cc_improve_writing_on_paste: false,
|
|
60
61
|
platform_editor_ai_aifc: false
|
|
61
62
|
};
|
|
@@ -705,6 +705,22 @@ export var editorExperimentsConfig = {
|
|
|
705
705
|
param: 'isEnabled',
|
|
706
706
|
defaultValue: false
|
|
707
707
|
}),
|
|
708
|
+
// Added 2025-08-06
|
|
709
|
+
cc_improve_writing_on_paste: createBooleanExperiment({
|
|
710
|
+
productKeys: {
|
|
711
|
+
confluence: 'cc_improve_writing_on_paste'
|
|
712
|
+
},
|
|
713
|
+
param: 'isEnabled',
|
|
714
|
+
defaultValue: false
|
|
715
|
+
}),
|
|
716
|
+
// Added 2025-08-18
|
|
717
|
+
platform_editor_locale_datepicker: createBooleanExperiment({
|
|
718
|
+
productKeys: {
|
|
719
|
+
confluence: 'platform_editor_locale_datepicker'
|
|
720
|
+
},
|
|
721
|
+
param: 'isEnabled',
|
|
722
|
+
defaultValue: false
|
|
723
|
+
}),
|
|
708
724
|
// Added 2025-08-18
|
|
709
725
|
platform_editor_find_replace_a11y_fixes: createBooleanExperiment({
|
|
710
726
|
productKeys: {
|
|
@@ -712,5 +728,13 @@ export var editorExperimentsConfig = {
|
|
|
712
728
|
},
|
|
713
729
|
param: 'isEnabled',
|
|
714
730
|
defaultValue: false
|
|
731
|
+
}),
|
|
732
|
+
// Added 2025-08-19
|
|
733
|
+
platform_editor_breakout_resizing_vc90_fix: createBooleanExperiment({
|
|
734
|
+
productKeys: {
|
|
735
|
+
confluence: 'platform_editor_breakout_resizing_vc90_fix'
|
|
736
|
+
},
|
|
737
|
+
param: 'isEnabled',
|
|
738
|
+
defaultValue: false
|
|
715
739
|
})
|
|
716
740
|
};
|
|
@@ -526,10 +526,28 @@ export declare const editorExperimentsConfig: {
|
|
|
526
526
|
productKeys?: import("./types").ProductKeys;
|
|
527
527
|
param: string;
|
|
528
528
|
};
|
|
529
|
+
cc_improve_writing_on_paste: {
|
|
530
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
531
|
+
defaultValue: boolean;
|
|
532
|
+
productKeys?: import("./types").ProductKeys;
|
|
533
|
+
param: string;
|
|
534
|
+
};
|
|
535
|
+
platform_editor_locale_datepicker: {
|
|
536
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
537
|
+
defaultValue: boolean;
|
|
538
|
+
productKeys?: import("./types").ProductKeys;
|
|
539
|
+
param: string;
|
|
540
|
+
};
|
|
529
541
|
platform_editor_find_replace_a11y_fixes: {
|
|
530
542
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
531
543
|
defaultValue: boolean;
|
|
532
544
|
productKeys?: import("./types").ProductKeys;
|
|
533
545
|
param: string;
|
|
534
546
|
};
|
|
547
|
+
platform_editor_breakout_resizing_vc90_fix: {
|
|
548
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
549
|
+
defaultValue: boolean;
|
|
550
|
+
productKeys?: import("./types").ProductKeys;
|
|
551
|
+
param: string;
|
|
552
|
+
};
|
|
535
553
|
};
|
|
@@ -526,10 +526,28 @@ export declare const editorExperimentsConfig: {
|
|
|
526
526
|
productKeys?: import("./types").ProductKeys;
|
|
527
527
|
param: string;
|
|
528
528
|
};
|
|
529
|
+
cc_improve_writing_on_paste: {
|
|
530
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
531
|
+
defaultValue: boolean;
|
|
532
|
+
productKeys?: import("./types").ProductKeys;
|
|
533
|
+
param: string;
|
|
534
|
+
};
|
|
535
|
+
platform_editor_locale_datepicker: {
|
|
536
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
537
|
+
defaultValue: boolean;
|
|
538
|
+
productKeys?: import("./types").ProductKeys;
|
|
539
|
+
param: string;
|
|
540
|
+
};
|
|
529
541
|
platform_editor_find_replace_a11y_fixes: {
|
|
530
542
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
531
543
|
defaultValue: boolean;
|
|
532
544
|
productKeys?: import("./types").ProductKeys;
|
|
533
545
|
param: string;
|
|
534
546
|
};
|
|
547
|
+
platform_editor_breakout_resizing_vc90_fix: {
|
|
548
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
549
|
+
defaultValue: boolean;
|
|
550
|
+
productKeys?: import("./types").ProductKeys;
|
|
551
|
+
param: string;
|
|
552
|
+
};
|
|
535
553
|
};
|
package/package.json
CHANGED