@podlite/to-jsx 0.0.36 → 0.0.37

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
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Upcoming
4
4
 
5
+ ## 0.0.37
6
+
7
+ - improved code block visibility in CSS
8
+
5
9
  ## 0.0.36
6
10
 
7
11
  - handle `A<>` correctly
package/esm/podlite.css CHANGED
@@ -13,12 +13,13 @@
13
13
 
14
14
 
15
15
  pre {
16
- padding: 9.5px;
17
16
  display: block;
18
17
  word-break: break-all;
19
18
  word-wrap: break-word;
20
19
  background-color: var(--color-canvas-default, #f8f8f8);
21
- border-radius: 4px;
20
+ border: 1px solid var(--color-border-default);
21
+ border-radius: 6px;
22
+ padding: 16px;
22
23
  }
23
24
 
24
25
  code {
package/lib/podlite.css CHANGED
@@ -13,12 +13,13 @@
13
13
 
14
14
 
15
15
  pre {
16
- padding: 9.5px;
17
16
  display: block;
18
17
  word-break: break-all;
19
18
  word-wrap: break-word;
20
19
  background-color: var(--color-canvas-default, #f8f8f8);
21
- border-radius: 4px;
20
+ border: 1px solid var(--color-border-default);
21
+ border-radius: 6px;
22
+ padding: 16px;
22
23
  }
23
24
 
24
25
  code {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@podlite/to-jsx",
3
- "version": "0.0.36",
3
+ "version": "0.0.37",
4
4
  "description": "JSX converter for Podlite markup language",
5
5
  "main": "lib/index.js",
6
6
  "license": "MIT",
@@ -13,10 +13,10 @@
13
13
  "test": "yarn g:jest --passWithNoTests"
14
14
  },
15
15
  "dependencies": {
16
- "@podlite/diagram": "^0.0.36",
17
- "@podlite/schema": "0.0.32",
16
+ "@podlite/diagram": "^0.0.37",
17
+ "@podlite/schema": "0.0.33",
18
18
  "entities": "^4.5.0",
19
- "podlite": "0.0.45",
19
+ "podlite": "0.0.46",
20
20
  "react-is": "^18.0.0"
21
21
  },
22
22
  "exports": {