ngx-virtual-select-field-filterable 1.4.7 → 1.4.9
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 +2 -0
- package/fesm2022/ngx-virtual-select-field-filterable.mjs +65 -28
- package/fesm2022/ngx-virtual-select-field-filterable.mjs.map +1 -1
- package/index.d.ts +307 -1
- package/package.json +6 -6
- package/lib/virtual-select-field/index.d.ts +0 -10
- package/lib/virtual-select-field/keycodes.d.ts +0 -7
- package/lib/virtual-select-field/virtual-select-field-option/index.d.ts +0 -3
- package/lib/virtual-select-field/virtual-select-field-option/virtual-select-field-option.component.d.ts +0 -36
- package/lib/virtual-select-field/virtual-select-field-option/virtual-select-field-option.models.d.ts +0 -5
- package/lib/virtual-select-field/virtual-select-field-option-for/index.d.ts +0 -2
- package/lib/virtual-select-field/virtual-select-field-option-for/virtual-select-field-option-for.directive.d.ts +0 -17
- package/lib/virtual-select-field/virtual-select-field-option-for/virtual-select-field-option-for.models.d.ts +0 -14
- package/lib/virtual-select-field/virtual-select-field-trigger/index.d.ts +0 -1
- package/lib/virtual-select-field/virtual-select-field-trigger/virtual-select-field-trigger.directive.d.ts +0 -7
- package/lib/virtual-select-field/virtual-select-field.component.d.ts +0 -203
- package/lib/virtual-select-field/virtual-select-field.constants.d.ts +0 -8
- package/lib/virtual-select-field/virtual-select-field.models.d.ts +0 -18
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
2
|
-
import { InjectionToken } from '@angular/core';
|
|
3
|
-
import { NgxVirtualSelectFieldConfig } from './virtual-select-field.models';
|
|
4
|
-
export declare const POSITIONS: ConnectedPosition[];
|
|
5
|
-
export declare const NGX_VIRTUAL_SELECT_FIELD_CONFIG: InjectionToken<NgxVirtualSelectFieldConfig>;
|
|
6
|
-
export declare const PANEL_WIDTH_AUTO = "auto";
|
|
7
|
-
export declare const PANEL_VIEWPORT_PAGE_SIZE = 8;
|
|
8
|
-
export declare const OPTION_HEIGHT = 48;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export interface NgxVirtualSelectFieldConfig {
|
|
2
|
-
/**
|
|
3
|
-
* CSS class to add to the overlay element
|
|
4
|
-
*/
|
|
5
|
-
overlayPanelClass?: string | string[];
|
|
6
|
-
/**
|
|
7
|
-
* Width for overlay panel
|
|
8
|
-
*/
|
|
9
|
-
panelWidth?: string | number;
|
|
10
|
-
/**
|
|
11
|
-
* Height for an option element
|
|
12
|
-
*/
|
|
13
|
-
optionHeight?: number;
|
|
14
|
-
/**
|
|
15
|
-
* Amount of visible items in list
|
|
16
|
-
*/
|
|
17
|
-
panelViewportPageSize?: number;
|
|
18
|
-
}
|