dcp-design-react 1.12.19 → 1.12.21

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.
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import type { IFormItem, IFormData } from '../../form/src/types';
3
3
  import type { IFetch, IColumn, IRowKey, IRecord } from '../../table/src/table/types';
4
- import type { ComponentSize } from '../../_utils/types';
4
+ import type { ComponentSize, CSSProperties } from '../../_utils/types';
5
5
  type ITableConfig = {
6
6
  fetch?: IFetch;
7
7
  columns?: IColumn[];
@@ -15,6 +15,8 @@ type IProps = {
15
15
  multiple?: boolean;
16
16
  filters?: IFormItem[];
17
17
  table?: ITableConfig;
18
+ className?: string;
19
+ style?: CSSProperties;
18
20
  onClose: (data: IRecord[] | null) => void;
19
21
  };
20
22
  export type RangeTableHelperProps = IProps;
@@ -26704,6 +26704,3 @@ table {
26704
26704
  -webkit-font-smoothing: antialiased;
26705
26705
  -moz-osx-font-smoothing: grayscale;
26706
26706
  }
26707
- body {
26708
- font-family: LarkHackSafariFont, LarkEmojiFont, LarkChineseQuote, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Tahoma, 'PingFang SC', 'Microsoft Yahei', Arial, 'Hiragino Sans GB', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
26709
- }