react-magma-dom 5.1.0-rc.30 → 5.1.0-rc.32
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/Pagination/utils.d.ts +10 -0
- package/dist/esm/index.js +92 -65
- package/dist/esm/index.js.map +1 -1
- package/dist/react-magma-dom.cjs.development.js +92 -65
- 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
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface PaginationI18n {
|
|
2
|
+
ofLabel: string;
|
|
3
|
+
pageNumberLabel: string;
|
|
4
|
+
pageLabel: string;
|
|
5
|
+
pagesLabel: string;
|
|
6
|
+
selectedLabel: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const paginationLabel: (count: number, pagination: PaginationI18n) => string;
|
|
9
|
+
export declare const pageAriaLabel: (selectedPage: number, count: number, pagination: PaginationI18n) => string;
|
|
10
|
+
export {};
|