@bizy/core 19.17.0 → 19.17.1
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/bizy-core.mjs
CHANGED
|
@@ -3328,14 +3328,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
|
|
|
3328
3328
|
}] } });
|
|
3329
3329
|
|
|
3330
3330
|
class BizyMenuTitleComponent {
|
|
3331
|
+
id = `bizy-menu-title-${Math.random()}`;
|
|
3331
3332
|
customClass = '';
|
|
3332
3333
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: BizyMenuTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3333
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.10", type: BizyMenuTitleComponent, isStandalone: true, selector: "bizy-menu-title", inputs: { customClass: "customClass" },
|
|
3334
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.10", type: BizyMenuTitleComponent, isStandalone: true, selector: "bizy-menu-title", inputs: { id: "id", customClass: "customClass" }, host: { properties: { "id": "id", "class": "customClass" } }, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [":host{font-size:1rem;background-color:var(--bizy-menu-title-background-color);color:var(--bizy-menu-title-color);padding:.5rem;cursor:default;text-decoration:var(--bizy-menu-title-text-decoration);text-underline-offset:.3rem;display:flex;align-items:center}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3334
3335
|
}
|
|
3335
3336
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: BizyMenuTitleComponent, decorators: [{
|
|
3336
3337
|
type: Component,
|
|
3337
|
-
args: [{ selector: 'bizy-menu-title', changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3338
|
-
|
|
3338
|
+
args: [{ selector: 'bizy-menu-title', changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
3339
|
+
'[id]': 'id',
|
|
3340
|
+
'[class]': 'customClass'
|
|
3341
|
+
}, template: "<ng-content></ng-content>\n", styles: [":host{font-size:1rem;background-color:var(--bizy-menu-title-background-color);color:var(--bizy-menu-title-color);padding:.5rem;cursor:default;text-decoration:var(--bizy-menu-title-text-decoration);text-underline-offset:.3rem;display:flex;align-items:center}\n"] }]
|
|
3342
|
+
}], propDecorators: { id: [{
|
|
3343
|
+
type: Input
|
|
3344
|
+
}], customClass: [{
|
|
3339
3345
|
type: Input
|
|
3340
3346
|
}] } });
|
|
3341
3347
|
|