@keenmate/pure-admin-core 1.2.0 → 1.3.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 +15 -0
- package/dist/css/main.css +848 -2
- package/package.json +1 -1
- package/src/scss/_base-css-variables.scss +1 -0
- package/src/scss/_core.scss +3 -0
- package/src/scss/core-components/_data-display.scss +347 -0
- package/src/scss/core-components/_detail-panel.scss +2 -2
- package/src/scss/core-components/_grid.scss +4 -0
- package/src/scss/core-components/_tables.scss +277 -0
- package/src/scss/variables/_components.scss +27 -0
package/README.md
CHANGED
|
@@ -206,9 +206,24 @@ This enables dark mode support for web components like `@keenmate/web-grid` that
|
|
|
206
206
|
### Tables
|
|
207
207
|
- `.pa-table` - Base table
|
|
208
208
|
- `.pa-table--striped` - Striped rows
|
|
209
|
+
- `.pa-table--bordered` - Full cell borders on all sides
|
|
209
210
|
- `.pa-table--hover` - Row hover effects
|
|
210
211
|
- `.pa-table--compact` - Reduced padding
|
|
211
212
|
|
|
213
|
+
### Table Cards
|
|
214
|
+
Card container specifically designed for tables and web-grids:
|
|
215
|
+
- `.pa-table-card` - Base table card container
|
|
216
|
+
- `.pa-table-card__header` - Header with title and actions
|
|
217
|
+
- `.pa-table-card__body` - Body for table/grid content (no padding)
|
|
218
|
+
- `.pa-table-card__footer` - Footer with summary/actions
|
|
219
|
+
- `.pa-table-card__title` - Title element
|
|
220
|
+
- `.pa-table-card__actions` - Actions container for buttons
|
|
221
|
+
- **Semantic variants:** `.pa-table-card--primary/success/danger/warning`
|
|
222
|
+
- **Theme color variants:** `.pa-table-card--color-1` through `.pa-table-card--color-9`
|
|
223
|
+
- **Plain variant:** `.pa-table-card--plain` - No border/shadow/background, keeps grid behavior
|
|
224
|
+
|
|
225
|
+
Works with both `pa-table` and `web-grid` component. First/last columns automatically align with header/footer padding.
|
|
226
|
+
|
|
212
227
|
### Alerts
|
|
213
228
|
- `.pa-alert` - Base alert
|
|
214
229
|
- `.pa-alert--primary/success/danger/warning/info` - Variants
|