keevo-components 1.8.137 → 1.8.138
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-card/kv-filter-card.component.mjs +26 -0
- package/esm2022/lib/components/kv-filter-card/kv-filter-card.module.mjs +34 -0
- package/esm2022/lib/components/kv-g-icon/kv-g-icon.component.mjs +11 -0
- package/esm2022/lib/components/kv-g-icon/kv-g-icon.module.mjs +19 -0
- package/esm2022/public-api.mjs +11 -1
- package/fesm2022/keevo-components.mjs +75 -2
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-filter-card/kv-filter-card.component.d.ts +12 -0
- package/lib/components/kv-filter-card/kv-filter-card.module.d.ts +10 -0
- package/lib/components/kv-g-icon/kv-g-icon.component.d.ts +5 -0
- package/lib/components/kv-g-icon/kv-g-icon.module.d.ts +9 -0
- package/lib/components/kv-table/kv-table.component.d.ts +1 -1
- package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +10 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class KvFilterCardComponent {
|
|
3
|
+
cardState: CardState;
|
|
4
|
+
color: string;
|
|
5
|
+
title: string;
|
|
6
|
+
amount?: number;
|
|
7
|
+
gIcon?: string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvFilterCardComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvFilterCardComponent, "kv-filter-card", never, { "cardState": { "alias": "cardState"; "required": false; }; "color": { "alias": "color"; "required": false; }; "title": { "alias": "title"; "required": false; }; "amount": { "alias": "amount"; "required": false; }; "gIcon": { "alias": "gIcon"; "required": false; }; }, {}, never, ["[icon]"], false, never>;
|
|
10
|
+
}
|
|
11
|
+
export type CardState = "normal" | "selected" | "inactive";
|
|
12
|
+
export type CardStateClass = "card" | "PLACEHOLDER" | "card-disabled";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-filter-card.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../kv-g-icon/kv-g-icon.module";
|
|
5
|
+
import * as i4 from "../../api/modules/primeng.module";
|
|
6
|
+
export declare class KvFilterCardModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvFilterCardModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvFilterCardModule, [typeof i1.KvFilterCardComponent], [typeof i2.CommonModule, typeof i3.KvGIconModule, typeof i4.PrimeNgModule, typeof i2.NgClass], [typeof i1.KvFilterCardComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvFilterCardModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-g-icon.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../api/modules/primeng.module";
|
|
5
|
+
export declare class KvGIconModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvGIconModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvGIconModule, [typeof i1.KvGIconComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.KvGIconComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvGIconModule>;
|
|
9
|
+
}
|
|
@@ -99,7 +99,7 @@ export declare class KvTableComponent implements OnInit, DoCheck {
|
|
|
99
99
|
addColumn(field: string): void;
|
|
100
100
|
dinamicColumnSet(e: any, col: any): void;
|
|
101
101
|
checkMenuFiltro(col: any): void;
|
|
102
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
102
|
+
sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
|
|
103
103
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
104
104
|
checkHideColumns(): void;
|
|
105
105
|
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
@@ -61,7 +61,7 @@ export declare class KvTableExpandableComponent implements OnInit, DoCheck {
|
|
|
61
61
|
onGlobalFilter(table: Table, event: Event): void;
|
|
62
62
|
adicionaAcoesTabela(): void;
|
|
63
63
|
checkMenuFiltro(col: any): void;
|
|
64
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
64
|
+
sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
|
|
65
65
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
66
66
|
dinamicColumnSet(e: any, col: any): void;
|
|
67
67
|
addColumn(field: string): void;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -182,3 +182,13 @@ export * from './lib/components/kv-image-upload/kv-image-upload.module';
|
|
|
182
182
|
*/
|
|
183
183
|
export * from './lib/components/kv-report/kv-report.component';
|
|
184
184
|
export * from './lib/components/kv-report/kv-report.module';
|
|
185
|
+
/**
|
|
186
|
+
* Filter Card
|
|
187
|
+
*/
|
|
188
|
+
export * from './lib/components/kv-filter-card/kv-filter-card.component';
|
|
189
|
+
export * from './lib/components/kv-filter-card/kv-filter-card.module';
|
|
190
|
+
/**
|
|
191
|
+
* G icon
|
|
192
|
+
*/
|
|
193
|
+
export * from './lib/components/kv-g-icon/kv-g-icon.component';
|
|
194
|
+
export * from './lib/components/kv-g-icon/kv-g-icon.module';
|