otimus-library 0.3.66 → 0.3.67
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 +17 -1
- package/fesm2022/otimus-library.mjs.map +1 -1
- package/index.d.ts +9 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -362,7 +362,7 @@ declare class OcCalendarComponent implements OnChanges {
|
|
|
362
362
|
|
|
363
363
|
declare class OcCardComponent {
|
|
364
364
|
readonly ocSelected: i0.InputSignal<boolean>;
|
|
365
|
-
readonly ocColor: i0.InputSignal<"
|
|
365
|
+
readonly ocColor: i0.InputSignal<"green" | "default" | "red" | "yellow">;
|
|
366
366
|
readonly ocClickable: i0.InputSignal<boolean>;
|
|
367
367
|
ocClick: EventEmitter<void>;
|
|
368
368
|
protected onClick(): void;
|
|
@@ -473,6 +473,13 @@ declare class OcDrawerComponent implements AfterViewInit {
|
|
|
473
473
|
static ɵcmp: i0.ɵɵComponentDeclaration<OcDrawerComponent, "oc-drawer", never, { "ocClose": { "alias": "ocClose"; "required": false; }; "ocTitle": { "alias": "ocTitle"; "required": false; }; "ocSize": { "alias": "ocSize"; "required": false; }; "ocBgColor": { "alias": "ocBgColor"; "required": false; }; "ocWidth": { "alias": "ocWidth"; "required": false; }; "ocStyle": { "alias": "ocStyle"; "required": false; }; "ocLoading": { "alias": "ocLoading"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; }, { "ocOnClose": "ocOnClose"; "ocOnOpen": "ocOnOpen"; }, never, ["*"], true, never>;
|
|
474
474
|
}
|
|
475
475
|
|
|
476
|
+
declare class OcDrawerFooterComponent {
|
|
477
|
+
ocSide: 'left' | 'right';
|
|
478
|
+
ocBgColor?: string;
|
|
479
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OcDrawerFooterComponent, never>;
|
|
480
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OcDrawerFooterComponent, "oc-drawer-footer", never, { "ocSide": { "alias": "ocSide"; "required": false; }; "ocBgColor": { "alias": "ocBgColor"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
481
|
+
}
|
|
482
|
+
|
|
476
483
|
declare class OcFilterComponent implements AfterViewInit {
|
|
477
484
|
private styleThemeService;
|
|
478
485
|
isOpen: boolean;
|
|
@@ -824,5 +831,5 @@ interface OcTableActionsType {
|
|
|
824
831
|
print: () => any;
|
|
825
832
|
}
|
|
826
833
|
|
|
827
|
-
export { OcAccordionComponent, OcAccordionItemComponent, OcAutocompleteComponent, OcBadgeComponent, OcButtonMenuComponent, OcCalendarComponent, OcCardComponent, OcCheckboxComponent, OcChipComponent, OcDateSelectComponent, OcDrawerComponent, OcFilterComponent, OcInputComponent, OcKeyValueComponent, OcLogComponent, OcMenuComponent, OcMenuHorizComponent, OcMenuHorizDirective, OcMessageComponent, OcModalComponent, OcModalFooterComponent, OcNotFoundComponent, OcOverlayComponent, OcPaginationComponent, OcProfileComponent, OcProgressComponent, OcStepComponent, OcStepperComponent, OcTabComponent, OcTabsComponent, OcToastComponent, OcToastService, OcToggleComponent, OcTooltipDirective, OtimusLibraryComponent, OtimusLibraryService, StyleThemeService };
|
|
834
|
+
export { OcAccordionComponent, OcAccordionItemComponent, OcAutocompleteComponent, OcBadgeComponent, OcButtonMenuComponent, OcCalendarComponent, OcCardComponent, OcCheckboxComponent, OcChipComponent, OcDateSelectComponent, OcDrawerComponent, OcDrawerFooterComponent, OcFilterComponent, OcInputComponent, OcKeyValueComponent, OcLogComponent, OcMenuComponent, OcMenuHorizComponent, OcMenuHorizDirective, OcMessageComponent, OcModalComponent, OcModalFooterComponent, OcNotFoundComponent, OcOverlayComponent, OcPaginationComponent, OcProfileComponent, OcProgressComponent, OcStepComponent, OcStepperComponent, OcTabComponent, OcTabsComponent, OcToastComponent, OcToastService, OcToggleComponent, OcTooltipDirective, OtimusLibraryComponent, OtimusLibraryService, StyleThemeService };
|
|
828
835
|
export type { OcAutoCompleteType, OcMenuHorizType, OcMenuType, OcStyleThemeType, OcTableType, ToastType };
|