@atlaskit/tmp-editor-statsig 11.1.0 → 11.3.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 +21 -0
- package/dist/cjs/experiments-config.js +24 -0
- package/dist/es2019/experiments-config.js +24 -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.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`45b7e7965939b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/45b7e7965939b) -
|
|
8
|
+
[ux] [I18N-2877] add locale to datepicker i18n and day of week
|
|
9
|
+
- [`205cf133d4d59`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/205cf133d4d59) -
|
|
10
|
+
[ux] Update max width for breakout to be the same as for non-breakout nodes to fix vc90 regression
|
|
11
|
+
behind platform_editor_breakout_resizing_vc90_fix and platform_editor_breakout_resizing
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
17
|
+
## 11.2.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- [`3d41d42ada6d5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3d41d42ada6d5) -
|
|
22
|
+
[ED-28600] add new experiment for A11Y violation fixes
|
|
23
|
+
|
|
3
24
|
## 11.1.0
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
|
@@ -710,5 +710,29 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
710
710
|
},
|
|
711
711
|
param: 'isEnabled',
|
|
712
712
|
defaultValue: false
|
|
713
|
+
}),
|
|
714
|
+
// Added 2025-08-18
|
|
715
|
+
platform_editor_locale_datepicker: (0, _experimentBuilders.createBooleanExperiment)({
|
|
716
|
+
productKeys: {
|
|
717
|
+
confluence: 'platform_editor_locale_datepicker'
|
|
718
|
+
},
|
|
719
|
+
param: 'isEnabled',
|
|
720
|
+
defaultValue: false
|
|
721
|
+
}),
|
|
722
|
+
// Added 2025-08-18
|
|
723
|
+
platform_editor_find_replace_a11y_fixes: (0, _experimentBuilders.createBooleanExperiment)({
|
|
724
|
+
productKeys: {
|
|
725
|
+
confluence: 'platform_editor_find_replace_a11y_fixes'
|
|
726
|
+
},
|
|
727
|
+
param: 'isEnabled',
|
|
728
|
+
defaultValue: false
|
|
729
|
+
}),
|
|
730
|
+
// Added 2025-08-19
|
|
731
|
+
platform_editor_breakout_resizing_vc90_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
732
|
+
productKeys: {
|
|
733
|
+
confluence: 'platform_editor_breakout_resizing_vc90_fix'
|
|
734
|
+
},
|
|
735
|
+
param: 'isEnabled',
|
|
736
|
+
defaultValue: false
|
|
713
737
|
})
|
|
714
738
|
};
|
|
@@ -704,5 +704,29 @@ export const editorExperimentsConfig = {
|
|
|
704
704
|
},
|
|
705
705
|
param: 'isEnabled',
|
|
706
706
|
defaultValue: false
|
|
707
|
+
}),
|
|
708
|
+
// Added 2025-08-18
|
|
709
|
+
platform_editor_locale_datepicker: createBooleanExperiment({
|
|
710
|
+
productKeys: {
|
|
711
|
+
confluence: 'platform_editor_locale_datepicker'
|
|
712
|
+
},
|
|
713
|
+
param: 'isEnabled',
|
|
714
|
+
defaultValue: false
|
|
715
|
+
}),
|
|
716
|
+
// Added 2025-08-18
|
|
717
|
+
platform_editor_find_replace_a11y_fixes: createBooleanExperiment({
|
|
718
|
+
productKeys: {
|
|
719
|
+
confluence: 'platform_editor_find_replace_a11y_fixes'
|
|
720
|
+
},
|
|
721
|
+
param: 'isEnabled',
|
|
722
|
+
defaultValue: false
|
|
723
|
+
}),
|
|
724
|
+
// Added 2025-08-19
|
|
725
|
+
platform_editor_breakout_resizing_vc90_fix: createBooleanExperiment({
|
|
726
|
+
productKeys: {
|
|
727
|
+
confluence: 'platform_editor_breakout_resizing_vc90_fix'
|
|
728
|
+
},
|
|
729
|
+
param: 'isEnabled',
|
|
730
|
+
defaultValue: false
|
|
707
731
|
})
|
|
708
732
|
};
|
|
@@ -704,5 +704,29 @@ export var editorExperimentsConfig = {
|
|
|
704
704
|
},
|
|
705
705
|
param: 'isEnabled',
|
|
706
706
|
defaultValue: false
|
|
707
|
+
}),
|
|
708
|
+
// Added 2025-08-18
|
|
709
|
+
platform_editor_locale_datepicker: createBooleanExperiment({
|
|
710
|
+
productKeys: {
|
|
711
|
+
confluence: 'platform_editor_locale_datepicker'
|
|
712
|
+
},
|
|
713
|
+
param: 'isEnabled',
|
|
714
|
+
defaultValue: false
|
|
715
|
+
}),
|
|
716
|
+
// Added 2025-08-18
|
|
717
|
+
platform_editor_find_replace_a11y_fixes: createBooleanExperiment({
|
|
718
|
+
productKeys: {
|
|
719
|
+
confluence: 'platform_editor_find_replace_a11y_fixes'
|
|
720
|
+
},
|
|
721
|
+
param: 'isEnabled',
|
|
722
|
+
defaultValue: false
|
|
723
|
+
}),
|
|
724
|
+
// Added 2025-08-19
|
|
725
|
+
platform_editor_breakout_resizing_vc90_fix: createBooleanExperiment({
|
|
726
|
+
productKeys: {
|
|
727
|
+
confluence: 'platform_editor_breakout_resizing_vc90_fix'
|
|
728
|
+
},
|
|
729
|
+
param: 'isEnabled',
|
|
730
|
+
defaultValue: false
|
|
707
731
|
})
|
|
708
732
|
};
|
|
@@ -526,4 +526,22 @@ export declare const editorExperimentsConfig: {
|
|
|
526
526
|
productKeys?: import("./types").ProductKeys;
|
|
527
527
|
param: string;
|
|
528
528
|
};
|
|
529
|
+
platform_editor_locale_datepicker: {
|
|
530
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
531
|
+
defaultValue: boolean;
|
|
532
|
+
productKeys?: import("./types").ProductKeys;
|
|
533
|
+
param: string;
|
|
534
|
+
};
|
|
535
|
+
platform_editor_find_replace_a11y_fixes: {
|
|
536
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
537
|
+
defaultValue: boolean;
|
|
538
|
+
productKeys?: import("./types").ProductKeys;
|
|
539
|
+
param: string;
|
|
540
|
+
};
|
|
541
|
+
platform_editor_breakout_resizing_vc90_fix: {
|
|
542
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
543
|
+
defaultValue: boolean;
|
|
544
|
+
productKeys?: import("./types").ProductKeys;
|
|
545
|
+
param: string;
|
|
546
|
+
};
|
|
529
547
|
};
|
|
@@ -526,4 +526,22 @@ export declare const editorExperimentsConfig: {
|
|
|
526
526
|
productKeys?: import("./types").ProductKeys;
|
|
527
527
|
param: string;
|
|
528
528
|
};
|
|
529
|
+
platform_editor_locale_datepicker: {
|
|
530
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
531
|
+
defaultValue: boolean;
|
|
532
|
+
productKeys?: import("./types").ProductKeys;
|
|
533
|
+
param: string;
|
|
534
|
+
};
|
|
535
|
+
platform_editor_find_replace_a11y_fixes: {
|
|
536
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
537
|
+
defaultValue: boolean;
|
|
538
|
+
productKeys?: import("./types").ProductKeys;
|
|
539
|
+
param: string;
|
|
540
|
+
};
|
|
541
|
+
platform_editor_breakout_resizing_vc90_fix: {
|
|
542
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
543
|
+
defaultValue: boolean;
|
|
544
|
+
productKeys?: import("./types").ProductKeys;
|
|
545
|
+
param: string;
|
|
546
|
+
};
|
|
529
547
|
};
|
package/package.json
CHANGED