ballerina-core 1.0.204 → 1.0.206

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "ballerina-core",
3
3
  "author": "Dr. Giuseppe Maggiore",
4
4
  "private": false,
5
- "version": "1.0.204",
5
+ "version": "1.0.206",
6
6
  "main": "main.ts",
7
7
  "scripts": {
8
8
  "prettier": "prettier --write ."
@@ -25,6 +25,7 @@ import {
25
25
  DispatchParsedType,
26
26
  BaseFlags,
27
27
  Sum,
28
+ ValueStreamPosition,
28
29
  } from "../../../../../../../../main";
29
30
  import {
30
31
  OneAbstractRendererForeignMutationsExpected,
@@ -342,6 +343,16 @@ export const OneAbstractRenderer = <
342
343
  OneAbstractRendererState.Updaters.Template.streamParam(
343
344
  key,
344
345
  replaceWith(_),
346
+ ).then(
347
+ OneAbstractRendererState.Updaters.Core.customFormState.children.stream(
348
+ Sum.Updaters.left(
349
+ ValueInfiniteStreamState.Updaters.Core.position(
350
+ ValueStreamPosition.Updaters.Core.nextStart(
351
+ replaceWith(0),
352
+ ),
353
+ ),
354
+ ),
355
+ ),
345
356
  ),
346
357
  ),
347
358
  loadMore: () =>
@@ -533,15 +533,15 @@ export const TableAbstractRenderer = <
533
533
  TableAbstractRendererState
534
534
  >((_) => ({
535
535
  value: _.value,
536
- locked: false,
537
- disabled: false,
536
+ locked: _.locked,
537
+ disabled: _.disabled,
538
538
  bindings: _.bindings,
539
539
  extraContext: _.extraContext,
540
540
  type: filter.type,
541
541
  label: _.label,
542
- tooltip: undefined,
543
- details: undefined,
544
- customPresentationContext: undefined,
542
+ tooltip: _.tooltip,
543
+ details: _.details,
544
+ customPresentationContext: _.customPresentationContext,
545
545
  remoteEntityVersionIdentifier: "",
546
546
  domNodeAncestorPath: "",
547
547
  typeAncestors: [],