@icos-desktop/react-components 2.1.6 → 2.1.7
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/dist/icos-desktop.d.ts +2 -19
- package/dist/icos-desktop.js +540 -535
- package/dist/icos-desktop.umd.cjs +1 -1
- package/package.json +8 -4
package/dist/icos-desktop.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import React, { ReactNode } from 'react';
|
2
2
|
import { ButtonProps } from 'antd/es/button/button';
|
3
|
-
import { SelectProps, TableProps, TreeSelectProps, ModalProps,
|
3
|
+
import { SelectProps, TableProps, TreeSelectProps, ModalProps, CascaderProps, ButtonProps as ButtonProps$1 } from '@xirang/design-antd';
|
4
4
|
import { ContextMenuKey as ContextMenuKey$2 } from '@/components/BookTable/BookTable.types';
|
5
5
|
import { ContextMenuKey as ContextMenuKey$3 } from '@/components/SenseTable/SenseTable.types';
|
6
6
|
import { VideoPlayerProps as VideoPlayerProps$1 } from '@/components/VideoPlayer';
|
@@ -268,7 +268,6 @@ interface BookTableProps extends TableProps {
|
|
268
268
|
* 触发刷新的回调
|
269
269
|
*/
|
270
270
|
onRefresh?: () => void;
|
271
|
-
proTableContainerHeight?: number;
|
272
271
|
}
|
273
272
|
interface BookTableRef {
|
274
273
|
/**
|
@@ -364,12 +363,6 @@ interface PersonSelectorProps {
|
|
364
363
|
|
365
364
|
declare const PersonSelector: React.FC<PersonSelectorProps>;
|
366
365
|
|
367
|
-
interface ProSearchProps extends InputProps {
|
368
|
-
allowMultiple: boolean;
|
369
|
-
}
|
370
|
-
|
371
|
-
declare const ProSearch: React.FC<ProSearchProps>;
|
372
|
-
|
373
366
|
interface ProTableProps extends TableProps {
|
374
367
|
header: {
|
375
368
|
code: string;
|
@@ -824,7 +817,6 @@ interface SenseFullTableProps {
|
|
824
817
|
* @param record
|
825
818
|
*/
|
826
819
|
onDoubleClickSense?: (record: any) => void;
|
827
|
-
proTableContainerHeight?: number;
|
828
820
|
}
|
829
821
|
interface SenseFullTableRef {
|
830
822
|
/**
|
@@ -1112,7 +1104,6 @@ interface SenseTableProps extends TableProps {
|
|
1112
1104
|
* 触发刷新的回调
|
1113
1105
|
*/
|
1114
1106
|
onRefresh?: () => void;
|
1115
|
-
proTableContainerHeight?: number;
|
1116
1107
|
}
|
1117
1108
|
interface SenseTableRef {
|
1118
1109
|
/**
|
@@ -1404,14 +1395,6 @@ interface VideoControlProps extends VideoPlayerProps$1 {
|
|
1404
1395
|
disabled?: boolean;
|
1405
1396
|
operationIconColor?: string;
|
1406
1397
|
operateIconBorderColor?: string;
|
1407
|
-
operateIconBorderWidth?: number;
|
1408
|
-
operateIconBorderStyle?: string;
|
1409
|
-
operateIconBgColor?: string;
|
1410
|
-
operateIconShadowColor?: string;
|
1411
|
-
operateIconShadowActiveColor?: string;
|
1412
|
-
directionNormalImg?: string;
|
1413
|
-
directionActiveImg?: string;
|
1414
|
-
directionDisabledImg?: string;
|
1415
1398
|
}
|
1416
1399
|
|
1417
1400
|
declare const VideoControl: (props: VideoControlProps) => React.JSX.Element;
|
@@ -1460,4 +1443,4 @@ declare const CcosVideoPlayer: {
|
|
1460
1443
|
type Config = Pick<IcosDesktopType, 'apiPrefix'>;
|
1461
1444
|
declare const setCconfig: (config: Config) => void;
|
1462
1445
|
|
1463
|
-
export { BookDetail, BookGroupImport, BookGroupTable, BookImport, BookInfo, BookSelect, BookTable, CcosBookDetail, CcosImportTable, CcosSenseCreate, CcosSenseDetail, CcosSenseEdit, CcosSenseFullTable, CcosSenseManager, CcosSenseSearch, CcosSenseTree, CcosSenseView, CcosTagConfig, CcosVideoPlayer, EntityClassFilter, EntityClassTreeSelect, ImportTable, Modal, OrgTreeSelect, PersonSelector,
|
1446
|
+
export { BookDetail, BookGroupImport, BookGroupTable, BookImport, BookInfo, BookSelect, BookTable, CcosBookDetail, CcosImportTable, CcosSenseCreate, CcosSenseDetail, CcosSenseEdit, CcosSenseFullTable, CcosSenseManager, CcosSenseSearch, CcosSenseTree, CcosSenseView, CcosTagConfig, CcosVideoPlayer, EntityClassFilter, EntityClassTreeSelect, ImportTable, Modal, OrgTreeSelect, PersonSelector, _default as ProTable, RegionCascader, RegionTreeSelect, RelationGraph, SenseContentTable, SenseCreate, SenseDetail, SenseEdit, SenseForm, SenseFullTable, SenseInfo, SenseManager, SenseSearch, SenseTable, SenseTree, SenseView, TagConfig, TagTreeSelect, VideoControl, VideoPlayer, setCconfig as config };
|