@neoptocom/neopto-ui 1.6.5 → 1.6.6

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 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, variant: "app-background", lightImage: lightBackgroundImage, darkImage: darkBackgroundImage, children: /* @__PURE__ */ jsxRuntime.jsx(
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, variant: "app-background", lightImage: lightBackgroundImage, darkImage: darkBackgroundImage, children: /* @__PURE__ */ jsx(
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.5",
3
+ "version": "1.6.6",
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": [
@@ -65,3 +65,6 @@ page load. The interactive example demonstrates an in-app documents flow.
65
65
 
66
66
 
67
67
 
68
+
69
+
70
+
@@ -83,3 +83,6 @@ export const InteractiveNavigation: Story = {
83
83
 
84
84
 
85
85
 
86
+
87
+
88
+
@@ -61,3 +61,6 @@ Use variants to communicate hierarchy:
61
61
 
62
62
 
63
63
 
64
+
65
+
66
+
@@ -115,3 +115,6 @@ export const FullWidthCallToAction: Story = {
115
115
 
116
116
 
117
117
 
118
+
119
+
120
+
@@ -61,3 +61,6 @@ attaching click handlers to the card root.
61
61
 
62
62
 
63
63
 
64
+
65
+
66
+
@@ -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} variant="app-background" lightImage={lightBackgroundImage} darkImage={darkBackgroundImage}>
209
+ <Card className="p-4" showDecorations={false} lightImage={lightBackgroundImage} darkImage={darkBackgroundImage}>
210
210
  <Calendar
211
211
  selectedDate={
212
212
  inputValue !== placeholder &&