Skip to content

Commit

Permalink
Merge pull request #55 from pnp/mgt-3.1.0
Browse files Browse the repository at this point in the history
Version 6.6.5 with some small fixes and updates
  • Loading branch information
tavikukko authored Aug 7, 2023
2 parents 9305143 + b52f553 commit 3728118
Show file tree
Hide file tree
Showing 12 changed files with 7,482 additions and 2,153 deletions.
92 changes: 46 additions & 46 deletions iframe-sandbox-app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions iframe-sandbox-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"homepage": ".",
"dependencies": {
"@fluentui/react": "^8.104.1",
"@microsoft/mgt": "^3.0.1",
"@microsoft/mgt-element": "^3.0.1",
"@microsoft/mgt-react": "^3.0.1",
"@microsoft/mgt": "^3.1.0",
"@microsoft/mgt-element": "^3.1.0",
"@microsoft/mgt-react": "^3.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
Expand Down
76 changes: 38 additions & 38 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sp-editor",
"version": "6.6.4",
"version": "6.6.5",
"private": true,
"homepage": ".",
"dependencies": {
Expand All @@ -10,8 +10,8 @@
"@fluentui/react": "^8.110.10",
"@ionic/react": "^5.8.4",
"@ionic/react-router": "^5.8.4",
"@microsoft/mgt": "^3.0.1",
"@microsoft/mgt-react": "^3.0.1",
"@microsoft/mgt": "^3.1.0",
"@microsoft/mgt-react": "^3.1.0",
"@microsoft/microsoft-graph-client": "^3.0.5",
"@minoru/react-dnd-treeview": "^3.4.0",
"@uifabric/theme-samples": "^7.5.29",
Expand Down
2 changes: 1 addition & 1 deletion pnpjs-sources/index-graph.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from '../node_modules/@pnp/graph'
export * from '../node_modules/@pnp/graph/presets/all'
4 changes: 2 additions & 2 deletions public/@microsoft/mgt-components/graph/graph.people.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ export declare const findPeople: (graph: IGraph, query: string, top?: number, us
*/
export declare const getPeople: (graph: IGraph, userType?: UserType, peopleFilters?: string, top?: number) => Promise<Person[]>;
/**
* returns a promise that resolves after specified time
* Attempts to extract the email from the IDynamicPerson properties.
*
* @param time in milliseconds
* @param {IDynamicperson} entity
*/
export declare const getEmailFromGraphEntity: (entity: IDynamicPerson) => string;
/**
Expand Down
10 changes: 5 additions & 5 deletions public/@microsoft/mgt-element/IGraph.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ export interface IGraph {
/**
* GraphEndpoint is a valid URL that is used to access the Graph.
*/
export type GraphEndpoint = 'https://graph.microsoft.com' | 'https://graph.microsoft.us' | 'https://dod-graph.microsoft.us' | 'https://graph.microsoft.de' | 'https://microsoftgraph.chinacloudapi.cn';
/**
* MICROSOFT_GRAPH_ENDPOINTS is a set of all the valid Graph URL endpoints.
*/
export declare const MICROSOFT_GRAPH_ENDPOINTS: Set<GraphEndpoint>;
export type GraphEndpoint = 'https://graph.microsoft.com' | 'https://graph.microsoft.us' | 'https://dod-graph.microsoft.us' | 'https://graph.microsoft.de' | 'https://microsoftgraph.chinacloudapi.cn' | 'https://canary.graph.microsoft.com';
/**
* MICROSOFT_GRAPH_DEFAULT_ENDPOINT is the default Graph endpoint that is silently set on
* the providers as the baseURL.
*/
export declare const MICROSOFT_GRAPH_DEFAULT_ENDPOINT: GraphEndpoint;
/**
* MICROSOFT_GRAPH_ENDPOINTS is a set of all the valid Graph URL endpoints.
*/
export declare const MICROSOFT_GRAPH_ENDPOINTS: Set<GraphEndpoint>;
//# sourceMappingURL=IGraph.d.ts.map
2 changes: 1 addition & 1 deletion public/@microsoft/mgt-element/utils/version.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
* See License in the project root for license information.
* -------------------------------------------------------------------------------------------
*/
export declare const PACKAGE_VERSION = "3.0.1";
export declare const PACKAGE_VERSION = "3.1.0";
//# sourceMappingURL=version.d.ts.map
Loading

0 comments on commit 3728118

Please sign in to comment.