keevo-components 2.0.205 → 2.0.206

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.
@@ -3,7 +3,7 @@ export declare class KvFilterCardsComponent {
3
3
  cards: import("@angular/core").InputSignal<KvFilterCardConfig[] | undefined>;
4
4
  staticCards: import("@angular/core").InputSignal<boolean>;
5
5
  cursorPointer: import("@angular/core").InputSignal<boolean>;
6
- selectedCards: import("@angular/core").ModelSignal<number[] | KvFilterCardConfig[]>;
6
+ selectedCards: import("@angular/core").ModelSignal<KvFilterCardConfig[] | number[]>;
7
7
  selectedCardsTratado: import("@angular/core").Signal<KvFilterCardConfig[]>;
8
8
  loadingCards: import("@angular/core").InputSignal<boolean>;
9
9
  wrapCards: import("@angular/core").InputSignal<boolean>;
@@ -21,11 +21,11 @@ export declare class KvFilterCardsComponent {
21
21
  export type KvSeverity = 'primary' | 'secondary' | 'tertiary' | 'info' | 'warning' | 'danger';
22
22
  export declare const mapaSeverityColors: Record<KvSeverity, string>;
23
23
  export type KvFilterCardFormato = 'int' | 'currency' | 'percent' | 'decimal' | 'text' | 'date';
24
- export type KvFilterCardConfig = {
24
+ export interface KvFilterCardConfig {
25
25
  id: number;
26
26
  severity: KvSeverity;
27
27
  titulo: string;
28
28
  icon: string;
29
29
  valor?: number | string | undefined | null;
30
30
  formato?: KvFilterCardFormato;
31
- };
31
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "2.0.205",
3
+ "version": "2.0.206",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",
package/public-api.d.ts CHANGED
@@ -281,7 +281,7 @@ export * from './lib/components/kv-tag/kv-tag.module';
281
281
  * Filter Cards
282
282
  */
283
283
  export * from './lib/components/kv-filter-cards/kv-filter-cards.module';
284
- export { KvFilterCardsComponent, KvFilterCardConfig, mapaSeverityColors, KvSeverity } from './lib/components/kv-filter-cards/kv-filter-cards.component';
284
+ export * from './lib/components/kv-filter-cards/kv-filter-cards.component';
285
285
  /**
286
286
  * Tags
287
287
  */