mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-03-30 20:08:31 +00:00
The new External Scripts property allows the user to add external JavaScript files to the WebPart that can run precisely before or after the rendering of the template.
19 lines
1.2 KiB
TypeScript
19 lines
1.2 KiB
TypeScript
|
|
export class ContentQueryConstants {
|
|
|
|
/**************************************************************
|
|
* WebPart Properties
|
|
**************************************************************/
|
|
public static readonly propertyWebUrl = "webUrl";
|
|
public static readonly propertyListTitle = "listTitle";
|
|
public static readonly propertyOrderBy = "orderBy";
|
|
public static readonly propertOrderByDirection = "orderByDirection";
|
|
public static readonly propertyLimitEnabled = "limitEnabled";
|
|
public static readonly propertyItemLimit = "itemLimit";
|
|
public static readonly propertyFilters = "filters";
|
|
public static readonly propertyViewFields = "viewFields";
|
|
public static readonly propertyTemplateText = "templateText";
|
|
public static readonly propertyTemplateUrl = "templateUrl";
|
|
public static readonly propertyhasDefaultTemplateBeenUpdated = "hasDefaultTemplateBeenUpdated";
|
|
public static readonly propertyExternalScripts = "externalScripts";
|
|
} |