@atlaskit/tmp-editor-statsig 120.1.1 → 121.0.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,45 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 121.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`b67c7dccca994`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b67c7dccca994) -
|
|
8
|
+
Clean up experiment `fix_free_gen_prompt_bar_position`
|
|
9
|
+
|
|
10
|
+
### Minor Changes
|
|
11
|
+
|
|
12
|
+
- [`898ff90892bee`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/898ff90892bee) -
|
|
13
|
+
Clean up experiment `platform_editor_ai_loading_responsive_width`
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
19
|
+
## 120.2.0
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- [`bbf34983a5daf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bbf34983a5daf) -
|
|
24
|
+
Add an opt-in `--ak-editor-extension-block-spacing` CSS custom property hook that controls the
|
|
25
|
+
vertical margin between editor block elements (paragraphs, lists, panels, code blocks,
|
|
26
|
+
blockquotes, smart cards and extension wrappers).
|
|
27
|
+
|
|
28
|
+
`@atlaskit/editor-common` declares and exports `EXTENSION_BLOCK_SPACING_VAR` from the
|
|
29
|
+
`@atlaskit/editor-common/extensibility` entry point. When the new
|
|
30
|
+
`platform_editor_extension_block_spacing` editor experiment is enabled, the block-margin rules in
|
|
31
|
+
`@atlaskit/editor-core` (both the Compiled and Emotion `EditorContentContainer` paths) and the
|
|
32
|
+
extension wrappers in `editor-common` read from this variable, falling back to their original
|
|
33
|
+
values (e.g. `var(--ak-editor-extension-block-spacing, 0.75rem)`).
|
|
34
|
+
|
|
35
|
+
The change is gated behind the experiment so it can be disabled centrally and its SSR/layout
|
|
36
|
+
performance impact tracked. When the experiment is off — the default for every consumer — the
|
|
37
|
+
original margin values are used and there is no visual change.
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- Updated dependencies
|
|
42
|
+
|
|
3
43
|
## 120.1.1
|
|
4
44
|
|
|
5
45
|
### Patch Changes
|
|
@@ -1167,15 +1167,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1167
1167
|
defaultValue: false
|
|
1168
1168
|
}),
|
|
1169
1169
|
// Added 2026-01-22
|
|
1170
|
-
platform_editor_ai_loading_responsive_width: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1171
|
-
productKeys: {
|
|
1172
|
-
confluence: 'platform_editor_ai_loading_responsive_width',
|
|
1173
|
-
jira: 'platform_editor_ai_loading_responsive_width'
|
|
1174
|
-
},
|
|
1175
|
-
param: 'isEnabled',
|
|
1176
|
-
defaultValue: false
|
|
1177
|
-
}),
|
|
1178
|
-
// Added 2026-01-22
|
|
1179
1170
|
platform_editor_nested_drag_handle_icon: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1180
1171
|
productKeys: {
|
|
1181
1172
|
confluence: 'platform_editor_nested_drag_handle_icon'
|
|
@@ -2201,14 +2192,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2201
2192
|
param: 'isEnabled',
|
|
2202
2193
|
defaultValue: false
|
|
2203
2194
|
}),
|
|
2204
|
-
// Added 2026-05-21
|
|
2205
|
-
fix_free_gen_prompt_bar_position: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2206
|
-
productKeys: {
|
|
2207
|
-
confluence: 'fix_free_gen_prompt_bar_position'
|
|
2208
|
-
},
|
|
2209
|
-
param: 'isEnabled',
|
|
2210
|
-
defaultValue: false
|
|
2211
|
-
}),
|
|
2212
2195
|
// Added 2026-05-25
|
|
2213
2196
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2214
2197
|
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
@@ -2311,6 +2294,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2311
2294
|
param: 'useCcSmarts',
|
|
2312
2295
|
defaultValue: false
|
|
2313
2296
|
}),
|
|
2297
|
+
// Added 2026-06-24 — HUBS-850 — gates the --ak-editor-extension-block-spacing block-margin hook
|
|
2298
|
+
platform_editor_extension_block_spacing: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2299
|
+
productKeys: {
|
|
2300
|
+
confluence: 'platform_editor_extension_block_spacing',
|
|
2301
|
+
jira: 'platform_editor_extension_block_spacing'
|
|
2302
|
+
},
|
|
2303
|
+
param: 'isEnabled',
|
|
2304
|
+
defaultValue: false
|
|
2305
|
+
}),
|
|
2314
2306
|
// Added 2026-06-19
|
|
2315
2307
|
platform_editor_lovability_resize_dividers_panels: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2316
2308
|
productKeys: {
|
|
@@ -1161,15 +1161,6 @@ export const editorExperimentsConfig = {
|
|
|
1161
1161
|
defaultValue: false
|
|
1162
1162
|
}),
|
|
1163
1163
|
// Added 2026-01-22
|
|
1164
|
-
platform_editor_ai_loading_responsive_width: createBooleanExperiment({
|
|
1165
|
-
productKeys: {
|
|
1166
|
-
confluence: 'platform_editor_ai_loading_responsive_width',
|
|
1167
|
-
jira: 'platform_editor_ai_loading_responsive_width'
|
|
1168
|
-
},
|
|
1169
|
-
param: 'isEnabled',
|
|
1170
|
-
defaultValue: false
|
|
1171
|
-
}),
|
|
1172
|
-
// Added 2026-01-22
|
|
1173
1164
|
platform_editor_nested_drag_handle_icon: createBooleanExperiment({
|
|
1174
1165
|
productKeys: {
|
|
1175
1166
|
confluence: 'platform_editor_nested_drag_handle_icon'
|
|
@@ -2195,14 +2186,6 @@ export const editorExperimentsConfig = {
|
|
|
2195
2186
|
param: 'isEnabled',
|
|
2196
2187
|
defaultValue: false
|
|
2197
2188
|
}),
|
|
2198
|
-
// Added 2026-05-21
|
|
2199
|
-
fix_free_gen_prompt_bar_position: createBooleanExperiment({
|
|
2200
|
-
productKeys: {
|
|
2201
|
-
confluence: 'fix_free_gen_prompt_bar_position'
|
|
2202
|
-
},
|
|
2203
|
-
param: 'isEnabled',
|
|
2204
|
-
defaultValue: false
|
|
2205
|
-
}),
|
|
2206
2189
|
// Added 2026-05-25
|
|
2207
2190
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2208
2191
|
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
@@ -2305,6 +2288,15 @@ export const editorExperimentsConfig = {
|
|
|
2305
2288
|
param: 'useCcSmarts',
|
|
2306
2289
|
defaultValue: false
|
|
2307
2290
|
}),
|
|
2291
|
+
// Added 2026-06-24 — HUBS-850 — gates the --ak-editor-extension-block-spacing block-margin hook
|
|
2292
|
+
platform_editor_extension_block_spacing: createBooleanExperiment({
|
|
2293
|
+
productKeys: {
|
|
2294
|
+
confluence: 'platform_editor_extension_block_spacing',
|
|
2295
|
+
jira: 'platform_editor_extension_block_spacing'
|
|
2296
|
+
},
|
|
2297
|
+
param: 'isEnabled',
|
|
2298
|
+
defaultValue: false
|
|
2299
|
+
}),
|
|
2308
2300
|
// Added 2026-06-19
|
|
2309
2301
|
platform_editor_lovability_resize_dividers_panels: createBooleanExperiment({
|
|
2310
2302
|
productKeys: {
|
|
@@ -1161,15 +1161,6 @@ export var editorExperimentsConfig = {
|
|
|
1161
1161
|
defaultValue: false
|
|
1162
1162
|
}),
|
|
1163
1163
|
// Added 2026-01-22
|
|
1164
|
-
platform_editor_ai_loading_responsive_width: createBooleanExperiment({
|
|
1165
|
-
productKeys: {
|
|
1166
|
-
confluence: 'platform_editor_ai_loading_responsive_width',
|
|
1167
|
-
jira: 'platform_editor_ai_loading_responsive_width'
|
|
1168
|
-
},
|
|
1169
|
-
param: 'isEnabled',
|
|
1170
|
-
defaultValue: false
|
|
1171
|
-
}),
|
|
1172
|
-
// Added 2026-01-22
|
|
1173
1164
|
platform_editor_nested_drag_handle_icon: createBooleanExperiment({
|
|
1174
1165
|
productKeys: {
|
|
1175
1166
|
confluence: 'platform_editor_nested_drag_handle_icon'
|
|
@@ -2195,14 +2186,6 @@ export var editorExperimentsConfig = {
|
|
|
2195
2186
|
param: 'isEnabled',
|
|
2196
2187
|
defaultValue: false
|
|
2197
2188
|
}),
|
|
2198
|
-
// Added 2026-05-21
|
|
2199
|
-
fix_free_gen_prompt_bar_position: createBooleanExperiment({
|
|
2200
|
-
productKeys: {
|
|
2201
|
-
confluence: 'fix_free_gen_prompt_bar_position'
|
|
2202
|
-
},
|
|
2203
|
-
param: 'isEnabled',
|
|
2204
|
-
defaultValue: false
|
|
2205
|
-
}),
|
|
2206
2189
|
// Added 2026-05-25
|
|
2207
2190
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2208
2191
|
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
@@ -2305,6 +2288,15 @@ export var editorExperimentsConfig = {
|
|
|
2305
2288
|
param: 'useCcSmarts',
|
|
2306
2289
|
defaultValue: false
|
|
2307
2290
|
}),
|
|
2291
|
+
// Added 2026-06-24 — HUBS-850 — gates the --ak-editor-extension-block-spacing block-margin hook
|
|
2292
|
+
platform_editor_extension_block_spacing: createBooleanExperiment({
|
|
2293
|
+
productKeys: {
|
|
2294
|
+
confluence: 'platform_editor_extension_block_spacing',
|
|
2295
|
+
jira: 'platform_editor_extension_block_spacing'
|
|
2296
|
+
},
|
|
2297
|
+
param: 'isEnabled',
|
|
2298
|
+
defaultValue: false
|
|
2299
|
+
}),
|
|
2308
2300
|
// Added 2026-06-19
|
|
2309
2301
|
platform_editor_lovability_resize_dividers_panels: createBooleanExperiment({
|
|
2310
2302
|
productKeys: {
|
|
@@ -846,12 +846,6 @@ export declare const editorExperimentsConfig: {
|
|
|
846
846
|
productKeys?: ProductKeys;
|
|
847
847
|
typeGuard: IsBooleanType;
|
|
848
848
|
};
|
|
849
|
-
platform_editor_ai_loading_responsive_width: {
|
|
850
|
-
defaultValue: boolean;
|
|
851
|
-
param: string;
|
|
852
|
-
productKeys?: ProductKeys;
|
|
853
|
-
typeGuard: IsBooleanType;
|
|
854
|
-
};
|
|
855
849
|
platform_editor_nested_drag_handle_icon: {
|
|
856
850
|
defaultValue: boolean;
|
|
857
851
|
param: string;
|
|
@@ -1611,12 +1605,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1611
1605
|
productKeys?: ProductKeys;
|
|
1612
1606
|
typeGuard: IsBooleanType;
|
|
1613
1607
|
};
|
|
1614
|
-
fix_free_gen_prompt_bar_position: {
|
|
1615
|
-
defaultValue: boolean;
|
|
1616
|
-
param: string;
|
|
1617
|
-
productKeys?: ProductKeys;
|
|
1618
|
-
typeGuard: IsBooleanType;
|
|
1619
|
-
};
|
|
1620
1608
|
platform_editor_use_html_plus_streaming_parser: {
|
|
1621
1609
|
defaultValue: boolean;
|
|
1622
1610
|
param: string;
|
|
@@ -1683,6 +1671,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1683
1671
|
productKeys?: ProductKeys;
|
|
1684
1672
|
typeGuard: IsBooleanType;
|
|
1685
1673
|
};
|
|
1674
|
+
platform_editor_extension_block_spacing: {
|
|
1675
|
+
defaultValue: boolean;
|
|
1676
|
+
param: string;
|
|
1677
|
+
productKeys?: ProductKeys;
|
|
1678
|
+
typeGuard: IsBooleanType;
|
|
1679
|
+
};
|
|
1686
1680
|
platform_editor_lovability_resize_dividers_panels: {
|
|
1687
1681
|
defaultValue: boolean;
|
|
1688
1682
|
param: string;
|
package/package.json
CHANGED