@datatechsolutions/ui 2.8.1 → 2.8.2
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-5UH7FKFC.mjs → chunk-BMPCP2ME.mjs} +4 -4
- package/dist/chunk-BMPCP2ME.mjs.map +1 -0
- package/dist/{chunk-FJLCYEFL.js → chunk-EBSYPO4E.js} +4 -4
- package/dist/chunk-EBSYPO4E.js.map +1 -0
- package/dist/{chunk-5AXMHSXY.js → chunk-MRKMIFVG.js} +52 -52
- package/dist/{chunk-5AXMHSXY.js.map → chunk-MRKMIFVG.js.map} +1 -1
- package/dist/{chunk-GMCT3H22.mjs → chunk-VYKQP6MP.mjs} +3 -3
- package/dist/{chunk-GMCT3H22.mjs.map → chunk-VYKQP6MP.mjs.map} +1 -1
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +339 -339
- 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-5UH7FKFC.mjs.map +0 -1
- package/dist/chunk-FJLCYEFL.js.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -2275,8 +2275,10 @@ type PageEmptyStateProps = {
|
|
|
2275
2275
|
title: string;
|
|
2276
2276
|
message: string;
|
|
2277
2277
|
iconName: string;
|
|
2278
|
+
/** Override the default icon with a custom React element */
|
|
2279
|
+
customIcon?: React.ReactNode;
|
|
2278
2280
|
};
|
|
2279
|
-
declare function PageEmptyState({ title, message, iconName }: PageEmptyStateProps): react_jsx_runtime.JSX.Element;
|
|
2281
|
+
declare function PageEmptyState({ title, message, iconName, customIcon }: PageEmptyStateProps): react_jsx_runtime.JSX.Element;
|
|
2280
2282
|
|
|
2281
2283
|
type PageLoadingStateProps = {
|
|
2282
2284
|
label?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2275,8 +2275,10 @@ type PageEmptyStateProps = {
|
|
|
2275
2275
|
title: string;
|
|
2276
2276
|
message: string;
|
|
2277
2277
|
iconName: string;
|
|
2278
|
+
/** Override the default icon with a custom React element */
|
|
2279
|
+
customIcon?: React.ReactNode;
|
|
2278
2280
|
};
|
|
2279
|
-
declare function PageEmptyState({ title, message, iconName }: PageEmptyStateProps): react_jsx_runtime.JSX.Element;
|
|
2281
|
+
declare function PageEmptyState({ title, message, iconName, customIcon }: PageEmptyStateProps): react_jsx_runtime.JSX.Element;
|
|
2280
2282
|
|
|
2281
2283
|
type PageLoadingStateProps = {
|
|
2282
2284
|
label?: string;
|