Macros from imported libraries now must be qualified. For example, consider if viv.libraryCapsule
has the template macro template-macro-def (Select)
. If you were to import viv.libraryCapsule
and use the Select
macro (as in macro (Select)
), this now results in a deprecation warning. As a workaround, you should fully qualify the macro:
macro (viv.libraryCapsule:Select)
You can also use aliases when fully qualifying the macro. If, for example, you import viv.libraryCapsule
as libCapsule
, then you can instead use the alias as follows:
(libCapsule:Select)
For more information, read about Library Capsules.
Learn more about the deprecation stages.
Copyright 2024 Samsung All rights reserved