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

@microsoft/mgt-element

Package Overview
Dependencies
Maintainers
2
Versions
831
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@microsoft/mgt-element - npm Package Compare versions

Comparing version 3.1.3-preview.68f517b to 3.1.3-preview.86697f4

2

dist/es6/components/customElementHelper.d.ts

@@ -13,3 +13,3 @@ /**

*
* @param {string} disambiguation
* @param {string} disambiguation the disambiguation value to be used, should be lowercase
* @return {CustomElementHelper} the current object

@@ -16,0 +16,0 @@ * @memberof CustomElementHelper

@@ -17,3 +17,3 @@ /**

*
* @param {string} disambiguation
* @param {string} disambiguation the disambiguation value to be used, should be lowercase
* @return {CustomElementHelper} the current object

@@ -23,4 +23,7 @@ * @memberof CustomElementHelper

withDisambiguation(disambiguation) {
if (disambiguation && !this._disambiguation)
this._disambiguation = disambiguation;
if (disambiguation && !this._disambiguation) {
this._disambiguation = disambiguation.toLowerCase();
if (disambiguation !== this._disambiguation)
console.warn(`🦒: Disambiguation value, ${disambiguation}, should be lowercase. Value has been converted to lowercase, ${this._disambiguation}.`);
}
return this;

@@ -27,0 +30,0 @@ }

@@ -7,3 +7,3 @@ /**

*/
export declare const PACKAGE_VERSION = "3.1.3-preview.68f517b";
export declare const PACKAGE_VERSION = "3.1.3-preview.86697f4";
//# sourceMappingURL=version.d.ts.map

@@ -9,3 +9,3 @@ /**

// ANY CHANGES WILL BE LOST DURING BUILD
export const PACKAGE_VERSION = '3.1.3-preview.68f517b';
export const PACKAGE_VERSION = '3.1.3-preview.86697f4';
//# sourceMappingURL=version.js.map
{
"name": "@microsoft/mgt-element",
"version": "3.1.3-preview.68f517b",
"version": "3.1.3-preview.86697f4",
"description": "Microsoft Graph Toolkit base classes",

@@ -37,3 +37,3 @@ "homepage": "https://github.com/microsoftgraph/microsoft-graph-toolkit",

"idb": "6.0.0",
"lit": "^2.3.1"
"lit": "^3.0.0"
},

@@ -40,0 +40,0 @@ "publishConfig": {

@@ -17,3 +17,3 @@ /**

*
* @param {string} disambiguation
* @param {string} disambiguation the disambiguation value to be used, should be lowercase
* @return {CustomElementHelper} the current object

@@ -23,3 +23,9 @@ * @memberof CustomElementHelper

public withDisambiguation(disambiguation: string) {
if (disambiguation && !this._disambiguation) this._disambiguation = disambiguation;
if (disambiguation && !this._disambiguation) {
this._disambiguation = disambiguation.toLowerCase();
if (disambiguation !== this._disambiguation)
console.warn(
`🦒: Disambiguation value, ${disambiguation}, should be lowercase. Value has been converted to lowercase, ${this._disambiguation}.`
);
}
return this;

@@ -26,0 +32,0 @@ }

@@ -11,2 +11,2 @@ /**

export const PACKAGE_VERSION = '3.1.3-preview.68f517b';
export const PACKAGE_VERSION = '3.1.3-preview.86697f4';

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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