@papermap/papermap 1.1.0 → 1.1.2
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.d.mts +936 -35
- package/dist/index.d.ts +936 -35
- package/dist/index.js +13040 -4956
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12998 -4921
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -1
- package/readme.md +673 -23
- package/styles.css +24 -3
package/styles.css
CHANGED
|
@@ -382,14 +382,20 @@
|
|
|
382
382
|
--input: 240 5.9% 90%;
|
|
383
383
|
--ring: 240 5.9% 10%;
|
|
384
384
|
--radius: 0.5rem;
|
|
385
|
+
--chart-1: 12 76% 61%;
|
|
386
|
+
--chart-2: 173 58% 39%;
|
|
387
|
+
--chart-3: 197 37% 24%;
|
|
388
|
+
--chart-4: 43 74% 66%;
|
|
389
|
+
--chart-5: 27 87% 67%;
|
|
385
390
|
}
|
|
386
391
|
|
|
392
|
+
/* Dark tokens match main app `globals.css` (elevated `bg-card` vs page background). */
|
|
387
393
|
.dark {
|
|
388
|
-
--background:
|
|
394
|
+
--background: 0 0% 0%;
|
|
389
395
|
--foreground: 0 0% 98%;
|
|
390
|
-
--card:
|
|
396
|
+
--card: 0 0% 7%;
|
|
391
397
|
--card-foreground: 0 0% 98%;
|
|
392
|
-
--popover:
|
|
398
|
+
--popover: 0 0% 7%;
|
|
393
399
|
--popover-foreground: 0 0% 98%;
|
|
394
400
|
--primary: 0 0% 98%;
|
|
395
401
|
--primary-foreground: 240 5.9% 10%;
|
|
@@ -404,6 +410,19 @@
|
|
|
404
410
|
--border: 240 3.7% 15.9%;
|
|
405
411
|
--input: 240 3.7% 15.9%;
|
|
406
412
|
--ring: 240 4.9% 83.9%;
|
|
413
|
+
--chart-1: 220 70% 50%;
|
|
414
|
+
--chart-2: 160 60% 45%;
|
|
415
|
+
--chart-3: 30 80% 55%;
|
|
416
|
+
--chart-4: 280 65% 60%;
|
|
417
|
+
--chart-5: 340 75% 55%;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.bg-background {
|
|
421
|
+
background-color: hsl(var(--background));
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.dark .bg-background {
|
|
425
|
+
background: #0a0a0a;
|
|
407
426
|
}
|
|
408
427
|
}
|
|
409
428
|
|
|
@@ -413,6 +432,8 @@
|
|
|
413
432
|
}
|
|
414
433
|
body {
|
|
415
434
|
@apply bg-background text-foreground;
|
|
435
|
+
padding-left: var(--papermap-side-inset-left, 0px);
|
|
436
|
+
padding-right: var(--papermap-side-inset-right, 0px);
|
|
416
437
|
}
|
|
417
438
|
}
|
|
418
439
|
|