@microsoft/mgt-element
Advanced tools
Comparing version 3.1.3-preview.68f517b to 3.1.3-preview.86697f4
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
649589
9951
+ Added@lit/reactive-element@2.0.4(transitive)
+ Addedlit@3.2.1(transitive)
+ Addedlit-element@4.1.1(transitive)
+ Addedlit-html@3.2.1(transitive)
- Removed@lit/reactive-element@1.6.3(transitive)
- Removedlit@2.8.0(transitive)
- Removedlit-element@3.3.3(transitive)
- Removedlit-html@2.8.0(transitive)
Updatedlit@^3.0.0