@dmsi/wedgekit-react 0.0.494 → 0.0.496

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 (75) hide show
  1. package/dist/{chunk-BYY2NTJH.js → chunk-2A7H5GVB.js} +2 -2
  2. package/dist/{chunk-IPAKWF2V.js → chunk-5R4C5F63.js} +13 -7
  3. package/dist/chunk-BTKWHCUE.js +137 -0
  4. package/dist/{chunk-ETAEB3TA.js → chunk-L3BXRDLP.js} +8 -2
  5. package/dist/chunk-Y5GD2FJA.js +32 -0
  6. package/dist/{chunk-QBSEKZWX.js → chunk-ZKTHUXKS.js} +1 -1
  7. package/dist/components/CalendarRange.cjs +526 -398
  8. package/dist/components/CalendarRange.css +26 -3
  9. package/dist/components/CalendarRange.js +7 -5
  10. package/dist/components/Caption.cjs +6 -3
  11. package/dist/components/Caption.js +5 -129
  12. package/dist/components/DataGrid/ColumnSelectorHeaderCell/ColumnSelectorMenuOption.cjs +517 -389
  13. package/dist/components/DataGrid/ColumnSelectorHeaderCell/ColumnSelectorMenuOption.css +26 -3
  14. package/dist/components/DataGrid/ColumnSelectorHeaderCell/ColumnSelectorMenuOption.js +7 -5
  15. package/dist/components/DataGrid/ColumnSelectorHeaderCell/index.cjs +520 -392
  16. package/dist/components/DataGrid/ColumnSelectorHeaderCell/index.css +26 -3
  17. package/dist/components/DataGrid/ColumnSelectorHeaderCell/index.js +7 -5
  18. package/dist/components/DataGrid/PinnedColumns.cjs +521 -393
  19. package/dist/components/DataGrid/PinnedColumns.css +26 -3
  20. package/dist/components/DataGrid/PinnedColumns.js +7 -5
  21. package/dist/components/DataGrid/TableBody/LoadingCell.cjs +515 -387
  22. package/dist/components/DataGrid/TableBody/LoadingCell.css +26 -3
  23. package/dist/components/DataGrid/TableBody/LoadingCell.js +7 -5
  24. package/dist/components/DataGrid/TableBody/TableBodyRow.cjs +516 -388
  25. package/dist/components/DataGrid/TableBody/TableBodyRow.css +26 -3
  26. package/dist/components/DataGrid/TableBody/TableBodyRow.js +7 -5
  27. package/dist/components/DataGrid/TableBody/index.cjs +516 -388
  28. package/dist/components/DataGrid/TableBody/index.css +26 -3
  29. package/dist/components/DataGrid/TableBody/index.js +7 -5
  30. package/dist/components/DataGrid/index.cjs +536 -408
  31. package/dist/components/DataGrid/index.css +26 -3
  32. package/dist/components/DataGrid/index.js +7 -5
  33. package/dist/components/DataGrid/utils.cjs +515 -387
  34. package/dist/components/DataGrid/utils.css +26 -3
  35. package/dist/components/DataGrid/utils.js +7 -5
  36. package/dist/components/DataGridCell.cjs +212 -88
  37. package/dist/components/DataGridCell.js +3 -2
  38. package/dist/components/DateInput.cjs +508 -380
  39. package/dist/components/DateInput.css +26 -3
  40. package/dist/components/DateInput.js +7 -5
  41. package/dist/components/DateRangeInput.cjs +514 -386
  42. package/dist/components/DateRangeInput.css +26 -3
  43. package/dist/components/DateRangeInput.js +7 -5
  44. package/dist/components/MenuOption.cjs +147 -23
  45. package/dist/components/MenuOption.js +2 -1
  46. package/dist/components/MobileDataGrid/ColumnList.js +1 -1
  47. package/dist/components/MobileDataGrid/ColumnSelector/index.cjs +526 -398
  48. package/dist/components/MobileDataGrid/ColumnSelector/index.css +26 -3
  49. package/dist/components/MobileDataGrid/ColumnSelector/index.js +7 -5
  50. package/dist/components/MobileDataGrid/MobileDataGridCard/index.js +1 -1
  51. package/dist/components/MobileDataGrid/MobileDataGridHeader.cjs +505 -377
  52. package/dist/components/MobileDataGrid/MobileDataGridHeader.css +26 -3
  53. package/dist/components/MobileDataGrid/MobileDataGridHeader.js +7 -5
  54. package/dist/components/MobileDataGrid/RowDetailModalProvider/ModalContent.js +1 -1
  55. package/dist/components/MobileDataGrid/RowDetailModalProvider/index.js +1 -1
  56. package/dist/components/MobileDataGrid/index.cjs +560 -432
  57. package/dist/components/MobileDataGrid/index.css +26 -3
  58. package/dist/components/MobileDataGrid/index.js +7 -5
  59. package/dist/components/NestedMenu.cjs +170 -46
  60. package/dist/components/NestedMenu.js +2 -1
  61. package/dist/components/SearchResultImage/index.cjs +92 -0
  62. package/dist/components/SearchResultImage/index.js +8 -0
  63. package/dist/components/SkeletonParagraph.cjs +8 -2
  64. package/dist/components/SkeletonParagraph.js +1 -1
  65. package/dist/components/index.cjs +715 -558
  66. package/dist/components/index.css +26 -3
  67. package/dist/components/index.js +10 -5
  68. package/dist/index.css +26 -3
  69. package/package.json +1 -1
  70. package/src/components/Caption.tsx +3 -0
  71. package/src/components/MenuOption.tsx +16 -6
  72. package/src/components/SearchResultImage/index.tsx +39 -0
  73. package/src/components/SkeletonParagraph.tsx +9 -1
  74. package/src/components/index.ts +1 -0
  75. package/src/index.css +4 -3
