@atlaskit/tmp-editor-statsig 21.1.0 → 21.2.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
|
+
## 21.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`506d872ef2503`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/506d872ef2503) -
|
|
8
|
+
Add smartlink response caching to browser storage to reduce layoutshift on transition and page
|
|
9
|
+
load
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 21.1.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -1315,5 +1315,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1315
1315
|
},
|
|
1316
1316
|
param: 'isEnabled',
|
|
1317
1317
|
defaultValue: false
|
|
1318
|
+
}),
|
|
1319
|
+
// Added 2026-01-28
|
|
1320
|
+
platform_editor_smartlink_local_cache: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1321
|
+
productKeys: {
|
|
1322
|
+
confluence: 'platform_editor_smartlink_local_cache'
|
|
1323
|
+
},
|
|
1324
|
+
param: 'isEnabled',
|
|
1325
|
+
defaultValue: false
|
|
1318
1326
|
})
|
|
1319
1327
|
};
|
|
@@ -1309,5 +1309,13 @@ export const editorExperimentsConfig = {
|
|
|
1309
1309
|
},
|
|
1310
1310
|
param: 'isEnabled',
|
|
1311
1311
|
defaultValue: false
|
|
1312
|
+
}),
|
|
1313
|
+
// Added 2026-01-28
|
|
1314
|
+
platform_editor_smartlink_local_cache: createBooleanExperiment({
|
|
1315
|
+
productKeys: {
|
|
1316
|
+
confluence: 'platform_editor_smartlink_local_cache'
|
|
1317
|
+
},
|
|
1318
|
+
param: 'isEnabled',
|
|
1319
|
+
defaultValue: false
|
|
1312
1320
|
})
|
|
1313
1321
|
};
|
|
@@ -1309,5 +1309,13 @@ export var editorExperimentsConfig = {
|
|
|
1309
1309
|
},
|
|
1310
1310
|
param: 'isEnabled',
|
|
1311
1311
|
defaultValue: false
|
|
1312
|
+
}),
|
|
1313
|
+
// Added 2026-01-28
|
|
1314
|
+
platform_editor_smartlink_local_cache: createBooleanExperiment({
|
|
1315
|
+
productKeys: {
|
|
1316
|
+
confluence: 'platform_editor_smartlink_local_cache'
|
|
1317
|
+
},
|
|
1318
|
+
param: 'isEnabled',
|
|
1319
|
+
defaultValue: false
|
|
1312
1320
|
})
|
|
1313
1321
|
};
|
|
@@ -973,5 +973,11 @@ export declare const editorExperimentsConfig: {
|
|
|
973
973
|
productKeys?: ProductKeys;
|
|
974
974
|
typeGuard: IsBooleanType;
|
|
975
975
|
};
|
|
976
|
+
platform_editor_smartlink_local_cache: {
|
|
977
|
+
defaultValue: boolean;
|
|
978
|
+
param: string;
|
|
979
|
+
productKeys?: ProductKeys;
|
|
980
|
+
typeGuard: IsBooleanType;
|
|
981
|
+
};
|
|
976
982
|
};
|
|
977
983
|
export {};
|
|
@@ -973,5 +973,11 @@ export declare const editorExperimentsConfig: {
|
|
|
973
973
|
productKeys?: ProductKeys;
|
|
974
974
|
typeGuard: IsBooleanType;
|
|
975
975
|
};
|
|
976
|
+
platform_editor_smartlink_local_cache: {
|
|
977
|
+
defaultValue: boolean;
|
|
978
|
+
param: string;
|
|
979
|
+
productKeys?: ProductKeys;
|
|
980
|
+
typeGuard: IsBooleanType;
|
|
981
|
+
};
|
|
976
982
|
};
|
|
977
983
|
export {};
|
package/package.json
CHANGED