@sankhyalabs/ezui-docs 0.0.0-bugfix-dev-KB-08202.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.
Files changed (48) hide show
  1. package/components/ez-actions-button/readme.md +71 -0
  2. package/components/ez-alert/readme.md +30 -0
  3. package/components/ez-application/readme.md +17 -0
  4. package/components/ez-badge/readme.md +34 -0
  5. package/components/ez-breadcrumb/readme.md +43 -0
  6. package/components/ez-button/readme.md +75 -0
  7. package/components/ez-calendar/readme.md +86 -0
  8. package/components/ez-card-item/readme.md +24 -0
  9. package/components/ez-check/readme.md +69 -0
  10. package/components/ez-chip/readme.md +67 -0
  11. package/components/ez-collapsible-box/readme.md +92 -0
  12. package/components/ez-combo-box/readme.md +114 -0
  13. package/components/ez-date-input/readme.md +94 -0
  14. package/components/ez-date-time-input/readme.md +95 -0
  15. package/components/ez-dialog/readme.md +60 -0
  16. package/components/ez-dropdown/readme.md +45 -0
  17. package/components/ez-file-item/readme.md +42 -0
  18. package/components/ez-filter-input/readme.md +108 -0
  19. package/components/ez-form/readme.md +82 -0
  20. package/components/ez-form-view/readme.md +91 -0
  21. package/components/ez-grid/readme.md +153 -0
  22. package/components/ez-grid/subcomponents/readme.md +89 -0
  23. package/components/ez-guide-navigator/readme.md +125 -0
  24. package/components/ez-icon/readme.md +66 -0
  25. package/components/ez-list/readme.md +114 -0
  26. package/components/ez-loading-bar/readme.md +33 -0
  27. package/components/ez-modal/readme.md +31 -0
  28. package/components/ez-modal-container/readme.md +46 -0
  29. package/components/ez-multi-selection-list/readme.md +75 -0
  30. package/components/ez-multi-selection-list/subcomponents/readme.md +30 -0
  31. package/components/ez-number-input/readme.md +94 -0
  32. package/components/ez-popover/readme.md +84 -0
  33. package/components/ez-popup/readme.md +28 -0
  34. package/components/ez-radio-button/readme.md +28 -0
  35. package/components/ez-scroller/readme.md +32 -0
  36. package/components/ez-search/readme.md +111 -0
  37. package/components/ez-sidebar-button/readme.md +30 -0
  38. package/components/ez-skeleton/readme.md +22 -0
  39. package/components/ez-tabselector/readme.md +44 -0
  40. package/components/ez-text-area/readme.md +90 -0
  41. package/components/ez-text-edit/readme.md +60 -0
  42. package/components/ez-text-input/readme.md +92 -0
  43. package/components/ez-time-input/readme.md +85 -0
  44. package/components/ez-toast/readme.md +33 -0
  45. package/components/ez-tree/readme.md +158 -0
  46. package/components/ez-upload/readme.md +80 -0
  47. package/components/ez-view-stack/readme.md +33 -0
  48. package/package.json +14 -0
