@smallwebco/tinypivot-react 1.0.52 → 1.0.53
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 +210 -39
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +211 -39
- package/dist/index.js.map +1 -1
- package/dist/style.css +30 -0
- package/package.json +2 -2
package/dist/style.css
CHANGED
|
@@ -2790,6 +2790,13 @@
|
|
|
2790
2790
|
margin: 0 0 0.5rem 0;
|
|
2791
2791
|
}
|
|
2792
2792
|
|
|
2793
|
+
.vpg-chart-fields-hint {
|
|
2794
|
+
font-weight: 400;
|
|
2795
|
+
text-transform: none;
|
|
2796
|
+
color: #94a3b8;
|
|
2797
|
+
margin-left: 0.25rem;
|
|
2798
|
+
}
|
|
2799
|
+
|
|
2793
2800
|
.vpg-chart-fields-list {
|
|
2794
2801
|
display: flex;
|
|
2795
2802
|
flex-direction: column;
|
|
@@ -3071,3 +3078,26 @@
|
|
|
3071
3078
|
.vpg-theme-dark .vpg-chart-empty-state p { color: #64748b; }
|
|
3072
3079
|
.vpg-theme-dark .vpg-chart-hint { background: #1e293b; color: #94a3b8; }
|
|
3073
3080
|
|
|
3081
|
+
/* ==========================================================================
|
|
3082
|
+
ApexCharts Tooltip Overrides
|
|
3083
|
+
========================================================================== */
|
|
3084
|
+
/* Light mode tooltip - ensure dark text for better contrast */
|
|
3085
|
+
.apexcharts-tooltip.apexcharts-theme-light {
|
|
3086
|
+
color: #1e293b !important;
|
|
3087
|
+
}
|
|
3088
|
+
|
|
3089
|
+
.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
|
|
3090
|
+
color: #0f172a !important;
|
|
3091
|
+
background: #f1f5f9 !important;
|
|
3092
|
+
border-bottom-color: #e2e8f0 !important;
|
|
3093
|
+
}
|
|
3094
|
+
|
|
3095
|
+
.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-series-group {
|
|
3096
|
+
color: #334155 !important;
|
|
3097
|
+
}
|
|
3098
|
+
|
|
3099
|
+
.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-text-y-label,
|
|
3100
|
+
.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-text-y-value {
|
|
3101
|
+
color: #1e293b !important;
|
|
3102
|
+
}
|
|
3103
|
+
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smallwebco/tinypivot-react",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.53",
|
|
5
5
|
"description": "TinyPivot React - Excel-like data grid and pivot table components",
|
|
6
6
|
"author": "Small Web, LLC",
|
|
7
7
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@tanstack/react-table": "^8.20.0",
|
|
59
59
|
"apexcharts": "^4.3.0",
|
|
60
60
|
"react-apexcharts": "^1.6.0",
|
|
61
|
-
"@smallwebco/tinypivot-core": "1.0.
|
|
61
|
+
"@smallwebco/tinypivot-core": "1.0.53"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@types/react": "^18.2.0",
|