@geomak/ui 7.8.0 → 7.10.0
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.cjs +767 -515
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +48 -6
- package/dist/index.d.ts +48 -6
- package/dist/index.js +424 -172
- package/dist/index.js.map +1 -1
- package/dist/styles.css +16 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1072,6 +1072,10 @@ input:autofill,
|
|
|
1072
1072
|
margin-left: -0.25rem;
|
|
1073
1073
|
margin-right: -0.25rem;
|
|
1074
1074
|
}
|
|
1075
|
+
.mx-1 {
|
|
1076
|
+
margin-left: 0.25rem;
|
|
1077
|
+
margin-right: 0.25rem;
|
|
1078
|
+
}
|
|
1075
1079
|
.mx-auto {
|
|
1076
1080
|
margin-left: auto;
|
|
1077
1081
|
margin-right: auto;
|
|
@@ -1540,6 +1544,9 @@ input:autofill,
|
|
|
1540
1544
|
width: -moz-max-content;
|
|
1541
1545
|
width: max-content;
|
|
1542
1546
|
}
|
|
1547
|
+
.w-px {
|
|
1548
|
+
width: 1px;
|
|
1549
|
+
}
|
|
1543
1550
|
.min-w-0 {
|
|
1544
1551
|
min-width: 0px;
|
|
1545
1552
|
}
|
|
@@ -2063,6 +2070,9 @@ input:autofill,
|
|
|
2063
2070
|
.break-words {
|
|
2064
2071
|
overflow-wrap: break-word;
|
|
2065
2072
|
}
|
|
2073
|
+
.\!rounded-none {
|
|
2074
|
+
border-radius: 0px !important;
|
|
2075
|
+
}
|
|
2066
2076
|
.rounded {
|
|
2067
2077
|
border-radius: 0.25rem;
|
|
2068
2078
|
}
|
|
@@ -2109,6 +2119,9 @@ input:autofill,
|
|
|
2109
2119
|
.rounded-br-md {
|
|
2110
2120
|
border-bottom-right-radius: var(--radius-md);
|
|
2111
2121
|
}
|
|
2122
|
+
.\!border-0 {
|
|
2123
|
+
border-width: 0px !important;
|
|
2124
|
+
}
|
|
2112
2125
|
.border {
|
|
2113
2126
|
border-width: 1px;
|
|
2114
2127
|
}
|
|
@@ -3415,6 +3428,9 @@ input:autofill,
|
|
|
3415
3428
|
.sm\:right-4 {
|
|
3416
3429
|
right: 1rem;
|
|
3417
3430
|
}
|
|
3431
|
+
.sm\:inline {
|
|
3432
|
+
display: inline;
|
|
3433
|
+
}
|
|
3418
3434
|
.sm\:max-w-md {
|
|
3419
3435
|
max-width: 28rem;
|
|
3420
3436
|
}
|
package/package.json
CHANGED