@sankhyalabs/sankhyablocks 1.3.31-beta.14 → 1.3.31-beta.17
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/dist/cjs/{SnkMessageBuilder-bb55d4c4.js → SnkMessageBuilder-cb132e6d.js} +134 -1
- package/dist/cjs/app-globals-3a1e7e63.js +5 -0
- package/dist/cjs/css-shim-b8158822.js +6 -0
- package/dist/cjs/dom-36862b77.js +75 -0
- package/dist/cjs/filter-item-type.enum-e2e1bc5b.js +14 -0
- package/dist/cjs/index-02201bc9.js +2397 -0
- package/dist/cjs/index-b0b676c5.js +3298 -0
- package/dist/cjs/loader.cjs.js +19 -3
- package/dist/cjs/sankhyablocks.cjs.js +117 -5
- package/dist/cjs/shadow-css-346c0795.js +389 -0
- package/dist/cjs/snk-application.cjs.entry.js +542 -66
- package/dist/cjs/snk-crud.cjs.entry.js +1 -1
- package/dist/cjs/snk-data-unit.cjs.entry.js +23 -24
- package/dist/cjs/snk-filter-bar.cjs.entry.js +199 -0
- package/dist/cjs/snk-filter-binary-select.cjs.entry.js +47 -0
- package/dist/cjs/snk-filter-detail.cjs.entry.js +44 -0
- package/dist/cjs/snk-filter-item.cjs.entry.js +131 -0
- package/dist/cjs/snk-filter-list.cjs.entry.js +91 -0
- package/dist/cjs/snk-filter-number.cjs.entry.js +23 -0
- package/dist/cjs/snk-filter-period.cjs.entry.js +26 -0
- package/dist/cjs/snk-filter-search.cjs.entry.js +44 -0
- package/dist/cjs/snk-filter-text.cjs.entry.js +22 -0
- package/dist/cjs/{snk-form_2.cjs.entry.js → snk-form.cjs.entry.js} +3 -65
- package/dist/cjs/snk-grid.cjs.entry.js +69 -0
- package/dist/cjs/snk-pesquisa.cjs.entry.js +5 -5
- package/dist/cjs/snk-taskbar.cjs.entry.js +5 -4
- package/dist/cjs/{taskbar-elements-2888ceb6.js → taskbar-elements-efa44ff1.js} +1 -1
- package/dist/cjs/teste-pesquisa.cjs.entry.js +5 -5
- package/dist/collection/collection-manifest.json +11 -2
- package/dist/collection/components/snk-application/errorhandler/snk-error-handler.js +7 -0
- package/dist/collection/components/snk-application/snk-application.js +775 -695
- package/dist/collection/components/snk-crud/snk-crud.js +75 -73
- package/dist/collection/components/snk-data-unit/snk-data-unit.js +262 -250
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-binary-select.js +88 -0
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-number.js +64 -0
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-period.js +69 -0
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-search.js +118 -0
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-text.js +63 -0
- package/dist/collection/components/snk-filter-bar/filter-item/filter-item-type.enum.js +10 -0
- package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-detail.js +113 -0
- package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-item.js +209 -0
- package/dist/collection/components/snk-filter-bar/filter-list/snk-filter-list.js +182 -0
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.css +99 -0
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +257 -0
- package/dist/collection/components/snk-form/snk-form.js +111 -111
- package/dist/collection/components/snk-grid/snk-grid.css +14 -1
- package/dist/collection/components/snk-grid/snk-grid.js +93 -92
- package/dist/collection/components/snk-pesquisa/snk-pesquisa.js +80 -79
- package/dist/collection/components/snk-taskbar/elements/taskbar-elements.js +1 -2
- package/dist/collection/components/snk-taskbar/snk-taskbar.js +128 -116
- package/dist/collection/components/teste-pesquisa/teste-pesquisa.js +12 -9
- package/dist/collection/lib/http/data-fetcher/DataFetcher.js +24 -2
- package/dist/collection/lib/http/data-fetcher/fetchers/dataunit-fetcher.js +1 -1
- package/dist/collection/lib/http/data-fetcher/fetchers/filter-bar-config-fetcher.js +268 -0
- package/dist/collection/lib/message/SnkMessageBuilder.js +3 -1
- package/dist/collection/lib/message/resources/snk-data-unit.msg.js +1 -0
- package/dist/collection/lib/message/resources/snk-filter-bar.msg.js +14 -0
- package/dist/components/SnkMessageBuilder.js +134 -2
- package/dist/components/filter-item-type.enum.js +12 -0
- package/dist/components/index.d.ts +17 -5
- package/dist/components/index.js +21 -0
- package/dist/components/index2.js +2384 -0
- package/dist/components/snk-application2.js +508 -30
- package/dist/components/snk-crud.js +25 -1
- package/dist/components/snk-data-unit.js +3 -4
- package/dist/components/snk-filter-bar.d.ts +11 -0
- package/dist/components/snk-filter-bar.js +6 -0
- package/dist/components/snk-filter-bar2.js +230 -0
- package/dist/components/snk-filter-binary-select.d.ts +11 -0
- package/dist/components/snk-filter-binary-select.js +63 -0
- package/dist/components/snk-filter-detail.d.ts +11 -0
- package/dist/components/snk-filter-detail.js +6 -0
- package/dist/components/snk-filter-detail2.js +58 -0
- package/dist/components/snk-filter-item.d.ts +11 -0
- package/dist/components/snk-filter-item.js +6 -0
- package/dist/components/snk-filter-item2.js +151 -0
- package/dist/components/snk-filter-list.d.ts +11 -0
- package/dist/components/snk-filter-list.js +6 -0
- package/dist/components/snk-filter-list2.js +108 -0
- package/dist/components/snk-filter-number.d.ts +11 -0
- package/dist/components/snk-filter-number.js +39 -0
- package/dist/components/snk-filter-period.d.ts +11 -0
- package/dist/components/snk-filter-period.js +42 -0
- package/dist/components/snk-filter-search.d.ts +11 -0
- package/dist/components/snk-filter-search.js +62 -0
- package/dist/components/snk-filter-text.d.ts +11 -0
- package/dist/components/snk-filter-text.js +38 -0
- package/dist/components/snk-form2.js +1 -1
- package/dist/components/snk-grid2.js +28 -4
- package/dist/components/snk-pesquisa2.js +1 -1
- package/dist/components/snk-taskbar2.js +2 -1
- package/dist/components/teste-pesquisa.js +1 -1
- package/dist/esm/{SnkMessageBuilder-17d91b88.js → SnkMessageBuilder-cff80920.js} +134 -2
- package/dist/esm/app-globals-0f993ce5.js +3 -0
- package/dist/esm/css-shim-b3f2ee8d.js +4 -0
- package/dist/esm/dom-665d6011.js +73 -0
- package/dist/esm/filter-item-type.enum-61fbf80a.js +12 -0
- package/dist/esm/index-2b4d2d14.js +3262 -0
- package/dist/esm/index-e5b61043.js +2384 -0
- package/dist/esm/loader.js +19 -3
- package/dist/esm/polyfills/css-shim.js +1 -1
- package/dist/esm/sankhyablocks.js +117 -5
- package/dist/esm/shadow-css-b18e99d7.js +387 -0
- package/dist/esm/snk-application.entry.js +507 -31
- package/dist/esm/snk-crud.entry.js +1 -1
- package/dist/esm/snk-data-unit.entry.js +4 -5
- package/dist/esm/snk-filter-bar.entry.js +195 -0
- package/dist/esm/snk-filter-binary-select.entry.js +43 -0
- package/dist/esm/snk-filter-detail.entry.js +40 -0
- package/dist/esm/snk-filter-item.entry.js +127 -0
- package/dist/esm/snk-filter-list.entry.js +87 -0
- package/dist/esm/snk-filter-number.entry.js +19 -0
- package/dist/esm/snk-filter-period.entry.js +22 -0
- package/dist/esm/snk-filter-search.entry.js +40 -0
- package/dist/esm/snk-filter-text.entry.js +18 -0
- package/dist/esm/{snk-form_2.entry.js → snk-form.entry.js} +3 -64
- package/dist/esm/snk-grid.entry.js +65 -0
- package/dist/esm/snk-pesquisa.entry.js +2 -2
- package/dist/esm/snk-taskbar.entry.js +4 -3
- package/dist/esm/{taskbar-elements-5ea74223.js → taskbar-elements-c119510a.js} +1 -1
- package/dist/esm/teste-pesquisa.entry.js +2 -2
- package/dist/sankhyablocks/SnkMessageBuilder-cff80920.js +299 -0
- package/dist/sankhyablocks/app-globals-0f993ce5.js +3 -0
- package/dist/sankhyablocks/css-shim-b3f2ee8d.js +4 -0
- package/dist/sankhyablocks/dom-665d6011.js +73 -0
- package/dist/sankhyablocks/filter-item-type.enum-61fbf80a.js +12 -0
- package/dist/sankhyablocks/index-2b4d2d14.js +3262 -0
- package/dist/sankhyablocks/index-e5b61043.js +2384 -0
- package/dist/sankhyablocks/index.esm.js +1 -0
- package/dist/sankhyablocks/sankhyablocks.esm.js +129 -1
- package/dist/sankhyablocks/shadow-css-b18e99d7.js +387 -0
- package/dist/sankhyablocks/snk-application.entry.js +8306 -0
- package/dist/sankhyablocks/snk-crud.entry.js +60 -0
- package/dist/sankhyablocks/snk-data-unit.entry.js +272 -0
- package/dist/sankhyablocks/snk-filter-bar.entry.js +195 -0
- package/dist/sankhyablocks/snk-filter-binary-select.entry.js +43 -0
- package/dist/sankhyablocks/snk-filter-detail.entry.js +40 -0
- package/dist/sankhyablocks/snk-filter-item.entry.js +127 -0
- package/dist/sankhyablocks/snk-filter-list.entry.js +87 -0
- package/dist/sankhyablocks/snk-filter-number.entry.js +19 -0
- package/dist/sankhyablocks/snk-filter-period.entry.js +22 -0
- package/dist/sankhyablocks/snk-filter-search.entry.js +40 -0
- package/dist/sankhyablocks/snk-filter-text.entry.js +18 -0
- package/dist/sankhyablocks/snk-form.entry.js +111 -0
- package/dist/sankhyablocks/snk-grid.entry.js +65 -0
- package/dist/sankhyablocks/snk-pesquisa.entry.js +311 -0
- package/dist/sankhyablocks/snk-taskbar.entry.js +153 -0
- package/dist/sankhyablocks/taskbar-elements-c119510a.js +72 -0
- package/dist/sankhyablocks/teste-pesquisa.entry.js +33 -0
- package/dist/types/components/snk-application/errorhandler/snk-error-handler.d.ts +1 -0
- package/dist/types/components/snk-application/snk-application.d.ts +9 -0
- package/dist/types/components/snk-filter-bar/filter-item/editors/snk-filter-binary-select.d.ts +12 -0
- package/dist/types/components/snk-filter-bar/filter-item/editors/snk-filter-number.d.ts +7 -0
- package/dist/types/components/snk-filter-bar/filter-item/editors/snk-filter-period.d.ts +13 -0
- package/dist/types/components/snk-filter-bar/filter-item/editors/snk-filter-search.d.ts +12 -0
- package/dist/types/components/snk-filter-bar/filter-item/editors/snk-filter-text.d.ts +7 -0
- package/dist/types/components/snk-filter-bar/filter-item/filter-item-type.enum.d.ts +9 -0
- package/dist/types/components/snk-filter-bar/filter-item/snk-filter-detail.d.ts +13 -0
- package/dist/types/components/snk-filter-bar/filter-list/snk-filter-list.d.ts +37 -0
- package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +43 -0
- package/dist/types/components.d.ts +199 -0
- package/dist/types/lib/http/data-fetcher/DataFetcher.d.ts +1 -0
- package/dist/types/lib/http/data-fetcher/fetchers/filter-bar-config-fetcher.d.ts +5 -0
- package/dist/types/lib/message/resources/snk-filter-bar.msg.d.ts +2 -0
- package/dist/types/stencil-public-runtime.d.ts +15 -4
- package/loader/package.json +1 -0
- package/package.json +5 -5
- package/react/components.d.ts +0 -7
- package/react/components.js +0 -7
- package/react/components.js.map +1 -1
- package/dist/cjs/index-c6671817.js +0 -1642
- package/dist/esm/index-6a83ac96.js +0 -1614
- package/dist/sankhyablocks/p-4c7b32d6.entry.js +0 -1
- package/dist/sankhyablocks/p-56a32417.entry.js +0 -1
- package/dist/sankhyablocks/p-825d2c38.entry.js +0 -74
- package/dist/sankhyablocks/p-ab694dbc.js +0 -1
- package/dist/sankhyablocks/p-b559117b.js +0 -1
- package/dist/sankhyablocks/p-cd1dc099.js +0 -2
- package/dist/sankhyablocks/p-ce2d1214.entry.js +0 -1
- package/dist/sankhyablocks/p-d25637c9.entry.js +0 -1
- package/dist/sankhyablocks/p-d25803a1.entry.js +0 -1
- package/dist/sankhyablocks/p-edf81d2c.entry.js +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { h } from "@stencil/core";
|
|
2
2
|
import { DataType, ErrorTracking } from "@sankhyalabs/core";
|
|
3
3
|
import { DependencyType } from "@sankhyalabs/core";
|
|
4
4
|
import DataUnitFetcher from "../../lib/http/data-fetcher/fetchers/dataunit-fetcher";
|
|
@@ -17,6 +17,7 @@ import { SnkErrorHandler } from "./errorhandler/snk-error-handler";
|
|
|
17
17
|
import { agGridLicense } from '../../lib/licenses/sankhyalicense.module';
|
|
18
18
|
import { TotalsFetcher } from "../../lib/http/data-fetcher/fetchers/totals-fetcher";
|
|
19
19
|
import { SnkMessageBuilder } from "../../lib/message/SnkMessageBuilder";
|
|
20
|
+
import FilterBarConfigFetcher from "../../lib/http/data-fetcher/fetchers/filter-bar-config-fetcher";
|
|
20
21
|
/**
|
|
21
22
|
* É possível customizar as mensagens dos blocos de construção através de um pequeno modulo na estrutura da aplicação:
|
|
22
23
|
* - Criar um arquivo no seguinte caminho: /messages/appmessages.msg.js.
|
|
@@ -346,6 +347,12 @@ export class SnkApplication {
|
|
|
346
347
|
async saveGridConfig(config) {
|
|
347
348
|
return this.gridConfigFetcher.saveConfig(config, this.resourceID);
|
|
348
349
|
}
|
|
350
|
+
/**
|
|
351
|
+
* Obtém as configurações da barra de filtros
|
|
352
|
+
*/
|
|
353
|
+
async getFilterBarConfig() {
|
|
354
|
+
return this.filterBarConfigFetcher.getConfig(this.resourceID);
|
|
355
|
+
}
|
|
349
356
|
async getAuthList(_auth) {
|
|
350
357
|
return await (new MGEAuthorization()).parseFromJSON(_auth);
|
|
351
358
|
}
|
|
@@ -391,6 +398,12 @@ export class SnkApplication {
|
|
|
391
398
|
}
|
|
392
399
|
return this._authFetcher;
|
|
393
400
|
}
|
|
401
|
+
get filterBarConfigFetcher() {
|
|
402
|
+
if (!this._filterBarConfigFetcher) {
|
|
403
|
+
this._filterBarConfigFetcher = new FilterBarConfigFetcher();
|
|
404
|
+
}
|
|
405
|
+
return this._filterBarConfigFetcher;
|
|
406
|
+
}
|
|
394
407
|
async executeSearch(searchArgument, fieldName, dataUnit) {
|
|
395
408
|
const descriptor = dataUnit === null || dataUnit === void 0 ? void 0 : dataUnit.getField(fieldName);
|
|
396
409
|
if (!descriptor) {
|
|
@@ -427,23 +440,27 @@ export class SnkApplication {
|
|
|
427
440
|
}
|
|
428
441
|
}
|
|
429
442
|
});
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
443
|
+
return this.executePreparedSearch(mode, argument, { entity: ENTITYNAME, entityDescription: DESCRIPTIONENTITY, criteria, searchOptions });
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
async executePreparedSearch(mode, argument, options) {
|
|
447
|
+
const { entity, entityDescription, criteria, searchOptions } = options;
|
|
448
|
+
if (mode === "ADVANCED") {
|
|
449
|
+
return new Promise(accept => {
|
|
450
|
+
const pesquisaContent = document.createElement("snk-pesquisa");
|
|
451
|
+
pesquisaContent.argument = argument;
|
|
452
|
+
pesquisaContent.searchLoader = (text) => this.pesquisaFetcher.loadAdvancedSearch(entity, text, criteria, searchOptions);
|
|
453
|
+
pesquisaContent.selectItem = (option) => {
|
|
454
|
+
accept(option);
|
|
455
|
+
this.clearPopUpTitle();
|
|
456
|
+
this.closePopUp();
|
|
457
|
+
};
|
|
458
|
+
this.setPopUpTitle(entityDescription);
|
|
459
|
+
this.showPopUp(pesquisaContent);
|
|
460
|
+
});
|
|
461
|
+
}
|
|
462
|
+
else {
|
|
463
|
+
return this.pesquisaFetcher.loadSearchOptions(entity, argument, criteria, searchOptions);
|
|
447
464
|
}
|
|
448
465
|
}
|
|
449
466
|
async isDebugMode() {
|
|
@@ -488,766 +505,829 @@ export class SnkApplication {
|
|
|
488
505
|
});
|
|
489
506
|
}
|
|
490
507
|
render() {
|
|
491
|
-
return (h("div", null,
|
|
492
|
-
h("ez-loading-bar", { ref: (ref) => this._requestListener.loadingBar = ref }),
|
|
493
|
-
h("ez-popup", { opened: false, ref: (ref) => this._popUp = ref, onEzClosePopup: () => this.closePopUp() })));
|
|
508
|
+
return (h("div", null, h("ez-loading-bar", { ref: (ref) => this._requestListener.loadingBar = ref }), h("ez-popup", { opened: false, ref: (ref) => this._popUp = ref, onEzClosePopup: () => this.closePopUp() })));
|
|
494
509
|
}
|
|
495
510
|
static get is() { return "snk-application"; }
|
|
496
511
|
static get encapsulation() { return "scoped"; }
|
|
497
|
-
static get originalStyleUrls() {
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
"
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
512
|
+
static get originalStyleUrls() {
|
|
513
|
+
return {
|
|
514
|
+
"$": ["snk-application.css"]
|
|
515
|
+
};
|
|
516
|
+
}
|
|
517
|
+
static get styleUrls() {
|
|
518
|
+
return {
|
|
519
|
+
"$": ["snk-application.css"]
|
|
520
|
+
};
|
|
521
|
+
}
|
|
522
|
+
static get properties() {
|
|
523
|
+
return {
|
|
524
|
+
"messagesBuilder": {
|
|
525
|
+
"type": "unknown",
|
|
526
|
+
"mutable": true,
|
|
527
|
+
"complexType": {
|
|
528
|
+
"original": "SnkMessageBuilder",
|
|
529
|
+
"resolved": "SnkMessageBuilder",
|
|
530
|
+
"references": {
|
|
531
|
+
"SnkMessageBuilder": {
|
|
532
|
+
"location": "import",
|
|
533
|
+
"path": "../../lib/message/SnkMessageBuilder"
|
|
534
|
+
}
|
|
514
535
|
}
|
|
536
|
+
},
|
|
537
|
+
"required": false,
|
|
538
|
+
"optional": false,
|
|
539
|
+
"docs": {
|
|
540
|
+
"tags": [],
|
|
541
|
+
"text": "messagesBuilder \u00E9 um utilit\u00E1rio respons\u00E1vel por flexibilizar e padronizar\no uso de mensagens nos blocos de constru\u00E7\u00E3o."
|
|
515
542
|
}
|
|
516
|
-
},
|
|
517
|
-
"required": false,
|
|
518
|
-
"optional": false,
|
|
519
|
-
"docs": {
|
|
520
|
-
"tags": [],
|
|
521
|
-
"text": "messagesBuilder \u00E9 um utilit\u00E1rio respons\u00E1vel por flexibilizar e padronizar\no uso de mensagens nos blocos de constru\u00E7\u00E3o."
|
|
522
543
|
}
|
|
523
|
-
}
|
|
524
|
-
}
|
|
525
|
-
static get events() {
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
"
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
"complexType": {
|
|
536
|
-
"original": "boolean",
|
|
537
|
-
"resolved": "boolean",
|
|
538
|
-
"references": {}
|
|
539
|
-
}
|
|
540
|
-
}, {
|
|
541
|
-
"method": "applicationLoading",
|
|
542
|
-
"name": "applicationLoading",
|
|
543
|
-
"bubbles": true,
|
|
544
|
-
"cancelable": true,
|
|
545
|
-
"composed": true,
|
|
546
|
-
"docs": {
|
|
547
|
-
"tags": [],
|
|
548
|
-
"text": "Evento disparado ao iniciar a carga do componente"
|
|
549
|
-
},
|
|
550
|
-
"complexType": {
|
|
551
|
-
"original": "boolean",
|
|
552
|
-
"resolved": "boolean",
|
|
553
|
-
"references": {}
|
|
554
|
-
}
|
|
555
|
-
}]; }
|
|
556
|
-
static get methods() { return {
|
|
557
|
-
"isUserSup": {
|
|
558
|
-
"complexType": {
|
|
559
|
-
"signature": "() => Promise<boolean>",
|
|
560
|
-
"parameters": [],
|
|
561
|
-
"references": {
|
|
562
|
-
"Promise": {
|
|
563
|
-
"location": "global"
|
|
564
|
-
}
|
|
544
|
+
};
|
|
545
|
+
}
|
|
546
|
+
static get events() {
|
|
547
|
+
return [{
|
|
548
|
+
"method": "applicationLoaded",
|
|
549
|
+
"name": "applicationLoaded",
|
|
550
|
+
"bubbles": true,
|
|
551
|
+
"cancelable": true,
|
|
552
|
+
"composed": true,
|
|
553
|
+
"docs": {
|
|
554
|
+
"tags": [],
|
|
555
|
+
"text": "Evento disparado quando a aplica\u00E7\u00E3o for carregada."
|
|
565
556
|
},
|
|
566
|
-
"
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
"
|
|
576
|
-
"
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
557
|
+
"complexType": {
|
|
558
|
+
"original": "boolean",
|
|
559
|
+
"resolved": "boolean",
|
|
560
|
+
"references": {}
|
|
561
|
+
}
|
|
562
|
+
}, {
|
|
563
|
+
"method": "applicationLoading",
|
|
564
|
+
"name": "applicationLoading",
|
|
565
|
+
"bubbles": true,
|
|
566
|
+
"cancelable": true,
|
|
567
|
+
"composed": true,
|
|
568
|
+
"docs": {
|
|
569
|
+
"tags": [],
|
|
570
|
+
"text": "Evento disparado ao iniciar a carga do componente"
|
|
571
|
+
},
|
|
572
|
+
"complexType": {
|
|
573
|
+
"original": "boolean",
|
|
574
|
+
"resolved": "boolean",
|
|
575
|
+
"references": {}
|
|
576
|
+
}
|
|
577
|
+
}];
|
|
578
|
+
}
|
|
579
|
+
static get methods() {
|
|
580
|
+
return {
|
|
581
|
+
"isUserSup": {
|
|
582
|
+
"complexType": {
|
|
583
|
+
"signature": "() => Promise<boolean>",
|
|
584
|
+
"parameters": [],
|
|
585
|
+
"references": {
|
|
586
|
+
"Promise": {
|
|
587
|
+
"location": "global"
|
|
588
|
+
}
|
|
583
589
|
},
|
|
584
|
-
"
|
|
585
|
-
"location": "import",
|
|
586
|
-
"path": "../../lib/http/data-fetcher/fetchers/auth-fetcher"
|
|
587
|
-
}
|
|
590
|
+
"return": "Promise<boolean>"
|
|
588
591
|
},
|
|
589
|
-
"
|
|
592
|
+
"docs": {
|
|
593
|
+
"text": "Caso o usu\u00E1rio logado seja o SUP.",
|
|
594
|
+
"tags": []
|
|
595
|
+
}
|
|
590
596
|
},
|
|
591
|
-
"
|
|
592
|
-
"
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
"
|
|
603
|
-
|
|
597
|
+
"hasAccess": {
|
|
598
|
+
"complexType": {
|
|
599
|
+
"signature": "(access: AutorizationType) => Promise<boolean>",
|
|
600
|
+
"parameters": [{
|
|
601
|
+
"tags": [],
|
|
602
|
+
"text": ""
|
|
603
|
+
}],
|
|
604
|
+
"references": {
|
|
605
|
+
"Promise": {
|
|
606
|
+
"location": "global"
|
|
607
|
+
},
|
|
608
|
+
"AutorizationType": {
|
|
609
|
+
"location": "import",
|
|
610
|
+
"path": "../../lib/http/data-fetcher/fetchers/auth-fetcher"
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
"return": "Promise<boolean>"
|
|
604
614
|
},
|
|
605
|
-
"
|
|
615
|
+
"docs": {
|
|
616
|
+
"text": "Se o usu\u00E1rio logado tem permiss\u00E3o pra determinada a\u00E7\u00E3o.",
|
|
617
|
+
"tags": []
|
|
618
|
+
}
|
|
606
619
|
},
|
|
607
|
-
"
|
|
608
|
-
"
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
"text": ""
|
|
618
|
-
}],
|
|
619
|
-
"references": {
|
|
620
|
-
"Promise": {
|
|
621
|
-
"location": "global"
|
|
622
|
-
}
|
|
620
|
+
"getAllAccess": {
|
|
621
|
+
"complexType": {
|
|
622
|
+
"signature": "() => Promise<any>",
|
|
623
|
+
"parameters": [],
|
|
624
|
+
"references": {
|
|
625
|
+
"Promise": {
|
|
626
|
+
"location": "global"
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
"return": "Promise<any>"
|
|
623
630
|
},
|
|
624
|
-
"
|
|
631
|
+
"docs": {
|
|
632
|
+
"text": "Retorna todos os acessos do usu\u00E1rio logado.",
|
|
633
|
+
"tags": []
|
|
634
|
+
}
|
|
625
635
|
},
|
|
626
|
-
"
|
|
627
|
-
"
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
"Promise": {
|
|
640
|
-
"location": "global"
|
|
641
|
-
}
|
|
636
|
+
"getStringParam": {
|
|
637
|
+
"complexType": {
|
|
638
|
+
"signature": "(name: string) => Promise<string>",
|
|
639
|
+
"parameters": [{
|
|
640
|
+
"tags": [],
|
|
641
|
+
"text": ""
|
|
642
|
+
}],
|
|
643
|
+
"references": {
|
|
644
|
+
"Promise": {
|
|
645
|
+
"location": "global"
|
|
646
|
+
}
|
|
647
|
+
},
|
|
648
|
+
"return": "Promise<string>"
|
|
642
649
|
},
|
|
643
|
-
"
|
|
650
|
+
"docs": {
|
|
651
|
+
"text": "Retorna o valor de um par\u00E2metro do tipo string.",
|
|
652
|
+
"tags": []
|
|
653
|
+
}
|
|
644
654
|
},
|
|
645
|
-
"
|
|
646
|
-
"
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
}
|
|
657
|
-
|
|
658
|
-
"Promise": {
|
|
659
|
-
"location": "global"
|
|
660
|
-
}
|
|
655
|
+
"getIntParam": {
|
|
656
|
+
"complexType": {
|
|
657
|
+
"signature": "(name: string) => Promise<number>",
|
|
658
|
+
"parameters": [{
|
|
659
|
+
"tags": [],
|
|
660
|
+
"text": ""
|
|
661
|
+
}],
|
|
662
|
+
"references": {
|
|
663
|
+
"Promise": {
|
|
664
|
+
"location": "global"
|
|
665
|
+
}
|
|
666
|
+
},
|
|
667
|
+
"return": "Promise<number>"
|
|
661
668
|
},
|
|
662
|
-
"
|
|
669
|
+
"docs": {
|
|
670
|
+
"text": "Retorna o valor de um par\u00E2metro do tipo Inteiro.",
|
|
671
|
+
"tags": []
|
|
672
|
+
}
|
|
663
673
|
},
|
|
664
|
-
"
|
|
665
|
-
"
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
}
|
|
676
|
-
|
|
677
|
-
"Promise": {
|
|
678
|
-
"location": "global"
|
|
679
|
-
}
|
|
674
|
+
"getFloatParam": {
|
|
675
|
+
"complexType": {
|
|
676
|
+
"signature": "(name: string) => Promise<number>",
|
|
677
|
+
"parameters": [{
|
|
678
|
+
"tags": [],
|
|
679
|
+
"text": ""
|
|
680
|
+
}],
|
|
681
|
+
"references": {
|
|
682
|
+
"Promise": {
|
|
683
|
+
"location": "global"
|
|
684
|
+
}
|
|
685
|
+
},
|
|
686
|
+
"return": "Promise<number>"
|
|
680
687
|
},
|
|
681
|
-
"
|
|
688
|
+
"docs": {
|
|
689
|
+
"text": "Retorna o valor de um par\u00E2metro do tipo Decimal.",
|
|
690
|
+
"tags": []
|
|
691
|
+
}
|
|
682
692
|
},
|
|
683
|
-
"
|
|
684
|
-
"
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
}],
|
|
695
|
-
"references": {
|
|
696
|
-
"Promise": {
|
|
697
|
-
"location": "global"
|
|
693
|
+
"getBooleanParam": {
|
|
694
|
+
"complexType": {
|
|
695
|
+
"signature": "(name: string) => Promise<boolean>",
|
|
696
|
+
"parameters": [{
|
|
697
|
+
"tags": [],
|
|
698
|
+
"text": ""
|
|
699
|
+
}],
|
|
700
|
+
"references": {
|
|
701
|
+
"Promise": {
|
|
702
|
+
"location": "global"
|
|
703
|
+
}
|
|
698
704
|
},
|
|
699
|
-
"
|
|
700
|
-
"location": "global"
|
|
701
|
-
}
|
|
705
|
+
"return": "Promise<boolean>"
|
|
702
706
|
},
|
|
703
|
-
"
|
|
707
|
+
"docs": {
|
|
708
|
+
"text": "Retorna o valor de um par\u00E2metro do tipo booleano.",
|
|
709
|
+
"tags": []
|
|
710
|
+
}
|
|
704
711
|
},
|
|
705
|
-
"
|
|
706
|
-
"
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
"location": "global"
|
|
712
|
+
"getDateParam": {
|
|
713
|
+
"complexType": {
|
|
714
|
+
"signature": "(name: string) => Promise<Date>",
|
|
715
|
+
"parameters": [{
|
|
716
|
+
"tags": [],
|
|
717
|
+
"text": ""
|
|
718
|
+
}],
|
|
719
|
+
"references": {
|
|
720
|
+
"Promise": {
|
|
721
|
+
"location": "global"
|
|
722
|
+
},
|
|
723
|
+
"Date": {
|
|
724
|
+
"location": "global"
|
|
725
|
+
}
|
|
720
726
|
},
|
|
721
|
-
"
|
|
722
|
-
"location": "global"
|
|
723
|
-
}
|
|
727
|
+
"return": "Promise<Date>"
|
|
724
728
|
},
|
|
725
|
-
"
|
|
729
|
+
"docs": {
|
|
730
|
+
"text": "Retorna o valor de um par\u00E2metro do tipo data.",
|
|
731
|
+
"tags": []
|
|
732
|
+
}
|
|
726
733
|
},
|
|
727
|
-
"
|
|
728
|
-
"
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
"
|
|
739
|
-
|
|
734
|
+
"showPopUp": {
|
|
735
|
+
"complexType": {
|
|
736
|
+
"signature": "(content: HTMLElement) => Promise<void>",
|
|
737
|
+
"parameters": [{
|
|
738
|
+
"tags": [],
|
|
739
|
+
"text": ""
|
|
740
|
+
}],
|
|
741
|
+
"references": {
|
|
742
|
+
"Promise": {
|
|
743
|
+
"location": "global"
|
|
744
|
+
},
|
|
745
|
+
"HTMLElement": {
|
|
746
|
+
"location": "global"
|
|
747
|
+
}
|
|
748
|
+
},
|
|
749
|
+
"return": "Promise<void>"
|
|
740
750
|
},
|
|
741
|
-
"
|
|
751
|
+
"docs": {
|
|
752
|
+
"text": "Mostra o conte\u00FAdo passado em um Popup",
|
|
753
|
+
"tags": []
|
|
754
|
+
}
|
|
742
755
|
},
|
|
743
|
-
"
|
|
744
|
-
"
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
"text": ""
|
|
754
|
-
}],
|
|
755
|
-
"references": {
|
|
756
|
-
"Promise": {
|
|
757
|
-
"location": "global"
|
|
758
|
-
}
|
|
756
|
+
"closePopUp": {
|
|
757
|
+
"complexType": {
|
|
758
|
+
"signature": "() => Promise<void>",
|
|
759
|
+
"parameters": [],
|
|
760
|
+
"references": {
|
|
761
|
+
"Promise": {
|
|
762
|
+
"location": "global"
|
|
763
|
+
}
|
|
764
|
+
},
|
|
765
|
+
"return": "Promise<void>"
|
|
759
766
|
},
|
|
760
|
-
"
|
|
767
|
+
"docs": {
|
|
768
|
+
"text": "Fecha o popup, liberando o conte\u00FAdo.",
|
|
769
|
+
"tags": []
|
|
770
|
+
}
|
|
761
771
|
},
|
|
762
|
-
"
|
|
763
|
-
"
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
}
|
|
774
|
-
|
|
775
|
-
"Promise": {
|
|
776
|
-
"location": "global"
|
|
777
|
-
}
|
|
772
|
+
"temOpcional": {
|
|
773
|
+
"complexType": {
|
|
774
|
+
"signature": "(opcional: string) => Promise<boolean>",
|
|
775
|
+
"parameters": [{
|
|
776
|
+
"tags": [],
|
|
777
|
+
"text": ""
|
|
778
|
+
}],
|
|
779
|
+
"references": {
|
|
780
|
+
"Promise": {
|
|
781
|
+
"location": "global"
|
|
782
|
+
}
|
|
783
|
+
},
|
|
784
|
+
"return": "Promise<boolean>"
|
|
778
785
|
},
|
|
779
|
-
"
|
|
786
|
+
"docs": {
|
|
787
|
+
"text": "Verifica se a licen\u00E7a do cliente tem determinado opcional (produto)",
|
|
788
|
+
"tags": []
|
|
789
|
+
}
|
|
780
790
|
},
|
|
781
|
-
"
|
|
782
|
-
"
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
}, {
|
|
793
|
-
"tags": [],
|
|
794
|
-
"text": ""
|
|
795
|
-
}],
|
|
796
|
-
"references": {
|
|
797
|
-
"Promise": {
|
|
798
|
-
"location": "global"
|
|
791
|
+
"getConfig": {
|
|
792
|
+
"complexType": {
|
|
793
|
+
"signature": "(key: string) => Promise<any>",
|
|
794
|
+
"parameters": [{
|
|
795
|
+
"tags": [],
|
|
796
|
+
"text": ""
|
|
797
|
+
}],
|
|
798
|
+
"references": {
|
|
799
|
+
"Promise": {
|
|
800
|
+
"location": "global"
|
|
801
|
+
}
|
|
799
802
|
},
|
|
800
|
-
"
|
|
801
|
-
"location": "global"
|
|
802
|
-
}
|
|
803
|
+
"return": "Promise<any>"
|
|
803
804
|
},
|
|
804
|
-
"
|
|
805
|
+
"docs": {
|
|
806
|
+
"text": "Retorna a configura\u00E7\u00E3o de um recurso por service broker\nVeja tamb\u00E9m o m\u00E9todo \"loadConfig\"",
|
|
807
|
+
"tags": []
|
|
808
|
+
}
|
|
805
809
|
},
|
|
806
|
-
"
|
|
807
|
-
"
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
"
|
|
821
|
-
|
|
810
|
+
"saveConfig": {
|
|
811
|
+
"complexType": {
|
|
812
|
+
"signature": "(key: string, data: Object) => Promise<any>",
|
|
813
|
+
"parameters": [{
|
|
814
|
+
"tags": [],
|
|
815
|
+
"text": ""
|
|
816
|
+
}, {
|
|
817
|
+
"tags": [],
|
|
818
|
+
"text": ""
|
|
819
|
+
}],
|
|
820
|
+
"references": {
|
|
821
|
+
"Promise": {
|
|
822
|
+
"location": "global"
|
|
823
|
+
},
|
|
824
|
+
"Object": {
|
|
825
|
+
"location": "global"
|
|
826
|
+
}
|
|
827
|
+
},
|
|
828
|
+
"return": "Promise<any>"
|
|
822
829
|
},
|
|
823
|
-
"
|
|
830
|
+
"docs": {
|
|
831
|
+
"text": "Salva a configura\u00E7\u00E3o de determinado recurso.",
|
|
832
|
+
"tags": []
|
|
833
|
+
}
|
|
824
834
|
},
|
|
825
|
-
"
|
|
826
|
-
"
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
}, {
|
|
837
|
-
"tags": [],
|
|
838
|
-
"text": ""
|
|
839
|
-
}],
|
|
840
|
-
"references": {
|
|
841
|
-
"Promise": {
|
|
842
|
-
"location": "global"
|
|
835
|
+
"getAttributeFromHTMLWrapper": {
|
|
836
|
+
"complexType": {
|
|
837
|
+
"signature": "(attribName: string) => Promise<string>",
|
|
838
|
+
"parameters": [{
|
|
839
|
+
"tags": [],
|
|
840
|
+
"text": ""
|
|
841
|
+
}],
|
|
842
|
+
"references": {
|
|
843
|
+
"Promise": {
|
|
844
|
+
"location": "global"
|
|
845
|
+
}
|
|
843
846
|
},
|
|
844
|
-
"
|
|
845
|
-
"location": "global"
|
|
846
|
-
}
|
|
847
|
+
"return": "Promise<string>"
|
|
847
848
|
},
|
|
848
|
-
"
|
|
849
|
+
"docs": {
|
|
850
|
+
"text": "Acessa informa\u00E7\u00F5es de contexto \"empurrados\" na abertura da tela",
|
|
851
|
+
"tags": []
|
|
852
|
+
}
|
|
849
853
|
},
|
|
850
|
-
"
|
|
851
|
-
"
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
"location": "global"
|
|
854
|
+
"openApp": {
|
|
855
|
+
"complexType": {
|
|
856
|
+
"signature": "(resourceId: string, pkObject: Object) => Promise<void>",
|
|
857
|
+
"parameters": [{
|
|
858
|
+
"tags": [],
|
|
859
|
+
"text": ""
|
|
860
|
+
}, {
|
|
861
|
+
"tags": [],
|
|
862
|
+
"text": ""
|
|
863
|
+
}],
|
|
864
|
+
"references": {
|
|
865
|
+
"Promise": {
|
|
866
|
+
"location": "global"
|
|
867
|
+
},
|
|
868
|
+
"Object": {
|
|
869
|
+
"location": "global"
|
|
870
|
+
}
|
|
868
871
|
},
|
|
869
|
-
"
|
|
870
|
-
"location": "import",
|
|
871
|
-
"path": "@sankhyalabs/core"
|
|
872
|
-
}
|
|
872
|
+
"return": "Promise<void>"
|
|
873
873
|
},
|
|
874
|
-
"
|
|
874
|
+
"docs": {
|
|
875
|
+
"text": "Abre determinada tela, repassando pkObject",
|
|
876
|
+
"tags": []
|
|
877
|
+
}
|
|
875
878
|
},
|
|
876
|
-
"
|
|
877
|
-
"
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
879
|
+
"createDataunit": {
|
|
880
|
+
"complexType": {
|
|
881
|
+
"signature": "(entityName: string, dataUnitName?: string) => Promise<DataUnit>",
|
|
882
|
+
"parameters": [{
|
|
883
|
+
"tags": [],
|
|
884
|
+
"text": ""
|
|
885
|
+
}, {
|
|
886
|
+
"tags": [],
|
|
887
|
+
"text": ""
|
|
888
|
+
}],
|
|
889
|
+
"references": {
|
|
890
|
+
"Promise": {
|
|
891
|
+
"location": "global"
|
|
892
|
+
},
|
|
893
|
+
"DataUnit": {
|
|
894
|
+
"location": "import",
|
|
895
|
+
"path": "@sankhyalabs/core"
|
|
896
|
+
}
|
|
894
897
|
},
|
|
895
|
-
"
|
|
896
|
-
"location": "import",
|
|
897
|
-
"path": "@sankhyalabs/core"
|
|
898
|
-
}
|
|
898
|
+
"return": "Promise<DataUnit>"
|
|
899
899
|
},
|
|
900
|
-
"
|
|
900
|
+
"docs": {
|
|
901
|
+
"text": "Cria o DataUnit a partir do nome da entidade. \u00C9 poss\u00EDvel armazen\u00E1-lo no cache\npassando o dataUnitName, assim, se mais de uma chamada for feita, o mesmo DataUnit ser\u00E1 usado",
|
|
902
|
+
"tags": []
|
|
903
|
+
}
|
|
901
904
|
},
|
|
902
|
-
"
|
|
903
|
-
"
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
"
|
|
913
|
-
"
|
|
914
|
-
|
|
905
|
+
"getDataUnit": {
|
|
906
|
+
"complexType": {
|
|
907
|
+
"signature": "(entityName: string, dataUnitName: string) => Promise<DataUnit>",
|
|
908
|
+
"parameters": [{
|
|
909
|
+
"tags": [],
|
|
910
|
+
"text": ""
|
|
911
|
+
}, {
|
|
912
|
+
"tags": [],
|
|
913
|
+
"text": ""
|
|
914
|
+
}],
|
|
915
|
+
"references": {
|
|
916
|
+
"Promise": {
|
|
917
|
+
"location": "global"
|
|
918
|
+
},
|
|
919
|
+
"DataUnit": {
|
|
920
|
+
"location": "import",
|
|
921
|
+
"path": "@sankhyalabs/core"
|
|
922
|
+
}
|
|
923
|
+
},
|
|
924
|
+
"return": "Promise<DataUnit>"
|
|
915
925
|
},
|
|
916
|
-
"
|
|
926
|
+
"docs": {
|
|
927
|
+
"text": "Obtem um DataUnit do cache ou cria um caso ainda n\u00E3o tenha sido criado.",
|
|
928
|
+
"tags": []
|
|
929
|
+
}
|
|
917
930
|
},
|
|
918
|
-
"
|
|
919
|
-
"
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
"parameters": [{
|
|
927
|
-
"tags": [],
|
|
928
|
-
"text": ""
|
|
929
|
-
}, {
|
|
930
|
-
"tags": [],
|
|
931
|
-
"text": ""
|
|
932
|
-
}, {
|
|
933
|
-
"tags": [],
|
|
934
|
-
"text": ""
|
|
935
|
-
}, {
|
|
936
|
-
"tags": [],
|
|
937
|
-
"text": ""
|
|
938
|
-
}],
|
|
939
|
-
"references": {
|
|
940
|
-
"Promise": {
|
|
941
|
-
"location": "global"
|
|
931
|
+
"getResourceID": {
|
|
932
|
+
"complexType": {
|
|
933
|
+
"signature": "() => Promise<string>",
|
|
934
|
+
"parameters": [],
|
|
935
|
+
"references": {
|
|
936
|
+
"Promise": {
|
|
937
|
+
"location": "global"
|
|
938
|
+
}
|
|
942
939
|
},
|
|
943
|
-
"
|
|
944
|
-
"location": "import",
|
|
945
|
-
"path": "@sankhyalabs/ezui/dist/collection/utils"
|
|
946
|
-
}
|
|
940
|
+
"return": "Promise<string>"
|
|
947
941
|
},
|
|
948
|
-
"
|
|
942
|
+
"docs": {
|
|
943
|
+
"text": "Retorna o resourceID da tela em quest\u00E3o.",
|
|
944
|
+
"tags": []
|
|
945
|
+
}
|
|
949
946
|
},
|
|
950
|
-
"
|
|
951
|
-
"
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
947
|
+
"alert": {
|
|
948
|
+
"complexType": {
|
|
949
|
+
"signature": "(title: string, message: string, icon?: string, options?: MessageOptions) => Promise<boolean>",
|
|
950
|
+
"parameters": [{
|
|
951
|
+
"tags": [],
|
|
952
|
+
"text": ""
|
|
953
|
+
}, {
|
|
954
|
+
"tags": [],
|
|
955
|
+
"text": ""
|
|
956
|
+
}, {
|
|
957
|
+
"tags": [],
|
|
958
|
+
"text": ""
|
|
959
|
+
}, {
|
|
960
|
+
"tags": [],
|
|
961
|
+
"text": ""
|
|
962
|
+
}],
|
|
963
|
+
"references": {
|
|
964
|
+
"Promise": {
|
|
965
|
+
"location": "global"
|
|
966
|
+
},
|
|
967
|
+
"MessageOptions": {
|
|
968
|
+
"location": "import",
|
|
969
|
+
"path": "@sankhyalabs/ezui/dist/collection/utils"
|
|
970
|
+
}
|
|
974
971
|
},
|
|
975
|
-
"
|
|
976
|
-
"location": "import",
|
|
977
|
-
"path": "@sankhyalabs/ezui/dist/collection/utils"
|
|
978
|
-
}
|
|
972
|
+
"return": "Promise<boolean>"
|
|
979
973
|
},
|
|
980
|
-
"
|
|
974
|
+
"docs": {
|
|
975
|
+
"text": "Mostra o di\u00E1logo de alerta de acordo com os par\u00E2metros passados.",
|
|
976
|
+
"tags": []
|
|
977
|
+
}
|
|
981
978
|
},
|
|
982
|
-
"
|
|
983
|
-
"
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
979
|
+
"error": {
|
|
980
|
+
"complexType": {
|
|
981
|
+
"signature": "(title: string, message: string, icon?: string, options?: MessageOptions) => Promise<boolean>",
|
|
982
|
+
"parameters": [{
|
|
983
|
+
"tags": [],
|
|
984
|
+
"text": ""
|
|
985
|
+
}, {
|
|
986
|
+
"tags": [],
|
|
987
|
+
"text": ""
|
|
988
|
+
}, {
|
|
989
|
+
"tags": [],
|
|
990
|
+
"text": ""
|
|
991
|
+
}, {
|
|
992
|
+
"tags": [],
|
|
993
|
+
"text": ""
|
|
994
|
+
}],
|
|
995
|
+
"references": {
|
|
996
|
+
"Promise": {
|
|
997
|
+
"location": "global"
|
|
998
|
+
},
|
|
999
|
+
"MessageOptions": {
|
|
1000
|
+
"location": "import",
|
|
1001
|
+
"path": "@sankhyalabs/ezui/dist/collection/utils"
|
|
1002
|
+
}
|
|
1006
1003
|
},
|
|
1007
|
-
"
|
|
1008
|
-
"location": "import",
|
|
1009
|
-
"path": "@sankhyalabs/ezui/dist/collection/utils"
|
|
1010
|
-
}
|
|
1004
|
+
"return": "Promise<boolean>"
|
|
1011
1005
|
},
|
|
1012
|
-
"
|
|
1006
|
+
"docs": {
|
|
1007
|
+
"text": "Mostra o di\u00E1logo de erro de acordo com os par\u00E2metros passados.",
|
|
1008
|
+
"tags": []
|
|
1009
|
+
}
|
|
1013
1010
|
},
|
|
1014
|
-
"
|
|
1015
|
-
"
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
"references": {
|
|
1039
|
-
"Promise": {
|
|
1040
|
-
"location": "global"
|
|
1041
|
-
},
|
|
1042
|
-
"DialogType": {
|
|
1043
|
-
"location": "import",
|
|
1044
|
-
"path": "@sankhyalabs/ezui/dist/collection/utils"
|
|
1011
|
+
"message": {
|
|
1012
|
+
"complexType": {
|
|
1013
|
+
"signature": "(title: string, message: string, icon?: string, options?: MessageOptions) => Promise<boolean>",
|
|
1014
|
+
"parameters": [{
|
|
1015
|
+
"tags": [],
|
|
1016
|
+
"text": ""
|
|
1017
|
+
}, {
|
|
1018
|
+
"tags": [],
|
|
1019
|
+
"text": ""
|
|
1020
|
+
}, {
|
|
1021
|
+
"tags": [],
|
|
1022
|
+
"text": ""
|
|
1023
|
+
}, {
|
|
1024
|
+
"tags": [],
|
|
1025
|
+
"text": ""
|
|
1026
|
+
}],
|
|
1027
|
+
"references": {
|
|
1028
|
+
"Promise": {
|
|
1029
|
+
"location": "global"
|
|
1030
|
+
},
|
|
1031
|
+
"MessageOptions": {
|
|
1032
|
+
"location": "import",
|
|
1033
|
+
"path": "@sankhyalabs/ezui/dist/collection/utils"
|
|
1034
|
+
}
|
|
1045
1035
|
},
|
|
1046
|
-
"
|
|
1047
|
-
"location": "import",
|
|
1048
|
-
"path": "@sankhyalabs/ezui/dist/collection/utils"
|
|
1049
|
-
}
|
|
1036
|
+
"return": "Promise<boolean>"
|
|
1050
1037
|
},
|
|
1051
|
-
"
|
|
1038
|
+
"docs": {
|
|
1039
|
+
"text": "Exibe um di\u00E1logo de mensagem comum",
|
|
1040
|
+
"tags": []
|
|
1041
|
+
}
|
|
1052
1042
|
},
|
|
1053
|
-
"
|
|
1054
|
-
"
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1043
|
+
"confirm": {
|
|
1044
|
+
"complexType": {
|
|
1045
|
+
"signature": "(title: string, message: string, icon?: string, dialogType?: DialogType, options?: MessageOptions) => Promise<boolean>",
|
|
1046
|
+
"parameters": [{
|
|
1047
|
+
"tags": [],
|
|
1048
|
+
"text": ""
|
|
1049
|
+
}, {
|
|
1050
|
+
"tags": [],
|
|
1051
|
+
"text": ""
|
|
1052
|
+
}, {
|
|
1053
|
+
"tags": [],
|
|
1054
|
+
"text": ""
|
|
1055
|
+
}, {
|
|
1056
|
+
"tags": [],
|
|
1057
|
+
"text": ""
|
|
1058
|
+
}, {
|
|
1059
|
+
"tags": [],
|
|
1060
|
+
"text": ""
|
|
1061
|
+
}],
|
|
1062
|
+
"references": {
|
|
1063
|
+
"Promise": {
|
|
1064
|
+
"location": "global"
|
|
1065
|
+
},
|
|
1066
|
+
"DialogType": {
|
|
1067
|
+
"location": "import",
|
|
1068
|
+
"path": "@sankhyalabs/ezui/dist/collection/utils"
|
|
1069
|
+
},
|
|
1070
|
+
"MessageOptions": {
|
|
1071
|
+
"location": "import",
|
|
1072
|
+
"path": "@sankhyalabs/ezui/dist/collection/utils"
|
|
1073
|
+
}
|
|
1071
1074
|
},
|
|
1072
|
-
"
|
|
1073
|
-
"location": "import",
|
|
1074
|
-
"path": "@sankhyalabs/ezui/dist/collection/utils"
|
|
1075
|
-
}
|
|
1075
|
+
"return": "Promise<boolean>"
|
|
1076
1076
|
},
|
|
1077
|
-
"
|
|
1077
|
+
"docs": {
|
|
1078
|
+
"text": "Exibe um di\u00E1logo de confirma\u00E7\u00E3o",
|
|
1079
|
+
"tags": []
|
|
1080
|
+
}
|
|
1078
1081
|
},
|
|
1079
|
-
"
|
|
1080
|
-
"
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
"
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
"path": "@sankhyalabs/ezui/dist/types/components/ez-form/ez-form"
|
|
1082
|
+
"info": {
|
|
1083
|
+
"complexType": {
|
|
1084
|
+
"signature": "(message: string, options?: MessageOptions) => Promise<void>",
|
|
1085
|
+
"parameters": [{
|
|
1086
|
+
"tags": [],
|
|
1087
|
+
"text": ""
|
|
1088
|
+
}, {
|
|
1089
|
+
"tags": [],
|
|
1090
|
+
"text": ""
|
|
1091
|
+
}],
|
|
1092
|
+
"references": {
|
|
1093
|
+
"Promise": {
|
|
1094
|
+
"location": "global"
|
|
1095
|
+
},
|
|
1096
|
+
"MessageOptions": {
|
|
1097
|
+
"location": "import",
|
|
1098
|
+
"path": "@sankhyalabs/ezui/dist/collection/utils"
|
|
1099
|
+
}
|
|
1098
1100
|
},
|
|
1099
|
-
"
|
|
1100
|
-
"location": "global"
|
|
1101
|
-
}
|
|
1101
|
+
"return": "Promise<void>"
|
|
1102
1102
|
},
|
|
1103
|
-
"
|
|
1103
|
+
"docs": {
|
|
1104
|
+
"text": "Mostra uma informa\u00E7\u00E3o ef\u00EAmera (de segundo plano).",
|
|
1105
|
+
"tags": []
|
|
1106
|
+
}
|
|
1104
1107
|
},
|
|
1105
|
-
"
|
|
1106
|
-
"
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1108
|
+
"loadFormConfig": {
|
|
1109
|
+
"complexType": {
|
|
1110
|
+
"signature": "(name: string) => Promise<Array<FieldConfig>>",
|
|
1111
|
+
"parameters": [{
|
|
1112
|
+
"tags": [],
|
|
1113
|
+
"text": ""
|
|
1114
|
+
}],
|
|
1115
|
+
"references": {
|
|
1116
|
+
"Promise": {
|
|
1117
|
+
"location": "global"
|
|
1118
|
+
},
|
|
1119
|
+
"FieldConfig": {
|
|
1120
|
+
"location": "import",
|
|
1121
|
+
"path": "@sankhyalabs/ezui/dist/types/components/ez-form/ez-form"
|
|
1122
|
+
},
|
|
1123
|
+
"Array": {
|
|
1124
|
+
"location": "global"
|
|
1125
|
+
}
|
|
1120
1126
|
},
|
|
1121
|
-
"
|
|
1122
|
-
"location": "import",
|
|
1123
|
-
"path": "@sankhyalabs/ezui/dist/types/components/ez-grid/controller/EzGridController"
|
|
1124
|
-
}
|
|
1127
|
+
"return": "Promise<FieldConfig[]>"
|
|
1125
1128
|
},
|
|
1126
|
-
"
|
|
1129
|
+
"docs": {
|
|
1130
|
+
"text": "Busca a configura\u00E7\u00E3o de formul\u00E1rio.",
|
|
1131
|
+
"tags": []
|
|
1132
|
+
}
|
|
1127
1133
|
},
|
|
1128
|
-
"
|
|
1129
|
-
"
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
"tags": [],
|
|
1144
|
-
"text": ""
|
|
1145
|
-
}],
|
|
1146
|
-
"references": {
|
|
1147
|
-
"Promise": {
|
|
1148
|
-
"location": "global"
|
|
1149
|
-
},
|
|
1150
|
-
"Map": {
|
|
1151
|
-
"location": "global"
|
|
1152
|
-
},
|
|
1153
|
-
"Array": {
|
|
1154
|
-
"location": "global"
|
|
1134
|
+
"loadGridConfig": {
|
|
1135
|
+
"complexType": {
|
|
1136
|
+
"signature": "(name: string) => Promise<IGridConfig>",
|
|
1137
|
+
"parameters": [{
|
|
1138
|
+
"tags": [],
|
|
1139
|
+
"text": ""
|
|
1140
|
+
}],
|
|
1141
|
+
"references": {
|
|
1142
|
+
"Promise": {
|
|
1143
|
+
"location": "global"
|
|
1144
|
+
},
|
|
1145
|
+
"IGridConfig": {
|
|
1146
|
+
"location": "import",
|
|
1147
|
+
"path": "@sankhyalabs/ezui/dist/types/components/ez-grid/controller/EzGridController"
|
|
1148
|
+
}
|
|
1155
1149
|
},
|
|
1156
|
-
"
|
|
1157
|
-
"location": "import",
|
|
1158
|
-
"path": "@sankhyalabs/core"
|
|
1159
|
-
}
|
|
1150
|
+
"return": "Promise<IGridConfig>"
|
|
1160
1151
|
},
|
|
1161
|
-
"
|
|
1152
|
+
"docs": {
|
|
1153
|
+
"text": "Busca a configura\u00E7\u00E3o de grade.",
|
|
1154
|
+
"tags": []
|
|
1155
|
+
}
|
|
1162
1156
|
},
|
|
1163
|
-
"
|
|
1164
|
-
"
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
"
|
|
1177
|
-
"
|
|
1157
|
+
"loadTotals": {
|
|
1158
|
+
"complexType": {
|
|
1159
|
+
"signature": "(name: string, resourceID: string, filters: Array<Filter>) => Promise<Map<string, number>>",
|
|
1160
|
+
"parameters": [{
|
|
1161
|
+
"tags": [],
|
|
1162
|
+
"text": ""
|
|
1163
|
+
}, {
|
|
1164
|
+
"tags": [],
|
|
1165
|
+
"text": ""
|
|
1166
|
+
}, {
|
|
1167
|
+
"tags": [],
|
|
1168
|
+
"text": ""
|
|
1169
|
+
}],
|
|
1170
|
+
"references": {
|
|
1171
|
+
"Promise": {
|
|
1172
|
+
"location": "global"
|
|
1173
|
+
},
|
|
1174
|
+
"Map": {
|
|
1175
|
+
"location": "global"
|
|
1176
|
+
},
|
|
1177
|
+
"Array": {
|
|
1178
|
+
"location": "global"
|
|
1179
|
+
},
|
|
1180
|
+
"Filter": {
|
|
1181
|
+
"location": "import",
|
|
1182
|
+
"path": "@sankhyalabs/core"
|
|
1183
|
+
}
|
|
1178
1184
|
},
|
|
1179
|
-
"
|
|
1180
|
-
"location": "import",
|
|
1181
|
-
"path": "@sankhyalabs/ezui/dist/types/components/ez-grid/controller/EzGridController"
|
|
1182
|
-
}
|
|
1185
|
+
"return": "Promise<Map<string, number>>"
|
|
1183
1186
|
},
|
|
1184
|
-
"
|
|
1187
|
+
"docs": {
|
|
1188
|
+
"text": "Busca os totalizadores da grade.",
|
|
1189
|
+
"tags": []
|
|
1190
|
+
}
|
|
1185
1191
|
},
|
|
1186
|
-
"
|
|
1187
|
-
"
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
"tags": [],
|
|
1202
|
-
"text": ""
|
|
1203
|
-
}],
|
|
1204
|
-
"references": {
|
|
1205
|
-
"Promise": {
|
|
1206
|
-
"location": "global"
|
|
1207
|
-
},
|
|
1208
|
-
"Option": {
|
|
1209
|
-
"location": "import",
|
|
1210
|
-
"path": "@sankhyalabs/ezui/dist/types/components/ez-combo-box/ez-combo-box"
|
|
1211
|
-
},
|
|
1212
|
-
"DataUnit": {
|
|
1213
|
-
"location": "import",
|
|
1214
|
-
"path": "@sankhyalabs/core"
|
|
1192
|
+
"saveGridConfig": {
|
|
1193
|
+
"complexType": {
|
|
1194
|
+
"signature": "(config: IGridConfig) => Promise<boolean>",
|
|
1195
|
+
"parameters": [{
|
|
1196
|
+
"tags": [],
|
|
1197
|
+
"text": ""
|
|
1198
|
+
}],
|
|
1199
|
+
"references": {
|
|
1200
|
+
"Promise": {
|
|
1201
|
+
"location": "global"
|
|
1202
|
+
},
|
|
1203
|
+
"IGridConfig": {
|
|
1204
|
+
"location": "import",
|
|
1205
|
+
"path": "@sankhyalabs/ezui/dist/types/components/ez-grid/controller/EzGridController"
|
|
1206
|
+
}
|
|
1215
1207
|
},
|
|
1216
|
-
"
|
|
1217
|
-
|
|
1208
|
+
"return": "Promise<boolean>"
|
|
1209
|
+
},
|
|
1210
|
+
"docs": {
|
|
1211
|
+
"text": "Salva a configura\u00E7\u00E3o de grade.",
|
|
1212
|
+
"tags": []
|
|
1213
|
+
}
|
|
1214
|
+
},
|
|
1215
|
+
"getFilterBarConfig": {
|
|
1216
|
+
"complexType": {
|
|
1217
|
+
"signature": "() => Promise<Array<SnkFilterItemConfig>>",
|
|
1218
|
+
"parameters": [],
|
|
1219
|
+
"references": {
|
|
1220
|
+
"Promise": {
|
|
1221
|
+
"location": "global"
|
|
1222
|
+
},
|
|
1223
|
+
"SnkFilterItemConfig": {
|
|
1224
|
+
"location": "import",
|
|
1225
|
+
"path": "../snk-filter-bar/filter-item/snk-filter-item"
|
|
1226
|
+
},
|
|
1227
|
+
"Array": {
|
|
1228
|
+
"location": "global"
|
|
1229
|
+
}
|
|
1218
1230
|
},
|
|
1219
|
-
"
|
|
1220
|
-
|
|
1221
|
-
|
|
1231
|
+
"return": "Promise<SnkFilterItemConfig[]>"
|
|
1232
|
+
},
|
|
1233
|
+
"docs": {
|
|
1234
|
+
"text": "Obt\u00E9m as configura\u00E7\u00F5es da barra de filtros",
|
|
1235
|
+
"tags": []
|
|
1236
|
+
}
|
|
1237
|
+
},
|
|
1238
|
+
"executeSearch": {
|
|
1239
|
+
"complexType": {
|
|
1240
|
+
"signature": "(searchArgument: any, fieldName: string, dataUnit: DataUnit) => Promise<Array<Option> | Option>",
|
|
1241
|
+
"parameters": [{
|
|
1242
|
+
"tags": [],
|
|
1243
|
+
"text": ""
|
|
1244
|
+
}, {
|
|
1245
|
+
"tags": [],
|
|
1246
|
+
"text": ""
|
|
1247
|
+
}, {
|
|
1248
|
+
"tags": [],
|
|
1249
|
+
"text": ""
|
|
1250
|
+
}],
|
|
1251
|
+
"references": {
|
|
1252
|
+
"Promise": {
|
|
1253
|
+
"location": "global"
|
|
1254
|
+
},
|
|
1255
|
+
"Option": {
|
|
1256
|
+
"location": "import",
|
|
1257
|
+
"path": "@sankhyalabs/ezui/dist/types/components/ez-combo-box/ez-combo-box"
|
|
1258
|
+
},
|
|
1259
|
+
"DataUnit": {
|
|
1260
|
+
"location": "import",
|
|
1261
|
+
"path": "@sankhyalabs/core"
|
|
1262
|
+
},
|
|
1263
|
+
"Array": {
|
|
1264
|
+
"location": "global"
|
|
1265
|
+
},
|
|
1266
|
+
"SearchCriteria": {
|
|
1267
|
+
"location": "import",
|
|
1268
|
+
"path": "../../lib/http/data-fetcher/fetchers/pesquisa-fetcher"
|
|
1269
|
+
}
|
|
1222
1270
|
},
|
|
1223
|
-
"
|
|
1224
|
-
"location": "global"
|
|
1225
|
-
}
|
|
1271
|
+
"return": "Promise<Option | Option[]>"
|
|
1226
1272
|
},
|
|
1227
|
-
"
|
|
1273
|
+
"docs": {
|
|
1274
|
+
"text": "",
|
|
1275
|
+
"tags": []
|
|
1276
|
+
}
|
|
1228
1277
|
},
|
|
1229
|
-
"
|
|
1230
|
-
"
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1278
|
+
"executePreparedSearch": {
|
|
1279
|
+
"complexType": {
|
|
1280
|
+
"signature": "(mode: string, argument: string, options: any) => Promise<Array<Option> | Option>",
|
|
1281
|
+
"parameters": [{
|
|
1282
|
+
"tags": [],
|
|
1283
|
+
"text": ""
|
|
1284
|
+
}, {
|
|
1285
|
+
"tags": [],
|
|
1286
|
+
"text": ""
|
|
1287
|
+
}, {
|
|
1288
|
+
"tags": [],
|
|
1289
|
+
"text": ""
|
|
1290
|
+
}],
|
|
1291
|
+
"references": {
|
|
1292
|
+
"Promise": {
|
|
1293
|
+
"location": "global"
|
|
1294
|
+
},
|
|
1295
|
+
"Option": {
|
|
1296
|
+
"location": "import",
|
|
1297
|
+
"path": "@sankhyalabs/ezui/dist/types/components/ez-combo-box/ez-combo-box"
|
|
1298
|
+
},
|
|
1299
|
+
"Array": {
|
|
1300
|
+
"location": "global"
|
|
1301
|
+
},
|
|
1302
|
+
"HTMLSnkPesquisaElement": {
|
|
1303
|
+
"location": "global"
|
|
1304
|
+
}
|
|
1305
|
+
},
|
|
1306
|
+
"return": "Promise<Option | Option[]>"
|
|
1242
1307
|
},
|
|
1243
|
-
"
|
|
1308
|
+
"docs": {
|
|
1309
|
+
"text": "",
|
|
1310
|
+
"tags": []
|
|
1311
|
+
}
|
|
1244
1312
|
},
|
|
1245
|
-
"
|
|
1246
|
-
"
|
|
1247
|
-
|
|
1313
|
+
"isDebugMode": {
|
|
1314
|
+
"complexType": {
|
|
1315
|
+
"signature": "() => Promise<boolean>",
|
|
1316
|
+
"parameters": [],
|
|
1317
|
+
"references": {
|
|
1318
|
+
"Promise": {
|
|
1319
|
+
"location": "global"
|
|
1320
|
+
}
|
|
1321
|
+
},
|
|
1322
|
+
"return": "Promise<boolean>"
|
|
1323
|
+
},
|
|
1324
|
+
"docs": {
|
|
1325
|
+
"text": "",
|
|
1326
|
+
"tags": []
|
|
1327
|
+
}
|
|
1248
1328
|
}
|
|
1249
|
-
}
|
|
1250
|
-
}
|
|
1329
|
+
};
|
|
1330
|
+
}
|
|
1251
1331
|
}
|
|
1252
1332
|
class RequestListenerLoadingBar {
|
|
1253
1333
|
constructor() {
|