Skip to content

Commit

Permalink
Merge branch 'master' into STCOM-1179-stripes-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnC-80 authored Aug 16, 2023
2 parents 576706f + 09507c3 commit 160a3b0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
* Add `graph` icon. Refs STCOM-1187.
* `<AccordionSet/>` bugfix - fix for Accordions reverting to their initial open/close state when outer component is updated. Fixes STCOM-1188.
* Unpin `moment` from `2.24`; STRIPES-678 resolved long ago. Resolves CVE-2022-24785.

* Always display spinner buttons on `input[type="number"]`. Resolves STCOM-1185.

## [11.0.0](https://github.com/folio-org/stripes-components/tree/v11.0.0) (2023-01-30)
[Full Changelog](https://github.com/folio-org/stripes-components/compare/v10.3.0...v11.0.0)

Expand Down
5 changes: 5 additions & 0 deletions lib/TextField/stories/BasicUsage.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ const BasicUsage = () => (
label="Field with label"
placeholder="Placeholder Text"
/>
<TextField
type="number"
label="Number Field with label"
placeholder="#"
/>
<div id="myLabel">TaxtField</div>
<TextField
aria-labelledby="myLabel"
Expand Down
5 changes: 5 additions & 0 deletions lib/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,11 @@ input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

/* displays number spinners on non-focused in Chrome */
input[type="number"]::-webkit-inner-spin-button {
opacity: 1;
}

:global(.fullWidth) {
width: 100% !important;
}
Expand Down

0 comments on commit 160a3b0

Please sign in to comment.