keevo-components 1.8.551 → 1.8.552

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.
Files changed (32) hide show
  1. package/esm2022/lib/components/kv-avatar/kv-avatar.component.mjs +2 -2
  2. package/esm2022/lib/components/kv-button/kv-button.component.mjs +2 -2
  3. package/esm2022/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.mjs +2 -2
  4. package/esm2022/lib/components/kv-chart/kv-chart.component.mjs +2 -2
  5. package/esm2022/lib/components/kv-inputs/kv-check/kv-check.component.mjs +2 -2
  6. package/esm2022/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.mjs +2 -2
  7. package/esm2022/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.mjs +2 -2
  8. package/esm2022/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.mjs +2 -2
  9. package/esm2022/lib/components/kv-inputs/kv-input-number/kv-input-number.component.mjs +2 -2
  10. package/esm2022/lib/components/kv-inputs/kv-input-password/kv-input-password.component.mjs +2 -2
  11. package/esm2022/lib/components/kv-inputs/kv-input-text/kv-input-text.component.mjs +2 -2
  12. package/esm2022/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.mjs +2 -2
  13. package/esm2022/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.mjs +2 -2
  14. package/esm2022/lib/components/kv-inputs/kv-input-time/kv-input-time.component.mjs +2 -2
  15. package/esm2022/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.mjs +2 -2
  16. package/esm2022/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.mjs +2 -2
  17. package/esm2022/lib/components/kv-inputs/kv-switch/kv-switch.component.mjs +2 -2
  18. package/esm2022/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.mjs +2 -2
  19. package/esm2022/lib/components/kv-layout/layout/kv-layout.component.mjs +3 -3
  20. package/esm2022/lib/components/kv-page-stepper/kv-page-stepper.component.mjs +2 -2
  21. package/esm2022/lib/components/kv-pick-list/kv-pick-list.component.mjs +2 -2
  22. package/esm2022/lib/components/kv-stepper/kv-stepper.component.mjs +2 -2
  23. package/fesm2022/keevo-components.mjs +44 -44
  24. package/fesm2022/keevo-components.mjs.map +1 -1
  25. package/lib/api/base-components/base-component-dropdown.d.ts +1 -1
  26. package/lib/components/kv-button/kv-button.component.d.ts +1 -1
  27. package/lib/components/kv-card-selection/kv-card-selection.component.d.ts +1 -1
  28. package/lib/components/kv-table/kv-table.component.d.ts +1 -1
  29. package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +1 -1
  30. package/lib/components/kv-workspace/workspace/kv-workspace.component.d.ts +1 -1
  31. package/package.json +1 -1
  32. package/src/lib/components/keevo-components-styles.scss +2 -1
@@ -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(): "Nenhum resultado encontrado" | "Digite para pesquisar";
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;
@@ -1,7 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class KvButtonComponent {
3
3
  fullWidth: import("@angular/core").InputSignal<boolean>;
4
- type: import("@angular/core").InputSignal<"outline" | "text" | undefined>;
4
+ type: import("@angular/core").InputSignal<"text" | "outline" | undefined>;
5
5
  loading: import("@angular/core").InputSignal<boolean>;
6
6
  severity: import("@angular/core").InputSignal<"primary" | "secondary" | "tertiary">;
7
7
  size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
@@ -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<"45rem" | "100%">;
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;
@@ -139,7 +139,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
139
139
  onClickEvent(event: any): void;
140
140
  styleSetter(style: string, data: string): void;
141
141
  checkMenuFiltro(col: TableConfigColumn): void;
142
- sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
142
+ sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
143
143
  dinamicDisableColumn(col: TableConfigColumn): boolean;
144
144
  checkHideColumns(): void;
145
145
  getCustomTemplate(templatename: string): TemplateRef<any>;
@@ -68,7 +68,7 @@ export declare class KvTableExpandableComponent implements OnInit, DoCheck {
68
68
  onGlobalFilter(table: Table, event: Event): void;
69
69
  executeCollapsed(): void;
70
70
  checkMenuFiltro(col: any): void;
71
- sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
71
+ sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
72
72
  dinamicDisableColumn(col: TableConfigColumn): boolean;
73
73
  dinamicColumnSet(e: any, col: any): void;
74
74
  addColumn(field: string): void;
@@ -24,7 +24,7 @@ export declare class WorkspaceComponent implements OnInit {
24
24
  logoKeevoCenter: import("@angular/core").InputSignal<string>;
25
25
  onFilter: import("@angular/core").OutputEmitterRef<any>;
26
26
  searchInput: import("@angular/core").WritableSignal<string>;
27
- minWidthCard: import("@angular/core").Signal<"45rem" | "100%">;
27
+ minWidthCard: import("@angular/core").Signal<"100%" | "45rem">;
28
28
  constructor();
29
29
  ngOnInit(): void;
30
30
  paginate(event: any): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.8.551",
3
+ "version": "1.8.552",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",
@@ -171,7 +171,8 @@ $font-family-keevo: "Inter", "Inter var", sans-serif;
171
171
 
172
172
  ::ng-deep .p-dialog .p-dialog-header {
173
173
  color: rgb(var(--kv-color-text)) !important;
174
- background: rgb(var(--kv-background-card)) !important;
174
+ // background: rgb(var(--kv-background-card)) !important;
175
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.02) 0.44%, rgba(0, 0, 0, 0) 49.5%), #ffffff !important;
175
176
  display: flex !important;
176
177
  flex-wrap: wrap;
177
178
  word-wrap: break-word;