@meduza/ui-kit-2 0.8.2 → 0.8.3
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/CardTitle/CardTitle.types.d.ts +1 -0
- package/dist/ui-kit-2.cjs.development.js +3 -1
- package/dist/ui-kit-2.cjs.development.js.map +1 -1
- package/dist/ui-kit-2.cjs.production.min.js +1 -1
- package/dist/ui-kit-2.cjs.production.min.js.map +1 -1
- package/dist/ui-kit-2.esm.js +3 -1
- package/dist/ui-kit-2.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/CardTitle/CardTitle.types.ts +1 -0
- package/src/CardTitle/index.tsx +3 -1
|
@@ -1359,12 +1359,14 @@ const CardTitle = ({
|
|
|
1359
1359
|
only_on: onlyOn,
|
|
1360
1360
|
index,
|
|
1361
1361
|
text
|
|
1362
|
-
}
|
|
1362
|
+
},
|
|
1363
|
+
id
|
|
1363
1364
|
},
|
|
1364
1365
|
styleContext
|
|
1365
1366
|
}) => {
|
|
1366
1367
|
return /*#__PURE__*/React.createElement("div", {
|
|
1367
1368
|
"data-testid": "card-title",
|
|
1369
|
+
id: id,
|
|
1368
1370
|
className: makeClassName([[styles$o.root, true], [styles$o[onlyOn], !!onlyOn], [styles$o[styleContext], !!styleContext && !!styles$o[styleContext]]])
|
|
1369
1371
|
}, /*#__PURE__*/React.createElement("div", {
|
|
1370
1372
|
className: styles$o.index
|