@sikka/hawa 0.0.102 → 0.0.103
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 +23 -30
- package/es/elements/HawaRadio.d.ts +3 -1
- package/es/elements/HawaSettingsRow.d.ts +1 -1
- package/es/index.es.js +1 -1
- package/lib/elements/HawaRadio.d.ts +3 -1
- package/lib/elements/HawaSettingsRow.d.ts +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/elements/HawaCheckbox.tsx +6 -4
- package/src/elements/HawaRadio.tsx +27 -24
- package/src/elements/HawaSettingsRow.tsx +3 -6
- package/src/elements/HawaTabs.tsx +15 -6
- package/src/styles.css +23 -30
- package/storybook-static/209.70afd616.iframe.bundle.js +2 -0
- package/storybook-static/{209.3141149a.iframe.bundle.js.LICENSE.txt → 209.70afd616.iframe.bundle.js.LICENSE.txt} +15 -11
- package/storybook-static/745.4b81597c.iframe.bundle.js +1 -0
- package/storybook-static/{767.2f9c96fa3338c8d16078.manager.bundle.js → 767.888009dba401078f3f72.manager.bundle.js} +2 -2
- package/storybook-static/{767.2f9c96fa3338c8d16078.manager.bundle.js.LICENSE.txt → 767.888009dba401078f3f72.manager.bundle.js.LICENSE.txt} +22 -19
- package/storybook-static/iframe.html +1 -1
- package/storybook-static/index.html +1 -1
- package/storybook-static/main.ff0dd517.iframe.bundle.js +1 -0
- package/storybook-static/project.json +1 -1
- package/storybook-static/runtime~main.968bd8b6.iframe.bundle.js +1 -0
- package/storybook-static/209.3141149a.iframe.bundle.js +0 -2
- package/storybook-static/main.2fac3c3c.iframe.bundle.js +0 -1
- package/storybook-static/runtime~main.4d0bf318.iframe.bundle.js +0 -1
package/dist/styles.css
CHANGED
|
@@ -587,6 +587,14 @@ video {
|
|
|
587
587
|
margin-top: 1.75rem;
|
|
588
588
|
margin-bottom: 1.75rem;
|
|
589
589
|
}
|
|
590
|
+
.my-0\.5 {
|
|
591
|
+
margin-top: 0.125rem;
|
|
592
|
+
margin-bottom: 0.125rem;
|
|
593
|
+
}
|
|
594
|
+
.my-0 {
|
|
595
|
+
margin-top: 0px;
|
|
596
|
+
margin-bottom: 0px;
|
|
597
|
+
}
|
|
590
598
|
.ml-auto {
|
|
591
599
|
margin-left: auto;
|
|
592
600
|
}
|
|
@@ -599,8 +607,11 @@ video {
|
|
|
599
607
|
.mb-4 {
|
|
600
608
|
margin-bottom: 1rem;
|
|
601
609
|
}
|
|
602
|
-
.
|
|
603
|
-
margin-
|
|
610
|
+
.mt-0\.5 {
|
|
611
|
+
margin-top: 0.125rem;
|
|
612
|
+
}
|
|
613
|
+
.mt-0 {
|
|
614
|
+
margin-top: 0px;
|
|
604
615
|
}
|
|
605
616
|
.mt-1 {
|
|
606
617
|
margin-top: 0.25rem;
|
|
@@ -626,6 +637,9 @@ video {
|
|
|
626
637
|
.ml-1 {
|
|
627
638
|
margin-left: 0.25rem;
|
|
628
639
|
}
|
|
640
|
+
.ml-2 {
|
|
641
|
+
margin-left: 0.5rem;
|
|
642
|
+
}
|
|
629
643
|
.mt-2 {
|
|
630
644
|
margin-top: 0.5rem;
|
|
631
645
|
}
|
|
@@ -687,9 +701,6 @@ video {
|
|
|
687
701
|
.h-11 {
|
|
688
702
|
height: 2.75rem;
|
|
689
703
|
}
|
|
690
|
-
.h-4 {
|
|
691
|
-
height: 1rem;
|
|
692
|
-
}
|
|
693
704
|
.h-2 {
|
|
694
705
|
height: 0.5rem;
|
|
695
706
|
}
|
|
@@ -740,9 +751,6 @@ video {
|
|
|
740
751
|
.w-1\/2 {
|
|
741
752
|
width: 50%;
|
|
742
753
|
}
|
|
743
|
-
.w-4 {
|
|
744
|
-
width: 1rem;
|
|
745
|
-
}
|
|
746
754
|
.w-24 {
|
|
747
755
|
width: 6rem;
|
|
748
756
|
}
|
|
@@ -1036,6 +1044,9 @@ video {
|
|
|
1036
1044
|
.rounded-br-lg {
|
|
1037
1045
|
border-bottom-right-radius: 0.5rem;
|
|
1038
1046
|
}
|
|
1047
|
+
.rounded-br-none {
|
|
1048
|
+
border-bottom-right-radius: 0px;
|
|
1049
|
+
}
|
|
1039
1050
|
.border {
|
|
1040
1051
|
border-width: 1px;
|
|
1041
1052
|
}
|
|
@@ -1108,6 +1119,10 @@ video {
|
|
|
1108
1119
|
--tw-border-opacity: 1;
|
|
1109
1120
|
border-top-color: rgb(255 255 255 / var(--tw-border-opacity));
|
|
1110
1121
|
}
|
|
1122
|
+
.border-b-primary-500 {
|
|
1123
|
+
--tw-border-opacity: 1;
|
|
1124
|
+
border-bottom-color: rgb(61 147 249 / var(--tw-border-opacity));
|
|
1125
|
+
}
|
|
1111
1126
|
.bg-gray-900 {
|
|
1112
1127
|
--tw-bg-opacity: 1;
|
|
1113
1128
|
background-color: rgb(17 24 39 / var(--tw-bg-opacity));
|
|
@@ -1280,9 +1295,6 @@ video {
|
|
|
1280
1295
|
.pr-3 {
|
|
1281
1296
|
padding-right: 0.75rem;
|
|
1282
1297
|
}
|
|
1283
|
-
.pl-3 {
|
|
1284
|
-
padding-left: 0.75rem;
|
|
1285
|
-
}
|
|
1286
1298
|
.pt-0 {
|
|
1287
1299
|
padding-top: 0px;
|
|
1288
1300
|
}
|
|
@@ -1708,10 +1720,6 @@ body {
|
|
|
1708
1720
|
--tw-border-opacity: 1;
|
|
1709
1721
|
border-color: rgb(59 130 246 / var(--tw-border-opacity));
|
|
1710
1722
|
}
|
|
1711
|
-
.dark .dark\:border-gray-500 {
|
|
1712
|
-
--tw-border-opacity: 1;
|
|
1713
|
-
border-color: rgb(107 114 128 / var(--tw-border-opacity));
|
|
1714
|
-
}
|
|
1715
1723
|
.dark .dark\:bg-gray-800 {
|
|
1716
1724
|
--tw-bg-opacity: 1;
|
|
1717
1725
|
background-color: rgb(31 41 55 / var(--tw-bg-opacity));
|
|
@@ -1807,9 +1815,6 @@ body {
|
|
|
1807
1815
|
.dark .dark\:ring-offset-gray-800 {
|
|
1808
1816
|
--tw-ring-offset-color: #1f2937;
|
|
1809
1817
|
}
|
|
1810
|
-
.dark .dark\:ring-offset-gray-700 {
|
|
1811
|
-
--tw-ring-offset-color: #374151;
|
|
1812
|
-
}
|
|
1813
1818
|
.dark .dark\:hover\:bg-gray-600:hover {
|
|
1814
1819
|
--tw-bg-opacity: 1;
|
|
1815
1820
|
background-color: rgb(75 85 99 / var(--tw-bg-opacity));
|
|
@@ -1880,18 +1885,6 @@ body {
|
|
|
1880
1885
|
}
|
|
1881
1886
|
@media (min-width: 640px) {
|
|
1882
1887
|
|
|
1883
|
-
.sm\:flex {
|
|
1884
|
-
display: flex;
|
|
1885
|
-
}
|
|
1886
|
-
|
|
1887
|
-
.sm\:border-b-0 {
|
|
1888
|
-
border-bottom-width: 0px;
|
|
1889
|
-
}
|
|
1890
|
-
|
|
1891
|
-
.sm\:border-r {
|
|
1892
|
-
border-right-width: 1px;
|
|
1893
|
-
}
|
|
1894
|
-
|
|
1895
1888
|
.sm\:p-8 {
|
|
1896
1889
|
padding: 2rem;
|
|
1897
1890
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
type SettingsRowTypes = {
|
|
3
3
|
settingsLabel: any;
|
|
4
|
-
settingsType: "
|
|
4
|
+
settingsType: "text" | "radio" | "boolean" | "color" | "range";
|
|
5
5
|
radioProps: {
|
|
6
6
|
defaultValue: any;
|
|
7
7
|
onChangeTab: any;
|