@sankhyalabs/sankhyablocks-docs 8.16.0-dev.113 → 8.16.0-dev.115

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 (21) hide show
  1. package/components/snk-crud/readme.md +8 -3
  2. package/components/snk-crud/subcomponents/readme.md +8 -3
  3. package/components/snk-filter-bar/filter-modal/readme.md +15 -12
  4. package/components/snk-filter-bar/filter-modal/subcomponents/snk-default-filter/readme.md +38 -0
  5. package/components/snk-form/readme.md +8 -3
  6. package/components/snk-form-config/config-header/configs-button/readme.md +40 -0
  7. package/components/snk-form-config/config-header/readme.md +47 -0
  8. package/components/snk-form-config/field-item/field-config/readme.md +53 -0
  9. package/components/snk-form-config/field-item/readme.md +48 -0
  10. package/components/snk-form-config/fields-layout/readme.md +64 -0
  11. package/components/snk-form-config/fields-selector/readme.md +44 -0
  12. package/components/snk-form-config/guides-configurator/readme.md +42 -0
  13. package/components/snk-form-config/readme.md +13 -7
  14. package/components/snk-personalized-filter/readme.md +8 -7
  15. package/components/snk-personalized-filter/subcomponents/snk-expression-group/readme.md +8 -7
  16. package/components/snk-personalized-filter/subcomponents/snk-expression-item/readme.md +7 -6
  17. package/components/snk-personalized-filter/subcomponents/snk-filter-assistent-mode/readme.md +8 -7
  18. package/package.json +1 -1
  19. package/components/snk-form-config/subcomponents/snk-config-options/readme.md +0 -40
  20. package/components/snk-form-config/subcomponents/snk-field-config/readme.md +0 -41
  21. package/components/snk-form-config/subcomponents/snk-tab-config/readme.md +0 -46
@@ -234,9 +234,14 @@ graph TD;
234
234
  snk-simple-crud --> taskbar-actions-button
235
235
  snk-configurator --> snk-layout-form-config
236
236
  snk-layout-form-config --> snk-view-representation
237
- snk-form-config --> snk-field-config
238
- snk-form-config --> snk-config-options
239
- snk-form-config --> snk-tab-config
237
+ snk-form-config --> config-header
238
+ snk-form-config --> guides-configurator
239
+ snk-form-config --> fields-layout
240
+ snk-form-config --> fields-selector
241
+ config-header --> configs-button
242
+ fields-layout --> field-item
243
+ field-item --> field-config
244
+ fields-selector --> field-item
240
245
  style snk-crud fill:#f9f,stroke:#333,stroke-width:4px
241
246
  ```
242
247
 
@@ -172,9 +172,14 @@ graph TD;
172
172
  snk-simple-crud --> taskbar-actions-button
173
173
  snk-configurator --> snk-layout-form-config
174
174
  snk-layout-form-config --> snk-view-representation
175
- snk-form-config --> snk-field-config
176
- snk-form-config --> snk-config-options
177
- snk-form-config --> snk-tab-config
175
+ snk-form-config --> config-header
176
+ snk-form-config --> guides-configurator
177
+ snk-form-config --> fields-layout
178
+ snk-form-config --> fields-selector
179
+ config-header --> configs-button
180
+ fields-layout --> field-item
181
+ field-item --> field-config
182
+ fields-selector --> field-item
178
183
  snk-crud --> snk-guides-viewer
179
184
  style snk-guides-viewer fill:#f9f,stroke:#333,stroke-width:4px
180
185
  ```
@@ -7,18 +7,19 @@
7
7
 
8
8
  ## Properties
9
9
 
