Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@microsoft/sp-module-interfaces

Package Overview
Dependencies
Maintainers
2
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@microsoft/sp-module-interfaces - npm Package Compare versions

Comparing version 1.13.0-beta.15 to 1.13.0-beta.17

8

dist/index-internal-beta.d.ts

@@ -1,2 +0,1 @@

/**

@@ -52,2 +51,3 @@ * Type of client-side component.

hiddenFromToolbox?: boolean;
/* Excluded from this release type: isolationLevel */
/**

@@ -691,7 +691,7 @@ * Definition:

* SharePointWebPart is added the solution will be available when adding webparts
* to a page. If TeamsTab or TeamsPersonalApp is added the solution will be
* available when using teams.
* to a page. If TeamsTab, TeamsPersonalApp, or TeamsMeetingApp is added the solution will be
* available when using teams. TeamsMeetingApp cannot be used with TeamsTab or TeamsPersonalTab.
*
*/
supportedHosts?: Array<'SharePointFullPage' | 'SharePointWebPart' | 'TeamsTab' | 'TeamsPersonalApp'>;
supportedHosts?: Array<'SharePointFullPage' | 'SharePointWebPart' | 'TeamsTab' | 'TeamsPersonalApp' | 'TeamsMeetingApp'>;
/**

@@ -698,0 +698,0 @@ * Definition: Url of the image image used for preview

@@ -1,2 +0,1 @@

/**

@@ -328,7 +327,7 @@ * Type of client-side component.

* SharePointWebPart is added the solution will be available when adding webparts
* to a page. If TeamsTab or TeamsPersonalApp is added the solution will be
* available when using teams.
* to a page. If TeamsTab, TeamsPersonalApp, or TeamsMeetingApp is added the solution will be
* available when using teams. TeamsMeetingApp cannot be used with TeamsTab or TeamsPersonalTab.
*
*/
supportedHosts?: Array<'SharePointFullPage' | 'SharePointWebPart' | 'TeamsTab' | 'TeamsPersonalApp'>;
supportedHosts?: Array<'SharePointFullPage' | 'SharePointWebPart' | 'TeamsTab' | 'TeamsPersonalApp' | 'TeamsMeetingApp'>;
/**

@@ -335,0 +334,0 @@ * Definition: Url of the image image used for preview

@@ -1,2 +0,1 @@

/**

@@ -52,2 +51,3 @@ * Type of client-side component.

hiddenFromToolbox?: boolean;
/* Excluded from this release type: isolationLevel */
/**

@@ -691,7 +691,7 @@ * Definition:

* SharePointWebPart is added the solution will be available when adding webparts
* to a page. If TeamsTab or TeamsPersonalApp is added the solution will be
* available when using teams.
* to a page. If TeamsTab, TeamsPersonalApp, or TeamsMeetingApp is added the solution will be
* available when using teams. TeamsMeetingApp cannot be used with TeamsTab or TeamsPersonalTab.
*
*/
supportedHosts?: Array<'SharePointFullPage' | 'SharePointWebPart' | 'TeamsTab' | 'TeamsPersonalApp'>;
supportedHosts?: Array<'SharePointFullPage' | 'SharePointWebPart' | 'TeamsTab' | 'TeamsPersonalApp' | 'TeamsMeetingApp'>;
/**

@@ -698,0 +698,0 @@ * Definition: Url of the image image used for preview

@@ -8,5 +8,5 @@ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.

"packageName": "@microsoft/api-extractor",
"packageVersion": "7.16.1"
"packageVersion": "7.18.4"
}
]
}

@@ -41,2 +41,14 @@ import { IClientSideComponentManifest, ILocalizedString } from './IClientSideComponentManifest';

/**
* Describes the level of isolation needed for the AdaptiveCardExtension.
*
* @remarks
* - Defaults to `'None'`, meaning no isolation needed.
* - `'DOMIsolation'` will render the AdaptiveCardExtension in a self contained environment, isolated from the main page's
* DOM but in the same domain as the main page.
* - `'DomainIsolation'` will render the AdaptiveCardExtension in a special app domain separate from the main page.
*
* @internal
*/
isolationLevel?: 'None' | 'DOMIsolation' | 'DomainIsolation';
/**
* Definition:

@@ -43,0 +55,0 @@ * - If true, the AdaptiveCardExtension will be disposed and reloaded when the AdaptiveCardExtension data is updated by an external source.

@@ -84,12 +84,10 @@ /**

* @remarks
* Defaults to `'None'`, meaning no isolation needed. `'DomIsolation'` will render the web part in a self
* contained environment, isolated from the main page's DOM but in the same domain as the main page.
* - Defaults to `'None'`, meaning no isolation needed.
* - `'DOMIsolation'` will render the web part in a self contained environment, isolated from the main page's
* DOM but in the same domain as the main page.
* - `'DomainIsolation'` will render the web part in a special app domain separate from the main page.
*
* Usage: Use the flag if a web part needs an isolated environment. For example DOM isolation.
*
* Supported values: `"None", "DOMIsolation"`
*
* @alpha
* @internal
*/
isolationLevel?: 'None' | 'DOMIsolation';
isolationLevel?: 'None' | 'DOMIsolation' | 'DomainIsolation';
/**

@@ -160,7 +158,7 @@ * Definition: If true, this web part supports and has been tested for theme variants experience.

* SharePointWebPart is added the solution will be available when adding webparts
* to a page. If TeamsTab or TeamsPersonalApp is added the solution will be
* available when using teams.
* to a page. If TeamsTab, TeamsPersonalApp, or TeamsMeetingApp is added the solution will be
* available when using teams. TeamsMeetingApp cannot be used with TeamsTab or TeamsPersonalTab.
*
*/
supportedHosts?: Array<'SharePointFullPage' | 'SharePointWebPart' | 'TeamsTab' | 'TeamsPersonalApp'>;
supportedHosts?: Array<'SharePointFullPage' | 'SharePointWebPart' | 'TeamsTab' | 'TeamsPersonalApp' | 'TeamsMeetingApp'>;
/**

@@ -167,0 +165,0 @@ * Definition: Url of the image image used for preview

@@ -83,2 +83,8 @@ {

},
"isolationLevel": {
"type": "string",
"title": "Isolation Level",
"description": "Describes the level of isolation needed for the \"AdaptiveCardExtension\".",
"enum": ["None", "DOMIsolation", "DomainIsolation"]
},
"useFallbackWhenPropertiesUpdatedExternally": {

@@ -85,0 +91,0 @@ "type": "boolean",

@@ -115,4 +115,4 @@ {

"title": "Isolation Level",
"description": "Describes the level of isolation (\"None\", \"DOMIsolation\") needed for the \"WebPart\".",
"enum": ["None", "DOMIsolation"]
"description": "Describes the level of isolation needed for the \"WebPart\".",
"enum": ["None", "DOMIsolation", "DomainIsolation"]
},

@@ -134,3 +134,9 @@ "supportsThemeVariants": {

"type": "string",
"enum": ["SharePointFullPage", "SharePointWebPart", "TeamsTab", "TeamsPersonalApp"]
"enum": [
"SharePointFullPage",
"SharePointWebPart",
"TeamsTab",
"TeamsPersonalApp",
"TeamsMeetingApp"
]
}

@@ -137,0 +143,0 @@ }

{
"name": "@microsoft/sp-module-interfaces",
"version": "1.13.0-beta.15",
"version": "1.13.0-beta.17",
"description": "SharePoint Framework module interfaces",

@@ -5,0 +5,0 @@ "license": "SEE LICENSE IN \"EULA\" FOLDER",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc