keevo-components 1.8.136 → 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.
@@ -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,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class KvGIconComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvGIconComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvGIconComponent, "kv-g-icon", never, {}, {}, never, ["*"], false, never>;
5
+ }
@@ -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
+ }
@@ -104,6 +104,7 @@ export declare class KvTableExpandableComponent implements OnInit, DoCheck {
104
104
  collapseAll(): void;
105
105
  createDataIndex(): void;
106
106
  returnRowDataActions(rowData: any): void;
107
+ onSort(e: any): void;
107
108
  static ɵfac: i0.ɵɵFactoryDeclaration<KvTableExpandableComponent, never>;
108
109
  static ɵcmp: i0.ɵɵComponentDeclaration<KvTableExpandableComponent, "kv-table-expandable", never, { "_templates": { "alias": "templates"; "required": false; }; "setConfig": { "alias": "config"; "required": false; }; "filtrosAvancados": { "alias": "filtrosAvancados"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "tableCaptalized": { "alias": "tableCaptalized"; "required": false; }; "applyStyle": { "alias": "applyStyle"; "required": false; }; "tableSize": { "alias": "tableSize"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "pageLinksOptions": { "alias": "pageLinksOptions"; "required": false; }; "responsiveLayout": { "alias": "responsiveLayout"; "required": false; }; "isTableScrollable": { "alias": "isTableScrollable"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "rowTrackBy": { "alias": "rowTrackBy"; "required": false; }; "showFirstLastIcon": { "alias": "showFirstLastIcon"; "required": false; }; }, { "filterField": "filterField"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "doubleClickEvent": "doubleClickEvent"; "onSwitchTableChange": "onSwitchTableChange"; "onPaginate": "onPaginate"; "onSelectionChange": "onSelectionChange"; }, never, ["*"], false, never>;
109
110
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.8.136",
3
+ "version": "1.8.138",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",
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';