dv-web-components 1.0.4 → 1.0.5

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.
@@ -49,7 +49,7 @@ template.innerHTML = `
49
49
  </div>
50
50
  `;
51
51
 
52
- class AppCard extends HTMLElement {
52
+ export class AppCard extends HTMLElement {
53
53
  constructor() {
54
54
  super();
55
55
  this.attachShadow({ mode: 'open' });
@@ -1,3 +1,2 @@
1
- declare const template: HTMLTemplateElement;
2
- declare class AppCard extends HTMLElement {
1
+ export class AppCard extends HTMLElement {
3
2
  }
@@ -1,5 +1,6 @@
1
1
  export const AppAlert: import("@lit/react").ReactWebComponent<AppAlertElement, {
2
2
  onClose: string;
3
3
  }>;
4
- export const AppCard: import("@lit/react").ReactWebComponent<HTMLElement, {}>;
4
+ export const AppCard: import("@lit/react").ReactWebComponent<AppCardElement, {}>;
5
5
  import { AppAlert as AppAlertElement } from '../alert-component/index.js';
6
+ import { AppCard as AppCardElement } from '../card-component/index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dv-web-components",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Librería de Web Components nativos y accesibles",
5
5
  "type": "module",
6
6
  "main": "./index.js",