@sankhyalabs/sankhyablocks 1.3.31-beta.3 → 1.3.31-beta.6
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/{index-e42cb45d.js → index-532bcc28.js} +5 -34
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/sankhyablocks.cjs.js +2 -2
- package/dist/cjs/snk-application.cjs.entry.js +111 -15
- package/dist/cjs/snk-data-unit.cjs.entry.js +82 -37
- package/dist/cjs/snk-form.cjs.entry.js +1 -1
- package/dist/cjs/snk-grid.cjs.entry.js +2 -2
- package/dist/cjs/snk-pesquisa.cjs.entry.js +1 -1
- package/dist/cjs/snk-taskbar.cjs.entry.js +15 -34
- package/dist/cjs/{taskbar-elements-bfa647c7.js → taskbar-elements-9d47b416.js} +4 -2
- package/dist/cjs/teste-pesquisa.cjs.entry.js +1 -1
- package/dist/collection/components/snk-application/snk-application.js +107 -31
- package/dist/collection/components/snk-data-unit/snk-data-unit.js +171 -47
- package/dist/collection/components/snk-form/snk-form.js +5 -5
- package/dist/collection/components/snk-grid/snk-grid.js +3 -3
- package/dist/collection/components/snk-taskbar/elements/taskbar-elements.js +3 -1
- package/dist/collection/components/snk-taskbar/snk-taskbar.js +17 -33
- package/dist/collection/lib/http/data-fetcher/fetchers/dataunit-fetcher.js +30 -10
- package/dist/components/snk-application2.js +111 -15
- package/dist/components/snk-data-unit.js +84 -36
- package/dist/components/snk-taskbar2.js +14 -32
- package/dist/esm/{index-02c04e0f.js → index-0b078db7.js} +5 -34
- package/dist/esm/loader.js +2 -2
- package/dist/esm/sankhyablocks.js +2 -2
- package/dist/esm/snk-application.entry.js +111 -15
- package/dist/esm/snk-data-unit.entry.js +82 -37
- package/dist/esm/snk-form.entry.js +1 -1
- package/dist/esm/snk-grid.entry.js +2 -2
- package/dist/esm/snk-pesquisa.entry.js +1 -1
- package/dist/esm/snk-taskbar.entry.js +13 -32
- package/dist/esm/{taskbar-elements-fe7cbf0e.js → taskbar-elements-3ba30bf4.js} +4 -2
- package/dist/esm/teste-pesquisa.entry.js +1 -1
- package/dist/sankhyablocks/{p-b80352ac.entry.js → p-3cb106f7.entry.js} +3 -3
- package/dist/sankhyablocks/p-3fce3190.entry.js +1 -0
- package/dist/sankhyablocks/{p-37b06977.entry.js → p-560fdf54.entry.js} +1 -1
- package/dist/sankhyablocks/p-574764bf.js +1 -0
- package/dist/sankhyablocks/p-8f7b9a85.entry.js +1 -0
- package/dist/sankhyablocks/{p-c156b1da.entry.js → p-9c225717.entry.js} +1 -1
- package/dist/sankhyablocks/p-a45dba1a.js +2 -0
- package/dist/sankhyablocks/{p-e38386b1.entry.js → p-a670853c.entry.js} +1 -1
- package/dist/sankhyablocks/{p-376004ef.entry.js → p-a8305c35.entry.js} +1 -1
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/dist/types/components/snk-application/snk-application.d.ts +85 -9
- package/dist/types/components/snk-taskbar/elements/taskbar-elements.d.ts +2 -1
- package/dist/types/components/snk-taskbar/snk-taskbar.d.ts +20 -3
- package/dist/types/components.d.ts +223 -2
- package/dist/types/lib/http/data-fetcher/fetchers/dataunit-fetcher.d.ts +2 -0
- package/package.json +1 -1
- package/dist/collection/components/snk-taskbar/component/snk-popup-button.js +0 -7
- package/dist/sankhyablocks/p-09e48ff8.entry.js +0 -1
- package/dist/sankhyablocks/p-64e2471c.js +0 -1
- package/dist/sankhyablocks/p-cc9c348a.entry.js +0 -1
- package/dist/sankhyablocks/p-db215c74.js +0 -2
- package/dist/types/components/snk-taskbar/component/snk-popup-button.d.ts +0 -12
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
const index = require('./index-
|
|
3
|
+
const index = require('./index-532bcc28.js');
|
|
4
4
|
|
|
5
5
|
exports.TaskbarElement = void 0;
|
|
6
6
|
(function (TaskbarElement) {
|
|
@@ -27,7 +27,7 @@ exports.AuthorizationElements = void 0;
|
|
|
27
27
|
AuthorizationElements["INSERT"] = "INSERT";
|
|
28
28
|
AuthorizationElements["CONFIG_GRID"] = "CONFIG_GRID";
|
|
29
29
|
})(exports.AuthorizationElements || (exports.AuthorizationElements = {}));
|
|
30
|
-
const buildElem = (element, className, getTitle, action, isEnabled) => {
|
|
30
|
+
const buildElem = (element, className, getTitle, action, isEnabled, actions) => {
|
|
31
31
|
switch (element) {
|
|
32
32
|
case exports.TaskbarElement.PREVIOUS:
|
|
33
33
|
return iconButton("chevron-left", element, className, getTitle, action, isEnabled);
|
|
@@ -53,6 +53,8 @@ const buildElem = (element, className, getTitle, action, isEnabled) => {
|
|
|
53
53
|
return iconButton("list", element, className, getTitle, action, isEnabled);
|
|
54
54
|
case exports.TaskbarElement.CONFIG_GRID:
|
|
55
55
|
return iconButton("settings-inverted", element, className, getTitle, action, isEnabled);
|
|
56
|
+
case exports.TaskbarElement.MORE_OPTIONS:
|
|
57
|
+
return index.h("ez-actions-button", { size: "small", class: className, enabled: isEnabled(element), onEzAction: (evt) => action(evt.detail.value), actions: actions });
|
|
56
58
|
case exports.TaskbarElement.DIVIDER:
|
|
57
59
|
return index.h("hr", { class: "ez-divider-vertical ez-divider--dark ez-margin-horizontal--medium" });
|
|
58
60
|
}
|
|
@@ -48,6 +48,9 @@ export class SnkApplication {
|
|
|
48
48
|
}
|
|
49
49
|
});
|
|
50
50
|
}
|
|
51
|
+
/**
|
|
52
|
+
* Caso o usuário logado seja o SUP.
|
|
53
|
+
*/
|
|
51
54
|
async isUserSup() {
|
|
52
55
|
return new Promise((resolve, reject) => {
|
|
53
56
|
this.auth.then((authorization) => {
|
|
@@ -57,6 +60,9 @@ export class SnkApplication {
|
|
|
57
60
|
});
|
|
58
61
|
});
|
|
59
62
|
}
|
|
63
|
+
/**
|
|
64
|
+
* Se o usuário logado tem permissão pra determinada ação.
|
|
65
|
+
*/
|
|
60
66
|
async hasAccess(access) {
|
|
61
67
|
return new Promise((resolve, reject) => {
|
|
62
68
|
this.auth.then((authorization) => {
|
|
@@ -66,6 +72,9 @@ export class SnkApplication {
|
|
|
66
72
|
});
|
|
67
73
|
});
|
|
68
74
|
}
|
|
75
|
+
/**
|
|
76
|
+
* Retorna todos os acessos do usuário logado.
|
|
77
|
+
*/
|
|
69
78
|
async getAllAccess() {
|
|
70
79
|
return new Promise((resolve, reject) => {
|
|
71
80
|
this.auth.then((authorization) => {
|
|
@@ -80,34 +89,55 @@ export class SnkApplication {
|
|
|
80
89
|
});
|
|
81
90
|
});
|
|
82
91
|
}
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
92
|
+
/**
|
|
93
|
+
* Retorna o valor de um parâmetro do tipo string.
|
|
94
|
+
*/
|
|
86
95
|
async getStringParam(name) {
|
|
87
96
|
return this.parameters.asString(name, this.resourceID);
|
|
88
97
|
}
|
|
98
|
+
/**
|
|
99
|
+
* Retorna o valor de um parâmetro do tipo Inteiro.
|
|
100
|
+
*/
|
|
89
101
|
async getIntParam(name) {
|
|
90
102
|
return this.parameters.asInteger(name, this.resourceID);
|
|
91
103
|
}
|
|
104
|
+
/**
|
|
105
|
+
* Retorna o valor de um parâmetro do tipo Decimal.
|
|
106
|
+
*/
|
|
92
107
|
async getFloatParam(name) {
|
|
93
108
|
return this.parameters.asFloat(name, this.resourceID);
|
|
94
109
|
}
|
|
110
|
+
/**
|
|
111
|
+
* Retorna o valor de um parâmetro do tipo booleano.
|
|
112
|
+
*/
|
|
95
113
|
async getBooleanParam(name) {
|
|
96
114
|
return this.parameters.asBoolean(name, this.resourceID);
|
|
97
115
|
}
|
|
116
|
+
/**
|
|
117
|
+
* Retorna o valor de um parâmetro do tipo data.
|
|
118
|
+
*/
|
|
98
119
|
async getDateParam(name) {
|
|
99
120
|
return this.parameters.asDate(name, this.resourceID);
|
|
100
121
|
}
|
|
122
|
+
/**
|
|
123
|
+
* Mostra o conteúdo passado em um Popup
|
|
124
|
+
*/
|
|
101
125
|
async showPopUp(content) {
|
|
102
126
|
this._popUp.appendChild(content);
|
|
103
127
|
this._popUp["opened"] = true;
|
|
104
128
|
}
|
|
129
|
+
/**
|
|
130
|
+
* Fecha o popup, liberando o conteúdo.
|
|
131
|
+
*/
|
|
105
132
|
async closePopUp() {
|
|
106
133
|
Array.from(this._popUp.children).forEach(c => {
|
|
107
134
|
this._popUp.removeChild(c);
|
|
108
135
|
});
|
|
109
136
|
this._popUp["opened"] = false;
|
|
110
137
|
}
|
|
138
|
+
/**
|
|
139
|
+
* Verifica se a licença do cliente tem determinado opcional (produto)
|
|
140
|
+
*/
|
|
111
141
|
async temOpcional(opcional) {
|
|
112
142
|
const opts = opcional.split(",");
|
|
113
143
|
return new Promise((resolve, reject) => {
|
|
@@ -131,6 +161,10 @@ export class SnkApplication {
|
|
|
131
161
|
});
|
|
132
162
|
});
|
|
133
163
|
}
|
|
164
|
+
/**
|
|
165
|
+
* Retorna a configuração de um recurso por service broker
|
|
166
|
+
* Veja também o método "loadConfig"
|
|
167
|
+
*/
|
|
134
168
|
async getConfig(key) {
|
|
135
169
|
let payload = {
|
|
136
170
|
"serviceName": "SystemUtilsSP.getConf",
|
|
@@ -148,6 +182,9 @@ export class SnkApplication {
|
|
|
148
182
|
.catch(error => reject(error));
|
|
149
183
|
});
|
|
150
184
|
}
|
|
185
|
+
/**
|
|
186
|
+
* Salva a configuração de determinado recurso.
|
|
187
|
+
*/
|
|
151
188
|
async saveConfig(key, data) {
|
|
152
189
|
let payload = {
|
|
153
190
|
"serviceName": "SystemUtilsSP.saveConf",
|
|
@@ -166,19 +203,31 @@ export class SnkApplication {
|
|
|
166
203
|
.catch(error => reject(error));
|
|
167
204
|
});
|
|
168
205
|
}
|
|
206
|
+
/**
|
|
207
|
+
* Acessa informações de contexto "empurrados" na abertura da tela
|
|
208
|
+
*/
|
|
169
209
|
async getAttributeFromHTMLWrapper(attribName) {
|
|
170
210
|
return Promise.resolve(window[attribName]);
|
|
171
211
|
}
|
|
212
|
+
/**
|
|
213
|
+
* Abre determinada tela, repassando pkObject
|
|
214
|
+
*/
|
|
172
215
|
async openApp(resourceId, pkObject) {
|
|
173
216
|
Workspace.openAppActivity(resourceId, pkObject);
|
|
174
217
|
}
|
|
218
|
+
/**
|
|
219
|
+
* Cria o DataUnit a partir do nome da entidade.
|
|
220
|
+
*/
|
|
175
221
|
async createDataunit(entityName) {
|
|
176
222
|
return new Promise(resolve => {
|
|
177
223
|
const dataUnit = this.dataUnitFetcher.getDataUnit(entityName, this.resourceID);
|
|
178
224
|
dataUnit.loadMetadata().then(() => resolve(dataUnit));
|
|
179
225
|
});
|
|
180
226
|
}
|
|
181
|
-
|
|
227
|
+
/**
|
|
228
|
+
* Cria e armazena o DataUnit em um cache
|
|
229
|
+
*/
|
|
230
|
+
async getDataUnit(entityName, dataUnitName) {
|
|
182
231
|
return new Promise((resolve, reject) => {
|
|
183
232
|
const dataUnit = this._duCache.get(dataUnitName);
|
|
184
233
|
if (dataUnit) {
|
|
@@ -194,30 +243,57 @@ export class SnkApplication {
|
|
|
194
243
|
}
|
|
195
244
|
});
|
|
196
245
|
}
|
|
246
|
+
/**
|
|
247
|
+
* Retorna o resourceID da tela em questão.
|
|
248
|
+
*/
|
|
197
249
|
async getResourceID() {
|
|
198
250
|
return Promise.resolve(this.resourceID);
|
|
199
251
|
}
|
|
252
|
+
/**
|
|
253
|
+
* Mostra o diálogo de alerta de acordo com os parâmetros passados.
|
|
254
|
+
*/
|
|
200
255
|
async alert(title, message, icon, options) {
|
|
201
256
|
return ApplicationUtils.alert(title, message, icon, options);
|
|
202
257
|
}
|
|
258
|
+
/**
|
|
259
|
+
* Mostra o diálogo de erro de acordo com os parâmetros passados.
|
|
260
|
+
*/
|
|
203
261
|
async error(title, message, icon, options) {
|
|
204
262
|
return ApplicationUtils.error(title, message, icon, options);
|
|
205
263
|
}
|
|
264
|
+
/**
|
|
265
|
+
* Exibe um diálogo de confirmação
|
|
266
|
+
*/
|
|
206
267
|
async confirm(title, message, icon, critical, options) {
|
|
207
268
|
return ApplicationUtils.confirm(title, message, icon, critical, options);
|
|
208
269
|
}
|
|
270
|
+
/**
|
|
271
|
+
* Mostra uma informação efêmera (de segundo plano).
|
|
272
|
+
*/
|
|
209
273
|
async info(message, options) {
|
|
210
274
|
return ApplicationUtils.info(message, options);
|
|
211
275
|
}
|
|
276
|
+
/**
|
|
277
|
+
* Busca a configuração de formulário.
|
|
278
|
+
*/
|
|
212
279
|
async loadFormConfig(name) {
|
|
213
280
|
return this.formConfigFetcher.loadFormConfig(name, this.resourceID);
|
|
214
281
|
}
|
|
282
|
+
/**
|
|
283
|
+
* Busca a configuração de grade.
|
|
284
|
+
*/
|
|
215
285
|
async loadGridConfig(name) {
|
|
216
286
|
return this.gridConfigFetcher.getConfig(name, this.resourceID);
|
|
217
287
|
}
|
|
288
|
+
/**
|
|
289
|
+
* Salva a configuração de grade.
|
|
290
|
+
*/
|
|
218
291
|
async saveGridConfig(config) {
|
|
219
292
|
return this.gridConfigFetcher.saveConfig(config, this.resourceID);
|
|
220
293
|
}
|
|
294
|
+
async getAuthList(_auth) {
|
|
295
|
+
return await (new MGEAuthorization()).parseFromJSON(_auth);
|
|
296
|
+
}
|
|
221
297
|
get urlParams() {
|
|
222
298
|
if (!this._urlParams) {
|
|
223
299
|
this._urlParams = UrlUtils.getQueryParams(location.search);
|
|
@@ -378,7 +454,7 @@ export class SnkApplication {
|
|
|
378
454
|
"composed": true,
|
|
379
455
|
"docs": {
|
|
380
456
|
"tags": [],
|
|
381
|
-
"text": "Evento"
|
|
457
|
+
"text": "Evento disparado ao iniciar a carga do componente"
|
|
382
458
|
},
|
|
383
459
|
"complexType": {
|
|
384
460
|
"original": "boolean",
|
|
@@ -399,7 +475,7 @@ export class SnkApplication {
|
|
|
399
475
|
"return": "Promise<boolean>"
|
|
400
476
|
},
|
|
401
477
|
"docs": {
|
|
402
|
-
"text": "",
|
|
478
|
+
"text": "Caso o usu\u00E1rio logado seja o SUP.",
|
|
403
479
|
"tags": []
|
|
404
480
|
}
|
|
405
481
|
},
|
|
@@ -422,7 +498,7 @@ export class SnkApplication {
|
|
|
422
498
|
"return": "Promise<boolean>"
|
|
423
499
|
},
|
|
424
500
|
"docs": {
|
|
425
|
-
"text": "",
|
|
501
|
+
"text": "Se o usu\u00E1rio logado tem permiss\u00E3o pra determinada a\u00E7\u00E3o.",
|
|
426
502
|
"tags": []
|
|
427
503
|
}
|
|
428
504
|
},
|
|
@@ -438,7 +514,7 @@ export class SnkApplication {
|
|
|
438
514
|
"return": "Promise<any>"
|
|
439
515
|
},
|
|
440
516
|
"docs": {
|
|
441
|
-
"text": "",
|
|
517
|
+
"text": "Retorna todos os acessos do usu\u00E1rio logado.",
|
|
442
518
|
"tags": []
|
|
443
519
|
}
|
|
444
520
|
},
|
|
@@ -457,7 +533,7 @@ export class SnkApplication {
|
|
|
457
533
|
"return": "Promise<string>"
|
|
458
534
|
},
|
|
459
535
|
"docs": {
|
|
460
|
-
"text": "",
|
|
536
|
+
"text": "Retorna o valor de um par\u00E2metro do tipo string.",
|
|
461
537
|
"tags": []
|
|
462
538
|
}
|
|
463
539
|
},
|
|
@@ -476,7 +552,7 @@ export class SnkApplication {
|
|
|
476
552
|
"return": "Promise<number>"
|
|
477
553
|
},
|
|
478
554
|
"docs": {
|
|
479
|
-
"text": "",
|
|
555
|
+
"text": "Retorna o valor de um par\u00E2metro do tipo Inteiro.",
|
|
480
556
|
"tags": []
|
|
481
557
|
}
|
|
482
558
|
},
|
|
@@ -495,7 +571,7 @@ export class SnkApplication {
|
|
|
495
571
|
"return": "Promise<number>"
|
|
496
572
|
},
|
|
497
573
|
"docs": {
|
|
498
|
-
"text": "",
|
|
574
|
+
"text": "Retorna o valor de um par\u00E2metro do tipo Decimal.",
|
|
499
575
|
"tags": []
|
|
500
576
|
}
|
|
501
577
|
},
|
|
@@ -514,7 +590,7 @@ export class SnkApplication {
|
|
|
514
590
|
"return": "Promise<boolean>"
|
|
515
591
|
},
|
|
516
592
|
"docs": {
|
|
517
|
-
"text": "",
|
|
593
|
+
"text": "Retorna o valor de um par\u00E2metro do tipo booleano.",
|
|
518
594
|
"tags": []
|
|
519
595
|
}
|
|
520
596
|
},
|
|
@@ -536,7 +612,7 @@ export class SnkApplication {
|
|
|
536
612
|
"return": "Promise<Date>"
|
|
537
613
|
},
|
|
538
614
|
"docs": {
|
|
539
|
-
"text": "",
|
|
615
|
+
"text": "Retorna o valor de um par\u00E2metro do tipo data.",
|
|
540
616
|
"tags": []
|
|
541
617
|
}
|
|
542
618
|
},
|
|
@@ -558,7 +634,7 @@ export class SnkApplication {
|
|
|
558
634
|
"return": "Promise<void>"
|
|
559
635
|
},
|
|
560
636
|
"docs": {
|
|
561
|
-
"text": "",
|
|
637
|
+
"text": "Mostra o conte\u00FAdo passado em um Popup",
|
|
562
638
|
"tags": []
|
|
563
639
|
}
|
|
564
640
|
},
|
|
@@ -574,7 +650,7 @@ export class SnkApplication {
|
|
|
574
650
|
"return": "Promise<void>"
|
|
575
651
|
},
|
|
576
652
|
"docs": {
|
|
577
|
-
"text": "",
|
|
653
|
+
"text": "Fecha o popup, liberando o conte\u00FAdo.",
|
|
578
654
|
"tags": []
|
|
579
655
|
}
|
|
580
656
|
},
|
|
@@ -593,7 +669,7 @@ export class SnkApplication {
|
|
|
593
669
|
"return": "Promise<boolean>"
|
|
594
670
|
},
|
|
595
671
|
"docs": {
|
|
596
|
-
"text": "",
|
|
672
|
+
"text": "Verifica se a licen\u00E7a do cliente tem determinado opcional (produto)",
|
|
597
673
|
"tags": []
|
|
598
674
|
}
|
|
599
675
|
},
|
|
@@ -612,7 +688,7 @@ export class SnkApplication {
|
|
|
612
688
|
"return": "Promise<any>"
|
|
613
689
|
},
|
|
614
690
|
"docs": {
|
|
615
|
-
"text": "",
|
|
691
|
+
"text": "Retorna a configura\u00E7\u00E3o de um recurso por service broker\nVeja tamb\u00E9m o m\u00E9todo \"loadConfig\"",
|
|
616
692
|
"tags": []
|
|
617
693
|
}
|
|
618
694
|
},
|
|
@@ -637,7 +713,7 @@ export class SnkApplication {
|
|
|
637
713
|
"return": "Promise<any>"
|
|
638
714
|
},
|
|
639
715
|
"docs": {
|
|
640
|
-
"text": "",
|
|
716
|
+
"text": "Salva a configura\u00E7\u00E3o de determinado recurso.",
|
|
641
717
|
"tags": []
|
|
642
718
|
}
|
|
643
719
|
},
|
|
@@ -656,7 +732,7 @@ export class SnkApplication {
|
|
|
656
732
|
"return": "Promise<string>"
|
|
657
733
|
},
|
|
658
734
|
"docs": {
|
|
659
|
-
"text": "",
|
|
735
|
+
"text": "Acessa informa\u00E7\u00F5es de contexto \"empurrados\" na abertura da tela",
|
|
660
736
|
"tags": []
|
|
661
737
|
}
|
|
662
738
|
},
|
|
@@ -681,7 +757,7 @@ export class SnkApplication {
|
|
|
681
757
|
"return": "Promise<void>"
|
|
682
758
|
},
|
|
683
759
|
"docs": {
|
|
684
|
-
"text": "",
|
|
760
|
+
"text": "Abre determinada tela, repassando pkObject",
|
|
685
761
|
"tags": []
|
|
686
762
|
}
|
|
687
763
|
},
|
|
@@ -704,11 +780,11 @@ export class SnkApplication {
|
|
|
704
780
|
"return": "Promise<DataUnit>"
|
|
705
781
|
},
|
|
706
782
|
"docs": {
|
|
707
|
-
"text": "",
|
|
783
|
+
"text": "Cria o DataUnit a partir do nome da entidade.",
|
|
708
784
|
"tags": []
|
|
709
785
|
}
|
|
710
786
|
},
|
|
711
|
-
"
|
|
787
|
+
"getDataUnit": {
|
|
712
788
|
"complexType": {
|
|
713
789
|
"signature": "(entityName: string, dataUnitName: string) => Promise<DataUnit>",
|
|
714
790
|
"parameters": [{
|
|
@@ -730,7 +806,7 @@ export class SnkApplication {
|
|
|
730
806
|
"return": "Promise<DataUnit>"
|
|
731
807
|
},
|
|
732
808
|
"docs": {
|
|
733
|
-
"text": "",
|
|
809
|
+
"text": "Cria e armazena o DataUnit em um cache",
|
|
734
810
|
"tags": []
|
|
735
811
|
}
|
|
736
812
|
},
|
|
@@ -746,7 +822,7 @@ export class SnkApplication {
|
|
|
746
822
|
"return": "Promise<string>"
|
|
747
823
|
},
|
|
748
824
|
"docs": {
|
|
749
|
-
"text": "",
|
|
825
|
+
"text": "Retorna o resourceID da tela em quest\u00E3o.",
|
|
750
826
|
"tags": []
|
|
751
827
|
}
|
|
752
828
|
},
|
|
@@ -778,7 +854,7 @@ export class SnkApplication {
|
|
|
778
854
|
"return": "Promise<boolean>"
|
|
779
855
|
},
|
|
780
856
|
"docs": {
|
|
781
|
-
"text": "",
|
|
857
|
+
"text": "Mostra o di\u00E1logo de alerta de acordo com os par\u00E2metros passados.",
|
|
782
858
|
"tags": []
|
|
783
859
|
}
|
|
784
860
|
},
|
|
@@ -810,7 +886,7 @@ export class SnkApplication {
|
|
|
810
886
|
"return": "Promise<boolean>"
|
|
811
887
|
},
|
|
812
888
|
"docs": {
|
|
813
|
-
"text": "",
|
|
889
|
+
"text": "Mostra o di\u00E1logo de erro de acordo com os par\u00E2metros passados.",
|
|
814
890
|
"tags": []
|
|
815
891
|
}
|
|
816
892
|
},
|
|
@@ -845,7 +921,7 @@ export class SnkApplication {
|
|
|
845
921
|
"return": "Promise<boolean>"
|
|
846
922
|
},
|
|
847
923
|
"docs": {
|
|
848
|
-
"text": "",
|
|
924
|
+
"text": "Exibe um di\u00E1logo de confirma\u00E7\u00E3o",
|
|
849
925
|
"tags": []
|
|
850
926
|
}
|
|
851
927
|
},
|
|
@@ -871,7 +947,7 @@ export class SnkApplication {
|
|
|
871
947
|
"return": "Promise<void>"
|
|
872
948
|
},
|
|
873
949
|
"docs": {
|
|
874
|
-
"text": "",
|
|
950
|
+
"text": "Mostra uma informa\u00E7\u00E3o ef\u00EAmera (de segundo plano).",
|
|
875
951
|
"tags": []
|
|
876
952
|
}
|
|
877
953
|
},
|
|
@@ -897,7 +973,7 @@ export class SnkApplication {
|
|
|
897
973
|
"return": "Promise<FieldConfig[]>"
|
|
898
974
|
},
|
|
899
975
|
"docs": {
|
|
900
|
-
"text": "",
|
|
976
|
+
"text": "Busca a configura\u00E7\u00E3o de formul\u00E1rio.",
|
|
901
977
|
"tags": []
|
|
902
978
|
}
|
|
903
979
|
},
|
|
@@ -920,7 +996,7 @@ export class SnkApplication {
|
|
|
920
996
|
"return": "Promise<EzGridConfig>"
|
|
921
997
|
},
|
|
922
998
|
"docs": {
|
|
923
|
-
"text": "",
|
|
999
|
+
"text": "Busca a configura\u00E7\u00E3o de grade.",
|
|
924
1000
|
"tags": []
|
|
925
1001
|
}
|
|
926
1002
|
},
|
|
@@ -943,7 +1019,7 @@ export class SnkApplication {
|
|
|
943
1019
|
"return": "Promise<boolean>"
|
|
944
1020
|
},
|
|
945
1021
|
"docs": {
|
|
946
|
-
"text": "",
|
|
1022
|
+
"text": "Salva a configura\u00E7\u00E3o de grade.",
|
|
947
1023
|
"tags": []
|
|
948
1024
|
}
|
|
949
1025
|
},
|