@byuhbll/components 7.4.4 → 7.5.1
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/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { AfterViewInit, ElementRef, EventEmitter, PipeTransform, OnInit, OnDestr
|
|
|
5
5
|
import * as _angular_forms from '@angular/forms';
|
|
6
6
|
import { ControlValueAccessor } from '@angular/forms';
|
|
7
7
|
import { JwtPayload } from 'jwt-decode';
|
|
8
|
+
import { TooltipPosition, MatTooltip } from '@angular/material/tooltip';
|
|
8
9
|
|
|
9
10
|
interface LibraryHours {
|
|
10
11
|
date: string;
|
|
@@ -1587,5 +1588,26 @@ declare class DropdownComponent implements ControlValueAccessor, OnInit, OnChang
|
|
|
1587
1588
|
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "lib-dropdown", never, { "label": { "alias": "label"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "labelType": { "alias": "labelType"; "required": false; }; "showHelpIcon": { "alias": "showHelpIcon"; "required": false; }; "subtext": { "alias": "subtext"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "options": { "alias": "options"; "required": false; }; "state": { "alias": "state"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "selectedValues": { "alias": "selectedValues"; "required": false; }; }, { "valueChange": "valueChange"; "selectedValuesChange": "selectedValuesChange"; "helpIconClick": "helpIconClick"; }, never, never, true, never>;
|
|
1588
1589
|
}
|
|
1589
1590
|
|
|
1590
|
-
|
|
1591
|
+
declare class CopyTooltipComponent {
|
|
1592
|
+
position: TooltipPosition;
|
|
1593
|
+
copyText?: string;
|
|
1594
|
+
tooltip: MatTooltip;
|
|
1595
|
+
clipboardCopyMessage: string;
|
|
1596
|
+
copyToClipboard: (text?: string) => Promise<void>;
|
|
1597
|
+
handleMouseLeave: () => void;
|
|
1598
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CopyTooltipComponent, never>;
|
|
1599
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CopyTooltipComponent, "lib-copy-tooltip", never, { "position": { "alias": "position"; "required": false; }; "copyText": { "alias": "copyText"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
declare class ExpandCollapseComponent {
|
|
1603
|
+
private contentRef;
|
|
1604
|
+
private _isExpanded;
|
|
1605
|
+
set isExpanded(isExpanded: boolean);
|
|
1606
|
+
get isExpanded(): boolean;
|
|
1607
|
+
protected heightOfContent: number;
|
|
1608
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandCollapseComponent, never>;
|
|
1609
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandCollapseComponent, "lib-expand-collapse", never, { "isExpanded": { "alias": "isExpanded"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
export { ADVANCED_SEARCH_FIELD_MAP, ADVANCED_SEARCH_OPTIONS, ADVANCED_SEARCH_QUALIFIER_MAP, ButtonComponent, ButtonGroupComponent, ButtonGroupItemComponent, CheckboxComponent, CopyTooltipComponent, DropdownComponent, ExpandCollapseComponent, FieldComponent, HbllFooterComponent, HbllHeaderComponent, HbllItemTypeIconPipe, HeaderWithImpersonationComponent, ImpersonateModalComponent, ImpersonateUserPipe, ImpersonationBannerComponent, LIBRARY_HOURS_API_URL, LabelComponent, LinkComponent, PostTabComponent, PreTabComponent, RadioButtonComponent, SnackbarComponent, SnackbarService, SsSearchBarComponent, StatusButtonComponent, TabBarComponent, TabItemComponent, defaultOidcBaseUri, defaultOidcDefaultIdp, getUserStatusFromRoles, isAdvancedSearchExternalFieldOption, isAdvancedSearchFieldOption, isAdvancedSearchLocalFieldOption, isSearchScope };
|
|
1591
1613
|
export type { AdvancedSearchBooleanOption, AdvancedSearchExternalFieldOption, AdvancedSearchFieldOption, AdvancedSearchLanguageOption, AdvancedSearchLocalFieldOption, AdvancedSearchQualifier, AdvancedSearchQualifierOption, AdvancedSearchQueryRow, AdvancedSearchResultsPerPageOption, ButtonInputs, ButtonType, CheckboxInputs, DropdownInputs, DropdownOption, DropdownState, FieldInputs, FieldState, FieldStatus, ImpersonateSearchResult, InputType, LabelInputs, LabelPosition, LabelType, LinkIconPosition, LinkInputs, LinkState, LinkType, PostTabInputs, PostTabType, PreTabInputs, PreTabType, RadioButtonChange, SearchConfig, SearchScope, SnackbarInputs, SnackbarPurpose, Status, StatusButtonInputs };
|