@khanacademy/wonder-blocks-date-picker 0.1.2 → 0.1.3
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
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-date-picker
|
|
2
2
|
|
|
3
|
+
## 0.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 12e04c3: Update component documentation for the `disabled` props to include details about `aria-disabled` being set internally to keep an element focusable while in a disabled state
|
|
8
|
+
- Updated dependencies [12e04c3]
|
|
9
|
+
- @khanacademy/wonder-blocks-form@7.5.4
|
|
10
|
+
- @khanacademy/wonder-blocks-modal@8.5.15
|
|
11
|
+
|
|
3
12
|
## 0.1.2
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -7,6 +7,9 @@ interface Props {
|
|
|
7
7
|
value: string | null | undefined;
|
|
8
8
|
/**
|
|
9
9
|
* Whether the input element is disabled.
|
|
10
|
+
*
|
|
11
|
+
* Internally, the `aria-disabled` attribute will be set so that the
|
|
12
|
+
* element remains focusable and will be included in the tab order.
|
|
10
13
|
*/
|
|
11
14
|
disabled?: boolean;
|
|
12
15
|
/**
|
|
@@ -45,6 +45,9 @@ interface Props {
|
|
|
45
45
|
dateFormat?: Array<string> | string;
|
|
46
46
|
/**
|
|
47
47
|
* Whether the DatePicker component is disabled.
|
|
48
|
+
*
|
|
49
|
+
* Internally, the `aria-disabled` attribute will be set so that the
|
|
50
|
+
* element remains focusable and will be included in the tab order.
|
|
48
51
|
*/
|
|
49
52
|
disabled?: boolean;
|
|
50
53
|
/**
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Date picker component for Wonder Blocks.",
|
|
4
4
|
"author": "Khan Academy",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "0.1.
|
|
6
|
+
"version": "0.1.3",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
9
9
|
},
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"react-day-picker": "^9.11.1",
|
|
31
31
|
"@khanacademy/wonder-blocks-core": "12.4.3",
|
|
32
|
+
"@khanacademy/wonder-blocks-form": "7.5.4",
|
|
32
33
|
"@khanacademy/wonder-blocks-icon": "5.3.7",
|
|
33
|
-
"@khanacademy/wonder-blocks-
|
|
34
|
-
"@khanacademy/wonder-blocks-
|
|
35
|
-
"@khanacademy/wonder-blocks-tokens": "15.0.0"
|
|
36
|
-
"@khanacademy/wonder-blocks-styles": "0.2.38"
|
|
34
|
+
"@khanacademy/wonder-blocks-modal": "8.5.15",
|
|
35
|
+
"@khanacademy/wonder-blocks-styles": "0.2.38",
|
|
36
|
+
"@khanacademy/wonder-blocks-tokens": "15.0.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@phosphor-icons/core": "^2.0.2",
|