@aquera/ngx-smart-table 0.0.17-patch-0.5 → 0.0.17-patch-0.6
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/esm2020/lib/editors/index.mjs +2 -1
- package/esm2020/lib/editors/nile-chip-editor.mjs +293 -0
- package/esm2020/lib/editors/nile-code-editor.mjs +9 -10
- package/fesm2015/aquera-ngx-smart-table.mjs +308 -10
- package/fesm2015/aquera-ngx-smart-table.mjs.map +1 -1
- package/fesm2020/aquera-ngx-smart-table.mjs +302 -10
- package/fesm2020/aquera-ngx-smart-table.mjs.map +1 -1
- package/lib/editors/index.d.ts +1 -0
- package/lib/editors/nile-chip-editor.d.ts +94 -0
- package/package.json +1 -1
package/lib/editors/index.d.ts
CHANGED
|
@@ -6,4 +6,5 @@ export { NileSelectEditor, NileSelectEditorOptions, SelectOption } from './nile-
|
|
|
6
6
|
export { NileAutoCompleteEditor, NileAutoCompleteEditorOptions, AutoCompleteOption } from './nile-autocomplete-editor';
|
|
7
7
|
export { NileCalendarEditor, NileCalendarEditorOptions, AllowedDatesRange } from './nile-calendar-editor';
|
|
8
8
|
export { NileDatePickerEditor, NileDatePickerEditorOptions, DateRange } from './nile-date-picker-editor';
|
|
9
|
+
export { NileChipEditor, NileChipEditorOptions, ChipOption } from './nile-chip-editor';
|
|
9
10
|
export { NileCodeEditor, NileCodeEditorOptions, CodeEditorCompletion, AutoCompleteStyle } from './nile-code-editor';
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Custom editor using NileChip from @aquera/nile-elements
|
|
3
|
+
* Renders the chip input in a floating popover below the cell to avoid row height mismatch.
|
|
4
|
+
*
|
|
5
|
+
* @see https://nile.aqueralabs.com/1.6.3/chip?theme=enterprise
|
|
6
|
+
*/
|
|
7
|
+
import { CellEditor, CellEditorContext } from '../models/cell-strategies.interface';
|
|
8
|
+
/**
|
|
9
|
+
* Chip option for autocomplete suggestions
|
|
10
|
+
*/
|
|
11
|
+
export interface ChipOption {
|
|
12
|
+
/** The option's value */
|
|
13
|
+
value: string;
|
|
14
|
+
/** Display label for the option (defaults to value if omitted) */
|
|
15
|
+
label?: string;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Options interface for NileChipEditor
|
|
19
|
+
*/
|
|
20
|
+
export interface NileChipEditorOptions {
|
|
21
|
+
/** Autocomplete suggestion list (full set) */
|
|
22
|
+
autoCompleteOptions?: ChipOption[] | string[];
|
|
23
|
+
/** Placeholder text shown inside the input area */
|
|
24
|
+
placeholder?: string;
|
|
25
|
+
/** Allow users to type custom values not present in the suggestion list */
|
|
26
|
+
acceptUserInput?: boolean;
|
|
27
|
+
/** Prevent duplicate chip values */
|
|
28
|
+
noDuplicates?: boolean;
|
|
29
|
+
/** Disable the chip input */
|
|
30
|
+
disabled?: boolean;
|
|
31
|
+
/** Make the chip input readonly */
|
|
32
|
+
readonly?: boolean;
|
|
33
|
+
/** Show a clear-all button */
|
|
34
|
+
clearable?: boolean;
|
|
35
|
+
/** Prevent chip tags from wrapping to multiple lines */
|
|
36
|
+
noWrap?: boolean;
|
|
37
|
+
/** Remove the autocomplete dropdown entirely */
|
|
38
|
+
noAutoComplete?: boolean;
|
|
39
|
+
/** Enable virtual scrolling in the suggestion dropdown */
|
|
40
|
+
enableVirtualScroll?: boolean;
|
|
41
|
+
/** Control whether the dropdown opens on focus — 'true' | 'false' | 'always' */
|
|
42
|
+
openDropdownOnFocus?: string;
|
|
43
|
+
/** Show loading spinner inside the dropdown */
|
|
44
|
+
loading?: boolean;
|
|
45
|
+
/** Warning state styling */
|
|
46
|
+
warning?: boolean;
|
|
47
|
+
/** Error state styling */
|
|
48
|
+
error?: boolean;
|
|
49
|
+
/** Success state styling */
|
|
50
|
+
success?: boolean;
|
|
51
|
+
/** Error message shown below the input */
|
|
52
|
+
errorMessage?: string;
|
|
53
|
+
/** Help text shown below the input */
|
|
54
|
+
helpText?: string;
|
|
55
|
+
/** Label text for the chip input */
|
|
56
|
+
label?: string;
|
|
57
|
+
/** Indexes of chips to highlight as errors */
|
|
58
|
+
errorIndexes?: number[];
|
|
59
|
+
/** Custom filter function for autocomplete */
|
|
60
|
+
filterFunction?: (query: string, option: string) => boolean;
|
|
61
|
+
/** Custom render function for dropdown items */
|
|
62
|
+
renderItemFunction?: (option: string) => string;
|
|
63
|
+
/** Auto-focus the input when editor opens (default: true) */
|
|
64
|
+
autoFocus?: boolean;
|
|
65
|
+
/** Minimum width of the popover in px (default: width of the cell) */
|
|
66
|
+
popoverMinWidth?: number;
|
|
67
|
+
/** Maximum height of the popover in px before it scrolls (default: 200) */
|
|
68
|
+
popoverMaxHeight?: number;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Custom editor that uses NileChip (tag input) component.
|
|
72
|
+
* Renders in a floating popover below the cell to avoid expanding row height.
|
|
73
|
+
*
|
|
74
|
+
* Cell value is expected to be `string[]` (array of tag strings).
|
|
75
|
+
*/
|
|
76
|
+
export declare class NileChipEditor implements CellEditor<string[]> {
|
|
77
|
+
private readonly options?;
|
|
78
|
+
acceptsInitialKeypress: boolean;
|
|
79
|
+
private chip?;
|
|
80
|
+
private popover?;
|
|
81
|
+
private cellContainer?;
|
|
82
|
+
private eventListeners;
|
|
83
|
+
private trackedValues;
|
|
84
|
+
constructor(options?: NileChipEditorOptions | undefined);
|
|
85
|
+
edit(context: CellEditorContext<string[]>): void;
|
|
86
|
+
private positionPopover;
|
|
87
|
+
private setInitialValue;
|
|
88
|
+
private applyOptions;
|
|
89
|
+
private addListener;
|
|
90
|
+
private setupEventListeners;
|
|
91
|
+
destroy(): void;
|
|
92
|
+
focus(): void;
|
|
93
|
+
getCurrentValue(): string[];
|
|
94
|
+
}
|