@keenmate/pure-admin-core 2.1.0 → 2.2.0
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 +9 -6
- package/dist/css/main.css +661 -7
- package/package.json +1 -1
- package/scripts/download-themes.js +83 -0
- package/snippets/alerts.html +19 -0
- package/snippets/cards.html +2 -3
- package/src/scss/_fonts.scss +36 -36
- package/src/scss/core-components/_alerts.scss +15 -0
- package/src/scss/core-components/_buttons.scss +24 -0
- package/src/scss/core-components/_callouts.scss +8 -0
- package/src/scss/core-components/_cards.scss +1 -6
- package/src/scss/core-components/_toasts.scss +93 -0
- package/src/scss/core-components/_utilities.scss +362 -362
- package/src/scss/core-components/layout/_sidebar.scss +2 -2
package/README.md
CHANGED
|
@@ -2,14 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
Lightweight, data-focused CSS/SCSS admin framework with Corporate theme as default.
|
|
4
4
|
|
|
5
|
+
## What's New in 2.2.0
|
|
6
|
+
|
|
7
|
+
- **Theme color slots (1-9) across components** — Alerts, callouts, toasts, and buttons now support `--color-{1-9}` and `--outline-color-{1-9}` variants using the 9 custom theme color slots. Themes that define `$color-1` through `$color-9` get matching component styles automatically
|
|
8
|
+
- **Filled toast variants** — New `pa-toast--filled-*` variants with full-color backgrounds, contrast text, and semi-transparent progress bars. Available for all standard colors and theme color slots
|
|
9
|
+
- **Unified card actions naming** — `pa-card__tools` replaced with `pa-card__actions` across both `pa-card` and `pa-table-card`
|
|
10
|
+
- **Font Tuning Tool** (`/font-test`) — Developer utility for finding the right `@font-face` descriptor values when using custom fonts
|
|
11
|
+
|
|
5
12
|
## What's New in 2.1.0
|
|
6
13
|
|
|
7
|
-
- **
|
|
8
|
-
- **
|
|
9
|
-
- **Responsive grid table hover fix** — Card-style tables no longer highlight all cells on hover
|
|
10
|
-
- **Mobile sidebar burger fix** — Sidebar behavior modes no longer show X instead of hamburger on mobile
|
|
11
|
-
- **Sidebar resize fix** — Resize no longer blocked in icon-collapse mode when sidebar is expanded; disabled on mobile
|
|
12
|
-
- **Actions column consistency** — All demo tables now show Actions as the first column
|
|
14
|
+
- **Unified card actions naming** — `pa-card__tools` replaced with `pa-card__actions` across both `pa-card` and `pa-table-card`. Header and footer now use the same element name, disambiguated by context
|
|
15
|
+
- **Font Tuning Tool** (`/font-test`) — Developer utility for finding the right `@font-face` descriptor values (`ascent-override`, `descent-override`, `size-adjust`) when using custom fonts. Loads any Google Font, generates variants for visual comparison, and outputs a copyable CSS snippet
|
|
13
16
|
|
|
14
17
|
## Installation
|
|
15
18
|
|