@sankhyalabs/core-docs 0.0.0-bugfix-dev-KB-43388.0 → 0.0.0-bugfix-dev-KB-46291.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/DataUnit.md
CHANGED
@@ -62,7 +62,7 @@ src/dataunit/DataUnit.ts:42
|
|
62
62
|
|
63
63
|
### \_interceptors
|
64
64
|
|
65
|
-
> `private` **\_interceptors**: [`DUActionInterceptor`](../interfaces/DUActionInterceptor.md)
|
65
|
+
> `private` **\_interceptors**: `Map`\<`string`, [`DUActionInterceptor`](../interfaces/DUActionInterceptor.md)\>
|
66
66
|
|
67
67
|
#### Source
|
68
68
|
|
@@ -92,7 +92,7 @@ src/dataunit/DataUnit.ts:39
|
|
92
92
|
|
93
93
|
### \_observers
|
94
94
|
|
95
|
-
> `private` **\_observers**: (`action`) => `void`[]
|
95
|
+
> `private` **\_observers**: (`action`, `options`?) => `void`[]
|
96
96
|
|
97
97
|
#### Source
|
98
98
|
|
@@ -828,7 +828,7 @@ src/dataunit/DataUnit.ts:1649
|
|
828
828
|
|
829
829
|
### dispatchAction()
|
830
830
|
|
831
|
-
> `private` **dispatchAction**(`actionType`, `payload`?, `executionCtx`?): `Promise`\<`boolean`\>
|
831
|
+
> `private` **dispatchAction**(`actionType`, `payload`?, `executionCtx`?, `options`?): `Promise`\<`boolean`\>
|
832
832
|
|
833
833
|
Lança ação do DataUnit para que sejam processadas.
|
834
834
|
|
@@ -846,6 +846,8 @@ Dados que serão processados na ação.
|
|
846
846
|
|
847
847
|
Contexto de execução de lançar a ação que será executada.
|
848
848
|
|
849
|
+
• **options?**: [`DataUnitEventOptions`](../type-aliases/DataUnitEventOptions.md)
|
850
|
+
|
849
851
|
#### Returns
|
850
852
|
|
851
853
|
`Promise`\<`boolean`\>
|
@@ -860,7 +862,7 @@ src/dataunit/DataUnit.ts:1437
|
|
860
862
|
|
861
863
|
### doDispatchAction()
|
862
864
|
|
863
|
-
> `private` **doDispatchAction**(`action`): `void`
|
865
|
+
> `private` **doDispatchAction**(`action`, `options`): `void`
|
864
866
|
|
865
867
|
Processa as ações no DataUnit e notifica os observers.
|
866
868
|
|
@@ -870,6 +872,8 @@ Processa as ações no DataUnit e notifica os observers.
|
|
870
872
|
|
871
873
|
Ações em execução no DataUnit.
|
872
874
|
|
875
|
+
• **options**: [`DataUnitEventOptions`](../type-aliases/DataUnitEventOptions.md)= `{}`
|
876
|
+
|
873
877
|
#### Returns
|
874
878
|
|
875
879
|
`void`
|
@@ -2174,7 +2178,7 @@ src/dataunit/DataUnit.ts:1068
|
|
2174
2178
|
|
2175
2179
|
### setFieldValue()
|
2176
2180
|
|
2177
|
-
> **setFieldValue**(`fieldName`, `newValue`, `records`?): `Promise`\<`boolean`\>
|
2181
|
+
> **setFieldValue**(`fieldName`, `newValue`, `records`?, `options`?): `Promise`\<`boolean`\>
|
2178
2182
|
|
2179
2183
|
Insere valor no campo desejado.
|
2180
2184
|
|
@@ -2192,6 +2196,8 @@ Valor a ser inserido no campo.
|
|
2192
2196
|
|
2193
2197
|
Indica quais registros foram afetados pela alteração no valor do campo.
|
2194
2198
|
|
2199
|
+
• **options?**: [`DataUnitEventOptions`](../type-aliases/DataUnitEventOptions.md)
|
2200
|
+
|
2195
2201
|
#### Returns
|
2196
2202
|
|
2197
2203
|
`Promise`\<`boolean`\>
|
@@ -138,6 +138,24 @@ src/utils/OverflowWatcher/index.ts:16
|
|
138
138
|
|
139
139
|
## Methods
|
140
140
|
|
141
|
+
### addNotOverFlowElement()
|
142
|
+
|
143
|
+
> **addNotOverFlowElement**(`elementId`): `void`
|
144
|
+
|
145
|
+
#### Parameters
|
146
|
+
|
147
|
+
• **elementId**: `string`
|
148
|
+
|
149
|
+
#### Returns
|
150
|
+
|
151
|
+
`void`
|
152
|
+
|
153
|
+
#### Source
|
154
|
+
|
155
|
+
src/utils/OverflowWatcher/index.ts:52
|
156
|
+
|
157
|
+
***
|
158
|
+
|
141
159
|
### calcChildrenSize()
|
142
160
|
|
143
161
|
> `private` **calcChildrenSize**(`children`): `number`
|
@@ -152,7 +170,7 @@ src/utils/OverflowWatcher/index.ts:16
|
|
152
170
|
|
153
171
|
#### Source
|
154
172
|
|
155
|
-
src/utils/OverflowWatcher/index.ts:
|
173
|
+
src/utils/OverflowWatcher/index.ts:205
|
156
174
|
|
157
175
|
***
|
158
176
|
|
@@ -170,7 +188,7 @@ src/utils/OverflowWatcher/index.ts:199
|
|
170
188
|
|
171
189
|
#### Source
|
172
190
|
|
173
|
-
src/utils/OverflowWatcher/index.ts:
|
191
|
+
src/utils/OverflowWatcher/index.ts:212
|
174
192
|
|
175
193
|
***
|
176
194
|
|
@@ -188,7 +206,7 @@ src/utils/OverflowWatcher/index.ts:206
|
|
188
206
|
|
189
207
|
#### Source
|
190
208
|
|
191
|
-
src/utils/OverflowWatcher/index.ts:
|
209
|
+
src/utils/OverflowWatcher/index.ts:177
|
192
210
|
|
193
211
|
***
|
194
212
|
|
@@ -206,7 +224,7 @@ src/utils/OverflowWatcher/index.ts:171
|
|
206
224
|
|
207
225
|
#### Source
|
208
226
|
|
209
|
-
src/utils/OverflowWatcher/index.ts:
|
227
|
+
src/utils/OverflowWatcher/index.ts:187
|
210
228
|
|
211
229
|
***
|
212
230
|
|
@@ -224,7 +242,7 @@ src/utils/OverflowWatcher/index.ts:181
|
|
224
242
|
|
225
243
|
#### Source
|
226
244
|
|
227
|
-
src/utils/OverflowWatcher/index.ts:
|
245
|
+
src/utils/OverflowWatcher/index.ts:96
|
228
246
|
|
229
247
|
***
|
230
248
|
|
@@ -242,7 +260,7 @@ src/utils/OverflowWatcher/index.ts:90
|
|
242
260
|
|
243
261
|
#### Source
|
244
262
|
|
245
|
-
src/utils/OverflowWatcher/index.ts:
|
263
|
+
src/utils/OverflowWatcher/index.ts:157
|
246
264
|
|
247
265
|
***
|
248
266
|
|
@@ -256,7 +274,7 @@ src/utils/OverflowWatcher/index.ts:151
|
|
256
274
|
|
257
275
|
#### Source
|
258
276
|
|
259
|
-
src/utils/OverflowWatcher/index.ts:
|
277
|
+
src/utils/OverflowWatcher/index.ts:126
|
260
278
|
|
261
279
|
***
|
262
280
|
|
@@ -270,7 +288,7 @@ src/utils/OverflowWatcher/index.ts:120
|
|
270
288
|
|
271
289
|
#### Source
|
272
290
|
|
273
|
-
src/utils/OverflowWatcher/index.ts:
|
291
|
+
src/utils/OverflowWatcher/index.ts:58
|
274
292
|
|
275
293
|
***
|
276
294
|
|
@@ -292,7 +310,7 @@ src/utils/OverflowWatcher/index.ts:52
|
|
292
310
|
|
293
311
|
#### Source
|
294
312
|
|
295
|
-
src/utils/OverflowWatcher/index.ts:
|
313
|
+
src/utils/OverflowWatcher/index.ts:166
|
296
314
|
|
297
315
|
***
|
298
316
|
|
@@ -306,7 +324,7 @@ src/utils/OverflowWatcher/index.ts:160
|
|
306
324
|
|
307
325
|
#### Source
|
308
326
|
|
309
|
-
src/utils/OverflowWatcher/index.ts:
|
327
|
+
src/utils/OverflowWatcher/index.ts:62
|
310
328
|
|
311
329
|
***
|
312
330
|
|
@@ -324,7 +342,7 @@ src/utils/OverflowWatcher/index.ts:56
|
|
324
342
|
|
325
343
|
#### Source
|
326
344
|
|
327
|
-
src/utils/OverflowWatcher/index.ts:
|
345
|
+
src/utils/OverflowWatcher/index.ts:162
|
328
346
|
|
329
347
|
***
|
330
348
|
|
@@ -342,7 +360,7 @@ src/utils/OverflowWatcher/index.ts:156
|
|
342
360
|
|
343
361
|
#### Source
|
344
362
|
|
345
|
-
src/utils/OverflowWatcher/index.ts:
|
363
|
+
src/utils/OverflowWatcher/index.ts:197
|
346
364
|
|
347
365
|
***
|
348
366
|
|
@@ -360,7 +378,7 @@ src/utils/OverflowWatcher/index.ts:191
|
|
360
378
|
|
361
379
|
#### Source
|
362
380
|
|
363
|
-
src/utils/OverflowWatcher/index.ts:
|
381
|
+
src/utils/OverflowWatcher/index.ts:68
|
364
382
|
|
365
383
|
***
|
366
384
|
|
@@ -378,7 +396,7 @@ src/utils/OverflowWatcher/index.ts:62
|
|
378
396
|
|
379
397
|
#### Source
|
380
398
|
|
381
|
-
src/utils/OverflowWatcher/index.ts:
|
399
|
+
src/utils/OverflowWatcher/index.ts:100
|
382
400
|
|
383
401
|
***
|
384
402
|
|
@@ -398,7 +416,7 @@ src/utils/OverflowWatcher/index.ts:94
|
|
398
416
|
|
399
417
|
#### Source
|
400
418
|
|
401
|
-
src/utils/OverflowWatcher/index.ts:
|
419
|
+
src/utils/OverflowWatcher/index.ts:153
|
402
420
|
|
403
421
|
***
|
404
422
|
|
@@ -416,7 +434,7 @@ src/utils/OverflowWatcher/index.ts:147
|
|
416
434
|
|
417
435
|
#### Source
|
418
436
|
|
419
|
-
src/utils/OverflowWatcher/index.ts:
|
437
|
+
src/utils/OverflowWatcher/index.ts:226
|
420
438
|
|
421
439
|
***
|
422
440
|
|
@@ -436,7 +454,7 @@ src/utils/OverflowWatcher/index.ts:220
|
|
436
454
|
|
437
455
|
#### Source
|
438
456
|
|
439
|
-
src/utils/OverflowWatcher/index.ts:
|
457
|
+
src/utils/OverflowWatcher/index.ts:112
|
440
458
|
|
441
459
|
***
|
442
460
|
|
@@ -456,7 +474,7 @@ src/utils/OverflowWatcher/index.ts:106
|
|
456
474
|
|
457
475
|
#### Source
|
458
476
|
|
459
|
-
src/utils/OverflowWatcher/index.ts:
|
477
|
+
src/utils/OverflowWatcher/index.ts:131
|
460
478
|
|
461
479
|
***
|
462
480
|
|
@@ -474,7 +492,7 @@ src/utils/OverflowWatcher/index.ts:125
|
|
474
492
|
|
475
493
|
#### Source
|
476
494
|
|
477
|
-
src/utils/OverflowWatcher/index.ts:
|
495
|
+
src/utils/OverflowWatcher/index.ts:192
|
478
496
|
|
479
497
|
***
|
480
498
|
|
@@ -492,7 +510,7 @@ src/utils/OverflowWatcher/index.ts:186
|
|
492
510
|
|
493
511
|
#### Source
|
494
512
|
|
495
|
-
src/utils/OverflowWatcher/index.ts:
|
513
|
+
src/utils/OverflowWatcher/index.ts:88
|
496
514
|
|
497
515
|
***
|
498
516
|
|
@@ -512,4 +530,4 @@ src/utils/OverflowWatcher/index.ts:82
|
|
512
530
|
|
513
531
|
#### Source
|
514
532
|
|
515
|
-
src/utils/OverflowWatcher/index.ts:
|
533
|
+
src/utils/OverflowWatcher/index.ts:80
|
package/globals.md
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
#### Source
|
16
16
|
|
17
|
-
src/utils/OverflowWatcher/index.ts:
|
17
|
+
src/utils/OverflowWatcher/index.ts:233
|
18
18
|
|
19
19
|
***
|
20
20
|
|
@@ -24,7 +24,7 @@ src/utils/OverflowWatcher/index.ts:227
|
|
24
24
|
|
25
25
|
#### Source
|
26
26
|
|
27
|
-
src/utils/OverflowWatcher/index.ts:
|
27
|
+
src/utils/OverflowWatcher/index.ts:236
|
28
28
|
|
29
29
|
***
|
30
30
|
|
@@ -34,7 +34,7 @@ src/utils/OverflowWatcher/index.ts:230
|
|
34
34
|
|
35
35
|
#### Source
|
36
36
|
|
37
|
-
src/utils/OverflowWatcher/index.ts:
|
37
|
+
src/utils/OverflowWatcher/index.ts:235
|
38
38
|
|
39
39
|
***
|
40
40
|
|
@@ -44,7 +44,7 @@ src/utils/OverflowWatcher/index.ts:229
|
|
44
44
|
|
45
45
|
#### Source
|
46
46
|
|
47
|
-
src/utils/OverflowWatcher/index.ts:
|
47
|
+
src/utils/OverflowWatcher/index.ts:232
|
48
48
|
|
49
49
|
***
|
50
50
|
|
@@ -54,7 +54,7 @@ src/utils/OverflowWatcher/index.ts:226
|
|
54
54
|
|
55
55
|
#### Source
|
56
56
|
|
57
|
-
src/utils/OverflowWatcher/index.ts:
|
57
|
+
src/utils/OverflowWatcher/index.ts:237
|
58
58
|
|
59
59
|
***
|
60
60
|
|
@@ -64,4 +64,4 @@ src/utils/OverflowWatcher/index.ts:231
|
|
64
64
|
|
65
65
|
#### Source
|
66
66
|
|
67
|
-
src/utils/OverflowWatcher/index.ts:
|
67
|
+
src/utils/OverflowWatcher/index.ts:234
|
package/package.json
CHANGED
@@ -0,0 +1,17 @@
|
|
1
|
+
[**@sankhyalabs/core**](../README.md) • **Docs**
|
2
|
+
|
3
|
+
***
|
4
|
+
|
5
|
+
[@sankhyalabs/core](../globals.md) / DataUnitEventOptions
|
6
|
+
|
7
|
+
# Type alias: DataUnitEventOptions
|
8
|
+
|
9
|
+
> **DataUnitEventOptions**: `object`
|
10
|
+
|
11
|
+
## Index signature
|
12
|
+
|
13
|
+
\[`key`: `string`\]: `any`
|
14
|
+
|
15
|
+
## Source
|
16
|
+
|
17
|
+
src/dataunit/DataUnit.ts:1955
|