@instructure/ui-select 11.7.4-snapshot-102 → 11.7.4-snapshot-105
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 +5 -2
- package/package.json +19 -19
- package/src/Select/v2/README.md +2 -2
- package/tsconfig.build.tsbuildinfo +1 -1
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
|
-
## [11.7.4-snapshot-
|
|
6
|
+
## [11.7.4-snapshot-105](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-105) (2026-07-15)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **many:** support current spacing tokens in the margin prop for v2 components ([1b47c5f](https://github.com/instructure/instructure-ui/commit/1b47c5f23eaa60b532cdfd53c39bd71f0cf51aaa))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-select",
|
|
3
|
-
"version": "11.7.4-snapshot-
|
|
3
|
+
"version": "11.7.4-snapshot-105",
|
|
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",
|
|
@@ -15,30 +15,30 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.29.7",
|
|
18
|
-
"@instructure/emotion": "11.7.4-snapshot-
|
|
19
|
-
"@instructure/
|
|
20
|
-
"@instructure/ui-
|
|
21
|
-
"@instructure/ui-icons": "11.7.4-snapshot-
|
|
22
|
-
"@instructure/ui-
|
|
23
|
-
"@instructure/
|
|
24
|
-
"@instructure/ui-
|
|
25
|
-
"@instructure/ui-position": "11.7.4-snapshot-
|
|
26
|
-
"@instructure/ui-
|
|
27
|
-
"@instructure/ui-
|
|
28
|
-
"@instructure/ui-
|
|
29
|
-
"@instructure/ui-
|
|
30
|
-
"@instructure/
|
|
31
|
-
"@instructure/
|
|
32
|
-
"@instructure/ui-
|
|
18
|
+
"@instructure/emotion": "11.7.4-snapshot-105",
|
|
19
|
+
"@instructure/shared-types": "11.7.4-snapshot-105",
|
|
20
|
+
"@instructure/ui-dom-utils": "11.7.4-snapshot-105",
|
|
21
|
+
"@instructure/ui-icons": "11.7.4-snapshot-105",
|
|
22
|
+
"@instructure/ui-form-field": "11.7.4-snapshot-105",
|
|
23
|
+
"@instructure/ui-options": "11.7.4-snapshot-105",
|
|
24
|
+
"@instructure/ui-popover": "11.7.4-snapshot-105",
|
|
25
|
+
"@instructure/ui-position": "11.7.4-snapshot-105",
|
|
26
|
+
"@instructure/ui-selectable": "11.7.4-snapshot-105",
|
|
27
|
+
"@instructure/ui-text-input": "11.7.4-snapshot-105",
|
|
28
|
+
"@instructure/ui-themes": "11.7.4-snapshot-105",
|
|
29
|
+
"@instructure/ui-utils": "11.7.4-snapshot-105",
|
|
30
|
+
"@instructure/uid": "11.7.4-snapshot-105",
|
|
31
|
+
"@instructure/ui-view": "11.7.4-snapshot-105",
|
|
32
|
+
"@instructure/ui-react-utils": "11.7.4-snapshot-105"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@testing-library/jest-dom": "^6.9.1",
|
|
36
36
|
"@testing-library/react": "16.3.2",
|
|
37
37
|
"@testing-library/user-event": "^14.6.1",
|
|
38
38
|
"vitest": "^4.1.9",
|
|
39
|
-
"@instructure/ui-babel-preset": "11.7.4-snapshot-
|
|
40
|
-
"@instructure/ui-
|
|
41
|
-
"@instructure/ui-
|
|
39
|
+
"@instructure/ui-babel-preset": "11.7.4-snapshot-105",
|
|
40
|
+
"@instructure/ui-color-utils": "11.7.4-snapshot-105",
|
|
41
|
+
"@instructure/ui-scripts": "11.7.4-snapshot-105"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"react": ">=18 <=19"
|
package/src/Select/v2/README.md
CHANGED
|
@@ -713,7 +713,7 @@ const GroupSelectExample = ({ options }) => {
|
|
|
713
713
|
type="notification"
|
|
714
714
|
variant={variant}
|
|
715
715
|
standalone
|
|
716
|
-
margin="0
|
|
716
|
+
margin="0 general.spaceSm general.space2xs 0"
|
|
717
717
|
/>
|
|
718
718
|
{text}
|
|
719
719
|
</span>
|
|
@@ -764,7 +764,7 @@ const GroupSelectExample = ({ options }) => {
|
|
|
764
764
|
: 'primary'
|
|
765
765
|
}
|
|
766
766
|
standalone
|
|
767
|
-
margin="0 0
|
|
767
|
+
margin="0 0 general.space2xs 0"
|
|
768
768
|
/>
|
|
769
769
|
}
|
|
770
770
|
inputRef={(el) => {
|