@cxbox-ui/core 1.35.2 → 1.36.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 +1 -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/View/View.d.ts +2 -1
- package/components/Widget/Widget.d.ts +2 -1
- package/components/ui/CheckboxPicker/CheckboxPicker.d.ts +1 -1
- package/components/ui/DashboardLayout/DashboardLayout.d.ts +1 -0
- 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 +1 -1
- package/cxbox-ui-core.js.map +1 -1
- package/package.json +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" | "cursor" | "widgetFieldMeta" | "widgetName" | "bcName" | "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, "cursor" | "metaError" | "bcName" | "disabled" | "fieldName" | "readOnly" | "fieldDataItem" | "fieldValue" | "fileIdKey" | "fileSource" | "snapshotKey" | "snapshotFileIdKey"> & FileUploadOwnProps>;
|
|
29
29
|
/**
|
|
30
30
|
* @category Components
|
|
31
31
|
*/
|
|
@@ -40,7 +40,7 @@ export declare const Exp: FunctionComponent;
|
|
|
40
40
|
* @category Components
|
|
41
41
|
*/
|
|
42
42
|
export declare const HierarchyTable: FunctionComponent<HierarchyTableProps>;
|
|
43
|
-
declare const ConnectedHierarchyTable: import("react-redux").ConnectedComponent<React.FunctionComponent<HierarchyTableProps>, Pick<HierarchyTableProps, "meta" | "
|
|
43
|
+
declare const ConnectedHierarchyTable: import("react-redux").ConnectedComponent<React.FunctionComponent<HierarchyTableProps>, Pick<HierarchyTableProps, "meta" | "onDrillDown" | "widgetName" | "assocValueKey" | "onRow" | "selectable" | "nestedByBc" | "showPagination" | "parentBcName"> & HierarchyTableOwnProps>;
|
|
44
44
|
/**
|
|
45
45
|
* @category Components
|
|
46
46
|
*/
|
|
@@ -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, "meta" | "className" | "placeholder" | "cursor" | "onDrillDown" | "metaError" | "widgetName" | "bcName" | "value" | "disabled" | "fieldName" | "readOnly" | "popupBcName" | "pickMap" | "backgroundColor" | "searchSpec"> & 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, "defaultValue" | "placeholder" | "
|
|
30
|
+
declare const ConnectedMultivalueField: import("react-redux").ConnectedComponent<React.FunctionComponent<MultivalueFieldProps>, Pick<MultivalueFieldProps, "defaultValue" | "placeholder" | "metaError" | "widgetFieldMeta" | "widgetName" | "bcName" | "disabled" | "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, "meta" | "className" | "placeholder" | "cursor" | "onDrillDown" | "metaError" | "widgetName" | "bcName" | "value" | "disabled" | "readOnly" | "popupRowMetaDone" | "parentBCName" | "pickMap" | "backgroundColor">>;
|
|
25
25
|
export default ConnectedPickListField;
|
|
@@ -9,6 +9,7 @@ export interface ViewProps {
|
|
|
9
9
|
customWidgets?: Record<string, CustomWidgetDescriptor>;
|
|
10
10
|
customLayout?: (props: any) => React.ReactElement<any>;
|
|
11
11
|
customFields?: Record<string, CustomWidget>;
|
|
12
|
+
disableDebugMode?: boolean;
|
|
12
13
|
}
|
|
13
14
|
export declare const CustomizationContext: React.Context<{
|
|
14
15
|
customFields: Record<string, CustomWidget>;
|
|
@@ -22,5 +23,5 @@ export declare const View: FunctionComponent<ViewProps>;
|
|
|
22
23
|
/**
|
|
23
24
|
* @category Components
|
|
24
25
|
*/
|
|
25
|
-
declare const ConnectedView: import("react-redux").ConnectedComponent<React.FunctionComponent<ViewProps>, Pick<ViewProps, "skipWidgetTypes" | "card" | "customSpinner" | "customWidgets" | "customLayout" | "customFields">>;
|
|
26
|
+
declare const ConnectedView: import("react-redux").ConnectedComponent<React.FunctionComponent<ViewProps>, Pick<ViewProps, "skipWidgetTypes" | "card" | "customSpinner" | "customWidgets" | "customLayout" | "customFields" | "disableDebugMode">>;
|
|
26
27
|
export default ConnectedView;
|
|
@@ -5,6 +5,7 @@ interface WidgetOwnProps {
|
|
|
5
5
|
card?: (props: any) => React.ReactElement<any>;
|
|
6
6
|
customSpinner?: (props: any) => React.ReactElement<any>;
|
|
7
7
|
children?: React.ReactNode;
|
|
8
|
+
disableDebugMode?: boolean;
|
|
8
9
|
}
|
|
9
10
|
interface WidgetProps extends WidgetOwnProps {
|
|
10
11
|
debugMode?: boolean;
|
|
@@ -24,5 +25,5 @@ export declare const Widget: FunctionComponent<WidgetProps>;
|
|
|
24
25
|
/**
|
|
25
26
|
* @category Components
|
|
26
27
|
*/
|
|
27
|
-
declare const ConnectedWidget: import("react-redux").ConnectedComponent<React.FunctionComponent<WidgetProps>, Pick<WidgetProps, "meta" | "children" | "card" | "customSpinner" | "customWidgets"> & WidgetOwnProps>;
|
|
28
|
+
declare const ConnectedWidget: import("react-redux").ConnectedComponent<React.FunctionComponent<WidgetProps>, Pick<WidgetProps, "meta" | "children" | "card" | "customSpinner" | "customWidgets" | "disableDebugMode"> & WidgetOwnProps>;
|
|
28
29
|
export default ConnectedWidget;
|
|
@@ -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, "cursor" | "bcName" | "readonly" | "value" | "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, "title" | "className" | "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, "
|
|
57
|
+
declare const AssocListPopupConnected: import("react-redux").ConnectedComponent<React.FunctionComponent<IAssocListProps & IAssocListActions>, Pick<IAssocListProps & IAssocListActions, "footer" | "style" | "title" | "mask" | "className" | "prefixCls" | "widgetName" | "components" | "visible" | "transitionName" | "widget" | "onOk" | "size" | "forceRender" | "width" | "bodyStyle" | "confirmLoading" | "closable" | "afterClose" | "centered" | "okText" | "okType" | "cancelText" | "maskClosable" | "okButtonProps" | "cancelButtonProps" | "destroyOnClose" | "wrapClassName" | "maskTransitionName" | "getContainer" | "zIndex" | "maskStyle" | "keyboard" | "wrapProps" | "closeIcon" | "showed" | "onOkHandler" | "onCancelHandler" | "disablePagination" | "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, "
|
|
42
|
+
declare const PickListPopupConnected: import("react-redux").ConnectedComponent<React.FunctionComponent<PickListPopupProps & PickListPopupActions>, Pick<PickListPopupProps & PickListPopupActions, "footer" | "style" | "title" | "mask" | "className" | "prefixCls" | "widgetName" | "components" | "visible" | "transitionName" | "widget" | "onCancel" | "onOk" | "size" | "forceRender" | "width" | "bodyStyle" | "confirmLoading" | "closable" | "afterClose" | "centered" | "okText" | "okType" | "cancelText" | "maskClosable" | "okButtonProps" | "cancelButtonProps" | "destroyOnClose" | "wrapClassName" | "maskTransitionName" | "getContainer" | "zIndex" | "maskStyle" | "keyboard" | "wrapProps" | "closeIcon" | "showed" | "onOkHandler" | "onCancelHandler" | "disablePagination" | "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, "
|
|
87
|
+
declare const ConnectedTable: import("react-redux").ConnectedComponent<React.FunctionComponent<TableWidgetProps>, Pick<TableWidgetProps, "footer" | "header" | "meta" | "style" | "title" | "children" | "className" | "prefixCls" | "onChange" | "widgetName" | "components" | "getPopupContainer" | "locale" | "size" | "bordered" | "expandIcon" | "loading" | "dropdownPrefixCls" | "rowSelection" | "pagination" | "dataSource" | "columns" | "rowKey" | "rowClassName" | "expandedRowRender" | "defaultExpandAllRows" | "defaultExpandedRowKeys" | "expandedRowKeys" | "expandIconAsCell" | "expandIconColumnIndex" | "expandRowByClick" | "onExpandedRowsChange" | "onExpand" | "indentSize" | "onRowClick" | "onRow" | "onHeaderRow" | "useFixedHeader" | "showHeader" | "scroll" | "childrenColumnName" | "bodyStyle" | "tableLayout" | "sortDirections" | "disablePagination" | "operations" | "metaInProgress" | "onOperationClick" | "onSelectRow" | "columnTitleComponent" | "showRowActions" | "allowEdit" | "paginationMode" | "disableDots" | "controlColumns"> & TableWidgetOwnProps>;
|
|
88
88
|
export default ConnectedTable;
|