@sankhyalabs/ezui-docs 0.0.0-feat-dev-KB-31007.0 → 0.0.0-feat-dev-KB-31007.2
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.
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
| `customEditor` | -- | Instância do editor customizado. | `ICustomEditor` | `undefined` |
|
|
14
14
|
| `detailContext` | `detail-context` | Define de qual contexto o editor está sendo acionado. | `string` | `undefined` |
|
|
15
15
|
| `formViewField` | -- | Campo que o elemento customizado representa. | `IFormViewField` | `undefined` |
|
|
16
|
+
| `selectedRecord` | -- | Define os registros da linha selecionada. | `Record` | `undefined` |
|
|
16
17
|
| `value` | `value` | Valores dos campos do formulário. | `any` | `undefined` |
|
|
17
18
|
|
|
18
19
|
|
|
@@ -7,9 +7,10 @@
|
|
|
7
7
|
|
|
8
8
|
## Properties
|
|
9
9
|
|
|
10
|
-
| Property
|
|
11
|
-
|
|
|
12
|
-
| `fields`
|
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
|
11
|
+
| ---------------- | --------- | ------------------------------------------------------------------------- | ------------------ | ----------- |
|
|
12
|
+
| `fields` | -- | Define a lista de metadados usada para criar os campos de user interface. | `IFormViewField[]` | `undefined` |
|
|
13
|
+
| `selectedRecord` | -- | Define os registros da linha selecionada. | `Record` | `undefined` |
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
## Events
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
| --------------- | ----------------------------------------------------------- | ---------------------------------------- |
|
|
26
26
|
| `ezChange` | Emitido quando acontece a alteração de estado da lista. | `CustomEvent<(ListItem \| ListGroup)[]>` |
|
|
27
27
|
| `ezCheckChange` | Emitido quando acontece a alteração de um item do checkbox. | `CustomEvent<ListItem>` |
|
|
28
|
+
| `ezDoubleClick` | Emitido quando ocorre um duplo clique em um item da lista. | `CustomEvent<ListItem>` |
|
|
28
29
|
| `ezSelectItem` | Emitido sempre que um item da lista for selecionado. | `CustomEvent<ListItem>` |
|
|
29
30
|
|
|
30
31
|
|