@sankhyalabs/sankhyablocks-docs 6.1.1 → 6.2.0
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.
@@ -158,6 +158,16 @@ Type: `Promise<string>`
|
|
158
158
|
|
159
159
|
|
160
160
|
|
161
|
+
### `getApplicationPath() => Promise<string>`
|
162
|
+
|
163
|
+
Retorna o path relativo da aplicação.
|
164
|
+
|
165
|
+
#### Returns
|
166
|
+
|
167
|
+
Type: `Promise<string>`
|
168
|
+
|
169
|
+
|
170
|
+
|
161
171
|
### `getAttributeFromHTMLWrapper(attribName: string) => Promise<string>`
|
162
172
|
|
163
173
|
Acessa informações de contexto "empurrados" na abertura da tela.
|
@@ -278,6 +288,16 @@ Type: `Promise<boolean>`
|
|
278
288
|
|
279
289
|
|
280
290
|
|
291
|
+
### `importScript(relativePath: string | Array<string>) => Promise<void>`
|
292
|
+
|
293
|
+
Realiza o import de um JavaScript que está disponivel dentro da pasta /public da aplicação.
|
294
|
+
|
295
|
+
#### Returns
|
296
|
+
|
297
|
+
Type: `Promise<void>`
|
298
|
+
|
299
|
+
|
300
|
+
|
281
301
|
### `info(message: string, options?: MessageOptions) => Promise<void>`
|
282
302
|
|
283
303
|
Exibe uma informação efêmera (de segundo plano).
|
@@ -32,10 +32,11 @@ Type: `Promise<void>`
|
|
32
32
|
|
33
33
|
|
34
34
|
|
35
|
-
### `show() => Promise<void>`
|
35
|
+
### `show(element: HTMLElement, options?: IEzPopoverAnchorOptions) => Promise<void>`
|
36
36
|
|
37
|
-
|
38
|
-
|
37
|
+
/**
|
38
|
+
Realiza a abertura do componente abaixo do elemento HTML informado
|
39
|
+
e faz a primeira carga de dados.
|
39
40
|
|
40
41
|
#### Returns
|
41
42
|
|