@sikka/hawa 0.0.256 → 0.0.257

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/styles.css CHANGED
@@ -2353,6 +2353,11 @@ body {
2353
2353
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
2354
2354
  }
2355
2355
 
2356
+ .hover\:drop-shadow-lg:hover {
2357
+ --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
2358
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
2359
+ }
2360
+
2356
2361
  .focus\:border-blue-500:focus {
2357
2362
  --tw-border-opacity: 1;
2358
2363
  border-color: rgb(59 130 246 / var(--tw-border-opacity));
@@ -7,7 +7,7 @@ type TextFieldTypes = {
7
7
  /** Disable/Enable multiple line text input field */
8
8
  multiline?: boolean;
9
9
  /** The small red text under the input field to show validation or a hint. */
10
- helperText?: any;
10
+ helpertext?: any;
11
11
  /** The value of the input field */
12
12
  value?: any;
13
13
  props?: PropsWithRef<"input">;
@@ -24,6 +24,8 @@ type TextFieldTypes = {
24
24
  icon?: any;
25
25
  /** Boolean to enable/disable editing the input field and using it as a text field */
26
26
  preview?: boolean;
27
+ autoComplete?: any;
28
+ maxLength?: any;
27
29
  };
28
30
  export declare const HawaTextField: FC<TextFieldTypes>;
29
31
  export {};