gantri-components 1.89.6 → 1.91.0
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/components/confirmation-modal/useConfirmationModal.d.ts +1 -1
- package/dist/components/radio/radio.styles.d.ts +6 -2
- package/dist/components/radio/radio.types.d.ts +1 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { UseConfirmationModalProps } from './useConfirmationModal.types';
|
|
2
2
|
declare type ShowModal = () => void;
|
|
3
3
|
declare type HideModal = () => void;
|
|
4
|
-
export declare const useConfirmationModal: (props: UseConfirmationModalProps) => [ShowModal, HideModal];
|
|
4
|
+
export declare const useConfirmationModal: (props: UseConfirmationModalProps, dependencies?: unknown[]) => [ShowModal, HideModal];
|
|
5
5
|
export {};
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
export declare const StyledRadioWrapper: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
-
export declare const StyledRadioContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
3
|
-
|
|
2
|
+
export declare const StyledRadioContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
3
|
+
$disabled?: boolean | undefined;
|
|
4
|
+
}, never>;
|
|
5
|
+
export declare const StyledRadio: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
6
|
+
$checked?: boolean | undefined;
|
|
7
|
+
}, never>;
|
|
4
8
|
export declare const StyledRadioInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {}, never>;
|
|
5
9
|
export declare const StyledRadioMarker: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
|