@sankhyalabs/ezui-docs 5.1.0 → 5.2.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.
|
@@ -117,7 +117,6 @@ Type: `Promise<void>`
|
|
|
117
117
|
|
|
118
118
|
- [ez-button](../ez-button)
|
|
119
119
|
- [filter-column](subcomponents)
|
|
120
|
-
- [ez-toast](../ez-toast)
|
|
121
120
|
- [ez-icon](../ez-icon)
|
|
122
121
|
|
|
123
122
|
### Graph
|
|
@@ -125,7 +124,6 @@ Type: `Promise<void>`
|
|
|
125
124
|
graph TD;
|
|
126
125
|
ez-grid --> ez-button
|
|
127
126
|
ez-grid --> filter-column
|
|
128
|
-
ez-grid --> ez-toast
|
|
129
127
|
ez-grid --> ez-icon
|
|
130
128
|
ez-button --> ez-icon
|
|
131
129
|
filter-column --> ez-popover
|
|
@@ -27,6 +27,19 @@
|
|
|
27
27
|
|
|
28
28
|
## Methods
|
|
29
29
|
|
|
30
|
+
### `appendTextToSelection(text: string) => Promise<void>`
|
|
31
|
+
|
|
32
|
+
Adiciona o argumento text no value do text area, seguindo as regras:
|
|
33
|
+
- Se o cursor do mouse está posicionado em algum local do texto, o argumento será adicionado nesse local.
|
|
34
|
+
- Se existir uma seleção no texto, o trecho selecionado deve ser substituído pelo argumento.
|
|
35
|
+
- Se não existir seleção nem posicionamento do cursor do mouse, o argumento será adicionado no final do texto.
|
|
36
|
+
|
|
37
|
+
#### Returns
|
|
38
|
+
|
|
39
|
+
Type: `Promise<void>`
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
30
43
|
### `isInvalid() => Promise<boolean>`
|
|
31
44
|
|
|
32
45
|
Retorna se o conteúdo é inválido.
|
|
@@ -28,19 +28,6 @@ Type: `Promise<void>`
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
## Dependencies
|
|
32
|
-
|
|
33
|
-
### Used by
|
|
34
|
-
|
|
35
|
-
- [ez-grid](../ez-grid)
|
|
36
|
-
|
|
37
|
-
### Graph
|
|
38
|
-
```mermaid
|
|
39
|
-
graph TD;
|
|
40
|
-
ez-grid --> ez-toast
|
|
41
|
-
style ez-toast fill:#f9f,stroke:#333,stroke-width:4px
|
|
42
|
-
```
|
|
43
|
-
|
|
44
31
|
----------------------------------------------
|
|
45
32
|
|
|
46
33
|
|