@cxbox-ui/core 1.36.1 → 1.37.1
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/components/Field/Field.d.ts +1 -1
- package/components/FileUpload/FileUpload.d.ts +1 -1
- package/components/HierarchyTable/HierarchyTable.d.ts +2 -1
- package/components/InlinePickList/InlinePickList.d.ts +1 -1
- package/components/Multivalue/MultivalueField.d.ts +1 -1
- package/components/PickListField/PickListField.d.ts +1 -1
- package/components/SameBcHierarchyTable/SameBcHierarchyTable.d.ts +2 -1
- package/components/ui/CheckboxPicker/CheckboxPicker.d.ts +1 -1
- package/components/ui/ErrorPopup/ErrorPopup.d.ts +1 -1
- package/components/widgets/AssocListPopup/AssocListPopup.d.ts +1 -1
- package/components/widgets/PickListPopup/PickListPopup.d.ts +1 -1
- package/components/widgets/TableWidget/TableWidget.d.ts +1 -1
- package/cxbox-ui-core.js +15 -15
- package/cxbox-ui-core.js.map +1 -1
- package/interfaces/operation.js.map +1 -1
- package/interfaces/router.js.map +1 -1
- package/interfaces/view.js.map +1 -1
- package/interfaces/widget.js.map +1 -1
- package/package.json +2 -2
- package/utils/combineMiddlewares.d.ts +1 -1
|
@@ -68,5 +68,5 @@ export declare const Field: FunctionComponent<FieldProps>;
|
|
|
68
68
|
/**
|
|
69
69
|
* @category Components
|
|
70
70
|
*/
|
|
71
|
-
declare const ConnectedField: import("react-redux").ConnectedComponent<React.FunctionComponent<FieldProps>, Pick<FieldProps, "className" | "
|
|
71
|
+
declare const ConnectedField: import("react-redux").ConnectedComponent<React.FunctionComponent<FieldProps>, Pick<FieldProps, "className" | "widgetName" | "bcName" | "cursor" | "widgetFieldMeta" | "suffixClassName" | "readonly" | "disableDrillDown" | "forceFocus" | "forcedValue" | "historyMode" | "tooltipPlacement" | "customProps" | "disableHoverError"> & FieldOwnProps>;
|
|
72
72
|
export default ConnectedField;
|
|
@@ -25,7 +25,7 @@ export interface FileUploadActions {
|
|
|
25
25
|
onUploadFileDone: (payload: ChangeDataItemPayload) => void;
|
|
26
26
|
onUploadFileFailed: () => void;
|
|
27
27
|
}
|
|
28
|
-
declare const _default: import("react-redux").ConnectedComponent<React.FunctionComponent<FileUploadOwnProps & FileUploadProps & FileUploadActions>, Pick<FileUploadOwnProps & FileUploadProps & FileUploadActions, "
|
|
28
|
+
declare const _default: import("react-redux").ConnectedComponent<React.FunctionComponent<FileUploadOwnProps & FileUploadProps & FileUploadActions>, Pick<FileUploadOwnProps & FileUploadProps & FileUploadActions, "disabled" | "readOnly" | "bcName" | "cursor" | "metaError" | "fieldName" | "fieldDataItem" | "fileIdKey" | "fileSource" | "fieldValue" | "snapshotKey" | "snapshotFileIdKey"> & FileUploadOwnProps>;
|
|
29
29
|
/**
|
|
30
30
|
* @category Components
|
|
31
31
|
*/
|
|
@@ -27,6 +27,7 @@ export interface HierarchyTableProps extends HierarchyTableOwnProps {
|
|
|
27
27
|
loading: boolean;
|
|
28
28
|
selectable?: boolean;
|
|
29
29
|
pendingChanges: Record<string, PendingDataItem>;
|
|
30
|
+
parentId?: string;
|
|
30
31
|
onDeselectAll?: (bcNames: string[]) => void;
|
|
31
32
|
onSelect?: (bcName: string, dataItem: AssociatedItem, widgetName: string, assocValueKey: string) => void;
|
|
32
33
|
onSelectAll?: (bcName: string, assocValueKey: string, selected: boolean) => void;
|
|
@@ -40,7 +41,7 @@ export declare const Exp: FunctionComponent;
|
|
|
40
41
|
* @category Components
|
|
41
42
|
*/
|
|
42
43
|
export declare const HierarchyTable: FunctionComponent<HierarchyTableProps>;
|
|
43
|
-
declare const ConnectedHierarchyTable: import("react-redux").ConnectedComponent<React.FunctionComponent<HierarchyTableProps>, Pick<HierarchyTableProps, "meta" | "
|
|
44
|
+
declare const ConnectedHierarchyTable: import("react-redux").ConnectedComponent<React.FunctionComponent<HierarchyTableProps>, Pick<HierarchyTableProps, "meta" | "widgetName" | "assocValueKey" | "onRow" | "onDrillDown" | "parentId" | "selectable" | "nestedByBc" | "showPagination" | "parentBcName"> & HierarchyTableOwnProps>;
|
|
44
45
|
/**
|
|
45
46
|
* @category Components
|
|
46
47
|
*/
|
|
@@ -16,7 +16,7 @@ interface InlinePickListProps extends InlinePickListOwnProps {
|
|
|
16
16
|
onChange: (payload: ChangeDataItemPayload) => void;
|
|
17
17
|
onSearch: (bcName: string, searchSpec: string, searchString: string) => void;
|
|
18
18
|
}
|
|
19
|
-
declare const _default: import("react-redux").ConnectedComponent<React.FunctionComponent<InlinePickListProps>, Pick<InlinePickListProps, "
|
|
19
|
+
declare const _default: import("react-redux").ConnectedComponent<React.FunctionComponent<InlinePickListProps>, Pick<InlinePickListProps, "className" | "meta" | "disabled" | "value" | "placeholder" | "readOnly" | "widgetName" | "bcName" | "cursor" | "onDrillDown" | "metaError" | "searchSpec" | "popupBcName" | "pickMap" | "backgroundColor" | "fieldName"> & InlinePickListOwnProps>;
|
|
20
20
|
/**
|
|
21
21
|
* @category Components
|
|
22
22
|
*/
|
|
@@ -27,5 +27,5 @@ export interface MultivalueFieldProps extends MultivalueFieldOwnProps {
|
|
|
27
27
|
/**
|
|
28
28
|
* @category Components
|
|
29
29
|
*/
|
|
30
|
-
declare const ConnectedMultivalueField: import("react-redux").ConnectedComponent<React.FunctionComponent<MultivalueFieldProps>, Pick<MultivalueFieldProps, "
|
|
30
|
+
declare const ConnectedMultivalueField: import("react-redux").ConnectedComponent<React.FunctionComponent<MultivalueFieldProps>, Pick<MultivalueFieldProps, "disabled" | "defaultValue" | "placeholder" | "widgetName" | "bcName" | "metaError" | "widgetFieldMeta" | "popupRowMetaDone"> & MultivalueFieldOwnProps>;
|
|
31
31
|
export default ConnectedMultivalueField;
|
|
@@ -21,5 +21,5 @@ interface IPickListWidgetInputProps extends IPickListWidgetInputOwnProps {
|
|
|
21
21
|
/**
|
|
22
22
|
* @category Components
|
|
23
23
|
*/
|
|
24
|
-
declare const ConnectedPickListField: import("react-redux").ConnectedComponent<React.FunctionComponent<IPickListWidgetInputProps>, Pick<IPickListWidgetInputProps, "
|
|
24
|
+
declare const ConnectedPickListField: import("react-redux").ConnectedComponent<React.FunctionComponent<IPickListWidgetInputProps>, Pick<IPickListWidgetInputProps, "className" | "meta" | "disabled" | "value" | "placeholder" | "readOnly" | "widgetName" | "bcName" | "cursor" | "onDrillDown" | "metaError" | "pickMap" | "backgroundColor" | "popupRowMetaDone" | "parentBCName">>;
|
|
25
25
|
export default ConnectedPickListField;
|
|
@@ -9,6 +9,7 @@ interface SameBcHierarchyTableOwnProps {
|
|
|
9
9
|
assocValueKey?: string;
|
|
10
10
|
depth?: number;
|
|
11
11
|
selectable?: boolean;
|
|
12
|
+
parentId?: string;
|
|
12
13
|
onRow?: (record: DataItem, index: number) => TableEventListeners;
|
|
13
14
|
}
|
|
14
15
|
export interface SameBcHierarchyTableProps extends SameBcHierarchyTableOwnProps {
|
|
@@ -32,7 +33,7 @@ export declare const Exp: FunctionComponent;
|
|
|
32
33
|
* @category Components
|
|
33
34
|
*/
|
|
34
35
|
export declare const SameBcHierarchyTable: FunctionComponent<SameBcHierarchyTableProps>;
|
|
35
|
-
declare const ConnectedHierarchyTable: import("react-redux").ConnectedComponent<React.FunctionComponent<SameBcHierarchyTableProps>, Pick<SameBcHierarchyTableProps, "meta" | "
|
|
36
|
+
declare const ConnectedHierarchyTable: import("react-redux").ConnectedComponent<React.FunctionComponent<SameBcHierarchyTableProps>, Pick<SameBcHierarchyTableProps, "meta" | "assocValueKey" | "onRow" | "onDrillDown" | "parentId" | "depth" | "selectable"> & SameBcHierarchyTableOwnProps>;
|
|
36
37
|
/**
|
|
37
38
|
* @deprecated TODO: Will be removed in 2.0.0
|
|
38
39
|
* @category Components
|
|
@@ -17,5 +17,5 @@ interface CheckboxPickerProps extends CheckboxPickerOwnProps {
|
|
|
17
17
|
/**
|
|
18
18
|
* @category Components
|
|
19
19
|
*/
|
|
20
|
-
export declare const ConnectedCheckboxPicker: import("react-redux").ConnectedComponent<React.FC<CheckboxPickerProps>, Pick<CheckboxPickerProps, "
|
|
20
|
+
export declare const ConnectedCheckboxPicker: import("react-redux").ConnectedComponent<React.FC<CheckboxPickerProps>, Pick<CheckboxPickerProps, "value" | "bcName" | "cursor" | "readonly" | "fieldName" | "fieldLabel"> & CheckboxPickerOwnProps>;
|
|
21
21
|
export default ConnectedCheckboxPicker;
|
|
@@ -14,5 +14,5 @@ export declare const ErrorPopup: FunctionComponent<ErrorPopupProps>;
|
|
|
14
14
|
/**
|
|
15
15
|
* @category Components
|
|
16
16
|
*/
|
|
17
|
-
declare const MemoizedErrorPopup: import("react-redux").ConnectedComponent<React.FunctionComponent<ErrorPopupProps>, Pick<ErrorPopupProps, "
|
|
17
|
+
declare const MemoizedErrorPopup: import("react-redux").ConnectedComponent<React.FunctionComponent<ErrorPopupProps>, Pick<ErrorPopupProps, "className" | "title" | "error" | "onClose">>;
|
|
18
18
|
export default MemoizedErrorPopup;
|
|
@@ -54,5 +54,5 @@ export declare const AssocListPopup: FunctionComponent<IAssocListProps & IAssocL
|
|
|
54
54
|
/**
|
|
55
55
|
* @category Widgets
|
|
56
56
|
*/
|
|
57
|
-
declare const AssocListPopupConnected: import("react-redux").ConnectedComponent<React.FunctionComponent<IAssocListProps & IAssocListActions>, Pick<IAssocListProps & IAssocListActions, "footer" | "style" | "title" | "mask" | "
|
|
57
|
+
declare const AssocListPopupConnected: import("react-redux").ConnectedComponent<React.FunctionComponent<IAssocListProps & IAssocListActions>, Pick<IAssocListProps & IAssocListActions, "className" | "footer" | "style" | "title" | "mask" | "size" | "prefixCls" | "width" | "widgetName" | "disablePagination" | "components" | "bodyStyle" | "transitionName" | "visible" | "widget" | "onOk" | "forceRender" | "confirmLoading" | "closable" | "afterClose" | "centered" | "okText" | "okType" | "cancelText" | "maskClosable" | "okButtonProps" | "cancelButtonProps" | "destroyOnClose" | "wrapClassName" | "maskTransitionName" | "getContainer" | "zIndex" | "maskStyle" | "keyboard" | "wrapProps" | "closeIcon" | "showed" | "onOkHandler" | "onCancelHandler" | "defaultOkText" | "defaultCancelText"> & IAssocListOwnProps>;
|
|
58
58
|
export default AssocListPopupConnected;
|
|
@@ -39,5 +39,5 @@ export declare const PickListPopup: FunctionComponent<PickListPopupProps & PickL
|
|
|
39
39
|
/**
|
|
40
40
|
* @category Widgets
|
|
41
41
|
*/
|
|
42
|
-
declare const PickListPopupConnected: import("react-redux").ConnectedComponent<React.FunctionComponent<PickListPopupProps & PickListPopupActions>, Pick<PickListPopupProps & PickListPopupActions, "footer" | "style" | "title" | "mask" | "
|
|
42
|
+
declare const PickListPopupConnected: import("react-redux").ConnectedComponent<React.FunctionComponent<PickListPopupProps & PickListPopupActions>, Pick<PickListPopupProps & PickListPopupActions, "className" | "footer" | "style" | "title" | "mask" | "size" | "prefixCls" | "width" | "widgetName" | "disablePagination" | "components" | "bodyStyle" | "transitionName" | "visible" | "widget" | "onCancel" | "onOk" | "forceRender" | "confirmLoading" | "closable" | "afterClose" | "centered" | "okText" | "okType" | "cancelText" | "maskClosable" | "okButtonProps" | "cancelButtonProps" | "destroyOnClose" | "wrapClassName" | "maskTransitionName" | "getContainer" | "zIndex" | "maskStyle" | "keyboard" | "wrapProps" | "closeIcon" | "showed" | "onOkHandler" | "onCancelHandler" | "defaultOkText" | "defaultCancelText" | "disableScroll"> & PickListPopupOwnProps>;
|
|
43
43
|
export default PickListPopupConnected;
|
|
@@ -84,5 +84,5 @@ export declare const TableWidget: FunctionComponent<TableWidgetProps>;
|
|
|
84
84
|
/**
|
|
85
85
|
* @category Widgets
|
|
86
86
|
*/
|
|
87
|
-
declare const ConnectedTable: import("react-redux").ConnectedComponent<React.FunctionComponent<TableWidgetProps>, Pick<TableWidgetProps, "footer" | "header" | "meta" | "style" | "title" | "children" | "
|
|
87
|
+
declare const ConnectedTable: import("react-redux").ConnectedComponent<React.FunctionComponent<TableWidgetProps>, Pick<TableWidgetProps, "className" | "footer" | "header" | "meta" | "style" | "title" | "children" | "size" | "prefixCls" | "onChange" | "widgetName" | "loading" | "disablePagination" | "rowSelection" | "dropdownPrefixCls" | "pagination" | "dataSource" | "components" | "columns" | "rowKey" | "rowClassName" | "expandedRowRender" | "defaultExpandAllRows" | "defaultExpandedRowKeys" | "expandedRowKeys" | "expandIcon" | "expandIconAsCell" | "expandIconColumnIndex" | "expandRowByClick" | "onExpandedRowsChange" | "onExpand" | "locale" | "indentSize" | "onRowClick" | "onRow" | "onHeaderRow" | "useFixedHeader" | "bordered" | "showHeader" | "scroll" | "childrenColumnName" | "bodyStyle" | "tableLayout" | "sortDirections" | "getPopupContainer" | "operations" | "metaInProgress" | "onOperationClick" | "onSelectRow" | "columnTitleComponent" | "showRowActions" | "allowEdit" | "paginationMode" | "disableDots" | "controlColumns"> & TableWidgetOwnProps>;
|
|
88
88
|
export default ConnectedTable;
|