@momentum-design/components 0.0.26 → 0.0.28
Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,9 @@ import { LitElement } from 'lit';
|
|
3
3
|
* Core Component class to ultimately be inherited by all Web Components within
|
4
4
|
* this package.
|
5
5
|
*
|
6
|
+
* LitElement defines class and style automatically to allow passing in styling
|
7
|
+
* overrides. We are keeping those to allow for further customization.
|
8
|
+
*
|
6
9
|
* @public
|
7
10
|
*/
|
8
11
|
declare class Component extends LitElement {
|
@@ -5,6 +5,9 @@ const lit_1 = require("lit");
|
|
5
5
|
* Core Component class to ultimately be inherited by all Web Components within
|
6
6
|
* this package.
|
7
7
|
*
|
8
|
+
* LitElement defines class and style automatically to allow passing in styling
|
9
|
+
* overrides. We are keeping those to allow for further customization.
|
10
|
+
*
|
8
11
|
* @public
|
9
12
|
*/
|
10
13
|
class Component extends lit_1.LitElement {
|
package/package.json
CHANGED