@instructure/ui-simple-select 11.7.4-snapshot-3 → 11.7.4-snapshot-5

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,45 @@
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-3](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-3) (2026-05-12)
6
+ ## [11.7.4-snapshot-5](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-5) (2026-05-12)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-simple-select
8
+
9
+ ### Features
10
+
11
+ * **many:** remove deprecated v2 items ([d5c1198](https://github.com/instructure/instructure-ui/commit/d5c1198820342f674c99bd7ef016ab2094d62a89))
12
+
13
+
14
+ ### BREAKING CHANGES
15
+
16
+ * **many:** Removed FormFieldLabel component
17
+
18
+ Removed _content prop from DrawerLayout.Tray and DrawerLayout.Content
19
+
20
+ Removed _link prop from Link
21
+
22
+ Removed _node prop from Menu.Item
23
+
24
+ Removed _root prop from Pagination, TreeBrowser
25
+
26
+ Removed _select prop from SimpleSelect and TimeSelect
27
+
28
+ Removed _ref prop from TruncateText
29
+
30
+ Removed _element prop from View
31
+
32
+ Removed color="ai" from Heading
33
+
34
+ Removed variant="inline-small" and variant="standalone-small" from Link
35
+
36
+ Removed title prop from Tag
37
+
38
+ Removed focusRingBorderRadius prop from View
39
+
40
+ Removed hideActionsUserSeparator prop from TopNavBar.Layout
41
+
42
+ Removed handleFocusOutlineColor, handleFocusOutlineWidth, handleShadowColor from RangeInput
43
+
44
+ INSTUI-5025
9
45
 
10
46
 
11
47
 
@@ -66,9 +66,6 @@ let SimpleSelect = (_dec = withDeterministicId(), _dec(_class = class SimpleSele
66
66
  };
67
67
  this._emptyOptionId = props.deterministicId('Select-EmptyOption');
68
68
  }
69
- get _select() {
70
- return this.ref;
71
- }
72
69
  focus() {
73
70
  this.ref && this.ref.focus();
74
71
  }
@@ -76,9 +76,6 @@ let SimpleSelect = exports.SimpleSelect = (_dec = (0, _withDeterministicId.withD
76
76
  };
77
77
  this._emptyOptionId = props.deterministicId('Select-EmptyOption');
78
78
  }
79
- get _select() {
80
- return this.ref;
81
- }
82
79
  focus() {
83
80
  this.ref && this.ref.focus();
84
81
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-simple-select",
3
- "version": "11.7.4-snapshot-3",
3
+ "version": "11.7.4-snapshot-5",
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",
@@ -15,22 +15,22 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.29.2",
18
- "@instructure/console": "11.7.4-snapshot-3",
19
- "@instructure/ui-position": "11.7.4-snapshot-3",
20
- "@instructure/ui-form-field": "11.7.4-snapshot-3",
21
- "@instructure/shared-types": "11.7.4-snapshot-3",
22
- "@instructure/ui-react-utils": "11.7.4-snapshot-3",
23
- "@instructure/ui-select": "11.7.4-snapshot-3"
18
+ "@instructure/console": "11.7.4-snapshot-5",
19
+ "@instructure/shared-types": "11.7.4-snapshot-5",
20
+ "@instructure/ui-position": "11.7.4-snapshot-5",
21
+ "@instructure/ui-react-utils": "11.7.4-snapshot-5",
22
+ "@instructure/ui-form-field": "11.7.4-snapshot-5",
23
+ "@instructure/ui-select": "11.7.4-snapshot-5"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@testing-library/jest-dom": "^6.6.3",
27
27
  "@testing-library/react": "15.0.7",
28
28
  "@testing-library/user-event": "^14.6.1",
29
29
  "vitest": "^3.2.2",
30
- "@instructure/ui-color-utils": "11.7.4-snapshot-3",
31
- "@instructure/ui-babel-preset": "11.7.4-snapshot-3",
32
- "@instructure/ui-icons": "11.7.4-snapshot-3",
33
- "@instructure/ui-utils": "11.7.4-snapshot-3"
30
+ "@instructure/ui-babel-preset": "11.7.4-snapshot-5",
31
+ "@instructure/ui-color-utils": "11.7.4-snapshot-5",
32
+ "@instructure/ui-icons": "11.7.4-snapshot-5",
33
+ "@instructure/ui-utils": "11.7.4-snapshot-5"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "react": ">=18 <=19"
@@ -107,14 +107,6 @@ class SimpleSelect extends Component<SimpleSelectProps, SimpleSelectState> {
107
107
  this._emptyOptionId = props.deterministicId!('Select-EmptyOption')
108
108
  }
109
109
 
110
- get _select() {
111
- console.warn(
112
- '_select property is deprecated and will be removed in v9, please use ref instead'
113
- )
114
-
115
- return this.ref
116
- }
117
-
118
110
  focus() {
119
111
  this.ref && this.ref.focus()
120
112
  }