Compare commits

...

2 Commits

Author SHA1 Message Date
2110278cac v2.3.6 2025-11-16 15:38:14 +00:00
a3f7f456ef fix(readme): Normalize README formatting and improve breakpoint helpers section 2025-11-16 15:38:14 +00:00
4 changed files with 29 additions and 19 deletions

View File

@@ -1,5 +1,12 @@
# Changelog
## 2025-11-16 - 2.3.6 - fix(readme)
Normalize README formatting and improve breakpoint helpers section
- Fixed inconsistent Markdown list formatting in the Features section (added space after list dash for emoji bullets)
- Bolded the "Available breakpoint helpers" heading and added spacing for improved readability
- Clarified breakpoint helper listing to ensure cssForPhone is documented
## 2025-11-16 - 2.3.5 - fix(dependencies)
bump dependency versions in package.json

View File

@@ -1,6 +1,6 @@
{
"name": "@design.estate/dees-domtools",
"version": "2.3.5",
"version": "2.3.6",
"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.",
"main": "dist_ts/index.js",

View File

@@ -6,15 +6,15 @@ Modern web development made elegant. `@design.estate/dees-domtools` provides a p
## Features
🚀 **Smart DOM Management** - Singleton-based DomTools instance with race-condition-free initialization
📱 **Responsive Breakpoints** - Built-in support for desktop, tablet, phablet, and phone viewports with container queries
🎭 **Theme Management** - Automatic dark/light mode detection and switching with RxJS observables
⌨️ **Keyboard Shortcuts** - Elegant keyboard event handling with combo support
📜 **Smooth Scrolling** - Native and Lenis-powered smooth scrolling with automatic detection
🎯 **State Management** - Integrated state management with smartstate
🧭 **Routing** - Client-side routing with smartrouter
🌐 **WebSetup** - Easy management of website metadata, favicons, and SEO tags
💅 **CSS Utilities** - Grid helpers, breakpoint utilities, and base styles for web components
- 🚀 **Smart DOM Management** - Singleton-based DomTools instance with race-condition-free initialization
- 📱 **Responsive Breakpoints** - Built-in support for desktop, tablet, phablet, and phone viewports with container queries
- 🎭 **Theme Management** - Automatic dark/light mode detection and switching with RxJS observables
- ⌨️ **Keyboard Shortcuts** - Elegant keyboard event handling with combo support
- 📜 **Smooth Scrolling** - Native and Lenis-powered smooth scrolling with automatic detection
- 🎯 **State Management** - Integrated state management with smartstate
- 🧭 **Routing** - Client-side routing with smartrouter
- 🌐 **WebSetup** - Easy management of website metadata, favicons, and SEO tags
- 💅 **CSS Utilities** - Grid helpers, breakpoint utilities, and base styles for web components
## Installation
@@ -114,7 +114,8 @@ const myStyles = litCss`
`;
```
Available breakpoint helpers:
**Available breakpoint helpers:**
- `cssForDesktop(css)` - Styles for 1600px and above
- `cssForNotebook(css)` - Styles for 1240px and below
- `cssForTablet(css)` - Styles for 1024px and below
@@ -184,6 +185,7 @@ keyboard.stopListening();
**Available Keys:**
All standard keyboard keys are available in the `Key` enum, including:
- Modifiers: `Ctrl`, `Shift`, `Alt`
- Letters: `A` through `Z`
- Numbers: `Zero` through `Nine`
@@ -298,7 +300,8 @@ class MyElement extends LitElement {
}
```
The `elementBasic.staticStyles` includes:
**The `elementBasic.staticStyles` includes:**
- Box-sizing reset
- Smooth transitions for background and color
- Custom scrollbar styles
@@ -455,12 +458,12 @@ Targets the latest version of Chrome. For other browsers, you may need to includ
## Why @design.estate/dees-domtools?
**Race-condition free** - Carefully designed initialization prevents common timing issues
**TypeScript first** - Full type safety and IntelliSense support
**Modern APIs** - Built on Lit, RxJS, and other modern web standards
**Batteries included** - Everything you need for sophisticated web apps
**Production ready** - Used in real-world applications at design.estate
**Well maintained** - Active development and support
- **Race-condition free** - Carefully designed initialization prevents common timing issues
- **TypeScript first** - Full type safety and IntelliSense support
- **Modern APIs** - Built on Lit, RxJS, and other modern web standards
- **Batteries included** - Everything you need for sophisticated web apps
- **Production ready** - Used in real-world applications at design.estate
- **Well maintained** - Active development and support
## Related Packages

View File

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