@pronto-tools-and-more/components 14.1.0 → 14.3.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
@@ -1135,6 +1135,15 @@ var IfLength = ({
1135
1135
  return /* @__PURE__ */ React.createElement(JsonComponent, { json });
1136
1136
  };
1137
1137
 
1138
+ // src/parts/Image/Image.tsx
1139
+ var Image = ({
1140
+ src,
1141
+ alt,
1142
+ loading
1143
+ }) => {
1144
+ return /* @__PURE__ */ React.createElement("img", { src, alt, loading });
1145
+ };
1146
+
1138
1147
  // src/parts/Language/Language.ts
1139
1148
  var Language = {
1140
1149
  De: "de",
@@ -2023,6 +2032,7 @@ export {
2023
2032
  HighlightedEPaper,
2024
2033
  HubspotForm,
2025
2034
  IfLength,
2035
+ Image,
2026
2036
  JsonComponent,
2027
2037
  Language,
2028
2038
  LanguageMapping,
@@ -45,6 +45,7 @@ export * from "../ICategoryItem/ICategoryItem.ts";
45
45
  export * from "../IDossierListItem/IDossierListItem.ts";
46
46
  export * from "../IfLength/IfLength.tsx";
47
47
  export * from "../IFooterSocialLink/IFooterSocialLink.ts";
48
+ export * from "../Image/Image.tsx";
48
49
  export * from "../IMenuItem/IMenuItem.ts";
49
50
  export * from "../ISearchResult/ISearchResult.ts";
50
51
  export * from "../ISearchResultComponent/ISearchResultComponent.tsx";
@@ -0,0 +1,5 @@
1
+ export declare const Image: ({ src, alt, loading, }: {
2
+ src: string;
3
+ alt?: string;
4
+ loading?: "lazy";
5
+ }) => 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.1.0",
3
+ "version": "14.3.0",
4
4
  "description": "",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",