@livetiles/reach-plugin-types 0.5.0-preview.194 → 0.5.0-preview.196
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/lib/index.d.ts +3 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -3865,12 +3865,13 @@ declare module "libs/reach/ui/common/src/common/ConfirmDeleteDialog" {
|
|
|
3865
3865
|
titleResourceValues?: any;
|
|
3866
3866
|
infoResourceKey: string;
|
|
3867
3867
|
infoResourceValues?: any;
|
|
3868
|
-
inputAriaLabelResourceKey
|
|
3869
|
-
compareValue
|
|
3868
|
+
inputAriaLabelResourceKey?: string;
|
|
3869
|
+
compareValue?: string;
|
|
3870
3870
|
onConfirm: () => any;
|
|
3871
3871
|
onCancel: () => any;
|
|
3872
3872
|
disabled?: boolean;
|
|
3873
3873
|
hideCloseButton?: boolean;
|
|
3874
|
+
withValueConfirmation?: boolean;
|
|
3874
3875
|
}
|
|
3875
3876
|
export const ConfirmDeleteDialog: FC<ConfirmDeleteDialogProps>;
|
|
3876
3877
|
}
|