otimus-library 0.5.3 → 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/index.d.ts
CHANGED
|
@@ -686,7 +686,7 @@ declare class OcDropdownDirective implements OnInit {
|
|
|
686
686
|
protected readonly dropdownService: OcDropdownService;
|
|
687
687
|
protected readonly isThisDropdownOpen: i0.Signal<boolean>;
|
|
688
688
|
readonly ocDropdownMenu: i0.InputSignal<OcDropdownMenuContentComponent | undefined>;
|
|
689
|
-
readonly ocTrigger: i0.InputSignal<"
|
|
689
|
+
readonly ocTrigger: i0.InputSignal<"hover" | "click">;
|
|
690
690
|
readonly ocDisabled: i0.InputSignal<boolean>;
|
|
691
691
|
readonly ocAlign: i0.InputSignal<"start" | "end">;
|
|
692
692
|
ngOnInit(): void;
|
|
@@ -966,7 +966,7 @@ declare class OcNotFoundComponent {
|
|
|
966
966
|
|
|
967
967
|
declare class OcOtpComponent implements AfterViewInit, OnDestroy {
|
|
968
968
|
private readonly cdr;
|
|
969
|
-
readonly ocLength: i0.InputSignal<
|
|
969
|
+
readonly ocLength: i0.InputSignal<8 | 6>;
|
|
970
970
|
readonly ocSeparator: i0.InputSignal<boolean>;
|
|
971
971
|
readonly ocError: i0.InputSignal<string | null | undefined>;
|
|
972
972
|
readonly ocDisabled: i0.InputSignal<boolean>;
|
|
@@ -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 {
|