@indico-data/design-system 2.55.1 → 2.56.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/lib/index.css +179 -78
- package/lib/index.esm.css +179 -78
- package/lib/index.esm.js +1 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +4 -4
- package/src/components/floatUI/FloatUI.stories.tsx +7 -4
- package/src/components/forms/date/datePicker/DatePicker.tsx +2 -2
- package/src/components/menu/Menu.stories.tsx +14 -1
- package/src/components/menu/styles/Menu.scss +11 -0
- package/src/styles/variables/themes/dark.scss +19 -0
- package/src/styles/variables/themes/light.scss +178 -88
- package/plugin-build-tool.json +0 -4
package/lib/index.js
CHANGED
|
@@ -11966,7 +11966,7 @@ const DatePicker = (props) => {
|
|
|
11966
11966
|
onTimeChange === null || onTimeChange === void 0 ? void 0 : onTimeChange(time);
|
|
11967
11967
|
};
|
|
11968
11968
|
const finalProps = Object.assign(Object.assign(Object.assign({}, commonProps), rest), modeProps);
|
|
11969
|
-
return (jsxRuntime.jsxs(
|
|
11969
|
+
return (jsxRuntime.jsxs("div", { className: "date-picker-wrapper", children: [hasTimePicker && (jsxRuntime.jsx("div", { className: "time-picker-wrapper", children: jsxRuntime.jsxs(Row, { align: "center", children: [jsxRuntime.jsx(Col, { xs: "content", children: jsxRuntime.jsx("p", { className: "ma-0", children: "Select Time" }) }), jsxRuntime.jsx(Col, { children: jsxRuntime.jsx(TimePicker, { timeValue: timeValue !== null && timeValue !== void 0 ? timeValue : '', onTimeChange: handleTimeChange }) })] }) })), jsxRuntime.jsx(DayPicker, Object.assign({}, finalProps))] }));
|
|
11970
11970
|
};
|
|
11971
11971
|
|
|
11972
11972
|
function getNodeName$1(node) {
|