@northlight/ui 2.42.2 → 2.42.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/es/northlight.js +3 -7
- package/dist/es/northlight.js.map +1 -1
- package/dist/sandbox/index.js +3 -7
- package/dist/sandbox/index.js.map +1 -1
- package/dist/umd/northlight.cjs +2 -6
- package/dist/umd/northlight.cjs.map +1 -1
- package/dist/umd/northlight.min.cjs +3 -3
- package/dist/umd/northlight.min.cjs.map +1 -1
- package/lib/components/date-picker/date-picker/date-range-picker.tsx +15 -23
- package/package.json +3 -2
- package/sandbox/bin/sandbox.ts +2 -0
- package/sandbox/node_modules/.yarn-integrity +38 -0
- package/sandbox/node_modules/@originjs/vite-plugin-commonjs/LICENSE +127 -0
- package/sandbox/node_modules/@originjs/vite-plugin-commonjs/README.md +50 -0
- package/sandbox/node_modules/@originjs/vite-plugin-commonjs/lib/filter.d.ts +2 -0
- package/sandbox/node_modules/@originjs/vite-plugin-commonjs/lib/filter.js +39 -0
- package/sandbox/node_modules/@originjs/vite-plugin-commonjs/lib/filter.js.map +1 -0
- package/sandbox/node_modules/@originjs/vite-plugin-commonjs/lib/index.d.ts +11 -0
- package/sandbox/node_modules/@originjs/vite-plugin-commonjs/lib/index.js +78 -0
- package/sandbox/node_modules/@originjs/vite-plugin-commonjs/lib/index.js.map +1 -0
- package/sandbox/node_modules/@originjs/vite-plugin-commonjs/lib/lib.d.ts +6 -0
- package/sandbox/node_modules/@originjs/vite-plugin-commonjs/lib/lib.js +79 -0
- package/sandbox/node_modules/@originjs/vite-plugin-commonjs/lib/lib.js.map +1 -0
- package/sandbox/node_modules/@originjs/vite-plugin-commonjs/package.json +34 -0
- package/sandbox/node_modules/esbuild/LICENSE.md +21 -0
- package/sandbox/node_modules/esbuild/README.md +3 -0
- package/sandbox/node_modules/esbuild/bin/esbuild +178 -0
- package/sandbox/node_modules/esbuild/install.js +244 -0
- package/sandbox/node_modules/esbuild/lib/main.d.ts +602 -0
- package/sandbox/node_modules/esbuild/lib/main.js +2332 -0
- package/sandbox/node_modules/esbuild/package.json +41 -0
- package/sandbox/node_modules/esbuild-linux-64/README.md +3 -0
- package/sandbox/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/sandbox/node_modules/esbuild-linux-64/package.json +17 -0
package/dist/umd/northlight.cjs
CHANGED
|
@@ -8057,10 +8057,6 @@
|
|
|
8057
8057
|
const handleClose = () => {
|
|
8058
8058
|
state.setOpen(false);
|
|
8059
8059
|
};
|
|
8060
|
-
react.useOutsideClick({
|
|
8061
|
-
ref,
|
|
8062
|
-
handler: () => state.setOpen(false)
|
|
8063
|
-
});
|
|
8064
8060
|
const ResetButton = CustomResetButton || /* @__PURE__ */ React.createElement(
|
|
8065
8061
|
IconButton,
|
|
8066
8062
|
{
|
|
@@ -8143,7 +8139,7 @@
|
|
|
8143
8139
|
icon: /* @__PURE__ */ React.createElement(Icon, { as: NorthlightIcons.CheckSolid })
|
|
8144
8140
|
}
|
|
8145
8141
|
))))),
|
|
8146
|
-
/* @__PURE__ */ React.createElement(PortalWrapper, { renderInPortal }, state.isOpen && /* @__PURE__ */ React.createElement(react.PopoverContent, __spreadProps$g(__spreadValues$1r({}, dialogProps), { ref, w: "max-content" }), /* @__PURE__ */ React.createElement(
|
|
8142
|
+
/* @__PURE__ */ React.createElement(PortalWrapper, { renderInPortal }, state.isOpen && /* @__PURE__ */ React.createElement(react.PopoverContent, __spreadProps$g(__spreadValues$1r({}, dialogProps), { ref, w: "max-content" }), /* @__PURE__ */ React.createElement(DatePickerLocaleWrapper, { firstDayOfWeek }, /* @__PURE__ */ React.createElement(
|
|
8147
8143
|
RangeCalendar,
|
|
8148
8144
|
__spreadProps$g(__spreadValues$1r({}, calendarProps), {
|
|
8149
8145
|
resetDate: cancelOrResetDateChange,
|
|
@@ -8156,7 +8152,7 @@
|
|
|
8156
8152
|
clearButtonLabel,
|
|
8157
8153
|
buttonLabel
|
|
8158
8154
|
})
|
|
8159
|
-
))))
|
|
8155
|
+
))))
|
|
8160
8156
|
);
|
|
8161
8157
|
};
|
|
8162
8158
|
|