@haloduck/ui 2.0.14 → 2.0.16
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 +140 -2
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +36 -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,39 @@ 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
|
+
layoutClasses?: string;
|
|
658
|
+
bgClasses?: string;
|
|
659
|
+
borderClasses?: string;
|
|
660
|
+
labelText?: string;
|
|
661
|
+
labelClasses?: string;
|
|
662
|
+
labelOffset?: string;
|
|
663
|
+
}
|
|
664
|
+
declare class GroupedDirective implements OnInit {
|
|
665
|
+
private elementRef;
|
|
666
|
+
private renderer;
|
|
667
|
+
haloduckGrouped: GroupedConfig | string;
|
|
668
|
+
layoutClasses: string;
|
|
669
|
+
bgClasses: string;
|
|
670
|
+
borderClasses: string;
|
|
671
|
+
labelText: string;
|
|
672
|
+
labelClasses: string;
|
|
673
|
+
labelOffset: string;
|
|
674
|
+
hostClasses: string;
|
|
675
|
+
private labelElement;
|
|
676
|
+
constructor(elementRef: ElementRef, renderer: Renderer2);
|
|
677
|
+
ngOnInit(): void;
|
|
678
|
+
private applyConfig;
|
|
679
|
+
private createBorder;
|
|
680
|
+
private createLabel;
|
|
681
|
+
private addClasses;
|
|
682
|
+
private removeBorderClasses;
|
|
683
|
+
updateLabel(text: string): void;
|
|
684
|
+
toggleLabel(show: boolean): void;
|
|
685
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GroupedDirective, never>;
|
|
686
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GroupedDirective, "[haloduckGrouped]", never, { "haloduckGrouped": { "alias": "haloduckGrouped"; "required": false; }; "layoutClasses": { "alias": "layoutClasses"; "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>;
|
|
687
|
+
}
|
|
688
|
+
|
|
656
689
|
declare class BreadcrumbComponent implements OnInit {
|
|
657
690
|
private readonly breadcrumbService;
|
|
658
691
|
listBreadcrumb: {
|
|
@@ -724,5 +757,5 @@ declare const provideHaloduckTransloco: () => {
|
|
|
724
757
|
multi: boolean;
|
|
725
758
|
}[];
|
|
726
759
|
|
|
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 };
|
|
760
|
+
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 };
|
|
761
|
+
export type { ButtonVariant, CalendarDate, DateRange, DateRangeDropdown, FileEx, GroupedConfig, Location, Notification, NotificationType, Option, TabItem, TableColumn, TableRow };
|