@instructure/ui-date-input 8.13.1-snapshot.9 → 8.14.0
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 +4 -0
- package/package.json +17 -18
- package/src/DateInput/index.tsx +1 -1
- package/tsconfig.build.json +21 -2
- package/tsconfig.build.tsbuildinfo +1 -0
- package/types/DateInput/DateInputLocator.d.ts +117 -117
- package/types/DateInput/index.d.ts +1 -1
- package/types/DateInput/index.d.ts.map +1 -1
- package/LICENSE.md +0 -27
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [8.14.0](https://github.com/instructure/instructure-ui/compare/v8.13.0...v8.14.0) (2021-12-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui-date-input
|
|
9
|
+
|
|
6
10
|
# [8.13.0](https://github.com/instructure/instructure-ui/compare/v8.12.0...v8.13.0) (2021-12-01)
|
|
7
11
|
|
|
8
12
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-date-input",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.14.0",
|
|
4
4
|
"description": "A UI component library made by Instructure Inc.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -24,24 +24,24 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@instructure/ui-babel-preset": "8.
|
|
28
|
-
"@instructure/ui-test-locator": "8.
|
|
29
|
-
"@instructure/ui-test-utils": "8.
|
|
27
|
+
"@instructure/ui-babel-preset": "8.14.0",
|
|
28
|
+
"@instructure/ui-test-locator": "8.14.0",
|
|
29
|
+
"@instructure/ui-test-utils": "8.14.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@babel/runtime": "^7.13.10",
|
|
33
|
-
"@instructure/emotion": "8.
|
|
34
|
-
"@instructure/ui-calendar": "8.
|
|
35
|
-
"@instructure/ui-form-field": "8.
|
|
36
|
-
"@instructure/ui-icons": "8.
|
|
37
|
-
"@instructure/ui-popover": "8.
|
|
38
|
-
"@instructure/ui-position": "8.
|
|
39
|
-
"@instructure/ui-prop-types": "8.
|
|
40
|
-
"@instructure/ui-react-utils": "8.
|
|
41
|
-
"@instructure/ui-selectable": "8.
|
|
42
|
-
"@instructure/ui-testable": "8.
|
|
43
|
-
"@instructure/ui-text-input": "8.
|
|
44
|
-
"@instructure/ui-utils": "8.
|
|
33
|
+
"@instructure/emotion": "8.14.0",
|
|
34
|
+
"@instructure/ui-calendar": "8.14.0",
|
|
35
|
+
"@instructure/ui-form-field": "8.14.0",
|
|
36
|
+
"@instructure/ui-icons": "8.14.0",
|
|
37
|
+
"@instructure/ui-popover": "8.14.0",
|
|
38
|
+
"@instructure/ui-position": "8.14.0",
|
|
39
|
+
"@instructure/ui-prop-types": "8.14.0",
|
|
40
|
+
"@instructure/ui-react-utils": "8.14.0",
|
|
41
|
+
"@instructure/ui-selectable": "8.14.0",
|
|
42
|
+
"@instructure/ui-testable": "8.14.0",
|
|
43
|
+
"@instructure/ui-text-input": "8.14.0",
|
|
44
|
+
"@instructure/ui-utils": "8.14.0",
|
|
45
45
|
"prop-types": "^15"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
@@ -50,6 +50,5 @@
|
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
|
-
"sideEffects": false
|
|
54
|
-
"gitHead": "f32ba918e4d3ce76c6ee95c856584d00a9d80958"
|
|
53
|
+
"sideEffects": false
|
|
55
54
|
}
|
package/src/DateInput/index.tsx
CHANGED
|
@@ -186,7 +186,7 @@ class DateInput extends Component<DateInputProps> {
|
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
handleHighlightOption = (
|
|
189
|
-
event:
|
|
189
|
+
event: React.SyntheticEvent,
|
|
190
190
|
{ direction }: { direction?: number }
|
|
191
191
|
) => {
|
|
192
192
|
const { onRequestSelectNextDay, onRequestSelectPrevDay } = this.props
|
package/tsconfig.build.json
CHANGED
|
@@ -1,7 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"extends": "../../tsconfig.build.json",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
-
"outDir": "./types"
|
|
4
|
+
"outDir": "./types",
|
|
5
|
+
"composite": true,
|
|
6
|
+
"rootDir": "./src"
|
|
5
7
|
},
|
|
6
|
-
"include": ["src
|
|
8
|
+
"include": ["src"],
|
|
9
|
+
"references": [
|
|
10
|
+
{ "path": "../ui-babel-preset/tsconfig.build.json" },
|
|
11
|
+
{ "path": "../ui-test-locator/tsconfig.build.json" },
|
|
12
|
+
{ "path": "../ui-test-utils/tsconfig.build.json" },
|
|
13
|
+
{ "path": "../emotion/tsconfig.build.json" },
|
|
14
|
+
{ "path": "../ui-calendar/tsconfig.build.json" },
|
|
15
|
+
{ "path": "../ui-form-field/tsconfig.build.json" },
|
|
16
|
+
{ "path": "../ui-icons/tsconfig.build.json" },
|
|
17
|
+
{ "path": "../ui-popover/tsconfig.build.json" },
|
|
18
|
+
{ "path": "../ui-position/tsconfig.build.json" },
|
|
19
|
+
{ "path": "../ui-prop-types/tsconfig.build.json" },
|
|
20
|
+
{ "path": "../ui-react-utils/tsconfig.build.json" },
|
|
21
|
+
{ "path": "../ui-selectable/tsconfig.build.json" },
|
|
22
|
+
{ "path": "../ui-testable/tsconfig.build.json" },
|
|
23
|
+
{ "path": "../ui-text-input/tsconfig.build.json" },
|
|
24
|
+
{ "path": "../ui-utils/tsconfig.build.json" }
|
|
25
|
+
]
|
|
7
26
|
}
|