fix(core): update
This commit is contained in:
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@designestate/dees-domtools',
|
||||
version: '2.0.30',
|
||||
version: '2.0.31',
|
||||
description: 'tools to simplify complex css structures'
|
||||
}
|
||||
|
@ -40,7 +40,10 @@ export const styles = html`
|
||||
* a basic setup for elements
|
||||
* makes sure everything is in check
|
||||
*/
|
||||
export const setup = async (elementArg?: LitElement, optionsArg: IDomToolsContructorOptions = {}): Promise<DomTools> => {
|
||||
export const setup = async (
|
||||
elementArg?: LitElement,
|
||||
optionsArg: IDomToolsContructorOptions = {}
|
||||
): Promise<DomTools> => {
|
||||
const domTools = await DomTools.setupDomTools(optionsArg);
|
||||
|
||||
if (elementArg) {
|
||||
|
@ -16,5 +16,5 @@ export const plugins = {
|
||||
smartdelay: allPlugins.smartdelay,
|
||||
smartpromise: allPlugins.smartpromise,
|
||||
SweetScroll: allPlugins.SweetScroll,
|
||||
smartstate: allPlugins.smartstate
|
||||
smartstate: allPlugins.smartstate,
|
||||
};
|
||||
|
Reference in New Issue
Block a user