@atlaskit/editor-plugin-type-ahead 10.0.19 → 10.1.1
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 +17 -0
- package/dist/cjs/entry-points/type-ahead-plugin-type.js +1 -0
- package/dist/cjs/entry-points/type-ahead-plugin.js +12 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/es2019/entry-points/type-ahead-plugin-type.js +0 -0
- package/dist/es2019/entry-points/type-ahead-plugin.js +2 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/esm/entry-points/type-ahead-plugin-type.js +0 -0
- package/dist/esm/entry-points/type-ahead-plugin.js +2 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/types/entry-points/type-ahead-plugin-type.d.ts +1 -0
- package/dist/types/entry-points/type-ahead-plugin.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/type-ahead-plugin-type.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/type-ahead-plugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/package.json +9 -9
- package/type-ahead-plugin/package.json +17 -0
- package/type-ahead-plugin-type/package.json +17 -0
- package/types/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-type-ahead
|
|
2
2
|
|
|
3
|
+
## 10.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 10.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`ebab8f80bfc40`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ebab8f80bfc40) -
|
|
14
|
+
Autofix: add explicit package exports (barrel removal)
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 10.0.19
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "typeAheadPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _typeAheadPlugin.typeAheadPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _typeAheadPlugin = require("../typeAheadPlugin");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { TypeAheadPlugin } from '../typeAheadPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { typeAheadPlugin } from '../typeAheadPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { OpenTypeAheadProps, TypeAheadHandler, TypeAheadInputMethod, TypeAheadPluginOptions, TypeAheadPluginState, TypeAheadPluginSharedState, } from '../types/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { TypeAheadPlugin } from '../typeAheadPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { typeAheadPlugin } from '../typeAheadPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { OpenTypeAheadProps, TypeAheadHandler, TypeAheadInputMethod, TypeAheadPluginOptions, TypeAheadPluginState, TypeAheadPluginSharedState, } from '../types/index';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-type-ahead",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.1.1",
|
|
4
4
|
"description": "Type-ahead plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"atlaskit:src": "src/index.ts",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@atlaskit/adf-schema": "^52.11.0",
|
|
33
|
-
"@atlaskit/editor-plugin-analytics": "^10.
|
|
34
|
-
"@atlaskit/editor-plugin-connectivity": "^10.
|
|
35
|
-
"@atlaskit/editor-plugin-context-panel": "^12.
|
|
36
|
-
"@atlaskit/editor-plugin-metrics": "^11.
|
|
33
|
+
"@atlaskit/editor-plugin-analytics": "^10.1.0",
|
|
34
|
+
"@atlaskit/editor-plugin-connectivity": "^10.1.0",
|
|
35
|
+
"@atlaskit/editor-plugin-context-panel": "^12.1.0",
|
|
36
|
+
"@atlaskit/editor-plugin-metrics": "^11.1.0",
|
|
37
37
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
38
|
-
"@atlaskit/editor-shared-styles": "^3.
|
|
38
|
+
"@atlaskit/editor-shared-styles": "^3.11.0",
|
|
39
39
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
40
40
|
"@atlaskit/heading": "^5.4.0",
|
|
41
41
|
"@atlaskit/insm": "^0.4.0",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
44
44
|
"@atlaskit/primitives": "^19.0.0",
|
|
45
45
|
"@atlaskit/prosemirror-history": "^0.2.0",
|
|
46
|
-
"@atlaskit/prosemirror-input-rules": "^3.
|
|
47
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
46
|
+
"@atlaskit/prosemirror-input-rules": "^3.7.0",
|
|
47
|
+
"@atlaskit/tmp-editor-statsig": "^81.0.0",
|
|
48
48
|
"@atlaskit/tokens": "^13.0.0",
|
|
49
49
|
"@atlaskit/visually-hidden": "^3.1.0",
|
|
50
50
|
"@babel/runtime": "^7.0.0",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"w3c-keyname": "^2.1.8"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@atlaskit/editor-common": "^114.
|
|
59
|
+
"@atlaskit/editor-common": "^114.32.0",
|
|
60
60
|
"react": "^18.2.0",
|
|
61
61
|
"react-dom": "^18.2.0",
|
|
62
62
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-type-ahead/type-ahead-plugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/type-ahead-plugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/type-ahead-plugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/type-ahead-plugin.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/type-ahead-plugin.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/type-ahead-plugin.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-type-ahead/type-ahead-plugin-type",
|
|
3
|
+
"main": "../dist/cjs/entry-points/type-ahead-plugin-type.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/type-ahead-plugin-type.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/type-ahead-plugin-type.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/type-ahead-plugin-type.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/type-ahead-plugin-type.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-type-ahead/types",
|
|
3
|
+
"main": "../dist/cjs/entry-points/types.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/types.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/types.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|