@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260714120443 → 0.8.1-dev.20260714124630
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 +25 -9
- package/dist/index.mjs +25 -11
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5354,8 +5354,9 @@ var AnimationUtility = class {
|
|
|
5354
5354
|
speedPerChar = 100,
|
|
5355
5355
|
cursor = true,
|
|
5356
5356
|
mode = "enter",
|
|
5357
|
-
direction = "left"
|
|
5358
|
-
|
|
5357
|
+
direction = "left",
|
|
5358
|
+
backgroundColor,
|
|
5359
|
+
borderColor
|
|
5359
5360
|
} = config;
|
|
5360
5361
|
let base = "", visible = "", keyframes = "";
|
|
5361
5362
|
switch (config.animation) {
|
|
@@ -5397,6 +5398,23 @@ var AnimationUtility = class {
|
|
|
5397
5398
|
visible = `animation:bounce ${duration / 1e3}s ${easing} ${delay / 1e3}s ${repeat};`;
|
|
5398
5399
|
}
|
|
5399
5400
|
break;
|
|
5401
|
+
case "Background":
|
|
5402
|
+
base = `
|
|
5403
|
+
transition: background-color ${duration}ms ${easing} ${delay}ms;
|
|
5404
|
+
`;
|
|
5405
|
+
visible = `
|
|
5406
|
+
background-color: ${backgroundColor};
|
|
5407
|
+
`;
|
|
5408
|
+
break;
|
|
5409
|
+
case "Border":
|
|
5410
|
+
base = `
|
|
5411
|
+
transition:
|
|
5412
|
+
border-color ${duration}ms ${easing} ${delay}ms;
|
|
5413
|
+
`;
|
|
5414
|
+
visible = `
|
|
5415
|
+
border-color:${borderColor};
|
|
5416
|
+
`;
|
|
5417
|
+
break;
|
|
5400
5418
|
case "Typewriter":
|
|
5401
5419
|
keyframes = `
|
|
5402
5420
|
@keyframes typewriter { from { width: 0 } to { width: 100% } }
|
|
@@ -7787,13 +7805,11 @@ var DataListRenderer = ({
|
|
|
7787
7805
|
};
|
|
7788
7806
|
});
|
|
7789
7807
|
return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(import_react59.default.Fragment, { children: [
|
|
7790
|
-
resolvedTabs.length > 0 &&
|
|
7791
|
-
|
|
7792
|
-
|
|
7793
|
-
|
|
7794
|
-
|
|
7795
|
-
}
|
|
7796
|
-
),
|
|
7808
|
+
resolvedTabs.length > 0 && // <NavigationTabsV2
|
|
7809
|
+
// tabs={resolvedTabs}
|
|
7810
|
+
// params={(widgetProps?.params ?? params) as Record<string, any>}
|
|
7811
|
+
// />
|
|
7812
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(NavigationTabsV2_default, { tabs, params: widgetProps.params }),
|
|
7797
7813
|
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
7798
7814
|
DataList_default,
|
|
7799
7815
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -1220,8 +1220,9 @@ var AnimationUtility = class {
|
|
|
1220
1220
|
speedPerChar = 100,
|
|
1221
1221
|
cursor = true,
|
|
1222
1222
|
mode = "enter",
|
|
1223
|
-
direction = "left"
|
|
1224
|
-
|
|
1223
|
+
direction = "left",
|
|
1224
|
+
backgroundColor,
|
|
1225
|
+
borderColor
|
|
1225
1226
|
} = config;
|
|
1226
1227
|
let base = "", visible = "", keyframes = "";
|
|
1227
1228
|
switch (config.animation) {
|
|
@@ -1263,6 +1264,23 @@ var AnimationUtility = class {
|
|
|
1263
1264
|
visible = `animation:bounce ${duration / 1e3}s ${easing} ${delay / 1e3}s ${repeat};`;
|
|
1264
1265
|
}
|
|
1265
1266
|
break;
|
|
1267
|
+
case "Background":
|
|
1268
|
+
base = `
|
|
1269
|
+
transition: background-color ${duration}ms ${easing} ${delay}ms;
|
|
1270
|
+
`;
|
|
1271
|
+
visible = `
|
|
1272
|
+
background-color: ${backgroundColor};
|
|
1273
|
+
`;
|
|
1274
|
+
break;
|
|
1275
|
+
case "Border":
|
|
1276
|
+
base = `
|
|
1277
|
+
transition:
|
|
1278
|
+
border-color ${duration}ms ${easing} ${delay}ms;
|
|
1279
|
+
`;
|
|
1280
|
+
visible = `
|
|
1281
|
+
border-color:${borderColor};
|
|
1282
|
+
`;
|
|
1283
|
+
break;
|
|
1266
1284
|
case "Typewriter":
|
|
1267
1285
|
keyframes = `
|
|
1268
1286
|
@keyframes typewriter { from { width: 0 } to { width: 100% } }
|
|
@@ -3618,13 +3636,11 @@ var DataListRenderer = ({
|
|
|
3618
3636
|
};
|
|
3619
3637
|
});
|
|
3620
3638
|
return /* @__PURE__ */ jsxs17(React28.Fragment, { children: [
|
|
3621
|
-
resolvedTabs.length > 0 &&
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
}
|
|
3627
|
-
),
|
|
3639
|
+
resolvedTabs.length > 0 && // <NavigationTabsV2
|
|
3640
|
+
// tabs={resolvedTabs}
|
|
3641
|
+
// params={(widgetProps?.params ?? params) as Record<string, any>}
|
|
3642
|
+
// />
|
|
3643
|
+
/* @__PURE__ */ jsx41(NavigationTabsV2_default, { tabs, params: widgetProps.params }),
|
|
3628
3644
|
/* @__PURE__ */ jsx41(
|
|
3629
3645
|
DataList_default,
|
|
3630
3646
|
{
|
|
@@ -4263,5 +4279,3 @@ export {
|
|
|
4263
4279
|
ViewControl_default as ViewControl,
|
|
4264
4280
|
ViewControlTypes_default as ViewControlTypes
|
|
4265
4281
|
};
|
|
4266
|
-
ontrolTypes
|
|
4267
|
-
};
|
package/package.json
CHANGED