keevo-components 1.8.489 → 1.8.490
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/esm2022/lib/components/kv-table/kv-table.component.mjs +3 -3
- package/fesm2022/keevo-components.mjs +2 -2
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/api/base-components/base-component-dropdown.d.ts +1 -1
- package/lib/components/kv-card-selection/kv-card-selection.component.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/components/kv-table/kv-table.component.scss +14 -5
|
@@ -40,7 +40,7 @@ export declare abstract class BaseComponentDropDown extends BaseComponentInput<a
|
|
|
40
40
|
protected addClick(event: Event): void;
|
|
41
41
|
carregarCombo(filtro?: filtroCombo): void;
|
|
42
42
|
protected carregarComboObs(obs: Observable<any>): void;
|
|
43
|
-
emptyMessage(): "
|
|
43
|
+
emptyMessage(): "Digite para pesquisar" | "Nenhum resultado encontrado";
|
|
44
44
|
filterOptions(field: string, value: any): void;
|
|
45
45
|
protected listar(): any;
|
|
46
46
|
protected listarCombo(value: any): any;
|
|
@@ -15,7 +15,7 @@ export declare class KvCardSelectionComponent {
|
|
|
15
15
|
workspaceForm: FormGroup;
|
|
16
16
|
transformCpfCnpj: import("@angular/core").Signal<(cpfCnpj: string) => string | null>;
|
|
17
17
|
isEmpresa: import("@angular/core").Signal<(cpfCnpj: string) => boolean>;
|
|
18
|
-
minWidthCard: import("@angular/core").Signal<"
|
|
18
|
+
minWidthCard: import("@angular/core").Signal<"100%" | "45rem">;
|
|
19
19
|
transformRazaoSocial: import("@angular/core").Signal<(razaosocial: string) => string>;
|
|
20
20
|
ngOnInit(): void;
|
|
21
21
|
selectMaster(master: any): void;
|
package/package.json
CHANGED
|
@@ -151,17 +151,26 @@ input {
|
|
|
151
151
|
.p-datatable .p-paginator-bottom {
|
|
152
152
|
scale: 0.75;
|
|
153
153
|
}
|
|
154
|
-
.p-menuitem-text {
|
|
155
|
-
font-size: 0.875rem;
|
|
156
|
-
}
|
|
157
154
|
|
|
158
155
|
.p-tieredmenu .p-menuitem > .p-menuitem-content .p-menuitem-link {
|
|
159
|
-
padding: 0.5rem 0.
|
|
156
|
+
padding: 0.5rem 0.5rem;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.p-tieredmenu{
|
|
160
|
+
padding: 0.5rem 0.5rem;
|
|
160
161
|
}
|
|
161
162
|
|
|
162
163
|
.p-datatable.p-datatable-sm .p-datatable-tbody > tr > td {
|
|
163
164
|
padding: 0.1rem 0.1rem;
|
|
164
165
|
}
|
|
166
|
+
|
|
167
|
+
.p-dropdown-panel .p-dropdown-items .p-dropdown-item {
|
|
168
|
+
padding: 0.25rem !important;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.p-dropdown-panel .p-dropdown-items {
|
|
172
|
+
padding: 0.5rem 0.5rem !important;
|
|
173
|
+
}
|
|
165
174
|
}
|
|
166
175
|
|
|
167
176
|
:host {
|
|
@@ -202,7 +211,7 @@ input {
|
|
|
202
211
|
}
|
|
203
212
|
|
|
204
213
|
::ng-deep .p-menuitem-content {
|
|
205
|
-
padding: 0.
|
|
214
|
+
padding: 0.35rem;
|
|
206
215
|
}
|
|
207
216
|
|
|
208
217
|
::ng-deep .p-disabled * {
|