@elliemae/ds-form-date-time-picker 3.70.0-next.53 → 3.70.0-next.58
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/cjs/package.json +1 -4
- package/dist/esm/package.json +1 -4
- package/dist/types/parts/Pickers/Calendar/Calendar.d.ts +3 -2
- package/dist/types/parts/Pickers/Calendar/CalendarBody.d.ts +1 -1
- package/dist/types/parts/Pickers/Calendar/CalendarWeekDays.d.ts +1 -1
- package/dist/types/parts/Pickers/CalendarWithTimeWheel/CalendarWithTimeWheel.d.ts +2 -1
- package/dist/types/parts/Pickers/CalendarWithTimeWheel/CalendarWithTimeWheelWrapper.d.ts +2 -1
- package/dist/types/parts/Pickers/TimeWheel/TimeWheel.d.ts +2 -1
- package/dist/types/parts/Pickers/TimeWheel/TimeWheelContent.d.ts +1 -1
- package/dist/types/parts/Pickers/TimeWheel/TimeWheelWrapper.d.ts +2 -1
- package/package.json +14 -14
package/dist/cjs/package.json
CHANGED
package/dist/esm/package.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
export declare const WrappedCalendarContext: ({ children }: {
|
|
2
3
|
children: JSX.Element;
|
|
3
|
-
}) =>
|
|
4
|
-
export declare const Calendar: () =>
|
|
4
|
+
}) => React.JSX.Element;
|
|
5
|
+
export declare const Calendar: () => React.JSX.Element;
|
|
@@ -2,5 +2,5 @@ import React from 'react';
|
|
|
2
2
|
interface CalendarBodyPropsT {
|
|
3
3
|
weekRowsNum: number;
|
|
4
4
|
}
|
|
5
|
-
export declare const CalendarBody: React.MemoExoticComponent<({ weekRowsNum }: CalendarBodyPropsT) =>
|
|
5
|
+
export declare const CalendarBody: React.MemoExoticComponent<({ weekRowsNum }: CalendarBodyPropsT) => React.JSX.Element>;
|
|
6
6
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export declare const CalendarWeekDays: React.MemoExoticComponent<() =>
|
|
2
|
+
export declare const CalendarWeekDays: React.MemoExoticComponent<() => React.JSX.Element>;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const CalendarWithTimeWheel: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const CalendarWithTimeWheelWrapper: () => React.JSX.Element | null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export declare const TimeWheelContent: React.MemoExoticComponent<() =>
|
|
2
|
+
export declare const TimeWheelContent: React.MemoExoticComponent<() => React.JSX.Element>;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const TimeWheelWrapper: () => React.JSX.Element | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-form-date-time-picker",
|
|
3
|
-
"version": "3.70.0-next.
|
|
3
|
+
"version": "3.70.0-next.58",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Controlled Form Date Time Picker",
|
|
6
6
|
"files": [
|
|
@@ -37,28 +37,28 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"uid": "^2.0.2",
|
|
40
|
-
"@elliemae/ds-button-v2": "3.70.0-next.
|
|
41
|
-
"@elliemae/ds-floating-context": "3.70.0-next.
|
|
42
|
-
"@elliemae/ds-grid": "3.70.0-next.
|
|
43
|
-
"@elliemae/ds-icons": "3.70.0-next.
|
|
44
|
-
"@elliemae/ds-props-helpers": "3.70.0-next.
|
|
45
|
-
"@elliemae/ds-system": "3.70.0-next.
|
|
46
|
-
"@elliemae/ds-typescript-helpers": "3.70.0-next.
|
|
40
|
+
"@elliemae/ds-button-v2": "3.70.0-next.58",
|
|
41
|
+
"@elliemae/ds-floating-context": "3.70.0-next.58",
|
|
42
|
+
"@elliemae/ds-grid": "3.70.0-next.58",
|
|
43
|
+
"@elliemae/ds-icons": "3.70.0-next.58",
|
|
44
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.58",
|
|
45
|
+
"@elliemae/ds-system": "3.70.0-next.58",
|
|
46
|
+
"@elliemae/ds-typescript-helpers": "3.70.0-next.58"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@elliemae/pui-theme": "~2.13.0",
|
|
50
|
-
"@playwright/experimental-ct-react": "
|
|
50
|
+
"@playwright/experimental-ct-react": "1.61.1",
|
|
51
51
|
"jest": "^30.0.0",
|
|
52
|
-
"styled-components": "~5.3.
|
|
52
|
+
"styled-components": "~5.3.11",
|
|
53
53
|
"styled-system": "^5.1.5",
|
|
54
|
-
"@elliemae/ds-monorepo-devops": "3.70.0-next.
|
|
55
|
-
"@elliemae/ds-test-utils": "3.70.0-next.
|
|
54
|
+
"@elliemae/ds-monorepo-devops": "3.70.0-next.58",
|
|
55
|
+
"@elliemae/ds-test-utils": "3.70.0-next.58"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"@elliemae/pui-theme": "~2.13.0",
|
|
59
59
|
"react": "^18.3.1",
|
|
60
60
|
"react-dom": "^18.3.1",
|
|
61
|
-
"styled-components": "~5.3.
|
|
61
|
+
"styled-components": "~5.3.11",
|
|
62
62
|
"styled-system": "^5.1.5"
|
|
63
63
|
},
|
|
64
64
|
"publishConfig": {
|
|
@@ -74,4 +74,4 @@
|
|
|
74
74
|
"build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
|
|
75
75
|
"checkDeps": "npx -yes ../../util/ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
76
76
|
}
|
|
77
|
-
}
|
|
77
|
+
}
|