@ztocwst/rc-pro-materials 0.2.63 → 0.2.64

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.
Files changed (31) hide show
  1. package/build/lowcode/assets-daily.json +11 -11
  2. package/build/lowcode/assets-dev.json +2 -2
  3. package/build/lowcode/assets-prod.json +11 -11
  4. package/build/lowcode/meta.js +1 -1
  5. package/es/components/z-editTable/editTable.d.ts +1 -1
  6. package/es/components/z-form/z-form.d.ts +1 -1
  7. package/es/components/z-list/list.d.ts +1 -1
  8. package/es/components/z-pointer-block/z-pointer-block.d.ts +1 -1
  9. package/es/components/z-simple-bar/z-simple-bar.d.ts +1 -1
  10. package/es/components/z-singleFactory/zSingerFactory.d.ts +1 -2
  11. package/es/components/z-statistic/z-statistic.d.ts +1 -1
  12. package/es/components/z-table/table.d.ts +1 -1
  13. package/es/components/z-target-block/z-target-block.d.ts +1 -2
  14. package/es/components/z-tpl/tpl.d.ts +1 -1
  15. package/es/components/z-warehouse/zWarehouse.d.ts +1 -2
  16. package/es/components/z-watermark/zWatermark.d.ts +1 -2
  17. package/es/utils/props/listTpl.d.ts +3 -3
  18. package/lib/components/z-editTable/editTable.d.ts +1 -1
  19. package/lib/components/z-form/z-form.d.ts +1 -1
  20. package/lib/components/z-list/list.d.ts +1 -1
  21. package/lib/components/z-pointer-block/z-pointer-block.d.ts +1 -1
  22. package/lib/components/z-simple-bar/z-simple-bar.d.ts +1 -1
  23. package/lib/components/z-singleFactory/zSingerFactory.d.ts +1 -2
  24. package/lib/components/z-statistic/z-statistic.d.ts +1 -1
  25. package/lib/components/z-table/table.d.ts +1 -1
  26. package/lib/components/z-target-block/z-target-block.d.ts +1 -2
  27. package/lib/components/z-tpl/tpl.d.ts +1 -1
  28. package/lib/components/z-warehouse/zWarehouse.d.ts +1 -2
  29. package/lib/components/z-watermark/zWatermark.d.ts +1 -2
  30. package/lib/utils/props/listTpl.d.ts +3 -3
  31. package/package.json +3 -3
@@ -7,5 +7,5 @@ export default class ZRcEditTable extends React.Component {
7
7
  editableFormRef: any;
8
8
  constructor(props: any);
9
9
  getProEditableFormRefRef: () => any;
10
- render(): React.JSX.Element;
10
+ render(): JSX.Element;
11
11
  }
@@ -6,5 +6,5 @@ export default class ZFormContainer extends React.Component<ProFormRenderProps,
6
6
  constructor(props: any);
7
7
  getFormRef: () => any;
8
8
  getCurrentRef: () => any;
9
- render(): React.JSX.Element;
9
+ render(): JSX.Element;
10
10
  }
@@ -13,5 +13,5 @@ export default class ZTplListContainer extends React.Component<RcListItem, any>
13
13
  getTableRef: () => any;
14
14
  getListFormRef: () => any;
15
15
  getListFormCurrentRef: () => any;
16
- render(): React.JSX.Element;
16
+ render(): JSX.Element;
17
17
  }
@@ -12,5 +12,5 @@ export type TypeZPointerBlockProps = {
12
12
  style?: React.CSSProperties;
13
13
  onClick?: (item?: any) => void;
14
14
  } & TypeZStatisticProps;
15
- declare const ZPointerBlock: (props: TypeZPointerBlockProps) => import("react").JSX.Element;
15
+ declare const ZPointerBlock: (props: TypeZPointerBlockProps) => JSX.Element;
16
16
  export default ZPointerBlock;
@@ -23,5 +23,5 @@ export interface TypeZSimpleBarProps extends Omit<ProgressProps, 'format'> {
23
23
  /** 单号显示间距 */
24
24
  gap?: number;
25
25
  }
26
- declare const ZSimpleBar: (props: TypeZSimpleBarProps) => import("react").JSX.Element;
26
+ declare const ZSimpleBar: (props: TypeZSimpleBarProps) => JSX.Element;
27
27
  export default ZSimpleBar;
@@ -1,3 +1,2 @@
1
- import * as React from 'react';
2
- declare const ZSingerFactory: (props: any) => React.JSX.Element;
1
+ declare const ZSingerFactory: (props: any) => JSX.Element;
3
2
  export default ZSingerFactory;
@@ -9,5 +9,5 @@ export interface TypeZStatisticProps extends StatisticProps {
9
9
  /** 值附加内容 */
10
10
  valueExtra?: string | React.ReactNode;
11
11
  }
12
- declare const ZStatistic: (props: TypeZStatisticProps) => import("react").JSX.Element;
12
+ declare const ZStatistic: (props: TypeZStatisticProps) => JSX.Element;
13
13
  export default ZStatistic;
