@sikka/hawa 0.14.15-next → 0.14.16-next

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/index.css CHANGED
@@ -1101,8 +1101,8 @@ input[type="number"]::-webkit-inner-spin-button,
1101
1101
  .hawa-h-\[16px\] {
1102
1102
  height: 16px;
1103
1103
  }
1104
- .hawa-h-\[185px\] {
1105
- height: 185px;
1104
+ .hawa-h-\[195px\] {
1105
+ height: 195px;
1106
1106
  }
1107
1107
  .hawa-h-\[1px\] {
1108
1108
  height: 1px;
@@ -2634,6 +2634,10 @@ input[type="number"]::-webkit-inner-spin-button,
2634
2634
  .hawa-ring-offset-background {
2635
2635
  --tw-ring-offset-color: hsl(var(--background));
2636
2636
  }
2637
+ .hawa-drop-shadow-lg {
2638
+ --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));
2639
+ 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);
2640
+ }
2637
2641
  .hawa-drop-shadow-xl {
2638
2642
  --tw-drop-shadow: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
2639
2643
  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);
package/dist/index.d.mts CHANGED
@@ -1236,6 +1236,7 @@ type LoginFormTypes = {
1236
1236
  onTwitterLogin?: () => void;
1237
1237
  /** Additional buttons to add under the login button */
1238
1238
  additionalButtons?: any;
1239
+ /** The allowed length of the password input field */
1239
1240
  passwordLength?: number;
1240
1241
  };
1241
1242
  declare const LoginForm: FC<LoginFormTypes>;
@@ -1319,12 +1320,10 @@ type AppLandingTypes = {
1319
1320
  viaEmail?: boolean;
1320
1321
  viaPhone?: boolean;
1321
1322
  viaApple?: boolean;
1322
- withoutSignUp?: boolean;
1323
+ allowRegister?: boolean;
1323
1324
  size: "small" | "normal" | "full";
1324
1325
  direction: DirectionType;
1325
1326
  handleRouteToRegister: () => void;
1326
- handleLanguage: () => void;
1327
- handleColorMode: () => void;
1328
1327
  handleGoogle?: () => void;
1329
1328
  handleTwitter?: () => void;
1330
1329
  handleApple?: () => void;
@@ -1336,12 +1335,12 @@ type AppLandingTypes = {
1336
1335
  declare const AppLanding: FC<AppLandingTypes>;
1337
1336
 
1338
1337
  type CheckEmailBlocks = {
1338
+ handleResend?: () => void;
1339
1339
  texts?: {
1340
1340
  checkEmail: string;
1341
1341
  resendEmail: string;
1342
1342
  pleaseVerify: string;
1343
1343
  };
1344
- handleResend?: () => void;
1345
1344
  };
1346
1345
  declare const CheckEmail: FC<CheckEmailBlocks>;
1347
1346
 
package/dist/index.d.ts CHANGED
@@ -1236,6 +1236,7 @@ type LoginFormTypes = {
1236
1236
  onTwitterLogin?: () => void;
1237
1237
  /** Additional buttons to add under the login button */
1238
1238
  additionalButtons?: any;
1239
+ /** The allowed length of the password input field */
1239
1240
  passwordLength?: number;
1240
1241
  };
1241
1242
  declare const LoginForm: FC<LoginFormTypes>;
@@ -1319,12 +1320,10 @@ type AppLandingTypes = {
1319
1320
  viaEmail?: boolean;
1320
1321
  viaPhone?: boolean;
1321
1322
  viaApple?: boolean;
1322
- withoutSignUp?: boolean;
1323
+ allowRegister?: boolean;
1323
1324
  size: "small" | "normal" | "full";
1324
1325
  direction: DirectionType;
1325
1326
  handleRouteToRegister: () => void;
1326
- handleLanguage: () => void;
1327
- handleColorMode: () => void;
1328
1327
  handleGoogle?: () => void;
1329
1328
  handleTwitter?: () => void;
1330
1329
  handleApple?: () => void;
@@ -1336,12 +1335,12 @@ type AppLandingTypes = {
1336
1335
  declare const AppLanding: FC<AppLandingTypes>;
1337
1336
 
1338
1337
  type CheckEmailBlocks = {
1338
+ handleResend?: () => void;
1339
1339
  texts?: {
1340
1340
  checkEmail: string;
1341
1341
  resendEmail: string;
1342
1342
  pleaseVerify: string;
1343
1343
  };
1344
- handleResend?: () => void;
1345
1344
  };
1346
1345
  declare const CheckEmail: FC<CheckEmailBlocks>;
1347
1346