@sikka/hawa 0.0.230 → 0.0.231
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 +45 -1
- package/es/elements/FloatingComment - ContentEditable.d.ts +6 -0
- package/es/elements/FloatingComment.d.ts +6 -0
- package/es/elements/index.d.ts +1 -0
- package/es/index.es.js +1 -1
- package/lib/elements/FloatingComment - ContentEditable.d.ts +6 -0
- package/lib/elements/FloatingComment.d.ts +6 -0
- package/lib/elements/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/package.json +3 -2
- package/src/elements/FloatingComment - ContentEditable.tsx +514 -0
- package/src/elements/FloatingComment.tsx +369 -0
- package/src/elements/index.ts +1 -0
- package/src/styles.css +45 -1
- package/src/tailwind.css +1 -1
package/dist/styles.css
CHANGED
|
@@ -660,6 +660,9 @@ video {
|
|
|
660
660
|
.z-50 {
|
|
661
661
|
z-index: 50;
|
|
662
662
|
}
|
|
663
|
+
.order-none {
|
|
664
|
+
order: 0;
|
|
665
|
+
}
|
|
663
666
|
.m-0 {
|
|
664
667
|
margin: 0px;
|
|
665
668
|
}
|
|
@@ -771,6 +774,9 @@ video {
|
|
|
771
774
|
.mr-40 {
|
|
772
775
|
margin-right: 10rem;
|
|
773
776
|
}
|
|
777
|
+
.mr-\[5px\] {
|
|
778
|
+
margin-right: 5px;
|
|
779
|
+
}
|
|
774
780
|
.mt-0 {
|
|
775
781
|
margin-top: 0px;
|
|
776
782
|
}
|
|
@@ -885,12 +891,18 @@ video {
|
|
|
885
891
|
.h-96 {
|
|
886
892
|
height: 24rem;
|
|
887
893
|
}
|
|
894
|
+
.h-\[150px\] {
|
|
895
|
+
height: 150px;
|
|
896
|
+
}
|
|
888
897
|
.h-\[1px\] {
|
|
889
898
|
height: 1px;
|
|
890
899
|
}
|
|
891
900
|
.h-\[2\.36rem\] {
|
|
892
901
|
height: 2.36rem;
|
|
893
902
|
}
|
|
903
|
+
.h-\[32px\] {
|
|
904
|
+
height: 32px;
|
|
905
|
+
}
|
|
894
906
|
.h-\[calc\(100\%-3\.5rem\)\] {
|
|
895
907
|
height: calc(100% - 3.5rem);
|
|
896
908
|
}
|
|
@@ -990,6 +1002,12 @@ video {
|
|
|
990
1002
|
.w-8 {
|
|
991
1003
|
width: 2rem;
|
|
992
1004
|
}
|
|
1005
|
+
.w-\[32px\] {
|
|
1006
|
+
width: 32px;
|
|
1007
|
+
}
|
|
1008
|
+
.w-\[400px\] {
|
|
1009
|
+
width: 400px;
|
|
1010
|
+
}
|
|
993
1011
|
.w-\[calc\(1\%\)\] {
|
|
994
1012
|
width: calc(1%);
|
|
995
1013
|
}
|
|
@@ -1104,6 +1122,9 @@ video {
|
|
|
1104
1122
|
.cursor-pointer {
|
|
1105
1123
|
cursor: pointer;
|
|
1106
1124
|
}
|
|
1125
|
+
.resize-none {
|
|
1126
|
+
resize: none;
|
|
1127
|
+
}
|
|
1107
1128
|
.resize {
|
|
1108
1129
|
resize: both;
|
|
1109
1130
|
}
|
|
@@ -1492,6 +1513,10 @@ video {
|
|
|
1492
1513
|
.bg-buttonPrimary-500 {
|
|
1493
1514
|
background-color: var(--button-primary-500);
|
|
1494
1515
|
}
|
|
1516
|
+
.bg-cyan-800 {
|
|
1517
|
+
--tw-bg-opacity: 1;
|
|
1518
|
+
background-color: rgb(21 94 117 / var(--tw-bg-opacity));
|
|
1519
|
+
}
|
|
1495
1520
|
.bg-gray-100 {
|
|
1496
1521
|
--tw-bg-opacity: 1;
|
|
1497
1522
|
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
|
@@ -1504,6 +1529,10 @@ video {
|
|
|
1504
1529
|
--tw-bg-opacity: 1;
|
|
1505
1530
|
background-color: rgb(209 213 219 / var(--tw-bg-opacity));
|
|
1506
1531
|
}
|
|
1532
|
+
.bg-gray-400 {
|
|
1533
|
+
--tw-bg-opacity: 1;
|
|
1534
|
+
background-color: rgb(156 163 175 / var(--tw-bg-opacity));
|
|
1535
|
+
}
|
|
1507
1536
|
.bg-gray-50 {
|
|
1508
1537
|
--tw-bg-opacity: 1;
|
|
1509
1538
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
|
@@ -1566,6 +1595,10 @@ video {
|
|
|
1566
1595
|
--tw-bg-opacity: 1;
|
|
1567
1596
|
background-color: rgb(185 28 28 / var(--tw-bg-opacity));
|
|
1568
1597
|
}
|
|
1598
|
+
.bg-slate-600 {
|
|
1599
|
+
--tw-bg-opacity: 1;
|
|
1600
|
+
background-color: rgb(71 85 105 / var(--tw-bg-opacity));
|
|
1601
|
+
}
|
|
1569
1602
|
.bg-transparent {
|
|
1570
1603
|
background-color: transparent;
|
|
1571
1604
|
}
|
|
@@ -1812,6 +1845,9 @@ video {
|
|
|
1812
1845
|
.capitalize {
|
|
1813
1846
|
text-transform: capitalize;
|
|
1814
1847
|
}
|
|
1848
|
+
.italic {
|
|
1849
|
+
font-style: italic;
|
|
1850
|
+
}
|
|
1815
1851
|
.leading-4 {
|
|
1816
1852
|
line-height: 1rem;
|
|
1817
1853
|
}
|
|
@@ -1900,6 +1936,10 @@ video {
|
|
|
1900
1936
|
-webkit-text-decoration-line: underline;
|
|
1901
1937
|
text-decoration-line: underline;
|
|
1902
1938
|
}
|
|
1939
|
+
.line-through {
|
|
1940
|
+
-webkit-text-decoration-line: line-through;
|
|
1941
|
+
text-decoration-line: line-through;
|
|
1942
|
+
}
|
|
1903
1943
|
.underline-offset-4 {
|
|
1904
1944
|
text-underline-offset: 4px;
|
|
1905
1945
|
}
|
|
@@ -1945,6 +1985,10 @@ video {
|
|
|
1945
1985
|
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
1946
1986
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1947
1987
|
}
|
|
1988
|
+
.outline-none {
|
|
1989
|
+
outline: 2px solid transparent;
|
|
1990
|
+
outline-offset: 2px;
|
|
1991
|
+
}
|
|
1948
1992
|
.outline {
|
|
1949
1993
|
outline-style: solid;
|
|
1950
1994
|
}
|
|
@@ -2612,4 +2656,4 @@ body {
|
|
|
2612
2656
|
margin-left: 2.5rem;
|
|
2613
2657
|
margin-right: 2.5rem;
|
|
2614
2658
|
}
|
|
2615
|
-
}
|
|
2659
|
+
}
|
package/es/elements/index.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export * from "./InvoiceAccordion";
|
|
|
32
32
|
export * from "./HawaDatepicker";
|
|
33
33
|
export * from "./UserFeedback";
|
|
34
34
|
export * from "./ArrowCarousel";
|
|
35
|
+
export * from "./FloatingComment";
|
|
35
36
|
export * from "./HawaTextField";
|
|
36
37
|
export * from "./HawaCardInput";
|
|
37
38
|
export * from "./HawaPinInput";
|