@cxbox-ui/core 1.34.2-alpha0 → 1.35.2
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/actions/actions.d.ts +8 -0
- 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/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 +1 -1
- package/cxbox-ui-core.js.map +1 -1
- package/package.json +1 -1
package/actions/actions.d.ts
CHANGED
|
@@ -1074,6 +1074,14 @@ export declare class ActionPayloadTypes {
|
|
|
1074
1074
|
* refresh screens, views and widgets meta
|
|
1075
1075
|
*/
|
|
1076
1076
|
refreshMeta: null;
|
|
1077
|
+
/**
|
|
1078
|
+
* refresh refreshMeta was successful
|
|
1079
|
+
*/
|
|
1080
|
+
refreshMetaDone: null;
|
|
1081
|
+
/**
|
|
1082
|
+
* refresh refreshMeta was unsuccessful
|
|
1083
|
+
*/
|
|
1084
|
+
refreshMetaFail: null;
|
|
1077
1085
|
/**
|
|
1078
1086
|
* Refresh meta data (see action above) and reload page
|
|
1079
1087
|
*/
|
|
@@ -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" | "cursor" | "bcName" | "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" | "cursor" | "bcName" | "fieldName" | "metaError" | "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" | "widgetName" | "onDrillDown" | "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, "className" | "meta" | "placeholder" | "disabled" | "value" | "widgetName" | "cursor" | "bcName" | "onDrillDown" | "fieldName" | "metaError" | "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" | "disabled" | "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" | "placeholder" | "disabled" | "value" | "widgetName" | "cursor" | "bcName" | "onDrillDown" | "metaError" | "readOnly" | "popupRowMetaDone" | "parentBCName" | "pickMap" | "backgroundColor">>;
|
|
25
25
|
export default ConnectedPickListField;
|
|
@@ -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" | "cursor" | "bcName" | "fieldName" | "readonly" | "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" | "prefixCls" | "visible" | "transitionName" | "size" | "widgetName" | "components" | "widget" | "onOk" | "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, "footer" | "style" | "title" | "mask" | "
|
|
42
|
+
declare const PickListPopupConnected: import("react-redux").ConnectedComponent<React.FunctionComponent<PickListPopupProps & PickListPopupActions>, Pick<PickListPopupProps & PickListPopupActions, "className" | "footer" | "style" | "title" | "mask" | "prefixCls" | "visible" | "transitionName" | "size" | "widgetName" | "components" | "widget" | "onCancel" | "onOk" | "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, "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" | "prefixCls" | "getPopupContainer" | "onChange" | "size" | "loading" | "widgetName" | "components" | "locale" | "bordered" | "expandIcon" | "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;
|