@atlaskit/tmp-editor-statsig 17.6.0 → 17.7.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,17 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 17.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`fe3cbbba3c6d6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fe3cbbba3c6d6) -
|
|
8
|
+
[EDITOR-4877](https://hello.jira.atlassian.cloud/browse/EDITOR-4877) - remove
|
|
9
|
+
queryCommandSupported from TableComponent
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 17.6.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -524,6 +524,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
524
524
|
param: 'isEnabled',
|
|
525
525
|
defaultValue: false
|
|
526
526
|
}),
|
|
527
|
+
platform_editor_disable_query_command_supported: (0, _experimentBuilders.createBooleanExperiment)({
|
|
528
|
+
productKeys: {
|
|
529
|
+
confluence: 'platform_editor_disable_query_command_supported'
|
|
530
|
+
},
|
|
531
|
+
param: 'isEnabled',
|
|
532
|
+
defaultValue: false
|
|
533
|
+
}),
|
|
527
534
|
// Added 2025-06-24
|
|
528
535
|
confluence_whiteboards_quick_insert: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
529
536
|
productKeys: {
|
|
@@ -518,6 +518,13 @@ export const editorExperimentsConfig = {
|
|
|
518
518
|
param: 'isEnabled',
|
|
519
519
|
defaultValue: false
|
|
520
520
|
}),
|
|
521
|
+
platform_editor_disable_query_command_supported: createBooleanExperiment({
|
|
522
|
+
productKeys: {
|
|
523
|
+
confluence: 'platform_editor_disable_query_command_supported'
|
|
524
|
+
},
|
|
525
|
+
param: 'isEnabled',
|
|
526
|
+
defaultValue: false
|
|
527
|
+
}),
|
|
521
528
|
// Added 2025-06-24
|
|
522
529
|
confluence_whiteboards_quick_insert: createMultivariateExperiment({
|
|
523
530
|
productKeys: {
|
|
@@ -518,6 +518,13 @@ export var editorExperimentsConfig = {
|
|
|
518
518
|
param: 'isEnabled',
|
|
519
519
|
defaultValue: false
|
|
520
520
|
}),
|
|
521
|
+
platform_editor_disable_query_command_supported: createBooleanExperiment({
|
|
522
|
+
productKeys: {
|
|
523
|
+
confluence: 'platform_editor_disable_query_command_supported'
|
|
524
|
+
},
|
|
525
|
+
param: 'isEnabled',
|
|
526
|
+
defaultValue: false
|
|
527
|
+
}),
|
|
521
528
|
// Added 2025-06-24
|
|
522
529
|
confluence_whiteboards_quick_insert: createMultivariateExperiment({
|
|
523
530
|
productKeys: {
|
|
@@ -236,6 +236,12 @@ export declare const editorExperimentsConfig: {
|
|
|
236
236
|
productKeys?: ProductKeys;
|
|
237
237
|
typeGuard: IsBooleanType;
|
|
238
238
|
};
|
|
239
|
+
platform_editor_disable_query_command_supported: {
|
|
240
|
+
defaultValue: boolean;
|
|
241
|
+
param: string;
|
|
242
|
+
productKeys?: ProductKeys;
|
|
243
|
+
typeGuard: IsBooleanType;
|
|
244
|
+
};
|
|
239
245
|
platform_editor_ai_unsplash_page_header: {
|
|
240
246
|
defaultValue: boolean;
|
|
241
247
|
param: string;
|
|
@@ -236,6 +236,12 @@ export declare const editorExperimentsConfig: {
|
|
|
236
236
|
productKeys?: ProductKeys;
|
|
237
237
|
typeGuard: IsBooleanType;
|
|
238
238
|
};
|
|
239
|
+
platform_editor_disable_query_command_supported: {
|
|
240
|
+
defaultValue: boolean;
|
|
241
|
+
param: string;
|
|
242
|
+
productKeys?: ProductKeys;
|
|
243
|
+
typeGuard: IsBooleanType;
|
|
244
|
+
};
|
|
239
245
|
platform_editor_ai_unsplash_page_header: {
|
|
240
246
|
defaultValue: boolean;
|
|
241
247
|
param: string;
|
package/package.json
CHANGED