@libxai/board 0.11.6 → 0.11.8
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 +12 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +12 -12
- package/dist/index.js.map +1 -1
- package/dist/styles.css +165 -5
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -6592,6 +6592,156 @@ html[data-theme="neutral"] .column-manager-menu * {
|
|
|
6592
6592
|
========================================================================== */
|
|
6593
6593
|
|
|
6594
6594
|
|
|
6595
|
+
/* ==========================================================================
|
|
6596
|
+
GANTT CHART SCROLLBARS - Professional dark theme
|
|
6597
|
+
Consistent, subtle, and theme-aware
|
|
6598
|
+
========================================================================== */
|
|
6599
|
+
|
|
6600
|
+
|
|
6601
|
+
/* Dark theme scrollbar colors */
|
|
6602
|
+
|
|
6603
|
+
|
|
6604
|
+
[data-theme="dark"] [data-gantt-chart],
|
|
6605
|
+
[data-theme="dark"] .gantt-grid-scroll,
|
|
6606
|
+
[data-theme="dark"] .gantt-timeline-scroll {
|
|
6607
|
+
scrollbar-width: thin;
|
|
6608
|
+
scrollbar-color: #3a3d45 transparent;
|
|
6609
|
+
}
|
|
6610
|
+
|
|
6611
|
+
|
|
6612
|
+
[data-theme="dark"] [data-gantt-chart]::-webkit-scrollbar,
|
|
6613
|
+
[data-theme="dark"] .gantt-grid-scroll::-webkit-scrollbar,
|
|
6614
|
+
[data-theme="dark"] .gantt-timeline-scroll::-webkit-scrollbar {
|
|
6615
|
+
width: 8px;
|
|
6616
|
+
height: 8px;
|
|
6617
|
+
}
|
|
6618
|
+
|
|
6619
|
+
|
|
6620
|
+
[data-theme="dark"] [data-gantt-chart]::-webkit-scrollbar-track,
|
|
6621
|
+
[data-theme="dark"] .gantt-grid-scroll::-webkit-scrollbar-track,
|
|
6622
|
+
[data-theme="dark"] .gantt-timeline-scroll::-webkit-scrollbar-track {
|
|
6623
|
+
background: transparent;
|
|
6624
|
+
}
|
|
6625
|
+
|
|
6626
|
+
|
|
6627
|
+
[data-theme="dark"] [data-gantt-chart]::-webkit-scrollbar-thumb,
|
|
6628
|
+
[data-theme="dark"] .gantt-grid-scroll::-webkit-scrollbar-thumb,
|
|
6629
|
+
[data-theme="dark"] .gantt-timeline-scroll::-webkit-scrollbar-thumb {
|
|
6630
|
+
background: #3a3d45;
|
|
6631
|
+
border-radius: 4px;
|
|
6632
|
+
}
|
|
6633
|
+
|
|
6634
|
+
|
|
6635
|
+
[data-theme="dark"] [data-gantt-chart]::-webkit-scrollbar-thumb:hover,
|
|
6636
|
+
[data-theme="dark"] .gantt-grid-scroll::-webkit-scrollbar-thumb:hover,
|
|
6637
|
+
[data-theme="dark"] .gantt-timeline-scroll::-webkit-scrollbar-thumb:hover {
|
|
6638
|
+
background: #4a4d55;
|
|
6639
|
+
}
|
|
6640
|
+
|
|
6641
|
+
|
|
6642
|
+
[data-theme="dark"] [data-gantt-chart]::-webkit-scrollbar-corner,
|
|
6643
|
+
[data-theme="dark"] .gantt-grid-scroll::-webkit-scrollbar-corner,
|
|
6644
|
+
[data-theme="dark"] .gantt-timeline-scroll::-webkit-scrollbar-corner {
|
|
6645
|
+
background: transparent;
|
|
6646
|
+
}
|
|
6647
|
+
|
|
6648
|
+
|
|
6649
|
+
/* Light theme scrollbar colors */
|
|
6650
|
+
|
|
6651
|
+
|
|
6652
|
+
[data-theme="light"] [data-gantt-chart],
|
|
6653
|
+
[data-theme="light"] .gantt-grid-scroll,
|
|
6654
|
+
[data-theme="light"] .gantt-timeline-scroll {
|
|
6655
|
+
scrollbar-width: thin;
|
|
6656
|
+
scrollbar-color: rgba(156, 163, 175, 0.5) transparent;
|
|
6657
|
+
}
|
|
6658
|
+
|
|
6659
|
+
|
|
6660
|
+
[data-theme="light"] [data-gantt-chart]::-webkit-scrollbar,
|
|
6661
|
+
[data-theme="light"] .gantt-grid-scroll::-webkit-scrollbar,
|
|
6662
|
+
[data-theme="light"] .gantt-timeline-scroll::-webkit-scrollbar {
|
|
6663
|
+
width: 8px;
|
|
6664
|
+
height: 8px;
|
|
6665
|
+
}
|
|
6666
|
+
|
|
6667
|
+
|
|
6668
|
+
[data-theme="light"] [data-gantt-chart]::-webkit-scrollbar-track,
|
|
6669
|
+
[data-theme="light"] .gantt-grid-scroll::-webkit-scrollbar-track,
|
|
6670
|
+
[data-theme="light"] .gantt-timeline-scroll::-webkit-scrollbar-track {
|
|
6671
|
+
background: transparent;
|
|
6672
|
+
}
|
|
6673
|
+
|
|
6674
|
+
|
|
6675
|
+
[data-theme="light"] [data-gantt-chart]::-webkit-scrollbar-thumb,
|
|
6676
|
+
[data-theme="light"] .gantt-grid-scroll::-webkit-scrollbar-thumb,
|
|
6677
|
+
[data-theme="light"] .gantt-timeline-scroll::-webkit-scrollbar-thumb {
|
|
6678
|
+
background: rgba(156, 163, 175, 0.5);
|
|
6679
|
+
border-radius: 4px;
|
|
6680
|
+
}
|
|
6681
|
+
|
|
6682
|
+
|
|
6683
|
+
[data-theme="light"] [data-gantt-chart]::-webkit-scrollbar-thumb:hover,
|
|
6684
|
+
[data-theme="light"] .gantt-grid-scroll::-webkit-scrollbar-thumb:hover,
|
|
6685
|
+
[data-theme="light"] .gantt-timeline-scroll::-webkit-scrollbar-thumb:hover {
|
|
6686
|
+
background: rgba(156, 163, 175, 0.8);
|
|
6687
|
+
}
|
|
6688
|
+
|
|
6689
|
+
|
|
6690
|
+
[data-theme="light"] [data-gantt-chart]::-webkit-scrollbar-corner,
|
|
6691
|
+
[data-theme="light"] .gantt-grid-scroll::-webkit-scrollbar-corner,
|
|
6692
|
+
[data-theme="light"] .gantt-timeline-scroll::-webkit-scrollbar-corner {
|
|
6693
|
+
background: transparent;
|
|
6694
|
+
}
|
|
6695
|
+
|
|
6696
|
+
|
|
6697
|
+
/* Neutral theme (same as dark) */
|
|
6698
|
+
|
|
6699
|
+
|
|
6700
|
+
[data-theme="neutral"] [data-gantt-chart],
|
|
6701
|
+
[data-theme="neutral"] .gantt-grid-scroll,
|
|
6702
|
+
[data-theme="neutral"] .gantt-timeline-scroll {
|
|
6703
|
+
scrollbar-width: thin;
|
|
6704
|
+
scrollbar-color: #3a3d45 transparent;
|
|
6705
|
+
}
|
|
6706
|
+
|
|
6707
|
+
|
|
6708
|
+
[data-theme="neutral"] [data-gantt-chart]::-webkit-scrollbar,
|
|
6709
|
+
[data-theme="neutral"] .gantt-grid-scroll::-webkit-scrollbar,
|
|
6710
|
+
[data-theme="neutral"] .gantt-timeline-scroll::-webkit-scrollbar {
|
|
6711
|
+
width: 8px;
|
|
6712
|
+
height: 8px;
|
|
6713
|
+
}
|
|
6714
|
+
|
|
6715
|
+
|
|
6716
|
+
[data-theme="neutral"] [data-gantt-chart]::-webkit-scrollbar-track,
|
|
6717
|
+
[data-theme="neutral"] .gantt-grid-scroll::-webkit-scrollbar-track,
|
|
6718
|
+
[data-theme="neutral"] .gantt-timeline-scroll::-webkit-scrollbar-track {
|
|
6719
|
+
background: transparent;
|
|
6720
|
+
}
|
|
6721
|
+
|
|
6722
|
+
|
|
6723
|
+
[data-theme="neutral"] [data-gantt-chart]::-webkit-scrollbar-thumb,
|
|
6724
|
+
[data-theme="neutral"] .gantt-grid-scroll::-webkit-scrollbar-thumb,
|
|
6725
|
+
[data-theme="neutral"] .gantt-timeline-scroll::-webkit-scrollbar-thumb {
|
|
6726
|
+
background: #3a3d45;
|
|
6727
|
+
border-radius: 4px;
|
|
6728
|
+
}
|
|
6729
|
+
|
|
6730
|
+
|
|
6731
|
+
[data-theme="neutral"] [data-gantt-chart]::-webkit-scrollbar-thumb:hover,
|
|
6732
|
+
[data-theme="neutral"] .gantt-grid-scroll::-webkit-scrollbar-thumb:hover,
|
|
6733
|
+
[data-theme="neutral"] .gantt-timeline-scroll::-webkit-scrollbar-thumb:hover {
|
|
6734
|
+
background: #4a4d55;
|
|
6735
|
+
}
|
|
6736
|
+
|
|
6737
|
+
|
|
6738
|
+
[data-theme="neutral"] [data-gantt-chart]::-webkit-scrollbar-corner,
|
|
6739
|
+
[data-theme="neutral"] .gantt-grid-scroll::-webkit-scrollbar-corner,
|
|
6740
|
+
[data-theme="neutral"] .gantt-timeline-scroll::-webkit-scrollbar-corner {
|
|
6741
|
+
background: transparent;
|
|
6742
|
+
}
|
|
6743
|
+
|
|
6744
|
+
|
|
6595
6745
|
/* ============================================================================
|
|
6596
6746
|
TAILWIND DIRECTIVES
|
|
6597
6747
|
============================================================================ */
|
|
@@ -7942,11 +8092,6 @@ body {
|
|
|
7942
8092
|
}
|
|
7943
8093
|
|
|
7944
8094
|
|
|
7945
|
-
.h-screen {
|
|
7946
|
-
height: 100vh;
|
|
7947
|
-
}
|
|
7948
|
-
|
|
7949
|
-
|
|
7950
8095
|
.max-h-32 {
|
|
7951
8096
|
max-height: 8rem;
|
|
7952
8097
|
}
|
|
@@ -7992,6 +8137,11 @@ body {
|
|
|
7992
8137
|
}
|
|
7993
8138
|
|
|
7994
8139
|
|
|
8140
|
+
.min-h-0 {
|
|
8141
|
+
min-height: 0px;
|
|
8142
|
+
}
|
|
8143
|
+
|
|
8144
|
+
|
|
7995
8145
|
.min-h-screen {
|
|
7996
8146
|
min-height: 100vh;
|
|
7997
8147
|
}
|
|
@@ -8132,6 +8282,11 @@ body {
|
|
|
8132
8282
|
}
|
|
8133
8283
|
|
|
8134
8284
|
|
|
8285
|
+
.shrink {
|
|
8286
|
+
flex-shrink: 1;
|
|
8287
|
+
}
|
|
8288
|
+
|
|
8289
|
+
|
|
8135
8290
|
.-translate-x-1\/2 {
|
|
8136
8291
|
--tw-translate-x: -50%;
|
|
8137
8292
|
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));
|
|
@@ -8343,6 +8498,11 @@ body {
|
|
|
8343
8498
|
}
|
|
8344
8499
|
|
|
8345
8500
|
|
|
8501
|
+
.overflow-x-hidden {
|
|
8502
|
+
overflow-x: hidden;
|
|
8503
|
+
}
|
|
8504
|
+
|
|
8505
|
+
|
|
8346
8506
|
.truncate {
|
|
8347
8507
|
overflow: hidden;
|
|
8348
8508
|
text-overflow: ellipsis;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libxai/board",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Professional Gantt Chart + Kanban Board for React - Part of LibXAI Suite - TypeScript - Production-Ready - Zero Config",
|
|
6
6
|
"author": "LibXAI <hello@libxai.com>",
|