@verisoft/ui-core 21.0.15 → 21.0.17
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,236 @@ 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_ACTIVE_ITEM_CLASS = "menu-keyboard__item--active";
|
|
63
|
+
declare const DEFAULT_MENU_KEYBOARD_NAVIGATION: MenuKeyboardNavigation;
|
|
64
|
+
type MenuKeyboardNavigationInput = boolean | Partial<MenuKeyboardNavigation> | undefined;
|
|
65
|
+
interface MenuKeyboardConfig<T extends MenuKeyboardItem> {
|
|
66
|
+
getItems: () => readonly T[];
|
|
67
|
+
getItemId?: (item: T) => string | undefined;
|
|
68
|
+
onSelect: (item: T) => void;
|
|
69
|
+
onOpen: () => void;
|
|
70
|
+
onClose: (restoreFocus: boolean) => void;
|
|
71
|
+
keyboardNavigation?: MenuKeyboardNavigationInput | (() => MenuKeyboardNavigationInput);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
declare function resolveMenuTriggerAction(event: KeyboardEvent, navigation: MenuKeyboardNavigation): MenuTriggerAction | null;
|
|
75
|
+
declare function resolveMenuKeyboardAction(event: KeyboardEvent, navigation: MenuKeyboardNavigation): MenuOpenKeyboardAction | null;
|
|
76
|
+
|
|
77
|
+
declare function resolveMenuKeyboardNavigation(input: boolean | Partial<MenuKeyboardNavigation> | undefined): MenuKeyboardNavigation | null;
|
|
78
|
+
|
|
79
|
+
declare class MenuKeyboardController<T extends MenuKeyboardItem> {
|
|
80
|
+
private readonly config;
|
|
81
|
+
focusedIndex: number;
|
|
82
|
+
isOpen: boolean;
|
|
83
|
+
private keyboardPresetFocus;
|
|
84
|
+
constructor(config: MenuKeyboardConfig<T>);
|
|
85
|
+
get actionableItems(): readonly T[];
|
|
86
|
+
isNavigationEnabled(): boolean;
|
|
87
|
+
getActiveItemClass(): string;
|
|
88
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
89
|
+
onMenuKeydown(event: KeyboardEvent): void;
|
|
90
|
+
handleOpenChange(open: boolean): void;
|
|
91
|
+
cancelPendingOpen(): void;
|
|
92
|
+
close(restoreFocus: boolean): void;
|
|
93
|
+
setActiveItem(item: T): void;
|
|
94
|
+
isItemFocused(item: T): boolean;
|
|
95
|
+
getItemTabIndex(item: T): number;
|
|
96
|
+
private applyTriggerAction;
|
|
97
|
+
private applyOpenMenuAction;
|
|
98
|
+
private resolveNavigation;
|
|
99
|
+
private resolveInitialActiveIndex;
|
|
100
|
+
private getItemId;
|
|
101
|
+
private activateFocused;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
interface MenuKeyboardPort {
|
|
105
|
+
open(): boolean | Promise<boolean>;
|
|
106
|
+
close(restoreFocus: boolean): void | Promise<void>;
|
|
107
|
+
focusTrigger?(triggerHost: HTMLElement, a11y?: MenuKeyboardFocusA11y): void;
|
|
108
|
+
focusItem?(itemHost: HTMLElement, a11y?: MenuKeyboardFocusA11y): void;
|
|
109
|
+
applyTriggerAccessibility?(triggerHost: HTMLElement, a11y: MenuKeyboardFocusA11y): void;
|
|
110
|
+
applyItemAccessibility?(itemHost: HTMLElement, a11y: MenuKeyboardFocusA11y): void;
|
|
111
|
+
}
|
|
112
|
+
declare const MENU_KEYBOARD_PORT: InjectionToken<MenuKeyboardPort>;
|
|
113
|
+
|
|
114
|
+
declare class MenuKeyboardFacade<T extends MenuKeyboardItem = MenuKeyboardItem> {
|
|
115
|
+
private static nextListId;
|
|
116
|
+
readonly isOpen: i0.WritableSignal<boolean>;
|
|
117
|
+
readonly focusedIndex: i0.WritableSignal<number>;
|
|
118
|
+
readonly focusRequestVersion: i0.WritableSignal<number>;
|
|
119
|
+
readonly activeItemClass: i0.WritableSignal<string>;
|
|
120
|
+
readonly listId: i0.WritableSignal<string>;
|
|
121
|
+
private readonly actionableItems;
|
|
122
|
+
private triggerElement;
|
|
123
|
+
private listElement;
|
|
124
|
+
private readonly itemElements;
|
|
125
|
+
private activeItemHandler;
|
|
126
|
+
private triggerKeydownHandler;
|
|
127
|
+
private focusItemHandler;
|
|
128
|
+
private syncTriggerHandler;
|
|
129
|
+
private syncItemHandler;
|
|
130
|
+
private portProvider;
|
|
131
|
+
setPortProvider(provider: () => MenuKeyboardPort | null): void;
|
|
132
|
+
setActiveItemHandler(handler: (item: T) => void): void;
|
|
133
|
+
setTriggerKeydownHandler(handler: (event: KeyboardEvent) => void): void;
|
|
134
|
+
setFocusItemHandler(handler: (host: HTMLElement, a11y?: MenuKeyboardFocusA11y) => void): void;
|
|
135
|
+
setSyncTriggerHandler(handler: (host: HTMLElement, a11y: MenuKeyboardFocusA11y) => void): void;
|
|
136
|
+
setSyncItemHandler(handler: (host: HTMLElement, a11y: MenuKeyboardFocusA11y) => void): void;
|
|
137
|
+
registerTrigger(element: HTMLElement): void;
|
|
138
|
+
unregisterTrigger(element: HTMLElement): void;
|
|
139
|
+
registerList(element: HTMLElement): void;
|
|
140
|
+
unregisterList(element: HTMLElement): void;
|
|
141
|
+
registerItem(item: T, element: HTMLElement): void;
|
|
142
|
+
unregisterItem(item: T, element: HTMLElement): void;
|
|
143
|
+
unregisterItemElement(element: HTMLElement): void;
|
|
144
|
+
getTriggerElement(): HTMLElement | null;
|
|
145
|
+
getListElement(): HTMLElement | null;
|
|
146
|
+
publish(controller: MenuKeyboardController<T>, items: readonly T[]): void;
|
|
147
|
+
isItemActive(item: T): boolean;
|
|
148
|
+
getItemTabIndex(item: T): number;
|
|
149
|
+
requestActiveItem(item: T): void;
|
|
150
|
+
requestTriggerKeydown(event: KeyboardEvent): void;
|
|
151
|
+
getActiveItemElement(): HTMLElement | null;
|
|
152
|
+
requestItemFocus(host: HTMLElement, a11y?: MenuKeyboardFocusA11y): void;
|
|
153
|
+
requestTriggerAccessibilitySync(host: HTMLElement, a11y: MenuKeyboardFocusA11y): void;
|
|
154
|
+
requestItemAccessibilitySync(host: HTMLElement, a11y: MenuKeyboardFocusA11y): void;
|
|
155
|
+
resolveItemFromTarget(target: Node): T | null;
|
|
156
|
+
getPort(): MenuKeyboardPort | null;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
declare const MENU_KEYBOARD: InjectionToken<MenuKeyboardFacade<MenuKeyboardItem>>;
|
|
160
|
+
|
|
161
|
+
declare class MenuKeyboardDirective<T extends MenuKeyboardItem = MenuKeyboardItem> {
|
|
162
|
+
readonly menuKeyboardItems: i0.InputSignal<readonly T[]>;
|
|
163
|
+
readonly menuKeyboardNavigation: i0.InputSignal<MenuKeyboardNavigationInput>;
|
|
164
|
+
readonly menuKeyboardEnableWhenUnset: i0.InputSignal<boolean>;
|
|
165
|
+
readonly menuKeyboardDefaults: i0.InputSignal<Partial<MenuKeyboardNavigation>>;
|
|
166
|
+
readonly menuKeyboardItemId: i0.InputSignal<(item: T) => string | undefined>;
|
|
167
|
+
readonly menuKeyboardSelect: i0.OutputEmitterRef<T>;
|
|
168
|
+
private readonly facade;
|
|
169
|
+
readonly isOpen: i0.WritableSignal<boolean>;
|
|
170
|
+
readonly focusedIndex: i0.WritableSignal<number>;
|
|
171
|
+
readonly activeItemClass: i0.WritableSignal<string>;
|
|
172
|
+
readonly listId: i0.WritableSignal<string>;
|
|
173
|
+
private readonly elementRef;
|
|
174
|
+
private readonly document;
|
|
175
|
+
private readonly injector;
|
|
176
|
+
private readonly destroyRef;
|
|
177
|
+
private readonly onDocumentKeydown;
|
|
178
|
+
private portOperationState;
|
|
179
|
+
private pendingPortIntent;
|
|
180
|
+
private readonly controller;
|
|
181
|
+
constructor();
|
|
182
|
+
handleOpenChange(open: boolean): void;
|
|
183
|
+
close(restoreFocus?: boolean): void;
|
|
184
|
+
focusTrigger(): void;
|
|
185
|
+
focusActiveItem(): void;
|
|
186
|
+
getTriggerElement(): HTMLElement | undefined;
|
|
187
|
+
getListElement(): HTMLElement | undefined;
|
|
188
|
+
isItemActive(item: T): boolean;
|
|
189
|
+
getItemTabIndex(item: T): number;
|
|
190
|
+
hasActionableItems(): boolean;
|
|
191
|
+
private handleTriggerKeydown;
|
|
192
|
+
private handleDocumentKeydown;
|
|
193
|
+
private shouldHandleDocumentKeydown;
|
|
194
|
+
private bindDocumentKeydown;
|
|
195
|
+
private unbindDocumentKeydown;
|
|
196
|
+
private focusItemHost;
|
|
197
|
+
private applyTriggerAccessibility;
|
|
198
|
+
private applyItemAccessibility;
|
|
199
|
+
private buildItemFocusA11y;
|
|
200
|
+
private publishState;
|
|
201
|
+
private schedulePortIntent;
|
|
202
|
+
private executePortIntent;
|
|
203
|
+
private drainPendingPortIntent;
|
|
204
|
+
private openViaPort;
|
|
205
|
+
private closeViaPort;
|
|
206
|
+
private reportPortError;
|
|
207
|
+
private getPort;
|
|
208
|
+
private resolveNavigation;
|
|
209
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuKeyboardDirective<any>, never>;
|
|
210
|
+
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>;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
declare class MenuKeyboardTriggerDirective {
|
|
214
|
+
protected readonly facade: _verisoft_ui_core.MenuKeyboardFacade<_verisoft_ui_core.MenuKeyboardItem>;
|
|
215
|
+
private readonly elementRef;
|
|
216
|
+
private readonly destroyRef;
|
|
217
|
+
constructor();
|
|
218
|
+
onKeydown(event: KeyboardEvent): void;
|
|
219
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuKeyboardTriggerDirective, never>;
|
|
220
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuKeyboardTriggerDirective, "[vMenuKeyboardTrigger]", never, {}, {}, never, never, true, never>;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
declare class MenuKeyboardListDirective {
|
|
224
|
+
protected readonly facade: _verisoft_ui_core.MenuKeyboardFacade<_verisoft_ui_core.MenuKeyboardItem>;
|
|
225
|
+
private readonly elementRef;
|
|
226
|
+
private readonly destroyRef;
|
|
227
|
+
constructor();
|
|
228
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuKeyboardListDirective, never>;
|
|
229
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuKeyboardListDirective, "[vMenuKeyboardList]", never, {}, {}, never, never, true, never>;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
declare class MenuKeyboardItemDirective<T extends MenuKeyboardItem = MenuKeyboardItem> {
|
|
233
|
+
readonly item: i0.InputSignal<T>;
|
|
234
|
+
protected readonly facade: _verisoft_ui_core.MenuKeyboardFacade<MenuKeyboardItem>;
|
|
235
|
+
private readonly elementRef;
|
|
236
|
+
private readonly destroyRef;
|
|
237
|
+
constructor();
|
|
238
|
+
onMouseEnter(): void;
|
|
239
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuKeyboardItemDirective<any>, never>;
|
|
240
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuKeyboardItemDirective<any>, "[vMenuKeyboardItem]", never, { "item": { "alias": "menuKeyboardItem"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
241
|
+
}
|
|
242
|
+
|
|
12
243
|
declare function setComponentProperties<TComponent>(component: TComponent, value: Partial<TComponent>, firstChange?: boolean): void;
|
|
13
244
|
|
|
14
245
|
declare enum ControlSeverity {
|
|
@@ -378,6 +609,7 @@ interface MenuItem {
|
|
|
378
609
|
tooltip?: string;
|
|
379
610
|
url?: string;
|
|
380
611
|
visible?: boolean | Observable<boolean>;
|
|
612
|
+
disabled?: boolean;
|
|
381
613
|
type?: string;
|
|
382
614
|
children?: MenuItem[];
|
|
383
615
|
routerLink?: any;
|
|
@@ -500,6 +732,7 @@ interface DropdownButtonCore {
|
|
|
500
732
|
severity: InputSignal<ControlSeverityType | undefined>;
|
|
501
733
|
size: InputSignal<FieldSizeType | undefined>;
|
|
502
734
|
items: InputSignal<MenuItem[] | undefined>;
|
|
735
|
+
keyboardNavigation?: InputSignal<MenuKeyboardNavigationInput>;
|
|
503
736
|
}
|
|
504
737
|
|
|
505
738
|
declare const CALENDAR_COMPONENT_TOKEN: InjectionToken<CalendarCore>;
|
|
@@ -1237,5 +1470,5 @@ declare class Format {
|
|
|
1237
1470
|
static boolWithIcon(value: boolean): "<span>✓</span>" | "<span>⨯</span>";
|
|
1238
1471
|
}
|
|
1239
1472
|
|
|
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 };
|
|
1473
|
+
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_ACTIVE_ITEM_CLASS, 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 };
|
|
1474
|
+
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 };
|