@sikka/hawa 0.0.156 → 0.0.157

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
@@ -1276,8 +1276,7 @@ video {
1276
1276
  background-color: rgb(17 24 39 / var(--tw-bg-opacity));
1277
1277
  }
1278
1278
  .bg-layoutPrimary-default {
1279
- --tw-bg-opacity: 1;
1280
- background-color: rgb(210 205 250 / var(--tw-bg-opacity));
1279
+ background-color: var(--layout-primary);
1281
1280
  }
1282
1281
  .bg-white {
1283
1282
  --tw-bg-opacity: 1;
@@ -1307,8 +1306,7 @@ video {
1307
1306
  background-color: transparent;
1308
1307
  }
1309
1308
  .bg-buttonPrimary-default {
1310
- --tw-bg-opacity: 1;
1311
- background-color: rgb(76 55 235 / var(--tw-bg-opacity));
1309
+ background-color: var(--button-primary);
1312
1310
  }
1313
1311
  .bg-red-200 {
1314
1312
  --tw-bg-opacity: 1;
@@ -1932,8 +1930,7 @@ body {
1932
1930
  }
1933
1931
 
1934
1932
  .hover\:ring-buttonPrimary-default:hover {
1935
- --tw-ring-opacity: 1;
1936
- --tw-ring-color: rgb(76 55 235 / var(--tw-ring-opacity));
1933
+ --tw-ring-color: var(--button-primary);
1937
1934
  }
1938
1935
 
1939
1936
  .hover\:brightness-90:hover {
@@ -47,6 +47,7 @@ type SignUpFormTypes = {
47
47
  errorTitle: any;
48
48
  errorText: any;
49
49
  signUpFields: any[];
50
+ isLoading?: boolean;
50
51
  };
51
52
  export declare const SignUpForm: React.FunctionComponent<SignUpFormTypes>;
52
53
  export {};