@pronto-tools-and-more/components 14.4.0 → 14.5.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.
package/dist/main.js CHANGED
@@ -1139,9 +1139,10 @@ var IfLength = ({
1139
1139
  var Image = ({
1140
1140
  src,
1141
1141
  alt,
1142
- loading
1142
+ loading,
1143
+ className
1143
1144
  }) => {
1144
- return /* @__PURE__ */ React.createElement("img", { src, alt, loading });
1145
+ return /* @__PURE__ */ React.createElement("img", { src, alt, loading, className });
1145
1146
  };
1146
1147
 
1147
1148
  // src/parts/Language/Language.ts
@@ -1,5 +1,6 @@
1
- export declare const Image: ({ src, alt, loading, }: {
1
+ export declare const Image: ({ src, alt, loading, className, }: {
2
2
  src: string;
3
3
  alt?: string;
4
+ className?: string;
4
5
  loading?: "lazy";
5
6
  }) => import("react").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pronto-tools-and-more/components",
3
- "version": "14.4.0",
3
+ "version": "14.5.0",
4
4
  "description": "",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",