@natec/mef-dev-ui-kit 16.0.0 → 16.0.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/README.md +125 -13
- package/esm2022/lib/markup-kit/card/card-long/card-long.component.mjs +3 -3
- package/esm2022/lib/markup-kit/modals/slide-up/slide-up.component.mjs +1 -2
- package/esm2022/lib/markup-kit/page-layouts/central-page/central-page.component.mjs +11 -3
- package/esm2022/lib/markup-kit/page-layouts/table-page/table-page.component.mjs +1 -2
- package/esm2022/lib/markup-kit/utils/filtered-field/filtered-field-container/filtered-field-container.component.mjs +4 -5
- package/esm2022/lib/markup-kit/utils/help-block/help-block.component.mjs +1 -2
- package/esm2022/lib/pg-components/tabs/tabset.component.mjs +12 -1
- package/fesm2022/natec-mef-dev-ui-kit.mjs +26 -11
- package/fesm2022/natec-mef-dev-ui-kit.mjs.map +1 -1
- package/lib/markup-kit/card/card-long/card-long.component.d.ts +2 -2
- package/lib/markup-kit/modals/slide-up/slide-up.component.d.ts +0 -1
- package/lib/markup-kit/page-layouts/table-page/table-page.component.d.ts +0 -1
- package/lib/markup-kit/utils/filtered-field/filtered-field-container/filtered-field-container.component.d.ts +3 -4
- package/lib/markup-kit/utils/help-block/help-block.component.d.ts +0 -1
- package/lib/pg-components/tabs/tabset.component.d.ts +11 -0
- package/package.json +1 -1
|
@@ -85,7 +85,7 @@ export declare class CardLongComponent implements OnInit {
|
|
|
85
85
|
* The text for the card type.
|
|
86
86
|
* @usageNotes
|
|
87
87
|
* ```
|
|
88
|
-
* <medev-card-long type_text = "'
|
|
88
|
+
* <medev-card-long type_text = "'RED'"></<medev-card-long>
|
|
89
89
|
* ```
|
|
90
90
|
*/
|
|
91
91
|
type_text: string;
|
|
@@ -96,7 +96,7 @@ export declare class CardLongComponent implements OnInit {
|
|
|
96
96
|
* <medev-card-long type_color = "'RED'"></<medev-card-long>
|
|
97
97
|
* ```
|
|
98
98
|
* Colors: RED, UNSET, GREEN
|
|
99
|
-
|
|
99
|
+
|
|
100
100
|
*/
|
|
101
101
|
type_color: CartTypeColors;
|
|
102
102
|
/**
|
|
@@ -8,11 +8,10 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Example of usage:
|
|
9
9
|
* ```
|
|
10
10
|
* <mefdev-filtered-field-container>
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
* </mefdev-filtered-field-item>
|
|
14
|
-
*
|
|
11
|
+
* <mefdev-filtered-field-item [item]="filterItem" (discard)="onDiscardFilter($event)" (openFilter)="onOpenFilter()">
|
|
12
|
+
* </mefdev-filtered-field-item>
|
|
15
13
|
* </mefdev-filtered-field-container>
|
|
14
|
+
*
|
|
16
15
|
* ```
|
|
17
16
|
* Example of usage:
|
|
18
17
|
* <example-url>https://mef.dev/ui_kit_demo/view/utils/filtered-field</example-url>
|
|
@@ -43,6 +43,14 @@ export declare class MefDevTabSetComponent implements AfterContentChecked, OnIni
|
|
|
43
43
|
_extra_tabcontent_class: string;
|
|
44
44
|
/**
|
|
45
45
|
* Template reference for additional content to be displayed in the tab bar.
|
|
46
|
+
* @example
|
|
47
|
+
*```
|
|
48
|
+
* <ng-template #extraContentTemplate>
|
|
49
|
+
* <button mat-icon-button>
|
|
50
|
+
* <mat-icon>add</mat-icon>
|
|
51
|
+
* </button>
|
|
52
|
+
* </ng-template>
|
|
53
|
+
*```
|
|
46
54
|
*/
|
|
47
55
|
TabBarExtraTemplate: TemplateRef<void>;
|
|
48
56
|
TabBarExtraContent: TemplateRef<void>;
|
|
@@ -76,6 +84,7 @@ export declare class MefDevTabSetComponent implements AfterContentChecked, OnIni
|
|
|
76
84
|
get SelectedIndex(): number | null;
|
|
77
85
|
/**
|
|
78
86
|
* Event emitted when the selected tab index changes.
|
|
87
|
+
* @example <mefdev-tabset (SelectedIndexChange)="onTabChange($event)"></mefdev-tabset>
|
|
79
88
|
* @returns An Observable emitting the index of the selected tab.
|
|
80
89
|
*/
|
|
81
90
|
get SelectedIndexChange(): Observable<number>;
|
|
@@ -95,6 +104,8 @@ export declare class MefDevTabSetComponent implements AfterContentChecked, OnIni
|
|
|
95
104
|
tabs: MefDevTabComponent[];
|
|
96
105
|
/**
|
|
97
106
|
* Position of the tab set. Can be 'top', 'bottom', 'left', or 'right'.
|
|
107
|
+
* @example 'left'
|
|
108
|
+
* Default: 'top'
|
|
98
109
|
*/
|
|
99
110
|
set TabPosition(value: TabPosition);
|
|
100
111
|
get TabPosition(): TabPosition;
|