@danielsimonjr/mathts-functions 0.48.0 → 0.50.0
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.
- package/dist/geometry/alpha-shape.d.ts +36 -0
- package/dist/geometry/alpha-shape.d.ts.map +1 -0
- package/dist/geometry/delaunay.d.ts +33 -0
- package/dist/geometry/delaunay.d.ts.map +1 -0
- package/dist/geometry/hull.d.ts +53 -0
- package/dist/geometry/hull.d.ts.map +1 -0
- package/dist/geometry/spherical-voronoi.d.ts +40 -0
- package/dist/geometry/spherical-voronoi.d.ts.map +1 -0
- package/dist/geometry/voronoi.d.ts +44 -0
- package/dist/geometry/voronoi.d.ts.map +1 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +537 -145
- package/dist/special/wave-functions.d.ts +123 -0
- package/dist/special/wave-functions.d.ts.map +1 -0
- package/dist/typed/geometry.d.ts +7 -3
- package/dist/typed/geometry.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Advanced niche special functions: the Riemann–Siegel Z-function, the Lerch
|
|
3
|
+
* transcendent, the parabolic-cylinder function D_ν, and the regular Coulomb
|
|
4
|
+
* wave function F_L.
|
|
5
|
+
*
|
|
6
|
+
* These follow the same plain-exported-function pattern as `niche.ts` and
|
|
7
|
+
* `hypergeometric.ts` — pure real-valued `number -> number` math with no
|
|
8
|
+
* typed-function array/WASM dispatch overloads. Each is oracle-pinned against
|
|
9
|
+
* `mpmath` (dps=30) in `functions/tests/gap-special-wave-oracle.test.ts`.
|
|
10
|
+
*
|
|
11
|
+
* The self-contained complex-arithmetic helpers here (complex log-gamma via
|
|
12
|
+
* Lanczos, and a critical-line Borwein ζ evaluator) exist so these functions
|
|
13
|
+
* stay pure `number`-in/`number`-out and do not need the factory `zeta`
|
|
14
|
+
* (which requires a full math instance with a Complex constructor).
|
|
15
|
+
*
|
|
16
|
+
* @packageDocumentation
|
|
17
|
+
*/
|
|
18
|
+
/** 64-bit float (default for decimals) */
|
|
19
|
+
type f64 = number;
|
|
20
|
+
/**
|
|
21
|
+
* Riemann–Siegel Z-function Z(t) = e^{iθ(t)} ζ(1/2 + it), the real-valued
|
|
22
|
+
* function on the critical line whose real zeros coincide with the imaginary
|
|
23
|
+
* parts of the non-trivial zeros of ζ. Z is even: Z(−t) = Z(t), and
|
|
24
|
+
* Z(0) = ζ(1/2) ≈ −1.4603545088.
|
|
25
|
+
*
|
|
26
|
+
* Computed by evaluating ζ(1/2 + it) via the Borwein-accelerated series and
|
|
27
|
+
* the theta function via the complex log-gamma, then taking the (real) product
|
|
28
|
+
* — i.e. Z(t) = cos θ · Re ζ − sin θ · Im ζ. This exact-theta approach is
|
|
29
|
+
* accurate for all t (the classical Riemann–Siegel asymptotic expansion, by
|
|
30
|
+
* contrast, is inaccurate for the small t of the first few zeros).
|
|
31
|
+
*
|
|
32
|
+
* Verified against `mpmath.siegelz` (dps=30): relative error < 1e-11 for
|
|
33
|
+
* O(1)-magnitude values and absolute error < 1e-9 near the first zeros
|
|
34
|
+
* (t ≈ 14.13, 21.02, 25.01), for |t| up to ~40.
|
|
35
|
+
*
|
|
36
|
+
* @param t - Height on the critical line (real; any sign)
|
|
37
|
+
* @returns Z(t)
|
|
38
|
+
*
|
|
39
|
+
* @example
|
|
40
|
+
* siegelZ(15) // ~0.7199423913
|
|
41
|
+
* siegelZ(14.134725) // ~-1.12e-7 (near the first zeta zero)
|
|
42
|
+
*/
|
|
43
|
+
export declare function siegelZ(t: f64): f64;
|
|
44
|
+
/**
|
|
45
|
+
* Alias for {@link siegelZ} — the Riemann–Siegel Z-function Z(t).
|
|
46
|
+
*/
|
|
47
|
+
export declare function riemannSiegelZ(t: f64): f64;
|
|
48
|
+
/**
|
|
49
|
+
* Lerch transcendent Φ(z, s, a) = Σ_{k≥0} z^k / (a + k)^s, evaluated by its
|
|
50
|
+
* defining power series (DLMF 25.14.1), which converges for `|z| < 1` and any
|
|
51
|
+
* real `s`, provided `a > 0` (so no denominator vanishes).
|
|
52
|
+
*
|
|
53
|
+
* Analytic continuation to `|z| ≥ 1` is out of scope and throws. The boundary
|
|
54
|
+
* case Φ(1, s, a) = ζ(s, a) is the Hurwitz zeta, not implemented here.
|
|
55
|
+
*
|
|
56
|
+
* Cross-check: the polylogarithm satisfies `Li_s(z) = z · Φ(z, s, 1)`.
|
|
57
|
+
*
|
|
58
|
+
* Verified against `mpmath.lerchphi` (dps=30) to relative error < 1e-12 across
|
|
59
|
+
* real `z ∈ (−1, 1)` and assorted `s`, `a`.
|
|
60
|
+
*
|
|
61
|
+
* @param z - Argument, must satisfy `|z| < 1`
|
|
62
|
+
* @param s - Order (any real number)
|
|
63
|
+
* @param a - Offset (real, `a > 0`)
|
|
64
|
+
* @returns Φ(z, s, a)
|
|
65
|
+
* @throws {Error} If `|z| >= 1`, or if `a + k <= 0` for some term (a <= 0)
|
|
66
|
+
*
|
|
67
|
+
* @example
|
|
68
|
+
* lerchPhi(0.5, 2, 1) // ~1.1644810529 (= 2·Li_2(0.5))
|
|
69
|
+
*/
|
|
70
|
+
export declare function lerchPhi(z: f64, s: f64, a: f64): f64;
|
|
71
|
+
/**
|
|
72
|
+
* Parabolic cylinder function D_ν(x) (Whittaker's form), via the confluent
|
|
73
|
+
* hypergeometric representation (Abramowitz & Stegun 19.3.1 / DLMF 12.4.1):
|
|
74
|
+
*
|
|
75
|
+
* D_ν(x) = 2^{ν/2} e^{−x²/4} [ √π / Γ((1−ν)/2) · M(−ν/2; 1/2; x²/2)
|
|
76
|
+
* − √(2π) x / Γ(−ν/2) · M((1−ν)/2; 3/2; x²/2) ]
|
|
77
|
+
*
|
|
78
|
+
* where M = ₁F₁ is Kummer's function (`hyp1f1`). The even/odd split makes this
|
|
79
|
+
* valid for any real order ν and any real x (D_ν is entire in x); accuracy is
|
|
80
|
+
* best for moderate |x| where the ₁F₁ series converges without heavy
|
|
81
|
+
* cancellation.
|
|
82
|
+
*
|
|
83
|
+
* Verified against `mpmath.pcfd` (dps=30) to relative error < 1e-10 on a corpus
|
|
84
|
+
* of real (ν, x) with |x| ≤ ~2.
|
|
85
|
+
*
|
|
86
|
+
* @param nu - Order (real)
|
|
87
|
+
* @param x - Argument (real)
|
|
88
|
+
* @returns D_ν(x)
|
|
89
|
+
*
|
|
90
|
+
* @example
|
|
91
|
+
* parabolicCylinderD(0, 1) // ~0.7788007831 (= e^{-1/4})
|
|
92
|
+
*/
|
|
93
|
+
export declare function parabolicCylinderD(nu: f64, x: f64): f64;
|
|
94
|
+
/**
|
|
95
|
+
* Regular Coulomb wave function F_L(η, ρ), via its ascending power series
|
|
96
|
+
* (DLMF 33.6.1–33.6.2):
|
|
97
|
+
*
|
|
98
|
+
* F_L(η, ρ) = C_L(η) ρ^{L+1} Σ_{k≥0} A_k ρ^k,
|
|
99
|
+
* A_0 = 1, A_1 = η/(L+1), A_k = (2η A_{k−1} − A_{k−2}) / (k (k + 2L + 1)).
|
|
100
|
+
*
|
|
101
|
+
* The series is entire in ρ, so this converges for all ρ ≥ 0 (accuracy is best
|
|
102
|
+
* for small-to-moderate ρ before large-argument cancellation sets in). The
|
|
103
|
+
* *irregular* companion G_L is intentionally not implemented here — it requires
|
|
104
|
+
* a numerically-delicate asymptotic/continued-fraction treatment (see the
|
|
105
|
+
* module test and CHANGELOG for the surfaced design).
|
|
106
|
+
*
|
|
107
|
+
* Verified against `mpmath.coulombf` (dps=30) to relative error < 1e-6 (in
|
|
108
|
+
* practice < 1e-9 away from zeros) for L ∈ {0,1,2,3}, |η| ≤ 5, ρ ≤ 10.
|
|
109
|
+
*
|
|
110
|
+
* Special case: F_0(0, ρ) = sin ρ.
|
|
111
|
+
*
|
|
112
|
+
* @param L - Orbital angular momentum (real, `L >= 0`)
|
|
113
|
+
* @param eta - Sommerfeld parameter (real)
|
|
114
|
+
* @param rho - Radial variable (real, `rho >= 0`)
|
|
115
|
+
* @returns F_L(η, ρ)
|
|
116
|
+
* @throws {Error} If `rho < 0` or `L < 0`
|
|
117
|
+
*
|
|
118
|
+
* @example
|
|
119
|
+
* coulombF(0, 0, 1) // ~0.8414709848 (= sin 1)
|
|
120
|
+
*/
|
|
121
|
+
export declare function coulombF(L: f64, eta: f64, rho: f64): f64;
|
|
122
|
+
export {};
|
|
123
|
+
//# sourceMappingURL=wave-functions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"wave-functions.d.ts","sourceRoot":"","sources":["../../src/special/wave-functions.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAKH,0CAA0C;AAC1C,KAAK,GAAG,GAAG,MAAM,CAAC;AAyIlB;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,wBAAgB,OAAO,CAAC,CAAC,EAAE,GAAG,GAAG,GAAG,CAKnC;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,CAAC,EAAE,GAAG,GAAG,GAAG,CAE1C;AASD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAgB,QAAQ,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,GAAG,GAAG,CAiBpD;AAcD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAgB,kBAAkB,CAAC,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,GAAG,GAAG,CASvD;AAuBD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,wBAAgB,QAAQ,CAAC,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,GAAG,GAAG,CAyBxD"}
|
package/dist/typed/geometry.d.ts
CHANGED
|
@@ -61,12 +61,16 @@ export declare function triangleArea(a: number[], b: number[], c: number[]): f64
|
|
|
61
61
|
export declare function polygonArea(vertices: number[][]): f64;
|
|
62
62
|
/**
|
|
63
63
|
* Compute the convex hull of a set of 2D points using Andrew's monotone chain algorithm.
|
|
64
|
-
* Returns vertices in counter-clockwise order.
|
|
64
|
+
* Returns vertices (as coordinates) in counter-clockwise order.
|
|
65
|
+
*
|
|
66
|
+
* Internal, WASM-sort-accelerated 2-D hull. The public, structured hull API
|
|
67
|
+
* (indices + area/volume, 2-D and 3-D) is `convexHull` in
|
|
68
|
+
* `../geometry/hull.ts`.
|
|
65
69
|
*
|
|
66
70
|
* @param points - Array of [x, y] points
|
|
67
|
-
* @returns Convex hull vertices in CCW order
|
|
71
|
+
* @returns Convex hull vertices (coordinates) in CCW order
|
|
68
72
|
*/
|
|
69
|
-
export declare function
|
|
73
|
+
export declare function convexHull2D(points: number[][]): number[][];
|
|
70
74
|
/**
|
|
71
75
|
* Determine if a 2D point lies inside a polygon using the ray casting algorithm.
|
|
72
76
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"geometry.d.ts","sourceRoot":"","sources":["../../src/typed/geometry.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAUH,KAAK,GAAG,GAAG,MAAM,CAAC;AAClB,KAAK,GAAG,GAAG,MAAM,CAAC;AAYlB;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,GAAG,GAAG,CAMvD;AAED;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,GAAG,GAAG,CAMvD;AAMD;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAE1D;AAED;;;;;;GAMG;AACH,wBAAgB,KAAK,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,GAAG,CAEnD;AAMD;;;;;;;GAOG;AACH,wBAAgB,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,GAAG,CAEvE;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,GAAG,GAAG,CAUrD;AAMD
|
|
1
|
+
{"version":3,"file":"geometry.d.ts","sourceRoot":"","sources":["../../src/typed/geometry.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAUH,KAAK,GAAG,GAAG,MAAM,CAAC;AAClB,KAAK,GAAG,GAAG,MAAM,CAAC;AAYlB;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,GAAG,GAAG,CAMvD;AAED;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,GAAG,GAAG,CAMvD;AAMD;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAE1D;AAED;;;;;;GAMG;AACH,wBAAgB,KAAK,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,GAAG,CAEnD;AAMD;;;;;;;GAOG;AACH,wBAAgB,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,GAAG,CAEvE;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,GAAG,GAAG,CAUrD;AAMD;;;;;;;;;;GAUG;AACH,wBAAgB,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,GAAG,MAAM,EAAE,EAAE,CA0D3D;AAED;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE,GAAG,OAAO,CAkB5E;AAMD;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,GAAG,GAAG,MAAM,EAAE,CAIhE;AAED;;;;;;;GAOG;AACH,wBAAgB,cAAc,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,GAAG,GAAG,MAAM,EAAE,CAahF;AAED;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAMrE;AAED;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAMnE;AAMD;;GAEG;AACH,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,GAAG,CAExD;AAED;;GAEG;AACH,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,GAAG,CAExD;AAED;;GAEG;AACH,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,GAAG,CAOxD;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CACnC,KAAK,EAAE,MAAM,EAAE,EACf,SAAS,EAAE,MAAM,EAAE,EACnB,OAAO,EAAE,MAAM,EAAE,GAChB,GAAG,CAgBL;AAMD;;;;;;;;;GASG;AACH,wBAAgB,gBAAgB,CAC9B,EAAE,EAAE,MAAM,EAAE,EACZ,EAAE,EAAE,MAAM,EAAE,EACZ,EAAE,EAAE,MAAM,EAAE,EACZ,EAAE,EAAE,MAAM,EAAE,GACX,MAAM,EAAE,GAAG,IAAI,CAOjB;AAED;;;;;;;;GAQG;AACH,wBAAgB,mBAAmB,CACjC,EAAE,EAAE,MAAM,EAAE,EACZ,EAAE,EAAE,MAAM,EAAE,EACZ,EAAE,EAAE,MAAM,EAAE,EACZ,EAAE,EAAE,MAAM,EAAE,GACX,MAAM,EAAE,GAAG,IAAI,CAiBjB;AAMD;;GAEG;AACH,MAAM,MAAM,KAAK,GACb;IAAE,IAAI,EAAE,QAAQ,CAAC;IAAC,MAAM,EAAE,GAAG,CAAA;CAAE,GAC/B;IAAE,IAAI,EAAE,UAAU,CAAC;IAAC,QAAQ,EAAE,CAAC,MAAM,EAAE,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,CAAC,CAAA;CAAE,GAC9D;IAAE,IAAI,EAAE,SAAS,CAAC;IAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,CAAA;CAAE,GACzC;IAAE,IAAI,EAAE,WAAW,CAAC;IAAC,KAAK,EAAE,GAAG,CAAC;IAAC,MAAM,EAAE,GAAG,CAAA;CAAE,CAAC;AAEnD;;;;;;;;;GASG;AACH,wBAAgB,IAAI,CAAC,KAAK,EAAE,KAAK,GAAG,GAAG,CAatC;AAED;;;;;;;;GAQG;AACH,wBAAgB,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,GAAG,MAAM,EAAE,CA2BvD;AAED;;;;;;;GAOG;AACH,wBAAgB,mBAAmB,CACjC,KAAK,EAAE,MAAM,EAAE,EACf,IAAI,EAAE,WAAW,GAAG,OAAO,GAAG,WAAW,GAAG,aAAa,EACzD,EAAE,EAAE,WAAW,GAAG,OAAO,GAAG,WAAW,GAAG,aAAa,GACtD,MAAM,EAAE,CAkDV;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,GAAG,GAAG,CAS1D;AAED;;;;;;GAMG;AACH,wBAAgB,iBAAiB,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,GAAG,CAK/D;AAED;;;;;;GAMG;AACH,wBAAgB,iBAAiB,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,GAAG,CAK/D;AAED;;;;;;;GAOG;AACH,wBAAgB,iBAAiB,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,GAAG,GAAG,GAAG,CAQvE;AAED;;;;;GAKG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,GAAG,MAAM,EAAE,EAAE,CA4FpE;AAED;;;;;;;GAOG;AACH,wBAAgB,cAAc,CAC5B,MAAM,EAAE,MAAM,EAAE,EAAE,EAClB,MAAM,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,GAC3B;IAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,CAAC;IAAC,OAAO,EAAE,MAAM,EAAE,EAAE,CAAA;CAAE,CAqG/C;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,KAAK,EAAE,GAAG,CAAC;IACX,IAAI,EAAE,UAAU,GAAG,IAAI,CAAC;IACxB,KAAK,EAAE,UAAU,GAAG,IAAI,CAAC;IACzB,IAAI,EAAE,GAAG,CAAC;CACX;AAED;;;;;GAKG;AACH,wBAAgB,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,GAAG,UAAU,GAAG,IAAI,CAuB5D;AAED;;;;;;GAMG;AACH,wBAAgB,aAAa,CAC3B,IAAI,EAAE,UAAU,GAAG,IAAI,EACvB,MAAM,EAAE,MAAM,EAAE,GACf;IAAE,KAAK,EAAE,MAAM,EAAE,CAAC;IAAC,KAAK,EAAE,GAAG,CAAC;IAAC,QAAQ,EAAE,GAAG,CAAA;CAAE,GAAG,IAAI,CAyBvD;AAQD;;;;;;;GAOG;AACH,wBAAgB,eAAe,CAC7B,MAAM,EAAE,MAAM,EAAE,EAAE,EAClB,KAAK,EAAE,MAAM,EAAE,GACd;IAAE,KAAK,EAAE,MAAM,EAAE,CAAC;IAAC,KAAK,EAAE,GAAG,CAAC;IAAC,QAAQ,EAAE,GAAG,CAAA;CAAE,GAAG,IAAI,CAmDvD;AAMD;;;;GAIG;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAEzC;;;;;;;;;;;GAWG;AACH,wBAAgB,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,GAAG,UAAU,EAAE,CAoD7D;AAqJD;;;;;;;;;;;;;;GAcG;AACH,wBAAsB,cAAc,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,GAAG,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CA0B5E"}
|
package/package.json
CHANGED