@atlaskit/rating 3.1.3 → 3.1.5

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaskit/rating
2
2
 
3
+ ## 3.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 3.1.4
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 3.1.3
4
16
 
5
17
  ### Patch Changes
@@ -1,3 +1,8 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ * @jsx jsx
4
+ */
5
+ import { type ForwardRefExoticComponent, type RefAttributes } from 'react';
1
6
  export type RatingRender = (props: {
2
7
  isChecked: boolean;
3
8
  }) => React.ReactNode;
@@ -63,5 +68,5 @@ export interface InternalRatingProps extends RatingProps {
63
68
  */
64
69
  render: RatingRender;
65
70
  }
66
- declare const Rating: import("react").ForwardRefExoticComponent<InternalRatingProps & import("react").RefAttributes<HTMLLabelElement>>;
71
+ declare const Rating: ForwardRefExoticComponent<InternalRatingProps & RefAttributes<HTMLLabelElement>>;
67
72
  export default Rating;
@@ -1,3 +1,8 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ * @jsx jsx
4
+ */
5
+ import { type ForwardRefExoticComponent, type RefAttributes } from 'react';
1
6
  export type RatingRender = (props: {
2
7
  isChecked: boolean;
3
8
  }) => React.ReactNode;
@@ -63,5 +68,5 @@ export interface InternalRatingProps extends RatingProps {
63
68
  */
64
69
  render: RatingRender;
65
70
  }
66
- declare const Rating: import("react").ForwardRefExoticComponent<InternalRatingProps & import("react").RefAttributes<HTMLLabelElement>>;
71
+ declare const Rating: ForwardRefExoticComponent<InternalRatingProps & RefAttributes<HTMLLabelElement>>;
67
72
  export default Rating;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/rating",
3
- "version": "3.1.3",
3
+ "version": "3.1.5",
4
4
  "description": "An accessible rating component that can be heavily customized.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -31,7 +31,7 @@
31
31
  }
32
32
  },
33
33
  "dependencies": {
34
- "@atlaskit/icon": "^30.0.0",
34
+ "@atlaskit/icon": "^32.0.0",
35
35
  "@atlaskit/motion": "^5.3.0",
36
36
  "@atlaskit/theme": "^21.0.0",
37
37
  "@atlaskit/tokens": "^11.0.0",