monkey-style-guide-v2 0.0.114 → 0.0.115
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.
|
@@ -927,7 +927,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImpo
|
|
|
927
927
|
************************* */
|
|
928
928
|
class MonkeyDisplayDirective {
|
|
929
929
|
constructor() {
|
|
930
|
-
this.fallback = input
|
|
930
|
+
this.fallback = input(...(ngDevMode ? [undefined, { debugName: "fallback" }] : []));
|
|
931
931
|
this._elementRef = inject(ElementRef);
|
|
932
932
|
}
|
|
933
933
|
ngAfterViewInit() {
|
|
@@ -943,7 +943,7 @@ class MonkeyDisplayDirective {
|
|
|
943
943
|
}
|
|
944
944
|
}
|
|
945
945
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.14", ngImport: i0, type: MonkeyDisplayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
946
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.14", type: MonkeyDisplayDirective, isStandalone: false, selector: "monkey-display", inputs: { fallback: { classPropertyName: "fallback", publicName: "fallback", isSignal: true, isRequired:
|
|
946
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.14", type: MonkeyDisplayDirective, isStandalone: false, selector: "monkey-display", inputs: { fallback: { classPropertyName: "fallback", publicName: "fallback", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 }); }
|
|
947
947
|
}
|
|
948
948
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImport: i0, type: MonkeyDisplayDirective, decorators: [{
|
|
949
949
|
type: Directive,
|
|
@@ -951,7 +951,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImpo
|
|
|
951
951
|
selector: 'monkey-display',
|
|
952
952
|
standalone: false
|
|
953
953
|
}]
|
|
954
|
-
}], propDecorators: { fallback: [{ type: i0.Input, args: [{ isSignal: true, alias: "fallback", required:
|
|
954
|
+
}], propDecorators: { fallback: [{ type: i0.Input, args: [{ isSignal: true, alias: "fallback", required: false }] }] } });
|
|
955
955
|
|
|
956
956
|
/** ************************
|
|
957
957
|
* Copyright Monkey Exchange. All Rights Reserved
|