@@ -838,6 +838,12 @@
838
838
  .\!w-20 {
839
839
  width: calc(var(--spacing) * 20) !important;
840
840
  }
841
+ .w-1\/2 {
842
+ width: calc(1/2 * 100%);
843
+ }
844
+ .w-1\/4 {
845
+ width: calc(1/4 * 100%);
846
+ }
841
847
  .w-2\/3 {
842
848
  width: calc(2/3 * 100%);
843
849
  }
@@ -922,6 +928,9 @@
922
928
  .min-w-0 {
923
929
  min-width: calc(var(--spacing) * 0);
924
930
  }
931
+ .min-w-10 {
932
+ min-width: calc(var(--spacing) * 10);
933
+ }
925
934
  .min-w-20 {
926
935
  min-width: calc(var(--spacing) * 20);
927
936
  }
@@ -4091,6 +4100,11 @@
4091
4100
  margin-top: var(--spacing-desktop-container-padding);
4092
4101
  }
4093
4102
  }
4103
+ .desktop\:mt-px {
4104
+ @container root (width >= 48rem) {
4105
+ margin-top: 1px;
4106
+ }
4107
+ }
4094
4108
  .desktop\:mb-desktop-container-padding {
4095
4109
  @container root (width >= 48rem) {
4096
4110
  margin-bottom: var(--spacing-desktop-container-padding);
@@ -4673,6 +4687,7 @@
4673
4687
  position: relative;
4674
4688
  overflow: hidden;
4675
4689
  background-color: #f7f7f7;
4690
+ opacity: 0.85;
4676
4691
  }
4677
4692
  .skeleton-paragraph::after {
4678
4693
  content: "";
@@ -4682,9 +4697,17 @@
4682
4697
  background-image:
4683
4698
  linear-gradient(
4684
4699
  90deg,
4685
- rgba(255, 255, 255, 0) 0%,
4686
- rgba(255, 255, 255, 0.6) 50%,
4687
- rgba(255, 255, 255, 0) 100%);
4700
+ transparent 0%,
4701
+ color-mix(in srgb, #ffffff 60%, transparent) 50%,
4702
+ transparent 100%);
4703
+ @supports (color: color-mix(in lab, red, red)) {
4704
+ background-image:
4705
+ linear-gradient(
4706
+ 90deg,
4707
+ transparent 0%,
4708
+ color-mix(in srgb, var(--color-neutral-000) 60%, transparent) 50%,
4709
+ transparent 100%);
4710
+ }
4688
4711
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
4689
4712
  }
4690
4713
  @keyframes skeleton-shimmer {
@@ -2,11 +2,12 @@ import {
2
2
  CalendarRange,
3
3
  CalendarRange_default,
4
4
  isWeekend
5
- } from "../chunk-BYY2NTJH.js";
5
+ } from "../chunk-2A7H5GVB.js";
6
6
  import "../chunk-M7INAUAJ.js";
7
7
  import "../chunk-4Q7T4GJ2.js";
8
8
  import "../chunk-3DEYCNUE.js";
9
9
  import "../chunk-DYBJUTGK.js";
10
+ import "../chunk-Y5GD2FJA.js";
10
11
  import "../chunk-TPBEID5X.js";
11
12
  import "../chunk-B53XDCLO.js";
12
13
  import "../chunk-MBZ55T2D.js";
@@ -17,8 +18,8 @@ import "../chunk-BQNPOGD5.js";
17
18
  import "../chunk-QMSPTD6L.js";
18
19
  import "../chunk-XIXQUEYC.js";
19
20
  import "../chunk-5IFPG6TS.js";
20
- import "../chunk-KW6V7O3H.js";
21
21
  import "../chunk-AJ5M6MVX.js";
22
+ import "../chunk-KW6V7O3H.js";
22
23
  import "../chunk-JUFBGNWW.js";
23
24
  import "../chunk-YEZBNQZI.js";
24
25
  import "../chunk-S5ZJ3Q7P.js";
@@ -26,7 +27,7 @@ import "../chunk-AT4AWD6B.js";
26
27
  import "../chunk-EWGHVZL5.js";
27
28
  import "../chunk-7GHD74J3.js";
28
29
  import "../chunk-7BVUTFZ5.js";
29
- import "../chunk-ETAEB3TA.js";
30
+ import "../chunk-L3BXRDLP.js";
30
31
  import "../chunk-GRGDX7JC.js";
31
32
  import "../chunk-HVNHTM3P.js";
32
33
  import "../chunk-X67L3NZI.js";
@@ -39,15 +40,16 @@ import "../chunk-6TYWM26K.js";
39
40
  import "../chunk-SBRRNFOP.js";
40
41
  import "../chunk-Y2GK27RX.js";
41
42
  import "../chunk-QVWYTQKL.js";
42
- import "../chunk-QBSEKZWX.js";
43
+ import "../chunk-ZKTHUXKS.js";
43
44
  import "../chunk-TCMOGTPB.js";
44
45
  import "../chunk-DVU5XV7L.js";
45
- import "../chunk-IPAKWF2V.js";
46
+ import "../chunk-5R4C5F63.js";
46
47
  import "../chunk-RQRR4FEF.js";
47
48
  import "../chunk-44TH3VC7.js";
48
49
  import "../chunk-AL5QIRY3.js";
49
50
  import "../chunk-WVUIIBRR.js";
50
51
  import "../chunk-75USUR3I.js";
52
+ import "../chunk-BTKWHCUE.js";
51
53
  import "../chunk-WEAVZEE4.js";
52
54
  import "../chunk-OZBB6RFM.js";
53
55
  import "../chunk-URYQ24NF.js";
@@ -247,7 +247,8 @@ var Caption = (_a) => {
247
247
  color,
248
248
  align,
249
249
  id,
250
- testid
250
+ testid,
251
+ marginTopDesktop
251
252
  } = _b, props = __objRest(_b, [
252
253
  "className",
253
254
  "children",
@@ -256,7 +257,8 @@ var Caption = (_a) => {
256
257
  "color",
257
258
  "align",
258
259
  "id",
259
- "testid"
260
+ "testid",
261
+ "marginTopDesktop"
260
262
  ]);
261
263
  const Element = as;
262
264
  return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("div", { id, "data-testid": testid, className: "flex gap-1", children: [
@@ -284,7 +286,8 @@ var Caption = (_a) => {
284
286
  align === "left" && "text-left",
285
287
  align === "center" && "text-center",
286
288
  align === "right" && "text-right",
287
- className
289
+ className,
290
+ marginTopDesktop && `desktop:mt-px`
288
291
  )
289
292
  }, props), {
290
293
  style: {
@@ -1,133 +1,9 @@
1
1
  import {
2
- Icon
3
- } from "../chunk-NKUETCDA.js";
4
- import {
5
- typography
6
- } from "../chunk-IXR65MOU.js";
7
- import {
8
- __objRest,
9
- __spreadProps,
10
- __spreadValues
11
- } from "../chunk-ORMEWXMH.js";
12
-
13
- // src/components/Caption.tsx
14
- import clsx from "clsx";
15
- import { jsx, jsxs } from "react/jsx-runtime";
16
- var Caption = (_a) => {
17
- var _b = _a, {
18
- className,
19
- children,
20
- as = "span",
21
- style = "default",
22
- color,
23
- align,
24
- id,
25
- testid
26
- } = _b, props = __objRest(_b, [
27
- "className",
28
- "children",
29
- "as",
30
- "style",
31
- "color",
32
- "align",
33
- "id",
34
- "testid"
35
- ]);
36
- const Element = as;
37
- return /* @__PURE__ */ jsxs("div", { id, "data-testid": testid, className: "flex gap-1", children: [
38
- /* @__PURE__ */ jsx(
39
- WhichIcon,
40
- {
41
- id,
42
- testid,
43
- style,
44
- size: 16,
45
- className: "mt-[3px] desktop:mt-0"
46
- }
47
- ),
48
- /* @__PURE__ */ jsx(
49
- Element,
50
- __spreadProps(__spreadValues({
51
- id: id ? `${id}-text` : void 0,
52
- "data-testid": testid ? `${testid}-text` : void 0,
53
- className: clsx(
54
- typography.caption.replace("text-text-primary-normal", ""),
55
- (style === "default" || style === "info") && "text-text-secondary-normal",
56
- style === "success" && "text-text-success-normal",
57
- style === "warning" && "text-text-warning-normal",
58
- style === "error" && "text-text-critical-normal",
59
- align === "left" && "text-left",
60
- align === "center" && "text-center",
61
- align === "right" && "text-right",
62
- className
63
- )
64
- }, props), {
65
- style: {
66
- color: color ? `var(--color-${color})` : void 0
67
- },
68
- children
69
- })
70
- )
71
- ] });
72
- };
73
- var WhichIcon = ({
74
- style,
75
- size,
76
- className,
77
- id,
78
- testid
79
- }) => {
80
- if (style === "success") {
81
- return /* @__PURE__ */ jsx("span", { className: "text-icon-success-normal contents", children: /* @__PURE__ */ jsx(
82
- Icon,
83
- {
84
- id: id ? `${id}-icon` : void 0,
85
- testid: testid ? `${testid}-icon` : void 0,
86
- className,
87
- name: "check_circle",
88
- size
89
- }
90
- ) });
91
- }
92
- if (style === "warning") {
93
- return /* @__PURE__ */ jsx("span", { className: "text-icon-warning-normal contents", children: /* @__PURE__ */ jsx(
94
- Icon,
95
- {
96
- id: id ? `${id}-icon` : void 0,
97
- testid: testid ? `${testid}-icon` : void 0,
98
- className,
99
- name: "warning",
100
- size
101
- }
102
- ) });
103
- }
104
- if (style === "error") {
105
- return /* @__PURE__ */ jsx("span", { className: "text-icon-critical-normal contents", children: /* @__PURE__ */ jsx(
106
- Icon,
107
- {
108
- id: id ? `${id}-icon` : void 0,
109
- testid: testid ? `${testid}-icon` : void 0,
110
- className,
111
- name: "info",
112
- size
113
- }
114
- ) });
115
- }
116
- if (style === "info") {
117
- return /* @__PURE__ */ jsx("span", { className: "text-icon-primary-normal contents", children: /* @__PURE__ */ jsx(
118
- Icon,
119
- {
120
- id: id ? `${id}-icon` : void 0,
121
- testid: testid ? `${testid}-icon` : void 0,
122
- className,
123
- name: "info",
124
- size
125
- }
126
- ) });
127
- }
128
- return null;
129
- };
130
- Caption.displayName = "Caption";
2
+ Caption
3
+ } from "../chunk-BTKWHCUE.js";
4
+ import "../chunk-NKUETCDA.js";
5
+ import "../chunk-IXR65MOU.js";
6
+ import "../chunk-ORMEWXMH.js";
131
7
  export {
132
8
  Caption
133
9
  };