@dmsi/wedgekit-react 0.0.440 → 0.0.442

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.
Files changed (60) hide show
  1. package/dist/{chunk-IMOIZFJZ.js → chunk-DNYGKNQM.js} +1 -1
  2. package/dist/chunk-ETAEB3TA.js +19 -0
  3. package/dist/{chunk-G5DEC7H3.js → chunk-YCDDBSVU.js} +16 -23
  4. package/dist/components/CalendarRange.cjs +38 -40
  5. package/dist/components/CalendarRange.css +23 -11
  6. package/dist/components/CalendarRange.js +3 -3
  7. package/dist/components/DataGrid/ColumnSelectorHeaderCell/ColumnSelectorMenuOption.cjs +38 -40
  8. package/dist/components/DataGrid/ColumnSelectorHeaderCell/ColumnSelectorMenuOption.css +23 -11
  9. package/dist/components/DataGrid/ColumnSelectorHeaderCell/ColumnSelectorMenuOption.js +3 -3
  10. package/dist/components/DataGrid/ColumnSelectorHeaderCell/index.cjs +38 -40
  11. package/dist/components/DataGrid/ColumnSelectorHeaderCell/index.css +23 -11
  12. package/dist/components/DataGrid/ColumnSelectorHeaderCell/index.js +3 -3
  13. package/dist/components/DataGrid/PinnedColumns.cjs +38 -40
  14. package/dist/components/DataGrid/PinnedColumns.css +23 -11
  15. package/dist/components/DataGrid/PinnedColumns.js +3 -3
  16. package/dist/components/DataGrid/TableBody/LoadingCell.cjs +38 -40
  17. package/dist/components/DataGrid/TableBody/LoadingCell.css +23 -11
  18. package/dist/components/DataGrid/TableBody/LoadingCell.js +3 -3
  19. package/dist/components/DataGrid/TableBody/TableBodyRow.cjs +38 -40
  20. package/dist/components/DataGrid/TableBody/TableBodyRow.css +23 -11
  21. package/dist/components/DataGrid/TableBody/TableBodyRow.js +3 -3
  22. package/dist/components/DataGrid/TableBody/index.cjs +38 -40
  23. package/dist/components/DataGrid/TableBody/index.css +23 -11
  24. package/dist/components/DataGrid/TableBody/index.js +3 -3
  25. package/dist/components/DataGrid/index.cjs +38 -40
  26. package/dist/components/DataGrid/index.css +23 -11
  27. package/dist/components/DataGrid/index.js +3 -3
  28. package/dist/components/DataGrid/utils.cjs +38 -40
  29. package/dist/components/DataGrid/utils.css +23 -11
  30. package/dist/components/DataGrid/utils.js +3 -3
  31. package/dist/components/DateInput.cjs +38 -40
  32. package/dist/components/DateInput.css +23 -11
  33. package/dist/components/DateInput.js +3 -3
  34. package/dist/components/DateRangeInput.cjs +38 -40
  35. package/dist/components/DateRangeInput.css +23 -11
  36. package/dist/components/DateRangeInput.js +3 -3
  37. package/dist/components/MobileDataGrid/ColumnSelector/index.cjs +38 -40
  38. package/dist/components/MobileDataGrid/ColumnSelector/index.css +23 -11
  39. package/dist/components/MobileDataGrid/ColumnSelector/index.js +3 -3
  40. package/dist/components/MobileDataGrid/MobileDataGridHeader.cjs +38 -40
  41. package/dist/components/MobileDataGrid/MobileDataGridHeader.css +23 -11
  42. package/dist/components/MobileDataGrid/MobileDataGridHeader.js +3 -3
  43. package/dist/components/MobileDataGrid/index.cjs +61 -63
  44. package/dist/components/MobileDataGrid/index.css +23 -11
  45. package/dist/components/MobileDataGrid/index.js +3 -3
  46. package/dist/components/ProductImagePreview/ProductPrimaryImage.cjs +29 -83
  47. package/dist/components/ProductImagePreview/ProductPrimaryImage.js +1 -3
  48. package/dist/components/ProductImagePreview/index.cjs +44 -77
  49. package/dist/components/ProductImagePreview/index.js +2 -3
  50. package/dist/components/SkeletonParagraph.cjs +12 -2
  51. package/dist/components/SkeletonParagraph.js +1 -1
  52. package/dist/components/index.cjs +105 -98
  53. package/dist/components/index.css +23 -11
  54. package/dist/components/index.js +3 -3
  55. package/dist/index.css +23 -11
  56. package/package.json +1 -1
  57. package/src/components/ProductImagePreview/ProductPrimaryImage.tsx +24 -34
  58. package/src/components/SkeletonParagraph.tsx +20 -2
  59. package/src/index.css +27 -0
  60. package/dist/chunk-ESCNCQGI.js +0 -9
