@keenmate/pure-admin-core 2.3.4 → 2.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,16 +2,15 @@
2
2
 
3
3
  Lightweight, data-focused CSS/SCSS admin framework with Corporate theme as default.
4
4
 
5
+ ## What's New in 2.3.5
6
+
7
+ - **Navbar alignment fix** — `__end` section pushed to right edge via `margin-inline-start: auto`, works without `__center` spacer
8
+ - **Scroll-lock fix** — Panel/modal open no longer hides scrollbar (`overflow-y: scroll` instead of `hidden`)
9
+
5
10
  ## What's New in 2.3.4
6
11
 
7
12
  - **Command palette home screen & hotkeys** — Opens with categorized commands and search contexts. Alt+D/A/G/T hotkeys jump directly into commands. Global search finds commands alongside data. Form codes for quick `/go` navigation.
8
13
  - **Dropdown z-index fix** — Split button menus no longer go under sidebar/header
9
-
10
- ## What's New in 2.3.3
11
-
12
- - **Themeable border-radius via CSS variables** — All components now use `var(--pa-border-radius)`. Themes override in `:root` (same pattern as colors). Fixes long-standing issue where `@use` module isolation prevented theme control of border-radius
13
- - **Outline-secondary button contrast** — New `--pa-btn-secondary-outline-color` variable, readable on all dark themes
14
- - **Split button dropdown rework** — Two-container pattern (`__menu` + `__menu-inner`) matching web-multiselect. New `__item-row` element for rows with action buttons. Container handles `overflow: hidden` + `border-radius`
15
14
  - **Removed hover lift** — `translateY(-1px)` removed from buttons and stat cards for consistency
16
15
 
17
16
  ## Installation
package/dist/css/main.css CHANGED
@@ -2826,6 +2826,7 @@ body.pa-container-2xl .pa-navbar {
2826
2826
  align-items: center;
2827
2827
  gap: 1.6rem;
2828
2828
  flex-shrink: 0;
2829
+ margin-inline-start: auto;
2829
2830
  }
2830
2831
 
2831
2832
  /* ========================================
@@ -16910,7 +16911,7 @@ html.font-size-xlarge {
16910
16911
  }
16911
16912
 
16912
16913
  .pa-scroll-lock {
16913
- overflow: hidden !important;
16914
+ overflow-y: scroll !important;
16914
16915
  }
16915
16916
 
16916
16917
  .cursor-pointer {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keenmate/pure-admin-core",
3
- "version": "2.3.4",
3
+ "version": "2.3.5",
4
4
  "description": "Lightweight, data-focused HTML/CSS admin framework built with PureCSS foundation and comprehensive component system",
5
5
  "style": "dist/css/main.css",
6
6
  "exports": {
@@ -139,7 +139,7 @@ html.font-size-xlarge {
139
139
  // Scroll lock - prevents body scrolling when overlays are open
140
140
  // Apply to <body> element via JavaScript
141
141
  .pa-scroll-lock {
142
- overflow: hidden !important;
142
+ overflow-y: scroll !important;
143
143
  }
144
144
 
145
145
  // Cursor utilities
@@ -80,4 +80,5 @@ body.pa-container-2xl .pa-navbar {
80
80
  align-items: center;
81
81
  gap: $spacing-base;
82
82
  flex-shrink: 0;
83
+ margin-inline-start: auto;
83
84
  }