@commercelayer/app-elements 6.0.1 → 6.0.2
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/{InputDateComponent-CRYU-ypz.js → InputDateComponent-BvQk8yES.js} +2 -2
- package/dist/{RuleEngineComponent-CtAd-_XC.js → RuleEngineComponent-C2H2NHg9.js} +2 -2
- package/dist/helpers/currencies.d.ts +155 -0
- package/dist/{main-os-TPFjB.js → main-1tcoF6bR.js} +3630 -3469
- package/dist/main.js +1 -1
- package/dist/{parseISO-B-vBXvVj.js → parseISO-Di2ADkp1.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/tailwind.global.css +1 -1
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { c as X, t as _, m as fr, a as hr, x as he, y as fe, z as dt, A as We, E as mr, F as Ur, G as Vr, H as rt, J as vr, K as qr, L as Dr, M as gr, N as jr, O as $r, P as Lt, Q as Gr, R as zr, S as Ft, T as Xr, U as Re, V as Zr, j as te, W as z, X as Pe, Y as be, o as wt, Z as xt, _ as yr, $ as Et, a0 as wr, a1 as Jr, a2 as xe, a3 as At, a4 as en, a5 as tn, a6 as rn, a7 as nn, a8 as nt, a9 as an, w as on, v as sn, aa as ln, ab as cn, ac as un } from "./main-
|
|
2
|
+
import { c as X, t as _, m as fr, a as hr, x as he, y as fe, z as dt, A as We, E as mr, F as Ur, G as Vr, H as rt, J as vr, K as qr, L as Dr, M as gr, N as jr, O as $r, P as Lt, Q as Gr, R as zr, S as Ft, T as Xr, U as Re, V as Zr, j as te, W as z, X as Pe, Y as be, o as wt, Z as xt, _ as yr, $ as Et, a0 as wr, a1 as Jr, a2 as xe, a3 as At, a4 as en, a5 as tn, a6 as rn, a7 as nn, a8 as nt, a9 as an, w as on, v as sn, aa as ln, ab as cn, ac as un } from "./main-1tcoF6bR.js";
|
|
3
3
|
import * as b from "react";
|
|
4
4
|
import f, { useLayoutEffect as br, useEffect as Pt, cloneElement as _r, createRef as Me, Component as $, useRef as bt, useCallback as dn, createElement as pn, forwardRef as fn, useMemo as hn } from "react";
|
|
5
5
|
import * as mn from "react-dom";
|
|
6
6
|
import vn from "react-dom";
|
|
7
|
-
import { p as Dn } from "./parseISO-
|
|
7
|
+
import { p as Dn } from "./parseISO-Di2ADkp1.js";
|
|
8
8
|
function kr(o, r, t) {
|
|
9
9
|
return X(o, +_(o) + r);
|
|
10
10
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { t as S, b as H, d as Z, j as e, i as V, g as G, e as Q, I as f, f as y, h as $, D as z, k as R, l as p, B as J, n as P, o as w, p as U, u as ee, q as te, r as ne, s as ae, v as _, w as le, C as se } from "./main-
|
|
2
|
+
import { t as S, b as H, d as Z, j as e, i as V, g as G, e as Q, I as f, f as y, h as $, D as z, k as R, l as p, B as J, n as P, o as w, p as U, u as ee, q as te, r as ne, s as ae, v as _, w as le, C as se } from "./main-1tcoF6bR.js";
|
|
3
3
|
import I, { useReducer as re, useCallback as N, useMemo as ie, createContext as ue, useContext as ce, useState as g, useEffect as v, useRef as oe } from "react";
|
|
4
4
|
import "react-hook-form";
|
|
5
|
-
import { p as k } from "./parseISO-
|
|
5
|
+
import { p as k } from "./parseISO-Di2ADkp1.js";
|
|
6
6
|
function A(t, n) {
|
|
7
7
|
const a = t.match(
|
|
8
8
|
/(\d{4})-(\d{2})-(\d{2})[T ](\d{2}):(\d{2}):(\d{2})(?:\.(\d{0,7}))?(?:Z|(.)(\d{2}):?(\d{2})?)?/
|
|
@@ -9,6 +9,161 @@ export interface Currency {
|
|
|
9
9
|
}
|
|
10
10
|
export type CurrencyCode = Uppercase<keyof typeof currencies>;
|
|
11
11
|
export declare const currencies: {
|
|
12
|
+
dun: {
|
|
13
|
+
priority: number;
|
|
14
|
+
iso_code: string;
|
|
15
|
+
iso_numeric: string;
|
|
16
|
+
name: string;
|
|
17
|
+
symbol: string;
|
|
18
|
+
subunit_to_unit: number;
|
|
19
|
+
decimal_mark: string;
|
|
20
|
+
thousands_separator: string;
|
|
21
|
+
symbol_first: false;
|
|
22
|
+
};
|
|
23
|
+
bch: {
|
|
24
|
+
priority: number;
|
|
25
|
+
iso_code: string;
|
|
26
|
+
name: string;
|
|
27
|
+
symbol: string;
|
|
28
|
+
disambiguate_symbol: string;
|
|
29
|
+
alternate_symbols: string[];
|
|
30
|
+
subunit: string;
|
|
31
|
+
subunit_to_unit: number;
|
|
32
|
+
symbol_first: false;
|
|
33
|
+
format: string;
|
|
34
|
+
html_entity: string;
|
|
35
|
+
decimal_mark: string;
|
|
36
|
+
thousands_separator: string;
|
|
37
|
+
iso_numeric: string;
|
|
38
|
+
smallest_denomination: number;
|
|
39
|
+
};
|
|
40
|
+
btc: {
|
|
41
|
+
priority: number;
|
|
42
|
+
iso_code: string;
|
|
43
|
+
name: string;
|
|
44
|
+
symbol: string;
|
|
45
|
+
alternate_symbols: never[];
|
|
46
|
+
subunit: string;
|
|
47
|
+
subunit_to_unit: number;
|
|
48
|
+
symbol_first: true;
|
|
49
|
+
html_entity: string;
|
|
50
|
+
decimal_mark: string;
|
|
51
|
+
thousands_separator: string;
|
|
52
|
+
iso_numeric: string;
|
|
53
|
+
smallest_denomination: number;
|
|
54
|
+
};
|
|
55
|
+
jep: {
|
|
56
|
+
priority: number;
|
|
57
|
+
iso_code: string;
|
|
58
|
+
name: string;
|
|
59
|
+
symbol: string;
|
|
60
|
+
disambiguate_symbol: string;
|
|
61
|
+
alternate_symbols: never[];
|
|
62
|
+
subunit: string;
|
|
63
|
+
subunit_to_unit: number;
|
|
64
|
+
symbol_first: true;
|
|
65
|
+
html_entity: string;
|
|
66
|
+
decimal_mark: string;
|
|
67
|
+
thousands_separator: string;
|
|
68
|
+
iso_numeric: string;
|
|
69
|
+
smallest_denomination: number;
|
|
70
|
+
};
|
|
71
|
+
ggp: {
|
|
72
|
+
priority: number;
|
|
73
|
+
iso_code: string;
|
|
74
|
+
name: string;
|
|
75
|
+
symbol: string;
|
|
76
|
+
disambiguate_symbol: string;
|
|
77
|
+
alternate_symbols: never[];
|
|
78
|
+
subunit: string;
|
|
79
|
+
subunit_to_unit: number;
|
|
80
|
+
symbol_first: true;
|
|
81
|
+
html_entity: string;
|
|
82
|
+
decimal_mark: string;
|
|
83
|
+
thousands_separator: string;
|
|
84
|
+
iso_numeric: string;
|
|
85
|
+
smallest_denomination: number;
|
|
86
|
+
};
|
|
87
|
+
imp: {
|
|
88
|
+
priority: number;
|
|
89
|
+
iso_code: string;
|
|
90
|
+
name: string;
|
|
91
|
+
symbol: string;
|
|
92
|
+
disambiguate_symbol: string;
|
|
93
|
+
alternate_symbols: string[];
|
|
94
|
+
subunit: string;
|
|
95
|
+
subunit_to_unit: number;
|
|
96
|
+
symbol_first: true;
|
|
97
|
+
html_entity: string;
|
|
98
|
+
decimal_mark: string;
|
|
99
|
+
thousands_separator: string;
|
|
100
|
+
iso_numeric: string;
|
|
101
|
+
smallest_denomination: number;
|
|
102
|
+
};
|
|
103
|
+
xfu: {
|
|
104
|
+
priority: number;
|
|
105
|
+
iso_code: string;
|
|
106
|
+
name: string;
|
|
107
|
+
symbol: string;
|
|
108
|
+
disambiguate_symbol: string;
|
|
109
|
+
alternate_symbols: never[];
|
|
110
|
+
subunit: string;
|
|
111
|
+
subunit_to_unit: number;
|
|
112
|
+
symbol_first: true;
|
|
113
|
+
html_entity: string;
|
|
114
|
+
decimal_mark: string;
|
|
115
|
+
thousands_separator: string;
|
|
116
|
+
iso_numeric: string;
|
|
117
|
+
smallest_denomination: string;
|
|
118
|
+
};
|
|
119
|
+
gbx: {
|
|
120
|
+
priority: number;
|
|
121
|
+
iso_code: string;
|
|
122
|
+
name: string;
|
|
123
|
+
symbol: string;
|
|
124
|
+
disambiguate_symbol: string;
|
|
125
|
+
alternate_symbols: never[];
|
|
126
|
+
subunit: string;
|
|
127
|
+
subunit_to_unit: number;
|
|
128
|
+
symbol_first: true;
|
|
129
|
+
html_entity: string;
|
|
130
|
+
decimal_mark: string;
|
|
131
|
+
thousands_separator: string;
|
|
132
|
+
iso_numeric: string;
|
|
133
|
+
smallest_denomination: number;
|
|
134
|
+
};
|
|
135
|
+
cnh: {
|
|
136
|
+
priority: number;
|
|
137
|
+
iso_code: string;
|
|
138
|
+
name: string;
|
|
139
|
+
symbol: string;
|
|
140
|
+
disambiguate_symbol: string;
|
|
141
|
+
alternate_symbols: string[];
|
|
142
|
+
subunit: string;
|
|
143
|
+
subunit_to_unit: number;
|
|
144
|
+
symbol_first: true;
|
|
145
|
+
html_entity: string;
|
|
146
|
+
decimal_mark: string;
|
|
147
|
+
thousands_separator: string;
|
|
148
|
+
iso_numeric: string;
|
|
149
|
+
smallest_denomination: number;
|
|
150
|
+
};
|
|
151
|
+
usdc: {
|
|
152
|
+
priority: number;
|
|
153
|
+
iso_code: string;
|
|
154
|
+
name: string;
|
|
155
|
+
symbol: string;
|
|
156
|
+
disambiguate_symbol: string;
|
|
157
|
+
alternate_symbols: never[];
|
|
158
|
+
subunit: string;
|
|
159
|
+
subunit_to_unit: number;
|
|
160
|
+
symbol_first: false;
|
|
161
|
+
html_entity: string;
|
|
162
|
+
decimal_mark: string;
|
|
163
|
+
thousands_separator: string;
|
|
164
|
+
iso_numeric: string;
|
|
165
|
+
smallest_denomination: number;
|
|
166
|
+
};
|
|
12
167
|
aed: {
|
|
13
168
|
priority: number;
|
|
14
169
|
iso_code: string;
|