otimus-library 0.5.2 → 0.5.4
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/otimus-library.mjs +11 -7
- package/fesm2022/otimus-library.mjs.map +1 -1
- package/index.d.ts +3 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1119,10 +1119,12 @@ declare class OcStepperComponent implements AfterViewInit {
|
|
|
1119
1119
|
|
|
1120
1120
|
declare class OcTabComponent {
|
|
1121
1121
|
ocTitle: string;
|
|
1122
|
+
/** Optional leading Material Symbols icon name (content-projection mode). */
|
|
1123
|
+
ocIcon: string;
|
|
1122
1124
|
ocIsActive: boolean;
|
|
1123
1125
|
tabIndex: number;
|
|
1124
1126
|
static ɵfac: i0.ɵɵFactoryDeclaration<OcTabComponent, never>;
|
|
1125
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OcTabComponent, "oc-tab", never, { "ocTitle": { "alias": "ocTitle"; "required": false; }; "ocIsActive": { "alias": "ocIsActive"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1127
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OcTabComponent, "oc-tab", never, { "ocTitle": { "alias": "ocTitle"; "required": false; }; "ocIcon": { "alias": "ocIcon"; "required": false; }; "ocIsActive": { "alias": "ocIsActive"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1126
1128
|
}
|
|
1127
1129
|
|
|
1128
1130
|
declare class OcTableComponent implements OnInit {
|