@pitvox/partner-react 0.7.14 → 0.7.15

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 CHANGED
@@ -2238,6 +2238,206 @@
2238
2238
  color: #fbbf24;
2239
2239
  }
2240
2240
 
2241
+ .pvx-dash-game-badge--lmu {
2242
+ background: rgba(168, 85, 247, 0.2);
2243
+ color: #c084fc;
2244
+ }
2245
+
2246
+ /* ─── Rating chips (per-game) ───────────────────────────────────── */
2247
+
2248
+ .pvx-dash-stat-card--rating-chips .pvx-dash-stat-icon {
2249
+ color: var(--pvx-rank-bronze);
2250
+ }
2251
+
2252
+ .pvx-dash-rating-chips {
2253
+ display: flex;
2254
+ flex-wrap: wrap;
2255
+ gap: 0.375rem;
2256
+ margin-top: 0.25rem;
2257
+ }
2258
+
2259
+ .pvx-dash-rating-chip {
2260
+ display: inline-flex;
2261
+ align-items: baseline;
2262
+ gap: 0.375rem;
2263
+ padding: 0.125rem 0.5rem;
2264
+ border-radius: 0.25rem;
2265
+ background: rgba(31, 41, 55, 0.6);
2266
+ font-size: 0.8125rem;
2267
+ line-height: 1.4;
2268
+ }
2269
+
2270
+ .pvx-dash-rating-chip--clickable {
2271
+ cursor: pointer;
2272
+ transition: background 150ms;
2273
+ }
2274
+
2275
+ .pvx-dash-rating-chip--clickable:hover {
2276
+ background: rgba(55, 65, 81, 0.8);
2277
+ }
2278
+
2279
+ .pvx-dash-rating-chip-label {
2280
+ font-size: 0.625rem;
2281
+ font-weight: 700;
2282
+ text-transform: uppercase;
2283
+ letter-spacing: 0.05em;
2284
+ color: var(--pvx-text-muted);
2285
+ font-family: var(--pvx-font-mono);
2286
+ }
2287
+
2288
+ .pvx-dash-rating-chip-value {
2289
+ font-weight: 700;
2290
+ color: var(--pvx-text-primary);
2291
+ }
2292
+
2293
+ .pvx-dash-rating-chip-rank {
2294
+ font-size: 0.625rem;
2295
+ color: var(--pvx-text-dimmed);
2296
+ }
2297
+
2298
+ /* ─── Recent Combos list ───────────────────────────────────────── */
2299
+
2300
+ .pvx-dash-combos-icon {
2301
+ display: inline-flex;
2302
+ margin-right: 0.5rem;
2303
+ vertical-align: middle;
2304
+ }
2305
+
2306
+ .pvx-dash-combos-icon svg {
2307
+ width: 1.25rem;
2308
+ height: 1.25rem;
2309
+ color: var(--pvx-accent);
2310
+ }
2311
+
2312
+ .pvx-dash-combos-count {
2313
+ font-weight: 400;
2314
+ font-size: 0.875rem;
2315
+ color: var(--pvx-text-muted);
2316
+ margin-left: 0.375rem;
2317
+ }
2318
+
2319
+ .pvx-dash-combos-list {
2320
+ display: flex;
2321
+ flex-direction: column;
2322
+ max-height: 30rem;
2323
+ overflow-y: auto;
2324
+ }
2325
+
2326
+ .pvx-dash-combo-row {
2327
+ display: flex;
2328
+ justify-content: space-between;
2329
+ align-items: center;
2330
+ gap: 1rem;
2331
+ padding: 0.625rem 1rem;
2332
+ }
2333
+
2334
+ .pvx-dash-combo-row + .pvx-dash-combo-row {
2335
+ border-top: 1px solid rgba(31, 41, 55, 0.5);
2336
+ }
2337
+
2338
+ .pvx-dash-combo-row--clickable {
2339
+ cursor: pointer;
2340
+ transition: background 120ms;
2341
+ }
2342
+
2343
+ .pvx-dash-combo-row--clickable:hover {
2344
+ background: rgba(31, 41, 55, 0.4);
2345
+ }
2346
+
2347
+ .pvx-dash-combo-info {
2348
+ display: flex;
2349
+ flex-direction: column;
2350
+ gap: 0.125rem;
2351
+ min-width: 0;
2352
+ }
2353
+
2354
+ .pvx-dash-combo-title {
2355
+ display: flex;
2356
+ align-items: center;
2357
+ gap: 0.5rem;
2358
+ min-width: 0;
2359
+ }
2360
+
2361
+ .pvx-dash-combo-track {
2362
+ font-weight: 600;
2363
+ font-size: 0.9375rem;
2364
+ color: var(--pvx-text-primary);
2365
+ white-space: nowrap;
2366
+ overflow: hidden;
2367
+ text-overflow: ellipsis;
2368
+ }
2369
+
2370
+ .pvx-dash-combo-meta {
2371
+ display: flex;
2372
+ align-items: center;
2373
+ gap: 0.375rem;
2374
+ font-size: 0.75rem;
2375
+ color: var(--pvx-text-muted);
2376
+ white-space: nowrap;
2377
+ overflow: hidden;
2378
+ text-overflow: ellipsis;
2379
+ }
2380
+
2381
+ .pvx-dash-combo-car {
2382
+ white-space: nowrap;
2383
+ overflow: hidden;
2384
+ text-overflow: ellipsis;
2385
+ }
2386
+
2387
+ .pvx-dash-combo-meta-sep {
2388
+ opacity: 0.5;
2389
+ }
2390
+
2391
+ .pvx-dash-combo-stats {
2392
+ display: flex;
2393
+ align-items: center;
2394
+ gap: 0.625rem;
2395
+ flex-shrink: 0;
2396
+ }
2397
+
2398
+ .pvx-dash-combo-rank {
2399
+ display: inline-flex;
2400
+ align-items: center;
2401
+ gap: 0.25rem;
2402
+ font-weight: 600;
2403
+ font-size: 0.875rem;
2404
+ color: var(--pvx-text-primary);
2405
+ }
2406
+
2407
+ .pvx-dash-combo-rank-text {
2408
+ font-size: 0.875rem;
2409
+ }
2410
+
2411
+ .pvx-dash-combo-rank-text--muted {
2412
+ color: var(--pvx-text-muted);
2413
+ font-weight: 400;
2414
+ }
2415
+
2416
+ .pvx-dash-combo-rank-total {
2417
+ color: var(--pvx-text-muted);
2418
+ font-weight: 400;
2419
+ }
2420
+
2421
+ .pvx-dash-combo-trophy svg {
2422
+ width: 0.875rem;
2423
+ height: 0.875rem;
2424
+ color: var(--pvx-rank-gold);
2425
+ display: block;
2426
+ }
2427
+
2428
+ .pvx-dash-combo-gap {
2429
+ font-family: var(--pvx-font-mono);
2430
+ font-size: 0.75rem;
2431
+ color: var(--pvx-text-muted);
2432
+ }
2433
+
2434
+ .pvx-dash-combo-pb {
2435
+ font-family: var(--pvx-font-mono);
2436
+ font-size: 0.9375rem;
2437
+ font-weight: 600;
2438
+ color: var(--pvx-accent);
2439
+ }
2440
+
2241
2441
  /* ═══════════════════════════════════════════════════════════════════
2242
2442
  Upcoming Events
2243
2443
  ═══════════════════════════════════════════════════════════════════ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pitvox/partner-react",
3
- "version": "0.7.14",
3
+ "version": "0.7.15",
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",