@wise/dynamic-flow-client-internal 4.5.2 → 4.6.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/build/main.css +66 -12
- package/build/main.js +57 -45
- package/build/main.mjs +57 -45
- package/package.json +17 -17
package/build/main.css
CHANGED
|
@@ -152,47 +152,47 @@ button.df-back-btn {
|
|
|
152
152
|
display: flex;
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
|
-
.df-image {
|
|
155
|
+
.df-legacy-image {
|
|
156
156
|
display: flex;
|
|
157
157
|
justify-content: center;
|
|
158
158
|
align-items: center;
|
|
159
159
|
}
|
|
160
|
-
.df-image img {
|
|
160
|
+
.df-legacy-image img {
|
|
161
161
|
height: auto;
|
|
162
162
|
width: 100%;
|
|
163
163
|
}
|
|
164
164
|
/* narrow screens */
|
|
165
|
-
.df-image.xs img {
|
|
165
|
+
.df-legacy-image.xs img {
|
|
166
166
|
width: 50px;
|
|
167
167
|
}
|
|
168
|
-
.df-image.sm img {
|
|
168
|
+
.df-legacy-image.sm img {
|
|
169
169
|
width: 100px;
|
|
170
170
|
}
|
|
171
|
-
.df-image.md img {
|
|
171
|
+
.df-legacy-image.md img {
|
|
172
172
|
width: 200px;
|
|
173
173
|
}
|
|
174
|
-
.df-image.lg img {
|
|
174
|
+
.df-legacy-image.lg img {
|
|
175
175
|
width: 300px;
|
|
176
176
|
}
|
|
177
177
|
/* wide screens */
|
|
178
|
-
@media (width >=
|
|
179
|
-
.df-image.xs img {
|
|
178
|
+
@media (width >=576px) {
|
|
179
|
+
.df-legacy-image.xs img {
|
|
180
180
|
width: 100px;
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
-
.df-image.sm img {
|
|
183
|
+
.df-legacy-image.sm img {
|
|
184
184
|
width: 200px;
|
|
185
185
|
}
|
|
186
186
|
|
|
187
|
-
.df-image.md img {
|
|
187
|
+
.df-legacy-image.md img {
|
|
188
188
|
width: 300px;
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
-
.df-image.lg img {
|
|
191
|
+
.df-legacy-image.lg img {
|
|
192
192
|
width: 500px;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
|
-
.df-image.xl img {
|
|
195
|
+
.df-legacy-image.xl img {
|
|
196
196
|
max-width: 600px;
|
|
197
197
|
}
|
|
198
198
|
}
|
|
@@ -268,6 +268,60 @@ button.df-back-btn {
|
|
|
268
268
|
.df-image .df-illustration {
|
|
269
269
|
padding: 0;
|
|
270
270
|
}
|
|
271
|
+
.df-image {
|
|
272
|
+
display: flex;
|
|
273
|
+
}
|
|
274
|
+
.df-image.start {
|
|
275
|
+
justify-content: start;
|
|
276
|
+
align-items: start;
|
|
277
|
+
}
|
|
278
|
+
.df-image.center {
|
|
279
|
+
justify-content: center;
|
|
280
|
+
align-items: center;
|
|
281
|
+
}
|
|
282
|
+
.df-image.end {
|
|
283
|
+
justify-content: end;
|
|
284
|
+
align-items: end;
|
|
285
|
+
}
|
|
286
|
+
.df-image img {
|
|
287
|
+
height: auto;
|
|
288
|
+
width: 100%;
|
|
289
|
+
}
|
|
290
|
+
/* narrow screens */
|
|
291
|
+
.df-image.xs img {
|
|
292
|
+
width: 50px;
|
|
293
|
+
}
|
|
294
|
+
.df-image.sm img {
|
|
295
|
+
width: 100px;
|
|
296
|
+
}
|
|
297
|
+
.df-image.md img {
|
|
298
|
+
width: 200px;
|
|
299
|
+
}
|
|
300
|
+
.df-image.lg img {
|
|
301
|
+
width: 300px;
|
|
302
|
+
}
|
|
303
|
+
/* wide screens */
|
|
304
|
+
@media (width >=576px) {
|
|
305
|
+
.df-image.xs img {
|
|
306
|
+
width: 100px;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.df-image.sm img {
|
|
310
|
+
width: 200px;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.df-image.md img {
|
|
314
|
+
width: 300px;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.df-image.lg img {
|
|
318
|
+
width: 500px;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.df-image.xl img {
|
|
322
|
+
max-width: 600px;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
271
325
|
.df-back-btn .tw-avatar__content {
|
|
272
326
|
cursor: pointer;
|
|
273
327
|
background-color: var(--color-background-neutral);
|
package/build/main.js
CHANGED
|
@@ -50967,7 +50967,7 @@ var init_three_stdlib = __esm({
|
|
|
50967
50967
|
}
|
|
50968
50968
|
});
|
|
50969
50969
|
|
|
50970
|
-
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
50970
|
+
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/Gltf.js
|
|
50971
50971
|
function extensions(useDraco = true, useMeshopt = true, extendLoader) {
|
|
50972
50972
|
return (loader) => {
|
|
50973
50973
|
if (extendLoader) {
|
|
@@ -50987,7 +50987,7 @@ function extensions(useDraco = true, useMeshopt = true, extendLoader) {
|
|
|
50987
50987
|
}
|
|
50988
50988
|
var React4, dracoLoader, decoderPath, useGLTF;
|
|
50989
50989
|
var init_Gltf = __esm({
|
|
50990
|
-
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
50990
|
+
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/Gltf.js"() {
|
|
50991
50991
|
"use strict";
|
|
50992
50992
|
init_extends();
|
|
50993
50993
|
React4 = __toESM(require("react"));
|
|
@@ -51004,7 +51004,7 @@ var init_Gltf = __esm({
|
|
|
51004
51004
|
}
|
|
51005
51005
|
});
|
|
51006
51006
|
|
|
51007
|
-
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51007
|
+
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/Fbo.js
|
|
51008
51008
|
function useFBO(width, height, settings) {
|
|
51009
51009
|
const size2 = useThree((state) => state.size);
|
|
51010
51010
|
const viewport = useThree((state) => state.viewport);
|
|
@@ -51041,7 +51041,7 @@ function useFBO(width, height, settings) {
|
|
|
51041
51041
|
}
|
|
51042
51042
|
var React5;
|
|
51043
51043
|
var init_Fbo = __esm({
|
|
51044
|
-
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51044
|
+
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/Fbo.js"() {
|
|
51045
51045
|
"use strict";
|
|
51046
51046
|
React5 = __toESM(require("react"));
|
|
51047
51047
|
init_three_module();
|
|
@@ -51049,10 +51049,10 @@ var init_Fbo = __esm({
|
|
|
51049
51049
|
}
|
|
51050
51050
|
});
|
|
51051
51051
|
|
|
51052
|
-
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51052
|
+
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/PerspectiveCamera.js
|
|
51053
51053
|
var React6, isFunction, PerspectiveCamera2;
|
|
51054
51054
|
var init_PerspectiveCamera = __esm({
|
|
51055
|
-
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51055
|
+
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/PerspectiveCamera.js"() {
|
|
51056
51056
|
"use strict";
|
|
51057
51057
|
init_extends();
|
|
51058
51058
|
React6 = __toESM(require("react"));
|
|
@@ -51130,7 +51130,7 @@ var init_PerspectiveCamera = __esm({
|
|
|
51130
51130
|
}
|
|
51131
51131
|
});
|
|
51132
51132
|
|
|
51133
|
-
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51133
|
+
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/useAnimations.js
|
|
51134
51134
|
function useAnimations(clips, root) {
|
|
51135
51135
|
const ref = React7.useRef();
|
|
51136
51136
|
const [actualRef] = React7.useState(() => root ? root instanceof Object3D ? {
|
|
@@ -51178,7 +51178,7 @@ function useAnimations(clips, root) {
|
|
|
51178
51178
|
}
|
|
51179
51179
|
var React7;
|
|
51180
51180
|
var init_useAnimations = __esm({
|
|
51181
|
-
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51181
|
+
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/useAnimations.js"() {
|
|
51182
51182
|
"use strict";
|
|
51183
51183
|
React7 = __toESM(require("react"));
|
|
51184
51184
|
init_three_module();
|
|
@@ -51186,9 +51186,9 @@ var init_useAnimations = __esm({
|
|
|
51186
51186
|
}
|
|
51187
51187
|
});
|
|
51188
51188
|
|
|
51189
|
-
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51189
|
+
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/index.js
|
|
51190
51190
|
var init_drei = __esm({
|
|
51191
|
-
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51191
|
+
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/index.js"() {
|
|
51192
51192
|
"use strict";
|
|
51193
51193
|
init_Gltf();
|
|
51194
51194
|
init_PerspectiveCamera();
|
|
@@ -51196,14 +51196,14 @@ var init_drei = __esm({
|
|
|
51196
51196
|
}
|
|
51197
51197
|
});
|
|
51198
51198
|
|
|
51199
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51199
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Scene-hCN3uBwY.esm.js
|
|
51200
51200
|
var Scene_hCN3uBwY_esm_exports = {};
|
|
51201
51201
|
__export(Scene_hCN3uBwY_esm_exports, {
|
|
51202
51202
|
default: () => Scene2
|
|
51203
51203
|
});
|
|
51204
51204
|
var import_jsx_runtime13, import_react3, Scene2;
|
|
51205
51205
|
var init_Scene_hCN3uBwY_esm = __esm({
|
|
51206
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51206
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Scene-hCN3uBwY.esm.js"() {
|
|
51207
51207
|
"use strict";
|
|
51208
51208
|
init_drei();
|
|
51209
51209
|
init_react_three_fiber_esm();
|
|
@@ -51250,14 +51250,14 @@ var init_Scene_hCN3uBwY_esm = __esm({
|
|
|
51250
51250
|
}
|
|
51251
51251
|
});
|
|
51252
51252
|
|
|
51253
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51253
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Lock-Bw1zz33w.esm.js
|
|
51254
51254
|
var Lock_Bw1zz33w_esm_exports = {};
|
|
51255
51255
|
__export(Lock_Bw1zz33w_esm_exports, {
|
|
51256
51256
|
default: () => Lock
|
|
51257
51257
|
});
|
|
51258
51258
|
var import_react4, import_jsx_runtime14, Lock;
|
|
51259
51259
|
var init_Lock_Bw1zz33w_esm = __esm({
|
|
51260
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51260
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Lock-Bw1zz33w.esm.js"() {
|
|
51261
51261
|
"use strict";
|
|
51262
51262
|
init_drei();
|
|
51263
51263
|
init_react_three_fiber_esm();
|
|
@@ -51299,14 +51299,14 @@ var init_Lock_Bw1zz33w_esm = __esm({
|
|
|
51299
51299
|
}
|
|
51300
51300
|
});
|
|
51301
51301
|
|
|
51302
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51302
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Globe-BcSKBv6m.esm.js
|
|
51303
51303
|
var Globe_BcSKBv6m_esm_exports = {};
|
|
51304
51304
|
__export(Globe_BcSKBv6m_esm_exports, {
|
|
51305
51305
|
default: () => Globe
|
|
51306
51306
|
});
|
|
51307
51307
|
var import_jsx_runtime15, import_react5, Globe;
|
|
51308
51308
|
var init_Globe_BcSKBv6m_esm = __esm({
|
|
51309
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51309
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Globe-BcSKBv6m.esm.js"() {
|
|
51310
51310
|
"use strict";
|
|
51311
51311
|
init_drei();
|
|
51312
51312
|
init_react_three_fiber_esm();
|
|
@@ -51350,14 +51350,14 @@ var init_Globe_BcSKBv6m_esm = __esm({
|
|
|
51350
51350
|
}
|
|
51351
51351
|
});
|
|
51352
51352
|
|
|
51353
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51353
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Confetti-Bo2BAve7.esm.js
|
|
51354
51354
|
var Confetti_Bo2BAve7_esm_exports = {};
|
|
51355
51355
|
__export(Confetti_Bo2BAve7_esm_exports, {
|
|
51356
51356
|
default: () => Confetti
|
|
51357
51357
|
});
|
|
51358
51358
|
var import_react6, import_jsx_runtime16, Confetti;
|
|
51359
51359
|
var init_Confetti_Bo2BAve7_esm = __esm({
|
|
51360
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51360
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Confetti-Bo2BAve7.esm.js"() {
|
|
51361
51361
|
"use strict";
|
|
51362
51362
|
init_drei();
|
|
51363
51363
|
init_react_three_fiber_esm();
|
|
@@ -51392,14 +51392,14 @@ var init_Confetti_Bo2BAve7_esm = __esm({
|
|
|
51392
51392
|
}
|
|
51393
51393
|
});
|
|
51394
51394
|
|
|
51395
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51395
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/CheckMark-CHI3WOfw.esm.js
|
|
51396
51396
|
var CheckMark_CHI3WOfw_esm_exports = {};
|
|
51397
51397
|
__export(CheckMark_CHI3WOfw_esm_exports, {
|
|
51398
51398
|
default: () => CheckMark
|
|
51399
51399
|
});
|
|
51400
51400
|
var import_react7, import_jsx_runtime17, CheckMark;
|
|
51401
51401
|
var init_CheckMark_CHI3WOfw_esm = __esm({
|
|
51402
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51402
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/CheckMark-CHI3WOfw.esm.js"() {
|
|
51403
51403
|
"use strict";
|
|
51404
51404
|
init_drei();
|
|
51405
51405
|
init_react_three_fiber_esm();
|
|
@@ -51437,14 +51437,14 @@ var init_CheckMark_CHI3WOfw_esm = __esm({
|
|
|
51437
51437
|
}
|
|
51438
51438
|
});
|
|
51439
51439
|
|
|
51440
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51440
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Flower-B3qB1c4O.esm.js
|
|
51441
51441
|
var Flower_B3qB1c4O_esm_exports = {};
|
|
51442
51442
|
__export(Flower_B3qB1c4O_esm_exports, {
|
|
51443
51443
|
default: () => Flower
|
|
51444
51444
|
});
|
|
51445
51445
|
var import_jsx_runtime18, import_react8, Flower;
|
|
51446
51446
|
var init_Flower_B3qB1c4O_esm = __esm({
|
|
51447
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51447
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Flower-B3qB1c4O.esm.js"() {
|
|
51448
51448
|
"use strict";
|
|
51449
51449
|
init_drei();
|
|
51450
51450
|
init_react_three_fiber_esm();
|
|
@@ -51472,14 +51472,14 @@ var init_Flower_B3qB1c4O_esm = __esm({
|
|
|
51472
51472
|
}
|
|
51473
51473
|
});
|
|
51474
51474
|
|
|
51475
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51475
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Plane-rLKcQRQ9.esm.js
|
|
51476
51476
|
var Plane_rLKcQRQ9_esm_exports = {};
|
|
51477
51477
|
__export(Plane_rLKcQRQ9_esm_exports, {
|
|
51478
51478
|
default: () => Plane2
|
|
51479
51479
|
});
|
|
51480
51480
|
var import_react9, import_jsx_runtime19, Plane2;
|
|
51481
51481
|
var init_Plane_rLKcQRQ9_esm = __esm({
|
|
51482
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51482
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Plane-rLKcQRQ9.esm.js"() {
|
|
51483
51483
|
"use strict";
|
|
51484
51484
|
init_drei();
|
|
51485
51485
|
init_react_three_fiber_esm();
|
|
@@ -51517,14 +51517,14 @@ var init_Plane_rLKcQRQ9_esm = __esm({
|
|
|
51517
51517
|
}
|
|
51518
51518
|
});
|
|
51519
51519
|
|
|
51520
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51520
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Graph-DDO1Xov2.esm.js
|
|
51521
51521
|
var Graph_DDO1Xov2_esm_exports = {};
|
|
51522
51522
|
__export(Graph_DDO1Xov2_esm_exports, {
|
|
51523
51523
|
default: () => Graph
|
|
51524
51524
|
});
|
|
51525
51525
|
var import_jsx_runtime20, import_react10, Graph;
|
|
51526
51526
|
var init_Graph_DDO1Xov2_esm = __esm({
|
|
51527
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51527
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Graph-DDO1Xov2.esm.js"() {
|
|
51528
51528
|
"use strict";
|
|
51529
51529
|
init_drei();
|
|
51530
51530
|
init_react_three_fiber_esm();
|
|
@@ -51556,14 +51556,14 @@ var init_Graph_DDO1Xov2_esm = __esm({
|
|
|
51556
51556
|
}
|
|
51557
51557
|
});
|
|
51558
51558
|
|
|
51559
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51559
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Marble-BQXbhXNM.esm.js
|
|
51560
51560
|
var Marble_BQXbhXNM_esm_exports = {};
|
|
51561
51561
|
__export(Marble_BQXbhXNM_esm_exports, {
|
|
51562
51562
|
default: () => Marble
|
|
51563
51563
|
});
|
|
51564
51564
|
var import_jsx_runtime21, import_react11, Marble;
|
|
51565
51565
|
var init_Marble_BQXbhXNM_esm = __esm({
|
|
51566
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51566
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Marble-BQXbhXNM.esm.js"() {
|
|
51567
51567
|
"use strict";
|
|
51568
51568
|
init_drei();
|
|
51569
51569
|
init_react_three_fiber_esm();
|
|
@@ -51606,14 +51606,14 @@ var init_Marble_BQXbhXNM_esm = __esm({
|
|
|
51606
51606
|
}
|
|
51607
51607
|
});
|
|
51608
51608
|
|
|
51609
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51609
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/MarbleCard-_rlYsi-c.esm.js
|
|
51610
51610
|
var MarbleCard_rlYsi_c_esm_exports = {};
|
|
51611
51611
|
__export(MarbleCard_rlYsi_c_esm_exports, {
|
|
51612
51612
|
default: () => MarbleCard
|
|
51613
51613
|
});
|
|
51614
51614
|
var import_jsx_runtime22, import_react12, MarbleCard;
|
|
51615
51615
|
var init_MarbleCard_rlYsi_c_esm = __esm({
|
|
51616
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51616
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/MarbleCard-_rlYsi-c.esm.js"() {
|
|
51617
51617
|
"use strict";
|
|
51618
51618
|
init_drei();
|
|
51619
51619
|
init_react_three_fiber_esm();
|
|
@@ -51659,14 +51659,14 @@ var init_MarbleCard_rlYsi_c_esm = __esm({
|
|
|
51659
51659
|
}
|
|
51660
51660
|
});
|
|
51661
51661
|
|
|
51662
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51662
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/MagnifyingGlass-B-h_pSgp.esm.js
|
|
51663
51663
|
var MagnifyingGlass_B_h_pSgp_esm_exports = {};
|
|
51664
51664
|
__export(MagnifyingGlass_B_h_pSgp_esm_exports, {
|
|
51665
51665
|
default: () => MagnifyingGlass
|
|
51666
51666
|
});
|
|
51667
51667
|
var import_jsx_runtime23, import_react13, MagnifyingGlass;
|
|
51668
51668
|
var init_MagnifyingGlass_B_h_pSgp_esm = __esm({
|
|
51669
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51669
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/MagnifyingGlass-B-h_pSgp.esm.js"() {
|
|
51670
51670
|
"use strict";
|
|
51671
51671
|
init_drei();
|
|
51672
51672
|
init_react_three_fiber_esm();
|
|
@@ -51697,14 +51697,14 @@ var init_MagnifyingGlass_B_h_pSgp_esm = __esm({
|
|
|
51697
51697
|
}
|
|
51698
51698
|
});
|
|
51699
51699
|
|
|
51700
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51700
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Jars-DN6mmpjY.esm.js
|
|
51701
51701
|
var Jars_DN6mmpjY_esm_exports = {};
|
|
51702
51702
|
__export(Jars_DN6mmpjY_esm_exports, {
|
|
51703
51703
|
default: () => Jars
|
|
51704
51704
|
});
|
|
51705
51705
|
var import_react14, import_jsx_runtime24, Jars;
|
|
51706
51706
|
var init_Jars_DN6mmpjY_esm = __esm({
|
|
51707
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51707
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Jars-DN6mmpjY.esm.js"() {
|
|
51708
51708
|
"use strict";
|
|
51709
51709
|
init_drei();
|
|
51710
51710
|
init_react_three_fiber_esm();
|
|
@@ -51755,14 +51755,14 @@ var init_Jars_DN6mmpjY_esm = __esm({
|
|
|
51755
51755
|
}
|
|
51756
51756
|
});
|
|
51757
51757
|
|
|
51758
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51758
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/MultiCurrency-BlFHk4Zk.esm.js
|
|
51759
51759
|
var MultiCurrency_BlFHk4Zk_esm_exports = {};
|
|
51760
51760
|
__export(MultiCurrency_BlFHk4Zk_esm_exports, {
|
|
51761
51761
|
default: () => MultiCurrency
|
|
51762
51762
|
});
|
|
51763
51763
|
var import_react15, import_jsx_runtime25, MultiCurrency;
|
|
51764
51764
|
var init_MultiCurrency_BlFHk4Zk_esm = __esm({
|
|
51765
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51765
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/MultiCurrency-BlFHk4Zk.esm.js"() {
|
|
51766
51766
|
"use strict";
|
|
51767
51767
|
init_drei();
|
|
51768
51768
|
init_react_three_fiber_esm();
|
|
@@ -51824,7 +51824,7 @@ var init_MultiCurrency_BlFHk4Zk_esm = __esm({
|
|
|
51824
51824
|
}
|
|
51825
51825
|
});
|
|
51826
51826
|
|
|
51827
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51827
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/index-ClPpN6dk.esm.js
|
|
51828
51828
|
function defineSrc$1(illustration, size2, descriptor) {
|
|
51829
51829
|
return `https://wise.com/web-art/assets/illustrations/${illustration}-${size2}@${descriptor}.webp`;
|
|
51830
51830
|
}
|
|
@@ -51934,7 +51934,7 @@ function getModel({
|
|
|
51934
51934
|
}
|
|
51935
51935
|
var import_react16, import_jsx_runtime26, unknownFlagName, Flag, Sizes, ImageSizes, imageSizes, Illustration, Assets, illustration3DNames, RenderMode, Illustration3D;
|
|
51936
51936
|
var init_index_ClPpN6dk_esm = __esm({
|
|
51937
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51937
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/index-ClPpN6dk.esm.js"() {
|
|
51938
51938
|
"use strict";
|
|
51939
51939
|
init_clsx();
|
|
51940
51940
|
import_react16 = require("react");
|
|
@@ -53149,7 +53149,7 @@ var DateInputRenderer_default = DateInputRenderer;
|
|
|
53149
53149
|
// ../renderers/src/DecisionRenderer.tsx
|
|
53150
53150
|
var import_components8 = require("@transferwise/components");
|
|
53151
53151
|
|
|
53152
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
53152
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/index.esm.js
|
|
53153
53153
|
init_index_ClPpN6dk_esm();
|
|
53154
53154
|
init_clsx();
|
|
53155
53155
|
var import_react17 = require("react");
|
|
@@ -53356,6 +53356,7 @@ function isRelativePath(url = "") {
|
|
|
53356
53356
|
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
53357
53357
|
function UrlImage({
|
|
53358
53358
|
accessibilityDescription,
|
|
53359
|
+
align,
|
|
53359
53360
|
margin,
|
|
53360
53361
|
size: size2,
|
|
53361
53362
|
uri,
|
|
@@ -53367,7 +53368,7 @@ function UrlImage({
|
|
|
53367
53368
|
void getImageSource(httpClient, uri).then(setImageSource);
|
|
53368
53369
|
}
|
|
53369
53370
|
}, [uri, httpClient]);
|
|
53370
|
-
return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: `df-image ${size2 || "md"}`, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
53371
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: `df-image ${align} ${size2 || "md"}`, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
53371
53372
|
import_components11.Image,
|
|
53372
53373
|
{
|
|
53373
53374
|
className: `img-responsive ${getMargin(margin)}`,
|
|
@@ -53410,12 +53411,26 @@ var getImageSource = async (httpClient, imageUrl) => {
|
|
|
53410
53411
|
}
|
|
53411
53412
|
};
|
|
53412
53413
|
|
|
53414
|
+
// ../renderers/src/ImageRenderer/isAnimated.ts
|
|
53415
|
+
var isAnimated = (uri) => {
|
|
53416
|
+
const sections = uri.split("?");
|
|
53417
|
+
if (sections.length === 1) {
|
|
53418
|
+
return false;
|
|
53419
|
+
}
|
|
53420
|
+
const params = sections[1];
|
|
53421
|
+
if (!params.startsWith("+")) {
|
|
53422
|
+
return false;
|
|
53423
|
+
}
|
|
53424
|
+
return params.substring(1).split("&").some((param) => param === "type=animated");
|
|
53425
|
+
};
|
|
53426
|
+
|
|
53413
53427
|
// ../renderers/src/ImageRenderer/UrnIllustration.tsx
|
|
53414
53428
|
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
53415
53429
|
var urnPrefix = "urn:wise:illustrations:";
|
|
53416
53430
|
var isUrnIllustration = (uri) => uri.startsWith(urnPrefix);
|
|
53417
53431
|
function UrnIllustration({
|
|
53418
53432
|
accessibilityDescription,
|
|
53433
|
+
align,
|
|
53419
53434
|
margin,
|
|
53420
53435
|
size: size2,
|
|
53421
53436
|
uri
|
|
@@ -53424,9 +53439,9 @@ function UrnIllustration({
|
|
|
53424
53439
|
const illustrationName = getIllustrationName(uri);
|
|
53425
53440
|
const illustration3DName = getIllustration3DName(uri);
|
|
53426
53441
|
if (illustration3DName && isAnimated(uri)) {
|
|
53427
|
-
return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { className: `df-image ${getMargin(margin)}`, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(Illustration3D, { name: illustration3DName, size: illustrationSize }) });
|
|
53442
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { className: `df-image ${align} ${getMargin(margin)}`, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(Illustration3D, { name: illustration3DName, size: illustrationSize }) });
|
|
53428
53443
|
}
|
|
53429
|
-
return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { className: `df-image ${getMargin(margin)}`, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
53444
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { className: `df-image ${align} ${getMargin(margin)}`, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
53430
53445
|
Illustration,
|
|
53431
53446
|
{
|
|
53432
53447
|
className: "df-illustration",
|
|
@@ -53440,9 +53455,6 @@ var getIllustrationSize = (size2) => ({ xs: "small", sm: "small", md: "medium",
|
|
|
53440
53455
|
var getIllustrationName = (uri) => {
|
|
53441
53456
|
return uri.replace(urnPrefix, "").split("?")[0];
|
|
53442
53457
|
};
|
|
53443
|
-
var isAnimated = (uri) => {
|
|
53444
|
-
return false;
|
|
53445
|
-
};
|
|
53446
53458
|
var getIllustration3DName = (uri) => {
|
|
53447
53459
|
const illustrationName = getIllustrationName(uri);
|
|
53448
53460
|
return isIllustrationSupport3D(illustrationName) ? illustrationName : null;
|
package/build/main.mjs
CHANGED
|
@@ -50971,7 +50971,7 @@ var init_three_stdlib = __esm({
|
|
|
50971
50971
|
}
|
|
50972
50972
|
});
|
|
50973
50973
|
|
|
50974
|
-
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
50974
|
+
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/Gltf.js
|
|
50975
50975
|
import * as React4 from "react";
|
|
50976
50976
|
function extensions(useDraco = true, useMeshopt = true, extendLoader) {
|
|
50977
50977
|
return (loader) => {
|
|
@@ -50992,7 +50992,7 @@ function extensions(useDraco = true, useMeshopt = true, extendLoader) {
|
|
|
50992
50992
|
}
|
|
50993
50993
|
var dracoLoader, decoderPath, useGLTF;
|
|
50994
50994
|
var init_Gltf = __esm({
|
|
50995
|
-
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
50995
|
+
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/Gltf.js"() {
|
|
50996
50996
|
"use strict";
|
|
50997
50997
|
init_extends();
|
|
50998
50998
|
init_three_stdlib();
|
|
@@ -51008,7 +51008,7 @@ var init_Gltf = __esm({
|
|
|
51008
51008
|
}
|
|
51009
51009
|
});
|
|
51010
51010
|
|
|
51011
|
-
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51011
|
+
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/Fbo.js
|
|
51012
51012
|
import * as React5 from "react";
|
|
51013
51013
|
function useFBO(width, height, settings) {
|
|
51014
51014
|
const size2 = useThree((state) => state.size);
|
|
@@ -51045,18 +51045,18 @@ function useFBO(width, height, settings) {
|
|
|
51045
51045
|
return target;
|
|
51046
51046
|
}
|
|
51047
51047
|
var init_Fbo = __esm({
|
|
51048
|
-
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51048
|
+
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/Fbo.js"() {
|
|
51049
51049
|
"use strict";
|
|
51050
51050
|
init_three_module();
|
|
51051
51051
|
init_react_three_fiber_esm();
|
|
51052
51052
|
}
|
|
51053
51053
|
});
|
|
51054
51054
|
|
|
51055
|
-
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51055
|
+
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/PerspectiveCamera.js
|
|
51056
51056
|
import * as React6 from "react";
|
|
51057
51057
|
var isFunction, PerspectiveCamera2;
|
|
51058
51058
|
var init_PerspectiveCamera = __esm({
|
|
51059
|
-
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51059
|
+
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/PerspectiveCamera.js"() {
|
|
51060
51060
|
"use strict";
|
|
51061
51061
|
init_extends();
|
|
51062
51062
|
init_react_three_fiber_esm();
|
|
@@ -51133,7 +51133,7 @@ var init_PerspectiveCamera = __esm({
|
|
|
51133
51133
|
}
|
|
51134
51134
|
});
|
|
51135
51135
|
|
|
51136
|
-
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51136
|
+
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/useAnimations.js
|
|
51137
51137
|
import * as React7 from "react";
|
|
51138
51138
|
function useAnimations(clips, root) {
|
|
51139
51139
|
const ref = React7.useRef();
|
|
@@ -51181,16 +51181,16 @@ function useAnimations(clips, root) {
|
|
|
51181
51181
|
return api;
|
|
51182
51182
|
}
|
|
51183
51183
|
var init_useAnimations = __esm({
|
|
51184
|
-
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51184
|
+
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/core/useAnimations.js"() {
|
|
51185
51185
|
"use strict";
|
|
51186
51186
|
init_three_module();
|
|
51187
51187
|
init_react_three_fiber_esm();
|
|
51188
51188
|
}
|
|
51189
51189
|
});
|
|
51190
51190
|
|
|
51191
|
-
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51191
|
+
// ../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/index.js
|
|
51192
51192
|
var init_drei = __esm({
|
|
51193
|
-
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18.
|
|
51193
|
+
"../../node_modules/.pnpm/@react-three+drei@9.117.3_@react-three+fiber@8.17.10_react-dom@18.3.1_react@18.3.1__react@18._2wiovjytnyut5pc2dfqc2tul5q/node_modules/@react-three/drei/index.js"() {
|
|
51194
51194
|
"use strict";
|
|
51195
51195
|
init_Gltf();
|
|
51196
51196
|
init_PerspectiveCamera();
|
|
@@ -51198,7 +51198,7 @@ var init_drei = __esm({
|
|
|
51198
51198
|
}
|
|
51199
51199
|
});
|
|
51200
51200
|
|
|
51201
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51201
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Scene-hCN3uBwY.esm.js
|
|
51202
51202
|
var Scene_hCN3uBwY_esm_exports = {};
|
|
51203
51203
|
__export(Scene_hCN3uBwY_esm_exports, {
|
|
51204
51204
|
default: () => Scene2
|
|
@@ -51207,7 +51207,7 @@ import { jsxs as jsxs3, jsx as jsx13 } from "react/jsx-runtime";
|
|
|
51207
51207
|
import "react";
|
|
51208
51208
|
var Scene2;
|
|
51209
51209
|
var init_Scene_hCN3uBwY_esm = __esm({
|
|
51210
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51210
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Scene-hCN3uBwY.esm.js"() {
|
|
51211
51211
|
"use strict";
|
|
51212
51212
|
init_drei();
|
|
51213
51213
|
init_react_three_fiber_esm();
|
|
@@ -51252,7 +51252,7 @@ var init_Scene_hCN3uBwY_esm = __esm({
|
|
|
51252
51252
|
}
|
|
51253
51253
|
});
|
|
51254
51254
|
|
|
51255
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51255
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Lock-Bw1zz33w.esm.js
|
|
51256
51256
|
var Lock_Bw1zz33w_esm_exports = {};
|
|
51257
51257
|
__export(Lock_Bw1zz33w_esm_exports, {
|
|
51258
51258
|
default: () => Lock
|
|
@@ -51261,7 +51261,7 @@ import { useRef as useRef8 } from "react";
|
|
|
51261
51261
|
import { jsxs as jsxs4, Fragment as Fragment4, jsx as jsx14 } from "react/jsx-runtime";
|
|
51262
51262
|
var Lock;
|
|
51263
51263
|
var init_Lock_Bw1zz33w_esm = __esm({
|
|
51264
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51264
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Lock-Bw1zz33w.esm.js"() {
|
|
51265
51265
|
"use strict";
|
|
51266
51266
|
init_drei();
|
|
51267
51267
|
init_react_three_fiber_esm();
|
|
@@ -51301,7 +51301,7 @@ var init_Lock_Bw1zz33w_esm = __esm({
|
|
|
51301
51301
|
}
|
|
51302
51302
|
});
|
|
51303
51303
|
|
|
51304
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51304
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Globe-BcSKBv6m.esm.js
|
|
51305
51305
|
var Globe_BcSKBv6m_esm_exports = {};
|
|
51306
51306
|
__export(Globe_BcSKBv6m_esm_exports, {
|
|
51307
51307
|
default: () => Globe
|
|
@@ -51310,7 +51310,7 @@ import { jsxs as jsxs5, Fragment as Fragment5, jsx as jsx15 } from "react/jsx-ru
|
|
|
51310
51310
|
import "react";
|
|
51311
51311
|
var Globe;
|
|
51312
51312
|
var init_Globe_BcSKBv6m_esm = __esm({
|
|
51313
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51313
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Globe-BcSKBv6m.esm.js"() {
|
|
51314
51314
|
"use strict";
|
|
51315
51315
|
init_drei();
|
|
51316
51316
|
init_react_three_fiber_esm();
|
|
@@ -51352,7 +51352,7 @@ var init_Globe_BcSKBv6m_esm = __esm({
|
|
|
51352
51352
|
}
|
|
51353
51353
|
});
|
|
51354
51354
|
|
|
51355
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51355
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Confetti-Bo2BAve7.esm.js
|
|
51356
51356
|
var Confetti_Bo2BAve7_esm_exports = {};
|
|
51357
51357
|
__export(Confetti_Bo2BAve7_esm_exports, {
|
|
51358
51358
|
default: () => Confetti
|
|
@@ -51361,7 +51361,7 @@ import { useRef as useRef9 } from "react";
|
|
|
51361
51361
|
import { jsxs as jsxs6, Fragment as Fragment6, jsx as jsx16 } from "react/jsx-runtime";
|
|
51362
51362
|
var Confetti;
|
|
51363
51363
|
var init_Confetti_Bo2BAve7_esm = __esm({
|
|
51364
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51364
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Confetti-Bo2BAve7.esm.js"() {
|
|
51365
51365
|
"use strict";
|
|
51366
51366
|
init_drei();
|
|
51367
51367
|
init_react_three_fiber_esm();
|
|
@@ -51394,7 +51394,7 @@ var init_Confetti_Bo2BAve7_esm = __esm({
|
|
|
51394
51394
|
}
|
|
51395
51395
|
});
|
|
51396
51396
|
|
|
51397
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51397
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/CheckMark-CHI3WOfw.esm.js
|
|
51398
51398
|
var CheckMark_CHI3WOfw_esm_exports = {};
|
|
51399
51399
|
__export(CheckMark_CHI3WOfw_esm_exports, {
|
|
51400
51400
|
default: () => CheckMark
|
|
@@ -51403,7 +51403,7 @@ import { useRef as useRef10 } from "react";
|
|
|
51403
51403
|
import { jsxs as jsxs7, Fragment as Fragment7, jsx as jsx17 } from "react/jsx-runtime";
|
|
51404
51404
|
var CheckMark;
|
|
51405
51405
|
var init_CheckMark_CHI3WOfw_esm = __esm({
|
|
51406
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51406
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/CheckMark-CHI3WOfw.esm.js"() {
|
|
51407
51407
|
"use strict";
|
|
51408
51408
|
init_drei();
|
|
51409
51409
|
init_react_three_fiber_esm();
|
|
@@ -51439,7 +51439,7 @@ var init_CheckMark_CHI3WOfw_esm = __esm({
|
|
|
51439
51439
|
}
|
|
51440
51440
|
});
|
|
51441
51441
|
|
|
51442
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51442
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Flower-B3qB1c4O.esm.js
|
|
51443
51443
|
var Flower_B3qB1c4O_esm_exports = {};
|
|
51444
51444
|
__export(Flower_B3qB1c4O_esm_exports, {
|
|
51445
51445
|
default: () => Flower
|
|
@@ -51448,7 +51448,7 @@ import { jsxs as jsxs8, Fragment as Fragment8, jsx as jsx18 } from "react/jsx-ru
|
|
|
51448
51448
|
import "react";
|
|
51449
51449
|
var Flower;
|
|
51450
51450
|
var init_Flower_B3qB1c4O_esm = __esm({
|
|
51451
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51451
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Flower-B3qB1c4O.esm.js"() {
|
|
51452
51452
|
"use strict";
|
|
51453
51453
|
init_drei();
|
|
51454
51454
|
init_react_three_fiber_esm();
|
|
@@ -51474,7 +51474,7 @@ var init_Flower_B3qB1c4O_esm = __esm({
|
|
|
51474
51474
|
}
|
|
51475
51475
|
});
|
|
51476
51476
|
|
|
51477
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51477
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Plane-rLKcQRQ9.esm.js
|
|
51478
51478
|
var Plane_rLKcQRQ9_esm_exports = {};
|
|
51479
51479
|
__export(Plane_rLKcQRQ9_esm_exports, {
|
|
51480
51480
|
default: () => Plane2
|
|
@@ -51483,7 +51483,7 @@ import { useRef as useRef11 } from "react";
|
|
|
51483
51483
|
import { jsxs as jsxs9, Fragment as Fragment9, jsx as jsx19 } from "react/jsx-runtime";
|
|
51484
51484
|
var Plane2;
|
|
51485
51485
|
var init_Plane_rLKcQRQ9_esm = __esm({
|
|
51486
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51486
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Plane-rLKcQRQ9.esm.js"() {
|
|
51487
51487
|
"use strict";
|
|
51488
51488
|
init_drei();
|
|
51489
51489
|
init_react_three_fiber_esm();
|
|
@@ -51519,7 +51519,7 @@ var init_Plane_rLKcQRQ9_esm = __esm({
|
|
|
51519
51519
|
}
|
|
51520
51520
|
});
|
|
51521
51521
|
|
|
51522
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51522
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Graph-DDO1Xov2.esm.js
|
|
51523
51523
|
var Graph_DDO1Xov2_esm_exports = {};
|
|
51524
51524
|
__export(Graph_DDO1Xov2_esm_exports, {
|
|
51525
51525
|
default: () => Graph
|
|
@@ -51528,7 +51528,7 @@ import { jsxs as jsxs10, Fragment as Fragment10, jsx as jsx20 } from "react/jsx-
|
|
|
51528
51528
|
import "react";
|
|
51529
51529
|
var Graph;
|
|
51530
51530
|
var init_Graph_DDO1Xov2_esm = __esm({
|
|
51531
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51531
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Graph-DDO1Xov2.esm.js"() {
|
|
51532
51532
|
"use strict";
|
|
51533
51533
|
init_drei();
|
|
51534
51534
|
init_react_three_fiber_esm();
|
|
@@ -51558,7 +51558,7 @@ var init_Graph_DDO1Xov2_esm = __esm({
|
|
|
51558
51558
|
}
|
|
51559
51559
|
});
|
|
51560
51560
|
|
|
51561
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51561
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Marble-BQXbhXNM.esm.js
|
|
51562
51562
|
var Marble_BQXbhXNM_esm_exports = {};
|
|
51563
51563
|
__export(Marble_BQXbhXNM_esm_exports, {
|
|
51564
51564
|
default: () => Marble
|
|
@@ -51567,7 +51567,7 @@ import { jsxs as jsxs11, Fragment as Fragment11, jsx as jsx21 } from "react/jsx-
|
|
|
51567
51567
|
import "react";
|
|
51568
51568
|
var Marble;
|
|
51569
51569
|
var init_Marble_BQXbhXNM_esm = __esm({
|
|
51570
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51570
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Marble-BQXbhXNM.esm.js"() {
|
|
51571
51571
|
"use strict";
|
|
51572
51572
|
init_drei();
|
|
51573
51573
|
init_react_three_fiber_esm();
|
|
@@ -51608,7 +51608,7 @@ var init_Marble_BQXbhXNM_esm = __esm({
|
|
|
51608
51608
|
}
|
|
51609
51609
|
});
|
|
51610
51610
|
|
|
51611
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51611
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/MarbleCard-_rlYsi-c.esm.js
|
|
51612
51612
|
var MarbleCard_rlYsi_c_esm_exports = {};
|
|
51613
51613
|
__export(MarbleCard_rlYsi_c_esm_exports, {
|
|
51614
51614
|
default: () => MarbleCard
|
|
@@ -51617,7 +51617,7 @@ import { jsxs as jsxs12, Fragment as Fragment12, jsx as jsx22 } from "react/jsx-
|
|
|
51617
51617
|
import "react";
|
|
51618
51618
|
var MarbleCard;
|
|
51619
51619
|
var init_MarbleCard_rlYsi_c_esm = __esm({
|
|
51620
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51620
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/MarbleCard-_rlYsi-c.esm.js"() {
|
|
51621
51621
|
"use strict";
|
|
51622
51622
|
init_drei();
|
|
51623
51623
|
init_react_three_fiber_esm();
|
|
@@ -51661,7 +51661,7 @@ var init_MarbleCard_rlYsi_c_esm = __esm({
|
|
|
51661
51661
|
}
|
|
51662
51662
|
});
|
|
51663
51663
|
|
|
51664
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51664
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/MagnifyingGlass-B-h_pSgp.esm.js
|
|
51665
51665
|
var MagnifyingGlass_B_h_pSgp_esm_exports = {};
|
|
51666
51666
|
__export(MagnifyingGlass_B_h_pSgp_esm_exports, {
|
|
51667
51667
|
default: () => MagnifyingGlass
|
|
@@ -51670,7 +51670,7 @@ import { jsxs as jsxs13, Fragment as Fragment13, jsx as jsx23 } from "react/jsx-
|
|
|
51670
51670
|
import "react";
|
|
51671
51671
|
var MagnifyingGlass;
|
|
51672
51672
|
var init_MagnifyingGlass_B_h_pSgp_esm = __esm({
|
|
51673
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51673
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/MagnifyingGlass-B-h_pSgp.esm.js"() {
|
|
51674
51674
|
"use strict";
|
|
51675
51675
|
init_drei();
|
|
51676
51676
|
init_react_three_fiber_esm();
|
|
@@ -51699,7 +51699,7 @@ var init_MagnifyingGlass_B_h_pSgp_esm = __esm({
|
|
|
51699
51699
|
}
|
|
51700
51700
|
});
|
|
51701
51701
|
|
|
51702
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51702
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Jars-DN6mmpjY.esm.js
|
|
51703
51703
|
var Jars_DN6mmpjY_esm_exports = {};
|
|
51704
51704
|
__export(Jars_DN6mmpjY_esm_exports, {
|
|
51705
51705
|
default: () => Jars
|
|
@@ -51708,7 +51708,7 @@ import { useRef as useRef12 } from "react";
|
|
|
51708
51708
|
import { jsxs as jsxs14, Fragment as Fragment14, jsx as jsx24 } from "react/jsx-runtime";
|
|
51709
51709
|
var Jars;
|
|
51710
51710
|
var init_Jars_DN6mmpjY_esm = __esm({
|
|
51711
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51711
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/Jars-DN6mmpjY.esm.js"() {
|
|
51712
51712
|
"use strict";
|
|
51713
51713
|
init_drei();
|
|
51714
51714
|
init_react_three_fiber_esm();
|
|
@@ -51757,7 +51757,7 @@ var init_Jars_DN6mmpjY_esm = __esm({
|
|
|
51757
51757
|
}
|
|
51758
51758
|
});
|
|
51759
51759
|
|
|
51760
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51760
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/MultiCurrency-BlFHk4Zk.esm.js
|
|
51761
51761
|
var MultiCurrency_BlFHk4Zk_esm_exports = {};
|
|
51762
51762
|
__export(MultiCurrency_BlFHk4Zk_esm_exports, {
|
|
51763
51763
|
default: () => MultiCurrency
|
|
@@ -51766,7 +51766,7 @@ import { useRef as useRef13 } from "react";
|
|
|
51766
51766
|
import { jsxs as jsxs15, Fragment as Fragment15, jsx as jsx25 } from "react/jsx-runtime";
|
|
51767
51767
|
var MultiCurrency;
|
|
51768
51768
|
var init_MultiCurrency_BlFHk4Zk_esm = __esm({
|
|
51769
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51769
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/MultiCurrency-BlFHk4Zk.esm.js"() {
|
|
51770
51770
|
"use strict";
|
|
51771
51771
|
init_drei();
|
|
51772
51772
|
init_react_three_fiber_esm();
|
|
@@ -51826,7 +51826,7 @@ var init_MultiCurrency_BlFHk4Zk_esm = __esm({
|
|
|
51826
51826
|
}
|
|
51827
51827
|
});
|
|
51828
51828
|
|
|
51829
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51829
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/index-ClPpN6dk.esm.js
|
|
51830
51830
|
import { useState as useState6, useEffect as useEffect8, forwardRef as forwardRef4, Suspense as Suspense2, lazy } from "react";
|
|
51831
51831
|
import { jsx as jsx26, jsxs as jsxs16, Fragment as Fragment16 } from "react/jsx-runtime";
|
|
51832
51832
|
function defineSrc$1(illustration, size2, descriptor) {
|
|
@@ -51938,7 +51938,7 @@ function getModel({
|
|
|
51938
51938
|
}
|
|
51939
51939
|
var unknownFlagName, Flag, Sizes, ImageSizes, imageSizes, Illustration, Assets, illustration3DNames, RenderMode, Illustration3D;
|
|
51940
51940
|
var init_index_ClPpN6dk_esm = __esm({
|
|
51941
|
-
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
51941
|
+
"../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/index-ClPpN6dk.esm.js"() {
|
|
51942
51942
|
"use strict";
|
|
51943
51943
|
init_clsx();
|
|
51944
51944
|
unknownFlagName = "wise";
|
|
@@ -53143,7 +53143,7 @@ var DateInputRenderer_default = DateInputRenderer;
|
|
|
53143
53143
|
// ../renderers/src/DecisionRenderer.tsx
|
|
53144
53144
|
import { Header, NavigationOption, NavigationOptionsList } from "@transferwise/components";
|
|
53145
53145
|
|
|
53146
|
-
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.
|
|
53146
|
+
// ../../node_modules/.pnpm/@wise+art@2.20.0_@transferwise+neptune-css@14.23.0_@types+react@18.3.20_react-dom@18.3.1_reac_3u2gepknok7a4fhfc5ygus7hla/node_modules/@wise/art/dist/index.esm.js
|
|
53147
53147
|
init_index_ClPpN6dk_esm();
|
|
53148
53148
|
init_clsx();
|
|
53149
53149
|
import "react";
|
|
@@ -53350,6 +53350,7 @@ function isRelativePath(url = "") {
|
|
|
53350
53350
|
import { jsx as jsx36 } from "react/jsx-runtime";
|
|
53351
53351
|
function UrlImage({
|
|
53352
53352
|
accessibilityDescription,
|
|
53353
|
+
align,
|
|
53353
53354
|
margin,
|
|
53354
53355
|
size: size2,
|
|
53355
53356
|
uri,
|
|
@@ -53361,7 +53362,7 @@ function UrlImage({
|
|
|
53361
53362
|
void getImageSource(httpClient, uri).then(setImageSource);
|
|
53362
53363
|
}
|
|
53363
53364
|
}, [uri, httpClient]);
|
|
53364
|
-
return /* @__PURE__ */ jsx36("div", { className: `df-image ${size2 || "md"}`, children: /* @__PURE__ */ jsx36(
|
|
53365
|
+
return /* @__PURE__ */ jsx36("div", { className: `df-image ${align} ${size2 || "md"}`, children: /* @__PURE__ */ jsx36(
|
|
53365
53366
|
Image2,
|
|
53366
53367
|
{
|
|
53367
53368
|
className: `img-responsive ${getMargin(margin)}`,
|
|
@@ -53404,12 +53405,26 @@ var getImageSource = async (httpClient, imageUrl) => {
|
|
|
53404
53405
|
}
|
|
53405
53406
|
};
|
|
53406
53407
|
|
|
53408
|
+
// ../renderers/src/ImageRenderer/isAnimated.ts
|
|
53409
|
+
var isAnimated = (uri) => {
|
|
53410
|
+
const sections = uri.split("?");
|
|
53411
|
+
if (sections.length === 1) {
|
|
53412
|
+
return false;
|
|
53413
|
+
}
|
|
53414
|
+
const params = sections[1];
|
|
53415
|
+
if (!params.startsWith("+")) {
|
|
53416
|
+
return false;
|
|
53417
|
+
}
|
|
53418
|
+
return params.substring(1).split("&").some((param) => param === "type=animated");
|
|
53419
|
+
};
|
|
53420
|
+
|
|
53407
53421
|
// ../renderers/src/ImageRenderer/UrnIllustration.tsx
|
|
53408
53422
|
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
53409
53423
|
var urnPrefix = "urn:wise:illustrations:";
|
|
53410
53424
|
var isUrnIllustration = (uri) => uri.startsWith(urnPrefix);
|
|
53411
53425
|
function UrnIllustration({
|
|
53412
53426
|
accessibilityDescription,
|
|
53427
|
+
align,
|
|
53413
53428
|
margin,
|
|
53414
53429
|
size: size2,
|
|
53415
53430
|
uri
|
|
@@ -53418,9 +53433,9 @@ function UrnIllustration({
|
|
|
53418
53433
|
const illustrationName = getIllustrationName(uri);
|
|
53419
53434
|
const illustration3DName = getIllustration3DName(uri);
|
|
53420
53435
|
if (illustration3DName && isAnimated(uri)) {
|
|
53421
|
-
return /* @__PURE__ */ jsx37("div", { className: `df-image ${getMargin(margin)}`, children: /* @__PURE__ */ jsx37(Illustration3D, { name: illustration3DName, size: illustrationSize }) });
|
|
53436
|
+
return /* @__PURE__ */ jsx37("div", { className: `df-image ${align} ${getMargin(margin)}`, children: /* @__PURE__ */ jsx37(Illustration3D, { name: illustration3DName, size: illustrationSize }) });
|
|
53422
53437
|
}
|
|
53423
|
-
return /* @__PURE__ */ jsx37("div", { className: `df-image ${getMargin(margin)}`, children: /* @__PURE__ */ jsx37(
|
|
53438
|
+
return /* @__PURE__ */ jsx37("div", { className: `df-image ${align} ${getMargin(margin)}`, children: /* @__PURE__ */ jsx37(
|
|
53424
53439
|
Illustration,
|
|
53425
53440
|
{
|
|
53426
53441
|
className: "df-illustration",
|
|
@@ -53434,9 +53449,6 @@ var getIllustrationSize = (size2) => ({ xs: "small", sm: "small", md: "medium",
|
|
|
53434
53449
|
var getIllustrationName = (uri) => {
|
|
53435
53450
|
return uri.replace(urnPrefix, "").split("?")[0];
|
|
53436
53451
|
};
|
|
53437
|
-
var isAnimated = (uri) => {
|
|
53438
|
-
return false;
|
|
53439
|
-
};
|
|
53440
53452
|
var getIllustration3DName = (uri) => {
|
|
53441
53453
|
const illustrationName = getIllustrationName(uri);
|
|
53442
53454
|
return isIllustrationSupport3D(illustrationName) ? illustrationName : null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise/dynamic-flow-client-internal",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.6.0",
|
|
4
4
|
"description": "Dynamic Flow web client for Wise",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./build/main.js",
|
|
@@ -37,26 +37,26 @@
|
|
|
37
37
|
"@babel/preset-react": "7.26.3",
|
|
38
38
|
"@babel/preset-typescript": "7.26.0",
|
|
39
39
|
"@chromatic-com/storybook": "3.2.6",
|
|
40
|
-
"@formatjs/cli": "^6.6.
|
|
41
|
-
"@storybook/addon-a11y": "^8.6.
|
|
42
|
-
"@storybook/addon-actions": "^8.6.
|
|
43
|
-
"@storybook/addon-essentials": "^8.6.
|
|
44
|
-
"@storybook/addon-interactions": "^8.6.
|
|
45
|
-
"@storybook/addon-links": "^8.6.
|
|
40
|
+
"@formatjs/cli": "^6.6.2",
|
|
41
|
+
"@storybook/addon-a11y": "^8.6.8",
|
|
42
|
+
"@storybook/addon-actions": "^8.6.8",
|
|
43
|
+
"@storybook/addon-essentials": "^8.6.8",
|
|
44
|
+
"@storybook/addon-interactions": "^8.6.8",
|
|
45
|
+
"@storybook/addon-links": "^8.6.8",
|
|
46
46
|
"@storybook/addon-webpack5-compiler-babel": "^3.0.5",
|
|
47
|
-
"@storybook/react": "^8.6.
|
|
48
|
-
"@storybook/react-webpack5": "^8.6.
|
|
49
|
-
"@storybook/test": "^8.6.
|
|
47
|
+
"@storybook/react": "^8.6.8",
|
|
48
|
+
"@storybook/react-webpack5": "^8.6.8",
|
|
49
|
+
"@storybook/test": "^8.6.8",
|
|
50
50
|
"@testing-library/dom": "10.4.0",
|
|
51
51
|
"@testing-library/jest-dom": "6.6.3",
|
|
52
52
|
"@testing-library/react": "16.2.0",
|
|
53
53
|
"@testing-library/user-event": "14.6.1",
|
|
54
|
-
"@transferwise/components": "46.94.
|
|
54
|
+
"@transferwise/components": "46.94.2",
|
|
55
55
|
"@transferwise/formatting": "^2.13.1",
|
|
56
56
|
"@transferwise/icons": "3.19.1",
|
|
57
|
-
"@transferwise/neptune-css": "14.
|
|
57
|
+
"@transferwise/neptune-css": "14.23.0",
|
|
58
58
|
"@types/jest": "29.5.14",
|
|
59
|
-
"@types/react": "18.3.
|
|
59
|
+
"@types/react": "18.3.20",
|
|
60
60
|
"@types/react-dom": "18.3.5",
|
|
61
61
|
"@wise/art": "2.20.0",
|
|
62
62
|
"@wise/components-theming": "^1.6.1",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"react": "18.3.1",
|
|
75
75
|
"react-dom": "18.3.1",
|
|
76
76
|
"react-intl": "6.8.9",
|
|
77
|
-
"storybook": "^8.6.
|
|
77
|
+
"storybook": "^8.6.8",
|
|
78
78
|
"stylelint": "16.16.0",
|
|
79
79
|
"stylelint-config-standard": "36.0.1",
|
|
80
80
|
"stylelint-no-unsupported-browser-features": "8.0.4",
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"typescript": "5.8.2",
|
|
84
84
|
"webpack": "5.98.0",
|
|
85
85
|
"@wise/dynamic-flow-fixtures": "0.0.1",
|
|
86
|
-
"@wise/dynamic-flow-
|
|
87
|
-
"@wise/dynamic-flow-
|
|
86
|
+
"@wise/dynamic-flow-renderers": "0.0.0",
|
|
87
|
+
"@wise/dynamic-flow-types": "3.1.0"
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
90
|
"@transferwise/components": "^46.92.0",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
},
|
|
100
100
|
"dependencies": {
|
|
101
101
|
"classnames": "2.5.1",
|
|
102
|
-
"@wise/dynamic-flow-client": "4.
|
|
102
|
+
"@wise/dynamic-flow-client": "4.3.0",
|
|
103
103
|
"@wise/dynamic-flow-types": "3.1.0"
|
|
104
104
|
},
|
|
105
105
|
"scripts": {
|