Comparing version 4.1.0 to 4.2.0
export { IUserProfile } from './IUserProfile'; | ||
export { IUser } from './IUser'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=index.js.map |
@@ -0,0 +0,0 @@ import { IUserProfile } from './IUserProfile'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=IUser.js.map |
export interface IUserProfile { | ||
country?: string; | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=IUserProfile.js.map |
@@ -0,0 +0,0 @@ import { IDisposable, ITyped } from '../Types'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { IEventArgs, IEventArgs1 } from './IEventArgs'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { IEventArgs, IEventArgs1 } from './IEventArgs'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { IEventArgs, IEventArgs1 } from './IEventArgs'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=IEvent.js.map |
@@ -0,0 +0,0 @@ export interface IEventArgs { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=IEventArgs.js.map |
@@ -0,0 +0,0 @@ import { IEventArgs, IEventArgs1 } from './IEventArgs'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=IEventHandler.js.map |
@@ -0,0 +0,0 @@ export { IEventArgs, IEventArgs1 } from './IEventArgs'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Event1 = exports.Event = exports.EventHandler1 = exports.EventHandler = exports.EventArgs1 = exports.EventArgs = void 0; | ||
var EventArgs_1 = require("./EventArgs"); | ||
@@ -4,0 +5,0 @@ Object.defineProperty(exports, "EventArgs", { enumerable: true, get: function () { return EventArgs_1.EventArgs; } }); |
export declare const grep: (elems: any[], callback: Function, invert?: boolean | undefined) => any[]; |
@@ -0,0 +0,0 @@ "use strict"; |
export { grep } from './Grep'; | ||
export { pushif } from './Pushif'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.pushif = exports.grep = void 0; | ||
var Grep_1 = require("./Grep"); | ||
@@ -4,0 +5,0 @@ Object.defineProperty(exports, "grep", { enumerable: true, get: function () { return Grep_1.grep; } }); |
export declare const pushif: (a: any[], cond: boolean, val: any) => void; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { DateInterval } from './DateInterval'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export interface DateInterval { |
@@ -0,0 +0,0 @@ "use strict"; |
export declare const dateToUTCString: (date: Date) => string; |
@@ -0,0 +0,0 @@ "use strict"; |
import { DateInterval } from './DateInterval'; | ||
export declare const formatInterval: (interval: DateInterval, parts?: number) => string; |
@@ -0,0 +0,0 @@ "use strict"; |
export declare const formatTimer: (timestamp: number, short?: boolean, isend?: string | undefined) => string; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export { DateInterval } from './DateInterval'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.dateToUTCString = exports.parseMicrosoftFormatOffset = exports.formatTimer = exports.formatInterval = exports.timestampToInterval = exports.DateExtensions = void 0; | ||
var DateExtensions_1 = require("./DateExtensions"); | ||
@@ -4,0 +5,0 @@ Object.defineProperty(exports, "DateExtensions", { enumerable: true, get: function () { return DateExtensions_1.DateExtensions; } }); |
export declare const parseMicrosoftFormatOffset: (offset: string) => number; |
@@ -0,0 +0,0 @@ "use strict"; |
import { DateInterval } from './DateInterval'; | ||
export declare const timestampToInterval: (ts: number) => DateInterval; |
@@ -0,0 +0,0 @@ "use strict"; |
export { stdDeviation } from './StdDeviation'; |
@@ -5,4 +5,5 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.stdDeviation = void 0; | ||
var StdDeviation_1 = require("./StdDeviation"); | ||
Object.defineProperty(exports, "stdDeviation", { enumerable: true, get: function () { return StdDeviation_1.stdDeviation; } }); | ||
//# sourceMappingURL=index.js.map |
export declare const stdDeviation: (arr: number[]) => number; |
@@ -0,0 +0,0 @@ "use strict"; |
export { justify } from './Justify'; | ||
export { pluralize } from './Pluralize'; | ||
export { sprintf } from './Sprintf'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.sprintf = exports.pluralize = exports.justify = void 0; | ||
var Justify_1 = require("./Justify"); | ||
@@ -4,0 +5,0 @@ Object.defineProperty(exports, "justify", { enumerable: true, get: function () { return Justify_1.justify; } }); |
export declare const justify: (value: string, prefix: string, leftJustify: boolean, minWidth: number, zeroPad: boolean) => string; |
@@ -0,0 +0,0 @@ "use strict"; |
export declare const pluralize: (num: number, strOne: string, strTwo: string, strFive: string) => string; |
@@ -0,0 +0,0 @@ "use strict"; |
export declare type RadixType = 2 | 8 | 10 | 16; | ||
export declare const sprintf: (format: string, ...a: any[]) => string; |
@@ -0,0 +0,0 @@ "use strict"; |
export declare const createChainedFunction: (...funcs: any[]) => any; |
@@ -0,0 +0,0 @@ "use strict"; |
export { createChainedFunction } from './CreateChainedFunction'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.createChainedFunction = void 0; | ||
var CreateChainedFunction_1 = require("./CreateChainedFunction"); | ||
Object.defineProperty(exports, "createChainedFunction", { enumerable: true, get: function () { return CreateChainedFunction_1.createChainedFunction; } }); | ||
//# sourceMappingURL=index.js.map |
export interface Hashtable<T> { | ||
[key: string]: T; | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Hashtable.js.map |
@@ -0,0 +0,0 @@ export declare const _: (category: string, key: string, args?: any) => string; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ { |
@@ -0,0 +0,0 @@ { |
@@ -0,0 +0,0 @@ { |
@@ -0,0 +0,0 @@ export * from './fn/array/index'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.i18n = exports._ = exports.Logger = void 0; | ||
const tslib_1 = require("tslib"); | ||
@@ -4,0 +5,0 @@ tslib_1.__exportStar(require("./fn/array/index"), exports); |
@@ -0,0 +0,0 @@ declare global { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export interface IDisposable { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Types.js.map |
{ | ||
"name": "onix-core", | ||
"version": "4.1.0", | ||
"version": "4.2.0", | ||
"description": "Onix library core", | ||
@@ -26,3 +26,3 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"intl-messageformat": "^9.1.4", | ||
"intl-messageformat": "^9.3.18", | ||
"lodash-es": "^4.17.15", | ||
@@ -32,7 +32,7 @@ "warning": "^4.0.3" | ||
"devDependencies": { | ||
"@babel/core": "^7.10.5", | ||
"@babel/preset-env": "^7.10.4", | ||
"@babel/register": "^7.10.5", | ||
"@babel/core": "^7.12.3", | ||
"@babel/preset-env": "^7.12.1", | ||
"@babel/register": "^7.12.1", | ||
"@types/lodash-es": "^4.17.3", | ||
"@types/node": "^14.0.23", | ||
"@types/node": "^14.14.7", | ||
"@types/warning": "^3.0.0", | ||
@@ -44,8 +44,8 @@ "babel-polyfill": "^6.26.0", | ||
"full-icu": "^1.3.1", | ||
"mocha": "^8.0.1", | ||
"ts-loader": "^8.0.1", | ||
"typescript": "^3.9.6", | ||
"webpack": "^4.43.0", | ||
"webpack-cli": "^3.3.12" | ||
"mocha": "^8.2.1", | ||
"ts-loader": "^8.0.11", | ||
"typescript": "^4.0.5", | ||
"webpack": "^5.4.0", | ||
"webpack-cli": "^4.2.0" | ||
} | ||
} |
@@ -0,0 +0,0 @@ # onix-core |
export { IUserProfile } from './IUserProfile'; | ||
export { IUser } from './IUser'; |
export interface IUserProfile { | ||
country?: string | ||
} |
@@ -0,0 +0,0 @@ // Unique id for the current document/navigation. Should be different after |
@@ -0,0 +0,0 @@ import toSafeInteger from 'lodash-es/toSafeInteger'; |
@@ -0,0 +0,0 @@ import toSafeInteger from 'lodash-es/toSafeInteger'; |
@@ -0,0 +0,0 @@ import { _ } from '../../i18n'; |
@@ -0,0 +0,0 @@ import padStart from 'lodash-es/padStart'; |
@@ -0,0 +0,0 @@ import { DateInterval } from './DateInterval'; |
@@ -0,0 +0,0 @@ { |
@@ -0,0 +0,0 @@ { |
@@ -0,0 +0,0 @@ { |
@@ -0,0 +0,0 @@ import sri from "../common/sri"; |
export { OnixStorageEvent, OnixBooleanStorage, OnixStorage, OnixStorageHelper } from './Types'; | ||
export { storage, tempStorage } from './Builder'; |
@@ -0,0 +0,0 @@ export interface OnixStorageEvent { |
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
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
2405
126208
Updatedintl-messageformat@^9.3.18