Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
333e991231 | |||
94c6c5a525 | |||
bb64a8ecac | |||
a4a26e44aa | |||
f350905907 | |||
a90e326f5e | |||
7c9aef342d | |||
99eab4e35f |
18
package.json
18
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@designestate/dees-domtools",
|
"name": "@designestate/dees-domtools",
|
||||||
"version": "2.0.26",
|
"version": "2.0.30",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "tools to simplify complex css structures",
|
"description": "tools to simplify complex css structures",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@ -18,23 +18,23 @@
|
|||||||
"@gitzone/tsbundle": "^2.0.6",
|
"@gitzone/tsbundle": "^2.0.6",
|
||||||
"@gitzone/tstest": "^1.0.72",
|
"@gitzone/tstest": "^1.0.72",
|
||||||
"@pushrocks/tapbundle": "^5.0.4",
|
"@pushrocks/tapbundle": "^5.0.4",
|
||||||
"@types/node": "^18.6.3"
|
"@types/node": "^18.15.11"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apiglobal/typedrequest": "^2.0.8",
|
"@apiglobal/typedrequest": "^2.0.8",
|
||||||
"@designestate/dees-comms": "^1.0.22",
|
"@designestate/dees-comms": "^1.0.22",
|
||||||
"@pushrocks/lik": "^6.0.0",
|
"@pushrocks/lik": "^6.0.2",
|
||||||
"@pushrocks/smartdelay": "^2.0.13",
|
"@pushrocks/smartdelay": "^3.0.1",
|
||||||
"@pushrocks/smartjson": "^5.0.5",
|
"@pushrocks/smartjson": "^5.0.5",
|
||||||
"@pushrocks/smartpromise": "^3.1.7",
|
"@pushrocks/smartpromise": "^4.0.0",
|
||||||
"@pushrocks/smartrouter": "^1.0.12",
|
"@pushrocks/smartrouter": "^1.0.14",
|
||||||
"@pushrocks/smartrx": "^3.0.0",
|
"@pushrocks/smartrx": "^3.0.0",
|
||||||
"@pushrocks/smartstate": "^2.0.0",
|
"@pushrocks/smartstate": "^2.0.4",
|
||||||
"@pushrocks/smarturl": "^3.0.5",
|
"@pushrocks/smarturl": "^3.0.5",
|
||||||
"@pushrocks/webrequest": "^3.0.9",
|
"@pushrocks/webrequest": "^3.0.21",
|
||||||
"@pushrocks/websetup": "^3.0.16",
|
"@pushrocks/websetup": "^3.0.16",
|
||||||
"@pushrocks/webstore": "^2.0.5",
|
"@pushrocks/webstore": "^2.0.5",
|
||||||
"lit": "^2.2.8",
|
"lit": "^2.7.1",
|
||||||
"sweet-scroll": "^4.0.0"
|
"sweet-scroll": "^4.0.0"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
|
1674
pnpm-lock.yaml
generated
1674
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@designestate/dees-domtools',
|
name: '@designestate/dees-domtools',
|
||||||
version: '2.0.26',
|
version: '2.0.30',
|
||||||
description: 'tools to simplify complex css structures'
|
description: 'tools to simplify complex css structures'
|
||||||
}
|
}
|
||||||
|
@ -152,9 +152,9 @@ export class DomTools {
|
|||||||
public async setExternalScript(scriptLinkArg: string) {
|
public async setExternalScript(scriptLinkArg: string) {
|
||||||
await this.domReady.promise;
|
await this.domReady.promise;
|
||||||
const done = plugins.smartpromise.defer();
|
const done = plugins.smartpromise.defer();
|
||||||
const script = document.createElement('script')
|
const script = document.createElement('script');
|
||||||
script.src = scriptLinkArg;
|
script.src = scriptLinkArg;
|
||||||
script.addEventListener('load', function() {
|
script.addEventListener('load', function () {
|
||||||
done.resolve();
|
done.resolve();
|
||||||
});
|
});
|
||||||
const parentNode = document.head || document.body;
|
const parentNode = document.head || document.body;
|
||||||
|
@ -20,19 +20,19 @@ export const scrollBarStyles: string = (() => {
|
|||||||
})();
|
})();
|
||||||
|
|
||||||
export const globalBaseStyles: string = css`
|
export const globalBaseStyles: string = css`
|
||||||
/* global material font */
|
/*
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Material Icons';
|
font-family: 'Material Icons';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
src: url(https://fonts.gstatic.com/s/materialicons/v42/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2)
|
src: url(https://fonts.gstatic.com/s/materialicons/v42/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2)
|
||||||
format('woff2');
|
format('woff2');
|
||||||
}
|
} */
|
||||||
|
|
||||||
/* global body styles */
|
/* global body styles */
|
||||||
body {
|
body {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
font-family: 'Roboto', sans-serif;
|
font-family: 'Inter', sans-serif;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ export const staticStyles = css`
|
|||||||
|
|
||||||
:host {
|
:host {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
font-family: 'Roboto', sans-serif;
|
font-family: 'Inter', sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
${unsafeCSS(scrollBarStyles)}
|
${unsafeCSS(scrollBarStyles)}
|
||||||
@ -29,7 +29,7 @@ export const styles = html`
|
|||||||
}
|
}
|
||||||
|
|
||||||
:host {
|
:host {
|
||||||
font-family: 'Roboto', sans-serif;
|
font-family: 'Inter', sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
${scrollBarStyles}
|
${scrollBarStyles}
|
||||||
|
Reference in New Issue
Block a user