@atlaskit/editor-plugin-find-replace 10.1.3 → 10.2.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/findReplacePlugin.js +12 -0
- package/dist/cjs/entry-points/findReplacePluginType.js +1 -0
- package/dist/cjs/entry-points/styles.js +48 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/es2019/entry-points/findReplacePlugin.js +2 -0
- package/dist/es2019/entry-points/findReplacePluginType.js +0 -0
- package/dist/es2019/entry-points/styles.js +2 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/esm/entry-points/findReplacePlugin.js +2 -0
- package/dist/esm/entry-points/findReplacePluginType.js +0 -0
- package/dist/esm/entry-points/styles.js +2 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/types/entry-points/findReplacePlugin.d.ts +1 -0
- package/dist/types/entry-points/findReplacePluginType.d.ts +1 -0
- package/dist/types/entry-points/styles.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/findReplacePlugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/findReplacePluginType.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/styles.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/findReplacePlugin/package.json +17 -0
- package/findReplacePluginType/package.json +17 -0
- package/package.json +11 -11
- package/styles/package.json +5 -5
- package/types/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-find-replace
|
|
2
2
|
|
|
3
|
+
## 10.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 10.2.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`acbb2aa5cc917`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/acbb2aa5cc917) -
|
|
14
|
+
Autofix: add explicit package exports (barrel removal)
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 10.1.3
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "findReplacePlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _findReplacePlugin.findReplacePlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _findReplacePlugin = require("../findReplacePlugin");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "blockSearchMatchClass", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _styles.blockSearchMatchClass;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "darkModeSearchMatchClass", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _styles.darkModeSearchMatchClass;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "searchMatchClass", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function get() {
|
|
21
|
+
return _styles.searchMatchClass;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "searchMatchExpandTitleClass", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function get() {
|
|
27
|
+
return _styles.searchMatchExpandTitleClass;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "searchMatchTextClass", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function get() {
|
|
33
|
+
return _styles.searchMatchTextClass;
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
Object.defineProperty(exports, "selectedBlockSearchMatchClass", {
|
|
37
|
+
enumerable: true,
|
|
38
|
+
get: function get() {
|
|
39
|
+
return _styles.selectedBlockSearchMatchClass;
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
Object.defineProperty(exports, "selectedSearchMatchClass", {
|
|
43
|
+
enumerable: true,
|
|
44
|
+
get: function get() {
|
|
45
|
+
return _styles.selectedSearchMatchClass;
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
var _styles = require("../ui/styles");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { findReplacePlugin } from '../findReplacePlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { FindReplacePlugin, FindReplacePluginOptions, FindReplacePluginDependencies, } from '../findReplacePluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { blockSearchMatchClass, darkModeSearchMatchClass, searchMatchClass, searchMatchExpandTitleClass, searchMatchTextClass, selectedBlockSearchMatchClass, selectedSearchMatchClass, } from '../ui/styles';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { FindReplaceToolbarButtonActionProps, FindReplaceOptions, FindReplacePluginState, } from '../types/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { findReplacePlugin } from '../findReplacePlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { FindReplacePlugin, FindReplacePluginOptions, FindReplacePluginDependencies, } from '../findReplacePluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { blockSearchMatchClass, darkModeSearchMatchClass, searchMatchClass, searchMatchExpandTitleClass, searchMatchTextClass, selectedBlockSearchMatchClass, selectedSearchMatchClass, } from '../ui/styles';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { FindReplaceToolbarButtonActionProps, FindReplaceOptions, FindReplacePluginState, } from '../types/index';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-find-replace/findReplacePlugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/findReplacePlugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/findReplacePlugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/findReplacePlugin.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/findReplacePlugin.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/findReplacePlugin.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-find-replace/findReplacePluginType",
|
|
3
|
+
"main": "../dist/cjs/entry-points/findReplacePluginType.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/findReplacePluginType.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/findReplacePluginType.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/findReplacePluginType.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/findReplacePluginType.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-find-replace",
|
|
3
|
-
"version": "10.1
|
|
3
|
+
"version": "10.2.1",
|
|
4
4
|
"description": "find replace plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,22 +29,22 @@
|
|
|
29
29
|
"atlaskit:src": "src/index.ts",
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@atlaskit/button": "^23.11.0",
|
|
32
|
-
"@atlaskit/editor-plugin-analytics": "^10.
|
|
33
|
-
"@atlaskit/editor-plugin-card": "^16.
|
|
34
|
-
"@atlaskit/editor-plugin-expand": "^11.
|
|
35
|
-
"@atlaskit/editor-plugin-mentions": "^12.
|
|
36
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^11.
|
|
37
|
-
"@atlaskit/editor-plugin-synced-block": "^8.
|
|
32
|
+
"@atlaskit/editor-plugin-analytics": "^10.1.0",
|
|
33
|
+
"@atlaskit/editor-plugin-card": "^16.8.0",
|
|
34
|
+
"@atlaskit/editor-plugin-expand": "^11.2.0",
|
|
35
|
+
"@atlaskit/editor-plugin-mentions": "^12.2.0",
|
|
36
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^11.1.0",
|
|
37
|
+
"@atlaskit/editor-plugin-synced-block": "^8.3.0",
|
|
38
38
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
39
|
-
"@atlaskit/editor-shared-styles": "^3.
|
|
39
|
+
"@atlaskit/editor-shared-styles": "^3.11.0",
|
|
40
40
|
"@atlaskit/form": "^15.5.0",
|
|
41
41
|
"@atlaskit/icon": "^34.5.0",
|
|
42
42
|
"@atlaskit/icon-lab": "^6.9.0",
|
|
43
|
-
"@atlaskit/mention": "^25.
|
|
43
|
+
"@atlaskit/mention": "^25.1.0",
|
|
44
44
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
45
45
|
"@atlaskit/primitives": "^19.0.0",
|
|
46
46
|
"@atlaskit/textfield": "^8.3.0",
|
|
47
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
47
|
+
"@atlaskit/tmp-editor-statsig": "^81.0.0",
|
|
48
48
|
"@atlaskit/tokens": "^13.0.0",
|
|
49
49
|
"@atlaskit/tooltip": "^22.2.0",
|
|
50
50
|
"@babel/runtime": "^7.0.0",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"react-intl": "^6.6.2"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
|
-
"@atlaskit/editor-common": "^114.
|
|
65
|
+
"@atlaskit/editor-common": "^114.32.0",
|
|
66
66
|
"react": "^18.2.0",
|
|
67
67
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|
|
68
68
|
},
|
package/styles/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-find-replace/styles",
|
|
3
|
-
"main": "../dist/cjs/
|
|
4
|
-
"module": "../dist/esm/
|
|
5
|
-
"module:es2019": "../dist/es2019/
|
|
3
|
+
"main": "../dist/cjs/entry-points/styles.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/styles.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/styles.js",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"*.compiled.css"
|
|
8
8
|
],
|
|
9
|
-
"types": "../dist/types/
|
|
9
|
+
"types": "../dist/types/entry-points/styles.d.ts",
|
|
10
10
|
"typesVersions": {
|
|
11
11
|
">=4.5 <5.9": {
|
|
12
12
|
"*": [
|
|
13
|
-
"../dist/types-ts4.5/
|
|
13
|
+
"../dist/types-ts4.5/entry-points/styles.d.ts"
|
|
14
14
|
]
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-find-replace/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
|
+
}
|