@umbraco-ui/uui-table 1.0.0-rc.1 → 1.0.0-rc.2
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/lib/index.js +3 -1
- package/package.json +3 -3
package/lib/index.js
CHANGED
|
@@ -239,7 +239,9 @@ var __decorateClass = (decorators, target, key, kind) => {
|
|
|
239
239
|
__defProp(target, key, result);
|
|
240
240
|
return result;
|
|
241
241
|
};
|
|
242
|
-
let UUITableRowElement = class extends SelectOnlyMixin(
|
|
242
|
+
let UUITableRowElement = class extends SelectOnlyMixin(
|
|
243
|
+
SelectableMixin(LitElement)
|
|
244
|
+
) {
|
|
243
245
|
constructor() {
|
|
244
246
|
super();
|
|
245
247
|
let hadMouseDown = false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-table",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.2",
|
|
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": "1.0.0-rc.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.0.0-rc.2"
|
|
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-table",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "436dd8d9fff81481feb88f06b461167c98dac91a"
|
|
45
45
|
}
|