@omnia/workplace 7.1.1-dev → 8.0.0-vnext
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/core/utils/Utils.d.ts +2 -2
- package/internal-do-not-import-from-here/models/Constants.js +5 -5
- package/internal-do-not-import-from-here/models/EnterpriseGlossary.d.ts +1 -1
- package/internal-do-not-import-from-here/models/ManifestIds.d.ts +1 -0
- package/internal-do-not-import-from-here/models/ManifestIds.js +1 -0
- package/internal-do-not-import-from-here/models/apps/SharePointSiteInfo.d.ts +1 -2
- package/internal-do-not-import-from-here/models/myteamcollaboration/TeamCollabrationApp.js +1 -1
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestRollupBlockSettings.d.ts +8 -3
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestRollupBlockSettings.js +1 -1
- package/internal-do-not-import-from-here/stores/TeamCollaborationStore.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.ts +99 -0
- package/package.json +1 -1
- package/internal-do-not-import-from-here/wcdefinitions.json +0 -1
@@ -1,6 +1,6 @@
|
|
1
1
|
import { MicrosoftTeams } from "@omnia/fx-msteams";
|
2
2
|
import { IRouteContext } from "@omnia/fx/models";
|
3
|
-
import
|
3
|
+
import { Vue } from "@omnia/fx/ux";
|
4
4
|
export declare class WorkPlaceUtils {
|
5
5
|
static isSupportedByOfficeWebApp: (documentUrl: string) => boolean;
|
6
6
|
static getFileIconNameByExtension: (extension: string) => string;
|
@@ -17,7 +17,7 @@ export declare class WorkPlaceUtils {
|
|
17
17
|
static isValidGuid(id: string): boolean;
|
18
18
|
static executeMSTeamsDeepLinkIfPossible(microsoftTeams: MicrosoftTeams, url: string, e?: Event): boolean;
|
19
19
|
static formatKQLDateTimeString(input: Date | string): string;
|
20
|
-
static isInLeftPositionedActionMenu(component:
|
20
|
+
static isInLeftPositionedActionMenu(component: Vue): boolean;
|
21
21
|
static convertLanguageDisplayToExcludeCounty(displayName: string): string;
|
22
22
|
static getAppLayoutUrlInfo(routeContext: IRouteContext): {
|
23
23
|
isLayoutUrl: boolean;
|
@@ -91,7 +91,6 @@ exports.AppInstanceDescriptionProperties = {
|
|
91
91
|
};
|
92
92
|
class TeamCollaborationAppEnterpriseProperties {
|
93
93
|
}
|
94
|
-
exports.TeamCollaborationAppEnterpriseProperties = TeamCollaborationAppEnterpriseProperties;
|
95
94
|
TeamCollaborationAppEnterpriseProperties.LastVisited = {
|
96
95
|
internalName: "LastVisited25a11219-15f2-435f-9007-4ce746c83726"
|
97
96
|
};
|
@@ -110,10 +109,11 @@ TeamCollaborationAppEnterpriseProperties.Facebook = {
|
|
110
109
|
id: new fx_models_1.Guid("85a80bf9-7d51-47da-a574-24ea9b6b7034"),
|
111
110
|
internalName: "otc_facebook_url"
|
112
111
|
};
|
112
|
+
exports.TeamCollaborationAppEnterpriseProperties = TeamCollaborationAppEnterpriseProperties;
|
113
113
|
class TeamCollaborationAppDefinitionInfo {
|
114
114
|
}
|
115
|
-
exports.TeamCollaborationAppDefinitionInfo = TeamCollaborationAppDefinitionInfo;
|
116
115
|
TeamCollaborationAppDefinitionInfo.id = new fx_models_1.Guid("d2240d7b-af3c-428c-bae8-5b8bfc08e3ac");
|
116
|
+
exports.TeamCollaborationAppDefinitionInfo = TeamCollaborationAppDefinitionInfo;
|
117
117
|
exports.WorkplaceAppRoutePrefix = {
|
118
118
|
teamwork: "_t",
|
119
119
|
workspace: "_wp"
|
@@ -169,16 +169,16 @@ exports.StatusCodeDisplay = {
|
|
169
169
|
};
|
170
170
|
class TeamWorkInfo {
|
171
171
|
}
|
172
|
-
exports.TeamWorkInfo = TeamWorkInfo;
|
173
172
|
TeamWorkInfo.createTeamworkProfileSettings = new fx_models_1.Guid("43354ac8-ca0f-498d-83f6-0d61d5ea788b");
|
173
|
+
exports.TeamWorkInfo = TeamWorkInfo;
|
174
174
|
class MembersStep {
|
175
175
|
}
|
176
|
-
exports.MembersStep = MembersStep;
|
177
176
|
MembersStep.id = new fx_models_1.Guid("829eab83-b85b-4635-839e-485b16ad2408");
|
177
|
+
exports.MembersStep = MembersStep;
|
178
178
|
class MSTeamTemplateStep {
|
179
179
|
}
|
180
|
-
exports.MSTeamTemplateStep = MSTeamTemplateStep;
|
181
180
|
MSTeamTemplateStep.id = new fx_models_1.Guid("157aded3-dd6f-44c2-8aaf-b7c4b5913782");
|
181
|
+
exports.MSTeamTemplateStep = MSTeamTemplateStep;
|
182
182
|
var HeaderSettingsMode;
|
183
183
|
(function (HeaderSettingsMode) {
|
184
184
|
HeaderSettingsMode[HeaderSettingsMode["Tenant"] = 0] = "Tenant";
|
@@ -6,7 +6,7 @@ export interface IEnterpriseGlossarySourceInformationComponent {
|
|
6
6
|
}
|
7
7
|
export interface EnterpriseGlossaryUIIcon {
|
8
8
|
icon: IIcon;
|
9
|
-
onClick:
|
9
|
+
onClick: any;
|
10
10
|
}
|
11
11
|
export interface EnterpriseGlossaryBlade extends Omit<Blade, "content"> {
|
12
12
|
content?: () => JSX.Element;
|
@@ -461,6 +461,7 @@ export declare class WebComponentManifests {
|
|
461
461
|
static get UserManagementDynamicGroupListingBlade(): Guid;
|
462
462
|
static get UserManagementDynamicGroupDetailBlade(): Guid;
|
463
463
|
static get UserManagementUserPropertyListingBlade(): Guid;
|
464
|
+
static get UserManagementUserPropertyDetailBlade(): Guid;
|
464
465
|
static get SetupWizardViewCore(): Guid;
|
465
466
|
static get SetupWizardGeneralStep(): Guid;
|
466
467
|
static get SetupWizardBrandingStep(): Guid;
|
@@ -470,6 +470,7 @@ class WebComponentManifests {
|
|
470
470
|
static get UserManagementDynamicGroupListingBlade() { return new fx_models_1.Guid("9c3a9218-af53-4e48-b95b-a122eb43db64"); }
|
471
471
|
static get UserManagementDynamicGroupDetailBlade() { return new fx_models_1.Guid("f43ef789-418d-4f56-bd27-88420f3d9823"); }
|
472
472
|
static get UserManagementUserPropertyListingBlade() { return new fx_models_1.Guid("77fa3438-c920-4b32-bddc-1b8361e530c2"); }
|
473
|
+
static get UserManagementUserPropertyDetailBlade() { return new fx_models_1.Guid("3967363b-80cd-4b12-900f-7a9c7975bf6a"); }
|
473
474
|
static get SetupWizardViewCore() { return new fx_models_1.Guid("758d200f-91f3-4446-8662-07592f89eeba"); }
|
474
475
|
static get SetupWizardGeneralStep() { return new fx_models_1.Guid("c5f83b2f-a21f-4210-b4f4-13ffda4ac129"); }
|
475
476
|
static get SetupWizardBrandingStep() { return new fx_models_1.Guid("084f1e3e-f0f5-4f2b-a75d-67f629308bf8"); }
|
@@ -3,13 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.TeamCollabrationApp = exports.TeamCollabrationAppResource = exports.TeamCollabrationQuery = exports.ItemQueryResult = exports.TeamCollabrationTypes = void 0;
|
4
4
|
class TeamCollabrationTypes {
|
5
5
|
}
|
6
|
-
exports.TeamCollabrationTypes = TeamCollabrationTypes;
|
7
6
|
TeamCollabrationTypes.Undefined = -1;
|
8
7
|
TeamCollabrationTypes.Sharepoint = 1;
|
9
8
|
TeamCollabrationTypes.Group = 2;
|
10
9
|
TeamCollabrationTypes.Teams = 4;
|
11
10
|
TeamCollabrationTypes.Yammer = 8;
|
12
11
|
TeamCollabrationTypes.Facebook = 16;
|
12
|
+
exports.TeamCollabrationTypes = TeamCollabrationTypes;
|
13
13
|
class ItemQueryResult {
|
14
14
|
}
|
15
15
|
exports.ItemQueryResult = ItemQueryResult;
|
@@ -63,14 +63,19 @@ export interface ProgressStatusFilterEngineProperty extends BaseFilterEngineProp
|
|
63
63
|
value: number[];
|
64
64
|
type: PropertyIndexedType.Number;
|
65
65
|
}
|
66
|
-
export interface
|
66
|
+
export interface ProgressStatusEnginePropertyOutput extends TypedFilterEnginePropertyOutput {
|
67
67
|
type: PropertyIndexedType.Number;
|
68
68
|
value: number[];
|
69
|
-
sub:
|
69
|
+
sub: ProgressStatusEnginePropertyOutput[];
|
70
70
|
}
|
71
71
|
export interface StatusFilterEngineProperty extends BaseFilterEngineProperty {
|
72
|
-
value: number;
|
72
|
+
value: number[];
|
73
|
+
type: PropertyIndexedType.Number;
|
74
|
+
}
|
75
|
+
export interface StatusEnginePropertyOutput extends TypedFilterEnginePropertyOutput {
|
73
76
|
type: PropertyIndexedType.Number;
|
77
|
+
value: number[];
|
78
|
+
sub: StatusEnginePropertyOutput[];
|
74
79
|
}
|
75
80
|
export interface TypeFilterEngineProperty extends BaseFilterEngineProperty {
|
76
81
|
value: Array<GuidValue>;
|
package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestRollupBlockSettings.js
CHANGED
@@ -9,7 +9,6 @@ var SignOffRequestScopedQueryTypes;
|
|
9
9
|
})(SignOffRequestScopedQueryTypes = exports.SignOffRequestScopedQueryTypes || (exports.SignOffRequestScopedQueryTypes = {}));
|
10
10
|
class SignOffRequestRollupConstants {
|
11
11
|
}
|
12
|
-
exports.SignOffRequestRollupConstants = SignOffRequestRollupConstants;
|
13
12
|
SignOffRequestRollupConstants.SignOffRequestProperties = {
|
14
13
|
TitleAndLink: "titleandlink_c9f99889-87e4-4e02-b7e1-b7ffdb802ff6",
|
15
14
|
Description: "description_6b639a3e-622a-44bf-8e2d-7355fe7f8317",
|
@@ -23,3 +22,4 @@ SignOffRequestRollupConstants.SignOffRequestProperties = {
|
|
23
22
|
TotalNoOfRequests: "totalnoofrequests_95f47b9c-9a38-4db2-b7a8-1899e6cac359",
|
24
23
|
Type: "type_54830454-80c5-4be5-8fd7-d08c94367eb7",
|
25
24
|
};
|
25
|
+
exports.SignOffRequestRollupConstants = SignOffRequestRollupConstants;
|
@@ -5,6 +5,7 @@ export declare class TeamCollaborationStore extends Store {
|
|
5
5
|
private subscriptionHandler;
|
6
6
|
private appStore;
|
7
7
|
private omniaContext;
|
8
|
+
private multilingualStore;
|
8
9
|
private followedSitesLocalStorageKey;
|
9
10
|
private loadMemberOfGroupsPromise;
|
10
11
|
private loadFollowingSitesPromise;
|
@@ -0,0 +1,99 @@
|
|
1
|
+
import { VueComponentBaseProps } from "@omnia/fx/ux";
|
2
|
+
|
3
|
+
import wc28b79dc39fc04a07ae50fa8d77e4a84b from '../../../../client/admin/dalle/components/DallESecret';
|
4
|
+
import wc9b3a0a46626748f3b71168bd16f62a66 from '../../../../client/admin/statuscodedisplaytenant/businessprofile/StatusCodeDisplayBPJourney';
|
5
|
+
import wca2b3a1be68a849c28d605069174de7be from '../../../../client/admin/statuscodedisplaytenant/tenant/StatusCodeDisplayTenantJourney';
|
6
|
+
import wc8f0de086dd4048209dcf73e01556c5ae from '../../../../client/admin/textcompletion/components/TextCompletion';
|
7
|
+
import wcb5a5fd89a18c4c0e90877cb3556bede5 from '../../../../client/peoplerollup/components/PeopleRollup';
|
8
|
+
import wc88894e6a2e4144b6a6f1af3612caf276 from '../../../../client/propertiesblock/Properties';
|
9
|
+
import wc295591853df2404993e5d8326ec94982 from '../../../../client/propertiesblock/PropertiesSettings';
|
10
|
+
import wc84d11b7319be41918b63564083c376f6 from '../../../../client/signoffrequest/components/rollup/filterengine/components/renderer/progressstatus/Renderer';
|
11
|
+
import wcda2ab10e0751481b819004f69178bc4c from '../../../../client/signoffrequest/components/rollup/filterengine/components/settings/progressstatus/Renderer';
|
12
|
+
import wce18ff6ce8bd04511baad8ebf31d5f9ca from '../../../../client/signoffrequest/components/rollup/filterengine/components/defaultvalue/progressstatus/Renderer';
|
13
|
+
import wca7bb250ca4014701994d845c61147fec from '../../../../client/signoffrequest/components/rollup/filterengine/components/selectionsarea/progressstatus/Renderer';
|
14
|
+
import wceb9d51dea42d4fdc832d80838014c11f from '../../../../client/signoffrequest/components/rollup/filterengine/components/renderer/status/Renderer';
|
15
|
+
import wcba1b704157e8417591c8995c18f9aaa5 from '../../../../client/signoffrequest/components/rollup/filterengine/components/settings/status/Renderer';
|
16
|
+
import wc1ab3ab1dff20498bb479a2d39dd3a196 from '../../../../client/signoffrequest/components/rollup/filterengine/components/defaultvalue/status/Renderer';
|
17
|
+
import wc586025d5e9a14b849737f6da29ca3b4a from '../../../../client/signoffrequest/components/rollup/filterengine/components/selectionsarea/status/Renderer';
|
18
|
+
import wce135d092ee7b4cd9b014d013de56ada5 from '../../../../client/signoffrequest/components/rollup/filterengine/components/renderer/type/Renderer';
|
19
|
+
import wc688e5482ec4b45d1ba0af20e783c0ce3 from '../../../../client/signoffrequest/components/rollup/filterengine/components/settings/type/Renderer';
|
20
|
+
import wcb22476a7e7344e599525e8547fa85d32 from '../../../../client/signoffrequest/components/rollup/filterengine/components/defaultvalue/type/Renderer';
|
21
|
+
import wcaa32f8b8df044934be45fd7394e9cc8d from '../../../../client/signoffrequest/components/rollup/filterengine/components/selectionsarea/type/Renderer';
|
22
|
+
import wc830aeebda0334b00969ca8c135e2f344 from '../../../../client/signoffrequest/components/rollup/renderer/SignOffRequestRollup';
|
23
|
+
import wc2cff741d3f8546e3b36f143020d9a547 from '../../../../client/teamcollaborationapp/configure/extensibilities/AttachSiteButton';
|
24
|
+
import wc31470e4c6f9d41769d35d31d1f8446fc from '../../../../client/teamcollaborationapp/configure/extensibilities/SyncLastActivityButton';
|
25
|
+
import wcc6d4210701a54825910e4232aeac8b75 from '../../../../client/teamcollaborationapp/configure/extensibilities/AppEditing';
|
26
|
+
import wc036c36b99a434829aa0901c6b5868a82 from '../../../../client/teamcollaborationapp/configure/extensibilities/SensitivityLabel';
|
27
|
+
import wc9f8b58418bcd4de38000c1f1c0deb062 from '../../../../client/teamcollaborationapp/configure/extensibilities/SetupTeamwork';
|
28
|
+
import wc240a15bb28454ace84086bc1d251b859 from '../../../../client/teamcollaborationapp/permissions/PermissionInput';
|
29
|
+
import wc87f6d9e757bc4495ba2de1bf961642ac from '../../../../client/teamcollaborationrollup/components/TeamCollaborationRollup';
|
30
|
+
import wc1d19aeb722e44b9e9d2617035854dd2a from '../../../../client/usermanagement/admin/UserManagementJourney';
|
31
|
+
import wcebd9788ab21748688f4e594ecf568806 from '../../../../client/usermanagement/admin/blades/usertypes/UserTypeListingBlade';
|
32
|
+
import wc0f51dc5b13ae4c3e8b74eab4eb3b289b from '../../../../client/usermanagement/admin/blades/usertypes/UserTypeDetailBlade';
|
33
|
+
import wc242dc5602ede41f0b6d4151884a2ec63 from '../../../../client/usermanagement/admin/blades/synchronization/SyncProviderListingBlade';
|
34
|
+
import wc0ab38b6f985240ec83c437db8a27d7c6 from '../../../../client/usermanagement/admin/blades/synchronization/SyncProviderSettingsBlade';
|
35
|
+
import wc6a15d7edea3d4b548b71d8a7f3e50295 from '../../../../client/usermanagement/admin/blades/synchronization/SyncProviderLogsBlade';
|
36
|
+
import wc6f1fc2596ddb411abf1741ed422947e3 from '../../../../client/usermanagement/admin/blades/users/UserListingBlade';
|
37
|
+
import wcfb9aa542fd414c5f8468aa0ad67d11f7 from '../../../../client/usermanagement/admin/blades/users/UserDetailBlade';
|
38
|
+
import wc2de8ec5f9d034828b1928ba37e48b322 from '../../../../client/usermanagement/admin/blades/users/UserAuthenticationBlade';
|
39
|
+
import wc0a208072d45f4f498d59ab7b9da9a10d from '../../../../client/usermanagement/admin/blades/groups/GroupListingBlade';
|
40
|
+
import wc836c198b2a2c418f89a0cf47ed44092d from '../../../../client/usermanagement/admin/blades/groups/GroupDetailBlade';
|
41
|
+
import wca95a8b4a7e944190924087b361950843 from '../../../../client/usermanagement/admin/blades/authentication/SettingsBlade';
|
42
|
+
import wc9c3a9218af534e48b95ba122eb43db64 from '../../../../client/usermanagement/admin/blades/dynamicgroups/DynamicGroupListingBlade';
|
43
|
+
import wcf43ef789418d4f56bd2788420f3d9823 from '../../../../client/usermanagement/admin/blades/dynamicgroups/DynamicGroupDetailBlade';
|
44
|
+
import wc77fa3438c9204b32bddc1b8361e530c2 from '../../../../client/usermanagement/admin/blades/userproperties/UserPropertyListingBlade';
|
45
|
+
import wc3967363b80cd4b12900f7a9c7975bf6a from '../../../../client/usermanagement/admin/blades/userproperties/UserPropertyDetailBlade';
|
46
|
+
//{{importWC}}
|
47
|
+
declare global {
|
48
|
+
namespace JSX {
|
49
|
+
interface Element { }
|
50
|
+
interface ElementClass { }
|
51
|
+
|
52
|
+
interface IntrinsicElements {
|
53
|
+
"omnia-tad-openai-dalle-secret": typeof wc28b79dc39fc04a07ae50fa8d77e4a84b.propsDefinition & VueComponentBaseProps
|
54
|
+
"omnia-tad-business-profile-http-code-display": typeof wc9b3a0a46626748f3b71168bd16f62a66.propsDefinition & VueComponentBaseProps
|
55
|
+
"omnia-tad-tenant-http-code-display": typeof wca2b3a1be68a849c28d605069174de7be.propsDefinition & VueComponentBaseProps
|
56
|
+
"omnia-tad-text-completion-form": typeof wc8f0de086dd4048209dcf73e01556c5ae.propsDefinition & VueComponentBaseProps
|
57
|
+
"pan-people-rollup": typeof wcb5a5fd89a18c4c0e90877cb3556bede5.propsDefinition & VueComponentBaseProps
|
58
|
+
"wp-properties": typeof wc88894e6a2e4144b6a6f1af3612caf276.propsDefinition & VueComponentBaseProps
|
59
|
+
"wp-properties-settings": typeof wc295591853df2404993e5d8326ec94982.propsDefinition & VueComponentBaseProps
|
60
|
+
"omnia-wp-signoffrequestrollup-progressstatus-renderer": typeof wc84d11b7319be41918b63564083c376f6.propsDefinition & VueComponentBaseProps
|
61
|
+
"omnia-wp-signoffrequestrollup-progressstatus-settings": typeof wcda2ab10e0751481b819004f69178bc4c.propsDefinition & VueComponentBaseProps
|
62
|
+
"omnia-wp-signoffrequestrollup-progressstatus-settings-defaultvalueinput": typeof wce18ff6ce8bd04511baad8ebf31d5f9ca.propsDefinition & VueComponentBaseProps
|
63
|
+
"omnia-wp-signoffrequestrollup-progressstatus-selection": typeof wca7bb250ca4014701994d845c61147fec.propsDefinition & VueComponentBaseProps
|
64
|
+
"omnia-wp-signoffrequestrollup-status-renderer": typeof wceb9d51dea42d4fdc832d80838014c11f.propsDefinition & VueComponentBaseProps
|
65
|
+
"omnia-wp-signoffrequestrollup-status-settings": typeof wcba1b704157e8417591c8995c18f9aaa5.propsDefinition & VueComponentBaseProps
|
66
|
+
"omnia-wp-signoffrequestrollup-status-settings-defaultvalueinput": typeof wc1ab3ab1dff20498bb479a2d39dd3a196.propsDefinition & VueComponentBaseProps
|
67
|
+
"omnia-wp-signoffrequestrollup-status-selection": typeof wc586025d5e9a14b849737f6da29ca3b4a.propsDefinition & VueComponentBaseProps
|
68
|
+
"omnia-wp-signoffrequestrollup-type-renderer": typeof wce135d092ee7b4cd9b014d013de56ada5.propsDefinition & VueComponentBaseProps
|
69
|
+
"omnia-wp-signoffrequestrollup-type-settings": typeof wc688e5482ec4b45d1ba0af20e783c0ce3.propsDefinition & VueComponentBaseProps
|
70
|
+
"omnia-wp-signoffrequestrollup-type-settings-defaultvalueinput": typeof wcb22476a7e7344e599525e8547fa85d32.propsDefinition & VueComponentBaseProps
|
71
|
+
"omnia-wp-signoffrequestrollup-type-selection": typeof wcaa32f8b8df044934be45fd7394e9cc8d.propsDefinition & VueComponentBaseProps
|
72
|
+
"omnia-workplace-signoffrequestrollup": typeof wc830aeebda0334b00969ca8c135e2f344.propsDefinition & VueComponentBaseProps
|
73
|
+
"omnia-workspace-attach-site-button": typeof wc2cff741d3f8546e3b36f143020d9a547.propsDefinition & VueComponentBaseProps
|
74
|
+
"omnia-workspace-sync-last-activity-button": typeof wc31470e4c6f9d41769d35d31d1f8446fc.propsDefinition & VueComponentBaseProps
|
75
|
+
"omnia-workspace-app-editing": typeof wcc6d4210701a54825910e4232aeac8b75.propsDefinition & VueComponentBaseProps
|
76
|
+
"omnia-workspace-sensitivity-label": typeof wc036c36b99a434829aa0901c6b5868a82.propsDefinition & VueComponentBaseProps
|
77
|
+
"omnia-workspace-setup-teamwork": typeof wc9f8b58418bcd4de38000c1f1c0deb062.propsDefinition & VueComponentBaseProps
|
78
|
+
"omnia-workspace-teamwork-permission-input": typeof wc240a15bb28454ace84086bc1d251b859.propsDefinition & VueComponentBaseProps
|
79
|
+
"otc-team-collaboration-rollup": typeof wc87f6d9e757bc4495ba2de1bf961642ac.propsDefinition & VueComponentBaseProps
|
80
|
+
"omnia-workplace-user-management-journey": typeof wc1d19aeb722e44b9e9d2617035854dd2a.propsDefinition & VueComponentBaseProps
|
81
|
+
"omnia-workplace-user-management-user-type-listing": typeof wcebd9788ab21748688f4e594ecf568806.propsDefinition & VueComponentBaseProps
|
82
|
+
"omnia-workplace-user-management-user-type-detail": typeof wc0f51dc5b13ae4c3e8b74eab4eb3b289b.propsDefinition & VueComponentBaseProps
|
83
|
+
"omnia-workplace-user-management-sync-provider-listing": typeof wc242dc5602ede41f0b6d4151884a2ec63.propsDefinition & VueComponentBaseProps
|
84
|
+
"omnia-workplace-user-management-sync-provider-settings": typeof wc0ab38b6f985240ec83c437db8a27d7c6.propsDefinition & VueComponentBaseProps
|
85
|
+
"omnia-workplace-user-management-sync-provider-logs": typeof wc6a15d7edea3d4b548b71d8a7f3e50295.propsDefinition & VueComponentBaseProps
|
86
|
+
"omnia-workplace-user-management-user-listing": typeof wc6f1fc2596ddb411abf1741ed422947e3.propsDefinition & VueComponentBaseProps
|
87
|
+
"omnia-workplace-user-management-user-detail": typeof wcfb9aa542fd414c5f8468aa0ad67d11f7.propsDefinition & VueComponentBaseProps
|
88
|
+
"omnia-workplace-user-management-user-authentication": typeof wc2de8ec5f9d034828b1928ba37e48b322.propsDefinition & VueComponentBaseProps
|
89
|
+
"omnia-workplace-user-management-group-listing": typeof wc0a208072d45f4f498d59ab7b9da9a10d.propsDefinition & VueComponentBaseProps
|
90
|
+
"omnia-workplace-user-management-group-detail": typeof wc836c198b2a2c418f89a0cf47ed44092d.propsDefinition & VueComponentBaseProps
|
91
|
+
"omnia-workplace-user-management-authentication-settings": typeof wca95a8b4a7e944190924087b361950843.propsDefinition & VueComponentBaseProps
|
92
|
+
"omnia-workplace-user-management-dynamicgroup-listing": typeof wc9c3a9218af534e48b95ba122eb43db64.propsDefinition & VueComponentBaseProps
|
93
|
+
"omnia-workplace-user-management-dynamicgroup-detail": typeof wcf43ef789418d4f56bd2788420f3d9823.propsDefinition & VueComponentBaseProps
|
94
|
+
"omnia-workplace-user-management-userproperty-listing": typeof wc77fa3438c9204b32bddc1b8361e530c2.propsDefinition & VueComponentBaseProps
|
95
|
+
"omnia-workplace-user-management-userproperty-detail": typeof wc3967363b80cd4b12900f7a9c7975bf6a.propsDefinition & VueComponentBaseProps
|
96
|
+
//{{elementName}}
|
97
|
+
}
|
98
|
+
}
|
99
|
+
}
|
package/package.json
CHANGED
@@ -1 +0,0 @@
|
|
1
|
-
{"omnia-workplace-announcements-settings":["settingsKey"],"owpl-announcement-like-comment":["visible","onClose"],"owpl-quicklink-settings":["settingsKey"],"omnia-workplace-np-settings":["journey","registerBlade","currentSettings","save","componentSettingsChange"],"pan-people-rollup-settings-breakpoint":["breakPointId"],"omnia-workplace-quick-search":["searchKeyword","searchBoxStyling","styles","onChangeMode","onCloseDialog","searchConfig"],"omnia-workplace-advanced-search":["searchKeyword","styles","onChangeMode","onCloseDialog","searchBoxStyling","searchConfig","selectedSearchCategoryId"],"omnia-workplace-search-header":["onClickOutside","searchSettings","autoFocus"],"otc-teamsites-editingproperties":["onClosed"],"otc-teamcollaborationapps-instance":["valueBind","useValidator"],"pan-userprofile-propertyfeedback":["visible","propertyName","onClose"],"omnia-workplace-yammer-settings":["settingsKey"]}
|