@@ -4551,46 +4551,14 @@ var import_jsx_runtime42 = require("react/jsx-runtime");
4551
4551
 
4552
4552
  // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4553
4553
  var import_react27 = require("react");
4554
-
4555
- // src/components/Spinner.tsx
4556
4554
  var import_jsx_runtime43 = require("react/jsx-runtime");
4557
- var Spinner = ({ size = "small", testid }) => {
4558
- const dimension = size === "large" ? 48 : 24;
4559
- return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
4560
- "svg",
4561
- {
4562
- "data-testid": testid,
4563
- width: dimension,
4564
- height: dimension,
4565
- viewBox: "0 0 24 24",
4566
- xmlns: "http://www.w3.org/2000/svg",
4567
- fill: "#1D1E1E",
4568
- className: "spinner",
4569
- "aria-label": "Loading",
4570
- children: [
4571
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4572
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4573
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4574
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4575
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4576
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4577
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4578
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4579
- ]
4580
- }
4581
- );
4582
- };
4583
- Spinner.displayName = "Spinner";
4584
-
4585
- // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4586
- var import_jsx_runtime44 = require("react/jsx-runtime");
4587
4555
 
4588
4556
  // src/components/ProductImagePreview/ZoomWindow.tsx
4589
4557
  var import_react28 = require("react");
4590
4558
 
4591
4559
  // src/components/Surface.tsx
4592
4560
  var import_clsx30 = __toESM(require("clsx"), 1);
4593
- var import_jsx_runtime45 = require("react/jsx-runtime");
4561
+ var import_jsx_runtime44 = require("react/jsx-runtime");
4594
4562
  var Surface = (_a) => {
4595
4563
  var _b = _a, {
4596
4564
  children,
@@ -4603,7 +4571,7 @@ var Surface = (_a) => {
4603
4571
  "elevation",
4604
4572
  "id"
4605
4573
  ]);
4606
- return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4574
+ return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
4607
4575
  "div",
4608
4576
  __spreadProps(__spreadValues({
4609
4577
  id,
@@ -4624,30 +4592,30 @@ var Surface = (_a) => {
4624
4592
  Surface.displayName = "Surface";
4625
4593
 
4626
4594
  // src/components/ProductImagePreview/ZoomWindow.tsx
4627
- var import_jsx_runtime46 = require("react/jsx-runtime");
4595
+ var import_jsx_runtime45 = require("react/jsx-runtime");
4628
4596
 
4629
4597
  // src/components/ProductImagePreview/CarouselPagination.tsx
4630
4598
  var import_clsx31 = require("clsx");
4631
- var import_jsx_runtime47 = require("react/jsx-runtime");
4599
+ var import_jsx_runtime46 = require("react/jsx-runtime");
4632
4600
 
4633
4601
  // src/components/ProductImagePreview/MobileImageCarousel.tsx
4634
4602
  var import_react29 = require("react");
4635
- var import_jsx_runtime48 = require("react/jsx-runtime");
4603
+ var import_jsx_runtime47 = require("react/jsx-runtime");
4636
4604
 
4637
4605
  // src/components/ProductImagePreview/useProductImagePreview.ts
4638
4606
  var import_react30 = require("react");
4639
4607
 
4640
4608
  // src/components/ProductImagePreview/index.tsx
4641
- var import_jsx_runtime49 = require("react/jsx-runtime");
4609
+ var import_jsx_runtime48 = require("react/jsx-runtime");
4642
4610
 
4643
4611
  // src/components/CompactImagesPreview.tsx
4644
4612
  var import_react31 = require("react");
4645
4613
  var import_clsx32 = __toESM(require("clsx"), 1);
4646
- var import_jsx_runtime50 = require("react/jsx-runtime");
4614
+ var import_jsx_runtime49 = require("react/jsx-runtime");
4647
4615
 
4648
4616
  // src/components/SimpleTable.tsx
4649
4617
  var import_clsx33 = __toESM(require("clsx"), 1);
4650
- var import_jsx_runtime51 = require("react/jsx-runtime");
4618
+ var import_jsx_runtime50 = require("react/jsx-runtime");
4651
4619
 
4652
4620
  // src/components/PDFViewer/index.tsx
4653
4621
  var import_react34 = require("react");
@@ -4656,6 +4624,36 @@ var import_react34 = require("react");
4656
4624
  var import_react_pdf2 = require("@mikecousins/react-pdf");
4657
4625
  var import_react33 = require("react");
4658
4626
 
4627
+ // src/components/Spinner.tsx
4628
+ var import_jsx_runtime51 = require("react/jsx-runtime");
4629
+ var Spinner = ({ size = "small", testid }) => {
4630
+ const dimension = size === "large" ? 48 : 24;
4631
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
4632
+ "svg",
4633
+ {
4634
+ "data-testid": testid,
4635
+ width: dimension,
4636
+ height: dimension,
4637
+ viewBox: "0 0 24 24",
4638
+ xmlns: "http://www.w3.org/2000/svg",
4639
+ fill: "#1D1E1E",
4640
+ className: "spinner",
4641
+ "aria-label": "Loading",
4642
+ children: [
4643
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4644
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4645
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4646
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4647
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4648
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4649
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4650
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4651
+ ]
4652
+ }
4653
+ );
4654
+ };
4655
+ Spinner.displayName = "Spinner";
4656
+
4659
4657
  // src/components/PDFViewer/PDFPage.tsx
4660
4658
  var import_react_pdf = require("@mikecousins/react-pdf");
4661
4659
  var import_react32 = require("react");
@@ -778,9 +778,6 @@
778
778
  .h-60 {
779
779
  height: calc(var(--spacing) * 60);
780
780
  }
781
- .h-\[24px\] {
782
- height: 24px;
783
- }
784
781
  .h-\[166px\] {
785
782
  height: 166px;
786
783
  }
@@ -1870,10 +1867,6 @@
1870
1867
  --tw-gradient-position: to right in oklab;
1871
1868
  background-image: linear-gradient(var(--tw-gradient-stops));
1872
1869
  }
1873
- .from-neutral-100 {
1874
- --tw-gradient-from: var(--color-neutral-100);
1875
- --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1876
- }
1877
1870
  .from-neutral-300\/\[12\%\] {
1878
1871
  --tw-gradient-from: color-mix(in srgb, #c1c1c1 12%, transparent);
1879
1872
  @supports (color: color-mix(in lab, red, red)) {
@@ -1885,10 +1878,6 @@
1885
1878
  --tw-gradient-from: var(--color-white);
1886
1879
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1887
1880
  }
1888
- .to-\[\#f7f7f7\] {
1889
- --tw-gradient-to: #f7f7f7;
1890
- --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1891
- }
1892
1881
  .to-neutral-300\/\[24\%\] {
1893
1882
  --tw-gradient-to: color-mix(in srgb, #c1c1c1 24%, transparent);
1894
1883
  @supports (color: color-mix(in lab, red, red)) {
@@ -4674,6 +4663,29 @@
4674
4663
  --color-background-action-critical-secondary-disabled: var( --color-neutral-200 );
4675
4664
  --color-background-brand-normal: var( --color-brand-400 );
4676
4665
  }
4666
+ .skeleton-paragraph {
4667
+ position: relative;
4668
+ overflow: hidden;
4669
+ background-color: #f7f7f7;
4670
+ }
4671
+ .skeleton-paragraph::after {
4672
+ content: "";
4673
+ position: absolute;
4674
+ inset: 0;
4675
+ transform: translateX(-100%);
4676
+ background-image:
4677
+ linear-gradient(
4678
+ 90deg,
4679
+ rgba(255, 255, 255, 0) 0%,
4680
+ rgba(255, 255, 255, 0.6) 50%,
4681
+ rgba(255, 255, 255, 0) 100%);
4682
+ animation: skeleton-shimmer 1.4s ease-in-out infinite;
4683
+ }
4684
+ @keyframes skeleton-shimmer {
4685
+ 100% {
4686
+ transform: translateX(100%);
4687
+ }
4688
+ }
4677
4689
  @media (prefers-color-scheme: dark) {
4678
4690
  :root {
4679
4691
  --color-text-primary-normal: var(--color-neutral-000);
@@ -5,10 +5,10 @@ import "../../chunk-7AXHAWJX.js";
5
5
  import "../../chunk-P3MIP2FD.js";
6
6
  import "../../chunk-M7INAUAJ.js";
7
7
  import "../../chunk-3HBYDOYE.js";
8
- import "../../chunk-IMOIZFJZ.js";
8
+ import "../../chunk-DNYGKNQM.js";
9
9
  import "../../chunk-MBZ55T2D.js";
10
10
  import "../../chunk-2IKT6IHB.js";
11
- import "../../chunk-G5DEC7H3.js";
11
+ import "../../chunk-YCDDBSVU.js";
12
12
  import "../../chunk-3X3Y4TMS.js";
13
13
  import "../../chunk-BQNPOGD5.js";
14
14
  import "../../chunk-LUPHOXAQ.js";
@@ -23,7 +23,7 @@ import "../../chunk-VJVY6NPF.js";
23
23
  import "../../chunk-EWGHVZL5.js";
24
24
  import "../../chunk-DCLNAUC4.js";
25
25
  import "../../chunk-PQWWVBSR.js";
26
- import "../../chunk-ESCNCQGI.js";
26
+ import "../../chunk-ETAEB3TA.js";
27
27
  import "../../chunk-AT4AWD6B.js";
28
28
  import "../../chunk-J5V2JRIK.js";
29
29
  import "../../chunk-TYAQWVIM.js";
@@ -4644,46 +4644,14 @@ var import_jsx_runtime43 = require("react/jsx-runtime");
4644
4644
 
4645
4645
  // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4646
4646
  var import_react27 = require("react");
4647
-
4648
- // src/components/Spinner.tsx
4649
4647
  var import_jsx_runtime44 = require("react/jsx-runtime");
4650
- var Spinner = ({ size = "small", testid }) => {
4651
- const dimension = size === "large" ? 48 : 24;
4652
- return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
4653
- "svg",
4654
- {
4655
- "data-testid": testid,
4656
- width: dimension,
4657
- height: dimension,
4658
- viewBox: "0 0 24 24",
4659
- xmlns: "http://www.w3.org/2000/svg",
4660
- fill: "#1D1E1E",
4661
- className: "spinner",
4662
- "aria-label": "Loading",
4663
- children: [
4664
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4665
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4666
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4667
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4668
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4669
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4670
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4671
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4672
- ]
4673
- }
4674
- );
4675
- };
4676
- Spinner.displayName = "Spinner";
4677
-
4678
- // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4679
- var import_jsx_runtime45 = require("react/jsx-runtime");
4680
4648
 
4681
4649
  // src/components/ProductImagePreview/ZoomWindow.tsx
4682
4650
  var import_react28 = require("react");
4683
4651
 
4684
4652
  // src/components/Surface.tsx
4685
4653
  var import_clsx31 = __toESM(require("clsx"), 1);
4686
- var import_jsx_runtime46 = require("react/jsx-runtime");
4654
+ var import_jsx_runtime45 = require("react/jsx-runtime");
4687
4655
  var Surface = (_a) => {
4688
4656
  var _b = _a, {
4689
4657
  children,
@@ -4696,7 +4664,7 @@ var Surface = (_a) => {
4696
4664
  "elevation",
4697
4665
  "id"
4698
4666
  ]);
4699
- return /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4667
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4700
4668
  "div",
4701
4669
  __spreadProps(__spreadValues({
4702
4670
  id,
@@ -4717,30 +4685,30 @@ var Surface = (_a) => {
4717
4685
  Surface.displayName = "Surface";
4718
4686
 
4719
4687
  // src/components/ProductImagePreview/ZoomWindow.tsx
4720
- var import_jsx_runtime47 = require("react/jsx-runtime");
4688
+ var import_jsx_runtime46 = require("react/jsx-runtime");
4721
4689
 
4722
4690
  // src/components/ProductImagePreview/CarouselPagination.tsx
4723
4691
  var import_clsx32 = require("clsx");
4724
- var import_jsx_runtime48 = require("react/jsx-runtime");
4692
+ var import_jsx_runtime47 = require("react/jsx-runtime");
4725
4693
 
4726
4694
  // src/components/ProductImagePreview/MobileImageCarousel.tsx
4727
4695
  var import_react29 = require("react");
4728
- var import_jsx_runtime49 = require("react/jsx-runtime");
4696
+ var import_jsx_runtime48 = require("react/jsx-runtime");
4729
4697
 
4730
4698
  // src/components/ProductImagePreview/useProductImagePreview.ts
4731
4699
  var import_react30 = require("react");
4732
4700
 
4733
4701
  // src/components/ProductImagePreview/index.tsx
4734
- var import_jsx_runtime50 = require("react/jsx-runtime");
4702
+ var import_jsx_runtime49 = require("react/jsx-runtime");
4735
4703
 
4736
4704
  // src/components/CompactImagesPreview.tsx
4737
4705
  var import_react31 = require("react");
4738
4706
  var import_clsx33 = __toESM(require("clsx"), 1);
4739
- var import_jsx_runtime51 = require("react/jsx-runtime");
4707
+ var import_jsx_runtime50 = require("react/jsx-runtime");
4740
4708
 
4741
4709
  // src/components/SimpleTable.tsx
4742
4710
  var import_clsx34 = __toESM(require("clsx"), 1);
4743
- var import_jsx_runtime52 = require("react/jsx-runtime");
4711
+ var import_jsx_runtime51 = require("react/jsx-runtime");
4744
4712
 
4745
4713
  // src/components/PDFViewer/index.tsx
4746
4714
  var import_react34 = require("react");
@@ -4749,6 +4717,36 @@ var import_react34 = require("react");
4749
4717
  var import_react_pdf2 = require("@mikecousins/react-pdf");
4750
4718
  var import_react33 = require("react");
4751
4719
 
4720
+ // src/components/Spinner.tsx
4721
+ var import_jsx_runtime52 = require("react/jsx-runtime");
4722
+ var Spinner = ({ size = "small", testid }) => {
4723
+ const dimension = size === "large" ? 48 : 24;
4724
+ return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
4725
+ "svg",
4726
+ {
4727
+ "data-testid": testid,
4728
+ width: dimension,
4729
+ height: dimension,
4730
+ viewBox: "0 0 24 24",
4731
+ xmlns: "http://www.w3.org/2000/svg",
4732
+ fill: "#1D1E1E",
4733
+ className: "spinner",
4734
+ "aria-label": "Loading",
4735
+ children: [
4736
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4737
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4738
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4739
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4740
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4741
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4742
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4743
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4744
+ ]
4745
+ }
4746
+ );
4747
+ };
4748
+ Spinner.displayName = "Spinner";
4749
+
4752
4750
  // src/components/PDFViewer/PDFPage.tsx
4753
4751
  var import_react_pdf = require("@mikecousins/react-pdf");
4754
4752
  var import_react32 = require("react");
@@ -778,9 +778,6 @@
778
778
  .h-60 {
779
779
  height: calc(var(--spacing) * 60);
780
780
  }
781
- .h-\[24px\] {
782
- height: 24px;
783
- }
784
781
  .h-\[166px\] {
785
782
  height: 166px;
786
783
  }
@@ -1870,10 +1867,6 @@
1870
1867
  --tw-gradient-position: to right in oklab;
1871
1868
  background-image: linear-gradient(var(--tw-gradient-stops));
1872
1869
  }
1873
- .from-neutral-100 {
1874
- --tw-gradient-from: var(--color-neutral-100);
1875
- --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1876
- }
1877
1870
  .from-neutral-300\/\[12\%\] {
1878
1871
  --tw-gradient-from: color-mix(in srgb, #c1c1c1 12%, transparent);
1879
1872
  @supports (color: color-mix(in lab, red, red)) {
@@ -1885,10 +1878,6 @@
1885
1878
  --tw-gradient-from: var(--color-white);
1886
1879
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1887
1880
  }
1888
- .to-\[\#f7f7f7\] {
1889
- --tw-gradient-to: #f7f7f7;
1890
- --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1891
- }
1892
1881
  .to-neutral-300\/\[24\%\] {
1893
1882
  --tw-gradient-to: color-mix(in srgb, #c1c1c1 24%, transparent);
1894
1883
  @supports (color: color-mix(in lab, red, red)) {
@@ -4674,6 +4663,29 @@
4674
4663
  --color-background-action-critical-secondary-disabled: var( --color-neutral-200 );
4675
4664
  --color-background-brand-normal: var( --color-brand-400 );
4676
4665
  }
4666
+ .skeleton-paragraph {
4667
+ position: relative;
4668
+ overflow: hidden;
4669
+ background-color: #f7f7f7;
4670
+ }
4671
+ .skeleton-paragraph::after {
4672
+ content: "";
4673
+ position: absolute;
4674
+ inset: 0;
4675
+ transform: translateX(-100%);
4676
+ background-image:
4677
+ linear-gradient(
4678
+ 90deg,
4679
+ rgba(255, 255, 255, 0) 0%,
4680
+ rgba(255, 255, 255, 0.6) 50%,
4681
+ rgba(255, 255, 255, 0) 100%);
4682
+ animation: skeleton-shimmer 1.4s ease-in-out infinite;
4683
+ }
4684
+ @keyframes skeleton-shimmer {
4685
+ 100% {
4686
+ transform: translateX(100%);
4687
+ }
4688
+ }
4677
4689
  @media (prefers-color-scheme: dark) {
4678
4690
  :root {
4679
4691
  --color-text-primary-normal: var(--color-neutral-000);
@@ -6,10 +6,10 @@ import "../chunk-7AXHAWJX.js";
6
6
  import "../chunk-P3MIP2FD.js";
7
7
  import "../chunk-M7INAUAJ.js";
8
8
  import "../chunk-3HBYDOYE.js";
9
- import "../chunk-IMOIZFJZ.js";
9
+ import "../chunk-DNYGKNQM.js";
10
10
  import "../chunk-MBZ55T2D.js";
11
11
  import "../chunk-2IKT6IHB.js";
12
- import "../chunk-G5DEC7H3.js";
12
+ import "../chunk-YCDDBSVU.js";
13
13
  import "../chunk-3X3Y4TMS.js";
14
14
  import "../chunk-BQNPOGD5.js";
15
15
  import "../chunk-LUPHOXAQ.js";
@@ -24,7 +24,7 @@ import "../chunk-VJVY6NPF.js";
24
24
  import "../chunk-EWGHVZL5.js";
25
25
  import "../chunk-DCLNAUC4.js";
26
26
  import "../chunk-PQWWVBSR.js";
27
- import "../chunk-ESCNCQGI.js";
27
+ import "../chunk-ETAEB3TA.js";
28
28
  import "../chunk-AT4AWD6B.js";
29
29
  import "../chunk-J5V2JRIK.js";
30
30
  import "../chunk-TYAQWVIM.js";
@@ -4652,46 +4652,14 @@ var import_jsx_runtime43 = require("react/jsx-runtime");
4652
4652
 
4653
4653
  // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4654
4654
  var import_react27 = require("react");
4655
-
4656
- // src/components/Spinner.tsx
4657
4655
  var import_jsx_runtime44 = require("react/jsx-runtime");
4658
- var Spinner = ({ size = "small", testid }) => {
4659
- const dimension = size === "large" ? 48 : 24;
4660
- return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
4661
- "svg",
4662
- {
4663
- "data-testid": testid,
4664
- width: dimension,
4665
- height: dimension,
4666
- viewBox: "0 0 24 24",
4667
- xmlns: "http://www.w3.org/2000/svg",
4668
- fill: "#1D1E1E",
4669
- className: "spinner",
4670
- "aria-label": "Loading",
4671
- children: [
4672
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4673
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4674
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4675
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4676
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4677
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4678
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4679
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4680
- ]
4681
- }
4682
- );
4683
- };
4684
- Spinner.displayName = "Spinner";
4685
-
4686
- // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4687
- var import_jsx_runtime45 = require("react/jsx-runtime");
4688
4656
 
4689
4657
  // src/components/ProductImagePreview/ZoomWindow.tsx
4690
4658
  var import_react28 = require("react");
4691
4659
 
4692
4660
  // src/components/Surface.tsx
4693
4661
  var import_clsx31 = __toESM(require("clsx"), 1);
4694
- var import_jsx_runtime46 = require("react/jsx-runtime");
4662
+ var import_jsx_runtime45 = require("react/jsx-runtime");
4695
4663
  var Surface = (_a) => {
4696
4664
  var _b = _a, {
4697
4665
  children,
@@ -4704,7 +4672,7 @@ var Surface = (_a) => {
4704
4672
  "elevation",
4705
4673
  "id"
4706
4674
  ]);
4707
- return /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4675
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4708
4676
  "div",
4709
4677
  __spreadProps(__spreadValues({
4710
4678
  id,
@@ -4725,30 +4693,30 @@ var Surface = (_a) => {
4725
4693
  Surface.displayName = "Surface";
4726
4694
 
4727
4695
  // src/components/ProductImagePreview/ZoomWindow.tsx
4728
- var import_jsx_runtime47 = require("react/jsx-runtime");
4696
+ var import_jsx_runtime46 = require("react/jsx-runtime");
4729
4697
 
4730
4698
  // src/components/ProductImagePreview/CarouselPagination.tsx
4731
4699
  var import_clsx32 = require("clsx");
4732
- var import_jsx_runtime48 = require("react/jsx-runtime");
4700
+ var import_jsx_runtime47 = require("react/jsx-runtime");
4733
4701
 
4734
4702
  // src/components/ProductImagePreview/MobileImageCarousel.tsx
4735
4703
  var import_react29 = require("react");
4736
- var import_jsx_runtime49 = require("react/jsx-runtime");
4704
+ var import_jsx_runtime48 = require("react/jsx-runtime");
4737
4705
 
4738
4706
  // src/components/ProductImagePreview/useProductImagePreview.ts
4739
4707
  var import_react30 = require("react");
4740
4708
 
4741
4709
  // src/components/ProductImagePreview/index.tsx
4742
- var import_jsx_runtime50 = require("react/jsx-runtime");
4710
+ var import_jsx_runtime49 = require("react/jsx-runtime");
4743
4711
 
4744
4712
  // src/components/CompactImagesPreview.tsx
4745
4713
  var import_react31 = require("react");
4746
4714
  var import_clsx33 = __toESM(require("clsx"), 1);
4747
- var import_jsx_runtime51 = require("react/jsx-runtime");
4715
+ var import_jsx_runtime50 = require("react/jsx-runtime");
4748
4716
 
4749
4717
  // src/components/SimpleTable.tsx
4750
4718
  var import_clsx34 = __toESM(require("clsx"), 1);
4751
- var import_jsx_runtime52 = require("react/jsx-runtime");
4719
+ var import_jsx_runtime51 = require("react/jsx-runtime");
4752
4720
 
4753
4721
  // src/components/PDFViewer/index.tsx
4754
4722
  var import_react34 = require("react");
@@ -4757,6 +4725,36 @@ var import_react34 = require("react");
4757
4725
  var import_react_pdf2 = require("@mikecousins/react-pdf");
4758
4726
  var import_react33 = require("react");
4759
4727
 
4728
+ // src/components/Spinner.tsx
4729
+ var import_jsx_runtime52 = require("react/jsx-runtime");
4730
+ var Spinner = ({ size = "small", testid }) => {
4731
+ const dimension = size === "large" ? 48 : 24;
4732
+ return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
4733
+ "svg",
4734
+ {
4735
+ "data-testid": testid,
4736
+ width: dimension,
4737
+ height: dimension,
4738
+ viewBox: "0 0 24 24",
4739
+ xmlns: "http://www.w3.org/2000/svg",
4740
+ fill: "#1D1E1E",
4741
+ className: "spinner",
4742
+ "aria-label": "Loading",
4743
+ children: [
4744
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4745
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4746
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4747
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4748
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4749
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4750
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4751
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4752
+ ]
4753
+ }
4754
+ );
4755
+ };
4756
+ Spinner.displayName = "Spinner";
4757
+
4760
4758
  // src/components/PDFViewer/PDFPage.tsx
4761
4759
  var import_react_pdf = require("@mikecousins/react-pdf");
4762
4760
  var import_react32 = require("react");
@@ -778,9 +778,6 @@
778
778
  .h-60 {
779
779
  height: calc(var(--spacing) * 60);
780
780
  }
781
- .h-\[24px\] {
782
- height: 24px;
783
- }
784
781
  .h-\[166px\] {
785
782
  height: 166px;
786
783
  }
@@ -1870,10 +1867,6 @@
1870
1867
  --tw-gradient-position: to right in oklab;
1871
1868
  background-image: linear-gradient(var(--tw-gradient-stops));
1872
1869
  }
1873
- .from-neutral-100 {
1874
- --tw-gradient-from: var(--color-neutral-100);
1875
- --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1876
- }
1877
1870
  .from-neutral-300\/\[12\%\] {
1878
1871
  --tw-gradient-from: color-mix(in srgb, #c1c1c1 12%, transparent);
1879
1872
  @supports (color: color-mix(in lab, red, red)) {
@@ -1885,10 +1878,6 @@
1885
1878
  --tw-gradient-from: var(--color-white);
1886
1879
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1887
1880
  }
1888
- .to-\[\#f7f7f7\] {
1889
- --tw-gradient-to: #f7f7f7;
1890
- --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1891
- }
1892
1881
  .to-neutral-300\/\[24\%\] {
1893
1882
  --tw-gradient-to: color-mix(in srgb, #c1c1c1 24%, transparent);
1894
1883
  @supports (color: color-mix(in lab, red, red)) {
@@ -4674,6 +4663,29 @@
4674
4663
  --color-background-action-critical-secondary-disabled: var( --color-neutral-200 );
4675
4664
  --color-background-brand-normal: var( --color-brand-400 );
4676
4665
  }
4666
+ .skeleton-paragraph {
4667
+ position: relative;
4668
+ overflow: hidden;
4669
+ background-color: #f7f7f7;
4670
+ }
4671
+ .skeleton-paragraph::after {
4672
+ content: "";
4673
+ position: absolute;
4674
+ inset: 0;
4675
+ transform: translateX(-100%);
4676
+ background-image:
4677
+ linear-gradient(
4678
+ 90deg,
4679
+ rgba(255, 255, 255, 0) 0%,
4680
+ rgba(255, 255, 255, 0.6) 50%,
4681
+ rgba(255, 255, 255, 0) 100%);
4682
+ animation: skeleton-shimmer 1.4s ease-in-out infinite;
4683
+ }
4684
+ @keyframes skeleton-shimmer {
4685
+ 100% {
4686
+ transform: translateX(100%);
4687
+ }
4688
+ }
4677
4689
  @media (prefers-color-scheme: dark) {
4678
4690
  :root {
4679
4691
  --color-text-primary-normal: var(--color-neutral-000);
@@ -6,10 +6,10 @@ import "../chunk-7AXHAWJX.js";
6
6
  import "../chunk-P3MIP2FD.js";
7
7
  import "../chunk-M7INAUAJ.js";
8
8
  import "../chunk-3HBYDOYE.js";
9
- import "../chunk-IMOIZFJZ.js";
9
+ import "../chunk-DNYGKNQM.js";
10
10
  import "../chunk-MBZ55T2D.js";
11
11
  import "../chunk-2IKT6IHB.js";
12
- import "../chunk-G5DEC7H3.js";
12
+ import "../chunk-YCDDBSVU.js";
13
13
  import "../chunk-3X3Y4TMS.js";
14
14
  import "../chunk-BQNPOGD5.js";
15
15
  import "../chunk-LUPHOXAQ.js";
@@ -24,7 +24,7 @@ import "../chunk-VJVY6NPF.js";
24
24
  import "../chunk-EWGHVZL5.js";
25
25
  import "../chunk-DCLNAUC4.js";
26
26
  import "../chunk-PQWWVBSR.js";
27
- import "../chunk-ESCNCQGI.js";
27
+ import "../chunk-ETAEB3TA.js";
28
28
  import "../chunk-AT4AWD6B.js";
29
29
  import "../chunk-J5V2JRIK.js";
30
30
  import "../chunk-TYAQWVIM.js";