@embedpdf/models 2.0.0-next.0 → 2.0.0-next.2

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
@@ -1694,6 +1694,7 @@ const blendModeSelectOptions = BLEND_MODE_INFOS.map((info) => ({
1694
1694
  value: info.id,
1695
1695
  label: info.label
1696
1696
  }));
1697
+ const blendModeValues = BLEND_MODE_INFOS.map((info) => info.id);
1697
1698
  function uiBlendModeDisplay(value) {
1698
1699
  return value === MixedBlendMode ? "(mixed)" : blendModeLabel(value);
1699
1700
  }
@@ -1844,6 +1845,7 @@ export {
1844
1845
  blendModeLabel,
1845
1846
  blendModeSelectOptions,
1846
1847
  blendModeToCss,
1848
+ blendModeValues,
1847
1849
  boundingRect,
1848
1850
  buildUserToDeviceMatrix,
1849
1851
  calculateAngle,