@sankhyalabs/sankhyablocks-docs 2.4.7 → 2.4.9
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.
@@ -7,14 +7,15 @@
|
|
7
7
|
|
8
8
|
## Properties
|
9
9
|
|
10
|
-
| Property
|
11
|
-
|
|
12
|
-
| `actionsList`
|
13
|
-
| `configName`
|
14
|
-
| `
|
15
|
-
| `
|
16
|
-
| `
|
17
|
-
| `
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
11
|
+
| -------------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------ | ----------- |
|
12
|
+
| `actionsList` | -- | Ações a serem colocadas no botão "Mais opções" do componente snk-taskbar. | `Action[]` | `undefined` |
|
13
|
+
| `configName` | `config-name` | Usado para salvar as configurações dos blocos de construção. | `string` | `undefined` |
|
14
|
+
| `enableDataExporter` | `enable-data-exporter` | Determina se haverá exportação de dados | `boolean` | `false` |
|
15
|
+
| `multipleSelection` | `multiple-selection` | Determina se pode haver mais de uma linha selecionada na grade. | `boolean` | `true` |
|
16
|
+
| `recordsValidator` | -- | Validador responsável por checar a integridade das informações do registro. | `IRecordValidator` | `undefined` |
|
17
|
+
| `statusResolver` | -- | Configuração do valor da coluna de status. Exemplo: { "RECDESP": { "-1" : "#BD0025", "1" : "#157A00" } } | `IStatusResolver` | `undefined` |
|
18
|
+
| `taskbarManager` | -- | Gerenciador das barras de tarefas. É possível determinar botões específicos ou mesmo gerenciar o estado dos botões. | `TaskbarManager` | `undefined` |
|
18
19
|
|
19
20
|
|
20
21
|
## Events
|
@@ -53,6 +54,7 @@ graph TD;
|
|
53
54
|
snk-crud --> snk-configurator
|
54
55
|
snk-grid --> snk-filter-bar
|
55
56
|
snk-grid --> snk-taskbar
|
57
|
+
snk-grid --> snk-exporter-email-sender
|
56
58
|
snk-grid --> snk-grid-config
|
57
59
|
snk-filter-bar --> snk-filter-item
|
58
60
|
snk-filter-bar --> snk-filter-modal
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# snk-exporter-email-sender
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
<!-- Auto Generated Below -->
|
6
|
+
|
7
|
+
|
8
|
+
## Properties
|
9
|
+
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
11
|
+
| ------------ | --------- | ----------- | --------------------------------------- | ----------- |
|
12
|
+
| `getMessage` | -- | | `(key: string, params?: any) => string` | `undefined` |
|
13
|
+
|
14
|
+
|
15
|
+
## Methods
|
16
|
+
|
17
|
+
### `open(config: ExportConfig) => Promise<ExportResult>`
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
#### Returns
|
22
|
+
|
23
|
+
Type: `Promise<ExportResult>`
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
## Dependencies
|
29
|
+
|
30
|
+
### Used by
|
31
|
+
|
32
|
+
- [snk-grid](../../snk-grid)
|
33
|
+
|
34
|
+
### Graph
|
35
|
+
```mermaid
|
36
|
+
graph TD;
|
37
|
+
snk-grid --> snk-exporter-email-sender
|
38
|
+
style snk-exporter-email-sender fill:#f9f,stroke:#333,stroke-width:4px
|
39
|
+
```
|
40
|
+
|
41
|
+
----------------------------------------------
|
42
|
+
|
43
|
+
|
@@ -7,13 +7,14 @@
|
|
7
7
|
|
8
8
|
## Properties
|
9
9
|
|
10
|
-
| Property
|
11
|
-
|
|
12
|
-
| `actionsList`
|
13
|
-
| `configName`
|
14
|
-
| `
|
15
|
-
| `
|
16
|
-
| `
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
11
|
+
| -------------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------- | ----------------- | ----------- |
|
12
|
+
| `actionsList` | -- | Lista de ações que devem ser usadas no botão "Mais opções" do componente snk-taskbar. | `Action[]` | `undefined` |
|
13
|
+
| `configName` | `config-name` | Nome usado para salvar/recuperar a configuração. | `string` | `undefined` |
|
14
|
+
| `enableDataExporter` | `enable-data-exporter` | Determina se haverá exportação de dados | `boolean` | `false` |
|
15
|
+
| `multipleSelection` | `multiple-selection` | Determina se pode haver mais de uma linha selecionada. | `boolean` | `undefined` |
|
16
|
+
| `statusResolver` | -- | Configuração do valor da coluna de status. Exemplo: '{ "RECDESP": { "-1" : "#BD0025", "1" : "#157A00" } }' | `IStatusResolver` | `undefined` |
|
17
|
+
| `taskbarManager` | -- | Gerenciador das barras de tarefas. É possível determinar botões específicos ou mesmo gerenciar o estado dos botões. | `TaskbarManager` | `undefined` |
|
17
18
|
|
18
19
|
|
19
20
|
## Events
|
@@ -67,6 +68,7 @@ Type: `Promise<void>`
|
|
67
68
|
|
68
69
|
- [snk-filter-bar](../snk-filter-bar)
|
69
70
|
- [snk-taskbar](../snk-taskbar)
|
71
|
+
- [snk-exporter-email-sender](../snk-data-exporter/exporter-email-sender)
|
70
72
|
- [snk-grid-config](./subcomponents/snk-grid-config)
|
71
73
|
|
72
74
|
### Graph
|
@@ -74,6 +76,7 @@ Type: `Promise<void>`
|
|
74
76
|
graph TD;
|
75
77
|
snk-grid --> snk-filter-bar
|
76
78
|
snk-grid --> snk-taskbar
|
79
|
+
snk-grid --> snk-exporter-email-sender
|
77
80
|
snk-grid --> snk-grid-config
|
78
81
|
snk-filter-bar --> snk-filter-item
|
79
82
|
snk-filter-bar --> snk-filter-modal
|
@@ -9,6 +9,7 @@
|
|
9
9
|
|
10
10
|
| Property | Attribute | Description | Type | Default |
|
11
11
|
| --------------- | ---------------- | ------------------------------------------- | ---------------- | ----------- |
|
12
|
+
| `application` | -- | Referência para o SnkApplication | `SnkApplication` | `undefined` |
|
12
13
|
| `columns` | -- | Colunas da grade. | `EzGridColumn[]` | `undefined` |
|
13
14
|
| `config` | -- | Configurações da grade. | `IGridConfig` | `undefined` |
|
14
15
|
| `selectedIndex` | `selected-index` | Aba selecionada das configurações da grade. | `number` | `0` |
|