@edgepdf/viewer-react 0.0.9 → 0.0.10

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/dist/index.js +5 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -23314,7 +23314,8 @@ var MarkerManager = class {
23314
23314
  href: options.href,
23315
23315
  target: options.target,
23316
23316
  showLabel: options.showLabel ?? true,
23317
- iconType: options.iconType || "pin"
23317
+ iconType: options.iconType || "pin",
23318
+ referenceId: options.referenceId
23318
23319
  };
23319
23320
  this.validateMarker(marker);
23320
23321
  const leafletMarker = this.createLeafletMarker(marker);
@@ -23425,8 +23426,10 @@ var MarkerManager = class {
23425
23426
  href: markerData.href,
23426
23427
  target: markerData.target,
23427
23428
  showLabel: markerData.showLabel,
23428
- iconType: markerData.iconType
23429
+ iconType: markerData.iconType,
23429
23430
  // Preserve iconType from imported data
23431
+ referenceId: markerData.referenceId
23432
+ // Preserve referenceId from imported data
23430
23433
  });
23431
23434
  importedCount++;
23432
23435
  } catch (error46) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgepdf/viewer-react",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "EdgePDF Viewer - React components for viewing PDF documents with interactive markers and zoom controls",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",