ionic-team / stencil-ds-output-targets

These are output targets that can be added to Stencil for React and Angular.
https://stenciljs.com
MIT License
244 stars 108 forks source link

feat: add value accessors to the directives array #437

Open AndreasIllg-COS opened 1 month ago

AndreasIllg-COS commented 1 month ago

The value accessor directives also need to be declared in the module file. This is achieved here by adding them to the directives array file, since it is assumed that the module declares and exports all elements of this array.

Pull request checklist

Pull request type

Please check the type of change your PR introduces:

What is the current behavior?

The value accessor directives have to be added to the angular module manually.

Issue URL: https://github.com/ionic-team/stencil-ds-output-targets/issues/436

What is the new behavior?

The value acessor directives are included in the directivesArrayFile and thereby declared and exported by a module file as described in the angular integration guide (https://stenciljs.com/docs/angular#adding-the-angular-output-target)

Does this introduce a breaking change?

The value accessors need to be removed from the public-api exports, since they are not copied any more. The only export necessary hereafter is

export * from './lib/stencil-generated/value-accessors';

This line should added to the angular integration guide (https://stenciljs.com/docs/angular#adding-the-angular-output-target)