@vectojs/markdown 0.21.0 → 0.21.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.
package/dist/index.js CHANGED
@@ -3802,7 +3802,8 @@ var Markdown = class _Markdown extends import_ui4.UIComponent {
3802
3802
  this.virtualOverscan = typeof virt === "object" && virt !== null && typeof virt.overscan === "number" ? virt.overscan : 800;
3803
3803
  this.content = new import_ui4.Stack({
3804
3804
  direction: "vertical",
3805
- gap: this.theme.blockGap
3805
+ gap: this.theme.blockGap,
3806
+ cullOffscreenChildren: true
3806
3807
  });
3807
3808
  this.add(this.content);
3808
3809
  this.rawMarkdown = "";
package/dist/index.mjs CHANGED
@@ -3756,7 +3756,8 @@ var Markdown = class _Markdown extends UIComponent3 {
3756
3756
  this.virtualOverscan = typeof virt === "object" && virt !== null && typeof virt.overscan === "number" ? virt.overscan : 800;
3757
3757
  this.content = new Stack({
3758
3758
  direction: "vertical",
3759
- gap: this.theme.blockGap
3759
+ gap: this.theme.blockGap,
3760
+ cullOffscreenChildren: true
3760
3761
  });
3761
3762
  this.add(this.content);
3762
3763
  this.rawMarkdown = "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vectojs/markdown",
3
- "version": "0.21.0",
3
+ "version": "0.21.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },