ywana-core8 0.0.256 → 0.0.259

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": "ywana-core8",
3
- "version": "0.0.256",
3
+ "version": "0.0.259",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
@@ -124,6 +124,7 @@
124
124
  height: 100%;
125
125
  padding: 0.5rem;
126
126
  display: flex;
127
+ flex-direction: column;
127
128
  justify-content: center;
128
129
  align-items: center;
129
130
  border-right: dotted 1px var(--divider-color);
@@ -162,7 +162,7 @@ const PlannerCell = ({ lane, events, date, disabled = false, onAdd, onDelete, on
162
162
  const [dragOver, setDragOver] = useState(false);
163
163
 
164
164
  function select() {
165
- if (onSelect) onSelect(lane, date)
165
+ if (onSelect) onSelect(lane, date.moment.format("YYYY-MM-DD"))
166
166
  }
167
167
 
168
168
  function onDragOver(event) {