# Conflicts: # package.json # src/actions/pageActions.tsx # src/actions/widgetCardsPaneActions.tsx # src/api/Api.tsx # src/api/ApiRequests.tsx # src/api/ApiResponses.tsx # src/api/WidgetCardsPaneApi.tsx # src/constants/ActionConstants.tsx # src/constants/ApiConstants.tsx # src/normalizers/CanvasWidgetsNormalizer.tsx # src/reducers/entityReducers/canvasWidgetsReducer.tsx # src/reducers/entityReducers/index.tsx # src/reducers/entityReducers/widgetConfigReducer.tsx.tsx # src/reducers/index.tsx # src/reducers/uiReducers/canvasReducer.tsx # src/reducers/uiReducers/editorReducer.tsx # src/reducers/uiReducers/widgetCardsPaneReducer.tsx # src/sagas/PageSagas.tsx # src/sagas/WidgetCardsPaneSagas.tsx # src/sagas/index.tsx # src/utils/AppsmithUtils.tsx # src/widgets/AlertWidget.tsx # src/widgets/ButtonWidget.tsx # src/widgets/CheckboxWidget.tsx # src/widgets/DatePickerWidget.tsx # src/widgets/DropdownWidget.tsx # src/widgets/RadioGroupWidget.tsx # src/widgets/TableWidget.tsx
21 lines
513 B
TypeScript
21 lines
513 B
TypeScript
import * as React from "react";
|
|
import { ComponentProps } from "./BaseComponent";
|
|
import { Checkbox } from "@blueprintjs/core";
|
|
class CheckboxComponent extends React.Component<CheckboxComponentProps> {
|
|
render() {
|
|
return (
|
|
<Checkbox
|
|
label={this.props.label}
|
|
defaultIndeterminate={this.props.defaultCheckedState}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
export interface CheckboxComponentProps extends ComponentProps {
|
|
label: string;
|
|
defaultCheckedState: boolean;
|
|
}
|
|
|
|
export default CheckboxComponent;
|