fabric 5.5.1-browser → 5.5.2-browser

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [5.5.2]
4
+
5
+ - fix(): Remove browser warning from incorrect text baseline assignment [`#10466`](https://github.com/fabricjs/fabric.js/pull/10466)
6
+
3
7
  ## [5.5.1]
4
8
 
5
9
  - fix(): Cache over invalidation bug backport from 6.x
package/HEADER.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*! Fabric.js Copyright 2008-2015, Printio (Juriy Zaytsev, Maxim Chernyak) */
2
2
 
3
- var fabric = fabric || { version: '5.4.2' };
3
+ var fabric = fabric || { version: '5.5.2' };
4
4
  if (typeof exports !== 'undefined') {
5
5
  exports.fabric = fabric;
6
6
  }
package/dist/fabric.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /* build: `node build.js modules=ALL exclude=gestures,accessors,erasing requirejs minifier=uglifyjs` */
2
2
  /*! Fabric.js Copyright 2008-2015, Printio (Juriy Zaytsev, Maxim Chernyak) */
3
3
 
4
- var fabric = fabric || { version: '5.4.2' };
4
+ var fabric = fabric || { version: '5.5.2' };
5
5
  if (typeof exports !== 'undefined') {
6
6
  exports.fabric = fabric;
7
7
  }
@@ -26453,7 +26453,7 @@ fabric.Image.filters.BaseFilter.fromObject = function(object, callback) {
26453
26453
  * @param {String} [charStyle.fontStyle] Font style (italic|normal)
26454
26454
  */
26455
26455
  _setTextStyles: function(ctx, charStyle, forMeasuring) {
26456
- ctx.textBaseline = 'alphabetical';
26456
+ ctx.textBaseline = 'alphabetic';
26457
26457
  if (this.path) {
26458
26458
  switch (this.pathAlign) {
26459
26459
  case 'center':