@libxai/board 0.17.443 → 0.17.444
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 +12 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -8000,22 +8000,26 @@ body {
|
|
|
8000
8000
|
========================================================================== */
|
|
8001
8001
|
|
|
8002
8002
|
|
|
8003
|
+
/* v0.17.444: Changed overflow-y-hidden to overflow-y-auto and min-h-screen to h-full for proper pan/drag */
|
|
8004
|
+
|
|
8005
|
+
|
|
8003
8006
|
.asakaa-board {
|
|
8004
8007
|
position: relative;
|
|
8005
8008
|
display: flex;
|
|
8006
|
-
|
|
8009
|
+
height: 100%;
|
|
8007
8010
|
overflow-x: auto;
|
|
8008
|
-
overflow-y:
|
|
8011
|
+
overflow-y: auto;
|
|
8009
8012
|
gap: var(--space-6);
|
|
8010
8013
|
padding: var(--space-6);
|
|
8011
8014
|
background: var(--color-bg-primary);
|
|
8012
8015
|
}
|
|
8013
8016
|
|
|
8014
8017
|
|
|
8015
|
-
/* Theme-aware horizontal
|
|
8018
|
+
/* v0.17.444: Theme-aware scrollbars (both horizontal and vertical) */
|
|
8016
8019
|
|
|
8017
8020
|
|
|
8018
8021
|
.asakaa-board::-webkit-scrollbar {
|
|
8022
|
+
width: 10px;
|
|
8019
8023
|
height: 10px;
|
|
8020
8024
|
}
|
|
8021
8025
|
|
|
@@ -8038,6 +8042,11 @@ body {
|
|
|
8038
8042
|
}
|
|
8039
8043
|
|
|
8040
8044
|
|
|
8045
|
+
.asakaa-board::-webkit-scrollbar-corner {
|
|
8046
|
+
background: var(--theme-bg-secondary, rgba(20, 20, 20, 0.4));
|
|
8047
|
+
}
|
|
8048
|
+
|
|
8049
|
+
|
|
8041
8050
|
/* ==========================================================================
|
|
8042
8051
|
COLUMN
|
|
8043
8052
|
========================================================================== */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libxai/board",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.444",
|
|
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>",
|