@sankhyalabs/sankhyablocks-docs 0.0.0-bugfix-dev-KB-11997.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.
- package/components/snk-actions-button/readme.md +33 -0
- package/components/snk-actions-button/subcomponents/readme.md +33 -0
- package/components/snk-application/readme.md +492 -0
- package/components/snk-attach/readme.md +55 -0
- package/components/snk-configurator/readme.md +69 -0
- package/components/snk-crud/readme.md +149 -0
- package/components/snk-crud/subcomponents/readme.md +122 -0
- package/components/snk-crud/subcomponents/snk-detail-view/readme.md +129 -0
- package/components/snk-data-exporter/exporter-email-sender/readme.md +53 -0
- package/components/snk-data-exporter/readme.md +46 -0
- package/components/snk-data-unit/readme.md +79 -0
- package/components/snk-entity-list/readme.md +39 -0
- package/components/snk-filter-bar/filter-item/editors/readme.md +25 -0
- package/components/snk-filter-bar/filter-item/editors/snk-personalized-filter-editor/readme.md +43 -0
- package/components/snk-filter-bar/filter-item/readme.md +67 -0
- package/components/snk-filter-bar/filter-list/readme.md +43 -0
- package/components/snk-filter-bar/filter-modal/readme.md +36 -0
- package/components/snk-filter-bar/filter-modal/subcomponents/readme.md +41 -0
- package/components/snk-filter-bar/readme.md +64 -0
- package/components/snk-filter-field-search/readme.md +65 -0
- package/components/snk-form/readme.md +68 -0
- package/components/snk-form/subcomponents/snk-config-options/readme.md +40 -0
- package/components/snk-form/subcomponents/snk-field-config/readme.md +41 -0
- package/components/snk-form/subcomponents/snk-form-config/readme.md +51 -0
- package/components/snk-form/subcomponents/snk-tab-config/readme.md +46 -0
- package/components/snk-grid/readme.md +128 -0
- package/components/snk-grid/subcomponents/snk-grid-config/readme.md +48 -0
- package/components/snk-grid/subcomponents/snk-select-box/readme.md +37 -0
- package/components/snk-personalized-filter/readme.md +71 -0
- package/components/snk-personalized-filter/subcomponents/snk-expression-group/readme.md +65 -0
- package/components/snk-personalized-filter/subcomponents/snk-expression-item/readme.md +48 -0
- package/components/snk-personalized-filter/subcomponents/snk-filter-advanced-mode/readme.md +38 -0
- package/components/snk-personalized-filter/subcomponents/snk-filter-assistent-mode/readme.md +50 -0
- package/components/snk-personalized-filter/subcomponents/snk-filter-param-config/readme.md +53 -0
- package/components/snk-pesquisa/readme.md +32 -0
- package/components/snk-print-selector/readme.md +23 -0
- package/components/snk-simple-bar/readme.md +42 -0
- package/components/snk-simple-crud/readme.md +106 -0
- package/components/snk-taskbar/readme.md +17 -0
- package/components/teste-pesquisa/readme.md +24 -0
- package/package.json +14 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# snk-simple-crud
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
<!-- Auto Generated Below -->
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Properties
|
|
9
|
+
|
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
|
11
|
+
| ------------------- | -------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------- | ------------------------- |
|
|
12
|
+
| `dataState` | -- | | `DataState` | `undefined` |
|
|
13
|
+
| `dataUnit` | -- | | `DataUnit` | `undefined` |
|
|
14
|
+
| `formConfig` | -- | | `IFormConfig` | `undefined` |
|
|
15
|
+
| `gridConfig` | -- | | `IGridConfig` | `undefined` |
|
|
16
|
+
| `messagesBuilder` | -- | Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção. | `SnkMessageBuilder` | `undefined` |
|
|
17
|
+
| `mode` | `mode` | | `SIMPLE_CRUD_MODE.IN_MEMORY \| SIMPLE_CRUD_MODE.SERVER` | `SIMPLE_CRUD_MODE.SERVER` |
|
|
18
|
+
| `multipleSelection` | `multiple-selection` | Determina se pode haver mais de uma linha selecionada na grade. | `boolean` | `undefined` |
|
|
19
|
+
| `taskbarManager` | -- | Gerenciador das barras de tarefas. É possível determinar botões específicos ou mesmo gerenciar o estado dos botões. | `TaskbarManager` | `undefined` |
|
|
20
|
+
| `useCancelConfirm` | `use-cancel-confirm` | | `boolean` | `true` |
|
|
21
|
+
| `useEnterLikeTab` | `use-enter-like-tab` | Quando verdadeiro, o ENTER fará a navegação como se fosse a tecla TAB na grade. | `boolean` | `false` |
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## Events
|
|
25
|
+
|
|
26
|
+
| Event | Description | Type |
|
|
27
|
+
| ----------------- | ------------------------------------------------------------------------------- | ---------------------------- |
|
|
28
|
+
| `actionClick` | Emitido sempre que houver click de botão ou ação. | `CustomEvent<string>` |
|
|
29
|
+
| `dataStateChange` | Emitido quando há qualquer mudança de estado no DataUnit. | `CustomEvent<DataState>` |
|
|
30
|
+
| `dataUnitReady` | Emitido quando o DataUnit está pronto. | `CustomEvent<DataUnit>` |
|
|
31
|
+
| `formItemsReady` | Responsável por notificar quando ocorrer a renderização de itens do formulário. | `CustomEvent<HTMLElement[]>` |
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
## Methods
|
|
35
|
+
|
|
36
|
+
### `getRecords() => Promise<Array<Record>>`
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
#### Returns
|
|
41
|
+
|
|
42
|
+
Type: `Promise<Record[]>`
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### `goToView(view: VIEW_MODE) => Promise<void>`
|
|
47
|
+
|
|
48
|
+
Usado para alternar a visão entre GRID e FORM externamente.
|
|
49
|
+
|
|
50
|
+
#### Returns
|
|
51
|
+
|
|
52
|
+
Type: `Promise<void>`
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
### `setMetadata(metadata: UnitMetadata) => Promise<void>`
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
#### Returns
|
|
61
|
+
|
|
62
|
+
Type: `Promise<void>`
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
### `setRecords(records: Array<Record>) => Promise<void>`
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
#### Returns
|
|
71
|
+
|
|
72
|
+
Type: `Promise<void>`
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
## Dependencies
|
|
78
|
+
|
|
79
|
+
### Used by
|
|
80
|
+
|
|
81
|
+
- [snk-attach](../snk-attach)
|
|
82
|
+
|
|
83
|
+
### Depends on
|
|
84
|
+
|
|
85
|
+
- [snk-data-unit](../snk-data-unit)
|
|
86
|
+
- [snk-taskbar](../snk-taskbar)
|
|
87
|
+
- [snk-data-exporter](../snk-data-exporter)
|
|
88
|
+
- [snk-actions-button](../snk-actions-button)
|
|
89
|
+
|
|
90
|
+
### Graph
|
|
91
|
+
```mermaid
|
|
92
|
+
graph TD;
|
|
93
|
+
snk-simple-crud --> snk-data-unit
|
|
94
|
+
snk-simple-crud --> snk-taskbar
|
|
95
|
+
snk-simple-crud --> snk-data-exporter
|
|
96
|
+
snk-simple-crud --> snk-actions-button
|
|
97
|
+
snk-taskbar --> snk-data-exporter
|
|
98
|
+
snk-taskbar --> snk-actions-button
|
|
99
|
+
snk-data-exporter --> snk-exporter-email-sender
|
|
100
|
+
snk-attach --> snk-simple-crud
|
|
101
|
+
style snk-simple-crud fill:#f9f,stroke:#333,stroke-width:4px
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
----------------------------------------------
|
|
105
|
+
|
|
106
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# snk-taskbar-custom-elements
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
<!-- Auto Generated Below -->
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Properties
|
|
9
|
+
|
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
|
11
|
+
| -------- | --------- | ------------------------------------------------------------------------ | -------- | --------------------------- |
|
|
12
|
+
| `slot` | `slot` | Nome do slot da Taskbar onde os elementos customizados deverão aparecer. | `string` | `'TASKBAR_CUSTOM_ELEMENTS'` |
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
----------------------------------------------
|
|
16
|
+
|
|
17
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# teste-pesquisa
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
<!-- Auto Generated Below -->
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Dependencies
|
|
9
|
+
|
|
10
|
+
### Depends on
|
|
11
|
+
|
|
12
|
+
- [snk-application](../snk-application)
|
|
13
|
+
|
|
14
|
+
### Graph
|
|
15
|
+
```mermaid
|
|
16
|
+
graph TD;
|
|
17
|
+
teste-pesquisa --> snk-application
|
|
18
|
+
snk-application --> snk-pesquisa
|
|
19
|
+
style teste-pesquisa fill:#f9f,stroke:#333,stroke-width:4px
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
----------------------------------------------
|
|
23
|
+
|
|
24
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sankhyalabs/sankhyablocks-docs",
|
|
3
|
+
"version": "0.0.0-bugfix-dev-KB-11997.0",
|
|
4
|
+
"description": "Documentação da biblioteca de componentes Sankhya.",
|
|
5
|
+
"main": "",
|
|
6
|
+
"files": [
|
|
7
|
+
"/**/*.md"
|
|
8
|
+
],
|
|
9
|
+
"scripts": {},
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"devDependencies": {}
|
|
14
|
+
}
|