49 lines
1.5 KiB
JavaScript
49 lines
1.5 KiB
JavaScript
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
import { useStyle as useAntdStyle } from '@ant-design/pro-provider';
|
|
var genProStyle = function genProStyle(token) {
|
|
return _defineProperty({}, token.componentCls, {
|
|
'&-title': {
|
|
marginBlockEnd: token.marginXL,
|
|
fontWeight: 'bold'
|
|
},
|
|
'&-container': _defineProperty({
|
|
flexWrap: 'wrap',
|
|
maxWidth: '100%'
|
|
}, "> div".concat(token.antCls, "-space-item"), {
|
|
maxWidth: '100%'
|
|
}),
|
|
'&-twoLine': _defineProperty(_defineProperty(_defineProperty(_defineProperty({
|
|
display: 'block',
|
|
width: '100%'
|
|
}, "".concat(token.componentCls, "-title"), {
|
|
width: '100%',
|
|
margin: '8px 0'
|
|
}), "".concat(token.componentCls, "-container"), {
|
|
paddingInlineStart: 16
|
|
}), "".concat(token.antCls, "-space-item,").concat(token.antCls, "-form-item"), {
|
|
width: '100%'
|
|
}), "".concat(token.antCls, "-form-item"), {
|
|
'&-control': {
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'flex-end',
|
|
'&-input': {
|
|
alignItems: 'center',
|
|
justifyContent: 'flex-end',
|
|
'&-content': {
|
|
flex: 'none'
|
|
}
|
|
}
|
|
}
|
|
})
|
|
});
|
|
};
|
|
export function useStyle(prefixCls) {
|
|
return useAntdStyle('ProFormGroup', function (token) {
|
|
var proToken = _objectSpread(_objectSpread({}, token), {}, {
|
|
componentCls: ".".concat(prefixCls)
|
|
});
|
|
return [genProStyle(proToken)];
|
|
});
|
|
} |