@sikka/hawa 0.1.92 → 0.1.93
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.d.mts +36 -9
- package/dist/index.d.ts +36 -9
- package/dist/index.js +251 -102
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +776 -631
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +89 -9
- package/package.json +1 -1
- package/src/blocks/Payment/CreditCardForm.tsx +63 -2
- package/src/elements/HawaRadio.tsx +13 -13
- package/src/elements/HawaTextField.tsx +7 -2
- package/src/elements/StickyFeatures.tsx +53 -0
- package/src/elements/UserReferralSource.tsx +101 -0
- package/src/elements/index.ts +2 -0
- package/src/styles.css +89 -9
- package/src/tailwind.css +7 -7
package/src/styles.css
CHANGED
|
@@ -422,7 +422,7 @@ video {
|
|
|
422
422
|
--border: 240 5.9% 90%;
|
|
423
423
|
--input: 240 5.9% 90%;
|
|
424
424
|
--ring: 240 5% 64.9%;
|
|
425
|
-
--radius:
|
|
425
|
+
--radius: 0rem;
|
|
426
426
|
--radius-inner: calc(var(--radius) - calc(var(--radius) / 3));
|
|
427
427
|
|
|
428
428
|
--layout-primary-700: #b7aff7;
|
|
@@ -470,10 +470,11 @@ video {
|
|
|
470
470
|
margin-right: 0.25em;
|
|
471
471
|
width: 0.75em;
|
|
472
472
|
vertical-align: middle;
|
|
473
|
-
color: var(--
|
|
473
|
+
color: hsl(var(--primary));
|
|
474
|
+
|
|
474
475
|
}
|
|
475
476
|
.link {
|
|
476
|
-
color: var(--
|
|
477
|
+
color: hsl(var(--primary));
|
|
477
478
|
}
|
|
478
479
|
.link:hover {
|
|
479
480
|
text-decoration: underline;
|
|
@@ -531,10 +532,10 @@ video {
|
|
|
531
532
|
height: 9px;
|
|
532
533
|
position: absolute;
|
|
533
534
|
top: 6px;
|
|
534
|
-
left:
|
|
535
|
+
left: 3px;
|
|
535
536
|
content: " ";
|
|
536
537
|
display: block;
|
|
537
|
-
background: var(--
|
|
538
|
+
background: hsl(var(--primary));
|
|
538
539
|
}
|
|
539
540
|
.radio-item-bordered input[type="radio"]:checked + label:after {
|
|
540
541
|
border-radius: 100%;
|
|
@@ -545,7 +546,7 @@ video {
|
|
|
545
546
|
left: 23px;
|
|
546
547
|
content: " ";
|
|
547
548
|
display: block;
|
|
548
|
-
background: var(--
|
|
549
|
+
background: hsl(var(--primary));
|
|
549
550
|
}
|
|
550
551
|
* {
|
|
551
552
|
border-color: hsl(var(--border));
|
|
@@ -803,6 +804,9 @@ video {
|
|
|
803
804
|
.right-0 {
|
|
804
805
|
right: 0px;
|
|
805
806
|
}
|
|
807
|
+
.right-1 {
|
|
808
|
+
right: 0.25rem;
|
|
809
|
+
}
|
|
806
810
|
.right-2 {
|
|
807
811
|
right: 0.5rem;
|
|
808
812
|
}
|
|
@@ -848,6 +852,9 @@ video {
|
|
|
848
852
|
.top-\[22px\] {
|
|
849
853
|
top: 22px;
|
|
850
854
|
}
|
|
855
|
+
.top-\[41px\] {
|
|
856
|
+
top: 41px;
|
|
857
|
+
}
|
|
851
858
|
.top-\[50\%\] {
|
|
852
859
|
top: 50%;
|
|
853
860
|
}
|
|
@@ -905,6 +912,10 @@ video {
|
|
|
905
912
|
margin-left: 0.5rem;
|
|
906
913
|
margin-right: 0.5rem;
|
|
907
914
|
}
|
|
915
|
+
.mx-auto {
|
|
916
|
+
margin-left: auto;
|
|
917
|
+
margin-right: auto;
|
|
918
|
+
}
|
|
908
919
|
.my-0 {
|
|
909
920
|
margin-top: 0px;
|
|
910
921
|
margin-bottom: 0px;
|
|
@@ -1386,6 +1397,9 @@ video {
|
|
|
1386
1397
|
.w-screen {
|
|
1387
1398
|
width: 100vw;
|
|
1388
1399
|
}
|
|
1400
|
+
.min-w-0 {
|
|
1401
|
+
min-width: 0px;
|
|
1402
|
+
}
|
|
1389
1403
|
.min-w-\[220px\] {
|
|
1390
1404
|
min-width: 220px;
|
|
1391
1405
|
}
|
|
@@ -1418,6 +1432,9 @@ video {
|
|
|
1418
1432
|
.max-w-2xs {
|
|
1419
1433
|
max-width: 250px;
|
|
1420
1434
|
}
|
|
1435
|
+
.max-w-5xl {
|
|
1436
|
+
max-width: 64rem;
|
|
1437
|
+
}
|
|
1421
1438
|
.max-w-\[200px\] {
|
|
1422
1439
|
max-width: 200px;
|
|
1423
1440
|
}
|
|
@@ -1696,6 +1713,13 @@ video {
|
|
|
1696
1713
|
-moz-column-gap: 0.75rem;
|
|
1697
1714
|
column-gap: 0.75rem;
|
|
1698
1715
|
}
|
|
1716
|
+
.gap-x-8 {
|
|
1717
|
+
-moz-column-gap: 2rem;
|
|
1718
|
+
column-gap: 2rem;
|
|
1719
|
+
}
|
|
1720
|
+
.gap-y-10 {
|
|
1721
|
+
row-gap: 2.5rem;
|
|
1722
|
+
}
|
|
1699
1723
|
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1700
1724
|
--tw-space-x-reverse: 0;
|
|
1701
1725
|
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
@@ -2104,6 +2128,10 @@ video {
|
|
|
2104
2128
|
--tw-bg-opacity: 1;
|
|
2105
2129
|
background-color: rgb(34 197 94 / var(--tw-bg-opacity));
|
|
2106
2130
|
}
|
|
2131
|
+
.bg-indigo-600 {
|
|
2132
|
+
--tw-bg-opacity: 1;
|
|
2133
|
+
background-color: rgb(79 70 229 / var(--tw-bg-opacity));
|
|
2134
|
+
}
|
|
2107
2135
|
.bg-info {
|
|
2108
2136
|
--tw-bg-opacity: 1;
|
|
2109
2137
|
background-color: hsl(var(--info) / var(--tw-bg-opacity));
|
|
@@ -2337,6 +2365,10 @@ video {
|
|
|
2337
2365
|
padding-top: 0.625rem;
|
|
2338
2366
|
padding-bottom: 0.625rem;
|
|
2339
2367
|
}
|
|
2368
|
+
.py-24 {
|
|
2369
|
+
padding-top: 6rem;
|
|
2370
|
+
padding-bottom: 6rem;
|
|
2371
|
+
}
|
|
2340
2372
|
.py-3 {
|
|
2341
2373
|
padding-top: 0.75rem;
|
|
2342
2374
|
padding-bottom: 0.75rem;
|
|
@@ -2527,6 +2559,12 @@ video {
|
|
|
2527
2559
|
.leading-4 {
|
|
2528
2560
|
line-height: 1rem;
|
|
2529
2561
|
}
|
|
2562
|
+
.leading-7 {
|
|
2563
|
+
line-height: 1.75rem;
|
|
2564
|
+
}
|
|
2565
|
+
.leading-8 {
|
|
2566
|
+
line-height: 2rem;
|
|
2567
|
+
}
|
|
2530
2568
|
.leading-\[25px\] {
|
|
2531
2569
|
line-height: 25px;
|
|
2532
2570
|
}
|
|
@@ -2611,6 +2649,10 @@ video {
|
|
|
2611
2649
|
--tw-text-opacity: 1;
|
|
2612
2650
|
color: rgb(21 128 61 / var(--tw-text-opacity));
|
|
2613
2651
|
}
|
|
2652
|
+
.text-indigo-600 {
|
|
2653
|
+
--tw-text-opacity: 1;
|
|
2654
|
+
color: rgb(79 70 229 / var(--tw-text-opacity));
|
|
2655
|
+
}
|
|
2614
2656
|
.text-info-foreground {
|
|
2615
2657
|
--tw-text-opacity: 1;
|
|
2616
2658
|
color: hsl(var(--info-foreground) / var(--tw-text-opacity));
|
|
@@ -4024,9 +4066,8 @@ body {
|
|
|
4024
4066
|
--tw-ring-opacity: 1;
|
|
4025
4067
|
--tw-ring-color: rgb(31 41 55 / var(--tw-ring-opacity));
|
|
4026
4068
|
}
|
|
4027
|
-
:is(.dark .peer:checked ~ .dark\:peer-checked\:text-
|
|
4028
|
-
|
|
4029
|
-
color: rgb(59 130 246 / var(--tw-text-opacity));
|
|
4069
|
+
:is(.dark .peer:checked ~ .dark\:peer-checked\:text-primary) {
|
|
4070
|
+
color: hsl(var(--primary));
|
|
4030
4071
|
}
|
|
4031
4072
|
@media (min-width: 440px) {
|
|
4032
4073
|
|
|
@@ -4104,6 +4145,11 @@ body {
|
|
|
4104
4145
|
padding: 5rem;
|
|
4105
4146
|
}
|
|
4106
4147
|
|
|
4148
|
+
.sm\:py-32 {
|
|
4149
|
+
padding-top: 8rem;
|
|
4150
|
+
padding-bottom: 8rem;
|
|
4151
|
+
}
|
|
4152
|
+
|
|
4107
4153
|
.sm\:text-left {
|
|
4108
4154
|
text-align: left;
|
|
4109
4155
|
}
|
|
@@ -4113,6 +4159,11 @@ body {
|
|
|
4113
4159
|
line-height: 2rem;
|
|
4114
4160
|
}
|
|
4115
4161
|
|
|
4162
|
+
.sm\:text-4xl {
|
|
4163
|
+
font-size: 2.25rem;
|
|
4164
|
+
line-height: 2.5rem;
|
|
4165
|
+
}
|
|
4166
|
+
|
|
4116
4167
|
.sm\:text-base {
|
|
4117
4168
|
font-size: 1rem;
|
|
4118
4169
|
line-height: 1.5rem;
|
|
@@ -4139,6 +4190,14 @@ body {
|
|
|
4139
4190
|
}
|
|
4140
4191
|
@media (min-width: 768px) {
|
|
4141
4192
|
|
|
4193
|
+
.md\:sticky {
|
|
4194
|
+
position: sticky;
|
|
4195
|
+
}
|
|
4196
|
+
|
|
4197
|
+
.md\:top-10 {
|
|
4198
|
+
top: 2.5rem;
|
|
4199
|
+
}
|
|
4200
|
+
|
|
4142
4201
|
.md\:mb-0 {
|
|
4143
4202
|
margin-bottom: 0px;
|
|
4144
4203
|
}
|
|
@@ -4159,6 +4218,10 @@ body {
|
|
|
4159
4218
|
margin-right: 1rem;
|
|
4160
4219
|
}
|
|
4161
4220
|
|
|
4221
|
+
.md\:mt-0 {
|
|
4222
|
+
margin-top: 0px;
|
|
4223
|
+
}
|
|
4224
|
+
|
|
4162
4225
|
.md\:h-auto {
|
|
4163
4226
|
height: auto;
|
|
4164
4227
|
}
|
|
@@ -4167,6 +4230,10 @@ body {
|
|
|
4167
4230
|
width: 12rem;
|
|
4168
4231
|
}
|
|
4169
4232
|
|
|
4233
|
+
.md\:w-\[28rem\] {
|
|
4234
|
+
width: 28rem;
|
|
4235
|
+
}
|
|
4236
|
+
|
|
4170
4237
|
.md\:w-full {
|
|
4171
4238
|
width: 100%;
|
|
4172
4239
|
}
|
|
@@ -4251,6 +4318,10 @@ body {
|
|
|
4251
4318
|
max-width: 80rem;
|
|
4252
4319
|
}
|
|
4253
4320
|
|
|
4321
|
+
.lg\:max-w-none {
|
|
4322
|
+
max-width: none;
|
|
4323
|
+
}
|
|
4324
|
+
|
|
4254
4325
|
.lg\:columns-4 {
|
|
4255
4326
|
-moz-columns: 4;
|
|
4256
4327
|
columns: 4;
|
|
@@ -4263,6 +4334,15 @@ body {
|
|
|
4263
4334
|
.lg\:grid-cols-4 {
|
|
4264
4335
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
4265
4336
|
}
|
|
4337
|
+
|
|
4338
|
+
.lg\:gap-y-16 {
|
|
4339
|
+
row-gap: 4rem;
|
|
4340
|
+
}
|
|
4341
|
+
|
|
4342
|
+
.lg\:px-8 {
|
|
4343
|
+
padding-left: 2rem;
|
|
4344
|
+
padding-right: 2rem;
|
|
4345
|
+
}
|
|
4266
4346
|
}
|
|
4267
4347
|
@media (min-width: 1280px) {
|
|
4268
4348
|
|
package/src/tailwind.css
CHANGED
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
--border: 240 5.9% 90%;
|
|
89
89
|
--input: 240 5.9% 90%;
|
|
90
90
|
--ring: 240 5% 64.9%;
|
|
91
|
-
--radius:
|
|
91
|
+
--radius: 0rem;
|
|
92
92
|
--radius-inner: calc(var(--radius) - calc(var(--radius) / 3));
|
|
93
93
|
|
|
94
94
|
--layout-primary-700: #b7aff7;
|
|
@@ -138,10 +138,11 @@
|
|
|
138
138
|
margin-right: 0.25em;
|
|
139
139
|
width: 0.75em;
|
|
140
140
|
vertical-align: middle;
|
|
141
|
-
color: var(--
|
|
141
|
+
color: hsl(var(--primary));
|
|
142
|
+
|
|
142
143
|
}
|
|
143
144
|
.link {
|
|
144
|
-
color: var(--
|
|
145
|
+
color: hsl(var(--primary));
|
|
145
146
|
}
|
|
146
147
|
.link:hover {
|
|
147
148
|
text-decoration: underline;
|
|
@@ -199,10 +200,10 @@
|
|
|
199
200
|
height: 9px;
|
|
200
201
|
position: absolute;
|
|
201
202
|
top: 6px;
|
|
202
|
-
left:
|
|
203
|
+
left: 3px;
|
|
203
204
|
content: " ";
|
|
204
205
|
display: block;
|
|
205
|
-
background: var(--
|
|
206
|
+
background: hsl(var(--primary));
|
|
206
207
|
}
|
|
207
208
|
.radio-item-bordered input[type="radio"]:checked + label:after {
|
|
208
209
|
border-radius: 100%;
|
|
@@ -213,7 +214,7 @@
|
|
|
213
214
|
left: 23px;
|
|
214
215
|
content: " ";
|
|
215
216
|
display: block;
|
|
216
|
-
background: var(--
|
|
217
|
+
background: hsl(var(--primary));
|
|
217
218
|
}
|
|
218
219
|
}
|
|
219
220
|
@layer base {
|
|
@@ -234,7 +235,6 @@
|
|
|
234
235
|
}
|
|
235
236
|
}
|
|
236
237
|
@layer utilities {
|
|
237
|
-
|
|
238
238
|
.shadow-color-primary {
|
|
239
239
|
--tw-shadow: 0.25rem 0.25rem hsl(var(--primary));
|
|
240
240
|
box-shadow: var(--tw-shadow);
|