@umbraco-ui/uui-tabs 0.1.1 → 0.2.0

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 (2) hide show
  1. package/lib/index.js +1 -1
  2. package/package.json +3 -3
package/lib/index.js CHANGED
@@ -141,7 +141,7 @@ let UUITabGroupElement = class extends LitElement {
141
141
  super(...arguments);
142
142
  this.tabElements = [];
143
143
  this.onTabActive = (e) => {
144
- const selectedElement = e.target;
144
+ const selectedElement = e.currentTarget;
145
145
  if (this.elementIsTabLike(selectedElement)) {
146
146
  selectedElement.active = true;
147
147
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-tabs",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -30,7 +30,7 @@
30
30
  "custom-elements.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@umbraco-ui/uui-base": "0.1.1"
33
+ "@umbraco-ui/uui-base": "0.2.0"
34
34
  },
35
35
  "scripts": {
36
36
  "build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
@@ -41,5 +41,5 @@
41
41
  "access": "public"
42
42
  },
43
43
  "homepage": "https://uui.umbraco.com/?path=/story/uui-tabs",
44
- "gitHead": "d91d346a0659f52de2a3c4746065c554f95e6328"
44
+ "gitHead": "5494b55e03c9fb3ba8f160e693d3ce59c02d21cd"
45
45
  }