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

@microsoft/sp-core-library

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-core-library - npm Package Compare versions

Comparing version 1.6.0 to 1.7.0-plusbeta

15

CHANGELOG.json

@@ -5,2 +5,15 @@ {

{
"version": "1.7.0",
"tag": "@microsoft/sp-core-library_v1.7.0",
"date": "Thu, 08 Nov 2018 17:05:51 GMT",
"comments": {
"none": [],
"dependency": [
{
"comment": "Updating dependency \"@ms/sp-build-internal-web\" from `~0.22.12` to `~0.22.13`"
}
]
}
},
{
"version": "1.6.0",

@@ -225,2 +238,2 @@ "tag": "@microsoft/sp-core-library_v1.6.0",

]
}
}
# Change Log - @microsoft/sp-core-library
This log was last generated on Mon, 27 Aug 2018 20:46:09 GMT and should not be manually modified.
This log was last generated on Thu, 08 Nov 2018 17:05:51 GMT and should not be manually modified.
## 1.7.0
Thu, 08 Nov 2018 17:05:51 GMT
### Updates
*Version update only*
## 1.6.0

@@ -6,0 +13,0 @@ Mon, 27 Aug 2018 18:06:28 GMT

4

dist/7263c7d0-1d6a-45ec-8d85-d4d1d234171b.manifest.json

@@ -5,3 +5,3 @@ {

"componentType": "Library",
"version": "1.6.0",
"version": "1.7.0",
"manifestVersion": 2,

@@ -20,3 +20,3 @@ "loaderConfig": {

"type": "component",
"version": "1.6.0",
"version": "1.7.0",
"id": "73e1dc6c-8441-42cc-ad47-4bd3659f8a3a"

@@ -23,0 +23,0 @@ }

@@ -57,3 +57,3 @@ /**

* @remarks
* This enum is used by the {@link Environment.type} property. It provides a way to distinguish
* This enum is used by the {@link Environment."type"} property. It provides a way to distinguish
* environments where certain functionality may be limited or disabled.

@@ -100,3 +100,3 @@ *

* This class also provides basic support for generating a pseudo-random GUID;
* however, be aware that the uniqueness depends on the browser's Math.random()
* however, be aware that the uniqueness depends on the browser's `Math.random()`
* function and may be not be suitable for some applications.

@@ -133,6 +133,9 @@ *

* Example syntaxes accepted by this function:
* 'd5369f3b-bd7a-412a-9c0f-7f0650bb5489'
* '{d5369f3b-bd7a-412a-9c0f-7f0650bb5489}'
* '/Guid(d5369f3b-bd7a-412a-9c0f-7f0650bb5489)'
*
* - `"d5369f3b-bd7a-412a-9c0f-7f0650bb5489"`
*
* - `"{d5369f3b-bd7a-412a-9c0f-7f0650bb5489}"`
*
* - `"/Guid(d5369f3b-bd7a-412a-9c0f-7f0650bb5489)/"`
*
* @param guid - The input string.

@@ -148,6 +151,9 @@ * @returns A valid Guid object

* Example syntaxes accepted by this function:
* 'd5369f3b-bd7a-412a-9c0f-7f0650bb5489'
* '{d5369f3b-bd7a-412a-9c0f-7f0650bb5489}'
* '/Guid(d5369f3b-bd7a-412a-9c0f-7f0650bb5489)'
*
* - `"d5369f3b-bd7a-412a-9c0f-7f0650bb5489"`
*
* - `"{d5369f3b-bd7a-412a-9c0f-7f0650bb5489}"`
*
* - `"/Guid(d5369f3b-bd7a-412a-9c0f-7f0650bb5489)/"`
*
* @param guid - The input string.

@@ -159,3 +165,3 @@ * @returns The Guid object, or undefined if the string could not be parsed.

* Indicates whether a GUID is valid, i.e. whether it would be successfully
* parsed by Guid.tryParse(). This function is cheaper than Guid.tryParse()
* parsed by `Guid.tryParse()`. This function is cheaper than `Guid.tryParse()`
* because it does not construct a Guid object.

@@ -193,3 +199,3 @@ *

* @returns True if this instance and the specified Guid object
* represent the same value.
* represent the same value.
*/

@@ -202,7 +208,7 @@ equals(guid: Guid): boolean;

*
* Example: 'd5369f3b-bd7a-412a-9c0f-7f0650bb5489'
* Example: `'d5369f3b-bd7a-412a-9c0f-7f0650bb5489'`
*/
toString(): string;
/**
* Use Guid.parse() or Guid.tryParse() instead of the constructor.
* Use `Guid.parse()` or `Guid.tryParse()` instead of the constructor.
* @param guid - a normalized, already valid Guid string

@@ -417,3 +423,3 @@ */

constructor(serviceScope: ServiceScope);
/** {@inheritdoc IRandomNumberGenerator.generate} */
/** {@inheritDoc IRandomNumberGenerator.generate} */
generate(): number;

@@ -752,2 +758,3 @@ }

remove(observer: ISPEventObserver, eventHandler: (eventArgs: TEventArgs) => void): void;
/* Excluded from this release type: _listenerCount */
}

@@ -789,5 +796,5 @@

* @remarks
* This function replaces template parameters such as "{0}" or "{1}" with the
* This function replaces template parameters such as `"{0}"` or `"{1}"` with the
* corresponding argument. If the value is null or undefined, it will be replaced
* by the word "null" or "undefined". The format string s must not be null or
* by the word `"null"` or `"undefined"`. The format string s must not be null or
* undefined.

@@ -797,10 +804,10 @@ *

*
* Text.format("hello {0}!", "world") will return "hello world!"
* `Text.format("hello {0}!", "world")` will return `"hello world!"`
*/
static format(s: string, ...values: any[]): string;
/**
* Returns the input string, with all instances of searchValue replaced by replaceValue.
* Returns the input string, with all instances of `searchValue` replaced by `replaceValue`.
*
* @remarks
* Note that JavaScript's string.replace() only replaces the first match, unless a
* Note that JavaScript's `string.replace()` only replaces the first match, unless a
* global RegExp is provided.

@@ -827,5 +834,5 @@ *

constructor(serviceScope: ServiceScope);
/** {@inheritdoc ITimeProvider.getDate} */
/** {@inheritDoc ITimeProvider.getDate} */
getDate(): Date;
/** {@inheritdoc ITimeProvider.getTimestamp} */
/** {@inheritDoc ITimeProvider.getTimestamp} */
getTimestamp(): number;

@@ -849,3 +856,3 @@ }

*
* @internalremarks
* @privateRemarks
* The design of this class was that it could split the URL out into a data structure, and the user

@@ -868,3 +875,5 @@ * could add items to the data structure (TBD), and then another (TBD) function would rebuild the URL.

