@sankhyalabs/ezui-docs 5.14.3 → 5.15.0-dev.1
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,39 @@
|
|
|
1
|
+
# ez-alert-list
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
<!-- Auto Generated Below -->
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Properties
|
|
9
|
+
|
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
|
11
|
+
| ---------------------- | ---------------------- | ---------------------------------------------------------- | -------------------------------------------------------------- | ----------- |
|
|
12
|
+
| `alerts` | -- | Lista de alertas que devem ser apresentados no componente. | `AlertItem[]` | `[]` |
|
|
13
|
+
| `enableDragAndDrop` | `enable-drag-and-drop` | Define se o componente pode ser arrastado na tela. | `boolean` | `undefined` |
|
|
14
|
+
| `enableExpand` | `enable-expand` | Define se o componente pode ser expandido. | `boolean` | `undefined` |
|
|
15
|
+
| `expanded` | `expanded` | Define se o componente está expandido. | `boolean` | `false` |
|
|
16
|
+
| `itemRightSlotBuilder` | -- | Define builder para elementos a direita do componente | `(item: ListItem, group?: ListGroup) => string \| HTMLElement` | `undefined` |
|
|
17
|
+
| `opened` | `opened` | Define se o componente está aberto. | `boolean` | `true` |
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## Dependencies
|
|
21
|
+
|
|
22
|
+
### Depends on
|
|
23
|
+
|
|
24
|
+
- [ez-button](../ez-button)
|
|
25
|
+
- [ez-list](../ez-list)
|
|
26
|
+
|
|
27
|
+
### Graph
|
|
28
|
+
```mermaid
|
|
29
|
+
graph TD;
|
|
30
|
+
ez-alert-list --> ez-button
|
|
31
|
+
ez-alert-list --> ez-list
|
|
32
|
+
ez-button --> ez-icon
|
|
33
|
+
ez-list --> ez-check
|
|
34
|
+
style ez-alert-list fill:#f9f,stroke:#333,stroke-width:4px
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
----------------------------------------------
|
|
38
|
+
|
|
39
|
+
|
|
@@ -45,6 +45,7 @@ Type: `Promise<void>`
|
|
|
45
45
|
### Used by
|
|
46
46
|
|
|
47
47
|
- [ez-actions-button](../ez-actions-button)
|
|
48
|
+
- [ez-alert-list](../ez-alert-list)
|
|
48
49
|
- [ez-dialog](../ez-dialog)
|
|
49
50
|
- [ez-grid](../ez-grid)
|
|
50
51
|
- [ez-guide-navigator](../ez-guide-navigator)
|
|
@@ -61,6 +62,7 @@ Type: `Promise<void>`
|
|
|
61
62
|
graph TD;
|
|
62
63
|
ez-button --> ez-icon
|
|
63
64
|
ez-actions-button --> ez-button
|
|
65
|
+
ez-alert-list --> ez-button
|
|
64
66
|
ez-dialog --> ez-button
|
|
65
67
|
ez-grid --> ez-button
|
|
66
68
|
ez-guide-navigator --> ez-button
|
|
@@ -95,6 +95,7 @@ Type: `Promise<void>`
|
|
|
95
95
|
|
|
96
96
|
### Used by
|
|
97
97
|
|
|
98
|
+
- [ez-alert-list](../ez-alert-list)
|
|
98
99
|
- [ez-multi-selection-list](../ez-multi-selection-list)
|
|
99
100
|
|
|
100
101
|
### Depends on
|
|
@@ -105,6 +106,7 @@ Type: `Promise<void>`
|
|
|
105
106
|
```mermaid
|
|
106
107
|
graph TD;
|
|
107
108
|
ez-list --> ez-check
|
|
109
|
+
ez-alert-list --> ez-list
|
|
108
110
|
ez-multi-selection-list --> ez-list
|
|
109
111
|
style ez-list fill:#f9f,stroke:#333,stroke-width:4px
|
|
110
112
|
```
|