@contentful/field-editor-validation-errors 2.1.3-canary.1 → 3.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/dist/cjs/styles.js +5 -5
- package/dist/esm/styles.js +1 -1
- package/package.json +9 -9
package/dist/cjs/styles.js
CHANGED
|
@@ -23,28 +23,28 @@ _export(exports, {
|
|
|
23
23
|
}
|
|
24
24
|
});
|
|
25
25
|
const _f36tokens = /*#__PURE__*/ _interop_require_default(require("@contentful/f36-tokens"));
|
|
26
|
-
const
|
|
26
|
+
const _css = require("@emotion/css");
|
|
27
27
|
function _interop_require_default(obj) {
|
|
28
28
|
return obj && obj.__esModule ? obj : {
|
|
29
29
|
default: obj
|
|
30
30
|
};
|
|
31
31
|
}
|
|
32
|
-
const errorList = (0,
|
|
32
|
+
const errorList = (0, _css.css)({
|
|
33
33
|
padding: 0,
|
|
34
34
|
wordWrap: 'break-word',
|
|
35
35
|
marginTop: _f36tokens.default.spacingS,
|
|
36
36
|
color: _f36tokens.default.red500,
|
|
37
37
|
listStyleType: 'none'
|
|
38
38
|
});
|
|
39
|
-
const errorMessage = (0,
|
|
39
|
+
const errorMessage = (0, _css.css)({
|
|
40
40
|
display: 'inline-flex',
|
|
41
41
|
flexDirection: 'column',
|
|
42
42
|
marginLeft: _f36tokens.default.spacingXs
|
|
43
43
|
});
|
|
44
|
-
const errorItem = (0,
|
|
44
|
+
const errorItem = (0, _css.css)({
|
|
45
45
|
display: 'flex',
|
|
46
46
|
alignItems: 'center'
|
|
47
47
|
});
|
|
48
|
-
const entryLink = (0,
|
|
48
|
+
const entryLink = (0, _css.css)({
|
|
49
49
|
fontWeight: Number(_f36tokens.default.fontWeightDemiBold)
|
|
50
50
|
});
|
package/dist/esm/styles.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/field-editor-validation-errors",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -36,23 +36,23 @@
|
|
|
36
36
|
"tsc": "tsc -p ./ --noEmit"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@contentful/f36-components": "^
|
|
40
|
-
"@contentful/f36-icons": "^
|
|
41
|
-
"@contentful/f36-tokens": "^
|
|
42
|
-
"@contentful/field-editor-shared": "^3.0.1
|
|
43
|
-
"emotion": "^
|
|
39
|
+
"@contentful/f36-components": "^6.7.1",
|
|
40
|
+
"@contentful/f36-icons": "^6.7.1",
|
|
41
|
+
"@contentful/f36-tokens": "^6.1.2",
|
|
42
|
+
"@contentful/field-editor-shared": "^3.0.1",
|
|
43
|
+
"@emotion/css": "^11.13.5"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@contentful/field-editor-test-utils": "^
|
|
46
|
+
"@contentful/field-editor-test-utils": "^2.0.0",
|
|
47
47
|
"@lingui/core": "5.3.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@lingui/core": "^5.3.0",
|
|
51
51
|
"@tanstack/react-query": "^4.3.9",
|
|
52
|
-
"react": ">=
|
|
52
|
+
"react": ">=18.3.1"
|
|
53
53
|
},
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"registry": "https://npm.pkg.github.com/"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "79ea20201fece746a4835e16854024616b81e184"
|
|
58
58
|
}
|