@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
@@ -4462,46 +4462,14 @@ var import_jsx_runtime41 = require("react/jsx-runtime");
4462
4462
 
4463
4463
  // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4464
4464
  var import_react25 = require("react");
4465
-
4466
- // src/components/Spinner.tsx
4467
4465
  var import_jsx_runtime42 = require("react/jsx-runtime");
4468
- var Spinner = ({ size = "small", testid }) => {
4469
- const dimension = size === "large" ? 48 : 24;
4470
- return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
4471
- "svg",
4472
- {
4473
- "data-testid": testid,
4474
- width: dimension,
4475
- height: dimension,
4476
- viewBox: "0 0 24 24",
4477
- xmlns: "http://www.w3.org/2000/svg",
4478
- fill: "#1D1E1E",
4479
- className: "spinner",
4480
- "aria-label": "Loading",
4481
- children: [
4482
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4483
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4484
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4485
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4486
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4487
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4488
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4489
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4490
- ]
4491
- }
4492
- );
4493
- };
4494
- Spinner.displayName = "Spinner";
4495
-
4496
- // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4497
- var import_jsx_runtime43 = require("react/jsx-runtime");
4498
4466
 
4499
4467
  // src/components/ProductImagePreview/ZoomWindow.tsx
4500
4468
  var import_react26 = require("react");
4501
4469
 
4502
4470
  // src/components/Surface.tsx
4503
4471
  var import_clsx31 = __toESM(require("clsx"), 1);
