@sproutsocial/racine 11.3.0-text-highlight.1 → 11.3.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
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 11.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e8a9df6: Add text highlight style to theme
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 9e66592: Pass TokenInput autocomplete prop to input as autoComplete to suppress JSX console warnings
|
|
12
|
+
|
|
3
13
|
## 11.2.5
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -341,7 +341,7 @@ export default class TokenInput extends React.Component<TypeProps, TypeState> {
|
|
|
341
341
|
aria-invalid={!!isInvalid}
|
|
342
342
|
aria-label={ariaLabel}
|
|
343
343
|
autoFocus={autoFocus}
|
|
344
|
-
|
|
344
|
+
autoComplete={autocomplete}
|
|
345
345
|
disabled={disabled}
|
|
346
346
|
id={id}
|
|
347
347
|
name={name}
|
|
@@ -300,7 +300,7 @@ var TokenInput = /*#__PURE__*/function (_React$Component) {
|
|
|
300
300
|
"aria-invalid": !!isInvalid,
|
|
301
301
|
"aria-label": ariaLabel,
|
|
302
302
|
autoFocus: autoFocus,
|
|
303
|
-
|
|
303
|
+
autoComplete: autocomplete,
|
|
304
304
|
disabled: disabled,
|
|
305
305
|
id: id,
|
|
306
306
|
name: name,
|
package/lib/TokenInput/index.js
CHANGED
|
@@ -282,7 +282,7 @@ var TokenInput = /*#__PURE__*/function (_React$Component) {
|
|
|
282
282
|
"aria-invalid": !!isInvalid,
|
|
283
283
|
"aria-label": ariaLabel,
|
|
284
284
|
autoFocus: autoFocus,
|
|
285
|
-
|
|
285
|
+
autoComplete: autocomplete,
|
|
286
286
|
disabled: disabled,
|
|
287
287
|
id: id,
|
|
288
288
|
name: name,
|