timvir 0.2.47 → 0.2.48

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/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # timvir
2
2
 
3
+ ## 0.2.48
4
+
3
5
  ## 0.2.47
4
6
 
5
7
  ### Patch Changes
@@ -1,4 +1,4 @@
1
- import { Code, Grid } from "timvir/blocks";
1
+ import { Grid } from "timvir/blocks";
2
2
 
3
3
  # Exhibit
4
4
 
@@ -21,9 +21,11 @@ Think of the `<Exhibit>` block as a `<figure>` + `<figcaption>` for React compon
21
21
 
22
22
  Import `Exhibit` from the `timvir/blocks` module, then use in a Timvir mdx page like so:
23
23
 
24
- <Code language="jsx">
25
- <Sample variant="usage" as="source/markup" />
26
- </Code>
24
+ ```jsx
25
+ <Exhibit caption="Here goes your caption">
26
+ <YourReactComponent />
27
+ </Exhibit>
28
+ ```
27
29
 
28
30
  ## Bleed
29
31
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "timvir",
4
- "version": "0.2.47",
4
+ "version": "0.2.48",
5
5
  "license": "MIT",
6
6
  "sideEffects": false,
7
7
  "exports": {
@@ -1 +0,0 @@
1
- export default function Sample(): import("react/jsx-runtime").JSX.Element;