new license file version [CI SKIP]
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
}
|
||||
return function (d, b) {
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var Subscriber_1 = require("../Subscriber");
|
||||
var EmptyError_1 = require("../util/EmptyError");
|
||||
function single(predicate) {
|
||||
return function (source) { return source.lift(new SingleOperator(predicate, source)); };
|
||||
}
|
||||
exports.single = single;
|
||||
var SingleOperator = (function () {
|
||||
function SingleOperator(predicate, source) {
|
||||
this.predicate = predicate;
|
||||
this.source = source;
|
||||
}
|
||||
SingleOperator.prototype.call = function (subscriber, source) {
|
||||
return source.subscribe(new SingleSubscriber(subscriber, this.predicate, this.source));
|
||||
};
|
||||
return SingleOperator;
|
||||
}());
|
||||
var SingleSubscriber = (function (_super) {
|
||||
__extends(SingleSubscriber, _super);
|
||||
function SingleSubscriber(destination, predicate, source) {
|
||||
var _this = _super.call(this, destination) || this;
|
||||
_this.predicate = predicate;
|
||||
_this.source = source;
|
||||
_this.seenValue = false;
|
||||
_this.index = 0;
|
||||
return _this;
|
||||
}
|
||||
SingleSubscriber.prototype.applySingleValue = function (value) {
|
||||
if (this.seenValue) {
|
||||
this.destination.error('Sequence contains more than one element');
|
||||
}
|
||||
else {
|
||||
this.seenValue = true;
|
||||
this.singleValue = value;
|
||||
}
|
||||
};
|
||||
SingleSubscriber.prototype._next = function (value) {
|
||||
var index = this.index++;
|
||||
if (this.predicate) {
|
||||
this.tryNext(value, index);
|
||||
}
|
||||
else {
|
||||
this.applySingleValue(value);
|
||||
}
|
||||
};
|
||||
SingleSubscriber.prototype.tryNext = function (value, index) {
|
||||
try {
|
||||
if (this.predicate(value, index, this.source)) {
|
||||
this.applySingleValue(value);
|
||||
}
|
||||
}
|
||||
catch (err) {
|
||||
this.destination.error(err);
|
||||
}
|
||||
};
|
||||
SingleSubscriber.prototype._complete = function () {
|
||||
var destination = this.destination;
|
||||
if (this.index > 0) {
|
||||
destination.next(this.seenValue ? this.singleValue : undefined);
|
||||
destination.complete();
|
||||
}
|
||||
else {
|
||||
destination.error(new EmptyError_1.EmptyError);
|
||||
}
|
||||
};
|
||||
return SingleSubscriber;
|
||||
}(Subscriber_1.Subscriber));
|
||||
//# sourceMappingURL=single.js.map
|
||||
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var concat_1 = require("../observable/concat");
|
||||
var isScheduler_1 = require("../util/isScheduler");
|
||||
function startWith() {
|
||||
var array = [];
|
||||
for (var _i = 0; _i < arguments.length; _i++) {
|
||||
array[_i] = arguments[_i];
|
||||
}
|
||||
var scheduler = array[array.length - 1];
|
||||
if (isScheduler_1.isScheduler(scheduler)) {
|
||||
array.pop();
|
||||
return function (source) { return concat_1.concat(array, source, scheduler); };
|
||||
}
|
||||
else {
|
||||
return function (source) { return concat_1.concat(array, source); };
|
||||
}
|
||||
}
|
||||
exports.startWith = startWith;
|
||||
//# sourceMappingURL=startWith.js.map
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"svelte-i18n","version":"3.3.9","files":{"LICENSE":{"checkedAt":1678887830401,"integrity":"sha512-OpTwmeL85QpqfLNhGUD9NwIK2lHwSc2ETUyqW7jFhSPLIxO6GNSR6CpiK/DN00ngLNKPP84n5Ah2N0pS1ycvuQ==","mode":420,"size":1086},"dist/cli.js":{"checkedAt":1678887830397,"integrity":"sha512-krz7zAUIvj1zo3VOBKTbeiYie7zk5NtobzIE2mfdeTx7x5jyutokKbr/QNT70S0fz7MSlzPJ7+wwLxPaNBVkjw==","mode":493,"size":12290},"dist/runtime.esm.js":{"checkedAt":1678887830401,"integrity":"sha512-72XXcyi8Vl0sdgUVorBWK3NyNEfsWqQuRrlaRdJ3hPeUJfweGVqIdBlNSwjXlilMvXAUSBFFvPM5DQkTExNRWw==","mode":420,"size":7780},"dist/runtime.cjs.js":{"checkedAt":1678887830401,"integrity":"sha512-r52agnCNXaF7+VM3Ix87iOAyIrYounr35E3IxGx+ISsuR1xBF4SizhUza0m2OzDNAIqbn3vDA6fPZdfao6Warw==","mode":420,"size":8078},"package.json":{"checkedAt":1678887830404,"integrity":"sha512-opkg0cIe9oLMVfa5QUpHBcIElBkYX3IhjPRHBpfxO7Rd5v2d+jBWhJ1IDeGw15vdH181Rv2xBGe9fP+yiPgSKA==","mode":420,"size":2978},"README.md":{"checkedAt":1678887830406,"integrity":"sha512-XeaHBo3wE+9OeGdXkNNb9c5T7xQT4UE3SG50jtIyOzB1+z7WC5WcqhsUTQppuUf+xvqlJzv76KHfDn5awR9OQw==","mode":420,"size":1367},"types/runtime/configs.d.ts":{"checkedAt":1678887830406,"integrity":"sha512-AVhJvp4H5Hy3/V7MuXakACSDh8KEmtYXCW66VYAw0hmjxcGL0KZadCCStlGTJiB9AhlXsTA+kWHgagAYaMeWSQ==","mode":420,"size":394},"types/shared/delve.d.ts":{"checkedAt":1678887830406,"integrity":"sha512-tKwqPwgm0JX1frBTFFu1PwEvwMSBrgkMSi+87nQ99rnJIJ/JmHk4LzA/DLNW6Y/1Hz+qbv7zYDzXAiLBM+6J4Q==","mode":420,"size":83},"types/runtime/stores/dictionary.d.ts":{"checkedAt":1678887830406,"integrity":"sha512-LEwGLJ/Dbr4uGoaqchyELHyY1Q5D+Hi5nYrcHNHasx2gNgmrA5huL/wN1526lYsAREsM2AM72MVQiXvCOxE0QQ==","mode":420,"size":724},"types/runtime/includes/formatters.d.ts":{"checkedAt":1678887830406,"integrity":"sha512-3ZPdCy9Jp9sRzK9gxfYAH5eOtUrucQXXvzq+MEA303zFwKbCorHGHyLZ8NJRp2ePtnd9vx/BIXhAGnbqlpPvew==","mode":420,"size":670},"types/runtime/stores/formatters.d.ts":{"checkedAt":1678887830406,"integrity":"sha512-zbGxeJ8H5Ag7GZr5UA8awo6Vu+vGtEbT73uAyfO1sfqhO79eBHWROIFfqRXVTAIdnaZsLZGCmtwTFbQVNAg/kQ==","mode":420,"size":516},"types/runtime/index.d.ts":{"checkedAt":1678887830406,"integrity":"sha512-XkvZ9lcON3D0/LckFBjSQVZRRJJzA87PhA5mKBfvUq+2Y60X7knhMQcBtRCh2kj9xxZ7A/zz/c6QeHUm5CXgJA==","mode":420,"size":1334},"CHANGELOG.md":{"checkedAt":1678887830406,"integrity":"sha512-pvzb6kovyXwmkKdldr+cLvOzc50m1HqmDhd2ktK99EnNSr2B1Y5sSaBN/iW96ZzbdRmjdDGZkkIg22zIzLsqLQ==","mode":420,"size":14484},"types/runtime/types/index.d.ts":{"checkedAt":1678887830407,"integrity":"sha512-P0NoHENv0WynXEWbcrY86U5goaVI4oKoKU0u2VXKoYkzhq1NDISlSS4ipbCvwyJw3qgORWG8rRLQdlDTsYkaog==","mode":420,"size":1589},"types/runtime/stores/loading.d.ts":{"checkedAt":1678887830411,"integrity":"sha512-Uw1Wuu4kSsILQUzW+YqoTHmrELC5n2hEd/WTp6lcgLg8WjME+wPeF3TmooCiIvMG1VBYxMEHsqrl5eBZKMPXHw==","mode":420,"size":75},"types/runtime/includes/localeGetters.d.ts":{"checkedAt":1678887830411,"integrity":"sha512-VWIYHTliQZOtvs29tHWUdTb7MzV4O5MYEGBVLhrzydIt0aRQSj07B5ibBQcHhlpOwo225eWdaBp7EkckvUdAzg==","mode":420,"size":348},"types/runtime/stores/locale.d.ts":{"checkedAt":1678887830411,"integrity":"sha512-IknMVUuxUMbmpiHWNpwr+vJID7JKX3ZDI4HMcokawgBAVWB4Kf+Qv1DNEA2C77O3AVBQ1zflLRKbPdAuGC1cxA==","mode":420,"size":231},"types/runtime/includes/loaderQueue.d.ts":{"checkedAt":1678887830411,"integrity":"sha512-QzjZe2T7MkQVQWQUZ77ecKvxAeoR5kjvF5tQEHBDLAxbAGzkQDyywJY0EXmi+lXv9kvo93TDgZS8Apuz8yx3qg==","mode":420,"size":312},"types/runtime/includes/lookup.d.ts":{"checkedAt":1678887830411,"integrity":"sha512-UK+zRsSoNp4lEPJJkZVZ684zfoyNDXO5anASbFNINF7tZtUFyYi1MviaJQDmvgOVNuHR7qjigIptnXXcsqhQaw==","mode":420,"size":175},"types/runtime/includes/memoize.d.ts":{"checkedAt":1678887830411,"integrity":"sha512-cCMT+O+xUuVnRJB8yhoeSoV9H1r2VhUQziVi6i7Rgbf6Gbsc8aYFenFCzLjLwAj+QbBOkoVSMRBWCvOFyXr4YQ==","mode":420,"size":141}}}
|
||||
@@ -0,0 +1,5 @@
|
||||
import { RetryFunction } from '.';
|
||||
declare type Returns<T extends (...args: any) => unknown, V> = (...args: Parameters<T>) => V;
|
||||
export declare const retryAfterStatusCodes: ReadonlySet<number>;
|
||||
declare const calculateRetryDelay: Returns<RetryFunction, number>;
|
||||
export default calculateRetryDelay;
|
||||
@@ -0,0 +1 @@
|
||||
export * from 'rxjs-compat/operators/sequenceEqual';
|
||||
@@ -0,0 +1,7 @@
|
||||
"use strict";
|
||||
function __export(m) {
|
||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
||||
}
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__export(require("rxjs-compat/observable/RangeObservable"));
|
||||
//# sourceMappingURL=RangeObservable.js.map
|
||||
@@ -0,0 +1 @@
|
||||
module.exports={A:{A:{"2":"J E F G A B BC"},B:{"1":"P Q R S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 CC tB I u J E F G A B C K L H M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t xB yB DC EC"},D:{"1":"eB fB gB hB iB jB kB e lB mB nB oB pB P Q R S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t xB yB FC","2":"0 1 2 3 4 5 6 7 8 9 I u J E F G A B C K L H M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB"},E:{"2":"I u J E F G A B C K L H GC zB HC IC JC KC 0B qB rB 1B LC MC 2B 3B 4B 5B sB 6B 7B 8B NC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB OC PC QC RC qB 9B SC rB"},G:{"2":"F zB TC AC UC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC 2B 3B 4B 5B sB 6B 7B 8B"},H:{"2":"nC"},I:{"1":"D","2":"tB I oC pC qC rC AC sC tC"},J:{"2":"E A"},K:{"1":"e","2":"A B C qB 9B rB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"uC"},P:{"1":"zC 0B 0C 1C 2C 3C 4C sB 5C 6C 7C","2":"I vC wC xC yC"},Q:{"1":"1B"},R:{"1":"8C"},S:{"2":"9C"}},B:1,C:"Resource Hints: modulepreload"};
|
||||
@@ -0,0 +1,21 @@
|
||||
/** PURE_IMPORTS_START tslib,_Subscriber PURE_IMPORTS_END */
|
||||
import * as tslib_1 from "tslib";
|
||||
import { Subscriber } from './Subscriber';
|
||||
var OuterSubscriber = /*@__PURE__*/ (function (_super) {
|
||||
tslib_1.__extends(OuterSubscriber, _super);
|
||||
function OuterSubscriber() {
|
||||
return _super !== null && _super.apply(this, arguments) || this;
|
||||
}
|
||||
OuterSubscriber.prototype.notifyNext = function (outerValue, innerValue, outerIndex, innerIndex, innerSub) {
|
||||
this.destination.next(innerValue);
|
||||
};
|
||||
OuterSubscriber.prototype.notifyError = function (error, innerSub) {
|
||||
this.destination.error(error);
|
||||
};
|
||||
OuterSubscriber.prototype.notifyComplete = function (innerSub) {
|
||||
this.destination.complete();
|
||||
};
|
||||
return OuterSubscriber;
|
||||
}(Subscriber));
|
||||
export { OuterSubscriber };
|
||||
//# sourceMappingURL=OuterSubscriber.js.map
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"skip.js","sources":["../src/operator/skip.ts"],"names":[],"mappings":";;;;;AAAA,+CAA0C"}
|
||||
@@ -0,0 +1,56 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
}
|
||||
return function (d, b) {
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var Observable_1 = require("../Observable");
|
||||
var asap_1 = require("../scheduler/asap");
|
||||
var isNumeric_1 = require("../util/isNumeric");
|
||||
var SubscribeOnObservable = (function (_super) {
|
||||
__extends(SubscribeOnObservable, _super);
|
||||
function SubscribeOnObservable(source, delayTime, scheduler) {
|
||||
if (delayTime === void 0) { delayTime = 0; }
|
||||
if (scheduler === void 0) { scheduler = asap_1.asap; }
|
||||
var _this = _super.call(this) || this;
|
||||
_this.source = source;
|
||||
_this.delayTime = delayTime;
|
||||
_this.scheduler = scheduler;
|
||||
if (!isNumeric_1.isNumeric(delayTime) || delayTime < 0) {
|
||||
_this.delayTime = 0;
|
||||
}
|
||||
if (!scheduler || typeof scheduler.schedule !== 'function') {
|
||||
_this.scheduler = asap_1.asap;
|
||||
}
|
||||
return _this;
|
||||
}
|
||||
SubscribeOnObservable.create = function (source, delay, scheduler) {
|
||||
if (delay === void 0) { delay = 0; }
|
||||
if (scheduler === void 0) { scheduler = asap_1.asap; }
|
||||
return new SubscribeOnObservable(source, delay, scheduler);
|
||||
};
|
||||
SubscribeOnObservable.dispatch = function (arg) {
|
||||
var source = arg.source, subscriber = arg.subscriber;
|
||||
return this.add(source.subscribe(subscriber));
|
||||
};
|
||||
SubscribeOnObservable.prototype._subscribe = function (subscriber) {
|
||||
var delay = this.delayTime;
|
||||
var source = this.source;
|
||||
var scheduler = this.scheduler;
|
||||
return scheduler.schedule(SubscribeOnObservable.dispatch, delay, {
|
||||
source: source, subscriber: subscriber
|
||||
});
|
||||
};
|
||||
return SubscribeOnObservable;
|
||||
}(Observable_1.Observable));
|
||||
exports.SubscribeOnObservable = SubscribeOnObservable;
|
||||
//# sourceMappingURL=SubscribeOnObservable.js.map
|
||||
@@ -0,0 +1,10 @@
|
||||
import TemplateScope from './shared/TemplateScope';
|
||||
import AbstractBlock from './shared/AbstractBlock';
|
||||
import AwaitBlock from './AwaitBlock';
|
||||
import Component from '../Component';
|
||||
import { TemplateNode } from '../../interfaces';
|
||||
export default class CatchBlock extends AbstractBlock {
|
||||
type: 'CatchBlock';
|
||||
scope: TemplateScope;
|
||||
constructor(component: Component, parent: AwaitBlock, scope: TemplateScope, info: TemplateNode);
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.06556,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.9027,"103":0,"104":0,"105":0,"106":0,"107":0.13616,"108":0.76654,"109":4.80598,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.04539,"107":0,"108":1.53307,"109":2.07267,"110":0.02017,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.18155,"94":0.02017,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.13616,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.02017,"106":0,"107":0.09077,"108":11.77541,"109":0.5396},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.09077,"15":0.02017,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02017,"14.1":0,"15.1":0.31771,"15.2-15.3":0.33788,"15.4":0.04539,"15.5":0,"15.6":0.11095,"16.0":0,"16.1":0.09077,"16.2":0.40848,"16.3":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0.25291,"12.0-12.1":0,"12.2-12.5":0.25291,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.12645,"14.5-14.8":1.39229,"15.0-15.1":0.69615,"15.2-15.3":1.07551,"15.4":0.19033,"15.5":0.44324,"15.6":0.37936,"16.0":2.34134,"16.1":3.60718,"16.2":1.51875,"16.3":0.19033},P:{"4":0.09142,"5.0-5.4":0.13206,"6.2-6.4":0,"7.2-7.4":0.18285,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.09142,"15.0":0,"16.0":0,"17.0":0,"18.0":0.09142,"19.0":2.09257},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.02017},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.22802},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":57.71032}};
|
||||
@@ -0,0 +1 @@
|
||||
module.exports={A:{A:{"2":"J E F G A B BC"},B:{"1":"P Q R S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t","36":"C K L H M N O"},C:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t xB yB","2":"CC tB I u J E F G A B C K L H M N O DC EC","33":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t xB yB FC","36":"0 1 2 3 4 5 6 7 8 9 I u J E F G A B C K L H M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"B C K L H 0B qB rB 1B LC MC 2B 3B 4B 5B sB 6B 7B 8B NC","2":"I GC zB","36":"u J E F G A HC IC JC KC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d","2":"G B C OC PC QC RC qB 9B SC rB","36":"0 1 2 3 4 5 6 7 8 9 H M N O v w x y z AB BB CB DB EB FB GB HB IB JB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC 2B 3B 4B 5B sB 6B 7B 8B","2":"zB TC","36":"F AC UC VC WC XC YC ZC aC"},H:{"2":"nC"},I:{"1":"D","36":"tB I oC pC qC rC AC sC tC"},J:{"36":"E A"},K:{"1":"e","2":"A B C qB 9B rB"},L:{"1":"D"},M:{"1":"D"},N:{"36":"A B"},O:{"1":"uC"},P:{"1":"xC yC zC 0B 0C 1C 2C 3C 4C sB 5C 6C 7C","36":"I vC wC"},Q:{"1":"1B"},R:{"1":"8C"},S:{"33":"9C"}},B:5,C:"::placeholder CSS pseudo-element"};
|
||||
@@ -0,0 +1 @@
|
||||
import 'rxjs-compat/add/observable/of';
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"throttle.js","sources":["../../../src/internal/operators/throttle.ts"],"names":[],"mappings":"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"}
|
||||
@@ -0,0 +1,57 @@
|
||||
/** PURE_IMPORTS_START tslib,_Subscriber PURE_IMPORTS_END */
|
||||
import * as tslib_1 from "tslib";
|
||||
import { Subscriber } from '../Subscriber';
|
||||
export function takeWhile(predicate, inclusive) {
|
||||
if (inclusive === void 0) {
|
||||
inclusive = false;
|
||||
}
|
||||
return function (source) {
|
||||
return source.lift(new TakeWhileOperator(predicate, inclusive));
|
||||
};
|
||||
}
|
||||
var TakeWhileOperator = /*@__PURE__*/ (function () {
|
||||
function TakeWhileOperator(predicate, inclusive) {
|
||||
this.predicate = predicate;
|
||||
this.inclusive = inclusive;
|
||||
}
|
||||
TakeWhileOperator.prototype.call = function (subscriber, source) {
|
||||
return source.subscribe(new TakeWhileSubscriber(subscriber, this.predicate, this.inclusive));
|
||||
};
|
||||
return TakeWhileOperator;
|
||||
}());
|
||||
var TakeWhileSubscriber = /*@__PURE__*/ (function (_super) {
|
||||
tslib_1.__extends(TakeWhileSubscriber, _super);
|
||||
function TakeWhileSubscriber(destination, predicate, inclusive) {
|
||||
var _this = _super.call(this, destination) || this;
|
||||
_this.predicate = predicate;
|
||||
_this.inclusive = inclusive;
|
||||
_this.index = 0;
|
||||
return _this;
|
||||
}
|
||||
TakeWhileSubscriber.prototype._next = function (value) {
|
||||
var destination = this.destination;
|
||||
var result;
|
||||
try {
|
||||
result = this.predicate(value, this.index++);
|
||||
}
|
||||
catch (err) {
|
||||
destination.error(err);
|
||||
return;
|
||||
}
|
||||
this.nextOrComplete(value, result);
|
||||
};
|
||||
TakeWhileSubscriber.prototype.nextOrComplete = function (value, predicateResult) {
|
||||
var destination = this.destination;
|
||||
if (Boolean(predicateResult)) {
|
||||
destination.next(value);
|
||||
}
|
||||
else {
|
||||
if (this.inclusive) {
|
||||
destination.next(value);
|
||||
}
|
||||
destination.complete();
|
||||
}
|
||||
};
|
||||
return TakeWhileSubscriber;
|
||||
}(Subscriber));
|
||||
//# sourceMappingURL=takeWhile.js.map
|
||||
@@ -0,0 +1,844 @@
|
||||
/* index.d.ts (C) 2015-present SheetJS and contributors */
|
||||
// TypeScript Version: 2.2
|
||||
import * as CFB from "cfb";
|
||||
import * as SSF from "ssf";
|
||||
|
||||
/** Version string */
|
||||
export const version: string;
|
||||
|
||||
/** SSF Formatter Library */
|
||||
export { SSF };
|
||||
|
||||
/** CFB Library */
|
||||
export { CFB };
|
||||
|
||||
/** NODE ONLY! Attempts to read filename and parse */
|
||||
export function readFile(filename: string, opts?: ParsingOptions): WorkBook;
|
||||
/** Attempts to parse data */
|
||||
export function read(data: any, opts?: ParsingOptions): WorkBook;
|
||||
/** Attempts to write or download workbook data to file */
|
||||
export function writeFile(data: WorkBook, filename: string, opts?: WritingOptions): any;
|
||||
/** Attempts to write the workbook data */
|
||||
export function write(data: WorkBook, opts?: WritingOptions): any;
|
||||
|
||||
/** Utility Functions */
|
||||
export const utils: XLSX$Utils;
|
||||
/** Stream Utility Functions */
|
||||
export const stream: StreamUtils;
|
||||
|
||||
/** Number Format (either a string or an index to the format table) */
|
||||
export type NumberFormat = string | number;
|
||||
|
||||
/** Worksheet specifier (string, number, worksheet) */
|
||||
export type WSSpec = string | number | WorkSheet;
|
||||
|
||||
/** Range specifier (string or range or cell), single-cell lifted to range */
|
||||
export type RangeSpec = string | Range | CellAddress;
|
||||
|
||||
/** Basic File Properties */
|
||||
export interface Properties {
|
||||
/** Summary tab "Title" */
|
||||
Title?: string;
|
||||
/** Summary tab "Subject" */
|
||||
Subject?: string;
|
||||
/** Summary tab "Author" */
|
||||
Author?: string;
|
||||
/** Summary tab "Manager" */
|
||||
Manager?: string;
|
||||
/** Summary tab "Company" */
|
||||
Company?: string;
|
||||
/** Summary tab "Category" */
|
||||
Category?: string;
|
||||
/** Summary tab "Keywords" */
|
||||
Keywords?: string;
|
||||
/** Summary tab "Comments" */
|
||||
Comments?: string;
|
||||
/** Statistics tab "Last saved by" */
|
||||
LastAuthor?: string;
|
||||
/** Statistics tab "Created" */
|
||||
CreatedDate?: Date;
|
||||
}
|
||||
|
||||
/** Other supported properties */
|
||||
export interface FullProperties extends Properties {
|
||||
ModifiedDate?: Date;
|
||||
Application?: string;
|
||||
AppVersion?: string;
|
||||
DocSecurity?: string;
|
||||
HyperlinksChanged?: boolean;
|
||||
SharedDoc?: boolean;
|
||||
LinksUpToDate?: boolean;
|
||||
ScaleCrop?: boolean;
|
||||
Worksheets?: number;
|
||||
SheetNames?: string[];
|
||||
ContentStatus?: string;
|
||||
LastPrinted?: string;
|
||||
Revision?: string | number;
|
||||
Version?: string;
|
||||
Identifier?: string;
|
||||
Language?: string;
|
||||
}
|
||||
|
||||
export interface CommonOptions {
|
||||
/**
|
||||
* If true, throw errors when features are not understood
|
||||
* @default false
|
||||
*/
|
||||
WTF?: boolean;
|
||||
|
||||
/**
|
||||
* When reading a file with VBA macros, expose CFB blob to `vbaraw` field
|
||||
* When writing BIFF8/XLSB/XLSM, reseat `vbaraw` and export to file
|
||||
* @default false
|
||||
*/
|
||||
bookVBA?: boolean;
|
||||
|
||||
/**
|
||||
* When reading a file, store dates as type d (default is n)
|
||||
* When writing XLSX/XLSM file, use native date (default uses date codes)
|
||||
* @default false
|
||||
*/
|
||||
cellDates?: boolean;
|
||||
|
||||
/**
|
||||
* Create cell objects for stub cells
|
||||
* @default false
|
||||
*/
|
||||
sheetStubs?: boolean;
|
||||
|
||||
/**
|
||||
* When reading a file, save style/theme info to the .s field
|
||||
* When writing a file, export style/theme info
|
||||
* @default false
|
||||
*/
|
||||
cellStyles?: boolean;
|
||||
|
||||
/**
|
||||
* If defined and file is encrypted, use password
|
||||
* @default ''
|
||||
*/
|
||||
password?: string;
|
||||
}
|
||||
|
||||
export interface DateNFOption {
|
||||
/** Use specified date format */
|
||||
dateNF?: NumberFormat;
|
||||
}
|
||||
|
||||
/** Options for read and readFile */
|
||||
export interface ParsingOptions extends CommonOptions {
|
||||
/** Input data encoding */
|
||||
type?: 'base64' | 'binary' | 'buffer' | 'file' | 'array' | 'string';
|
||||
|
||||
/** Default codepage */
|
||||
codepage?: number;
|
||||
|
||||
/**
|
||||
* Save formulae to the .f field
|
||||
* @default true
|
||||
*/
|
||||
cellFormula?: boolean;
|
||||
|
||||
/**
|
||||
* Parse rich text and save HTML to the .h field
|
||||
* @default true
|
||||
*/
|
||||
cellHTML?: boolean;
|
||||
|
||||
/**
|
||||
* Save number format string to the .z field
|
||||
* @default false
|
||||
*/
|
||||
cellNF?: boolean;
|
||||
|
||||
/**
|
||||
* Generate formatted text to the .w field
|
||||
* @default true
|
||||
*/
|
||||
cellText?: boolean;
|
||||
|
||||
/** Override default date format (code 14) */
|
||||
dateNF?: string;
|
||||
|
||||
/**
|
||||
* If >0, read the first sheetRows rows
|
||||
* @default 0
|
||||
*/
|
||||
sheetRows?: number;
|
||||
|
||||
/**
|
||||
* If true, parse calculation chains
|
||||
* @default false
|
||||
*/
|
||||
bookDeps?: boolean;
|
||||
|
||||
/**
|
||||
* If true, add raw files to book object
|
||||
* @default false
|
||||
*/
|
||||
bookFiles?: boolean;
|
||||
|
||||
/**
|
||||
* If true, only parse enough to get book metadata
|
||||
* @default false
|
||||
*/
|
||||
bookProps?: boolean;
|
||||
|
||||
/**
|
||||
* If true, only parse enough to get the sheet names
|
||||
* @default false
|
||||
*/
|
||||
bookSheets?: boolean;
|
||||
|
||||
/** If specified, only parse the specified sheets or sheet names */
|
||||
sheets?: number | string | Array<number | string>;
|
||||
|
||||
/** If true, plaintext parsing will not parse values */
|
||||
raw?: boolean;
|
||||
|
||||
dense?: boolean;
|
||||
}
|
||||
|
||||
/** Options for write and writeFile */
|
||||
export interface WritingOptions extends CommonOptions {
|
||||
/** Output data encoding */
|
||||
type?: 'base64' | 'binary' | 'buffer' | 'file' | 'array' | 'string';
|
||||
|
||||
/**
|
||||
* Generate Shared String Table
|
||||
* @default false
|
||||
*/
|
||||
bookSST?: boolean;
|
||||
|
||||
/**
|
||||
* File format of generated workbook
|
||||
* @default 'xlsx'
|
||||
*/
|
||||
bookType?: BookType;
|
||||
|
||||
/**
|
||||
* Name of Worksheet (for single-sheet formats)
|
||||
* @default ''
|
||||
*/
|
||||
sheet?: string;
|
||||
|
||||
/**
|
||||
* Use ZIP compression for ZIP-based formats
|
||||
* @default false
|
||||
*/
|
||||
compression?: boolean;
|
||||
|
||||
/**
|
||||
* Suppress "number stored as text" errors in generated files
|
||||
* @default true
|
||||
*/
|
||||
ignoreEC?: boolean;
|
||||
|
||||
/** Override workbook properties on save */
|
||||
Props?: Properties;
|
||||
}
|
||||
|
||||
/** Workbook Object */
|
||||
export interface WorkBook {
|
||||
/**
|
||||
* A dictionary of the worksheets in the workbook.
|
||||
* Use SheetNames to reference these.
|
||||
*/
|
||||
Sheets: { [sheet: string]: WorkSheet };
|
||||
|
||||
/** Ordered list of the sheet names in the workbook */
|
||||
SheetNames: string[];
|
||||
|
||||
/** Standard workbook Properties */
|
||||
Props?: FullProperties;
|
||||
|
||||
/** Custom workbook Properties */
|
||||
Custprops?: object;
|
||||
|
||||
Workbook?: WBProps;
|
||||
|
||||
vbaraw?: any;
|
||||
}
|
||||
|
||||
export interface SheetProps {
|
||||
/** Name of Sheet */
|
||||
name?: string;
|
||||
|
||||
/** Sheet Visibility (0=Visible 1=Hidden 2=VeryHidden) */
|
||||
Hidden?: 0 | 1 | 2;
|
||||
|
||||
/** Name of Document Module in associated VBA Project */
|
||||
CodeName?: string;
|
||||
}
|
||||
|
||||
/** Defined Name Object */
|
||||
export interface DefinedName {
|
||||
/** Name */
|
||||
Name: string;
|
||||
|
||||
/** Reference */
|
||||
Ref: string;
|
||||
|
||||
/** Scope (undefined for workbook scope) */
|
||||
Sheet?: number;
|
||||
|
||||
/** Name comment */
|
||||
Comment?: string;
|
||||
}
|
||||
|
||||
/** Workbook-Level Attributes */
|
||||
export interface WBProps {
|
||||
/** Sheet Properties */
|
||||
Sheets?: SheetProps[];
|
||||
|
||||
/** Defined Names */
|
||||
Names?: DefinedName[];
|
||||
|
||||
/** Workbook Views */
|
||||
Views?: WBView[];
|
||||
|
||||
/** Other Workbook Properties */
|
||||
WBProps?: WorkbookProperties;
|
||||
}
|
||||
|
||||
/** Workbook View */
|
||||
export interface WBView {
|
||||
/** Right-to-left mode */
|
||||
RTL?: boolean;
|
||||
}
|
||||
|
||||
/** Other Workbook Properties */
|
||||
export interface WorkbookProperties {
|
||||
/** Worksheet Epoch (1904 if true, 1900 if false) */
|
||||
date1904?: boolean;
|
||||
|
||||
/** Warn or strip personally identifying info on save */
|
||||
filterPrivacy?: boolean;
|
||||
|
||||
/** Name of Document Module in associated VBA Project */
|
||||
CodeName?: string;
|
||||
}
|
||||
|
||||
/** Column Properties Object */
|
||||
export interface ColInfo {
|
||||
/* --- visibility --- */
|
||||
|
||||
/** if true, the column is hidden */
|
||||
hidden?: boolean;
|
||||
|
||||
/* --- column width --- */
|
||||
|
||||
/** width in Excel's "Max Digit Width", width*256 is integral */
|
||||
width?: number;
|
||||
|
||||
/** width in screen pixels */
|
||||
wpx?: number;
|
||||
|
||||
/** width in "characters" */
|
||||
wch?: number;
|
||||
|
||||
/** Excel's "Max Digit Width" unit, always integral */
|
||||
MDW?: number;
|
||||
}
|
||||
|
||||
/** Row Properties Object */
|
||||
export interface RowInfo {
|
||||
/* --- visibility --- */
|
||||
|
||||
/** if true, the column is hidden */
|
||||
hidden?: boolean;
|
||||
|
||||
/* --- row height --- */
|
||||
|
||||
/** height in screen pixels */
|
||||
hpx?: number;
|
||||
|
||||
/** height in points */
|
||||
hpt?: number;
|
||||
|
||||
/** outline / group level */
|
||||
level?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* Write sheet protection properties.
|
||||
*/
|
||||
export interface ProtectInfo {
|
||||
/**
|
||||
* The password for formats that support password-protected sheets
|
||||
* (XLSX/XLSB/XLS). The writer uses the XOR obfuscation method.
|
||||
*/
|
||||
password?: string;
|
||||
/**
|
||||
* Select locked cells
|
||||
* @default: true
|
||||
*/
|
||||
selectLockedCells?: boolean;
|
||||
/**
|
||||
* Select unlocked cells
|
||||
* @default: true
|
||||
*/
|
||||
selectUnlockedCells?: boolean;
|
||||
/**
|
||||
* Format cells
|
||||
* @default: false
|
||||
*/
|
||||
formatCells?: boolean;
|
||||
/**
|
||||
* Format columns
|
||||
* @default: false
|
||||
*/
|
||||
formatColumns?: boolean;
|
||||
/**
|
||||
* Format rows
|
||||
* @default: false
|
||||
*/
|
||||
formatRows?: boolean;
|
||||
/**
|
||||
* Insert columns
|
||||
* @default: false
|
||||
*/
|
||||
insertColumns?: boolean;
|
||||
/**
|
||||
* Insert rows
|
||||
* @default: false
|
||||
*/
|
||||
insertRows?: boolean;
|
||||
/**
|
||||
* Insert hyperlinks
|
||||
* @default: false
|
||||
*/
|
||||
insertHyperlinks?: boolean;
|
||||
/**
|
||||
* Delete columns
|
||||
* @default: false
|
||||
*/
|
||||
deleteColumns?: boolean;
|
||||
/**
|
||||
* Delete rows
|
||||
* @default: false
|
||||
*/
|
||||
deleteRows?: boolean;
|
||||
/**
|
||||
* Sort
|
||||
* @default: false
|
||||
*/
|
||||
sort?: boolean;
|
||||
/**
|
||||
* Filter
|
||||
* @default: false
|
||||
*/
|
||||
autoFilter?: boolean;
|
||||
/**
|
||||
* Use PivotTable reports
|
||||
* @default: false
|
||||
*/
|
||||
pivotTables?: boolean;
|
||||
/**
|
||||
* Edit objects
|
||||
* @default: true
|
||||
*/
|
||||
objects?: boolean;
|
||||
/**
|
||||
* Edit scenarios
|
||||
* @default: true
|
||||
*/
|
||||
scenarios?: boolean;
|
||||
}
|
||||
|
||||
/** Page Margins -- see Excel Page Setup .. Margins diagram for explanation */
|
||||
export interface MarginInfo {
|
||||
/** Left side margin (inches) */
|
||||
left?: number;
|
||||
/** Right side margin (inches) */
|
||||
right?: number;
|
||||
/** Top side margin (inches) */
|
||||
top?: number;
|
||||
/** Bottom side margin (inches) */
|
||||
bottom?: number;
|
||||
/** Header top margin (inches) */
|
||||
header?: number;
|
||||
/** Footer bottom height (inches) */
|
||||
footer?: number;
|
||||
}
|
||||
export type SheetType = 'sheet' | 'chart';
|
||||
export type SheetKeys = string | MarginInfo | SheetType;
|
||||
/** General object representing a Sheet (worksheet or chartsheet) */
|
||||
export interface Sheet {
|
||||
/**
|
||||
* Indexing with a cell address string maps to a cell object
|
||||
* Special keys start with '!'
|
||||
*/
|
||||
[cell: string]: CellObject | SheetKeys | any;
|
||||
|
||||
/** Sheet type */
|
||||
'!type'?: SheetType;
|
||||
|
||||
/** Sheet Range */
|
||||
'!ref'?: string;
|
||||
|
||||
/** Page Margins */
|
||||
'!margins'?: MarginInfo;
|
||||
}
|
||||
|
||||
/** AutoFilter properties */
|
||||
export interface AutoFilterInfo {
|
||||
/** Range of the AutoFilter table */
|
||||
ref: string;
|
||||
}
|
||||
|
||||
export type WSKeys = SheetKeys | ColInfo[] | RowInfo[] | Range[] | ProtectInfo | AutoFilterInfo;
|
||||
|
||||
/** Worksheet Object */
|
||||
export interface WorkSheet extends Sheet {
|
||||
/**
|
||||
* Indexing with a cell address string maps to a cell object
|
||||
* Special keys start with '!'
|
||||
*/
|
||||
[cell: string]: CellObject | WSKeys | any;
|
||||
|
||||
/** Column Info */
|
||||
'!cols'?: ColInfo[];
|
||||
|
||||
/** Row Info */
|
||||
'!rows'?: RowInfo[];
|
||||
|
||||
/** Merge Ranges */
|
||||
'!merges'?: Range[];
|
||||
|
||||
/** Worksheet Protection info */
|
||||
'!protect'?: ProtectInfo;
|
||||
|
||||
/** AutoFilter info */
|
||||
'!autofilter'?: AutoFilterInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Worksheet Object with CellObject type
|
||||
*
|
||||
* The normal Worksheet type uses indexer of type `any` -- this enforces CellObject
|
||||
*/
|
||||
export interface StrictWS { [addr: string]: CellObject; }
|
||||
|
||||
/**
|
||||
* The Excel data type for a cell.
|
||||
* b Boolean, n Number, e error, s String, d Date, z Stub
|
||||
*/
|
||||
export type ExcelDataType = 'b' | 'n' | 'e' | 's' | 'd' | 'z';
|
||||
|
||||
/**
|
||||
* Type of generated workbook
|
||||
* @default 'xlsx'
|
||||
*/
|
||||
export type BookType = 'xlsx' | 'xlsm' | 'xlsb' | 'xls' | 'xla' | 'biff8' | 'biff5' | 'biff2' | 'xlml' | 'ods' | 'fods' | 'csv' | 'txt' | 'sylk' | 'html' | 'dif' | 'rtf' | 'prn' | 'eth';
|
||||
|
||||
/** Comment element */
|
||||
export interface Comment {
|
||||
/** Author of the comment block */
|
||||
a?: string;
|
||||
|
||||
/** Plaintext of the comment */
|
||||
t: string;
|
||||
}
|
||||
|
||||
/** Cell comments */
|
||||
export interface Comments extends Array<Comment> {
|
||||
/** Hide comment by default */
|
||||
hidden?: boolean;
|
||||
}
|
||||
|
||||
/** Link object */
|
||||
export interface Hyperlink {
|
||||
/** Target of the link (HREF) */
|
||||
Target: string;
|
||||
|
||||
/** Plaintext tooltip to display when mouse is over cell */
|
||||
Tooltip?: string;
|
||||
}
|
||||
|
||||
/** Worksheet Cell Object */
|
||||
export interface CellObject {
|
||||
/** The raw value of the cell. Can be omitted if a formula is specified */
|
||||
v?: string | number | boolean | Date;
|
||||
|
||||
/** Formatted text (if applicable) */
|
||||
w?: string;
|
||||
|
||||
/**
|
||||
* The Excel Data Type of the cell.
|
||||
* b Boolean, n Number, e Error, s String, d Date, z Empty
|
||||
*/
|
||||
t: ExcelDataType;
|
||||
|
||||
/** Cell formula (if applicable) */
|
||||
f?: string;
|
||||
|
||||
/** Range of enclosing array if formula is array formula (if applicable) */
|
||||
F?: string;
|
||||
|
||||
/** Rich text encoding (if applicable) */
|
||||
r?: any;
|
||||
|
||||
/** HTML rendering of the rich text (if applicable) */
|
||||
h?: string;
|
||||
|
||||
/** Comments associated with the cell */
|
||||
c?: Comments;
|
||||
|
||||
/** Number format string associated with the cell (if requested) */
|
||||
z?: NumberFormat;
|
||||
|
||||
/** Cell hyperlink object (.Target holds link, .tooltip is tooltip) */
|
||||
l?: Hyperlink;
|
||||
|
||||
/** The style/theme of the cell (if applicable) */
|
||||
s?: any;
|
||||
}
|
||||
|
||||
/** Simple Cell Address */
|
||||
export interface CellAddress {
|
||||
/** Column number */
|
||||
c: number;
|
||||
/** Row number */
|
||||
r: number;
|
||||
}
|
||||
|
||||
/** Range object (representing ranges like "A1:B2") */
|
||||
export interface Range {
|
||||
/** Starting cell */
|
||||
s: CellAddress;
|
||||
/** Ending cell */
|
||||
e: CellAddress;
|
||||
}
|
||||
|
||||
export interface Sheet2CSVOpts extends DateNFOption {
|
||||
/** Field Separator ("delimiter") */
|
||||
FS?: string;
|
||||
|
||||
/** Record Separator ("row separator") */
|
||||
RS?: string;
|
||||
|
||||
/** Remove trailing field separators in each record */
|
||||
strip?: boolean;
|
||||
|
||||
/** Include blank lines in the CSV output */
|
||||
blankrows?: boolean;
|
||||
|
||||
/** Skip hidden rows and columns in the CSV output */
|
||||
skipHidden?: boolean;
|
||||
|
||||
/** Force quotes around fields */
|
||||
forceQuotes?: boolean;
|
||||
|
||||
/** if true, return raw numbers; if false, return formatted numbers */
|
||||
rawNumbers?: boolean;
|
||||
}
|
||||
|
||||
export interface OriginOption {
|
||||
/** Top-Left cell for operation (CellAddress or A1 string or row) */
|
||||
origin?: number | string | CellAddress;
|
||||
}
|
||||
|
||||
export interface Sheet2HTMLOpts {
|
||||
/** TABLE element id attribute */
|
||||
id?: string;
|
||||
|
||||
/** Add contenteditable to every cell */
|
||||
editable?: boolean;
|
||||
|
||||
/** Header HTML */
|
||||
header?: string;
|
||||
|
||||
/** Footer HTML */
|
||||
footer?: string;
|
||||
}
|
||||
|
||||
export interface Sheet2JSONOpts extends DateNFOption {
|
||||
/** Output format */
|
||||
header?: "A"|number|string[];
|
||||
|
||||
/** Override worksheet range */
|
||||
range?: any;
|
||||
|
||||
/** Include or omit blank lines in the output */
|
||||
blankrows?: boolean;
|
||||
|
||||
/** Default value for null/undefined values */
|
||||
defval?: any;
|
||||
|
||||
/** if true, return raw data; if false, return formatted text */
|
||||
raw?: boolean;
|
||||
|
||||
/** if true, return raw numbers; if false, return formatted numbers */
|
||||
rawNumbers?: boolean;
|
||||
}
|
||||
|
||||
export interface AOA2SheetOpts extends CommonOptions, DateNFOption {
|
||||
/**
|
||||
* Create cell objects for stub cells
|
||||
* @default false
|
||||
*/
|
||||
sheetStubs?: boolean;
|
||||
}
|
||||
|
||||
export interface SheetAOAOpts extends AOA2SheetOpts, OriginOption {}
|
||||
|
||||
export interface JSON2SheetOpts extends CommonOptions, DateNFOption {
|
||||
/** Use specified column order */
|
||||
header?: string[];
|
||||
|
||||
/** Skip header row in generated sheet */
|
||||
skipHeader?: boolean;
|
||||
}
|
||||
|
||||
export interface SheetJSONOpts extends JSON2SheetOpts, OriginOption {}
|
||||
|
||||
export interface Table2SheetOpts extends CommonOptions, DateNFOption {
|
||||
/** If true, plaintext parsing will not parse values */
|
||||
raw?: boolean;
|
||||
|
||||
/**
|
||||
* If >0, read the first sheetRows rows
|
||||
* @default 0
|
||||
*/
|
||||
sheetRows?: number;
|
||||
|
||||
/** If true, hidden rows and cells will not be parsed */
|
||||
display?: boolean;
|
||||
}
|
||||
|
||||
/** General utilities */
|
||||
export interface XLSX$Utils {
|
||||
/* --- Import Functions --- */
|
||||
|
||||
/** Converts an array of arrays of JS data to a worksheet. */
|
||||
aoa_to_sheet<T>(data: T[][], opts?: AOA2SheetOpts): WorkSheet;
|
||||
aoa_to_sheet(data: any[][], opts?: AOA2SheetOpts): WorkSheet;
|
||||
|
||||
/** Converts an array of JS objects to a worksheet. */
|
||||
json_to_sheet<T>(data: T[], opts?: JSON2SheetOpts): WorkSheet;
|
||||
json_to_sheet(data: any[], opts?: JSON2SheetOpts): WorkSheet;
|
||||
|
||||
/** BROWSER ONLY! Converts a TABLE DOM element to a worksheet. */
|
||||
table_to_sheet(data: any, opts?: Table2SheetOpts): WorkSheet;
|
||||
table_to_book(data: any, opts?: Table2SheetOpts): WorkBook;
|
||||
sheet_add_dom(ws: WorkSheet, data: any, opts?: Table2SheetOpts): WorkSheet;
|
||||
|
||||
/* --- Export Functions --- */
|
||||
|
||||
/** Converts a worksheet object to an array of JSON objects */
|
||||
sheet_to_json<T>(worksheet: WorkSheet, opts?: Sheet2JSONOpts): T[];
|
||||
sheet_to_json(worksheet: WorkSheet, opts?: Sheet2JSONOpts): any[][];
|
||||
sheet_to_json(worksheet: WorkSheet, opts?: Sheet2JSONOpts): any[];
|
||||
|
||||
/** Generates delimiter-separated-values output */
|
||||
sheet_to_csv(worksheet: WorkSheet, options?: Sheet2CSVOpts): string;
|
||||
|
||||
/** Generates UTF16 Formatted Text */
|
||||
sheet_to_txt(worksheet: WorkSheet, options?: Sheet2CSVOpts): string;
|
||||
|
||||
/** Generates HTML */
|
||||
sheet_to_html(worksheet: WorkSheet, options?: Sheet2HTMLOpts): string;
|
||||
|
||||
/** Generates a list of the formulae (with value fallbacks) */
|
||||
sheet_to_formulae(worksheet: WorkSheet): string[];
|
||||
|
||||
/** Generates DIF */
|
||||
sheet_to_dif(worksheet: WorkSheet, options?: Sheet2HTMLOpts): string;
|
||||
|
||||
/** Generates SYLK (Symbolic Link) */
|
||||
sheet_to_slk(worksheet: WorkSheet, options?: Sheet2HTMLOpts): string;
|
||||
|
||||
/** Generates ETH */
|
||||
sheet_to_eth(worksheet: WorkSheet, options?: Sheet2HTMLOpts): string;
|
||||
|
||||
/* --- Cell Address Utilities --- */
|
||||
|
||||
/** Converts 0-indexed cell address to A1 form */
|
||||
encode_cell(cell: CellAddress): string;
|
||||
|
||||
/** Converts 0-indexed row to A1 form */
|
||||
encode_row(row: number): string;
|
||||
|
||||
/** Converts 0-indexed column to A1 form */
|
||||
encode_col(col: number): string;
|
||||
|
||||
/** Converts 0-indexed range to A1 form */
|
||||
encode_range(s: CellAddress, e: CellAddress): string;
|
||||
encode_range(r: Range): string;
|
||||
|
||||
/** Converts A1 cell address to 0-indexed form */
|
||||
decode_cell(address: string): CellAddress;
|
||||
|
||||
/** Converts A1 row to 0-indexed form */
|
||||
decode_row(row: string): number;
|
||||
|
||||
/** Converts A1 column to 0-indexed form */
|
||||
decode_col(col: string): number;
|
||||
|
||||
/** Converts A1 range to 0-indexed form */
|
||||
decode_range(range: string): Range;
|
||||
|
||||
/** Format cell */
|
||||
format_cell(cell: CellObject, v?: any, opts?: any): string;
|
||||
|
||||
/* --- General Utilities --- */
|
||||
|
||||
/** Creates a new workbook */
|
||||
book_new(): WorkBook;
|
||||
|
||||
/** Append a worksheet to a workbook */
|
||||
book_append_sheet(workbook: WorkBook, worksheet: WorkSheet, name?: string): void;
|
||||
|
||||
/** Set sheet visibility (visible/hidden/very hidden) */
|
||||
book_set_sheet_visibility(workbook: WorkBook, sheet: number|string, visibility: number): void;
|
||||
|
||||
/** Set number format for a cell */
|
||||
cell_set_number_format(cell: CellObject, fmt: string|number): CellObject;
|
||||
|
||||
/** Set hyperlink for a cell */
|
||||
cell_set_hyperlink(cell: CellObject, target: string, tooltip?: string): CellObject;
|
||||
|
||||
/** Set internal link for a cell */
|
||||
cell_set_internal_link(cell: CellObject, target: string, tooltip?: string): CellObject;
|
||||
|
||||
/** Add comment to a cell */
|
||||
cell_add_comment(cell: CellObject, text: string, author?: string): void;
|
||||
|
||||
/** Assign an Array Formula to a range */
|
||||
sheet_set_array_formula(ws: WorkSheet, range: Range|string, formula: string): WorkSheet;
|
||||
|
||||
/** Add an array of arrays of JS data to a worksheet */
|
||||
sheet_add_aoa<T>(ws: WorkSheet, data: T[][], opts?: SheetAOAOpts): WorkSheet;
|
||||
sheet_add_aoa(ws: WorkSheet, data: any[][], opts?: SheetAOAOpts): WorkSheet;
|
||||
|
||||
/** Add an array of JS objects to a worksheet */
|
||||
sheet_add_json(ws: WorkSheet, data: any[], opts?: SheetJSONOpts): WorkSheet;
|
||||
sheet_add_json<T>(ws: WorkSheet, data: T[], opts?: SheetJSONOpts): WorkSheet;
|
||||
|
||||
|
||||
consts: XLSX$Consts;
|
||||
}
|
||||
|
||||
export interface XLSX$Consts {
|
||||
/* --- Sheet Visibility --- */
|
||||
|
||||
/** Visibility: Visible */
|
||||
SHEET_VISIBLE: 0;
|
||||
|
||||
/** Visibility: Hidden */
|
||||
SHEET_HIDDEN: 1;
|
||||
|
||||
/** Visibility: Very Hidden */
|
||||
SHEET_VERYHIDDEN: 2;
|
||||
}
|
||||
|
||||
/** NODE ONLY! these return Readable Streams */
|
||||
export interface StreamUtils {
|
||||
/** CSV output stream, generate one line at a time */
|
||||
to_csv(sheet: WorkSheet, opts?: Sheet2CSVOpts): any;
|
||||
/** HTML output stream, generate one line at a time */
|
||||
to_html(sheet: WorkSheet, opts?: Sheet2HTMLOpts): any;
|
||||
/** JSON object stream, generate one row at a time */
|
||||
to_json(sheet: WorkSheet, opts?: Sheet2JSONOpts): any;
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
import { Observable } from '../Observable';
|
||||
export function throwError(error, scheduler) {
|
||||
if (!scheduler) {
|
||||
return new Observable(subscriber => subscriber.error(error));
|
||||
}
|
||||
else {
|
||||
return new Observable(subscriber => scheduler.schedule(dispatch, 0, { error, subscriber }));
|
||||
}
|
||||
}
|
||||
function dispatch({ error, subscriber }) {
|
||||
subscriber.error(error);
|
||||
}
|
||||
//# sourceMappingURL=throwError.js.map
|
||||
@@ -0,0 +1,38 @@
|
||||
/** PURE_IMPORTS_START tslib,_AsyncAction PURE_IMPORTS_END */
|
||||
import * as tslib_1 from "tslib";
|
||||
import { AsyncAction } from './AsyncAction';
|
||||
var AnimationFrameAction = /*@__PURE__*/ (function (_super) {
|
||||
tslib_1.__extends(AnimationFrameAction, _super);
|
||||
function AnimationFrameAction(scheduler, work) {
|
||||
var _this = _super.call(this, scheduler, work) || this;
|
||||
_this.scheduler = scheduler;
|
||||
_this.work = work;
|
||||
return _this;
|
||||
}
|
||||
AnimationFrameAction.prototype.requestAsyncId = function (scheduler, id, delay) {
|
||||
if (delay === void 0) {
|
||||
delay = 0;
|
||||
}
|
||||
if (delay !== null && delay > 0) {
|
||||
return _super.prototype.requestAsyncId.call(this, scheduler, id, delay);
|
||||
}
|
||||
scheduler.actions.push(this);
|
||||
return scheduler.scheduled || (scheduler.scheduled = requestAnimationFrame(function () { return scheduler.flush(null); }));
|
||||
};
|
||||
AnimationFrameAction.prototype.recycleAsyncId = function (scheduler, id, delay) {
|
||||
if (delay === void 0) {
|
||||
delay = 0;
|
||||
}
|
||||
if ((delay !== null && delay > 0) || (delay === null && this.delay > 0)) {
|
||||
return _super.prototype.recycleAsyncId.call(this, scheduler, id, delay);
|
||||
}
|
||||
if (scheduler.actions.length === 0) {
|
||||
cancelAnimationFrame(id);
|
||||
scheduler.scheduled = undefined;
|
||||
}
|
||||
return undefined;
|
||||
};
|
||||
return AnimationFrameAction;
|
||||
}(AsyncAction));
|
||||
export { AnimationFrameAction };
|
||||
//# sourceMappingURL=AnimationFrameAction.js.map
|
||||
@@ -0,0 +1 @@
|
||||
module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01547,"49":0,"50":0,"51":0,"52":0.05415,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01547,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00774,"78":0.00774,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00774,"89":0,"90":0,"91":0.00774,"92":0,"93":0,"94":0,"95":0,"96":0.00774,"97":0,"98":0.00774,"99":0,"100":0,"101":0,"102":0.06188,"103":0.00774,"104":0.00774,"105":0.00774,"106":0.01547,"107":0.03094,"108":1.22213,"109":0.67295,"110":0.00774,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01547,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00774,"61":0.00774,"62":0,"63":0.00774,"64":0.00774,"65":0.02321,"66":0.00774,"67":0.00774,"68":0,"69":0,"70":0,"71":0,"72":0.00774,"73":0,"74":0.00774,"75":0.00774,"76":0,"77":0.00774,"78":0,"79":0.03868,"80":0.00774,"81":0.01547,"83":0.00774,"84":0.00774,"85":0.03094,"86":0.02321,"87":0.03094,"88":0.01547,"89":0.01547,"90":0.00774,"91":0.01547,"92":0.04641,"93":0.05415,"94":0.01547,"95":0.00774,"96":0.03094,"97":0.03868,"98":0.01547,"99":0.01547,"100":0.02321,"101":0.03868,"102":0.03094,"103":0.14697,"104":0.06188,"105":0.30167,"106":0.12376,"107":0.42543,"108":25.48683,"109":18.32422,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01547,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00774,"88":0,"89":0,"90":0,"91":0.00774,"92":0,"93":0.74256,"94":1.14478,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.04641,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00774,"91":0,"92":0.05415,"93":0,"94":0.00774,"95":0,"96":0,"97":0,"98":0.00774,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.06188,"105":0.04641,"106":0.03094,"107":0.10829,"108":4.60233,"109":3.51169},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00774,"14":0.03094,"15":0.00774,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00774,"10.1":0,"11.1":0,"12.1":0.00774,"13.1":0.03868,"14.1":0.05415,"15.1":0.01547,"15.2-15.3":0.01547,"15.4":0.02321,"15.5":0.03868,"15.6":0.25526,"16.0":0.04641,"16.1":0.14697,"16.2":0.23205,"16.3":0.01547},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00547,"7.0-7.1":0.00438,"8.1-8.4":0.00109,"9.0-9.2":0.00109,"9.3":0.0197,"10.0-10.2":0.00219,"10.3":0.07772,"11.0-11.2":0.00657,"11.3-11.4":0.00876,"12.0-12.1":0.00547,"12.2-12.5":0.11275,"13.0-13.1":0.00328,"13.2":0.00328,"13.3":0.01204,"13.4-13.7":0.03941,"14.0-14.4":0.15106,"14.5-14.8":0.28679,"15.0-15.1":0.08319,"15.2-15.3":0.13792,"15.4":0.14449,"15.5":0.37436,"15.6":1.19753,"16.0":1.96924,"16.1":3.46451,"16.2":2.13781,"16.3":0.19594},P:{"4":0.041,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0205,"12.0":0,"13.0":0.0205,"14.0":0.0205,"15.0":0.01025,"16.0":0.03075,"17.0":0.03075,"18.0":0.11276,"19.0":1.50686},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00536,"4.2-4.3":0.02682,"4.4":0,"4.4.3-4.4.4":0.08046},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00884,"9":0,"10":0,"11":0.05304,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0.01359},R:{_:"0"},M:{"0":0.15629},Q:{"13.1":0},O:{"0":0.04983},H:{"0":0.23588},L:{"0":25.86069},S:{"2.5":0}};
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"FromEventPatternObservable.js","sources":["../src/observable/FromEventPatternObservable.ts"],"names":[],"mappings":";;;;;AAAA,uEAAkE"}
|
||||
@@ -0,0 +1,7 @@
|
||||
"use strict";
|
||||
function __export(m) {
|
||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
||||
}
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__export(require("rxjs-compat/operator/defaultIfEmpty"));
|
||||
//# sourceMappingURL=defaultIfEmpty.js.map
|
||||
Reference in New Issue
Block a user