@gridland/web 0.2.5 → 0.2.6

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/next.js CHANGED
@@ -40839,11 +40839,11 @@ var TextModifierRenderable = class extends SpanRenderable {
40839
40839
  constructor(options, modifier) {
40840
40840
  super(null, options);
40841
40841
  if (modifier === "b" || modifier === "strong") {
40842
- this.attributes = (this.attributes || 0) | TextAttributes2.BOLD;
40842
+ this.attributes = (this.attributes || 0) | TextAttributes.BOLD;
40843
40843
  } else if (modifier === "i" || modifier === "em") {
40844
- this.attributes = (this.attributes || 0) | TextAttributes2.ITALIC;
40844
+ this.attributes = (this.attributes || 0) | TextAttributes.ITALIC;
40845
40845
  } else if (modifier === "u") {
40846
- this.attributes = (this.attributes || 0) | TextAttributes2.UNDERLINE;
40846
+ this.attributes = (this.attributes || 0) | TextAttributes.UNDERLINE;
40847
40847
  }
40848
40848
  }
40849
40849
  };