@atlaskit/editor-plugin-find-replace 1.2.9 → 1.3.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 +18 -0
- package/dist/cjs/styles.js +2 -8
- package/dist/cjs/ui/Find.js +40 -98
- package/dist/cjs/ui/FindReplace.js +10 -17
- package/dist/cjs/ui/FindReplaceToolbarButton.js +7 -11
- package/dist/cjs/ui/Replace.js +11 -37
- package/dist/cjs/ui/styles.js +42 -0
- package/dist/es2019/styles.js +3 -9
- package/dist/es2019/ui/Find.js +41 -99
- package/dist/es2019/ui/FindReplace.js +10 -17
- package/dist/es2019/ui/FindReplaceToolbarButton.js +7 -11
- package/dist/es2019/ui/Replace.js +11 -37
- package/dist/es2019/ui/styles.js +42 -0
- package/dist/esm/styles.js +3 -9
- package/dist/esm/ui/Find.js +41 -99
- package/dist/esm/ui/FindReplace.js +10 -17
- package/dist/esm/ui/FindReplaceToolbarButton.js +7 -11
- package/dist/esm/ui/Replace.js +11 -37
- package/dist/esm/ui/styles.js +42 -0
- package/package.json +83 -114
package/package.json
CHANGED
|
@@ -1,115 +1,84 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
"color"
|
|
86
|
-
],
|
|
87
|
-
"theming": [
|
|
88
|
-
"react-context"
|
|
89
|
-
],
|
|
90
|
-
"ui-components": [
|
|
91
|
-
"lite-mode"
|
|
92
|
-
],
|
|
93
|
-
"deprecation": "no-deprecated-imports",
|
|
94
|
-
"styling": [
|
|
95
|
-
"emotion",
|
|
96
|
-
"emotion"
|
|
97
|
-
],
|
|
98
|
-
"imports": [
|
|
99
|
-
"import-no-extraneous-disable-for-examples-and-docs"
|
|
100
|
-
]
|
|
101
|
-
}
|
|
102
|
-
},
|
|
103
|
-
"platform-feature-flags": {
|
|
104
|
-
"platform.editor.a11y-find-replace": {
|
|
105
|
-
"type": "boolean"
|
|
106
|
-
}
|
|
107
|
-
},
|
|
108
|
-
"stricter": {
|
|
109
|
-
"no-unused-dependencies": {
|
|
110
|
-
"exclude": [
|
|
111
|
-
"@atlaskit/editor-plugin-analytics"
|
|
112
|
-
]
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
}
|
|
2
|
+
"name": "@atlaskit/editor-plugin-find-replace",
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"description": "find replace plugin for @atlaskit/editor-core",
|
|
5
|
+
"author": "Atlassian Pty Ltd",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"registry": "https://registry.npmjs.org/"
|
|
9
|
+
},
|
|
10
|
+
"atlassian": {
|
|
11
|
+
"team": "Editor: Lego",
|
|
12
|
+
"inPublicMirror": false,
|
|
13
|
+
"releaseModel": "continuous"
|
|
14
|
+
},
|
|
15
|
+
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
|
|
16
|
+
"main": "dist/cjs/index.js",
|
|
17
|
+
"module": "dist/esm/index.js",
|
|
18
|
+
"module:es2019": "dist/es2019/index.js",
|
|
19
|
+
"types": "dist/types/index.d.ts",
|
|
20
|
+
"typesVersions": {
|
|
21
|
+
">=4.5 <4.9": {
|
|
22
|
+
"*": ["dist/types-ts4.5/*", "dist/types-ts4.5/index.d.ts"]
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"sideEffects": ["*.compiled.css"],
|
|
26
|
+
"atlaskit:src": "src/index.ts",
|
|
27
|
+
"af:exports": {
|
|
28
|
+
".": "./src/index.ts",
|
|
29
|
+
"./styles": "./src/styles.ts"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@atlaskit/button": "^17.17.0",
|
|
33
|
+
"@atlaskit/editor-common": "^82.6.0",
|
|
34
|
+
"@atlaskit/editor-plugin-analytics": "^1.2.0",
|
|
35
|
+
"@atlaskit/editor-prosemirror": "4.0.1",
|
|
36
|
+
"@atlaskit/editor-shared-styles": "^2.12.0",
|
|
37
|
+
"@atlaskit/form": "^10.3.0",
|
|
38
|
+
"@atlaskit/icon": "^22.3.0",
|
|
39
|
+
"@atlaskit/primitives": "^7.2.0",
|
|
40
|
+
"@atlaskit/textfield": "^6.3.0",
|
|
41
|
+
"@atlaskit/theme": "^12.9.0",
|
|
42
|
+
"@atlaskit/tokens": "^1.50.0",
|
|
43
|
+
"@atlaskit/tooltip": "^18.4.0",
|
|
44
|
+
"@babel/runtime": "^7.0.0",
|
|
45
|
+
"@emotion/react": "^11.7.1",
|
|
46
|
+
"lodash": "^4.17.21",
|
|
47
|
+
"raf-schd": "^4.0.3"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@af/visual-regression": "*",
|
|
51
|
+
"@atlaskit/editor-plugin-block-type": "^3.6.0",
|
|
52
|
+
"@atlaskit/editor-plugin-text-formatting": "^1.7.0",
|
|
53
|
+
"@testing-library/react": "^12.1.5",
|
|
54
|
+
"@testing-library/user-event": "^14.4.3",
|
|
55
|
+
"mockdate": "^3.0.5",
|
|
56
|
+
"raf-stub": "^2.0.1",
|
|
57
|
+
"react-dom": "^16.8.0"
|
|
58
|
+
},
|
|
59
|
+
"peerDependencies": {
|
|
60
|
+
"react": "^16.8.0",
|
|
61
|
+
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
62
|
+
},
|
|
63
|
+
"techstack": {
|
|
64
|
+
"@atlassian/frontend": {
|
|
65
|
+
"import-structure": ["atlassian-conventions"],
|
|
66
|
+
"circular-dependencies": ["file-and-folder-level"]
|
|
67
|
+
},
|
|
68
|
+
"@repo/internal": {
|
|
69
|
+
"dom-events": "use-bind-event-listener",
|
|
70
|
+
"analytics": ["analytics-next"],
|
|
71
|
+
"design-tokens": ["color"],
|
|
72
|
+
"theming": ["react-context"],
|
|
73
|
+
"ui-components": ["lite-mode"],
|
|
74
|
+
"deprecation": "no-deprecated-imports",
|
|
75
|
+
"styling": ["emotion", "emotion"],
|
|
76
|
+
"imports": ["import-no-extraneous-disable-for-examples-and-docs"]
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"stricter": {
|
|
80
|
+
"no-unused-dependencies": {
|
|
81
|
+
"exclude": ["@atlaskit/editor-plugin-analytics"]
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|