10
- | Property | Attribute | Description | Type | Default |
11
- | --------------------------- | ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------- | ----------- |
12
- | `addPersonalizedFilter` | -- | Ação executada ao adicionar um filtro personalizado | `() => void` | `undefined` |
13
- | `applyFilters` | -- | Ação executada ao aplicar os filtros | `(updatedFilterConfig: SnkFilterItemConfig[]) => void` | `undefined` |
14
- | `closeModal` | -- | Ação disparada ao fechar o modal | `() => void` | `undefined` |
15
- | `configName` | `config-name` | Nome da configuração. Serve para distinguir várias instâncias do componente. | `string` | `undefined` |
16
- | `deletePersonalizedFilter` | -- | Ação executada ao deletar um filtro personalizado | `(filter: IPersonalizedFilter, configName: string) => void` | `undefined` |
17
- | `disablePersonalizedFilter` | `disable-personalized-filter` | Desabilita a apresentação da opção de filtros personalizados na filter bar (chip de filtros) e no modal lateral de filtros (container de filtros personalizados). | `boolean` | `undefined` |
18
- | `editPersonalizedFilter` | -- | Ação executada ao editar um filtro personalizado | `(id: string) => void` | `undefined` |
19
- | `filters` | -- | Filtros a serem apresentados | `SnkFilterItemConfig[]` | `undefined` |
20
- | `filtersToDelete` | -- | Guarda filtros a serem deletados no Apply do modal | `IPersonalizedFilter[]` | `[]` |
21
- | `getMessage` | -- | Usado pra flexibilizar os verbetes e mensagens de acordo com o SnkMessageBuilder. | `(key: string, props?: any) => string` | `undefined` |
10
+ | Property | Attribute | Description | Type | Default |
11
+ | --------------------------- | ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------- | ----------- |
12
+ | `addPersonalizedFilter` | -- | Ação executada ao adicionar um filtro personalizado | `(isDefault?: boolean) => void` | `undefined` |
13
+ | `applyFilters` | -- | Ação executada ao aplicar os filtros | `(updatedFilterConfig: SnkFilterItemConfig[]) => void` | `undefined` |
14
+ | `closeModal` | -- | Ação disparada ao fechar o modal | `() => void` | `undefined` |
15
+ | `configName` | `config-name` | Nome da configuração. Serve para distinguir várias instâncias do componente. | `string` | `undefined` |
16
+ | `deletePersonalizedFilter` | -- | Ação executada ao deletar um filtro personalizado | `(filter: IPersonalizedFilter, configName: string, isDefault?: boolean) => void` | `undefined` |
17
+ | `disablePersonalizedFilter` | `disable-personalized-filter` | Desabilita a apresentação da opção de filtros personalizados na filter bar (chip de filtros) e no modal lateral de filtros (container de filtros personalizados). | `boolean` | `undefined` |
18
+ | `editPersonalizedFilter` | -- | Ação executada ao editar um filtro personalizado | `(id: string, isDefault?: boolean) => void` | `undefined` |
19
+ | `filterDefaultToDelete` | -- | Guarda o filtro a ser deletado no Apply do modal | `SnkFilterItemConfig` | `undefined` |
20
+ | `filters` | -- | Filtros a serem apresentados | `SnkFilterItemConfig[]` | `undefined` |
21
+ | `filtersToDelete` | -- | Guarda filtros a serem deletados no Apply do modal | `IPersonalizedFilter[]` | `[]` |
22
+ | `getMessage` | -- | Usado pra flexibilizar os verbetes e mensagens de acordo com o SnkMessageBuilder. | `(key: string, props?: any) => string` | `undefined` |
22
23
 
23
24
 
24
25
  ## Dependencies
@@ -26,11 +27,13 @@
26
27
  ### Depends on
27
28
 
28
29
  - [snk-filter-modal-item](subcomponents)
30
+ - [snk-default-filter](./subcomponents/snk-default-filter)
29
31
 
30
32
  ### Graph
31
33
  ```mermaid
32
34
  graph TD;
33
35
  snk-filter-modal --> snk-filter-modal-item
36
+ snk-filter-modal --> snk-default-filter
34
37
  style snk-filter-modal fill:#f9f,stroke:#333,stroke-width:4px
35
38
  ```
36
39
 
