fix(core): update

This commit is contained in:
2023-05-07 20:56:08 +02:00
parent 333e991231
commit 467b0d3011
9 changed files with 214 additions and 212 deletions

View File

@ -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'
}

View File

@ -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) {

View File

@ -16,5 +16,5 @@ export const plugins = {
smartdelay: allPlugins.smartdelay,
smartpromise: allPlugins.smartpromise,
SweetScroll: allPlugins.SweetScroll,
smartstate: allPlugins.smartstate
smartstate: allPlugins.smartstate,
};