@verisoft/ui-core 21.0.15 → 21.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/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { SimpleChanges, EventEmitter, QueryList,
|
|
2
|
+
import { InjectionToken, SimpleChanges, EventEmitter, QueryList, OnInit, OnChanges, OnDestroy, AfterViewInit, ChangeDetectorRef, ViewChild, InputSignal, Type, TemplateRef, Signal, PipeTransform } from '@angular/core';
|
|
3
|
+
import * as _verisoft_ui_core from '@verisoft/ui-core';
|
|
3
4
|
import * as _verisoft_core from '@verisoft/core';
|
|
4
5
|
import { FilterEvent, LazyLoadEvent, RequestParams, DatasourceType, SortDirectionType, Sort } from '@verisoft/core';
|
|
5
6
|
import * as rxjs from 'rxjs';
|
|
@@ -9,6 +10,235 @@ import { CanDeactivate, ActivatedRoute, Router, Params } from '@angular/router';
|
|
|
9
10
|
import { Store } from '@ngrx/store';
|
|
10
11
|
import { SafeHtml } from '@angular/platform-browser';
|
|
11
12
|
|
|
13
|
+
type KeyboardKey = 'ArrowUp' | 'ArrowDown' | 'ArrowLeft' | 'ArrowRight' | 'Home' | 'End' | 'PageUp' | 'PageDown' | 'Enter' | ' ' | 'Escape' | 'Tab';
|
|
14
|
+
type KeyboardKeyList = readonly KeyboardKey[];
|
|
15
|
+
|
|
16
|
+
type LinearNavigationAction = 'next' | 'previous' | 'first' | 'last';
|
|
17
|
+
type InteractionAction = 'activate' | 'close' | 'dismiss';
|
|
18
|
+
declare function assertNever(value: never): never;
|
|
19
|
+
|
|
20
|
+
declare function matchesKeyboardKey(event: KeyboardEvent, keys: KeyboardKeyList): boolean;
|
|
21
|
+
declare function suppressKeyboardEvent(event: KeyboardEvent, preventDefault: boolean): void;
|
|
22
|
+
|
|
23
|
+
interface KeyboardNavigableItem {
|
|
24
|
+
disabled?: boolean;
|
|
25
|
+
}
|
|
26
|
+
declare function filterEnabledItems<T extends KeyboardNavigableItem>(items: readonly T[]): readonly T[];
|
|
27
|
+
declare function moveLinearIndex(currentIndex: number, delta: number, length: number, loop: boolean): number;
|
|
28
|
+
declare function resolveInitialActiveIndex<T>(items: readonly T[], getItemId: (item: T) => string | undefined, initialActiveItemId?: string): number;
|
|
29
|
+
declare function getRovingTabIndex(isActive: boolean): number;
|
|
30
|
+
|
|
31
|
+
type MenuTriggerAction = 'open' | 'openToLast';
|
|
32
|
+
type MenuOpenKeyboardAction = LinearNavigationAction | InteractionAction;
|
|
33
|
+
type MenuKeyboardAction = MenuOpenKeyboardAction | MenuTriggerAction;
|
|
34
|
+
|
|
35
|
+
interface MenuKeyboardItem {
|
|
36
|
+
disabled?: boolean;
|
|
37
|
+
}
|
|
38
|
+
interface MenuKeyboardFocusA11y {
|
|
39
|
+
role?: string;
|
|
40
|
+
tabIndex?: number;
|
|
41
|
+
ariaHaspopup?: string;
|
|
42
|
+
ariaExpanded?: string;
|
|
43
|
+
ariaControls?: string;
|
|
44
|
+
ariaDisabled?: string;
|
|
45
|
+
}
|
|
46
|
+
interface MenuKeyboardNavigation {
|
|
47
|
+
enabled: boolean;
|
|
48
|
+
openKeys: KeyboardKeyList;
|
|
49
|
+
openToLastKeys: KeyboardKeyList;
|
|
50
|
+
nextKeys: KeyboardKeyList;
|
|
51
|
+
previousKeys: KeyboardKeyList;
|
|
52
|
+
firstKeys: KeyboardKeyList;
|
|
53
|
+
lastKeys: KeyboardKeyList;
|
|
54
|
+
selectKeys: KeyboardKeyList;
|
|
55
|
+
closeKeys: KeyboardKeyList;
|
|
56
|
+
dismissKeys: KeyboardKeyList;
|
|
57
|
+
loop: boolean;
|
|
58
|
+
preventDefault: boolean;
|
|
59
|
+
initialActiveItemId?: string;
|
|
60
|
+
activeItemClass: string;
|
|
61
|
+
}
|
|
62
|
+
declare const DEFAULT_MENU_KEYBOARD_NAVIGATION: MenuKeyboardNavigation;
|
|
63
|
+
type MenuKeyboardNavigationInput = boolean | Partial<MenuKeyboardNavigation> | undefined;
|
|
64
|
+
interface MenuKeyboardConfig<T extends MenuKeyboardItem> {
|
|
65
|
+
getItems: () => readonly T[];
|
|
66
|
+
getItemId?: (item: T) => string | undefined;
|
|
67
|
+
onSelect: (item: T) => void;
|
|
68
|
+
onOpen: () => void;
|
|
69
|
+
onClose: (restoreFocus: boolean) => void;
|
|
70
|
+
keyboardNavigation?: MenuKeyboardNavigationInput | (() => MenuKeyboardNavigationInput);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
declare function resolveMenuTriggerAction(event: KeyboardEvent, navigation: MenuKeyboardNavigation): MenuTriggerAction | null;
|
|
74
|
+
declare function resolveMenuKeyboardAction(event: KeyboardEvent, navigation: MenuKeyboardNavigation): MenuOpenKeyboardAction | null;
|
|
75
|
+
|
|
76
|
+
declare function resolveMenuKeyboardNavigation(input: boolean | Partial<MenuKeyboardNavigation> | undefined): MenuKeyboardNavigation | null;
|
|
77
|
+
|
|
78
|
+
declare class MenuKeyboardController<T extends MenuKeyboardItem> {
|
|
79
|
+
private readonly config;
|
|
80
|
+
focusedIndex: number;
|
|
81
|
+
isOpen: boolean;
|
|
82
|
+
private keyboardPresetFocus;
|
|
83
|
+
constructor(config: MenuKeyboardConfig<T>);
|
|
84
|
+
get actionableItems(): readonly T[];
|
|
85
|
+
isNavigationEnabled(): boolean;
|
|
86
|
+
getActiveItemClass(): string;
|
|
87
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
88
|
+
onMenuKeydown(event: KeyboardEvent): void;
|
|
89
|
+
handleOpenChange(open: boolean): void;
|
|
90
|
+
cancelPendingOpen(): void;
|
|
91
|
+
close(restoreFocus: boolean): void;
|
|
92
|
+
setActiveItem(item: T): void;
|
|
93
|
+
isItemFocused(item: T): boolean;
|
|
94
|
+
getItemTabIndex(item: T): number;
|
|
95
|
+
private applyTriggerAction;
|
|
96
|
+
private applyOpenMenuAction;
|
|
97
|
+
private resolveNavigation;
|
|
98
|
+
private resolveInitialActiveIndex;
|
|
99
|
+
private getItemId;
|
|
100
|
+
private activateFocused;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
interface MenuKeyboardPort {
|
|
104
|
+
open(): boolean | Promise<boolean>;
|
|
105
|
+
close(restoreFocus: boolean): void | Promise<void>;
|
|
106
|
+
focusTrigger?(triggerHost: HTMLElement, a11y?: MenuKeyboardFocusA11y): void;
|
|
107
|
+
focusItem?(itemHost: HTMLElement, a11y?: MenuKeyboardFocusA11y): void;
|
|
108
|
+
applyTriggerAccessibility?(triggerHost: HTMLElement, a11y: MenuKeyboardFocusA11y): void;
|
|
109
|
+
applyItemAccessibility?(itemHost: HTMLElement, a11y: MenuKeyboardFocusA11y): void;
|
|
110
|
+
}
|
|
111
|
+
declare const MENU_KEYBOARD_PORT: InjectionToken<MenuKeyboardPort>;
|
|
112
|
+
|
|
113
|
+
declare class MenuKeyboardFacade<T extends MenuKeyboardItem = MenuKeyboardItem> {
|
|
114
|
+
private static nextListId;
|
|
115
|
+
readonly isOpen: i0.WritableSignal<boolean>;
|
|
116
|
+
readonly focusedIndex: i0.WritableSignal<number>;
|
|
117
|
+
readonly focusRequestVersion: i0.WritableSignal<number>;
|
|
118
|
+
readonly activeItemClass: i0.WritableSignal<string>;
|
|
119
|
+
readonly listId: i0.WritableSignal<string>;
|
|
120
|
+
private readonly actionableItems;
|
|
121
|
+
private triggerElement;
|
|
122
|
+
private listElement;
|
|
123
|
+
private readonly itemElements;
|
|
124
|
+
private activeItemHandler;
|
|
125
|
+
private triggerKeydownHandler;
|
|
126
|
+
private focusItemHandler;
|
|
127
|
+
private syncTriggerHandler;
|
|
128
|
+
private syncItemHandler;
|
|
129
|
+
private portProvider;
|
|
130
|
+
setPortProvider(provider: () => MenuKeyboardPort | null): void;
|
|
131
|
+
setActiveItemHandler(handler: (item: T) => void): void;
|
|
132
|
+
setTriggerKeydownHandler(handler: (event: KeyboardEvent) => void): void;
|
|
133
|
+
setFocusItemHandler(handler: (host: HTMLElement, a11y?: MenuKeyboardFocusA11y) => void): void;
|
|
134
|
+
setSyncTriggerHandler(handler: (host: HTMLElement, a11y: MenuKeyboardFocusA11y) => void): void;
|
|
135
|
+
setSyncItemHandler(handler: (host: HTMLElement, a11y: MenuKeyboardFocusA11y) => void): void;
|
|
136
|
+
registerTrigger(element: HTMLElement): void;
|
|
137
|
+
unregisterTrigger(element: HTMLElement): void;
|
|
138
|
+
registerList(element: HTMLElement): void;
|
|
139
|
+
unregisterList(element: HTMLElement): void;
|
|
140
|
+
registerItem(item: T, element: HTMLElement): void;
|
|
141
|
+
unregisterItem(item: T, element: HTMLElement): void;
|
|
142
|
+
unregisterItemElement(element: HTMLElement): void;
|
|
143
|
+
getTriggerElement(): HTMLElement | null;
|
|
144
|
+
getListElement(): HTMLElement | null;
|
|
145
|
+
publish(controller: MenuKeyboardController<T>, items: readonly T[]): void;
|
|
146
|
+
isItemActive(item: T): boolean;
|
|
147
|
+
getItemTabIndex(item: T): number;
|
|
148
|
+
requestActiveItem(item: T): void;
|
|
149
|
+
requestTriggerKeydown(event: KeyboardEvent): void;
|
|
150
|
+
getActiveItemElement(): HTMLElement | null;
|
|
151
|
+
requestItemFocus(host: HTMLElement, a11y?: MenuKeyboardFocusA11y): void;
|
|
152
|
+
requestTriggerAccessibilitySync(host: HTMLElement, a11y: MenuKeyboardFocusA11y): void;
|
|
153
|
+
requestItemAccessibilitySync(host: HTMLElement, a11y: MenuKeyboardFocusA11y): void;
|
|
154
|
+
resolveItemFromTarget(target: Node): T | null;
|
|
155
|
+
getPort(): MenuKeyboardPort | null;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
declare const MENU_KEYBOARD: InjectionToken<MenuKeyboardFacade<MenuKeyboardItem>>;
|
|
159
|
+
|
|
160
|
+
declare class MenuKeyboardDirective<T extends MenuKeyboardItem = MenuKeyboardItem> {
|
|
161
|
+
readonly menuKeyboardItems: i0.InputSignal<readonly T[]>;
|
|
162
|
+
readonly menuKeyboardNavigation: i0.InputSignal<MenuKeyboardNavigationInput>;
|
|
163
|
+
readonly menuKeyboardEnableWhenUnset: i0.InputSignal<boolean>;
|
|
164
|
+
readonly menuKeyboardDefaults: i0.InputSignal<Partial<MenuKeyboardNavigation>>;
|
|
165
|
+
readonly menuKeyboardItemId: i0.InputSignal<(item: T) => string | undefined>;
|
|
166
|
+
readonly menuKeyboardSelect: i0.OutputEmitterRef<T>;
|
|
167
|
+
private readonly facade;
|
|
168
|
+
readonly isOpen: i0.WritableSignal<boolean>;
|
|
169
|
+
readonly focusedIndex: i0.WritableSignal<number>;
|
|
170
|
+
readonly activeItemClass: i0.WritableSignal<string>;
|
|
171
|
+
readonly listId: i0.WritableSignal<string>;
|
|
172
|
+
private readonly elementRef;
|
|
173
|
+
private readonly document;
|
|
174
|
+
private readonly injector;
|
|
175
|
+
private readonly destroyRef;
|
|
176
|
+
private readonly onDocumentKeydown;
|
|
177
|
+
private portOperationState;
|
|
178
|
+
private pendingPortIntent;
|
|
179
|
+
private readonly controller;
|
|
180
|
+
constructor();
|
|
181
|
+
handleOpenChange(open: boolean): void;
|
|
182
|
+
close(restoreFocus?: boolean): void;
|
|
183
|
+
focusTrigger(): void;
|
|
184
|
+
focusActiveItem(): void;
|
|
185
|
+
getTriggerElement(): HTMLElement | undefined;
|
|
186
|
+
getListElement(): HTMLElement | undefined;
|
|
187
|
+
isItemActive(item: T): boolean;
|
|
188
|
+
getItemTabIndex(item: T): number;
|
|
189
|
+
hasActionableItems(): boolean;
|
|
190
|
+
private handleTriggerKeydown;
|
|
191
|
+
private handleDocumentKeydown;
|
|
192
|
+
private shouldHandleDocumentKeydown;
|
|
193
|
+
private bindDocumentKeydown;
|
|
194
|
+
private unbindDocumentKeydown;
|
|
195
|
+
private focusItemHost;
|
|
196
|
+
private applyTriggerAccessibility;
|
|
197
|
+
private applyItemAccessibility;
|
|
198
|
+
private buildItemFocusA11y;
|
|
199
|
+
private publishState;
|
|
200
|
+
private schedulePortIntent;
|
|
201
|
+
private executePortIntent;
|
|
202
|
+
private drainPendingPortIntent;
|
|
203
|
+
private openViaPort;
|
|
204
|
+
private closeViaPort;
|
|
205
|
+
private reportPortError;
|
|
206
|
+
private getPort;
|
|
207
|
+
private resolveNavigation;
|
|
208
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuKeyboardDirective<any>, never>;
|
|
209
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuKeyboardDirective<any>, "[vMenuKeyboard]", ["menuKeyboard"], { "menuKeyboardItems": { "alias": "menuKeyboardItems"; "required": false; "isSignal": true; }; "menuKeyboardNavigation": { "alias": "menuKeyboardNavigation"; "required": false; "isSignal": true; }; "menuKeyboardEnableWhenUnset": { "alias": "menuKeyboardEnableWhenUnset"; "required": false; "isSignal": true; }; "menuKeyboardDefaults": { "alias": "menuKeyboardDefaults"; "required": false; "isSignal": true; }; "menuKeyboardItemId": { "alias": "menuKeyboardItemId"; "required": false; "isSignal": true; }; }, { "menuKeyboardSelect": "menuKeyboardSelect"; }, never, never, true, never>;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
declare class MenuKeyboardTriggerDirective {
|
|
213
|
+
protected readonly facade: _verisoft_ui_core.MenuKeyboardFacade<_verisoft_ui_core.MenuKeyboardItem>;
|
|
214
|
+
private readonly elementRef;
|
|
215
|
+
private readonly destroyRef;
|
|
216
|
+
constructor();
|
|
217
|
+
onKeydown(event: KeyboardEvent): void;
|
|
218
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuKeyboardTriggerDirective, never>;
|
|
219
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuKeyboardTriggerDirective, "[vMenuKeyboardTrigger]", never, {}, {}, never, never, true, never>;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
declare class MenuKeyboardListDirective {
|
|
223
|
+
protected readonly facade: _verisoft_ui_core.MenuKeyboardFacade<_verisoft_ui_core.MenuKeyboardItem>;
|
|
224
|
+
private readonly elementRef;
|
|
225
|
+
private readonly destroyRef;
|
|
226
|
+
constructor();
|
|
227
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuKeyboardListDirective, never>;
|
|
228
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuKeyboardListDirective, "[vMenuKeyboardList]", never, {}, {}, never, never, true, never>;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
declare class MenuKeyboardItemDirective<T extends MenuKeyboardItem = MenuKeyboardItem> {
|
|
232
|
+
readonly item: i0.InputSignal<T>;
|
|
233
|
+
protected readonly facade: _verisoft_ui_core.MenuKeyboardFacade<MenuKeyboardItem>;
|
|
234
|
+
private readonly elementRef;
|
|
235
|
+
private readonly destroyRef;
|
|
236
|
+
constructor();
|
|
237
|
+
onMouseEnter(): void;
|
|
238
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuKeyboardItemDirective<any>, never>;
|
|
239
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuKeyboardItemDirective<any>, "[vMenuKeyboardItem]", never, { "item": { "alias": "menuKeyboardItem"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
240
|
+
}
|
|
241
|
+
|
|
12
242
|
declare function setComponentProperties<TComponent>(component: TComponent, value: Partial<TComponent>, firstChange?: boolean): void;
|
|
13
243
|
|
|
14
244
|
declare enum ControlSeverity {
|
|
@@ -378,6 +608,7 @@ interface MenuItem {
|
|
|
378
608
|
tooltip?: string;
|
|
379
609
|
url?: string;
|
|
380
610
|
visible?: boolean | Observable<boolean>;
|
|
611
|
+
disabled?: boolean;
|
|
381
612
|
type?: string;
|
|
382
613
|
children?: MenuItem[];
|
|
383
614
|
routerLink?: any;
|
|
@@ -500,6 +731,7 @@ interface DropdownButtonCore {
|
|
|
500
731
|
severity: InputSignal<ControlSeverityType | undefined>;
|
|
501
732
|
size: InputSignal<FieldSizeType | undefined>;
|
|
502
733
|
items: InputSignal<MenuItem[] | undefined>;
|
|
734
|
+
keyboardNavigation?: InputSignal<MenuKeyboardNavigationInput>;
|
|
503
735
|
}
|
|
504
736
|
|
|
505
737
|
declare const CALENDAR_COMPONENT_TOKEN: InjectionToken<CalendarCore>;
|
|
@@ -1237,5 +1469,5 @@ declare class Format {
|
|
|
1237
1469
|
static boolWithIcon(value: boolean): "<span>✓</span>" | "<span>⨯</span>";
|
|
1238
1470
|
}
|
|
1239
1471
|
|
|
1240
|
-
export { ACTION_BUTTON_GROUP_COMPONENT_TOKEN, BREADCRUMB_COMPONENT_TOKEN, BUTTON_COMPONENT_TOKEN, BaseFormDirective, BaseFormInputComponent, BaseInputControls, BreadcrumbCoreComponent, BreadcrumbService, ButtonShortCutDirective, CALENDAR_COMPONENT_TOKEN, CHECKBOX_COMPONENT_TOKEN, CONFIRM_DIALOG_COMPONENT_TOKEN, ColumnConfiguration, ColumnModel, ColumnVisibility, ControlSeverity, DEFAULT_DEBOUNCE_TIME, DEFAULT_PAGINATION, DROPDOWN_BUTTON_COMPONENT_TOKEN, DROPDOWN_COMPONENT_TOKEN, DatasourceDirective, DetailStoreDirective, DialogService, EnumToListPipe, ErrorCodesFns, ErrorPipe, FEATURE_LIST_COLUMN_PROVIDER, FEATURE_LIST_COMPONENT_TOKEN, FEATURE_LIST_PAGE_CONFIG_PROPERTY, FILTER_COMPONENT_TOKEN, FORM_FIELD_COMPONENT_TOKEN, FeatureListColumnDirective, FeatureListFilterFieldDirective, FeatureListFilterPipe, FieldAlign, FieldSize, FieldType, FilterFieldDirective, Format, GENERIC_FIELD_COMPONENT_TOKEN, GenericFieldType, GovButtonType, GovControlSeverity, HEADER_COMPONENT_TOKEN, ICONS_COMPONENT_TOKEN, INPUT_GROUP_COMPONENT_TOKEN, IconPosition, IconsComponent, KeyOrFunctionPipe, LOADER_COMPONENT_TOKEN, LOGO_ROUTER_ROUTE, LayoutType, LinkRenderer, MAX_COLUMN_CHAR_COUNT, MENU_TOKEN, MULTISELECT_COMPONENT_TOKEN, MenuServiceDirective, NUMBER_INPUT_COMPONENT_TOKEN, PAGE_HEADER_COMPONENT_TOKEN, PASSWORD_COMPONENT_TOKEN, PageHeaderCoreComponent, PageHeaderService, PasswordStrength, Position, PreventUnsavedChangesDirective, RADIOBUTTON_COMPONENT_TOKEN, Renderer, RowModel, SECTION_COMPONENT_TOKEN, SETTINGS_MENU, SIDE_MENU_COMPONENT_TOKEN, SIDE_MENU_STATE_TOKEN, SLIDER_COMPONENT_TOKEN, SNACKBAR_COMPONENT_TOKEN, STEPPER_COMPONENT_TOKEN, SWITCH_COMPONENT_TOKEN, ScreenSizeService, SideMenuProviderService, SideMenuService, SlotPosition, TABLE_COLUMN_PROVIDER, TABLE_COMPONENT_TOKEN, TABLE_FILTER_COMPONENT_TOKEN, TAB_VIEW_COMPONENT_TOKEN, TAG_COMPONENT_TOKEN, TEXTAREA_COMPONENT_TOKEN, TEXTFIELD_COMPONENT_TOKEN, TOOLTIP_COMPONENT_TOKEN, TableBuilder, TableButtonSeverity, TableColumnDirective, TableDatasourceDirective, TableFilterDirective, TableSelectionMode, TableService, UnsubscribeComponent, WarningCodesFns, WarningPipe, downloadFile, downloadText, getFilledControlCount, getFirstError, getFirstErrorFromControl, isFilterEmpty, isFormStateEqual, queryListChanged, routerRenderer, setComponentProperties, setDataToArray };
|
|
1241
|
-
export type { ActionButton, ActionButtonGroupCore, ActionColumnsDefinition, BaseFormCore, BaseFormDirectiveCore, Breadcrumb, BreadcrumbCore, ButtonCore, CalendarCore, CheckboxCore, ColumnDefinition, ColumnProvider, ColumnVisibilityType, CommonIcons, ConfirmDialogCore, ControlSeverityType, DataSourceComponentModel, DialogData, DropdownButtonCore, DropdownCore, ExtendedComponent, ExtendedDialogData, ExtendedRequestType, FeatureListColumnDefinition, FeatureListColumnFilterOptions, FeatureListColumnProvider, FeatureListCore, FeatureListPageConfig, FieldAlignType, FieldSizeType, FieldTypeType, FilterCore, FilterDefinition, FormFieldCore, FormState, GenericFieldCore, GenericFieldDefinition, GenericFieldTypeType, GovButtonTypeType, GovControlSeverityType, HeaderCore, IconLibraryType, IconPositionType, IconsCore, InputGroupCore, InputGroupItem, LayoutTypeType, LoaderCore, MenuItem, MenuItemData, MultiselectCore, NotificableProperty, NumberInputCore, PageHeaderCore, PasswordCore, PasswordValidationItem, PositionType, PreventUnsavedChangesCore, RadioButtonItem, RadiobuttonCore, SectionCore, SideMenuCore, SideMenuModuleConfig, SideMenuState, SliderCore, SlotPositionType, SnackbarCore, StepperCore, StepperItem, SwitchCore, TabViewCore, TabViewItemCore, TableButtonSeverityType, TableCore, TableFilterCore, TableSelectionModeType, TableSignal, TagCore, TagVariant, TextareaCore, TextfieldCore, TooltipCore };
|
|
1472
|
+
export { ACTION_BUTTON_GROUP_COMPONENT_TOKEN, BREADCRUMB_COMPONENT_TOKEN, BUTTON_COMPONENT_TOKEN, BaseFormDirective, BaseFormInputComponent, BaseInputControls, BreadcrumbCoreComponent, BreadcrumbService, ButtonShortCutDirective, CALENDAR_COMPONENT_TOKEN, CHECKBOX_COMPONENT_TOKEN, CONFIRM_DIALOG_COMPONENT_TOKEN, ColumnConfiguration, ColumnModel, ColumnVisibility, ControlSeverity, DEFAULT_DEBOUNCE_TIME, DEFAULT_MENU_KEYBOARD_NAVIGATION, DEFAULT_PAGINATION, DROPDOWN_BUTTON_COMPONENT_TOKEN, DROPDOWN_COMPONENT_TOKEN, DatasourceDirective, DetailStoreDirective, DialogService, EnumToListPipe, ErrorCodesFns, ErrorPipe, FEATURE_LIST_COLUMN_PROVIDER, FEATURE_LIST_COMPONENT_TOKEN, FEATURE_LIST_PAGE_CONFIG_PROPERTY, FILTER_COMPONENT_TOKEN, FORM_FIELD_COMPONENT_TOKEN, FeatureListColumnDirective, FeatureListFilterFieldDirective, FeatureListFilterPipe, FieldAlign, FieldSize, FieldType, FilterFieldDirective, Format, GENERIC_FIELD_COMPONENT_TOKEN, GenericFieldType, GovButtonType, GovControlSeverity, HEADER_COMPONENT_TOKEN, ICONS_COMPONENT_TOKEN, INPUT_GROUP_COMPONENT_TOKEN, IconPosition, IconsComponent, KeyOrFunctionPipe, LOADER_COMPONENT_TOKEN, LOGO_ROUTER_ROUTE, LayoutType, LinkRenderer, MAX_COLUMN_CHAR_COUNT, MENU_KEYBOARD, MENU_KEYBOARD_PORT, MENU_TOKEN, MULTISELECT_COMPONENT_TOKEN, MenuKeyboardController, MenuKeyboardDirective, MenuKeyboardFacade, MenuKeyboardItemDirective, MenuKeyboardListDirective, MenuKeyboardTriggerDirective, MenuServiceDirective, NUMBER_INPUT_COMPONENT_TOKEN, PAGE_HEADER_COMPONENT_TOKEN, PASSWORD_COMPONENT_TOKEN, PageHeaderCoreComponent, PageHeaderService, PasswordStrength, Position, PreventUnsavedChangesDirective, RADIOBUTTON_COMPONENT_TOKEN, Renderer, RowModel, SECTION_COMPONENT_TOKEN, SETTINGS_MENU, SIDE_MENU_COMPONENT_TOKEN, SIDE_MENU_STATE_TOKEN, SLIDER_COMPONENT_TOKEN, SNACKBAR_COMPONENT_TOKEN, STEPPER_COMPONENT_TOKEN, SWITCH_COMPONENT_TOKEN, ScreenSizeService, SideMenuProviderService, SideMenuService, SlotPosition, TABLE_COLUMN_PROVIDER, TABLE_COMPONENT_TOKEN, TABLE_FILTER_COMPONENT_TOKEN, TAB_VIEW_COMPONENT_TOKEN, TAG_COMPONENT_TOKEN, TEXTAREA_COMPONENT_TOKEN, TEXTFIELD_COMPONENT_TOKEN, TOOLTIP_COMPONENT_TOKEN, TableBuilder, TableButtonSeverity, TableColumnDirective, TableDatasourceDirective, TableFilterDirective, TableSelectionMode, TableService, UnsubscribeComponent, WarningCodesFns, WarningPipe, assertNever, downloadFile, downloadText, filterEnabledItems, getFilledControlCount, getFirstError, getFirstErrorFromControl, getRovingTabIndex, isFilterEmpty, isFormStateEqual, matchesKeyboardKey, moveLinearIndex, queryListChanged, resolveInitialActiveIndex, resolveMenuKeyboardAction, resolveMenuKeyboardNavigation, resolveMenuTriggerAction, routerRenderer, setComponentProperties, setDataToArray, suppressKeyboardEvent };
|
|
1473
|
+
export type { ActionButton, ActionButtonGroupCore, ActionColumnsDefinition, BaseFormCore, BaseFormDirectiveCore, Breadcrumb, BreadcrumbCore, ButtonCore, CalendarCore, CheckboxCore, ColumnDefinition, ColumnProvider, ColumnVisibilityType, CommonIcons, ConfirmDialogCore, ControlSeverityType, DataSourceComponentModel, DialogData, DropdownButtonCore, DropdownCore, ExtendedComponent, ExtendedDialogData, ExtendedRequestType, FeatureListColumnDefinition, FeatureListColumnFilterOptions, FeatureListColumnProvider, FeatureListCore, FeatureListPageConfig, FieldAlignType, FieldSizeType, FieldTypeType, FilterCore, FilterDefinition, FormFieldCore, FormState, GenericFieldCore, GenericFieldDefinition, GenericFieldTypeType, GovButtonTypeType, GovControlSeverityType, HeaderCore, IconLibraryType, IconPositionType, IconsCore, InputGroupCore, InputGroupItem, InteractionAction, KeyboardKey, KeyboardKeyList, KeyboardNavigableItem, LayoutTypeType, LinearNavigationAction, LoaderCore, MenuItem, MenuItemData, MenuKeyboardAction, MenuKeyboardConfig, MenuKeyboardFocusA11y, MenuKeyboardItem, MenuKeyboardNavigation, MenuKeyboardNavigationInput, MenuKeyboardPort, MenuOpenKeyboardAction, MenuTriggerAction, MultiselectCore, NotificableProperty, NumberInputCore, PageHeaderCore, PasswordCore, PasswordValidationItem, PositionType, PreventUnsavedChangesCore, RadioButtonItem, RadiobuttonCore, SectionCore, SideMenuCore, SideMenuModuleConfig, SideMenuState, SliderCore, SlotPositionType, SnackbarCore, StepperCore, StepperItem, SwitchCore, TabViewCore, TabViewItemCore, TableButtonSeverityType, TableCore, TableFilterCore, TableSelectionModeType, TableSignal, TagCore, TagVariant, TextareaCore, TextfieldCore, TooltipCore };
|