@@ -4,5 +4,5 @@ export default class ZTableContainer extends React.Component<ProTableProps, any>
4
4
  tableRef: any;
5
5
  constructor(props: any);
6
6
  getTableRef: () => any;
7
- render(): React.JSX.Element;
7
+ render(): JSX.Element;
8
8
  }
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import type { TargetBlockProps } from '@ztocwst/rc-pro';
3
2
  /** 指标面板配置 */
4
3
  export type TypeZTargetBlockProps = TargetBlockProps;
5
- declare const ZTargetBlock: (props: TypeZTargetBlockProps) => import("react").JSX.Element;
4
+ declare const ZTargetBlock: (props: TypeZTargetBlockProps) => JSX.Element;
6
5
  export default ZTargetBlock;
@@ -19,5 +19,5 @@ export default class ZTplListContainer extends React.Component<RcPageProps, any>
19
19
  getBillFormRef: () => any;
20
20
  getListFormCurrentRef: () => any;
21
21
  getBillFormCurrentRef: () => any;
22
- render(): React.JSX.Element;
22
+ render(): JSX.Element;
23
23
  }
@@ -1,3 +1,2 @@
1
- import * as React from 'react';
2
- declare const ZWarehouse: (props: any) => React.JSX.Element;
1
+ declare const ZWarehouse: (props: any) => JSX.Element;
3
2
  export default ZWarehouse;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { TypeWatermarkProps } from '@ztocwst/rc-pro';
3
- declare const _default: (props: TypeWatermarkProps) => import("react").JSX.Element;
2
+ declare const _default: (props: TypeWatermarkProps) => JSX.Element;
4
3
  export default _default;
@@ -8,9 +8,9 @@ export declare const processListTplProps: (props: RcListItem, extra?: {
8
8
  requestConfig: any;
9
9
  type?: "list";
10
10
  listRef: any;
11
- onListBtnChange?: (type: "add" | "copy" | "edit" | "preview" | "back", record?: Record<string, unknown>, key?: string) => void | Promise<void>;
12
- renderWithDefaultDom?: (dom: JSX.Element[], onChange?: (type: "add" | "copy" | "edit" | "preview" | "back", record?: Record<string, unknown>, key?: string) => void | Promise<void>) => JSX.Element;
13
- render?: (onChange?: (type: "add" | "copy" | "edit" | "preview" | "back", record?: Record<string, unknown>, key?: string) => void | Promise<void>) => React.ReactNode;
11
+ onListBtnChange?: (type: "add" | "copy" | "preview" | "edit" | "back", record?: Record<string, unknown>, key?: string) => void | Promise<void>;
12
+ renderWithDefaultDom?: (dom: JSX.Element[], onChange?: (type: "add" | "copy" | "preview" | "edit" | "back", record?: Record<string, unknown>, key?: string) => void | Promise<void>) => JSX.Element;
13
+ render?: (onChange?: (type: "add" | "copy" | "preview" | "edit" | "back", record?: Record<string, unknown>, key?: string) => void | Promise<void>) => React.ReactNode;
14
14
  key?: string;
15
15
  name?: any;
16
16
  form: any;
@@ -7,5 +7,5 @@ export default class ZRcEditTable extends React.Component {
7
7
  editableFormRef: any;
8
8
  constructor(props: any);
9
9
  getProEditableFormRefRef: () => any;
10
- render(): React.JSX.Element;
10
+ render(): JSX.Element;
11
11
  }
@@ -6,5 +6,5 @@ export default class ZFormContainer extends React.Component<ProFormRenderProps,
6
6
  constructor(props: any);
7
7
  getFormRef: () => any;
8
8
  getCurrentRef: () => any;
9
- render(): React.JSX.Element;
9
+ render(): JSX.Element;
10
10
  }
@@ -13,5 +13,5 @@ export default class ZTplListContainer extends React.Component<RcListItem, any>
13
13
  getTableRef: () => any;
14
14
  getListFormRef: () => any;
15
15
  getListFormCurrentRef: () => any;
16
- render(): React.JSX.Element;
16
+ render(): JSX.Element;
17
17
  }
@@ -12,5 +12,5 @@ export type TypeZPointerBlockProps = {
12
12
  style?: React.CSSProperties;
13
13
  onClick?: (item?: any) => void;
14
14
  } & TypeZStatisticProps;
15
- declare const ZPointerBlock: (props: TypeZPointerBlockProps) => import("react").JSX.Element;
15
+ declare const ZPointerBlock: (props: TypeZPointerBlockProps) => JSX.Element;
16
16
  export default ZPointerBlock;
@@ -23,5 +23,5 @@ export interface TypeZSimpleBarProps extends Omit<ProgressProps, 'format'> {
23
23
  /** 单号显示间距 */
24
24
  gap?: number;
25
25
  }