4504
- var import_jsx_runtime44 = require("react/jsx-runtime");
4472
+ var import_jsx_runtime43 = require("react/jsx-runtime");
4505
4473
  var Surface = (_a) => {
4506
4474
  var _b = _a, {
4507
4475
  children,
@@ -4514,7 +4482,7 @@ var Surface = (_a) => {
4514
4482
  "elevation",
4515
4483
  "id"
4516
4484
  ]);
4517
- return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
4485
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4518
4486
  "div",
4519
4487
  __spreadProps(__spreadValues({
4520
4488
  id,
@@ -4535,30 +4503,30 @@ var Surface = (_a) => {
4535
4503
  Surface.displayName = "Surface";
4536
4504
 
4537
4505
  // src/components/ProductImagePreview/ZoomWindow.tsx
4538
- var import_jsx_runtime45 = require("react/jsx-runtime");
4506
+ var import_jsx_runtime44 = require("react/jsx-runtime");
4539
4507
 
4540
4508
  // src/components/ProductImagePreview/CarouselPagination.tsx
4541
4509
  var import_clsx32 = require("clsx");
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/MobileImageCarousel.tsx
4545
4513
  var import_react27 = require("react");
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/useProductImagePreview.ts
4549
4517
  var import_react28 = require("react");
4550
4518
 
4551
4519
  // src/components/ProductImagePreview/index.tsx
4552
- var import_jsx_runtime48 = require("react/jsx-runtime");
4520
+ var import_jsx_runtime47 = require("react/jsx-runtime");
4553
4521
 
4554
4522
  // src/components/CompactImagesPreview.tsx
4555
4523
  var import_react29 = require("react");
4556
4524
  var import_clsx33 = __toESM(require("clsx"), 1);
4557
- var import_jsx_runtime49 = require("react/jsx-runtime");
4525
+ var import_jsx_runtime48 = require("react/jsx-runtime");
4558
4526
 
4559
4527
  // src/components/SimpleTable.tsx
4560
4528
  var import_clsx34 = __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/PDFViewer/index.tsx
4564
4532
  var import_react32 = require("react");
@@ -4567,6 +4535,36 @@ var import_react32 = require("react");
4567
4535
  var import_react_pdf2 = require("@mikecousins/react-pdf");
4568
4536
  var import_react31 = require("react");
4569
4537
 
4538
+ // src/components/Spinner.tsx
4539
+ var import_jsx_runtime50 = require("react/jsx-runtime");
4540
+ var Spinner = ({ size = "small", testid }) => {
4541
+ const dimension = size === "large" ? 48 : 24;
4542
+ return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
4543
+ "svg",
4544
+ {
4545
+ "data-testid": testid,
4546
+ width: dimension,
4547
+ height: dimension,
4548
+ viewBox: "0 0 24 24",
4549
+ xmlns: "http://www.w3.org/2000/svg",
4550
+ fill: "#1D1E1E",
4551
+ className: "spinner",
4552
+ "aria-label": "Loading",
4553
+ children: [
4554
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4555
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4556
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4557
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4558
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4559
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4560
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4561
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4562
+ ]
4563
+ }
4564
+ );
4565
+ };
4566
+ Spinner.displayName = "Spinner";
4567
+
4570
4568
  // src/components/PDFViewer/PDFPage.tsx
4571
4569
  var import_react_pdf = require("@mikecousins/react-pdf");
4572
4570
  var import_react30 = 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";
@@ -4315,46 +4315,14 @@ var import_jsx_runtime40 = require("react/jsx-runtime");
4315
4315
 
4316
4316
  // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4317
4317
  var import_react24 = require("react");
4318
-
4319
- // src/components/Spinner.tsx
4320
4318
  var import_jsx_runtime41 = require("react/jsx-runtime");
4321
- var Spinner = ({ size = "small", testid }) => {
4322
- const dimension = size === "large" ? 48 : 24;
4323
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
4324
- "svg",
4325
- {
4326
- "data-testid": testid,
4327
- width: dimension,
4328
- height: dimension,
4329
- viewBox: "0 0 24 24",
4330
- xmlns: "http://www.w3.org/2000/svg",
4331
- fill: "#1D1E1E",
4332
- className: "spinner",
4333
- "aria-label": "Loading",
4334
- children: [
4335
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4336
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4337
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4338
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4339
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4340
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4341
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4342
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4343
- ]
4344
- }
4345
- );
4346
- };
4347
- Spinner.displayName = "Spinner";
4348
-
4349
- // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4350
- var import_jsx_runtime42 = require("react/jsx-runtime");
4351
4319
 
4352
4320
  // src/components/ProductImagePreview/ZoomWindow.tsx
4353
4321
  var import_react25 = require("react");
4354
4322
 
4355
4323
  // src/components/Surface.tsx
4356
4324
  var import_clsx30 = __toESM(require("clsx"), 1);
4357
- var import_jsx_runtime43 = require("react/jsx-runtime");
4325
+ var import_jsx_runtime42 = require("react/jsx-runtime");
4358
4326
  var Surface = (_a) => {
4359
4327
  var _b = _a, {
4360
4328
  children,
@@ -4367,7 +4335,7 @@ var Surface = (_a) => {
4367
4335
  "elevation",
4368
4336
  "id"
4369
4337
  ]);
4370
- return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4338
+ return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
4371
4339
  "div",
4372
4340
  __spreadProps(__spreadValues({
4373
4341
  id,
@@ -4388,30 +4356,30 @@ var Surface = (_a) => {
4388
4356
  Surface.displayName = "Surface";
4389
4357
 
4390
4358
  // src/components/ProductImagePreview/ZoomWindow.tsx
4391
- var import_jsx_runtime44 = require("react/jsx-runtime");
4359
+ var import_jsx_runtime43 = require("react/jsx-runtime");
4392
4360
 
4393
4361
  // src/components/ProductImagePreview/CarouselPagination.tsx
4394
4362
  var import_clsx31 = require("clsx");
4395
- var import_jsx_runtime45 = require("react/jsx-runtime");
4363
+ var import_jsx_runtime44 = require("react/jsx-runtime");
4396
4364
 
4397
4365
  // src/components/ProductImagePreview/MobileImageCarousel.tsx
4398
4366
  var import_react26 = require("react");
4399
- var import_jsx_runtime46 = require("react/jsx-runtime");
4367
+ var import_jsx_runtime45 = require("react/jsx-runtime");
4400
4368
 
4401
4369
  // src/components/ProductImagePreview/useProductImagePreview.ts
4402
4370
  var import_react27 = require("react");
4403
4371
 
4404
4372
  // src/components/ProductImagePreview/index.tsx
4405
- var import_jsx_runtime47 = require("react/jsx-runtime");
4373
+ var import_jsx_runtime46 = require("react/jsx-runtime");
4406
4374
 
4407
4375
  // src/components/CompactImagesPreview.tsx
4408
4376
  var import_react28 = require("react");
4409
4377
  var import_clsx32 = __toESM(require("clsx"), 1);
4410
- var import_jsx_runtime48 = require("react/jsx-runtime");
4378
+ var import_jsx_runtime47 = require("react/jsx-runtime");
4411
4379
 
4412
4380
  // src/components/SimpleTable.tsx
4413
4381
  var import_clsx33 = __toESM(require("clsx"), 1);
4414
- var import_jsx_runtime49 = require("react/jsx-runtime");
4382
+ var import_jsx_runtime48 = require("react/jsx-runtime");
4415
4383
 
4416
4384
  // src/components/PDFViewer/index.tsx
4417
4385
  var import_react31 = require("react");
@@ -4420,6 +4388,36 @@ var import_react31 = require("react");
4420
4388
  var import_react_pdf2 = require("@mikecousins/react-pdf");
4421
4389
  var import_react30 = require("react");
4422
4390
 
4391
+ // src/components/Spinner.tsx
4392
+ var import_jsx_runtime49 = require("react/jsx-runtime");
4393
+ var Spinner = ({ size = "small", testid }) => {
4394
+ const dimension = size === "large" ? 48 : 24;
4395
+ return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
4396
+ "svg",
4397
+ {
4398
+ "data-testid": testid,
4399
+ width: dimension,
4400
+ height: dimension,
4401
+ viewBox: "0 0 24 24",
4402
+ xmlns: "http://www.w3.org/2000/svg",
4403
+ fill: "#1D1E1E",
4404
+ className: "spinner",
4405
+ "aria-label": "Loading",
4406
+ children: [
4407
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4408
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4409
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4410
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4411
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4412
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4413
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4414
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4415
+ ]
4416
+ }
4417
+ );
4418
+ };
4419
+ Spinner.displayName = "Spinner";
4420
+
4423
4421
  // src/components/PDFViewer/PDFPage.tsx
4424
4422
  var import_react_pdf = require("@mikecousins/react-pdf");
4425
4423
  var import_react29 = 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";
@@ -4532,46 +4532,14 @@ var import_jsx_runtime42 = require("react/jsx-runtime");
4532
4532
 
4533
4533
  // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4534
4534
  var import_react27 = require("react");
4535
-
4536
- // src/components/Spinner.tsx
4537
4535
  var import_jsx_runtime43 = require("react/jsx-runtime");
4538
- var Spinner = ({ size = "small", testid }) => {
4539
- const dimension = size === "large" ? 48 : 24;
4540
- return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
4541
- "svg",
4542
- {
4543
- "data-testid": testid,
4544
- width: dimension,
4545
- height: dimension,
4546
- viewBox: "0 0 24 24",
4547
- xmlns: "http://www.w3.org/2000/svg",
4548
- fill: "#1D1E1E",
4549
- className: "spinner",
4550
- "aria-label": "Loading",
4551
- children: [
4552
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4553
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4554
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4555
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4556
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4557
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4558
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4559
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4560
- ]
4561
- }
4562
- );
4563
- };
4564
- Spinner.displayName = "Spinner";
4565
-
4566
- // src/components/ProductImagePreview/ProductPrimaryImage.tsx
4567
- var import_jsx_runtime44 = require("react/jsx-runtime");
4568
4536
 
4569
4537
  // src/components/ProductImagePreview/ZoomWindow.tsx
4570
4538
  var import_react28 = require("react");
4571
4539
 
4572
4540
  // src/components/Surface.tsx
4573
4541
  var import_clsx31 = __toESM(require("clsx"), 1);
4574
- var import_jsx_runtime45 = require("react/jsx-runtime");
4542
+ var import_jsx_runtime44 = require("react/jsx-runtime");
4575
4543
  var Surface = (_a) => {
4576
4544
  var _b = _a, {
4577
4545
  children,
@@ -4584,7 +4552,7 @@ var Surface = (_a) => {
4584
4552
  "elevation",
4585
4553
  "id"
4586
4554
  ]);
4587
- return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4555
+ return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
4588
4556
  "div",
4589
4557
  __spreadProps(__spreadValues({
4590
4558
  id,
@@ -4605,30 +4573,30 @@ var Surface = (_a) => {
4605
4573
  Surface.displayName = "Surface";
4606
4574
 
4607
4575
  // src/components/ProductImagePreview/ZoomWindow.tsx
4608
- var import_jsx_runtime46 = require("react/jsx-runtime");
4576
+ var import_jsx_runtime45 = require("react/jsx-runtime");
4609
4577
 
4610
4578
  // src/components/ProductImagePreview/CarouselPagination.tsx
4611
4579
  var import_clsx32 = require("clsx");
4612
- var import_jsx_runtime47 = require("react/jsx-runtime");
4580
+ var import_jsx_runtime46 = require("react/jsx-runtime");
4613
4581
 
4614
4582
  // src/components/ProductImagePreview/MobileImageCarousel.tsx
4615
4583
  var import_react29 = require("react");
4616
- var import_jsx_runtime48 = require("react/jsx-runtime");
4584
+ var import_jsx_runtime47 = require("react/jsx-runtime");
4617
4585
 
4618
4586
  // src/components/ProductImagePreview/useProductImagePreview.ts
4619
4587
  var import_react30 = require("react");
4620
4588
 
4621
4589
  // src/components/ProductImagePreview/index.tsx
4622
- var import_jsx_runtime49 = require("react/jsx-runtime");
4590
+ var import_jsx_runtime48 = require("react/jsx-runtime");
4623
4591
 
4624
4592
  // src/components/CompactImagesPreview.tsx
4625
4593
  var import_react31 = require("react");
4626
4594
  var import_clsx33 = __toESM(require("clsx"), 1);
4627
- var import_jsx_runtime50 = require("react/jsx-runtime");
4595
+ var import_jsx_runtime49 = require("react/jsx-runtime");
4628
4596
 
4629
4597
  // src/components/SimpleTable.tsx
4630
4598
  var import_clsx34 = __toESM(require("clsx"), 1);
4631
- var import_jsx_runtime51 = require("react/jsx-runtime");
4599
+ var import_jsx_runtime50 = require("react/jsx-runtime");
4632
4600
 
4633
4601
  // src/components/PDFViewer/index.tsx
4634
4602
  var import_react34 = require("react");
@@ -4637,6 +4605,36 @@ var import_react34 = require("react");
4637
4605
  var import_react_pdf2 = require("@mikecousins/react-pdf");
4638
4606
  var import_react33 = require("react");
4639
4607
 
4608
+ // src/components/Spinner.tsx
4609
+ var import_jsx_runtime51 = require("react/jsx-runtime");
4610
+ var Spinner = ({ size = "small", testid }) => {
4611
+ const dimension = size === "large" ? 48 : 24;
4612
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
4613
+ "svg",
4614
+ {
4615
+ "data-testid": testid,
4616
+ width: dimension,
4617
+ height: dimension,
4618
+ viewBox: "0 0 24 24",
4619
+ xmlns: "http://www.w3.org/2000/svg",
4620
+ fill: "#1D1E1E",
4621
+ className: "spinner",
4622
+ "aria-label": "Loading",
4623
+ children: [
4624
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "12", cy: "4", r: "2", opacity: "1" }),
4625
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "17.666", cy: "6.334", r: "2", opacity: "0.125" }),
4626
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "20", cy: "12", r: "2", opacity: "0.25" }),
4627
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "17.666", cy: "17.666", r: "2", opacity: "0.375" }),
4628
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "12", cy: "20", r: "2", opacity: "0.5" }),
4629
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "6.334", cy: "17.666", r: "2", opacity: "0.625" }),
4630
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "4", cy: "12", r: "2", opacity: "0.75" }),
4631
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "6.334", cy: "6.334", r: "2", opacity: "0.875" })
4632
+ ]
4633
+ }
4634
+ );
4635
+ };
4636
+ Spinner.displayName = "Spinner";
4637
+
4640
4638
  // src/components/PDFViewer/PDFPage.tsx
4641
4639
  var import_react_pdf = require("@mikecousins/react-pdf");
4642
4640
  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";