wj-elements 0.1.93 → 0.1.95
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/dist/wje-routerx.js +2 -1
- package/package.json +1 -1
package/dist/wje-routerx.js
CHANGED
|
@@ -1529,7 +1529,8 @@ class Routerx extends WJElement {
|
|
|
1529
1529
|
obj.component = () => import(attributeValue);
|
|
1530
1530
|
} else {
|
|
1531
1531
|
if (attributeName !== "shadow") {
|
|
1532
|
-
|
|
1532
|
+
const camelCase = attributeName.replace(/-([a-z])/g, (g) => g[1].toUpperCase());
|
|
1533
|
+
obj[camelCase] = attributeValue;
|
|
1533
1534
|
}
|
|
1534
1535
|
}
|
|
1535
1536
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wj-elements",
|
|
3
3
|
"description": "WebJET Elements is a modern set of user interface tools harnessing the power of web components designed to simplify web application development.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.95",
|
|
5
5
|
"homepage": "https://github.com/lencys/wj-elements",
|
|
6
6
|
"author": "Lukáš Ondrejček <lukas.ondrejcek@gmail.com>",
|
|
7
7
|
"license": "MIT",
|