nath-angular-ui 0.5.2 → 0.5.3
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.
|
@@ -4830,30 +4830,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImpor
|
|
|
4830
4830
|
|
|
4831
4831
|
class TabDirective {
|
|
4832
4832
|
templateRef = inject(TemplateRef);
|
|
4833
|
-
tabTitle = input.required({ ...(ngDevMode ? { debugName: "tabTitle" } : /* istanbul ignore next */ {}), alias: '
|
|
4833
|
+
tabTitle = input.required({ ...(ngDevMode ? { debugName: "tabTitle" } : /* istanbul ignore next */ {}), alias: 'nathTab' });
|
|
4834
4834
|
disabled = input(false, { ...(ngDevMode ? { debugName: "disabled" } : /* istanbul ignore next */ {}), transform: booleanAttribute });
|
|
4835
4835
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TabDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
4836
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.5", type: TabDirective, isStandalone: true, selector: "[
|
|
4836
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.5", type: TabDirective, isStandalone: true, selector: "[nathTab]", inputs: { tabTitle: { classPropertyName: "tabTitle", publicName: "nathTab", isSignal: true, isRequired: true, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
4837
4837
|
}
|
|
4838
4838
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TabDirective, decorators: [{
|
|
4839
4839
|
type: Directive,
|
|
4840
4840
|
args: [{
|
|
4841
|
-
selector: '[
|
|
4841
|
+
selector: '[nathTab]',
|
|
4842
4842
|
}]
|
|
4843
|
-
}], propDecorators: { tabTitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "
|
|
4843
|
+
}], propDecorators: { tabTitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "nathTab", required: true }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }] } });
|
|
4844
4844
|
|
|
4845
4845
|
class TabPanelDirective {
|
|
4846
4846
|
templateRef = inject(TemplateRef);
|
|
4847
|
-
tabTitle = input.required({ ...(ngDevMode ? { debugName: "tabTitle" } : /* istanbul ignore next */ {}), alias: '
|
|
4847
|
+
tabTitle = input.required({ ...(ngDevMode ? { debugName: "tabTitle" } : /* istanbul ignore next */ {}), alias: 'nathTabPanel' });
|
|
4848
4848
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TabPanelDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
4849
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.5", type: TabPanelDirective, isStandalone: true, selector: "[
|
|
4849
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.5", type: TabPanelDirective, isStandalone: true, selector: "[nathTabPanel]", inputs: { tabTitle: { classPropertyName: "tabTitle", publicName: "nathTabPanel", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 });
|
|
4850
4850
|
}
|
|
4851
4851
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TabPanelDirective, decorators: [{
|
|
4852
4852
|
type: Directive,
|
|
4853
4853
|
args: [{
|
|
4854
|
-
selector: '[
|
|
4854
|
+
selector: '[nathTabPanel]',
|
|
4855
4855
|
}]
|
|
4856
|
-
}], propDecorators: { tabTitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "
|
|
4856
|
+
}], propDecorators: { tabTitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "nathTabPanel", required: true }] }] } });
|
|
4857
4857
|
|
|
4858
4858
|
class NathTabs {
|
|
4859
4859
|
activeTab = model.required(/* @ts-ignore */
|