testomatio-editor-blocks 0.2.0 → 0.2.1

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.
@@ -1,4 +1,7 @@
1
1
  export { customSchema, type CustomSchema, type CustomBlock, type CustomEditor, } from "./editor/customSchema";
2
+ export { stepBlock } from "./editor/blocks/step";
3
+ export { snippetBlock } from "./editor/blocks/snippet";
4
+ export { markdownToHtml, htmlToMarkdown } from "./editor/blocks/markdown";
2
5
  export { blocksToMarkdown, markdownToBlocks, type CustomEditorBlock, type CustomPartialBlock, } from "./editor/customMarkdownConverter";
3
6
  export { useStepAutocomplete, parseStepsFromJsonApi, setStepsFetcher, type StepSuggestion, type StepJsonApiDocument, type StepJsonApiResource, } from "./editor/stepAutocomplete";
4
7
  export { useStepImageUpload, setImageUploadHandler, type StepImageUploadHandler, } from "./editor/stepImageUpload";
package/package/index.js CHANGED
@@ -1,4 +1,7 @@
1
1
  export { customSchema, } from "./editor/customSchema";
2
+ export { stepBlock } from "./editor/blocks/step";
3
+ export { snippetBlock } from "./editor/blocks/snippet";
4
+ export { markdownToHtml, htmlToMarkdown } from "./editor/blocks/markdown";
2
5
  export { blocksToMarkdown, markdownToBlocks, } from "./editor/customMarkdownConverter";
3
6
  export { useStepAutocomplete, parseStepsFromJsonApi, setStepsFetcher, } from "./editor/stepAutocomplete";
4
7
  export { useStepImageUpload, setImageUploadHandler, } from "./editor/stepImageUpload";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testomatio-editor-blocks",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Custom BlockNote schema, markdown conversion helpers, and UI for Testomatio-style test cases and steps.",
5
5
  "type": "module",
6
6
  "main": "./package/index.js",
package/src/index.ts CHANGED
@@ -4,6 +4,9 @@ export {
4
4
  type CustomBlock,
5
5
  type CustomEditor,
6
6
  } from "./editor/customSchema";
7
+ export { stepBlock } from "./editor/blocks/step";
8
+ export { snippetBlock } from "./editor/blocks/snippet";
9
+ export { markdownToHtml, htmlToMarkdown } from "./editor/blocks/markdown";
7
10
 
8
11
  export {
9
12
  blocksToMarkdown,