noph-ui 0.12.13 → 0.12.14

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.
@@ -355,7 +355,7 @@
355
355
  }
356
356
 
357
357
  &::-webkit-calendar-picker-indicator {
358
- display: none;
358
+ display: var(--np-picker-indicator-display, none);
359
359
  }
360
360
 
361
361
  &::-webkit-search-decoration,
@@ -14,7 +14,7 @@ interface FieldProps {
14
14
  element?: HTMLSpanElement;
15
15
  }
16
16
  export interface InputFieldProps extends HTMLInputAttributes, FieldProps {
17
- type?: 'text' | 'password' | 'email' | 'number' | 'search' | 'tel' | 'url';
17
+ type?: 'text' | 'password' | 'email' | 'number' | 'search' | 'tel' | 'url' | 'datetime-local';
18
18
  }
19
19
  export interface TextAreaFieldProps extends HTMLTextareaAttributes, FieldProps {
20
20
  type: 'textarea';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "noph-ui",
3
- "version": "0.12.13",
3
+ "version": "0.12.14",
4
4
  "license": "MIT",
5
5
  "homepage": "https://noph.dev",
6
6
  "repository": {