vueless 0.0.736 → 0.0.737

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.736",
3
+ "version": "0.0.737",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -357,7 +357,7 @@ function isShownDateDivider(rowIndex: number) {
357
357
  const isPrevSameDate = prevItem?.rowDate === currentItem?.rowDate;
358
358
  const isNextSameDate = nextItem?.rowDate === currentItem?.rowDate;
359
359
 
360
- return isPrevSameDate && !isNextSameDate && props.dateDivider;
360
+ return !isPrevSameDate && isNextSameDate && props.dateDivider;
361
361
  }
362
362
 
363
363
  function onClickRow(row: Row) {
@@ -81,7 +81,7 @@ export default /*tw*/ {
81
81
  },
82
82
  bodySelectedDateDivider: {
83
83
  base: "{>bodyDateDivider}",
84
- label: "bg-gray-200 transition",
84
+ label: "bg-gray-100 transition",
85
85
  },
86
86
  bodyEmptyState: "{UEmpty} my-8",
87
87
  footer: {