@object-ui/components 4.0.12 → 4.3.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.
@@ -30,6 +30,8 @@ export interface ConfigPanelRendererProps {
30
30
  objectDef?: Record<string, any>;
31
31
  /** Additional CSS class name */
32
32
  className?: string;
33
+ /** Additional inline styles applied to the panel root (e.g. to override `--config-panel-width`). */
34
+ style?: React.CSSProperties;
33
35
  /** Label for save button (default: "Save") */
34
36
  saveLabel?: string;
35
37
  /** Label for discard button (default: "Discard") */
@@ -78,4 +80,4 @@ export interface ConfigPanelRendererProps {
78
80
  * Each concrete panel (Dashboard, Form, Page…) only needs to provide
79
81
  * a schema and wire up `useConfigDraft`.
80
82
  */
81
- export declare function ConfigPanelRenderer({ open, onClose, schema, draft, isDirty, onFieldChange, onSave, onDiscard, headerExtra, objectDef, className, saveLabel, discardLabel, panelRef, role, ariaLabel, tabIndex, testId, closeTitle, footerTestId, saveTestId, discardTestId, expandedSections, onUndo, onRedo, canUndo, canRedo, undoLabel, redoLabel, }: ConfigPanelRendererProps): import("react/jsx-runtime").JSX.Element | null;
83
+ export declare function ConfigPanelRenderer({ open, onClose, schema, draft, isDirty, onFieldChange, onSave, onDiscard, headerExtra, objectDef, className, style, saveLabel, discardLabel, panelRef, role, ariaLabel, tabIndex, testId, closeTitle, footerTestId, saveTestId, discardTestId, expandedSections, onUndo, onRedo, canUndo, canRedo, undoLabel, redoLabel, }: ConfigPanelRendererProps): import("react/jsx-runtime").JSX.Element | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@object-ui/components",
3
- "version": "4.0.12",
3
+ "version": "4.3.0",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Standard UI component library for Object UI, built with Shadcn UI + Tailwind CSS",
@@ -61,7 +61,7 @@
61
61
  "input-otp": "^1.4.2",
62
62
  "lucide-react": "^1.16.0",
63
63
  "next-themes": "^0.4.6",
64
- "react-day-picker": "^9.14.0",
64
+ "react-day-picker": "^10.0.1",
65
65
  "react-hook-form": "^7.76.0",
66
66
  "react-resizable-panels": "^4.11.1",
67
67
  "recharts": "3.8.1",
@@ -69,10 +69,10 @@
69
69
  "tailwind-merge": "^3.6.0",
70
70
  "tailwindcss-animate": "^1.0.7",
71
71
  "vaul": "^1.1.2",
72
- "@object-ui/core": "4.0.12",
73
- "@object-ui/i18n": "4.0.12",
74
- "@object-ui/react": "4.0.12",
75
- "@object-ui/types": "4.0.12"
72
+ "@object-ui/core": "4.3.0",
73
+ "@object-ui/i18n": "4.3.0",
74
+ "@object-ui/react": "4.3.0",
75
+ "@object-ui/types": "4.3.0"
76
76
  },
77
77
  "peerDependencies": {
78
78
  "react": "^18.0.0 || ^19.0.0",