@atlaskit/tmp-editor-statsig 12.19.0 → 12.21.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,19 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 12.21.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`553afc302139b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/553afc302139b) -
8
+ Add analytic emitter component which fires an event when dropdowns are viewed
9
+
10
+ ## 12.20.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`28ca2de894404`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/28ca2de894404) -
15
+ ENGHEALTH-40158 fix inline image button in media element menu missing aria-checked when unselected
16
+
3
17
  ## 12.19.0
4
18
 
5
19
  ### Minor Changes
@@ -209,6 +209,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
209
209
  param: 'isEnabled',
210
210
  defaultValue: false
211
211
  }),
212
+ platform_editor_toolbar_aifc_toolbar_analytic: (0, _experimentBuilders.createBooleanExperiment)({
213
+ productKeys: {
214
+ confluence: 'platform_editor_toolbar_aifc_toolbar_analytic',
215
+ jira: 'platform_editor_toolbar_aifc_toolbar_analytic'
216
+ },
217
+ param: 'isEnabled',
218
+ defaultValue: false
219
+ }),
212
220
  // Added 2025-02-10
213
221
  platform_editor_controls: (0, _experimentBuilders.createMultivariateExperiment)({
214
222
  productKeys: {
@@ -966,6 +974,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
966
974
  param: 'isEnabled',
967
975
  defaultValue: false
968
976
  }),
977
+ // Added 2025-09-11
978
+ platform_editor_add_aria_checked_to_inline_img_btn: (0, _experimentBuilders.createBooleanExperiment)({
979
+ productKeys: {
980
+ confluence: 'platform_editor_add_aria_checked_to_inline_image_btn'
981
+ },
982
+ param: 'isEnabled',
983
+ defaultValue: false
984
+ }),
969
985
  // Added 2025-09-09
970
986
  platform_editor_layout_node_view_early_exit: (0, _experimentBuilders.createBooleanExperiment)({
971
987
  productKeys: {
@@ -203,6 +203,14 @@ export const editorExperimentsConfig = {
203
203
  param: 'isEnabled',
204
204
  defaultValue: false
205
205
  }),
206
+ platform_editor_toolbar_aifc_toolbar_analytic: createBooleanExperiment({
207
+ productKeys: {
208
+ confluence: 'platform_editor_toolbar_aifc_toolbar_analytic',
209
+ jira: 'platform_editor_toolbar_aifc_toolbar_analytic'
210
+ },
211
+ param: 'isEnabled',
212
+ defaultValue: false
213
+ }),
206
214
  // Added 2025-02-10
207
215
  platform_editor_controls: createMultivariateExperiment({
208
216
  productKeys: {
@@ -960,6 +968,14 @@ export const editorExperimentsConfig = {
960
968
  param: 'isEnabled',
961
969
  defaultValue: false
962
970
  }),
971
+ // Added 2025-09-11
972
+ platform_editor_add_aria_checked_to_inline_img_btn: createBooleanExperiment({
973
+ productKeys: {
974
+ confluence: 'platform_editor_add_aria_checked_to_inline_image_btn'
975
+ },
976
+ param: 'isEnabled',
977
+ defaultValue: false
978
+ }),
963
979
  // Added 2025-09-09
964
980
  platform_editor_layout_node_view_early_exit: createBooleanExperiment({
965
981
  productKeys: {
@@ -203,6 +203,14 @@ export var editorExperimentsConfig = {
203
203
  param: 'isEnabled',
204
204
  defaultValue: false
205
205
  }),
206
+ platform_editor_toolbar_aifc_toolbar_analytic: createBooleanExperiment({
207
+ productKeys: {
208
+ confluence: 'platform_editor_toolbar_aifc_toolbar_analytic',
209
+ jira: 'platform_editor_toolbar_aifc_toolbar_analytic'
210
+ },
211
+ param: 'isEnabled',
212
+ defaultValue: false
213
+ }),
206
214
  // Added 2025-02-10
207
215
  platform_editor_controls: createMultivariateExperiment({
208
216
  productKeys: {
@@ -960,6 +968,14 @@ export var editorExperimentsConfig = {
960
968
  param: 'isEnabled',
961
969
  defaultValue: false
962
970
  }),
971
+ // Added 2025-09-11
972
+ platform_editor_add_aria_checked_to_inline_img_btn: createBooleanExperiment({
973
+ productKeys: {
974
+ confluence: 'platform_editor_add_aria_checked_to_inline_image_btn'
975
+ },
976
+ param: 'isEnabled',
977
+ defaultValue: false
978
+ }),
963
979
  // Added 2025-09-09
964
980
  platform_editor_layout_node_view_early_exit: createBooleanExperiment({
965
981
  productKeys: {
@@ -151,6 +151,12 @@ export declare const editorExperimentsConfig: {
151
151
  param: string;
152
152
  productKeys?: import("./types").ProductKeys;
153
153
  };
154
+ platform_editor_toolbar_aifc_toolbar_analytic: {
155
+ typeGuard: typeof import("./type-guards").isBoolean;
156
+ defaultValue: boolean;
157
+ param: string;
158
+ productKeys?: import("./types").ProductKeys;
159
+ };
154
160
  platform_editor_controls: {
155
161
  values: ("control" | "variant1")[];
156
162
  typeGuard: (value: unknown) => value is "control" | "variant1";
@@ -708,6 +714,12 @@ export declare const editorExperimentsConfig: {
708
714
  param: string;
709
715
  productKeys?: import("./types").ProductKeys;
710
716
  };
717
+ platform_editor_add_aria_checked_to_inline_img_btn: {
718
+ typeGuard: typeof import("./type-guards").isBoolean;
719
+ defaultValue: boolean;
720
+ param: string;
721
+ productKeys?: import("./types").ProductKeys;
722
+ };
711
723
  platform_editor_layout_node_view_early_exit: {
712
724
  typeGuard: typeof import("./type-guards").isBoolean;
713
725
  defaultValue: boolean;
@@ -151,6 +151,12 @@ export declare const editorExperimentsConfig: {
151
151
  param: string;
152
152
  productKeys?: import("./types").ProductKeys;
153
153
  };
154
+ platform_editor_toolbar_aifc_toolbar_analytic: {
155
+ typeGuard: typeof import("./type-guards").isBoolean;
156
+ defaultValue: boolean;
157
+ param: string;
158
+ productKeys?: import("./types").ProductKeys;
159
+ };
154
160
  platform_editor_controls: {
155
161
  values: ("control" | "variant1")[];
156
162
  typeGuard: (value: unknown) => value is "control" | "variant1";
@@ -708,6 +714,12 @@ export declare const editorExperimentsConfig: {
708
714
  param: string;
709
715
  productKeys?: import("./types").ProductKeys;
710
716
  };
717
+ platform_editor_add_aria_checked_to_inline_img_btn: {
718
+ typeGuard: typeof import("./type-guards").isBoolean;
719
+ defaultValue: boolean;
720
+ param: string;
721
+ productKeys?: import("./types").ProductKeys;
722
+ };
711
723
  platform_editor_layout_node_view_early_exit: {
712
724
  typeGuard: typeof import("./type-guards").isBoolean;
713
725
  defaultValue: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "12.19.0",
3
+ "version": "12.21.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",