@sankhyalabs/ezui-docs 0.0.0-feat-dev-kb-4158.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 +112 -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 +81 -0
  20. package/components/ez-form-view/readme.md +90 -0
  21. package/components/ez-grid/readme.md +153 -0
  22. package/components/ez-grid/subcomponents/readme.md +88 -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 +74 -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 +109 -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,74 @@
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
+ | `options` | -- | Opções de filtros a serem exibidas na listagem. | `IMultiSelectionOption[]` | `undefined` |
15
+ | `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` |
16
+
17
+
18
+ ## Events
19
+
20
+ | Event | Description | Type |
21
+ | ----------------------- | ----------------------------------------------------------------------- | -------------------------------------- |
22
+ | `changeFilteredOptions` | Evento que informa que a lista de opções selecionadas sofreu alteração. | `CustomEvent<IMultiSelectionOption[]>` |
23
+
24
+
25
+ ## Methods
26
+
27
+ ### `clearFilteredOptions() => Promise<void>`
28
+
29
+
30
+
31
+ #### Returns
32
+
33
+ Type: `Promise<void>`
34
+
35
+
36
+
37
+
38
+ ## Dependencies
39
+
40
+ ### Used by
41
+
42
+ - [filter-column](../ez-grid/subcomponents)
43
+
44
+ ### Depends on
45
+
46
+ - [ez-check](../ez-check)
47
+ - [ez-list](../ez-list)
48
+ - [ez-icon](../ez-icon)
49
+ - [multi-selection-box-message](subcomponents)
50
+ - [ez-filter-input](../ez-filter-input)
51
+ - [ez-search](../ez-search)
52
+
53
+ ### Graph
54
+ ```mermaid
55
+ graph TD;
56
+ ez-multi-selection-list --> ez-check
57
+ ez-multi-selection-list --> ez-list
58
+ ez-multi-selection-list --> ez-icon
59
+ ez-multi-selection-list --> multi-selection-box-message
60
+ ez-multi-selection-list --> ez-filter-input
61
+ ez-multi-selection-list --> ez-search
62
+ ez-list --> ez-check
63
+ ez-filter-input --> ez-text-input
64
+ ez-filter-input --> ez-icon
65
+ ez-search --> ez-combo-box
66
+ ez-combo-box --> ez-text-input
67
+ ez-combo-box --> ez-icon
68
+ filter-column --> ez-multi-selection-list
69
+ style ez-multi-selection-list fill:#f9f,stroke:#333,stroke-width:4px
70
+ ```
71
+
72
+ ----------------------------------------------
73
+
74
+
@@ -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,109 @@
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
+ | `label` | `label` | Texto a ser apresentado como título do campo. | `string` | `undefined` |
16
+ | `listOptionsPosition` | -- | Define um posicionamento fixo para a lista de opções do CheckBox. | `IEzCheckBoxListPosition` | `undefined` |
17
+ | `mode` | `mode` | Define o tamanho do campo. | `"regular" \| "slim"` | `"regular"` |
18
+ | `optionLoader` | -- | Carrega as opções dinamicamente. | `(argument: ISearchArgument) => IOption \| IOption[] \| Promise<IOption[]>` | `undefined` |
19
+ | `showOptionValue` | `show-option-value` | Se false cada opção na lista deve exibir somente o `label`. | `boolean` | `true` |
20
+ | `showSelectedValue` | `show-selected-value` | Se false a opção selecionada deve exibir somente o `label`. | `boolean` | `true` |
21
+ | `suppressEmptyOption` | `suppress-empty-option` | Se true remove a opção vazia da lista. | `boolean` | `false` |
22
+ | `value` | `value` | Define o valor do campo. | `IOption \| string` | `undefined` |
23
+
24
+
25
+ ## Events
26
+
27
+ | Event | Description | Type |
28
+ | ---------- | ------------------------------------------------------ | ---------------------- |
29
+ | `ezChange` | Emitido quando acontece a alteração de valor do campo. | `CustomEvent<IOption>` |
30
+
31
+
32
+ ## Methods
33
+
34
+ ### `clearValue() => Promise<void>`
35
+
36
+ Limpa o valor do campo de pesquisa
37
+
38
+ #### Returns
39
+
40
+ Type: `Promise<void>`
41
+
42
+
43
+
44
+ ### `getValueAsync() => Promise<unknown>`
45
+
46
+
47
+
48
+ #### Returns
49
+
50
+ Type: `Promise<unknown>`
51
+
52
+
53
+
54
+ ### `isInvalid() => Promise<boolean>`
55
+
56
+ Retorna se o conteúdo é inválido.
57
+
58
+ #### Returns
59
+
60
+ Type: `Promise<boolean>`
61
+
62
+
63
+
64
+ ### `setBlur() => Promise<void>`
65
+
66
+ Remove o foco do campo.
67
+
68
+ #### Returns
69
+
70
+ Type: `Promise<void>`
71
+
72
+
73
+
74
+ ### `setFocus() => Promise<void>`
75
+
76
+ Aplica o foco no campo.
77
+
78
+ #### Returns
79
+
80
+ Type: `Promise<void>`
81
+
82
+
83
+
84
+
85
+ ## Dependencies
86
+
87
+ ### Used by
88
+
89
+ - [ez-form-view](../ez-form-view)
90
+ - [ez-multi-selection-list](../ez-multi-selection-list)
91
+
92
+ ### Depends on
93
+
94
+ - [ez-combo-box](../ez-combo-box)
95
+
96
+ ### Graph
97
+ ```mermaid
98
+ graph TD;
99
+ ez-search --> ez-combo-box
100
+ ez-combo-box --> ez-text-input
101
+ ez-combo-box --> ez-icon
102
+ ez-form-view --> ez-search
103
+ ez-multi-selection-list --> ez-search
104
+ style ez-search fill:#f9f,stroke:#333,stroke-width:4px
105
+ ```
106
+
107
+ ----------------------------------------------
108
+
109
+
@@ -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
+