@datatechsolutions/ui 2.7.121 → 2.7.122
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/{chunk-3AW434K4.mjs → chunk-4PAFNLB7.mjs} +3 -3
- package/dist/{chunk-3AW434K4.mjs.map → chunk-4PAFNLB7.mjs.map} +1 -1
- package/dist/{chunk-DOOTVMMR.js → chunk-AE2BJPQH.js} +17 -7
- package/dist/chunk-AE2BJPQH.js.map +1 -0
- package/dist/{chunk-2QXKMKQK.js → chunk-EJRU2KNK.js} +52 -52
- package/dist/{chunk-2QXKMKQK.js.map → chunk-EJRU2KNK.js.map} +1 -1
- package/dist/{chunk-T3E6GSQ2.mjs → chunk-JHE2FYO7.mjs} +17 -7
- package/dist/chunk-JHE2FYO7.mjs.map +1 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +360 -360
- package/dist/index.mjs +1 -1
- package/dist/workflow/index.js +119 -119
- package/dist/workflow/index.mjs +3 -3
- package/dist/workflow/workflow-canvas.js +3 -3
- package/dist/workflow/workflow-canvas.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-DOOTVMMR.js.map +0 -1
- package/dist/chunk-T3E6GSQ2.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -1903,6 +1903,8 @@ type DockAction = {
|
|
|
1903
1903
|
badge?: number;
|
|
1904
1904
|
active?: boolean;
|
|
1905
1905
|
menuItems: DockMenuItem[];
|
|
1906
|
+
/** RGB triplet for accent color (e.g. '59, 130, 246'). Overrides hardcoded getDockAccent. */
|
|
1907
|
+
accentRgb?: string;
|
|
1906
1908
|
};
|
|
1907
1909
|
type DockPosition = 'bottom' | 'top' | 'left' | 'right';
|
|
1908
1910
|
type DockProps = {
|
package/dist/index.d.ts
CHANGED
|
@@ -1903,6 +1903,8 @@ type DockAction = {
|
|
|
1903
1903
|
badge?: number;
|
|
1904
1904
|
active?: boolean;
|
|
1905
1905
|
menuItems: DockMenuItem[];
|
|
1906
|
+
/** RGB triplet for accent color (e.g. '59, 130, 246'). Overrides hardcoded getDockAccent. */
|
|
1907
|
+
accentRgb?: string;
|
|
1906
1908
|
};
|
|
1907
1909
|
type DockPosition = 'bottom' | 'top' | 'left' | 'right';
|
|
1908
1910
|
type DockProps = {
|