@indigina/ui-kit 1.1.122 → 1.1.123
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/indigina-ui-kit.mjs +46 -7
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-tabs/kit-tab/kit-tab-content.directive.d.ts +5 -0
- package/lib/components/kit-tabs/kit-tab/kit-tab.component.d.ts +5 -1
- package/lib/components/kit-tabs/kit-tab/kit-title-template.directive.d.ts +5 -0
- package/lib/components/kit-tabs/kit-tabs.module.d.ts +3 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class KitTabContentDirective {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitTabContentDirective, never>;
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KitTabContentDirective, "[kitTabContent]", never, {}, {}, never, never, true, never>;
|
|
5
|
+
}
|
|
@@ -22,10 +22,14 @@ export declare class KitTabComponent {
|
|
|
22
22
|
* Defines which tab will be disabled
|
|
23
23
|
*/
|
|
24
24
|
disabled: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Defines a reference to the tab title
|
|
27
|
+
*/
|
|
28
|
+
kitTitleTemplate: TemplateRef<HTMLElement> | null;
|
|
25
29
|
/**
|
|
26
30
|
* Defines a reference to the tab content
|
|
27
31
|
*/
|
|
28
32
|
kitTabContent: TemplateRef<HTMLElement> | null;
|
|
29
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitTabComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitTabComponent, "kit-tab", never, { "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconType": { "alias": "iconType"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, ["kitTabContent"], never, false, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitTabComponent, "kit-tab", never, { "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconType": { "alias": "iconType"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, ["kitTitleTemplate", "kitTabContent"], never, false, never>;
|
|
31
35
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class KitTitleTemplateDirective {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitTitleTemplateDirective, never>;
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KitTitleTemplateDirective, "[kitTitleTemplate]", never, {}, {}, never, never, true, never>;
|
|
5
|
+
}
|
|
@@ -4,8 +4,10 @@ import * as i2 from "./kit-tab/kit-tab.component";
|
|
|
4
4
|
import * as i3 from "@angular/common";
|
|
5
5
|
import * as i4 from "@progress/kendo-angular-layout";
|
|
6
6
|
import * as i5 from "../kit-svg-icon/kit-svg-icon.module";
|
|
7
|
+
import * as i6 from "./kit-tab/kit-title-template.directive";
|
|
8
|
+
import * as i7 from "./kit-tab/kit-tab-content.directive";
|
|
7
9
|
export declare class KitTabsModule {
|
|
8
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitTabsModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KitTabsModule, [typeof i1.KitTabsComponent, typeof i2.KitTabComponent], [typeof i3.CommonModule, typeof i4.LayoutModule, typeof i5.KitSvgIconModule], [typeof i1.KitTabsComponent, typeof i2.KitTabComponent]>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KitTabsModule, [typeof i1.KitTabsComponent, typeof i2.KitTabComponent], [typeof i3.CommonModule, typeof i4.LayoutModule, typeof i5.KitSvgIconModule, typeof i6.KitTitleTemplateDirective, typeof i7.KitTabContentDirective], [typeof i1.KitTabsComponent, typeof i2.KitTabComponent, typeof i6.KitTitleTemplateDirective, typeof i7.KitTabContentDirective]>;
|
|
10
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<KitTabsModule>;
|
|
11
13
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -118,6 +118,8 @@ export { KitTabsComponent } from './lib/components/kit-tabs/kit-tabs.component';
|
|
|
118
118
|
export { KitTabsType } from './lib/components/kit-tabs/kit-tabs.const';
|
|
119
119
|
export { KitTabsSelectEvent } from './lib/components/kit-tabs/kit-tabs.model';
|
|
120
120
|
export { KitTabComponent } from './lib/components/kit-tabs/kit-tab/kit-tab.component';
|
|
121
|
+
export { KitTitleTemplateDirective } from './lib/components/kit-tabs/kit-tab/kit-title-template.directive';
|
|
122
|
+
export { KitTabContentDirective } from './lib/components/kit-tabs/kit-tab/kit-tab-content.directive';
|
|
121
123
|
export { KitCardModule } from './lib/components/kit-card/kit-card.module';
|
|
122
124
|
export { KitCardComponent } from './lib/components/kit-card/kit-card.component';
|
|
123
125
|
export { KitCard, KitCardItem, KitCardLink } from './lib/components/kit-card/kit-card.model';
|