@atlaskit/tmp-editor-statsig 2.1.6 → 2.1.8
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 +16 -0
- package/dist/cjs/experiments-config.js +9 -0
- package/dist/es2019/experiments-config.js +9 -0
- package/dist/esm/experiments-config.js +9 -0
- package/dist/types/experiments-config.d.ts +8 -0
- package/dist/types/setup.d.ts +1 -0
- package/dist/types-ts4.5/experiments-config.d.ts +8 -0
- package/dist/types-ts4.5/setup.d.ts +1 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 2.1.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#138377](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/138377)
|
|
8
|
+
[`82a0bc6a2384e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/82a0bc6a2384e) -
|
|
9
|
+
Added lazy node experiment to config
|
|
10
|
+
|
|
11
|
+
## 2.1.7
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#138118](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/138118)
|
|
16
|
+
[`5e4d9eb1aefe4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5e4d9eb1aefe4) -
|
|
17
|
+
NOISSUE: Upgrades editor React peer dependencies to v18
|
|
18
|
+
|
|
3
19
|
## 2.1.6
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -139,5 +139,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
139
139
|
param: 'isEnabled',
|
|
140
140
|
typeGuard: isBoolean,
|
|
141
141
|
defaultValue: false
|
|
142
|
+
},
|
|
143
|
+
// Added 2024-09-07
|
|
144
|
+
platform_editor_exp_lazy_node_views: {
|
|
145
|
+
productKeys: {
|
|
146
|
+
confluence: 'platform_editor_exp_lazy_node_views'
|
|
147
|
+
},
|
|
148
|
+
param: 'isEnabled',
|
|
149
|
+
typeGuard: isBoolean,
|
|
150
|
+
defaultValue: false
|
|
142
151
|
}
|
|
143
152
|
};
|
|
@@ -133,5 +133,14 @@ export const editorExperimentsConfig = {
|
|
|
133
133
|
param: 'isEnabled',
|
|
134
134
|
typeGuard: isBoolean,
|
|
135
135
|
defaultValue: false
|
|
136
|
+
},
|
|
137
|
+
// Added 2024-09-07
|
|
138
|
+
platform_editor_exp_lazy_node_views: {
|
|
139
|
+
productKeys: {
|
|
140
|
+
confluence: 'platform_editor_exp_lazy_node_views'
|
|
141
|
+
},
|
|
142
|
+
param: 'isEnabled',
|
|
143
|
+
typeGuard: isBoolean,
|
|
144
|
+
defaultValue: false
|
|
136
145
|
}
|
|
137
146
|
};
|
|
@@ -133,5 +133,14 @@ export var editorExperimentsConfig = {
|
|
|
133
133
|
param: 'isEnabled',
|
|
134
134
|
typeGuard: isBoolean,
|
|
135
135
|
defaultValue: false
|
|
136
|
+
},
|
|
137
|
+
// Added 2024-09-07
|
|
138
|
+
platform_editor_exp_lazy_node_views: {
|
|
139
|
+
productKeys: {
|
|
140
|
+
confluence: 'platform_editor_exp_lazy_node_views'
|
|
141
|
+
},
|
|
142
|
+
param: 'isEnabled',
|
|
143
|
+
typeGuard: isBoolean,
|
|
144
|
+
defaultValue: false
|
|
136
145
|
}
|
|
137
146
|
};
|
|
@@ -111,5 +111,13 @@ export declare const editorExperimentsConfig: {
|
|
|
111
111
|
typeGuard: typeof isBoolean;
|
|
112
112
|
defaultValue: boolean;
|
|
113
113
|
};
|
|
114
|
+
platform_editor_exp_lazy_node_views: {
|
|
115
|
+
productKeys: {
|
|
116
|
+
confluence: string;
|
|
117
|
+
};
|
|
118
|
+
param: string;
|
|
119
|
+
typeGuard: typeof isBoolean;
|
|
120
|
+
defaultValue: boolean;
|
|
121
|
+
};
|
|
114
122
|
};
|
|
115
123
|
export {};
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export declare let _overrides: Partial<{
|
|
|
16
16
|
'insert-menu-in-right-rail': boolean;
|
|
17
17
|
platform_editor_empty_line_prompt: boolean;
|
|
18
18
|
support_table_in_comment: boolean;
|
|
19
|
+
platform_editor_exp_lazy_node_views: boolean;
|
|
19
20
|
}>;
|
|
20
21
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
21
22
|
/**
|
|
@@ -111,5 +111,13 @@ export declare const editorExperimentsConfig: {
|
|
|
111
111
|
typeGuard: typeof isBoolean;
|
|
112
112
|
defaultValue: boolean;
|
|
113
113
|
};
|
|
114
|
+
platform_editor_exp_lazy_node_views: {
|
|
115
|
+
productKeys: {
|
|
116
|
+
confluence: string;
|
|
117
|
+
};
|
|
118
|
+
param: string;
|
|
119
|
+
typeGuard: typeof isBoolean;
|
|
120
|
+
defaultValue: boolean;
|
|
121
|
+
};
|
|
114
122
|
};
|
|
115
123
|
export {};
|
|
@@ -16,6 +16,7 @@ export declare let _overrides: Partial<{
|
|
|
16
16
|
'insert-menu-in-right-rail': boolean;
|
|
17
17
|
platform_editor_empty_line_prompt: boolean;
|
|
18
18
|
support_table_in_comment: boolean;
|
|
19
|
+
platform_editor_exp_lazy_node_views: boolean;
|
|
19
20
|
}>;
|
|
20
21
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
21
22
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.8",
|
|
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",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"website": {
|
|
13
13
|
"name": "EditorStatsigTmp",
|
|
14
14
|
"category": "Components"
|
|
15
|
-
}
|
|
15
|
+
},
|
|
16
|
+
"runReact18": true
|
|
16
17
|
},
|
|
17
18
|
"repository": "https://stash.atlassian.com/projects/ATLASSIAN/repos/atlassian-frontend-monorepo",
|
|
18
19
|
"main": "dist/cjs/index.js",
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
"@babel/runtime": "^7.0.0"
|
|
40
41
|
},
|
|
41
42
|
"peerDependencies": {
|
|
42
|
-
"react": "^16.8.0"
|
|
43
|
+
"react": "^16.8.0 || ^17.0.0 || ~18.2.0"
|
|
43
44
|
},
|
|
44
45
|
"devDependencies": {
|
|
45
46
|
"typescript": "~5.4.2"
|