@sankhyalabs/ezui-docs 5.20.0-dev.5 → 5.20.0-dev.7
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.
|
@@ -50,6 +50,7 @@ Type: `Promise<void>`
|
|
|
50
50
|
- [ez-grid](../ez-grid)
|
|
51
51
|
- [ez-guide-navigator](../ez-guide-navigator)
|
|
52
52
|
- [ez-modal-container](../ez-modal-container)
|
|
53
|
+
- [ez-split-item](../ez-split-panel/structure/item)
|
|
53
54
|
- [ez-text-edit](../ez-text-edit)
|
|
54
55
|
- [filter-column](../ez-grid/subcomponents)
|
|
55
56
|
|
|
@@ -67,6 +68,7 @@ graph TD;
|
|
|
67
68
|
ez-grid --> ez-button
|
|
68
69
|
ez-guide-navigator --> ez-button
|
|
69
70
|
ez-modal-container --> ez-button
|
|
71
|
+
ez-split-item --> ez-button
|
|
70
72
|
ez-text-edit --> ez-button
|
|
71
73
|
filter-column --> ez-button
|
|
72
74
|
style ez-button fill:#f9f,stroke:#333,stroke-width:4px
|
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
|
|
8
8
|
## Properties
|
|
9
9
|
|
|
10
|
-
| Property
|
|
11
|
-
|
|
|
12
|
-
| `
|
|
13
|
-
| `
|
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
|
11
|
+
| ---------------- | ------------------ | ------------------------------------------------------------------------ | ------------------- | ---------- |
|
|
12
|
+
| `anchorToExpand` | `anchor-to-expand` | Responsável por definir o painel que limita o tamanho do item expandido. | `boolean` | `false` |
|
|
13
|
+
| `direction` | `direction` | | `"column" \| "row"` | `'column'` |
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
----------------------------------------------
|
|
@@ -5,6 +5,28 @@
|
|
|
5
5
|
<!-- Auto Generated Below -->
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
## Properties
|
|
9
|
+
|
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
|
11
|
+
| -------------- | --------------- | ----------------------------------- | --------- | ----------- |
|
|
12
|
+
| `enableExpand` | `enable-expand` | Define se o item pode ser expandido | `boolean` | `true` |
|
|
13
|
+
| `label` | `label` | Define um título para o painel. | `string` | `undefined` |
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## Dependencies
|
|
17
|
+
|
|
18
|
+
### Depends on
|
|
19
|
+
|
|
20
|
+
- [ez-button](../../../ez-button)
|
|
21
|
+
|
|
22
|
+
### Graph
|
|
23
|
+
```mermaid
|
|
24
|
+
graph TD;
|
|
25
|
+
ez-split-item --> ez-button
|
|
26
|
+
ez-button --> ez-icon
|
|
27
|
+
style ez-split-item fill:#f9f,stroke:#333,stroke-width:4px
|
|
28
|
+
```
|
|
29
|
+
|
|
8
30
|
----------------------------------------------
|
|
9
31
|
|
|
10
32
|
|