@sikka/hawa 0.0.178 → 0.0.180
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 +27 -9
- package/es/elements/HawaTable.d.ts +1 -0
- package/es/elements/HawaTabs.d.ts +1 -0
- package/es/index.es.js +1 -1
- package/es/layout/HawaAppLayout.d.ts +2 -0
- package/lib/elements/HawaTable.d.ts +1 -0
- package/lib/elements/HawaTabs.d.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/layout/HawaAppLayout.d.ts +2 -0
- package/package.json +1 -1
- package/src/elements/HawaMenu.tsx +2 -2
- package/src/elements/HawaTable.tsx +4 -2
- package/src/elements/HawaTabs.tsx +18 -6
- package/src/layout/HawaAppLayout.tsx +99 -54
- package/src/styles.css +27 -9
- package/storybook-static/229.a3257e00.iframe.bundle.js +0 -1
- package/storybook-static/229.d6fb4f8f665962cef844.manager.bundle.js +0 -1
- package/storybook-static/239.5e8067ea.iframe.bundle.js +0 -2
- package/storybook-static/239.5e8067ea.iframe.bundle.js.LICENSE.txt +0 -105
- package/storybook-static/295.67c251ec00675ab59b60.manager.bundle.js +0 -1
- package/storybook-static/51.8ca217c6882b6d3971a8.manager.bundle.js +0 -2
- package/storybook-static/51.8ca217c6882b6d3971a8.manager.bundle.js.LICENSE.txt +0 -8
- package/storybook-static/51.aeae4f67.iframe.bundle.js +0 -2
- package/storybook-static/51.aeae4f67.iframe.bundle.js.LICENSE.txt +0 -8
- package/storybook-static/551.67cd309b0648b0a52636.manager.bundle.js +0 -1
- package/storybook-static/551.c82ea8f1.iframe.bundle.js +0 -1
- package/storybook-static/701.bcf1e718.iframe.bundle.js +0 -1
- package/storybook-static/767.8e4ffb17eae12c283b3b.manager.bundle.js +0 -2
- package/storybook-static/767.8e4ffb17eae12c283b3b.manager.bundle.js.LICENSE.txt +0 -94
- package/storybook-static/807.14b8bfa7.iframe.bundle.js +0 -2
- package/storybook-static/807.14b8bfa7.iframe.bundle.js.LICENSE.txt +0 -31
- package/storybook-static/807.4f52b2d047c5e8c5872f.manager.bundle.js +0 -2
- package/storybook-static/807.4f52b2d047c5e8c5872f.manager.bundle.js.LICENSE.txt +0 -31
- package/storybook-static/897.386c170cbd1467abc7ca.manager.bundle.js +0 -2
- package/storybook-static/897.386c170cbd1467abc7ca.manager.bundle.js.LICENSE.txt +0 -12
- package/storybook-static/897.d9a35fd0.iframe.bundle.js +0 -2
- package/storybook-static/897.d9a35fd0.iframe.bundle.js.LICENSE.txt +0 -12
- package/storybook-static/935.07c1b6ea.iframe.bundle.js +0 -1
- package/storybook-static/935.0b4e9c201c33f3e66e81.manager.bundle.js +0 -1
- package/storybook-static/favicon.ico +0 -0
- package/storybook-static/iframe.html +0 -364
- package/storybook-static/index.html +0 -59
- package/storybook-static/main.051275cac7b0dc69501c.manager.bundle.js +0 -1
- package/storybook-static/main.46fe6f33.iframe.bundle.js +0 -1
- package/storybook-static/project.json +0 -1
- package/storybook-static/runtime~main.118c8621e276a271ad89.manager.bundle.js +0 -1
- package/storybook-static/runtime~main.4a2964ac.iframe.bundle.js +0 -1
package/dist/styles.css
CHANGED
|
@@ -704,10 +704,6 @@ video {
|
|
|
704
704
|
margin-left: 0.25rem;
|
|
705
705
|
margin-right: 0.25rem;
|
|
706
706
|
}
|
|
707
|
-
.my-1 {
|
|
708
|
-
margin-top: 0.25rem;
|
|
709
|
-
margin-bottom: 0.25rem;
|
|
710
|
-
}
|
|
711
707
|
.my-7 {
|
|
712
708
|
margin-top: 1.75rem;
|
|
713
709
|
margin-bottom: 1.75rem;
|
|
@@ -1063,6 +1059,14 @@ video {
|
|
|
1063
1059
|
--tw-rotate: 180deg;
|
|
1064
1060
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1065
1061
|
}
|
|
1062
|
+
.-rotate-90 {
|
|
1063
|
+
--tw-rotate: -90deg;
|
|
1064
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1065
|
+
}
|
|
1066
|
+
.rotate-90 {
|
|
1067
|
+
--tw-rotate: 90deg;
|
|
1068
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1069
|
+
}
|
|
1066
1070
|
.transform {
|
|
1067
1071
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1068
1072
|
}
|
|
@@ -1140,6 +1144,9 @@ video {
|
|
|
1140
1144
|
.gap-1 {
|
|
1141
1145
|
gap: 0.25rem;
|
|
1142
1146
|
}
|
|
1147
|
+
.gap-0 {
|
|
1148
|
+
gap: 0px;
|
|
1149
|
+
}
|
|
1143
1150
|
.gap-9 {
|
|
1144
1151
|
gap: 2.25rem;
|
|
1145
1152
|
}
|
|
@@ -1260,9 +1267,13 @@ video {
|
|
|
1260
1267
|
border-top-left-radius: 0px;
|
|
1261
1268
|
border-bottom-left-radius: 0px;
|
|
1262
1269
|
}
|
|
1263
|
-
.rounded-r
|
|
1264
|
-
border-top-right-radius:
|
|
1265
|
-
border-bottom-right-radius:
|
|
1270
|
+
.rounded-r {
|
|
1271
|
+
border-top-right-radius: var(--border-radius);
|
|
1272
|
+
border-bottom-right-radius: var(--border-radius);
|
|
1273
|
+
}
|
|
1274
|
+
.rounded-l {
|
|
1275
|
+
border-top-left-radius: var(--border-radius);
|
|
1276
|
+
border-bottom-left-radius: var(--border-radius);
|
|
1266
1277
|
}
|
|
1267
1278
|
.rounded-tr-none {
|
|
1268
1279
|
border-top-right-radius: 0px;
|
|
@@ -1495,6 +1506,13 @@ video {
|
|
|
1495
1506
|
--tw-bg-opacity: 1;
|
|
1496
1507
|
background-color: rgb(34 197 94 / var(--tw-bg-opacity));
|
|
1497
1508
|
}
|
|
1509
|
+
.bg-blue-300 {
|
|
1510
|
+
--tw-bg-opacity: 1;
|
|
1511
|
+
background-color: rgb(147 197 253 / var(--tw-bg-opacity));
|
|
1512
|
+
}
|
|
1513
|
+
.bg-layoutPrimary-300 {
|
|
1514
|
+
background-color: var(--layout-primary-300);
|
|
1515
|
+
}
|
|
1498
1516
|
.bg-gray-300 {
|
|
1499
1517
|
--tw-bg-opacity: 1;
|
|
1500
1518
|
background-color: rgb(209 213 219 / var(--tw-bg-opacity));
|
|
@@ -1991,8 +2009,8 @@ body {
|
|
|
1991
2009
|
background-color: rgb(55 65 81 / var(--tw-bg-opacity));
|
|
1992
2010
|
}
|
|
1993
2011
|
|
|
1994
|
-
.hover\:bg-
|
|
1995
|
-
background-color: var(--
|
|
2012
|
+
.hover\:bg-layoutPrimary-500:hover {
|
|
2013
|
+
background-color: var(--layout-primary-500);
|
|
1996
2014
|
}
|
|
1997
2015
|
|
|
1998
2016
|
.hover\:text-gray-900:hover {
|