@@ -0,0 +1,31 @@
1
+ # ez-modal
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ------------------- | --------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | ----------- |
12
+ | `align` | `align` | Define o alinhamento do ez-modal. | `"left" \| "right"` | `undefined` |
13
+ | `closeEsc` | `close-esc` | Define se o ez-modal será fechado ao clicar `ESC`. | `boolean` | `false` |
14
+ | `closeOutsideClick` | `close-outside-click` | Define se o modal será fechado ao clicar fora do conteúdo. | `boolean` | `false` |
15
+ | `heightMode` | `height-mode` | Ativa o modo Full, permitindo que o Modal expanda-se verticalmente e ocupe todo o espaço disponível. | `"full" \| "regular"` | `"regular"` |
16
+ | `modalSize` | `modal-size` | Define o tamanho do ez-modal. Devem ser definidas seguindo grid-layout. Exemplo: `col-sd-3`. | `string` | `undefined` |
17
+ | `opened` | `opened` | Define se o ez-modal está aberto. | `boolean` | `true` |
18
+ | `scrim` | `scrim` | Define o tipo de scrim a ser aplicado no overlay do modal | `"light" \| "medium"` | `"medium"` |
19
+
20
+
21
+ ## Events
22
+
23
+ | Event | Description | Type |
24
+ | -------------- | --------------------------------- | ---------------------- |
25
+ | `ezCloseModal` | Emitido quando o modal é fechado. | `CustomEvent<boolean>` |
26
+ | `ezOpenModal` | Emitido quando o modal é aberto. | `CustomEvent<any>` |
27
+
28
+
29
+ ----------------------------------------------
30
+
31
+
@@ -0,0 +1,46 @@
1
+ # ez-modal-container
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | -------------------- | ---------------------- | ---------------------------------------------------------------- | ------------------------------------- | ----------- |
12
+ | `cancelButtonLabel` | `cancel-button-label` | Define o texto do botão de cancelamento. | `string` | `undefined` |
13
+ | `cancelButtonStatus` | `cancel-button-status` | Define o estado do botão de cancelamento. | `"DISABLED" \| "ENABLED" \| "HIDDEN"` | `undefined` |
14
+ | `modalSubTitle` | `modal-sub-title` | Texto do subtítulo, geralmente usado para orientação do usuário. | `string` | `undefined` |
15
+ | `modalTitle` | `modal-title` | Texto a ser apresentado como título do modal. | `string` | `undefined` |
16
+ | `okButtonLabel` | `ok-button-label` | Determina o texto do botão de confirmação. | `string` | `undefined` |
17
+ | `okButtonStatus` | `ok-button-status` | Define o estado do botão de confirmação. | `"DISABLED" \| "ENABLED" \| "HIDDEN"` | `undefined` |
18
+ | `showTitleBar` | `show-title-bar` | Define se o cabeçalho será mostrado. | `boolean` | `true` |
19
+
20
+
21
+ ## Events
22
+
23
+ | Event | Description | Type |
24
+ | --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------- |
25
+ | `ezModalAction` | Representa a interação com o usuário. OK - Quando o botão é acionado CANCEL - Quando o botão de cancelar é acionado CLOSE - Quando o botão de fechar é acionado. LOAD - Quando o modal é carregado (eventualmente pode ser usado para dar foco a um elemento específico) | `CustomEvent<string>` |
26
+
27
+
28
+ ## Dependencies
29
+
30
+ ### Depends on
31
+
32
+ - [ez-icon](../ez-icon)
33
+ - [ez-button](../ez-button)
34
+
35
+ ### Graph
36
+ ```mermaid
37
+ graph TD;
38
+ ez-modal-container --> ez-icon
39
+ ez-modal-container --> ez-button
40
+ ez-button --> ez-icon
41
+ style ez-modal-container fill:#f9f,stroke:#333,stroke-width:4px
42
+ ```
43
+
44
+ ----------------------------------------------
45
+
46
+
@@ -0,0 +1,75 @@
1
+ # ez-multi-selection-list
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | -------------- | ---------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ----------- |
12
+ | `columnName` | `column-name` | Nome da coluna onde serão aplicadas as opções selecionadas. | `string` | `undefined` |
13
+ | `dataSource` | -- | Classe que implementa o método fetchData, responsável por realizar a pesquisa dos dados, com base no termo informado pelo usuário. | `IMultiSelectionListDataSource` | `undefined` |
14
+ | `isTextSearch` | `is-text-search` | Informa se a pesquisa é do tipo texto. | `boolean` | `false` |
15
+ | `options` | -- | Opções de filtros a serem exibidas na listagem. | `IMultiSelectionOption[]` | `undefined` |
16
+ | `useOptions` | `use-options` | Indica se deve ser exibida lista de opções do atributo options (true), ou se deve utilizar o datasource (false) | `boolean` | `false` |
17
+
18
+
19
+ ## Events
20
+
21
+ | Event | Description | Type |
22
+ | ----------------------- | ----------------------------------------------------------------------- | -------------------------------------- |
23
+ | `changeFilteredOptions` | Evento que informa que a lista de opções selecionadas sofreu alteração. | `CustomEvent<IMultiSelectionOption[]>` |
24
+
25
+
26
+ ## Methods
27
+
28
+ ### `clearFilteredOptions() => Promise<void>`
29
+
30
+
31
+
32
+ #### Returns
33
+
34
+ Type: `Promise<void>`
35
+
36
+
37
+
38
+
39
+ ## Dependencies
40
+
41
+ ### Used by
42
+
43
+ - [filter-column](../ez-grid/subcomponents)
44
+
45
+ ### Depends on
46
+
47
+ - [ez-check](../ez-check)
48
+ - [ez-list](../ez-list)
49
+ - [ez-icon](../ez-icon)
50
+ - [multi-selection-box-message](subcomponents)
51
+ - [ez-filter-input](../ez-filter-input)
52
+ - [ez-search](../ez-search)
53
+
54
+ ### Graph
55
+ ```mermaid
56
+ graph TD;
57
+ ez-multi-selection-list --> ez-check
58
+ ez-multi-selection-list --> ez-list
59
+ ez-multi-selection-list --> ez-icon
60
+ ez-multi-selection-list --> multi-selection-box-message
61
+ ez-multi-selection-list --> ez-filter-input
62
+ ez-multi-selection-list --> ez-search
63
+ ez-list --> ez-check
64
+ ez-filter-input --> ez-text-input
65
+ ez-filter-input --> ez-icon
66
+ ez-search --> ez-combo-box
67
+ ez-combo-box --> ez-text-input
68
+ ez-combo-box --> ez-icon
69
+ filter-column --> ez-multi-selection-list
70
+ style ez-multi-selection-list fill:#f9f,stroke:#333,stroke-width:4px
71
+ ```
72
+
73
+ ----------------------------------------------
74
+
75
+
@@ -0,0 +1,30 @@
1
+ # multi-selection-box-message
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | --------- | --------- | ----------- | -------- | ----------- |
12
+ | `message` | `message` | | `string` | `undefined` |
13
+
14
+
15
+ ## Dependencies
16
+
17
+ ### Used by
18
+
19
+ - [ez-multi-selection-list](..)
20
+
21
+ ### Graph
22
+ ```mermaid
23
+ graph TD;
24
+ ez-multi-selection-list --> multi-selection-box-message
25
+ style multi-selection-box-message fill:#f9f,stroke:#333,stroke-width:4px
26
+ ```
27
+
28
+ ----------------------------------------------
29
+
30
+
@@ -0,0 +1,94 @@
1
+ # ez-number-input
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ----------------- | ------------------ | ---------------------------------------------------------------------------------------------------------------------- | --------------------- | ----------- |
12
+ | `canShowError` | `can-show-error` | Se false deixa de exibir a mensagem de erro dentro do campo. | `boolean` | `true` |
13
+ | `enabled` | `enabled` | Se false, o usuário não pode interagir com o campo. | `boolean` | `true` |
14
+ | `errorMessage` | `error-message` | Define uma mensagem de orientação ao usuário, colocando o campo em modo inválido. | `string` | `undefined` |
15
+ | `label` | `label` | Texto a ser apresentado como título do campo. | `string` | `undefined` |
16
+ | `mode` | `mode` | Define o tamanho do campo. | `"regular" \| "slim"` | `"regular"` |
17
+ | `precision` | `precision` | Define quantas casas decimais serão exibidas. Caso haja mais casas haverá arredondamento. | `number` | `undefined` |
18
+ | `prettyPrecision` | `pretty-precision` | Define qual é o mínimo de casas depois da vírgula. Exemplo: 1,1 será exibido como 1,1000 quando `prettyPrecision = 4`. | `number` | `undefined` |
19
+ | `value` | `value` | Define o valor do campo. | `number` | `undefined` |
20
+
21
+
22
+ ## Events
23
+
24
+ | Event | Description | Type |
25
+ | ----------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------- |
26
+ | `ezCancelWaitingChange` | Emitido quando não foi possível completar a alteração entre o evento ezStartChange e ezChange. | `CustomEvent<void>` |
27
+ | `ezChange` | Emitido quando acontece a alteração de valor do campo. | `CustomEvent<number>` |
28
+ | `ezStartChange` | Emitido ao iniciar a alteração (digitação incompleta). | `CustomEvent<WaitingChange>` |
29
+
30
+
31
+ ## Methods
32
+
33
+ ### `getValueAsync() => Promise<number>`
34
+
35
+
36
+
37
+ #### Returns
38
+
39
+ Type: `Promise<number>`
40
+
41
+
42
+
43
+ ### `isInvalid() => Promise<boolean>`
44
+
45
+ Retorna se o conteúdo é inválido.
46
+
47
+ #### Returns
48
+
49
+ Type: `Promise<boolean>`
50
+
51
+
52
+
53
+ ### `setBlur() => Promise<void>`
54
+
55
+ Remove o foco do campo.
56
+
57
+ #### Returns
58
+
59
+ Type: `Promise<void>`
60
+
61
+
62
+
63
+ ### `setFocus(options?: TFocusOptions) => Promise<void>`
64
+
65
+ Aplica o foco no campo.
66
+
67
+ #### Returns
68
+
69
+ Type: `Promise<void>`
70
+
71
+
72
+
73
+
74
+ ## Dependencies
75
+
76
+ ### Used by
77
+
78
+ - [ez-form-view](../ez-form-view)
79
+
80
+ ### Depends on
81
+
82
+ - [ez-text-input](../ez-text-input)
83
+
84
+ ### Graph
85
+ ```mermaid
86
+ graph TD;
87
+ ez-number-input --> ez-text-input
88
+ ez-form-view --> ez-number-input
89
+ style ez-number-input fill:#f9f,stroke:#333,stroke-width:4px
90
+ ```
91
+
92
+ ----------------------------------------------
93
+
94
+
@@ -0,0 +1,84 @@
1
+ # ez-popover
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | -------------- | --------------- | --------------------------------------------------------------------------------- | ------------------------------- | --------------- |
12
+ | `autoClose` | `auto-close` | Define que será fechado automaticamente quando o usuário clicar fora do conteúdo. | `boolean` | `true` |
13
+ | `boxWidth` | `box-width` | Ajusta o comportamento da largura do popover. | `"fit-content" \| "full-width"` | `"fit-content"` |
14
+ | `innerElement` | `inner-element` | Define as tags que serão consideradas conteúdo. | `string \| string[]` | `undefined` |
15
+ | `opened` | `opened` | Define se o ez-popover está aberto. | `boolean` | `undefined` |
16
+ | `overlayType` | `overlay-type` | Define o tipo de overlay do popover. | `"light" \| "medium" \| "none"` | `"light"` |
17
+
18
+
19
+ ## Events
20
+
21
+ | Event | Description | Type |
22
+ | -------------------- | ------------------------------------------------------------ | ---------------------- |
23
+ | `ezVisibilityChange` | Emitido quando acontece a alteração de estado do componente. | `CustomEvent<boolean>` |
24
+
25
+
26
+ ## Methods
27
+
28
+ ### `hide() => Promise<void>`
29
+
30
+ Oculta o ez-popover.
31
+
32
+ #### Returns
33
+
34
+ Type: `Promise<void>`
35
+
36
+
37
+
38
+ ### `show(top?: string, left?: string) => Promise<void>`
39
+
40
+ Exibe o ez-popover.
41
+
42
+ #### Returns
43
+
44
+ Type: `Promise<void>`
45
+
46
+
47
+
48
+ ### `showUnder(element: HTMLElement, options?: IEzPopoverAnchorOptions) => Promise<void>`
49
+
50
+ Ancora a exibição do popOver a um elemento HTML.
51
+
52
+ #### Returns
53
+
54
+ Type: `Promise<void>`
55
+
56
+
57
+
58
+ ### `updatePosition(top?: string, left?: string) => Promise<void>`
59
+
60
+ Atualiza a posição do popover.
61
+
62
+ #### Returns
63
+
64
+ Type: `Promise<void>`
65
+
66
+
67
+
68
+
69
+ ## Dependencies
70
+
71
+ ### Used by
72
+
73
+ - [filter-column](../ez-grid/subcomponents)
74
+
75
+ ### Graph
76
+ ```mermaid
77
+ graph TD;
78
+ filter-column --> ez-popover
79
+ style ez-popover fill:#f9f,stroke:#333,stroke-width:4px
80
+ ```
81
+
82
+ ----------------------------------------------
83
+
84
+
@@ -0,0 +1,28 @@
1
+ # ez-popup
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ------------ | ------------- | -------------------------------------------------- | ---------------------------------------------------------- | ----------- |
12
+ | `ezTitle` | `ez-title` | Texto a ser apresentado como título do componente. | `string` | `undefined` |
13
+ | `heightMode` | `height-mode` | Define altura do componente. | `"auto" \| "full"` | `"full"` |
14
+ | `opened` | `opened` | Define se o ez-popover está aberto. | `boolean` | `false` |
15
+ | `size` | `size` | Define a largura do ez-popup. | `"large" \| "medium" \| "small" \| "x-large" \| "x-small"` | `"medium"` |
16
+ | `useHeader` | `use-header` | Define se o componente utilizará cabeçalho. | `boolean` | `true` |
17
+
18
+
19
+ ## Events
20
+
21
+ | Event | Description | Type |
22
+ | -------------- | ------------------------------------------------------ | ------------------ |
23
+ | `ezClosePopup` | Emitido ao clicar no botão de fechar (onEzClosePopup). | `CustomEvent<any>` |
24
+
25
+
26
+ ----------------------------------------------
27
+
28
+
@@ -0,0 +1,28 @@
1
+ # ez-radio-button
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ----------- | ----------- | -------------------------------------------------- | ---------------------------- | ------------ |
12
+ | `direction` | `direction` | Define a direção dos itens. | `"horizontal" \| "vertical"` | `"vertical"` |
13
+ | `enabled` | `enabled` | Se false o usuário não pode interagir com o campo. | `boolean` | `true` |
14
+ | `label` | `label` | Texto a ser apresentado como título do campo. | `string` | `undefined` |
15
+ | `options` | -- | Define as opções que serão apresentadas | `Radio[]` | `[]` |
16
+ | `value` | `value` | Define o valor do campo. | `any` | `undefined` |
17
+
18
+
19
+ ## Events
20
+
21
+ | Event | Description | Type |
22
+ | ---------- | ------------------------------------------------------ | ------------------ |
23
+ | `ezChange` | Emitido quando acontece a alteração de valor do campo. | `CustomEvent<any>` |
24
+
25
+
26
+ ----------------------------------------------
27
+
28
+
@@ -0,0 +1,32 @@
1
+ # ez-scroller
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | -------------- | --------------- | -------------------------------------- | -------------------------------------------------------------------------------------- | ----------- |
12
+ | `activeShadow` | `active-shadow` | Define se haverá efeito de sombreado. | `boolean` | `false` |
13
+ | `direction` | `direction` | Define a direção em que haverá scroll. | `EzScrollDirection.BOTH \| EzScrollDirection.HORIZONTAL \| EzScrollDirection.VERTICAL` | `undefined` |
14
+ | `locked` | `locked` | Define se o `scroll` estará bloqueado. | `boolean` | `false` |
15
+
16
+
17
+ ## Dependencies
18
+
19
+ ### Used by
20
+
21
+ - [ez-guide-navigator](../ez-guide-navigator)
22
+
23
+ ### Graph
24
+ ```mermaid
25
+ graph TD;
26
+ ez-guide-navigator --> ez-scroller
27
+ style ez-scroller fill:#f9f,stroke:#333,stroke-width:4px
28
+ ```
29
+
30
+ ----------------------------------------------
31
+
32
+
@@ -0,0 +1,111 @@
1
+ # ez-search
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | --------------------- | ------------------------- | ---------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- | ----------- |
12
+ | `canShowError` | `can-show-error` | Se false deixa de exibir a mensagem de erro dentro do campo. | `boolean` | `true` |
13
+ | `enabled` | `enabled` | Se false o usuário não pode interagir com o campo. | `boolean` | `true` |
14
+ | `errorMessage` | `error-message` | Define uma mensagem de orientação ao usuário, colocando o campo em modo inválido. | `string` | `undefined` |
15
+ | `hideErrorOnFocusOut` | `hide-error-on-focus-out` | Quando verdadeiro deixa de exibir a mensagem de erro (se existente) quando focar em um elemento diferente. | `boolean` | `true` |
16
+ | `isTextSearch` | `is-text-search` | Informa se a pesquisa é do tipo texto. | `boolean` | `false` |
17
+ | `label` | `label` | Texto a ser apresentado como título do campo. | `string` | `undefined` |
18
+ | `listOptionsPosition` | -- | Define um posicionamento fixo para a lista de opções do CheckBox. | `IEzCheckBoxListPosition` | `undefined` |
19
+ | `mode` | `mode` | Define o tamanho do campo. | `"regular" \| "slim"` | `"regular"` |
20
+ | `optionLoader` | -- | Carrega as opções dinamicamente. | `(argument: ISearchArgument) => IOption \| IOption[] \| Promise<IOption[]>` | `undefined` |
21
+ | `showOptionValue` | `show-option-value` | Se false cada opção na lista deve exibir somente o `label`. | `boolean` | `true` |
22
+ | `showSelectedValue` | `show-selected-value` | Se false a opção selecionada deve exibir somente o `label`. | `boolean` | `true` |
23
+ | `suppressEmptyOption` | `suppress-empty-option` | Se true remove a opção vazia da lista. | `boolean` | `false` |
24
+ | `value` | `value` | Define o valor do campo. | `IOption \| string` | `undefined` |
25
+
26
+
27
+ ## Events
28
+
29
+ | Event | Description | Type |
30
+ | ---------- | ------------------------------------------------------ | ---------------------- |
31
+ | `ezChange` | Emitido quando acontece a alteração de valor do campo. | `CustomEvent<IOption>` |
32
+
33
+
34
+ ## Methods
35
+
36
+ ### `clearValue() => Promise<void>`
37
+
38
+ Limpa o valor do campo de pesquisa
39
+
40
+ #### Returns
41
+
42
+ Type: `Promise<void>`
43
+
44
+
45
+
46
+ ### `getValueAsync() => Promise<unknown>`
47
+
48
+
49
+
50
+ #### Returns
51
+
52
+ Type: `Promise<unknown>`
53
+
54
+
55
+
56
+ ### `isInvalid() => Promise<boolean>`
57
+
58
+ Retorna se o conteúdo é inválido.
59
+
60
+ #### Returns
61
+
62
+ Type: `Promise<boolean>`
63
+
64
+
65
+
66
+ ### `setBlur() => Promise<void>`
67
+
68
+ Remove o foco do campo.
69
+
70
+ #### Returns
71
+
72
+ Type: `Promise<void>`
73
+
74
+
75
+
76
+ ### `setFocus() => Promise<void>`
77
+
78
+ Aplica o foco no campo.
79
+
80
+ #### Returns
81
+
82
+ Type: `Promise<void>`
83
+
84
+
85
+
86
+
87
+ ## Dependencies
88
+
89
+ ### Used by
90
+
91
+ - [ez-form-view](../ez-form-view)
92
+ - [ez-multi-selection-list](../ez-multi-selection-list)
93
+
94
+ ### Depends on
95
+
96
+ - [ez-combo-box](../ez-combo-box)
97
+
98
+ ### Graph
99
+ ```mermaid
100
+ graph TD;
101
+ ez-search --> ez-combo-box
102
+ ez-combo-box --> ez-text-input
103
+ ez-combo-box --> ez-icon
104
+ ez-form-view --> ez-search
105
+ ez-multi-selection-list --> ez-search
106
+ style ez-search fill:#f9f,stroke:#333,stroke-width:4px
107
+ ```
108
+
109
+ ----------------------------------------------
110
+
111
+
@@ -0,0 +1,30 @@
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
+ ## Dependencies
16
+
17
+ ### Used by
18
+
19
+ - [ez-guide-navigator](../ez-guide-navigator)
20
+
21
+ ### Graph
22
+ ```mermaid
23
+ graph TD;
24
+ ez-guide-navigator --> ez-sidebar-button
25
+ style ez-sidebar-button fill:#f9f,stroke:#333,stroke-width:4px
26
+ ```
27
+
28
+ ----------------------------------------------
29
+
30
+
@@ -0,0 +1,22 @@
1
+ # ez-skeleton
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | -------------- | --------------- | ------------------------------------------------- | ----------------------------------------------------- | ------------ |
12
+ | `animation` | `animation` | Animation type | `"false" \| "progress" \| "progress-dark" \| "pulse"` | `'progress'` |
13
+ | `count` | `count` | Number of rows of current skeleton type | `number` | `1` |
14
+ | `height` | `height` | Height of the skeleton ex. 100px, 100%, auto etc. | `string` | `null` |
15
+ | `marginBottom` | `margin-bottom` | MarginBottom of the skeleton ex. 10px, 0 etc. | `string` | `null` |
16
+ | `variant` | `variant` | Variant of the skeleton - circle or row | `"circle" \| "rect" \| "text"` | `'text'` |
17
+ | `width` | `width` | Width of the skeleton ex. 100px, 100%, auto etc. | `string` | `null` |
18
+
19
+
20
+ ----------------------------------------------
21
+
22
+
@@ -0,0 +1,44 @@
1
+ # ez-tabselector
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | --------------- | ---------------- | ------------------------------------------------------------------------------------------------------------- | ----------------- | ----------- |
12
+ | `selectedIndex` | `selected-index` | Define o index da aba selecionada. | `number` | `undefined` |
13
+ | `selectedTab` | `selected-tab` | Define a aba selecionada. | `string` | `undefined` |
14
+ | `tabs` | `tabs` | Define o nome das abas do componente. Podendo serem separadas por vírgula "," ou em um Array de configuração. | `Tab[] \| string` | `undefined` |
15
+
16
+
17
+ ## Events
18
+
19
+ | Event | Description | Type |
20
+ | ---------- | ----------------------------------------------------------- | ------------------ |
21
+ | `ezChange` | Emitido quando acontece a alteração de valor do componente. | `CustomEvent<Tab>` |
22
+
23
+
24
+ ## Dependencies
25
+
26
+ ### Used by
27
+
28
+ - [ez-form](../ez-form)
29
+
30
+ ### Depends on
31
+
32
+ - [ez-icon](../ez-icon)
33
+
34
+ ### Graph
35
+ ```mermaid
36
+ graph TD;
37
+ ez-tabselector --> ez-icon
38
+ ez-form --> ez-tabselector
39
+ style ez-tabselector fill:#f9f,stroke:#333,stroke-width:4px
40
+ ```
41
+
42
+ ----------------------------------------------
43
+
44
+