diff --git a/src/assets/styles/common-select.scss b/src/assets/styles/common-select.scss index 3aa1012..41b2c05 100644 --- a/src/assets/styles/common-select.scss +++ b/src/assets/styles/common-select.scss @@ -1,9 +1,10 @@ @use 'common-mixins'; .mat-mdc-select { - padding: 0 11px; + padding: 0 calc(var(--iqser-inputs-height) - 25px); box-sizing: border-box; - --mat-select-trigger-text-line-height: 36px; + --mat-select-trigger-text-line-height: var(--iqser-inputs-height); + --mat-select-trigger-text-size: var(--iqser-inputs-font-size); } .mat-mdc-select-panel { diff --git a/src/lib/inputs/input-with-action/input-with-action.component.scss b/src/lib/inputs/input-with-action/input-with-action.component.scss index 6152c26..c09091c 100644 --- a/src/lib/inputs/input-with-action/input-with-action.component.scss +++ b/src/lib/inputs/input-with-action/input-with-action.component.scss @@ -1,5 +1,5 @@ :host { - display: block; + display: contents; } mat-icon.disabled { diff --git a/src/lib/listing/services/paginated-entities.service.ts b/src/lib/listing/services/paginated-entities.service.ts index c9f6011..b2e3146 100644 --- a/src/lib/listing/services/paginated-entities.service.ts +++ b/src/lib/listing/services/paginated-entities.service.ts @@ -57,7 +57,10 @@ export abstract class PaginatedEntitiesService< } updateSearchQueryAndReload(value: string): Observable { - return this.loadPage(0, this._currentConfig.pageSize, { [this._searchKey]: value } as SearchOptions); + return this.loadPage(0, this._currentConfig.pageSize, { + ...this._currentConfig.options, + [this._searchKey]: value, + } as SearchOptions); } reloadPage(): Observable {