@sankhyalabs/ezui-docs 6.2.0-dev.4 → 6.2.0-dev.5
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.
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
- [ez-file-item](../ez-file-item)
|
|
36
36
|
- [ez-filter-input](../ez-filter-input)
|
|
37
37
|
- [ez-grid](../ez-grid)
|
|
38
|
+
- [ez-list-item](../ez-list-item)
|
|
38
39
|
- [ez-modal-container](../ez-modal-container)
|
|
39
40
|
- [ez-multi-selection-list](../ez-multi-selection-list)
|
|
40
41
|
- [ez-rich-toolbar-item](../ez-rich-text/ez-rich-toolbar/ez-rich-toolbar-item)
|
|
@@ -70,6 +71,7 @@ graph TD;
|
|
|
70
71
|
ez-file-item --> ez-icon
|
|
71
72
|
ez-filter-input --> ez-icon
|
|
72
73
|
ez-grid --> ez-icon
|
|
74
|
+
ez-list-item --> ez-icon
|
|
73
75
|
ez-modal-container --> ez-icon
|
|
74
76
|
ez-multi-selection-list --> ez-icon
|
|
75
77
|
ez-rich-toolbar-item --> ez-icon
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# ez-list-item
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
<!-- Auto Generated Below -->
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Properties
|
|
9
|
+
|
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
|
11
|
+
| ----------- | ------------ | ------------------------------------------- | -------- | ----------- |
|
|
12
|
+
| `iconName` | `icon-name` | Nome do ícone que deve ser exibido no item. | `string` | `undefined` |
|
|
13
|
+
| `text` | `text` | Texto do item da lista. | `string` | `undefined` |
|
|
14
|
+
| `titleText` | `title-text` | Título do item da lista. | `string` | `undefined` |
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## Dependencies
|
|
18
|
+
|
|
19
|
+
### Depends on
|
|
20
|
+
|
|
21
|
+
- [ez-icon](../ez-icon)
|
|
22
|
+
|
|
23
|
+
### Graph
|
|
24
|
+
```mermaid
|
|
25
|
+
graph TD;
|
|
26
|
+
ez-list-item --> ez-icon
|
|
27
|
+
style ez-list-item fill:#f9f,stroke:#333,stroke-width:4px
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
----------------------------------------------
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## CSS Variables
|
|
36
|
+
| Variable | Description |
|
|
37
|
+
|-|-|
|
|
38
|
+
| --ez-list-item\_\_title--color | Define a cor do título do item da lista. |
|
|
39
|
+
| --ez-list-item\_\_text--color | Define a cor do texto do item da lista. |
|
|
40
|
+
| --ez-list-item\_\_icon--color | Define a cor do ícone do item da lista. |
|
|
41
|
+
| --ez-list-item\_\_background--color | Define a cor do background do item da lista. |
|
|
42
|
+
| --ez-list-item\_\_border--color-hover | Define a cor da borda do item da lista com hover. |
|
|
43
|
+
| --ez-list-item\_\_min-width | Define a largura mínima do componente. |
|