@instructure/ui-select 11.7.5-snapshot-23 → 11.7.5-snapshot-33

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,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.5-snapshot-23](https://github.com/instructure/instructure-ui/compare/v11.7.4...v11.7.5-snapshot-23) (2026-08-03)
6
+ ## [11.7.5-snapshot-33](https://github.com/instructure/instructure-ui/compare/v11.7.4...v11.7.5-snapshot-33) (2026-08-07)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-select
8
+
9
+ ### Features
10
+
11
+ * **ui-text-input,ui-select:** add forcePlaceholder prop to TextInput ([7a87063](https://github.com/instructure/instructure-ui/commit/7a870631b091839b360d1ca8bb4fd6ea171315da))
9
12
 
10
13
 
11
14
 
@@ -637,6 +637,7 @@ let Select = (_dec = withDeterministicId(), _dec2 = withStyleNew(generateStyle),
637
637
  };
638
638
  // suppressHydrationWarning is needed because `role` depends on the browser type
639
639
  return _jsx(TextInput, {
640
+ forcePlaceholder: true,
640
641
  ...triggerProps,
641
642
  ...getInputProps(inputProps),
642
643
  suppressHydrationWarning: true,
@@ -648,6 +648,7 @@ let Select = exports.Select = (_dec = (0, _withDeterministicId.withDeterministic
648
648
  };
649
649
  // suppressHydrationWarning is needed because `role` depends on the browser type
650
650
  return (0, _jsxRuntime.jsx)(_latest3.TextInput, {
651
+ forcePlaceholder: true,
651
652
  ...triggerProps,
652
653
  ...getInputProps(inputProps),
653
654
  suppressHydrationWarning: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-select",
3
- "version": "11.7.5-snapshot-23",
3
+ "version": "11.7.5-snapshot-33",
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.5-snapshot-23",
19
- "@instructure/shared-types": "11.7.5-snapshot-23",
20
- "@instructure/ui-dom-utils": "11.7.5-snapshot-23",
21
- "@instructure/ui-icons": "11.7.5-snapshot-23",
22
- "@instructure/ui-form-field": "11.7.5-snapshot-23",
23
- "@instructure/ui-options": "11.7.5-snapshot-23",
24
- "@instructure/ui-popover": "11.7.5-snapshot-23",
25
- "@instructure/ui-position": "11.7.5-snapshot-23",
26
- "@instructure/ui-selectable": "11.7.5-snapshot-23",
27
- "@instructure/ui-themes": "11.7.5-snapshot-23",
28
- "@instructure/ui-text-input": "11.7.5-snapshot-23",
29
- "@instructure/ui-utils": "11.7.5-snapshot-23",
30
- "@instructure/ui-react-utils": "11.7.5-snapshot-23",
31
- "@instructure/ui-view": "11.7.5-snapshot-23",
32
- "@instructure/uid": "11.7.5-snapshot-23"
18
+ "@instructure/emotion": "11.7.5-snapshot-33",
19
+ "@instructure/shared-types": "11.7.5-snapshot-33",
20
+ "@instructure/ui-dom-utils": "11.7.5-snapshot-33",
21
+ "@instructure/ui-icons": "11.7.5-snapshot-33",
22
+ "@instructure/ui-form-field": "11.7.5-snapshot-33",
23
+ "@instructure/ui-options": "11.7.5-snapshot-33",
24
+ "@instructure/ui-popover": "11.7.5-snapshot-33",
25
+ "@instructure/ui-position": "11.7.5-snapshot-33",
26
+ "@instructure/ui-react-utils": "11.7.5-snapshot-33",
27
+ "@instructure/ui-selectable": "11.7.5-snapshot-33",
28
+ "@instructure/ui-utils": "11.7.5-snapshot-33",
29
+ "@instructure/ui-text-input": "11.7.5-snapshot-33",
30
+ "@instructure/ui-view": "11.7.5-snapshot-33",
31
+ "@instructure/uid": "11.7.5-snapshot-33",
32
+ "@instructure/ui-themes": "11.7.5-snapshot-33"
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.5-snapshot-23",
40
- "@instructure/ui-scripts": "11.7.5-snapshot-23",
41
- "@instructure/ui-color-utils": "11.7.5-snapshot-23"
39
+ "@instructure/ui-babel-preset": "11.7.5-snapshot-33",
40
+ "@instructure/ui-color-utils": "11.7.5-snapshot-33",
41
+ "@instructure/ui-scripts": "11.7.5-snapshot-33"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "react": ">=18 <=19"
@@ -801,6 +801,7 @@ class Select extends Component<SelectProps> {
801
801
  // suppressHydrationWarning is needed because `role` depends on the browser type
802
802
  return (
803
803
  <TextInput
804
+ forcePlaceholder
804
805
  {...triggerProps}
805
806
  {...getInputProps(inputProps)}
806
807
  suppressHydrationWarning