Compare commits

...

8 Commits

Author SHA1 Message Date
fced2efcbd 1.0.85 2021-03-10 16:57:26 +00:00
83fe1d62e7 fix(core): update 2021-03-10 16:57:25 +00:00
78bce9600c 1.0.84 2020-12-07 23:23:02 +00:00
2860b5b6e0 fix(core): update 2020-12-07 23:23:02 +00:00
b802935d27 1.0.83 2020-12-07 21:54:54 +00:00
b73a702b74 fix(core): update 2020-12-07 21:54:53 +00:00
b3deb31ab5 1.0.82 2020-12-07 05:25:26 +00:00
6ea5482e3d fix(core): update 2020-12-07 05:25:25 +00:00
4 changed files with 15 additions and 11 deletions

14
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-domtools",
"version": "1.0.81",
"version": "1.0.85",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -1949,9 +1949,9 @@
}
},
"@pushrocks/smartrouter": {
"version": "1.0.6",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartrouter/-/smartrouter-1.0.6.tgz",
"integrity": "sha512-aKhZOkHsqOUiPFA3+61vkZvInGb1lQ/68FIfT7dBrrFdHXXPo6tY8cm+GnT4ELUnXLpZBmnNm2rxLa22z6j4dg==",
"version": "1.0.7",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartrouter/-/smartrouter-1.0.7.tgz",
"integrity": "sha512-ns4ye4uyzjpFUDr/vciOZog4y5QDsFBxwnYmXkSMxCA7hwiL0Fn64lvCexjez05t6Gz54ge5yflWSvyv63X0kA==",
"requires": {
"path-to-regexp": "^6.1.0"
}
@ -2134,9 +2134,9 @@
}
},
"@pushrocks/websetup": {
"version": "3.0.11",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fwebsetup/-/websetup-3.0.11.tgz",
"integrity": "sha512-5nQqrQSiP5/WUv5pLsmjYAkfGosi2DqEH1mNrliOTr6iA8syGQ7bOQk4JY7jApjk64wO5L7l8qBGvKJuZ+p9Dw==",
"version": "3.0.13",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fwebsetup/-/websetup-3.0.13.tgz",
"integrity": "sha512-H2v0vaMfh7s/r7gVgSvdOXJHfuPW5TvZ1ZjEH3YpNIp21kR1W8VFn+Vr5wdCcZ5jf2zqfdu0FFUS257f3lfIIA==",
"requires": {
"@pushrocks/smartdelay": "^2.0.10",
"@pushrocks/smartpromise": "^3.1.3",

View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-domtools",
"version": "1.0.81",
"version": "1.0.85",
"private": false,
"description": "tools to simplify complex css structures",
"main": "dist_ts/index.js",
@ -27,11 +27,11 @@
"@pushrocks/lik": "^4.0.20",
"@pushrocks/smartdelay": "^2.0.10",
"@pushrocks/smartpromise": "^3.1.3",
"@pushrocks/smartrouter": "^1.0.6",
"@pushrocks/smartrouter": "^1.0.7",
"@pushrocks/smartrx": "^2.0.19",
"@pushrocks/smartstate": "^1.0.21",
"@pushrocks/webrequest": "^2.0.13",
"@pushrocks/websetup": "^3.0.11",
"@pushrocks/websetup": "^3.0.13",
"@pushrocks/webstore": "^1.0.16",
"lit-element": "^2.4.0",
"sweet-scroll": "^4.0.0"

View File

@ -11,10 +11,13 @@ export const styles = html`
<style>
* {
transition: background 0.1s, color 0.1s;
font-family: 'Roboto', sans-serif;
box-sizing: border-box;
}
:host {
font-family: 'Roboto', sans-serif;
}
${scrollBarStyles}
</style>
`;

View File

@ -7,6 +7,7 @@ import * as css from './domtools.css';
export { css, breakpoints, elementBasic };
export { DomTools } from './domtools.classes.domtools';
export { TypedRequest } from '@apiglobal/typedrequest';
export { IWebSetupConstructorOptions } from '@pushrocks/websetup';
import * as allPlugins from './domtools.plugins';