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.
- package/esm2022/lib/components/kv-filter-cards/kv-filter-cards.component.mjs +1 -1
- package/esm2022/lib/components/kv-table-viewer/kv-table-viewer.component.mjs +2 -2
- package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +3 -3
- package/esm2022/public-api.mjs +2 -2
- package/fesm2022/keevo-components.mjs +3 -3
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-filter-cards/kv-filter-cards.component.d.ts +3 -3
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
|
@@ -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<
|
|
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
|
|
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
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
|
|
284
|
+
export * from './lib/components/kv-filter-cards/kv-filter-cards.component';
|
|
285
285
|
/**
|
|
286
286
|
* Tags
|
|
287
287
|
*/
|