Skip to content

Releases: uptick/react-object-list

v0.0.44

17 Sep 02:53
733331c
Compare
Choose a tag to compare

v0.0.43

02 Sep 23:47
Compare
Choose a tag to compare
  • Hotfix to prevent triggering of itemClick function when clicking on a link, button, or input inside the rendered item. #67

v0.0.42 - Do not use (unbuilt)

31 Aug 07:20
Compare
Choose a tag to compare
  • Hotfix to prevent triggering of itemClick function when clicking on a link, button, or input inside the rendered item. #67

v0.0.41

31 Aug 07:17
eb79d1f
Compare
Choose a tag to compare
  • Add ability to specify grouped columns eg.
[
  {
    header: 'Fruit',
    columns: [
      {header: 'Sour', dataKey: 'fruit.isSour'},
      {header: 'Sweet', dataKey: 'fruit.isSweet'}
    ],
  },
  {
    header: 'Vegetables',
    columns: [
      {header: 'Red', dataKey: 'vegetable.isRed'},
    ]
  }
]
  • Add ability to display a summary line at the top and bottom of the table. Summary data passed in as an object and accessors are specified as:
[{
  header: 'Red Fruit',
  summary: 'fruit.red.count'
  dataKey: 'fruit.isRed'
}]

v0.0.38

03 Aug 02:34
680fc8f
Compare
Choose a tag to compare
  • Add onItemClick functionality
    #64
  • Various Fixes
    #62
    #63

v0.0.35

04 Jul 03:57
Compare
Choose a tag to compare
  • Debouncing on choice filters with remote enabled #60

From v0.0.34:

  • Upgrades to react-select v2 #58

v0.0.30

31 May 04:30
Compare
Choose a tag to compare
  • Tweak styling to be more compact
  • Change key to filterKey for filters
  • Make use of labelKey for columns instead of dataKey as an identifier when available

v0.0.28

20 May 23:46
Compare
Choose a tag to compare
  • Change dataKey accessing to return the exact value in the object path or null

v0.0.27

08 May 07:20
Compare
Choose a tag to compare
  • Fix a bug in date filter

v0.0.26

08 May 06:39
Compare
Choose a tag to compare
  • Ensure dates are displayed correctly for the user's timezone