@neoptocom/neopto-ui 1.6.5 → 1.6.7
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/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/Breadcrumb.docs.mdx +3 -0
- package/src/components/Breadcrumb.stories.tsx +3 -0
- package/src/components/Button.docs.mdx +3 -0
- package/src/components/Button.stories.tsx +3 -0
- package/src/components/Card.docs.mdx +3 -0
- package/src/components/DateInput.tsx +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1877,7 +1877,7 @@ var DateInput = React11__namespace.forwardRef(
|
|
|
1877
1877
|
...props
|
|
1878
1878
|
}
|
|
1879
1879
|
),
|
|
1880
|
-
showCalendar && !disabled && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute z-20 mt-2 w-full max-w-sm", children: /* @__PURE__ */ jsxRuntime.jsx(Card, { className: "p-4", showDecorations: false,
|
|
1880
|
+
showCalendar && !disabled && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute z-20 mt-2 w-full max-w-sm", children: /* @__PURE__ */ jsxRuntime.jsx(Card, { className: "p-4", showDecorations: false, lightImage: lightBackgroundImage, darkImage: darkBackgroundImage, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1881
1881
|
Calendar,
|
|
1882
1882
|
{
|
|
1883
1883
|
selectedDate: inputValue !== placeholder && parseDate(inputValue) && isValidDate(parseDate(inputValue)) ? parseDate(inputValue) : /* @__PURE__ */ new Date(),
|
package/dist/index.js
CHANGED
|
@@ -1856,7 +1856,7 @@ var DateInput = React11.forwardRef(
|
|
|
1856
1856
|
...props
|
|
1857
1857
|
}
|
|
1858
1858
|
),
|
|
1859
|
-
showCalendar && !disabled && /* @__PURE__ */ jsx("div", { className: "absolute z-20 mt-2 w-full max-w-sm", children: /* @__PURE__ */ jsx(Card, { className: "p-4", showDecorations: false,
|
|
1859
|
+
showCalendar && !disabled && /* @__PURE__ */ jsx("div", { className: "absolute z-20 mt-2 w-full max-w-sm", children: /* @__PURE__ */ jsx(Card, { className: "p-4", showDecorations: false, lightImage: lightBackgroundImage, darkImage: darkBackgroundImage, children: /* @__PURE__ */ jsx(
|
|
1860
1860
|
Calendar,
|
|
1861
1861
|
{
|
|
1862
1862
|
selectedDate: inputValue !== placeholder && parseDate(inputValue) && isValidDate(parseDate(inputValue)) ? parseDate(inputValue) : /* @__PURE__ */ new Date(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neoptocom/neopto-ui",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A modern React component library built with Tailwind CSS v4 and TypeScript. Features dark mode, design tokens, and comprehensive Storybook documentation. Requires Tailwind v4+.",
|
|
6
6
|
"keywords": [
|
|
@@ -206,7 +206,7 @@ export const DateInput = React.forwardRef<HTMLInputElement, DateInputProps>(
|
|
|
206
206
|
|
|
207
207
|
{showCalendar && !disabled && (
|
|
208
208
|
<div className="absolute z-20 mt-2 w-full max-w-sm">
|
|
209
|
-
<Card className="p-4" showDecorations={false}
|
|
209
|
+
<Card className="p-4" showDecorations={false} lightImage={lightBackgroundImage} darkImage={darkBackgroundImage}>
|
|
210
210
|
<Calendar
|
|
211
211
|
selectedDate={
|
|
212
212
|
inputValue !== placeholder &&
|