ywana-core8 0.0.753 → 0.0.754

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.753",
3
+ "version": "0.0.754",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
package/src/html/table.js CHANGED
@@ -137,7 +137,7 @@ const DataTableRow = (props) => {
137
137
  const { index, row, columns = [], onSelect, editable, expanded = false } = props
138
138
  const { selected = false, className } = row
139
139
  const [isInfoOpen, toggleInfo] = useState(expanded)
140
- const infoIcon = isInfoOpen ? 'expand_more' : 'expand_less'
140
+ const infoIcon = isInfoOpen ? 'expand_less' : 'expand_more'
141
141
  let style = isInfoOpen ? "expanded" : ""
142
142
  if (selected) style += " selected"
143
143
  return (