fix(build): update dev and runtime dependencies, export additional lit directives, switch test export to default, convert class properties to accessors, and update npmextra configuration
This commit is contained in:
@@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@design.estate/dees-element',
|
||||
version: '2.1.3',
|
||||
version: '2.1.4',
|
||||
description: 'A library for creating custom elements extending the lit element class with additional functionalities.'
|
||||
}
|
||||
|
||||
@@ -3,13 +3,13 @@ import * as plugins from './plugins.js';
|
||||
export class DeesElement extends plugins.lit.LitElement {
|
||||
// INSTANCE
|
||||
@plugins.lit.property({ type: Boolean })
|
||||
public goBright: boolean = false;
|
||||
public accessor goBright: boolean = false;
|
||||
|
||||
// domtools
|
||||
public domtoolsPromise: Promise<plugins.domtools.DomTools>;
|
||||
|
||||
@plugins.lit.property()
|
||||
domtools?: plugins.domtools.DomTools;
|
||||
public accessor domtools: plugins.domtools.DomTools;
|
||||
|
||||
public rxSubscriptions: plugins.smartrx.rxjs.Subscription[] = [];
|
||||
private themeSubscription: plugins.smartrx.rxjs.Subscription;
|
||||
|
||||
@@ -6,4 +6,6 @@ export * from './classes.subscribedirective.js';
|
||||
export { subscribeWithTemplate } from './classes.subscribewithtemplate.js';
|
||||
|
||||
export { until } from 'lit/directives/until.js';
|
||||
export { asyncAppend } from 'lit/directives/async-append.js';
|
||||
export { asyncAppend } from 'lit/directives/async-append.js';
|
||||
export { keyed } from 'lit/directives/keyed.js';
|
||||
export { repeat } from 'lit/directives/repeat.js';
|
||||
Reference in New Issue
Block a user