@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/astrlabe/contracts.d.mts +2 -2
- package/dist/astrlabe/contracts.d.ts +2 -2
- package/dist/astrlabe/index.d.mts +16 -13
- package/dist/astrlabe/index.d.ts +16 -13
- package/dist/astrlabe/index.js +140 -125
- package/dist/astrlabe/index.js.map +1 -1
- package/dist/astrlabe/index.mjs +7 -4
- package/dist/astrlabe/index.mjs.map +1 -1
- package/dist/astrlabe/workflow-canvas.d.mts +1 -1
- package/dist/astrlabe/workflow-canvas.d.ts +1 -1
- package/dist/astrlabe/workflow-canvas.js +3 -3
- package/dist/astrlabe/workflow-canvas.mjs +2 -2
- package/dist/{chunk-N5VHGPE7.mjs → chunk-23247RGB.mjs} +19 -12
- package/dist/chunk-23247RGB.mjs.map +1 -0
- package/dist/{chunk-BSPRG6ZF.js → chunk-5WFBHIM5.js} +19 -12
- package/dist/chunk-5WFBHIM5.js.map +1 -0
- package/dist/{chunk-TZD35VFY.mjs → chunk-CU3L2357.mjs} +163 -55
- package/dist/chunk-CU3L2357.mjs.map +1 -0
- package/dist/{chunk-GMGTX3TB.js → chunk-ITFBJSHZ.js} +207 -96
- package/dist/chunk-ITFBJSHZ.js.map +1 -0
- package/dist/index.d.mts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +713 -713
- package/dist/index.mjs +1 -1
- package/dist/{workflow-canvas-CEfOHTzN.d.ts → workflow-canvas-Dn7U7P92.d.ts} +9 -9
- package/dist/{workflow-canvas-Dfj5MOAY.d.mts → workflow-canvas-Mlbo6q5K.d.mts} +9 -9
- package/package.json +1 -1
- package/dist/chunk-BSPRG6ZF.js.map +0 -1
- package/dist/chunk-GMGTX3TB.js.map +0 -1
- package/dist/chunk-N5VHGPE7.mjs.map +0 -1
- package/dist/chunk-TZD35VFY.mjs.map +0 -1
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 */
|