@instructure/ui-select 11.4.0 → 11.4.1-snapshot-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 +8 -0
- package/es/Select/Group/index.js +1 -2
- package/es/Select/Option/index.js +1 -2
- package/es/Select/index.js +5 -5
- package/es/index.js +3 -4
- package/package.json +35 -22
- package/tsconfig.build.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
## [11.4.1-snapshot-0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.4.1-snapshot-0) (2026-02-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui-select
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [11.4.0](https://github.com/instructure/instructure-ui/compare/v11.3.0...v11.4.0) (2026-01-20)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @instructure/ui-select
|
package/es/Select/Group/index.js
CHANGED
package/es/Select/index.js
CHANGED
|
@@ -39,11 +39,11 @@ import { TextInput } from '@instructure/ui-text-input';
|
|
|
39
39
|
import { Options } from '@instructure/ui-options';
|
|
40
40
|
import { IconArrowOpenDownLine, IconArrowOpenUpLine } from '@instructure/ui-icons';
|
|
41
41
|
import { withStyle } from '@instructure/emotion';
|
|
42
|
-
import generateStyle from
|
|
43
|
-
import generateComponentTheme from
|
|
44
|
-
import { Group } from
|
|
45
|
-
import { Option } from
|
|
46
|
-
import { allowedProps } from
|
|
42
|
+
import generateStyle from "./styles.js";
|
|
43
|
+
import generateComponentTheme from "./theme.js";
|
|
44
|
+
import { Group } from "./Group/index.js";
|
|
45
|
+
import { Option } from "./Option/index.js";
|
|
46
|
+
import { allowedProps } from "./props.js";
|
|
47
47
|
import { jsx as _jsx, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
|
|
48
48
|
// This memoed Option component is used to prevent unnecessary re-renders of
|
|
49
49
|
// Options.Item when the Select component is re-rendered. This is necessary
|
package/es/index.js
CHANGED
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
22
|
* SOFTWARE.
|
|
23
23
|
*/
|
|
24
|
-
|
|
25
|
-
export {
|
|
26
|
-
export {
|
|
27
|
-
export { Option as SelectOption } from './Select/Option';
|
|
24
|
+
export { Select } from "./Select/index.js";
|
|
25
|
+
export { Group as SelectGroup } from "./Select/Group/index.js";
|
|
26
|
+
export { Option as SelectOption } from "./Select/Option/index.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-select",
|
|
3
|
-
"version": "11.4.0",
|
|
3
|
+
"version": "11.4.1-snapshot-0",
|
|
4
4
|
"description": "A component for select and autocomplete behavior.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -13,32 +13,32 @@
|
|
|
13
13
|
"homepage": "https://instructure.github.io/instructure-ui/",
|
|
14
14
|
"bugs": "https://github.com/instructure/instructure-ui/issues",
|
|
15
15
|
"license": "MIT",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@babel/runtime": "^7.27.6",
|
|
18
|
+
"@instructure/emotion": "11.4.1-snapshot-0",
|
|
19
|
+
"@instructure/shared-types": "11.4.1-snapshot-0",
|
|
20
|
+
"@instructure/ui-form-field": "11.4.1-snapshot-0",
|
|
21
|
+
"@instructure/ui-dom-utils": "11.4.1-snapshot-0",
|
|
22
|
+
"@instructure/ui-icons": "11.4.1-snapshot-0",
|
|
23
|
+
"@instructure/ui-options": "11.4.1-snapshot-0",
|
|
24
|
+
"@instructure/ui-popover": "11.4.1-snapshot-0",
|
|
25
|
+
"@instructure/ui-position": "11.4.1-snapshot-0",
|
|
26
|
+
"@instructure/ui-selectable": "11.4.1-snapshot-0",
|
|
27
|
+
"@instructure/ui-react-utils": "11.4.1-snapshot-0",
|
|
28
|
+
"@instructure/ui-text-input": "11.4.1-snapshot-0",
|
|
29
|
+
"@instructure/ui-view": "11.4.1-snapshot-0",
|
|
30
|
+
"@instructure/uid": "11.4.1-snapshot-0",
|
|
31
|
+
"@instructure/ui-utils": "11.4.1-snapshot-0"
|
|
32
|
+
},
|
|
16
33
|
"devDependencies": {
|
|
17
34
|
"@testing-library/jest-dom": "^6.6.3",
|
|
18
35
|
"@testing-library/react": "15.0.7",
|
|
19
36
|
"@testing-library/user-event": "^14.6.1",
|
|
20
37
|
"vitest": "^3.2.2",
|
|
21
|
-
"@instructure/ui-babel-preset": "11.4.0",
|
|
22
|
-
"@instructure/ui-color-utils": "11.4.0",
|
|
23
|
-
"@instructure/ui-scripts": "11.4.0",
|
|
24
|
-
"@instructure/ui-themes": "11.4.0"
|
|
25
|
-
},
|
|
26
|
-
"dependencies": {
|
|
27
|
-
"@babel/runtime": "^7.27.6",
|
|
28
|
-
"@instructure/shared-types": "11.4.0",
|
|
29
|
-
"@instructure/emotion": "11.4.0",
|
|
30
|
-
"@instructure/ui-dom-utils": "11.4.0",
|
|
31
|
-
"@instructure/ui-icons": "11.4.0",
|
|
32
|
-
"@instructure/ui-form-field": "11.4.0",
|
|
33
|
-
"@instructure/ui-options": "11.4.0",
|
|
34
|
-
"@instructure/ui-popover": "11.4.0",
|
|
35
|
-
"@instructure/ui-position": "11.4.0",
|
|
36
|
-
"@instructure/ui-react-utils": "11.4.0",
|
|
37
|
-
"@instructure/ui-selectable": "11.4.0",
|
|
38
|
-
"@instructure/ui-utils": "11.4.0",
|
|
39
|
-
"@instructure/ui-view": "11.4.0",
|
|
40
|
-
"@instructure/ui-text-input": "11.4.0",
|
|
41
|
-
"@instructure/uid": "11.4.0"
|
|
38
|
+
"@instructure/ui-babel-preset": "11.4.1-snapshot-0",
|
|
39
|
+
"@instructure/ui-color-utils": "11.4.1-snapshot-0",
|
|
40
|
+
"@instructure/ui-scripts": "11.4.1-snapshot-0",
|
|
41
|
+
"@instructure/ui-themes": "11.4.1-snapshot-0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"react": ">=18 <=19"
|
|
@@ -47,6 +47,19 @@
|
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
49
|
"sideEffects": false,
|
|
50
|
+
"exports": {
|
|
51
|
+
".": {
|
|
52
|
+
"types": "./types/index.d.ts",
|
|
53
|
+
"import": "./es/index.js",
|
|
54
|
+
"require": "./lib/index.js",
|
|
55
|
+
"default": "./es/index.js"
|
|
56
|
+
},
|
|
57
|
+
"./lib/*": "./lib/*",
|
|
58
|
+
"./es/*": "./es/*",
|
|
59
|
+
"./types/*": "./types/*",
|
|
60
|
+
"./package.json": "./package.json",
|
|
61
|
+
"./src/*": "./src/*"
|
|
62
|
+
},
|
|
50
63
|
"scripts": {
|
|
51
64
|
"lint": "ui-scripts lint",
|
|
52
65
|
"lint:fix": "ui-scripts lint --fix",
|