I have a number of Single text field PCF controls that are administrative that I would like to package up separately and make generally available. All of them follow the same pattern - 1 bound singleline.text field that contains the output and another bound singleline.text field that pulls in the entity name from the previous field to provide the context for the control.
Now when I use the classic former editor all the controls are visible but when I use the PowerApps editor they don't appear - see screenshots below.
So I have 2 questions:-
1) Am I missing something in my controlmanifest file
<?xml version="1.0" encoding="utf-8" ?>
<manifest>
<control namespace="abc" constructor="AttributeList" version="0.0.1" display-name-key="AttributeList" description-key="AttributeList description" control-type="standard">
<!-- property node identifies a specific, configurable piece of data that the control expects from CDS -->
<property name="Attribute" display-name-key="Attribute" description-key="Attribute (single)" of-type="SingleLine.Text" usage="bound" required="true" />
<property name="Entity" display-name-key="Entity" description-key="Entity" of-type="SingleLine.Text" usage="bound" required="true" />
<resources>
<code path="index.ts" order="1"/>
<css path="css/AttributeList.css" order="1" />
<img path="img/DownArrowTransparent.png" />
</resources>
</control>
</manifest>
2) If not when is this issue likely to be fixed so I can work out how to document using the control.
Classic Interface (works)
Modern Interface (cannot be found)