Compare commits

...

2 Commits

4 changed files with 8 additions and 3 deletions

View File

@@ -1,5 +1,10 @@
# Changelog # Changelog
## 2026-01-27 - 2.3.8 - fix(domtools)
remove default 'loading...' meta title in WebSetup and use an empty string as the default
- ts/domtools.classes.domtools.ts: changed WebSetup.metaObject.title from 'loading...' to '' to avoid displaying a placeholder title
## 2026-01-04 - 2.3.7 - fix(deps) ## 2026-01-04 - 2.3.7 - fix(deps)
bump dependencies, update build/test configuration, and reorganize npmextra configuration bump dependencies, update build/test configuration, and reorganize npmextra configuration

View File

@@ -1,6 +1,6 @@
{ {
"name": "@design.estate/dees-domtools", "name": "@design.estate/dees-domtools",
"version": "2.3.7", "version": "2.3.8",
"private": false, "private": false,
"description": "A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.", "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", "main": "dist_ts/index.js",

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-domtools', name: '@design.estate/dees-domtools',
version: '2.3.7', version: '2.3.8',
description: 'A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.' description: 'A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.'
} }

View File

@@ -93,7 +93,7 @@ export class DomTools {
public websetup: WebSetup = new WebSetup({ public websetup: WebSetup = new WebSetup({
metaObject: { metaObject: {
title: 'loading...', title: '',
}, },
}); });