@haloduck/ui 2.0.14 → 2.0.15
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 +136 -2
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +34 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { FormGroup, FormBuilder, ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
|
-
import { EventEmitter, AfterViewInit, ElementRef, OnInit, OnDestroy, Type, OnChanges, SimpleChanges, Injector, TemplateRef } from '@angular/core';
|
|
4
|
+
import { EventEmitter, AfterViewInit, ElementRef, OnInit, OnDestroy, Type, OnChanges, SimpleChanges, Renderer2, Injector, TemplateRef } from '@angular/core';
|
|
5
5
|
import * as rxjs from 'rxjs';
|
|
6
6
|
import { Observable, Subject } from 'rxjs';
|
|
7
7
|
import { LngLat, MenuItemEx, SearchParams, TableRowProperty } from '@haloduck/core';
|
|
@@ -653,6 +653,37 @@ declare class TagViewerComponent implements AfterViewInit {
|
|
|
653
653
|
static ɵcmp: i0.ɵɵComponentDeclaration<TagViewerComponent, "haloduck-tag-viewer", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
654
654
|
}
|
|
655
655
|
|
|
656
|
+
interface GroupedConfig {
|
|
657
|
+
bgClasses?: string;
|
|
658
|
+
borderClasses?: string;
|
|
659
|
+
labelText?: string;
|
|
660
|
+
labelClasses?: string;
|
|
661
|
+
labelOffset?: string;
|
|
662
|
+
}
|
|
663
|
+
declare class GroupedDirective implements OnInit {
|
|
664
|
+
private elementRef;
|
|
665
|
+
private renderer;
|
|
666
|
+
haloduckGrouped: GroupedConfig | string;
|
|
667
|
+
bgClasses: string;
|
|
668
|
+
borderClasses: string;
|
|
669
|
+
labelText: string;
|
|
670
|
+
labelClasses: string;
|
|
671
|
+
labelOffset: string;
|
|
672
|
+
hostClasses: string;
|
|
673
|
+
private labelElement;
|
|
674
|
+
constructor(elementRef: ElementRef, renderer: Renderer2);
|
|
675
|
+
ngOnInit(): void;
|
|
676
|
+
private applyConfig;
|
|
677
|
+
private createBorder;
|
|
678
|
+
private createLabel;
|
|
679
|
+
private addClasses;
|
|
680
|
+
private removeBorderClasses;
|
|
681
|
+
updateLabel(text: string): void;
|
|
682
|
+
toggleLabel(show: boolean): void;
|
|
683
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GroupedDirective, never>;
|
|
684
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GroupedDirective, "[haloduckGrouped]", never, { "haloduckGrouped": { "alias": "haloduckGrouped"; "required": false; }; "bgClasses": { "alias": "bgClasses"; "required": false; }; "borderClasses": { "alias": "borderClasses"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "labelClasses": { "alias": "labelClasses"; "required": false; }; "labelOffset": { "alias": "labelOffset"; "required": false; }; }, {}, never, never, true, never>;
|
|
685
|
+
}
|
|
686
|
+
|
|
656
687
|
declare class BreadcrumbComponent implements OnInit {
|
|
657
688
|
private readonly breadcrumbService;
|
|
658
689
|
listBreadcrumb: {
|
|
@@ -724,5 +755,5 @@ declare const provideHaloduckTransloco: () => {
|
|
|
724
755
|
multi: boolean;
|
|
725
756
|
}[];
|
|
726
757
|
|
|
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 };
|
|
728
|
-
export type { ButtonVariant, CalendarDate, DateRange, DateRangeDropdown, FileEx, Location, Notification, NotificationType, Option, TabItem, TableColumn, TableRow };
|
|
758
|
+
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, GroupedDirective, ImageUploaderComponent, ImageViewerComponent, InputComponent, LanguageSelectorComponent, MapToAddressComponent, NotificationComponent, NotificationService, PictureNameComponent, SelectComponent, SelectDropdownComponent, SideMenuComponent, SideMenuItemComponent, StlViewerComponent, TableComponent, TabsComponent, TagInputComponent, TagViewerComponent, ToggleComponent, dateToString, google, provideHaloduckTransloco };
|
|
759
|
+
export type { ButtonVariant, CalendarDate, DateRange, DateRangeDropdown, FileEx, GroupedConfig, Location, Notification, NotificationType, Option, TabItem, TableColumn, TableRow };
|