@solcre-org/core-ui 2.11.35 → 2.11.36
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.
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
@media (min-width: 48rem) { /* 768px */
|
|
23
23
|
.o-grid{
|
|
24
24
|
--_default-cols: 2;
|
|
25
|
-
--_cols: var(--grid-cols-sm, var(--_default-cols));
|
|
25
|
+
--_cols: var(--grid-cols-sm, var(--grid-cols-xs, var(--_default-cols)));
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
@media (min-width: 61.25rem) { /* 980px */
|
|
29
29
|
.o-grid{
|
|
30
|
-
--_cols: var(--grid-cols-md, var(--_default-cols));
|
|
30
|
+
--_cols: var(--grid-cols-md, var(--grid-cols-sm, var(--grid-cols-xs, var(--_default-cols))));
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
@media (min-width: 90rem) { /* 1440px */
|
|
34
34
|
.o-grid{
|
|
35
|
-
--_cols: var(--grid-cols-lg, var(--_default-cols));
|
|
35
|
+
--_cols: var(--grid-cols-lg, var(--grid-cols-md, var(--grid-cols-sm, var(--grid-cols-xs, var(--_default-cols)))));
|
|
36
36
|
}
|
|
37
37
|
}
|
|
@@ -10590,12 +10590,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
10590
10590
|
// Este archivo es generado automáticamente por scripts/update-version.js
|
|
10591
10591
|
// No edites manualmente este archivo
|
|
10592
10592
|
const VERSION = {
|
|
10593
|
-
full: '2.11.
|
|
10593
|
+
full: '2.11.36',
|
|
10594
10594
|
major: 2,
|
|
10595
10595
|
minor: 11,
|
|
10596
|
-
patch:
|
|
10597
|
-
timestamp: '2025-09-
|
|
10598
|
-
buildDate: '
|
|
10596
|
+
patch: 36,
|
|
10597
|
+
timestamp: '2025-09-02T12:41:58.571Z',
|
|
10598
|
+
buildDate: '2/9/2025'
|
|
10599
10599
|
};
|
|
10600
10600
|
|
|
10601
10601
|
class MainNavComponent {
|
|
@@ -12006,12 +12006,15 @@ var ProgressBarSize;
|
|
|
12006
12006
|
class ProgressBarComponent {
|
|
12007
12007
|
progress = input(0);
|
|
12008
12008
|
size = input(ProgressBarSize.NORMAL);
|
|
12009
|
+
percentage = computed(() => {
|
|
12010
|
+
return this.progress() / 100;
|
|
12011
|
+
});
|
|
12009
12012
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ProgressBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12010
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.6", type: ProgressBarComponent, isStandalone: true, selector: "core-progress-bar", inputs: { progress: { classPropertyName: "progress", publicName: "progress", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, hostDirectives: [{ directive: CoreHostDirective }], ngImport: i0, template: "<div class=\"c-progress-bar c-progress-bar--{{ size() }}\" style=\"--progress:
|
|
12013
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.6", type: ProgressBarComponent, isStandalone: true, selector: "core-progress-bar", inputs: { progress: { classPropertyName: "progress", publicName: "progress", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, hostDirectives: [{ directive: CoreHostDirective }], ngImport: i0, template: "<div class=\"c-progress-bar c-progress-bar--{{ size() }}\" style=\"--progress: {{ percentage() }}\">\n <div class=\"c-progress-bar__bar\"></div>\n</div>" });
|
|
12011
12014
|
}
|
|
12012
12015
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ProgressBarComponent, decorators: [{
|
|
12013
12016
|
type: Component,
|
|
12014
|
-
args: [{ selector: 'core-progress-bar', standalone: true, imports: [], hostDirectives: [CoreHostDirective], template: "<div class=\"c-progress-bar c-progress-bar--{{ size() }}\" style=\"--progress:
|
|
12017
|
+
args: [{ selector: 'core-progress-bar', standalone: true, imports: [], hostDirectives: [CoreHostDirective], template: "<div class=\"c-progress-bar c-progress-bar--{{ size() }}\" style=\"--progress: {{ percentage() }}\">\n <div class=\"c-progress-bar__bar\"></div>\n</div>" }]
|
|
12015
12018
|
}] });
|
|
12016
12019
|
|
|
12017
12020
|
class CardComponent {
|