@open-file-viewer/core 0.1.20 → 0.1.22
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 +342 -128
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +35 -1
- package/dist/index.d.ts +35 -1
- package/dist/index.js +342 -128
- package/dist/index.js.map +1 -1
- package/dist/style.css +17 -2
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -2059,6 +2059,21 @@
|
|
|
2059
2059
|
height: auto;
|
|
2060
2060
|
min-height: 180px;
|
|
2061
2061
|
padding: 8px 10px;
|
|
2062
|
+
fill: none;
|
|
2063
|
+
shape-rendering: geometricPrecision;
|
|
2064
|
+
stroke: none;
|
|
2065
|
+
stroke-linecap: initial;
|
|
2066
|
+
stroke-linejoin: initial;
|
|
2067
|
+
stroke-width: 0;
|
|
2068
|
+
text-rendering: geometricPrecision;
|
|
2069
|
+
}
|
|
2070
|
+
|
|
2071
|
+
.ofv-chart-svg text {
|
|
2072
|
+
font-synthesis: none;
|
|
2073
|
+
stroke: none;
|
|
2074
|
+
stroke-width: 0;
|
|
2075
|
+
-webkit-font-smoothing: antialiased;
|
|
2076
|
+
text-rendering: geometricPrecision;
|
|
2062
2077
|
}
|
|
2063
2078
|
|
|
2064
2079
|
.ofv-chart-axis {
|
|
@@ -2073,12 +2088,12 @@
|
|
|
2073
2088
|
|
|
2074
2089
|
.ofv-chart-title {
|
|
2075
2090
|
fill: #595959;
|
|
2076
|
-
font: 20px/1 Calibri, Arial, sans-serif;
|
|
2091
|
+
font: 400 20px/1.2 Calibri, Arial, "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
|
|
2077
2092
|
}
|
|
2078
2093
|
|
|
2079
2094
|
.ofv-chart-label {
|
|
2080
2095
|
fill: #595959;
|
|
2081
|
-
font: 12px/1 Calibri, Arial, sans-serif;
|
|
2096
|
+
font: 400 12px/1.2 Calibri, Arial, "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
|
|
2082
2097
|
}
|
|
2083
2098
|
|
|
2084
2099
|
.ofv-chart-data {
|