@kubb/renderer-jsx 5.0.0-beta.40 → 5.0.0-beta.42
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/README.md +11 -11
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
- package/src/components/Frontmatter.tsx +1 -1
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
[![npm version][npm-version-src]][npm-version-href]
|
|
7
7
|
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
8
|
-
[![
|
|
8
|
+
[![Stars][stars-src]][stars-href]
|
|
9
9
|
[![License][license-src]][license-href]
|
|
10
|
-
[![
|
|
10
|
+
[![Node][node-src]][node-href]
|
|
11
11
|
|
|
12
12
|
<h4>
|
|
13
13
|
<a href="https://kubb.dev" target="_blank">Documentation</a>
|
|
@@ -122,13 +122,13 @@ Kubb is an open source project, and its development is funded entirely by sponso
|
|
|
122
122
|
|
|
123
123
|
<!-- Badges -->
|
|
124
124
|
|
|
125
|
-
[npm-version-src]: https://
|
|
126
|
-
[npm-version-href]: https://
|
|
127
|
-
[npm-downloads-src]: https://
|
|
128
|
-
[npm-downloads-href]: https://
|
|
129
|
-
[
|
|
125
|
+
[npm-version-src]: https://shieldcn.dev/npm/v/@kubb/renderer-jsx.svg?variant=secondary&size=xs&theme=zinc&mode=dark
|
|
126
|
+
[npm-version-href]: https://npmx.dev/package/@kubb/renderer-jsx
|
|
127
|
+
[npm-downloads-src]: https://shieldcn.dev/npm/dm/@kubb/renderer-jsx.svg?variant=secondary&size=xs&theme=zinc&mode=dark
|
|
128
|
+
[npm-downloads-href]: https://npmx.dev/package/@kubb/renderer-jsx
|
|
129
|
+
[stars-src]: https://shieldcn.dev/github/stars/kubb-labs/kubb.svg?variant=secondary&size=xs&theme=zinc&mode=dark
|
|
130
|
+
[stars-href]: https://github.com/kubb-labs/kubb
|
|
131
|
+
[license-src]: https://shieldcn.dev/npm/license/@kubb/renderer-jsx.svg?variant=secondary&size=xs&theme=zinc
|
|
130
132
|
[license-href]: https://github.com/kubb-labs/kubb/blob/main/LICENSE
|
|
131
|
-
[
|
|
132
|
-
[
|
|
133
|
-
[sponsors-src]: https://img.shields.io/github/sponsors/stijnvanhulle?style=flat&colorA=18181B&colorB=f58517
|
|
134
|
-
[sponsors-href]: https://github.com/sponsors/stijnvanhulle/
|
|
133
|
+
[node-src]: https://shieldcn.dev/npm/node/@kubb/renderer-jsx.svg?variant=secondary&size=xs&theme=zinc&mode=dark
|
|
134
|
+
[node-href]: https://npmx.dev/package/@kubb/renderer-jsx
|
package/dist/index.d.ts
CHANGED
|
@@ -372,7 +372,7 @@ declare namespace FileImport {
|
|
|
372
372
|
type Props$5 = {
|
|
373
373
|
key?: Key;
|
|
374
374
|
/**
|
|
375
|
-
* Plain object
|
|
375
|
+
* Plain object serialized as YAML between `---` fences.
|
|
376
376
|
*
|
|
377
377
|
* @example
|
|
378
378
|
* `data: { title: 'Pets', layout: 'doc' }`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/renderer-jsx",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.42",
|
|
4
4
|
"description": "JSX-based renderer for Kubb. Provides a custom React runtime, reconciler, and built-in components (File, Function, Type, Const) for component-based, type-safe code generation.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"codegen",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"yaml": "^2.9.0",
|
|
79
|
-
"@kubb/ast": "5.0.0-beta.
|
|
79
|
+
"@kubb/ast": "5.0.0-beta.42"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
82
|
"@types/react": "^19.2.16",
|
|
@@ -4,7 +4,7 @@ import type { Key, KubbReactElement } from '../types.ts'
|
|
|
4
4
|
type Props = {
|
|
5
5
|
key?: Key
|
|
6
6
|
/**
|
|
7
|
-
* Plain object
|
|
7
|
+
* Plain object serialized as YAML between `---` fences.
|
|
8
8
|
*
|
|
9
9
|
* @example
|
|
10
10
|
* `data: { title: 'Pets', layout: 'doc' }`
|