keevo-components 1.8.484 → 1.8.485
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/keevo-components.module.mjs +13 -6
- package/esm2022/lib/components/kv-card-selection/kv-card-selection.component.mjs +57 -0
- package/esm2022/lib/components/kv-card-selection/kv-card-selection.module.mjs +31 -0
- package/esm2022/public-api.mjs +6 -1
- package/fesm2022/keevo-components.mjs +88 -6
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/keevo-components.module.d.ts +3 -2
- package/lib/components/kv-card-selection/kv-card-selection.component.d.ts +24 -0
- package/lib/components/kv-card-selection/kv-card-selection.module.d.ts +10 -0
- package/package.json +1 -1
- package/public-api.d.ts +5 -0
|
@@ -25,9 +25,10 @@ import * as i23 from "./kv-filter-card/kv-filter-card.module";
|
|
|
25
25
|
import * as i24 from "./kv-file-viewer/kv-file-viewer.module";
|
|
26
26
|
import * as i25 from "./kv-file-viewer-novo/kv-file-viewer-novo.module";
|
|
27
27
|
import * as i26 from "./kv-filter-fieldset/kv-filter-fieldset.module";
|
|
28
|
-
import * as i27 from "./kv-
|
|
28
|
+
import * as i27 from "./kv-card-selection/kv-card-selection.module";
|
|
29
|
+
import * as i28 from "./kv-table-edit/kv-table-edit.module";
|
|
29
30
|
export declare class KeevoComponentsModule {
|
|
30
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<KeevoComponentsModule, never>;
|
|
31
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KeevoComponentsModule, never, [typeof i1.KvAvatarModule, typeof i2.KvButtonsModule, typeof i3.KvButtonModule, typeof i4.KvCarouselModule, typeof i5.KvChartModule, typeof i6.KvInputsModule, typeof i7.KvLoaderModule, typeof i8.KvLoginModule, typeof i9.KvLayoutModule, typeof i10.KvModalModule, typeof i11.KvOrgchartModule, typeof i12.KvPageFormModule, typeof i13.KvPickListModule, typeof i14.KvProgressBarModule, typeof i15.KvTableModule, typeof i16.KvTreetableModule, typeof i17.KvtreeViewModule, typeof i18.KvWorkspaceModule, typeof i19.KvStepperModule, typeof i20.KvImageUploadModule, typeof i21.KvTableExpandableModule, typeof i22.KvGIconModule, typeof i23.KvFilterCardModule, typeof i24.KvFileViewerModule, typeof i25.KvFileViewerNovoModule, typeof i26.KvFilterFieldsetModule], [typeof i1.KvAvatarModule, typeof i2.KvButtonsModule, typeof i3.KvButtonModule, typeof i4.KvCarouselModule, typeof i5.KvChartModule, typeof i6.KvInputsModule, typeof i7.KvLoaderModule, typeof i8.KvLoginModule, typeof i9.KvLayoutModule, typeof i10.KvModalModule, typeof i11.KvOrgchartModule, typeof i12.KvPageFormModule, typeof i13.KvPickListModule, typeof i14.KvProgressBarModule, typeof
|
|
32
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KeevoComponentsModule, never, [typeof i1.KvAvatarModule, typeof i2.KvButtonsModule, typeof i3.KvButtonModule, typeof i4.KvCarouselModule, typeof i5.KvChartModule, typeof i6.KvInputsModule, typeof i7.KvLoaderModule, typeof i8.KvLoginModule, typeof i9.KvLayoutModule, typeof i10.KvModalModule, typeof i11.KvOrgchartModule, typeof i12.KvPageFormModule, typeof i13.KvPickListModule, typeof i14.KvProgressBarModule, typeof i15.KvTableModule, typeof i16.KvTreetableModule, typeof i17.KvtreeViewModule, typeof i18.KvWorkspaceModule, typeof i19.KvStepperModule, typeof i20.KvImageUploadModule, typeof i21.KvTableExpandableModule, typeof i22.KvGIconModule, typeof i23.KvFilterCardModule, typeof i24.KvFileViewerModule, typeof i25.KvFileViewerNovoModule, typeof i26.KvFilterFieldsetModule, typeof i27.KvCardSelectionModule], [typeof i1.KvAvatarModule, typeof i2.KvButtonsModule, typeof i3.KvButtonModule, typeof i4.KvCarouselModule, typeof i5.KvChartModule, typeof i6.KvInputsModule, typeof i7.KvLoaderModule, typeof i8.KvLoginModule, typeof i9.KvLayoutModule, typeof i10.KvModalModule, typeof i11.KvOrgchartModule, typeof i12.KvPageFormModule, typeof i13.KvPickListModule, typeof i14.KvProgressBarModule, typeof i28.KvTableEditModule, typeof i15.KvTableModule, typeof i16.KvTreetableModule, typeof i17.KvtreeViewModule, typeof i18.KvWorkspaceModule, typeof i19.KvStepperModule, typeof i20.KvImageUploadModule, typeof i21.KvTableExpandableModule, typeof i22.KvGIconModule, typeof i23.KvFilterCardModule, typeof i24.KvFileViewerModule, typeof i26.KvFilterFieldsetModule, typeof i25.KvFileViewerNovoModule, typeof i27.KvCardSelectionModule]>;
|
|
32
33
|
static ɵinj: i0.ɵɵInjectorDeclaration<KeevoComponentsModule>;
|
|
33
34
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { CpfCnpjPipe } from '../../api/pipes/cpfcnpj.pipe';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class KvCardSelectionComponent {
|
|
5
|
+
masters: import("@angular/core").InputSignal<any>;
|
|
6
|
+
widthScreen: import("@angular/core").WritableSignal<number>;
|
|
7
|
+
filteredMasters: import("@angular/core").WritableSignal<any>;
|
|
8
|
+
emptyText: import("@angular/core").InputSignal<string>;
|
|
9
|
+
logo: import("@angular/core").InputSignal<string>;
|
|
10
|
+
nomeUsuario: import("@angular/core").InputSignal<string>;
|
|
11
|
+
onSelectMaster: import("@angular/core").OutputEmitterRef<any>;
|
|
12
|
+
onFilter: import("@angular/core").OutputEmitterRef<any>;
|
|
13
|
+
cpfCnpjPipe: CpfCnpjPipe;
|
|
14
|
+
fb: FormBuilder;
|
|
15
|
+
workspaceForm: FormGroup;
|
|
16
|
+
transformCpfCnpj: import("@angular/core").Signal<(cpfCnpj: string) => string | null>;
|
|
17
|
+
isEmpresa: import("@angular/core").Signal<(cpfCnpj: string) => boolean>;
|
|
18
|
+
minWidthCard: import("@angular/core").Signal<"100%" | "45rem">;
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
selectMaster(master: any): void;
|
|
21
|
+
buscarMasters(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvCardSelectionComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvCardSelectionComponent, "kv-card-selection", never, { "masters": { "alias": "masters"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "logo": { "alias": "logo"; "required": false; "isSignal": true; }; "nomeUsuario": { "alias": "nomeUsuario"; "required": false; "isSignal": true; }; }, { "onSelectMaster": "onSelectMaster"; "onFilter": "onFilter"; }, never, never, false, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-card-selection.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../kv-inputs/kv-inputs.module";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
export declare class KvCardSelectionModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvCardSelectionModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvCardSelectionModule, [typeof i1.KvCardSelectionComponent], [typeof i2.CommonModule, typeof i3.KvInputsModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule], [typeof i1.KvCardSelectionComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvCardSelectionModule>;
|
|
10
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -244,3 +244,8 @@ export * from './lib/components/kv-home-card/kv-home-card.module';
|
|
|
244
244
|
*/
|
|
245
245
|
export * from './lib/components/kv-avatar/kv-avatar.component';
|
|
246
246
|
export * from './lib/components/kv-avatar/kv-avatar.module';
|
|
247
|
+
/**
|
|
248
|
+
* Card Selection
|
|
249
|
+
*/
|
|
250
|
+
export * from './lib/components/kv-card-selection/kv-card-selection.component';
|
|
251
|
+
export * from './lib/components/kv-card-selection/kv-card-selection.module';
|