Giter Club home page Giter Club logo

react-filter-component's Introduction

react filter

npm version Commitizen friendly

安装

pnpm add @react-filter/antd

使用

import { ReactFilter } from '@react-filter/antd';

<ReactFilter />;

API

属性
说明
类型 默认值
defaultValue 组件初始化默认值 object
value 组件值 object
onChange 组件值改变回调 (value) => void
connectors 条件组关系,默认且和或 SelectOption[] { label: '且', value: 'AND' }
{ label: '或', value: 'OR' }
operators 条件表达式操作符,例如大于小于 SelectOption[] { label: "等于", "value": "equal"}
{ "label": "不等于", "value": "not_equal"}
{ "label": "大于", "value": "greater" }
{ "label": "大于等于", "value": "greater_equal" }
{ "label": "小于", "value": "less" }
{ "label": "小于等于", "value": "less_equal" }
{ "label": "包含", "value": "in" }
{ "label": "不包含", "value": "not_in" }
{ "label": "模糊匹配", "value": "like" }
{ "label": "不匹配", "value": "not_like" }
fieldNames 组件值字段名称 FieldNameMap {connector: 'connector', filters: 'filters', left: 'left', operator: 'operator', value: 'value'}

interface

interface SelectOption {
  label: React.ReactNode;
  value: string | number | boolean;
}
interface FieldNameMap {
  connector?: string;
  filters?: string;
  left?: string;
  operator?: string;
  value?: string;
}

react-filter-component's People

Contributors

wood3n avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.