@availity/mui-datepicker 0.4.0 → 0.4.2
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/CHANGELOG.md
CHANGED
|
@@ -2,26 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
-
## [0.4.
|
|
5
|
+
## [0.4.2](https://github.com/Availity/element/compare/@availity/mui-datepicker@0.4.1...@availity/mui-datepicker@0.4.2) (2024-04-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Performance Improvements
|
|
9
|
+
|
|
10
|
+
* **mui-datepicker:** use path imports for material deps ([01c0840](https://github.com/Availity/element/commit/01c08407a74cd70c78d5c487ca812be10e1009f1))
|
|
6
11
|
|
|
12
|
+
## [0.4.1](https://github.com/Availity/element/compare/@availity/mui-datepicker@0.4.0...@availity/mui-datepicker@0.4.1) (2024-02-20)
|
|
13
|
+
|
|
14
|
+
## [0.4.0](https://github.com/Availity/element/compare/@availity/mui-datepicker@0.3.1...@availity/mui-datepicker@0.4.0) (2024-02-08)
|
|
7
15
|
|
|
8
16
|
### Features
|
|
9
17
|
|
|
10
|
-
|
|
18
|
+
- **theme:** legacy datepicker ([44c334d](https://github.com/Availity/element/commit/44c334db86701314dbbcc34adb5ed8b863056a01))
|
|
11
19
|
|
|
12
20
|
## [0.3.1](https://github.com/Availity/element/compare/@availity/mui-datepicker@0.3.0...@availity/mui-datepicker@0.3.1) (2024-01-12)
|
|
13
21
|
|
|
14
|
-
|
|
15
22
|
### Bug Fixes
|
|
16
23
|
|
|
17
|
-
|
|
24
|
+
- update datepicker styles ([43eae9a](https://github.com/Availity/element/commit/43eae9a4ab1b70d6a3a295bf8e54a3423ef6638a))
|
|
18
25
|
|
|
19
26
|
## [0.3.0](https://github.com/Availity/element/compare/@availity/mui-datepicker@0.2.0...@availity/mui-datepicker@0.3.0) (2023-12-14)
|
|
20
27
|
|
|
21
|
-
|
|
22
28
|
### Features
|
|
23
29
|
|
|
24
|
-
|
|
30
|
+
- add form story ([11d1f6c](https://github.com/Availity/element/commit/11d1f6c6191540bf02ff42d4056ac553eecc8c73))
|
|
25
31
|
|
|
26
32
|
## [0.2.0](https://github.com/Availity/element/compare/@availity/mui-datepicker@0.1.0...@availity/mui-datepicker@0.2.0) (2023-11-28)
|
|
27
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-datepicker",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "Availity MUI Datepicker Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"publish:canary": "yarn npm publish --access public --tag canary"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@availity/mui-textfield": "0.5.
|
|
35
|
+
"@availity/mui-textfield": "0.5.15",
|
|
36
36
|
"@mui/x-date-pickers": "^5.0.15",
|
|
37
37
|
"dayjs": "^1.11.9"
|
|
38
38
|
},
|
|
@@ -6,7 +6,9 @@ import { YearPicker } from '@mui/x-date-pickers/YearPicker';
|
|
|
6
6
|
import { useState } from 'react';
|
|
7
7
|
import dayjs, { Dayjs } from 'dayjs';
|
|
8
8
|
import { Datepicker, DatepickerProps } from './Datepicker';
|
|
9
|
-
import
|
|
9
|
+
import Grid from '@mui/material/Unstable_Grid2';
|
|
10
|
+
import Paper from '@mui/material/Paper';
|
|
11
|
+
import Typography from '@mui/material/Typography';
|
|
10
12
|
|
|
11
13
|
const meta: Meta<typeof Datepicker> = {
|
|
12
14
|
title: 'Components/Datepicker/Datepicker',
|
|
File without changes
|