@instructure/ui-react-utils 8.55.2-snapshot-0 → 9.0.0

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,7 +3,23 @@
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
- ## [8.55.2-snapshot-0](https://github.com/instructure/instructure-ui/compare/v8.55.1...v8.55.2-snapshot-0) (2024-05-06)
6
+ # [9.0.0](https://github.com/instructure/instructure-ui/compare/v8.56.0...v9.0.0) (2024-05-09)
7
+
8
+
9
+ ### Features
10
+
11
+ * **ui-dom-utils,ui-react-utils,ui-utils:** remove deprecated utils ([0a8c8e3](https://github.com/instructure/instructure-ui/commit/0a8c8e3230db7a7ec107bb726d1f98375c9446c4))
12
+
13
+
14
+ ### BREAKING CHANGES
15
+
16
+ * **ui-dom-utils,ui-react-utils,ui-utils:** deprecated utils has been removed
17
+
18
+
19
+
20
+
21
+
22
+ # [8.56.0](https://github.com/instructure/instructure-ui/compare/v8.55.1...v8.56.0) (2024-05-06)
7
23
 
8
24
  **Note:** Version bump only for package @instructure/ui-react-utils
9
25
 
package/es/index.js CHANGED
@@ -24,7 +24,6 @@
24
24
 
25
25
  /* list utils in alphabetical order */
26
26
  export { callRenderProp } from './callRenderProp';
27
- export { ComponentIdentifier } from './ComponentIdentifier';
28
27
  export { deprecated } from './deprecated';
29
28
  export { ensureSingleChild } from './ensureSingleChild';
30
29
  export { experimental } from './experimental';
package/lib/index.js CHANGED
@@ -3,12 +3,6 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- Object.defineProperty(exports, "ComponentIdentifier", {
7
- enumerable: true,
8
- get: function () {
9
- return _ComponentIdentifier.ComponentIdentifier;
10
- }
11
- });
12
6
  Object.defineProperty(exports, "DeterministicIdContext", {
13
7
  enumerable: true,
14
8
  get: function () {
@@ -118,7 +112,6 @@ Object.defineProperty(exports, "withDeterministicId", {
118
112
  }
119
113
  });
120
114
  var _callRenderProp = require("./callRenderProp");
121
- var _ComponentIdentifier = require("./ComponentIdentifier");
122
115
  var _deprecated = require("./deprecated");
123
116
  var _ensureSingleChild = require("./ensureSingleChild");
124
117
  var _experimental = require("./experimental");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-react-utils",
3
- "version": "8.55.2-snapshot-0",
3
+ "version": "9.0.0",
4
4
  "description": "A React utility library made by Instructure Inc.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -22,18 +22,18 @@
22
22
  },
23
23
  "license": "MIT",
24
24
  "devDependencies": {
25
- "@instructure/ui-babel-preset": "8.55.2-snapshot-0",
25
+ "@instructure/ui-babel-preset": "9.0.0",
26
26
  "@testing-library/jest-dom": "^6.1.4",
27
27
  "@testing-library/react": "^14.1.2"
28
28
  },
29
29
  "dependencies": {
30
30
  "@babel/runtime": "^7.23.2",
31
31
  "@emotion/is-prop-valid": "^1.2.1",
32
- "@instructure/console": "8.55.2-snapshot-0",
33
- "@instructure/shared-types": "8.55.2-snapshot-0",
34
- "@instructure/ui-decorator": "8.55.2-snapshot-0",
35
- "@instructure/ui-dom-utils": "8.55.2-snapshot-0",
36
- "@instructure/ui-utils": "8.55.2-snapshot-0",
32
+ "@instructure/console": "9.0.0",
33
+ "@instructure/shared-types": "9.0.0",
34
+ "@instructure/ui-decorator": "9.0.0",
35
+ "@instructure/ui-dom-utils": "9.0.0",
36
+ "@instructure/ui-utils": "9.0.0",
37
37
  "hoist-non-react-statics": "^3.3.2",
38
38
  "prop-types": "^15.8.1"
39
39
  },
package/src/index.ts CHANGED
@@ -24,7 +24,6 @@
24
24
 
25
25
  /* list utils in alphabetical order */
26
26
  export { callRenderProp } from './callRenderProp'
27
- export { ComponentIdentifier } from './ComponentIdentifier'
28
27
  export { deprecated } from './deprecated'
29
28
  export { ensureSingleChild } from './ensureSingleChild'
30
29
  export { experimental } from './experimental'