@sumaris-net/ngx-components 1.18.0 → 1.18.3
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/bundles/sumaris-net.ngx-components.umd.js +32 -32
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +2 -2
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/table/table.class.js +1 -1
- package/esm2015/src/app/shared/material/autocomplete/material.autocomplete.js +5 -4
- package/fesm2015/sumaris-net.ngx-components.js +32 -32
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/table.class.d.ts +1 -1
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -340,7 +340,7 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
|
|
|
340
340
|
protected updateColumns(): void;
|
|
341
341
|
protected registerSubscription(sub: Subscription): void;
|
|
342
342
|
protected unregisterSubscription(sub: Subscription): void;
|
|
343
|
-
protected registerAutocompleteField(fieldName: string, options?: MatAutocompleteFieldAddOptions): MatAutocompleteFieldConfig
|
|
343
|
+
protected registerAutocompleteField<T = any, F = any>(fieldName: string, options?: MatAutocompleteFieldAddOptions<T, F>): MatAutocompleteFieldConfig<T, F>;
|
|
344
344
|
protected getI18nColumnName(columnName: string): string;
|
|
345
345
|
protected generateTableId(): string;
|
|
346
346
|
protected addRowToTable(insertAt?: number): Promise<TableElement<T>>;
|