@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260715061446 → 0.8.1-dev.20260715103126
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/index.js +6 -15
- package/dist/index.mjs +25 -32
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5406,28 +5406,19 @@ var AnimationUtility = class {
|
|
|
5406
5406
|
`;
|
|
5407
5407
|
if (mode === "enter") {
|
|
5408
5408
|
base = `opacity:0;`;
|
|
5409
|
-
visible = `opacity:1; animation:bounce ${duration}ms ${easing} ${delay}ms ${repeat};`;
|
|
5409
|
+
visible = `opacity:1; animation: bounce ${duration}ms ${easing} ${delay}ms ${repeat};`;
|
|
5410
5410
|
} else {
|
|
5411
5411
|
base = ``;
|
|
5412
|
-
visible = `animation:bounce ${duration / 1e3}s ${easing} ${delay / 1e3}s ${repeat};`;
|
|
5412
|
+
visible = `animation: bounce ${duration / 1e3}s ${easing} ${delay / 1e3}s ${repeat};`;
|
|
5413
5413
|
}
|
|
5414
5414
|
break;
|
|
5415
5415
|
case "Background":
|
|
5416
|
-
base = `
|
|
5417
|
-
|
|
5418
|
-
`;
|
|
5419
|
-
visible = `
|
|
5420
|
-
background-color: ${backgroundColor};
|
|
5421
|
-
`;
|
|
5416
|
+
base = `transition: background-color ${duration}ms ${easing} ${delay}ms;`;
|
|
5417
|
+
visible = `background-color: ${backgroundColor};`;
|
|
5422
5418
|
break;
|
|
5423
5419
|
case "Border":
|
|
5424
|
-
base = `
|
|
5425
|
-
|
|
5426
|
-
border-color ${duration}ms ${easing} ${delay}ms;
|
|
5427
|
-
`;
|
|
5428
|
-
visible = `
|
|
5429
|
-
border-color:${borderColor};
|
|
5430
|
-
`;
|
|
5420
|
+
base = `transition: border-color ${duration}ms ${easing} ${delay}ms;`;
|
|
5421
|
+
visible = `border-color: ${borderColor};`;
|
|
5431
5422
|
break;
|
|
5432
5423
|
case "Typewriter":
|
|
5433
5424
|
keyframes = `
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
1
3
|
import {
|
|
2
4
|
OdataBuilder
|
|
3
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-X3YSXTD2.mjs";
|
|
4
6
|
import {
|
|
5
7
|
AssetUtility_default,
|
|
6
8
|
BooleanSelect_default,
|
|
@@ -17,22 +19,22 @@ import {
|
|
|
17
19
|
PhoneInput_default,
|
|
18
20
|
SelectWithSearchInput_default,
|
|
19
21
|
TimeInput_default
|
|
20
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-7ZFZLN56.mjs";
|
|
21
23
|
import {
|
|
22
24
|
Constants,
|
|
23
25
|
Hyperlink,
|
|
24
26
|
Icon_default,
|
|
25
27
|
InputControlType_default
|
|
26
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-5GHPW7SJ.mjs";
|
|
27
29
|
import {
|
|
28
30
|
ServiceClient_default
|
|
29
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-WEV5U33G.mjs";
|
|
30
32
|
import {
|
|
31
33
|
Button_default,
|
|
32
34
|
ClientButton_default,
|
|
33
35
|
ToastService_default
|
|
34
|
-
} from "./chunk-
|
|
35
|
-
import "./chunk-
|
|
36
|
+
} from "./chunk-JKP4XOZB.mjs";
|
|
37
|
+
import "./chunk-IMNQO57B.mjs";
|
|
36
38
|
|
|
37
39
|
// src/components/controls/view/ViewControl.tsx
|
|
38
40
|
import React13 from "react";
|
|
@@ -76,7 +78,7 @@ var NumberView_default = NumberView;
|
|
|
76
78
|
|
|
77
79
|
// src/components/controls/view/DateView.tsx
|
|
78
80
|
import dynamic from "next/dynamic";
|
|
79
|
-
var DateView = dynamic(() => import("./DateViewClient-
|
|
81
|
+
var DateView = dynamic(() => import("./DateViewClient-VLTRN47D.mjs"), {
|
|
80
82
|
ssr: false
|
|
81
83
|
});
|
|
82
84
|
var DateView_default = DateView;
|
|
@@ -131,7 +133,7 @@ import React3 from "react";
|
|
|
131
133
|
// src/components/DeviceAssetSelector.tsx
|
|
132
134
|
import dynamic2 from "next/dynamic";
|
|
133
135
|
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
134
|
-
var HlsPlayer = dynamic2(() => import("./HlsPlayer-
|
|
136
|
+
var HlsPlayer = dynamic2(() => import("./HlsPlayer-5AWFZ2P6.mjs"), { ssr: false });
|
|
135
137
|
var FORMAT_CLASSES = {
|
|
136
138
|
center: "justify-center",
|
|
137
139
|
left: "justify-start",
|
|
@@ -366,7 +368,7 @@ var AiGeneratedSummary_default = AiGeneratedSummary;
|
|
|
366
368
|
|
|
367
369
|
// src/components/controls/view/DateTimeVew.tsx
|
|
368
370
|
import dynamic3 from "next/dynamic";
|
|
369
|
-
var DateTimeView = dynamic3(() => import("./DateTimeViewClient-
|
|
371
|
+
var DateTimeView = dynamic3(() => import("./DateTimeViewClient-R3M6ISVK.mjs"), {
|
|
370
372
|
ssr: false
|
|
371
373
|
});
|
|
372
374
|
var DateTimeVew_default = DateTimeView;
|
|
@@ -407,7 +409,7 @@ var ViewControl_default = ViewControl;
|
|
|
407
409
|
|
|
408
410
|
// src/components/controls/edit/InputControl.tsx
|
|
409
411
|
import dynamic4 from "next/dynamic";
|
|
410
|
-
var InputControl = dynamic4(() => import("./InputControlClient-
|
|
412
|
+
var InputControl = dynamic4(() => import("./InputControlClient-QAZKQLFO.mjs"), {
|
|
411
413
|
ssr: false
|
|
412
414
|
});
|
|
413
415
|
var InputControl_default = InputControl;
|
|
@@ -503,7 +505,7 @@ import React14 from "react";
|
|
|
503
505
|
// src/components/pageRenderingEngine/nodes/ImageNode.tsx
|
|
504
506
|
import dynamic5 from "next/dynamic";
|
|
505
507
|
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
506
|
-
var HlsPlayer2 = dynamic5(() => import("./HlsPlayer-
|
|
508
|
+
var HlsPlayer2 = dynamic5(() => import("./HlsPlayer-5AWFZ2P6.mjs"), { ssr: false });
|
|
507
509
|
var getNestedValue = (obj, path) => {
|
|
508
510
|
if (!obj || !path) return void 0;
|
|
509
511
|
return path.split(".").reduce((current, key) => {
|
|
@@ -611,7 +613,7 @@ var ImageNode_default = ImageNode;
|
|
|
611
613
|
// src/components/pageRenderingEngine/nodes/LinkNode.tsx
|
|
612
614
|
import dynamic6 from "next/dynamic";
|
|
613
615
|
import { Fragment, jsx as jsx18, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
614
|
-
var LinkNodeButton = dynamic6(() => import("./LinkNodeButton-
|
|
616
|
+
var LinkNodeButton = dynamic6(() => import("./LinkNodeButton-LX3KKGZY.mjs"), {
|
|
615
617
|
ssr: false
|
|
616
618
|
});
|
|
617
619
|
function getNestedValue2(obj, path) {
|
|
@@ -1046,7 +1048,7 @@ var QuoteNode_default = QuoteNode;
|
|
|
1046
1048
|
import React20 from "react";
|
|
1047
1049
|
import dynamic7 from "next/dynamic";
|
|
1048
1050
|
import { jsx as jsx27, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
1049
|
-
var CopyButton = dynamic7(() => import("./CopyButton-
|
|
1051
|
+
var CopyButton = dynamic7(() => import("./CopyButton-UPJPMJUB.mjs"), {
|
|
1050
1052
|
ssr: false,
|
|
1051
1053
|
// optional: fallback UI while loading
|
|
1052
1054
|
loading: () => /* @__PURE__ */ jsx27("span", { className: "text-gray-400 text-xs", children: "Copy" })
|
|
@@ -1189,7 +1191,7 @@ import React22 from "react";
|
|
|
1189
1191
|
// src/components/pageRenderingEngine/nodes/EmbedNode.tsx
|
|
1190
1192
|
import dynamic8 from "next/dynamic";
|
|
1191
1193
|
import { jsx as jsx30 } from "react/jsx-runtime";
|
|
1192
|
-
var IframeClient = dynamic8(() => import("./IframeClient-
|
|
1194
|
+
var IframeClient = dynamic8(() => import("./IframeClient-RGJFZ5P2.mjs"), {
|
|
1193
1195
|
ssr: false
|
|
1194
1196
|
});
|
|
1195
1197
|
var EmbedNode = (props) => {
|
|
@@ -1270,28 +1272,19 @@ var AnimationUtility = class {
|
|
|
1270
1272
|
`;
|
|
1271
1273
|
if (mode === "enter") {
|
|
1272
1274
|
base = `opacity:0;`;
|
|
1273
|
-
visible = `opacity:1; animation:bounce ${duration}ms ${easing} ${delay}ms ${repeat};`;
|
|
1275
|
+
visible = `opacity:1; animation: bounce ${duration}ms ${easing} ${delay}ms ${repeat};`;
|
|
1274
1276
|
} else {
|
|
1275
1277
|
base = ``;
|
|
1276
|
-
visible = `animation:bounce ${duration / 1e3}s ${easing} ${delay / 1e3}s ${repeat};`;
|
|
1278
|
+
visible = `animation: bounce ${duration / 1e3}s ${easing} ${delay / 1e3}s ${repeat};`;
|
|
1277
1279
|
}
|
|
1278
1280
|
break;
|
|
1279
1281
|
case "Background":
|
|
1280
|
-
base = `
|
|
1281
|
-
|
|
1282
|
-
`;
|
|
1283
|
-
visible = `
|
|
1284
|
-
background-color: ${backgroundColor};
|
|
1285
|
-
`;
|
|
1282
|
+
base = `transition: background-color ${duration}ms ${easing} ${delay}ms;`;
|
|
1283
|
+
visible = `background-color: ${backgroundColor};`;
|
|
1286
1284
|
break;
|
|
1287
1285
|
case "Border":
|
|
1288
|
-
base = `
|
|
1289
|
-
|
|
1290
|
-
border-color ${duration}ms ${easing} ${delay}ms;
|
|
1291
|
-
`;
|
|
1292
|
-
visible = `
|
|
1293
|
-
border-color:${borderColor};
|
|
1294
|
-
`;
|
|
1286
|
+
base = `transition: border-color ${duration}ms ${easing} ${delay}ms;`;
|
|
1287
|
+
visible = `border-color: ${borderColor};`;
|
|
1295
1288
|
break;
|
|
1296
1289
|
case "Typewriter":
|
|
1297
1290
|
keyframes = `
|
|
@@ -1434,7 +1427,7 @@ var NoDataFound_default = NoDataFound;
|
|
|
1434
1427
|
// src/components/pageRenderingEngine/nodes/ImageGalleryNode.tsx
|
|
1435
1428
|
import dynamic9 from "next/dynamic";
|
|
1436
1429
|
import { Fragment as Fragment5, jsx as jsx32, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1437
|
-
var HlsPlayer3 = dynamic9(() => import("./HlsPlayer-
|
|
1430
|
+
var HlsPlayer3 = dynamic9(() => import("./HlsPlayer-5AWFZ2P6.mjs"), { ssr: false });
|
|
1438
1431
|
var deviceToMediaQuery = (device) => {
|
|
1439
1432
|
switch (device) {
|
|
1440
1433
|
case "lg":
|
|
@@ -2249,8 +2242,8 @@ var DocumentNode_default = DocumentNode;
|
|
|
2249
2242
|
|
|
2250
2243
|
// src/components/pageRenderingEngine/nodes/DivContainer.tsx
|
|
2251
2244
|
import { jsx as jsx34, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
2252
|
-
var Pagination = dynamic10(() => import("./Pagination-
|
|
2253
|
-
var Slider = dynamic10(() => import("./Slider-
|
|
2245
|
+
var Pagination = dynamic10(() => import("./Pagination-T7YN2OMV.mjs"), { ssr: true });
|
|
2246
|
+
var Slider = dynamic10(() => import("./Slider-554BKC7N.mjs"), {
|
|
2254
2247
|
ssr: false
|
|
2255
2248
|
});
|
|
2256
2249
|
function toCamelCase(str) {
|
package/package.json
CHANGED