@availity/mui-datepicker 2.0.0 → 2.0.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 +16 -0
- package/DateRangePicker.mdx +1 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/introduction.mdx +1 -2
- package/package.json +3 -3
- package/project.json +1 -1
- package/src/lib/Datepicker.stories.tsx +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [2.0.2](https://github.com/Availity/element/compare/@availity/mui-datepicker@2.0.1...@availity/mui-datepicker@2.0.2) (2025-12-09)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-textfield` updated to version `2.0.1`
|
|
10
|
+
* `mui-form-utils` updated to version `2.0.1`
|
|
11
|
+
## [2.0.1](https://github.com/Availity/element/compare/@availity/mui-datepicker@2.0.0...@availity/mui-datepicker@2.0.1) (2025-12-03)
|
|
12
|
+
|
|
13
|
+
### Dependency Updates
|
|
14
|
+
|
|
15
|
+
* `mui-icon` updated to version `2.0.0`
|
|
16
|
+
* `mui-textfield` updated to version `2.0.0`
|
|
17
|
+
* `mui-layout` updated to version `2.0.0`
|
|
18
|
+
* `mui-paper` updated to version `2.0.0`
|
|
19
|
+
* `theme-provider` updated to version `2.0.0`
|
|
20
|
+
* `mui-form-utils` updated to version `2.0.0`
|
|
5
21
|
## [2.0.0](https://github.com/Availity/element/compare/@availity/mui-datepicker@1.2.2...@availity/mui-datepicker@2.0.0) (2025-11-17)
|
|
6
22
|
|
|
7
23
|
### Dependency Updates
|
package/DateRangePicker.mdx
CHANGED
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/introduction.mdx
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-datepicker",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Availity MUI Datepicker Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"publish:canary": "yarn npm publish --access public --tag canary"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@availity/mui-icon": "2.0.
|
|
44
|
-
"@availity/mui-textfield": "2.0.
|
|
43
|
+
"@availity/mui-icon": "2.0.1",
|
|
44
|
+
"@availity/mui-textfield": "2.0.2",
|
|
45
45
|
"@mui/x-date-pickers": "^8.16.0",
|
|
46
46
|
"dayjs": "^1.11.13"
|
|
47
47
|
},
|
package/project.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Each exported component in the package should have its own stories file
|
|
2
2
|
import { useState } from 'react';
|
|
3
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
3
|
+
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
4
4
|
import Typography from '@mui/material/Typography';
|
|
5
5
|
import { MonthCalendar } from '@mui/x-date-pickers/MonthCalendar';
|
|
6
6
|
import { YearCalendar } from '@mui/x-date-pickers/YearCalendar';
|
|
@@ -94,7 +94,7 @@ export const _DateRangePicker: StoryObj<DateRangePicker> = {
|
|
|
94
94
|
return (
|
|
95
95
|
<Box sx={{ backgroundColor: 'background.paper', padding: '1.25rem' }}>
|
|
96
96
|
<Grid container spacing={2}>
|
|
97
|
-
<Grid
|
|
97
|
+
<Grid size={{xs:12, sm:6}} >
|
|
98
98
|
<Datepicker
|
|
99
99
|
value={startDate}
|
|
100
100
|
onChange={setStartDate}
|
|
@@ -106,7 +106,7 @@ export const _DateRangePicker: StoryObj<DateRangePicker> = {
|
|
|
106
106
|
views={['day', 'month', 'year']}
|
|
107
107
|
/>
|
|
108
108
|
</Grid>
|
|
109
|
-
<Grid
|
|
109
|
+
<Grid size={{xs:12, sm:6}} >
|
|
110
110
|
<Datepicker
|
|
111
111
|
value={endDate}
|
|
112
112
|
onChange={setEndDate}
|