@devexpress/utils
Advanced tools
Comparing version
@@ -46,2 +46,2 @@ export declare class Browser { | ||
} | ||
//# sourceMappingURL=browser.d.ts.map | ||
//# sourceMappingURL=browser.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Browser = void 0; | ||
var Browser = (function () { | ||
@@ -4,0 +5,0 @@ function Browser() { |
@@ -29,2 +29,2 @@ export interface IBatchUpdatableObject { | ||
} | ||
//# sourceMappingURL=batch-updatable.d.ts.map | ||
//# sourceMappingURL=batch-updatable.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.EmptyBatchUpdatableObject = exports.BatchUpdatableObject = void 0; | ||
var BatchUpdatableObject = (function () { | ||
@@ -4,0 +5,0 @@ function BatchUpdatableObject() { |
@@ -10,2 +10,5 @@ export declare class ChunkedText { | ||
protected _textLength: number; | ||
get currChar(): string; | ||
get currPos(): number; | ||
get textLength(): number; | ||
constructor(text: string, maxChunkSize?: number); | ||
@@ -21,6 +24,3 @@ resetToStart(): void; | ||
private pushText; | ||
readonly currChar: string; | ||
readonly currPos: number; | ||
readonly textLength: number; | ||
} | ||
//# sourceMappingURL=chunked-text.d.ts.map | ||
//# sourceMappingURL=chunked-text.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ChunkedText = void 0; | ||
var ChunkedText = (function () { | ||
@@ -16,3 +17,3 @@ function ChunkedText(text, maxChunkSize) { | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -24,3 +25,3 @@ }); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -32,3 +33,3 @@ }); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -35,0 +36,0 @@ }); |
@@ -6,2 +6,3 @@ export declare class DelayedActionManager { | ||
private action; | ||
get actionExecuted(): boolean; | ||
constructor(action: () => void); | ||
@@ -13,4 +14,3 @@ reset(): void; | ||
stop(): void; | ||
readonly actionExecuted: boolean; | ||
} | ||
//# sourceMappingURL=delayed-manager.d.ts.map | ||
//# sourceMappingURL=delayed-manager.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.DelayedActionManager = void 0; | ||
var DelayedActionManager = (function () { | ||
@@ -12,3 +13,3 @@ function DelayedActionManager(action) { | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -15,0 +16,0 @@ }); |
@@ -8,2 +8,2 @@ export declare class DomEventHandlersHolder { | ||
} | ||
//# sourceMappingURL=event-handlers-holder.d.ts.map | ||
//# sourceMappingURL=event-handlers-holder.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.DomEventHandlersHolder = void 0; | ||
var touch_1 = require("../utils/touch"); | ||
@@ -4,0 +5,0 @@ var DomEventHandler = (function () { |
@@ -12,2 +12,2 @@ import { ICloneable } from '../types'; | ||
} | ||
//# sourceMappingURL=flag.d.ts.map | ||
//# sourceMappingURL=flag.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Flag = void 0; | ||
var Flag = (function () { | ||
@@ -4,0 +5,0 @@ function Flag(initValue) { |
@@ -11,2 +11,2 @@ export declare class Initializer { | ||
}; | ||
//# sourceMappingURL=initializer.d.ts.map | ||
//# sourceMappingURL=initializer.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Initialize = exports.Initializer = void 0; | ||
var Initializer = (function () { | ||
@@ -4,0 +5,0 @@ function Initializer() { |
@@ -7,3 +7,3 @@ export declare class MinMax<T> { | ||
export declare class MinMaxNumber extends MinMax<number> { | ||
readonly length: number; | ||
get length(): number; | ||
} | ||
@@ -25,2 +25,2 @@ export declare class ExtendedMin<T> { | ||
} | ||
//# sourceMappingURL=min-max.d.ts.map | ||
//# sourceMappingURL=min-max.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ExtendedMinMax = exports.ExtendedMax = exports.ExtendedMin = exports.MinMaxNumber = exports.MinMax = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -21,3 +22,3 @@ var MinMax = (function () { | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -24,0 +25,0 @@ }); |
@@ -11,2 +11,2 @@ import { CmpFunc } from '../types'; | ||
} | ||
//# sourceMappingURL=ordered-list.d.ts.map | ||
//# sourceMappingURL=ordered-list.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.OrderedList = void 0; | ||
var search_1 = require("../utils/search"); | ||
@@ -4,0 +5,0 @@ var OrderedList = (function () { |
@@ -6,2 +6,2 @@ export declare class Pair<firstT, secondT> { | ||
} | ||
//# sourceMappingURL=pair.d.ts.map | ||
//# sourceMappingURL=pair.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Pair = void 0; | ||
var Pair = (function () { | ||
@@ -4,0 +5,0 @@ function Pair(first, second) { |
@@ -8,5 +8,5 @@ export declare class Stack<T> { | ||
peek(): T | undefined; | ||
get count(): number; | ||
getPrevious(): T; | ||
readonly count: number; | ||
} | ||
//# sourceMappingURL=stack.d.ts.map | ||
//# sourceMappingURL=stack.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Stack = void 0; | ||
var Stack = (function () { | ||
@@ -27,3 +28,3 @@ function Stack() { | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -30,0 +31,0 @@ }); |
@@ -48,2 +48,2 @@ export declare class UnitConverter { | ||
} | ||
//# sourceMappingURL=unit-converter.d.ts.map | ||
//# sourceMappingURL=unit-converter.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.UnitConverter = void 0; | ||
var UnitConverter = (function () { | ||
@@ -4,0 +5,0 @@ function UnitConverter() { |
@@ -10,2 +10,2 @@ export declare class Constants { | ||
} | ||
//# sourceMappingURL=constants.d.ts.map | ||
//# sourceMappingURL=constants.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Int32Constants = exports.Constants = void 0; | ||
var Constants = (function () { | ||
@@ -4,0 +5,0 @@ function Constants() { |
@@ -7,2 +7,2 @@ export declare class Errors { | ||
} | ||
//# sourceMappingURL=errors.d.ts.map | ||
//# sourceMappingURL=errors.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Errors = void 0; | ||
var Errors = (function () { | ||
@@ -4,0 +5,0 @@ function Errors() { |
@@ -21,2 +21,2 @@ import { IDateFormatterOptions } from './options'; | ||
} | ||
//# sourceMappingURL=date-time-field.d.ts.map | ||
//# sourceMappingURL=date-time-field.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.DateTimeFieldFormatter = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -4,0 +5,0 @@ var DateTimeFieldFormatter = (function () { |
@@ -9,2 +9,2 @@ export declare class DateUtils { | ||
} | ||
//# sourceMappingURL=date-utils.d.ts.map | ||
//# sourceMappingURL=date-utils.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.DateUtils = void 0; | ||
var DateUtils = (function () { | ||
@@ -4,0 +5,0 @@ function DateUtils() { |
@@ -72,2 +72,2 @@ import { IDateFormatterOptions } from './options'; | ||
} | ||
//# sourceMappingURL=date.d.ts.map | ||
//# sourceMappingURL=date.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.DateFormatter = void 0; | ||
var string_1 = require("../utils/map/string"); | ||
@@ -4,0 +5,0 @@ var string_2 = require("../utils/string"); |
@@ -15,2 +15,2 @@ import { DateFormatter } from './date'; | ||
} | ||
//# sourceMappingURL=manager.d.ts.map | ||
//# sourceMappingURL=manager.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SimpleFormattersManager = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -20,3 +21,3 @@ var date_1 = require("./date"); | ||
} | ||
return (_a = this.stringFormatter).format.apply(_a, tslib_1.__spreadArrays([pattern], args)); | ||
return (_a = this.stringFormatter).format.apply(_a, tslib_1.__spreadArray([pattern], args)); | ||
}; | ||
@@ -23,0 +24,0 @@ SimpleFormattersManager.prototype.formatDate = function (format, date) { |
@@ -35,2 +35,2 @@ import { INumberFormatterOptions } from './options'; | ||
} | ||
//# sourceMappingURL=number.d.ts.map | ||
//# sourceMappingURL=number.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.NumberFormatter = void 0; | ||
var NumberFormatter = (function () { | ||
@@ -4,0 +5,0 @@ function NumberFormatter(options) { |
@@ -40,2 +40,2 @@ export interface IDateFormatterOptions { | ||
} | ||
//# sourceMappingURL=options.d.ts.map | ||
//# sourceMappingURL=options.d.ts.map |
@@ -11,2 +11,2 @@ import { DateFormatter } from './date'; | ||
} | ||
//# sourceMappingURL=string.d.ts.map | ||
//# sourceMappingURL=string.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.StringFormatter = void 0; | ||
var date_1 = require("./date"); | ||
@@ -4,0 +5,0 @@ var date_utils_1 = require("./date-utils"); |
@@ -17,2 +17,2 @@ export interface IPoint { | ||
} | ||
//# sourceMappingURL=interfaces.d.ts.map | ||
//# sourceMappingURL=interfaces.d.ts.map |
@@ -14,2 +14,2 @@ import { IPoint } from './interfaces'; | ||
} | ||
//# sourceMappingURL=line-equation.d.ts.map | ||
//# sourceMappingURL=line-equation.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.LineEquation = void 0; | ||
var math_1 = require("../utils/math"); | ||
@@ -4,0 +5,0 @@ var point_1 = require("./point"); |
@@ -7,2 +7,2 @@ import { ICloneable, IEquatable, ISupportConverting, ISupportCopyFrom } from '../types'; | ||
} | ||
//# sourceMappingURL=margins.d.ts.map | ||
//# sourceMappingURL=margins.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Margins = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -4,0 +5,0 @@ var offsets_1 = require("./offsets"); |
@@ -6,2 +6,2 @@ import { IPoint } from './interfaces'; | ||
} | ||
//# sourceMappingURL=metrics.d.ts.map | ||
//# sourceMappingURL=metrics.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Metrics = void 0; | ||
var Metrics = (function () { | ||
@@ -4,0 +5,0 @@ function Metrics() { |
@@ -9,2 +9,4 @@ import { IEquatable, ISupportConverting, ISupportCopyFrom, SimpleConverter } from '../types'; | ||
static empty(): Offsets; | ||
get horizontal(): number; | ||
get vertical(): number; | ||
constructor(left: number, right: number, top: number, bottom: number); | ||
@@ -25,5 +27,3 @@ static fromNumber(offset: number): Offsets; | ||
applyConverter(converter: SimpleConverter): this; | ||
readonly horizontal: number; | ||
readonly vertical: number; | ||
} | ||
//# sourceMappingURL=offsets.d.ts.map | ||
//# sourceMappingURL=offsets.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Offsets = void 0; | ||
var Offsets = (function () { | ||
@@ -17,3 +18,3 @@ function Offsets(left, right, top, bottom) { | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -25,3 +26,3 @@ }); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -28,0 +29,0 @@ }); |
@@ -7,2 +7,2 @@ import { ICloneable, IEquatable, ISupportConverting, ISupportCopyFrom } from '../types'; | ||
} | ||
//# sourceMappingURL=paddings.d.ts.map | ||
//# sourceMappingURL=paddings.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Paddings = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -4,0 +5,0 @@ var offsets_1 = require("./offsets"); |
@@ -26,2 +26,2 @@ import { ICloneable, IEquatable, ISupportConverting, ISupportCopyFrom, SimpleConverter } from '../types'; | ||
} | ||
//# sourceMappingURL=point.d.ts.map | ||
//# sourceMappingURL=point.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Point = void 0; | ||
var Point = (function () { | ||
@@ -4,0 +5,0 @@ function Point(x, y) { |
@@ -6,6 +6,6 @@ import { IRectangle } from './interfaces'; | ||
export declare class Polygon<T extends Point = Point> extends PolygonalChain<T> { | ||
get numEdges(): number; | ||
static fromRectangle(rect: IRectangle): Polygon<Point>; | ||
getEdge(edgeIndex: number): Segment; | ||
static collision<T1 extends Point, T2 extends Point>(a: Polygon<T1>, b: Polygon<T2>): CollisionResult; | ||
readonly numEdges: number; | ||
} | ||
@@ -17,2 +17,2 @@ export declare enum CollisionResult { | ||
} | ||
//# sourceMappingURL=polygon.d.ts.map | ||
//# sourceMappingURL=polygon.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.CollisionResult = exports.Polygon = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -17,3 +18,3 @@ var point_1 = require("./point"); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -20,0 +21,0 @@ }); |
@@ -11,7 +11,7 @@ import { ExtendedMinMax } from '../class/min-max'; | ||
getSegment(edgeIndex: number): Segment; | ||
get bounds(): Rectangle; | ||
rotateAround(point: IPoint, angle: number, rightSC?: boolean, byClockwise?: boolean): this; | ||
changeCoordinateCenterTo(p: IPoint): this; | ||
projection(axis: Vector): ExtendedMinMax<T>; | ||
readonly bounds: Rectangle; | ||
} | ||
//# sourceMappingURL=polygonal-chain.d.ts.map | ||
//# sourceMappingURL=polygonal-chain.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.PolygonalChain = void 0; | ||
var list_1 = require("../utils/list"); | ||
@@ -22,3 +23,3 @@ var point_1 = require("./point"); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -25,0 +26,0 @@ }); |
@@ -12,2 +12,5 @@ import { Flag } from '../class/flag'; | ||
height: number; | ||
get right(): number; | ||
get bottom(): number; | ||
get center(): Point; | ||
constructor(x: number, y: number, width: number, height: number); | ||
@@ -55,5 +58,2 @@ createRectangle(): Rectangle; | ||
static containsPoint(rect: IRectangle, point: IPoint): boolean; | ||
readonly right: number; | ||
readonly bottom: number; | ||
readonly center: Point; | ||
} | ||
@@ -77,2 +77,2 @@ export declare enum HitTestDeviation { | ||
} | ||
//# sourceMappingURL=rectangle.d.ts.map | ||
//# sourceMappingURL=rectangle.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.RectangleDeviation = exports.HitTestDeviation = exports.Rectangle = void 0; | ||
var flag_1 = require("../class/flag"); | ||
@@ -19,3 +20,3 @@ var algorithms_1 = require("../intervals/algorithms"); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -27,3 +28,3 @@ }); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -35,3 +36,3 @@ }); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -38,0 +39,0 @@ }); |
@@ -6,2 +6,6 @@ import { IPoint, IRectangle } from './interfaces'; | ||
endPoint: T; | ||
get length(): number; | ||
get xLength(): number; | ||
get yLength(): number; | ||
get center(): Point; | ||
constructor(startPoint: T, endPoint: T); | ||
@@ -12,7 +16,3 @@ isIntersected<AnotherT extends Point>(segment: Segment<AnotherT>): boolean; | ||
private intersectCore; | ||
readonly length: number; | ||
readonly xLength: number; | ||
readonly yLength: number; | ||
readonly center: Point; | ||
} | ||
//# sourceMappingURL=segment.d.ts.map | ||
//# sourceMappingURL=segment.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Segment = void 0; | ||
var math_1 = require("../utils/math"); | ||
@@ -16,3 +17,3 @@ var metrics_1 = require("./metrics"); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -24,3 +25,3 @@ }); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -32,3 +33,3 @@ }); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -40,3 +41,3 @@ }); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -43,0 +44,0 @@ }); |
@@ -21,2 +21,2 @@ import { ICloneable, IEquatable, ISupportCopyFrom, SimpleConverter } from '../types'; | ||
} | ||
//# sourceMappingURL=size.d.ts.map | ||
//# sourceMappingURL=size.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Size = void 0; | ||
var Size = (function () { | ||
@@ -4,0 +5,0 @@ function Size(width, height) { |
@@ -6,2 +6,3 @@ import { Point } from './point'; | ||
y: number; | ||
get length(): number; | ||
constructor(x?: number, y?: number); | ||
@@ -12,8 +13,7 @@ static fromPoints(begin: Point, end: Point): Vector; | ||
negative(): this; | ||
static get axisX(): Vector; | ||
static get axisY(): Vector; | ||
static angleBetween(a: Vector, b: Vector): number; | ||
static scalarProduct(a: Point | Vector, b: Point | Vector): number; | ||
readonly length: number; | ||
readonly axisX: Vector; | ||
readonly axisY: Vector; | ||
} | ||
//# sourceMappingURL=vector.d.ts.map | ||
//# sourceMappingURL=vector.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Vector = void 0; | ||
var Vector = (function () { | ||
@@ -14,3 +15,3 @@ function Vector(x, y) { | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -41,3 +42,3 @@ }); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -49,3 +50,3 @@ }); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -52,0 +53,0 @@ }); |
@@ -29,2 +29,2 @@ import { ConstInterval } from './const'; | ||
} | ||
//# sourceMappingURL=algorithms.d.ts.map | ||
//# sourceMappingURL=algorithms.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.IntervalAlgorithms = void 0; | ||
var list_1 = require("../utils/list"); | ||
@@ -4,0 +5,0 @@ var search_1 = require("../utils/search"); |
@@ -8,2 +8,5 @@ import { ICloneable, IEquatable, ISupportCopyFrom } from '../types'; | ||
end: number; | ||
get length(): number; | ||
set length(newLength: number); | ||
get center(): number; | ||
constructor(start: number, end: number); | ||
@@ -19,5 +22,3 @@ static normalized(pointA: number, pointB: number): BoundaryInterval; | ||
expand(interval: BoundaryInterval): this; | ||
length: number; | ||
readonly center: number; | ||
} | ||
//# sourceMappingURL=boundary.d.ts.map | ||
//# sourceMappingURL=boundary.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.BoundaryInterval = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -20,3 +21,3 @@ var mutable_1 = require("./mutable"); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -28,3 +29,3 @@ }); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -31,0 +32,0 @@ }); |
export declare abstract class ConstInterval { | ||
abstract get start(): number; | ||
abstract get length(): number; | ||
abstract get end(): number; | ||
get center(): number; | ||
isNormalized(): boolean; | ||
@@ -11,7 +15,3 @@ isCollapsed(): boolean; | ||
containsWithoutIntervalEndAndStart(pos: number): boolean; | ||
readonly start: number; | ||
readonly length: number; | ||
readonly end: number; | ||
readonly center: number; | ||
} | ||
//# sourceMappingURL=const.d.ts.map | ||
//# sourceMappingURL=const.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ConstInterval = void 0; | ||
var ConstInterval = (function () { | ||
@@ -10,3 +11,3 @@ function ConstInterval() { | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -13,0 +14,0 @@ }); |
@@ -8,2 +8,5 @@ import { ICloneable, IEquatable, ISupportCopyFrom } from '../types'; | ||
length: number; | ||
get end(): number; | ||
set end(newEnd: number); | ||
get center(): number; | ||
constructor(start: number, length: number); | ||
@@ -19,5 +22,3 @@ copyFrom(obj: FixedInterval): void; | ||
expand(interval: FixedInterval): this; | ||
end: number; | ||
readonly center: number; | ||
} | ||
//# sourceMappingURL=fixed.d.ts.map | ||
//# sourceMappingURL=fixed.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.FixedInterval = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -20,3 +21,3 @@ var mutable_1 = require("./mutable"); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -28,3 +29,3 @@ }); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -31,0 +32,0 @@ }); |
import { ConstInterval } from './const'; | ||
export declare abstract class MutableInterval extends ConstInterval { | ||
abstract set start(val: number); | ||
abstract set length(val: number); | ||
abstract set end(val: number); | ||
abstract expand(interval: ConstInterval): this; | ||
normalizeLength(): this; | ||
start: number; | ||
length: number; | ||
end: number; | ||
} | ||
//# sourceMappingURL=mutable.d.ts.map | ||
//# sourceMappingURL=mutable.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.MutableInterval = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -4,0 +5,0 @@ var const_1 = require("./const"); |
@@ -7,2 +7,2 @@ import { ConstInterval } from './const'; | ||
} | ||
//# sourceMappingURL=reproducible.d.ts.map | ||
//# sourceMappingURL=reproducible.d.ts.map |
@@ -12,2 +12,2 @@ import { MutableInterval } from '../mutable'; | ||
} | ||
//# sourceMappingURL=collector.d.ts.map | ||
//# sourceMappingURL=collector.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SparseIntervalsCollector = void 0; | ||
var intervals_1 = require("./intervals"); | ||
@@ -4,0 +5,0 @@ var SparseIntervalsCollector = (function () { |
@@ -8,2 +8,4 @@ import { ConstInterval } from '../const'; | ||
private _numIntervals; | ||
get count(): number; | ||
get numIntervals(): number; | ||
constructor(list?: T[]); | ||
@@ -13,5 +15,3 @@ getInterval(index: number): T; | ||
getObjectsIterator<ObjT extends any>(objects: ObjT[]): SparseObjectsIterator<T, ObjT>; | ||
readonly count: number; | ||
readonly numIntervals: number; | ||
} | ||
//# sourceMappingURL=intervals.d.ts.map | ||
//# sourceMappingURL=intervals.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SparseIntervals = void 0; | ||
var iterator_1 = require("./iterator"); | ||
@@ -21,3 +22,3 @@ var objects_iterator_1 = require("./objects-iterator"); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -29,3 +30,3 @@ }); | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -32,0 +33,0 @@ }); |
@@ -10,7 +10,7 @@ import { ConstInterval } from '../const'; | ||
constructor(sparseIntervals: SparseIntervals<T>); | ||
get isStarted(): boolean; | ||
moveNext(): boolean; | ||
movePrev(): boolean; | ||
protected initObject(): void; | ||
readonly isStarted: boolean; | ||
} | ||
//# sourceMappingURL=iterator.d.ts.map | ||
//# sourceMappingURL=iterator.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SparseIntervalsIterator = void 0; | ||
var SparseIntervalsIterator = (function () { | ||
@@ -12,3 +13,3 @@ function SparseIntervalsIterator(sparseIntervals) { | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -15,0 +16,0 @@ }); |
@@ -16,2 +16,2 @@ import { CmpFunc } from '../../types'; | ||
} | ||
//# sourceMappingURL=map-collector.d.ts.map | ||
//# sourceMappingURL=map-collector.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SparseIntervalsMapCollector = void 0; | ||
var map_iterator_1 = require("./map-iterator"); | ||
@@ -4,0 +5,0 @@ var SparseIntervalsMapCollector = (function () { |
@@ -10,7 +10,7 @@ import { ConstInterval } from '../const'; | ||
posInInterval: number; | ||
get numIntervals(): number; | ||
constructor(intervals: T[], valMap: Record<number, ObjT>); | ||
moveToNextPosition(): boolean; | ||
moveToNextInterval(): boolean; | ||
readonly numIntervals: number; | ||
} | ||
//# sourceMappingURL=map-iterator.d.ts.map | ||
//# sourceMappingURL=map-iterator.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SparseIntervalsMapIterator = void 0; | ||
var intervals_1 = require("./intervals"); | ||
@@ -14,3 +15,3 @@ var SparseIntervalsMapIterator = (function () { | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -17,0 +18,0 @@ }); |
@@ -10,2 +10,2 @@ import { ConstInterval } from '../const'; | ||
} | ||
//# sourceMappingURL=objects-iterator.d.ts.map | ||
//# sourceMappingURL=objects-iterator.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SparseObjectsIterator = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -4,0 +5,0 @@ var iterator_1 = require("./iterator"); |
@@ -14,2 +14,2 @@ export declare class PdfHelperFrame { | ||
} | ||
//# sourceMappingURL=helper-frame.d.ts.map | ||
//# sourceMappingURL=helper-frame.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.PdfHelperFrame = void 0; | ||
var browser_1 = require("../browser"); | ||
@@ -4,0 +5,0 @@ var dom_1 = require("../utils/dom"); |
@@ -9,2 +9,2 @@ export declare class PdfPluginHelper { | ||
} | ||
//# sourceMappingURL=plugin-helper.d.ts.map | ||
//# sourceMappingURL=plugin-helper.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.PdfPluginHelper = void 0; | ||
var browser_1 = require("../browser"); | ||
@@ -4,0 +5,0 @@ var PdfPluginHelper = (function () { |
@@ -43,2 +43,2 @@ export declare enum SesType { | ||
export {}; | ||
//# sourceMappingURL=common.d.ts.map | ||
//# sourceMappingURL=common.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SequenceComparator = exports.SesElem = exports.SesType = void 0; | ||
var SesType; | ||
@@ -4,0 +5,0 @@ (function (SesType) { |
@@ -35,7 +35,7 @@ import { ISequenceComparatorItertor, SesType } from './common'; | ||
constructor(str: string); | ||
get length(): number; | ||
getComparer(): ((a: string, b: string) => boolean); | ||
getByIndex(index: number): string; | ||
readonly length: number; | ||
} | ||
export {}; | ||
//# sourceMappingURL=string.d.ts.map | ||
//# sourceMappingURL=string.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.StringSequenceComparatorItertor = exports.StringSesElem = exports.StringSequenceComparator = void 0; | ||
var common_1 = require("./common"); | ||
@@ -145,3 +146,3 @@ var StringSequenceComparator = (function () { | ||
}, | ||
enumerable: true, | ||
enumerable: false, | ||
configurable: true | ||
@@ -148,0 +149,0 @@ }); |
@@ -19,2 +19,2 @@ export declare type EqualFunc<T> = (a: T, b: T) => boolean; | ||
} | ||
//# sourceMappingURL=types.d.ts.map | ||
//# sourceMappingURL=types.d.ts.map |
@@ -15,2 +15,2 @@ export declare class AttrUtils { | ||
} | ||
//# sourceMappingURL=attr.d.ts.map | ||
//# sourceMappingURL=attr.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.AttrUtils = void 0; | ||
var browser_1 = require("../browser"); | ||
@@ -4,0 +5,0 @@ var AttrUtils = (function () { |
@@ -16,2 +16,2 @@ import { DxMimeType } from './mime-type'; | ||
} | ||
//# sourceMappingURL=base64.d.ts.map | ||
//# sourceMappingURL=base64.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Base64Utils = void 0; | ||
var file_1 = require("./file"); | ||
@@ -4,0 +5,0 @@ var mime_type_1 = require("./mime-type"); |
export declare type Color = number; | ||
export declare class ColorUtils { | ||
static readonly DARK_COLOR: any; | ||
static readonly LIGHT_COLOR: any; | ||
static readonly DARK_COLOR = -16777216; | ||
static readonly LIGHT_COLOR = -1; | ||
static getAlpha(color: Color): number; | ||
@@ -24,2 +24,2 @@ static getRed(color: Color): number; | ||
} | ||
//# sourceMappingURL=color.d.ts.map | ||
//# sourceMappingURL=color.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ColorUtils = void 0; | ||
var string_1 = require("./string"); | ||
@@ -4,0 +5,0 @@ var ColorUtils = (function () { |
@@ -11,2 +11,2 @@ export declare function isDefined<T>(value: T | undefined | null): value is T; | ||
export declare function numberToStringHex(num: number, minLength?: number): string; | ||
//# sourceMappingURL=common.d.ts.map | ||
//# sourceMappingURL=common.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.numberToStringHex = exports.numberToStringBin = exports.isOdd = exports.isEven = exports.isNonNullString = exports.isString = exports.isNumber = exports.boolToString = exports.boolToInt = exports.isDefined = void 0; | ||
var string_1 = require("./string"); | ||
@@ -4,0 +5,0 @@ function isDefined(value) { |
@@ -11,2 +11,2 @@ import { IEquatable } from '../types'; | ||
} | ||
//# sourceMappingURL=comparers.d.ts.map | ||
//# sourceMappingURL=comparers.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Equals = exports.Comparers = void 0; | ||
var Comparers = (function () { | ||
@@ -4,0 +5,0 @@ function Comparers() { |
@@ -8,2 +8,2 @@ export declare class DataTransferUtils { | ||
} | ||
//# sourceMappingURL=data-transfer.d.ts.map | ||
//# sourceMappingURL=data-transfer.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.DataTransferUtils = void 0; | ||
var browser_1 = require("../browser"); | ||
@@ -4,0 +5,0 @@ var DataTransferUtils = (function () { |
@@ -41,2 +41,2 @@ import { IPoint, IRectangle, ISize } from '../geometry/interfaces'; | ||
} | ||
//# sourceMappingURL=dom.d.ts.map | ||
//# sourceMappingURL=dom.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.DomUtils = void 0; | ||
var browser_1 = require("../browser"); | ||
@@ -4,0 +5,0 @@ var common_1 = require("./common"); |
@@ -8,2 +8,2 @@ export declare class EncodeUtils { | ||
} | ||
//# sourceMappingURL=encode.d.ts.map | ||
//# sourceMappingURL=encode.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.EncodeUtils = void 0; | ||
var EncodeUtils = (function () { | ||
@@ -4,0 +5,0 @@ function EncodeUtils() { |
@@ -5,2 +5,2 @@ export declare class EnumUtils { | ||
} | ||
//# sourceMappingURL=enum.d.ts.map | ||
//# sourceMappingURL=enum.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.EnumUtils = void 0; | ||
var EnumUtils = (function () { | ||
@@ -4,0 +5,0 @@ function EnumUtils() { |
@@ -17,2 +17,2 @@ export declare class EvtUtils { | ||
} | ||
//# sourceMappingURL=evt.d.ts.map | ||
//# sourceMappingURL=evt.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.EvtUtils = void 0; | ||
var browser_1 = require("../browser"); | ||
@@ -4,0 +5,0 @@ var common_1 = require("./common"); |
@@ -9,2 +9,2 @@ export declare class FileUtils { | ||
} | ||
//# sourceMappingURL=file.d.ts.map | ||
//# sourceMappingURL=file.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.FileUtils = void 0; | ||
var browser_1 = require("../browser"); | ||
@@ -4,0 +5,0 @@ var base64_1 = require("./base64"); |
@@ -20,2 +20,2 @@ export interface IFontFaceDescriptors { | ||
export declare function checkFont(fontFamily: IFontFace, text?: string): boolean; | ||
//# sourceMappingURL=fonts.d.ts.map | ||
//# sourceMappingURL=fonts.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.checkFont = exports.addFontToDocument = exports.loadFont = exports.afterFontsLoaded = exports.fontWebApiAvailable = void 0; | ||
function fontWebApiAvailable() { | ||
@@ -4,0 +5,0 @@ return document.fonts && document.fonts.ready && document.fonts.ready.then; |
export declare class JsonUtils { | ||
static isValid(json: string): boolean; | ||
} | ||
//# sourceMappingURL=json.d.ts.map | ||
//# sourceMappingURL=json.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.JsonUtils = void 0; | ||
var JsonUtils = (function () { | ||
@@ -4,0 +5,0 @@ function JsonUtils() { |
@@ -112,2 +112,2 @@ export declare class KeyUtils { | ||
} | ||
//# sourceMappingURL=key.d.ts.map | ||
//# sourceMappingURL=key.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.KeyCode = exports.ModifierKey = exports.KeyUtils = void 0; | ||
var browser_1 = require("../browser"); | ||
@@ -4,0 +5,0 @@ var encode_1 = require("./encode"); |
@@ -58,2 +58,2 @@ import { ExtendedMin, ExtendedMinMax, MinMax, ExtendedMax } from '../class/min-max'; | ||
} | ||
//# sourceMappingURL=list.d.ts.map | ||
//# sourceMappingURL=list.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ListUtils = void 0; | ||
var min_max_1 = require("../class/min-max"); | ||
@@ -4,0 +5,0 @@ var comparers_1 = require("./comparers"); |
@@ -30,2 +30,2 @@ import { CmpFunc, ICloneable } from '../../types'; | ||
} | ||
//# sourceMappingURL=number.d.ts.map | ||
//# sourceMappingURL=number.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.NumberMapUtils = void 0; | ||
var constants_1 = require("../../constants"); | ||
@@ -4,0 +5,0 @@ var min_max_1 = require("../../class/min-max"); |
@@ -30,2 +30,2 @@ import { ExtendedMax, ExtendedMin, ExtendedMinMax, MinMax } from '../../class/min-max'; | ||
} | ||
//# sourceMappingURL=string.d.ts.map | ||
//# sourceMappingURL=string.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.StringMapUtils = void 0; | ||
var min_max_1 = require("../../class/min-max"); | ||
@@ -4,0 +5,0 @@ var constants_1 = require("../../constants"); |
@@ -10,2 +10,2 @@ export declare class MathUtils { | ||
} | ||
//# sourceMappingURL=math.d.ts.map | ||
//# sourceMappingURL=math.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.MathUtils = void 0; | ||
var list_1 = require("./list"); | ||
@@ -4,0 +5,0 @@ var MathUtils = (function () { |
@@ -41,2 +41,2 @@ export declare const OpenXmlMimeType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; | ||
} | ||
//# sourceMappingURL=mime-type.d.ts.map | ||
//# sourceMappingURL=mime-type.d.ts.map |
"use strict"; | ||
var _a, _b, _c; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.MimeTypeUtils = exports.DxMimeType = exports.ImageWebpMimeType = exports.ImageWbmpMimeType = exports.ImageIcoMimeType = exports.ImageTiffMimeType = exports.ImageSvgMimeType = exports.ImagePjpegMimeType = exports.ImageJpegMimeType = exports.ImageGifMimeType = exports.ImagePngMimeType = exports.DocmMimeType = exports.PlainTextMimeType = exports.RtfMimeType = exports.OpenXmlMimeType = void 0; | ||
exports.OpenXmlMimeType = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'; | ||
@@ -5,0 +6,0 @@ exports.RtfMimeType = 'application/rtf'; |
export declare class PopupUtils { | ||
static preventContextMenu(evt: MouseEvent): void; | ||
} | ||
//# sourceMappingURL=popup.d.ts.map | ||
//# sourceMappingURL=popup.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.PopupUtils = void 0; | ||
var browser_1 = require("../browser"); | ||
@@ -4,0 +5,0 @@ var PopupUtils = (function () { |
@@ -7,2 +7,2 @@ export declare class SearchUtils { | ||
} | ||
//# sourceMappingURL=search.d.ts.map | ||
//# sourceMappingURL=search.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SearchUtils = void 0; | ||
var SearchUtils = (function () { | ||
@@ -4,0 +5,0 @@ function SearchUtils() { |
@@ -20,2 +20,2 @@ export declare class StringUtils { | ||
} | ||
//# sourceMappingURL=string.d.ts.map | ||
//# sourceMappingURL=string.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.StringUtils = void 0; | ||
var StringUtils = (function () { | ||
@@ -4,0 +5,0 @@ function StringUtils() { |
@@ -14,2 +14,2 @@ export declare class TouchUtils { | ||
} | ||
//# sourceMappingURL=touch.d.ts.map | ||
//# sourceMappingURL=touch.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.TouchUtils = void 0; | ||
var browser_1 = require("../browser"); | ||
@@ -4,0 +5,0 @@ var common_1 = require("./common"); |
@@ -9,2 +9,2 @@ export declare class Url { | ||
} | ||
//# sourceMappingURL=url.d.ts.map | ||
//# sourceMappingURL=url.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Url = void 0; | ||
var browser_1 = require("../browser"); | ||
@@ -4,0 +5,0 @@ var common_1 = require("./common"); |
{ | ||
"name": "@devexpress/utils", | ||
"version": "1.3.16", | ||
"version": "1.4.0", | ||
"description": "DevExpress utils", | ||
@@ -11,3 +11,3 @@ "author": "DevExpress Inc.", | ||
"dependencies": { | ||
"tslib": "2.0.1" | ||
"tslib": "2.3.1" | ||
}, | ||
@@ -14,0 +14,0 @@ "repository": { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
841112
1.47%17018
0.63%+ Added
- Removed
Updated