keevo-components 1.8.378 → 1.8.380
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-content-viewer/kv-content-viewer.component.mjs +74 -0
- package/esm2022/lib/components/kv-content-viewer/kv-content-viewer.module.mjs +32 -0
- package/esm2022/lib/components/kv-login/kv-login.component.mjs +3 -3
- package/esm2022/public-api.mjs +6 -1
- package/fesm2022/keevo-components.mjs +97 -3
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-content-viewer/kv-content-viewer.component.d.ts +37 -0
- package/lib/components/kv-content-viewer/kv-content-viewer.module.d.ts +11 -0
- package/lib/components/kv-layout/layout/kv-layout.component.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +5 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EventEmitter, InputSignal, TemplateRef } from '@angular/core';
|
|
2
|
+
import { SafeHtml } from '@angular/platform-browser';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class KvContentViewerComponent {
|
|
5
|
+
dataSource: InputSignal<any[]>;
|
|
6
|
+
paginaInicial: import("@angular/core").WritableSignal<number>;
|
|
7
|
+
arquivo: import("@angular/core").WritableSignal<string | undefined>;
|
|
8
|
+
arquivoPreview: import("@angular/core").WritableSignal<any>;
|
|
9
|
+
nomeArquivo: import("@angular/core").WritableSignal<string>;
|
|
10
|
+
type: import("@angular/core").WritableSignal<string | undefined>;
|
|
11
|
+
blob: import("@angular/core").WritableSignal<Blob>;
|
|
12
|
+
idarquivo: import("@angular/core").WritableSignal<number | undefined>;
|
|
13
|
+
ekpContent: import("@angular/core").WritableSignal<SafeHtml | undefined>;
|
|
14
|
+
totalItensCarregado: import("@angular/core").Signal<number>;
|
|
15
|
+
empresaSelecionada: any;
|
|
16
|
+
idtipodocumento: number[];
|
|
17
|
+
extencaoDocumento: string;
|
|
18
|
+
previewOn: boolean;
|
|
19
|
+
selectedItem: any;
|
|
20
|
+
totalRecords: number;
|
|
21
|
+
isLoading: boolean;
|
|
22
|
+
displaySidebar: boolean;
|
|
23
|
+
isSelected: boolean;
|
|
24
|
+
visualizadorDocumentos: boolean;
|
|
25
|
+
cardTemplate: TemplateRef<any>;
|
|
26
|
+
contentTemplate: TemplateRef<any>;
|
|
27
|
+
noDocumentSelectedTemplate: TemplateRef<any>;
|
|
28
|
+
noDocumentListTemplate: TemplateRef<any>;
|
|
29
|
+
todayDate(): string;
|
|
30
|
+
onScrollHandler: EventEmitter<any>;
|
|
31
|
+
onSelectFile: EventEmitter<any>;
|
|
32
|
+
trackByFn(index: number, item: any): any;
|
|
33
|
+
visualizarPreview(arquivo: any): void;
|
|
34
|
+
scrollHandler($event: Event): void;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvContentViewerComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvContentViewerComponent, "kv-content-viewer", never, { "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "visualizadorDocumentos": { "alias": "visualizadorDocumentos"; "required": false; }; "cardTemplate": { "alias": "cardTemplate"; "required": false; }; "contentTemplate": { "alias": "contentTemplate"; "required": false; }; "noDocumentSelectedTemplate": { "alias": "noDocumentSelectedTemplate"; "required": false; }; "noDocumentListTemplate": { "alias": "noDocumentListTemplate"; "required": false; }; }, { "onScrollHandler": "onScrollHandler"; "onSelectFile": "onSelectFile"; }, never, never, false, never>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-content-viewer.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "ng2-pdf-viewer";
|
|
5
|
+
import * as i4 from "../kv-file-viewer-novo/kv-file-viewer-novo.module";
|
|
6
|
+
import * as i5 from "ngx-loading";
|
|
7
|
+
export declare class KvContentViewerModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvContentViewerModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvContentViewerModule, [typeof i1.KvContentViewerComponent], [typeof i2.CommonModule, typeof i3.PdfViewerModule, typeof i4.KvFileViewerNovoModule, typeof i5.NgxLoadingModule], [typeof i1.KvContentViewerComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvContentViewerModule>;
|
|
11
|
+
}
|
|
@@ -111,7 +111,7 @@ export declare class KvLayoutComponent implements OnInit, OnChanges {
|
|
|
111
111
|
showLicencas(): boolean;
|
|
112
112
|
toggleMenu(): void;
|
|
113
113
|
navigateToDefaultRoute(): void;
|
|
114
|
-
getSidebarState(): "
|
|
114
|
+
getSidebarState(): "collapsed" | "expanded";
|
|
115
115
|
get exibirNomes(): string | false;
|
|
116
116
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvLayoutComponent, never>;
|
|
117
117
|
static ɵcmp: i0.ɵɵComponentDeclaration<KvLayoutComponent, "kv-layout", never, { "apps": { "alias": "apps"; "required": false; }; "breadCrumbItems": { "alias": "breadCrumbItems"; "required": false; }; "masters": { "alias": "masters"; "required": false; }; "menus": { "alias": "menus"; "required": false; }; "expandMenu": { "alias": "expandMenu"; "required": false; "isSignal": true; }; "logoMenuExpand": { "alias": "logoMenuExpand"; "required": false; }; "logoMenuHide": { "alias": "logoMenuHide"; "required": false; }; "selectedApp": { "alias": "selectedApp"; "required": false; }; "selectedEmpresa": { "alias": "selectedEmpresa"; "required": false; }; "selectedMaster": { "alias": "selectedMaster"; "required": false; }; "showButtonApps": { "alias": "showButtonApps"; "required": false; }; "showButtonUser": { "alias": "showButtonUser"; "required": false; }; "showExpandMenu": { "alias": "showExpandMenu"; "required": false; }; "showDropdownLicenca": { "alias": "showDropdownLicenca"; "required": false; }; "showMenu": { "alias": "showMenu"; "required": false; }; "showTrocaEmpresa": { "alias": "showTrocaEmpresa"; "required": false; }; "userName": { "alias": "userName"; "required": false; }; "masterName": { "alias": "masterName"; "required": false; }; "empresaName": { "alias": "empresaName"; "required": false; }; }, { "expandMenu": "expandMenuChange"; "accessKeePassEmit": "accessKeePassEmit"; "changeEmpresaEmit": "changeEmpresaEmit"; "changeLicenseEmit": "changeLicenseEmit"; "expandMenuEmit": "expandMenuEmit"; "logoutEmit": "logoutEmit"; "selectAppEmit": "selectAppEmit"; "navigateToDefaultRouteEmit": "navigateToDefaultRouteEmit"; }, ["topMenuActions"], ["*"], false, never>;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -228,6 +228,11 @@ export * from './lib/components/kv-file-viewer/kv-file-viewer.module';
|
|
|
228
228
|
*/
|
|
229
229
|
export * from './lib/components/kv-file-viewer-novo/kv-file-viewer-novo.component';
|
|
230
230
|
export * from './lib/components/kv-file-viewer-novo/kv-file-viewer-novo.module';
|
|
231
|
+
/**
|
|
232
|
+
* Content-Viewer
|
|
233
|
+
*/
|
|
234
|
+
export * from './lib/components/kv-content-viewer/kv-content-viewer.component';
|
|
235
|
+
export * from './lib/components/kv-content-viewer/kv-content-viewer.module';
|
|
231
236
|
/**
|
|
232
237
|
* Componentes comuns utilizados no keex
|
|
233
238
|
*/
|