@atlaskit/tmp-editor-statsig 16.9.0 → 16.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 16.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`acd81a73a9a20`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/acd81a73a9a20) -
|
|
8
|
+
[ux] EDITOR-4259 Set table ref when table is rendered
|
|
9
|
+
|
|
3
10
|
## 16.9.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -594,6 +594,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
594
594
|
values: ['control', 'css_changes_only', 'css_js_changes'],
|
|
595
595
|
defaultValue: 'control'
|
|
596
596
|
}),
|
|
597
|
+
// Added 2026-01-05
|
|
598
|
+
platform_editor_table_update_table_ref: (0, _experimentBuilders.createBooleanExperiment)({
|
|
599
|
+
productKeys: {
|
|
600
|
+
confluence: 'platform_editor_table_update_table_ref'
|
|
601
|
+
},
|
|
602
|
+
param: 'isEnabled',
|
|
603
|
+
defaultValue: false
|
|
604
|
+
}),
|
|
597
605
|
// Added 2025-08-17
|
|
598
606
|
platform_hover_card_preview_panel: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
599
607
|
productKeys: {
|
|
@@ -588,6 +588,14 @@ export const editorExperimentsConfig = {
|
|
|
588
588
|
values: ['control', 'css_changes_only', 'css_js_changes'],
|
|
589
589
|
defaultValue: 'control'
|
|
590
590
|
}),
|
|
591
|
+
// Added 2026-01-05
|
|
592
|
+
platform_editor_table_update_table_ref: createBooleanExperiment({
|
|
593
|
+
productKeys: {
|
|
594
|
+
confluence: 'platform_editor_table_update_table_ref'
|
|
595
|
+
},
|
|
596
|
+
param: 'isEnabled',
|
|
597
|
+
defaultValue: false
|
|
598
|
+
}),
|
|
591
599
|
// Added 2025-08-17
|
|
592
600
|
platform_hover_card_preview_panel: createMultivariateExperiment({
|
|
593
601
|
productKeys: {
|
|
@@ -588,6 +588,14 @@ export var editorExperimentsConfig = {
|
|
|
588
588
|
values: ['control', 'css_changes_only', 'css_js_changes'],
|
|
589
589
|
defaultValue: 'control'
|
|
590
590
|
}),
|
|
591
|
+
// Added 2026-01-05
|
|
592
|
+
platform_editor_table_update_table_ref: createBooleanExperiment({
|
|
593
|
+
productKeys: {
|
|
594
|
+
confluence: 'platform_editor_table_update_table_ref'
|
|
595
|
+
},
|
|
596
|
+
param: 'isEnabled',
|
|
597
|
+
defaultValue: false
|
|
598
|
+
}),
|
|
591
599
|
// Added 2025-08-17
|
|
592
600
|
platform_hover_card_preview_panel: createMultivariateExperiment({
|
|
593
601
|
productKeys: {
|
|
@@ -706,6 +706,12 @@ export declare const editorExperimentsConfig: {
|
|
|
706
706
|
productKeys?: ProductKeys;
|
|
707
707
|
typeGuard: IsBooleanType;
|
|
708
708
|
};
|
|
709
|
+
platform_editor_table_update_table_ref: {
|
|
710
|
+
defaultValue: boolean;
|
|
711
|
+
param: string;
|
|
712
|
+
productKeys?: ProductKeys;
|
|
713
|
+
typeGuard: IsBooleanType;
|
|
714
|
+
};
|
|
709
715
|
platform_editor_wait_for_space_after_ascii_emoji: {
|
|
710
716
|
defaultValue: boolean;
|
|
711
717
|
param: string;
|
|
@@ -706,6 +706,12 @@ export declare const editorExperimentsConfig: {
|
|
|
706
706
|
productKeys?: ProductKeys;
|
|
707
707
|
typeGuard: IsBooleanType;
|
|
708
708
|
};
|
|
709
|
+
platform_editor_table_update_table_ref: {
|
|
710
|
+
defaultValue: boolean;
|
|
711
|
+
param: string;
|
|
712
|
+
productKeys?: ProductKeys;
|
|
713
|
+
typeGuard: IsBooleanType;
|
|
714
|
+
};
|
|
709
715
|
platform_editor_wait_for_space_after_ascii_emoji: {
|
|
710
716
|
defaultValue: boolean;
|
|
711
717
|
param: string;
|
package/package.json
CHANGED