@datatechsolutions/ui 2.7.121 → 2.7.123
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-DOOTVMMR.js → chunk-2ILTTH5W.js} +98 -8
- package/dist/chunk-2ILTTH5W.js.map +1 -0
- package/dist/{chunk-2QXKMKQK.js → chunk-EC47DC2H.js} +52 -52
- package/dist/{chunk-2QXKMKQK.js.map → chunk-EC47DC2H.js.map} +1 -1
- package/dist/{chunk-T3E6GSQ2.mjs → chunk-KZ5IPILQ.mjs} +98 -8
- package/dist/chunk-KZ5IPILQ.mjs.map +1 -0
- package/dist/{chunk-3AW434K4.mjs → chunk-OU4JKH37.mjs} +3 -3
- package/dist/{chunk-3AW434K4.mjs.map → chunk-OU4JKH37.mjs.map} +1 -1
- package/dist/index.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- 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/src/styles/liquid-glass.css +60 -0
- package/dist/chunk-DOOTVMMR.js.map +0 -1
- package/dist/chunk-T3E6GSQ2.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -1769,7 +1769,7 @@ interface EntityCardProps {
|
|
|
1769
1769
|
}
|
|
1770
1770
|
declare function EntityCard({ icon, title, subtitle, status, accentGradient, children, footer, onClick, className, dragProps, }: EntityCardProps): react_jsx_runtime.JSX.Element;
|
|
1771
1771
|
|
|
1772
|
-
type FilterTileColor = 'blue' | 'emerald' | 'gray' | 'amber' | 'violet' | 'purple' | 'orange' | 'red';
|
|
1772
|
+
type FilterTileColor = 'blue' | 'emerald' | 'gray' | 'amber' | 'violet' | 'purple' | 'orange' | 'red' | 'indigo' | 'cyan' | 'teal' | 'pink' | 'rose' | 'green' | 'yellow' | 'slate' | 'sky' | 'fuchsia';
|
|
1773
1773
|
interface FilterTileButtonProps {
|
|
1774
1774
|
/** Whether the filter is currently active */
|
|
1775
1775
|
isActive: boolean;
|
|
@@ -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 = {
|
|
@@ -3206,7 +3208,7 @@ declare const isValidBrazilState: (uf: string) => boolean;
|
|
|
3206
3208
|
|
|
3207
3209
|
declare const LOCALE_FLAGS: Record<string, string>;
|
|
3208
3210
|
|
|
3209
|
-
type FilterPillVariant = 'blue' | 'emerald' | 'orange' | 'purple' | 'violet' | 'amber';
|
|
3211
|
+
type FilterPillVariant = 'blue' | 'emerald' | 'orange' | 'purple' | 'violet' | 'amber' | 'red' | 'indigo' | 'cyan' | 'teal' | 'pink' | 'rose' | 'green' | 'yellow' | 'slate' | 'sky' | 'fuchsia' | 'gray';
|
|
3210
3212
|
type FilterPillProps = {
|
|
3211
3213
|
icon: ReactNode;
|
|
3212
3214
|
label: ReactNode;
|
package/dist/index.d.ts
CHANGED
|
@@ -1769,7 +1769,7 @@ interface EntityCardProps {
|
|
|
1769
1769
|
}
|
|
1770
1770
|
declare function EntityCard({ icon, title, subtitle, status, accentGradient, children, footer, onClick, className, dragProps, }: EntityCardProps): react_jsx_runtime.JSX.Element;
|
|
1771
1771
|
|
|
1772
|
-
type FilterTileColor = 'blue' | 'emerald' | 'gray' | 'amber' | 'violet' | 'purple' | 'orange' | 'red';
|
|
1772
|
+
type FilterTileColor = 'blue' | 'emerald' | 'gray' | 'amber' | 'violet' | 'purple' | 'orange' | 'red' | 'indigo' | 'cyan' | 'teal' | 'pink' | 'rose' | 'green' | 'yellow' | 'slate' | 'sky' | 'fuchsia';
|
|
1773
1773
|
interface FilterTileButtonProps {
|
|
1774
1774
|
/** Whether the filter is currently active */
|
|
1775
1775
|
isActive: boolean;
|
|
@@ -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 = {
|
|
@@ -3206,7 +3208,7 @@ declare const isValidBrazilState: (uf: string) => boolean;
|
|
|
3206
3208
|
|
|
3207
3209
|
declare const LOCALE_FLAGS: Record<string, string>;
|
|
3208
3210
|
|
|
3209
|
-
type FilterPillVariant = 'blue' | 'emerald' | 'orange' | 'purple' | 'violet' | 'amber';
|
|
3211
|
+
type FilterPillVariant = 'blue' | 'emerald' | 'orange' | 'purple' | 'violet' | 'amber' | 'red' | 'indigo' | 'cyan' | 'teal' | 'pink' | 'rose' | 'green' | 'yellow' | 'slate' | 'sky' | 'fuchsia' | 'gray';
|
|
3210
3212
|
type FilterPillProps = {
|
|
3211
3213
|
icon: ReactNode;
|
|
3212
3214
|
label: ReactNode;
|