@den4ik92/ng2-smart-table 2.0.1 → 2.0.2
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.
|
@@ -87,12 +87,10 @@ interface SmartTableCustomColumn<T> extends SmartTableDefaultColumn<T> {
|
|
|
87
87
|
renderComponent: any;
|
|
88
88
|
}
|
|
89
89
|
export type SmartTableEditorAndFilterTypes = 'text' | 'textarea' | 'list' | 'custom' | 'checkbox';
|
|
90
|
-
export type SmartTableEditorAndFilter = SmartTableTextEditor |
|
|
90
|
+
export type SmartTableEditorAndFilter = SmartTableTextEditor | SmartTableEditorList | SmartTableEditorCheckbox | SmartTableEditorCustom;
|
|
91
91
|
interface SmartTableTextEditor {
|
|
92
|
-
type: 'text';
|
|
93
|
-
|
|
94
|
-
interface SmartTableTextAreaEditor {
|
|
95
|
-
type: 'textarea';
|
|
92
|
+
type: 'text' | 'textarea';
|
|
93
|
+
config: any;
|
|
96
94
|
}
|
|
97
95
|
interface SmartTableEditorList {
|
|
98
96
|
type: 'list';
|