@instructure/ui-date-input 8.25.1-snapshot.0 → 8.26.1-snapshot-1
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
|
@@ -3,6 +3,18 @@
|
|
|
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.26.1-snapshot-1](https://github.com/instructure/instructure-ui/compare/v8.26.0...v8.26.1-snapshot-1) (2022-07-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui-date-input
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [8.26.0](https://github.com/instructure/instructure-ui/compare/v8.25.0...v8.26.0) (2022-06-30)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @instructure/ui-date-input
|
|
17
|
+
|
|
6
18
|
# [8.25.0](https://github.com/instructure/instructure-ui/compare/v8.24.5...v8.25.0) (2022-06-03)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @instructure/ui-date-input
|
|
@@ -23,12 +23,15 @@
|
|
|
23
23
|
*/
|
|
24
24
|
import { locator } from '@instructure/ui-test-locator';
|
|
25
25
|
/* eslint-disable no-restricted-imports */
|
|
26
|
+
// @ts-expect-error ts-migrate(7016) FIXME: Could not find a declaration file for module '@ins... Remove this comment to see the full error message
|
|
27
|
+
|
|
28
|
+
import { CalendarLocator } from '@instructure/ui-calendar/es/Calendar/CalendarLocator'; // @ts-expect-error ts-migrate(7016) FIXME: Could not find a declaration file for module '@ins... Remove this comment to see the full error message
|
|
26
29
|
|
|
27
|
-
import { CalendarLocator } from '@instructure/ui-calendar/es/Calendar/CalendarLocator';
|
|
28
30
|
import { PopoverLocator } from '@instructure/ui-popover/es/Popover/PopoverLocator';
|
|
29
31
|
/* eslint-enable no-restricted-imports */
|
|
30
32
|
|
|
31
|
-
import { DateInput } from './index';
|
|
33
|
+
import { DateInput } from './index'; // @ts-expect-error ts-migrate(2339) FIXME: Property 'selector' does not exist on type 'typeof... Remove this comment to see the full error message
|
|
34
|
+
|
|
32
35
|
export const DateInputLocator = locator(DateInput.selector, {
|
|
33
36
|
findInput: function () {
|
|
34
37
|
return locator('input').find(...arguments);
|
|
@@ -38,8 +38,11 @@ var _index = require("./index");
|
|
|
38
38
|
*/
|
|
39
39
|
|
|
40
40
|
/* eslint-disable no-restricted-imports */
|
|
41
|
+
// @ts-expect-error ts-migrate(7016) FIXME: Could not find a declaration file for module '@ins... Remove this comment to see the full error message
|
|
42
|
+
// @ts-expect-error ts-migrate(7016) FIXME: Could not find a declaration file for module '@ins... Remove this comment to see the full error message
|
|
41
43
|
|
|
42
44
|
/* eslint-enable no-restricted-imports */
|
|
45
|
+
// @ts-expect-error ts-migrate(2339) FIXME: Property 'selector' does not exist on type 'typeof... Remove this comment to see the full error message
|
|
43
46
|
const DateInputLocator = (0, _locator.locator)(_index.DateInput.selector, {
|
|
44
47
|
findInput: function () {
|
|
45
48
|
return (0, _locator.locator)('input').find(...arguments);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-date-input",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.26.1-snapshot-1",
|
|
4
4
|
"description": "A UI component library made by Instructure Inc.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -23,24 +23,24 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@instructure/ui-babel-preset": "8.
|
|
27
|
-
"@instructure/ui-test-locator": "8.
|
|
28
|
-
"@instructure/ui-test-utils": "8.
|
|
26
|
+
"@instructure/ui-babel-preset": "8.26.1-snapshot-1",
|
|
27
|
+
"@instructure/ui-test-locator": "8.26.1-snapshot-1",
|
|
28
|
+
"@instructure/ui-test-utils": "8.26.1-snapshot-1"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@babel/runtime": "^7.13.10",
|
|
32
|
-
"@instructure/emotion": "8.
|
|
33
|
-
"@instructure/ui-calendar": "8.
|
|
34
|
-
"@instructure/ui-form-field": "8.
|
|
35
|
-
"@instructure/ui-icons": "8.
|
|
36
|
-
"@instructure/ui-popover": "8.
|
|
37
|
-
"@instructure/ui-position": "8.
|
|
38
|
-
"@instructure/ui-prop-types": "8.
|
|
39
|
-
"@instructure/ui-react-utils": "8.
|
|
40
|
-
"@instructure/ui-selectable": "8.
|
|
41
|
-
"@instructure/ui-testable": "8.
|
|
42
|
-
"@instructure/ui-text-input": "8.
|
|
43
|
-
"@instructure/ui-utils": "8.
|
|
32
|
+
"@instructure/emotion": "8.26.1-snapshot-1",
|
|
33
|
+
"@instructure/ui-calendar": "8.26.1-snapshot-1",
|
|
34
|
+
"@instructure/ui-form-field": "8.26.1-snapshot-1",
|
|
35
|
+
"@instructure/ui-icons": "8.26.1-snapshot-1",
|
|
36
|
+
"@instructure/ui-popover": "8.26.1-snapshot-1",
|
|
37
|
+
"@instructure/ui-position": "8.26.1-snapshot-1",
|
|
38
|
+
"@instructure/ui-prop-types": "8.26.1-snapshot-1",
|
|
39
|
+
"@instructure/ui-react-utils": "8.26.1-snapshot-1",
|
|
40
|
+
"@instructure/ui-selectable": "8.26.1-snapshot-1",
|
|
41
|
+
"@instructure/ui-testable": "8.26.1-snapshot-1",
|
|
42
|
+
"@instructure/ui-text-input": "8.26.1-snapshot-1",
|
|
43
|
+
"@instructure/ui-utils": "8.26.1-snapshot-1",
|
|
44
44
|
"prop-types": "^15"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
@@ -49,6 +49,5 @@
|
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
|
-
"sideEffects": false
|
|
53
|
-
"gitHead": "59b6babce07a9242111475156f544ec11c1a9283"
|
|
52
|
+
"sideEffects": false
|
|
54
53
|
}
|