26
- declare const ZSimpleBar: (props: TypeZSimpleBarProps) => import("react").JSX.Element;
26
+ declare const ZSimpleBar: (props: TypeZSimpleBarProps) => JSX.Element;
27
27
  export default ZSimpleBar;
@@ -1,3 +1,2 @@
1
- import * as React from 'react';
2
- declare const ZSingerFactory: (props: any) => React.JSX.Element;
1
+ declare const ZSingerFactory: (props: any) => JSX.Element;
3
2
  export default ZSingerFactory;
@@ -9,5 +9,5 @@ export interface TypeZStatisticProps extends StatisticProps {
9
9
  /** 值附加内容 */
10
10
  valueExtra?: string | React.ReactNode;
11
11
  }
12
- declare const ZStatistic: (props: TypeZStatisticProps) => import("react").JSX.Element;
12
+ declare const ZStatistic: (props: TypeZStatisticProps) => JSX.Element;
13
13
  export default ZStatistic;
@@ -4,5 +4,5 @@ export default class ZTableContainer extends React.Component<ProTableProps, any>
4
4
  tableRef: any;
5
5
  constructor(props: any);
6
6
  getTableRef: () => any;
7
- render(): React.JSX.Element;
7
+ render(): JSX.Element;
8
8
  }
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import type { TargetBlockProps } from '@ztocwst/rc-pro';
3
2
  /** 指标面板配置 */
4
3
  export type TypeZTargetBlockProps = TargetBlockProps;
5
- declare const ZTargetBlock: (props: TypeZTargetBlockProps) => import("react").JSX.Element;
4
+ declare const ZTargetBlock: (props: TypeZTargetBlockProps) => JSX.Element;
6
5
  export default ZTargetBlock;
@@ -19,5 +19,5 @@ export default class ZTplListContainer extends React.Component<RcPageProps, any>
19
19
  getBillFormRef: () => any;
20
20
  getListFormCurrentRef: () => any;
21
21
  getBillFormCurrentRef: () => any;
22
- render(): React.JSX.Element;
22
+ render(): JSX.Element;
23
23
  }
@@ -1,3 +1,2 @@
1
- import * as React from 'react';
2
- declare const ZWarehouse: (props: any) => React.JSX.Element;
1
+ declare const ZWarehouse: (props: any) => JSX.Element;
3
2
  export default ZWarehouse;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { TypeWatermarkProps } from '@ztocwst/rc-pro';
3
- declare const _default: (props: TypeWatermarkProps) => import("react").JSX.Element;
2
+ declare const _default: (props: TypeWatermarkProps) => JSX.Element;
4
3
  export default _default;
@@ -8,9 +8,9 @@ export declare const processListTplProps: (props: RcListItem, extra?: {
8
8
  requestConfig: any;
9
9
  type?: "list";
10
10
  listRef: any;
11
- onListBtnChange?: (type: "add" | "copy" | "edit" | "preview" | "back", record?: Record<string, unknown>, key?: string) => void | Promise<void>;
12
- renderWithDefaultDom?: (dom: JSX.Element[], onChange?: (type: "add" | "copy" | "edit" | "preview" | "back", record?: Record<string, unknown>, key?: string) => void | Promise<void>) => JSX.Element;
13
- render?: (onChange?: (type: "add" | "copy" | "edit" | "preview" | "back", record?: Record<string, unknown>, key?: string) => void | Promise<void>) => React.ReactNode;
11
+ onListBtnChange?: (type: "add" | "copy" | "preview" | "edit" | "back", record?: Record<string, unknown>, key?: string) => void | Promise<void>;
12
+ renderWithDefaultDom?: (dom: JSX.Element[], onChange?: (type: "add" | "copy" | "preview" | "edit" | "back", record?: Record<string, unknown>, key?: string) => void | Promise<void>) => JSX.Element;
13
+ render?: (onChange?: (type: "add" | "copy" | "preview" | "edit" | "back", record?: Record<string, unknown>, key?: string) => void | Promise<void>) => React.ReactNode;
14
14
  key?: string;
15
15
  name?: any;
16
16
  form: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ztocwst/rc-pro-materials",
3
- "version": "0.2.63",
3
+ "version": "0.2.64",
4
4
  "description": "@ztocwst/rc-pro-materials",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -89,9 +89,9 @@
89
89
  },
90
90
  "componentConfig": {
91
91
  "isComponentLibrary": true,
92
- "materialSchema": "https://npm.ztocwst.com/@ztocwst/rc-pro-materials@0.2.63/build/lowcode/assets-prod.json"
92
+ "materialSchema": "https://npm.ztocwst.com/@ztocwst/rc-pro-materials@0.2.64/build/lowcode/assets-prod.json"
93
93
  },
94
- "homepage": "https://unpkg.com/@ztocwst/rc-pro-materials@0.2.63/build/index.html",
94
+ "homepage": "https://unpkg.com/@ztocwst/rc-pro-materials@0.2.64/build/index.html",
95
95
  "publishConfig": {
96
96
  "registry": "https://registry.npmjs.org/",
97
97
  "access": "public"