@atlaskit/editor-plugin-find-replace 3.2.9 → 4.0.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 +14 -0
- package/dist/cjs/ui/styles.js +1 -1
- package/dist/es2019/ui/styles.js +1 -1
- package/dist/esm/ui/styles.js +1 -1
- package/package.json +11 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-find-replace
|
|
2
2
|
|
|
3
|
+
## 4.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`e5001e144b74e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e5001e144b74e) -
|
|
8
|
+
Internal changes to how border radius is applied.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 4.0.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 3.2.9
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/cjs/ui/styles.js
CHANGED
|
@@ -29,7 +29,7 @@ var mentionSelector = '.editor-mention-primitive';
|
|
|
29
29
|
var dateSelector = '.date-lozenger-container>span';
|
|
30
30
|
var findReplaceStyles = exports.findReplaceStyles = (0, _react.css)((0, _defineProperty2.default)((0, _defineProperty2.default)({}, ".".concat(searchMatchClass), {
|
|
31
31
|
// eslint-disable-next-line @atlaskit/design-system/no-unsafe-design-token-usage
|
|
32
|
-
borderRadius: "var(--ds-
|
|
32
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
33
33
|
backgroundColor: "var(--ds-background-accent-teal-subtlest, #E7F9FF)",
|
|
34
34
|
boxShadow: "var(--ds-shadow-raised, ".concat("0 1px 1px 0 ".concat(_colors.N50A, ", 0 0 1px 0 ").concat(_colors.N60A), ")") + ', inset 0 0 0 1px ' + "var(--ds-border-input, ".concat("".concat(_colors.N40A), ")")
|
|
35
35
|
}), ".".concat(selectedSearchMatchClass), {
|
package/dist/es2019/ui/styles.js
CHANGED
|
@@ -23,7 +23,7 @@ const dateSelector = '.date-lozenger-container>span';
|
|
|
23
23
|
export const findReplaceStyles = css({
|
|
24
24
|
[`.${searchMatchClass}`]: {
|
|
25
25
|
// eslint-disable-next-line @atlaskit/design-system/no-unsafe-design-token-usage
|
|
26
|
-
borderRadius: "var(--ds-
|
|
26
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
27
27
|
backgroundColor: "var(--ds-background-accent-teal-subtlest, #E7F9FF)",
|
|
28
28
|
boxShadow: `var(--ds-shadow-raised, ${`0 1px 1px 0 ${N50A}, 0 0 1px 0 ${N60A}`})` + ', inset 0 0 0 1px ' + `var(--ds-border-input, ${`${N40A}`})`
|
|
29
29
|
},
|
package/dist/esm/ui/styles.js
CHANGED
|
@@ -24,7 +24,7 @@ var mentionSelector = '.editor-mention-primitive';
|
|
|
24
24
|
var dateSelector = '.date-lozenger-container>span';
|
|
25
25
|
export var findReplaceStyles = css(_defineProperty(_defineProperty({}, ".".concat(searchMatchClass), {
|
|
26
26
|
// eslint-disable-next-line @atlaskit/design-system/no-unsafe-design-token-usage
|
|
27
|
-
borderRadius: "var(--ds-
|
|
27
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
28
28
|
backgroundColor: "var(--ds-background-accent-teal-subtlest, #E7F9FF)",
|
|
29
29
|
boxShadow: "var(--ds-shadow-raised, ".concat("0 1px 1px 0 ".concat(N50A, ", 0 0 1px 0 ").concat(N60A), ")") + ', inset 0 0 0 1px ' + "var(--ds-border-input, ".concat("".concat(N40A), ")")
|
|
30
30
|
}), ".".concat(selectedSearchMatchClass), {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-find-replace",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "find replace plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -27,20 +27,16 @@
|
|
|
27
27
|
"*.compiled.css"
|
|
28
28
|
],
|
|
29
29
|
"atlaskit:src": "src/index.ts",
|
|
30
|
-
"af:exports": {
|
|
31
|
-
".": "./src/index.ts",
|
|
32
|
-
"./styles": "./src/ui/styles.ts"
|
|
33
|
-
},
|
|
34
30
|
"dependencies": {
|
|
35
31
|
"@atlaskit/button": "^23.4.0",
|
|
36
|
-
"@atlaskit/editor-plugin-analytics": "^
|
|
37
|
-
"@atlaskit/editor-plugin-card": "^
|
|
38
|
-
"@atlaskit/editor-plugin-expand": "^
|
|
39
|
-
"@atlaskit/editor-plugin-mentions": "^
|
|
40
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^
|
|
32
|
+
"@atlaskit/editor-plugin-analytics": "^4.0.0",
|
|
33
|
+
"@atlaskit/editor-plugin-card": "^8.0.0",
|
|
34
|
+
"@atlaskit/editor-plugin-expand": "^5.0.0",
|
|
35
|
+
"@atlaskit/editor-plugin-mentions": "^6.0.0",
|
|
36
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^5.0.0",
|
|
41
37
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
42
38
|
"@atlaskit/editor-shared-styles": "^3.6.0",
|
|
43
|
-
"@atlaskit/form": "^12.
|
|
39
|
+
"@atlaskit/form": "^12.4.0",
|
|
44
40
|
"@atlaskit/icon": "^28.1.0",
|
|
45
41
|
"@atlaskit/icon-lab": "^5.7.0",
|
|
46
42
|
"@atlaskit/mention": "^24.2.0",
|
|
@@ -48,7 +44,7 @@
|
|
|
48
44
|
"@atlaskit/primitives": "^14.12.0",
|
|
49
45
|
"@atlaskit/textfield": "^8.0.0",
|
|
50
46
|
"@atlaskit/theme": "^20.0.0",
|
|
51
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
47
|
+
"@atlaskit/tmp-editor-statsig": "^12.1.0",
|
|
52
48
|
"@atlaskit/tokens": "^6.1.0",
|
|
53
49
|
"@atlaskit/tooltip": "^20.4.0",
|
|
54
50
|
"@babel/runtime": "^7.0.0",
|
|
@@ -59,8 +55,8 @@
|
|
|
59
55
|
},
|
|
60
56
|
"devDependencies": {
|
|
61
57
|
"@af/visual-regression": "workspace:^",
|
|
62
|
-
"@atlaskit/editor-plugin-block-type": "^
|
|
63
|
-
"@atlaskit/editor-plugin-text-formatting": "^
|
|
58
|
+
"@atlaskit/editor-plugin-block-type": "^7.0.0",
|
|
59
|
+
"@atlaskit/editor-plugin-text-formatting": "^4.0.0",
|
|
64
60
|
"@testing-library/react": "^13.4.0",
|
|
65
61
|
"@testing-library/user-event": "^14.4.3",
|
|
66
62
|
"mockdate": "^3.0.5",
|
|
@@ -68,7 +64,7 @@
|
|
|
68
64
|
"react-dom": "^18.2.0"
|
|
69
65
|
},
|
|
70
66
|
"peerDependencies": {
|
|
71
|
-
"@atlaskit/editor-common": "^
|
|
67
|
+
"@atlaskit/editor-common": "^108.0.0",
|
|
72
68
|
"react": "^18.2.0",
|
|
73
69
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
74
70
|
},
|