@covalent/components 11.0.0-beta.2 → 11.0.0-beta.3

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.
@@ -0,0 +1,3 @@
1
+ export declare const MAT_ICON_LIST: string[];
2
+ export declare const COV_ICON_LIST: string[];
3
+ export default COV_ICON_LIST;
@@ -0,0 +1,13 @@
1
+ import { LitElement } from 'lit';
2
+ import './icon.js';
3
+ import '../typography/typography.js';
4
+ export declare class CovalentIconDemo extends LitElement {
5
+ static styles: import("lit").CSSResult[];
6
+ render(): import("lit-html").TemplateResult<1>;
7
+ }
8
+ declare global {
9
+ interface HTMLElementTagNameMap {
10
+ 'cv-icon-demo': CovalentIconDemo;
11
+ }
12
+ }
13
+ export default CovalentIconDemo;
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@covalent/components",
3
- "version": "11.0.0-beta.2",
3
+ "version": "11.0.0-beta.3",
4
4
  "description": "a catalog of material components for covalent",
5
+ "type": "module",
5
6
  "main": "./index.js",
6
7
  "module": "./index.mjs",
7
8
  "types": "./index.d.ts",