@pronto-tools-and-more/components 10.57.0 → 11.1.0
Sign up to get free protection for your applications and to get access to all the features.
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
|