@vnejs/plugins.views.screens.checkers 0.2.5 → 0.2.6

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.
@@ -174,7 +174,7 @@ const CheckersScreen = ({ store, onMount, PARAMS, emit, EVENTS }) => {
174
174
  }, [emit, EVENTS.CHECKERS_VIEW.CLICK]);
175
175
  return (_jsx(Screen, { ...propsScreen, children: _jsx(PositionBox, { ...propsByView.position, children: _jsxs(Flex, { ...propsByView.flex, children: [_jsx(Text, { ...propsStatus }), _jsxs("div", { style: playfieldStyle, children: [_jsx("div", { style: graveyardStyle("left") }), _jsx("div", { style: graveyardStyle("right") }), _jsx("div", { style: boardStyle, children: gridItems.map((item) => {
176
176
  const isFocus = gridRow === item.row && gridColumn === item.column;
177
- return (_jsx("div", { onClick: () => onClick(item.row, item.column), "vne-cursor-type": "pointer", style: {
177
+ return (_jsx("div", { onClick: () => onClick(item.row, item.column), "vne-cursor-type": "pointer", "vne-cursor-target-possible": "", style: {
178
178
  ...cellBaseStyle,
179
179
  background: cellBackground({ ...item, isFocus }),
180
180
  } }, `${item.row}-${item.column}`));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vnejs/plugins.views.screens.checkers",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "Checkers screen view (CHECKERS_VIEW)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -267,6 +267,7 @@ const CheckersScreen = ({ store, onMount, PARAMS, emit, EVENTS }: CheckersCompon
267
267
  key={`${item.row}-${item.column}`}
268
268
  onClick={() => onClick(item.row, item.column)}
269
269
  vne-cursor-type="pointer"
270
+ vne-cursor-target-possible=""
270
271
  style={{
271
272
  ...cellBaseStyle,
272
273
  background: cellBackground({ ...item, isFocus }),