jarkup-ts 0.2.0 → 0.3.0

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -57,6 +57,7 @@ export interface Text extends InlineComponentBase<"Text"> {
57
57
  strikethrough?: boolean;
58
58
  katex?: boolean;
59
59
  code?: boolean;
60
+ kbd?: boolean;
60
61
  ruby?: string;
61
62
  href?: string;
62
63
  favicon?: string;
@@ -166,7 +167,7 @@ export interface CodeBlock extends BlockComponentBase<"CodeBlock"> {
166
167
  code: string;
167
168
  language: string;
168
169
  };
169
- slots: {
170
+ slots?: {
170
171
  default: InlineComponent[];
171
172
  };
172
173
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jarkup-ts",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },