@atlaskit/rating 0.2.66 → 0.2.67
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 +6 -0
- package/dist/cjs/components/rating-group.js +12 -27
- package/dist/cjs/components/rating.js +8 -17
- package/dist/cjs/components/star.js +4 -17
- package/dist/cjs/extract-react-types/rating.js +0 -1
- package/dist/cjs/extract-react-types/star.js +0 -1
- package/dist/cjs/index.js +0 -4
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/rating-group.js +3 -7
- package/dist/es2019/components/rating.js +2 -4
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/rating-group.js +15 -24
- package/dist/esm/components/rating.js +10 -13
- package/dist/esm/components/star.js +4 -5
- package/dist/esm/version.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,59 +1,44 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
8
7
|
exports.default = RatingGroup;
|
|
9
|
-
|
|
10
8
|
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
11
|
-
|
|
12
9
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
13
|
-
|
|
14
10
|
var _react = require("react");
|
|
15
|
-
|
|
16
11
|
var _react2 = require("@emotion/react");
|
|
17
|
-
|
|
18
12
|
var _constants = require("@atlaskit/theme/constants");
|
|
19
|
-
|
|
20
13
|
var _templateObject;
|
|
21
|
-
|
|
22
14
|
function RatingGroup(_ref) {
|
|
23
15
|
var _ref$groupName = _ref.groupName,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
16
|
+
groupName = _ref$groupName === void 0 ? 'ak--rating-group' : _ref$groupName,
|
|
17
|
+
onChange = _ref.onChange,
|
|
18
|
+
defaultValue = _ref.defaultValue,
|
|
19
|
+
value = _ref.value,
|
|
20
|
+
testId = _ref.testId,
|
|
21
|
+
children = _ref.children;
|
|
31
22
|
var _useState = (0, _react.useState)(value || defaultValue),
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
23
|
+
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
|
24
|
+
currentValue = _useState2[0],
|
|
25
|
+
setValue = _useState2[1];
|
|
36
26
|
var _useState3 = (0, _react.useState)(!!currentValue),
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
27
|
+
_useState4 = (0, _slicedToArray2.default)(_useState3, 2),
|
|
28
|
+
firstSelectionMade = _useState4[0],
|
|
29
|
+
setFirstSelectionMade = _useState4[1];
|
|
41
30
|
var actualValue = value || currentValue;
|
|
42
|
-
|
|
43
31
|
var onChangeHandler = function onChangeHandler(value) {
|
|
44
32
|
onChange && onChange(value);
|
|
45
33
|
setValue(value);
|
|
46
|
-
|
|
47
34
|
if (!firstSelectionMade) {
|
|
48
35
|
setFirstSelectionMade(true);
|
|
49
36
|
}
|
|
50
37
|
};
|
|
51
|
-
|
|
52
38
|
if (process.env.NODE_ENV !== 'production' && defaultValue && value) {
|
|
53
39
|
// eslint-disable-next-line no-console
|
|
54
40
|
console.error("@atlaskit/rating\nDon't use \"defaultValue\" with \"value\" you're trying to mix uncontrolled and controlled modes.\nUse \"defaultValue\" or \"value\" happy days :-).\n");
|
|
55
41
|
}
|
|
56
|
-
|
|
57
42
|
return (0, _react2.jsx)("div", {
|
|
58
43
|
"data-testid": testId && "".concat(testId, "--root"),
|
|
59
44
|
css: (0, _react2.css)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n display: inline-flex;\n /* Because some children are inline-block we make the font-size zero to eliminate the implicit space between them. */\n font-size: 0;\n\n /* This implementation does some interesting tricks to keep it flowing LTR and ensuring accessibility. */\n /* Instead of it starting in an empty state - it starts filled - and then uses the CSS sibling select \"~\" */\n /* to then display the empty state for the star rating. */\n\n [data-rating-icon-checked] {\n display: inline-block;\n }\n\n [data-rating-icon] {\n display: none;\n }\n\n label:hover\n ~ label\n [data-rating-icon-checked][data-rating-icon-checked],\n input:checked ~ label [data-rating-icon-checked] {\n display: none;\n }\n\n label:hover ~ label [data-rating-icon][data-rating-icon],\n input:checked ~ label [data-rating-icon] {\n display: inline-block;\n }\n\n /* When hovering reset all elements back to filled state. */\n &:hover [data-rating-icon-checked][data-rating-icon-checked] {\n display: inline-block;\n }\n\n &:hover [data-rating-icon][data-rating-icon] {\n display: none;\n }\n "])))
|
|
@@ -1,37 +1,28 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
8
7
|
exports.default = void 0;
|
|
9
|
-
|
|
10
8
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
-
|
|
12
9
|
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
13
|
-
|
|
14
10
|
var _react = require("react");
|
|
15
|
-
|
|
16
11
|
var _react2 = require("@emotion/react");
|
|
17
|
-
|
|
18
12
|
var _motion = require("@atlaskit/motion");
|
|
19
|
-
|
|
20
13
|
var _constants = require("@atlaskit/theme/constants");
|
|
21
|
-
|
|
22
14
|
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
23
|
-
|
|
24
15
|
var _excluded = ["isChecked", "name", "testId", "label", "id", "value", "onChange", "render"];
|
|
25
16
|
var Rating = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
26
17
|
var isChecked = _ref.isChecked,
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
18
|
+
name = _ref.name,
|
|
19
|
+
testId = _ref.testId,
|
|
20
|
+
label = _ref.label,
|
|
21
|
+
id = _ref.id,
|
|
22
|
+
value = _ref.value,
|
|
23
|
+
onChange = _ref.onChange,
|
|
24
|
+
render = _ref.render,
|
|
25
|
+
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
35
26
|
var onChangeHandler = (0, _react.useCallback)(function (e) {
|
|
36
27
|
onChange && onChange(e.target.checked ? value : undefined);
|
|
37
28
|
}, [onChange, value]);
|
|
@@ -1,40 +1,27 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
4
|
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
6
|
-
|
|
7
5
|
Object.defineProperty(exports, "__esModule", {
|
|
8
6
|
value: true
|
|
9
7
|
});
|
|
10
8
|
exports.default = void 0;
|
|
11
|
-
|
|
12
9
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
13
|
-
|
|
14
10
|
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
15
|
-
|
|
16
11
|
var _react = _interopRequireWildcard(require("react"));
|
|
17
|
-
|
|
18
12
|
var _star = _interopRequireDefault(require("@atlaskit/icon/glyph/star"));
|
|
19
|
-
|
|
20
13
|
var _starFilled = _interopRequireDefault(require("@atlaskit/icon/glyph/star-filled"));
|
|
21
|
-
|
|
22
14
|
var _colors = require("@atlaskit/theme/colors");
|
|
23
|
-
|
|
24
15
|
var _rating = _interopRequireDefault(require("./rating"));
|
|
25
|
-
|
|
26
16
|
var _excluded = ["size", "color"];
|
|
27
|
-
|
|
28
17
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
29
|
-
|
|
30
18
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
31
|
-
|
|
32
19
|
var Star = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
33
20
|
var _ref$size = _ref.size,
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
21
|
+
size = _ref$size === void 0 ? 'large' : _ref$size,
|
|
22
|
+
_ref$color = _ref.color,
|
|
23
|
+
color = _ref$color === void 0 ? "var(--ds-icon-accent-yellow, ".concat(_colors.Y200, ")") : _ref$color,
|
|
24
|
+
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
38
25
|
var render = (0, _react.useCallback)(function (props) {
|
|
39
26
|
return props.isChecked ?
|
|
40
27
|
/*#__PURE__*/
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
@@ -23,9 +22,6 @@ Object.defineProperty(exports, "Star", {
|
|
|
23
22
|
return _star.default;
|
|
24
23
|
}
|
|
25
24
|
});
|
|
26
|
-
|
|
27
25
|
var _ratingGroup = _interopRequireDefault(require("./components/rating-group"));
|
|
28
|
-
|
|
29
26
|
var _star = _interopRequireDefault(require("./components/star"));
|
|
30
|
-
|
|
31
27
|
var _rating = _interopRequireDefault(require("./components/rating"));
|
package/dist/cjs/version.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/* eslint-disable @atlaskit/design-system/use-visually-hidden */
|
|
2
|
-
|
|
3
2
|
/** @jsx jsx */
|
|
4
3
|
import { Children, cloneElement, Fragment, useState } from 'react';
|
|
5
|
-
import { css, jsx } from '@emotion/react';
|
|
6
|
-
// eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
|
|
4
|
+
import { css, jsx } from '@emotion/react';
|
|
7
5
|
|
|
6
|
+
// eslint-disable-next-line @atlaskit/design-system/use-visually-hidden
|
|
7
|
+
// eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
|
|
8
8
|
import { visuallyHidden } from '@atlaskit/theme/constants';
|
|
9
9
|
export default function RatingGroup({
|
|
10
10
|
groupName = 'ak--rating-group',
|
|
@@ -17,16 +17,13 @@ export default function RatingGroup({
|
|
|
17
17
|
const [currentValue, setValue] = useState(value || defaultValue);
|
|
18
18
|
const [firstSelectionMade, setFirstSelectionMade] = useState(!!currentValue);
|
|
19
19
|
const actualValue = value || currentValue;
|
|
20
|
-
|
|
21
20
|
const onChangeHandler = value => {
|
|
22
21
|
onChange && onChange(value);
|
|
23
22
|
setValue(value);
|
|
24
|
-
|
|
25
23
|
if (!firstSelectionMade) {
|
|
26
24
|
setFirstSelectionMade(true);
|
|
27
25
|
}
|
|
28
26
|
};
|
|
29
|
-
|
|
30
27
|
if (process.env.NODE_ENV !== 'production' && defaultValue && value) {
|
|
31
28
|
// eslint-disable-next-line no-console
|
|
32
29
|
console.error(`@atlaskit/rating
|
|
@@ -34,7 +31,6 @@ Don't use "defaultValue" with "value" you're trying to mix uncontrolled and cont
|
|
|
34
31
|
Use "defaultValue" or "value" happy days :-).
|
|
35
32
|
`);
|
|
36
33
|
}
|
|
37
|
-
|
|
38
34
|
return jsx("div", {
|
|
39
35
|
"data-testid": testId && `${testId}--root`,
|
|
40
36
|
css: css`
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
-
|
|
3
2
|
/* eslint-disable @atlaskit/design-system/use-visually-hidden */
|
|
4
|
-
|
|
5
3
|
/** @jsx jsx */
|
|
6
4
|
import { forwardRef, Fragment, useCallback } from 'react';
|
|
7
5
|
import { jsx } from '@emotion/react';
|
|
8
|
-
import { easeInOut, smallDurationMs } from '@atlaskit/motion';
|
|
6
|
+
import { easeInOut, smallDurationMs } from '@atlaskit/motion';
|
|
7
|
+
// eslint-disable-next-line @atlaskit/design-system/use-visually-hidden
|
|
9
8
|
// eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
|
|
10
|
-
|
|
11
9
|
import { visuallyHidden } from '@atlaskit/theme/constants';
|
|
12
10
|
import Tooltip from '@atlaskit/tooltip';
|
|
13
11
|
const Rating = /*#__PURE__*/forwardRef(({
|
package/dist/es2019/version.json
CHANGED
|
@@ -1,51 +1,42 @@
|
|
|
1
1
|
import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
|
|
2
2
|
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
3
|
-
|
|
4
3
|
var _templateObject;
|
|
5
|
-
|
|
6
4
|
/* eslint-disable @atlaskit/design-system/use-visually-hidden */
|
|
7
|
-
|
|
8
5
|
/** @jsx jsx */
|
|
9
6
|
import { Children, cloneElement, Fragment, useState } from 'react';
|
|
10
|
-
import { css, jsx } from '@emotion/react';
|
|
11
|
-
// eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
|
|
7
|
+
import { css, jsx } from '@emotion/react';
|
|
12
8
|
|
|
9
|
+
// eslint-disable-next-line @atlaskit/design-system/use-visually-hidden
|
|
10
|
+
// eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
|
|
13
11
|
import { visuallyHidden } from '@atlaskit/theme/constants';
|
|
14
12
|
export default function RatingGroup(_ref) {
|
|
15
13
|
var _ref$groupName = _ref.groupName,
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
14
|
+
groupName = _ref$groupName === void 0 ? 'ak--rating-group' : _ref$groupName,
|
|
15
|
+
onChange = _ref.onChange,
|
|
16
|
+
defaultValue = _ref.defaultValue,
|
|
17
|
+
value = _ref.value,
|
|
18
|
+
testId = _ref.testId,
|
|
19
|
+
children = _ref.children;
|
|
23
20
|
var _useState = useState(value || defaultValue),
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
21
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
22
|
+
currentValue = _useState2[0],
|
|
23
|
+
setValue = _useState2[1];
|
|
28
24
|
var _useState3 = useState(!!currentValue),
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
25
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
26
|
+
firstSelectionMade = _useState4[0],
|
|
27
|
+
setFirstSelectionMade = _useState4[1];
|
|
33
28
|
var actualValue = value || currentValue;
|
|
34
|
-
|
|
35
29
|
var onChangeHandler = function onChangeHandler(value) {
|
|
36
30
|
onChange && onChange(value);
|
|
37
31
|
setValue(value);
|
|
38
|
-
|
|
39
32
|
if (!firstSelectionMade) {
|
|
40
33
|
setFirstSelectionMade(true);
|
|
41
34
|
}
|
|
42
35
|
};
|
|
43
|
-
|
|
44
36
|
if (process.env.NODE_ENV !== 'production' && defaultValue && value) {
|
|
45
37
|
// eslint-disable-next-line no-console
|
|
46
38
|
console.error("@atlaskit/rating\nDon't use \"defaultValue\" with \"value\" you're trying to mix uncontrolled and controlled modes.\nUse \"defaultValue\" or \"value\" happy days :-).\n");
|
|
47
39
|
}
|
|
48
|
-
|
|
49
40
|
return jsx("div", {
|
|
50
41
|
"data-testid": testId && "".concat(testId, "--root"),
|
|
51
42
|
css: css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: inline-flex;\n /* Because some children are inline-block we make the font-size zero to eliminate the implicit space between them. */\n font-size: 0;\n\n /* This implementation does some interesting tricks to keep it flowing LTR and ensuring accessibility. */\n /* Instead of it starting in an empty state - it starts filled - and then uses the CSS sibling select \"~\" */\n /* to then display the empty state for the star rating. */\n\n [data-rating-icon-checked] {\n display: inline-block;\n }\n\n [data-rating-icon] {\n display: none;\n }\n\n label:hover\n ~ label\n [data-rating-icon-checked][data-rating-icon-checked],\n input:checked ~ label [data-rating-icon-checked] {\n display: none;\n }\n\n label:hover ~ label [data-rating-icon][data-rating-icon],\n input:checked ~ label [data-rating-icon] {\n display: inline-block;\n }\n\n /* When hovering reset all elements back to filled state. */\n &:hover [data-rating-icon-checked][data-rating-icon-checked] {\n display: inline-block;\n }\n\n &:hover [data-rating-icon][data-rating-icon] {\n display: none;\n }\n "])))
|
|
@@ -1,28 +1,25 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
3
3
|
var _excluded = ["isChecked", "name", "testId", "label", "id", "value", "onChange", "render"];
|
|
4
|
-
|
|
5
4
|
/* eslint-disable @atlaskit/design-system/use-visually-hidden */
|
|
6
|
-
|
|
7
5
|
/** @jsx jsx */
|
|
8
6
|
import { forwardRef, Fragment, useCallback } from 'react';
|
|
9
7
|
import { jsx } from '@emotion/react';
|
|
10
|
-
import { easeInOut, smallDurationMs } from '@atlaskit/motion';
|
|
8
|
+
import { easeInOut, smallDurationMs } from '@atlaskit/motion';
|
|
9
|
+
// eslint-disable-next-line @atlaskit/design-system/use-visually-hidden
|
|
11
10
|
// eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
|
|
12
|
-
|
|
13
11
|
import { visuallyHidden } from '@atlaskit/theme/constants';
|
|
14
12
|
import Tooltip from '@atlaskit/tooltip';
|
|
15
13
|
var Rating = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
16
14
|
var isChecked = _ref.isChecked,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
15
|
+
name = _ref.name,
|
|
16
|
+
testId = _ref.testId,
|
|
17
|
+
label = _ref.label,
|
|
18
|
+
id = _ref.id,
|
|
19
|
+
value = _ref.value,
|
|
20
|
+
onChange = _ref.onChange,
|
|
21
|
+
render = _ref.render,
|
|
22
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
26
23
|
var onChangeHandler = useCallback(function (e) {
|
|
27
24
|
onChange && onChange(e.target.checked ? value : undefined);
|
|
28
25
|
}, [onChange, value]);
|
|
@@ -8,11 +8,10 @@ import { Y200 } from '@atlaskit/theme/colors';
|
|
|
8
8
|
import Rating from './rating';
|
|
9
9
|
var Star = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
10
10
|
var _ref$size = _ref.size,
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
size = _ref$size === void 0 ? 'large' : _ref$size,
|
|
12
|
+
_ref$color = _ref.color,
|
|
13
|
+
color = _ref$color === void 0 ? "var(--ds-icon-accent-yellow, ".concat(Y200, ")") : _ref$color,
|
|
14
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
16
15
|
var render = useCallback(function (props) {
|
|
17
16
|
return props.isChecked ?
|
|
18
17
|
/*#__PURE__*/
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rating",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.67",
|
|
4
4
|
"description": "An accessible rating component that can be heavily customized.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@atlaskit/icon": "^21.11.0",
|
|
27
27
|
"@atlaskit/motion": "^1.3.0",
|
|
28
28
|
"@atlaskit/theme": "^12.2.0",
|
|
29
|
-
"@atlaskit/tokens": "0.
|
|
29
|
+
"@atlaskit/tokens": "1.0.0",
|
|
30
30
|
"@atlaskit/tooltip": "^17.6.0",
|
|
31
31
|
"@babel/runtime": "^7.0.0",
|
|
32
32
|
"@emotion/react": "^11.7.1"
|