@sankhyalabs/sankhyablocks-docs 2.0.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.
@@ -0,0 +1,46 @@
1
+ # snk-taskbar
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ----------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------- | --------------------------- | ----------- |
12
+ | `actionsList` | -- | Lista de ações que devem ser usadas no botão "Mais opções" | `Action[]` | `undefined` |
13
+ | `buttons` | `buttons` | Lista separada por virgula, contendo todos os elementos a serem criados | `string` | `undefined` |
14
+ | `configName` | `config-name` | Nome usado para guardar/recuperar as configurações do formulário | `string` | `undefined` |
15
+ | `customButtons` | -- | Mapa com definição de botões personalizados. A chave do mapa deve ser passada na lista "buttons" no lugar onde o botão irá aparecer. | `Map<string, CustomButton>` | `undefined` |
16
+ | `dataUnit` | -- | Instância do DataUnit | `DataUnit` | `undefined` |
17
+ | `disabledButtons` | -- | Array contendo todos os botões a serem desabilitados | `string[]` | `undefined` |
18
+ | `primaryButton` | `primary-button` | Qual botão deve ter aparência primária | `string` | `undefined` |
19
+
20
+
21
+ ## Events
22
+
23
+ | Event | Description | Type |
24
+ | -------------- | ------------------------------------------------------------------------------- | --------------------- |
25
+ | `actionChange` | Emitido sempre que houver alteração em algum elemento aberto pelo botão de ação | `CustomEvent<any>` |
26
+ | `actionClick` | Emitido sempre que houver click de botão ou ação | `CustomEvent<string>` |
27
+
28
+
29
+ ## Dependencies
30
+
31
+ ### Used by
32
+
33
+ - [snk-form](../snk-form)
34
+ - [snk-grid](../snk-grid)
35
+
36
+ ### Graph
37
+ ```mermaid
38
+ graph TD;
39
+ snk-form --> snk-taskbar
40
+ snk-grid --> snk-taskbar
41
+ style snk-taskbar fill:#f9f,stroke:#333,stroke-width:4px
42
+ ```
43
+
44
+ ----------------------------------------------
45
+
46
+
@@ -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,15 @@
1
+ {
2
+ "name": "@sankhyalabs/sankhyablocks-docs",
3
+ "version": "2.0.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
+ }
15
+