@burdenoff/microfe-export 2026.510.111

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (197) hide show
  1. package/README.md +243 -0
  2. package/dist/dev/main.d.ts +2 -0
  3. package/dist/dev/main.d.ts.map +1 -0
  4. package/dist/export/ExportRoot.d.ts +31 -0
  5. package/dist/export/ExportRoot.d.ts.map +1 -0
  6. package/dist/export/ExportRoot.js +70 -0
  7. package/dist/export/ExportRoot.js.map +1 -0
  8. package/dist/export/ExportRoutes.d.ts +14 -0
  9. package/dist/export/ExportRoutes.d.ts.map +1 -0
  10. package/dist/export/ExportRoutes.js +104 -0
  11. package/dist/export/ExportRoutes.js.map +1 -0
  12. package/dist/export/components/ExportProgressBar.d.ts +12 -0
  13. package/dist/export/components/ExportProgressBar.d.ts.map +1 -0
  14. package/dist/export/components/ExportProgressBar.js +34 -0
  15. package/dist/export/components/ExportProgressBar.js.map +1 -0
  16. package/dist/export/components/ExportStatusBadge.d.ts +12 -0
  17. package/dist/export/components/ExportStatusBadge.d.ts.map +1 -0
  18. package/dist/export/components/ExportStatusBadge.js +39 -0
  19. package/dist/export/components/ExportStatusBadge.js.map +1 -0
  20. package/dist/export/components/PageLayout.d.ts +55 -0
  21. package/dist/export/components/PageLayout.d.ts.map +1 -0
  22. package/dist/export/components/PageLayout.js +93 -0
  23. package/dist/export/components/PageLayout.js.map +1 -0
  24. package/dist/export/components/ui.d.ts +6 -0
  25. package/dist/export/components/ui.d.ts.map +1 -0
  26. package/dist/export/constants/enums.d.ts +79 -0
  27. package/dist/export/constants/enums.d.ts.map +1 -0
  28. package/dist/export/constants/enums.js +27 -0
  29. package/dist/export/constants/enums.js.map +1 -0
  30. package/dist/export/constants/index.d.ts +7 -0
  31. package/dist/export/constants/index.d.ts.map +1 -0
  32. package/dist/export/hooks/useExportQueries.d.ts +224 -0
  33. package/dist/export/hooks/useExportQueries.d.ts.map +1 -0
  34. package/dist/export/hooks/useExportQueries.js +401 -0
  35. package/dist/export/hooks/useExportQueries.js.map +1 -0
  36. package/dist/export/index.d.ts +29 -0
  37. package/dist/export/index.d.ts.map +1 -0
  38. package/dist/export/index.js +3 -0
  39. package/dist/export/pages/CreateExportPage.d.ts +2 -0
  40. package/dist/export/pages/CreateExportPage.d.ts.map +1 -0
  41. package/dist/export/pages/CreateExportPage.js +495 -0
  42. package/dist/export/pages/CreateExportPage.js.map +1 -0
  43. package/dist/export/pages/ExportDashboardPage.d.ts +6 -0
  44. package/dist/export/pages/ExportDashboardPage.d.ts.map +1 -0
  45. package/dist/export/pages/ExportDashboardPage.js +166 -0
  46. package/dist/export/pages/ExportDashboardPage.js.map +1 -0
  47. package/dist/export/pages/ExportDetailPage.d.ts +7 -0
  48. package/dist/export/pages/ExportDetailPage.d.ts.map +1 -0
  49. package/dist/export/pages/ExportDetailPage.js +327 -0
  50. package/dist/export/pages/ExportDetailPage.js.map +1 -0
  51. package/dist/export/pages/ExportHistoryPage.d.ts +6 -0
  52. package/dist/export/pages/ExportHistoryPage.d.ts.map +1 -0
  53. package/dist/export/pages/ExportHistoryPage.js +261 -0
  54. package/dist/export/pages/ExportHistoryPage.js.map +1 -0
  55. package/dist/export/pages/ExportLandingPage.d.ts +9 -0
  56. package/dist/export/pages/ExportLandingPage.d.ts.map +1 -0
  57. package/dist/export/pages/ExportLandingPage.js +56 -0
  58. package/dist/export/pages/ExportLandingPage.js.map +1 -0
  59. package/dist/export/pages/ExportTemplatesPage.d.ts +6 -0
  60. package/dist/export/pages/ExportTemplatesPage.d.ts.map +1 -0
  61. package/dist/export/pages/ExportTemplatesPage.js +343 -0
  62. package/dist/export/pages/ExportTemplatesPage.js.map +1 -0
  63. package/dist/export/pages/TemplateDetailPage.d.ts +7 -0
  64. package/dist/export/pages/TemplateDetailPage.d.ts.map +1 -0
  65. package/dist/export/pages/TemplateDetailPage.js +215 -0
  66. package/dist/export/pages/TemplateDetailPage.js.map +1 -0
  67. package/dist/export/providers/ExportProvider.d.ts +13 -0
  68. package/dist/export/providers/ExportProvider.d.ts.map +1 -0
  69. package/dist/export/providers/ExportProvider.js +103 -0
  70. package/dist/export/providers/ExportProvider.js.map +1 -0
  71. package/dist/export/store/exportStore.d.ts +17 -0
  72. package/dist/export/store/exportStore.d.ts.map +1 -0
  73. package/dist/export/store/exportStore.js +43 -0
  74. package/dist/export/store/exportStore.js.map +1 -0
  75. package/dist/export/types/index.d.ts +230 -0
  76. package/dist/export/types/index.d.ts.map +1 -0
  77. package/dist/export/utils/cn.d.ts +8 -0
  78. package/dist/export/utils/cn.d.ts.map +1 -0
  79. package/dist/export/utils/cn.js +10 -0
  80. package/dist/export/utils/cn.js.map +1 -0
  81. package/dist/export/utils/events.d.ts +7 -0
  82. package/dist/export/utils/events.d.ts.map +1 -0
  83. package/dist/export/utils/events.js +16 -0
  84. package/dist/export/utils/events.js.map +1 -0
  85. package/dist/export/utils/i18n.d.ts +6 -0
  86. package/dist/export/utils/i18n.d.ts.map +1 -0
  87. package/dist/export/utils/i18n.js +15 -0
  88. package/dist/export/utils/i18n.js.map +1 -0
  89. package/dist/generated/global-operations.d.ts +2 -0
  90. package/dist/generated/global-operations.d.ts.map +1 -0
  91. package/dist/generated/global-types.d.ts +21253 -0
  92. package/dist/generated/global-types.d.ts.map +1 -0
  93. package/dist/generated/wspace-operations.d.ts +773 -0
  94. package/dist/generated/wspace-operations.d.ts.map +1 -0
  95. package/dist/generated/wspace-operations.js +319 -0
  96. package/dist/generated/wspace-operations.js.map +1 -0
  97. package/dist/generated/wspace-types.d.ts +55214 -0
  98. package/dist/generated/wspace-types.d.ts.map +1 -0
  99. package/dist/generated/wspace-types.js +12 -0
  100. package/dist/generated/wspace-types.js.map +1 -0
  101. package/dist/index.d.ts +6 -0
  102. package/dist/index.d.ts.map +1 -0
  103. package/dist/index.js +5 -0
  104. package/dist/node_modules/@apollo/client/errors/CombinedGraphQLErrors.js +24 -0
  105. package/dist/node_modules/@apollo/client/errors/CombinedGraphQLErrors.js.map +1 -0
  106. package/dist/node_modules/@apollo/client/errors/utils.js +16 -0
  107. package/dist/node_modules/@apollo/client/errors/utils.js.map +1 -0
  108. package/dist/node_modules/@apollo/client/link/core/ApolloLink.js +52 -0
  109. package/dist/node_modules/@apollo/client/link/core/ApolloLink.js.map +1 -0
  110. package/dist/node_modules/@apollo/client/link/subscriptions/index.js +41 -0
  111. package/dist/node_modules/@apollo/client/link/subscriptions/index.js.map +1 -0
  112. package/dist/node_modules/@apollo/client/link/utils/createOperation.js +34 -0
  113. package/dist/node_modules/@apollo/client/link/utils/createOperation.js.map +1 -0
  114. package/dist/node_modules/@apollo/client/utilities/caching/sizes.js +6 -0
  115. package/dist/node_modules/@apollo/client/utilities/caching/sizes.js.map +1 -0
  116. package/dist/node_modules/@apollo/client/utilities/graphql/print.js +16 -0
  117. package/dist/node_modules/@apollo/client/utilities/graphql/print.js.map +1 -0
  118. package/dist/node_modules/@apollo/client/utilities/internal/caches.js +19 -0
  119. package/dist/node_modules/@apollo/client/utilities/internal/caches.js.map +1 -0
  120. package/dist/node_modules/@apollo/client/utilities/internal/checkDocument.js +21 -0
  121. package/dist/node_modules/@apollo/client/utilities/internal/checkDocument.js.map +1 -0
  122. package/dist/node_modules/@apollo/client/utilities/internal/getMainDefinition.js +17 -0
  123. package/dist/node_modules/@apollo/client/utilities/internal/getMainDefinition.js.map +1 -0
  124. package/dist/node_modules/@apollo/client/utilities/internal/getMemoryInternals.js +9 -0
  125. package/dist/node_modules/@apollo/client/utilities/internal/getMemoryInternals.js.map +1 -0
  126. package/dist/node_modules/@apollo/client/utilities/internal/getOperationDefinition.js +9 -0
  127. package/dist/node_modules/@apollo/client/utilities/internal/getOperationDefinition.js.map +1 -0
  128. package/dist/node_modules/@apollo/client/utilities/internal/getOperationName.js +8 -0
  129. package/dist/node_modules/@apollo/client/utilities/internal/getOperationName.js.map +1 -0
  130. package/dist/node_modules/@apollo/client/utilities/internal/globals/global.js +9 -0
  131. package/dist/node_modules/@apollo/client/utilities/internal/globals/global.js.map +1 -0
  132. package/dist/node_modules/@apollo/client/utilities/internal/globals/maybe.js +10 -0
  133. package/dist/node_modules/@apollo/client/utilities/internal/globals/maybe.js.map +1 -0
  134. package/dist/node_modules/@apollo/client/utilities/internal/isNonNullObject.js +8 -0
  135. package/dist/node_modules/@apollo/client/utilities/internal/isNonNullObject.js.map +1 -0
  136. package/dist/node_modules/@apollo/client/utilities/internal/makeUniqueId.js +10 -0
  137. package/dist/node_modules/@apollo/client/utilities/internal/makeUniqueId.js.map +1 -0
  138. package/dist/node_modules/@apollo/client/utilities/internal/memoize.js +23 -0
  139. package/dist/node_modules/@apollo/client/utilities/internal/memoize.js.map +1 -0
  140. package/dist/node_modules/@apollo/client/utilities/internal/stringifyForDisplay.js +10 -0
  141. package/dist/node_modules/@apollo/client/utilities/internal/stringifyForDisplay.js.map +1 -0
  142. package/dist/node_modules/@apollo/client/utilities/invariant/index.js +57 -0
  143. package/dist/node_modules/@apollo/client/utilities/invariant/index.js.map +1 -0
  144. package/dist/node_modules/@apollo/client/version.js +6 -0
  145. package/dist/node_modules/@apollo/client/version.js.map +1 -0
  146. package/dist/node_modules/@wry/caches/lib/weak.js +67 -0
  147. package/dist/node_modules/@wry/caches/lib/weak.js.map +1 -0
  148. package/dist/node_modules/@wry/trie/lib/index.js +53 -0
  149. package/dist/node_modules/@wry/trie/lib/index.js.map +1 -0
  150. package/dist/node_modules/clsx/dist/clsx.js +18 -0
  151. package/dist/node_modules/clsx/dist/clsx.js.map +1 -0
  152. package/dist/node_modules/graphql-ws/dist/client.js +272 -0
  153. package/dist/node_modules/graphql-ws/dist/client.js.map +1 -0
  154. package/dist/node_modules/graphql-ws/dist/common-CGW11Fyb.js +62 -0
  155. package/dist/node_modules/graphql-ws/dist/common-CGW11Fyb.js.map +1 -0
  156. package/dist/node_modules/rxjs/dist/esm5/internal/NotificationFactories.js +21 -0
  157. package/dist/node_modules/rxjs/dist/esm5/internal/NotificationFactories.js.map +1 -0
  158. package/dist/node_modules/rxjs/dist/esm5/internal/Observable.js +78 -0
  159. package/dist/node_modules/rxjs/dist/esm5/internal/Observable.js.map +1 -0
  160. package/dist/node_modules/rxjs/dist/esm5/internal/Subscriber.js +117 -0
  161. package/dist/node_modules/rxjs/dist/esm5/internal/Subscriber.js.map +1 -0
  162. package/dist/node_modules/rxjs/dist/esm5/internal/Subscription.js +93 -0
  163. package/dist/node_modules/rxjs/dist/esm5/internal/Subscription.js.map +1 -0
  164. package/dist/node_modules/rxjs/dist/esm5/internal/config.js +12 -0
  165. package/dist/node_modules/rxjs/dist/esm5/internal/config.js.map +1 -0
  166. package/dist/node_modules/rxjs/dist/esm5/internal/observable/empty.js +9 -0
  167. package/dist/node_modules/rxjs/dist/esm5/internal/observable/empty.js.map +1 -0
  168. package/dist/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.js +16 -0
  169. package/dist/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.js.map +1 -0
  170. package/dist/node_modules/rxjs/dist/esm5/internal/symbol/observable.js +8 -0
  171. package/dist/node_modules/rxjs/dist/esm5/internal/symbol/observable.js.map +1 -0
  172. package/dist/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js +13 -0
  173. package/dist/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js.map +1 -0
  174. package/dist/node_modules/rxjs/dist/esm5/internal/util/arrRemove.js +11 -0
  175. package/dist/node_modules/rxjs/dist/esm5/internal/util/arrRemove.js.map +1 -0
  176. package/dist/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.js +11 -0
  177. package/dist/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.js.map +1 -0
  178. package/dist/node_modules/rxjs/dist/esm5/internal/util/errorContext.js +22 -0
  179. package/dist/node_modules/rxjs/dist/esm5/internal/util/errorContext.js.map +1 -0
  180. package/dist/node_modules/rxjs/dist/esm5/internal/util/identity.js +8 -0
  181. package/dist/node_modules/rxjs/dist/esm5/internal/util/identity.js.map +1 -0
  182. package/dist/node_modules/rxjs/dist/esm5/internal/util/isFunction.js +8 -0
  183. package/dist/node_modules/rxjs/dist/esm5/internal/util/isFunction.js.map +1 -0
  184. package/dist/node_modules/rxjs/dist/esm5/internal/util/noop.js +6 -0
  185. package/dist/node_modules/rxjs/dist/esm5/internal/util/noop.js.map +1 -0
  186. package/dist/node_modules/rxjs/dist/esm5/internal/util/pipe.js +13 -0
  187. package/dist/node_modules/rxjs/dist/esm5/internal/util/pipe.js.map +1 -0
  188. package/dist/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.js +14 -0
  189. package/dist/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.js.map +1 -0
  190. package/dist/node_modules/rxjs/node_modules/tslib/tslib.es6.js +52 -0
  191. package/dist/node_modules/rxjs/node_modules/tslib/tslib.es6.js.map +1 -0
  192. package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +1674 -0
  193. package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js.map +1 -0
  194. package/dist/utils/nativeBridge.d.ts +3 -0
  195. package/dist/utils/nativeBridge.d.ts.map +1 -0
  196. package/dist/utils/nativeBridge.js +2 -0
  197. package/package.json +107 -0