* @remarks
* Examples: this._queryParameterList = [
* Examples:
* ```
* this._queryParameterList = [
* {key: TEST, value: done},

@@ -876,2 +885,3 @@ * {key: DEBUG, value: false},

* getValue('lost') ---> undefined
* ```
* @param param - the case insensitive key for the desired query parameter value.

@@ -884,3 +894,5 @@ */

* @remarks
* Examples: this._queryParameterList = [
* Examples:
* ```
* this._queryParameterList = [
* {key: TEST, value: done},

@@ -892,2 +904,3 @@ * {key: DEBUG, value: false},

* getValues('lost') ---> undefined
* ```
* @param param - the case insensitive key for the desired query parameter value.

@@ -944,3 +957,3 @@ */

* @remarks
* This class represents versions that follow the string format of MAJOR.MINOR[.PATCH[.REVISION]]
* This class represents versions that follow the string format of `MAJOR.MINOR[.PATCH[.REVISION]]`
* where the MAJOR, MINOR, PATCH and REVISION parts are integers. PATCH and REVISION are optional.

@@ -950,3 +963,3 @@ * Leading zero digits are allowed, but they are discarded. Missing parts are treated

*
* Examples: 1.0, 1.0.0, 1.0.0.0, 1.01, 01.02.03, 001.002.003.004
* Examples: `1.0`, `1.0.0`, `1.0.0.0`, `1.01`, `01.02.03`, `001.002.003.004`
*

@@ -1033,6 +1046,8 @@ * @public

*
* 0.9.9 lessThan 1.0.0 -> true;
* 2.0 lessThan 2.0.0 -> false;
* 3.0 lessThan 3.0.1 -> true;
* 04.01 lessThan 4.1 -> false
* ```
* 0.9.9 lessThan 1.0.0 -> true;
* 2.0 lessThan 2.0.0 -> false;
* 3.0 lessThan 3.0.1 -> true;
* 04.01 lessThan 4.1 -> false
* ```
*

@@ -1050,5 +1065,7 @@ * @param compareWith - The version to compare with

*
* 1.0.0 greaterThan 0.0.9 -> true;
* 2.0 greaterThan 2.0.0 -> false;
* 3.0.1 greaterThan 3.0 -> true
* ```
* 1.0.0 greaterThan 0.0.9 -> true;
* 2.0 greaterThan 2.0.0 -> false;
* 3.0.1 greaterThan 3.0 -> true
* ```
*

@@ -1066,6 +1083,8 @@ * @param compareWith - The version to compare with

*
* 1.0.0 equals 1.0.0 -> true;
* 2.0.1 equals 2.0.0 -> false;
* 3.0 equals 3.0.0 -> true;
* 04.01 equals 4.1 -> true
* ```
* 1.0.0 equals 1.0.0 -> true;
* 2.0.1 equals 2.0.0 -> false;
* 3.0 equals 3.0.0 -> true;
* 04.01 equals 4.1 -> true
* ```
*

@@ -1087,6 +1106,8 @@ * @param compareWith - The version to compare with

*
* 1.0.0 satisfies 1.0.0 -> true;
* 1.1.0 satisfies 1.0.0 -> true;
* 2.0.0 satisfies 1.0.0 -> false;
* 1.0.0 satisfies 1.1.0 -> false
* ```
* 1.0.0 satisfies 1.0.0 -> true;
* 1.1.0 satisfies 1.0.0 -> true;
* 2.0.0 satisfies 1.0.0 -> false;
* 1.0.0 satisfies 1.1.0 -> false
* ```
*

@@ -1093,0 +1114,0 @@ * @param compareWith - The version to compare with

@@ -8,2 +8,2 @@ // THIS FILE IS PART OF THE TEST-API PATTERN.

export * from '../lib/index';
module.exports = require('../lib/index');

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

define("7263c7d0-1d6a-45ec-8d85-d4d1d234171b_1.6.0", ["@microsoft/sp-lodash-subset"], function(__WEBPACK_EXTERNAL_MODULE_2__) { return /******/ (function(modules) { // webpackBootstrap
define("7263c7d0-1d6a-45ec-8d85-d4d1d234171b_1.7.0", ["@microsoft/sp-lodash-subset"], function(__WEBPACK_EXTERNAL_MODULE_2__) { return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache

@@ -896,3 +896,3 @@ /******/ var installedModules = {};

if (!pageIdGuid) {
log_Log.warn('Session', 'The pageId parameter was undefined or invalid. Generating a new Guid', undefined);
log_Log.warn('Session', 'The pageId parameter was undefined or invalid. Generating a new Guid');
pageIdGuid = lib_Guid.newGuid();

@@ -1252,2 +1252,8 @@ }

};
SPEventManager.prototype._listenerCount = function (eventName) {
if (!this._listeners.has(eventName)) {
return 0;
}
return this._listeners.get(eventName).length;
};
SPEventManager.prototype._raiseEventInternal = function (eventName, eventArgs) {

@@ -1297,2 +1303,5 @@ var _this = this;

};
SPEvent.prototype._listenerCount = function () {
return events_SPEventManager.instance._listenerCount(this._name);
};
return SPEvent;

@@ -1299,0 +1308,0 @@ }());

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

define("7263c7d0-1d6a-45ec-8d85-d4d1d234171b_1.6.0", ["resx-strings","@microsoft/sp-lodash-subset"], function(__WEBPACK_EXTERNAL_MODULE_1__, __WEBPACK_EXTERNAL_MODULE_2__) { return /******/ (function(modules) { // webpackBootstrap
define("7263c7d0-1d6a-45ec-8d85-d4d1d234171b_1.7.0", ["resx-strings","@microsoft/sp-lodash-subset"], function(__WEBPACK_EXTERNAL_MODULE_1__, __WEBPACK_EXTERNAL_MODULE_2__) { return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache

@@ -827,3 +827,3 @@ /******/ var installedModules = {};

if (!pageIdGuid) {
log_Log.warn('Session', 'The pageId parameter was undefined or invalid. Generating a new Guid', undefined);
log_Log.warn('Session', 'The pageId parameter was undefined or invalid. Generating a new Guid');
pageIdGuid = lib_Guid.newGuid();

@@ -1183,2 +1183,8 @@ }

};
SPEventManager.prototype._listenerCount = function (eventName) {
if (!this._listeners.has(eventName)) {
return 0;
}
return this._listeners.get(eventName).length;
};
SPEventManager.prototype._raiseEventInternal = function (eventName, eventArgs) {

@@ -1228,2 +1234,5 @@ var _this = this;

};
SPEvent.prototype._listenerCount = function () {
return events_SPEventManager.instance._listenerCount(this._name);
};
return SPEvent;

@@ -1230,0 +1239,0 @@ }());

@@ -25,3 +25,3 @@ import { ServiceScope, ServiceKey } from '../index';

/**
* {@inheritdoc ServiceScope.startNewRoot}
* {@inheritDoc ServiceScope.startNewRoot}
*/

@@ -28,0 +28,0 @@ static startNewMonitoredRoot(): MonitoredServiceScope;

@@ -7,9 +7,7 @@ /**

/**
* DeferredClass is a generic class to define the pattern of code loaded after the initial code download.
* `DeferredClass` is a generic class to define the pattern of code loaded after the initial code download.
*
* @param Type - The type of the Instance object. This type should define how you create an instance
* of the deferred class.
* @param Instance - The interface of the deferred class.
*
* @remarks
* Example:
* ```
* class DeferredFoo extends DeferredClass<typeof Foo, Foo> {

@@ -33,3 +31,8 @@ *

* }
* ```
*
* @param Type - The type of the Instance object. This type should define how you create an instance
* of the deferred class.
* @param Instance - The interface of the deferred class.
*
* @internal

@@ -36,0 +39,0 @@ */

@@ -5,3 +5,3 @@ /**

* @remarks
* This enum is used by the {@link Environment.type} property. It provides a way to distinguish
* This enum is used by the {@link Environment."type"} property. It provides a way to distinguish
* environments where certain functionality may be limited or disabled.

@@ -40,3 +40,3 @@ *

export interface IEnvironmentData {
/** {@inheritdoc Environment.type} */
/** {@inheritDoc Environment."type"} */
type: EnvironmentType;

@@ -43,0 +43,0 @@ }

@@ -56,2 +56,7 @@ import { ISPEventObserver } from './ISPEventObserver';

remove(observer: ISPEventObserver, eventHandler: (eventArgs: TEventArgs) => void): void;
/**
* Returns the number of listeners to the event
* @internal
*/
_listenerCount(): number;
}

@@ -18,4 +18,7 @@ import Validate from '../Validate';

};
SPEvent.prototype._listenerCount = function () {
return SPEventManager.instance._listenerCount(this._name);
};
return SPEvent;
}());
export default SPEvent;

@@ -81,2 +81,8 @@ import { ISPEventObserver } from './ISPEventObserver';

/**
* Returns the number of listeners for a particular event
*
* @internal
*/
_listenerCount(eventName: string): number;
/**
* Private function to raise an event.

@@ -83,0 +89,0 @@ * This include the shared functionality between raising sticky and regular events.

@@ -73,2 +73,8 @@ import Validate from '../Validate';

};
SPEventManager.prototype._listenerCount = function (eventName) {
if (!this._listeners.has(eventName)) {
return 0;
}
return this._listeners.get(eventName).length;
};
SPEventManager.prototype._raiseEventInternal = function (eventName, eventArgs) {

@@ -75,0 +81,0 @@ var _this = this;

@@ -10,3 +10,3 @@ import { IRandomNumberGenerator } from './serviceScope/provider/RandomNumberGenerator';

* This class also provides basic support for generating a pseudo-random GUID;
* however, be aware that the uniqueness depends on the browser's Math.random()
* however, be aware that the uniqueness depends on the browser's `Math.random()`
* function and may be not be suitable for some applications.

@@ -43,6 +43,9 @@ *

* Example syntaxes accepted by this function:
* 'd5369f3b-bd7a-412a-9c0f-7f0650bb5489'
* '{d5369f3b-bd7a-412a-9c0f-7f0650bb5489}'
* '/Guid(d5369f3b-bd7a-412a-9c0f-7f0650bb5489)'
*
* - `"d5369f3b-bd7a-412a-9c0f-7f0650bb5489"`
*
* - `"{d5369f3b-bd7a-412a-9c0f-7f0650bb5489}"`
*
* - `"/Guid(d5369f3b-bd7a-412a-9c0f-7f0650bb5489)/"`
*
* @param guid - The input string.

@@ -58,6 +61,9 @@ * @returns A valid Guid object

* Example syntaxes accepted by this function:
* 'd5369f3b-bd7a-412a-9c0f-7f0650bb5489'
* '{d5369f3b-bd7a-412a-9c0f-7f0650bb5489}'
* '/Guid(d5369f3b-bd7a-412a-9c0f-7f0650bb5489)'
*
* - `"d5369f3b-bd7a-412a-9c0f-7f0650bb5489"`
*
* - `"{d5369f3b-bd7a-412a-9c0f-7f0650bb5489}"`
*
* - `"/Guid(d5369f3b-bd7a-412a-9c0f-7f0650bb5489)/"`
*
* @param guid - The input string.

@@ -69,3 +75,3 @@ * @returns The Guid object, or undefined if the string could not be parsed.

* Indicates whether a GUID is valid, i.e. whether it would be successfully
* parsed by Guid.tryParse(). This function is cheaper than Guid.tryParse()
* parsed by `Guid.tryParse()`. This function is cheaper than `Guid.tryParse()`
* because it does not construct a Guid object.

@@ -103,3 +109,3 @@ *

* @returns True if this instance and the specified Guid object
* represent the same value.
* represent the same value.
*/

@@ -112,7 +118,7 @@ equals(guid: Guid): boolean;

*
* Example: 'd5369f3b-bd7a-412a-9c0f-7f0650bb5489'
* Example: `'d5369f3b-bd7a-412a-9c0f-7f0650bb5489'`
*/
toString(): string;
/**
* Use Guid.parse() or Guid.tryParse() instead of the constructor.
* Use `Guid.parse()` or `Guid.tryParse()` instead of the constructor.
* @param guid - a normalized, already valid Guid string

@@ -119,0 +125,0 @@ */

@@ -42,3 +42,3 @@ /**

*
* @internalremarks
* @privateRemarks
* A failure with this support level on a Microsoft-provided component should trigger a high-severity ticket.

@@ -45,0 +45,0 @@ */

define([], function() {
var strings = {
"_gIErrcTokcw+/VVwa+ReIA": {
"invalidEnvironmentTypeError": "[!!--##***ȆńvįŗőńmėňţŦɏƿȅ ış ıʼnvāŀĩđ##--!!]",
"invalidGuidStringError": "[!!--##***Įʼnvȃĺįđ ĞŪĪƉ šţřĩňġ: \"{0}\"##--!!]",
"isFalseValidateError": "[!!--##***Ţĥȇ vąĺųė ƒŏŗ \"{0}\" ıš ƒàļŝě##--!!]",
"isNullValidateError": "[!!--##***Ťħė vãŀůĕ ƒőř \"{0}\" můšť ƞơţ Ƅȇ ŋũŀľ##--!!]",
"isUndefinedValidateError": "[!!--##***Ţħē vȁłūė ƒōŕ \"{0}\" mūŝŧ ņōť ɓę ŭʼnđēƒīƞĕđ##--!!]",
"isEmptyStringValidateError": "[!!--##***Ťħě váļůě ƒŏŕ \"{0}\" műśť ʼnơť ƃĕ ȁŋ ȅmƥţȳ şţŕīŋğ##--!!]",
"isDisposedValidateError": "[!!--##***Ŧħĕ \"{0}\" ōƀĴēćţ ċâʼnŋŏŧ Ƅĕ űşēđ ɓēċãųşē ĭŧ ĥąŝ ƅēěň đĭšƥőşėď.##--!!]",
"invalidVersionStringError": "[!!--##***Īņvąļıđ vęŗşīőʼn śŧŕīƞĝ: \"{0}\"##--!!]",
"logVerboseLevelMessage": "[!!--##***{0}: VȆŔƁƠŜĚ {1}##--!!]",
"invalidEnvironmentTypeError": "[!!--##***ĘņvĭŕơƞměŋťŤȳƥȇ ĩš ĭʼnvȁľĭď##--!!]",
"invalidGuidStringError": "[!!--##***İƞvâļĭđ ĢŮĨĎ ŝŧŗıƞğ: \"{0}\"##--!!]",
"isFalseValidateError": "[!!--##***Ťħȇ vãłũě ƒŏŕ \"{0}\" ĩś ƒåłśē##--!!]",
"isNullValidateError": "[!!--##***Ŧħē váłŭĕ ƒŏř \"{0}\" můśţ ŋōţ ɓȅ ńūĺļ##--!!]",
"isUndefinedValidateError": "[!!--##***Ŧĥė vãľųȅ ƒōŕ \"{0}\" mųśť ńőŧ ƅȇ ŭňďěƒįʼnėď##--!!]",
"isEmptyStringValidateError": "[!!--##***Ŧĥȇ văĺůě ƒōŗ \"{0}\" mųşť ʼnŏť ƃě ãń ȅmƥŧɏ šţřĭņģ##--!!]",
"isDisposedValidateError": "[!!--##***Ťħę \"{0}\" őƃĴȅčŧ ċáņňŏŧ ƅę űŝěđ Ƅȇčăŭšě ĩŧ ĥáš ƅėėň ďĭśƥőŝēď.##--!!]",
"invalidVersionStringError": "[!!--##***Ĩƞväĺıď věŗşįōņ şţŕĭňģ: \"{0}\"##--!!]",
"logVerboseLevelMessage": "[!!--##***{0}: VĔƦƁŐŠĔ {1}##--!!]",
"logInfoLevelMessage": "[!!--##***{0}: {1}##--!!]",
"logWarningLevelMessage": "[!!--##***{0}: ŴÁƦŅĬŅĢ {1}##--!!]",
"logErrorLevelMessage": "[!!--##***{0}: ĘŔŘƠŘ: {1}##--!!]",
"serviceScopeConsumingBeforeFinished": "[!!--##***Ĉȃňņŏŧ čőʼnŝűmȅ śėřvīćĕś ƅēćąũŝȅ ťĥę şĉơƥė īš ʼnơť ƒĭŋĩšħěď ɏȅŧ##--!!]",
"serviceScopeConsumingDuringAutoCreation": "[!!--##***Ĉàňňŏť ćơņšűmĕ şěřvĭĉĕś ďųřīŋģ ŞȇřvĩćěŚćōƥę ăųťŏĉŗėǻťīőƞ##--!!]",
"serviceScopeAlreadyFinishedError": "[!!--##***Ŧħȇ ŜėřvĭċēŜčơƥě ĩŝ āĺŕěåďȳ ƒįʼnīśĥĕď##--!!]",
"serviceScopeProvideServiceAfterFinishedError": "[!!--##***Čáńņőŧ řěğĭšťĕŗ śėřvĩċȅ ƃȅċáŭŝė ťħȇ śċőƥę įŝ ǻĺřĕâďŷ ƒĭńĩšĥėď##--!!]",
"serviceScopeProvideServiceThatAlreadyExists": "[!!--##***Ŧĥĕ śȅřvīčȇ ƙȇƴ \"{0}\" ħãś āľŗēȃđɏ Ƃȅēń ŗėġıŝŧęŗȅď īň ŧħīś şčơƥȅ##--!!]",
"spErrorInnerErrorText": "[!!--##***ĨŅƝĔŔĖƦŔŐŖ:##--!!]",
"spErrorCallStackText": "[!!--##***ĊǺĽĽŠŤȂĊƘ:##--!!]",
"spErrorLogPropertiesText": "[!!--##***ŁŐĢƤŔŌƤȆŔŤĬĚŜ:##--!!]",
"dynamicDataManagerSourceAlreadyExists": "[!!--##***Ã šŏűřćȅ ŵįťĥ ĩď \"{0}\" ăłŗȇâđɏ ēxįšŧş.##--!!]",
"dynamicDataManagerSourceDoesntExist": "[!!--##***Ńơ şơũŕćė ŵįťĥ ıď \"{0}\" ƒőũńď.##--!!]"
"logWarningLevelMessage": "[!!--##***{0}: ŴÀŖŊĪŅĢ {1}##--!!]",
"logErrorLevelMessage": "[!!--##***{0}: ĒŘŔŌƦ: {1}##--!!]",
"serviceScopeConsumingBeforeFinished": "[!!--##***Ĉąŋʼnơť čőņšųmė şěŕvįċěś Ƅēćâųśē ţħĕ śĉōƥē ĭŝ ņŏť ƒĩƞĭşĥěď ŷȇŧ##--!!]",
"serviceScopeConsumingDuringAutoCreation": "[!!--##***Ċǻƞńőţ čơńŝŭmė şȅŕvĩčȇš đūŗıŋĝ ŜĕŗvıĉȇŚċőƿě äůťŏĉŗĕâţĭơŋ##--!!]",
"serviceScopeAlreadyFinishedError": "[!!--##***Ťĥė ŜȇřvıčęŚċơƥě ıś ăłŗĕàđɏ ƒıņĩšĥȅđ##--!!]",
"serviceScopeProvideServiceAfterFinishedError": "[!!--##***Ćȃņŋōť řėģįśťĕř ŝėŕvįčȅ Ƃȇċäűśȅ ťĥę ŝćŏƥȅ ĩş ǻłřěȃđŷ ƒīńįśĥȇđ##--!!]",
"serviceScopeProvideServiceThatAlreadyExists": "[!!--##***Ťħĕ šęŕvĩĉě ķęȳ \"{0}\" ħąş ãľŗěåďȳ ƃēěŋ ŕĕğıśťęŕēđ įŋ ťħĭŝ šĉŏƿę##--!!]",
"spErrorInnerErrorText": "[!!--##***ĮŇŊĔƦȆƦŘŐŘ:##--!!]",
"spErrorCallStackText": "[!!--##***ČÅŁĽŞŦĀĊƘ:##--!!]",
"spErrorLogPropertiesText": "[!!--##***ĻƠĢƤƦŌƤȄŘŢĮĖŠ:##--!!]",
"dynamicDataManagerSourceAlreadyExists": "[!!--##***Ã ŝơųŗĉė ŵĩţħ ıđ \"{0}\" ăĺřěáďȳ ȇxīśťś.##--!!]",
"dynamicDataManagerSourceDoesntExist": "[!!--##***Ńō ŝőűŗčȇ ŵīťħ įď \"{0}\" ƒőŭƞđ.##--!!]"
}

@@ -27,0 +27,0 @@ };

{
"_gIErrcTokcw+/VVwa+ReIA": {
"invalidEnvironmentTypeError": "[!!--##***ȆńvįŗőńmėňţŦɏƿȅ ış ıʼnvāŀĩđ##--!!]",
"invalidGuidStringError": "[!!--##***Įʼnvȃĺįđ ĞŪĪƉ šţřĩňġ: \"{0}\"##--!!]",
"isFalseValidateError": "[!!--##***Ţĥȇ vąĺųė ƒŏŗ \"{0}\" ıš ƒàļŝě##--!!]",
"isNullValidateError": "[!!--##***Ťħė vãŀůĕ ƒőř \"{0}\" můšť ƞơţ Ƅȇ ŋũŀľ##--!!]",
"isUndefinedValidateError": "[!!--##***Ţħē vȁłūė ƒōŕ \"{0}\" mūŝŧ ņōť ɓę ŭʼnđēƒīƞĕđ##--!!]",
"isEmptyStringValidateError": "[!!--##***Ťħě váļůě ƒŏŕ \"{0}\" műśť ʼnơť ƃĕ ȁŋ ȅmƥţȳ şţŕīŋğ##--!!]",
"isDisposedValidateError": "[!!--##***Ŧħĕ \"{0}\" ōƀĴēćţ ċâʼnŋŏŧ Ƅĕ űşēđ ɓēċãųşē ĭŧ ĥąŝ ƅēěň đĭšƥőşėď.##--!!]",
"invalidVersionStringError": "[!!--##***Īņvąļıđ vęŗşīőʼn śŧŕīƞĝ: \"{0}\"##--!!]",
"logVerboseLevelMessage": "[!!--##***{0}: VȆŔƁƠŜĚ {1}##--!!]",
"invalidEnvironmentTypeError": "[!!--##***ĘņvĭŕơƞměŋťŤȳƥȇ ĩš ĭʼnvȁľĭď##--!!]",
"invalidGuidStringError": "[!!--##***İƞvâļĭđ ĢŮĨĎ ŝŧŗıƞğ: \"{0}\"##--!!]",
"isFalseValidateError": "[!!--##***Ťħȇ vãłũě ƒŏŕ \"{0}\" ĩś ƒåłśē##--!!]",
"isNullValidateError": "[!!--##***Ŧħē váłŭĕ ƒŏř \"{0}\" můśţ ŋōţ ɓȅ ńūĺļ##--!!]",
"isUndefinedValidateError": "[!!--##***Ŧĥė vãľųȅ ƒōŕ \"{0}\" mųśť ńőŧ ƅȇ ŭňďěƒįʼnėď##--!!]",
"isEmptyStringValidateError": "[!!--##***Ŧĥȇ văĺůě ƒōŗ \"{0}\" mųşť ʼnŏť ƃě ãń ȅmƥŧɏ šţřĭņģ##--!!]",
"isDisposedValidateError": "[!!--##***Ťħę \"{0}\" őƃĴȅčŧ ċáņňŏŧ ƅę űŝěđ Ƅȇčăŭšě ĩŧ ĥáš ƅėėň ďĭśƥőŝēď.##--!!]",
"invalidVersionStringError": "[!!--##***Ĩƞväĺıď věŗşįōņ şţŕĭňģ: \"{0}\"##--!!]",
"logVerboseLevelMessage": "[!!--##***{0}: VĔƦƁŐŠĔ {1}##--!!]",
"logInfoLevelMessage": "[!!--##***{0}: {1}##--!!]",
"logWarningLevelMessage": "[!!--##***{0}: ŴÁƦŅĬŅĢ {1}##--!!]",
"logErrorLevelMessage": "[!!--##***{0}: ĘŔŘƠŘ: {1}##--!!]",
"serviceScopeConsumingBeforeFinished": "[!!--##***Ĉȃňņŏŧ čőʼnŝűmȅ śėřvīćĕś ƅēćąũŝȅ ťĥę şĉơƥė īš ʼnơť ƒĭŋĩšħěď ɏȅŧ##--!!]",
"serviceScopeConsumingDuringAutoCreation": "[!!--##***Ĉàňňŏť ćơņšűmĕ şěřvĭĉĕś ďųřīŋģ ŞȇřvĩćěŚćōƥę ăųťŏĉŗėǻťīőƞ##--!!]",
"serviceScopeAlreadyFinishedError": "[!!--##***Ŧħȇ ŜėřvĭċēŜčơƥě ĩŝ āĺŕěåďȳ ƒįʼnīśĥĕď##--!!]",
"serviceScopeProvideServiceAfterFinishedError": "[!!--##***Čáńņőŧ řěğĭšťĕŗ śėřvĩċȅ ƃȅċáŭŝė ťħȇ śċőƥę įŝ ǻĺřĕâďŷ ƒĭńĩšĥėď##--!!]",
"serviceScopeProvideServiceThatAlreadyExists": "[!!--##***Ŧĥĕ śȅřvīčȇ ƙȇƴ \"{0}\" ħãś āľŗēȃđɏ Ƃȅēń ŗėġıŝŧęŗȅď īň ŧħīś şčơƥȅ##--!!]",
"spErrorInnerErrorText": "[!!--##***ĨŅƝĔŔĖƦŔŐŖ:##--!!]",
"spErrorCallStackText": "[!!--##***ĊǺĽĽŠŤȂĊƘ:##--!!]",
"spErrorLogPropertiesText": "[!!--##***ŁŐĢƤŔŌƤȆŔŤĬĚŜ:##--!!]",
"dynamicDataManagerSourceAlreadyExists": "[!!--##***Ã šŏűřćȅ ŵįťĥ ĩď \"{0}\" ăłŗȇâđɏ ēxįšŧş.##--!!]",
"dynamicDataManagerSourceDoesntExist": "[!!--##***Ńơ şơũŕćė ŵįťĥ ıď \"{0}\" ƒőũńď.##--!!]"
"logWarningLevelMessage": "[!!--##***{0}: ŴÀŖŊĪŅĢ {1}##--!!]",
"logErrorLevelMessage": "[!!--##***{0}: ĒŘŔŌƦ: {1}##--!!]",
"serviceScopeConsumingBeforeFinished": "[!!--##***Ĉąŋʼnơť čőņšųmė şěŕvįċěś Ƅēćâųśē ţħĕ śĉōƥē ĭŝ ņŏť ƒĩƞĭşĥěď ŷȇŧ##--!!]",
"serviceScopeConsumingDuringAutoCreation": "[!!--##***Ċǻƞńőţ čơńŝŭmė şȅŕvĩčȇš đūŗıŋĝ ŜĕŗvıĉȇŚċőƿě äůťŏĉŗĕâţĭơŋ##--!!]",
"serviceScopeAlreadyFinishedError": "[!!--##***Ťĥė ŜȇřvıčęŚċơƥě ıś ăłŗĕàđɏ ƒıņĩšĥȅđ##--!!]",
"serviceScopeProvideServiceAfterFinishedError": "[!!--##***Ćȃņŋōť řėģįśťĕř ŝėŕvįčȅ Ƃȇċäűśȅ ťĥę ŝćŏƥȅ ĩş ǻłřěȃđŷ ƒīńįśĥȇđ##--!!]",
"serviceScopeProvideServiceThatAlreadyExists": "[!!--##***Ťħĕ šęŕvĩĉě ķęȳ \"{0}\" ħąş ãľŗěåďȳ ƃēěŋ ŕĕğıśťęŕēđ įŋ ťħĭŝ šĉŏƿę##--!!]",
"spErrorInnerErrorText": "[!!--##***ĮŇŊĔƦȆƦŘŐŘ:##--!!]",
"spErrorCallStackText": "[!!--##***ČÅŁĽŞŦĀĊƘ:##--!!]",
"spErrorLogPropertiesText": "[!!--##***ĻƠĢƤƦŌƤȄŘŢĮĖŠ:##--!!]",
"dynamicDataManagerSourceAlreadyExists": "[!!--##***Ã ŝơųŗĉė ŵĩţħ ıđ \"{0}\" ăĺřěáďȳ ȇxīśťś.##--!!]",
"dynamicDataManagerSourceDoesntExist": "[!!--##***Ńō ŝőűŗčȇ ŵīťħ įď \"{0}\" ƒőŭƞđ.##--!!]"
}
}
define([], function() {
var strings = {
"_gIErrcTokcw+/VVwa+ReIA": {
"invalidEnvironmentTypeError": "***ĖňvıŕŏņmĕňťŢȳƥě įš ıņvǻĺįď",
"invalidGuidStringError": "***İňvâĺīď ĠŲĮƊ ŝťřĭňğ: \"{0}\"",
"isFalseValidateError": "***Ŧĥē vãłůĕ ƒŏŗ \"{0}\" ĩś ƒàłšě",
"isNullValidateError": "***Ŧħė vâĺűȇ ƒŏř \"{0}\" mũšŧ ňōť ƃĕ ňůŀŀ",
"isUndefinedValidateError": "***Ťħē vāľŭė ƒőř \"{0}\" műşť ŋŏţ ƃě ŭňđĕƒĭƞĕď",
"isEmptyStringValidateError": "***Ŧħę vǻľűĕ ƒőř \"{0}\" mŭśť ʼnŏţ ƀȇ ąņ ēmƿťȳ şťŕīʼnġ",
"isDisposedValidateError": "***Ŧħȇ \"{0}\" ōƃĴėćŧ ĉàŋʼnơţ ƀē ųśȅđ ƃȇčàůśę įŧ ħąş ƀȅęň đıśƿơšēď.",
"invalidVersionStringError": "***Ĭņvăľįđ vĕŕŝīơʼn šŧŕĩņġ: \"{0}\"",
"logVerboseLevelMessage": "***{0}: VĖƦʙŌŞĒ {1}",
"invalidEnvironmentTypeError": "***ĚŋvįŕōʼnmȅņŧŤȳƿȅ įŝ īƞvăļįđ",
"invalidGuidStringError": "***Ĭŋvãĺĩđ ĞŨĮƊ śŧŗįŋğ: \"{0}\"",
"isFalseValidateError": "***Ťħȅ vâļųě ƒőŕ \"{0}\" īś ƒâłŝȅ",
"isNullValidateError": "***Ťħě vǻŀůę ƒōŗ \"{0}\" mŭŝŧ ƞơŧ ƃĕ ňūļľ",
"isUndefinedValidateError": "***Ťħȅ váĺŭē ƒőŗ \"{0}\" mŭŝŧ ʼnơţ ɓė ŭƞďĕƒįʼněď",
"isEmptyStringValidateError": "***Ţĥě vǻŀůē ƒőŕ \"{0}\" můşţ ʼnōť ɓė áň ęmƥťɏ śţŕıŋģ",
"isDisposedValidateError": "***Ţĥė \"{0}\" ŏƄĴēĉť ĉàňƞơţ ƃȅ ůśěđ Ƅěćȃůśȅ ĭŧ ĥăš ƅěęň đĭŝƿŏşěđ.",
"invalidVersionStringError": "***Īŋvâłıď vȇŗşįōŋ śťŗĭňğ: \"{0}\"",
"logVerboseLevelMessage": "***{0}: VĒŖɃŌŜĚ {1}",
"logInfoLevelMessage": "***{0}: {1}",
"logWarningLevelMessage": "***{0}: ŴĄŔŇİŅĜ {1}",
"logErrorLevelMessage": "***{0}: ȆŖŖŐƦ: {1}",
"serviceScopeConsumingBeforeFinished": "***Čàŋŋőţ ĉŏńšůmȅ šēŕvĩĉęş Ƃėċàůśě ţĥē šĉōƥę īş ňơţ ƒįƞıśħēď ȳȅţ",
"serviceScopeConsumingDuringAutoCreation": "***Ĉąņƞőţ ĉơńśűmĕ śēŕvįċȅŝ ďűŕīŋĝ ŠȇřvīćȇŚċŏƿę āűŧŏčřěąţīơņ",
"serviceScopeAlreadyFinishedError": "***Ťħȅ ŠȇŕvĩċȇŞĉơƥė įş āľŕēȃđȳ ƒıʼnıŝħĕď",
"serviceScopeProvideServiceAfterFinishedError": "***Ċãŋƞơţ ŗęğīŝţĕŗ śēřvĩčĕ Ƅęčǻūşȇ ŧħȇ şċōƥĕ ĭś àĺřėǻďɏ ƒīņışĥĕđ",
"serviceScopeProvideServiceThatAlreadyExists": "***Ţħę śȅŗvĩċȅ ƙěŷ \"{0}\" ĥāś ąĺŕȇäđƴ Ƅėȇƞ ŗėģıšţȅřěđ ıņ ťħĭŝ şćőƿĕ",
"spErrorInnerErrorText": "***ĪŃŃĒŔĔŘŔŐŖ:",
"spErrorCallStackText": "***ČÄĿĻŚŦÃČĶ:",
"spErrorLogPropertiesText": "***ĹŐĞƤŘŌƤĚŖŦĮĚŞ:",
"dynamicDataManagerSourceAlreadyExists": "***Ă šŏūŕċė ŵıŧĥ īď \"{0}\" ăĺŗęȁđŷ ěxĩşŧš.",
"dynamicDataManagerSourceDoesntExist": "***Ňő şōūŕĉē ŵıťĥ įď \"{0}\" ƒōŭŋď."
"logWarningLevelMessage": "***{0}: ŴÅŘŇİŅĜ {1}",
"logErrorLevelMessage": "***{0}: ĒŔŘŎŘ: {1}",
"serviceScopeConsumingBeforeFinished": "***Ćăƞňŏť čōƞśųmę śėřvĩčĕş ƅȇċăũşę ťĥȇ ŝćőƿė įş ňőţ ƒīņĩśħėđ ɏēť",
"serviceScopeConsumingDuringAutoCreation": "***Ĉåņƞŏť čơņśŭmē ŝėřvĩċęš ďŭŗĩňğ ŜȅřvĩćȇŞćŏƿě ǻūţōćŕęȁŧĩŏʼn",
"serviceScopeAlreadyFinishedError": "***Ţĥȇ ŠȇŕvĭčēŚćŏƿȇ ĩš áłřęäđƴ ƒĭƞıśĥěď",
"serviceScopeProvideServiceAfterFinishedError": "***Ċȃńńŏŧ řēģīśţėř śěŗvĩĉȅ ƅȇĉȃŭŝě ţħē śčŏƥȇ ıŝ áľŗěąđȳ ƒĭńįśĥęď",
"serviceScopeProvideServiceThatAlreadyExists": "***Ţĥȅ şĕŕvīčė ķȅƴ \"{0}\" ħåš àĺŗęāđŷ Ƃęȅŋ ŕĕġıŝťėŗēď ĭʼn ŧĥīš šćŏƿě",
"spErrorInnerErrorText": "***ĬŊŇȆŖȆŘŔŐŖ:",
"spErrorCallStackText": "***ĈÃĻĻŚŢÂĊĶ:",
"spErrorLogPropertiesText": "***ŁŌĢƤƦŐƤĚŖŦĬĚŚ:",
"dynamicDataManagerSourceAlreadyExists": "***Å šőųŗċē ŵĭŧħ ıđ \"{0}\" åļŕĕàďŷ ĕxĩšťŝ.",
"dynamicDataManagerSourceDoesntExist": "***Ňő šőűřćȇ ŵĭţĥ ĩď \"{0}\" ƒőūŋđ."
}

@@ -27,0 +27,0 @@ };

{
"_gIErrcTokcw+/VVwa+ReIA": {
"invalidEnvironmentTypeError": "***ĖňvıŕŏņmĕňťŢȳƥě įš ıņvǻĺįď",
"invalidGuidStringError": "***İňvâĺīď ĠŲĮƊ ŝťřĭňğ: \"{0}\"",
"isFalseValidateError": "***Ŧĥē vãłůĕ ƒŏŗ \"{0}\" ĩś ƒàłšě",
"isNullValidateError": "***Ŧħė vâĺűȇ ƒŏř \"{0}\" mũšŧ ňōť ƃĕ ňůŀŀ",
"isUndefinedValidateError": "***Ťħē vāľŭė ƒőř \"{0}\" műşť ŋŏţ ƃě ŭňđĕƒĭƞĕď",
"isEmptyStringValidateError": "***Ŧħę vǻľűĕ ƒőř \"{0}\" mŭśť ʼnŏţ ƀȇ ąņ ēmƿťȳ şťŕīʼnġ",
"isDisposedValidateError": "***Ŧħȇ \"{0}\" ōƃĴėćŧ ĉàŋʼnơţ ƀē ųśȅđ ƃȇčàůśę įŧ ħąş ƀȅęň đıśƿơšēď.",
"invalidVersionStringError": "***Ĭņvăľįđ vĕŕŝīơʼn šŧŕĩņġ: \"{0}\"",
"logVerboseLevelMessage": "***{0}: VĖƦʙŌŞĒ {1}",
"invalidEnvironmentTypeError": "***ĚŋvįŕōʼnmȅņŧŤȳƿȅ įŝ īƞvăļįđ",
"invalidGuidStringError": "***Ĭŋvãĺĩđ ĞŨĮƊ śŧŗįŋğ: \"{0}\"",
"isFalseValidateError": "***Ťħȅ vâļųě ƒőŕ \"{0}\" īś ƒâłŝȅ",
"isNullValidateError": "***Ťħě vǻŀůę ƒōŗ \"{0}\" mŭŝŧ ƞơŧ ƃĕ ňūļľ",
"isUndefinedValidateError": "***Ťħȅ váĺŭē ƒőŗ \"{0}\" mŭŝŧ ʼnơţ ɓė ŭƞďĕƒįʼněď",
"isEmptyStringValidateError": "***Ţĥě vǻŀůē ƒőŕ \"{0}\" můşţ ʼnōť ɓė áň ęmƥťɏ śţŕıŋģ",
"isDisposedValidateError": "***Ţĥė \"{0}\" ŏƄĴēĉť ĉàňƞơţ ƃȅ ůśěđ Ƅěćȃůśȅ ĭŧ ĥăš ƅěęň đĭŝƿŏşěđ.",
"invalidVersionStringError": "***Īŋvâłıď vȇŗşįōŋ śťŗĭňğ: \"{0}\"",
"logVerboseLevelMessage": "***{0}: VĒŖɃŌŜĚ {1}",
"logInfoLevelMessage": "***{0}: {1}",
"logWarningLevelMessage": "***{0}: ŴĄŔŇİŅĜ {1}",
"logErrorLevelMessage": "***{0}: ȆŖŖŐƦ: {1}",
"serviceScopeConsumingBeforeFinished": "***Čàŋŋőţ ĉŏńšůmȅ šēŕvĩĉęş Ƃėċàůśě ţĥē šĉōƥę īş ňơţ ƒįƞıśħēď ȳȅţ",
"serviceScopeConsumingDuringAutoCreation": "***Ĉąņƞőţ ĉơńśűmĕ śēŕvįċȅŝ ďűŕīŋĝ ŠȇřvīćȇŚċŏƿę āűŧŏčřěąţīơņ",
"serviceScopeAlreadyFinishedError": "***Ťħȅ ŠȇŕvĩċȇŞĉơƥė įş āľŕēȃđȳ ƒıʼnıŝħĕď",
"serviceScopeProvideServiceAfterFinishedError": "***Ċãŋƞơţ ŗęğīŝţĕŗ śēřvĩčĕ Ƅęčǻūşȇ ŧħȇ şċōƥĕ ĭś àĺřėǻďɏ ƒīņışĥĕđ",
"serviceScopeProvideServiceThatAlreadyExists": "***Ţħę śȅŗvĩċȅ ƙěŷ \"{0}\" ĥāś ąĺŕȇäđƴ Ƅėȇƞ ŗėģıšţȅřěđ ıņ ťħĭŝ şćőƿĕ",
"spErrorInnerErrorText": "***ĪŃŃĒŔĔŘŔŐŖ:",
"spErrorCallStackText": "***ČÄĿĻŚŦÃČĶ:",
"spErrorLogPropertiesText": "***ĹŐĞƤŘŌƤĚŖŦĮĚŞ:",
"dynamicDataManagerSourceAlreadyExists": "***Ă šŏūŕċė ŵıŧĥ īď \"{0}\" ăĺŗęȁđŷ ěxĩşŧš.",
"dynamicDataManagerSourceDoesntExist": "***Ňő şōūŕĉē ŵıťĥ įď \"{0}\" ƒōŭŋď."
"logWarningLevelMessage": "***{0}: ŴÅŘŇİŅĜ {1}",
"logErrorLevelMessage": "***{0}: ĒŔŘŎŘ: {1}",
"serviceScopeConsumingBeforeFinished": "***Ćăƞňŏť čōƞśųmę śėřvĩčĕş ƅȇċăũşę ťĥȇ ŝćőƿė įş ňőţ ƒīņĩśħėđ ɏēť",
"serviceScopeConsumingDuringAutoCreation": "***Ĉåņƞŏť čơņśŭmē ŝėřvĩċęš ďŭŗĩňğ ŜȅřvĩćȇŞćŏƿě ǻūţōćŕęȁŧĩŏʼn",
"serviceScopeAlreadyFinishedError": "***Ţĥȇ ŠȇŕvĭčēŚćŏƿȇ ĩš áłřęäđƴ ƒĭƞıśĥěď",
"serviceScopeProvideServiceAfterFinishedError": "***Ċȃńńŏŧ řēģīśţėř śěŗvĩĉȅ ƅȇĉȃŭŝě ţħē śčŏƥȇ ıŝ áľŗěąđȳ ƒĭńįśĥęď",
"serviceScopeProvideServiceThatAlreadyExists": "***Ţĥȅ şĕŕvīčė ķȅƴ \"{0}\" ħåš àĺŗęāđŷ Ƃęȅŋ ŕĕġıŝťėŗēď ĭʼn ŧĥīš šćŏƿě",
"spErrorInnerErrorText": "***ĬŊŇȆŖȆŘŔŐŖ:",
"spErrorCallStackText": "***ĈÃĻĻŚŢÂĊĶ:",
"spErrorLogPropertiesText": "***ŁŌĢƤƦŐƤĚŖŦĬĚŚ:",
"dynamicDataManagerSourceAlreadyExists": "***Å šőųŗċē ŵĭŧħ ıđ \"{0}\" åļŕĕàďŷ ĕxĩšťŝ.",
"dynamicDataManagerSourceDoesntExist": "***Ňő šőűřćȇ ŵĭţĥ ĩď \"{0}\" ƒőūŋđ."
}
}

@@ -34,4 +34,4 @@ import ServiceScope from '../ServiceScope';

constructor(serviceScope: ServiceScope);
/** {@inheritdoc IRandomNumberGenerator.generate} */
/** {@inheritDoc IRandomNumberGenerator.generate} */
generate(): number;
}

@@ -38,6 +38,6 @@ import ServiceScope from '../ServiceScope';

constructor(serviceScope: ServiceScope);
/** {@inheritdoc ITimeProvider.getDate} */
/** {@inheritDoc ITimeProvider.getDate} */
getDate(): Date;
/** {@inheritdoc ITimeProvider.getTimestamp} */
/** {@inheritDoc ITimeProvider.getTimestamp} */
getTimestamp(): number;
}

@@ -7,5 +7,5 @@ import Guid from './Guid';

export interface ISessionData {
/** {@inheritdoc Session.applicationId} */
/** {@inheritDoc Session.applicationId} */
applicationId: string;
/** {@inheritdoc Session.pageId} */
/** {@inheritDoc Session.pageId} */
pageId?: string;

@@ -12,0 +12,0 @@ }

@@ -12,3 +12,3 @@ import Guid from './Guid';

if (!pageIdGuid) {
Log.warn('Session', 'The pageId parameter was undefined or invalid. Generating a new Guid', undefined);
Log.warn('Session', 'The pageId parameter was undefined or invalid. Generating a new Guid');
pageIdGuid = Guid.newGuid();

@@ -15,0 +15,0 @@ }

@@ -5,3 +5,3 @@ /**

* The error code could be a non-localized immutable string or an error number. All the
* SharePoint framework code is expected to use this class for raising errors`.
* SharePoint framework code is expected to use this class for raising errors.
*

@@ -8,0 +8,0 @@ * References:

@@ -8,3 +8,3 @@ /**

*
* @internalremarks
* @privateRemarks
* SPFlight is currently being reexported by sp-client-base. For GA, this will be sorted out by

@@ -11,0 +11,0 @@ * VSO 278235 which will move this class back into sp-client-base (sp-core-library).

@@ -25,3 +25,3 @@ import { ServiceScope, ServiceKey } from '../index';

/**
* {@inheritdoc ServiceScope.startNewRoot}
* {@inheritDoc ServiceScope.startNewRoot}
*/

@@ -28,0 +28,0 @@ static startNewMonitoredRoot(): MonitoredServiceScope;

@@ -17,5 +17,5 @@ /**

* @remarks
* This function replaces template parameters such as "{0}" or "{1}" with the
* This function replaces template parameters such as `"{0}"` or `"{1}"` with the
* corresponding argument. If the value is null or undefined, it will be replaced
* by the word "null" or "undefined". The format string s must not be null or
* by the word `"null"` or `"undefined"`. The format string s must not be null or
* undefined.

@@ -25,10 +25,10 @@ *

*
* Text.format("hello {0}!", "world") will return "hello world!"
* `Text.format("hello {0}!", "world")` will return `"hello world!"`
*/
static format(s: string, ...values: any[]): string;
/**
* Returns the input string, with all instances of searchValue replaced by replaceValue.
* Returns the input string, with all instances of `searchValue` replaced by `replaceValue`.
*
* @remarks
* Note that JavaScript's string.replace() only replaces the first match, unless a
* Note that JavaScript's `string.replace()` only replaces the first match, unless a
* global RegExp is provided.

@@ -35,0 +35,0 @@ *

@@ -16,3 +16,3 @@ /**

*
* @internalremarks
* @privateRemarks
* The design of this class was that it could split the URL out into a data structure, and the user

@@ -35,3 +35,5 @@ * could add items to the data structure (TBD), and then another (TBD) function would rebuild the URL.

* @remarks
* Examples: this._queryParameterList = [
* Examples:
* ```
* this._queryParameterList = [
* {key: TEST, value: done},

@@ -43,2 +45,3 @@ * {key: DEBUG, value: false},

* getValue('lost') ---> undefined
* ```
* @param param - the case insensitive key for the desired query parameter value.

@@ -51,3 +54,5 @@ */

* @remarks
* Examples: this._queryParameterList = [
* Examples:
* ```
* this._queryParameterList = [
* {key: TEST, value: done},

@@ -59,2 +64,3 @@ * {key: DEBUG, value: false},

* getValues('lost') ---> undefined
* ```
* @param param - the case insensitive key for the desired query parameter value.

@@ -61,0 +67,0 @@ */

@@ -10,8 +10,11 @@ /**

* If the provided URL is relative, resolve it under the provided base URL. If the provided URL is absolute,
* return it.
* return it.
*
* @remarks
* Examples:
* ```
* resolve('/foo/bar.js', 'http://cdn.com/path/') ---> 'http://cdn.com/path/foo/bar.js'
* resolve('http://cdn.com/foo/bar.js', 'http://cdn.com/path/') ---> 'http://cdn.com/foo/bar.js'
* resolve('/foo/bar.js', 'path/') ---> 'path/foo/bar.js'
*
* ```
* @param url - the URL to be resolved

@@ -23,7 +26,12 @@ * @param baseUrl - the base URL to use if the URL is relative

* Removes any slash characters from the end of the URL.
*
* @remarks
* This function assumes that the input is already a valid absolute or server-relative URL.
*
* Examples:
* ```
* removeEndSlash('http://example.com/') ---> 'http://example.com'
* removeEndSlash('/example') ---> '/example'
* removeEndSlash('/') ---> ''
* ```
* @param url - the URL to be normalized

@@ -34,7 +42,12 @@ */

* Removes any slash characters from the beginning of the URL.
*
* @remarks
* This function assumes that the input is already a valid absolute or server-relative URL.
*
* Examples:
* ```
* removeLeadingSlash('/example/path.js') ---> 'example/path.js'
* removeLeadingSlash('example/') ---> 'example/'
* removeLeadingSlash('/') ---> ''
* ```
* @param url - the URL to be normalized

@@ -45,2 +58,4 @@ */

* Converts a variable to an OData string literal suitable for usage in a REST URL.
*
* @remarks
* The returned string will be enclosed in single quotes, and any single quotes

@@ -51,2 +66,3 @@ * will be escaped.

*
* ```
* const url = "/_api/web/GetFolderByServerRelativeUrl("

@@ -58,4 +74,5 @@ * + UrlUtilities.convertToODataStringLiteral("/SitePages/Alice's%20Page")

* // "/_api/web/GetFolderByServerRelativeUrl('/SitePages/Alice''s%20Page')/Files"
* ```
*
* @internalremarks
* @privateRemarks
* Standard reference:

@@ -71,3 +88,6 @@ * https://tools.oasis-open.org/version-control/

*
* @remarks
*
* Examples:
* ```
* isDataUrl('data:text/plain;base64,SGVsbG8sIFdvcmxkIQ%3D%3D') ---> true

@@ -78,4 +98,4 @@ * isDataUrl('data:,Hello%2C%20World!') ---> true

* isDataUrl('/foo/bar') ---> false
* ```
*
* @remarks
* Information on data URLs can be found at https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs

@@ -82,0 +102,0 @@ */

@@ -5,3 +5,3 @@ /**

* @remarks
* This class represents versions that follow the string format of MAJOR.MINOR[.PATCH[.REVISION]]
* This class represents versions that follow the string format of `MAJOR.MINOR[.PATCH[.REVISION]]`
* where the MAJOR, MINOR, PATCH and REVISION parts are integers. PATCH and REVISION are optional.

@@ -11,3 +11,3 @@ * Leading zero digits are allowed, but they are discarded. Missing parts are treated

*
* Examples: 1.0, 1.0.0, 1.0.0.0, 1.01, 01.02.03, 001.002.003.004
* Examples: `1.0`, `1.0.0`, `1.0.0.0`, `1.01`, `01.02.03`, `001.002.003.004`
*

@@ -94,6 +94,8 @@ * @public

*
* 0.9.9 lessThan 1.0.0 -> true;
* 2.0 lessThan 2.0.0 -> false;
* 3.0 lessThan 3.0.1 -> true;
* 04.01 lessThan 4.1 -> false
* ```
* 0.9.9 lessThan 1.0.0 -> true;
* 2.0 lessThan 2.0.0 -> false;
* 3.0 lessThan 3.0.1 -> true;
* 04.01 lessThan 4.1 -> false
* ```
*

@@ -111,5 +113,7 @@ * @param compareWith - The version to compare with

*
* 1.0.0 greaterThan 0.0.9 -> true;
* 2.0 greaterThan 2.0.0 -> false;
* 3.0.1 greaterThan 3.0 -> true
* ```
* 1.0.0 greaterThan 0.0.9 -> true;
* 2.0 greaterThan 2.0.0 -> false;
* 3.0.1 greaterThan 3.0 -> true
* ```
*

@@ -127,6 +131,8 @@ * @param compareWith - The version to compare with

*
* 1.0.0 equals 1.0.0 -> true;
* 2.0.1 equals 2.0.0 -> false;
* 3.0 equals 3.0.0 -> true;
* 04.01 equals 4.1 -> true
* ```
* 1.0.0 equals 1.0.0 -> true;
* 2.0.1 equals 2.0.0 -> false;
* 3.0 equals 3.0.0 -> true;
* 04.01 equals 4.1 -> true
* ```
*

@@ -148,6 +154,8 @@ * @param compareWith - The version to compare with

*
* 1.0.0 satisfies 1.0.0 -> true;
* 1.1.0 satisfies 1.0.0 -> true;
* 2.0.0 satisfies 1.0.0 -> false;
* 1.0.0 satisfies 1.1.0 -> false
* ```
* 1.0.0 satisfies 1.0.0 -> true;
* 1.1.0 satisfies 1.0.0 -> true;
* 2.0.0 satisfies 1.0.0 -> false;
* 1.0.0 satisfies 1.1.0 -> false
* ```
*

@@ -154,0 +162,0 @@ * @param compareWith - The version to compare with

{
"name": "@microsoft/sp-core-library",
"version": "1.6.0",
"version": "1.7.0-plusbeta",
"description": "SharePoint Framework core libraries",

@@ -13,12 +13,11 @@ "license": "SEE LICENSE IN \"EULA\" FOLDER",

"devDependencies": {
"@ms/sp-build-internal-web": "~0.21.8",
"@types/chai": "3.4.34",
"@types/mocha": "2.2.38",
"chai": "~3.5.0",
"@ms/sp-build-internal-web": "~0.22.13",
"gulp": "~3.9.1",
"ts-jest": "~22.4.3"
"ts-jest": "~22.4.3",
"identity-obj-proxy": "3.0.0",
"@types/jest": "21.1.10"
},
"dependencies": {
"@microsoft/sp-lodash-subset": "1.6.0",
"@microsoft/sp-module-interfaces": "1.6.0",
"@microsoft/sp-lodash-subset": "1.7.0-plusbeta",
"@microsoft/sp-module-interfaces": "1.7.0-plusbeta",
"@types/es6-promise": "0.0.33",

@@ -30,2 +29,2 @@ "@types/webpack-env": "1.13.1"

}
}
}

Sorry, the diff of this file is too big to display

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