@keenmate/pure-admin-core 1.0.0-rc06 → 1.1.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 +77 -7
- package/dist/css/main.css +1313 -452
- package/package.json +1 -1
- package/snippets/customization.html +1 -1
- package/snippets/layout.html +66 -0
- package/snippets/manifest.json +0 -50
- package/snippets/profile.html +51 -3
- package/src/scss/_base-css-variables.scss +432 -422
- package/src/scss/_core.scss +105 -105
- package/src/scss/_fonts.scss +0 -14
- package/src/scss/_variables.scss +12 -14
- package/src/scss/core-components/_alerts.scss +7 -7
- package/src/scss/core-components/_base.scss +3 -3
- package/src/scss/core-components/_buttons.scss +425 -425
- package/src/scss/core-components/_callouts.scss +139 -139
- package/src/scss/core-components/_cards.scss +321 -321
- package/src/scss/core-components/_checkbox-lists.scss +2 -2
- package/src/scss/core-components/_code.scss +4 -4
- package/src/scss/core-components/_command-palette.scss +518 -518
- package/src/scss/core-components/_comparison.scss +3 -3
- package/src/scss/core-components/_file-selector.scss +780 -780
- package/src/scss/core-components/_forms.scss +16 -16
- package/src/scss/core-components/_grid.scss +25 -0
- package/src/scss/core-components/_layout.scss +15 -15
- package/src/scss/core-components/_lists.scss +7 -7
- package/src/scss/core-components/_logic-tree.scss +280 -280
- package/src/scss/core-components/_modals.scss +2 -2
- package/src/scss/core-components/_notifications.scss +74 -7
- package/src/scss/core-components/_pagers.scss +3 -3
- package/src/scss/core-components/_popconfirm.scss +1 -1
- package/src/scss/core-components/_profile.scss +400 -379
- package/src/scss/core-components/_scrollbars.scss +40 -41
- package/src/scss/core-components/_settings-panel.scss +5 -5
- package/src/scss/core-components/_statistics.scss +6 -6
- package/src/scss/core-components/_tables.scss +566 -566
- package/src/scss/core-components/_tabs.scss +493 -493
- package/src/scss/core-components/_timeline.scss +15 -15
- package/src/scss/core-components/_toasts.scss +4 -4
- package/src/scss/core-components/_tooltips.scss +8 -8
- package/src/scss/core-components/_utilities.scss +35 -30
- package/src/scss/core-components/_web-components-theme.scss +294 -294
- package/src/scss/core-components/badges/_composite-badge-variants.scss +3 -3
- package/src/scss/core-components/badges/_labels.scss +1 -1
- package/src/scss/core-components/forms/_checkboxes-radios.scss +2 -2
- package/src/scss/core-components/forms/_form-inputs.scss +4 -4
- package/src/scss/core-components/forms/_form-layout.scss +2 -2
- package/src/scss/core-components/forms/_form-states.scss +1 -1
- package/src/scss/core-components/forms/_input-groups.scss +13 -11
- package/src/scss/core-components/forms/_input-wrapper.scss +1 -1
- package/src/scss/core-components/forms/_query-editor.scss +17 -17
- package/src/scss/core-components/layout/_layout-container.scss +33 -1
- package/src/scss/core-components/layout/_navbar-elements.scss +1 -1
- package/src/scss/core-components/layout/_sidebar.scss +53 -2
- package/src/scss/utilities.scss +81 -2
- package/src/scss/variables/_base.scss +20 -10
- package/src/scss/variables/_colors.scss +7 -6
- package/src/scss/variables/_components.scss +8 -11
- package/src/scss/variables/_index.scss +11 -7
- package/src/scss/variables/_spacing.scss +12 -0
- package/src/scss/variables/_typography.scss +2 -2
- package/dist/fonts/Delivery/Delivery_W_Bd.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_BdIt.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_CdBlk.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_CdLt.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_It.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_Lt.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_LtIt.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_Rg.woff2 +0 -0
- package/src/scss/themes/_dark-base.scss +0 -207
- package/src/scss/themes/audi-light.scss +0 -341
- package/src/scss/themes/audi.scss +0 -303
- package/src/scss/themes/corporate.scss +0 -229
- package/src/scss/themes/dark-blue.scss +0 -165
- package/src/scss/themes/dark-green.scss +0 -169
- package/src/scss/themes/dark-red.scss +0 -173
- package/src/scss/themes/dark.scss +0 -158
- package/src/scss/themes/express.scss +0 -294
- package/src/scss/themes/minimal.scss +0 -134
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
/* ========================================
|
|
2
|
-
Form Components
|
|
3
|
-
Form groups, inputs, selects, textareas, checkboxes, radio buttons, states
|
|
4
|
-
======================================== */
|
|
5
|
-
|
|
6
|
-
// ============================================================================
|
|
7
|
-
// BACKWARD COMPATIBILITY AGGREGATOR
|
|
8
|
-
// This file re-exports all form components from the modular forms/ directory.
|
|
9
|
-
// For new code, prefer importing from forms/ directly:
|
|
10
|
-
// @use 'forms' as *;
|
|
11
|
-
// or specific modules:
|
|
12
|
-
// @use 'forms/form-inputs';
|
|
13
|
-
// @use 'forms/checkboxes-radios';
|
|
14
|
-
// ============================================================================
|
|
15
|
-
|
|
16
|
-
@forward 'forms/index';
|
|
1
|
+
/* ========================================
|
|
2
|
+
Form Components
|
|
3
|
+
Form groups, inputs, selects, textareas, checkboxes, radio buttons, states
|
|
4
|
+
======================================== */
|
|
5
|
+
|
|
6
|
+
// ============================================================================
|
|
7
|
+
// BACKWARD COMPATIBILITY AGGREGATOR
|
|
8
|
+
// This file re-exports all form components from the modular forms/ directory.
|
|
9
|
+
// For new code, prefer importing from forms/ directly:
|
|
10
|
+
// @use 'forms' as *;
|
|
11
|
+
// or specific modules:
|
|
12
|
+
// @use 'forms/form-inputs';
|
|
13
|
+
// @use 'forms/checkboxes-radios';
|
|
14
|
+
// ============================================================================
|
|
15
|
+
|
|
16
|
+
@forward 'forms/index';
|
|
@@ -262,3 +262,28 @@ $grid-columns-fractions: (
|
|
|
262
262
|
padding-bottom: 0;
|
|
263
263
|
}
|
|
264
264
|
|
|
265
|
+
// ============================================================================
|
|
266
|
+
// AUTO-STACK ON MOBILE
|
|
267
|
+
// ============================================================================
|
|
268
|
+
// Base percentage/fraction columns auto-stack to 100% on mobile
|
|
269
|
+
// Use explicit responsive classes (pa-col-sm-*, pa-col-md-*) to override
|
|
270
|
+
@media (max-width: $mobile-breakpoint) {
|
|
271
|
+
// Stack percentage columns
|
|
272
|
+
@each $size in $grid-columns-5 {
|
|
273
|
+
@if $size < 100 {
|
|
274
|
+
.pa-col-#{$size} {
|
|
275
|
+
flex: 0 0 100%;
|
|
276
|
+
max-width: 100%;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
// Stack fraction columns
|
|
282
|
+
@each $name, $width in $grid-columns-fractions {
|
|
283
|
+
.pa-col-#{$name} {
|
|
284
|
+
flex: 0 0 100%;
|
|
285
|
+
max-width: 100%;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
/* ========================================
|
|
2
|
-
Layout V2 - Based on Testbench Structure
|
|
3
|
-
======================================== */
|
|
4
|
-
|
|
5
|
-
// ============================================================================
|
|
6
|
-
// BACKWARD COMPATIBILITY AGGREGATOR
|
|
7
|
-
// This file re-exports all layout components from the modular layout/ directory.
|
|
8
|
-
// For new code, prefer importing from layout/ directly:
|
|
9
|
-
// @use 'layout' as *;
|
|
10
|
-
// or specific modules:
|
|
11
|
-
// @use 'layout/navbar';
|
|
12
|
-
// @use 'layout/sidebar';
|
|
13
|
-
// ============================================================================
|
|
14
|
-
|
|
15
|
-
@forward 'layout/index';
|
|
1
|
+
/* ========================================
|
|
2
|
+
Layout V2 - Based on Testbench Structure
|
|
3
|
+
======================================== */
|
|
4
|
+
|
|
5
|
+
// ============================================================================
|
|
6
|
+
// BACKWARD COMPATIBILITY AGGREGATOR
|
|
7
|
+
// This file re-exports all layout components from the modular layout/ directory.
|
|
8
|
+
// For new code, prefer importing from layout/ directly:
|
|
9
|
+
// @use 'layout' as *;
|
|
10
|
+
// or specific modules:
|
|
11
|
+
// @use 'layout/navbar';
|
|
12
|
+
// @use 'layout/sidebar';
|
|
13
|
+
// ============================================================================
|
|
14
|
+
|
|
15
|
+
@forward 'layout/index';
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
|
|
121
121
|
dt {
|
|
122
122
|
font-weight: $font-weight-semibold;
|
|
123
|
-
color: var(--pa-text-
|
|
123
|
+
color: var(--pa-text-color-1);
|
|
124
124
|
margin-bottom: $spacing-xs;
|
|
125
125
|
margin-top: $spacing-base;
|
|
126
126
|
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
dd {
|
|
133
133
|
margin-left: $spacing-lg;
|
|
134
134
|
margin-bottom: $spacing-sm;
|
|
135
|
-
color: var(--pa-text-
|
|
135
|
+
color: var(--pa-text-color-2);
|
|
136
136
|
line-height: 1.6;
|
|
137
137
|
}
|
|
138
138
|
|
|
@@ -173,7 +173,7 @@
|
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
&:hover {
|
|
176
|
-
background-color: var(--pa-
|
|
176
|
+
background-color: var(--pa-main-bg);
|
|
177
177
|
}
|
|
178
178
|
}
|
|
179
179
|
|
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
width: $btn-icon-only-size;
|
|
182
182
|
height: $btn-icon-only-size;
|
|
183
183
|
border-radius: 50%;
|
|
184
|
-
background-color: var(--pa-
|
|
184
|
+
background-color: var(--pa-main-bg);
|
|
185
185
|
display: flex;
|
|
186
186
|
align-items: center;
|
|
187
187
|
justify-content: center;
|
|
@@ -194,18 +194,18 @@
|
|
|
194
194
|
|
|
195
195
|
&__title {
|
|
196
196
|
font-weight: $font-weight-medium;
|
|
197
|
-
color: var(--pa-text-
|
|
197
|
+
color: var(--pa-text-color-1);
|
|
198
198
|
margin-bottom: $spacing-xs;
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
&__subtitle {
|
|
202
|
-
color: var(--pa-text-
|
|
202
|
+
color: var(--pa-text-color-2);
|
|
203
203
|
font-size: $font-size-sm;
|
|
204
204
|
margin-bottom: $spacing-xs;
|
|
205
205
|
}
|
|
206
206
|
|
|
207
207
|
&__meta {
|
|
208
|
-
color: var(--pa-text-
|
|
208
|
+
color: var(--pa-text-color-2);
|
|
209
209
|
font-size: $font-size-xs;
|
|
210
210
|
}
|
|
211
211
|
}
|