@sankhyalabs/sankhyablocks-docs 10.1.0-dev.6 → 10.1.0-dev.60
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 +13 -0
- package/components/snk-application/readme.md +8 -8
- package/components/snk-attach/readme.md +32 -5
- package/components/snk-configurator/readme.md +4 -0
- package/components/snk-crud/readme.md +22 -15
- package/components/snk-crud/subcomponents/readme.md +3 -3
- package/components/snk-crud/subcomponents/snk-detail-view/readme.md +2 -1
- package/components/snk-custom-slot-guide/readme.md +24 -0
- package/components/snk-data-exporter/readme.md +11 -4
- package/components/snk-data-unit/readme.md +2 -0
- package/components/snk-dynaform/readme.md +285 -0
- package/components/snk-dynaform/subcomponents/snk-dynaform-detail-view/readme.md +154 -0
- package/components/snk-dynaform/subcomponents/snk-dynaform-form-view/readme.md +98 -0
- package/components/snk-dynaform/subcomponents/snk-dynaform-guides-view/readme.md +206 -0
- package/components/snk-dynaform-form-config/readme.md +57 -0
- package/components/snk-dynaform-form-config/snk-dynaform-config-header/readme.md +47 -0
- package/components/snk-dynaform-form-config/snk-dynaform-config-header/snk-dynaform-configs-button/readme.md +40 -0
- package/components/snk-dynaform-form-config/snk-dynaform-field-item/readme.md +48 -0
- package/components/snk-dynaform-form-config/snk-dynaform-field-item/snk-dynaform-field-config/readme.md +53 -0
- package/components/snk-dynaform-form-config/snk-dynaform-fields-layout/readme.md +65 -0
- package/components/snk-dynaform-form-config/snk-dynaform-fields-selector/readme.md +45 -0
- package/components/snk-dynaform-form-config/snk-dynaform-guides-configurator/readme.md +43 -0
- package/components/snk-filter-bar/filter-item/readme.md +1 -0
- package/components/snk-filter-bar/filter-modal/readme.md +15 -15
- package/components/snk-filter-bar/readme.md +8 -0
- package/components/snk-grid/readme.md +78 -40
- package/components/snk-grid-config/readme.md +9 -7
- package/components/snk-image-input/readme.md +58 -0
- package/components/snk-pesquisa/readme.md +1 -1
- package/components/snk-simple-bar/readme.md +0 -2
- package/components/snk-simple-crud/readme.md +34 -32
- package/components/snk-taskbar/elements/taskbar-actions-button/readme.md +12 -5
- package/components/snk-taskbar/elements/taskbar-split-button/readme.md +17 -10
- package/components/snk-taskbar/readme.md +11 -2
- package/components/snk-taskbar/subcomponents/readme.md +23 -0
- package/package.json +1 -1
|
@@ -7,16 +7,17 @@
|
|
|
7
7
|
|
|
8
8
|
## Properties
|
|
9
9
|
|
|
10
|
-
| Property | Attribute | Description | Type
|
|
11
|
-
| --------------- | ----------------- | -------------------------------------------------------------------------- |
|
|
12
|
-
| `action` | -- | Função de callback acionada ao clicar no botão principal. | `(name: string) => void`
|
|
13
|
-
| `actions` | -- | Define a lista de ações disponíveis no dropdown do botão. | `Action[]`
|
|
14
|
-
| `className` | `class-name` | Classe CSS personalizada para estilizar o botão. | `string`
|
|
15
|
-
| `dataElementId` | `data-element-id` | Identificador de elemento para fins de rastreamento e automação de testes. | `string`
|
|
16
|
-
| `enabled` | `enabled` | Se false o usuário não pode interagir com o componente. | `boolean`
|
|
17
|
-
| `iconName` | `icon-name` | Nome do ícone a ser exibido no botão. | `string`
|
|
18
|
-
| `name` | `name` | Nome identificador da ação do botão. | `string`
|
|
19
|
-
| `
|
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
|
11
|
+
| --------------- | ----------------- | -------------------------------------------------------------------------- | -------------------------------- | ----------- |
|
|
12
|
+
| `action` | -- | Função de callback acionada ao clicar no botão principal. | `(name: string) => void` | `undefined` |
|
|
13
|
+
| `actions` | -- | Define a lista de ações disponíveis no dropdown do botão. | `Action[]` | `undefined` |
|
|
14
|
+
| `className` | `class-name` | Classe CSS personalizada para estilizar o botão. | `string` | `undefined` |
|
|
15
|
+
| `dataElementId` | `data-element-id` | Identificador de elemento para fins de rastreamento e automação de testes. | `string` | `undefined` |
|
|
16
|
+
| `enabled` | `enabled` | Se false o usuário não pode interagir com o componente. | `boolean` | `undefined` |
|
|
17
|
+
| `iconName` | `icon-name` | Nome do ícone a ser exibido no botão. | `string` | `undefined` |
|
|
18
|
+
| `name` | `name` | Nome identificador da ação do botão. | `string` | `undefined` |
|
|
19
|
+
| `size` | `size` | Define o tamanho do botão, podendo ser 'small', 'medium' ou 'large'. | `"large" \| "medium" \| "small"` | `'medium'` |
|
|
20
|
+
| `title` | `title` | Texto que será exibido no botão. | `string` | `undefined` |
|
|
20
21
|
|
|
21
22
|
|
|
22
23
|
## Dependencies
|
|
@@ -25,6 +26,9 @@
|
|
|
25
26
|
|
|
26
27
|
- [snk-crud](../../../snk-crud)
|
|
27
28
|
- [snk-detail-view](../../../snk-crud/subcomponents/snk-detail-view)
|
|
29
|
+
- [snk-dynaform](../../../snk-dynaform)
|
|
30
|
+
- [snk-dynaform-detail-view](../../../snk-dynaform/subcomponents/snk-dynaform-detail-view)
|
|
31
|
+
- [snk-dynaform-guides-view](../../../snk-dynaform/subcomponents/snk-dynaform-guides-view)
|
|
28
32
|
- [snk-grid](../../../snk-grid)
|
|
29
33
|
- [snk-guides-viewer](../../../snk-crud/subcomponents)
|
|
30
34
|
- [snk-simple-crud](../../../snk-simple-crud)
|
|
@@ -35,6 +39,9 @@
|
|
|
35
39
|
graph TD;
|
|
36
40
|
snk-crud --> taskbar-split-button
|
|
37
41
|
snk-detail-view --> taskbar-split-button
|
|
42
|
+
snk-dynaform --> taskbar-split-button
|
|
43
|
+
snk-dynaform-detail-view --> taskbar-split-button
|
|
44
|
+
snk-dynaform-guides-view --> taskbar-split-button
|
|
38
45
|
snk-grid --> taskbar-split-button
|
|
39
46
|
snk-guides-viewer --> taskbar-split-button
|
|
40
47
|
snk-simple-crud --> taskbar-split-button
|
|
@@ -15,16 +15,19 @@
|
|
|
15
15
|
| `alignRigth` | `align-rigth` | | `boolean` | `false` |
|
|
16
16
|
| `buttons` | `buttons` | | `string` | `undefined` |
|
|
17
17
|
| `configName` | `config-name` | | `string` | `undefined` |
|
|
18
|
+
| `customActionsList` | -- | | `Action[]` | `undefined` |
|
|
18
19
|
| `customButtons` | -- | | `Map<string, CustomButton>` | `undefined` |
|
|
19
20
|
| `customContainerId` | `custom-container-id` | | `string` | `undefined` |
|
|
20
21
|
| `customSlotId` | `custom-slot-id` | | `string` | `"TASKBAR_CUSTOM_ELEMENTS"` |
|
|
21
22
|
| `dataUnit` | -- | | `DataUnit` | `undefined` |
|
|
23
|
+
| `disableSkeleton` | `disable-skeleton` | | `boolean` | `false` |
|
|
22
24
|
| `disabledButtons` | -- | | `string[]` | `undefined` |
|
|
23
25
|
| `messagesBuilder` | -- | | `SnkMessageBuilder` | `undefined` |
|
|
24
26
|
| `overflowStrategy` | `overflow-strategy` | | `"hiddenItems" \| "none"` | `'hiddenItems'` |
|
|
25
27
|
| `presentationMode` | `presentation-mode` | | `PresentationMode.PRIMARY \| PresentationMode.SECONDARY \| PresentationMode.SINGLE_TASKBAR` | `PresentationMode.PRIMARY` |
|
|
26
28
|
| `primaryButton` | `primary-button` | | `string` | `undefined` |
|
|
27
29
|
| `resourceID` | `resource-i-d` | | `string` | `undefined` |
|
|
30
|
+
| `sizeButtons` | `size-buttons` | | `"large" \| "medium" \| "small"` | `'small'` |
|
|
28
31
|
|
|
29
32
|
|
|
30
33
|
## Events
|
|
@@ -40,13 +43,16 @@
|
|
|
40
43
|
|
|
41
44
|
### Used by
|
|
42
45
|
|
|
46
|
+
- [snk-crud](../snk-crud)
|
|
43
47
|
- [snk-detail-view](../snk-crud/subcomponents/snk-detail-view)
|
|
48
|
+
- [snk-dynaform](../snk-dynaform)
|
|
49
|
+
- [snk-dynaform-detail-view](../snk-dynaform/subcomponents/snk-dynaform-detail-view)
|
|
44
50
|
- [snk-grid](../snk-grid)
|
|
45
|
-
- [snk-guides-viewer](../snk-crud/subcomponents)
|
|
46
51
|
- [snk-simple-crud](../snk-simple-crud)
|
|
47
52
|
|
|
48
53
|
### Depends on
|
|
49
54
|
|
|
55
|
+
- [snk-taskbar-skeleton](subcomponents)
|
|
50
56
|
- [snk-data-exporter](../snk-data-exporter)
|
|
51
57
|
- [snk-actions-button](../snk-actions-button)
|
|
52
58
|
- [taskbar-split-button](./elements/taskbar-split-button)
|
|
@@ -55,14 +61,17 @@
|
|
|
55
61
|
### Graph
|
|
56
62
|
```mermaid
|
|
57
63
|
graph TD;
|
|
64
|
+
snk-taskbar --> snk-taskbar-skeleton
|
|
58
65
|
snk-taskbar --> snk-data-exporter
|
|
59
66
|
snk-taskbar --> snk-actions-button
|
|
60
67
|
snk-taskbar --> taskbar-split-button
|
|
61
68
|
snk-taskbar --> taskbar-actions-button
|
|
62
69
|
snk-data-exporter --> snk-exporter-email-sender
|
|
70
|
+
snk-crud --> snk-taskbar
|
|
63
71
|
snk-detail-view --> snk-taskbar
|
|
72
|
+
snk-dynaform --> snk-taskbar
|
|
73
|
+
snk-dynaform-detail-view --> snk-taskbar
|
|
64
74
|
snk-grid --> snk-taskbar
|
|
65
|
-
snk-guides-viewer --> snk-taskbar
|
|
66
75
|
snk-simple-crud --> snk-taskbar
|
|
67
76
|
style snk-taskbar fill:#f9f,stroke:#333,stroke-width:4px
|
|
68
77
|
```
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# snk-taskbar-skeleton
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
<!-- Auto Generated Below -->
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Dependencies
|
|
9
|
+
|
|
10
|
+
### Used by
|
|
11
|
+
|
|
12
|
+
- [snk-taskbar](..)
|
|
13
|
+
|
|
14
|
+
### Graph
|
|
15
|
+
```mermaid
|
|
16
|
+
graph TD;
|
|
17
|
+
snk-taskbar --> snk-taskbar-skeleton
|
|
18
|
+
style snk-taskbar-skeleton fill:#f9f,stroke:#333,stroke-width:4px
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
----------------------------------------------
|
|
22
|
+
|
|
23
|
+
|