@energycap/components 0.45.1 → 0.45.2-multi-select-component.20260303-0733
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/README.md +188 -188
- package/fesm2022/energycap-components.mjs +681 -163
- package/fesm2022/energycap-components.mjs.map +1 -1
- package/package.json +1 -1
- package/schematics/collection.json +4 -4
- package/src/assets/images/favicon-ech.svg +14 -14
- package/src/assets/images/favicon-esa.svg +6 -6
- package/src/assets/images/favicon-eum.svg +13 -13
- package/src/assets/images/favicon-whitelabel.svg +4 -4
- package/src/assets/images/favicon.svg +12 -12
- package/src/assets/images/icon-carbonhub.svg +10 -10
- package/src/assets/images/icon-eum.svg +5 -5
- package/src/assets/images/icon-ucp.svg +12 -12
- package/src/assets/images/icon-wattics.svg +5 -5
- package/src/assets/images/icon.svg +11 -11
- package/src/assets/images/logo.svg +10 -10
- package/src/assets/images/splash-electric.svg +3 -3
- package/src/assets/images/splash-interval.svg +3 -3
- package/src/assets/images/splash-seedling.svg +11 -11
- package/src/assets/images/splash-water.svg +3 -3
- package/src/assets/locales/en_US.json +60 -60
- package/src/assets/scripts/unsupported-browser.js +17 -17
- package/src/styles/_base.scss +38 -38
- package/src/styles/_colors.scss +96 -96
- package/src/styles/_core.scss +3 -3
- package/src/styles/_functions.scss +114 -114
- package/src/styles/_global-variables.scss +230 -230
- package/src/styles/_icons.scss +23 -23
- package/src/styles/bootstrap/_grid.scss +33 -33
- package/src/styles/bootstrap/_reboot.scss +322 -322
- package/src/styles/components/_badge.scss +14 -14
- package/src/styles/components/_card.scss +21 -21
- package/src/styles/components/_link-icons.scss +37 -37
- package/src/styles/components/_splash.scss +188 -188
- package/src/styles/components/_tag.scss +18 -18
- package/src/styles/components/_unsupported-browsers.scss +23 -23
- package/src/styles/email/_email-base.scss +227 -227
- package/src/styles/email/email.scss +42 -42
- package/src/styles/index.scss +29 -29
- package/src/styles/mixins/_animations.scss +17 -17
- package/src/styles/mixins/_button-base.scss +206 -206
- package/src/styles/mixins/_card-base.scss +40 -40
- package/src/styles/mixins/_common.scss +51 -51
- package/src/styles/mixins/_dialog-base.scss +95 -95
- package/src/styles/mixins/_form-control-base.scss +662 -662
- package/src/styles/mixins/_login.scss +74 -74
- package/src/styles/mixins/_menu-base.scss +153 -153
- package/src/styles/mixins/_overlay-base.scss +32 -32
- package/src/styles/mixins/_resizable-base.scss +57 -57
- package/src/styles/mixins/_spinner-base.scss +34 -34
- package/src/styles/mixins/_table-base.scss +297 -297
- package/src/styles/mixins/_tabs-base.scss +146 -146
- package/src/styles/mixins/_tags-base.scss +121 -121
- package/src/styles/mixins/_text.scss +89 -89
- package/src/styles/mixins.scss +14 -14
- package/src/styles/utilities/_borders.scss +29 -29
- package/src/styles/utilities/_common.scss +49 -49
- package/src/styles/utilities/_layout.scss +115 -115
- package/src/styles/utilities/_spacing.scss +64 -64
- package/src/styles/utilities/_text.scss +139 -139
- package/types/energycap-components.d.ts +208 -9
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { OnInit, AfterViewInit, TemplateRef, EventEmitter, ElementRef, PipeTransform, OnDestroy, ViewContainerRef, OnChanges, SimpleChanges, Renderer2, QueryList, ApplicationRef, AfterContentInit, Type, ComponentRef, ComponentFactoryResolver, AfterViewChecked, Injector, Provider, ModuleWithProviders } from '@angular/core';
|
|
3
|
-
import * as
|
|
3
|
+
import * as i73 from '@angular/router';
|
|
4
4
|
import { Params, Router, ActivatedRoute, ActivatedRouteSnapshot, ParamMap, UrlSegment, QueryParamsHandling } from '@angular/router';
|
|
5
5
|
import { Subject, Observable } from 'rxjs';
|
|
6
|
-
import * as
|
|
6
|
+
import * as i72 from '@angular/forms';
|
|
7
7
|
import { UntypedFormGroup, AbstractControl, ValidatorFn, ValidationErrors, UntypedFormArray, UntypedFormControl, FormControlDirective, AsyncValidatorFn, FormGroup, FormControl } from '@angular/forms';
|
|
8
|
-
import * as
|
|
8
|
+
import * as i74 from '@ngx-translate/core';
|
|
9
9
|
import { TranslateService } from '@ngx-translate/core';
|
|
10
10
|
import moment from 'moment';
|
|
11
11
|
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
12
12
|
import { OverlayRef, Overlay as Overlay$1, CdkConnectedOverlay } from '@angular/cdk/overlay';
|
|
13
13
|
import Popper from 'popper.js';
|
|
14
14
|
import { ClipboardService } from 'ngx-clipboard';
|
|
15
|
-
import * as
|
|
15
|
+
import * as i75 from '@angular/cdk/a11y';
|
|
16
16
|
import { InteractivityChecker } from '@angular/cdk/a11y';
|
|
17
|
-
import * as
|
|
18
|
-
import * as
|
|
17
|
+
import * as i71 from '@angular/common';
|
|
18
|
+
import * as i77 from '@angular/cdk/scrolling';
|
|
19
19
|
import { HttpErrorResponse } from '@angular/common/http';
|
|
20
20
|
|
|
21
21
|
/**
|
|
@@ -5983,6 +5983,205 @@ declare class DateDisplayPipe2 implements PipeTransform {
|
|
|
5983
5983
|
static ɵpipe: i0.ɵɵPipeDeclaration<DateDisplayPipe2, "dateDisplay2", false>;
|
|
5984
5984
|
}
|
|
5985
5985
|
|
|
5986
|
+
/**
|
|
5987
|
+
* Position of the menu relative to the input
|
|
5988
|
+
*/
|
|
5989
|
+
type MultiselectMenuPosition = 'top_right' | 'top_left' | 'bottom_left' | 'bottom_right';
|
|
5990
|
+
/**
|
|
5991
|
+
* Multiselect component that allows a user to pick multiple items from a dropdown list.
|
|
5992
|
+
* Selected items are displayed as dismissable tags inside the input area.
|
|
5993
|
+
*
|
|
5994
|
+
* The formModel value is an array of MenuItem objects representing the current selection.
|
|
5995
|
+
*
|
|
5996
|
+
* @export
|
|
5997
|
+
*/
|
|
5998
|
+
declare class MultiselectComponent extends FormControlBase implements OnInit, OnChanges, AfterViewInit {
|
|
5999
|
+
protected validationMessageService: ValidationMessageService;
|
|
6000
|
+
protected formGroupHelper: FormGroupHelper;
|
|
6001
|
+
protected translate: TranslateService;
|
|
6002
|
+
protected scrollService: ScrollService;
|
|
6003
|
+
/**
|
|
6004
|
+
* Close the popup menu on resize so the width and positioning can be recalculated.
|
|
6005
|
+
*/
|
|
6006
|
+
onResize(): void;
|
|
6007
|
+
/**
|
|
6008
|
+
* Items to show in multiselect menu
|
|
6009
|
+
*/
|
|
6010
|
+
options: Array<MenuItem>;
|
|
6011
|
+
/**
|
|
6012
|
+
* Position of the menu relative to the input
|
|
6013
|
+
* @default 'bottom_right'
|
|
6014
|
+
*/
|
|
6015
|
+
menuPosition?: MultiselectMenuPosition;
|
|
6016
|
+
/**
|
|
6017
|
+
* Position the menu as fixed, ideal when multiselect is inside dialogs.
|
|
6018
|
+
*/
|
|
6019
|
+
popupFixed: boolean;
|
|
6020
|
+
/**
|
|
6021
|
+
* Placeholder text for the filter input
|
|
6022
|
+
*/
|
|
6023
|
+
placeholder: string;
|
|
6024
|
+
/**
|
|
6025
|
+
* The tag type to use for selected items
|
|
6026
|
+
* @default 'info'
|
|
6027
|
+
*/
|
|
6028
|
+
tagType: Tag['type'];
|
|
6029
|
+
/**
|
|
6030
|
+
* Hide the 'No matches' message when true
|
|
6031
|
+
*/
|
|
6032
|
+
hideNoMatches: boolean;
|
|
6033
|
+
/**
|
|
6034
|
+
* Text to show when the menu is empty. "No matches" is the default.
|
|
6035
|
+
*/
|
|
6036
|
+
noMatchesText: string;
|
|
6037
|
+
/**
|
|
6038
|
+
* Truncate menu items when true
|
|
6039
|
+
*/
|
|
6040
|
+
truncateItems: boolean;
|
|
6041
|
+
/**
|
|
6042
|
+
* Maximum number of items that can be selected. 0 means no limit.
|
|
6043
|
+
* @default 0
|
|
6044
|
+
*/
|
|
6045
|
+
maxSelections: number;
|
|
6046
|
+
/**
|
|
6047
|
+
* Notify parent when the filter text changes
|
|
6048
|
+
*/
|
|
6049
|
+
search: EventEmitter<string>;
|
|
6050
|
+
/**
|
|
6051
|
+
* Notify parent when selection changes
|
|
6052
|
+
*/
|
|
6053
|
+
selectionChanged: EventEmitter<MenuItem[]>;
|
|
6054
|
+
/**
|
|
6055
|
+
* Reference to the filter input element
|
|
6056
|
+
*/
|
|
6057
|
+
filterInput: ElementRef<HTMLInputElement>;
|
|
6058
|
+
/**
|
|
6059
|
+
* Access to the popup directive
|
|
6060
|
+
*/
|
|
6061
|
+
private popup?;
|
|
6062
|
+
/**
|
|
6063
|
+
* Filtered items to show in multiselect menu
|
|
6064
|
+
*/
|
|
6065
|
+
filteredOptions: Array<MenuItem>;
|
|
6066
|
+
/**
|
|
6067
|
+
* Tracks if the menu is open or hidden
|
|
6068
|
+
*/
|
|
6069
|
+
menuStatus: PopupStatus;
|
|
6070
|
+
/**
|
|
6071
|
+
* FormControl for the filter input
|
|
6072
|
+
*/
|
|
6073
|
+
filterFormModel: UntypedFormControl;
|
|
6074
|
+
/**
|
|
6075
|
+
* Placeholder to display on the filter input
|
|
6076
|
+
*/
|
|
6077
|
+
effectivePlaceholder: string;
|
|
6078
|
+
/**
|
|
6079
|
+
* The currently selected items
|
|
6080
|
+
*/
|
|
6081
|
+
selectedItems: MenuItem[];
|
|
6082
|
+
/**
|
|
6083
|
+
* Tags derived from the selected items
|
|
6084
|
+
*/
|
|
6085
|
+
selectedTags: Tag[];
|
|
6086
|
+
/**
|
|
6087
|
+
* Index of the currently highlighted item for keyboard nav
|
|
6088
|
+
*/
|
|
6089
|
+
private highlightedItemIndex;
|
|
6090
|
+
/**
|
|
6091
|
+
* Selectable items flattened from the options
|
|
6092
|
+
*/
|
|
6093
|
+
private selectableItems;
|
|
6094
|
+
/** Placeholder text for 'Choose' */
|
|
6095
|
+
private choosePlaceholder;
|
|
6096
|
+
constructor(validationMessageService: ValidationMessageService, formGroupHelper: FormGroupHelper, translate: TranslateService, scrollService: ScrollService);
|
|
6097
|
+
/**
|
|
6098
|
+
* The angular onChanges lifecycle event
|
|
6099
|
+
*/
|
|
6100
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
6101
|
+
/**
|
|
6102
|
+
* The angular onInit lifecycle hook
|
|
6103
|
+
*/
|
|
6104
|
+
ngOnInit(): void;
|
|
6105
|
+
/**
|
|
6106
|
+
* The angular afterViewInit lifecycle hook
|
|
6107
|
+
*/
|
|
6108
|
+
ngAfterViewInit(): void;
|
|
6109
|
+
/**
|
|
6110
|
+
* Show and hide the popup menu
|
|
6111
|
+
*/
|
|
6112
|
+
toggleMenu(event?: Event): void;
|
|
6113
|
+
/**
|
|
6114
|
+
* Handle a menu item being clicked — toggle its selection
|
|
6115
|
+
*/
|
|
6116
|
+
onItemSelected(item: MenuItem): void;
|
|
6117
|
+
/**
|
|
6118
|
+
* Remove a selected tag by its index
|
|
6119
|
+
*/
|
|
6120
|
+
removeTag(tag: Tag): void;
|
|
6121
|
+
/**
|
|
6122
|
+
* Handle filter input changes
|
|
6123
|
+
*/
|
|
6124
|
+
onFilterInput(): void;
|
|
6125
|
+
/**
|
|
6126
|
+
* Handle keyboard navigation
|
|
6127
|
+
*/
|
|
6128
|
+
keyNavigate(event: KeyboardEvent): void;
|
|
6129
|
+
/**
|
|
6130
|
+
* Mark the form as touched on blur
|
|
6131
|
+
*/
|
|
6132
|
+
onBlur(): void;
|
|
6133
|
+
/**
|
|
6134
|
+
* Clear all selected items
|
|
6135
|
+
*/
|
|
6136
|
+
clearAll(): void;
|
|
6137
|
+
/**
|
|
6138
|
+
* Unfilter options and update selectable items
|
|
6139
|
+
*/
|
|
6140
|
+
resetOptions(options?: MenuItem[]): void;
|
|
6141
|
+
/**
|
|
6142
|
+
* Navigate the options list using arrow keys
|
|
6143
|
+
*/
|
|
6144
|
+
private onArrowDownUp;
|
|
6145
|
+
/**
|
|
6146
|
+
* Scroll menu to a specific item
|
|
6147
|
+
*/
|
|
6148
|
+
private scrollToItem;
|
|
6149
|
+
/**
|
|
6150
|
+
* Filter options by label (contains)
|
|
6151
|
+
*/
|
|
6152
|
+
private filterOptionsArray;
|
|
6153
|
+
/**
|
|
6154
|
+
* React to formModel changes from outside the component
|
|
6155
|
+
*/
|
|
6156
|
+
private formModelChanged;
|
|
6157
|
+
/**
|
|
6158
|
+
* Synchronize the checked state on options based on selectedItems
|
|
6159
|
+
*/
|
|
6160
|
+
private syncCheckedState;
|
|
6161
|
+
/**
|
|
6162
|
+
* Compare two MenuItems for equality
|
|
6163
|
+
*/
|
|
6164
|
+
private isSameItem;
|
|
6165
|
+
/**
|
|
6166
|
+
* Update the formModel with current selected items
|
|
6167
|
+
*/
|
|
6168
|
+
private updateFormModelValue;
|
|
6169
|
+
/**
|
|
6170
|
+
* Rebuild the tags array from selected items
|
|
6171
|
+
*/
|
|
6172
|
+
private updateTags;
|
|
6173
|
+
/**
|
|
6174
|
+
* Keep filter input disabled status in-sync with the form model
|
|
6175
|
+
*/
|
|
6176
|
+
private synchronizeDisabledAttributes;
|
|
6177
|
+
/**
|
|
6178
|
+
* Recompute the placeholder text
|
|
6179
|
+
*/
|
|
6180
|
+
private updatePlaceholderText;
|
|
6181
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultiselectComponent, never>;
|
|
6182
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiselectComponent, "ec-multiselect", never, { "options": { "alias": "options"; "required": false; }; "menuPosition": { "alias": "menuPosition"; "required": false; }; "popupFixed": { "alias": "popupFixed"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "tagType": { "alias": "tagType"; "required": false; }; "hideNoMatches": { "alias": "hideNoMatches"; "required": false; }; "noMatchesText": { "alias": "noMatchesText"; "required": false; }; "truncateItems": { "alias": "truncateItems"; "required": false; }; "maxSelections": { "alias": "maxSelections"; "required": false; }; }, { "search": "search"; "selectionChanged": "selectionChanged"; }, never, never, false, never>;
|
|
6183
|
+
}
|
|
6184
|
+
|
|
5986
6185
|
type ComponentsModuleConfig = {
|
|
5987
6186
|
tracker: Provider;
|
|
5988
6187
|
};
|
|
@@ -5994,7 +6193,7 @@ declare class ComponentsModule {
|
|
|
5994
6193
|
*/
|
|
5995
6194
|
static forRoot(config: ComponentsModuleConfig): ModuleWithProviders<ComponentsModule>;
|
|
5996
6195
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentsModule, never>;
|
|
5997
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ComponentsModule, [typeof ButtonComponent, typeof TabsComponent, typeof TextboxComponent, typeof NavItemActiveDirective, typeof SpinnerComponent, typeof ViewOverlayComponent, typeof BannerComponent, typeof ResizableTableDirective, typeof TabsComponent, typeof TableComponent, typeof SearchableTableComponent, typeof ComboboxComponent, typeof MenuComponent, typeof PopupContainerDirective, typeof DropdownComponent, typeof ConfirmComponent, typeof DialogComponent, typeof DateDisplayPipe, typeof TimeDisplayPipe, typeof MockDateDisplayPipe, typeof RadioButtonComponent, typeof CheckboxComponent, typeof NumericboxComponent, typeof AvatarComponent, typeof AppBarComponent, typeof SplashComponent, typeof IfViewportWidthDirective, typeof ClickAreaForDirective, typeof CollapsibleToggleComponent, typeof TableMasterRowComponent, typeof TableMasterHeaderRowComponent, typeof TableDetailRowComponent, typeof TableLockedColumnComponent, typeof TableSelectableRowComponent, typeof PopoverComponent, typeof TablePaginationComponent, typeof RowCountPipe, typeof CopyButtonDirective, typeof TablePaginationComponent, typeof TagsComponent, typeof FormControlComponent, typeof SelectComponent, typeof ItemDisplayComponent, typeof TableSelectableRowComponent, typeof ResizableColumnComponent, typeof DialogGroupComponent, typeof FileUploadComponent, typeof FormGroupComponent, typeof JsonDisplayComponent, typeof ToastComponent, typeof ToasterComponent, typeof PageViewComponent, typeof PageTitleComponent, typeof WizardProgressComponent, typeof WizardButtonsComponent, typeof HierarchyTreeComponent, typeof TreeComponent, typeof RelativeDatePipe, typeof ResizableComponent, typeof HighlightTextPipe, typeof FormControlLabelComponent, typeof ItemPickerComponent, typeof HelpPopoverComponent, typeof LinkButtonComponent, typeof TooltipComponent, typeof CopyTableButtonDirective, typeof TooltipDirective, typeof CalendarComponent, typeof CalendarItemComponent, typeof DateInputComponent, typeof KeyboardNavContainerDirective, typeof DateDisplayPipe2], [typeof
|
|
6196
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ComponentsModule, [typeof ButtonComponent, typeof TabsComponent, typeof TextboxComponent, typeof NavItemActiveDirective, typeof SpinnerComponent, typeof ViewOverlayComponent, typeof BannerComponent, typeof ResizableTableDirective, typeof TabsComponent, typeof TableComponent, typeof SearchableTableComponent, typeof ComboboxComponent, typeof MenuComponent, typeof PopupContainerDirective, typeof DropdownComponent, typeof ConfirmComponent, typeof DialogComponent, typeof DateDisplayPipe, typeof TimeDisplayPipe, typeof MockDateDisplayPipe, typeof RadioButtonComponent, typeof CheckboxComponent, typeof NumericboxComponent, typeof AvatarComponent, typeof AppBarComponent, typeof SplashComponent, typeof IfViewportWidthDirective, typeof ClickAreaForDirective, typeof CollapsibleToggleComponent, typeof TableMasterRowComponent, typeof TableMasterHeaderRowComponent, typeof TableDetailRowComponent, typeof TableLockedColumnComponent, typeof TableSelectableRowComponent, typeof PopoverComponent, typeof TablePaginationComponent, typeof RowCountPipe, typeof CopyButtonDirective, typeof TablePaginationComponent, typeof TagsComponent, typeof FormControlComponent, typeof SelectComponent, typeof ItemDisplayComponent, typeof TableSelectableRowComponent, typeof ResizableColumnComponent, typeof DialogGroupComponent, typeof FileUploadComponent, typeof FormGroupComponent, typeof JsonDisplayComponent, typeof ToastComponent, typeof ToasterComponent, typeof PageViewComponent, typeof PageTitleComponent, typeof WizardProgressComponent, typeof WizardButtonsComponent, typeof HierarchyTreeComponent, typeof TreeComponent, typeof RelativeDatePipe, typeof ResizableComponent, typeof HighlightTextPipe, typeof FormControlLabelComponent, typeof ItemPickerComponent, typeof HelpPopoverComponent, typeof LinkButtonComponent, typeof TooltipComponent, typeof CopyTableButtonDirective, typeof TooltipDirective, typeof CalendarComponent, typeof CalendarItemComponent, typeof DateInputComponent, typeof KeyboardNavContainerDirective, typeof DateDisplayPipe2, typeof MultiselectComponent], [typeof i71.CommonModule, typeof i72.FormsModule, typeof i72.ReactiveFormsModule, typeof i73.RouterModule, typeof i74.TranslateModule, typeof i75.A11yModule, typeof _angular_cdk_overlay.OverlayModule, typeof i77.ScrollingModule], [typeof ButtonComponent, typeof TabsComponent, typeof TextboxComponent, typeof NavItemActiveDirective, typeof SpinnerComponent, typeof ViewOverlayComponent, typeof BannerComponent, typeof TabsComponent, typeof TableComponent, typeof SearchableTableComponent, typeof ComboboxComponent, typeof MenuComponent, typeof MultiselectComponent, typeof PopupContainerDirective, typeof DropdownComponent, typeof ConfirmComponent, typeof DialogComponent, typeof DateDisplayPipe, typeof TimeDisplayPipe, typeof RadioButtonComponent, typeof CheckboxComponent, typeof NumericboxComponent, typeof AvatarComponent, typeof AppBarComponent, typeof SplashComponent, typeof IfViewportWidthDirective, typeof ClickAreaForDirective, typeof CollapsibleToggleComponent, typeof TableMasterRowComponent, typeof TableMasterHeaderRowComponent, typeof TableLockedColumnComponent, typeof TableSelectableRowComponent, typeof PopoverComponent, typeof CopyButtonDirective, typeof TablePaginationComponent, typeof TagsComponent, typeof FormControlComponent, typeof SelectComponent, typeof ItemDisplayComponent, typeof ResizableColumnComponent, typeof DialogGroupComponent, typeof FileUploadComponent, typeof FormGroupComponent, typeof JsonDisplayComponent, typeof ToastComponent, typeof ToasterComponent, typeof PageViewComponent, typeof PageTitleComponent, typeof WizardProgressComponent, typeof WizardButtonsComponent, typeof HierarchyTreeComponent, typeof TreeComponent, typeof RelativeDatePipe, typeof ResizableComponent, typeof HighlightTextPipe, typeof FormControlLabelComponent, typeof ItemPickerComponent, typeof HelpPopoverComponent, typeof LinkButtonComponent, typeof TooltipComponent, typeof CopyTableButtonDirective, typeof TooltipDirective, typeof CalendarComponent, typeof DateInputComponent, typeof KeyboardNavContainerDirective, typeof DateDisplayPipe2]>;
|
|
5998
6197
|
static ɵinj: i0.ɵɵInjectorDeclaration<ComponentsModule>;
|
|
5999
6198
|
}
|
|
6000
6199
|
|
|
@@ -6343,5 +6542,5 @@ declare class MockTranslationHelperService {
|
|
|
6343
6542
|
setLanguage(): void;
|
|
6344
6543
|
}
|
|
6345
6544
|
|
|
6346
|
-
export { AppBarComponent, AvatarComponent, BannerComponent, ButtonComponent, CacheService, Calendar, CalendarComponent, CheckboxComponent, ClickAreaForDirective, CollapsibleToggleComponent, ComboboxComponent, ComponentsModule, ConfirmComponent, ConfirmDialogContext, CopyButtonBaseTestInjectorFactory, CopyButtonDirective, CopyTableButtonDirective, CustomValidators, DateDisplayPipe, DateDisplayPipe2, DateInput, DateInputComponent, DateTimeHelper, DialogCloseDuration, DialogCloseEvent, DialogCloseLatestEvent, DialogComponent, DialogEvent, DialogGroupComponent, DialogOpenDuration, DialogOpenEndEvent, DialogOpenStartEvent, DialogResult, DialogService, DropdownComponent, ErrorService, FileTypeExtensions, FileUploadComponent, FormControlBase, FormControlComponent, FormControlLabelComponent, FormGroupComponent, FormGroupHelper, HelpPopoverComponent, HierarchyBase, HierarchyBaseTestInjectorFactory, HierarchyItem, HierarchyMocks, HierarchyTreeComponent, HighlightTextPipe, IfViewportWidthDirective, ItemDisplayComponent, ItemPickerComponent, ItemPickerSelectableContext, JsonDisplayComponent, JsonHelper, KeyboardNavContainerDirective, LinkButtonComponent, MenuComponent, MockActivatedRoute, MockDateDisplayPipe, MockDialog, MockDialogContent, MockTranslateService, MockTranslationHelperService, NavGroup, NavItemActiveDirective, NumericboxComponent, Overlay, PageBaseComponent, PageBaseComponentTestHelper, PageBaseComponentTestInjectorFactory, PageInitResult, PageStatus, PageStatuses, PageTitleComponent, PageViewComponent, PanelCloseDuration, PanelOpenDuration, PopoverComponent, PopupContainerDirective, RadioButtonComponent, RadioButtonOption, RelativeDatePipe, ResizableBase, ResizableColumnComponent, ResizableComponent, RouterHelper, RowCountPipe, ScrollService, SearchableTableComponent, SelectComponent, SpinnerComponent, SplashComponent, SplashService, SpyFactory, TableComponent, TableLockedColumnComponent, TableMasterHeaderRowComponent, TableMasterRowComponent, TablePaginationComponent, TableSelectableRowComponent, TableSelectableRowContext, TabsComponent, Tag, TagsComponent, TelemetryService, TelemetryTrackerService, TextboxComponent, TimeDisplayPipe, ToastComponent, ToastEvent, ToastService, ToasterComponent, TooltipComponent, TooltipDirective, TooltipService, TreeComponent, UnicodeStrings, UserPreferenceService, ValidationMessageService, ViewOverlayComponent, WindowService, WizardBaseComponent, WizardButtonsComponent, WizardProgressComponent, canadianPostalCodeRegex, clickEvent, dateInputFormatRegex, domainPattern, findAllSpacesPattern, forEachFormControl, getApiError, getControlValue, getDecimalPattern, integerPattern, isApiError, menuAnimationSpeed, mockRouterFactory, mockRouterHelperFactory, numericboxValidation, orderByIgnoreCase, otherZipCodeRegex, phoneNumberValidationPattern, sortByIgnoreCase, textboxValidation, unitedStatesZipCodeRegex, urlValidationPattern, validateFormGroupValuesAreUnique };
|
|
6347
|
-
export type { ApiError, AppSplashEvent, AppSplashOptions, AvatarUser, BannerCacheEntry, BannerStyle, BannerType, ButtonType, CheckboxState, ClickableElement, ComboboxMenuPosition, ComponentsModuleConfig, ControlLabelPosition, CustomActionResult, DateDisplay, DateDisplayPipeOptions, DatePreferenceContainer, DialogAnimationEvent, DialogContent, DialogOptions, DialogSize, DisplayStatus, DisplayValue, FileOutput, FileType, FileUploadFormGroup, FileValidatorCallback, Help, HelpControl, HelpPopoverConfig, InvalidFileError, LinkItem, LinkTarget, MenuHostElementClasses, MenuItem, MenuTemplateType, NavItem, PagingInfo, PickerItem, PopoverContentPosition, PopupPlacement, PopupStatus, RadioButtonDirection, RadioButtonType, RelativeDateOptions, ResizeCacheEntry, RowCountInfo, SearchableTableRefreshOptions, Tab, TableSearchResults, TableSort, TableSortDirection, TagType, TextboxType, TextboxValidatorParameters, ToastAction, ToastItem, ToastSource, ToggledHierarchyItem, TooltipOptions, TooltipPosition, TreeType, ViewStatus, WizardTab };
|
|
6545
|
+
export { AppBarComponent, AvatarComponent, BannerComponent, ButtonComponent, CacheService, Calendar, CalendarComponent, CheckboxComponent, ClickAreaForDirective, CollapsibleToggleComponent, ComboboxComponent, ComponentsModule, ConfirmComponent, ConfirmDialogContext, CopyButtonBaseTestInjectorFactory, CopyButtonDirective, CopyTableButtonDirective, CustomValidators, DateDisplayPipe, DateDisplayPipe2, DateInput, DateInputComponent, DateTimeHelper, DialogCloseDuration, DialogCloseEvent, DialogCloseLatestEvent, DialogComponent, DialogEvent, DialogGroupComponent, DialogOpenDuration, DialogOpenEndEvent, DialogOpenStartEvent, DialogResult, DialogService, DropdownComponent, ErrorService, FileTypeExtensions, FileUploadComponent, FormControlBase, FormControlComponent, FormControlLabelComponent, FormGroupComponent, FormGroupHelper, HelpPopoverComponent, HierarchyBase, HierarchyBaseTestInjectorFactory, HierarchyItem, HierarchyMocks, HierarchyTreeComponent, HighlightTextPipe, IfViewportWidthDirective, ItemDisplayComponent, ItemPickerComponent, ItemPickerSelectableContext, JsonDisplayComponent, JsonHelper, KeyboardNavContainerDirective, LinkButtonComponent, MenuComponent, MockActivatedRoute, MockDateDisplayPipe, MockDialog, MockDialogContent, MockTranslateService, MockTranslationHelperService, MultiselectComponent, NavGroup, NavItemActiveDirective, NumericboxComponent, Overlay, PageBaseComponent, PageBaseComponentTestHelper, PageBaseComponentTestInjectorFactory, PageInitResult, PageStatus, PageStatuses, PageTitleComponent, PageViewComponent, PanelCloseDuration, PanelOpenDuration, PopoverComponent, PopupContainerDirective, RadioButtonComponent, RadioButtonOption, RelativeDatePipe, ResizableBase, ResizableColumnComponent, ResizableComponent, RouterHelper, RowCountPipe, ScrollService, SearchableTableComponent, SelectComponent, SpinnerComponent, SplashComponent, SplashService, SpyFactory, TableComponent, TableLockedColumnComponent, TableMasterHeaderRowComponent, TableMasterRowComponent, TablePaginationComponent, TableSelectableRowComponent, TableSelectableRowContext, TabsComponent, Tag, TagsComponent, TelemetryService, TelemetryTrackerService, TextboxComponent, TimeDisplayPipe, ToastComponent, ToastEvent, ToastService, ToasterComponent, TooltipComponent, TooltipDirective, TooltipService, TreeComponent, UnicodeStrings, UserPreferenceService, ValidationMessageService, ViewOverlayComponent, WindowService, WizardBaseComponent, WizardButtonsComponent, WizardProgressComponent, canadianPostalCodeRegex, clickEvent, dateInputFormatRegex, domainPattern, findAllSpacesPattern, forEachFormControl, getApiError, getControlValue, getDecimalPattern, integerPattern, isApiError, menuAnimationSpeed, mockRouterFactory, mockRouterHelperFactory, numericboxValidation, orderByIgnoreCase, otherZipCodeRegex, phoneNumberValidationPattern, sortByIgnoreCase, textboxValidation, unitedStatesZipCodeRegex, urlValidationPattern, validateFormGroupValuesAreUnique };
|
|
6546
|
+
export type { ApiError, AppSplashEvent, AppSplashOptions, AvatarUser, BannerCacheEntry, BannerStyle, BannerType, ButtonType, CheckboxState, ClickableElement, ComboboxMenuPosition, ComponentsModuleConfig, ControlLabelPosition, CustomActionResult, DateDisplay, DateDisplayPipeOptions, DatePreferenceContainer, DialogAnimationEvent, DialogContent, DialogOptions, DialogSize, DisplayStatus, DisplayValue, FileOutput, FileType, FileUploadFormGroup, FileValidatorCallback, Help, HelpControl, HelpPopoverConfig, InvalidFileError, LinkItem, LinkTarget, MenuHostElementClasses, MenuItem, MenuTemplateType, MultiselectMenuPosition, NavItem, PagingInfo, PickerItem, PopoverContentPosition, PopupPlacement, PopupStatus, RadioButtonDirection, RadioButtonType, RelativeDateOptions, ResizeCacheEntry, RowCountInfo, SearchableTableRefreshOptions, Tab, TableSearchResults, TableSort, TableSortDirection, TagType, TextboxType, TextboxValidatorParameters, ToastAction, ToastItem, ToastSource, ToggledHierarchyItem, TooltipOptions, TooltipPosition, TreeType, ViewStatus, WizardTab };
|