@atlaskit/tmp-editor-statsig 16.34.0 → 16.35.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 16.35.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`e4a01f3fe5601`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e4a01f3fe5601) -
|
|
8
|
+
Uses the new parser only on creation in the bridge to fix some issues caused by the old parser.
|
|
9
|
+
|
|
3
10
|
## 16.34.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -142,6 +142,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
142
142
|
param: 'isEnabled',
|
|
143
143
|
defaultValue: false
|
|
144
144
|
}),
|
|
145
|
+
// Added 2026-01-26
|
|
146
|
+
platform_editor_ai_create_use_new_parser: (0, _experimentBuilders.createBooleanExperiment)({
|
|
147
|
+
productKeys: {
|
|
148
|
+
confluence: 'platform_editor_ai_create_use_new_parser'
|
|
149
|
+
},
|
|
150
|
+
param: 'isEnabled',
|
|
151
|
+
defaultValue: false
|
|
152
|
+
}),
|
|
145
153
|
// Added 2025-05-27
|
|
146
154
|
platform_editor_reduce_noisy_steps_ncs: (0, _experimentBuilders.createBooleanExperiment)({
|
|
147
155
|
productKeys: {
|
|
@@ -136,6 +136,14 @@ export const editorExperimentsConfig = {
|
|
|
136
136
|
param: 'isEnabled',
|
|
137
137
|
defaultValue: false
|
|
138
138
|
}),
|
|
139
|
+
// Added 2026-01-26
|
|
140
|
+
platform_editor_ai_create_use_new_parser: createBooleanExperiment({
|
|
141
|
+
productKeys: {
|
|
142
|
+
confluence: 'platform_editor_ai_create_use_new_parser'
|
|
143
|
+
},
|
|
144
|
+
param: 'isEnabled',
|
|
145
|
+
defaultValue: false
|
|
146
|
+
}),
|
|
139
147
|
// Added 2025-05-27
|
|
140
148
|
platform_editor_reduce_noisy_steps_ncs: createBooleanExperiment({
|
|
141
149
|
productKeys: {
|
|
@@ -136,6 +136,14 @@ export var editorExperimentsConfig = {
|
|
|
136
136
|
param: 'isEnabled',
|
|
137
137
|
defaultValue: false
|
|
138
138
|
}),
|
|
139
|
+
// Added 2026-01-26
|
|
140
|
+
platform_editor_ai_create_use_new_parser: createBooleanExperiment({
|
|
141
|
+
productKeys: {
|
|
142
|
+
confluence: 'platform_editor_ai_create_use_new_parser'
|
|
143
|
+
},
|
|
144
|
+
param: 'isEnabled',
|
|
145
|
+
defaultValue: false
|
|
146
|
+
}),
|
|
139
147
|
// Added 2025-05-27
|
|
140
148
|
platform_editor_reduce_noisy_steps_ncs: createBooleanExperiment({
|
|
141
149
|
productKeys: {
|
|
@@ -250,6 +250,12 @@ export declare const editorExperimentsConfig: {
|
|
|
250
250
|
productKeys?: ProductKeys;
|
|
251
251
|
typeGuard: IsBooleanType;
|
|
252
252
|
};
|
|
253
|
+
platform_editor_ai_create_use_new_parser: {
|
|
254
|
+
defaultValue: boolean;
|
|
255
|
+
param: string;
|
|
256
|
+
productKeys?: ProductKeys;
|
|
257
|
+
typeGuard: IsBooleanType;
|
|
258
|
+
};
|
|
253
259
|
platform_editor_august_a11y: {
|
|
254
260
|
defaultValue: boolean;
|
|
255
261
|
param: string;
|
|
@@ -250,6 +250,12 @@ export declare const editorExperimentsConfig: {
|
|
|
250
250
|
productKeys?: ProductKeys;
|
|
251
251
|
typeGuard: IsBooleanType;
|
|
252
252
|
};
|
|
253
|
+
platform_editor_ai_create_use_new_parser: {
|
|
254
|
+
defaultValue: boolean;
|
|
255
|
+
param: string;
|
|
256
|
+
productKeys?: ProductKeys;
|
|
257
|
+
typeGuard: IsBooleanType;
|
|
258
|
+
};
|
|
253
259
|
platform_editor_august_a11y: {
|
|
254
260
|
defaultValue: boolean;
|
|
255
261
|
param: string;
|
package/package.json
CHANGED