@instructure/ui-rating 10.8.1-snapshot-3 → 10.8.1-snapshot-6

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
@@ -3,9 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [10.8.1-snapshot-3](https://github.com/instructure/instructure-ui/compare/v10.8.0...v10.8.1-snapshot-3) (2024-12-11)
6
+ ## [10.8.1-snapshot-6](https://github.com/instructure/instructure-ui/compare/v10.8.0...v10.8.1-snapshot-6) (2024-12-12)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-rating
8
+
9
+ ### Features
10
+
11
+ * **many:** make meta package export every component and type definition ([dee9abb](https://github.com/instructure/instructure-ui/commit/dee9abb9cbffa4abc9edf48fb7d8ad41fea385b4))
9
12
 
10
13
 
11
14
 
package/es/index.js CHANGED
@@ -21,4 +21,5 @@
21
21
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
22
  * SOFTWARE.
23
23
  */
24
- export { Rating } from './Rating';
24
+ export { Rating } from './Rating';
25
+ export { RatingIcon } from './RatingIcon';
package/lib/index.js CHANGED
@@ -9,4 +9,11 @@ Object.defineProperty(exports, "Rating", {
9
9
  return _Rating.Rating;
10
10
  }
11
11
  });
12
- var _Rating = require("./Rating");
12
+ Object.defineProperty(exports, "RatingIcon", {
13
+ enumerable: true,
14
+ get: function () {
15
+ return _RatingIcon.RatingIcon;
16
+ }
17
+ });
18
+ var _Rating = require("./Rating");
19
+ var _RatingIcon = require("./RatingIcon");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-rating",
3
- "version": "10.8.1-snapshot-3",
3
+ "version": "10.8.1-snapshot-6",
4
4
  "description": "A static rating component",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -24,22 +24,22 @@
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
26
  "@babel/runtime": "^7.26.0",
27
- "@instructure/console": "10.8.1-snapshot-3",
28
- "@instructure/emotion": "10.8.1-snapshot-3",
29
- "@instructure/shared-types": "10.8.1-snapshot-3",
30
- "@instructure/ui-a11y-content": "10.8.1-snapshot-3",
31
- "@instructure/ui-dom-utils": "10.8.1-snapshot-3",
32
- "@instructure/ui-icons": "10.8.1-snapshot-3",
33
- "@instructure/ui-motion": "10.8.1-snapshot-3",
34
- "@instructure/ui-react-utils": "10.8.1-snapshot-3",
35
- "@instructure/ui-testable": "10.8.1-snapshot-3",
36
- "@instructure/ui-view": "10.8.1-snapshot-3",
27
+ "@instructure/console": "10.8.1-snapshot-6",
28
+ "@instructure/emotion": "10.8.1-snapshot-6",
29
+ "@instructure/shared-types": "10.8.1-snapshot-6",
30
+ "@instructure/ui-a11y-content": "10.8.1-snapshot-6",
31
+ "@instructure/ui-dom-utils": "10.8.1-snapshot-6",
32
+ "@instructure/ui-icons": "10.8.1-snapshot-6",
33
+ "@instructure/ui-motion": "10.8.1-snapshot-6",
34
+ "@instructure/ui-react-utils": "10.8.1-snapshot-6",
35
+ "@instructure/ui-testable": "10.8.1-snapshot-6",
36
+ "@instructure/ui-view": "10.8.1-snapshot-6",
37
37
  "prop-types": "^15.8.1"
38
38
  },
39
39
  "devDependencies": {
40
- "@instructure/ui-axe-check": "10.8.1-snapshot-3",
41
- "@instructure/ui-babel-preset": "10.8.1-snapshot-3",
42
- "@instructure/ui-themes": "10.8.1-snapshot-3",
40
+ "@instructure/ui-axe-check": "10.8.1-snapshot-6",
41
+ "@instructure/ui-babel-preset": "10.8.1-snapshot-6",
42
+ "@instructure/ui-themes": "10.8.1-snapshot-6",
43
43
  "@testing-library/jest-dom": "^6.6.3",
44
44
  "@testing-library/react": "^16.0.1",
45
45
  "vitest": "^2.1.8"
package/src/index.ts CHANGED
@@ -22,6 +22,7 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
  export { Rating } from './Rating'
25
+ export { RatingIcon } from './RatingIcon'
25
26
 
26
27
  export type { RatingProps } from './Rating/props'
27
28
  export type { RatingIconProps } from './RatingIcon/props'