@@ -0,0 +1,38 @@
1
+ # snk-default-filter
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ------------------ | -------------------- | --------------------------------------------------------------------------------- | -------------------------------------- | ----------- |
12
+ | `getMessage` | -- | Usado pra flexibilizar os verbetes e mensagens de acordo com o SnkMessageBuilder. | `(key: string, props?: any) => string` | `undefined` |
13
+ | `hasDefaultFilter` | `has-default-filter` | Informa se já existe um filtro padrão criado. | `boolean` | `false` |
14
+
15
+
16
+ ## Events
17
+
18
+ | Event | Description | Type |
19
+ | ---------------- | ----------- | --------------------------------------------------------------------------------------------------- |
20
+ | `actionSelected` | | `CustomEvent<ActionDefaultFilter.CREATE \| ActionDefaultFilter.EDIT \| ActionDefaultFilter.REMOVE>` |
21
+
22
+
23
+ ## Dependencies
24
+
25
+ ### Used by
26
+
27
+ - [snk-filter-modal](../..)
28
+
29
+ ### Graph
30
+ ```mermaid
31
+ graph TD;
32
+ snk-filter-modal --> snk-default-filter
33
+ style snk-default-filter fill:#f9f,stroke:#333,stroke-width:4px
34
+ ```
35
+
36
+ ----------------------------------------------
37
+
38
+
@@ -78,9 +78,14 @@ Type: `Promise<void>`
78
78
  ```mermaid
79
79
  graph TD;
80
80
  snk-form --> snk-form-config
81
- snk-form-config --> snk-field-config
82
- snk-form-config --> snk-config-options
83
- snk-form-config --> snk-tab-config
81
+ snk-form-config --> config-header
82
+ snk-form-config --> guides-configurator
83
+ snk-form-config --> fields-layout
84
+ snk-form-config --> fields-selector
85
+ config-header --> configs-button
86
+ fields-layout --> field-item
87
+ field-item --> field-config
88
+ fields-selector --> field-item
84
89
  style snk-form fill:#f9f,stroke:#333,stroke-width:4px
85
90
  ```
86
91
 
