@bloomreach/react-banana-ui 1.19.0 → 1.21.0

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 (45) hide show
  1. package/dist/bloomreach-react-banana-ui.es.js +10 -7
  2. package/dist/bloomreach-react-banana-ui.es.js.map +1 -1
  3. package/dist/bloomreach-react-banana-ui.umd.js +1 -1
  4. package/dist/bloomreach-react-banana-ui.umd.js.map +1 -1
  5. package/dist/components/data-display/table/table.stories.d.ts +1 -0
  6. package/dist/components/data-display/table-cell-action/table-cell-action.d.ts +23 -0
  7. package/dist/components/data-display/table-cell-action/table-cell-action.types.d.ts +5 -0
  8. package/dist/components/inputs/calendar/calendar-base.d.ts +9 -0
  9. package/dist/components/inputs/calendar/calendar.d.ts +25 -0
  10. package/dist/components/inputs/calendar/calendar.qa.stories.d.ts +9 -0
  11. package/dist/components/inputs/calendar/calendar.stories.d.ts +18 -0
  12. package/dist/components/inputs/calendar/calendar.types.d.ts +51 -0
  13. package/dist/components/inputs/calendar/index.d.ts +2 -0
  14. package/dist/components/inputs/calendar/use-calendar-state.d.ts +3 -0
  15. package/dist/components/inputs/calendar/use-calendar.d.ts +9 -0
  16. package/dist/components/inputs/calendar-cell/calendar-cell.d.ts +9 -0
  17. package/dist/components/inputs/calendar-cell/calendar-cell.types.d.ts +16 -0
  18. package/dist/components/inputs/calendar-cell/index.d.ts +2 -0
  19. package/dist/components/inputs/calendar-grid/calendar-grid.d.ts +9 -0
  20. package/dist/components/inputs/calendar-grid/calendar-grid.types.d.ts +11 -0
  21. package/dist/components/inputs/calendar-grid/index.d.ts +2 -0
  22. package/dist/components/inputs/date-input/date-input.d.ts +32 -0
  23. package/dist/components/inputs/date-input/date-input.qa.stories.d.ts +6 -0
  24. package/dist/components/inputs/date-input/date-input.stories.d.ts +13 -0
  25. package/dist/components/inputs/date-input/date-input.types.d.ts +83 -0
  26. package/dist/components/inputs/date-input/index.d.ts +2 -0
  27. package/dist/components/inputs/date-input/use-date-input-state.d.ts +3 -0
  28. package/dist/components/inputs/date-input/use-date-input.d.ts +12 -0
  29. package/dist/components/inputs/date-picker/date-picker.d.ts +30 -0
  30. package/dist/components/inputs/date-picker/date-picker.qa.stories.d.ts +7 -0
  31. package/dist/components/inputs/date-picker/date-picker.stories.d.ts +12 -0
  32. package/dist/components/inputs/date-picker/date-picker.types.d.ts +74 -0
  33. package/dist/components/inputs/date-picker/index.d.ts +2 -0
  34. package/dist/components/inputs/date-picker/use-date-picker-state.d.ts +6 -0
  35. package/dist/components/inputs/date-picker/use-date-picker.d.ts +12 -0
  36. package/dist/components/inputs/date-segment/date-segment.d.ts +10 -0
  37. package/dist/components/inputs/date-segment/date-segment.types.d.ts +20 -0
  38. package/dist/components/inputs/date-segment/index.d.ts +2 -0
  39. package/dist/style.css +1 -1
  40. package/dist/utils/date/aria-date-conversion.d.ts +21 -0
  41. package/dist/utils/date/create-aria-calendar.d.ts +8 -0
  42. package/dist/utils/date/date-validation.d.ts +18 -0
  43. package/dist/utils/date/index.d.ts +3 -0
  44. package/dist/utils/index.d.ts +1 -0
  45. package/package.json +7 -1
@@ -7630,18 +7630,21 @@ const L9 = s((e, t) => {
7630
7630
  const {
7631
7631
  className: r,
7632
7632
  children: o,
7633
- ...l
7633
+ floating: l = !1,
7634
+ ...c
7634
7635
  // Capture any other properties to pass them to the root element, like `aria-*`, `data-*`, etc.
7635
- } = e, c = H9();
7636
- if (!c)
7636
+ } = e, i = H9();
7637
+ if (!i)
7637
7638
  throw new Error("TableCellAction must be used within a `TableRowContext.Provider`");
7638
- const { highlighted: i } = c;
7639
- return i ? /* @__PURE__ */ a(
7639
+ const { highlighted: u } = i;
7640
+ return u ? /* @__PURE__ */ a(
7640
7641
  "div",
7641
7642
  {
7642
- className: K("rbui-table-cell-action"),
7643
+ className: K(r, "rbui-table-cell-action", {
7644
+ "rbui-table-cell-action--floating": l
7645
+ }),
7643
7646
  ref: t,
7644
- ...l,
7647
+ ...c,
7645
7648
  children: o
7646
7649
  }
7647
7650
  ) : null;