@navservice/web-components 1.4.0 → 1.6.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.
- package/build/es/index.d.ts +0 -11
- package/build/lib/index.d.ts +0 -11
- package/build/lib/index.js +1 -2
- package/package.json +3 -1
package/build/es/index.d.ts
CHANGED
|
@@ -1,13 +1,2 @@
|
|
|
1
1
|
import './index.css';
|
|
2
|
-
import "./index.d.ts";
|
|
3
|
-
import { MyElement } from './my-element';
|
|
4
2
|
export * from './my-element';
|
|
5
|
-
declare global {
|
|
6
|
-
namespace JSX {
|
|
7
|
-
interface IntrinsicElements {
|
|
8
|
-
'my-element': Partial<MyElement> & {
|
|
9
|
-
ref?: any;
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}
|
package/build/lib/index.d.ts
CHANGED
|
@@ -1,13 +1,2 @@
|
|
|
1
1
|
import './index.css';
|
|
2
|
-
import "./index.d.ts";
|
|
3
|
-
import { MyElement } from './my-element';
|
|
4
2
|
export * from './my-element';
|
|
5
|
-
declare global {
|
|
6
|
-
namespace JSX {
|
|
7
|
-
interface IntrinsicElements {
|
|
8
|
-
'my-element': Partial<MyElement> & {
|
|
9
|
-
ref?: any;
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}
|
package/build/lib/index.js
CHANGED
|
@@ -620,12 +620,11 @@ class MyElement extends lit_element_i {
|
|
|
620
620
|
;// CONCATENATED MODULE: ./src/index.ts
|
|
621
621
|
|
|
622
622
|
|
|
623
|
-
|
|
624
|
-
|
|
625
623
|
if (!customElements.get('my-element')) {
|
|
626
624
|
customElements.define('my-element', MyElement);
|
|
627
625
|
}
|
|
628
626
|
|
|
627
|
+
|
|
629
628
|
return __webpack_exports__;
|
|
630
629
|
})()
|
|
631
630
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@navservice/web-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Service de autenticação de usuários unificado",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./build/lib/index.js",
|
|
@@ -17,6 +17,8 @@
|
|
|
17
17
|
"build"
|
|
18
18
|
],
|
|
19
19
|
"sideEffects": [
|
|
20
|
+
"./build/es/index.js",
|
|
21
|
+
"./build/lib/index.js",
|
|
20
22
|
"./build/es/index.css",
|
|
21
23
|
"./build/lib/index.css"
|
|
22
24
|
],
|