@sankhyalabs/ezui-docs 3.0.4 → 3.1.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.
|
@@ -7,16 +7,19 @@
|
|
|
7
7
|
|
|
8
8
|
## Properties
|
|
9
9
|
|
|
10
|
-
| Property
|
|
11
|
-
|
|
|
12
|
-
| `
|
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
|
11
|
+
| ------------------ | ------------------- | -------------------------------------------------------------- | --------------------- | -------- |
|
|
12
|
+
| `fillMode` | `fill-mode` | Define o modo de uso do Breadcrumb. | `"auto" \| "regular"` | `"auto"` |
|
|
13
|
+
| `items` | -- | Lista de itens do breadcrumb. | `IBreadcrumbItem[]` | `[]` |
|
|
14
|
+
| `maxItems` | `max-items` | Define o limite máximo de itens a serem renderizados. | `number` | `4` |
|
|
15
|
+
| `positionEllipsis` | `position-ellipsis` | Define a posição do Ellipsis nos itens visíveis do Breadcrumb. | `number` | `1` |
|
|
13
16
|
|
|
14
17
|
|
|
15
18
|
## Events
|
|
16
19
|
|
|
17
|
-
| Event
|
|
18
|
-
|
|
|
19
|
-
| `
|
|
20
|
+
| Event | Description | Type |
|
|
21
|
+
| -------------- | --------------------------------------------------- | ------------------------------ |
|
|
22
|
+
| `selectedItem` | Emitido quando um item do breadcrumb é selecionado. | `CustomEvent<IBreadcrumbItem>` |
|
|
20
23
|
|
|
21
24
|
|
|
22
25
|
## Dependencies
|
|
@@ -24,11 +27,14 @@
|
|
|
24
27
|
### Depends on
|
|
25
28
|
|
|
26
29
|
- [ez-icon](../ez-icon)
|
|
30
|
+
- [ez-dropdown](../ez-dropdown)
|
|
27
31
|
|
|
28
32
|
### Graph
|
|
29
33
|
```mermaid
|
|
30
34
|
graph TD;
|
|
31
35
|
ez-breadcrumb --> ez-icon
|
|
36
|
+
ez-breadcrumb --> ez-dropdown
|
|
37
|
+
ez-dropdown --> ez-icon
|
|
32
38
|
style ez-breadcrumb fill:#f9f,stroke:#333,stroke-width:4px
|
|
33
39
|
```
|
|
34
40
|
|
|
@@ -24,6 +24,10 @@
|
|
|
24
24
|
|
|
25
25
|
## Dependencies
|
|
26
26
|
|
|
27
|
+
### Used by
|
|
28
|
+
|
|
29
|
+
- [ez-breadcrumb](../ez-breadcrumb)
|
|
30
|
+
|
|
27
31
|
### Depends on
|
|
28
32
|
|
|
29
33
|
- [ez-icon](../ez-icon)
|
|
@@ -32,6 +36,7 @@
|
|
|
32
36
|
```mermaid
|
|
33
37
|
graph TD;
|
|
34
38
|
ez-dropdown --> ez-icon
|
|
39
|
+
ez-breadcrumb --> ez-dropdown
|
|
35
40
|
style ez-dropdown fill:#f9f,stroke:#333,stroke-width:4px
|
|
36
41
|
```
|
|
37
42
|
|