@sankhyalabs/ezui-docs 6.5.0-dev.4 → 6.5.0-dev.5
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.
- package/components/ez-button/readme.md +2 -0
- package/components/ez-form/readme.md +1 -0
- package/components/ez-form-view/readme.md +1 -0
- package/components/ez-popup/readme.md +17 -12
- package/components/ez-rich-text/ez-link-builder/readme.md +2 -1
- package/components/ez-rich-text/ez-simple-image-uploader/readme.md +2 -1
- package/components/ez-rich-text/readme.md +2 -1
- package/package.json +1 -1
|
@@ -58,6 +58,7 @@ Type: `Promise<void>`
|
|
|
58
58
|
- [ez-guide-navigator](../ez-guide-navigator)
|
|
59
59
|
- [ez-modal-container](../ez-modal-container)
|
|
60
60
|
- [ez-pagination](../ez-pagination)
|
|
61
|
+
- [ez-popup](../ez-popup)
|
|
61
62
|
- [ez-sidebar-navigator](../ez-sidebar-navigator)
|
|
62
63
|
- [ez-split-item](../ez-split-panel/structure/item)
|
|
63
64
|
- [ez-text-edit](../ez-text-edit)
|
|
@@ -80,6 +81,7 @@ graph TD;
|
|
|
80
81
|
ez-guide-navigator --> ez-button
|
|
81
82
|
ez-modal-container --> ez-button
|
|
82
83
|
ez-pagination --> ez-button
|
|
84
|
+
ez-popup --> ez-button
|
|
83
85
|
ez-sidebar-navigator --> ez-button
|
|
84
86
|
ez-split-item --> ez-button
|
|
85
87
|
ez-text-edit --> ez-button
|
|
@@ -141,6 +141,7 @@ graph TD;
|
|
|
141
141
|
ez-link-builder --> ez-modal-container
|
|
142
142
|
ez-link-builder --> ez-text-input
|
|
143
143
|
ez-link-builder --> ez-check
|
|
144
|
+
ez-popup --> ez-button
|
|
144
145
|
ez-modal-container --> ez-icon
|
|
145
146
|
ez-modal-container --> ez-button
|
|
146
147
|
ez-simple-image-uploader --> ez-popup
|
|
@@ -144,6 +144,7 @@ graph TD;
|
|
|
144
144
|
ez-link-builder --> ez-modal-container
|
|
145
145
|
ez-link-builder --> ez-text-input
|
|
146
146
|
ez-link-builder --> ez-check
|
|
147
|
+
ez-popup --> ez-button
|
|
147
148
|
ez-modal-container --> ez-icon
|
|
148
149
|
ez-modal-container --> ez-button
|
|
149
150
|
ez-simple-image-uploader --> ez-popup
|
|
@@ -7,14 +7,16 @@
|
|
|
7
7
|
|
|
8
8
|
## Properties
|
|
9
9
|
|
|
10
|
-
| Property | Attribute | Description
|
|
11
|
-
| --------------- | ---------------- |
|
|
12
|
-
| `
|
|
13
|
-
| `
|
|
14
|
-
| `
|
|
15
|
-
| `
|
|
16
|
-
| `
|
|
17
|
-
| `
|
|
10
|
+
| Property | Attribute | Description | Type | Default |
|
|
11
|
+
| --------------- | ---------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------- | ----------- |
|
|
12
|
+
| `autoClose` | `auto-close` | Define se o popup deve fechar automaticamente ao clicar fora dele. | `boolean` | `true` |
|
|
13
|
+
| `enabledScroll` | `enabled-scroll` | Possibilita scroll vertical no conteúdo interno do componente | `boolean` | `false` |
|
|
14
|
+
| `ezTitle` | `ez-title` | Texto a ser apresentado como título do componente. | `string` | `undefined` |
|
|
15
|
+
| `footerButtons` | -- | Botões do rodapé do popup. Aceita todas as propriedades do ez-button. Limitado a até 3 botões. | `Partial<EzButtonProps>[]` | `[]` |
|
|
16
|
+
| `heightMode` | `height-mode` | Define altura do componente. | `"auto" \| "full"` | `"full"` |
|
|
17
|
+
| `opened` | `opened` | Define se o ez-popover está aberto. | `boolean` | `false` |
|
|
18
|
+
| `size` | `size` | Define a largura do ez-popup. | `"auto" \| "large" \| "medium" \| "small" \| "x-large" \| "x-small"` | `"medium"` |
|
|
19
|
+
| `useHeader` | `use-header` | Define se o componente utilizará cabeçalho. | `boolean` | `true` |
|
|
18
20
|
|
|
19
21
|
|
|
20
22
|
## Events
|
|
@@ -32,9 +34,15 @@
|
|
|
32
34
|
- [ez-link-builder](../ez-rich-text/ez-link-builder)
|
|
33
35
|
- [ez-simple-image-uploader](../ez-rich-text/ez-simple-image-uploader)
|
|
34
36
|
|
|
37
|
+
### Depends on
|
|
38
|
+
|
|
39
|
+
- [ez-button](../ez-button)
|
|
40
|
+
|
|
35
41
|
### Graph
|
|
36
42
|
```mermaid
|
|
37
43
|
graph TD;
|
|
44
|
+
ez-popup --> ez-button
|
|
45
|
+
ez-button --> ez-icon
|
|
38
46
|
ez-link-builder --> ez-popup
|
|
39
47
|
ez-simple-image-uploader --> ez-popup
|
|
40
48
|
style ez-popup fill:#f9f,stroke:#333,stroke-width:4px
|
|
@@ -51,10 +59,7 @@ graph TD;
|
|
|
51
59
|
| --ez-popup-z-index | Define a camada em que o componente será exibido. |
|
|
52
60
|
| --ez-popup\_\_container--color | Define a cor do texto do container do popup. |
|
|
53
61
|
| --ez-popup\_\_container--padding | Define o espaçamento do container do popup. |
|
|
54
|
-
| --ez-popup\_\_header--padding-bottom | Define o espaçamento inferior do cabeçalho do popup. |
|
|
55
62
|
| --ez-popup\_\_title--font-family | Define a família da fonte do título do popup. |
|
|
56
63
|
| --ez-popup\_\_title--font-size | Define o tamanho da fonte do título do popup. |
|
|
57
64
|
| --ez-popup\_\_title--color | Define a cor da fonte do título do popup. |
|
|
58
|
-
| --ez-popup\_\_title--font-weight | Define o peso da fonte do título do popup. |
|
|
59
|
-
| --ez-popup\_\_btn\_\_close--icon-color | Define a cor do ícone do botão de fechamento. |
|
|
60
|
-
| --ez-popup\_\_btn\_\_close--icon | Contém o ícone do botão de fechamento. |
|
|
65
|
+
| --ez-popup\_\_title--font-weight | Define o peso da fonte do título do popup. |
|
|
@@ -55,9 +55,10 @@ graph TD;
|
|
|
55
55
|
ez-link-builder --> ez-modal-container
|
|
56
56
|
ez-link-builder --> ez-text-input
|
|
57
57
|
ez-link-builder --> ez-check
|
|
58
|
+
ez-popup --> ez-button
|
|
59
|
+
ez-button --> ez-icon
|
|
58
60
|
ez-modal-container --> ez-icon
|
|
59
61
|
ez-modal-container --> ez-button
|
|
60
|
-
ez-button --> ez-icon
|
|
61
62
|
ez-text-input --> ez-tooltip
|
|
62
63
|
ez-text-input --> ez-icon
|
|
63
64
|
ez-rich-text --> ez-link-builder
|
|
@@ -64,9 +64,10 @@ graph TD;
|
|
|
64
64
|
ez-simple-image-uploader --> ez-tooltip
|
|
65
65
|
ez-simple-image-uploader --> ez-text-input
|
|
66
66
|
ez-simple-image-uploader --> ez-icon
|
|
67
|
+
ez-popup --> ez-button
|
|
68
|
+
ez-button --> ez-icon
|
|
67
69
|
ez-modal-container --> ez-icon
|
|
68
70
|
ez-modal-container --> ez-button
|
|
69
|
-
ez-button --> ez-icon
|
|
70
71
|
ez-text-input --> ez-tooltip
|
|
71
72
|
ez-text-input --> ez-icon
|
|
72
73
|
ez-rich-text --> ez-simple-image-uploader
|
|
@@ -95,9 +95,10 @@ graph TD;
|
|
|
95
95
|
ez-link-builder --> ez-modal-container
|
|
96
96
|
ez-link-builder --> ez-text-input
|
|
97
97
|
ez-link-builder --> ez-check
|
|
98
|
+
ez-popup --> ez-button
|
|
99
|
+
ez-button --> ez-icon
|
|
98
100
|
ez-modal-container --> ez-icon
|
|
99
101
|
ez-modal-container --> ez-button
|
|
100
|
-
ez-button --> ez-icon
|
|
101
102
|
ez-text-input --> ez-tooltip
|
|
102
103
|
ez-text-input --> ez-icon
|
|
103
104
|
ez-simple-image-uploader --> ez-popup
|