@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260527044956 → 0.8.1-dev.20260527053736

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.
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  HlsPlayer_default
4
- } from "./chunk-F6CXFHUE.mjs";
4
+ } from "./chunk-2YXREMBN.mjs";
5
5
  export {
6
6
  HlsPlayer_default as default
7
7
  };
@@ -36,7 +36,8 @@ var HlsPlayer = React.memo(
36
36
  showControls = true,
37
37
  loop = false,
38
38
  playOptions = "autoplay",
39
- placementCode = ""
39
+ placementCode = "",
40
+ styles
40
41
  }) => {
41
42
  const containerRef = useRef(null);
42
43
  const videoRef = useRef(null);
@@ -299,7 +300,8 @@ var HlsPlayer = React.memo(
299
300
  "div",
300
301
  {
301
302
  ref: containerRef,
302
- className: "relative w-full aspect-video bg-black",
303
+ className: "relative w-full overflow-hidden aspect-video bg-black",
304
+ style: styles,
303
305
  onMouseEnter: handleMouseEnter,
304
306
  onMouseLeave: handleMouseLeave,
305
307
  onMouseMove: handleMouseMove,
package/dist/index.js CHANGED
@@ -200,7 +200,8 @@ var init_HlsPlayer = __esm({
200
200
  showControls = true,
201
201
  loop = false,
202
202
  playOptions = "autoplay",
203
- placementCode = ""
203
+ placementCode = "",
204
+ styles
204
205
  }) => {
205
206
  const containerRef = (0, import_react4.useRef)(null);
206
207
  const videoRef = (0, import_react4.useRef)(null);
@@ -463,7 +464,8 @@ var init_HlsPlayer = __esm({
463
464
  "div",
464
465
  {
465
466
  ref: containerRef,
466
- className: "relative w-full aspect-video bg-black",
467
+ className: "relative w-full overflow-hidden aspect-video bg-black",
468
+ style: styles,
467
469
  onMouseEnter: handleMouseEnter,
468
470
  onMouseLeave: handleMouseLeave,
469
471
  onMouseMove: handleMouseMove,
@@ -5248,33 +5250,24 @@ var HlsPlayer3 = (0, import_dynamic7.default)(() => Promise.resolve().then(() =>
5248
5250
  var deviceToMediaQuery = (device) => {
5249
5251
  switch (device) {
5250
5252
  case "sm":
5251
- return "(max-width: 767px)";
5253
+ return "(max-width: 480px)";
5252
5254
  case "md":
5253
- return "(min-width: 768px) and (max-width: 1199px)";
5255
+ return "(max-width: 768px)";
5254
5256
  case "lg":
5255
- return "(min-width: 1200px) and (max-width: 1919px)";
5256
- case "tv":
5257
- return "(min-width: 1920px)";
5257
+ return "(min-width: 769px)";
5258
+ // case "tv":
5259
+ // return "(min-width: 1920px)";
5258
5260
  default:
5259
5261
  return null;
5260
5262
  }
5261
5263
  };
5264
+ var DEVICE_ORDER = ["sm", "md", "lg", "tv"];
5262
5265
  var parseMaybeNumber = (value) => {
5263
- if (typeof value === "number") {
5264
- return Number.isFinite(value) ? value : void 0;
5265
- }
5266
+ if (typeof value === "number") return Number.isFinite(value) ? value : void 0;
5266
5267
  if (typeof value !== "string") return void 0;
5267
5268
  const n = Number(value);
5268
5269
  return Number.isFinite(n) ? n : void 0;
5269
5270
  };
5270
- var groupImagesForPicture = (images) => {
5271
- const sources = images.filter((img) => !!img.device);
5272
- const fallbacks = images.filter((img) => !img.device);
5273
- return {
5274
- sources,
5275
- fallback: fallbacks[0] ?? sources[0] ?? null
5276
- };
5277
- };
5278
5271
  var ImageGalleryNode = (props) => {
5279
5272
  const resolveImageUrl = (imageUrl) => {
5280
5273
  if (!imageUrl) return "";
@@ -5294,62 +5287,56 @@ var ImageGalleryNode = (props) => {
5294
5287
  const staticImages = rawImages.filter(
5295
5288
  (img) => !resolveImageUrl(img.imageUrl).endsWith(".m3u8")
5296
5289
  );
5297
- const { sources: staticSources, fallback: staticFallback } = groupImagesForPicture(staticImages);
5290
+ const hlsSources = [
5291
+ ...DEVICE_ORDER.flatMap((deviceKey) => {
5292
+ const img = hlsImages.find((i) => i.device === deviceKey);
5293
+ if (!img) return [];
5294
+ const src = resolveImageUrl(img.imageUrl);
5295
+ if (!src) return [];
5296
+ const media = deviceToMediaQuery(img.device);
5297
+ const posterUrl = resolvePosterUrl(img.posterUrl);
5298
+ return [{ src, ...media ? { media } : {}, ...posterUrl ? { posterUrl } : {} }];
5299
+ }),
5300
+ ...hlsImages.filter((img) => !img.device).map((img) => {
5301
+ const src = resolveImageUrl(img.imageUrl);
5302
+ const posterUrl = resolvePosterUrl(img.posterUrl);
5303
+ return { src, ...posterUrl ? { posterUrl } : {} };
5304
+ }).filter((s) => !!s.src)
5305
+ ];
5306
+ const primaryHls = hlsImages.find((img) => !img.device) ?? hlsImages[0];
5307
+ const hlsIntrinsicWidth = primaryHls ? parseMaybeNumber(primaryHls.intrinsicWidth)?.toString() : void 0;
5308
+ const hlsIntrinsicHeight = primaryHls ? parseMaybeNumber(primaryHls.intrinsicHeight)?.toString() : void 0;
5309
+ const hlsStyles = {};
5310
+ if (primaryHls?.height) hlsStyles.height = primaryHls.height;
5311
+ if (primaryHls?.width) hlsStyles.width = primaryHls.width;
5312
+ if (primaryHls?.borderRadius) hlsStyles.borderRadius = primaryHls.borderRadius;
5313
+ const staticSources = staticImages.filter((img) => !!img.device);
5314
+ const staticFallback = staticImages.find((img) => !img.device) ?? staticImages[0] ?? null;
5298
5315
  const FormatClass = {
5299
5316
  center: "justify-center",
5300
5317
  left: "justify-start",
5301
5318
  right: "justify-end"
5302
5319
  };
5303
5320
  const formatClasses = FormatClass[props.node.format || ""] || "";
5304
- return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: `flex flex-wrap gap-4 ${formatClasses}`, children: [
5305
- hlsImages.map((img, idx) => {
5306
- const assetUrl = resolveImageUrl(img.imageUrl);
5307
- if (!assetUrl) return null;
5308
- const posterUrl = resolvePosterUrl(img.posterUrl);
5309
- const intrinsicWidth = parseMaybeNumber(img.intrinsicWidth);
5310
- const intrinsicHeight = parseMaybeNumber(img.intrinsicHeight);
5311
- const mediaQuery = deviceToMediaQuery(img.device);
5312
- const styles = {};
5313
- if (img.height) styles.height = img.height;
5314
- if (img.width) styles.width = img.width;
5315
- if (img.borderRadius) styles.borderRadius = img.borderRadius;
5316
- return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
5317
- "div",
5318
- {
5319
- className: "max-w-full",
5320
- style: {
5321
- ...mediaQuery ? { "--media-query": mediaQuery } : void 0,
5322
- ...styles
5323
- },
5324
- children: [
5325
- mediaQuery && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("style", { children: `
5326
- [data-hls-idx="${idx}"] { display: none; }
5327
- @media ${mediaQuery} { [data-hls-idx="${idx}"] { display: block; } }
5328
- ` }),
5329
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { "data-hls-idx": mediaQuery ? idx : void 0, children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5330
- HlsPlayer3,
5331
- {
5332
- assetUrl,
5333
- posterUrl,
5334
- intrinsicWidth: intrinsicWidth?.toString(),
5335
- intrinsicHeight: intrinsicHeight?.toString(),
5336
- showControls: true,
5337
- loop: false,
5338
- playOptions: void 0,
5339
- apiBaseUrl: props.apiBaseUrl,
5340
- session: props.session
5341
- }
5342
- ) })
5343
- ]
5344
- },
5345
- `hls-${idx}-${img.imageUrl}`
5346
- );
5347
- }),
5348
- staticFallback && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: "max-w-full", children: /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("picture", { children: [
5349
- ["sm", "md", "lg", "tv"].map((deviceKey) => {
5350
- const match = staticSources.find(
5351
- (img) => img.device === deviceKey
5352
- );
5321
+ return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(import_jsx_runtime69.Fragment, { children: [
5322
+ hlsSources.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_jsx_runtime69.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5323
+ HlsPlayer3,
5324
+ {
5325
+ sources: hlsSources,
5326
+ intrinsicWidth: hlsIntrinsicWidth,
5327
+ intrinsicHeight: hlsIntrinsicHeight,
5328
+ showControls: primaryHls?.showControls ?? false,
5329
+ loop: primaryHls?.loop ?? false,
5330
+ playOptions: primaryHls?.playOptions ?? "",
5331
+ placementCode: primaryHls?.placementCode ?? "",
5332
+ apiBaseUrl: props.apiBaseUrl,
5333
+ session: props.session,
5334
+ styles: hlsStyles
5335
+ }
5336
+ ) }),
5337
+ staticFallback && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_jsx_runtime69.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("picture", { children: [
5338
+ DEVICE_ORDER.map((deviceKey) => {
5339
+ const match = staticSources.find((img) => img.device === deviceKey);
5353
5340
  if (!match) return null;
5354
5341
  const srcUrl = resolveImageUrl(match.imageUrl);
5355
5342
  if (!srcUrl) return null;
@@ -5377,7 +5364,7 @@ var ImageGalleryNode = (props) => {
5377
5364
  if (img.width) styles.width = img.width;
5378
5365
  if (img.borderRadius) styles.borderRadius = img.borderRadius;
5379
5366
  return (
5380
- /* eslint-disable-next-line @next/next/no-img-element */
5367
+ // eslint-disable-next-line @next/next/no-img-element
5381
5368
  /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5382
5369
  "img",
5383
5370
  {
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  HlsPlayer_default
3
- } from "./chunk-F6CXFHUE.mjs";
3
+ } from "./chunk-2YXREMBN.mjs";
4
4
  import {
5
5
  Button_default,
6
6
  ClientButton_default,
@@ -2049,7 +2049,7 @@ import React30 from "react";
2049
2049
  // src/components/pageRenderingEngine/nodes/ImageNode.tsx
2050
2050
  import dynamic3 from "next/dynamic";
2051
2051
  import { jsx as jsx39 } from "react/jsx-runtime";
2052
- var HlsPlayer = dynamic3(() => import("./HlsPlayer-G27NMG7A.mjs"), { ssr: false });
2052
+ var HlsPlayer = dynamic3(() => import("./HlsPlayer-3GPS6EL2.mjs"), { ssr: false });
2053
2053
  var getNestedValue = (obj, path) => {
2054
2054
  if (!obj || !path) return void 0;
2055
2055
  return path.split(".").reduce((current, key) => {
@@ -3708,38 +3708,29 @@ var Pagination_default = Pagination;
3708
3708
 
3709
3709
  // src/components/pageRenderingEngine/nodes/ImageGalleryNode.tsx
3710
3710
  import dynamic7 from "next/dynamic";
3711
- import { jsx as jsx58, jsxs as jsxs31 } from "react/jsx-runtime";
3712
- var HlsPlayer2 = dynamic7(() => import("./HlsPlayer-G27NMG7A.mjs"), { ssr: false });
3711
+ import { Fragment as Fragment7, jsx as jsx58, jsxs as jsxs31 } from "react/jsx-runtime";
3712
+ var HlsPlayer2 = dynamic7(() => import("./HlsPlayer-3GPS6EL2.mjs"), { ssr: false });
3713
3713
  var deviceToMediaQuery = (device) => {
3714
3714
  switch (device) {
3715
3715
  case "sm":
3716
- return "(max-width: 767px)";
3716
+ return "(max-width: 480px)";
3717
3717
  case "md":
3718
- return "(min-width: 768px) and (max-width: 1199px)";
3718
+ return "(max-width: 768px)";
3719
3719
  case "lg":
3720
- return "(min-width: 1200px) and (max-width: 1919px)";
3721
- case "tv":
3722
- return "(min-width: 1920px)";
3720
+ return "(min-width: 769px)";
3721
+ // case "tv":
3722
+ // return "(min-width: 1920px)";
3723
3723
  default:
3724
3724
  return null;
3725
3725
  }
3726
3726
  };
3727
+ var DEVICE_ORDER = ["sm", "md", "lg", "tv"];
3727
3728
  var parseMaybeNumber = (value) => {
3728
- if (typeof value === "number") {
3729
- return Number.isFinite(value) ? value : void 0;
3730
- }
3729
+ if (typeof value === "number") return Number.isFinite(value) ? value : void 0;
3731
3730
  if (typeof value !== "string") return void 0;
3732
3731
  const n = Number(value);
3733
3732
  return Number.isFinite(n) ? n : void 0;
3734
3733
  };
3735
- var groupImagesForPicture = (images) => {
3736
- const sources = images.filter((img) => !!img.device);
3737
- const fallbacks = images.filter((img) => !img.device);
3738
- return {
3739
- sources,
3740
- fallback: fallbacks[0] ?? sources[0] ?? null
3741
- };
3742
- };
3743
3734
  var ImageGalleryNode = (props) => {
3744
3735
  const resolveImageUrl = (imageUrl) => {
3745
3736
  if (!imageUrl) return "";
@@ -3759,62 +3750,56 @@ var ImageGalleryNode = (props) => {
3759
3750
  const staticImages = rawImages.filter(
3760
3751
  (img) => !resolveImageUrl(img.imageUrl).endsWith(".m3u8")
3761
3752
  );
3762
- const { sources: staticSources, fallback: staticFallback } = groupImagesForPicture(staticImages);
3753
+ const hlsSources = [
3754
+ ...DEVICE_ORDER.flatMap((deviceKey) => {
3755
+ const img = hlsImages.find((i) => i.device === deviceKey);
3756
+ if (!img) return [];
3757
+ const src = resolveImageUrl(img.imageUrl);
3758
+ if (!src) return [];
3759
+ const media = deviceToMediaQuery(img.device);
3760
+ const posterUrl = resolvePosterUrl(img.posterUrl);
3761
+ return [{ src, ...media ? { media } : {}, ...posterUrl ? { posterUrl } : {} }];
3762
+ }),
3763
+ ...hlsImages.filter((img) => !img.device).map((img) => {
3764
+ const src = resolveImageUrl(img.imageUrl);
3765
+ const posterUrl = resolvePosterUrl(img.posterUrl);
3766
+ return { src, ...posterUrl ? { posterUrl } : {} };
3767
+ }).filter((s) => !!s.src)
3768
+ ];
3769
+ const primaryHls = hlsImages.find((img) => !img.device) ?? hlsImages[0];
3770
+ const hlsIntrinsicWidth = primaryHls ? parseMaybeNumber(primaryHls.intrinsicWidth)?.toString() : void 0;
3771
+ const hlsIntrinsicHeight = primaryHls ? parseMaybeNumber(primaryHls.intrinsicHeight)?.toString() : void 0;
3772
+ const hlsStyles = {};
3773
+ if (primaryHls?.height) hlsStyles.height = primaryHls.height;
3774
+ if (primaryHls?.width) hlsStyles.width = primaryHls.width;
3775
+ if (primaryHls?.borderRadius) hlsStyles.borderRadius = primaryHls.borderRadius;
3776
+ const staticSources = staticImages.filter((img) => !!img.device);
3777
+ const staticFallback = staticImages.find((img) => !img.device) ?? staticImages[0] ?? null;
3763
3778
  const FormatClass = {
3764
3779
  center: "justify-center",
3765
3780
  left: "justify-start",
3766
3781
  right: "justify-end"
3767
3782
  };
3768
3783
  const formatClasses = FormatClass[props.node.format || ""] || "";
3769
- return /* @__PURE__ */ jsxs31("div", { className: `flex flex-wrap gap-4 ${formatClasses}`, children: [
3770
- hlsImages.map((img, idx) => {
3771
- const assetUrl = resolveImageUrl(img.imageUrl);
3772
- if (!assetUrl) return null;
3773
- const posterUrl = resolvePosterUrl(img.posterUrl);
3774
- const intrinsicWidth = parseMaybeNumber(img.intrinsicWidth);
3775
- const intrinsicHeight = parseMaybeNumber(img.intrinsicHeight);
3776
- const mediaQuery = deviceToMediaQuery(img.device);
3777
- const styles = {};
3778
- if (img.height) styles.height = img.height;
3779
- if (img.width) styles.width = img.width;
3780
- if (img.borderRadius) styles.borderRadius = img.borderRadius;
3781
- return /* @__PURE__ */ jsxs31(
3782
- "div",
3783
- {
3784
- className: "max-w-full",
3785
- style: {
3786
- ...mediaQuery ? { "--media-query": mediaQuery } : void 0,
3787
- ...styles
3788
- },
3789
- children: [
3790
- mediaQuery && /* @__PURE__ */ jsx58("style", { children: `
3791
- [data-hls-idx="${idx}"] { display: none; }
3792
- @media ${mediaQuery} { [data-hls-idx="${idx}"] { display: block; } }
3793
- ` }),
3794
- /* @__PURE__ */ jsx58("div", { "data-hls-idx": mediaQuery ? idx : void 0, children: /* @__PURE__ */ jsx58(
3795
- HlsPlayer2,
3796
- {
3797
- assetUrl,
3798
- posterUrl,
3799
- intrinsicWidth: intrinsicWidth?.toString(),
3800
- intrinsicHeight: intrinsicHeight?.toString(),
3801
- showControls: true,
3802
- loop: false,
3803
- playOptions: void 0,
3804
- apiBaseUrl: props.apiBaseUrl,
3805
- session: props.session
3806
- }
3807
- ) })
3808
- ]
3809
- },
3810
- `hls-${idx}-${img.imageUrl}`
3811
- );
3812
- }),
3813
- staticFallback && /* @__PURE__ */ jsx58("div", { className: "max-w-full", children: /* @__PURE__ */ jsxs31("picture", { children: [
3814
- ["sm", "md", "lg", "tv"].map((deviceKey) => {
3815
- const match = staticSources.find(
3816
- (img) => img.device === deviceKey
3817
- );
3784
+ return /* @__PURE__ */ jsxs31(Fragment7, { children: [
3785
+ hlsSources.length > 0 && /* @__PURE__ */ jsx58(Fragment7, { children: /* @__PURE__ */ jsx58(
3786
+ HlsPlayer2,
3787
+ {
3788
+ sources: hlsSources,
3789
+ intrinsicWidth: hlsIntrinsicWidth,
3790
+ intrinsicHeight: hlsIntrinsicHeight,
3791
+ showControls: primaryHls?.showControls ?? false,
3792
+ loop: primaryHls?.loop ?? false,
3793
+ playOptions: primaryHls?.playOptions ?? "",
3794
+ placementCode: primaryHls?.placementCode ?? "",
3795
+ apiBaseUrl: props.apiBaseUrl,
3796
+ session: props.session,
3797
+ styles: hlsStyles
3798
+ }
3799
+ ) }),
3800
+ staticFallback && /* @__PURE__ */ jsx58(Fragment7, { children: /* @__PURE__ */ jsxs31("picture", { children: [
3801
+ DEVICE_ORDER.map((deviceKey) => {
3802
+ const match = staticSources.find((img) => img.device === deviceKey);
3818
3803
  if (!match) return null;
3819
3804
  const srcUrl = resolveImageUrl(match.imageUrl);
3820
3805
  if (!srcUrl) return null;
@@ -3842,7 +3827,7 @@ var ImageGalleryNode = (props) => {
3842
3827
  if (img.width) styles.width = img.width;
3843
3828
  if (img.borderRadius) styles.borderRadius = img.borderRadius;
3844
3829
  return (
3845
- /* eslint-disable-next-line @next/next/no-img-element */
3830
+ // eslint-disable-next-line @next/next/no-img-element
3846
3831
  /* @__PURE__ */ jsx58(
3847
3832
  "img",
3848
3833
  {
@@ -4282,7 +4267,7 @@ var PageBodyRenderer_default = PageBodyRenderer;
4282
4267
 
4283
4268
  // src/components/Toast.tsx
4284
4269
  import { useState as useState8 } from "react";
4285
- import { Fragment as Fragment7, jsx as jsx61, jsxs as jsxs33 } from "react/jsx-runtime";
4270
+ import { Fragment as Fragment8, jsx as jsx61, jsxs as jsxs33 } from "react/jsx-runtime";
4286
4271
  var Toast = () => {
4287
4272
  const [showToast, setShowToast] = useState8(false);
4288
4273
  const [message, setMessage] = useState8("");
@@ -4325,7 +4310,7 @@ var Toast = () => {
4325
4310
  const closeToast = () => {
4326
4311
  setShowToast(false);
4327
4312
  };
4328
- return /* @__PURE__ */ jsx61(Fragment7, { children: showToast && /* @__PURE__ */ jsx61("div", { className: "fixed top-2 flex justify-center w-1/2 max-w-xl left-1/2 -translate-x-1/2", style: { zIndex: 1e3 }, children: /* @__PURE__ */ jsxs33("div", { className: `w-full items-center flex justify-between p-3 rounded-md relative shadow border bg-${messageType}-soft`, children: [
4313
+ return /* @__PURE__ */ jsx61(Fragment8, { children: showToast && /* @__PURE__ */ jsx61("div", { className: "fixed top-2 flex justify-center w-1/2 max-w-xl left-1/2 -translate-x-1/2", style: { zIndex: 1e3 }, children: /* @__PURE__ */ jsxs33("div", { className: `w-full items-center flex justify-between p-3 rounded-md relative shadow border bg-${messageType}-soft`, children: [
4329
4314
  /* @__PURE__ */ jsx61(
4330
4315
  "span",
4331
4316
  {
@@ -4445,7 +4430,7 @@ var ContentView = (props) => {
4445
4430
  var ContentView_default = ContentView;
4446
4431
 
4447
4432
  // src/components/dataForm/DataList.tsx
4448
- import { Fragment as Fragment8, jsx as jsx65, jsxs as jsxs35 } from "react/jsx-runtime";
4433
+ import { Fragment as Fragment9, jsx as jsx65, jsxs as jsxs35 } from "react/jsx-runtime";
4449
4434
  var DataList = (props) => {
4450
4435
  console.log(props.dataset, "datasetssssss");
4451
4436
  const router = useRouter();
@@ -4537,7 +4522,7 @@ var DataList = (props) => {
4537
4522
  const showFirstPages = activePageNumber <= 5;
4538
4523
  const showLastPages = activePageNumber > pages - 5;
4539
4524
  if (showFirstPages) {
4540
- return /* @__PURE__ */ jsxs35(Fragment8, { children: [
4525
+ return /* @__PURE__ */ jsxs35(Fragment9, { children: [
4541
4526
  Array.from({ length: 8 }, (_, index) => index + 1).map((page) => /* @__PURE__ */ jsx65(React46.Fragment, { children: activePageNumber !== page ? /* @__PURE__ */ jsx65(
4542
4527
  Hyperlink,
4543
4528
  {
@@ -4585,7 +4570,7 @@ var DataList = (props) => {
4585
4570
  ) })
4586
4571
  ] });
4587
4572
  } else if (showLastPages) {
4588
- return /* @__PURE__ */ jsxs35(Fragment8, { children: [
4573
+ return /* @__PURE__ */ jsxs35(Fragment9, { children: [
4589
4574
  /* @__PURE__ */ jsx65(
4590
4575
  Hyperlink,
4591
4576
  {
@@ -4615,7 +4600,7 @@ var DataList = (props) => {
4615
4600
  )
4616
4601
  ] });
4617
4602
  } else {
4618
- return /* @__PURE__ */ jsxs35(Fragment8, { children: [
4603
+ return /* @__PURE__ */ jsxs35(Fragment9, { children: [
4619
4604
  /* @__PURE__ */ jsx65(
4620
4605
  Hyperlink,
4621
4606
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acoustte-digital-services/digitalstore-controls-dev",
3
- "version": "0.8.1-dev.20260527044956",
3
+ "version": "0.8.1-dev.20260527053736",
4
4
  "description": "Reusable React components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",