We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Home > @microsoft/sp-webpart-base > ISerializedWebPartData > dynamicDataValues
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Static values for the dynamic data. This is used to reconstruct the dynamic data objects when deserializing the web part.
Signature:
dynamicDataValues?: { [path: string]: any; };
The key is the path within the web part properties, and the value is the dynamic data static value.
Example:
{ 'aStringProperty': 'thisIsAString', 'aBooleanProperty': true }
Home