@sikka/hawa 0.0.224 → 0.0.225
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 +29 -0
- package/es/elements/HawaLandingCard.d.ts +17 -0
- package/es/elements/HawaStoreButtons.d.ts +7 -0
- package/es/elements/index.d.ts +2 -0
- package/es/index.es.js +1 -1
- package/lib/elements/HawaLandingCard.d.ts +17 -0
- package/lib/elements/HawaStoreButtons.d.ts +7 -0
- package/lib/elements/index.d.ts +2 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/elements/HawaLandingCard.tsx +66 -0
- package/src/elements/HawaPhoneInput.tsx +5 -2
- package/src/elements/HawaStoreButtons.tsx +131 -0
- package/src/elements/index.ts +2 -0
- package/src/styles.css +29 -0
package/dist/styles.css
CHANGED
|
@@ -570,9 +570,15 @@ video {
|
|
|
570
570
|
.inset-0 {
|
|
571
571
|
inset: 0px;
|
|
572
572
|
}
|
|
573
|
+
.-bottom-10 {
|
|
574
|
+
bottom: -2.5rem;
|
|
575
|
+
}
|
|
573
576
|
.-left-1 {
|
|
574
577
|
left: -0.25rem;
|
|
575
578
|
}
|
|
579
|
+
.-right-10 {
|
|
580
|
+
right: -2.5rem;
|
|
581
|
+
}
|
|
576
582
|
.-right-3 {
|
|
577
583
|
right: -0.75rem;
|
|
578
584
|
}
|
|
@@ -687,6 +693,9 @@ video {
|
|
|
687
693
|
.-mb-px {
|
|
688
694
|
margin-bottom: -1px;
|
|
689
695
|
}
|
|
696
|
+
.-mt-1 {
|
|
697
|
+
margin-top: -0.25rem;
|
|
698
|
+
}
|
|
690
699
|
.mb-0 {
|
|
691
700
|
margin-bottom: 0px;
|
|
692
701
|
}
|
|
@@ -747,6 +756,9 @@ video {
|
|
|
747
756
|
.mr-2 {
|
|
748
757
|
margin-right: 0.5rem;
|
|
749
758
|
}
|
|
759
|
+
.mr-3 {
|
|
760
|
+
margin-right: 0.75rem;
|
|
761
|
+
}
|
|
750
762
|
.mr-4 {
|
|
751
763
|
margin-right: 1rem;
|
|
752
764
|
}
|
|
@@ -944,6 +956,9 @@ video {
|
|
|
944
956
|
.w-44 {
|
|
945
957
|
width: 11rem;
|
|
946
958
|
}
|
|
959
|
+
.w-48 {
|
|
960
|
+
width: 12rem;
|
|
961
|
+
}
|
|
947
962
|
.w-5 {
|
|
948
963
|
width: 1.25rem;
|
|
949
964
|
}
|
|
@@ -1241,6 +1256,9 @@ video {
|
|
|
1241
1256
|
.rounded-none {
|
|
1242
1257
|
border-radius: 0px;
|
|
1243
1258
|
}
|
|
1259
|
+
.rounded-xl {
|
|
1260
|
+
border-radius: 0.75rem;
|
|
1261
|
+
}
|
|
1244
1262
|
.rounded-b {
|
|
1245
1263
|
border-bottom-right-radius: var(--border-radius);
|
|
1246
1264
|
border-bottom-left-radius: var(--border-radius);
|
|
@@ -1429,6 +1447,10 @@ video {
|
|
|
1429
1447
|
--tw-border-opacity: 1;
|
|
1430
1448
|
border-top-color: rgb(255 255 255 / var(--tw-border-opacity));
|
|
1431
1449
|
}
|
|
1450
|
+
.bg-black {
|
|
1451
|
+
--tw-bg-opacity: 1;
|
|
1452
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
1453
|
+
}
|
|
1432
1454
|
.bg-blue-100 {
|
|
1433
1455
|
--tw-bg-opacity: 1;
|
|
1434
1456
|
background-color: rgb(219 234 254 / var(--tw-bg-opacity));
|
|
@@ -1847,9 +1869,16 @@ video {
|
|
|
1847
1869
|
--tw-text-opacity: 1;
|
|
1848
1870
|
color: rgb(161 98 7 / var(--tw-text-opacity));
|
|
1849
1871
|
}
|
|
1872
|
+
.underline {
|
|
1873
|
+
-webkit-text-decoration-line: underline;
|
|
1874
|
+
text-decoration-line: underline;
|
|
1875
|
+
}
|
|
1850
1876
|
.underline-offset-4 {
|
|
1851
1877
|
text-underline-offset: 4px;
|
|
1852
1878
|
}
|
|
1879
|
+
.underline-offset-8 {
|
|
1880
|
+
text-underline-offset: 8px;
|
|
1881
|
+
}
|
|
1853
1882
|
.opacity-0 {
|
|
1854
1883
|
opacity: 0;
|
|
1855
1884
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
type LandingCardTypes = {
|
|
3
|
+
orientation: "vertical" | "horizontal";
|
|
4
|
+
title: string;
|
|
5
|
+
description: string;
|
|
6
|
+
imageURL: string;
|
|
7
|
+
handleHide: any;
|
|
8
|
+
texts?: {
|
|
9
|
+
titleTip?: string;
|
|
10
|
+
title?: string;
|
|
11
|
+
description?: string;
|
|
12
|
+
linkText?: string;
|
|
13
|
+
};
|
|
14
|
+
buttonLink?: string;
|
|
15
|
+
};
|
|
16
|
+
export declare const HawaLandingCard: React.FunctionComponent<LandingCardTypes>;
|
|
17
|
+
export {};
|
package/es/elements/index.d.ts
CHANGED
|
@@ -35,5 +35,7 @@ export * from "./HawaPinInput";
|
|
|
35
35
|
export * from "./HawaItemCard";
|
|
36
36
|
export * from "./HawaPricingCard";
|
|
37
37
|
export * from "./HawaAdCard";
|
|
38
|
+
export * from "./HawaLandingCard";
|
|
38
39
|
export * from "./HawaButton";
|
|
40
|
+
export * from "./HawaStoreButtons";
|
|
39
41
|
export * from "./HawaLogoButton";
|