@docusaurus/plugin-ideal-image 3.9.1-canary-6425 → 3.9.2-alpha.0

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.
@@ -82,6 +82,7 @@ export default function IdealImage(props) {
82
82
  }
83
83
  return (
84
84
  <ReactIdealImage
85
+ {...propsRest}
85
86
  height={img.src.height ?? 100}
86
87
  width={img.src.width ?? 100}
87
88
  placeholder={{lqip: img.preSrc}}
@@ -6,5 +6,5 @@ type Props = {
6
6
  onLeave: () => void;
7
7
  children: ReactNode;
8
8
  };
9
- export declare function Waypoint(props: Props): string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element | null | undefined;
9
+ export declare function Waypoint(props: Props): string | number | bigint | boolean | Iterable<React.ReactNode> | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined> | React.JSX.Element | null | undefined;
10
10
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docusaurus/plugin-ideal-image",
3
- "version": "3.9.1-canary-6425",
3
+ "version": "3.9.2-alpha.0",
4
4
  "description": "Docusaurus Plugin to generate an almost ideal image (responsive, lazy-loading, and low quality placeholder).",
5
5
  "main": "lib/index.js",
6
6
  "types": "src/plugin-ideal-image.d.ts",
@@ -20,18 +20,18 @@
20
20
  },
21
21
  "license": "MIT",
22
22
  "dependencies": {
23
- "@docusaurus/core": "3.9.1-canary-6425",
24
- "@docusaurus/lqip-loader": "3.9.1-canary-6425",
23
+ "@docusaurus/core": "3.9.2-alpha.0",
24
+ "@docusaurus/lqip-loader": "3.9.2-alpha.0",
25
25
  "@docusaurus/responsive-loader": "^1.7.0",
26
- "@docusaurus/theme-translations": "3.9.1-canary-6425",
27
- "@docusaurus/types": "3.9.1-canary-6425",
28
- "@docusaurus/utils-validation": "3.9.1-canary-6425",
26
+ "@docusaurus/theme-translations": "3.9.2-alpha.0",
27
+ "@docusaurus/types": "3.9.2-alpha.0",
28
+ "@docusaurus/utils-validation": "3.9.2-alpha.0",
29
29
  "sharp": "^0.32.3",
30
30
  "tslib": "^2.6.0",
31
31
  "webpack": "^5.88.1"
32
32
  },
33
33
  "devDependencies": {
34
- "@docusaurus/module-type-aliases": "3.9.1-canary-6425",
34
+ "@docusaurus/module-type-aliases": "3.9.2-alpha.0",
35
35
  "fs-extra": "^11.1.0"
36
36
  },
37
37
  "peerDependencies": {
@@ -47,5 +47,5 @@
47
47
  "engines": {
48
48
  "node": ">=20.0"
49
49
  },
50
- "gitHead": "bd0880bb0de0c29ecc18a303f7a70b640aaf8636"
50
+ "gitHead": "27626cdd7a102277935f10cc4d8d3f93e211eafe"
51
51
  }
@@ -93,6 +93,7 @@ export default function IdealImage(props: Props): ReactNode {
93
93
 
94
94
  return (
95
95
  <ReactIdealImage
96
+ {...propsRest}
96
97
  height={img.src.height ?? 100}
97
98
  width={img.src.width ?? 100}
98
99
  placeholder={{lqip: img.preSrc}}