@haloduck/ui 2.0.10 → 2.0.11
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 +165 -1
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +30 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -615,6 +615,35 @@ declare class TabsComponent implements OnChanges, AfterViewInit {
|
|
|
615
615
|
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "haloduck-tabs", never, { "tabs": { "alias": "tabs"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "labelWidth": { "alias": "labelWidth"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; }, never, ["[slot=label]"], true, never>;
|
|
616
616
|
}
|
|
617
617
|
|
|
618
|
+
declare class TagInputComponent implements ControlValueAccessor, AfterViewInit {
|
|
619
|
+
label: ElementRef;
|
|
620
|
+
inputEl: ElementRef<HTMLInputElement>;
|
|
621
|
+
placeholder: string;
|
|
622
|
+
disabled: boolean;
|
|
623
|
+
allowDuplicates: boolean;
|
|
624
|
+
set value(tags: string[] | null);
|
|
625
|
+
valueChange: EventEmitter<string[]>;
|
|
626
|
+
tags: string[];
|
|
627
|
+
inputValue: string;
|
|
628
|
+
onChange: (value: any) => void;
|
|
629
|
+
onTouched: () => void;
|
|
630
|
+
writeValue(value: string[] | null): void;
|
|
631
|
+
registerOnChange(fn: any): void;
|
|
632
|
+
registerOnTouched(fn: any): void;
|
|
633
|
+
setDisabledState(isDisabled: boolean): void;
|
|
634
|
+
ngAfterViewInit(): void;
|
|
635
|
+
focus(): void;
|
|
636
|
+
onInput(event: Event): void;
|
|
637
|
+
onBlur(): void;
|
|
638
|
+
onKeydown(event: KeyboardEvent): void;
|
|
639
|
+
removeTag(index: number): void;
|
|
640
|
+
private commitCurrentInput;
|
|
641
|
+
private addTag;
|
|
642
|
+
private emitChanges;
|
|
643
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagInputComponent, never>;
|
|
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
|
+
}
|
|
646
|
+
|
|
618
647
|
declare class BreadcrumbComponent implements OnInit {
|
|
619
648
|
private readonly breadcrumbService;
|
|
620
649
|
listBreadcrumb: {
|
|
@@ -686,5 +715,5 @@ declare const provideHaloduckTransloco: () => {
|
|
|
686
715
|
multi: boolean;
|
|
687
716
|
}[];
|
|
688
717
|
|
|
689
|
-
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, ToggleComponent, dateToString, google, provideHaloduckTransloco };
|
|
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 };
|
|
690
719
|
export type { ButtonVariant, CalendarDate, DateRange, DateRangeDropdown, FileEx, Location, Notification, NotificationType, Option, TabItem, TableColumn, TableRow };
|