@pitvox/partner-react 0.6.6 → 0.6.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/README.md +5 -3
- package/dist/index.cjs +1 -1
- package/dist/index.js +252 -251
- package/dist/styles.css +22 -2
- package/package.json +8 -5
package/dist/styles.css
CHANGED
|
@@ -1048,8 +1048,16 @@
|
|
|
1048
1048
|
font-size: 1rem;
|
|
1049
1049
|
}
|
|
1050
1050
|
|
|
1051
|
-
.pvx-standings-cell--
|
|
1052
|
-
background:
|
|
1051
|
+
.pvx-standings-cell--p1 {
|
|
1052
|
+
background: rgba(234, 179, 8, 0.15);
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
.pvx-standings-cell--p2 {
|
|
1056
|
+
background: rgba(156, 163, 175, 0.12);
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
.pvx-standings-cell--p3 {
|
|
1060
|
+
background: rgba(180, 83, 9, 0.15);
|
|
1053
1061
|
}
|
|
1054
1062
|
|
|
1055
1063
|
.pvx-standings-round-cell {
|
|
@@ -1070,6 +1078,18 @@
|
|
|
1070
1078
|
color: var(--pvx-text-muted);
|
|
1071
1079
|
}
|
|
1072
1080
|
|
|
1081
|
+
.pvx-standings-cell--p1 .pvx-standings-round-pos {
|
|
1082
|
+
color: #eab308;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.pvx-standings-cell--p2 .pvx-standings-round-pos {
|
|
1086
|
+
color: #9ca3af;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
.pvx-standings-cell--p3 .pvx-standings-round-pos {
|
|
1090
|
+
color: #d97706;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1073
1093
|
.pvx-standings-round-pts {
|
|
1074
1094
|
font-size: 0.8125rem;
|
|
1075
1095
|
font-weight: 500;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pitvox/partner-react",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.8",
|
|
4
4
|
"description": "React hooks and styled components for PitVox partner websites — leaderboards, competitions, driver dashboards",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -18,17 +18,20 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "vite build",
|
|
20
20
|
"dev": "vite build --watch",
|
|
21
|
-
"prepublishOnly": "npm run build"
|
|
21
|
+
"prepublishOnly": "npm run build",
|
|
22
|
+
"release": "release-it"
|
|
22
23
|
},
|
|
23
24
|
"peerDependencies": {
|
|
25
|
+
"@tanstack/react-query": "^5.0.0",
|
|
24
26
|
"react": "^18.0.0 || ^19.0.0",
|
|
25
|
-
"react-dom": "^18.0.0 || ^19.0.0"
|
|
26
|
-
"@tanstack/react-query": "^5.0.0"
|
|
27
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|
|
30
|
+
"@release-it/conventional-changelog": "^10.0.6",
|
|
31
|
+
"@tanstack/react-query": "^5.0.0",
|
|
29
32
|
"react": "^19.0.0",
|
|
30
33
|
"react-dom": "^19.0.0",
|
|
31
|
-
"
|
|
34
|
+
"release-it": "^19.2.4",
|
|
32
35
|
"vite": "^6.0.0"
|
|
33
36
|
},
|
|
34
37
|
"keywords": [
|