@embedpdf/plugin-ui 1.0.6 → 1.0.8

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.d.cts CHANGED
@@ -357,10 +357,12 @@ interface DividerComponent<TStore = any> extends BaseUIComponent<undefined, unde
357
357
  }
358
358
  interface IconButtonProps {
359
359
  active?: boolean;
360
+ disabled?: boolean;
360
361
  commandId?: string;
361
362
  onClick?: () => void;
362
363
  label?: string;
363
364
  img?: string;
365
+ color?: string;
364
366
  }
365
367
  interface IconButtonComponent<TStore = any> extends BaseUIComponent<IconButtonProps, undefined, TStore> {
366
368
  type: 'iconButton';
package/dist/index.d.ts CHANGED
@@ -357,10 +357,12 @@ interface DividerComponent<TStore = any> extends BaseUIComponent<undefined, unde
357
357
  }
358
358
  interface IconButtonProps {
359
359
  active?: boolean;
360
+ disabled?: boolean;
360
361
  commandId?: string;
361
362
  onClick?: () => void;
362
363
  label?: string;
363
364
  img?: string;
365
+ color?: string;
364
366
  }
365
367
  interface IconButtonComponent<TStore = any> extends BaseUIComponent<IconButtonProps, undefined, TStore> {
366
368
  type: 'iconButton';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@embedpdf/plugin-ui",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
@@ -26,14 +26,14 @@
26
26
  "@types/react": "^18.2.0",
27
27
  "tsup": "^8.0.0",
28
28
  "typescript": "^5.0.0",
29
- "@embedpdf/core": "1.0.6",
30
- "@embedpdf/models": "1.0.6"
29
+ "@embedpdf/models": "1.0.8",
30
+ "@embedpdf/core": "1.0.8"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "react": ">=16.8.0",
34
34
  "react-dom": ">=16.8.0",
35
35
  "preact": "^10.26.4",
36
- "@embedpdf/core": "1.0.6"
36
+ "@embedpdf/core": "1.0.8"
37
37
  },
38
38
  "files": [
39
39
  "dist",