@instructure/ui-simple-select 10.8.1-snapshot-4 → 10.9.0

Sign up to get free protection for your applications and to get access to all the features.
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-4](https://github.com/instructure/instructure-ui/compare/v10.8.0...v10.8.1-snapshot-4) (2024-12-12)
6
+ # [10.9.0](https://github.com/instructure/instructure-ui/compare/v10.8.0...v10.9.0) (2024-12-12)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-simple-select
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
@@ -22,4 +22,6 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
- export { SimpleSelect } from './SimpleSelect';
25
+ export { SimpleSelect } from './SimpleSelect';
26
+ export { Group as SimpleSelectGroup } from './SimpleSelect/Group';
27
+ export { Option as SimpleSelectOption } from './SimpleSelect/Option';
package/lib/index.js CHANGED
@@ -9,4 +9,18 @@ Object.defineProperty(exports, "SimpleSelect", {
9
9
  return _SimpleSelect.SimpleSelect;
10
10
  }
11
11
  });
12
- var _SimpleSelect = require("./SimpleSelect");
12
+ Object.defineProperty(exports, "SimpleSelectGroup", {
13
+ enumerable: true,
14
+ get: function () {
15
+ return _Group.Group;
16
+ }
17
+ });
18
+ Object.defineProperty(exports, "SimpleSelectOption", {
19
+ enumerable: true,
20
+ get: function () {
21
+ return _Option.Option;
22
+ }
23
+ });
24
+ var _SimpleSelect = require("./SimpleSelect");
25
+ var _Group = require("./SimpleSelect/Group");
26
+ var _Option = require("./SimpleSelect/Option");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-simple-select",
3
- "version": "10.8.1-snapshot-4",
3
+ "version": "10.9.0",
4
4
  "description": "A component for standard select element behavior.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -24,23 +24,23 @@
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
26
  "@babel/runtime": "^7.26.0",
27
- "@instructure/console": "10.8.1-snapshot-4",
28
- "@instructure/shared-types": "10.8.1-snapshot-4",
29
- "@instructure/ui-form-field": "10.8.1-snapshot-4",
30
- "@instructure/ui-position": "10.8.1-snapshot-4",
31
- "@instructure/ui-prop-types": "10.8.1-snapshot-4",
32
- "@instructure/ui-react-utils": "10.8.1-snapshot-4",
33
- "@instructure/ui-select": "10.8.1-snapshot-4",
34
- "@instructure/ui-testable": "10.8.1-snapshot-4",
27
+ "@instructure/console": "10.9.0",
28
+ "@instructure/shared-types": "10.9.0",
29
+ "@instructure/ui-form-field": "10.9.0",
30
+ "@instructure/ui-position": "10.9.0",
31
+ "@instructure/ui-prop-types": "10.9.0",
32
+ "@instructure/ui-react-utils": "10.9.0",
33
+ "@instructure/ui-select": "10.9.0",
34
+ "@instructure/ui-testable": "10.9.0",
35
35
  "prop-types": "^15.8.1"
36
36
  },
37
37
  "devDependencies": {
38
- "@instructure/ui-axe-check": "10.8.1-snapshot-4",
39
- "@instructure/ui-babel-preset": "10.8.1-snapshot-4",
40
- "@instructure/ui-color-utils": "10.8.1-snapshot-4",
41
- "@instructure/ui-icons": "10.8.1-snapshot-4",
42
- "@instructure/ui-test-utils": "10.8.1-snapshot-4",
43
- "@instructure/ui-utils": "10.8.1-snapshot-4",
38
+ "@instructure/ui-axe-check": "10.9.0",
39
+ "@instructure/ui-babel-preset": "10.9.0",
40
+ "@instructure/ui-color-utils": "10.9.0",
41
+ "@instructure/ui-icons": "10.9.0",
42
+ "@instructure/ui-test-utils": "10.9.0",
43
+ "@instructure/ui-utils": "10.9.0",
44
44
  "@testing-library/jest-dom": "^6.6.3",
45
45
  "@testing-library/react": "^16.0.1",
46
46
  "@testing-library/user-event": "^14.5.2",
package/src/index.ts CHANGED
@@ -23,6 +23,8 @@
23
23
  */
24
24
 
25
25
  export { SimpleSelect } from './SimpleSelect'
26
+ export { Group as SimpleSelectGroup } from './SimpleSelect/Group'
27
+ export { Option as SimpleSelectOption } from './SimpleSelect/Option'
26
28
 
27
29
  export type { SimpleSelectProps } from './SimpleSelect/props'
28
30
  export type { SimpleSelectGroupProps } from './SimpleSelect/Group/props'