@sankhyalabs/core-docs 0.0.0-feat-dev-25106.0 → 0.0.0-feat-dev-25734.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.
- package/classes/ArrayUtils.md +133 -3
- package/classes/Change.md +11 -11
- package/classes/DataUnit.md +28 -7
- package/classes/JSUtils.md +25 -0
- package/classes/ObjectUtils.md +26 -0
- package/classes/SearchUtils.md +43 -0
- package/classes/SelectionInfo.md +11 -11
- package/classes/StringUtils.md +177 -23
- package/enums/ChangeOperation.md +4 -4
- package/enums/SelectionMode.md +2 -2
- package/interfaces/DUActionInterceptor.md +1 -1
- package/interfaces/PageRequest.md +3 -3
- package/interfaces/QuickFilter.md +3 -3
- package/interfaces/Record.md +4 -4
- package/interfaces/SavedRecord.md +5 -5
- package/interfaces/WaitingChange.md +3 -3
- package/modules.md +1 -0
- package/package.json +1 -1
package/classes/ArrayUtils.md
CHANGED
@@ -13,7 +13,12 @@
|
|
13
13
|
### Methods
|
14
14
|
|
15
15
|
- [applyStringFilter](ArrayUtils.md#applystringfilter)
|
16
|
+
- [find](ArrayUtils.md#find)
|
17
|
+
- [indexOf](ArrayUtils.md#indexof)
|
18
|
+
- [isIn](ArrayUtils.md#isin)
|
16
19
|
- [normalizeSearchString](ArrayUtils.md#normalizesearchstring)
|
20
|
+
- [removeAtIndex](ArrayUtils.md#removeatindex)
|
21
|
+
- [removeReference](ArrayUtils.md#removereference)
|
17
22
|
- [sortAlphabetically](ArrayUtils.md#sortalphabetically)
|
18
23
|
|
19
24
|
## Constructors
|
@@ -47,7 +52,82 @@ Filtra um array a partir de um critério textual.
|
|
47
52
|
|
48
53
|
#### Defined in
|
49
54
|
|
50
|
-
src/utils/ArrayUtils.ts:
|
55
|
+
src/utils/ArrayUtils.ts:18
|
56
|
+
|
57
|
+
___
|
58
|
+
|
59
|
+
### find
|
60
|
+
|
61
|
+
▸ `Static` **find**(`arr`, `checkerFn`): `any`
|
62
|
+
|
63
|
+
Ordena valores de um array alfabeticamente.
|
64
|
+
|
65
|
+
#### Parameters
|
66
|
+
|
67
|
+
| Name | Type | Description |
|
68
|
+
| :------ | :------ | :------ |
|
69
|
+
| `arr` | `any` | Array a ser ordenado. |
|
70
|
+
| `checkerFn` | `any` | - |
|
71
|
+
|
72
|
+
#### Returns
|
73
|
+
|
74
|
+
`any`
|
75
|
+
|
76
|
+
- Array ordenado alfabeticamente..
|
77
|
+
|
78
|
+
#### Defined in
|
79
|
+
|
80
|
+
src/utils/ArrayUtils.ts:69
|
81
|
+
|
82
|
+
___
|
83
|
+
|
84
|
+
### indexOf
|
85
|
+
|
86
|
+
▸ `Static` **indexOf**(`arr`, `obj`): `number`
|
87
|
+
|
88
|
+
Retorna o objeto se for encontrado no array, ou -1 se não for encontrado.
|
89
|
+
|
90
|
+
#### Parameters
|
91
|
+
|
92
|
+
| Name | Type | Description |
|
93
|
+
| :------ | :------ | :------ |
|
94
|
+
| `arr` | `any` | Array onde está o objeto. |
|
95
|
+
| `obj` | `any` | Objeto a ser procurado. |
|
96
|
+
|
97
|
+
#### Returns
|
98
|
+
|
99
|
+
`number`
|
100
|
+
|
101
|
+
- Array ordenado alfabeticamente..
|
102
|
+
|
103
|
+
#### Defined in
|
104
|
+
|
105
|
+
src/utils/ArrayUtils.ts:88
|
106
|
+
|
107
|
+
___
|
108
|
+
|
109
|
+
### isIn
|
110
|
+
|
111
|
+
▸ `Static` **isIn**(`arr`, `obj`): `boolean`
|
112
|
+
|
113
|
+
Remove um objeto do array.
|
114
|
+
|
115
|
+
#### Parameters
|
116
|
+
|
117
|
+
| Name | Type | Description |
|
118
|
+
| :------ | :------ | :------ |
|
119
|
+
| `arr` | `any` | - |
|
120
|
+
| `obj` | `any` | Objeto a ser removido. |
|
121
|
+
|
122
|
+
#### Returns
|
123
|
+
|
124
|
+
`boolean`
|
125
|
+
|
126
|
+
- Array sem o Objeto informado.
|
127
|
+
|
128
|
+
#### Defined in
|
129
|
+
|
130
|
+
src/utils/ArrayUtils.ts:131
|
51
131
|
|
52
132
|
___
|
53
133
|
|
@@ -71,7 +151,57 @@ Converte texto para caixa alta e substitui caracteres acentuados.
|
|
71
151
|
|
72
152
|
#### Defined in
|
73
153
|
|
74
|
-
src/utils/ArrayUtils.ts:
|
154
|
+
src/utils/ArrayUtils.ts:36
|
155
|
+
|
156
|
+
___
|
157
|
+
|
158
|
+
### removeAtIndex
|
159
|
+
|
160
|
+
▸ `Static` **removeAtIndex**(`array`, `index`): `any`
|
161
|
+
|
162
|
+
Remove um item de array de acordo com o index.
|
163
|
+
|
164
|
+
#### Parameters
|
165
|
+
|
166
|
+
| Name | Type | Description |
|
167
|
+
| :------ | :------ | :------ |
|
168
|
+
| `array` | `any` | Array onde está o item. |
|
169
|
+
| `index` | `number` | Index do item a ser removido. |
|
170
|
+
|
171
|
+
#### Returns
|
172
|
+
|
173
|
+
`any`
|
174
|
+
|
175
|
+
- Array sem o item do index informado.
|
176
|
+
|
177
|
+
#### Defined in
|
178
|
+
|
179
|
+
src/utils/ArrayUtils.ts:106
|
180
|
+
|
181
|
+
___
|
182
|
+
|
183
|
+
### removeReference
|
184
|
+
|
185
|
+
▸ `Static` **removeReference**(`array`, `obj`): `any`
|
186
|
+
|
187
|
+
Remove um objeto do array.
|
188
|
+
|
189
|
+
#### Parameters
|
190
|
+
|
191
|
+
| Name | Type | Description |
|
192
|
+
| :------ | :------ | :------ |
|
193
|
+
| `array` | `any` | Array onde está o objeto. |
|
194
|
+
| `obj` | `any` | Objeto a ser removido. |
|
195
|
+
|
196
|
+
#### Returns
|
197
|
+
|
198
|
+
`any`
|
199
|
+
|
200
|
+
- Array sem o Objeto informado.
|
201
|
+
|
202
|
+
#### Defined in
|
203
|
+
|
204
|
+
src/utils/ArrayUtils.ts:119
|
75
205
|
|
76
206
|
___
|
77
207
|
|
@@ -96,4 +226,4 @@ Ordena valores de um array alfabeticamente.
|
|
96
226
|
|
97
227
|
#### Defined in
|
98
228
|
|
99
|
-
src/utils/ArrayUtils.ts:
|
229
|
+
src/utils/ArrayUtils.ts:46
|
package/classes/Change.md
CHANGED
@@ -47,7 +47,7 @@
|
|
47
47
|
|
48
48
|
#### Defined in
|
49
49
|
|
50
|
-
src/dataunit/DataUnit.ts:
|
50
|
+
src/dataunit/DataUnit.ts:1773
|
51
51
|
|
52
52
|
## Properties
|
53
53
|
|
@@ -57,7 +57,7 @@ src/dataunit/DataUnit.ts:1764
|
|
57
57
|
|
58
58
|
#### Defined in
|
59
59
|
|
60
|
-
src/dataunit/DataUnit.ts:
|
60
|
+
src/dataunit/DataUnit.ts:1771
|
61
61
|
|
62
62
|
___
|
63
63
|
|
@@ -67,7 +67,7 @@ ___
|
|
67
67
|
|
68
68
|
#### Defined in
|
69
69
|
|
70
|
-
src/dataunit/DataUnit.ts:
|
70
|
+
src/dataunit/DataUnit.ts:1766
|
71
71
|
|
72
72
|
___
|
73
73
|
|
@@ -77,7 +77,7 @@ ___
|
|
77
77
|
|
78
78
|
#### Defined in
|
79
79
|
|
80
|
-
src/dataunit/DataUnit.ts:
|
80
|
+
src/dataunit/DataUnit.ts:1767
|
81
81
|
|
82
82
|
___
|
83
83
|
|
@@ -87,7 +87,7 @@ ___
|
|
87
87
|
|
88
88
|
#### Defined in
|
89
89
|
|
90
|
-
src/dataunit/DataUnit.ts:
|
90
|
+
src/dataunit/DataUnit.ts:1768
|
91
91
|
|
92
92
|
___
|
93
93
|
|
@@ -97,7 +97,7 @@ ___
|
|
97
97
|
|
98
98
|
#### Defined in
|
99
99
|
|
100
|
-
src/dataunit/DataUnit.ts:
|
100
|
+
src/dataunit/DataUnit.ts:1769
|
101
101
|
|
102
102
|
## Accessors
|
103
103
|
|
@@ -115,7 +115,7 @@ Obtém o tipo de operação que está sendo realizada.
|
|
115
115
|
|
116
116
|
#### Defined in
|
117
117
|
|
118
|
-
src/dataunit/DataUnit.ts:
|
118
|
+
src/dataunit/DataUnit.ts:1788
|
119
119
|
|
120
120
|
## Methods
|
121
121
|
|
@@ -133,7 +133,7 @@ Retorna se o DataUnit está em uma operação de cópia.
|
|
133
133
|
|
134
134
|
#### Defined in
|
135
135
|
|
136
|
-
src/dataunit/DataUnit.ts:
|
136
|
+
src/dataunit/DataUnit.ts:1810
|
137
137
|
|
138
138
|
___
|
139
139
|
|
@@ -151,7 +151,7 @@ Retorna se o DataUnit está em uma operação de deleção.
|
|
151
151
|
|
152
152
|
#### Defined in
|
153
153
|
|
154
|
-
src/dataunit/DataUnit.ts:
|
154
|
+
src/dataunit/DataUnit.ts:1821
|
155
155
|
|
156
156
|
___
|
157
157
|
|
@@ -169,7 +169,7 @@ Retorna se o DataUnit está em uma operação de inserção.
|
|
169
169
|
|
170
170
|
#### Defined in
|
171
171
|
|
172
|
-
src/dataunit/DataUnit.ts:
|
172
|
+
src/dataunit/DataUnit.ts:1799
|
173
173
|
|
174
174
|
___
|
175
175
|
|
@@ -187,4 +187,4 @@ Retorna se o DataUnit está em uma operação de atualização.
|
|
187
187
|
|
188
188
|
#### Defined in
|
189
189
|
|
190
|
-
src/dataunit/DataUnit.ts:
|
190
|
+
src/dataunit/DataUnit.ts:1832
|
package/classes/DataUnit.md
CHANGED
@@ -45,6 +45,7 @@
|
|
45
45
|
|
46
46
|
### Methods
|
47
47
|
|
48
|
+
- [addField](DataUnit.md#addfield)
|
48
49
|
- [addFilterProvider](DataUnit.md#addfilterprovider)
|
49
50
|
- [addInterceptor](DataUnit.md#addinterceptor)
|
50
51
|
- [addLoadingLocker](DataUnit.md#addloadinglocker)
|
@@ -615,6 +616,28 @@ src/dataunit/DataUnit.ts:697
|
|
615
616
|
|
616
617
|
## Methods
|
617
618
|
|
619
|
+
### addField
|
620
|
+
|
621
|
+
▸ **addField**(`field`): `void`
|
622
|
+
|
623
|
+
Adiciona um campo stand-alone ao dataUnit.
|
624
|
+
|
625
|
+
#### Parameters
|
626
|
+
|
627
|
+
| Name | Type | Description |
|
628
|
+
| :------ | :------ | :------ |
|
629
|
+
| `field` | `Omit`<[`FieldDescriptor`](../interfaces/FieldDescriptor.md), ``"standAlone"``\> | Campo a ser adicionado. |
|
630
|
+
|
631
|
+
#### Returns
|
632
|
+
|
633
|
+
`void`
|
634
|
+
|
635
|
+
#### Defined in
|
636
|
+
|
637
|
+
src/dataunit/DataUnit.ts:1710
|
638
|
+
|
639
|
+
___
|
640
|
+
|
618
641
|
### addFilterProvider
|
619
642
|
|
620
643
|
▸ **addFilterProvider**(`provider`): `void`
|
@@ -673,7 +696,7 @@ Retorna uma função responsável por liberar o lock adicionado.
|
|
673
696
|
|
674
697
|
#### Defined in
|
675
698
|
|
676
|
-
src/dataunit/DataUnit.ts:
|
699
|
+
src/dataunit/DataUnit.ts:1719
|
677
700
|
|
678
701
|
___
|
679
702
|
|
@@ -701,15 +724,13 @@ ___
|
|
701
724
|
|
702
725
|
### addStandAloneField
|
703
726
|
|
704
|
-
▸ **addStandAloneField**(
|
727
|
+
▸ **addStandAloneField**(): `void`
|
705
728
|
|
706
729
|
Adiciona um campo stand-alone ao dataUnit.
|
707
730
|
|
708
|
-
|
731
|
+
**`Deprecated`**
|
709
732
|
|
710
|
-
|
711
|
-
| :------ | :------ | :------ |
|
712
|
-
| `field` | `Omit`<[`FieldDescriptor`](../interfaces/FieldDescriptor.md), ``"standAlone"``\> | Campo a ser adicionado. |
|
733
|
+
- metodo depreciado, utilizar o metodo addField
|
713
734
|
|
714
735
|
#### Returns
|
715
736
|
|
@@ -1966,7 +1987,7 @@ ___
|
|
1966
1987
|
|
1967
1988
|
#### Defined in
|
1968
1989
|
|
1969
|
-
src/dataunit/DataUnit.ts:
|
1990
|
+
src/dataunit/DataUnit.ts:1729
|
1970
1991
|
|
1971
1992
|
___
|
1972
1993
|
|
package/classes/JSUtils.md
CHANGED
@@ -18,6 +18,7 @@ Classe com utiliários comuns para funções genéricas em JavaScript.
|
|
18
18
|
- [isBase64](JSUtils.md#isbase64)
|
19
19
|
- [isEllipsisActive](JSUtils.md#isellipsisactive)
|
20
20
|
- [isHiddenElement](JSUtils.md#ishiddenelement)
|
21
|
+
- [replaceHtmlEntities](JSUtils.md#replacehtmlentities)
|
21
22
|
|
22
23
|
## Constructors
|
23
24
|
|
@@ -161,3 +162,27 @@ ___
|
|
161
162
|
#### Defined in
|
162
163
|
|
163
164
|
src/utils/JSUtils.ts:8
|
165
|
+
|
166
|
+
___
|
167
|
+
|
168
|
+
### replaceHtmlEntities
|
169
|
+
|
170
|
+
▸ `Static` **replaceHtmlEntities**(`source`): `string`
|
171
|
+
|
172
|
+
Substitui caracteres para suas entidades HTML.
|
173
|
+
|
174
|
+
#### Parameters
|
175
|
+
|
176
|
+
| Name | Type | Description |
|
177
|
+
| :------ | :------ | :------ |
|
178
|
+
| `source` | `string` | String a ter os caracteres substituidos. |
|
179
|
+
|
180
|
+
#### Returns
|
181
|
+
|
182
|
+
`string`
|
183
|
+
|
184
|
+
- Retorna um UUID.
|
185
|
+
|
186
|
+
#### Defined in
|
187
|
+
|
188
|
+
src/utils/JSUtils.ts:105
|
package/classes/ObjectUtils.md
CHANGED
@@ -13,6 +13,7 @@
|
|
13
13
|
### Methods
|
14
14
|
|
15
15
|
- [copy](ObjectUtils.md#copy)
|
16
|
+
- [equals](ObjectUtils.md#equals)
|
16
17
|
- [objectToString](ObjectUtils.md#objecttostring)
|
17
18
|
- [removeEmptyValues](ObjectUtils.md#removeemptyvalues)
|
18
19
|
- [sortByProperty](ObjectUtils.md#sortbyproperty)
|
@@ -56,6 +57,31 @@ src/utils/ObjectUtils.ts:13
|
|
56
57
|
|
57
58
|
___
|
58
59
|
|
60
|
+
### equals
|
61
|
+
|
62
|
+
▸ `Static` **equals**(`obj1`, `obj2`): `any`
|
63
|
+
|
64
|
+
Compara se um objeto é igual a outro objeto.
|
65
|
+
|
66
|
+
#### Parameters
|
67
|
+
|
68
|
+
| Name | Type | Description |
|
69
|
+
| :------ | :------ | :------ |
|
70
|
+
| `obj1` | `any` | Objeto a ser comparado. |
|
71
|
+
| `obj2` | `any` | Objeto a ser comparado. |
|
72
|
+
|
73
|
+
#### Returns
|
74
|
+
|
75
|
+
`any`
|
76
|
+
|
77
|
+
- Se o objeto 1 é igual ao objeto 2.
|
78
|
+
|
79
|
+
#### Defined in
|
80
|
+
|
81
|
+
src/utils/ObjectUtils.ts:84
|
82
|
+
|
83
|
+
___
|
84
|
+
|
59
85
|
### objectToString
|
60
86
|
|
61
87
|
▸ `Static` **objectToString**(`data`): `string`
|
@@ -0,0 +1,43 @@
|
|
1
|
+
[@sankhyalabs/core](../README.md) / [Exports](../modules.md) / SearchUtils
|
2
|
+
|
3
|
+
# Class: SearchUtils
|
4
|
+
|
5
|
+
`Search`: Utilizado para manipulação de do objeto de pesquisa.
|
6
|
+
|
7
|
+
## Table of contents
|
8
|
+
|
9
|
+
### Constructors
|
10
|
+
|
11
|
+
- [constructor](SearchUtils.md#constructor)
|
12
|
+
|
13
|
+
### Methods
|
14
|
+
|
15
|
+
- [buildDetails](SearchUtils.md#builddetails)
|
16
|
+
|
17
|
+
## Constructors
|
18
|
+
|
19
|
+
### constructor
|
20
|
+
|
21
|
+
• **new SearchUtils**()
|
22
|
+
|
23
|
+
## Methods
|
24
|
+
|
25
|
+
### buildDetails
|
26
|
+
|
27
|
+
▸ `Static` **buildDetails**(`argument`, `fields`, `item`): `any`
|
28
|
+
|
29
|
+
#### Parameters
|
30
|
+
|
31
|
+
| Name | Type |
|
32
|
+
| :------ | :------ |
|
33
|
+
| `argument` | `String` |
|
34
|
+
| `fields` | `any` |
|
35
|
+
| `item` | `any` |
|
36
|
+
|
37
|
+
#### Returns
|
38
|
+
|
39
|
+
`any`
|
40
|
+
|
41
|
+
#### Defined in
|
42
|
+
|
43
|
+
src/utils/SearchUtils.ts:8
|
package/classes/SelectionInfo.md
CHANGED
@@ -45,7 +45,7 @@
|
|
45
45
|
|
46
46
|
#### Defined in
|
47
47
|
|
48
|
-
src/dataunit/DataUnit.ts:
|
48
|
+
src/dataunit/DataUnit.ts:1876
|
49
49
|
|
50
50
|
## Properties
|
51
51
|
|
@@ -55,7 +55,7 @@ src/dataunit/DataUnit.ts:1867
|
|
55
55
|
|
56
56
|
#### Defined in
|
57
57
|
|
58
|
-
src/dataunit/DataUnit.ts:
|
58
|
+
src/dataunit/DataUnit.ts:1870
|
59
59
|
|
60
60
|
___
|
61
61
|
|
@@ -65,7 +65,7 @@ ___
|
|
65
65
|
|
66
66
|
#### Defined in
|
67
67
|
|
68
|
-
src/dataunit/DataUnit.ts:
|
68
|
+
src/dataunit/DataUnit.ts:1872
|
69
69
|
|
70
70
|
___
|
71
71
|
|
@@ -75,7 +75,7 @@ ___
|
|
75
75
|
|
76
76
|
#### Defined in
|
77
77
|
|
78
|
-
src/dataunit/DataUnit.ts:
|
78
|
+
src/dataunit/DataUnit.ts:1873
|
79
79
|
|
80
80
|
___
|
81
81
|
|
@@ -85,7 +85,7 @@ ___
|
|
85
85
|
|
86
86
|
#### Defined in
|
87
87
|
|
88
|
-
src/dataunit/DataUnit.ts:
|
88
|
+
src/dataunit/DataUnit.ts:1871
|
89
89
|
|
90
90
|
___
|
91
91
|
|
@@ -95,7 +95,7 @@ ___
|
|
95
95
|
|
96
96
|
#### Defined in
|
97
97
|
|
98
|
-
src/dataunit/DataUnit.ts:
|
98
|
+
src/dataunit/DataUnit.ts:1874
|
99
99
|
|
100
100
|
## Accessors
|
101
101
|
|
@@ -109,7 +109,7 @@ src/dataunit/DataUnit.ts:1865
|
|
109
109
|
|
110
110
|
#### Defined in
|
111
111
|
|
112
|
-
src/dataunit/DataUnit.ts:
|
112
|
+
src/dataunit/DataUnit.ts:1901
|
113
113
|
|
114
114
|
___
|
115
115
|
|
@@ -123,7 +123,7 @@ ___
|
|
123
123
|
|
124
124
|
#### Defined in
|
125
125
|
|
126
|
-
src/dataunit/DataUnit.ts:
|
126
|
+
src/dataunit/DataUnit.ts:1891
|
127
127
|
|
128
128
|
___
|
129
129
|
|
@@ -137,7 +137,7 @@ ___
|
|
137
137
|
|
138
138
|
#### Defined in
|
139
139
|
|
140
|
-
src/dataunit/DataUnit.ts:
|
140
|
+
src/dataunit/DataUnit.ts:1884
|
141
141
|
|
142
142
|
## Methods
|
143
143
|
|
@@ -151,7 +151,7 @@ src/dataunit/DataUnit.ts:1875
|
|
151
151
|
|
152
152
|
#### Defined in
|
153
153
|
|
154
|
-
src/dataunit/DataUnit.ts:
|
154
|
+
src/dataunit/DataUnit.ts:1908
|
155
155
|
|
156
156
|
___
|
157
157
|
|
@@ -165,4 +165,4 @@ ___
|
|
165
165
|
|
166
166
|
#### Defined in
|
167
167
|
|
168
|
-
src/dataunit/DataUnit.ts:
|
168
|
+
src/dataunit/DataUnit.ts:1912
|
package/classes/StringUtils.md
CHANGED
@@ -16,9 +16,12 @@
|
|
16
16
|
- [decodeHtmlEntities](StringUtils.md#decodehtmlentities)
|
17
17
|
- [formatBytes](StringUtils.md#formatbytes)
|
18
18
|
- [generateUUID](StringUtils.md#generateuuid)
|
19
|
+
- [getArgumentNumber](StringUtils.md#getargumentnumber)
|
19
20
|
- [getBooleanValue](StringUtils.md#getbooleanvalue)
|
20
21
|
- [getOppositeCase](StringUtils.md#getoppositecase)
|
22
|
+
- [getSpecialCharacters](StringUtils.md#getspecialcharacters)
|
21
23
|
- [hashCode](StringUtils.md#hashcode)
|
24
|
+
- [highlightValue](StringUtils.md#highlightvalue)
|
22
25
|
- [isCaseable](StringUtils.md#iscaseable)
|
23
26
|
- [isEmpty](StringUtils.md#isempty)
|
24
27
|
- [isLowerCase](StringUtils.md#islowercase)
|
@@ -26,11 +29,15 @@
|
|
26
29
|
- [padEnd](StringUtils.md#padend)
|
27
30
|
- [padStart](StringUtils.md#padstart)
|
28
31
|
- [prettyPrecision](StringUtils.md#prettyprecision)
|
32
|
+
- [removeSpecialCharacters](StringUtils.md#removespecialcharacters)
|
29
33
|
- [replaceAccentuatedChars](StringUtils.md#replaceaccentuatedchars)
|
34
|
+
- [replaceAccentuatedCharsHtmlEntities](StringUtils.md#replaceaccentuatedcharshtmlentities)
|
30
35
|
- [replaceAccentuatedCharsKeepSymbols](StringUtils.md#replaceaccentuatedcharskeepsymbols)
|
31
36
|
- [replaceAccentuatedCharsLower](StringUtils.md#replaceaccentuatedcharslower)
|
32
37
|
- [replaceAccentuatedCharsUpper](StringUtils.md#replaceaccentuatedcharsupper)
|
38
|
+
- [replaceAll](StringUtils.md#replaceall)
|
33
39
|
- [replaceBlankCharacters](StringUtils.md#replaceblankcharacters)
|
40
|
+
- [replaceToSpace](StringUtils.md#replacetospace)
|
34
41
|
- [toCamelCase](StringUtils.md#tocamelcase)
|
35
42
|
- [toKebabCase](StringUtils.md#tokebabcase)
|
36
43
|
- [toPascalCase](StringUtils.md#topascalcase)
|
@@ -65,7 +72,7 @@ Determina a ordem de strings.
|
|
65
72
|
|
66
73
|
#### Defined in
|
67
74
|
|
68
|
-
src/utils/StringUtils.ts:
|
75
|
+
src/utils/StringUtils.ts:250
|
69
76
|
|
70
77
|
___
|
71
78
|
|
@@ -93,7 +100,7 @@ entrada: "<Teste>" // retorno: "<Teste>"
|
|
93
100
|
|
94
101
|
#### Defined in
|
95
102
|
|
96
|
-
src/utils/StringUtils.ts:
|
103
|
+
src/utils/StringUtils.ts:71
|
97
104
|
|
98
105
|
___
|
99
106
|
|
@@ -118,7 +125,7 @@ string formatada de acordo com a unidade.
|
|
118
125
|
|
119
126
|
#### Defined in
|
120
127
|
|
121
|
-
src/utils/StringUtils.ts:
|
128
|
+
src/utils/StringUtils.ts:335
|
122
129
|
|
123
130
|
___
|
124
131
|
|
@@ -136,7 +143,27 @@ id único randômico.
|
|
136
143
|
|
137
144
|
#### Defined in
|
138
145
|
|
139
|
-
src/utils/StringUtils.ts:
|
146
|
+
src/utils/StringUtils.ts:381
|
147
|
+
|
148
|
+
___
|
149
|
+
|
150
|
+
### getArgumentNumber
|
151
|
+
|
152
|
+
▸ `Static` **getArgumentNumber**(`argument`): `number`
|
153
|
+
|
154
|
+
#### Parameters
|
155
|
+
|
156
|
+
| Name | Type |
|
157
|
+
| :------ | :------ |
|
158
|
+
| `argument` | `String` |
|
159
|
+
|
160
|
+
#### Returns
|
161
|
+
|
162
|
+
`number`
|
163
|
+
|
164
|
+
#### Defined in
|
165
|
+
|
166
|
+
src/utils/StringUtils.ts:485
|
140
167
|
|
141
168
|
___
|
142
169
|
|
@@ -168,7 +195,7 @@ Informado: 'false' | Retorna: false
|
|
168
195
|
|
169
196
|
#### Defined in
|
170
197
|
|
171
|
-
src/utils/StringUtils.ts:
|
198
|
+
src/utils/StringUtils.ts:180
|
172
199
|
|
173
200
|
___
|
174
201
|
|
@@ -192,7 +219,27 @@ A string invertida
|
|
192
219
|
|
193
220
|
#### Defined in
|
194
221
|
|
195
|
-
src/utils/StringUtils.ts:
|
222
|
+
src/utils/StringUtils.ts:416
|
223
|
+
|
224
|
+
___
|
225
|
+
|
226
|
+
### getSpecialCharacters
|
227
|
+
|
228
|
+
▸ `Static` **getSpecialCharacters**(`str`): `string`[]
|
229
|
+
|
230
|
+
#### Parameters
|
231
|
+
|
232
|
+
| Name | Type |
|
233
|
+
| :------ | :------ |
|
234
|
+
| `str` | `string` |
|
235
|
+
|
236
|
+
#### Returns
|
237
|
+
|
238
|
+
`string`[]
|
239
|
+
|
240
|
+
#### Defined in
|
241
|
+
|
242
|
+
src/utils/StringUtils.ts:457
|
196
243
|
|
197
244
|
___
|
198
245
|
|
@@ -222,7 +269,31 @@ Informado: '123456' | Retorna: 1450575459
|
|
222
269
|
|
223
270
|
#### Defined in
|
224
271
|
|
225
|
-
src/utils/StringUtils.ts:
|
272
|
+
src/utils/StringUtils.ts:158
|
273
|
+
|
274
|
+
___
|
275
|
+
|
276
|
+
### highlightValue
|
277
|
+
|
278
|
+
▸ `Static` **highlightValue**(`argument`, `matchFields`, `value`, `fieldMD`, `forceMatch`): `string`
|
279
|
+
|
280
|
+
#### Parameters
|
281
|
+
|
282
|
+
| Name | Type |
|
283
|
+
| :------ | :------ |
|
284
|
+
| `argument` | `String` |
|
285
|
+
| `matchFields` | `any` |
|
286
|
+
| `value` | `string` |
|
287
|
+
| `fieldMD` | `any` |
|
288
|
+
| `forceMatch` | `boolean` |
|
289
|
+
|
290
|
+
#### Returns
|
291
|
+
|
292
|
+
`string`
|
293
|
+
|
294
|
+
#### Defined in
|
295
|
+
|
296
|
+
src/utils/StringUtils.ts:489
|
226
297
|
|
227
298
|
___
|
228
299
|
|
@@ -246,7 +317,7 @@ Se a string pode ser convertida
|
|
246
317
|
|
247
318
|
#### Defined in
|
248
319
|
|
249
|
-
src/utils/StringUtils.ts:
|
320
|
+
src/utils/StringUtils.ts:391
|
250
321
|
|
251
322
|
___
|
252
323
|
|
@@ -271,7 +342,7 @@ Valores null e undefined são considerados como vazio.
|
|
271
342
|
|
272
343
|
#### Defined in
|
273
344
|
|
274
|
-
src/utils/StringUtils.ts:
|
345
|
+
src/utils/StringUtils.ts:18
|
275
346
|
|
276
347
|
___
|
277
348
|
|
@@ -295,7 +366,7 @@ Se a string é minúscula
|
|
295
366
|
|
296
367
|
#### Defined in
|
297
368
|
|
298
|
-
src/utils/StringUtils.ts:
|
369
|
+
src/utils/StringUtils.ts:404
|
299
370
|
|
300
371
|
___
|
301
372
|
|
@@ -317,7 +388,7 @@ Verifica se argumento informado é do tipo string
|
|
317
388
|
|
318
389
|
#### Defined in
|
319
390
|
|
320
|
-
src/utils/StringUtils.ts:
|
391
|
+
src/utils/StringUtils.ts:38
|
321
392
|
|
322
393
|
___
|
323
394
|
|
@@ -356,7 +427,7 @@ Ou retorna o texto com os caracteres adicionados na direita.
|
|
356
427
|
|
357
428
|
#### Defined in
|
358
429
|
|
359
|
-
src/utils/StringUtils.ts:
|
430
|
+
src/utils/StringUtils.ts:234
|
360
431
|
|
361
432
|
___
|
362
433
|
|
@@ -395,7 +466,7 @@ Ou retorna o texto com os caracteres adicionados na esquerda.
|
|
395
466
|
|
396
467
|
#### Defined in
|
397
468
|
|
398
|
-
src/utils/StringUtils.ts:
|
469
|
+
src/utils/StringUtils.ts:209
|
399
470
|
|
400
471
|
___
|
401
472
|
|
@@ -420,7 +491,27 @@ simplificação do strNumber, sem os zeros à direita depois do ponto.
|
|
420
491
|
|
421
492
|
#### Defined in
|
422
493
|
|
423
|
-
src/utils/StringUtils.ts:
|
494
|
+
src/utils/StringUtils.ts:360
|
495
|
+
|
496
|
+
___
|
497
|
+
|
498
|
+
### removeSpecialCharacters
|
499
|
+
|
500
|
+
▸ `Static` **removeSpecialCharacters**(`str`): `string`
|
501
|
+
|
502
|
+
#### Parameters
|
503
|
+
|
504
|
+
| Name | Type |
|
505
|
+
| :------ | :------ |
|
506
|
+
| `str` | `string` |
|
507
|
+
|
508
|
+
#### Returns
|
509
|
+
|
510
|
+
`string`
|
511
|
+
|
512
|
+
#### Defined in
|
513
|
+
|
514
|
+
src/utils/StringUtils.ts:476
|
424
515
|
|
425
516
|
___
|
426
517
|
|
@@ -450,7 +541,27 @@ entrada: "á@Êç#Ò", true // retorno: "aEcO"
|
|
450
541
|
|
451
542
|
#### Defined in
|
452
543
|
|
453
|
-
src/utils/StringUtils.ts:
|
544
|
+
src/utils/StringUtils.ts:124
|
545
|
+
|
546
|
+
___
|
547
|
+
|
548
|
+
### replaceAccentuatedCharsHtmlEntities
|
549
|
+
|
550
|
+
▸ `Static` **replaceAccentuatedCharsHtmlEntities**(`source`): `string`
|
551
|
+
|
552
|
+
#### Parameters
|
553
|
+
|
554
|
+
| Name | Type |
|
555
|
+
| :------ | :------ |
|
556
|
+
| `source` | `string` |
|
557
|
+
|
558
|
+
#### Returns
|
559
|
+
|
560
|
+
`string`
|
561
|
+
|
562
|
+
#### Defined in
|
563
|
+
|
564
|
+
src/utils/StringUtils.ts:437
|
454
565
|
|
455
566
|
___
|
456
567
|
|
@@ -474,7 +585,7 @@ Remove acentos de vogais, substitui Ç por c e retorna a string em caixa alta ma
|
|
474
585
|
|
475
586
|
#### Defined in
|
476
587
|
|
477
|
-
src/utils/StringUtils.ts:
|
588
|
+
src/utils/StringUtils.ts:143
|
478
589
|
|
479
590
|
___
|
480
591
|
|
@@ -502,7 +613,7 @@ entrada: "áêçò" // retorno: "aeco"
|
|
502
613
|
|
503
614
|
#### Defined in
|
504
615
|
|
505
|
-
src/utils/StringUtils.ts:
|
616
|
+
src/utils/StringUtils.ts:101
|
506
617
|
|
507
618
|
___
|
508
619
|
|
@@ -530,7 +641,29 @@ entrada: "ÁÊÇÒ" // retorno: "AECO"
|
|
530
641
|
|
531
642
|
#### Defined in
|
532
643
|
|
533
|
-
src/utils/StringUtils.ts:
|
644
|
+
src/utils/StringUtils.ts:49
|
645
|
+
|
646
|
+
___
|
647
|
+
|
648
|
+
### replaceAll
|
649
|
+
|
650
|
+
▸ `Static` **replaceAll**(`str`, `strFrom`, `strTo`): `string`
|
651
|
+
|
652
|
+
#### Parameters
|
653
|
+
|
654
|
+
| Name | Type |
|
655
|
+
| :------ | :------ |
|
656
|
+
| `str` | `string` |
|
657
|
+
| `strFrom` | `string` |
|
658
|
+
| `strTo` | `string` |
|
659
|
+
|
660
|
+
#### Returns
|
661
|
+
|
662
|
+
`string`
|
663
|
+
|
664
|
+
#### Defined in
|
665
|
+
|
666
|
+
src/utils/StringUtils.ts:467
|
534
667
|
|
535
668
|
___
|
536
669
|
|
@@ -554,7 +687,28 @@ String sem espaços em branco.
|
|
554
687
|
|
555
688
|
#### Defined in
|
556
689
|
|
557
|
-
src/utils/StringUtils.ts:
|
690
|
+
src/utils/StringUtils.ts:325
|
691
|
+
|
692
|
+
___
|
693
|
+
|
694
|
+
### replaceToSpace
|
695
|
+
|
696
|
+
▸ `Static` **replaceToSpace**(`source`, `replaceList?`): `string`
|
697
|
+
|
698
|
+
#### Parameters
|
699
|
+
|
700
|
+
| Name | Type | Default value |
|
701
|
+
| :------ | :------ | :------ |
|
702
|
+
| `source` | `string` | `undefined` |
|
703
|
+
| `replaceList` | `string`[] | `[]` |
|
704
|
+
|
705
|
+
#### Returns
|
706
|
+
|
707
|
+
`string`
|
708
|
+
|
709
|
+
#### Defined in
|
710
|
+
|
711
|
+
src/utils/StringUtils.ts:420
|
558
712
|
|
559
713
|
___
|
560
714
|
|
@@ -585,7 +739,7 @@ String convertida em camelCase.
|
|
585
739
|
|
586
740
|
#### Defined in
|
587
741
|
|
588
|
-
src/utils/StringUtils.ts:
|
742
|
+
src/utils/StringUtils.ts:276
|
589
743
|
|
590
744
|
___
|
591
745
|
|
@@ -609,7 +763,7 @@ String convertida em KebabCase.
|
|
609
763
|
|
610
764
|
#### Defined in
|
611
765
|
|
612
|
-
src/utils/StringUtils.ts:
|
766
|
+
src/utils/StringUtils.ts:316
|
613
767
|
|
614
768
|
___
|
615
769
|
|
@@ -633,7 +787,7 @@ String convertida em PascalCase.
|
|
633
787
|
|
634
788
|
#### Defined in
|
635
789
|
|
636
|
-
src/utils/StringUtils.ts:
|
790
|
+
src/utils/StringUtils.ts:291
|
637
791
|
|
638
792
|
___
|
639
793
|
|
@@ -657,4 +811,4 @@ String convertida em snake_case.
|
|
657
811
|
|
658
812
|
#### Defined in
|
659
813
|
|
660
|
-
src/utils/StringUtils.ts:
|
814
|
+
src/utils/StringUtils.ts:303
|
package/enums/ChangeOperation.md
CHANGED
@@ -19,7 +19,7 @@
|
|
19
19
|
|
20
20
|
#### Defined in
|
21
21
|
|
22
|
-
src/dataunit/DataUnit.ts:
|
22
|
+
src/dataunit/DataUnit.ts:1756
|
23
23
|
|
24
24
|
___
|
25
25
|
|
@@ -29,7 +29,7 @@ ___
|
|
29
29
|
|
30
30
|
#### Defined in
|
31
31
|
|
32
|
-
src/dataunit/DataUnit.ts:
|
32
|
+
src/dataunit/DataUnit.ts:1758
|
33
33
|
|
34
34
|
___
|
35
35
|
|
@@ -39,7 +39,7 @@ ___
|
|
39
39
|
|
40
40
|
#### Defined in
|
41
41
|
|
42
|
-
src/dataunit/DataUnit.ts:
|
42
|
+
src/dataunit/DataUnit.ts:1755
|
43
43
|
|
44
44
|
___
|
45
45
|
|
@@ -49,4 +49,4 @@ ___
|
|
49
49
|
|
50
50
|
#### Defined in
|
51
51
|
|
52
|
-
src/dataunit/DataUnit.ts:
|
52
|
+
src/dataunit/DataUnit.ts:1757
|
package/enums/SelectionMode.md
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
#### Defined in
|
20
20
|
|
21
|
-
src/dataunit/DataUnit.ts:
|
21
|
+
src/dataunit/DataUnit.ts:1844
|
22
22
|
|
23
23
|
___
|
24
24
|
|
@@ -28,7 +28,7 @@ ___
|
|
28
28
|
|
29
29
|
#### Defined in
|
30
30
|
|
31
|
-
src/dataunit/DataUnit.ts:
|
31
|
+
src/dataunit/DataUnit.ts:1845
|
32
32
|
|
33
33
|
___
|
34
34
|
|
@@ -38,4 +38,4 @@ ___
|
|
38
38
|
|
39
39
|
#### Defined in
|
40
40
|
|
41
|
-
src/dataunit/DataUnit.ts:
|
41
|
+
src/dataunit/DataUnit.ts:1846
|
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
#### Defined in
|
20
20
|
|
21
|
-
src/dataunit/DataUnit.ts:
|
21
|
+
src/dataunit/DataUnit.ts:1851
|
22
22
|
|
23
23
|
___
|
24
24
|
|
@@ -28,7 +28,7 @@ ___
|
|
28
28
|
|
29
29
|
#### Defined in
|
30
30
|
|
31
|
-
src/dataunit/DataUnit.ts:
|
31
|
+
src/dataunit/DataUnit.ts:1852
|
32
32
|
|
33
33
|
___
|
34
34
|
|
@@ -38,4 +38,4 @@ ___
|
|
38
38
|
|
39
39
|
#### Defined in
|
40
40
|
|
41
|
-
src/dataunit/DataUnit.ts:
|
41
|
+
src/dataunit/DataUnit.ts:1850
|
package/interfaces/Record.md
CHANGED
@@ -29,7 +29,7 @@
|
|
29
29
|
|
30
30
|
#### Defined in
|
31
31
|
|
32
|
-
src/dataunit/DataUnit.ts:
|
32
|
+
src/dataunit/DataUnit.ts:1746
|
33
33
|
|
34
34
|
___
|
35
35
|
|
@@ -39,7 +39,7 @@ ___
|
|
39
39
|
|
40
40
|
#### Defined in
|
41
41
|
|
42
|
-
src/dataunit/DataUnit.ts:
|
42
|
+
src/dataunit/DataUnit.ts:1745
|
43
43
|
|
44
44
|
___
|
45
45
|
|
@@ -49,7 +49,7 @@ ___
|
|
49
49
|
|
50
50
|
#### Defined in
|
51
51
|
|
52
|
-
src/dataunit/DataUnit.ts:
|
52
|
+
src/dataunit/DataUnit.ts:1743
|
53
53
|
|
54
54
|
___
|
55
55
|
|
@@ -59,4 +59,4 @@ ___
|
|
59
59
|
|
60
60
|
#### Defined in
|
61
61
|
|
62
|
-
src/dataunit/DataUnit.ts:
|
62
|
+
src/dataunit/DataUnit.ts:1744
|
@@ -26,7 +26,7 @@
|
|
26
26
|
|
27
27
|
#### Defined in
|
28
28
|
|
29
|
-
src/dataunit/DataUnit.ts:
|
29
|
+
src/dataunit/DataUnit.ts:1751
|
30
30
|
|
31
31
|
___
|
32
32
|
|
@@ -40,7 +40,7 @@ ___
|
|
40
40
|
|
41
41
|
#### Defined in
|
42
42
|
|
43
|
-
src/dataunit/DataUnit.ts:
|
43
|
+
src/dataunit/DataUnit.ts:1746
|
44
44
|
|
45
45
|
___
|
46
46
|
|
@@ -54,7 +54,7 @@ ___
|
|
54
54
|
|
55
55
|
#### Defined in
|
56
56
|
|
57
|
-
src/dataunit/DataUnit.ts:
|
57
|
+
src/dataunit/DataUnit.ts:1745
|
58
58
|
|
59
59
|
___
|
60
60
|
|
@@ -68,7 +68,7 @@ ___
|
|
68
68
|
|
69
69
|
#### Defined in
|
70
70
|
|
71
|
-
src/dataunit/DataUnit.ts:
|
71
|
+
src/dataunit/DataUnit.ts:1743
|
72
72
|
|
73
73
|
___
|
74
74
|
|
@@ -82,4 +82,4 @@ ___
|
|
82
82
|
|
83
83
|
#### Defined in
|
84
84
|
|
85
|
-
src/dataunit/DataUnit.ts:
|
85
|
+
src/dataunit/DataUnit.ts:1744
|
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
#### Defined in
|
20
20
|
|
21
|
-
src/dataunit/DataUnit.ts:
|
21
|
+
src/dataunit/DataUnit.ts:1839
|
22
22
|
|
23
23
|
___
|
24
24
|
|
@@ -28,7 +28,7 @@ ___
|
|
28
28
|
|
29
29
|
#### Defined in
|
30
30
|
|
31
|
-
src/dataunit/DataUnit.ts:
|
31
|
+
src/dataunit/DataUnit.ts:1840
|
32
32
|
|
33
33
|
___
|
34
34
|
|
@@ -38,4 +38,4 @@ ___
|
|
38
38
|
|
39
39
|
#### Defined in
|
40
40
|
|
41
|
-
src/dataunit/DataUnit.ts:
|
41
|
+
src/dataunit/DataUnit.ts:1838
|
package/modules.md
CHANGED
@@ -45,6 +45,7 @@
|
|
45
45
|
- [PromiseSync](classes/PromiseSync.md)
|
46
46
|
- [ReadyUtil](classes/ReadyUtil.md)
|
47
47
|
- [RequestMetadata](classes/RequestMetadata.md)
|
48
|
+
- [SearchUtils](classes/SearchUtils.md)
|
48
49
|
- [SelectionInfo](classes/SelectionInfo.md)
|
49
50
|
- [SkwHttpProvider](classes/SkwHttpProvider.md)
|
50
51
|
- [StringUtils](classes/StringUtils.md)
|