@smallwebco/tinypivot-react 1.0.10 → 1.0.12
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 +131 -25
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +131 -25
- package/dist/index.js.map +1 -1
- package/dist/style.css +22 -0
- package/package.json +2 -2
package/dist/style.css
CHANGED
|
@@ -1471,6 +1471,28 @@
|
|
|
1471
1471
|
.vpg-mini-chip.vpg-column-chip { background: white; color: #7c3aed; border: 1px solid #ddd6fe; }
|
|
1472
1472
|
.vpg-mini-chip.vpg-value-chip { background: white; color: #059669; border: 1px solid #a7f3d0; }
|
|
1473
1473
|
|
|
1474
|
+
.vpg-mini-chip.vpg-chip-dragging {
|
|
1475
|
+
opacity: 0.4;
|
|
1476
|
+
transform: scale(0.95);
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
.vpg-mini-chip.vpg-chip-drop-target {
|
|
1480
|
+
transform: translateX(4px);
|
|
1481
|
+
box-shadow: -3px 0 0 0 currentColor, 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
.vpg-drag-handle {
|
|
1485
|
+
opacity: 0.3;
|
|
1486
|
+
font-size: 0.625rem;
|
|
1487
|
+
letter-spacing: -0.1em;
|
|
1488
|
+
cursor: grab;
|
|
1489
|
+
flex-shrink: 0;
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
.vpg-mini-chip:hover .vpg-drag-handle {
|
|
1493
|
+
opacity: 0.6;
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1474
1496
|
.vpg-mini-name {
|
|
1475
1497
|
overflow: hidden;
|
|
1476
1498
|
text-overflow: ellipsis;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smallwebco/tinypivot-react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "TinyPivot React - Excel-like data grid and pivot table components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@tanstack/react-table": "^8.20.0",
|
|
29
|
-
"@smallwebco/tinypivot-core": "1.0.
|
|
29
|
+
"@smallwebco/tinypivot-core": "1.0.12"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/react": "^18.2.0",
|