@datatechsolutions/ui 2.11.20 → 2.11.22

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.d.mts CHANGED
@@ -2402,6 +2402,12 @@ interface SettingsDialogProps {
2402
2402
  onClose: () => void;
2403
2403
  title: string;
2404
2404
  subtitle?: string;
2405
+ /** Hero gradient (e.g. "from-indigo-500 to-purple-600") — accent bar + icon background */
2406
+ gradient?: string;
2407
+ /** Hero icon (rendered inside the gradient circle) */
2408
+ icon?: ReactNode;
2409
+ /** Small label above the title (e.g. "Edit Agent") */
2410
+ label?: string;
2405
2411
  sections: SettingsDialogSection[];
2406
2412
  activeSectionId: string;
2407
2413
  onSectionChange: (sectionId: string) => void;
@@ -2410,7 +2416,7 @@ interface SettingsDialogProps {
2410
2416
  identity?: SettingsDialogIdentity;
2411
2417
  sidebarFooter?: ReactNode;
2412
2418
  }
2413
- declare function SettingsDialog({ open, onClose, title, subtitle, sections, activeSectionId, onSectionChange, children, closeLabel, identity, sidebarFooter, }: SettingsDialogProps): react_jsx_runtime.JSX.Element;
2419
+ declare function SettingsDialog({ open, onClose, title, subtitle, gradient, icon, label, sections, activeSectionId, onSectionChange, children, closeLabel, identity, sidebarFooter, }: SettingsDialogProps): react_jsx_runtime.JSX.Element;
2414
2420
 
2415
2421
  interface DetailSection {
2416
2422
  /** Unique key for the section */
package/dist/index.d.ts CHANGED
@@ -2402,6 +2402,12 @@ interface SettingsDialogProps {
2402
2402
  onClose: () => void;
2403
2403
  title: string;
2404
2404
  subtitle?: string;
2405
+ /** Hero gradient (e.g. "from-indigo-500 to-purple-600") — accent bar + icon background */
2406
+ gradient?: string;
2407
+ /** Hero icon (rendered inside the gradient circle) */
2408
+ icon?: ReactNode;
2409
+ /** Small label above the title (e.g. "Edit Agent") */
2410
+ label?: string;
2405
2411
  sections: SettingsDialogSection[];
2406
2412
  activeSectionId: string;
2407
2413
  onSectionChange: (sectionId: string) => void;
@@ -2410,7 +2416,7 @@ interface SettingsDialogProps {
2410
2416
  identity?: SettingsDialogIdentity;
2411
2417
  sidebarFooter?: ReactNode;
2412
2418
  }
2413
- declare function SettingsDialog({ open, onClose, title, subtitle, sections, activeSectionId, onSectionChange, children, closeLabel, identity, sidebarFooter, }: SettingsDialogProps): react_jsx_runtime.JSX.Element;
2419
+ declare function SettingsDialog({ open, onClose, title, subtitle, gradient, icon, label, sections, activeSectionId, onSectionChange, children, closeLabel, identity, sidebarFooter, }: SettingsDialogProps): react_jsx_runtime.JSX.Element;
2414
2420
 
2415
2421
  interface DetailSection {
2416
2422
  /** Unique key for the section */