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