marko 6.0.18 → 6.0.19

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/package.json +1 -1
  2. package/tags-html.d.ts +3 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "6.0.18",
3
+ "version": "6.0.19",
4
4
  "description": "Optimized runtime for Marko templates.",
5
5
  "keywords": [
6
6
  "api",
package/tags-html.d.ts CHANGED
@@ -2653,11 +2653,6 @@ declare global {
2653
2653
  */
2654
2654
  externalResourcesRequired?: AttrBooleanString;
2655
2655
 
2656
- /**
2657
- * @see https://www.w3.org/TR/2011/REC-SVG11-20110816/coords.html#TransformAttribute
2658
- */
2659
- transform?: AttrString;
2660
-
2661
2656
  /**
2662
2657
  * @see https://www.w3.org/TR/css-masking-1/#element-attrdef-clippath-clippathunits
2663
2658
  */
@@ -3822,11 +3817,6 @@ declare global {
3822
3817
  */
3823
3818
  zoomAndPan?: AttrMissing | "disable" | "magnify";
3824
3819
 
3825
- /**
3826
- * @see https://www.w3.org/TR/SVG2/coords.html#TransformProperty
3827
- */
3828
- transform?: AttrString;
3829
-
3830
3820
  /**
3831
3821
  * @see https://www.w3.org/TR/SVG2/geometry.html#XProperty
3832
3822
  */
@@ -4476,6 +4466,7 @@ declare global {
4476
4466
  mask?: AttrMissing | csstype.Property.Mask;
4477
4467
  opacity?: AttrMissing | csstype.Property.Opacity | number;
4478
4468
  overflow?: AttrMissing | csstype.Property.Overflow;
4469
+ "paint-order"?: AttrMissing | csstype.Property.PaintOrder;
4479
4470
  "pointer-events"?: AttrMissing | csstype.Property.PointerEvents;
4480
4471
  "shape-rendering"?: AttrMissing | csstype.Property.ShapeRendering;
4481
4472
  "stop-color"?: AttrMissing | csstype.Property.StopColor;
@@ -4500,7 +4491,9 @@ declare global {
4500
4491
  "text-anchor"?: AttrMissing | csstype.Property.TextAnchor;
4501
4492
  "text-decoration"?: AttrMissing | csstype.Property.TextDecoration;
4502
4493
  "text-rendering"?: AttrMissing | csstype.Property.TextRendering;
4494
+ transform?: AttrMissing | csstype.Property.Transform;
4503
4495
  "unicode-bidi"?: AttrMissing | csstype.Property.UnicodeBidi;
4496
+ "vector-effect"?: AttrMissing | csstype.Property.VectorEffect;
4504
4497
  visibility?: AttrMissing | csstype.Property.Visibility;
4505
4498
  "word-spacing"?: AttrMissing | csstype.Property.WordSpacing | number;
4506
4499
  "writing-mode"?: AttrMissing | csstype.Property.WritingMode;