@contentful/field-editor-rating 1.4.1 → 1.4.4
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import { FieldAPI, ParametersAPI } from '@contentful/field-editor-shared';
|
|
3
3
|
export interface RatingEditorProps {
|
|
4
4
|
/**
|
|
@@ -16,7 +16,7 @@ export interface RatingEditorProps {
|
|
|
16
16
|
stars?: number;
|
|
17
17
|
}, Record<string, any>>;
|
|
18
18
|
}
|
|
19
|
-
export declare function RatingEditor(props: RatingEditorProps):
|
|
19
|
+
export declare function RatingEditor(props: RatingEditorProps): JSX.Element;
|
|
20
20
|
export declare namespace RatingEditor {
|
|
21
21
|
var defaultProps: {
|
|
22
22
|
isInitiallyDisabled: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/field-editor-rating",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -37,15 +37,18 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@contentful/f36-components": "^4.0.27",
|
|
39
39
|
"@contentful/f36-tokens": "^4.0.0",
|
|
40
|
-
"@contentful/field-editor-shared": "^1.4.
|
|
40
|
+
"@contentful/field-editor-shared": "^1.4.4",
|
|
41
41
|
"emotion": "^10.0.17",
|
|
42
42
|
"lodash": "^4.17.15"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@contentful/field-editor-test-utils": "^1.4.
|
|
45
|
+
"@contentful/field-editor-test-utils": "^1.4.5"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"react": ">=16.8.0"
|
|
49
49
|
},
|
|
50
|
-
"
|
|
50
|
+
"publishConfig": {
|
|
51
|
+
"registry": "https://npm.pkg.github.com/"
|
|
52
|
+
},
|
|
53
|
+
"gitHead": "b1f62d6b934520b6d4dc328921dd500381d1e22c"
|
|
51
54
|
}
|