@sankhyalabs/ezui-docs 0.0.0-bugfix-dev-KB-37979.0 → 0.0.0-bugfix-dev-KB-9999.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.
@@ -28,7 +28,6 @@
28
28
  ### Used by
29
29
 
30
30
  - [ez-breadcrumb](../ez-breadcrumb)
31
- - [ez-split-button](../ez-split-button)
32
31
 
33
32
  ### Depends on
34
33
 
@@ -39,7 +38,6 @@
39
38
  graph TD;
40
39
  ez-dropdown --> ez-icon
41
40
  ez-breadcrumb --> ez-dropdown
42
- ez-split-button --> ez-dropdown
43
41
  style ez-dropdown fill:#f9f,stroke:#333,stroke-width:4px
44
42
  ```
45
43
 
@@ -34,7 +34,6 @@
34
34
  - [ez-modal-container](../ez-modal-container)
35
35
  - [ez-multi-selection-list](../ez-multi-selection-list)
36
36
  - [ez-search](../ez-search)
37
- - [ez-split-button](../ez-split-button)
38
37
  - [ez-tabselector](../ez-tabselector)
39
38
  - [ez-time-input](../ez-time-input)
40
39
  - [ez-tree](../ez-tree)
@@ -58,7 +57,6 @@ graph TD;
58
57
  ez-modal-container --> ez-icon
59
58
  ez-multi-selection-list --> ez-icon
60
59
  ez-search --> ez-icon
61
- ez-split-button --> ez-icon
62
60
  ez-tabselector --> ez-icon
63
61
  ez-time-input --> ez-icon
64
62
  ez-tree --> ez-icon
@@ -11,7 +11,6 @@
11
11
  | -------------- | --------------- | ----------------------------------- | --------- | ----------- |
12
12
  | `enableExpand` | `enable-expand` | Define se o item pode ser expandido | `boolean` | `true` |
13
13
  | `label` | `label` | Define um título para o painel. | `string` | `undefined` |
14
- | `size` | `size` | Define o tamanho inicial do painel. | `string` | `undefined` |
15
14
 
16
15
 
17
16
  ## Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sankhyalabs/ezui-docs",
3
- "version": "0.0.0-bugfix-dev-KB-37979.0",
3
+ "version": "0.0.0-bugfix-dev-KB-9999.0",
4
4
  "description": "Documentação da biblioteca de componentes Sankhya.",
5
5
  "main": "",
6
6
  "files": [
@@ -1,83 +0,0 @@
1
- # ez-split-button
2
-
3
-
4
-
5
- <!-- Auto Generated Below -->
6
-
7
-
8
- ## Properties
9
-
10
- | Property | Attribute | Description | Type | Default |
11
- | ------------ | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------- | --------------- |
12
- | `enabled` | `enabled` | Se false o usuário não pode interagir com o botão. | `boolean` | `true` |
13
- | `iconName` | `icon-name` | Define o ícone a ser usado da biblioteca de ícones: [ez-icons](https://gilded-nasturtium-6b64dd.netlify.app/docs/components/layout-doc/icons/) | `string` | `undefined` |
14
- | `image` | `image` | Define o caminho usado nos modos `icon-only` e `icon-left` para imagens não contempladas na biblioteca de ícones. | `string` | `undefined` |
15
- | `items` | -- | Define o conteúdo do dropdown. | `IDropdownItem[]` | `undefined` |
16
- | `label` | `label` | Texto a ser apresentado como label do botão. | `string` | `undefined` |
17
- | `leftTitle` | `left-title` | Texto a ser apresentado como title do botão principal | `string` | `undefined` |
18
- | `mode` | `mode` | Define o modo de uso do botão. | `"default" \| "icon-left" \| "icon-only"` | `'default'` |
19
- | `rightTitle` | `right-title` | Texto a ser apresentado como title do botão dropdown | `string` | `'Mais opções'` |
20
- | `size` | `size` | Define o tamanho do ez-split-button. | `"large" \| "medium"` | `'medium'` |
21
-
22
-
23
- ## Events
24
-
25
- | Event | Description | Type |
26
- | ------------------------ | ------------------------------------------------------------- | --------------------------------- |
27
- | `buttonClick` | Emitido quando o botão principal é clicado | `CustomEvent<void>` |
28
- | `dropdownItemClick` | Emitido quando um item do dropdown é clicado | `CustomEvent<IDropdownItem>` |
29
- | `dropdownSubActionClick` | Emitido quando uma subAction de um item do dropdown é clicada | `CustomEvent<IDropdownSubAction>` |
30
-
31
-
32
- ## Methods
33
-
34
- ### `setBlur() => Promise<void>`
35
-
36
- Remove o foco de ambos os botões.
37
-
38
- #### Returns
39
-
40
- Type: `Promise<void>`
41
-
42
-
43
-
44
- ### `setLeftButtonFocus() => Promise<void>`
45
-
46
- Aplica o foco no botão principal.
47
-
48
- #### Returns
49
-
50
- Type: `Promise<void>`
51
-
52
-
53
-
54
- ### `setRightButtonFocus() => Promise<void>`
55
-
56
- Aplica o foco no botão do dropdown.
57
-
58
- #### Returns
59
-
60
- Type: `Promise<void>`
61
-
62
-
63
-
64
-
65
- ## Dependencies
66
-
67
- ### Depends on
68
-
69
- - [ez-icon](../ez-icon)
70
- - [ez-dropdown](../ez-dropdown)
71
-
72
- ### Graph
73
- ```mermaid
74
- graph TD;
75
- ez-split-button --> ez-icon
76
- ez-split-button --> ez-dropdown
77
- ez-dropdown --> ez-icon
78
- style ez-split-button fill:#f9f,stroke:#333,stroke-width:4px
79
- ```
80
-
81
- ----------------------------------------------
82
-
83
-