Skip to content

Releases: Accel-Hack/react-components

Allow undefined for search param

29 Mar 13:53
Compare
Choose a tag to compare
v0.2.7

allow undefined for search param

Change components to memo / option to set limit

29 Mar 13:00
65b249b
Compare
Choose a tag to compare

The following are updated

  • the componets are now memo
  • limit can be set by the opiton field

Change option undefined to empty array

28 Mar 11:40
Compare
Choose a tag to compare

change the param type (undefined will not be allowed)

Add CheckBox in Header

28 Mar 05:57
Compare
Choose a tag to compare

Add A check box in the header column to be able to select all at once

Create Suggestion Filter

19 Mar 01:09
Compare
Choose a tag to compare

Add a new filter component

filter whoose options will can be filtered by the input text

let filter = new SuggestionFilter.Class({
  type: FilterType.SUGGESTION,
  name: '科目',
  field: 'subject',
  options: async (param) => {
    const list = [
      {caption: 'try', value: 'ty'},
      {caption: 'catch', value: 'ct'},
      {caption: 'finally', value: 'fn'},
    ]
    return list.filter((f) => f.caption.includes(param))
  }
})

render(<SuggestionFilter.Component filter={filter}/>)

Create Selectable Filter

18 Mar 06:05
bcd63b9
Compare
Choose a tag to compare

Add a new filter component

filter which can be multiple seleted

let filter = new SelectableFilter.Class({
  type: FilterType.SELECTABLE,
  name: '言語',
  field: 'language',
  maxCount: 2,
  options: [
    {caption: 'English', value: 'en'},
    {caption: 'Japanese', value: 'ja'},
    {caption: 'French', value: 'fr'},
  ],
});

render(<SelectableFilter.Component filter={filter}/>)

Update readme links

16 Mar 00:39
Compare
Choose a tag to compare

Update readme links for the package

Change package name

16 Mar 00:24
Compare
Choose a tag to compare

changed package names

  • change scope to @accelhack-org
  • change package name to react-components

Use namespace / make class for tables

15 Mar 00:24
2f0485e
Compare
Choose a tag to compare

Made classes for tables

Fix paging function

13 Mar 05:14
Compare
Choose a tag to compare

fix the bug of refactoring