Simon-Pierre Plante 2227c87265 Added the External Scripts property to the toolpart
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.
2017-08-12 20:07:01 -04:00

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";
}