@atlaskit/tmp-editor-statsig 135.9.0 → 135.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,16 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 135.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`894f9e2ba765a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/894f9e2ba765a) -
|
|
8
|
+
Decouple paste-as-markdown GFM transformer rollout from `cc-markdown-mode` and gate it with the
|
|
9
|
+
new `platform_editor_paste_as_md_use_gfm` experiment for independent rollout control.
|
|
10
|
+
|
|
11
|
+
Consumers can gate the new transformer path with:
|
|
12
|
+
`expValEquals('platform_editor_paste_as_md_use_gfm', 'isEnabled', true)`.
|
|
13
|
+
|
|
3
14
|
## 135.9.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -1929,6 +1929,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1929
1929
|
param: 'isEnabled',
|
|
1930
1930
|
defaultValue: false
|
|
1931
1931
|
}),
|
|
1932
|
+
// Added 2026-07-28
|
|
1933
|
+
platform_editor_paste_as_md_use_gfm: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1934
|
+
productKeys: {
|
|
1935
|
+
confluence: 'platform_editor_paste_as_md_use_gfm'
|
|
1936
|
+
},
|
|
1937
|
+
param: 'isEnabled',
|
|
1938
|
+
defaultValue: false
|
|
1939
|
+
}),
|
|
1932
1940
|
// Added 2026-03-30
|
|
1933
1941
|
platform_editor_ai_xstate_migration: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1934
1942
|
productKeys: {
|
|
@@ -1923,6 +1923,14 @@ export const editorExperimentsConfig = {
|
|
|
1923
1923
|
param: 'isEnabled',
|
|
1924
1924
|
defaultValue: false
|
|
1925
1925
|
}),
|
|
1926
|
+
// Added 2026-07-28
|
|
1927
|
+
platform_editor_paste_as_md_use_gfm: createBooleanExperiment({
|
|
1928
|
+
productKeys: {
|
|
1929
|
+
confluence: 'platform_editor_paste_as_md_use_gfm'
|
|
1930
|
+
},
|
|
1931
|
+
param: 'isEnabled',
|
|
1932
|
+
defaultValue: false
|
|
1933
|
+
}),
|
|
1926
1934
|
// Added 2026-03-30
|
|
1927
1935
|
platform_editor_ai_xstate_migration: createBooleanExperiment({
|
|
1928
1936
|
productKeys: {
|
|
@@ -1923,6 +1923,14 @@ export var editorExperimentsConfig = {
|
|
|
1923
1923
|
param: 'isEnabled',
|
|
1924
1924
|
defaultValue: false
|
|
1925
1925
|
}),
|
|
1926
|
+
// Added 2026-07-28
|
|
1927
|
+
platform_editor_paste_as_md_use_gfm: createBooleanExperiment({
|
|
1928
|
+
productKeys: {
|
|
1929
|
+
confluence: 'platform_editor_paste_as_md_use_gfm'
|
|
1930
|
+
},
|
|
1931
|
+
param: 'isEnabled',
|
|
1932
|
+
defaultValue: false
|
|
1933
|
+
}),
|
|
1926
1934
|
// Added 2026-03-30
|
|
1927
1935
|
platform_editor_ai_xstate_migration: createBooleanExperiment({
|
|
1928
1936
|
productKeys: {
|
|
@@ -508,6 +508,12 @@ export declare const editorExperimentsConfig: {
|
|
|
508
508
|
productKeys?: ProductKeys;
|
|
509
509
|
typeGuard: IsBooleanType;
|
|
510
510
|
};
|
|
511
|
+
platform_editor_paste_as_md_use_gfm: {
|
|
512
|
+
defaultValue: boolean;
|
|
513
|
+
param: string;
|
|
514
|
+
productKeys?: ProductKeys;
|
|
515
|
+
typeGuard: IsBooleanType;
|
|
516
|
+
};
|
|
511
517
|
platform_editor_exp_lazy_node_views: {
|
|
512
518
|
defaultValue: boolean;
|
|
513
519
|
param: string;
|
package/package.json
CHANGED