@instructure/ui-date-input 11.6.1-snapshot-132 → 11.6.1-snapshot-134
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 +2 -1
- package/README.md +2 -1
- package/es/DateInput/v2/index.js +254 -365
- package/es/DateInput/v2/props.js +1 -26
- package/lib/DateInput/v2/index.js +253 -366
- package/lib/DateInput/v2/props.js +1 -27
- package/package.json +16 -16
- package/src/DateInput/v1/README.md +9 -1
- package/src/DateInput/v2/README.md +248 -273
- package/src/DateInput/v2/index.tsx +274 -431
- package/src/DateInput/v2/props.ts +68 -193
- package/src/DateInput2/v1/README.md +9 -1
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/DateInput/v2/index.d.ts +108 -98
- package/types/DateInput/v2/index.d.ts.map +1 -1
- package/types/DateInput/v2/props.d.ts +48 -145
- package/types/DateInput/v2/props.d.ts.map +1 -1
- package/es/DateInput/v2/styles.js +0 -46
- package/lib/DateInput/v2/styles.js +0 -52
- package/src/DateInput/v2/styles.ts +0 -52
- package/types/DateInput/v2/styles.d.ts +0 -13
- package/types/DateInput/v2/styles.d.ts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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
|
-
## [11.6.1-snapshot-
|
|
6
|
+
## [11.6.1-snapshot-134](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.6.1-snapshot-134) (2026-03-17)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
@@ -15,6 +15,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
15
15
|
|
|
16
16
|
* **many:** add solution for using both old and new token system in the same app ([688a713](https://github.com/instructure/instructure-ui/commit/688a713ff715433bb085323dbad61285387c5141))
|
|
17
17
|
* **ui-date-input,ui-calendar:** rework Calendar and DateInput ([4f127ef](https://github.com/instructure/instructure-ui/commit/4f127ef48f4cf3263e07c4b147e2f3f7c5218a3a))
|
|
18
|
+
* **ui-date-input:** migrate DateInput and DateInput2 ([c685444](https://github.com/instructure/instructure-ui/commit/c68544410815dd9cb2602e5a531b0de10c50b151))
|
|
18
19
|
|
|
19
20
|
|
|
20
21
|
|
package/README.md
CHANGED
|
@@ -10,7 +10,8 @@ A date input component.
|
|
|
10
10
|
|
|
11
11
|
The `ui-date-input` package contains the following:
|
|
12
12
|
|
|
13
|
-
- [DateInput](DateInput)
|
|
13
|
+
- [DateInput](DateInput) — the recommended date input component
|
|
14
|
+
- [DateInput2](DateInput2) — deprecated, use `DateInput` instead
|
|
14
15
|
|
|
15
16
|
### Installation
|
|
16
17
|
|