@@ -0,0 +1,78 @@
1
+ import { isFunction as e } from "./util/isFunction.js";
2
+ import { isSubscription as t } from "./Subscription.js";
3
+ import { config as n } from "./config.js";
4
+ import { errorContext as r } from "./util/errorContext.js";
5
+ import { SafeSubscriber as i, Subscriber as a } from "./Subscriber.js";
6
+ import { observable as o } from "./symbol/observable.js";
7
+ import { pipeFromArray as s } from "./util/pipe.js";
8
+ //#region node_modules/rxjs/dist/esm5/internal/Observable.js
9
+ var c = function() {
10
+ function e(e) {
11
+ e && (this._subscribe = e);
12
+ }
13
+ return e.prototype.lift = function(t) {
14
+ var n = new e();
15
+ return n.source = this, n.operator = t, n;
16
+ }, e.prototype.subscribe = function(e, t, n) {
17
+ var a = this, o = d(e) ? e : new i(e, t, n);
18
+ return r(function() {
19
+ var e = a, t = e.operator, n = e.source;
20
+ o.add(t ? t.call(o, n) : n ? a._subscribe(o) : a._trySubscribe(o));
21
+ }), o;
22
+ }, e.prototype._trySubscribe = function(e) {
23
+ try {
24
+ return this._subscribe(e);
25
+ } catch (t) {
26
+ e.error(t);
27
+ }
28
+ }, e.prototype.forEach = function(e, t) {
29
+ var n = this;
30
+ return t = l(t), new t(function(t, r) {
31
+ var a = new i({
32
+ next: function(t) {
33
+ try {
34
+ e(t);
35
+ } catch (e) {
36
+ r(e), a.unsubscribe();
37
+ }
38
+ },
39
+ error: r,
40
+ complete: t
41
+ });
42
+ n.subscribe(a);
43
+ });
44
+ }, e.prototype._subscribe = function(e) {
45
+ return this.source?.subscribe(e);
46
+ }, e.prototype[o] = function() {
47
+ return this;
48
+ }, e.prototype.pipe = function() {
49
+ return s([...arguments])(this);
50
+ }, e.prototype.toPromise = function(e) {
51
+ var t = this;
52
+ return e = l(e), new e(function(e, n) {
53
+ var r;
54
+ t.subscribe(function(e) {
55
+ return r = e;
56
+ }, function(e) {
57
+ return n(e);
58
+ }, function() {
59
+ return e(r);
60
+ });
61
+ });
62
+ }, e.create = function(t) {
63
+ return new e(t);
64
+ }, e;
65
+ }();
66
+ function l(e) {
67
+ return e ?? n.Promise ?? Promise;
68
+ }
69
+ function u(t) {
70
+ return t && e(t.next) && e(t.error) && e(t.complete);
71
+ }
72
+ function d(e) {
73
+ return e && e instanceof a || u(e) && t(e);
74
+ }
75
+ //#endregion
76
+ export { c as Observable };
77
+
78
+ //# sourceMappingURL=Observable.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Observable.js","names":["Symbol_observable"],"sources":["../../../../../../node_modules/rxjs/dist/esm5/internal/Observable.js"],"sourcesContent":["import { SafeSubscriber, Subscriber } from './Subscriber';\nimport { isSubscription } from './Subscription';\nimport { observable as Symbol_observable } from './symbol/observable';\nimport { pipeFromArray } from './util/pipe';\nimport { config } from './config';\nimport { isFunction } from './util/isFunction';\nimport { errorContext } from './util/errorContext';\nvar Observable = (function () {\n function Observable(subscribe) {\n if (subscribe) {\n this._subscribe = subscribe;\n }\n }\n Observable.prototype.lift = function (operator) {\n var observable = new Observable();\n observable.source = this;\n observable.operator = operator;\n return observable;\n };\n Observable.prototype.subscribe = function (observerOrNext, error, complete) {\n var _this = this;\n var subscriber = isSubscriber(observerOrNext) ? observerOrNext : new SafeSubscriber(observerOrNext, error, complete);\n errorContext(function () {\n var _a = _this, operator = _a.operator, source = _a.source;\n subscriber.add(operator\n ?\n operator.call(subscriber, source)\n : source\n ?\n _this._subscribe(subscriber)\n :\n _this._trySubscribe(subscriber));\n });\n return subscriber;\n };\n Observable.prototype._trySubscribe = function (sink) {\n try {\n return this._subscribe(sink);\n }\n catch (err) {\n sink.error(err);\n }\n };\n Observable.prototype.forEach = function (next, promiseCtor) {\n var _this = this;\n promiseCtor = getPromiseCtor(promiseCtor);\n return new promiseCtor(function (resolve, reject) {\n var subscriber = new SafeSubscriber({\n next: function (value) {\n try {\n next(value);\n }\n catch (err) {\n reject(err);\n subscriber.unsubscribe();\n }\n },\n error: reject,\n complete: resolve,\n });\n _this.subscribe(subscriber);\n });\n };\n Observable.prototype._subscribe = function (subscriber) {\n var _a;\n return (_a = this.source) === null || _a === void 0 ? void 0 : _a.subscribe(subscriber);\n };\n Observable.prototype[Symbol_observable] = function () {\n return this;\n };\n Observable.prototype.pipe = function () {\n var operations = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n operations[_i] = arguments[_i];\n }\n return pipeFromArray(operations)(this);\n };\n Observable.prototype.toPromise = function (promiseCtor) {\n var _this = this;\n promiseCtor = getPromiseCtor(promiseCtor);\n return new promiseCtor(function (resolve, reject) {\n var value;\n _this.subscribe(function (x) { return (value = x); }, function (err) { return reject(err); }, function () { return resolve(value); });\n });\n };\n Observable.create = function (subscribe) {\n return new Observable(subscribe);\n };\n return Observable;\n}());\nexport { Observable };\nfunction getPromiseCtor(promiseCtor) {\n var _a;\n return (_a = promiseCtor !== null && promiseCtor !== void 0 ? promiseCtor : config.Promise) !== null && _a !== void 0 ? _a : Promise;\n}\nfunction isObserver(value) {\n return value && isFunction(value.next) && isFunction(value.error) && isFunction(value.complete);\n}\nfunction isSubscriber(value) {\n return (value && value instanceof Subscriber) || (isObserver(value) && isSubscription(value));\n}\n//# sourceMappingURL=Observable.js.map"],"x_google_ignoreList":[0],"mappings":";;;;;;;;AAOA,IAAI,IAAc,WAAY;CAC1B,SAAS,EAAW,GAAW;AAC3B,EAAI,MACA,KAAK,aAAa;;AA8E1B,QA3EA,EAAW,UAAU,OAAO,SAAU,GAAU;EAC5C,IAAI,IAAa,IAAI,GAAY;AAGjC,SAFA,EAAW,SAAS,MACpB,EAAW,WAAW,GACf;IAEX,EAAW,UAAU,YAAY,SAAU,GAAgB,GAAO,GAAU;EACxE,IAAI,IAAQ,MACR,IAAa,EAAa,EAAe,GAAG,IAAiB,IAAI,EAAe,GAAgB,GAAO,EAAS;AAYpH,SAXA,EAAa,WAAY;GACrB,IAAI,IAAK,GAAO,IAAW,EAAG,UAAU,IAAS,EAAG;AACpD,KAAW,IAAI,IAEP,EAAS,KAAK,GAAY,EAAO,GACnC,IAEM,EAAM,WAAW,EAAW,GAE5B,EAAM,cAAc,EAAW,CAAC;IAC9C,EACK;IAEX,EAAW,UAAU,gBAAgB,SAAU,GAAM;AACjD,MAAI;AACA,UAAO,KAAK,WAAW,EAAK;WAEzB,GAAK;AACR,KAAK,MAAM,EAAI;;IAGvB,EAAW,UAAU,UAAU,SAAU,GAAM,GAAa;EACxD,IAAI,IAAQ;AAEZ,SADA,IAAc,EAAe,EAAY,EAClC,IAAI,EAAY,SAAU,GAAS,GAAQ;GAC9C,IAAI,IAAa,IAAI,EAAe;IAChC,MAAM,SAAU,GAAO;AACnB,SAAI;AACA,QAAK,EAAM;cAER,GAAK;AAER,MADA,EAAO,EAAI,EACX,EAAW,aAAa;;;IAGhC,OAAO;IACP,UAAU;IACb,CAAC;AACF,KAAM,UAAU,EAAW;IAC7B;IAEN,EAAW,UAAU,aAAa,SAAU,GAAY;AAEpD,SAAa,KAAK,QAAgD,UAAU,EAAW;IAE3F,EAAW,UAAUA,KAAqB,WAAY;AAClD,SAAO;IAEX,EAAW,UAAU,OAAO,WAAY;AAKpC,SAAO,MAFc,WAEW,CAAC,KAAK;IAE1C,EAAW,UAAU,YAAY,SAAU,GAAa;EACpD,IAAI,IAAQ;AAEZ,SADA,IAAc,EAAe,EAAY,EAClC,IAAI,EAAY,SAAU,GAAS,GAAQ;GAC9C,IAAI;AACJ,KAAM,UAAU,SAAU,GAAG;AAAE,WAAQ,IAAQ;MAAO,SAAU,GAAK;AAAE,WAAO,EAAO,EAAI;MAAK,WAAY;AAAE,WAAO,EAAQ,EAAM;KAAI;IACvI;IAEN,EAAW,SAAS,SAAU,GAAW;AACrC,SAAO,IAAI,EAAW,EAAU;IAE7B;GACR;AAEH,SAAS,EAAe,GAAa;AAEjC,QAAa,KAA+D,EAAO,WAA0C;;AAEjI,SAAS,EAAW,GAAO;AACvB,QAAO,KAAS,EAAW,EAAM,KAAK,IAAI,EAAW,EAAM,MAAM,IAAI,EAAW,EAAM,SAAS;;AAEnG,SAAS,EAAa,GAAO;AACzB,QAAQ,KAAS,aAAiB,KAAgB,EAAW,EAAM,IAAI,EAAe,EAAM"}
@@ -0,0 +1,117 @@
1
+ import { __extends as e } from "../../../node_modules/tslib/tslib.es6.js";
2
+ import { isFunction as t } from "./util/isFunction.js";
3
+ import { Subscription as n, isSubscription as r } from "./Subscription.js";
4
+ import { config as i } from "./config.js";
5
+ import { timeoutProvider as a } from "./scheduler/timeoutProvider.js";
6
+ import { reportUnhandledError as o } from "./util/reportUnhandledError.js";
7
+ import { noop as s } from "./util/noop.js";
8
+ import { COMPLETE_NOTIFICATION as c, errorNotification as l, nextNotification as u } from "./NotificationFactories.js";
9
+ import { captureError as d } from "./util/errorContext.js";
10
+ //#region node_modules/rxjs/dist/esm5/internal/Subscriber.js
11
+ var f = function(t) {
12
+ e(n, t);
13
+ function n(e) {
14
+ var n = t.call(this) || this;
15
+ return n.isStopped = !1, e ? (n.destination = e, r(e) && e.add(n)) : n.destination = b, n;
16
+ }
17
+ return n.create = function(e, t, n) {
18
+ return new g(e, t, n);
19
+ }, n.prototype.next = function(e) {
20
+ this.isStopped ? y(u(e), this) : this._next(e);
21
+ }, n.prototype.error = function(e) {
22
+ this.isStopped ? y(l(e), this) : (this.isStopped = !0, this._error(e));
23
+ }, n.prototype.complete = function() {
24
+ this.isStopped ? y(c, this) : (this.isStopped = !0, this._complete());
25
+ }, n.prototype.unsubscribe = function() {
26
+ this.closed || (this.isStopped = !0, t.prototype.unsubscribe.call(this), this.destination = null);
27
+ }, n.prototype._next = function(e) {
28
+ this.destination.next(e);
29
+ }, n.prototype._error = function(e) {
30
+ try {
31
+ this.destination.error(e);
32
+ } finally {
33
+ this.unsubscribe();
34
+ }
35
+ }, n.prototype._complete = function() {
36
+ try {
37
+ this.destination.complete();
38
+ } finally {
39
+ this.unsubscribe();
40
+ }
41
+ }, n;
42
+ }(n), p = Function.prototype.bind;
43
+ function m(e, t) {
44
+ return p.call(e, t);
45
+ }
46
+ var h = function() {
47
+ function e(e) {
48
+ this.partialObserver = e;
49
+ }
50
+ return e.prototype.next = function(e) {
51
+ var t = this.partialObserver;
52
+ if (t.next) try {
53
+ t.next(e);
54
+ } catch (e) {
55
+ _(e);
56
+ }
57
+ }, e.prototype.error = function(e) {
58
+ var t = this.partialObserver;
59
+ if (t.error) try {
60
+ t.error(e);
61
+ } catch (e) {
62
+ _(e);
63
+ }
64
+ else _(e);
65
+ }, e.prototype.complete = function() {
66
+ var e = this.partialObserver;
67
+ if (e.complete) try {
68
+ e.complete();
69
+ } catch (e) {
70
+ _(e);
71
+ }
72
+ }, e;
73
+ }(), g = function(n) {
74
+ e(r, n);
75
+ function r(e, r, a) {
76
+ var o = n.call(this) || this, s;
77
+ if (t(e) || !e) s = {
78
+ next: e ?? void 0,
79
+ error: r ?? void 0,
80
+ complete: a ?? void 0
81
+ };
82
+ else {
83
+ var c;
84
+ o && i.useDeprecatedNextContext ? (c = Object.create(e), c.unsubscribe = function() {
85
+ return o.unsubscribe();
86
+ }, s = {
87
+ next: e.next && m(e.next, c),
88
+ error: e.error && m(e.error, c),
89
+ complete: e.complete && m(e.complete, c)
90
+ }) : s = e;
91
+ }
92
+ return o.destination = new h(s), o;
93
+ }
94
+ return r;
95
+ }(f);
96
+ function _(e) {
97
+ i.useDeprecatedSynchronousErrorHandling ? d(e) : o(e);
98
+ }
99
+ function v(e) {
100
+ throw e;
101
+ }
102
+ function y(e, t) {
103
+ var n = i.onStoppedNotification;
104
+ n && a.setTimeout(function() {
105
+ return n(e, t);
106
+ });
107
+ }
108
+ var b = {
109
+ closed: !0,
110
+ next: s,
111
+ error: v,
112
+ complete: s
113
+ };
114
+ //#endregion
115
+ export { g as SafeSubscriber, f as Subscriber };
116
+
117
+ //# sourceMappingURL=Subscriber.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Subscriber.js","names":[],"sources":["../../../../../../node_modules/rxjs/dist/esm5/internal/Subscriber.js"],"sourcesContent":["import { __extends } from \"tslib\";\nimport { isFunction } from './util/isFunction';\nimport { isSubscription, Subscription } from './Subscription';\nimport { config } from './config';\nimport { reportUnhandledError } from './util/reportUnhandledError';\nimport { noop } from './util/noop';\nimport { nextNotification, errorNotification, COMPLETE_NOTIFICATION } from './NotificationFactories';\nimport { timeoutProvider } from './scheduler/timeoutProvider';\nimport { captureError } from './util/errorContext';\nvar Subscriber = (function (_super) {\n __extends(Subscriber, _super);\n function Subscriber(destination) {\n var _this = _super.call(this) || this;\n _this.isStopped = false;\n if (destination) {\n _this.destination = destination;\n if (isSubscription(destination)) {\n destination.add(_this);\n }\n }\n else {\n _this.destination = EMPTY_OBSERVER;\n }\n return _this;\n }\n Subscriber.create = function (next, error, complete) {\n return new SafeSubscriber(next, error, complete);\n };\n Subscriber.prototype.next = function (value) {\n if (this.isStopped) {\n handleStoppedNotification(nextNotification(value), this);\n }\n else {\n this._next(value);\n }\n };\n Subscriber.prototype.error = function (err) {\n if (this.isStopped) {\n handleStoppedNotification(errorNotification(err), this);\n }\n else {\n this.isStopped = true;\n this._error(err);\n }\n };\n Subscriber.prototype.complete = function () {\n if (this.isStopped) {\n handleStoppedNotification(COMPLETE_NOTIFICATION, this);\n }\n else {\n this.isStopped = true;\n this._complete();\n }\n };\n Subscriber.prototype.unsubscribe = function () {\n if (!this.closed) {\n this.isStopped = true;\n _super.prototype.unsubscribe.call(this);\n this.destination = null;\n }\n };\n Subscriber.prototype._next = function (value) {\n this.destination.next(value);\n };\n Subscriber.prototype._error = function (err) {\n try {\n this.destination.error(err);\n }\n finally {\n this.unsubscribe();\n }\n };\n Subscriber.prototype._complete = function () {\n try {\n this.destination.complete();\n }\n finally {\n this.unsubscribe();\n }\n };\n return Subscriber;\n}(Subscription));\nexport { Subscriber };\nvar _bind = Function.prototype.bind;\nfunction bind(fn, thisArg) {\n return _bind.call(fn, thisArg);\n}\nvar ConsumerObserver = (function () {\n function ConsumerObserver(partialObserver) {\n this.partialObserver = partialObserver;\n }\n ConsumerObserver.prototype.next = function (value) {\n var partialObserver = this.partialObserver;\n if (partialObserver.next) {\n try {\n partialObserver.next(value);\n }\n catch (error) {\n handleUnhandledError(error);\n }\n }\n };\n ConsumerObserver.prototype.error = function (err) {\n var partialObserver = this.partialObserver;\n if (partialObserver.error) {\n try {\n partialObserver.error(err);\n }\n catch (error) {\n handleUnhandledError(error);\n }\n }\n else {\n handleUnhandledError(err);\n }\n };\n ConsumerObserver.prototype.complete = function () {\n var partialObserver = this.partialObserver;\n if (partialObserver.complete) {\n try {\n partialObserver.complete();\n }\n catch (error) {\n handleUnhandledError(error);\n }\n }\n };\n return ConsumerObserver;\n}());\nvar SafeSubscriber = (function (_super) {\n __extends(SafeSubscriber, _super);\n function SafeSubscriber(observerOrNext, error, complete) {\n var _this = _super.call(this) || this;\n var partialObserver;\n if (isFunction(observerOrNext) || !observerOrNext) {\n partialObserver = {\n next: (observerOrNext !== null && observerOrNext !== void 0 ? observerOrNext : undefined),\n error: error !== null && error !== void 0 ? error : undefined,\n complete: complete !== null && complete !== void 0 ? complete : undefined,\n };\n }\n else {\n var context_1;\n if (_this && config.useDeprecatedNextContext) {\n context_1 = Object.create(observerOrNext);\n context_1.unsubscribe = function () { return _this.unsubscribe(); };\n partialObserver = {\n next: observerOrNext.next && bind(observerOrNext.next, context_1),\n error: observerOrNext.error && bind(observerOrNext.error, context_1),\n complete: observerOrNext.complete && bind(observerOrNext.complete, context_1),\n };\n }\n else {\n partialObserver = observerOrNext;\n }\n }\n _this.destination = new ConsumerObserver(partialObserver);\n return _this;\n }\n return SafeSubscriber;\n}(Subscriber));\nexport { SafeSubscriber };\nfunction handleUnhandledError(error) {\n if (config.useDeprecatedSynchronousErrorHandling) {\n captureError(error);\n }\n else {\n reportUnhandledError(error);\n }\n}\nfunction defaultErrorHandler(err) {\n throw err;\n}\nfunction handleStoppedNotification(notification, subscriber) {\n var onStoppedNotification = config.onStoppedNotification;\n onStoppedNotification && timeoutProvider.setTimeout(function () { return onStoppedNotification(notification, subscriber); });\n}\nexport var EMPTY_OBSERVER = {\n closed: true,\n next: noop,\n error: defaultErrorHandler,\n complete: noop,\n};\n//# sourceMappingURL=Subscriber.js.map"],"x_google_ignoreList":[0],"mappings":"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"}
@@ -0,0 +1,93 @@
1
+ import { __read as e, __spreadArray as t, __values as n } from "../../../node_modules/tslib/tslib.es6.js";
2
+ import { isFunction as r } from "./util/isFunction.js";
3
+ import { UnsubscriptionError as i } from "./util/UnsubscriptionError.js";
4
+ import { arrRemove as a } from "./util/arrRemove.js";
5
+ //#region node_modules/rxjs/dist/esm5/internal/Subscription.js
6
+ var o = function() {
7
+ function o(e) {
8
+ this.initialTeardown = e, this.closed = !1, this._parentage = null, this._finalizers = null;
9
+ }
10
+ return o.prototype.unsubscribe = function() {
11
+ var a, o, s, l, u;
12
+ if (!this.closed) {
13
+ this.closed = !0;
14
+ var d = this._parentage;
15
+ if (d) if (this._parentage = null, Array.isArray(d)) try {
16
+ for (var f = n(d), p = f.next(); !p.done; p = f.next()) p.value.remove(this);
17
+ } catch (e) {
18
+ a = { error: e };
19
+ } finally {
20
+ try {
21
+ p && !p.done && (o = f.return) && o.call(f);
22
+ } finally {
23
+ if (a) throw a.error;
24
+ }
25
+ }
26
+ else d.remove(this);
27
+ var m = this.initialTeardown;
28
+ if (r(m)) try {
29
+ m();
30
+ } catch (e) {
31
+ u = e instanceof i ? e.errors : [e];
32
+ }
33
+ var h = this._finalizers;
34
+ if (h) {
35
+ this._finalizers = null;
36
+ try {
37
+ for (var g = n(h), _ = g.next(); !_.done; _ = g.next()) {
38
+ var v = _.value;
39
+ try {
40
+ c(v);
41
+ } catch (n) {
42
+ u ??= [], n instanceof i ? u = t(t([], e(u)), e(n.errors)) : u.push(n);
43
+ }
44
+ }
45
+ } catch (e) {
46
+ s = { error: e };
47
+ } finally {
48
+ try {
49
+ _ && !_.done && (l = g.return) && l.call(g);
50
+ } finally {
51
+ if (s) throw s.error;
52
+ }
53
+ }
54
+ }
55
+ if (u) throw new i(u);
56
+ }
57
+ }, o.prototype.add = function(e) {
58
+ if (e && e !== this) if (this.closed) c(e);
59
+ else {
60
+ if (e instanceof o) {
61
+ if (e.closed || e._hasParent(this)) return;
62
+ e._addParent(this);
63
+ }
64
+ (this._finalizers = this._finalizers ?? []).push(e);
65
+ }
66
+ }, o.prototype._hasParent = function(e) {
67
+ var t = this._parentage;
68
+ return t === e || Array.isArray(t) && t.includes(e);
69
+ }, o.prototype._addParent = function(e) {
70
+ var t = this._parentage;
71
+ this._parentage = Array.isArray(t) ? (t.push(e), t) : t ? [t, e] : e;
72
+ }, o.prototype._removeParent = function(e) {
73
+ var t = this._parentage;
74
+ t === e ? this._parentage = null : Array.isArray(t) && a(t, e);
75
+ }, o.prototype.remove = function(e) {
76
+ var t = this._finalizers;
77
+ t && a(t, e), e instanceof o && e._removeParent(this);
78
+ }, o.EMPTY = (function() {
79
+ var e = new o();
80
+ return e.closed = !0, e;
81
+ })(), o;
82
+ }();
83
+ o.EMPTY;
84
+ function s(e) {
85
+ return e instanceof o || e && "closed" in e && r(e.remove) && r(e.add) && r(e.unsubscribe);
86
+ }
87
+ function c(e) {
88
+ r(e) ? e() : e.unsubscribe();
89
+ }
90
+ //#endregion
91
+ export { o as Subscription, s as isSubscription };
92
+
93
+ //# sourceMappingURL=Subscription.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Subscription.js","names":[],"sources":["../../../../../../node_modules/rxjs/dist/esm5/internal/Subscription.js"],"sourcesContent":["import { __read, __spreadArray, __values } from \"tslib\";\nimport { isFunction } from './util/isFunction';\nimport { UnsubscriptionError } from './util/UnsubscriptionError';\nimport { arrRemove } from './util/arrRemove';\nvar Subscription = (function () {\n function Subscription(initialTeardown) {\n this.initialTeardown = initialTeardown;\n this.closed = false;\n this._parentage = null;\n this._finalizers = null;\n }\n Subscription.prototype.unsubscribe = function () {\n var e_1, _a, e_2, _b;\n var errors;\n if (!this.closed) {\n this.closed = true;\n var _parentage = this._parentage;\n if (_parentage) {\n this._parentage = null;\n if (Array.isArray(_parentage)) {\n try {\n for (var _parentage_1 = __values(_parentage), _parentage_1_1 = _parentage_1.next(); !_parentage_1_1.done; _parentage_1_1 = _parentage_1.next()) {\n var parent_1 = _parentage_1_1.value;\n parent_1.remove(this);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_parentage_1_1 && !_parentage_1_1.done && (_a = _parentage_1.return)) _a.call(_parentage_1);\n }\n finally { if (e_1) throw e_1.error; }\n }\n }\n else {\n _parentage.remove(this);\n }\n }\n var initialFinalizer = this.initialTeardown;\n if (isFunction(initialFinalizer)) {\n try {\n initialFinalizer();\n }\n catch (e) {\n errors = e instanceof UnsubscriptionError ? e.errors : [e];\n }\n }\n var _finalizers = this._finalizers;\n if (_finalizers) {\n this._finalizers = null;\n try {\n for (var _finalizers_1 = __values(_finalizers), _finalizers_1_1 = _finalizers_1.next(); !_finalizers_1_1.done; _finalizers_1_1 = _finalizers_1.next()) {\n var finalizer = _finalizers_1_1.value;\n try {\n execFinalizer(finalizer);\n }\n catch (err) {\n errors = errors !== null && errors !== void 0 ? errors : [];\n if (err instanceof UnsubscriptionError) {\n errors = __spreadArray(__spreadArray([], __read(errors)), __read(err.errors));\n }\n else {\n errors.push(err);\n }\n }\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (_finalizers_1_1 && !_finalizers_1_1.done && (_b = _finalizers_1.return)) _b.call(_finalizers_1);\n }\n finally { if (e_2) throw e_2.error; }\n }\n }\n if (errors) {\n throw new UnsubscriptionError(errors);\n }\n }\n };\n Subscription.prototype.add = function (teardown) {\n var _a;\n if (teardown && teardown !== this) {\n if (this.closed) {\n execFinalizer(teardown);\n }\n else {\n if (teardown instanceof Subscription) {\n if (teardown.closed || teardown._hasParent(this)) {\n return;\n }\n teardown._addParent(this);\n }\n (this._finalizers = (_a = this._finalizers) !== null && _a !== void 0 ? _a : []).push(teardown);\n }\n }\n };\n Subscription.prototype._hasParent = function (parent) {\n var _parentage = this._parentage;\n return _parentage === parent || (Array.isArray(_parentage) && _parentage.includes(parent));\n };\n Subscription.prototype._addParent = function (parent) {\n var _parentage = this._parentage;\n this._parentage = Array.isArray(_parentage) ? (_parentage.push(parent), _parentage) : _parentage ? [_parentage, parent] : parent;\n };\n Subscription.prototype._removeParent = function (parent) {\n var _parentage = this._parentage;\n if (_parentage === parent) {\n this._parentage = null;\n }\n else if (Array.isArray(_parentage)) {\n arrRemove(_parentage, parent);\n }\n };\n Subscription.prototype.remove = function (teardown) {\n var _finalizers = this._finalizers;\n _finalizers && arrRemove(_finalizers, teardown);\n if (teardown instanceof Subscription) {\n teardown._removeParent(this);\n }\n };\n Subscription.EMPTY = (function () {\n var empty = new Subscription();\n empty.closed = true;\n return empty;\n })();\n return Subscription;\n}());\nexport { Subscription };\nexport var EMPTY_SUBSCRIPTION = Subscription.EMPTY;\nexport function isSubscription(value) {\n return (value instanceof Subscription ||\n (value && 'closed' in value && isFunction(value.remove) && isFunction(value.add) && isFunction(value.unsubscribe)));\n}\nfunction execFinalizer(finalizer) {\n if (isFunction(finalizer)) {\n finalizer();\n }\n else {\n finalizer.unsubscribe();\n }\n}\n//# sourceMappingURL=Subscription.js.map"],"x_google_ignoreList":[0],"mappings":"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"}
@@ -0,0 +1,12 @@
1
+ //#region node_modules/rxjs/dist/esm5/internal/config.js
2
+ var e = {
3
+ onUnhandledError: null,
4
+ onStoppedNotification: null,
5
+ Promise: void 0,
6
+ useDeprecatedSynchronousErrorHandling: !1,
7
+ useDeprecatedNextContext: !1
8
+ };
9
+ //#endregion
10
+ export { e as config };
11
+
12
+ //# sourceMappingURL=config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.js","names":[],"sources":["../../../../../../node_modules/rxjs/dist/esm5/internal/config.js"],"sourcesContent":["export var config = {\n onUnhandledError: null,\n onStoppedNotification: null,\n Promise: undefined,\n useDeprecatedSynchronousErrorHandling: false,\n useDeprecatedNextContext: false,\n};\n//# sourceMappingURL=config.js.map"],"x_google_ignoreList":[0],"mappings":";AAAA,IAAW,IAAS;CAChB,kBAAkB;CAClB,uBAAuB;CACvB,SAAS,KAAA;CACT,uCAAuC;CACvC,0BAA0B;CAC7B"}
@@ -0,0 +1,9 @@
1
+ import { Observable as e } from "../Observable.js";
2
+ //#region node_modules/rxjs/dist/esm5/internal/observable/empty.js
3
+ var t = new e(function(e) {
4
+ return e.complete();
5
+ });
6
+ //#endregion
7
+ export { t as EMPTY };
8
+
9
+ //# sourceMappingURL=empty.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"empty.js","names":[],"sources":["../../../../../../../node_modules/rxjs/dist/esm5/internal/observable/empty.js"],"sourcesContent":["import { Observable } from '../Observable';\nexport var EMPTY = new Observable(function (subscriber) { return subscriber.complete(); });\nexport function empty(scheduler) {\n return scheduler ? emptyScheduled(scheduler) : EMPTY;\n}\nfunction emptyScheduled(scheduler) {\n return new Observable(function (subscriber) { return scheduler.schedule(function () { return subscriber.complete(); }); });\n}\n//# sourceMappingURL=empty.js.map"],"x_google_ignoreList":[0],"mappings":";;AACA,IAAW,IAAQ,IAAI,EAAW,SAAU,GAAY;AAAE,QAAO,EAAW,UAAU;EAAI"}
@@ -0,0 +1,16 @@
1
+ import { __read as e, __spreadArray as t } from "../../../../node_modules/tslib/tslib.es6.js";
2
+ //#region node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.js
3
+ var n = {
4
+ setTimeout: function(r, i) {
5
+ var a = [...arguments].slice(2), o = n.delegate;
6
+ return o?.setTimeout ? o.setTimeout.apply(o, t([r, i], e(a))) : setTimeout.apply(void 0, t([r, i], e(a)));
7
+ },
8
+ clearTimeout: function(e) {
9
+ return (n.delegate?.clearTimeout || clearTimeout)(e);
10
+ },
11
+ delegate: void 0
12
+ };
13
+ //#endregion
14
+ export { n as timeoutProvider };
15
+
16
+ //# sourceMappingURL=timeoutProvider.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"timeoutProvider.js","names":[],"sources":["../../../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.js"],"sourcesContent":["import { __read, __spreadArray } from \"tslib\";\nexport var timeoutProvider = {\n setTimeout: function (handler, timeout) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n var delegate = timeoutProvider.delegate;\n if (delegate === null || delegate === void 0 ? void 0 : delegate.setTimeout) {\n return delegate.setTimeout.apply(delegate, __spreadArray([handler, timeout], __read(args)));\n }\n return setTimeout.apply(void 0, __spreadArray([handler, timeout], __read(args)));\n },\n clearTimeout: function (handle) {\n var delegate = timeoutProvider.delegate;\n return ((delegate === null || delegate === void 0 ? void 0 : delegate.clearTimeout) || clearTimeout)(handle);\n },\n delegate: undefined,\n};\n//# sourceMappingURL=timeoutProvider.js.map"],"x_google_ignoreList":[0],"mappings":";;AACA,IAAW,IAAkB;CACzB,YAAY,SAAU,GAAS,GAAS;EAE/B,IADD,QAEe,qBAEf,IAAW,EAAgB;AAI/B,SAHI,GAA6D,aACtD,EAAS,WAAW,MAAM,GAAU,EAAc,CAAC,GAAS,EAAQ,EAAE,EAAO,EAAK,CAAC,CAAC,GAExF,WAAW,MAAM,KAAK,GAAG,EAAc,CAAC,GAAS,EAAQ,EAAE,EAAO,EAAK,CAAC,CAAC;;CAEpF,cAAc,SAAU,GAAQ;AAE5B,UADe,EAAgB,UACuC,gBAAiB,cAAc,EAAO;;CAEhH,UAAU,KAAA;CACb"}
@@ -0,0 +1,8 @@
1
+ //#region node_modules/rxjs/dist/esm5/internal/symbol/observable.js
2
+ var e = (function() {
3
+ return typeof Symbol == "function" && Symbol.observable || "@@observable";
4
+ })();
5
+ //#endregion
6
+ export { e as observable };
7
+
8
+ //# sourceMappingURL=observable.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"observable.js","names":[],"sources":["../../../../../../../node_modules/rxjs/dist/esm5/internal/symbol/observable.js"],"sourcesContent":["export var observable = (function () { return (typeof Symbol === 'function' && Symbol.observable) || '@@observable'; })();\n//# sourceMappingURL=observable.js.map"],"x_google_ignoreList":[0],"mappings":";AAAA,IAAW,KAAc,WAAY;AAAE,QAAQ,OAAO,UAAW,cAAc,OAAO,cAAe;IAAoB"}
@@ -0,0 +1,13 @@
1
+ import { createErrorClass as e } from "./createErrorClass.js";
2
+ //#region node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js
3
+ var t = e(function(e) {
4
+ return function(t) {
5
+ e(this), this.message = t ? t.length + " errors occurred during unsubscription:\n" + t.map(function(e, t) {
6
+ return t + 1 + ") " + e.toString();
7
+ }).join("\n ") : "", this.name = "UnsubscriptionError", this.errors = t;
8
+ };
9
+ });
10
+ //#endregion
11
+ export { t as UnsubscriptionError };
12
+
13
+ //# sourceMappingURL=UnsubscriptionError.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnsubscriptionError.js","names":[],"sources":["../../../../../../../node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js"],"sourcesContent":["import { createErrorClass } from './createErrorClass';\nexport var UnsubscriptionError = createErrorClass(function (_super) {\n return function UnsubscriptionErrorImpl(errors) {\n _super(this);\n this.message = errors\n ? errors.length + \" errors occurred during unsubscription:\\n\" + errors.map(function (err, i) { return i + 1 + \") \" + err.toString(); }).join('\\n ')\n : '';\n this.name = 'UnsubscriptionError';\n this.errors = errors;\n };\n});\n//# sourceMappingURL=UnsubscriptionError.js.map"],"x_google_ignoreList":[0],"mappings":";;AACA,IAAW,IAAsB,EAAiB,SAAU,GAAQ;AAChE,QAAO,SAAiC,GAAQ;AAM5C,EALA,EAAO,KAAK,EACZ,KAAK,UAAU,IACT,EAAO,SAAS,8CAA8C,EAAO,IAAI,SAAU,GAAK,GAAG;AAAE,UAAO,IAAI,IAAI,OAAO,EAAI,UAAU;IAAI,CAAC,KAAK,OAAO,GAClJ,IACN,KAAK,OAAO,uBACZ,KAAK,SAAS;;EAEpB"}
@@ -0,0 +1,11 @@
1
+ //#region node_modules/rxjs/dist/esm5/internal/util/arrRemove.js
2
+ function e(e, t) {
3
+ if (e) {
4
+ var n = e.indexOf(t);
5
+ 0 <= n && e.splice(n, 1);
6
+ }
7
+ }
8
+ //#endregion
9
+ export { e as arrRemove };
10
+
11
+ //# sourceMappingURL=arrRemove.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"arrRemove.js","names":[],"sources":["../../../../../../../node_modules/rxjs/dist/esm5/internal/util/arrRemove.js"],"sourcesContent":["export function arrRemove(arr, item) {\n if (arr) {\n var index = arr.indexOf(item);\n 0 <= index && arr.splice(index, 1);\n }\n}\n//# sourceMappingURL=arrRemove.js.map"],"x_google_ignoreList":[0],"mappings":";AAAA,SAAgB,EAAU,GAAK,GAAM;AACjC,KAAI,GAAK;EACL,IAAI,IAAQ,EAAI,QAAQ,EAAK;AAC7B,OAAK,KAAS,EAAI,OAAO,GAAO,EAAE"}
@@ -0,0 +1,11 @@
1
+ //#region node_modules/rxjs/dist/esm5/internal/util/createErrorClass.js
2
+ function e(e) {
3
+ var t = e(function(e) {
4
+ Error.call(e), e.stack = (/* @__PURE__ */ Error()).stack;
5
+ });
6
+ return t.prototype = Object.create(Error.prototype), t.prototype.constructor = t, t;
7
+ }
8
+ //#endregion
9
+ export { e as createErrorClass };
10
+
11
+ //# sourceMappingURL=createErrorClass.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createErrorClass.js","names":[],"sources":["../../../../../../../node_modules/rxjs/dist/esm5/internal/util/createErrorClass.js"],"sourcesContent":["export function createErrorClass(createImpl) {\n var _super = function (instance) {\n Error.call(instance);\n instance.stack = new Error().stack;\n };\n var ctorFunc = createImpl(_super);\n ctorFunc.prototype = Object.create(Error.prototype);\n ctorFunc.prototype.constructor = ctorFunc;\n return ctorFunc;\n}\n//# sourceMappingURL=createErrorClass.js.map"],"x_google_ignoreList":[0],"mappings":";AAAA,SAAgB,EAAiB,GAAY;CAKzC,IAAI,IAAW,EAJF,SAAU,GAAU;AAE7B,EADA,MAAM,KAAK,EAAS,EACpB,EAAS,SAAQ,gBAAI,OAAO,EAAC;GAEA;AAGjC,QAFA,EAAS,YAAY,OAAO,OAAO,MAAM,UAAU,EACnD,EAAS,UAAU,cAAc,GAC1B"}
@@ -0,0 +1,22 @@
1
+ import { config as e } from "../config.js";
2
+ //#region node_modules/rxjs/dist/esm5/internal/util/errorContext.js
3
+ var t = null;
4
+ function n(n) {
5
+ if (e.useDeprecatedSynchronousErrorHandling) {
6
+ var r = !t;
7
+ if (r && (t = {
8
+ errorThrown: !1,
9
+ error: null
10
+ }), n(), r) {
11
+ var i = t, a = i.errorThrown, o = i.error;
12
+ if (t = null, a) throw o;
13
+ }
14
+ } else n();
15
+ }
16
+ function r(n) {
17
+ e.useDeprecatedSynchronousErrorHandling && t && (t.errorThrown = !0, t.error = n);
18
+ }
19
+ //#endregion
20
+ export { r as captureError, n as errorContext };
21
+
22
+ //# sourceMappingURL=errorContext.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"errorContext.js","names":[],"sources":["../../../../../../../node_modules/rxjs/dist/esm5/internal/util/errorContext.js"],"sourcesContent":["import { config } from '../config';\nvar context = null;\nexport function errorContext(cb) {\n if (config.useDeprecatedSynchronousErrorHandling) {\n var isRoot = !context;\n if (isRoot) {\n context = { errorThrown: false, error: null };\n }\n cb();\n if (isRoot) {\n var _a = context, errorThrown = _a.errorThrown, error = _a.error;\n context = null;\n if (errorThrown) {\n throw error;\n }\n }\n }\n else {\n cb();\n }\n}\nexport function captureError(err) {\n if (config.useDeprecatedSynchronousErrorHandling && context) {\n context.errorThrown = true;\n context.error = err;\n }\n}\n//# sourceMappingURL=errorContext.js.map"],"x_google_ignoreList":[0],"mappings":";;AACA,IAAI,IAAU;AACd,SAAgB,EAAa,GAAI;AAC7B,KAAI,EAAO,uCAAuC;EAC9C,IAAI,IAAS,CAAC;AAKd,MAJI,MACA,IAAU;GAAE,aAAa;GAAO,OAAO;GAAM,GAEjD,GAAI,EACA,GAAQ;GACR,IAAI,IAAK,GAAS,IAAc,EAAG,aAAa,IAAQ,EAAG;AAE3D,OADA,IAAU,MACN,EACA,OAAM;;OAKd,IAAI;;AAGZ,SAAgB,EAAa,GAAK;AAC9B,CAAI,EAAO,yCAAyC,MAChD,EAAQ,cAAc,IACtB,EAAQ,QAAQ"}
@@ -0,0 +1,8 @@
1
+ //#region node_modules/rxjs/dist/esm5/internal/util/identity.js
2
+ function e(e) {
3
+ return e;
4
+ }
5
+ //#endregion
6
+ export { e as identity };
7
+
8
+ //# sourceMappingURL=identity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"identity.js","names":[],"sources":["../../../../../../../node_modules/rxjs/dist/esm5/internal/util/identity.js"],"sourcesContent":["export function identity(x) {\n return x;\n}\n//# sourceMappingURL=identity.js.map"],"x_google_ignoreList":[0],"mappings":";AAAA,SAAgB,EAAS,GAAG;AACxB,QAAO"}
@@ -0,0 +1,8 @@
1
+ //#region node_modules/rxjs/dist/esm5/internal/util/isFunction.js
2
+ function e(e) {
3
+ return typeof e == "function";
4
+ }
5
+ //#endregion
6
+ export { e as isFunction };
7
+
8
+ //# sourceMappingURL=isFunction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"isFunction.js","names":[],"sources":["../../../../../../../node_modules/rxjs/dist/esm5/internal/util/isFunction.js"],"sourcesContent":["export function isFunction(value) {\n return typeof value === 'function';\n}\n//# sourceMappingURL=isFunction.js.map"],"x_google_ignoreList":[0],"mappings":";AAAA,SAAgB,EAAW,GAAO;AAC9B,QAAO,OAAO,KAAU"}
@@ -0,0 +1,6 @@
1
+ //#region node_modules/rxjs/dist/esm5/internal/util/noop.js
2
+ function e() {}
3
+ //#endregion
4
+ export { e as noop };
5
+
6
+ //# sourceMappingURL=noop.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"noop.js","names":[],"sources":["../../../../../../../node_modules/rxjs/dist/esm5/internal/util/noop.js"],"sourcesContent":["export function noop() { }\n//# sourceMappingURL=noop.js.map"],"x_google_ignoreList":[0],"mappings":";AAAA,SAAgB,IAAO"}
@@ -0,0 +1,13 @@
1
+ import { identity as e } from "./identity.js";
2
+ //#region node_modules/rxjs/dist/esm5/internal/util/pipe.js
3
+ function t(t) {
4
+ return t.length === 0 ? e : t.length === 1 ? t[0] : function(e) {
5
+ return t.reduce(function(e, t) {
6
+ return t(e);
7
+ }, e);
8
+ };
9
+ }
10
+ //#endregion
11
+ export { t as pipeFromArray };
12
+
13
+ //# sourceMappingURL=pipe.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pipe.js","names":[],"sources":["../../../../../../../node_modules/rxjs/dist/esm5/internal/util/pipe.js"],"sourcesContent":["import { identity } from './identity';\nexport function pipe() {\n var fns = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n fns[_i] = arguments[_i];\n }\n return pipeFromArray(fns);\n}\nexport function pipeFromArray(fns) {\n if (fns.length === 0) {\n return identity;\n }\n if (fns.length === 1) {\n return fns[0];\n }\n return function piped(input) {\n return fns.reduce(function (prev, fn) { return fn(prev); }, input);\n };\n}\n//# sourceMappingURL=pipe.js.map"],"x_google_ignoreList":[0],"mappings":";;AAQA,SAAgB,EAAc,GAAK;AAO/B,QANI,EAAI,WAAW,IACR,IAEP,EAAI,WAAW,IACR,EAAI,KAER,SAAe,GAAO;AACzB,SAAO,EAAI,OAAO,SAAU,GAAM,GAAI;AAAE,UAAO,EAAG,EAAK;KAAK,EAAM"}
@@ -0,0 +1,14 @@
1
+ import { config as e } from "../config.js";
2
+ import { timeoutProvider as t } from "../scheduler/timeoutProvider.js";
3
+ //#region node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.js
4
+ function n(n) {
5
+ t.setTimeout(function() {
6
+ var t = e.onUnhandledError;
7
+ if (t) t(n);
8
+ else throw n;
9
+ });
10
+ }
11
+ //#endregion
12
+ export { n as reportUnhandledError };
13
+
14
+ //# sourceMappingURL=reportUnhandledError.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reportUnhandledError.js","names":[],"sources":["../../../../../../../node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.js"],"sourcesContent":["import { config } from '../config';\nimport { timeoutProvider } from '../scheduler/timeoutProvider';\nexport function reportUnhandledError(err) {\n timeoutProvider.setTimeout(function () {\n var onUnhandledError = config.onUnhandledError;\n if (onUnhandledError) {\n onUnhandledError(err);\n }\n else {\n throw err;\n }\n });\n}\n//# sourceMappingURL=reportUnhandledError.js.map"],"x_google_ignoreList":[0],"mappings":";;;AAEA,SAAgB,EAAqB,GAAK;AACtC,GAAgB,WAAW,WAAY;EACnC,IAAI,IAAmB,EAAO;AAC9B,MAAI,EACA,GAAiB,EAAI;MAGrB,OAAM;GAEZ"}
@@ -0,0 +1,52 @@
1
+ //#region node_modules/rxjs/node_modules/tslib/tslib.es6.mjs
2
+ var e = function(t, n) {
3
+ return e = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(e, t) {
4
+ e.__proto__ = t;
5
+ } || function(e, t) {
6
+ for (var n in t) Object.prototype.hasOwnProperty.call(t, n) && (e[n] = t[n]);
7
+ }, e(t, n);
8
+ };
9
+ function t(t, n) {
10
+ if (typeof n != "function" && n !== null) throw TypeError("Class extends value " + String(n) + " is not a constructor or null");
11
+ e(t, n);
12
+ function r() {
13
+ this.constructor = t;
14
+ }
15
+ t.prototype = n === null ? Object.create(n) : (r.prototype = n.prototype, new r());
16
+ }
17
+ function n(e) {
18
+ var t = typeof Symbol == "function" && Symbol.iterator, n = t && e[t], r = 0;
19
+ if (n) return n.call(e);
20
+ if (e && typeof e.length == "number") return { next: function() {
21
+ return e && r >= e.length && (e = void 0), {
22
+ value: e && e[r++],
23
+ done: !e
24
+ };
25
+ } };
26
+ throw TypeError(t ? "Object is not iterable." : "Symbol.iterator is not defined.");
27
+ }
28
+ function r(e, t) {
29
+ var n = typeof Symbol == "function" && e[Symbol.iterator];
30
+ if (!n) return e;
31
+ var r = n.call(e), i, a = [], o;
32
+ try {
33
+ for (; (t === void 0 || t-- > 0) && !(i = r.next()).done;) a.push(i.value);
34
+ } catch (e) {
35
+ o = { error: e };
36
+ } finally {
37
+ try {
38
+ i && !i.done && (n = r.return) && n.call(r);
39
+ } finally {
40
+ if (o) throw o.error;
41
+ }
42
+ }
43
+ return a;
44
+ }
45
+ function i(e, t, n) {
46
+ if (n || arguments.length === 2) for (var r = 0, i = t.length, a; r < i; r++) (a || !(r in t)) && (a ||= Array.prototype.slice.call(t, 0, r), a[r] = t[r]);
47
+ return e.concat(a || Array.prototype.slice.call(t));
48
+ }
49
+ //#endregion
50
+ export { t as __extends, r as __read, i as __spreadArray, n as __values };
51
+
52
+ //# sourceMappingURL=tslib.es6.js.map