@navservice/web-components 1.3.0 → 1.4.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 +11 -0
- package/build/lib/index.d.ts +11 -0
- package/build/lib/index.js +1 -0
- package/package.json +5 -1
package/build/es/index.d.ts
CHANGED
|
@@ -1,2 +1,13 @@
|
|
|
1
1
|
import './index.css';
|
|
2
|
+
import "./index.d.ts";
|
|
3
|
+
import { MyElement } from './my-element';
|
|
2
4
|
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,2 +1,13 @@
|
|
|
1
1
|
import './index.css';
|
|
2
|
+
import "./index.d.ts";
|
|
3
|
+
import { MyElement } from './my-element';
|
|
2
4
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@navservice/web-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Service de autenticação de usuários unificado",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./build/lib/index.js",
|
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
"files": [
|
|
17
17
|
"build"
|
|
18
18
|
],
|
|
19
|
+
"sideEffects": [
|
|
20
|
+
"./build/es/index.css",
|
|
21
|
+
"./build/lib/index.css"
|
|
22
|
+
],
|
|
19
23
|
"publishConfig": {
|
|
20
24
|
"access": "public",
|
|
21
25
|
"provenance": false
|