@caspeco/casper-ui-library 10.0.4 → 10.1.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/components/input/input-recipe.d.ts.map +1 -1
- package/dist/components/input/input-recipe.js +8 -3
- package/dist/components/input/input.composition.d.ts.map +1 -1
- package/dist/components/input/input.d.ts +1 -0
- package/dist/components/input/input.d.ts.map +1 -1
- package/dist/components/input/input.js +76 -52
- package/dist/components/input/types.d.ts +2 -2
- package/dist/components/input/types.d.ts.map +1 -1
- package/dist/components/menu/menu-box-button.d.ts +4 -1
- package/dist/components/menu/menu-box-button.d.ts.map +1 -1
- package/dist/components/menu/menu-box-button.js +15 -14
- package/dist/components/phone-input/country-data.d.ts +22 -0
- package/dist/components/phone-input/country-data.d.ts.map +1 -0
- package/dist/components/phone-input/country-data.js +38 -0
- package/dist/components/phone-input/country-data.spec.d.ts +2 -0
- package/dist/components/phone-input/country-data.spec.d.ts.map +1 -0
- package/dist/components/phone-input/country-list.d.ts +19 -0
- package/dist/components/phone-input/country-list.d.ts.map +1 -0
- package/dist/components/phone-input/country-list.js +27 -0
- package/dist/components/phone-input/country-selector.d.ts +59 -0
- package/dist/components/phone-input/country-selector.d.ts.map +1 -0
- package/dist/components/phone-input/country-selector.js +120 -0
- package/dist/components/phone-input/index.d.ts +5 -0
- package/dist/components/phone-input/index.d.ts.map +1 -0
- package/dist/components/phone-input/phone-input-helpers.d.ts +47 -0
- package/dist/components/phone-input/phone-input-helpers.d.ts.map +1 -0
- package/dist/components/phone-input/phone-input-helpers.js +134 -0
- package/dist/components/phone-input/phone-input-helpers.spec.d.ts +2 -0
- package/dist/components/phone-input/phone-input-helpers.spec.d.ts.map +1 -0
- package/dist/components/phone-input/phone-input.composition.d.ts +26 -0
- package/dist/components/phone-input/phone-input.composition.d.ts.map +1 -0
- package/dist/components/phone-input/phone-input.d.ts +22 -0
- package/dist/components/phone-input/phone-input.d.ts.map +1 -0
- package/dist/components/phone-input/phone-input.js +43 -0
- package/dist/components/phone-input/phone-input.spec.d.ts +2 -0
- package/dist/components/phone-input/phone-input.spec.d.ts.map +1 -0
- package/dist/components/phone-input/phone-input.visual.test.d.ts +2 -0
- package/dist/components/phone-input/phone-input.visual.test.d.ts.map +1 -0
- package/dist/components/phone-input/translations.d.ts +60 -0
- package/dist/components/phone-input/translations.d.ts.map +1 -0
- package/dist/components/phone-input/translations.js +54 -0
- package/dist/components/phone-input/types.d.ts +45 -0
- package/dist/components/phone-input/types.d.ts.map +1 -0
- package/dist/components/phone-input/use-phone-input.d.ts +49 -0
- package/dist/components/phone-input/use-phone-input.d.ts.map +1 -0
- package/dist/components/phone-input/use-phone-input.js +138 -0
- package/dist/components/phone-input/use-phone-input.spec.d.ts +2 -0
- package/dist/components/phone-input/use-phone-input.spec.d.ts.map +1 -0
- package/dist/hooks/use-measured-width.d.ts +23 -0
- package/dist/hooks/use-measured-width.d.ts.map +1 -0
- package/dist/hooks/use-measured-width.js +22 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +289 -285
- package/dist/node_modules/country-flag-icons/modules/countries.json.js +4 -0
- package/dist/node_modules/country-flag-icons/modules/hasFlag.js +7 -0
- package/dist/node_modules/country-flag-icons/modules/react/3x2/index.js +6303 -0
- package/dist/node_modules/country-flag-icons/react/3x2/index.js +269 -0
- package/dist/node_modules/libphonenumber-js/es6/ParseError.js +89 -0
- package/dist/node_modules/libphonenumber-js/es6/PhoneNumber.js +192 -0
- package/dist/node_modules/libphonenumber-js/es6/constants.js +10 -0
- package/dist/node_modules/libphonenumber-js/es6/format.js +98 -0
- package/dist/node_modules/libphonenumber-js/es6/getCountries.js +7 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/RFC3966.js +11 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/applyInternationalSeparatorStyle.js +7 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/checkNumberLength.js +16 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/extension/createExtensionPattern.js +11 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/extension/extractExtension.js +18 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/extractCountryCallingCode.js +46 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js +27 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/extractFormattedPhoneNumberFromPossibleRfc3966NumberUri.js +23 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/extractNationalNumber.js +39 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js +31 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/extractPhoneContext.js +23 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/formatNationalNumberUsingFormat.js +25 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/getCountryAndCallingCodeFromOneOfThem.js +12 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/getCountryByCallingCode.js +9 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/getCountryByNationalNumber.js +43 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/getIddPrefix.js +12 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/getNumberType.js +52 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/getPossibleCountriesForNumber.js +14 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/isCallingCode.js +7 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/isCountryCode.js +7 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/isObject.js +7 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/isViablePhoneNumber.js +20 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/matchesEntirely.js +6 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/parseDigits.js +79 -0
- package/dist/node_modules/libphonenumber-js/es6/helpers/stripIddPrefix.js +19 -0
- package/dist/node_modules/libphonenumber-js/es6/isPossible.js +35 -0
- package/dist/node_modules/libphonenumber-js/es6/isValid.js +14 -0
- package/dist/node_modules/libphonenumber-js/es6/isValidPhoneNumber.js +59 -0
- package/dist/node_modules/libphonenumber-js/es6/metadata.js +494 -0
- package/dist/node_modules/libphonenumber-js/es6/normalizeArguments.js +108 -0
- package/dist/node_modules/libphonenumber-js/es6/parse.js +138 -0
- package/dist/node_modules/libphonenumber-js/es6/parseIncompletePhoneNumber.js +40 -0
- package/dist/node_modules/libphonenumber-js/es6/parsePhoneNumber.js +9 -0
- package/dist/node_modules/libphonenumber-js/es6/parsePhoneNumberWithError_.js +55 -0
- package/dist/node_modules/libphonenumber-js/es6/parsePhoneNumber_.js +62 -0
- package/dist/node_modules/libphonenumber-js/es6/tools/semver-compare.js +14 -0
- package/dist/node_modules/libphonenumber-js/metadata.min.json.js +4 -0
- package/dist/node_modules/libphonenumber-js/min/exports/getCountries.js +8 -0
- package/dist/node_modules/libphonenumber-js/min/exports/getCountryCallingCode.js +8 -0
- package/dist/node_modules/libphonenumber-js/min/exports/isSupportedCountry.js +8 -0
- package/dist/node_modules/libphonenumber-js/min/exports/isValidPhoneNumber.js +8 -0
- package/dist/node_modules/libphonenumber-js/min/exports/parsePhoneNumber.js +8 -0
- package/dist/node_modules/libphonenumber-js/min/exports/withMetadataArgument.js +8 -0
- package/dist/test-utils/create-visual-tests.d.ts.map +1 -1
- package/package.json +3 -1
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import { c as ce } from "../../_virtual/compiler-runtime.js";
|
|
2
|
+
import { useState as g } from "react";
|
|
3
|
+
import { toE164 as ne, isUnknownCallingCode as ue, detectCountryFromInput as fe, resolveInitialCountry as de, validatePhoneNumber as me, detectCountryChange as le, isIncompletePhoneNumber as Ce, formatPhoneNumber as ie, extractNationalNumber as Ve } from "./phone-input-helpers.js";
|
|
4
|
+
import { getCountryCallingCode as re } from "../../node_modules/libphonenumber-js/min/exports/getCountryCallingCode.js";
|
|
5
|
+
const he = /[^\d+\s\-().]/g;
|
|
6
|
+
function Ne(p) {
|
|
7
|
+
const e = ce.c(71);
|
|
8
|
+
let v;
|
|
9
|
+
e[0] !== p ? (v = p === void 0 ? {} : p, e[0] = p, e[1] = v) : v = e[1];
|
|
10
|
+
const ae = v, {
|
|
11
|
+
defaultCountry: z,
|
|
12
|
+
defaultValue: c,
|
|
13
|
+
isRequired: oe,
|
|
14
|
+
customValidator: y,
|
|
15
|
+
locale: se
|
|
16
|
+
} = ae, f = oe === void 0 ? !1 : oe, i = se === void 0 ? "en-US" : se;
|
|
17
|
+
let N;
|
|
18
|
+
e[2] !== z || e[3] !== c || e[4] !== i ? (N = () => {
|
|
19
|
+
if (c?.trim().startsWith("+")) {
|
|
20
|
+
const s = fe(c);
|
|
21
|
+
if (s)
|
|
22
|
+
return s;
|
|
23
|
+
}
|
|
24
|
+
return de(z, i);
|
|
25
|
+
}, e[2] = z, e[3] = c, e[4] = i, e[5] = N) : N = e[5];
|
|
26
|
+
const [u] = g(N);
|
|
27
|
+
let P;
|
|
28
|
+
e[6] !== c || e[7] !== u ? (P = () => c ?? `+${re(u)}`, e[6] = c, e[7] = u, e[8] = P) : P = e[8];
|
|
29
|
+
const [R] = g(P), [o, V] = g(R), [t, E] = g(u), [G, L] = g(!1);
|
|
30
|
+
let I;
|
|
31
|
+
e[9] !== t || e[10] !== o ? (I = ne(o, t), e[9] = t, e[10] = o, e[11] = I) : I = e[11];
|
|
32
|
+
const O = I;
|
|
33
|
+
let b;
|
|
34
|
+
e[12] !== o ? (b = ue(o), e[12] = o, e[13] = b) : b = e[13];
|
|
35
|
+
const W = b;
|
|
36
|
+
let M;
|
|
37
|
+
e[14] !== y || e[15] !== f || e[16] !== i ? (M = (s, n, l) => {
|
|
38
|
+
const a = me(s, n, {
|
|
39
|
+
isRequired: f,
|
|
40
|
+
showValidation: l,
|
|
41
|
+
locale: i
|
|
42
|
+
});
|
|
43
|
+
if (a.isValid && y) {
|
|
44
|
+
const H = y(ne(s, n));
|
|
45
|
+
if (H)
|
|
46
|
+
return {
|
|
47
|
+
isValid: !1,
|
|
48
|
+
errorMessage: l ? H : void 0
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
return a;
|
|
52
|
+
}, e[14] = y, e[15] = f, e[16] = i, e[17] = M) : M = e[17];
|
|
53
|
+
const d = M;
|
|
54
|
+
let _;
|
|
55
|
+
e[18] !== t || e[19] !== d || e[20] !== G || e[21] !== o ? (_ = d(o, t, G), e[18] = t, e[19] = d, e[20] = G, e[21] = o, e[22] = _) : _ = e[22];
|
|
56
|
+
const h = _;
|
|
57
|
+
let S;
|
|
58
|
+
e[23] !== d ? (S = (s, n) => {
|
|
59
|
+
const l = d(s, n, !0);
|
|
60
|
+
return L(l.errorMessage !== void 0), l;
|
|
61
|
+
}, e[23] = d, e[24] = S) : S = e[24];
|
|
62
|
+
const r = S;
|
|
63
|
+
let w;
|
|
64
|
+
e[25] !== t ? (w = (s) => {
|
|
65
|
+
const n = s.target.value.replace(he, "");
|
|
66
|
+
V(n);
|
|
67
|
+
let l = t;
|
|
68
|
+
const a = le(n, t);
|
|
69
|
+
a && (E(a), l = a), L((H) => H && Ce(n, l));
|
|
70
|
+
}, e[25] = t, e[26] = w) : w = e[26];
|
|
71
|
+
const X = w;
|
|
72
|
+
let x;
|
|
73
|
+
e[27] !== t || e[28] !== r || e[29] !== o ? (x = () => {
|
|
74
|
+
const s = ie(o, t);
|
|
75
|
+
r(s, t), s !== o && V(s);
|
|
76
|
+
}, e[27] = t, e[28] = r, e[29] = o, e[30] = x) : x = e[30];
|
|
77
|
+
const j = x;
|
|
78
|
+
let B;
|
|
79
|
+
e[31] !== t || e[32] !== r || e[33] !== o ? (B = (s, n) => {
|
|
80
|
+
const l = Ve(o, t), a = l ? ie(l, s) : `+${re(s)}`;
|
|
81
|
+
E(s), V(a), n && l && r(a, s);
|
|
82
|
+
}, e[31] = t, e[32] = r, e[33] = o, e[34] = B) : B = e[34];
|
|
83
|
+
const m = B;
|
|
84
|
+
let U;
|
|
85
|
+
e[35] !== m ? (U = (s) => m(s, !0), e[35] = m, e[36] = U) : U = e[36];
|
|
86
|
+
const J = U;
|
|
87
|
+
let $;
|
|
88
|
+
e[37] !== t || e[38] !== r || e[39] !== o ? ($ = () => r(o, t), e[37] = t, e[38] = r, e[39] = o, e[40] = $) : $ = e[40];
|
|
89
|
+
const K = $;
|
|
90
|
+
let k;
|
|
91
|
+
e[41] !== u || e[42] !== R ? (k = () => {
|
|
92
|
+
V(R), E(u), L(!1);
|
|
93
|
+
}, e[41] = u, e[42] = R, e[43] = k) : k = e[43];
|
|
94
|
+
const Q = k;
|
|
95
|
+
let q;
|
|
96
|
+
e[44] !== t ? (q = (s) => {
|
|
97
|
+
V(s);
|
|
98
|
+
const n = le(s, t);
|
|
99
|
+
n && E(n);
|
|
100
|
+
}, e[44] = t, e[45] = q) : q = e[45];
|
|
101
|
+
const T = q, Y = h.errorMessage !== void 0, Z = h.errorMessage;
|
|
102
|
+
let A;
|
|
103
|
+
e[46] !== t || e[47] !== Z || e[48] !== j || e[49] !== X || e[50] !== J || e[51] !== i || e[52] !== W || e[53] !== o ? (A = {
|
|
104
|
+
value: o,
|
|
105
|
+
onChange: X,
|
|
106
|
+
onBlur: j,
|
|
107
|
+
country: t,
|
|
108
|
+
onCountryChange: J,
|
|
109
|
+
unknownPrefix: W,
|
|
110
|
+
errorMessage: Z,
|
|
111
|
+
locale: i
|
|
112
|
+
}, e[46] = t, e[47] = Z, e[48] = j, e[49] = X, e[50] = J, e[51] = i, e[52] = W, e[53] = o, e[54] = A) : A = e[54];
|
|
113
|
+
const ee = A;
|
|
114
|
+
let D;
|
|
115
|
+
e[55] !== Y || e[56] !== f ? (D = {
|
|
116
|
+
isRequired: f,
|
|
117
|
+
isInvalid: Y
|
|
118
|
+
}, e[55] = Y, e[56] = f, e[57] = D) : D = e[57];
|
|
119
|
+
const te = D;
|
|
120
|
+
let C;
|
|
121
|
+
e[58] !== m ? (C = (s) => m(s, !1), e[58] = m, e[59] = C) : C = e[59];
|
|
122
|
+
let F;
|
|
123
|
+
return e[60] !== t || e[61] !== O || e[62] !== te || e[63] !== ee || e[64] !== Q || e[65] !== T || e[66] !== C || e[67] !== K || e[68] !== h.isValid || e[69] !== o ? (F = {
|
|
124
|
+
inputProps: ee,
|
|
125
|
+
formControlProps: te,
|
|
126
|
+
value: o,
|
|
127
|
+
e164: O,
|
|
128
|
+
country: t,
|
|
129
|
+
isValid: h.isValid,
|
|
130
|
+
setCountry: C,
|
|
131
|
+
setValue: T,
|
|
132
|
+
validate: K,
|
|
133
|
+
reset: Q
|
|
134
|
+
}, e[60] = t, e[61] = O, e[62] = te, e[63] = ee, e[64] = Q, e[65] = T, e[66] = C, e[67] = K, e[68] = h.isValid, e[69] = o, e[70] = F) : F = e[70], F;
|
|
135
|
+
}
|
|
136
|
+
export {
|
|
137
|
+
Ne as usePhoneInput
|
|
138
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use-phone-input.spec.d.ts","sourceRoot":"","sources":["../../../lib/components/phone-input/use-phone-input.spec.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { RefObject } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Return value of {@link useMeasuredWidth}: the ref to attach to the element, and its
|
|
4
|
+
* current width in px (`null` until measured, or while inactive).
|
|
5
|
+
*/
|
|
6
|
+
export type MeasuredWidth<T extends HTMLElement = HTMLElement> = readonly [
|
|
7
|
+
ref: RefObject<T | null>,
|
|
8
|
+
width: number | null
|
|
9
|
+
];
|
|
10
|
+
/**
|
|
11
|
+
* Tracks the rendered width (in px) of an element.
|
|
12
|
+
*
|
|
13
|
+
* Measuring inside a layout effect commits the width *before* the browser paints, and a
|
|
14
|
+
* ResizeObserver keeps it in sync as the element later resizes — so consumers get a correct
|
|
15
|
+
* value on the first frame with no visible flash.
|
|
16
|
+
*
|
|
17
|
+
* @param active - Whether to measure. Pass `false` to skip work while the element is absent;
|
|
18
|
+
* the width resets to `null`.
|
|
19
|
+
* @returns A tuple of the ref to attach to the element and its current width (`null` until
|
|
20
|
+
* measured, or while inactive).
|
|
21
|
+
*/
|
|
22
|
+
export declare function useMeasuredWidth<T extends HTMLElement = HTMLElement>(active?: boolean): MeasuredWidth<T>;
|
|
23
|
+
//# sourceMappingURL=use-measured-width.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use-measured-width.d.ts","sourceRoot":"","sources":["../../lib/hooks/use-measured-width.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqC,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAE1E;;;GAGG;AACH,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,WAAW,GAAG,WAAW,IAAI,SAAS;IACzE,GAAG,EAAE,SAAS,CAAC,CAAC,GAAG,IAAI,CAAC;IACxB,KAAK,EAAE,MAAM,GAAG,IAAI;CACpB,CAAC;AAEF;;;;;;;;;;;GAWG;AACH,wBAAgB,gBAAgB,CAAC,CAAC,SAAS,WAAW,GAAG,WAAW,EAAE,MAAM,UAAO,GAAG,aAAa,CAAC,CAAC,CAAC,CAkBrG"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { c as m } from "../_virtual/compiler-runtime.js";
|
|
2
|
+
import { useRef as a, useState as p, useLayoutEffect as v } from "react";
|
|
3
|
+
function b(u) {
|
|
4
|
+
const e = m.c(5), t = u === void 0 ? !0 : u, c = a(null), [o, l] = p(null);
|
|
5
|
+
let n, r;
|
|
6
|
+
e[0] !== t ? (n = () => {
|
|
7
|
+
const i = c.current;
|
|
8
|
+
if (!t || !i) {
|
|
9
|
+
l(null);
|
|
10
|
+
return;
|
|
11
|
+
}
|
|
12
|
+
const f = () => l(i.getBoundingClientRect().width);
|
|
13
|
+
f();
|
|
14
|
+
const d = new ResizeObserver(f);
|
|
15
|
+
return d.observe(i), () => d.disconnect();
|
|
16
|
+
}, r = [t], e[0] = t, e[1] = n, e[2] = r) : (n = e[1], r = e[2]), v(n, r);
|
|
17
|
+
let s;
|
|
18
|
+
return e[3] !== o ? (s = [c, o], e[3] = o, e[4] = s) : s = e[4], s;
|
|
19
|
+
}
|
|
20
|
+
export {
|
|
21
|
+
b as useMeasuredWidth
|
|
22
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export * from './components/message/index.js';
|
|
|
32
32
|
export * from './components/modal/index.js';
|
|
33
33
|
export * from './components/navigation-list/index.js';
|
|
34
34
|
export * from './components/paginator/index.js';
|
|
35
|
+
export * from './components/phone-input/index.js';
|
|
35
36
|
export * from './components/quantity-button/index.js';
|
|
36
37
|
export * from './components/radio/index.js';
|
|
37
38
|
export * from './components/radio-card/index.js';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../lib/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AAExB,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AAEvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sBAAsB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../lib/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AAExB,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AAEvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sBAAsB,CAAC"}
|