@mateosuarezdev/react-ui 1.0.48 → 1.0.50
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/index.cjs +3 -3
- package/dist/index.d.ts +14 -0
- package/dist/index.js +1082 -1018
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -172,6 +172,20 @@ declare const colorStyles: {
|
|
|
172
172
|
disabled: string;
|
|
173
173
|
};
|
|
174
174
|
|
|
175
|
+
export declare const ConfirmationDialog: React.FC<ConfirmationDialogProps>;
|
|
176
|
+
|
|
177
|
+
declare type ConfirmationDialogProps = {
|
|
178
|
+
title?: string;
|
|
179
|
+
message?: string;
|
|
180
|
+
searchParam: string;
|
|
181
|
+
condition?: boolean;
|
|
182
|
+
cancelLabel?: string;
|
|
183
|
+
confirmLabel?: string;
|
|
184
|
+
confirmColor?: ButtonProps["color"];
|
|
185
|
+
confirmAction?: () => void;
|
|
186
|
+
trigger?: (open: () => void) => React.ReactNode;
|
|
187
|
+
};
|
|
188
|
+
|
|
175
189
|
export declare const DatePickerDemo: default_2.FC;
|
|
176
190
|
|
|
177
191
|
export declare function DatePickerPopover({ customTrigger, scrollerId, }: {
|