@datatechsolutions/ui 2.7.137 → 2.7.139
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-WURM4JVE.mjs → chunk-AMUPPC66.mjs} +13 -6
- package/dist/chunk-AMUPPC66.mjs.map +1 -0
- package/dist/{chunk-6KYBGBI4.mjs → chunk-BTJP5QCD.mjs} +13 -2
- package/dist/{chunk-6KYBGBI4.mjs.map → chunk-BTJP5QCD.mjs.map} +1 -1
- package/dist/{chunk-5IE2FIWT.js → chunk-JYX3ILSA.js} +262 -120
- package/dist/chunk-JYX3ILSA.js.map +1 -0
- package/dist/{chunk-F4FMGGHO.js → chunk-ULPKAD4A.js} +13 -2
- package/dist/{chunk-F4FMGGHO.js.map → chunk-ULPKAD4A.js.map} +1 -1
- package/dist/{chunk-3OGFL5RQ.mjs → chunk-WTPYTOK4.mjs} +263 -121
- package/dist/chunk-WTPYTOK4.mjs.map +1 -0
- package/dist/{chunk-6Y3DK5EC.js → chunk-YCIUVIFN.js} +68 -61
- package/dist/chunk-YCIUVIFN.js.map +1 -0
- package/dist/index.d.mts +8 -2
- package/dist/index.d.ts +8 -2
- package/dist/index.js +337 -337
- package/dist/index.mjs +1 -1
- package/dist/workflow/contracts.d.mts +13 -3
- package/dist/workflow/contracts.d.ts +13 -3
- package/dist/workflow/index.js +126 -125
- package/dist/workflow/index.js.map +1 -1
- package/dist/workflow/index.mjs +6 -5
- package/dist/workflow/index.mjs.map +1 -1
- package/dist/workflow/utils.js +4 -4
- package/dist/workflow/utils.mjs +1 -1
- package/dist/workflow/workflow-canvas.js +4 -4
- package/dist/workflow/workflow-canvas.mjs +3 -3
- package/package.json +1 -1
- package/dist/chunk-3OGFL5RQ.mjs.map +0 -1
- package/dist/chunk-5IE2FIWT.js.map +0 -1
- package/dist/chunk-6Y3DK5EC.js.map +0 -1
- package/dist/chunk-WURM4JVE.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -1234,8 +1234,14 @@ type GlassModalProps = {
|
|
|
1234
1234
|
contentClassName?: string;
|
|
1235
1235
|
/** z-index class (default "z-50"). Use "z-[160]" for modals on top of other modals. */
|
|
1236
1236
|
zIndex?: string;
|
|
1237
|
-
|
|
1238
|
-
|
|
1237
|
+
/** data-testid for the backdrop overlay */
|
|
1238
|
+
overlayTestId?: string;
|
|
1239
|
+
/** data-testid for the dialog panel */
|
|
1240
|
+
panelTestId?: string;
|
|
1241
|
+
/** aria-labelledby for the Dialog (connects to a heading id) */
|
|
1242
|
+
ariaLabelledBy?: string;
|
|
1243
|
+
};
|
|
1244
|
+
declare function GlassModal({ open, onClose, children, panelClassName, contentClassName, zIndex, overlayTestId, panelTestId, ariaLabelledBy, }: GlassModalProps): react_jsx_runtime.JSX.Element;
|
|
1239
1245
|
|
|
1240
1246
|
declare function Text({ className, ...props }: React.ComponentPropsWithoutRef<'p'>): react_jsx_runtime.JSX.Element;
|
|
1241
1247
|
declare function TextLink({ className, ...props }: React.ComponentPropsWithoutRef<typeof Link>): react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -1234,8 +1234,14 @@ type GlassModalProps = {
|
|
|
1234
1234
|
contentClassName?: string;
|
|
1235
1235
|
/** z-index class (default "z-50"). Use "z-[160]" for modals on top of other modals. */
|
|
1236
1236
|
zIndex?: string;
|
|
1237
|
-
|
|
1238
|
-
|
|
1237
|
+
/** data-testid for the backdrop overlay */
|
|
1238
|
+
overlayTestId?: string;
|
|
1239
|
+
/** data-testid for the dialog panel */
|
|
1240
|
+
panelTestId?: string;
|
|
1241
|
+
/** aria-labelledby for the Dialog (connects to a heading id) */
|
|
1242
|
+
ariaLabelledBy?: string;
|
|
1243
|
+
};
|
|
1244
|
+
declare function GlassModal({ open, onClose, children, panelClassName, contentClassName, zIndex, overlayTestId, panelTestId, ariaLabelledBy, }: GlassModalProps): react_jsx_runtime.JSX.Element;
|
|
1239
1245
|
|
|
1240
1246
|
declare function Text({ className, ...props }: React.ComponentPropsWithoutRef<'p'>): react_jsx_runtime.JSX.Element;
|
|
1241
1247
|
declare function TextLink({ className, ...props }: React.ComponentPropsWithoutRef<typeof Link>): react_jsx_runtime.JSX.Element;
|