UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

24 lines 841 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PrincipalType = void 0; /** * PrincipalType controls the type of entities that are returned in the results. * Choices are All - 15, Distribution List - 2 , Security Groups - 4, SharePoint Groups - 8, User - 1. * These values can be combined (example: 13 is security + SP groups + users) */ var PrincipalType; (function (PrincipalType) { /** * Users */ PrincipalType[PrincipalType["Users"] = 1] = "Users"; /** * Security Group */ PrincipalType[PrincipalType["Security"] = 4] = "Security"; /** * SharePoint Group */ PrincipalType[PrincipalType["SharePoint"] = 8] = "SharePoint"; })(PrincipalType || (exports.PrincipalType = PrincipalType = {})); //# sourceMappingURL=IPropertyFieldPeoplePicker.js.map