Compare commits
93 Commits
Author | SHA1 | Date | |
---|---|---|---|
5ce92130b4 | |||
b0774b0cba | |||
c44e19f3e0 | |||
07f09b4457 | |||
10ea4ca265 | |||
dfd61ce744 | |||
3093ccd4f6 | |||
eb1ac75e49 | |||
0683378e39 | |||
25a813d35f | |||
916fd48858 | |||
90bb1eb432 | |||
126e0fc900 | |||
a20b321bb0 | |||
33721f86ab | |||
987c821eed | |||
b0bed44810 | |||
0a7da5132d | |||
b0bb8e9e2b | |||
1f346e24db | |||
c34cca7eb6 | |||
15e58fbf5d | |||
2383e6ec21 | |||
5820bf81f6 | |||
9c6cfa3603 | |||
cc934a9c0e | |||
16fd982c57 | |||
843c873254 | |||
de1532627d | |||
618b6c5ba0 | |||
185b8a3947 | |||
77dddfc300 | |||
bb6b4788b8 | |||
c223038b39 | |||
bd4fab872f | |||
385cab0b1b | |||
b6620120e9 | |||
20e2149fd9 | |||
af2eaf010f | |||
fdfc7b4963 | |||
28be3f3095 | |||
3b946d7700 | |||
20e14bf14d | |||
23a9ea9dfc | |||
a64af6f0ff | |||
e456df08d1 | |||
fd758e5ec1 | |||
c45eac1796 | |||
5530642c3e | |||
6b8bd28057 | |||
1ba907d2cc | |||
6a7da41c98 | |||
b67a602f78 | |||
fa093e6f5b | |||
29f26d2ea7 | |||
77fe34ebac | |||
9ccd2fb2cf | |||
02f67c64df | |||
31dd8aa258 | |||
5f66725c6b | |||
89af82d2c4 | |||
98dab6c683 | |||
805ce5ed88 | |||
6f30b7618d | |||
42fd443ad8 | |||
b2cb49a314 | |||
d580df7e0a | |||
68ea3052fd | |||
252d56a321 | |||
497e6d1c11 | |||
f1949bdc5d | |||
d36d4a921a | |||
e6194045d1 | |||
6147e5f02f | |||
0e64232e26 | |||
fa66a51612 | |||
b26cc004c1 | |||
f923802ba1 | |||
cf589d727f | |||
b6720aef9d | |||
ce945173ec | |||
0c016ea6d9 | |||
467b0d3011 | |||
333e991231 | |||
94c6c5a525 | |||
bb64a8ecac | |||
a4a26e44aa | |||
f350905907 | |||
a90e326f5e | |||
7c9aef342d | |||
99eab4e35f | |||
6d12aed53e | |||
29bcd17350 |
@ -12,29 +12,25 @@ stages:
|
||||
- release
|
||||
- metadata
|
||||
|
||||
before_script:
|
||||
- pnpm install -g pnpm
|
||||
- pnpm install -g @shipzone/npmci
|
||||
- npmci npm prepare
|
||||
|
||||
# ====================
|
||||
# security stage
|
||||
# ====================
|
||||
# ====================
|
||||
# security stage
|
||||
# ====================
|
||||
mirror:
|
||||
stage: security
|
||||
script:
|
||||
- npmci git mirror
|
||||
only:
|
||||
- tags
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
|
||||
auditProductionDependencies:
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
stage: security
|
||||
script:
|
||||
- npmci npm prepare
|
||||
- npmci command npm install --production --ignore-scripts
|
||||
- npmci command npm config set registry https://registry.npmjs.org
|
||||
- npmci command npm audit --audit-level=high --only=prod --production
|
||||
- npmci command npm config set registry https://registry.npmjs.org
|
||||
- npmci command pnpm audit --audit-level=high --prod
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
allow_failure: true
|
||||
|
||||
@ -42,11 +38,10 @@ auditDevDependencies:
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
stage: security
|
||||
script:
|
||||
- npmci npm prepare
|
||||
- npmci command npm install --ignore-scripts
|
||||
- npmci command npm config set registry https://registry.npmjs.org
|
||||
- npmci command npm audit --audit-level=high --only=dev
|
||||
- npmci command pnpm audit --audit-level=high --dev
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
allow_failure: true
|
||||
|
||||
@ -57,7 +52,6 @@ auditDevDependencies:
|
||||
testStable:
|
||||
stage: test
|
||||
script:
|
||||
- npmci npm prepare
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci npm test
|
||||
@ -68,10 +62,9 @@ testStable:
|
||||
testBuild:
|
||||
stage: test
|
||||
script:
|
||||
- npmci npm prepare
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci command npm run build
|
||||
- npmci npm build
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- docker
|
||||
@ -97,10 +90,9 @@ codequality:
|
||||
only:
|
||||
- tags
|
||||
script:
|
||||
- npmci command npm install -g tslint typescript
|
||||
- npmci command npm install -g typescript
|
||||
- npmci npm prepare
|
||||
- npmci npm install
|
||||
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
@ -120,11 +112,9 @@ trigger:
|
||||
pages:
|
||||
stage: metadata
|
||||
script:
|
||||
- npmci node install lts
|
||||
- npmci command npm install -g @gitzone/tsdoc
|
||||
- npmci npm prepare
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci command tsdoc
|
||||
- npmci command npm run buildDocs
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
|
24
.vscode/launch.json
vendored
24
.vscode/launch.json
vendored
@ -2,28 +2,10 @@
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "current file",
|
||||
"type": "node",
|
||||
"command": "npm test",
|
||||
"name": "Run npm test",
|
||||
"request": "launch",
|
||||
"args": [
|
||||
"${relativeFile}"
|
||||
],
|
||||
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
||||
"cwd": "${workspaceRoot}",
|
||||
"protocol": "inspector",
|
||||
"internalConsoleOptions": "openOnSessionStart"
|
||||
},
|
||||
{
|
||||
"name": "test.ts",
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"args": [
|
||||
"test/test.ts"
|
||||
],
|
||||
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
||||
"cwd": "${workspaceRoot}",
|
||||
"protocol": "inspector",
|
||||
"internalConsoleOptions": "openOnSessionStart"
|
||||
"type": "node-terminal"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
358
changelog.md
Normal file
358
changelog.md
Normal file
@ -0,0 +1,358 @@
|
||||
# Changelog
|
||||
|
||||
## 2025-02-01 - 2.3.2 - fix(scroller)
|
||||
Rename method from scrollToElement to toElement for consistency
|
||||
|
||||
- Updated method name in Scroller class for better coherence with existing naming conventions.
|
||||
|
||||
## 2025-01-31 - 2.3.1 - fix(scroller)
|
||||
Removed passive option from scroll event listener
|
||||
|
||||
- The 'passive: true' option was removed from the native scroll event listener attachment.
|
||||
|
||||
## 2025-01-31 - 2.3.0 - feat(scroller)
|
||||
Enhance Scroller class with callback execution and adaptive scroll listener
|
||||
|
||||
- Added support for executing scroll callbacks in the Scroller class.
|
||||
- Integrated adaptive scrolling mechanism using Lenis, with native smooth scrolling detection.
|
||||
- Ensured seamless switching between native scroll listener and Lenis scroll listener.
|
||||
|
||||
## 2025-01-31 - 2.2.0 - feat(core)
|
||||
Enhance scrolling capabilities by integrating Scroller class and adding lenis support
|
||||
|
||||
- Replaced SweetScroll setup in domtools.classes.domtools.ts with Scroller class.
|
||||
- Moved SweetScroll initialization and methods to new Scroller class.
|
||||
- Added lenis support in the Scroller class for enhanced scrolling capabilities.
|
||||
- Updated dev and dependencies versions in package.json.
|
||||
|
||||
## 2025-01-09 - 2.1.1 - fix(themamanager)
|
||||
Fixed automatic global theme change subscription for background updates.
|
||||
|
||||
- Corrected the logic for updating the document's background color upon theme changes using themeObservable subscription.
|
||||
|
||||
## 2025-01-09 - 2.1.0 - feat(themeManager)
|
||||
Exposed method to enable automatic global theme change.
|
||||
|
||||
- Enable easier application of dark and bright themes by exposing a method.
|
||||
- Updated devDependencies and dependencies in package.json to latest versions.
|
||||
|
||||
## 2024-10-21 - 2.0.65 - fix(ThemeManager)
|
||||
Refactor ThemeManager class to separate global style setting logic
|
||||
|
||||
- Moved logic to set global styles into a dedicated function setGlobalStylesOnPurpose in ThemeManager.
|
||||
|
||||
## 2024-10-06 - 2.0.64 - fix(pluginexports)
|
||||
Add missing import for smartrouter in pluginexports.
|
||||
|
||||
- Fixed a missing import for smartrouter in ts/domtools.pluginexports.ts.
|
||||
|
||||
## 2024-10-06 - 2.0.63 - fix(dependencies)
|
||||
Update @push.rocks/smartrouter to version ^1.3.2 for better compatibility
|
||||
|
||||
- Updated @push.rocks/smartrouter from version ^1.2.1 to ^1.3.2 in package.json.
|
||||
|
||||
## 2024-10-06 - 2.0.62 - fix(dependencies)
|
||||
Update dependencies to resolve potential issues and improve stability
|
||||
|
||||
|
||||
## 2024-10-04 - 2.0.61 - fix(core)
|
||||
Correct import statement for SweetScroll.
|
||||
|
||||
- Fix import syntax for SweetScroll in domtools.pluginexports.ts
|
||||
|
||||
## 2024-10-02 - 2.0.60 - fix(dependencies)
|
||||
Update dependencies to latest versions
|
||||
|
||||
- Bump @git.zone/tsbuild version from 2.1.82 to 2.1.84
|
||||
- Bump @push.rocks/tapbundle version from 5.0.23 to 5.3.0
|
||||
- Bump @types/node version from 20.14.9 to 22.7.4
|
||||
- Bump @api.global/typedrequest version from 3.0.30 to 3.0.32
|
||||
- Bump @push.rocks/smartstate version from 2.0.17 to 2.0.18
|
||||
- Bump lit version from 3.1.4 to 3.2.0
|
||||
|
||||
## 2024-10-02 - 2.0.59 - fix(core)
|
||||
Refactor plugin exports to improve modularity
|
||||
|
||||
- Refactored the plugin exports to be more modular and organized.
|
||||
- Replaced redundant plugin object definition in ts/index.ts with a simpler import and export pattern.
|
||||
|
||||
## 2024-07-01 - 2.0.58 - fix(dependencies)
|
||||
Update dependencies and correct font family in styles
|
||||
|
||||
- Updated @git.zone/tsbuild to ^2.1.82
|
||||
- Updated @git.zone/tstest to ^1.0.90
|
||||
- Updated @push.rocks/tapbundle to ^5.0.23
|
||||
- Updated @types/node to ^20.14.9
|
||||
- Updated @api.global/typedrequest to ^3.0.30
|
||||
- Updated @design.estate/dees-comms to ^1.0.27
|
||||
- Updated @push.rocks/lik to ^6.0.15
|
||||
- Updated @push.rocks/smartjson to ^5.0.20
|
||||
- Updated @push.rocks/smartpromise to ^4.0.4
|
||||
- Updated @push.rocks/webrequest to ^3.0.37
|
||||
- Updated @push.rocks/webstore to ^2.0.20
|
||||
- Updated lit to ^3.1.4
|
||||
- Updated default font family to 'Geist Sans', 'Inter', sans-serif
|
||||
|
||||
## 2024-04-20 - 2.0.57 - Documentation
|
||||
Update to project documentation
|
||||
|
||||
- Updated existing documentation to reflect recent changes
|
||||
|
||||
## 2023-10-23 - 2.0.42...2.0.55 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2023-10-07 - 2.0.41...2.0.51 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2023-09-17 - 2.0.40 - Core
|
||||
Fixes in core functionality
|
||||
|
||||
- Fix(core): update
|
||||
|
||||
## 2023-08-07 - 2.0.36...2.0.38 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2023-04-05 - 2.0.28...2.0.30 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2023-01-07 - 2.0.26...2.0.27 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
|
||||
## 2022-12-31 - 2.0.24...2.0.25 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
|
||||
## 2022-08-01 - 2.0.22...2.0.23 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
|
||||
## 2022-05-01 - 2.0.19...2.0.21 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2022-04-22 - 2.0.18...2.0.19 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
|
||||
## 2022-04-21 - 2.0.10...2.0.17 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2022-03-18 - 2.0.0 - Core
|
||||
Major release
|
||||
|
||||
- Fix(core): update
|
||||
|
||||
## 2021-11-21 - 1.0.98...1.0.99 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
|
||||
## 2021-09-16 - 1.0.94...1.0.95 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
|
||||
## 2021-09-08 - 1.0.91...1.0.93 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2021-09-01 - 1.0.89...1.0.90 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
|
||||
## 2021-08-19 - 1.0.87 - Core
|
||||
Fixes in core functionality
|
||||
|
||||
- Fix(core): update
|
||||
|
||||
## 2021-03-10 - 1.0.84...1.0.86 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-12-07 - 1.0.79...1.0.83 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-11-30 - 1.0.74...1.0.77 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-11-24 - 1.0.66...1.0.70 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-11-23 - 1.0.64...1.0.65 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
|
||||
## 2020-11-06 - 1.0.61...1.0.63 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-10-07 - 1.0.53...1.0.55 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-09-16 - 1.0.49...1.0.52 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-09-13 - 1.0.45...1.0.47 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-09-12 - 1.0.41...1.0.44 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-07-27 - 1.0.38...1.0.40 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-06-28 - 1.0.29...1.0.36 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-06-03 - 1.0.26...1.0.28 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-05-28 - 1.0.21...1.0.25 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-05-27 - 1.0.18...1.0.20 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-05-26 - 1.0.16...1.0.17 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
|
||||
## 2020-05-25 - 1.0.14...1.0.15 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
|
||||
## 2020-05-24 - 1.0.11...1.0.13 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
||||
|
||||
## 2020-05-23 - 1.0.3...1.0.10 - Core
|
||||
Multiple updates and fixes
|
||||
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- Fix(core): update
|
||||
- ...
|
@ -2,17 +2,36 @@
|
||||
"gitzone": {
|
||||
"projectType": "npm",
|
||||
"module": {
|
||||
"githost": "gitlab.com",
|
||||
"gitscope": "designestate",
|
||||
"githost": "code.foss.global",
|
||||
"gitscope": "design.estate",
|
||||
"gitrepo": "dees-domtools",
|
||||
"shortDescription": "tools to simplify complex css structures",
|
||||
"npmPackagename": "@designestate/dees-domtools",
|
||||
"description": "A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.",
|
||||
"npmPackagename": "@design.estate/dees-domtools",
|
||||
"license": "MIT",
|
||||
"projectDomain": "design.estate"
|
||||
"projectDomain": "design.estate",
|
||||
"keywords": [
|
||||
"CSS tools",
|
||||
"web development",
|
||||
"TypeScript support",
|
||||
"CSS structure simplification",
|
||||
"web components",
|
||||
"theme management",
|
||||
"DOM manipulation",
|
||||
"responsive design",
|
||||
"design system",
|
||||
"lit element",
|
||||
"keyboard event handling",
|
||||
"state management",
|
||||
"routing",
|
||||
"performance optimization"
|
||||
]
|
||||
}
|
||||
},
|
||||
"npmci": {
|
||||
"npmGlobalTools": [],
|
||||
"npmAccessLevel": "public"
|
||||
},
|
||||
"tsdoc": {
|
||||
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
|
||||
}
|
||||
}
|
65
package.json
65
package.json
@ -1,8 +1,8 @@
|
||||
{
|
||||
"name": "@designestate/dees-domtools",
|
||||
"version": "2.0.25",
|
||||
"name": "@design.estate/dees-domtools",
|
||||
"version": "2.3.2",
|
||||
"private": false,
|
||||
"description": "tools to simplify complex css structures",
|
||||
"description": "A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.",
|
||||
"main": "dist_ts/index.js",
|
||||
"typings": "dist_ts/index.d.ts",
|
||||
"type": "module",
|
||||
@ -11,29 +11,34 @@
|
||||
"scripts": {
|
||||
"test": "(tstest test/ --web)",
|
||||
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
|
||||
"format": "(gitzone format)"
|
||||
"format": "(gitzone format)",
|
||||
"buildDocs": "tsdoc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gitzone/tsbuild": "^2.1.63",
|
||||
"@gitzone/tsbundle": "^2.0.6",
|
||||
"@gitzone/tstest": "^1.0.72",
|
||||
"@pushrocks/tapbundle": "^5.0.4",
|
||||
"@types/node": "^18.6.3"
|
||||
"@git.zone/tsbuild": "^2.2.1",
|
||||
"@git.zone/tsbundle": "^2.2.5",
|
||||
"@git.zone/tstest": "^1.0.96",
|
||||
"@push.rocks/tapbundle": "^5.5.6",
|
||||
"@types/node": "^22.12.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@apiglobal/typedrequest": "^2.0.8",
|
||||
"@designestate/dees-comms": "^1.0.22",
|
||||
"@pushrocks/lik": "^6.0.0",
|
||||
"@pushrocks/smartdelay": "^2.0.13",
|
||||
"@pushrocks/smartjson": "^5.0.5",
|
||||
"@pushrocks/smartpromise": "^3.1.7",
|
||||
"@pushrocks/smartrouter": "^1.0.12",
|
||||
"@pushrocks/smartrx": "^3.0.0",
|
||||
"@pushrocks/smartstate": "^2.0.0",
|
||||
"@pushrocks/webrequest": "^3.0.9",
|
||||
"@pushrocks/websetup": "^3.0.16",
|
||||
"@pushrocks/webstore": "^2.0.5",
|
||||
"lit": "^2.2.8",
|
||||
"@api.global/typedrequest": "^3.1.10",
|
||||
"@design.estate/dees-comms": "^1.0.27",
|
||||
"@push.rocks/lik": "^6.1.0",
|
||||
"@push.rocks/smartdelay": "^3.0.5",
|
||||
"@push.rocks/smartjson": "^5.0.20",
|
||||
"@push.rocks/smartmarkdown": "^3.0.3",
|
||||
"@push.rocks/smartpromise": "^4.2.2",
|
||||
"@push.rocks/smartrouter": "^1.3.2",
|
||||
"@push.rocks/smartrx": "^3.0.7",
|
||||
"@push.rocks/smartstate": "^2.0.19",
|
||||
"@push.rocks/smartstring": "^4.0.15",
|
||||
"@push.rocks/smarturl": "^3.1.0",
|
||||
"@push.rocks/webrequest": "^3.0.37",
|
||||
"@push.rocks/websetup": "^3.0.19",
|
||||
"@push.rocks/webstore": "^2.0.20",
|
||||
"lenis": "^1.1.20",
|
||||
"lit": "^3.2.1",
|
||||
"sweet-scroll": "^4.0.0"
|
||||
},
|
||||
"files": [
|
||||
@ -50,5 +55,21 @@
|
||||
],
|
||||
"browserslist": [
|
||||
"last 1 chrome versions"
|
||||
],
|
||||
"keywords": [
|
||||
"CSS tools",
|
||||
"web development",
|
||||
"TypeScript support",
|
||||
"CSS structure simplification",
|
||||
"web components",
|
||||
"theme management",
|
||||
"DOM manipulation",
|
||||
"responsive design",
|
||||
"design system",
|
||||
"lit element",
|
||||
"keyboard event handling",
|
||||
"state management",
|
||||
"routing",
|
||||
"performance optimization"
|
||||
]
|
||||
}
|
||||
|
11640
pnpm-lock.yaml
generated
11640
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
1
readme.hints.md
Normal file
1
readme.hints.md
Normal file
@ -0,0 +1 @@
|
||||
|
131
readme.md
131
readme.md
@ -1,39 +1,116 @@
|
||||
# @designestate/dees-domtools
|
||||
# @design.estate/dees-domtools
|
||||
tools to simplify complex css structures
|
||||
|
||||
## Availabililty and Links
|
||||
* [npmjs.org (npm package)](https://www.npmjs.com/package/@designestate/dees-domtools)
|
||||
* [gitlab.com (source)](https://gitlab.com/designestate/dees-domtools)
|
||||
* [github.com (source mirror)](https://github.com/designestate/dees-domtools)
|
||||
* [docs (typedoc)](https://designestate.gitlab.io/dees-domtools/)
|
||||
## Install
|
||||
|
||||
## Status for master
|
||||
To install `@design.estate/dees-domtools`, simply use npm:
|
||||
|
||||
Status Category | Status Badge
|
||||
-- | --
|
||||
GitLab Pipelines | [](https://lossless.cloud)
|
||||
GitLab Pipline Test Coverage | [](https://lossless.cloud)
|
||||
npm | [](https://lossless.cloud)
|
||||
Snyk | [](https://lossless.cloud)
|
||||
TypeScript Support | [](https://lossless.cloud)
|
||||
node Support | [](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||
Code Style | [](https://lossless.cloud)
|
||||
PackagePhobia (total standalone install weight) | [](https://lossless.cloud)
|
||||
PackagePhobia (package size on registry) | [](https://lossless.cloud)
|
||||
BundlePhobia (total size when bundled) | [](https://lossless.cloud)
|
||||
Platform support | [](https://lossless.cloud) [](https://lossless.cloud)
|
||||
```bash
|
||||
npm install --save @design.estate/dees-domtools
|
||||
```
|
||||
|
||||
Ensure your project supports TypeScript and ESM syntax for the best development experience.
|
||||
|
||||
## Usage
|
||||
|
||||
Use TypeScript for best in class intellisense
|
||||
This documentation aims to give you comprehensive guidance on how to utilize `@design.estate/dees-domtools` in your web projects to simplify complex CSS structures. Whether you're building a sophisticated web application or need a more manageable way to handle your CSS, this toolkit offers a variety of features designed to enhance and streamline your workflow. Throughout this guide, we'll cover the installation process, key features, examples, and best practices when working with `@design.estate/dees-domtools`.
|
||||
|
||||
## Contribution
|
||||
Before diving into the examples, please ensure that you've completed the installation step as described above.
|
||||
|
||||
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
||||
### Key Features
|
||||
|
||||
For further information read the linked docs at the top of this readme.
|
||||
- **CSS Simplification**: Tools and utilities designed to abstract and simplify the handling of complex CSS structures.
|
||||
- **Responsive Design Helpers**: Tools for managing responsive designs more easily, with utilities for breakpoints, and adaptable grids.
|
||||
- **Element Utilities**: Simplified interactions with DOM elements, including dynamic style manipulations and more.
|
||||
- **Theme Management**: Simplify the process of theme toggling (dark mode/light mode) in your applications.
|
||||
- **Keyboard Event Handling**: Utilities for managing keyboard events, facilitating better interaction handling.
|
||||
- **External Resources Management**: Easily manage external CSS and JavaScript resources within your project.
|
||||
|
||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||
### Getting Started
|
||||
|
||||
[](https://maintainedby.lossless.com)
|
||||
To get started with `@design.estate/dees-domtools`, you first need to import the modules you intend to use in your project. Here's a simple example to illustrate how to import and use the package:
|
||||
|
||||
```typescript
|
||||
import { DomTools, elementBasic, breakpoints, css } from '@design.estate/dees-domtools';
|
||||
|
||||
// Setting up DomTools for your application
|
||||
const domToolsInstance = await DomTools.setupDomTools();
|
||||
|
||||
// Example: Using elementBasic utilities
|
||||
elementBasic.setup();
|
||||
```
|
||||
|
||||
### Simplifying CSS with CSS Utilities
|
||||
|
||||
The package offers a variety of CSS utilities that simplify the handling of complex CSS structures. Here's how you can use them in your project:
|
||||
|
||||
```typescript
|
||||
import { css } from '@design.estate/dees-domtools';
|
||||
|
||||
// Example: Creating a CSS grid with a specified number of columns and gap size
|
||||
const gridStyles = css.cssGridColumns(3, 10); // 3 columns with a 10px gap
|
||||
```
|
||||
|
||||
### Managing Responsive Design
|
||||
|
||||
Responsive design is critical for modern web development. `@design.estate/dees-domtools` provides utilities to make it easier to manage responsive designs and breakpoints.
|
||||
|
||||
```typescript
|
||||
import { breakpoints } from '@design.estate/dees-domtools';
|
||||
|
||||
// Example: Applying styles for different viewport sizes
|
||||
const tabletStyles = breakpoints.cssForTablet(myCssStyles);
|
||||
const phoneStyles = breakpoints.cssForPhone(myCssStyles);
|
||||
```
|
||||
|
||||
### Theme Management
|
||||
|
||||
Managing themes (such as toggling between dark and light mode) is simplified with the built-in theme management tools.
|
||||
|
||||
```typescript
|
||||
// Toggle between light and dark themes
|
||||
domToolsInstance.themeManager.toggleDarkBright();
|
||||
```
|
||||
|
||||
### Handling Keyboard Events
|
||||
|
||||
Keyboard event handling is made easy with the utilities provided by the toolkit. This can be particularly useful for adding keyboard navigation and shortcuts.
|
||||
|
||||
```typescript
|
||||
import { Keyboard } from '@design.estate/dees-domtools';
|
||||
|
||||
// Initialize keyboard handling
|
||||
const keyboard = new Keyboard(document.body);
|
||||
|
||||
// Bind an event to a specific key combination
|
||||
keyboard.on([Keyboard.Key.Ctrl, Keyboard.Key.S]).subscribe(() => {
|
||||
console.log('Ctrl+S was pressed');
|
||||
});
|
||||
```
|
||||
|
||||
### Best Practices
|
||||
|
||||
- **Organize Your CSS**: Use the provided CSS utilities to structure your styles in a way that makes them easy to maintain and scale.
|
||||
- **Embrace Responsiveness**: Leverage the responsive design helpers to ensure your application looks great on any device.
|
||||
- **Consistent Theme Handling**: Utilize the theme management tools to provide a seamless experience for your users, allowing them to choose their preferred theme.
|
||||
|
||||
By integrating `@design.estate/dees-domtools` into your project, you can leverage a comprehensive suite of utilities designed to simplify complex CSS structures and enhance your web development workflow.
|
||||
|
||||
## License and Legal Information
|
||||
|
||||
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
|
||||
|
||||
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
|
||||
|
||||
### Trademarks
|
||||
|
||||
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
|
||||
|
||||
### Company Information
|
||||
|
||||
Task Venture Capital GmbH
|
||||
Registered at District court Bremen HRB 35230 HB, Germany
|
||||
|
||||
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
|
||||
|
||||
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { expect, tap } from '@pushrocks/tapbundle';
|
||||
import * as domtools from '../ts/index';
|
||||
import { expect, tap } from '@push.rocks/tapbundle';
|
||||
import * as domtools from '../ts/index.js';
|
||||
|
||||
tap.test('first test', async () => {
|
||||
const domtoolsInstance = await domtools.DomTools.setupDomTools();
|
||||
|
@ -1,8 +1,8 @@
|
||||
/**
|
||||
* autocreated commitinfo by @pushrocks/commitinfo
|
||||
* autocreated commitinfo by @push.rocks/commitinfo
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@designestate/dees-domtools',
|
||||
version: '2.0.25',
|
||||
description: 'tools to simplify complex css structures'
|
||||
name: '@design.estate/dees-domtools',
|
||||
version: '2.3.2',
|
||||
description: 'A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.'
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
import * as plugins from './domtools.plugins.js';
|
||||
import { TViewport } from './domtools.css.breakpoints.js';
|
||||
import { type TViewport } from './domtools.css.breakpoints.js';
|
||||
import { Scroller } from './domtools.classes.scroller.js';
|
||||
import { WebSetup } from '@pushrocks/websetup';
|
||||
import { WebSetup } from '@push.rocks/websetup';
|
||||
import { ThemeManager } from './domtools.classes.thememanager.js';
|
||||
import { Keyboard } from './domtools.classes.keyboard.js';
|
||||
|
||||
@ -89,12 +89,11 @@ export class DomTools {
|
||||
typedrequest: plugins.typedrequest,
|
||||
smartdelay: plugins.smartdelay,
|
||||
smartjson: plugins.smartjson,
|
||||
smarturl: plugins.smarturl,
|
||||
};
|
||||
|
||||
public deesComms = new plugins.deesComms.DeesComms();
|
||||
public scroller = new plugins.SweetScroll({
|
||||
/* some options */
|
||||
}); // TODO: switch to scroller class
|
||||
public scroller = new Scroller(this);
|
||||
public themeManager = new ThemeManager(this);
|
||||
public keyboard = new Keyboard(document.body);
|
||||
|
||||
@ -148,12 +147,12 @@ export class DomTools {
|
||||
* allows to set global styles
|
||||
* @param stylesText the css text you want to set
|
||||
*/
|
||||
public async setExternalScript(scriptLinkArg: string) {
|
||||
public async setExternalScript(scriptLinkArg: string) {
|
||||
await this.domReady.promise;
|
||||
const done = plugins.smartpromise.defer();
|
||||
const script = document.createElement('script')
|
||||
const script = document.createElement('script');
|
||||
script.src = scriptLinkArg;
|
||||
script.addEventListener('load', function() {
|
||||
script.addEventListener('load', function () {
|
||||
done.resolve();
|
||||
});
|
||||
const parentNode = document.head || document.body;
|
||||
|
@ -1,5 +1,175 @@
|
||||
import type { DomTools } from './domtools.classes.domtools.js';
|
||||
import * as plugins from './domtools.plugins.js';
|
||||
|
||||
export class Scroller {
|
||||
// TODO: move sweet scroll over to here;
|
||||
}
|
||||
public domtoolsInstance: DomTools;
|
||||
|
||||
// Array to store scroll callback functions.
|
||||
private scrollCallbacks: Array<() => void> = [];
|
||||
|
||||
// Lenis instance (if activated) or null.
|
||||
private lenisInstance: plugins.Lenis | null = null;
|
||||
|
||||
// Bound handlers to allow removal from event listeners.
|
||||
private handleNativeScroll = (event: Event): void => {
|
||||
this.executeScrollCallbacks();
|
||||
};
|
||||
|
||||
private handleLenisScroll = (info: any): void => {
|
||||
this.executeScrollCallbacks();
|
||||
};
|
||||
|
||||
constructor(domtoolsInstanceArg: DomTools) {
|
||||
this.domtoolsInstance = domtoolsInstanceArg;
|
||||
// Attach the native scroll listener by default.
|
||||
this.attachNativeScrollListener();
|
||||
}
|
||||
|
||||
private sweetScroller = new plugins.SweetScroll({});
|
||||
|
||||
/**
|
||||
* Scrolls to a given element with options.
|
||||
*/
|
||||
public async toElement(
|
||||
elementArg: HTMLElement,
|
||||
optionsArg: Parameters<typeof this.sweetScroller.toElement>[1]
|
||||
) {
|
||||
this.sweetScroller.toElement(elementArg, optionsArg);
|
||||
await plugins.smartdelay.delayFor(optionsArg.duration);
|
||||
}
|
||||
|
||||
/**
|
||||
* Detects whether native smooth scrolling is enabled.
|
||||
*/
|
||||
public async detectNativeSmoothScroll() {
|
||||
const done = plugins.smartpromise.defer<boolean>();
|
||||
const sampleSize = 100;
|
||||
const acceptableDeltaDifference = 3;
|
||||
const minimumSmoothRatio = 0.75;
|
||||
|
||||
const eventDeltas: number[] = [];
|
||||
|
||||
function onWheel(event: WheelEvent) {
|
||||
eventDeltas.push(event.deltaY);
|
||||
|
||||
if (eventDeltas.length >= sampleSize) {
|
||||
window.removeEventListener('wheel', onWheel);
|
||||
analyzeEvents();
|
||||
}
|
||||
}
|
||||
|
||||
function analyzeEvents() {
|
||||
const totalDiffs = eventDeltas.length - 1;
|
||||
let smallDiffCount = 0;
|
||||
|
||||
for (let i = 0; i < totalDiffs; i++) {
|
||||
const diff = Math.abs(eventDeltas[i + 1] - eventDeltas[i]);
|
||||
if (diff <= acceptableDeltaDifference) {
|
||||
smallDiffCount++;
|
||||
}
|
||||
}
|
||||
|
||||
const smoothRatio = smallDiffCount / totalDiffs;
|
||||
if (smoothRatio >= minimumSmoothRatio) {
|
||||
console.log('Smooth scrolling detected.');
|
||||
done.resolve(true);
|
||||
} else {
|
||||
console.log('Smooth scrolling NOT detected.');
|
||||
done.resolve(false);
|
||||
}
|
||||
}
|
||||
|
||||
window.addEventListener('wheel', onWheel);
|
||||
return done.promise;
|
||||
}
|
||||
|
||||
/**
|
||||
* Enables Lenis scrolling.
|
||||
* If optionsArg.disableOnNativeSmoothScroll is true and native smooth scrolling is detected,
|
||||
* Lenis will be destroyed immediately.
|
||||
*/
|
||||
public async enableLenisScroll(optionsArg?: { disableOnNativeSmoothScroll?: boolean }) {
|
||||
const lenis = new plugins.Lenis({
|
||||
autoRaf: true,
|
||||
});
|
||||
|
||||
if (optionsArg?.disableOnNativeSmoothScroll) {
|
||||
if (await this.detectNativeSmoothScroll()) {
|
||||
lenis.destroy();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Activate Lenis scrolling.
|
||||
this.lenisInstance = lenis;
|
||||
// Switch from native scroll listener to Lenis scroll listener.
|
||||
this.detachNativeScrollListener();
|
||||
this.attachLenisScrollListener();
|
||||
|
||||
// Monkey-patch the destroy method so that when Lenis is destroyed,
|
||||
// the native scroll listener is reattached.
|
||||
const originalDestroy = lenis.destroy.bind(lenis);
|
||||
lenis.destroy = () => {
|
||||
originalDestroy();
|
||||
this.detachLenisScrollListener();
|
||||
this.attachNativeScrollListener();
|
||||
this.lenisInstance = null;
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a callback to be executed on scroll.
|
||||
* @param callback A function to execute on each scroll event.
|
||||
*/
|
||||
public onScroll(callback: () => void): void {
|
||||
this.scrollCallbacks.push(callback);
|
||||
}
|
||||
|
||||
/**
|
||||
* Executes all registered scroll callbacks concurrently.
|
||||
*/
|
||||
private executeScrollCallbacks(): void {
|
||||
// Execute all callbacks in parallel.
|
||||
this.scrollCallbacks.forEach((callback) => {
|
||||
try {
|
||||
callback();
|
||||
} catch (error) {
|
||||
console.error('Error in scroll callback:', error);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Attaches the native scroll event listener.
|
||||
*/
|
||||
private attachNativeScrollListener(): void {
|
||||
window.addEventListener('scroll', this.handleNativeScroll);
|
||||
}
|
||||
|
||||
/**
|
||||
* Detaches the native scroll event listener.
|
||||
*/
|
||||
private detachNativeScrollListener(): void {
|
||||
window.removeEventListener('scroll', this.handleNativeScroll);
|
||||
}
|
||||
|
||||
/**
|
||||
* Attaches the Lenis scroll event listener.
|
||||
*/
|
||||
private attachLenisScrollListener(): void {
|
||||
if (this.lenisInstance) {
|
||||
// Assuming that Lenis exposes an `on` method to listen to scroll events.
|
||||
this.lenisInstance.on('scroll', this.handleLenisScroll);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Detaches the Lenis scroll event listener.
|
||||
*/
|
||||
private detachLenisScrollListener(): void {
|
||||
if (this.lenisInstance) {
|
||||
// Assuming that Lenis exposes an `off` method to remove scroll event listeners.
|
||||
this.lenisInstance.off('scroll', this.handleLenisScroll);
|
||||
}
|
||||
}
|
||||
}
|
@ -21,10 +21,17 @@ export class ThemeManager {
|
||||
this.updateAllConnectedElements();
|
||||
}
|
||||
|
||||
private async updateAllConnectedElements() {
|
||||
public async enableAutomaticGlobalThemeChange() {
|
||||
if (document.body && document.body.style) {
|
||||
document.body.style.background = this.goBrightBoolean ? '#fff' : '#000';
|
||||
this.themeObservable.subscribe({
|
||||
next: (goBright) => {
|
||||
document.body.style.background = goBright ? '#fff' : '#000';
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
private async updateAllConnectedElements() {
|
||||
this.themeObservable.next(this.goBrightBoolean);
|
||||
}
|
||||
|
||||
|
@ -20,19 +20,19 @@ export const scrollBarStyles: string = (() => {
|
||||
})();
|
||||
|
||||
export const globalBaseStyles: string = css`
|
||||
/* global material font */
|
||||
/*
|
||||
@font-face {
|
||||
font-family: 'Material Icons';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/materialicons/v42/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2)
|
||||
format('woff2');
|
||||
}
|
||||
} */
|
||||
|
||||
/* global body styles */
|
||||
body {
|
||||
margin: 0px;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-family: 'Geist Sans', 'Inter', sans-serif;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import * as plugins from './domtools.plugins.js';
|
||||
import { DomTools, IDomToolsContructorOptions } from './domtools.classes.domtools.js';
|
||||
import { DomTools, type IDomToolsContructorOptions } from './domtools.classes.domtools.js';
|
||||
import { scrollBarStyles, globalBaseStyles } from './domtools.css.basestyles.js';
|
||||
|
||||
import { html, LitElement, css, unsafeCSS } from 'lit';
|
||||
@ -12,7 +12,7 @@ export const staticStyles = css`
|
||||
|
||||
:host {
|
||||
box-sizing: border-box;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-family: 'Geist Sans', 'Inter', sans-serif;
|
||||
}
|
||||
|
||||
${unsafeCSS(scrollBarStyles)}
|
||||
@ -29,7 +29,7 @@ export const styles = html`
|
||||
}
|
||||
|
||||
:host {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-family: 'Geist Sans', 'Inter', sans-serif;
|
||||
}
|
||||
|
||||
${scrollBarStyles}
|
||||
@ -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) {
|
||||
|
23
ts/domtools.pluginexports.ts
Normal file
23
ts/domtools.pluginexports.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import * as smartdelay from '@push.rocks/smartdelay';
|
||||
import * as smartmarkdown from '@push.rocks/smartmarkdown';
|
||||
import * as smartpromise from '@push.rocks/smartpromise';
|
||||
import SweetScroll from 'sweet-scroll';
|
||||
import * as smartstate from '@push.rocks/smartstate';
|
||||
import * as smartrouter from '@push.rocks/smartrouter';
|
||||
import * as smartrx from '@push.rocks/smartrx';
|
||||
import * as smartstring from '@push.rocks/smartstring';
|
||||
import * as smarturl from '@push.rocks/smarturl';
|
||||
import * as typedrequest from '@api.global/typedrequest';
|
||||
|
||||
export {
|
||||
smartdelay,
|
||||
smartmarkdown,
|
||||
smartpromise,
|
||||
SweetScroll,
|
||||
smartstate,
|
||||
smartrouter,
|
||||
smartrx,
|
||||
smartstring,
|
||||
smarturl,
|
||||
typedrequest
|
||||
};
|
@ -1,28 +1,31 @@
|
||||
// designestate scope
|
||||
import * as deesComms from '@designestate/dees-comms';
|
||||
import * as deesComms from '@design.estate/dees-comms';
|
||||
|
||||
export { deesComms };
|
||||
|
||||
// apiglobal scope
|
||||
import * as typedrequest from '@apiglobal/typedrequest';
|
||||
import * as typedrequest from '@api.global/typedrequest';
|
||||
|
||||
export { typedrequest };
|
||||
|
||||
// pushrocks scope
|
||||
import * as smartdelay from '@pushrocks/smartdelay';
|
||||
import * as smartjson from '@pushrocks/smartjson';
|
||||
import * as smartpromise from '@pushrocks/smartpromise';
|
||||
import * as smartrouter from '@pushrocks/smartrouter';
|
||||
import * as smartrx from '@pushrocks/smartrx';
|
||||
import * as smartstate from '@pushrocks/smartstate';
|
||||
import * as webrequest from '@pushrocks/webrequest';
|
||||
import * as websetup from '@pushrocks/websetup';
|
||||
import * as webstore from '@pushrocks/webstore';
|
||||
import * as smartdelay from '@push.rocks/smartdelay';
|
||||
import * as smartjson from '@push.rocks/smartjson';
|
||||
import * as smartmarkdown from '@push.rocks/smartmarkdown';
|
||||
import * as smartpromise from '@push.rocks/smartpromise';
|
||||
import * as smartrouter from '@push.rocks/smartrouter';
|
||||
import * as smartrx from '@push.rocks/smartrx';
|
||||
import * as smartstate from '@push.rocks/smartstate';
|
||||
import * as smartstring from '@push.rocks/smartstring';
|
||||
import * as smarturl from '@push.rocks/smarturl';
|
||||
import * as webrequest from '@push.rocks/webrequest';
|
||||
import * as websetup from '@push.rocks/websetup';
|
||||
import * as webstore from '@push.rocks/webstore';
|
||||
|
||||
// subscope lik
|
||||
import { ObjectMap } from '@pushrocks/lik/dist_ts/lik.objectmap.js';
|
||||
import { Stringmap } from '@pushrocks/lik/dist_ts/lik.stringmap.js';
|
||||
import { FastMap } from '@pushrocks/lik/dist_ts/lik.fastmap.js';
|
||||
import { ObjectMap } from '@push.rocks/lik/dist_ts/lik.objectmap.js';
|
||||
import { Stringmap } from '@push.rocks/lik/dist_ts/lik.stringmap.js';
|
||||
import { FastMap } from '@push.rocks/lik/dist_ts/lik.fastmap.js';
|
||||
const lik = {
|
||||
ObjectMap,
|
||||
Stringmap,
|
||||
@ -33,16 +36,20 @@ export {
|
||||
lik,
|
||||
smartdelay,
|
||||
smartjson,
|
||||
smartmarkdown,
|
||||
smartpromise,
|
||||
smartrouter,
|
||||
smartrx,
|
||||
smarturl,
|
||||
smartstate,
|
||||
smartstring,
|
||||
webrequest,
|
||||
websetup,
|
||||
webstore,
|
||||
};
|
||||
|
||||
// third party scope
|
||||
import Lenis from 'lenis'
|
||||
import SweetScroll from 'sweet-scroll';
|
||||
|
||||
export { SweetScroll };
|
||||
export { Lenis, SweetScroll };
|
||||
|
22
ts/index.ts
22
ts/index.ts
@ -5,16 +5,16 @@ import * as breakpoints from './domtools.css.breakpoints.js';
|
||||
import * as css from './domtools.css.js';
|
||||
|
||||
export { css, breakpoints, elementBasic };
|
||||
export { DomTools, IDomToolsContructorOptions } from './domtools.classes.domtools.js';
|
||||
export { TypedRequest } from '@apiglobal/typedrequest';
|
||||
export { IWebSetupConstructorOptions } from '@pushrocks/websetup';
|
||||
export { rxjs } from '@pushrocks/smartrx';
|
||||
export { DomTools, type IDomToolsContructorOptions } from './domtools.classes.domtools.js';
|
||||
export { TypedRequest } from '@api.global/typedrequest';
|
||||
export { type IWebSetupConstructorOptions } from '@push.rocks/websetup';
|
||||
|
||||
import * as allPlugins from './domtools.plugins.js';
|
||||
import * as plugins from './domtools.pluginexports.js';
|
||||
export { plugins };
|
||||
|
||||
export const plugins = {
|
||||
smartdelay: allPlugins.smartdelay,
|
||||
smartpromise: allPlugins.smartpromise,
|
||||
SweetScroll: allPlugins.SweetScroll,
|
||||
smartstate: allPlugins.smartstate
|
||||
};
|
||||
// type exports
|
||||
import type { rxjs } from '@push.rocks/smartrx';
|
||||
|
||||
export type {
|
||||
rxjs,
|
||||
}
|
||||
|
@ -3,8 +3,12 @@
|
||||
"experimentalDecorators": true,
|
||||
"useDefineForClassFields": false,
|
||||
"target": "ES2022",
|
||||
"module": "ES2022",
|
||||
"moduleResolution": "nodenext",
|
||||
"esModuleInterop": true
|
||||
}
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
"esModuleInterop": true,
|
||||
"verbatimModuleSyntax": true
|
||||
},
|
||||
"exclude": [
|
||||
"dist_*/**/*.d.ts"
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user