@libxai/board 0.17.84 → 0.17.86
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +39 -20
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -8113,6 +8113,11 @@ body {
|
|
|
8113
8113
|
}
|
|
8114
8114
|
|
|
8115
8115
|
|
|
8116
|
+
.inset-4 {
|
|
8117
|
+
inset: 1rem;
|
|
8118
|
+
}
|
|
8119
|
+
|
|
8120
|
+
|
|
8116
8121
|
.bottom-0 {
|
|
8117
8122
|
bottom: 0px;
|
|
8118
8123
|
}
|
|
@@ -8571,11 +8576,6 @@ body {
|
|
|
8571
8576
|
}
|
|
8572
8577
|
|
|
8573
8578
|
|
|
8574
|
-
.max-h-\[85vh\] {
|
|
8575
|
-
max-height: 85vh;
|
|
8576
|
-
}
|
|
8577
|
-
|
|
8578
|
-
|
|
8579
8579
|
.max-h-\[88px\] {
|
|
8580
8580
|
max-height: 88px;
|
|
8581
8581
|
}
|
|
@@ -8711,11 +8711,6 @@ body {
|
|
|
8711
8711
|
}
|
|
8712
8712
|
|
|
8713
8713
|
|
|
8714
|
-
.w-\[90\%\] {
|
|
8715
|
-
width: 90%;
|
|
8716
|
-
}
|
|
8717
|
-
|
|
8718
|
-
|
|
8719
8714
|
.w-full {
|
|
8720
8715
|
width: 100%;
|
|
8721
8716
|
}
|
|
@@ -8806,11 +8801,6 @@ body {
|
|
|
8806
8801
|
}
|
|
8807
8802
|
|
|
8808
8803
|
|
|
8809
|
-
.max-w-\[900px\] {
|
|
8810
|
-
max-width: 900px;
|
|
8811
|
-
}
|
|
8812
|
-
|
|
8813
|
-
|
|
8814
8804
|
.max-w-md {
|
|
8815
8805
|
max-width: 28rem;
|
|
8816
8806
|
}
|
|
@@ -9033,14 +9023,14 @@ body {
|
|
|
9033
9023
|
}
|
|
9034
9024
|
|
|
9035
9025
|
|
|
9036
|
-
.gap-x-
|
|
9037
|
-
-moz-column-gap:
|
|
9038
|
-
column-gap:
|
|
9026
|
+
.gap-x-12 {
|
|
9027
|
+
-moz-column-gap: 3rem;
|
|
9028
|
+
column-gap: 3rem;
|
|
9039
9029
|
}
|
|
9040
9030
|
|
|
9041
9031
|
|
|
9042
|
-
.gap-y-
|
|
9043
|
-
row-gap:
|
|
9032
|
+
.gap-y-5 {
|
|
9033
|
+
row-gap: 1.25rem;
|
|
9044
9034
|
}
|
|
9045
9035
|
|
|
9046
9036
|
|
|
@@ -9096,11 +9086,21 @@ body {
|
|
|
9096
9086
|
}
|
|
9097
9087
|
|
|
9098
9088
|
|
|
9089
|
+
.overflow-visible {
|
|
9090
|
+
overflow: visible;
|
|
9091
|
+
}
|
|
9092
|
+
|
|
9093
|
+
|
|
9099
9094
|
.overflow-y-auto {
|
|
9100
9095
|
overflow-y: auto;
|
|
9101
9096
|
}
|
|
9102
9097
|
|
|
9103
9098
|
|
|
9099
|
+
.overflow-x-visible {
|
|
9100
|
+
overflow-x: visible;
|
|
9101
|
+
}
|
|
9102
|
+
|
|
9103
|
+
|
|
9104
9104
|
.truncate {
|
|
9105
9105
|
overflow: hidden;
|
|
9106
9106
|
text-overflow: ellipsis;
|
|
@@ -9840,6 +9840,11 @@ body {
|
|
|
9840
9840
|
}
|
|
9841
9841
|
|
|
9842
9842
|
|
|
9843
|
+
.pb-6 {
|
|
9844
|
+
padding-bottom: 1.5rem;
|
|
9845
|
+
}
|
|
9846
|
+
|
|
9847
|
+
|
|
9843
9848
|
.pl-10 {
|
|
9844
9849
|
padding-left: 2.5rem;
|
|
9845
9850
|
}
|
|
@@ -11313,7 +11318,21 @@ body {
|
|
|
11313
11318
|
@media (min-width: 768px) {
|
|
11314
11319
|
|
|
11315
11320
|
|
|
11321
|
+
.md\:inset-8 {
|
|
11322
|
+
inset: 2rem;
|
|
11323
|
+
}
|
|
11324
|
+
|
|
11325
|
+
|
|
11316
11326
|
.md\:grid-cols-2 {
|
|
11317
11327
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
11318
11328
|
}
|
|
11319
11329
|
}
|
|
11330
|
+
|
|
11331
|
+
|
|
11332
|
+
@media (min-width: 1024px) {
|
|
11333
|
+
|
|
11334
|
+
|
|
11335
|
+
.lg\:inset-12 {
|
|
11336
|
+
inset: 3rem;
|
|
11337
|
+
}
|
|
11338
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libxai/board",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.86",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Professional Gantt Chart + Kanban Board + ListView + CalendarBoard for React - Part of LibXAI Suite - TypeScript - Production-Ready - Zero Config",
|
|
6
6
|
"author": "LibXAI <hello@libxai.com>",
|