@zat-design/sisyphus-react 3.11.14-beta.7 → 3.11.14-beta.8

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.
@@ -39,7 +39,7 @@ export interface SubDescribeColumnType {
39
39
  * @description 描述内容
40
40
  * @default -
41
41
  */
42
- label: string | React.ReactNode;
42
+ label?: string | React.ReactNode;
43
43
  /**
44
44
  * @description 类型
45
45
  * @default -
@@ -59,7 +59,7 @@ export interface SubDescribeColumnType {
59
59
  * @description 值
60
60
  * @default -
61
61
  */
62
- value: any;
62
+ value?: any;
63
63
  /**
64
64
  * @description 是否显示
65
65
  * @default -
@@ -20,6 +20,6 @@ declare const ProLayout: {
20
20
  };
21
21
  ProCollapse: (props: import("./components/ProCollapse/PropTypes").ProCollapseType) => import("react/jsx-runtime").JSX.Element;
22
22
  ProFooter: import("react").MemoExoticComponent<(props: import("./components/ProFooter/PropTypes").ProFooterType) => import("react/jsx-runtime").JSX.Element>;
23
- ProHeader: import("react").MemoExoticComponent<(props: import("./components/ProHeader/PropTypes").ProHeaderType) => import("react/jsx-runtime").JSX.Element>;
23
+ ProHeader: import("react").MemoExoticComponent<(props: import("../index").ProHeaderType) => import("react/jsx-runtime").JSX.Element>;
24
24
  };
25
25
  export default ProLayout;
package/es/index.d.ts CHANGED
@@ -31,4 +31,5 @@ export * from './ProTable/propsType';
31
31
  export * from './ProEditTable/propsType';
32
32
  export * from './ProUpload/propsType';
33
33
  export * from './ProTabs/propType';
34
+ export * from './ProLayout/components/ProHeader/PropTypes';
34
35
  export * from './tokens';
package/es/index.js CHANGED
@@ -38,5 +38,6 @@ export * from './ProTable/propsType';
38
38
  export * from './ProEditTable/propsType';
39
39
  export * from './ProUpload/propsType';
40
40
  export * from './ProTabs/propType';
41
+ export * from './ProLayout/components/ProHeader/PropTypes';
41
42
  // token导出
42
43
  export * from './tokens';
@@ -39,7 +39,7 @@ export interface SubDescribeColumnType {
39
39
  * @description 描述内容
40
40
  * @default -
41
41
  */
42
- label: string | React.ReactNode;
42
+ label?: string | React.ReactNode;
43
43
  /**
44
44
  * @description 类型
45
45
  * @default -
@@ -59,7 +59,7 @@ export interface SubDescribeColumnType {
59
59
  * @description 值
60
60
  * @default -
61
61
  */
62
- value: any;
62
+ value?: any;
63
63
  /**
64
64
  * @description 是否显示
65
65
  * @default -
@@ -20,6 +20,6 @@ declare const ProLayout: {
20
20
  };
21
21
  ProCollapse: (props: import("./components/ProCollapse/PropTypes").ProCollapseType) => import("react/jsx-runtime").JSX.Element;
22
22
  ProFooter: import("react").MemoExoticComponent<(props: import("./components/ProFooter/PropTypes").ProFooterType) => import("react/jsx-runtime").JSX.Element>;
23
- ProHeader: import("react").MemoExoticComponent<(props: import("./components/ProHeader/PropTypes").ProHeaderType) => import("react/jsx-runtime").JSX.Element>;
23
+ ProHeader: import("react").MemoExoticComponent<(props: import("../index").ProHeaderType) => import("react/jsx-runtime").JSX.Element>;
24
24
  };
25
25
  export default ProLayout;
package/lib/index.d.ts CHANGED
@@ -31,4 +31,5 @@ export * from './ProTable/propsType';
31
31
  export * from './ProEditTable/propsType';
32
32
  export * from './ProUpload/propsType';
33
33
  export * from './ProTabs/propType';
34
+ export * from './ProLayout/components/ProHeader/PropTypes';
34
35
  export * from './tokens';
package/lib/index.js CHANGED
@@ -297,6 +297,18 @@ Object.keys(_propType).forEach(function (key) {
297
297
  }
298
298
  });
299
299
  });
300
+ var _PropTypes = require("./ProLayout/components/ProHeader/PropTypes");
301
+ Object.keys(_PropTypes).forEach(function (key) {
302
+ if (key === "default" || key === "__esModule") return;
303
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
304
+ if (key in exports && exports[key] === _PropTypes[key]) return;
305
+ Object.defineProperty(exports, key, {
306
+ enumerable: true,
307
+ get: function get() {
308
+ return _PropTypes[key];
309
+ }
310
+ });
311
+ });
300
312
  var _tokens = require("./tokens");
301
313
  Object.keys(_tokens).forEach(function (key) {
302
314
  if (key === "default" || key === "__esModule") return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zat-design/sisyphus-react",
3
- "version": "3.11.14-beta.7",
3
+ "version": "3.11.14-beta.8",
4
4
  "license": "MIT",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",