@digital-ai/dot-components 3.3.0 → 3.4.1
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/index.esm.js +2 -1
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -8219,7 +8219,7 @@ const DotIllustration = ({
|
|
|
8219
8219
|
children: jsx("img", {
|
|
8220
8220
|
alt: alt || 'Illustration',
|
|
8221
8221
|
"aria-label": ariaLabel || title || 'Illustration',
|
|
8222
|
-
className: `illustration-${illustrationId} dot-img
|
|
8222
|
+
className: `illustration-${illustrationId}-${theme} dot-img`,
|
|
8223
8223
|
"data-testid": dataTestId && `${dataTestId}-img`,
|
|
8224
8224
|
role: ariaRole,
|
|
8225
8225
|
title: title || 'Illustration'
|
|
@@ -12987,6 +12987,7 @@ const DotTableActions = ({
|
|
|
12987
12987
|
};
|
|
12988
12988
|
const renderTableActions = () => {
|
|
12989
12989
|
return actions && actions.map((action, index) => index < 2 && jsx(DotTableAction, {
|
|
12990
|
+
"data-testid": action['data-testid'],
|
|
12990
12991
|
iconId: action.iconId,
|
|
12991
12992
|
label: action.label,
|
|
12992
12993
|
disabled: action.disabled,
|