@wire-dsl/engine 0.6.0 → 0.7.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.
package/dist/index.d.cts CHANGED
@@ -703,6 +703,7 @@ declare class SVGRenderer {
703
703
  protected renderTable(node: IRComponentNode, pos: any): string;
704
704
  protected renderChartPlaceholder(node: IRComponentNode, pos: any): string;
705
705
  protected renderText(node: IRComponentNode, pos: any): string;
706
+ protected renderParagraph(node: IRComponentNode, pos: any): string;
706
707
  protected renderLabel(node: IRComponentNode, pos: any): string;
707
708
  protected renderCode(node: IRComponentNode, pos: any): string;
708
709
  protected renderTextarea(node: IRComponentNode, pos: any): string;
@@ -999,6 +1000,7 @@ declare class SketchSVGRenderer extends SVGRenderer {
999
1000
  * Render text with Comic Sans
1000
1001
  */
1001
1002
  protected renderText(node: IRComponentNode, pos: any): string;
1003
+ protected renderParagraph(node: IRComponentNode, pos: any): string;
1002
1004
  /**
1003
1005
  * Render label with Comic Sans
1004
1006
  */
@@ -1067,10 +1069,6 @@ declare class SketchSVGRenderer extends SVGRenderer {
1067
1069
  * Render icon (same as base, icons don't need filter)
1068
1070
  */
1069
1071
  protected renderIcon(node: IRComponentNode, pos: any): string;
1070
- /**
1071
- * Render chart placeholder with sketch filter and Comic Sans
1072
- */
1073
- protected renderChartPlaceholder(node: IRComponentNode, pos: any): string;
1074
1072
  /**
1075
1073
  * Helper method to get icon SVG
1076
1074
  */
package/dist/index.d.ts CHANGED
@@ -703,6 +703,7 @@ declare class SVGRenderer {
703
703
  protected renderTable(node: IRComponentNode, pos: any): string;
704
704
  protected renderChartPlaceholder(node: IRComponentNode, pos: any): string;
705
705
  protected renderText(node: IRComponentNode, pos: any): string;
706
+ protected renderParagraph(node: IRComponentNode, pos: any): string;
706
707
  protected renderLabel(node: IRComponentNode, pos: any): string;
707
708
  protected renderCode(node: IRComponentNode, pos: any): string;
708
709
  protected renderTextarea(node: IRComponentNode, pos: any): string;
@@ -999,6 +1000,7 @@ declare class SketchSVGRenderer extends SVGRenderer {
999
1000
  * Render text with Comic Sans
1000
1001
  */
1001
1002
  protected renderText(node: IRComponentNode, pos: any): string;
1003
+ protected renderParagraph(node: IRComponentNode, pos: any): string;
1002
1004
  /**
1003
1005
  * Render label with Comic Sans
1004
1006
  */
@@ -1067,10 +1069,6 @@ declare class SketchSVGRenderer extends SVGRenderer {
1067
1069
  * Render icon (same as base, icons don't need filter)
1068
1070
  */
1069
1071
  protected renderIcon(node: IRComponentNode, pos: any): string;
1070
- /**
1071
- * Render chart placeholder with sketch filter and Comic Sans
1072
- */
1073
- protected renderChartPlaceholder(node: IRComponentNode, pos: any): string;
1074
1072
  /**
1075
1073
  * Helper method to get icon SVG
1076
1074
  */