@iblai/iblai-js 1.4.12 → 1.4.14
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.
|
@@ -122100,12 +122100,12 @@ function Calendar({ className, classNames, showOutsideDays = true, captionLayout
|
|
|
122100
122100
|
},
|
|
122101
122101
|
Chevron: ({ className, orientation, ...props }) => {
|
|
122102
122102
|
if (orientation === 'left') {
|
|
122103
|
-
return
|
|
122103
|
+
return jsx(ChevronLeft, { className: cn('size-4', className), ...props });
|
|
122104
122104
|
}
|
|
122105
122105
|
if (orientation === 'right') {
|
|
122106
|
-
return
|
|
122106
|
+
return jsx(ChevronRight, { className: cn('size-4', className), ...props });
|
|
122107
122107
|
}
|
|
122108
|
-
return
|
|
122108
|
+
return jsx(ChevronDown, { className: cn('size-4', className), ...props });
|
|
122109
122109
|
},
|
|
122110
122110
|
DayButton: CalendarDayButton,
|
|
122111
122111
|
WeekNumber: ({ children, ...props }) => {
|
|
@@ -111530,12 +111530,12 @@ function Calendar({ className, classNames, showOutsideDays = true, captionLayout
|
|
|
111530
111530
|
},
|
|
111531
111531
|
Chevron: ({ className, orientation, ...props }) => {
|
|
111532
111532
|
if (orientation === 'left') {
|
|
111533
|
-
return
|
|
111533
|
+
return jsx(ChevronLeft, { className: cn('size-4', className), ...props });
|
|
111534
111534
|
}
|
|
111535
111535
|
if (orientation === 'right') {
|
|
111536
|
-
return
|
|
111536
|
+
return jsx(ChevronRight, { className: cn('size-4', className), ...props });
|
|
111537
111537
|
}
|
|
111538
|
-
return
|
|
111538
|
+
return jsx(ChevronDown, { className: cn('size-4', className), ...props });
|
|
111539
111539
|
},
|
|
111540
111540
|
DayButton: CalendarDayButton,
|
|
111541
111541
|
WeekNumber: ({ children, ...props }) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iblai/iblai-js",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.14",
|
|
4
4
|
"description": "Unified JavaScript SDK for IBL.ai — re-exports data-layer, web-containers, and web-utils under a single package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"dotenv": "16.6.1",
|
|
63
63
|
"winston": "3.19.0",
|
|
64
64
|
"@iblai/data-layer": "1.3.7",
|
|
65
|
-
"@iblai/web-containers": "1.3.10",
|
|
66
65
|
"@iblai/mcp": "1.3.2",
|
|
67
|
-
"@iblai/web-
|
|
66
|
+
"@iblai/web-containers": "1.3.11",
|
|
67
|
+
"@iblai/web-utils": "1.2.12"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"@iblai/iblai-api": "4.166.0-ai",
|