@esportsplus/ui 0.31.3 → 0.31.4

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.
@@ -43,7 +43,7 @@ const select = template.factory(function (attributes, content) {
43
43
  });
44
44
  return html `
45
45
  <label
46
- class='select ${() => state.active && '--active'}'
46
+ class='select tooltip ${() => state.active && '--active'}'
47
47
  onclick=${() => {
48
48
  if (state.render) {
49
49
  set(state, !state.active);
package/package.json CHANGED
@@ -48,7 +48,7 @@
48
48
  "private": false,
49
49
  "sideEffects": false,
50
50
  "type": "module",
51
- "version": "0.31.3",
51
+ "version": "0.31.4",
52
52
  "scripts": {
53
53
  "build": "run-s build:vite build:ts",
54
54
  "build:ts": "tsc && tsc-alias",
@@ -77,7 +77,7 @@ const select = template.factory<A>(
77
77
 
78
78
  return html`
79
79
  <label
80
- class='select ${() => state.active && '--active'}'
80
+ class='select tooltip ${() => state.active && '--active'}'
81
81
  onclick=${() => {
82
82
  if (state.render) {
83
83
  set(state, !state.active);