@geomak/ui 7.11.0 → 7.13.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 +398 -214
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +397 -213
- package/dist/index.js.map +1 -1
- package/dist/styles.css +6 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1610,6 +1610,9 @@ input:autofill,
|
|
|
1610
1610
|
.max-w-\[12rem\] {
|
|
1611
1611
|
max-width: 12rem;
|
|
1612
1612
|
}
|
|
1613
|
+
.max-w-\[160px\] {
|
|
1614
|
+
max-width: 160px;
|
|
1615
|
+
}
|
|
1613
1616
|
.max-w-\[16rem\] {
|
|
1614
1617
|
max-width: 16rem;
|
|
1615
1618
|
}
|
|
@@ -1750,6 +1753,9 @@ input:autofill,
|
|
|
1750
1753
|
.cursor-copy {
|
|
1751
1754
|
cursor: copy;
|
|
1752
1755
|
}
|
|
1756
|
+
.cursor-default {
|
|
1757
|
+
cursor: default;
|
|
1758
|
+
}
|
|
1753
1759
|
.cursor-not-allowed {
|
|
1754
1760
|
cursor: not-allowed;
|
|
1755
1761
|
}
|
package/package.json
CHANGED