@operato/board 1.4.40 → 1.4.41

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": "@operato/board",
3
- "version": "1.4.40",
3
+ "version": "1.4.41",
4
4
  "description": "Webcomponent for board following open-wc recommendations",
5
5
  "author": "heartyoh",
6
6
  "main": "dist/src/index.js",
@@ -148,5 +148,5 @@
148
148
  "prettier --write"
149
149
  ]
150
150
  },
151
- "gitHead": "dc3003dedf12580a7954be0dc09e3151a07f272b"
151
+ "gitHead": "f08abc45b71c195fb3b8e4db2d001acc8f7fe40a"
152
152
  }
@@ -18,43 +18,43 @@ export class PropertyEventHover extends LitElement {
18
18
  static styles = [
19
19
  EffectsSharedStyle,
20
20
  css`
21
- .cursor-auto {
21
+ datalist option.cursor-auto {
22
22
  cursor: auto;
23
23
  }
24
24
 
25
- .cursor-pointer {
25
+ datalist option.cursor-pointer {
26
26
  cursor: pointer;
27
27
  }
28
28
 
29
- .cursor-default {
29
+ datalist option.cursor-default {
30
30
  cursor: default;
31
31
  }
32
32
 
33
- .cursor-move {
33
+ datalist option.cursor-move {
34
34
  cursor: move;
35
35
  }
36
36
 
37
- .cursor-text {
37
+ datalist option.cursor-text {
38
38
  cursor: text;
39
39
  }
40
40
 
41
- .cursor-wait {
41
+ datalist option.cursor-wait {
42
42
  cursor: wait;
43
43
  }
44
44
 
45
- .cursor-help {
45
+ datalist option.cursor-help {
46
46
  cursor: help;
47
47
  }
48
48
 
49
- .cursor-crosshair {
49
+ datalist option.cursor-crosshair {
50
50
  cursor: crosshair;
51
51
  }
52
52
 
53
- .cursor-not-allowed {
53
+ datalist option.cursor-not-allowed {
54
54
  cursor: not-allowed;
55
55
  }
56
56
 
57
- .cursor-grab {
57
+ datalist option.cursor-grab {
58
58
  cursor: grab;
59
59
  }
60
60
  `
@@ -104,8 +104,8 @@ export class PropertyEventHover extends LitElement {
104
104
 
105
105
  <datalist id="target-list">
106
106
  ${this._getTargetList(action).map(
107
- ({ value, description, class: a }) =>
108
- html` <option .value=${value} class=${ifDefined(a)}>${description}</option> `
107
+ ({ value, description, class: clazz }) =>
108
+ html` <option .value=${value} class=${ifDefined(clazz)}>${description}</option> `
109
109
  )}
110
110
  </datalist>
111
111
  `}
@@ -169,7 +169,7 @@ export class PropertyEventHover extends LitElement {
169
169
  case 'mouse-cursor':
170
170
  return ['auto', 'pointer', 'default', 'move', 'text', 'wait', 'help', 'crosshair', 'not-allowed', 'grab'].map(
171
171
  style => {
172
- return { value: style, class: 'cursor-' + style }
172
+ return { value: style, class: `cursor-${style}` }
173
173
  }
174
174
  )
175
175