@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.
- package/dist/bloomreach-react-banana-ui.es.js +10 -7
- package/dist/bloomreach-react-banana-ui.es.js.map +1 -1
- package/dist/bloomreach-react-banana-ui.umd.js +1 -1
- package/dist/bloomreach-react-banana-ui.umd.js.map +1 -1
- package/dist/components/data-display/table/table.stories.d.ts +1 -0
- package/dist/components/data-display/table-cell-action/table-cell-action.d.ts +23 -0
- package/dist/components/data-display/table-cell-action/table-cell-action.types.d.ts +5 -0
- package/dist/components/inputs/calendar/calendar-base.d.ts +9 -0
- package/dist/components/inputs/calendar/calendar.d.ts +25 -0
- package/dist/components/inputs/calendar/calendar.qa.stories.d.ts +9 -0
- package/dist/components/inputs/calendar/calendar.stories.d.ts +18 -0
- package/dist/components/inputs/calendar/calendar.types.d.ts +51 -0
- package/dist/components/inputs/calendar/index.d.ts +2 -0
- package/dist/components/inputs/calendar/use-calendar-state.d.ts +3 -0
- package/dist/components/inputs/calendar/use-calendar.d.ts +9 -0
- package/dist/components/inputs/calendar-cell/calendar-cell.d.ts +9 -0
- package/dist/components/inputs/calendar-cell/calendar-cell.types.d.ts +16 -0
- package/dist/components/inputs/calendar-cell/index.d.ts +2 -0
- package/dist/components/inputs/calendar-grid/calendar-grid.d.ts +9 -0
- package/dist/components/inputs/calendar-grid/calendar-grid.types.d.ts +11 -0
- package/dist/components/inputs/calendar-grid/index.d.ts +2 -0
- package/dist/components/inputs/date-input/date-input.d.ts +32 -0
- package/dist/components/inputs/date-input/date-input.qa.stories.d.ts +6 -0
- package/dist/components/inputs/date-input/date-input.stories.d.ts +13 -0
- package/dist/components/inputs/date-input/date-input.types.d.ts +83 -0
- package/dist/components/inputs/date-input/index.d.ts +2 -0
- package/dist/components/inputs/date-input/use-date-input-state.d.ts +3 -0
- package/dist/components/inputs/date-input/use-date-input.d.ts +12 -0
- package/dist/components/inputs/date-picker/date-picker.d.ts +30 -0
- package/dist/components/inputs/date-picker/date-picker.qa.stories.d.ts +7 -0
- package/dist/components/inputs/date-picker/date-picker.stories.d.ts +12 -0
- package/dist/components/inputs/date-picker/date-picker.types.d.ts +74 -0
- package/dist/components/inputs/date-picker/index.d.ts +2 -0
- package/dist/components/inputs/date-picker/use-date-picker-state.d.ts +6 -0
- package/dist/components/inputs/date-picker/use-date-picker.d.ts +12 -0
- package/dist/components/inputs/date-segment/date-segment.d.ts +10 -0
- package/dist/components/inputs/date-segment/date-segment.types.d.ts +20 -0
- package/dist/components/inputs/date-segment/index.d.ts +2 -0
- package/dist/style.css +1 -1
- package/dist/utils/date/aria-date-conversion.d.ts +21 -0
- package/dist/utils/date/create-aria-calendar.d.ts +8 -0
- package/dist/utils/date/date-validation.d.ts +18 -0
- package/dist/utils/date/index.d.ts +3 -0
- package/dist/utils/index.d.ts +1 -0
- 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
|
-
|
|
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,
|
|
7636
|
-
if (!
|
|
7636
|
+
} = e, i = H9();
|
|
7637
|
+
if (!i)
|
|
7637
7638
|
throw new Error("TableCellAction must be used within a `TableRowContext.Provider`");
|
|
7638
|
-
const { highlighted:
|
|
7639
|
-
return
|
|
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
|
-
...
|
|
7647
|
+
...c,
|
|
7645
7648
|
children: o
|
|
7646
7649
|
}
|
|
7647
7650
|
) : null;
|