@haloduck/ui 2.0.12 → 2.0.13
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/haloduck-ui.mjs +37 -1
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +10 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -644,6 +644,15 @@ declare class TagInputComponent implements ControlValueAccessor, AfterViewInit {
|
|
|
644
644
|
static ɵcmp: i0.ɵɵComponentDeclaration<TagInputComponent, "haloduck-tag-input", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "allowDuplicates": { "alias": "allowDuplicates"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, ["*"], true, never>;
|
|
645
645
|
}
|
|
646
646
|
|
|
647
|
+
declare class TagViewerComponent implements AfterViewInit {
|
|
648
|
+
label: ElementRef;
|
|
649
|
+
tags: string[];
|
|
650
|
+
set value(tags: string[] | null);
|
|
651
|
+
ngAfterViewInit(): void;
|
|
652
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagViewerComponent, never>;
|
|
653
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagViewerComponent, "haloduck-tag-viewer", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
654
|
+
}
|
|
655
|
+
|
|
647
656
|
declare class BreadcrumbComponent implements OnInit {
|
|
648
657
|
private readonly breadcrumbService;
|
|
649
658
|
listBreadcrumb: {
|
|
@@ -715,5 +724,5 @@ declare const provideHaloduckTransloco: () => {
|
|
|
715
724
|
multi: boolean;
|
|
716
725
|
}[];
|
|
717
726
|
|
|
718
|
-
export { AuthenticateComponent, BreadcrumbComponent, ButtonComponent, CalendarComponent, ConfirmDialogService, CopyButtonComponent, DatePickerComponent, DateRangeComponent, DialogService, DrawCanvasComponent, ERROR_NOT_ACCEPTABLE_FILE_TYPE, ERROR_OVER_COUNT, ERROR_OVER_SIZE, ERROR_UPLOAD, FileUploaderComponent, FlipComponent, ImageUploaderComponent, ImageViewerComponent, InputComponent, LanguageSelectorComponent, MapToAddressComponent, NotificationComponent, NotificationService, PictureNameComponent, SelectComponent, SelectDropdownComponent, SideMenuComponent, SideMenuItemComponent, StlViewerComponent, TableComponent, TabsComponent, TagInputComponent, ToggleComponent, dateToString, google, provideHaloduckTransloco };
|
|
727
|
+
export { AuthenticateComponent, BreadcrumbComponent, ButtonComponent, CalendarComponent, ConfirmDialogService, CopyButtonComponent, DatePickerComponent, DateRangeComponent, DialogService, DrawCanvasComponent, ERROR_NOT_ACCEPTABLE_FILE_TYPE, ERROR_OVER_COUNT, ERROR_OVER_SIZE, ERROR_UPLOAD, FileUploaderComponent, FlipComponent, ImageUploaderComponent, ImageViewerComponent, InputComponent, LanguageSelectorComponent, MapToAddressComponent, NotificationComponent, NotificationService, PictureNameComponent, SelectComponent, SelectDropdownComponent, SideMenuComponent, SideMenuItemComponent, StlViewerComponent, TableComponent, TabsComponent, TagInputComponent, TagViewerComponent, ToggleComponent, dateToString, google, provideHaloduckTransloco };
|
|
719
728
|
export type { ButtonVariant, CalendarDate, DateRange, DateRangeDropdown, FileEx, Location, Notification, NotificationType, Option, TabItem, TableColumn, TableRow };
|