@postxl/ui-components 1.2.2 → 1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@postxl/ui-components",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "description": "PostXL UI component library - Radix UI primitives with Tailwind CSS styling",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -208,4 +208,14 @@
208
208
  line-height: var(--text-lg--line-height);
209
209
  font-weight: var(--font-weight-semibold);
210
210
  }
211
+
212
+ /* Hide number input spin buttons when appearance-none is applied */
213
+ input[type='number'].appearance-none::-webkit-inner-spin-button,
214
+ input[type='number'].appearance-none::-webkit-outer-spin-button {
215
+ -webkit-appearance: none !important;
216
+ margin: 0 !important;
217
+ }
218
+ input[type='number'].appearance-none {
219
+ -moz-appearance: textfield !important;
220
+ }
211
221
  }