-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PropertyFieldCollectionData compatible with SpFx 1.19.0? #619
Comments
Possibly related to #617 with possible fix in PR #618. For workaround (if it's the same root cause) until fixed try turn off the changed export checks in Webpack 5 by adding this to gulpfile.js build.configureWebpack.mergeConfig({
additionalConfiguration: (generatedConfiguration) => {
generatedConfiguration.resolve = generatedConfiguration.resolve || {};
generatedConfiguration.resolve.exportsFields = [];
return generatedConfiguration;
},
}); |
Facing same issue with SPFx version 1.19.0. Definitely seems to be related with SharePoint/sp-dev-docs#9675. |
Still the same issue for me. I get the cryptic "Error [object Object]" in the browser when the web part is attempting to load PropertyFieldCollectionData, as the web part is being added to a page. I'm using SPFx 1.19.0. If only I can get a more detailed error message indicating which packages I'm missing... I also ran "m365 spfx project upgrade" until nothing needs to be upgraded. |
Category
Version
Please specify what version of the library you are using: [ 3.17.0 ]
If you are not using the latest release, please update and see if the issue is resolved before submitting an issue.
Expected / Desired Behavior / Question
I'd like to use the PropertyFieldCollectionData control when spinning up a new SpFx solution (1.19.0),.
Observed Behavior
When running gulp serve --nobrowser I get the following error:
Steps to Reproduce
Create a new SpFx solution v1.19.0. Here's my package.json:
I used the example provided in my webpart:
The text was updated successfully, but these errors were encountered: