@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
@@ -4466,46 +4466,14 @@ var import_jsx_runtime42 = require("react/jsx-runtime");
4466
4466
 
4467
4467
  // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4468
4468
  var import_react26 = require("react");
4469
-
4470
- // src/components/Spinner.tsx
4471
4469
  var import_jsx_runtime43 = require("react/jsx-runtime");
4472
- var Spinner = ({ size = "small", testid }) => {
4473
- const dimension = size === "large" ? 48 : 24;
4474
- return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
4475
- "svg",
4476
- {
4477
- "data-testid": testid,
4478
- width: dimension,
4479
- height: dimension,
4480
- viewBox: "0 0 24 24",
4481
- xmlns: "http://www.w3.org/2000/svg",
4482
- fill: "#1D1E1E",
4483
- className: "spinner",
4484
- "aria-label": "Loading",
4485
- children: [
4486
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4487
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4488
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4489
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4490
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4491
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4492
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4493
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4494
- ]
4495
- }
4496
- );
4497
- };
4498
- Spinner.displayName = "Spinner";
4499
-
4500
- // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4501
- var import_jsx_runtime44 = require("react/jsx-runtime");
4502
4470
 
4503
4471
  // src/components/ProductImagePreview/ZoomWindow.tsx
4504
4472
  var import_react27 = require("react");
4505
4473
 
4506
4474
  // src/components/Surface.tsx
4507
4475
  var import_clsx30 = __toESM(require("clsx"), 1);
4508
- var import_jsx_runtime45 = require("react/jsx-runtime");
4476
+ var import_jsx_runtime44 = require("react/jsx-runtime");
4509
4477
  var Surface = (_a) => {
4510
4478
  var _b = _a, {
4511
4479
  children,
@@ -4518,7 +4486,7 @@ var Surface = (_a) => {
4518
4486
  "elevation",
4519
4487
  "id"
4520
4488
  ]);
4521
- return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4489
+ return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
4522
4490
  "div",
4523
4491
  __spreadProps(__spreadValues({
4524
4492
  id,
@@ -4539,30 +4507,30 @@ var Surface = (_a) => {
4539
4507
  Surface.displayName = "Surface";
4540
4508
 
4541
4509
  // src/components/ProductImagePreview/ZoomWindow.tsx
4542
- var import_jsx_runtime46 = require("react/jsx-runtime");
4510
+ var import_jsx_runtime45 = require("react/jsx-runtime");
4543
4511
 
4544
4512
  // src/components/ProductImagePreview/CarouselPagination.tsx
4545
4513
  var import_clsx31 = require("clsx");
4546
- var import_jsx_runtime47 = require("react/jsx-runtime");
4514
+ var import_jsx_runtime46 = require("react/jsx-runtime");
4547
4515
 
4548
4516
  // src/components/ProductImagePreview/MobileImageCarousel.tsx
4549
4517
  var import_react28 = require("react");
4550
- var import_jsx_runtime48 = require("react/jsx-runtime");
4518
+ var import_jsx_runtime47 = require("react/jsx-runtime");
4551
4519
 
4552
4520
  // src/components/ProductImagePreview/useProductImagePreview.ts
4553
4521
  var import_react29 = require("react");
4554
4522
 
4555
4523
  // src/components/ProductImagePreview/index.tsx
4556
- var import_jsx_runtime49 = require("react/jsx-runtime");
4524
+ var import_jsx_runtime48 = require("react/jsx-runtime");
4557
4525
 
4558
4526
  // src/components/CompactImagesPreview.tsx
4559
4527
  var import_react30 = require("react");
4560
4528
  var import_clsx32 = __toESM(require("clsx"), 1);
4561
- var import_jsx_runtime50 = require("react/jsx-runtime");
4529
+ var import_jsx_runtime49 = require("react/jsx-runtime");
4562
4530
 
4563
4531
  // src/components/SimpleTable.tsx
4564
4532
  var import_clsx33 = __toESM(require("clsx"), 1);
4565
- var import_jsx_runtime51 = require("react/jsx-runtime");
4533
+ var import_jsx_runtime50 = require("react/jsx-runtime");
4566
4534
 
4567
4535
  // src/components/PDFViewer/index.tsx
4568
4536
  var import_react33 = require("react");
@@ -4571,6 +4539,36 @@ var import_react33 = require("react");
4571
4539
  var import_react_pdf2 = require("@mikecousins/react-pdf");
4572
4540
  var import_react32 = require("react");
4573
4541
 
4542
+ // src/components/Spinner.tsx
4543
+ var import_jsx_runtime51 = require("react/jsx-runtime");
4544
+ var Spinner = ({ size = "small", testid }) => {
4545
+ const dimension = size === "large" ? 48 : 24;
4546
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
4547
+ "svg",
4548
+ {
4549
+ "data-testid": testid,
4550
+ width: dimension,
4551
+ height: dimension,
4552
+ viewBox: "0 0 24 24",
4553
+ xmlns: "http://www.w3.org/2000/svg",
4554
+ fill: "#1D1E1E",
4555
+ className: "spinner",
4556
+ "aria-label": "Loading",
4557
+ children: [
4558
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4559
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4560
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4561
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4562
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4563
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4564
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4565
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4566
+ ]
4567
+ }
4568
+ );
4569
+ };
4570
+ Spinner.displayName = "Spinner";
4571
+
4574
4572
  // src/components/PDFViewer/PDFPage.tsx
4575
4573
  var import_react_pdf = require("@mikecousins/react-pdf");
4576
4574
  var import_react31 = 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";
@@ -4285,46 +4285,14 @@ var import_jsx_runtime40 = require("react/jsx-runtime");
4285
4285
 
4286
4286
  // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4287
4287
  var import_react26 = require("react");
4288
-
4289
- // src/components/Spinner.tsx
4290
4288
  var import_jsx_runtime41 = require("react/jsx-runtime");
4291
- var Spinner = ({ size = "small", testid }) => {
4292
- const dimension = size === "large" ? 48 : 24;
4293
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
4294
- "svg",
4295
- {
4296
- "data-testid": testid,
4297
- width: dimension,
4298
- height: dimension,
4299
- viewBox: "0 0 24 24",
4300
- xmlns: "http://www.w3.org/2000/svg",
4301
- fill: "#1D1E1E",
4302
- className: "spinner",
4303
- "aria-label": "Loading",
4304
- children: [
4305
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4306
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4307
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4308
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4309
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4310
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4311
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4312
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4313
- ]
4314
- }
4315
- );
4316
- };
4317
- Spinner.displayName = "Spinner";
4318
-
4319
- // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4320
- var import_jsx_runtime42 = require("react/jsx-runtime");
4321
4289
 
4322
4290
  // src/components/ProductImagePreview/ZoomWindow.tsx
4323
4291
  var import_react27 = require("react");
4324
4292
 
4325
4293
  // src/components/Surface.tsx
4326
4294
  var import_clsx29 = __toESM(require("clsx"), 1);
4327
- var import_jsx_runtime43 = require("react/jsx-runtime");
4295
+ var import_jsx_runtime42 = require("react/jsx-runtime");
4328
4296
  var Surface = (_a) => {
4329
4297
  var _b = _a, {
4330
4298
  children,
@@ -4337,7 +4305,7 @@ var Surface = (_a) => {
4337
4305
  "elevation",
4338
4306
  "id"
4339
4307
  ]);
4340
- return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4308
+ return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
4341
4309
  "div",
4342
4310
  __spreadProps(__spreadValues({
4343
4311
  id,
@@ -4358,30 +4326,30 @@ var Surface = (_a) => {
4358
4326
  Surface.displayName = "Surface";
4359
4327
 
4360
4328
  // src/components/ProductImagePreview/ZoomWindow.tsx
4361
- var import_jsx_runtime44 = require("react/jsx-runtime");
4329
+ var import_jsx_runtime43 = require("react/jsx-runtime");
4362
4330
 
4363
4331
  // src/components/ProductImagePreview/CarouselPagination.tsx
4364
4332
  var import_clsx30 = require("clsx");
4365
- var import_jsx_runtime45 = require("react/jsx-runtime");
4333
+ var import_jsx_runtime44 = require("react/jsx-runtime");
4366
4334
 
4367
4335
  // src/components/ProductImagePreview/MobileImageCarousel.tsx
4368
4336
  var import_react28 = require("react");
4369
- var import_jsx_runtime46 = require("react/jsx-runtime");
4337
+ var import_jsx_runtime45 = require("react/jsx-runtime");
4370
4338
 
4371
4339
  // src/components/ProductImagePreview/useProductImagePreview.ts
4372
4340
  var import_react29 = require("react");
4373
4341
 
4374
4342
  // src/components/ProductImagePreview/index.tsx
4375
- var import_jsx_runtime47 = require("react/jsx-runtime");
4343
+ var import_jsx_runtime46 = require("react/jsx-runtime");
4376
4344
 
4377
4345
  // src/components/CompactImagesPreview.tsx
4378
4346
  var import_react30 = require("react");
4379
4347
  var import_clsx31 = __toESM(require("clsx"), 1);
4380
- var import_jsx_runtime48 = require("react/jsx-runtime");
4348
+ var import_jsx_runtime47 = require("react/jsx-runtime");
4381
4349
 
4382
4350
  // src/components/SimpleTable.tsx
4383
4351
  var import_clsx32 = __toESM(require("clsx"), 1);
4384
- var import_jsx_runtime49 = require("react/jsx-runtime");
4352
+ var import_jsx_runtime48 = require("react/jsx-runtime");
4385
4353
 
4386
4354
  // src/components/PDFViewer/index.tsx
4387
4355
  var import_react33 = require("react");
@@ -4390,6 +4358,36 @@ var import_react33 = require("react");
4390
4358
  var import_react_pdf2 = require("@mikecousins/react-pdf");
4391
4359
  var import_react32 = require("react");
4392
4360
 
4361
+ // src/components/Spinner.tsx
4362
+ var import_jsx_runtime49 = require("react/jsx-runtime");
4363
+ var Spinner = ({ size = "small", testid }) => {
4364
+ const dimension = size === "large" ? 48 : 24;
4365
+ return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
4366
+ "svg",
4367
+ {
4368
+ "data-testid": testid,
4369
+ width: dimension,
4370
+ height: dimension,
4371
+ viewBox: "0 0 24 24",
4372
+ xmlns: "http://www.w3.org/2000/svg",
4373
+ fill: "#1D1E1E",
4374
+ className: "spinner",
4375
+ "aria-label": "Loading",
4376
+ children: [
4377
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4378
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4379
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4380
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4381
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4382
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4383
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4384
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4385
+ ]
4386
+ }
4387
+ );
4388
+ };
4389
+ Spinner.displayName = "Spinner";
4390
+
4393
4391
  // src/components/PDFViewer/PDFPage.tsx
4394
4392
  var import_react_pdf = require("@mikecousins/react-pdf");
4395
4393
  var import_react31 = 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";
@@ -3436,46 +3436,14 @@ var import_jsx_runtime35 = require("react/jsx-runtime");
3436
3436
 
3437
3437
  // src/components/ProductImagePreview/ProductPrimaryImage.tsx
3438
3438
  var import_react22 = require("react");
3439
-
3440
- // src/components/Spinner.tsx
3441
3439
  var import_jsx_runtime36 = require("react/jsx-runtime");
3442
- var Spinner = ({ size = "small", testid }) => {
3443
- const dimension = size === "large" ? 48 : 24;
3444
- return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
3445
- "svg",
3446
- {
3447
- "data-testid": testid,
3448
- width: dimension,
3449
- height: dimension,
3450
- viewBox: "0 0 24 24",
3451
- xmlns: "http://www.w3.org/2000/svg",
3452
- fill: "#1D1E1E",
3453
- className: "spinner",
3454
- "aria-label": "Loading",
3455
- children: [
3456
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
3457
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
3458
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
3459
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
3460
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
3461
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
3462
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
3463
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
3464
- ]
3465
- }
3466
- );
3467
- };
3468
- Spinner.displayName = "Spinner";
3469
-
3470
- // src/components/ProductImagePreview/ProductPrimaryImage.tsx
3471
- var import_jsx_runtime37 = require("react/jsx-runtime");
3472
3440
 
3473
3441
  // src/components/ProductImagePreview/ZoomWindow.tsx
3474
3442
  var import_react23 = require("react");
3475
3443
 
3476
3444
  // src/components/Surface.tsx
3477
3445
  var import_clsx26 = __toESM(require("clsx"), 1);
3478
- var import_jsx_runtime38 = require("react/jsx-runtime");
3446
+ var import_jsx_runtime37 = require("react/jsx-runtime");
3479
3447
  var Surface = (_a) => {
3480
3448
  var _b = _a, {
3481
3449
  children,
@@ -3488,7 +3456,7 @@ var Surface = (_a) => {
3488
3456
  "elevation",
3489
3457
  "id"
3490
3458
  ]);
3491
- return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3459
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
3492
3460
  "div",
3493
3461
  __spreadProps(__spreadValues({
3494
3462
  id,
@@ -3509,30 +3477,30 @@ var Surface = (_a) => {
3509
3477
  Surface.displayName = "Surface";
3510
3478
 
3511
3479
  // src/components/ProductImagePreview/ZoomWindow.tsx
3512
- var import_jsx_runtime39 = require("react/jsx-runtime");
3480
+ var import_jsx_runtime38 = require("react/jsx-runtime");
3513
3481
 
3514
3482
  // src/components/ProductImagePreview/CarouselPagination.tsx
3515
3483
  var import_clsx27 = require("clsx");
3516
- var import_jsx_runtime40 = require("react/jsx-runtime");
3484
+ var import_jsx_runtime39 = require("react/jsx-runtime");
3517
3485
 
3518
3486
  // src/components/ProductImagePreview/MobileImageCarousel.tsx
3519
3487
  var import_react24 = require("react");
3520
- var import_jsx_runtime41 = require("react/jsx-runtime");
3488
+ var import_jsx_runtime40 = require("react/jsx-runtime");
3521
3489
 
3522
3490
  // src/components/ProductImagePreview/useProductImagePreview.ts
3523
3491
  var import_react25 = require("react");
3524
3492
 
3525
3493
  // src/components/ProductImagePreview/index.tsx
3526
- var import_jsx_runtime42 = require("react/jsx-runtime");
3494
+ var import_jsx_runtime41 = require("react/jsx-runtime");
3527
3495
 
3528
3496
  // src/components/CompactImagesPreview.tsx
3529
3497
  var import_react26 = require("react");
3530
3498
  var import_clsx28 = __toESM(require("clsx"), 1);
3531
- var import_jsx_runtime43 = require("react/jsx-runtime");
3499
+ var import_jsx_runtime42 = require("react/jsx-runtime");
3532
3500
 
3533
3501
  // src/components/SimpleTable.tsx
3534
3502
  var import_clsx29 = __toESM(require("clsx"), 1);
3535
- var import_jsx_runtime44 = require("react/jsx-runtime");
3503
+ var import_jsx_runtime43 = require("react/jsx-runtime");
3536
3504
 
3537
3505
  // src/components/PDFViewer/index.tsx
3538
3506
  var import_react29 = require("react");
@@ -3541,6 +3509,36 @@ var import_react29 = require("react");
3541
3509
  var import_react_pdf2 = require("@mikecousins/react-pdf");
3542
3510
  var import_react28 = require("react");
3543
3511
 
3512
+ // src/components/Spinner.tsx
3513
+ var import_jsx_runtime44 = require("react/jsx-runtime");
3514
+ var Spinner = ({ size = "small", testid }) => {
3515
+ const dimension = size === "large" ? 48 : 24;
3516
+ return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
3517
+ "svg",
3518
+ {
3519
+ "data-testid": testid,
3520
+ width: dimension,
3521
+ height: dimension,
3522
+ viewBox: "0 0 24 24",
3523
+ xmlns: "http://www.w3.org/2000/svg",
3524
+ fill: "#1D1E1E",
3525
+ className: "spinner",
3526
+ "aria-label": "Loading",
3527
+ children: [
3528
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
3529
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
3530
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
3531
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
3532
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
3533
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
3534
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
3535
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
3536
+ ]
3537
+ }
3538
+ );
3539
+ };
3540
+ Spinner.displayName = "Spinner";
3541
+
3544
3542
  // src/components/PDFViewer/PDFPage.tsx
3545
3543
  var import_react_pdf = require("@mikecousins/react-pdf");
3546
3544
  var import_react27 = 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);
@@ -7,10 +7,10 @@ import "../../chunk-7AXHAWJX.js";
7
7
  import "../../chunk-P3MIP2FD.js";
8
8
  import "../../chunk-M7INAUAJ.js";
9
9
  import "../../chunk-3HBYDOYE.js";
10
- import "../../chunk-IMOIZFJZ.js";
10
+ import "../../chunk-DNYGKNQM.js";
11
11
  import "../../chunk-MBZ55T2D.js";
12
12
  import "../../chunk-2IKT6IHB.js";
13
- import "../../chunk-G5DEC7H3.js";
13
+ import "../../chunk-YCDDBSVU.js";
14
14
  import "../../chunk-3X3Y4TMS.js";
15
15
  import "../../chunk-BQNPOGD5.js";
16
16
  import "../../chunk-LUPHOXAQ.js";
@@ -25,7 +25,7 @@ import "../../chunk-VJVY6NPF.js";
25
25
  import "../../chunk-EWGHVZL5.js";
26
26
  import "../../chunk-DCLNAUC4.js";
27
27
  import "../../chunk-PQWWVBSR.js";
28
- import "../../chunk-ESCNCQGI.js";
28
+ import "../../chunk-ETAEB3TA.js";
29
29
  import "../../chunk-AT4AWD6B.js";
30
30
  import "../../chunk-J5V2JRIK.js";
31
31
  import "../../chunk-TYAQWVIM.js";