@atlaskit/tmp-editor-statsig 13.22.0 → 13.24.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,23 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 13.24.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`54ccde94eb18c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/54ccde94eb18c) -
8
+ ED-29459 Clean up platform_editor_toolbar_aifc_toolbar_analytic
9
+
10
+ ## 13.23.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`c6c113481c118`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c6c113481c118) -
15
+ Updates limited mode to include lcm sizes in decision to engage.
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 13.22.0
4
22
 
5
23
  ### Minor Changes
@@ -19,10 +19,17 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
19
19
  // Editor Platform experiments
20
20
  // lwoollard experiments
21
21
  // Added 03-09-2025
22
+ cc_editor_limited_mode_include_lcm: (0, _experimentBuilders.createBooleanExperiment)({
23
+ productKeys: {
24
+ confluence: 'cc_editor_limited_mode_include_lcm'
25
+ },
26
+ param: 'isEnabled',
27
+ defaultValue: false
28
+ }),
29
+ // Added 03-09-2025
22
30
  cc_editor_interactivity_monitoring: (0, _experimentBuilders.createBooleanExperiment)({
23
31
  productKeys: {
24
- confluence: 'cc_editor_interactivity_monitoring',
25
- jira: 'cc_editor_interactivity_monitoring'
32
+ confluence: 'cc_editor_interactivity_monitoring'
26
33
  },
27
34
  param: 'isEnabled',
28
35
  defaultValue: false
@@ -236,14 +243,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
236
243
  param: 'isEnabled',
237
244
  defaultValue: false
238
245
  }),
239
- platform_editor_toolbar_aifc_toolbar_analytic: (0, _experimentBuilders.createBooleanExperiment)({
240
- productKeys: {
241
- confluence: 'platform_editor_toolbar_aifc_toolbar_analytic',
242
- jira: 'platform_editor_toolbar_aifc_toolbar_analytic'
243
- },
244
- param: 'isEnabled',
245
- defaultValue: false
246
- }),
247
246
  // Added 2025-02-10
248
247
  platform_editor_controls: (0, _experimentBuilders.createMultivariateExperiment)({
249
248
  productKeys: {
@@ -13,10 +13,17 @@ export const editorExperimentsConfig = {
13
13
  // Editor Platform experiments
14
14
  // lwoollard experiments
15
15
  // Added 03-09-2025
16
+ cc_editor_limited_mode_include_lcm: createBooleanExperiment({
17
+ productKeys: {
18
+ confluence: 'cc_editor_limited_mode_include_lcm'
19
+ },
20
+ param: 'isEnabled',
21
+ defaultValue: false
22
+ }),
23
+ // Added 03-09-2025
16
24
  cc_editor_interactivity_monitoring: createBooleanExperiment({
17
25
  productKeys: {
18
- confluence: 'cc_editor_interactivity_monitoring',
19
- jira: 'cc_editor_interactivity_monitoring'
26
+ confluence: 'cc_editor_interactivity_monitoring'
20
27
  },
21
28
  param: 'isEnabled',
22
29
  defaultValue: false
@@ -230,14 +237,6 @@ export const editorExperimentsConfig = {
230
237
  param: 'isEnabled',
231
238
  defaultValue: false
232
239
  }),
233
- platform_editor_toolbar_aifc_toolbar_analytic: createBooleanExperiment({
234
- productKeys: {
235
- confluence: 'platform_editor_toolbar_aifc_toolbar_analytic',
236
- jira: 'platform_editor_toolbar_aifc_toolbar_analytic'
237
- },
238
- param: 'isEnabled',
239
- defaultValue: false
240
- }),
241
240
  // Added 2025-02-10
242
241
  platform_editor_controls: createMultivariateExperiment({
243
242
  productKeys: {
@@ -13,10 +13,17 @@ export var editorExperimentsConfig = {
13
13
  // Editor Platform experiments
14
14
  // lwoollard experiments
15
15
  // Added 03-09-2025
16
+ cc_editor_limited_mode_include_lcm: createBooleanExperiment({
17
+ productKeys: {
18
+ confluence: 'cc_editor_limited_mode_include_lcm'
19
+ },
20
+ param: 'isEnabled',
21
+ defaultValue: false
22
+ }),
23
+ // Added 03-09-2025
16
24
  cc_editor_interactivity_monitoring: createBooleanExperiment({
17
25
  productKeys: {
18
- confluence: 'cc_editor_interactivity_monitoring',
19
- jira: 'cc_editor_interactivity_monitoring'
26
+ confluence: 'cc_editor_interactivity_monitoring'
20
27
  },
21
28
  param: 'isEnabled',
22
29
  defaultValue: false
@@ -230,14 +237,6 @@ export var editorExperimentsConfig = {
230
237
  param: 'isEnabled',
231
238
  defaultValue: false
232
239
  }),
233
- platform_editor_toolbar_aifc_toolbar_analytic: createBooleanExperiment({
234
- productKeys: {
235
- confluence: 'platform_editor_toolbar_aifc_toolbar_analytic',
236
- jira: 'platform_editor_toolbar_aifc_toolbar_analytic'
237
- },
238
- param: 'isEnabled',
239
- defaultValue: false
240
- }),
241
240
  // Added 2025-02-10
242
241
  platform_editor_controls: createMultivariateExperiment({
243
242
  productKeys: {
@@ -5,6 +5,12 @@ export type EditorExperimentsConfig = typeof editorExperimentsConfig;
5
5
  * existing experiments.
6
6
  */
7
7
  export declare const editorExperimentsConfig: {
8
+ cc_editor_limited_mode_include_lcm: {
9
+ typeGuard: typeof import("./type-guards").isBoolean;
10
+ defaultValue: boolean;
11
+ param: string;
12
+ productKeys?: import("./types").ProductKeys;
13
+ };
8
14
  cc_editor_interactivity_monitoring: {
9
15
  typeGuard: typeof import("./type-guards").isBoolean;
10
16
  defaultValue: boolean;
@@ -165,12 +171,6 @@ export declare const editorExperimentsConfig: {
165
171
  param: string;
166
172
  productKeys?: import("./types").ProductKeys;
167
173
  };
168
- platform_editor_toolbar_aifc_toolbar_analytic: {
169
- typeGuard: typeof import("./type-guards").isBoolean;
170
- defaultValue: boolean;
171
- param: string;
172
- productKeys?: import("./types").ProductKeys;
173
- };
174
174
  platform_editor_controls: {
175
175
  values: ("control" | "variant1")[];
176
176
  typeGuard: (value: unknown) => value is "control" | "variant1";
@@ -5,6 +5,12 @@ export type EditorExperimentsConfig = typeof editorExperimentsConfig;
5
5
  * existing experiments.
6
6
  */
7
7
  export declare const editorExperimentsConfig: {
8
+ cc_editor_limited_mode_include_lcm: {
9
+ typeGuard: typeof import("./type-guards").isBoolean;
10
+ defaultValue: boolean;
11
+ param: string;
12
+ productKeys?: import("./types").ProductKeys;
13
+ };
8
14
  cc_editor_interactivity_monitoring: {
9
15
  typeGuard: typeof import("./type-guards").isBoolean;
10
16
  defaultValue: boolean;
@@ -165,12 +171,6 @@ export declare const editorExperimentsConfig: {
165
171
  param: string;
166
172
  productKeys?: import("./types").ProductKeys;
167
173
  };
168
- platform_editor_toolbar_aifc_toolbar_analytic: {
169
- typeGuard: typeof import("./type-guards").isBoolean;
170
- defaultValue: boolean;
171
- param: string;
172
- productKeys?: import("./types").ProductKeys;
173
- };
174
174
  platform_editor_controls: {
175
175
  values: ("control" | "variant1")[];
176
176
  typeGuard: (value: unknown) => value is "control" | "variant1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "13.22.0",
3
+ "version": "13.24.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",
@@ -34,7 +34,7 @@
34
34
  "atlaskit:src": "src/index.ts",
35
35
  "dependencies": {
36
36
  "@atlaskit/feature-gate-js-client": "^5.5.0",
37
- "@atlaskit/react-ufo": "^4.13.0",
37
+ "@atlaskit/react-ufo": "^4.14.0",
38
38
  "@babel/runtime": "^7.0.0"
39
39
  },
40
40
  "peerDependencies": {