@@ -0,0 +1,40 @@
1
+ # configs-button
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ----------------- | ------------- | ----------- | ------------------- | ----------- |
12
+ | `configOptions` | -- | | `IUserConfig[]` | `[]` |
13
+ | `hasChanges` | `has-changes` | | `boolean` | `false` |
14
+ | `messagesBuilder` | -- | | `SnkMessageBuilder` | `undefined` |
15
+ | `selectedConfig` | -- | | `IUserConfig` | `undefined` |
16
+
17
+
18
+ ## Events
19
+
20
+ | Event | Description | Type |
21
+ | -------------------------- | ----------- | -------------------------- |
22
+ | `formConfigOptionSelected` | | `CustomEvent<IUserConfig>` |
23
+
24
+
25
+ ## Dependencies
26
+
27
+ ### Used by
28
+
29
+ - [config-header](..)
30
+
31
+ ### Graph
32
+ ```mermaid
33
+ graph TD;
34
+ config-header --> configs-button
35
+ style configs-button fill:#f9f,stroke:#333,stroke-width:4px
36
+ ```
37
+
38
+ ----------------------------------------------
39
+
40
+
@@ -0,0 +1,47 @@
1
+ # config-header
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | --------------------- | ----------------------- | ----------- | ------------------- | ----------- |
12
+ | `configOptions` | -- | | `IUserConfig[]` | `[]` |
13
+ | `hasChanges` | `has-changes` | | `boolean` | `false` |
14
+ | `messagesBuilder` | -- | | `SnkMessageBuilder` | `undefined` |
15
+ | `optionConfigChanged` | `option-config-changed` | | `boolean` | `false` |
16
+ | `selectedConfig` | -- | | `IUserConfig` | `undefined` |
17
+
18
+
19
+ ## Events
20
+
21
+ | Event | Description | Type |
22
+ | ------------- | ----------- | ------------------- |
23
+ | `configClose` | | `CustomEvent<void>` |
24
+ | `saveConfig` | | `CustomEvent<void>` |
25
+
26
+
27
+ ## Dependencies
28
+
29
+ ### Used by
30
+
31
+ - [snk-form-config](..)
32
+
33
+ ### Depends on
34
+
35
+ - [configs-button](configs-button)
36
+
37
+ ### Graph
38
+ ```mermaid
39
+ graph TD;
40
+ config-header --> configs-button
41
+ snk-form-config --> config-header
42
+ style config-header fill:#f9f,stroke:#333,stroke-width:4px
43
+ ```
44
+
45
+ ----------------------------------------------
46
+
47
+
@@ -0,0 +1,53 @@
1
+ # field-config
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ----------------- | -------------- | ----------- | ------------------- | ----------- |
12
+ | `dataUnit` | -- | | `DataUnit` | `undefined` |
13
+ | `fieldConfig` | `field-config` | | `IFieldConfig` | `undefined` |
14
+ | `fieldDescriptor` | -- | | `FieldDescriptor` | `undefined` |
15
+ | `messagesBuilder` | -- | | `SnkMessageBuilder` | `undefined` |
16
+
17
+
18
+ ## Events
19
+
20
+ | Event | Description | Type |
21
+ | -------------------- | ----------- | --------------------------- |
22
+ | `fieldConfigChanged` | | `CustomEvent<IFieldConfig>` |
23
+
24
+
25
+ ## Methods
26
+
27
+ ### `show(_anchorElement: HTMLElement) => Promise<void>`
28
+
29
+
30
+
31
+ #### Returns
32
+
33
+ Type: `Promise<void>`
34
+
35
+
36
+
37
+
38
+ ## Dependencies
39
+
40
+ ### Used by
41
+
42
+ - [field-item](..)
43
+
44
+ ### Graph
45
+ ```mermaid
46
+ graph TD;
47
+ field-item --> field-config
48
+ style field-config fill:#f9f,stroke:#333,stroke-width:4px
49
+ ```
50
+
51
+ ----------------------------------------------
52
+
53
+
@@ -0,0 +1,48 @@
1
+ # field-item
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ----------------- | ------------------ | ----------- | ------------------- | ----------- |
12
+ | `dataUnit` | -- | | `DataUnit` | `undefined` |
13
+ | `fieldConfig` | `field-config` | | `IFieldConfig` | `undefined` |
14
+ | `messagesBuilder` | -- | | `SnkMessageBuilder` | `undefined` |
15
+ | `onLayoutConfig` | `on-layout-config` | | `boolean` | `false` |
16
+
17
+
18
+ ## Events
19
+
20
+ | Event | Description | Type |
21
+ | --------------------- | ----------- | --------------------------- |
22
+ | `addFieldToGuide` | | `CustomEvent<IFieldConfig>` |
23
+ | `setFieldAsAvailable` | | `CustomEvent<IFieldConfig>` |
24
+
25
+
26
+ ## Dependencies
27
+
28
+ ### Used by
29
+
30
+ - [fields-layout](../fields-layout)
31
+ - [fields-selector](../fields-selector)
32
+
33
+ ### Depends on
34
+
35
+ - [field-config](field-config)
36
+
37
+ ### Graph
38
+ ```mermaid
39
+ graph TD;
40
+ field-item --> field-config
41
+ fields-layout --> field-item
42
+ fields-selector --> field-item
43
+ style field-item fill:#f9f,stroke:#333,stroke-width:4px
44
+ ```
45
+
46
+ ----------------------------------------------
47
+
48
+
@@ -0,0 +1,64 @@
1
+ # fields-layout
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ----------------- | --------- | ----------- | ------------------- | ----------- |
12
+ | `dataUnit` | -- | | `DataUnit` | `undefined` |
13
+ | `groupsList` | -- | | `IGroupConfig[]` | `[]` |
14
+ | `guideNames` | -- | | `string[]` | `[]` |
15
+ | `messagesBuilder` | -- | | `SnkMessageBuilder` | `undefined` |
16
+ | `selectedGuide` | -- | | `IGuideConfig` | `undefined` |
17
+
18
+
19
+ ## Events
20
+
21
+ | Event | Description | Type |
22
+ | ------------------------- | ----------- | ----------------------------- |
23
+ | `guideRenamed` | | `CustomEvent<string>` |
24
+ | `isEditingGroupName` | | `CustomEvent<boolean>` |
25
+ | `isEditingGuideName` | | `CustomEvent<boolean>` |
26
+ | `layoutChanged` | | `CustomEvent<IGroupConfig[]>` |
27
+ | `setFieldListAsAvailable` | | `CustomEvent<IFieldConfig[]>` |
28
+
29
+
30
+ ## Methods
31
+
32
+ ### `addFieldToLayout(incomingField: IFieldConfig) => Promise<void>`
33
+
34
+
35
+
36
+ #### Returns
37
+
38
+ Type: `Promise<void>`
39
+
40
+
41
+
42
+
43
+ ## Dependencies
44
+
45
+ ### Used by
46
+
47
+ - [snk-form-config](..)
48
+
49
+ ### Depends on
50
+
51
+ - [field-item](../field-item)
52
+
53
+ ### Graph
54
+ ```mermaid
55
+ graph TD;
56
+ fields-layout --> field-item
57
+ field-item --> field-config
58
+ snk-form-config --> fields-layout
59
+ style fields-layout fill:#f9f,stroke:#333,stroke-width:4px
60
+ ```
61
+
62
+ ----------------------------------------------
63
+
64
+
@@ -0,0 +1,44 @@
1
+ # fields-selector
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ----------------- | --------- | ----------- | ---------------- | ----------- |
12
+ | `availableFields` | -- | | `IFieldConfig[]` | `[]` |
13
+ | `dataUnit` | -- | | `DataUnit` | `undefined` |
14
+
15
+
16
+ ## Events
17
+
18
+ | Event | Description | Type |
19
+ | ------------------ | ----------- | ----------------------------- |
20
+ | `fieldListChanged` | | `CustomEvent<IFieldConfig[]>` |
21
+
22
+
23
+ ## Dependencies
24
+
25
+ ### Used by
26
+
27
+ - [snk-form-config](..)
28
+
29
+ ### Depends on
30
+
31
+ - [field-item](../field-item)
32
+
33
+ ### Graph
34
+ ```mermaid
35
+ graph TD;
36
+ fields-selector --> field-item
37
+ field-item --> field-config
38
+ snk-form-config --> fields-selector
39
+ style fields-selector fill:#f9f,stroke:#333,stroke-width:4px
40
+ ```
41
+
42
+ ----------------------------------------------
43
+
44
+
@@ -0,0 +1,42 @@
1
+ # guides-configurator
2
+
3
+
4
+
5
+ <!-- Auto Generated Below -->
6
+
7
+
8
+ ## Properties
9
+
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ----------------- | --------- | ----------- | ------------------- | ----------- |
12
+ | `guidesList` | -- | | `IGuideConfig[]` | `[]` |
13
+ | `messagesBuilder` | -- | | `SnkMessageBuilder` | `undefined` |
14
+ | `selectedGuide` | -- | | `IGuideConfig` | `undefined` |
15
+
16
+
17
+ ## Events
18
+
19
+ | Event | Description | Type |
20
+ | ------------------ | ----------- | ----------------------------- |
21
+ | `createNewGuide` | | `CustomEvent<void>` |
22
+ | `guideDeleted` | | `CustomEvent<IGuideConfig>` |
23
+ | `guideListChanged` | | `CustomEvent<IGuideConfig[]>` |
24
+ | `guideSelected` | | `CustomEvent<IGuideConfig>` |
25
+
26
+
27
+ ## Dependencies
28
+
29
+ ### Used by
30
+
31
+ - [snk-form-config](..)
32
+
33
+ ### Graph
34
+ ```mermaid
35
+ graph TD;
36
+ snk-form-config --> guides-configurator
37
+ style guides-configurator fill:#f9f,stroke:#333,stroke-width:4px
38
+ ```
39
+
40
+ ----------------------------------------------
41
+
42
+
@@ -1,4 +1,4 @@
1
- # ez-form-config
1
+ # snk-form-config
2
2
 
