design-system-silkhaus 3.12.0-beta.month-range-picker.3 → 3.12.0-beta.month-range-picker.4
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/app/index.js +1 -1
- package/dist/{index-xY5AZ_GX.js → index-B04N5D44.js} +3 -2
- package/dist/index.d.ts +7 -7
- package/dist/index.js +410 -390
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/app/index.js
CHANGED
|
@@ -6633,6 +6633,7 @@ const On = ({
|
|
|
6633
6633
|
y(!1), n && n(!1);
|
|
6634
6634
|
},
|
|
6635
6635
|
closeButtonLabel: d,
|
|
6636
|
+
isMultiSelect: c,
|
|
6636
6637
|
children: /* @__PURE__ */ R.jsx(
|
|
6637
6638
|
Dn,
|
|
6638
6639
|
{
|
|
@@ -6651,7 +6652,7 @@ const On = ({
|
|
|
6651
6652
|
] });
|
|
6652
6653
|
};
|
|
6653
6654
|
On.displayName = "MobileDropdown";
|
|
6654
|
-
const jn = ({ onClose: e, closeButtonLabel: t, children: r }) => /* @__PURE__ */ R.jsxs("div", { className: "ds-mb-0 ds-flex ds-max-h-dvh ds-w-full ds-flex-col ds-bg-white", children: [
|
|
6655
|
+
const jn = ({ onClose: e, closeButtonLabel: t, children: r, isMultiSelect: n }) => /* @__PURE__ */ R.jsxs("div", { className: "ds-mb-0 ds-flex ds-max-h-dvh ds-w-full ds-flex-col ds-bg-white", children: [
|
|
6655
6656
|
/* @__PURE__ */ R.jsxs("div", { className: "ds-flex ds-shrink-0 ds-items-center ds-justify-between ds-px-8 ds-py-4", children: [
|
|
6656
6657
|
/* @__PURE__ */ R.jsx(
|
|
6657
6658
|
"div",
|
|
@@ -6664,7 +6665,7 @@ const jn = ({ onClose: e, closeButtonLabel: t, children: r }) => /* @__PURE__ */
|
|
|
6664
6665
|
/* @__PURE__ */ R.jsx("div", { className: "ds-size-5" })
|
|
6665
6666
|
] }),
|
|
6666
6667
|
/* @__PURE__ */ R.jsx("div", { className: "ds-grow ds-overflow-y-auto ds-p-4 ds-text-xSmallCalloutRegular", children: r }),
|
|
6667
|
-
/* @__PURE__ */ R.jsx("div", { className: "ds-px-8 ds-py-4", children: /* @__PURE__ */ R.jsx(
|
|
6668
|
+
n && /* @__PURE__ */ R.jsx("div", { className: "ds-px-8 ds-py-4", children: /* @__PURE__ */ R.jsx(
|
|
6668
6669
|
an,
|
|
6669
6670
|
{
|
|
6670
6671
|
buttonClassName: "ds-py-3",
|
package/dist/index.d.ts
CHANGED
|
@@ -42,6 +42,13 @@ export declare interface AccordionProps {
|
|
|
42
42
|
onStateChange?: (state: boolean) => void;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
+
export declare const ActionBar: ({ applyLabel, cancelLabel, onApply, onCancel, }: {
|
|
46
|
+
applyLabel: string;
|
|
47
|
+
cancelLabel: string;
|
|
48
|
+
onApply?: () => void;
|
|
49
|
+
onCancel?: () => void;
|
|
50
|
+
}) => JSX_2.Element;
|
|
51
|
+
|
|
45
52
|
declare type ActionButtonProps = {
|
|
46
53
|
label: string;
|
|
47
54
|
} & ButtonProps;
|
|
@@ -500,13 +507,6 @@ export declare const DeleteIcon: FC<{
|
|
|
500
507
|
className?: string;
|
|
501
508
|
}>;
|
|
502
509
|
|
|
503
|
-
export declare const DesktopActionBar: ({ applyLabel, cancelLabel, onApply, onCancel, }: {
|
|
504
|
-
applyLabel: string;
|
|
505
|
-
cancelLabel: string;
|
|
506
|
-
onApply?: () => void;
|
|
507
|
-
onCancel?: () => void;
|
|
508
|
-
}) => JSX_2.Element;
|
|
509
|
-
|
|
510
510
|
export declare const desktopMinWidth: number;
|
|
511
511
|
|
|
512
512
|
export declare const DesktopMonthRangePicker: FC<PropsWithChildren<MonthRangePickerProps>>;
|