@atlaskit/editor-plugin-autocomplete 4.2.0 → 5.0.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,22 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-autocomplete
|
|
2
2
|
|
|
3
|
+
## 5.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 4.3.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`51c33ef5349b6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/51c33ef5349b6) -
|
|
14
|
+
Enable compatibility with React 19.2.0
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 4.2.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/build/tsconfig.json
CHANGED
|
@@ -27,9 +27,9 @@ import { type CustomData } from '@atlaskit/ufo';
|
|
|
27
27
|
* otherwise emit zero-duration events on every word boundary.
|
|
28
28
|
*/
|
|
29
29
|
export declare const EXPERIENCE_NAME: {
|
|
30
|
-
readonly SLOW_LANE_FETCH:
|
|
31
|
-
readonly LOAD_VOCABULARY:
|
|
32
|
-
readonly LOAD_VECTORS:
|
|
30
|
+
readonly SLOW_LANE_FETCH: 'slow-lane-fetch';
|
|
31
|
+
readonly LOAD_VOCABULARY: 'load-vocabulary';
|
|
32
|
+
readonly LOAD_VECTORS: 'load-vectors';
|
|
33
33
|
};
|
|
34
34
|
export type AutocompleteExperienceName = (typeof EXPERIENCE_NAME)[keyof typeof EXPERIENCE_NAME];
|
|
35
35
|
export declare const startExp: (name: AutocompleteExperienceName, id: string, metadata?: CustomData) => void;
|
|
@@ -51,7 +51,7 @@ export declare const getPredictorStatus: () => {
|
|
|
51
51
|
export declare const getLastPredictionDebug: () => {
|
|
52
52
|
contextWords: string[];
|
|
53
53
|
currentWord: string;
|
|
54
|
-
mode:
|
|
54
|
+
mode: 'cold' | 'warm';
|
|
55
55
|
suggestion: string | null;
|
|
56
56
|
textBefore: string;
|
|
57
57
|
topCandidates: Array<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-autocomplete",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Client-side text autocomplete plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"wink-nlp": "^2.4.0"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@atlaskit/editor-common": "^
|
|
34
|
-
"@atlaskit/editor-plugin-analytics": "^
|
|
35
|
-
"react": "^18.2.0"
|
|
33
|
+
"@atlaskit/editor-common": "^117.0.0",
|
|
34
|
+
"@atlaskit/editor-plugin-analytics": "^13.0.0",
|
|
35
|
+
"react": "^18.2.0 || ^19.2.0"
|
|
36
36
|
},
|
|
37
37
|
"techstack": {
|
|
38
38
|
"@atlassian/frontend": {
|
|
@@ -48,6 +48,6 @@
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"react": "^
|
|
51
|
+
"react": "^19.2.0"
|
|
52
52
|
}
|
|
53
53
|
}
|