@sikka/hawa 0.0.116 → 0.0.118

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
@@ -547,6 +547,9 @@ video {
547
547
  .top-5 {
548
548
  top: 1.25rem;
549
549
  }
550
+ .left-10 {
551
+ left: 2.5rem;
552
+ }
550
553
  .-left-1 {
551
554
  left: -0.25rem;
552
555
  }
@@ -749,6 +752,9 @@ video {
749
752
  .h-2 {
750
753
  height: 0.5rem;
751
754
  }
755
+ .h-4 {
756
+ height: 1rem;
757
+ }
752
758
  .h-32 {
753
759
  height: 8rem;
754
760
  }
@@ -811,6 +817,9 @@ video {
811
817
  .w-10 {
812
818
  width: 2.5rem;
813
819
  }
820
+ .w-4 {
821
+ width: 1rem;
822
+ }
814
823
  .w-11 {
815
824
  width: 2.75rem;
816
825
  }
@@ -934,9 +943,6 @@ video {
934
943
  .items-stretch {
935
944
  align-items: stretch;
936
945
  }
937
- .justify-start {
938
- justify-content: flex-start;
939
- }
940
946
  .justify-end {
941
947
  justify-content: flex-end;
942
948
  }
@@ -958,6 +964,9 @@ video {
958
964
  .gap-1 {
959
965
  gap: 0.25rem;
960
966
  }
967
+ .gap-0 {
968
+ gap: 0px;
969
+ }
961
970
  .gap-x-3 {
962
971
  -moz-column-gap: 0.75rem;
963
972
  column-gap: 0.75rem;
@@ -1019,6 +1028,9 @@ video {
1019
1028
  .overflow-x-hidden {
1020
1029
  overflow-x: hidden;
1021
1030
  }
1031
+ .overflow-x-clip {
1032
+ overflow-x: clip;
1033
+ }
1022
1034
  .overflow-y-clip {
1023
1035
  overflow-y: clip;
1024
1036
  }
@@ -1300,10 +1312,18 @@ video {
1300
1312
  --tw-bg-opacity: 1;
1301
1313
  background-color: rgb(116 177 251 / var(--tw-bg-opacity));
1302
1314
  }
1315
+ .bg-orange-400 {
1316
+ --tw-bg-opacity: 1;
1317
+ background-color: rgb(251 146 60 / var(--tw-bg-opacity));
1318
+ }
1303
1319
  .bg-yellow-300 {
1304
1320
  --tw-bg-opacity: 1;
1305
1321
  background-color: rgb(253 224 71 / var(--tw-bg-opacity));
1306
1322
  }
1323
+ .bg-orange-300 {
1324
+ --tw-bg-opacity: 1;
1325
+ background-color: rgb(253 186 116 / var(--tw-bg-opacity));
1326
+ }
1307
1327
  .bg-primary-300 {
1308
1328
  --tw-bg-opacity: 1;
1309
1329
  background-color: rgb(156 199 252 / var(--tw-bg-opacity));
@@ -1430,6 +1450,9 @@ video {
1430
1450
  .pl-10 {
1431
1451
  padding-left: 2.5rem;
1432
1452
  }
1453
+ .pl-3 {
1454
+ padding-left: 0.75rem;
1455
+ }
1433
1456
  .pt-0 {
1434
1457
  padding-top: 0px;
1435
1458
  }
@@ -1741,8 +1764,8 @@ body {
1741
1764
  --tw-content: '';
1742
1765
  content: var(--tw-content);
1743
1766
  }
1744
- .hover\:w-60:hover {
1745
- width: 15rem;
1767
+ .hover\:w-40:hover {
1768
+ width: 10rem;
1746
1769
  }
1747
1770
  .hover\:cursor-pointer:hover {
1748
1771
  cursor: pointer;
@@ -1783,6 +1806,10 @@ body {
1783
1806
  --tw-bg-opacity: 1;
1784
1807
  background-color: rgb(29 78 216 / var(--tw-bg-opacity));
1785
1808
  }
1809
+ .hover\:bg-green-300:hover {
1810
+ --tw-bg-opacity: 1;
1811
+ background-color: rgb(134 239 172 / var(--tw-bg-opacity));
1812
+ }
1786
1813
  .hover\:text-gray-900:hover {
1787
1814
  --tw-text-opacity: 1;
1788
1815
  color: rgb(17 24 39 / var(--tw-text-opacity));
@@ -1,42 +1,42 @@
1
1
  import React from "react";
2
2
  type SignInFormTypes = {
3
- showError: any;
4
- errorTitle: string;
5
- errorText: string;
6
- signInType: "email" | "username" | "phone";
7
- texts: {
8
- emailLabel: string;
9
- emailPlaceholder: string;
10
- emailRequiredText: string;
11
- emailInvalidText: string;
12
- usernameLabel: string;
13
- usernamePlaceholder: string;
14
- usernameRequired: string;
15
- usernameRequiredText: string;
16
- phoneRequiredText: string;
17
- passwordLabel: string;
18
- passwordPlaceholder: string;
19
- passwordRequiredText: string;
20
- forgotPasswordText: string;
21
- newUserText: string;
22
- signUpText: string;
23
- signInText: string;
24
- googleButtonLabel: string;
25
- githubButtonLabel: string;
26
- twitterButtonLabel: string;
3
+ showError?: any;
4
+ errorTitle?: string;
5
+ errorText?: string;
6
+ signInType?: "email" | "username" | "phone";
7
+ texts?: {
8
+ emailLabel?: string;
9
+ emailPlaceholder?: string;
10
+ emailRequiredText?: string;
11
+ emailInvalidText?: string;
12
+ usernameLabel?: string;
13
+ usernamePlaceholder?: string;
14
+ usernameRequired?: string;
15
+ usernameRequiredText?: string;
16
+ phoneRequiredText?: string;
17
+ passwordLabel?: string;
18
+ passwordPlaceholder?: string;
19
+ passwordRequiredText?: string;
20
+ forgotPasswordText?: string;
21
+ newUserText?: string;
22
+ signUpText?: string;
23
+ signInText?: string;
24
+ googleButtonLabel?: string;
25
+ githubButtonLabel?: string;
26
+ twitterButtonLabel?: string;
27
27
  };
28
- withoutResetPassword: boolean;
29
- withoutSignUp: boolean;
30
- isLoading: any;
31
- viaGoogle: boolean;
32
- viaGithub: boolean;
33
- viaTwitter: boolean;
34
- handleSignIn: (e: any) => void;
35
- handleRouteToSignUp: () => void;
36
- handleForgotPassword: () => void;
37
- handleGoogleSignIn: () => void;
38
- handleGithubSignIn: () => void;
39
- handleTwitterSignIn: () => void;
28
+ withoutResetPassword?: boolean;
29
+ withoutSignUp?: boolean;
30
+ isLoading?: any;
31
+ viaGoogle?: boolean;
32
+ viaGithub?: boolean;
33
+ viaTwitter?: boolean;
34
+ handleSignIn?: (e: any) => void;
35
+ handleRouteToSignUp?: () => void;
36
+ handleForgotPassword?: () => void;
37
+ handleGoogleSignIn?: () => void;
38
+ handleGithubSignIn?: () => void;
39
+ handleTwitterSignIn?: () => void;
40
40
  };
41
41
  export declare const SignInForm: React.FunctionComponent<SignInFormTypes>;
42
42
  export {};
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ type SpinnerTypes = {};
3
+ export declare const HawaSpinner: React.FunctionComponent<SpinnerTypes>;
4
+ export {};
@@ -4,6 +4,8 @@ type StatTypes = {
4
4
  number?: string;
5
5
  helperText?: string;
6
6
  variant?: "plain" | "contained" | "outlined";
7
+ isLoading?: boolean;
8
+ handleClick?: () => void;
7
9
  };
8
10
  export declare const HawaStats: React.FunctionComponent<StatTypes>;
9
11
  export {};
@@ -25,6 +25,7 @@ export * from "./HawaCopyrights";
25
25
  export * from "./HawaTimeline";
26
26
  export * from "./Breadcrumb";
27
27
  export * from "./HawaStats";
28
+ export * from "./HawaSpinner";
28
29
  export * from "./HawaTextField";
29
30
  export * from "./HawaCardInput";
30
31
  export * from "./HawaPinInput";