@sankhyalabs/ezui-docs 2.8.0 → 2.10.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,37 @@
|
|
|
1
|
+
# ez-breadcrumb
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
<!-- Auto Generated Below -->
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Properties
|
|
9
|
+
|
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
|
11
|
+
| -------- | --------- | ----------------------------- | ------------------- | ------- |
|
|
12
|
+
| `items` | -- | Lista de itens do breadcrumb. | `IBreadcrumbItem[]` | `[]` |
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## Events
|
|
16
|
+
|
|
17
|
+
| Event | Description | Type |
|
|
18
|
+
| --------- | --------------------------------------------------- | ------------------------------ |
|
|
19
|
+
| `ezClick` | Emitido quando um item do breadcrumb é selecionado. | `CustomEvent<IBreadcrumbItem>` |
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## Dependencies
|
|
23
|
+
|
|
24
|
+
### Depends on
|
|
25
|
+
|
|
26
|
+
- [ez-icon](../ez-icon)
|
|
27
|
+
|
|
28
|
+
### Graph
|
|
29
|
+
```mermaid
|
|
30
|
+
graph TD;
|
|
31
|
+
ez-breadcrumb --> ez-icon
|
|
32
|
+
style ez-breadcrumb fill:#f9f,stroke:#333,stroke-width:4px
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
----------------------------------------------
|
|
36
|
+
|
|
37
|
+
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
|
|
21
21
|
- [ez-actions-button](../ez-actions-button)
|
|
22
22
|
- [ez-alert](../ez-alert)
|
|
23
|
+
- [ez-breadcrumb](../ez-breadcrumb)
|
|
23
24
|
- [ez-button](../ez-button)
|
|
24
25
|
- [ez-chip](../ez-chip)
|
|
25
26
|
- [ez-collapsible-box](../ez-collapsible-box)
|
|
@@ -37,6 +38,7 @@
|
|
|
37
38
|
graph TD;
|
|
38
39
|
ez-actions-button --> ez-icon
|
|
39
40
|
ez-alert --> ez-icon
|
|
41
|
+
ez-breadcrumb --> ez-icon
|
|
40
42
|
ez-button --> ez-icon
|
|
41
43
|
ez-chip --> ez-icon
|
|
42
44
|
ez-collapsible-box --> ez-icon
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
| `innerElement` | `inner-element` | Define as tags que serão consideradas conteúdo. | `string \| string[]` | `undefined` |
|
|
16
16
|
| `left` | `left` | Define a distância do lado esquerdo. Devem ser usados valores válidos de CSS. | `string` | `"0px"` |
|
|
17
17
|
| `opened` | `opened` | Define se o ez-popover está aberto. | `boolean` | `undefined` |
|
|
18
|
+
| `overlayType` | `overlay-type` | Define o tipo de overlay do popover. | `"light" \| "medium" \| "none"` | `"light"` |
|
|
18
19
|
| `right` | `right` | Define a distância do lado direito. Devem ser usados valores válidos de CSS. | `string` | `"0px"` |
|
|
19
20
|
| `top` | `top` | Define a distância do topo. Devem ser usados valores válidos de CSS. | `string` | `"0px"` |
|
|
20
21
|
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# ez-sidebar-button
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
<!-- Auto Generated Below -->
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Events
|
|
9
|
+
|
|
10
|
+
| Event | Description | Type |
|
|
11
|
+
| --------- | ------------------------------------------------- | ------------------- |
|
|
12
|
+
| `ezClick` | Emitido sempre que o ez-sidebar-button é clicado. | `CustomEvent<void>` |
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
----------------------------------------------
|
|
16
|
+
|
|
17
|
+
|