@sankhyalabs/core-docs 5.15.5 → 5.16.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/README.md +3 -1
- package/classes/ApplicationContext.md +31 -32
- package/classes/ArrayUtils.md +183 -41
- package/classes/AuthorizedServiceCaller.md +25 -34
- package/classes/Change.md +59 -74
- package/classes/DataUnit.md +970 -1068
- package/classes/DataUnitAction.md +25 -42
- package/classes/DataUnitStorage.md +40 -43
- package/classes/DateUtils.md +133 -126
- package/classes/ElementIDUtils.md +123 -122
- package/classes/ErrorException.md +67 -88
- package/classes/ErrorTracking.md +20 -23
- package/classes/FieldComparator.md +35 -39
- package/classes/FloatingManager.md +195 -198
- package/classes/HTMLBuilder.md +14 -20
- package/classes/HttpProvider.md +45 -41
- package/classes/IDBRepository.md +179 -196
- package/classes/JSUtils.md +82 -58
- package/classes/KeyboardManager.md +95 -87
- package/classes/{MaskFormatter-1.md → MaskFormatter.md} +81 -120
- package/classes/NumberUtils.md +163 -152
- package/classes/ObjectUtils.md +82 -61
- package/classes/OnboardingUtils.md +36 -51
- package/classes/OverflowWatcher.md +269 -0
- package/classes/PromiseSync.md +25 -42
- package/classes/ReadyUtil.md +31 -41
- package/classes/RequestMetadata.md +29 -30
- package/classes/SearchUtils.md +41 -0
- package/classes/SelectionInfo.md +59 -74
- package/classes/SkwHttpProvider.md +33 -45
- package/classes/StringUtils.md +397 -268
- package/classes/TimeFormatter.md +43 -44
- package/classes/UserAgentUtils.md +17 -20
- package/classes/VersionUtils.md +15 -18
- package/classes/WaitingChangeException.md +63 -84
- package/classes/WarningException.md +67 -88
- package/enumerations/Action.md +297 -0
- package/enumerations/ChangeOperation.md +47 -0
- package/enumerations/DataType.md +57 -0
- package/enumerations/DependencyType.md +37 -0
- package/enumerations/OverflowDirection.md +29 -0
- package/enumerations/SelectionMode.md +27 -0
- package/enumerations/SortMode.md +27 -0
- package/enumerations/UserInterface.md +177 -0
- package/functions/defaultDataLoader.md +25 -0
- package/{modules.md → globals.md} +22 -37
- package/interfaces/ChildDescriptor.md +12 -16
- package/interfaces/ChildLink.md +9 -12
- package/interfaces/DUActionInterceptor.md +10 -14
- package/interfaces/ExecutionContext.md +17 -32
- package/interfaces/FieldDescriptor.md +52 -66
- package/interfaces/Filter.md +13 -17
- package/interfaces/IElementIDInfo.md +11 -14
- package/interfaces/ILoadResult.md +11 -16
- package/interfaces/IRepository.md +88 -93
- package/interfaces/IRepositoryIndex.md +23 -30
- package/interfaces/LoadDataRequest.md +36 -45
- package/interfaces/LoadDataResponse.md +11 -14
- package/interfaces/PageRequest.md +16 -20
- package/interfaces/PaginationInfo.md +24 -31
- package/interfaces/PromiseSyncCallback.md +13 -17
- package/interfaces/QuickFilter.md +17 -21
- package/interfaces/Record.md +26 -33
- package/interfaces/SavedRecord.md +33 -41
- package/interfaces/Sort.md +12 -16
- package/interfaces/SortingProvider.md +10 -13
- package/interfaces/UnitMetadata.md +16 -21
- package/interfaces/WaitingChange.md +16 -20
- package/namespaces/MaskFormatter/README.md +17 -0
- package/namespaces/MaskFormatter/type-aliases/MaskCharacter.md +13 -0
- package/namespaces/MaskFormatter/variables/MaskCharacter.md +13 -0
- package/package.json +1 -1
- package/type-aliases/OnOverflowCallBack.md +25 -0
- package/enums/Action.md +0 -327
- package/enums/ChangeOperation.md +0 -52
- package/enums/DataType.md +0 -63
- package/enums/DependencyType.md +0 -41
- package/enums/SelectionMode.md +0 -30
- package/enums/SortMode.md +0 -30
- package/enums/UserInterface.md +0 -195
- package/modules/MaskFormatter.md +0 -37
package/classes/ObjectUtils.md
CHANGED
@@ -1,48 +1,40 @@
|
|
1
|
-
[
|
1
|
+
[**@sankhyalabs/core**](../README.md) • **Docs**
|
2
2
|
|
3
|
-
|
3
|
+
***
|
4
4
|
|
5
|
-
|
5
|
+
[@sankhyalabs/core](../globals.md) / ObjectUtils
|
6
6
|
|
7
|
-
|
7
|
+
# Class: ObjectUtils
|
8
8
|
|
9
|
-
|
9
|
+
`ObjectUtils`: Utilizado para manipulação de objetos.
|
10
10
|
|
11
|
-
|
11
|
+
## Constructors
|
12
12
|
|
13
|
-
###
|
13
|
+
### new ObjectUtils()
|
14
14
|
|
15
|
-
|
16
|
-
- [objectToString](ObjectUtils.md#objecttostring)
|
17
|
-
- [removeEmptyValues](ObjectUtils.md#removeemptyvalues)
|
18
|
-
- [sortByProperty](ObjectUtils.md#sortbyproperty)
|
19
|
-
- [stringToObject](ObjectUtils.md#stringtoobject)
|
15
|
+
> **new ObjectUtils**(): [`ObjectUtils`](ObjectUtils.md)
|
20
16
|
|
21
|
-
|
22
|
-
|
23
|
-
### constructor
|
17
|
+
#### Returns
|
24
18
|
|
25
|
-
|
19
|
+
[`ObjectUtils`](ObjectUtils.md)
|
26
20
|
|
27
21
|
## Methods
|
28
22
|
|
29
|
-
### copy
|
23
|
+
### copy()
|
30
24
|
|
31
|
-
|
25
|
+
> `static` **copy**\<`T`\>(`data`): `T`
|
32
26
|
|
33
27
|
Faz a cópia do objeto.
|
34
28
|
|
35
29
|
#### Type parameters
|
36
30
|
|
37
|
-
|
38
|
-
| :------ |
|
39
|
-
| `T` |
|
31
|
+
• **T**
|
40
32
|
|
41
33
|
#### Parameters
|
42
34
|
|
43
|
-
|
44
|
-
|
45
|
-
|
35
|
+
• **data**: `Object` \| `Object`[]
|
36
|
+
|
37
|
+
Objeto a ser copiado.
|
46
38
|
|
47
39
|
#### Returns
|
48
40
|
|
@@ -50,27 +42,51 @@ Faz a cópia do objeto.
|
|
50
42
|
|
51
43
|
- A cópia do objeto válido.
|
52
44
|
|
53
|
-
####
|
45
|
+
#### Source
|
54
46
|
|
55
47
|
src/utils/ObjectUtils.ts:13
|
56
48
|
|
57
|
-
|
49
|
+
***
|
58
50
|
|
59
|
-
###
|
51
|
+
### equals()
|
60
52
|
|
61
|
-
|
53
|
+
> `static` **equals**(`obj1`, `obj2`): `any`
|
62
54
|
|
63
|
-
|
55
|
+
Compara se um objeto é igual a outro objeto.
|
64
56
|
|
65
|
-
|
57
|
+
#### Parameters
|
66
58
|
|
67
|
-
|
59
|
+
• **obj1**: `any`
|
60
|
+
|
61
|
+
Objeto a ser comparado.
|
62
|
+
|
63
|
+
• **obj2**: `any`
|
64
|
+
|
65
|
+
Objeto a ser comparado.
|
66
|
+
|
67
|
+
#### Returns
|
68
|
+
|
69
|
+
`any`
|
70
|
+
|
71
|
+
- Se o objeto 1 é igual ao objeto 2.
|
72
|
+
|
73
|
+
#### Source
|
74
|
+
|
75
|
+
src/utils/ObjectUtils.ts:84
|
76
|
+
|
77
|
+
***
|
78
|
+
|
79
|
+
### objectToString()
|
80
|
+
|
81
|
+
> `static` **objectToString**(`data`): `string`
|
82
|
+
|
83
|
+
Converte um objeto em string/JSON.
|
68
84
|
|
69
85
|
#### Parameters
|
70
86
|
|
71
|
-
|
72
|
-
|
73
|
-
|
87
|
+
• **data**: `Object` \| `Object`[]
|
88
|
+
|
89
|
+
Objeto a ser convertido.
|
74
90
|
|
75
91
|
#### Returns
|
76
92
|
|
@@ -78,23 +94,25 @@ Converte um objeto em string/JSON.
|
|
78
94
|
|
79
95
|
- Uma string JSON.
|
80
96
|
|
81
|
-
####
|
97
|
+
#### Example
|
98
|
+
|
99
|
+
@Informado: ```{nome : "Sankhya", cidade: "Uberlandia"}``` | Obtenho: ```"{"nome" : "Sankhya", "cidade":"Uberlandia"}"```
|
100
|
+
|
101
|
+
#### Source
|
82
102
|
|
83
103
|
src/utils/ObjectUtils.ts:26
|
84
104
|
|
85
|
-
|
105
|
+
***
|
86
106
|
|
87
|
-
### removeEmptyValues
|
107
|
+
### removeEmptyValues()
|
88
108
|
|
89
|
-
|
109
|
+
> `static` **removeEmptyValues**(`obj`): `object`
|
90
110
|
|
91
111
|
Remove atributos nulos e indefinidos de um objeto.
|
92
112
|
|
93
113
|
#### Parameters
|
94
114
|
|
95
|
-
|
96
|
-
| :------ | :------ |
|
97
|
-
| `obj` | `object` |
|
115
|
+
• **obj**: `object`
|
98
116
|
|
99
117
|
#### Returns
|
100
118
|
|
@@ -102,24 +120,27 @@ Remove atributos nulos e indefinidos de um objeto.
|
|
102
120
|
|
103
121
|
- O objeto com as propriedades válidas.
|
104
122
|
|
105
|
-
####
|
123
|
+
#### Source
|
106
124
|
|
107
125
|
src/utils/ObjectUtils.ts:68
|
108
126
|
|
109
|
-
|
127
|
+
***
|
110
128
|
|
111
|
-
### sortByProperty
|
129
|
+
### sortByProperty()
|
112
130
|
|
113
|
-
|
131
|
+
> `static` **sortByProperty**(`data`, `property`): `any`
|
114
132
|
|
115
133
|
Faz a ordenação de um objeto por uma propriedade.
|
116
134
|
|
117
135
|
#### Parameters
|
118
136
|
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
137
|
+
• **data**: `any`
|
138
|
+
|
139
|
+
Objeto a ser ordenado.
|
140
|
+
|
141
|
+
• **property**: `string`
|
142
|
+
|
143
|
+
Nome da propriedade a ser ordenada.
|
123
144
|
|
124
145
|
#### Returns
|
125
146
|
|
@@ -127,27 +148,23 @@ Faz a ordenação de um objeto por uma propriedade.
|
|
127
148
|
|
128
149
|
- O objeto ordenado pela propriedade.
|
129
150
|
|
130
|
-
####
|
151
|
+
#### Source
|
131
152
|
|
132
153
|
src/utils/ObjectUtils.ts:50
|
133
154
|
|
134
|
-
|
155
|
+
***
|
135
156
|
|
136
|
-
### stringToObject
|
157
|
+
### stringToObject()
|
137
158
|
|
138
|
-
|
159
|
+
> `static` **stringToObject**(`data`): `Object` \| `Object`[]
|
139
160
|
|
140
161
|
Converte uma string/JSON em objeto.
|
141
162
|
|
142
|
-
**`Example`**
|
143
|
-
|
144
|
-
Informado: ```"{"nome" : "Sankhya", "cidade":"Uberlandia"}"``` | Obtenho: ```{nome : "Sankhya", cidade: "Uberlandia"}```
|
145
|
-
|
146
163
|
#### Parameters
|
147
164
|
|
148
|
-
|
149
|
-
|
150
|
-
|
165
|
+
• **data**: `string`
|
166
|
+
|
167
|
+
String a ser convertida.
|
151
168
|
|
152
169
|
#### Returns
|
153
170
|
|
@@ -155,6 +172,10 @@ Informado: ```"{"nome" : "Sankhya", "cidade":"Uberlandia"}"``` | Obtenho: ```{no
|
|
155
172
|
|
156
173
|
- Um objeto válido.
|
157
174
|
|
158
|
-
####
|
175
|
+
#### Example
|
176
|
+
|
177
|
+
Informado: ```"{"nome" : "Sankhya", "cidade":"Uberlandia"}"``` | Obtenho: ```{nome : "Sankhya", cidade: "Uberlandia"}```
|
178
|
+
|
179
|
+
#### Source
|
159
180
|
|
160
181
|
src/utils/ObjectUtils.ts:39
|
@@ -1,32 +1,22 @@
|
|
1
|
-
[
|
1
|
+
[**@sankhyalabs/core**](../README.md) • **Docs**
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
## Table of contents
|
6
|
-
|
7
|
-
### Constructors
|
3
|
+
***
|
8
4
|
|
9
|
-
|
5
|
+
[@sankhyalabs/core](../globals.md) / OnboardingUtils
|
10
6
|
|
11
|
-
|
12
|
-
|
13
|
-
- [USER\_GUIDE\_TAG\_ID](OnboardingUtils.md#user_guide_tag_id)
|
14
|
-
- [instance](OnboardingUtils.md#instance)
|
7
|
+
# Class: OnboardingUtils
|
15
8
|
|
16
|
-
|
9
|
+
## Constructors
|
17
10
|
|
18
|
-
|
19
|
-
- [injectScript](OnboardingUtils.md#injectscript)
|
20
|
-
- [register](OnboardingUtils.md#register)
|
21
|
-
- [getInstance](OnboardingUtils.md#getinstance)
|
11
|
+
### new OnboardingUtils()
|
22
12
|
|
23
|
-
|
13
|
+
> `private` **new OnboardingUtils**(): [`OnboardingUtils`](OnboardingUtils.md)
|
24
14
|
|
25
|
-
|
15
|
+
#### Returns
|
26
16
|
|
27
|
-
|
17
|
+
[`OnboardingUtils`](OnboardingUtils.md)
|
28
18
|
|
29
|
-
####
|
19
|
+
#### Source
|
30
20
|
|
31
21
|
src/utils/OnboardingUtils.ts:5
|
32
22
|
|
@@ -34,93 +24,88 @@ src/utils/OnboardingUtils.ts:5
|
|
34
24
|
|
35
25
|
### USER\_GUIDE\_TAG\_ID
|
36
26
|
|
37
|
-
|
27
|
+
> `static` `private` `readonly` **USER\_GUIDE\_TAG\_ID**: `"userGuideSnippet"` = `"userGuideSnippet"`
|
38
28
|
|
39
|
-
####
|
29
|
+
#### Source
|
40
30
|
|
41
31
|
src/utils/OnboardingUtils.ts:2
|
42
32
|
|
43
|
-
|
33
|
+
***
|
44
34
|
|
45
35
|
### instance
|
46
36
|
|
47
|
-
|
37
|
+
> `static` `private` **instance**: [`OnboardingUtils`](OnboardingUtils.md)
|
48
38
|
|
49
|
-
####
|
39
|
+
#### Source
|
50
40
|
|
51
41
|
src/utils/OnboardingUtils.ts:3
|
52
42
|
|
53
43
|
## Methods
|
54
44
|
|
55
|
-
### init
|
45
|
+
### init()
|
56
46
|
|
57
|
-
|
47
|
+
> **init**(`apiKey`, `ctx`): `Promise`\<`void`\>
|
58
48
|
|
59
49
|
#### Parameters
|
60
50
|
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
| `ctx` | `EnvironmentContext` |
|
51
|
+
• **apiKey**: `string`
|
52
|
+
|
53
|
+
• **ctx**: `EnvironmentContext`
|
65
54
|
|
66
55
|
#### Returns
|
67
56
|
|
68
|
-
`Promise
|
57
|
+
`Promise`\<`void`\>
|
69
58
|
|
70
|
-
####
|
59
|
+
#### Source
|
71
60
|
|
72
61
|
src/utils/OnboardingUtils.ts:14
|
73
62
|
|
74
|
-
|
63
|
+
***
|
75
64
|
|
76
|
-
### injectScript
|
65
|
+
### injectScript()
|
77
66
|
|
78
|
-
|
67
|
+
> `private` **injectScript**(`apiKey`): `void`
|
79
68
|
|
80
69
|
#### Parameters
|
81
70
|
|
82
|
-
|
83
|
-
| :------ | :------ |
|
84
|
-
| `apiKey` | `string` |
|
71
|
+
• **apiKey**: `string`
|
85
72
|
|
86
73
|
#### Returns
|
87
74
|
|
88
75
|
`void`
|
89
76
|
|
90
|
-
####
|
77
|
+
#### Source
|
91
78
|
|
92
79
|
src/utils/OnboardingUtils.ts:23
|
93
80
|
|
94
|
-
|
81
|
+
***
|
95
82
|
|
96
|
-
### register
|
83
|
+
### register()
|
97
84
|
|
98
|
-
|
85
|
+
> `private` **register**(`ctx`): `void`
|
99
86
|
|
100
87
|
#### Parameters
|
101
88
|
|
102
|
-
|
103
|
-
| :------ | :------ |
|
104
|
-
| `ctx` | `EnvironmentContext` |
|
89
|
+
• **ctx**: `EnvironmentContext`
|
105
90
|
|
106
91
|
#### Returns
|
107
92
|
|
108
93
|
`void`
|
109
94
|
|
110
|
-
####
|
95
|
+
#### Source
|
111
96
|
|
112
97
|
src/utils/OnboardingUtils.ts:34
|
113
98
|
|
114
|
-
|
99
|
+
***
|
115
100
|
|
116
|
-
### getInstance
|
101
|
+
### getInstance()
|
117
102
|
|
118
|
-
|
103
|
+
> `static` **getInstance**(): [`OnboardingUtils`](OnboardingUtils.md)
|
119
104
|
|
120
105
|
#### Returns
|
121
106
|
|
122
107
|
[`OnboardingUtils`](OnboardingUtils.md)
|
123
108
|
|
124
|
-
####
|
109
|
+
#### Source
|
125
110
|
|
126
111
|
src/utils/OnboardingUtils.ts:7
|
@@ -0,0 +1,269 @@
|
|
1
|
+
[**@sankhyalabs/core**](../README.md) • **Docs**
|
2
|
+
|
3
|
+
***
|
4
|
+
|
5
|
+
[@sankhyalabs/core](../globals.md) / OverflowWatcher
|
6
|
+
|
7
|
+
# Class: OverflowWatcher
|
8
|
+
|
9
|
+
## Constructors
|
10
|
+
|
11
|
+
### new OverflowWatcher()
|
12
|
+
|
13
|
+
> **new OverflowWatcher**(`element`, `callback`, `overFlowDirection`, `deltaSize`): [`OverflowWatcher`](OverflowWatcher.md)
|
14
|
+
|
15
|
+
Cria uma instancia do OverflowWatcher
|
16
|
+
|
17
|
+
#### Parameters
|
18
|
+
|
19
|
+
• **element**: `HTMLElement`
|
20
|
+
|
21
|
+
Elemento HTML que o overflow será observado.
|
22
|
+
|
23
|
+
• **callback**: [`OnOverflowCallBack`](../type-aliases/OnOverflowCallBack.md)
|
24
|
+
|
25
|
+
Função que sera chamada quando ocorrer overflow no elemento.
|
26
|
+
|
27
|
+
• **overFlowDirection**: [`OverflowDirection`](../enumerations/OverflowDirection.md)= `OverflowDirection.HORIZONTAL`
|
28
|
+
|
29
|
+
Indica direção que o overflow será monitorado.
|
30
|
+
|
31
|
+
• **deltaSize**: `number`= `10`
|
32
|
+
|
33
|
+
Variação de tamanho que será considerada como overflow.
|
34
|
+
|
35
|
+
#### Returns
|
36
|
+
|
37
|
+
[`OverflowWatcher`](OverflowWatcher.md)
|
38
|
+
|
39
|
+
#### Source
|
40
|
+
|
41
|
+
src/utils/OverflowWatcher/index.ts:25
|
42
|
+
|
43
|
+
## Properties
|
44
|
+
|
45
|
+
### \_deltaSize
|
46
|
+
|
47
|
+
> `private` **\_deltaSize**: `number`
|
48
|
+
|
49
|
+
#### Source
|
50
|
+
|
51
|
+
src/utils/OverflowWatcher/index.ts:15
|
52
|
+
|
53
|
+
***
|
54
|
+
|
55
|
+
### \_hiddenItems
|
56
|
+
|
57
|
+
> `private` **\_hiddenItems**: `Element`[] = `[]`
|
58
|
+
|
59
|
+
#### Source
|
60
|
+
|
61
|
+
src/utils/OverflowWatcher/index.ts:14
|
62
|
+
|
63
|
+
***
|
64
|
+
|
65
|
+
### \_lastContentRect
|
66
|
+
|
67
|
+
> `private` **\_lastContentRect**: `undefined` \| `DOMRectReadOnly` = `undefined`
|
68
|
+
|
69
|
+
#### Source
|
70
|
+
|
71
|
+
src/utils/OverflowWatcher/index.ts:11
|
72
|
+
|
73
|
+
***
|
74
|
+
|
75
|
+
### \_onResize
|
76
|
+
|
77
|
+
> `private` **\_onResize**: [`OnOverflowCallBack`](../type-aliases/OnOverflowCallBack.md)
|
78
|
+
|
79
|
+
#### Source
|
80
|
+
|
81
|
+
src/utils/OverflowWatcher/index.ts:9
|
82
|
+
|
83
|
+
***
|
84
|
+
|
85
|
+
### \_propSize
|
86
|
+
|
87
|
+
> `private` **\_propSize**: `string`
|
88
|
+
|
89
|
+
#### Source
|
90
|
+
|
91
|
+
src/utils/OverflowWatcher/index.ts:13
|
92
|
+
|
93
|
+
***
|
94
|
+
|
95
|
+
### \_resizeObserver
|
96
|
+
|
97
|
+
> `private` **\_resizeObserver**: `ResizeObserver`
|
98
|
+
|
99
|
+
#### Source
|
100
|
+
|
101
|
+
src/utils/OverflowWatcher/index.ts:10
|
102
|
+
|
103
|
+
***
|
104
|
+
|
105
|
+
### \_scrollDirection
|
106
|
+
|
107
|
+
> `private` **\_scrollDirection**: [`OverflowDirection`](../enumerations/OverflowDirection.md) = `OverflowDirection.HORIZONTAL`
|
108
|
+
|
109
|
+
#### Source
|
110
|
+
|
111
|
+
src/utils/OverflowWatcher/index.ts:12
|
112
|
+
|
113
|
+
## Methods
|
114
|
+
|
115
|
+
### calcChildrenSize()
|
116
|
+
|
117
|
+
> `private` **calcChildrenSize**(`children`): `number`
|
118
|
+
|
119
|
+
#### Parameters
|
120
|
+
|
121
|
+
• **children**: `Element`[]
|
122
|
+
|
123
|
+
#### Returns
|
124
|
+
|
125
|
+
`number`
|
126
|
+
|
127
|
+
#### Source
|
128
|
+
|
129
|
+
src/utils/OverflowWatcher/index.ts:126
|
130
|
+
|
131
|
+
***
|
132
|
+
|
133
|
+
### calcMarginSize()
|
134
|
+
|
135
|
+
> `private` **calcMarginSize**(`el`): `number`
|
136
|
+
|
137
|
+
#### Parameters
|
138
|
+
|
139
|
+
• **el**: `Element`
|
140
|
+
|
141
|
+
#### Returns
|
142
|
+
|
143
|
+
`number`
|
144
|
+
|
145
|
+
#### Source
|
146
|
+
|
147
|
+
src/utils/OverflowWatcher/index.ts:141
|
148
|
+
|
149
|
+
***
|
150
|
+
|
151
|
+
### destroy()
|
152
|
+
|
153
|
+
> **destroy**(): `void`
|
154
|
+
|
155
|
+
#### Returns
|
156
|
+
|
157
|
+
`void`
|
158
|
+
|
159
|
+
#### Source
|
160
|
+
|
161
|
+
src/utils/OverflowWatcher/index.ts:37
|
162
|
+
|
163
|
+
***
|
164
|
+
|
165
|
+
### getPropSizeByDirection()
|
166
|
+
|
167
|
+
> `private` **getPropSizeByDirection**(): `string`
|
168
|
+
|
169
|
+
#### Returns
|
170
|
+
|
171
|
+
`string`
|
172
|
+
|
173
|
+
#### Source
|
174
|
+
|
175
|
+
src/utils/OverflowWatcher/index.ts:65
|
176
|
+
|
177
|
+
***
|
178
|
+
|
179
|
+
### handleResize()
|
180
|
+
|
181
|
+
> `private` **handleResize**(`entries`): `void`
|
182
|
+
|
183
|
+
#### Parameters
|
184
|
+
|
185
|
+
• **entries**: `ResizeObserverEntry`[]
|
186
|
+
|
187
|
+
#### Returns
|
188
|
+
|
189
|
+
`void`
|
190
|
+
|
191
|
+
#### Source
|
192
|
+
|
193
|
+
src/utils/OverflowWatcher/index.ts:41
|
194
|
+
|
195
|
+
***
|
196
|
+
|
197
|
+
### isChangedSize()
|
198
|
+
|
199
|
+
> `private` **isChangedSize**(`newContentRect`): `boolean`
|
200
|
+
|
201
|
+
#### Parameters
|
202
|
+
|
203
|
+
• **newContentRect**: `DOMRectReadOnly`
|
204
|
+
|
205
|
+
#### Returns
|
206
|
+
|
207
|
+
`boolean`
|
208
|
+
|
209
|
+
#### Source
|
210
|
+
|
211
|
+
src/utils/OverflowWatcher/index.ts:57
|
212
|
+
|
213
|
+
***
|
214
|
+
|
215
|
+
### proccessElements()
|
216
|
+
|
217
|
+
> `private` **proccessElements**(`elementSize`, `children`): `void`
|
218
|
+
|
219
|
+
#### Parameters
|
220
|
+
|
221
|
+
• **elementSize**: `number`
|
222
|
+
|
223
|
+
• **children**: `Element`[]
|
224
|
+
|
225
|
+
#### Returns
|
226
|
+
|
227
|
+
`void`
|
228
|
+
|
229
|
+
#### Source
|
230
|
+
|
231
|
+
src/utils/OverflowWatcher/index.ts:73
|
232
|
+
|
233
|
+
***
|
234
|
+
|
235
|
+
### proccessElementsOverFlow()
|
236
|
+
|
237
|
+
> `private` **proccessElementsOverFlow**(`children`, `diff`): `void`
|
238
|
+
|
239
|
+
#### Parameters
|
240
|
+
|
241
|
+
• **children**: `Element`[]
|
242
|
+
|
243
|
+
• **diff**: `number`
|
244
|
+
|
245
|
+
#### Returns
|
246
|
+
|
247
|
+
`void`
|
248
|
+
|
249
|
+
#### Source
|
250
|
+
|
251
|
+
src/utils/OverflowWatcher/index.ts:103
|
252
|
+
|
253
|
+
***
|
254
|
+
|
255
|
+
### proccessElementsWithoutOverFlow()
|
256
|
+
|
257
|
+
> `private` **proccessElementsWithoutOverFlow**(`diff`): `void`
|
258
|
+
|
259
|
+
#### Parameters
|
260
|
+
|
261
|
+
• **diff**: `number`
|
262
|
+
|
263
|
+
#### Returns
|
264
|
+
|
265
|
+
`void`
|
266
|
+
|
267
|
+
#### Source
|
268
|
+
|
269
|
+
src/utils/OverflowWatcher/index.ts:91
|