@zgfe/business-lib 1.0.28-dev.0 → 1.0.28-dev.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.
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  import './index.less';
3
3
  declare const BizDetailLayout: React.FC<{
4
4
  width?: string;
5
+ className?: string;
5
6
  onBack?: () => void;
6
7
  extra?: React.ReactNode;
7
8
  children?: React.ReactNode;
@@ -3,10 +3,11 @@ import { IconFont } from '../..';
3
3
  import './index.less';
4
4
 
5
5
  var BizDetailLayout = function BizDetailLayout(props) {
6
- var width = props.width;
6
+ var width = props.width,
7
+ className = props.className;
7
8
  var classPrefix = 'biz-detail';
8
9
  return /*#__PURE__*/React.createElement("div", {
9
- className: classPrefix,
10
+ className: "".concat(classPrefix, " ").concat(className),
10
11
  style: {
11
12
  width: width
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zgfe/business-lib",
3
- "version": "1.0.28-dev.0",
3
+ "version": "1.0.28-dev.1",
4
4
  "scripts": {
5
5
  "start": "dumi dev",
6
6
  "docs:build": "dumi build",
@@ -58,5 +58,5 @@
58
58
  "react": "^16.12.0 || ^17.0.0",
59
59
  "yorkie": "^2.0.0"
60
60
  },
61
- "gitHead": "a5a4dff196807db098e06d064cdbc8a4846bdccf"
61
+ "gitHead": "9a5f849119d4b82a1ef6bb329f549165148b1c34"
62
62
  }