@instructure/ui-text-input 8.50.1-snapshot-0 → 8.50.1-snapshot-13
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 +1 -1
- package/README.md +1 -1
- package/package.json +15 -15
- package/src/TextInput/README.md +6 -8
- package/tsconfig.build.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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
|
-
## [8.50.1-snapshot-
|
|
6
|
+
## [8.50.1-snapshot-13](https://github.com/instructure/instructure-ui/compare/v8.50.0...v8.50.1-snapshot-13) (2023-12-07)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @instructure/ui-text-input
|
|
9
9
|
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-text-input",
|
|
3
|
-
"version": "8.50.1-snapshot-
|
|
3
|
+
"version": "8.50.1-snapshot-13",
|
|
4
4
|
"description": "A styled HTML text input component.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -23,24 +23,24 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@instructure/ui-babel-preset": "8.50.1-snapshot-
|
|
27
|
-
"@instructure/ui-badge": "8.50.1-snapshot-
|
|
28
|
-
"@instructure/ui-color-utils": "8.50.1-snapshot-
|
|
29
|
-
"@instructure/ui-test-utils": "8.50.1-snapshot-
|
|
30
|
-
"@instructure/ui-themes": "8.50.1-snapshot-
|
|
26
|
+
"@instructure/ui-babel-preset": "8.50.1-snapshot-13",
|
|
27
|
+
"@instructure/ui-badge": "8.50.1-snapshot-13",
|
|
28
|
+
"@instructure/ui-color-utils": "8.50.1-snapshot-13",
|
|
29
|
+
"@instructure/ui-test-utils": "8.50.1-snapshot-13",
|
|
30
|
+
"@instructure/ui-themes": "8.50.1-snapshot-13",
|
|
31
31
|
"react-dom": "^18.2.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/runtime": "^7.23.2",
|
|
35
|
-
"@instructure/emotion": "8.50.1-snapshot-
|
|
36
|
-
"@instructure/shared-types": "8.50.1-snapshot-
|
|
37
|
-
"@instructure/ui-dom-utils": "8.50.1-snapshot-
|
|
38
|
-
"@instructure/ui-form-field": "8.50.1-snapshot-
|
|
39
|
-
"@instructure/ui-icons": "8.50.1-snapshot-
|
|
40
|
-
"@instructure/ui-prop-types": "8.50.1-snapshot-
|
|
41
|
-
"@instructure/ui-react-utils": "8.50.1-snapshot-
|
|
42
|
-
"@instructure/ui-tag": "8.50.1-snapshot-
|
|
43
|
-
"@instructure/ui-testable": "8.50.1-snapshot-
|
|
35
|
+
"@instructure/emotion": "8.50.1-snapshot-13",
|
|
36
|
+
"@instructure/shared-types": "8.50.1-snapshot-13",
|
|
37
|
+
"@instructure/ui-dom-utils": "8.50.1-snapshot-13",
|
|
38
|
+
"@instructure/ui-form-field": "8.50.1-snapshot-13",
|
|
39
|
+
"@instructure/ui-icons": "8.50.1-snapshot-13",
|
|
40
|
+
"@instructure/ui-prop-types": "8.50.1-snapshot-13",
|
|
41
|
+
"@instructure/ui-react-utils": "8.50.1-snapshot-13",
|
|
42
|
+
"@instructure/ui-tag": "8.50.1-snapshot-13",
|
|
43
|
+
"@instructure/ui-testable": "8.50.1-snapshot-13",
|
|
44
44
|
"prop-types": "^15.8.1"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
package/src/TextInput/README.md
CHANGED
|
@@ -8,7 +8,7 @@ describes: TextInput
|
|
|
8
8
|
|
|
9
9
|
```js
|
|
10
10
|
---
|
|
11
|
-
|
|
11
|
+
type: example
|
|
12
12
|
---
|
|
13
13
|
<TextInput
|
|
14
14
|
renderLabel="Name"
|
|
@@ -21,8 +21,7 @@ example: true
|
|
|
21
21
|
|
|
22
22
|
```javascript
|
|
23
23
|
---
|
|
24
|
-
|
|
25
|
-
render: false
|
|
24
|
+
type: example
|
|
26
25
|
---
|
|
27
26
|
class ControlledTextInputExample extends React.Component {
|
|
28
27
|
constructor (props) {
|
|
@@ -111,8 +110,7 @@ Focusable content will be focused separately from the input itself.
|
|
|
111
110
|
|
|
112
111
|
```javascript
|
|
113
112
|
---
|
|
114
|
-
|
|
115
|
-
render: false
|
|
113
|
+
type: example
|
|
116
114
|
---
|
|
117
115
|
class ExtraContentExample extends React.Component {
|
|
118
116
|
constructor (props) {
|
|
@@ -191,7 +189,7 @@ size of the component, use `width`.
|
|
|
191
189
|
|
|
192
190
|
```js
|
|
193
191
|
---
|
|
194
|
-
|
|
192
|
+
type: example
|
|
195
193
|
---
|
|
196
194
|
<div>
|
|
197
195
|
<TextInput
|
|
@@ -216,7 +214,7 @@ boolean prop to `true`.
|
|
|
216
214
|
|
|
217
215
|
```js
|
|
218
216
|
---
|
|
219
|
-
|
|
217
|
+
type: example
|
|
220
218
|
---
|
|
221
219
|
<View as="div" maxWidth="250px">
|
|
222
220
|
<TextInput
|
|
@@ -250,7 +248,7 @@ example: true
|
|
|
250
248
|
|
|
251
249
|
```js
|
|
252
250
|
---
|
|
253
|
-
|
|
251
|
+
type: embed
|
|
254
252
|
---
|
|
255
253
|
<Guidelines>
|
|
256
254
|
<Figure recommendation="yes" title="Do">
|