tutuca 0.9.71 → 0.9.73

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.
@@ -3450,13 +3450,58 @@ var unkIter = () => {};
3450
3450
  var SEQ_INFO = Symbol.for("tutuca.seqInfo");
3451
3451
 
3452
3452
  // index.js
3453
- export * from "immutable";
3454
3453
  import {
3455
- isMap,
3456
- isOrderedMap,
3454
+ Collection,
3455
+ List as List2,
3457
3456
  Map as Map2,
3458
3457
  OrderedMap as OrderedMap2,
3459
- Set as Set2
3458
+ OrderedSet,
3459
+ PairSorting,
3460
+ Range,
3461
+ Record as Record2,
3462
+ Repeat,
3463
+ Seq,
3464
+ Set as Set2,
3465
+ Stack as Stack2,
3466
+ fromJS,
3467
+ get,
3468
+ getIn,
3469
+ has,
3470
+ hasIn,
3471
+ hash,
3472
+ is as is2,
3473
+ isAssociative,
3474
+ isCollection,
3475
+ isImmutable,
3476
+ isIndexed as isIndexed2,
3477
+ isKeyed as isKeyed2,
3478
+ isList,
3479
+ isMap,
3480
+ isOrdered,
3481
+ isOrderedMap,
3482
+ isOrderedSet,
3483
+ isPlainObject,
3484
+ isRecord,
3485
+ isSeq,
3486
+ isSet,
3487
+ isStack,
3488
+ isValueObject,
3489
+ merge,
3490
+ mergeDeep,
3491
+ mergeDeepWith,
3492
+ mergeWith,
3493
+ remove,
3494
+ removeIn,
3495
+ set,
3496
+ setIn,
3497
+ update,
3498
+ updateIn,
3499
+ version,
3500
+ isMap as isMap2,
3501
+ isOrderedMap as isOrderedMap2,
3502
+ Map as Map3,
3503
+ OrderedMap as OrderedMap3,
3504
+ Set as Set3
3460
3505
  } from "immutable";
3461
3506
 
3462
3507
  // src/oo.js
@@ -3863,21 +3908,67 @@ function tutuca(nodeOrSelector) {
3863
3908
  return new App(rootNode, comps, renderer, ParseContext);
3864
3909
  }
3865
3910
  export {
3911
+ version,
3912
+ updateIn,
3913
+ update,
3866
3914
  tutuca,
3867
3915
  test,
3916
+ setIn,
3917
+ set,
3918
+ removeIn,
3919
+ remove,
3920
+ mergeWith,
3921
+ mergeDeepWith,
3922
+ mergeDeep,
3923
+ merge,
3868
3924
  macro,
3869
- isOrderedMap as isOMap,
3870
- isMap as isIMap,
3925
+ isValueObject,
3926
+ isStack,
3927
+ isSet,
3928
+ isSeq,
3929
+ isRecord,
3930
+ isPlainObject,
3931
+ isOrderedSet,
3932
+ isOrderedMap,
3933
+ isOrdered,
3934
+ isOrderedMap2 as isOMap,
3935
+ isMap,
3936
+ isList,
3937
+ isKeyed2 as isKeyed,
3938
+ isIndexed2 as isIndexed,
3939
+ isImmutable,
3940
+ isMap2 as isIMap,
3941
+ isCollection,
3942
+ isAssociative,
3943
+ is2 as is,
3871
3944
  injectCss,
3872
3945
  html,
3946
+ hash,
3947
+ hasIn,
3948
+ has,
3949
+ getIn,
3950
+ get,
3951
+ fromJS,
3873
3952
  css,
3874
3953
  component,
3875
3954
  collectIterBindings,
3876
3955
  check,
3956
+ Stack2 as Stack,
3957
+ Set2 as Set,
3958
+ Seq,
3877
3959
  SEQ_INFO,
3960
+ Repeat,
3961
+ Record2 as Record,
3962
+ Range,
3878
3963
  ParseContext,
3879
- OrderedMap2 as OMap,
3880
- Set2 as ISet,
3881
- Map2 as IMap,
3882
- FIELD_CLASS
3964
+ PairSorting,
3965
+ OrderedSet,
3966
+ OrderedMap2 as OrderedMap,
3967
+ OrderedMap3 as OMap,
3968
+ Map2 as Map,
3969
+ List2 as List,
3970
+ Set3 as ISet,
3971
+ Map3 as IMap,
3972
+ FIELD_CLASS,
3973
+ Collection
3883
3974
  };