@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.
- package/es/ProLayout/components/ProHeader/PropTypes.d.ts +2 -2
- package/es/ProLayout/index.d.ts +1 -1
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/ProLayout/components/ProHeader/PropTypes.d.ts +2 -2
- package/lib/ProLayout/index.d.ts +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +12 -0
- package/package.json +1 -1
@@ -39,7 +39,7 @@ export interface SubDescribeColumnType {
|
|
39
39
|
* @description 描述内容
|
40
40
|
* @default -
|
41
41
|
*/
|
42
|
-
label
|
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
|
62
|
+
value?: any;
|
63
63
|
/**
|
64
64
|
* @description 是否显示
|
65
65
|
* @default -
|
package/es/ProLayout/index.d.ts
CHANGED
@@ -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("
|
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
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
|
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
|
62
|
+
value?: any;
|
63
63
|
/**
|
64
64
|
* @description 是否显示
|
65
65
|
* @default -
|
package/lib/ProLayout/index.d.ts
CHANGED
@@ -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("
|
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
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;
|