3
3
 
4
4
 
@@ -32,16 +32,22 @@
32
32
 
33
33
  ### Depends on
34
34
 
35
- - [snk-field-config](./subcomponents/snk-field-config)
36
- - [snk-config-options](./subcomponents/snk-config-options)
37
- - [snk-tab-config](./subcomponents/snk-tab-config)
35
+ - [config-header](config-header)
36
+ - [guides-configurator](guides-configurator)
37
+ - [fields-layout](fields-layout)
38
+ - [fields-selector](fields-selector)
38
39
 
39
40
  ### Graph
40
41
  ```mermaid
41
42
  graph TD;
42
- snk-form-config --> snk-field-config
43
- snk-form-config --> snk-config-options
44
- snk-form-config --> snk-tab-config
43
+ snk-form-config --> config-header
44
+ snk-form-config --> guides-configurator
45
+ snk-form-config --> fields-layout
46
+ snk-form-config --> fields-selector
47
+ config-header --> configs-button
48
+ fields-layout --> field-item
49
+ field-item --> field-config
50
+ fields-selector --> field-item
45
51
  snk-form --> snk-form-config
46
52
  snk-guides-viewer --> snk-form-config
47
53
  style snk-form-config fill:#f9f,stroke:#333,stroke-width:4px
@@ -7,13 +7,14 @@
7
7
 
8
8
  ## Properties
9
9
 
10
- | Property | Attribute | Description | Type | Default |
11
- | ----------------- | -------------- | -------------------------------------------------------------------------------------- | ------------------- | ----------- |
12
- | `configName` | `config-name` | Nome da configuração. Serve para distinguir várias instâncias do componente. | `string` | `undefined` |
13
- | `entityUri` | `entity-uri` | Responsável por receber a URI da entidade. | `string` | `undefined` |
14
- | `filterId` | `filter-id` | Id do filtro que será carregado. | `string` | `undefined` |
15
- | `messagesBuilder` | -- | Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção. | `SnkMessageBuilder` | `undefined` |
16
- | `resourceID` | `resource-i-d` | Nome da configuração. Serve para distinguir várias instâncias do componente. | `string` | `undefined` |
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ----------------- | ------------------- | -------------------------------------------------------------------------------------- | ------------------- | ----------- |
12
+ | `configName` | `config-name` | Nome da configuração. Serve para distinguir várias instâncias do componente. | `string` | `undefined` |
13
+ | `entityUri` | `entity-uri` | Responsável por receber a URI da entidade. | `string` | `undefined` |
14
+ | `filterId` | `filter-id` | Id do filtro que será carregado. | `string` | `undefined` |
15
+ | `isDefaultFilter` | `is-default-filter` | Define se o filtro em questão é um filtro padrão. | `boolean` | `false` |
16
+ | `messagesBuilder` | -- | Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção. | `SnkMessageBuilder` | `undefined` |
17
+ | `resourceID` | `resource-i-d` | Nome da configuração. Serve para distinguir várias instâncias do componente. | `string` | `undefined` |
17
18
 
18
19
 
19
20
  ## Events
@@ -7,13 +7,14 @@
7
7
 
8
8
  ## Properties
9
9
 
10
- | Property | Attribute | Description | Type | Default |
11
- | ----------------- | -------------- | -------------------------------------------------------------------------------------- | ------------------- | ----------- |
12
- | `entityURI` | `entity-u-r-i` | Identificador da unidade de dados. | `string` | `undefined` |
13
- | `filterId` | `filter-id` | Id do filtro que será carregado. | `string` | `undefined` |
14
- | `group` | -- | Grupo que será representado visualmente pelo componente. | `IExpressionGroup` | `undefined` |
15
- | `messagesBuilder` | -- | Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção. | `SnkMessageBuilder` | `undefined` |
16
- | `parentTop` | `parent-top` | Tamanho do elemento pai do grupo | `number` | `0` |
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ----------------- | ------------------- | -------------------------------------------------------------------------------------- | ------------------- | ----------- |
12
+ | `entityURI` | `entity-u-r-i` | Identificador da unidade de dados. | `string` | `undefined` |
13
+ | `filterId` | `filter-id` | Id do filtro que será carregado. | `string` | `undefined` |
14
+ | `group` | -- | Grupo que será representado visualmente pelo componente. | `IExpressionGroup` | `undefined` |
15
+ | `isDefaultFilter` | `is-default-filter` | Define se o filtro em questão é um filtro padrão. | `boolean` | `false` |
16
+ | `messagesBuilder` | -- | Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção. | `SnkMessageBuilder` | `undefined` |
17
+ | `parentTop` | `parent-top` | Tamanho do elemento pai do grupo | `number` | `0` |
17
18
 
18
19
 
19
20
  ## Events
@@ -7,12 +7,13 @@
7
7
 
8
8
  ## Properties
9
9
 
10
- | Property | Attribute | Description | Type | Default |
11
- | ----------------- | -------------- | -------------------------------------------------------------------------------------- | ------------------- | ----------- |
12
- | `canRemove` | `can-remove` | Controla a exibição do botão Remover. | `boolean` | `true` |
13
- | `entityURI` | `entity-u-r-i` | Identificador da unidade de dados. | `string` | `undefined` |
14
- | `expression` | -- | Expressão que será representada visualmente. | `IExpressionItem` | `undefined` |
15
- | `messagesBuilder` | -- | Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção. | `SnkMessageBuilder` | `undefined` |
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ----------------- | ------------------- | -------------------------------------------------------------------------------------- | ------------------- | ----------- |
12
+ | `canRemove` | `can-remove` | Controla a exibição do botão Remover. | `boolean` | `true` |
13
+ | `entityURI` | `entity-u-r-i` | Identificador da unidade de dados. | `string` | `undefined` |
14
+ | `expression` | -- | Expressão que será representada visualmente. | `IExpressionItem` | `undefined` |
15
+ | `isDefaultFilter` | `is-default-filter` | Define se o filtro em questão é um filtro padrão. | `boolean` | `false` |
16
+ | `messagesBuilder` | -- | Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção. | `SnkMessageBuilder` | `undefined` |
16
17
 
17
18
 
18
19
  ## Events
@@ -7,13 +7,14 @@
7
7
 
8
8
  ## Properties
9
9
 
10
- | Property | Attribute | Description | Type | Default |
11
- | ----------------- | ------------ | -------------------------------------------------------------------------------------- | --------------------- | ----------- |
12
- | `application` | -- | Propriedade que mantém informações relacionadas ao SnkApplication. | `SnkApplication` | `undefined` |
13
- | `entityUri` | `entity-uri` | Responsável por receber a URI da entidade. | `string` | `undefined` |
14
- | `filterAssistent` | -- | Propriedade que contém informações do filtro personalizado. | `IPersonalizedFilter` | `undefined` |
15
- | `filterId` | `filter-id` | Id do filtro que será carregado. | `string` | `undefined` |
16
- | `messagesBuilder` | -- | Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção. | `SnkMessageBuilder` | `undefined` |
10
+ | Property | Attribute | Description | Type | Default |
11
+ | ----------------- | ------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- |
12
+ | `application` | -- | Propriedade que mantém informações relacionadas ao SnkApplication. | `SnkApplication` | `undefined` |
13
+ | `entityUri` | `entity-uri` | Responsável por receber a URI da entidade. | `string` | `undefined` |
14
+ | `filterAssistent` | -- | Propriedade que contém informações do filtro personalizado. | `IPersonalizedFilter` | `undefined` |
15
+ | `filterId` | `filter-id` | Id do filtro que será carregado. | `string` | `undefined` |
16
+ | `isDefaultFilter` | `is-default-filter` | Define se o filtro em questão é um filtro padrão. | `boolean` | `false` |
17
+ | `messagesBuilder` | -- | Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção. | `SnkMessageBuilder` | `undefined` |
17
18
 
18
19
 
19
20
  ## Events
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sankhyalabs/sankhyablocks-docs",
3
- "version": "8.16.0-dev.113",
3
+ "version": "8.16.0-dev.115",
4
4
  "description": "Documentação da biblioteca de componentes Sankhya.",
5
5
  "main": "",
6
6
  "files": [
@@ -1,40 +0,0 @@
1
- # ez-config-options
2
-
3
-
4
-
5
- <!-- Auto Generated Below -->
6
-
7
-
8
- ## Properties
9
-
10
- | Property | Attribute | Description | Type | Default |
11
- | ----------------- | ----------- | -------------------------------------------------------------------------------------- | ------------------- | -------------------- |
12
- | `dataUnit` | -- | Repositório de dados responsável por controlar a manipulação dos dados. | `DataUnit` | `undefined` |
13
- | `fieldConfig` | -- | Armazena as propriedades do campo. | `IFieldConfig` | `{} as IFieldConfig` |
14
- | `idConfig` | `id-config` | Armazena a chave de opções de configuração. | `string` | `undefined` |
15
- | `messagesBuilder` | -- | Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção. | `SnkMessageBuilder` | `undefined` |
16
-
17
-
18
- ## Events
19
-
20
- | Event | Description | Type |
21
- | ---------------------- | ------------------------------------------------ | ------------------ |
22
- | `configOptionsChanged` | Emitido ao realizar alguma alteração nos campos. | `CustomEvent<any>` |
23
-
24
-
25
- ## Dependencies
26
-
27
- ### Used by
28
-
29
- - [snk-form-config](../..)
30
-
31
- ### Graph
32
- ```mermaid
33
- graph TD;
34
- snk-form-config --> snk-config-options
35
- style snk-config-options fill:#f9f,stroke:#333,stroke-width:4px
36
- ```
37
-
38
- ----------------------------------------------
39
-
40
-
@@ -1,41 +0,0 @@
1
- # ez-field-config
2
-
3
-
4
-
5
- <!-- Auto Generated Below -->
6
-
7
-
8
- ## Properties
9
-
10
- | Property | Attribute | Description | Type | Default |
11
- | ----------------- | ---------------- | -------------------------------------------------------------------------------------- | ------------------- | ----------- |
12
- | `dataUnit` | -- | Repositório de dados, controla a manipulação dos dados. | `DataUnit` | `undefined` |
13
- | `fieldConfig` | -- | Armazena as propriedades do campo. | `IFieldConfig` | `undefined` |
14
- | `isConfigActive` | -- | Define se o popover de configuração está ativo. | `Boolean` | `false` |
15
- | `messagesBuilder` | -- | Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção. | `SnkMessageBuilder` | `undefined` |
16
- | `modeInsertion` | `mode-insertion` | Define se o componente está em modo de inserção. | `boolean` | `true` |
17
-
18
-
19
- ## Events
20
-
21
- | Event | Description | Type |
22
- | ------------- | ------------------------------------ | --------------------- |
23
- | `ezClickIcon` | Emitido ao clicar no ícone do botão. | `CustomEvent<Object>` |
24
-
25
-
26
- ## Dependencies
27
-
28
- ### Used by
29
-
30
- - [snk-form-config](../..)
31
-
32
- ### Graph
33
- ```mermaid
34
- graph TD;
35
- snk-form-config --> snk-field-config
36
- style snk-field-config fill:#f9f,stroke:#333,stroke-width:4px
37
- ```
38
-
39
- ----------------------------------------------
40
-
41
-
@@ -1,46 +0,0 @@
1
- # ez-tab-config
2
-
3
-
4
-
5
- <!-- Auto Generated Below -->
6
-
7
-
8
- ## Properties
9
-
10
- | Property | Attribute | Description | Type | Default |
11
- | ----------------- | ---------------- | -------------------------------------------------------------------------------------- | ------------------- | ----------- |
12
- | `messagesBuilder` | -- | Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção. | `SnkMessageBuilder` | `undefined` |
13
- | `selectedIndex` | `selected-index` | Define o index da aba selecionada. | `number` | `undefined` |
14
- | `selectedTab` | `selected-tab` | Define a aba selecionada. | `string` | `undefined` |
15
- | `tabItems` | -- | Define o nome das abas do componente separadas por vírgulas ",". | `ITab[]` | `undefined` |
16
- | `tabs` | `tabs` | Define o nome das abas do componente separadas por vírgulas ",". | `string` | `undefined` |
17
-
18
-
19
- ## Events
20
-
21
- | Event | Description | Type |
22
- | ----------------- | ----------------------------------------------------------- | --------------------- |
23
- | `canStartDrag` | Emitido ao ocultar uma aba. | `CustomEvent<any>` |
24
- | `deleteTab` | Emitido ao deletar uma aba. | `CustomEvent<any>` |
25
- | `editionTitleTab` | Emitido ao salvar uma alteração realizada no título da tab. | `CustomEvent<any>` |
26
- | `ezOrderChange` | Emitido ao mover a ordem da aba. | `CustomEvent<number>` |
27
- | `ezTabChange` | Emitido ao clicar para abrir o popup. | `CustomEvent<ITab>` |
28
- | `hideTab` | Emitido ao ocultar uma aba. | `CustomEvent<any>` |
29
-
30
-
31
- ## Dependencies
32
-
33
- ### Used by
34
-
35
- - [snk-form-config](../..)
36
-
37
- ### Graph
38
- ```mermaid
39
- graph TD;
40
- snk-form-config --> snk-tab-config
41
- style snk-tab-config fill:#f9f,stroke:#333,stroke-width:4px
42
- ```
43
-
44
- ----------------------------------------------
45
-
46
-