react-magma-dom 5.1.0-rc.31 → 5.1.0-rc.33
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/DatePicker/CalendarDay.d.ts +0 -3
- package/dist/components/DatePicker/DatePicker.stories.d.ts +0 -5
- package/dist/components/Modal/Modal.stories.d.ts +12 -2
- package/dist/esm/index.js +53 -60
- package/dist/esm/index.js.map +1 -1
- package/dist/react-magma-dom.cjs.development.js +53 -60
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
interface CalendarDayProps {
|
|
3
3
|
day: Date;
|
|
4
|
-
dayFocusable?: boolean;
|
|
5
|
-
isInverse?: boolean;
|
|
6
|
-
onDateChange?: (day: Date, event: React.SyntheticEvent) => void;
|
|
7
4
|
}
|
|
8
5
|
export declare const CalendarDay: React.FunctionComponent<CalendarDayProps>;
|
|
9
6
|
export {};
|
|
@@ -5,7 +5,6 @@ export declare const Default: {
|
|
|
5
5
|
render: (args: any) => React.JSX.Element;
|
|
6
6
|
args: {
|
|
7
7
|
labelText: string;
|
|
8
|
-
minDate: Date;
|
|
9
8
|
errorMessage: string;
|
|
10
9
|
helperMessage: string;
|
|
11
10
|
};
|
|
@@ -14,7 +13,6 @@ export declare const NonDefaultFormats: {
|
|
|
14
13
|
render: (args: any) => React.JSX.Element;
|
|
15
14
|
args: {
|
|
16
15
|
labelText: string;
|
|
17
|
-
minDate: Date;
|
|
18
16
|
errorMessage: string;
|
|
19
17
|
helperMessage: string;
|
|
20
18
|
};
|
|
@@ -24,7 +22,6 @@ export declare const Inverse: {
|
|
|
24
22
|
args: {
|
|
25
23
|
isInverse: boolean;
|
|
26
24
|
labelText: string;
|
|
27
|
-
minDate: Date;
|
|
28
25
|
errorMessage: string;
|
|
29
26
|
helperMessage: string;
|
|
30
27
|
};
|
|
@@ -36,7 +33,6 @@ export declare const Events: {
|
|
|
36
33
|
render: (args: any) => React.JSX.Element;
|
|
37
34
|
args: {
|
|
38
35
|
labelText: string;
|
|
39
|
-
minDate: Date;
|
|
40
36
|
errorMessage: string;
|
|
41
37
|
helperMessage: string;
|
|
42
38
|
};
|
|
@@ -45,7 +41,6 @@ export declare const DateFieldDefault: {
|
|
|
45
41
|
render: (args: any) => React.JSX.Element;
|
|
46
42
|
args: {
|
|
47
43
|
labelText: string;
|
|
48
|
-
minDate: Date;
|
|
49
44
|
errorMessage: string;
|
|
50
45
|
helperMessage: string;
|
|
51
46
|
};
|
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { ModalProps } from '../..';
|
|
2
3
|
declare const info: {
|
|
3
|
-
component: React.ForwardRefExoticComponent<
|
|
4
|
+
component: React.ForwardRefExoticComponent<ModalProps & React.RefAttributes<HTMLDivElement>>;
|
|
4
5
|
title: string;
|
|
6
|
+
argTypes: {
|
|
7
|
+
isCloseButtonHidden: {
|
|
8
|
+
control: {
|
|
9
|
+
type: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
};
|
|
5
13
|
};
|
|
6
14
|
export default info;
|
|
7
|
-
export declare const Default:
|
|
15
|
+
export declare const Default: {
|
|
16
|
+
render: (args: React.JSX.IntrinsicAttributes & ModalProps & React.RefAttributes<HTMLDivElement>) => React.JSX.Element;
|
|
17
|
+
};
|
|
8
18
|
export declare const BackgroundCickDisabled: () => React.JSX.Element;
|
|
9
19
|
export declare const LongContentWithScrolling: () => React.JSX.Element;
|
|
10
20
|
export declare const RadioInModal: () => React.JSX.Element;
|