@hexure/ui 1.13.70 → 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 +9 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +9 -5
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -3122,7 +3122,9 @@ const Logo = (_a) => {
|
|
|
3122
3122
|
const Container$4 = styled.header `
|
|
3123
3123
|
width: 100%;
|
|
3124
3124
|
display: flex;
|
|
3125
|
-
padding:
|
|
3125
|
+
padding: 5px;
|
|
3126
|
+
padding-left: 20px;
|
|
3127
|
+
padding-right: 0px;
|
|
3126
3128
|
box-sizing: border-box;
|
|
3127
3129
|
border-bottom: 1px solid ${Colors.LIGHT_GRAY.Hex};
|
|
3128
3130
|
background: '#fff';
|
|
@@ -3133,14 +3135,16 @@ const LogoWrapper = styled.div `
|
|
|
3133
3135
|
align-items: center;
|
|
3134
3136
|
`;
|
|
3135
3137
|
const Image = styled.img `
|
|
3136
|
-
height:
|
|
3137
|
-
width:
|
|
3138
|
+
max-height: 65px !important;
|
|
3139
|
+
max-width: 250px !important;
|
|
3138
3140
|
`;
|
|
3139
3141
|
const Buttons = styled.div `
|
|
3140
3142
|
display: flex;
|
|
3141
3143
|
flex-direction: row;
|
|
3142
3144
|
column-gap: 10px;
|
|
3143
3145
|
flex-direction: reverse;
|
|
3146
|
+
padding: 20px;
|
|
3147
|
+
padding-left: 0px;
|
|
3144
3148
|
`;
|
|
3145
3149
|
const AppHeader = ({ logoUrl, buttons = [], dataItemid }) => {
|
|
3146
3150
|
const baseId = dataItemid || 'app-header';
|
|
@@ -6254,9 +6258,9 @@ const ZeroState = (_a) => {
|
|
|
6254
6258
|
React.createElement(StyledIcon, { "data-itemid": `${baseId}-icon-wrapper` },
|
|
6255
6259
|
React.createElement(Icon, { color: Colors.MEDIUM_GRAY.Hex, "data-itemid": `${baseId}-icon`, path: icon, size: '40px' })),
|
|
6256
6260
|
React.createElement(Wrapper, { "data-itemid": `${baseId}-wrapper` },
|
|
6257
|
-
React.createElement(Heading, { children: title,
|
|
6261
|
+
React.createElement(Heading, { children: title, dataItemid: `${baseId}-heading`, type: 'tertiary' }),
|
|
6258
6262
|
description && (React.createElement(Copy, { align: 'center', children: description, color: 'GRAY', "data-itemid": `${baseId}-description`, type: 'default' }))),
|
|
6259
|
-
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 }))));
|
|
6260
6264
|
};
|
|
6261
6265
|
|
|
6262
6266
|
exports.Accordion = Accordion;
|