codexly-ui 0.0.84 → 0.0.85
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/fesm2022/codexly-ui.mjs
CHANGED
|
@@ -6275,9 +6275,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
6275
6275
|
|
|
6276
6276
|
const CARD_PADDING_MAP = {
|
|
6277
6277
|
none: '',
|
|
6278
|
-
sm: 'p-
|
|
6279
|
-
md: 'p-
|
|
6280
|
-
lg: 'p-
|
|
6278
|
+
sm: 'p-2',
|
|
6279
|
+
md: 'p-3',
|
|
6280
|
+
lg: 'p-5',
|
|
6281
6281
|
};
|
|
6282
6282
|
const CARD_SHADOW_MAP = {
|
|
6283
6283
|
none: 'shadow-none',
|
|
@@ -6354,7 +6354,7 @@ class ClxCardComponent {
|
|
|
6354
6354
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ClxCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6355
6355
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.15", type: ClxCardComponent, isStandalone: true, selector: "clx-card", inputs: { variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null }, padding: { classPropertyName: "padding", publicName: "padding", isSignal: true, isRequired: false, transformFunction: null }, shadow: { classPropertyName: "shadow", publicName: "shadow", isSignal: true, isRequired: false, transformFunction: null }, hover: { classPropertyName: "hover", publicName: "hover", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class": "_hostClass()" } }, queries: [{ propertyName: "_headerSlot", first: true, predicate: ClxCardHeaderDirective, descendants: true, isSignal: true }, { propertyName: "_bodySlot", first: true, predicate: ClxCardBodyDirective, descendants: true, isSignal: true }, { propertyName: "_footerSlot", first: true, predicate: ClxCardFooterDirective, descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
6356
6356
|
@if (_hasHeader()) {
|
|
6357
|
-
<div class="clx-card-header flex items-center justify-between gap-3 px-
|
|
6357
|
+
<div class="clx-card-header flex items-center justify-between gap-3 px-4 py-3 border-b border-slate-100">
|
|
6358
6358
|
<ng-content select="[clxCardHeader]" />
|
|
6359
6359
|
</div>
|
|
6360
6360
|
}
|
|
@@ -6367,7 +6367,7 @@ class ClxCardComponent {
|
|
|
6367
6367
|
</div>
|
|
6368
6368
|
|
|
6369
6369
|
@if (_hasFooter()) {
|
|
6370
|
-
<div class="clx-card-footer flex items-center gap-2 px-
|
|
6370
|
+
<div class="clx-card-footer flex items-center gap-2 px-4 py-2 border-t border-slate-100 bg-slate-50/60 rounded-b-xl">
|
|
6371
6371
|
<ng-content select="[clxCardFooter]" />
|
|
6372
6372
|
</div>
|
|
6373
6373
|
}
|
|
@@ -6384,7 +6384,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
6384
6384
|
host: { '[class]': '_hostClass()' },
|
|
6385
6385
|
template: `
|
|
6386
6386
|
@if (_hasHeader()) {
|
|
6387
|
-
<div class="clx-card-header flex items-center justify-between gap-3 px-
|
|
6387
|
+
<div class="clx-card-header flex items-center justify-between gap-3 px-4 py-3 border-b border-slate-100">
|
|
6388
6388
|
<ng-content select="[clxCardHeader]" />
|
|
6389
6389
|
</div>
|
|
6390
6390
|
}
|
|
@@ -6397,7 +6397,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
6397
6397
|
</div>
|
|
6398
6398
|
|
|
6399
6399
|
@if (_hasFooter()) {
|
|
6400
|
-
<div class="clx-card-footer flex items-center gap-2 px-
|
|
6400
|
+
<div class="clx-card-footer flex items-center gap-2 px-4 py-2 border-t border-slate-100 bg-slate-50/60 rounded-b-xl">
|
|
6401
6401
|
<ng-content select="[clxCardFooter]" />
|
|
6402
6402
|
</div>
|
|
6403
6403
|
}
|