@hexure/ui 1.13.71 → 1.13.72
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/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -6258,9 +6258,9 @@ const ZeroState = (_a) => {
|
|
|
6258
6258
|
React.createElement(StyledIcon, { "data-itemid": `${baseId}-icon-wrapper` },
|
|
6259
6259
|
React.createElement(Icon, { color: Colors.MEDIUM_GRAY.Hex, "data-itemid": `${baseId}-icon`, path: icon, size: '40px' })),
|
|
6260
6260
|
React.createElement(Wrapper, { "data-itemid": `${baseId}-wrapper` },
|
|
6261
|
-
React.createElement(Heading, { children: title,
|
|
6261
|
+
React.createElement(Heading, { children: title, dataItemid: `${baseId}-heading`, type: 'tertiary' }),
|
|
6262
6262
|
description && (React.createElement(Copy, { align: 'center', children: description, color: 'GRAY', "data-itemid": `${baseId}-description`, type: 'default' }))),
|
|
6263
|
-
action && (React.createElement(Button, { children: action.children,
|
|
6263
|
+
action && (React.createElement(Button, { children: action.children, dataItemid: `${baseId}-button`, disabled: action.disabled, format: action.format, icon: action.icon, onClick: action.onClick }))));
|
|
6264
6264
|
};
|
|
6265
6265
|
|
|
6266
6266
|
exports.Accordion = Accordion;
|