@pronto-tools-and-more/components 10.57.0 → 11.1.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
@@ -408,10 +408,11 @@ var Collection = ({
408
408
 
409
409
  // src/parts/Container/Container.tsx
410
410
  var Container = ({
411
- children
411
+ children,
412
+ key
412
413
  }) => {
413
414
  const childrenArray = Array.isArray(children) ? children : [children];
414
- return /* @__PURE__ */ React.createElement("div", { className: "Container" }, ...childrenArray);
415
+ return /* @__PURE__ */ React.createElement("div", { className: "Container", "data-key": key }, ...childrenArray);
415
416
  };
416
417
 
417
418
  // src/parts/ContentBody/ContentBody.tsx
@@ -1,3 +1,4 @@
1
- export declare const Container: ({ children, }: {
1
+ export declare const Container: ({ children, key, }: {
2
2
  children: React.ReactNode;
3
+ key?: string;
3
4
  }) => React.ReactNode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pronto-tools-and-more/components",
3
- "version": "10.57.0",
3
+ "version": "11.1.0",
4
4
  "description": "",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",