@hexure/ui 1.14.1 → 1.14.3
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/dist/cjs/index.js +6 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +6 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +82 -82
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -5155,11 +5155,15 @@ const StyledInput = styled.input `
|
|
|
5155
5155
|
box-sizing: border-box;
|
|
5156
5156
|
display: block;
|
|
5157
5157
|
width: 100%;
|
|
5158
|
+
|
|
5159
|
+
&::-webkit-search-cancel-button {
|
|
5160
|
+
cursor: pointer;
|
|
5161
|
+
}
|
|
5158
5162
|
`;
|
|
5159
5163
|
const StyledTextArea = styled.textarea `
|
|
5160
5164
|
border: none !important;
|
|
5161
5165
|
background: none !important;
|
|
5162
|
-
overflow-y:
|
|
5166
|
+
overflow-y: auto !important;
|
|
5163
5167
|
font-size: 14px;
|
|
5164
5168
|
font-weight: 400;
|
|
5165
5169
|
height: ${props => props.$height || 'auto'};
|
|
@@ -5180,6 +5184,7 @@ const StyledTextArea = styled.textarea `
|
|
|
5180
5184
|
box-sizing: border-box;
|
|
5181
5185
|
display: block;
|
|
5182
5186
|
width: 100%;
|
|
5187
|
+
resize: none;
|
|
5183
5188
|
${({ $readOnly }) => $readOnly &&
|
|
5184
5189
|
`
|
|
5185
5190
|
background-color: #f0f0f0;
|