@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
|