@s-libs/app-state
Advanced tools
Changelog
16.0.0-next.1 (2023-05-07)
16.0.0-next.0
where AngularContext
was triggering test bed init before .init()
(fe1d279)Changelog
16.0.0-next.0 (2023-05-06)
WrappedControlSuperclass
may need to be adjusted if they were doing any type-unsafe things. For example you may need to add | null
to its typing, or create your form control with the option nonNullable: true
.Changelog
15.0.0-next.0 (2022-11-24)
DirectiveSuperclass
must no longer pass injector
in super(injector)
DirectiveSuperclass.changeDetectorRef
. If you are using it, you'll need to inject it yourself.DirectiveSuperclass
and its descendants no longer require passing Injector
to their constructors (a439a43)Changelog
14.1.0 (2022-08-26)
sleep()
now accepts a unit of time (cd3ac16)sort()
(94d255a)size()
(71eaf0b)ComponentContext
will now run APP_INITIALIZER
s before instantiating your component. This requires all work in your initializers to complete with a call to tick()
. (4f5a0a2)debounceMap()
(b6bc9bb)Changelog
14.0.0-next.0 (2022-06-11)
WrappedControlSuperclass
are now synchronized both ways. See the docs for examples to modify or disable this process.WrappedControlSuperclass
now synchronizes validation errors with its outer NgControl
, if one exists (edea7d4), closes #76WrappedControlSuperclass.outerToInner
and similar to .outerToInnerValues
and similar, to avoid confusion with .outerToInnerErrors
(b65e4e2)ComponentHarnessSuperclass
(861a4a4)withHistory()
(c4134ff), closes #5