@noirmd/previewer 2.1.6 → 2.1.7

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/richlist.css CHANGED
@@ -8,7 +8,7 @@
8
8
  padding: 0.25rem 0;
9
9
  border: 1px solid var(--nr-border);
10
10
  border-radius: var(--nr-radius);
11
- background: color-mix(in oklab, var(--nr-bg-secondary) 30%, transparent);
11
+ background: var(--nr-bg);
12
12
  }
13
13
 
14
14
  .nr-richlist__item {
@@ -18,7 +18,7 @@
18
18
  align-items: center;
19
19
  gap: 0.25rem 1rem;
20
20
  padding: 0.75rem 1rem;
21
- border-bottom: 1px solid color-mix(in oklab, var(--nr-text) 8%, transparent);
21
+ border-bottom: 1px solid var(--nr-border);
22
22
  transition: background-color 0.15s ease;
23
23
  }
24
24
 
package/dist/stat.css CHANGED
@@ -10,9 +10,6 @@
10
10
  border: 1px solid var(--nr-border);
11
11
  border-radius: var(--nr-radius);
12
12
  background: var(--nr-bg);
13
- box-shadow:
14
- 0 1px 3px rgb(0 0 0 / 0.08),
15
- 0 8px 24px -12px rgb(0 0 0 / 0.15);
16
13
  }
17
14
 
18
15
  .nr-stat {
@@ -40,7 +37,7 @@
40
37
  grid-column: 1;
41
38
  grid-row: 2;
42
39
  font-size: 2rem;
43
- font-weight: 800;
40
+ font-weight: 700;
44
41
  line-height: 1.1;
45
42
  color: var(--nr-text);
46
43
  white-space: nowrap;
package/dist/table.css CHANGED
@@ -20,9 +20,9 @@
20
20
  .nr-table__th {
21
21
  padding: 0.5rem 0.75rem;
22
22
  text-align: left;
23
- font-weight: 700;
23
+ font-weight: 600;
24
24
  font-size: 0.75rem;
25
- background: rgba(30, 41, 59, 0.1);
25
+ background: var(--nr-muted);
26
26
  border-bottom: 1px solid var(--nr-border);
27
27
  }
28
28
 
package/dist/toc.css CHANGED
@@ -7,12 +7,12 @@
7
7
  padding: 1rem;
8
8
  border-radius: var(--nr-radius);
9
9
  border: 1px solid var(--nr-border);
10
- background: color-mix(in srgb, var(--nr-bg) 5%, transparent);
10
+ background: var(--nr-muted);
11
11
  }
12
12
 
13
13
  .nr-toc__title {
14
14
  font-size: 1rem;
15
- font-weight: 700;
15
+ font-weight: 600;
16
16
  margin-bottom: 0.75rem;
17
17
  }
18
18
 
package/dist/vanilla.cjs CHANGED
@@ -12266,6 +12266,10 @@ var directiveRegistry = {
12266
12266
  modal: modal_default,
12267
12267
  button: button_default,
12268
12268
  // Layout / generic wrappers
12269
+ // ⚠️ DEPRECATED — legacy only, kept for backward compatibility.
12270
+ // Do NOT document these (`:::div`, `:::style`, `:::custom`, `:::raw`)
12271
+ // in guides or llms.txt; use native HTML blocks instead.
12272
+ // See ./wrapper.ts for details.
12269
12273
  div: wrapper_default,
12270
12274
  style: wrapper_default,
12271
12275
  custom: wrapper_default,