@dmsi/wedgekit-react 0.0.230 → 0.0.232

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 (57) hide show
  1. package/dist/{chunk-2RUQFWER.js → chunk-2VRZB2A4.js} +1 -1
  2. package/dist/{chunk-A76MF7ZO.js → chunk-3M23BFB4.js} +2 -2
  3. package/dist/{chunk-7W4I2NK3.js → chunk-5JVMULVC.js} +12 -2
  4. package/dist/{chunk-2WRRRPEB.js → chunk-7BBXPM5C.js} +1 -1
  5. package/dist/{chunk-XOUEHNCC.js → chunk-Q7ETEWBW.js} +1 -1
  6. package/dist/chunk-SQJ7MWY7.js +493 -0
  7. package/dist/chunk-VZVPD3XK.js +1182 -0
  8. package/dist/components/CalendarRange.cjs +4066 -224
  9. package/dist/components/CalendarRange.css +4831 -0
  10. package/dist/components/CalendarRange.js +23 -1
  11. package/dist/components/DataGridCell.cjs +12 -2
  12. package/dist/components/DataGridCell.js +3 -3
  13. package/dist/components/DateInput.cjs +3682 -329
  14. package/dist/components/DateInput.css +4831 -0
  15. package/dist/components/DateInput.js +23 -5
  16. package/dist/components/DateRangeInput.cjs +3682 -329
  17. package/dist/components/DateRangeInput.css +4831 -0
  18. package/dist/components/DateRangeInput.js +23 -5
  19. package/dist/components/FilterGroup.cjs +12 -2
  20. package/dist/components/FilterGroup.js +7 -7
  21. package/dist/components/Input.cjs +12 -2
  22. package/dist/components/Input.js +1 -1
  23. package/dist/components/MobileDataGrid.js +3 -3
  24. package/dist/components/Modal.js +4 -4
  25. package/dist/components/ModalButtons.js +2 -2
  26. package/dist/components/ModalHeader.js +2 -2
  27. package/dist/components/NavigationTab.js +2 -2
  28. package/dist/components/NavigationTabs.js +2 -2
  29. package/dist/components/Notification.js +3 -3
  30. package/dist/components/OptionPill.js +2 -2
  31. package/dist/components/PDFViewer.js +6 -6
  32. package/dist/components/Password.cjs +12 -2
  33. package/dist/components/Password.js +1 -1
  34. package/dist/components/Search.cjs +12 -2
  35. package/dist/components/Search.js +2 -2
  36. package/dist/components/Select.cjs +12 -2
  37. package/dist/components/Select.js +2 -2
  38. package/dist/components/Stepper.cjs +12 -2
  39. package/dist/components/Stepper.js +4 -4
  40. package/dist/components/Time.cjs +12 -2
  41. package/dist/components/Time.js +1 -1
  42. package/dist/components/Toast.js +3 -3
  43. package/dist/components/Upload.js +3 -3
  44. package/dist/components/index.cjs +12 -2
  45. package/dist/components/index.css +3 -0
  46. package/dist/components/index.js +12 -1142
  47. package/dist/index.css +3 -0
  48. package/package.json +1 -1
  49. package/src/components/CalendarRange.tsx +316 -165
  50. package/src/components/DateInput.tsx +1 -0
  51. package/src/components/DateRangeInput.tsx +1 -0
  52. package/src/components/Input.tsx +19 -5
  53. package/dist/chunk-SE5DM2IJ.js +0 -350
  54. package/dist/{chunk-ED7FXZRX.js → chunk-BW2MWMVM.js} +3 -3
  55. package/dist/{chunk-FYW64H7N.js → chunk-JFPRYMID.js} +3 -3
  56. package/dist/{chunk-A5ROZWIH.js → chunk-R4H6D4SZ.js} +3 -3
  57. package/dist/{chunk-47KTDBGA.js → chunk-T7UCZWWK.js} +3 -3
@@ -1361,6 +1361,7 @@ var InputBase = (_a) => {
1361
1361
  removeBorder,
1362
1362
  wrapperClassName,
1363
1363
  focus,
1364
+ secondaryIconColor,
1364
1365
  fullWidth = true
1365
1366
  } = _b, props = __objRest(_b, [
1366
1367
  "id",
@@ -1380,6 +1381,7 @@ var InputBase = (_a) => {
1380
1381
  "removeBorder",
1381
1382
  "wrapperClassName",
1382
1383
  "focus",
1384
+ "secondaryIconColor",
1383
1385
  "fullWidth"
1384
1386
  ]);
1385
1387
  const attributes = {
@@ -1445,6 +1447,7 @@ var InputBase = (_a) => {
1445
1447
  Label,
1446
1448
  {
1447
1449
  id: id ? `${id}-label` : void 0,
1450
+ color: error ? "text-primary-error" : void 0,
1448
1451
  className: (0, import_clsx7.default)(
1449
1452
  props.disabled || props.readOnly ? "cursor-default" : "cursor-pointer"
1450
1453
  ),
@@ -1496,11 +1499,18 @@ var InputBase = (_a) => {
1496
1499
  )
1497
1500
  })
1498
1501
  ),
1499
- after
1502
+ secondaryIconColor ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: "contents text-text-secondary-normal", children: after }) : after
1500
1503
  ]
1501
1504
  }
1502
1505
  ),
1503
- caption && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { id: id ? `${id}-caption` : void 0, "data-testid": testid ? `${testid}-caption` : void 0, children: caption })
1506
+ caption && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
1507
+ "div",
1508
+ {
1509
+ id: id ? `${id}-caption` : void 0,
1510
+ "data-testid": testid ? `${testid}-caption` : void 0,
1511
+ children: caption
1512
+ }
1513
+ )
1504
1514
  ]
1505
1515
  }
1506
1516
  );
@@ -1903,6 +1903,9 @@
1903
1903
  .py-4 {
1904
1904
  padding-block: calc(var(--spacing) * 4);
1905
1905
  }
1906
+ .py-\[2px\] {
1907
+ padding-block: 2px;
1908
+ }
1906
1909
  .py-\[15px\] {
1907
1910
  padding-block: 15px;
1908
1911
  }