@atlaskit/tmp-editor-statsig 99.0.0 → 99.1.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
+ ## 99.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`36d8b2815146e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/36d8b2815146e) -
8
+ Localize personalized prompt tile footer labels.
9
+
3
10
  ## 99.0.0
4
11
 
5
12
  ### Major Changes
@@ -60,6 +60,7 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
60
60
  platform_editor_table_menu_updates: false,
61
61
  platform_editor_core_static_css: false,
62
62
  'cwr-modal-ui-refresh': false,
63
+ prompt_tile_content_type_localizaiton: false,
63
64
  // [CCI-15904] New AIFC Editor Experience — AND-gated with
64
65
  // `platform_editor_ai_xstate_migration` (see `isNewAifcExperienceEnabled`
65
66
  // in `editor-plugin-ai/src/ui/utils/new-aifc-experience-enabled.ts`).
@@ -1396,6 +1396,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1396
1396
  param: 'isEnabled',
1397
1397
  defaultValue: false
1398
1398
  }),
1399
+ // Added 2026-06-12
1400
+ prompt_tile_content_type_localizaiton: (0, _experimentBuilders.createBooleanExperiment)({
1401
+ productKeys: {
1402
+ confluence: 'prompt_tile_content_type_localizaiton'
1403
+ },
1404
+ param: 'isEnabled',
1405
+ defaultValue: false
1406
+ }),
1399
1407
  // Added 2026-04-01
1400
1408
  confluence_fe_cwr_outcome_picker_prompt_autoselect: (0, _experimentBuilders.createBooleanExperiment)({
1401
1409
  productKeys: {
@@ -54,6 +54,7 @@ export const testBooleanOverrides = {
54
54
  platform_editor_table_menu_updates: false,
55
55
  platform_editor_core_static_css: false,
56
56
  'cwr-modal-ui-refresh': false,
57
+ prompt_tile_content_type_localizaiton: false,
57
58
  // [CCI-15904] New AIFC Editor Experience — AND-gated with
58
59
  // `platform_editor_ai_xstate_migration` (see `isNewAifcExperienceEnabled`
59
60
  // in `editor-plugin-ai/src/ui/utils/new-aifc-experience-enabled.ts`).
@@ -1390,6 +1390,14 @@ export const editorExperimentsConfig = {
1390
1390
  param: 'isEnabled',
1391
1391
  defaultValue: false
1392
1392
  }),
1393
+ // Added 2026-06-12
1394
+ prompt_tile_content_type_localizaiton: createBooleanExperiment({
1395
+ productKeys: {
1396
+ confluence: 'prompt_tile_content_type_localizaiton'
1397
+ },
1398
+ param: 'isEnabled',
1399
+ defaultValue: false
1400
+ }),
1393
1401
  // Added 2026-04-01
1394
1402
  confluence_fe_cwr_outcome_picker_prompt_autoselect: createBooleanExperiment({
1395
1403
  productKeys: {
@@ -54,6 +54,7 @@ export var testBooleanOverrides = {
54
54
  platform_editor_table_menu_updates: false,
55
55
  platform_editor_core_static_css: false,
56
56
  'cwr-modal-ui-refresh': false,
57
+ prompt_tile_content_type_localizaiton: false,
57
58
  // [CCI-15904] New AIFC Editor Experience — AND-gated with
58
59
  // `platform_editor_ai_xstate_migration` (see `isNewAifcExperienceEnabled`
59
60
  // in `editor-plugin-ai/src/ui/utils/new-aifc-experience-enabled.ts`).
@@ -1390,6 +1390,14 @@ export var editorExperimentsConfig = {
1390
1390
  param: 'isEnabled',
1391
1391
  defaultValue: false
1392
1392
  }),
1393
+ // Added 2026-06-12
1394
+ prompt_tile_content_type_localizaiton: createBooleanExperiment({
1395
+ productKeys: {
1396
+ confluence: 'prompt_tile_content_type_localizaiton'
1397
+ },
1398
+ param: 'isEnabled',
1399
+ defaultValue: false
1400
+ }),
1393
1401
  // Added 2026-04-01
1394
1402
  confluence_fe_cwr_outcome_picker_prompt_autoselect: createBooleanExperiment({
1395
1403
  productKeys: {
@@ -1076,6 +1076,12 @@ export declare const editorExperimentsConfig: {
1076
1076
  productKeys?: ProductKeys;
1077
1077
  typeGuard: IsBooleanType;
1078
1078
  };
1079
+ prompt_tile_content_type_localizaiton: {
1080
+ defaultValue: boolean;
1081
+ param: string;
1082
+ productKeys?: ProductKeys;
1083
+ typeGuard: IsBooleanType;
1084
+ };
1079
1085
  confluence_fe_cwr_outcome_picker_prompt_autoselect: {
1080
1086
  defaultValue: boolean;
1081
1087
  param: string;
@@ -1076,6 +1076,12 @@ export declare const editorExperimentsConfig: {
1076
1076
  productKeys?: ProductKeys;
1077
1077
  typeGuard: IsBooleanType;
1078
1078
  };
1079
+ prompt_tile_content_type_localizaiton: {
1080
+ defaultValue: boolean;
1081
+ param: string;
1082
+ productKeys?: ProductKeys;
1083
+ typeGuard: IsBooleanType;
1084
+ };
1079
1085
  confluence_fe_cwr_outcome_picker_prompt_autoselect: {
1080
1086
  defaultValue: boolean;
1081
1087
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "99.0.0",
3
+ "version": "99.1.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",