@wsxjs/wsx-marked-components 0.0.18 → 0.0.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wsxjs/wsx-marked-components",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "description": "Markdown rendering components built with WSXJS for marked library",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -19,8 +19,8 @@
19
19
  ],
20
20
  "dependencies": {
21
21
  "marked": "^12.0.0",
22
- "@wsxjs/wsx-core": "0.0.18",
23
- "@wsxjs/wsx-logger": "0.0.18"
22
+ "@wsxjs/wsx-core": "0.0.19",
23
+ "@wsxjs/wsx-logger": "0.0.19"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@typescript-eslint/eslint-plugin": "^8.37.0",
@@ -29,8 +29,8 @@
29
29
  "tsup": "^8.0.0",
30
30
  "typescript": "^5.0.0",
31
31
  "vite": "^5.4.19",
32
- "@wsxjs/eslint-plugin-wsx": "0.0.18",
33
- "@wsxjs/wsx-vite-plugin": "0.0.18"
32
+ "@wsxjs/eslint-plugin-wsx": "0.0.19",
33
+ "@wsxjs/wsx-vite-plugin": "0.0.19"
34
34
  },
35
35
  "keywords": [
36
36
  "wsx",
@@ -9,4 +9,3 @@ wsx-marked-blockquote {
9
9
  font-style: italic;
10
10
  color: var(--text-secondary, #666);
11
11
  }
12
-
package/src/Code.css CHANGED
@@ -31,4 +31,3 @@ wsx-marked-code .language-label {
31
31
  border-radius: 4px 4px 0 0;
32
32
  margin-bottom: -1px;
33
33
  }
34
-
package/src/Code.wsx CHANGED
@@ -43,4 +43,3 @@ export default class Code extends LightComponent {
43
43
  );
44
44
  }
45
45
  }
46
-
package/src/Error.wsx CHANGED
@@ -31,4 +31,3 @@ export default class Error extends LightComponent {
31
31
  return <div class="error">{this.message}</div>;
32
32
  }
33
33
  }
34
-
package/src/Heading.css CHANGED
@@ -34,4 +34,3 @@ wsx-marked-heading h6 {
34
34
  margin: 0.75rem 0 0.5rem 0;
35
35
  color: var(--text-primary, #2c3e50);
36
36
  }
37
-
package/src/Markdown.css CHANGED
@@ -63,4 +63,3 @@ wsx-markdown {
63
63
  border-radius: 6px;
64
64
  border: 1px solid #fecaca;
65
65
  }
66
-
package/src/Paragraph.wsx CHANGED
@@ -33,4 +33,3 @@ export default class Paragraph extends LightComponent {
33
33
  return <p class="marked-paragraph">{this.content}</p>;
34
34
  }
35
35
  }
36
-