@florid-kit/components 0.9.13 → 0.9.14

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.
Files changed (3) hide show
  1. package/index.js +3 -0
  2. package/index.mjs +3 -0
  3. package/package.json +1 -1
package/index.js CHANGED
@@ -174,6 +174,9 @@
174
174
  target=${this.target||d}
175
175
  class="button"
176
176
  ?disabled=${this.disabled}
177
+ role="button"
178
+ @click=${this.handleClick}
179
+ @keydown=${this.handleClick}
177
180
  >
178
181
  ${this.startIcon?this.renderIcon("start"):d}
179
182
  ${o?l`
package/index.mjs CHANGED
@@ -915,6 +915,9 @@ let b = class extends wo {
915
915
  target=${this.target || d}
916
916
  class="button"
917
917
  ?disabled=${this.disabled}
918
+ role="button"
919
+ @click=${this.handleClick}
920
+ @keydown=${this.handleClick}
918
921
  >
919
922
  ${this.startIcon ? this.renderIcon("start") : d}
920
923
  ${o ? l`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@florid-kit/components",
3
- "version": "0.9.13",
3
+ "version": "0.9.14",
4
4
  "main": "index.js",
5
5
  "module": "index.mjs",
6
6
  "typings": "index.d.ts",